
    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_a81d3219e65c40a6bfe1789b.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914062;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_97dffebdbf826454e7eb6717.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_704b38531ad36932512e335a.woff')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_12dc10922db0250550238202.woff')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_8eccd94bb4baa3dbb28b8d4d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_c083fe8ac5e88ca009cb859a.woff')format("woff");}.ff6{font-family:ff6;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;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cbebc52ce0a54fdb7214aebf.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_6a91fd96ddd3f5c87eebbb86.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_136398f2f111107ccd27ae3f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.237305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_23385ebd777ee252d9d85f6a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.202148;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:ffb;src:url('chunks/assets/font_4c14493c7bafcdb9388bc30c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.237305;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:ffc;src:url('chunks/assets/font_ad0842c0c255e882a663ff28.woff')format("woff");}.ffc{font-family:ffc;line-height:0.740234;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:ffd;src:url('chunks/assets/font_f4308c6199a6fcd21c96e19e.woff')format("woff");}.ffd{font-family:ffd;line-height:1.063477;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:ffe;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffe{font-family:ffe;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;}
.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);}
.v4{vertical-align:-14.400000px;}
.v2{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.160000px;}
.v6{vertical-align:14.400000px;}
.v5{vertical-align:17.280000px;}
.v9{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.v8{vertical-align:48.240000px;}
.v7{vertical-align:54.720000px;}
.lsf{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.272400px;}
.ls4{letter-spacing:-0.216000px;}
.ls20{letter-spacing:-0.198000px;}
.lsd{letter-spacing:-0.144000px;}
.ls10{letter-spacing:-0.072000px;}
.ls1f{letter-spacing:-0.058320px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.078000px;}
.lsa{letter-spacing:0.108000px;}
.ls5{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.174240px;}
.ls6{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.256200px;}
.ls7{letter-spacing:0.259800px;}
.ls21{letter-spacing:0.306000px;}
.ls9{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.432000px;}
.ls1b{letter-spacing:0.504000px;}
.ls18{letter-spacing:1.584000px;}
.ls11{letter-spacing:2.232000px;}
.ls12{letter-spacing:2.520000px;}
.ls17{letter-spacing:2.801520px;}
.ls14{letter-spacing:2.921520px;}
.lsb{letter-spacing:7.804800px;}
.ls13{letter-spacing:19.800000px;}
.ls16{letter-spacing:20.160000px;}
.ls2{letter-spacing:33.960000px;}
.ls15{letter-spacing:47.016000px;}
.ls19{letter-spacing:54.840000px;}
.lse{letter-spacing:62.784000px;}
.ls1{letter-spacing:73.584000px;}
.ls1a{letter-spacing:846.156000px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws9{word-spacing:-19.584000px;}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.928000px;}
.ws16{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.wsa{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.552000px;}
.wse{word-spacing:-15.300000px;}
.ws10{word-spacing:-15.226440px;}
.ws12{word-spacing:-15.048240px;}
.ws5{word-spacing:-14.970240px;}
.ws4{word-spacing:-14.940000px;}
.ws14{word-spacing:-13.811760px;}
.ws7{word-spacing:-13.505760px;}
.ws15{word-spacing:-13.447440px;}
.ws13{word-spacing:-12.006000px;}
.ws11{word-spacing:-8.514480px;}
.ws2{word-spacing:0.000000px;}
.wsd{word-spacing:11.458800px;}
.wsb{word-spacing:12.980160px;}
._4{margin-left:-8.412480px;}
._8{margin-left:-3.768000px;}
._2{margin-left:-2.340000px;}
._0{margin-left:-1.080000px;}
._1{width:1.224000px;}
._6{width:2.268000px;}
._3{width:3.355440px;}
._5{width:7.704000px;}
._9{width:10.296000px;}
._a{width:20.784000px;}
._7{width:846.156000px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fs6{font-size:51.120000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y160{bottom:3.600000px;}
.y63{bottom:4.500000px;}
.y76{bottom:4.545000px;}
.y14c{bottom:5.220000px;}
.y13d{bottom:5.400000px;}
.y65{bottom:5.580000px;}
.y62{bottom:5.760000px;}
.y161{bottom:8.100000px;}
.y188{bottom:8.145000px;}
.y166{bottom:8.280000px;}
.y15f{bottom:20.205000px;}
.y72{bottom:24.660000px;}
.y15e{bottom:36.585000px;}
.y15d{bottom:53.145000px;}
.y15c{bottom:69.525000px;}
.y11f{bottom:88.560000px;}
.yb3{bottom:88.920000px;}
.y70{bottom:93.780000px;}
.y4b{bottom:100.620000px;}
.y17f{bottom:101.700000px;}
.y11e{bottom:105.660000px;}
.yb2{bottom:107.100000px;}
.y103{bottom:109.440000px;}
.y4a{bottom:117.720000px;}
.yf7{bottom:118.080000px;}
.y11d{bottom:122.940000px;}
.y6f{bottom:124.920000px;}
.yb1{bottom:125.460000px;}
.y153{bottom:125.820000px;}
.y8c{bottom:127.620000px;}
.yb7{bottom:136.980000px;}
.y11c{bottom:140.220000px;}
.yb0{bottom:143.820000px;}
.y49{bottom:147.420000px;}
.yf6{bottom:148.140000px;}
.y152{bottom:154.980000px;}
.y6e{bottom:155.880000px;}
.y11b{bottom:157.500000px;}
.y102{bottom:160.200000px;}
.yaf{bottom:162.180000px;}
.yf5{bottom:165.960000px;}
.yb6{bottom:166.860000px;}
.y17e{bottom:171.390000px;}
.y22{bottom:174.810000px;}
.y11a{bottom:175.170000px;}
.y151{bottom:177.330000px;}
.y48{bottom:177.510000px;}
.yae{bottom:180.390000px;}
.y119{bottom:193.890000px;}
.y47{bottom:194.610000px;}
.yad{bottom:198.750000px;}
.y6d{bottom:199.110000px;}
.y150{bottom:199.650000px;}
.y21{bottom:205.950000px;}
.y46{bottom:212.250000px;}
.y6c{bottom:216.210000px;}
.yac{bottom:217.470000px;}
.y17d{bottom:217.830000px;}
.y14f{bottom:221.970000px;}
.y20{bottom:236.910000px;}
.y6b{bottom:239.430000px;}
.y17c{bottom:241.230000px;}
.y45{bottom:242.310000px;}
.y14e{bottom:244.290000px;}
.y44{bottom:259.770000px;}
.y6a{bottom:262.650000px;}
.y17b{bottom:264.450000px;}
.y14d{bottom:266.610000px;}
.y1f{bottom:268.050000px;}
.yf4{bottom:284.610000px;}
.y69{bottom:285.870000px;}
.y17a{bottom:287.670000px;}
.y14b{bottom:289.110000px;}
.y43{bottom:291.270000px;}
.y1e{bottom:299.010000px;}
.yf3{bottom:305.310000px;}
.y68{bottom:309.090000px;}
.y42{bottom:309.810000px;}
.y179{bottom:310.890000px;}
.y14a{bottom:311.430000px;}
.yf2{bottom:326.010000px;}
.y41{bottom:328.530000px;}
.y124{bottom:329.790000px;}
.y123{bottom:329.970000px;}
.y1d{bottom:330.150000px;}
.yab{bottom:330.870000px;}
.y67{bottom:332.490000px;}
.y178{bottom:334.110000px;}
.yfa{bottom:343.830000px;}
.y40{bottom:346.350000px;}
.yf0{bottom:346.710000px;}
.y122{bottom:349.230000px;}
.y149{bottom:351.750000px;}
.yf1{bottom:351.930000px;}
.y66{bottom:355.710000px;}
.y177{bottom:357.330000px;}
.yf9{bottom:360.210000px;}
.y1c{bottom:361.110000px;}
.y121{bottom:364.530000px;}
.yaa{bottom:365.250000px;}
.yef{bottom:367.410000px;}
.y8b{bottom:375.150000px;}
.y64{bottom:378.930000px;}
.y3f{bottom:379.650000px;}
.y176{bottom:380.730000px;}
.y120{bottom:380.910000px;}
.y148{bottom:385.950000px;}
.yee{bottom:388.110000px;}
.y1b{bottom:392.250000px;}
.ya9{bottom:399.630000px;}
.y61{bottom:402.150000px;}
.y147{bottom:403.230000px;}
.y175{bottom:403.950000px;}
.y19c{bottom:407.190000px;}
.yed{bottom:408.810000px;}
.y8a{bottom:409.530000px;}
.y3d{bottom:410.610000px;}
.y3e{bottom:415.875000px;}
.ya8{bottom:421.995000px;}
.y1a{bottom:423.255000px;}
.y146{bottom:425.595000px;}
.y174{bottom:427.215000px;}
.yec{bottom:429.555000px;}
.y89{bottom:431.895000px;}
.y3c{bottom:441.795000px;}
.y145{bottom:447.915000px;}
.yeb{bottom:450.255000px;}
.y173{bottom:450.435000px;}
.y60{bottom:452.055000px;}
.y88{bottom:454.215000px;}
.y19{bottom:454.395000px;}
.ya7{bottom:456.375000px;}
.y19b{bottom:459.075000px;}
.y1b2{bottom:463.935000px;}
.y144{bottom:470.235000px;}
.yea{bottom:470.955000px;}
.y3b{bottom:472.755000px;}
.y172{bottom:473.655000px;}
.y87{bottom:476.535000px;}
.ya6{bottom:478.695000px;}
.y19a{bottom:482.295000px;}
.y18{bottom:485.355000px;}
.y1b1{bottom:486.255000px;}
.ye9{bottom:491.655000px;}
.y143{bottom:492.555000px;}
.y5f{bottom:495.255000px;}
.y171{bottom:496.875000px;}
.y86{bottom:498.855000px;}
.ya5{bottom:501.015000px;}
.y3a{bottom:503.895000px;}
.y199{bottom:505.515000px;}
.y1b0{bottom:508.575000px;}
.ye8{bottom:512.355000px;}
.y142{bottom:514.875000px;}
.y17{bottom:516.495000px;}
.y170{bottom:520.275000px;}
.y85{bottom:521.175000px;}
.y5e{bottom:526.215000px;}
.y198{bottom:528.735000px;}
.ye7{bottom:533.055000px;}
.y39{bottom:534.855000px;}
.ya4{bottom:535.395000px;}
.y141{bottom:537.375000px;}
.y1af{bottom:542.955000px;}
.y84{bottom:543.495000px;}
.y197{bottom:551.955000px;}
.ye6{bottom:553.755000px;}
.y5d{bottom:557.355000px;}
.ya3{bottom:557.715000px;}
.y16{bottom:559.515000px;}
.y140{bottom:559.695000px;}
.y1ae{bottom:565.275000px;}
.y83{bottom:565.995000px;}
.y16f{bottom:566.715000px;}
.ye5{bottom:574.455000px;}
.y196{bottom:575.175000px;}
.y37{bottom:578.055000px;}
.ya2{bottom:580.035000px;}
.ycc{bottom:582.015000px;}
.y38{bottom:583.275000px;}
.y5c{bottom:588.315000px;}
.y16e{bottom:589.935000px;}
.y15{bottom:590.475000px;}
.ye3{bottom:595.155000px;}
.y118{bottom:596.775000px;}
.y195{bottom:598.575000px;}
.ye4{bottom:600.375000px;}
.yc8{bottom:600.735000px;}
.ya1{bottom:602.355000px;}
.y13f{bottom:604.335000px;}
.y1ad{bottom:606.855000px;}
.y36{bottom:609.015000px;}
.y82{bottom:610.635000px;}
.ycb{bottom:612.075000px;}
.y16d{bottom:613.155000px;}
.ye2{bottom:615.855000px;}
.y5b{bottom:619.275000px;}
.y14{bottom:621.615000px;}
.y194{bottom:621.795000px;}
.ya0{bottom:624.675000px;}
.y13e{bottom:626.655000px;}
.y1ac{bottom:627.555000px;}
.y117{bottom:631.155000px;}
.y81{bottom:632.955000px;}
.yc7{bottom:635.115000px;}
.y16c{bottom:636.375000px;}
.ye1{bottom:636.555000px;}
.yb5{bottom:638.535000px;}
.y35{bottom:640.155000px;}
.y193{bottom:645.015000px;}
.y1ab{bottom:648.255000px;}
.y5a{bottom:650.415000px;}
.y13{bottom:652.575000px;}
.y116{bottom:653.475000px;}
.y80{bottom:655.275000px;}
.ye0{bottom:657.255000px;}
.y9f{bottom:659.085000px;}
.y16b{bottom:659.805000px;}
.y192{bottom:668.265000px;}
.yb4{bottom:668.625000px;}
.yc6{bottom:669.345000px;}
.y13c{bottom:670.605000px;}
.y34{bottom:671.145000px;}
.y12{bottom:674.745000px;}
.y115{bottom:675.825000px;}
.y7f{bottom:677.265000px;}
.ydf{bottom:677.985000px;}
.y59{bottom:681.405000px;}
.y16a{bottom:683.025000px;}
.y129{bottom:686.265000px;}
.y1aa{bottom:690.045000px;}
.y191{bottom:691.485000px;}
.yc5{bottom:691.665000px;}
.y13b{bottom:693.105000px;}
.y114{bottom:698.145000px;}
.yde{bottom:698.685000px;}
.y33{bottom:702.285000px;}
.y9e{bottom:703.725000px;}
.y169{bottom:706.245000px;}
.y1a9{bottom:710.745000px;}
.y58{bottom:712.545000px;}
.yc4{bottom:714.165000px;}
.y190{bottom:714.705000px;}
.y11{bottom:715.245000px;}
.y13a{bottom:715.425000px;}
.y113{bottom:720.465000px;}
.ydd{bottom:721.725000px;}
.y9d{bottom:726.045000px;}
.y7e{bottom:726.765000px;}
.y168{bottom:729.465000px;}
.y32{bottom:733.245000px;}
.yc3{bottom:736.485000px;}
.y139{bottom:737.745000px;}
.y18f{bottom:738.105000px;}
.ydc{bottom:742.965000px;}
.y57{bottom:743.505000px;}
.y7d{bottom:743.865000px;}
.y1a8{bottom:745.125000px;}
.y9b{bottom:748.365000px;}
.y10{bottom:749.625000px;}
.y167{bottom:752.685000px;}
.y9c{bottom:753.585000px;}
.yc2{bottom:758.805000px;}
.y138{bottom:760.065000px;}
.y18e{bottom:761.325000px;}
.ydb{bottom:761.865000px;}
.y31{bottom:764.205000px;}
.y112{bottom:765.285000px;}
.y7c{bottom:766.185000px;}
.y128{bottom:766.545000px;}
.y1a7{bottom:767.445000px;}
.y9a{bottom:770.685000px;}
.yda{bottom:773.925000px;}
.y56{bottom:774.645000px;}
.y165{bottom:775.905000px;}
.yc1{bottom:781.125000px;}
.y137{bottom:782.385000px;}
.yf{bottom:784.005000px;}
.y18d{bottom:784.545000px;}
.y111{bottom:787.605000px;}
.y7b{bottom:788.505000px;}
.y127{bottom:788.865000px;}
.y1a6{bottom:789.765000px;}
.y99{bottom:793.005000px;}
.y30{bottom:795.345000px;}
.y164{bottom:799.305000px;}
.yc0{bottom:803.445000px;}
.y136{bottom:804.705000px;}
.y55{bottom:805.605000px;}
.ye{bottom:806.325000px;}
.yd9{bottom:806.865000px;}
.y18c{bottom:807.765000px;}
.y110{bottom:809.925000px;}
.y7a{bottom:810.825000px;}
.y126{bottom:812.445000px;}
.y98{bottom:815.505000px;}
.y163{bottom:822.525000px;}
.y1a5{bottom:824.145000px;}
.ybf{bottom:825.765000px;}
.y2f{bottom:826.305000px;}
.y135{bottom:827.205000px;}
.yd8{bottom:827.565000px;}
.yd{bottom:828.645000px;}
.y18b{bottom:830.985000px;}
.y79{bottom:833.145000px;}
.y54{bottom:836.745000px;}
.y97{bottom:837.825000px;}
.y10f{bottom:844.305000px;}
.y162{bottom:845.745000px;}
.y1a4{bottom:846.465000px;}
.y125{bottom:848.085000px;}
.yd7{bottom:848.265000px;}
.y18a{bottom:854.205000px;}
.y78{bottom:855.645000px;}
.y2e{bottom:857.445000px;}
.ybe{bottom:860.145000px;}
.yc{bottom:863.025000px;}
.y10e{bottom:866.625000px;}
.y134{bottom:867.525000px;}
.y1a3{bottom:868.785000px;}
.yd6{bottom:868.965000px;}
.y96{bottom:872.025000px;}
.y189{bottom:877.605000px;}
.y77{bottom:877.965000px;}
.y53{bottom:879.765000px;}
.ybd{bottom:882.465000px;}
.yb{bottom:885.345000px;}
.y10c{bottom:888.945000px;}
.yd5{bottom:889.665000px;}
.y15b{bottom:892.185000px;}
.y10d{bottom:894.165000px;}
.y95{bottom:894.525000px;}
.y75{bottom:900.285000px;}
.y2d{bottom:900.465000px;}
.y187{bottom:900.825000px;}
.y133{bottom:901.725000px;}
.y1a2{bottom:903.210000px;}
.ybc{bottom:904.830000px;}
.ya{bottom:907.710000px;}
.yd4{bottom:910.410000px;}
.y52{bottom:910.950000px;}
.y10b{bottom:911.310000px;}
.y94{bottom:916.890000px;}
.y101{bottom:919.590000px;}
.y74{bottom:922.650000px;}
.y132{bottom:924.090000px;}
.ybb{bottom:927.150000px;}
.y9{bottom:930.030000px;}
.yd3{bottom:931.110000px;}
.y2c{bottom:931.650000px;}
.y10a{bottom:933.630000px;}
.y1a1{bottom:937.410000px;}
.y93{bottom:939.210000px;}
.y100{bottom:940.290000px;}
.y51{bottom:941.910000px;}
.y73{bottom:944.970000px;}
.y131{bottom:946.410000px;}
.y186{bottom:947.310000px;}
.yba{bottom:949.470000px;}
.yd2{bottom:951.810000px;}
.y8{bottom:952.350000px;}
.y1a0{bottom:959.910000px;}
.y92{bottom:961.530000px;}
.y2a{bottom:962.610000px;}
.y71{bottom:967.290000px;}
.y2b{bottom:967.830000px;}
.y109{bottom:968.010000px;}
.y185{bottom:970.530000px;}
.yb9{bottom:971.790000px;}
.yd1{bottom:972.510000px;}
.y50{bottom:972.870000px;}
.y7{bottom:974.670000px;}
.y130{bottom:980.790000px;}
.y19f{bottom:982.230000px;}
.y91{bottom:983.850000px;}
.y108{bottom:990.330000px;}
.y15a{bottom:993.390000px;}
.y29{bottom:993.750000px;}
.yb8{bottom:994.110000px;}
.yff{bottom:995.370000px;}
.y12f{bottom:1003.110000px;}
.y4f{bottom:1004.010000px;}
.y90{bottom:1006.170000px;}
.y6{bottom:1009.050000px;}
.y107{bottom:1013.910000px;}
.yd0{bottom:1014.450000px;}
.y159{bottom:1015.350000px;}
.yfe{bottom:1016.070000px;}
.y19e{bottom:1016.430000px;}
.y184{bottom:1017.150000px;}
.y28{bottom:1024.710000px;}
.y12e{bottom:1025.430000px;}
.y8f{bottom:1028.490000px;}
.y4e{bottom:1034.970000px;}
.ycf{bottom:1035.150000px;}
.y106{bottom:1036.230000px;}
.yfd{bottom:1036.770000px;}
.y19d{bottom:1038.930000px;}
.y183{bottom:1040.370000px;}
.y5{bottom:1044.330000px;}
.y12d{bottom:1047.930000px;}
.y158{bottom:1050.090000px;}
.y8e{bottom:1050.810000px;}
.y27{bottom:1055.850000px;}
.yfc{bottom:1057.470000px;}
.y105{bottom:1059.810000px;}
.y182{bottom:1063.590000px;}
.y157{bottom:1067.190000px;}
.y4{bottom:1070.070000px;}
.y12c{bottom:1070.250000px;}
.y8d{bottom:1073.130000px;}
.yce{bottom:1076.550000px;}
.y4d{bottom:1078.170000px;}
.y104{bottom:1082.310000px;}
.yca{bottom:1083.570000px;}
.y25{bottom:1086.810000px;}
.y156{bottom:1089.510000px;}
.y26{bottom:1092.030000px;}
.y12b{bottom:1092.570000px;}
.y3{bottom:1095.450000px;}
.ycd{bottom:1097.250000px;}
.yfb{bottom:1098.870000px;}
.yc9{bottom:1105.890000px;}
.y4c{bottom:1109.130000px;}
.y181{bottom:1110.030000px;}
.y155{bottom:1111.830000px;}
.y12a{bottom:1114.350000px;}
.y2{bottom:1117.770000px;}
.yf8{bottom:1119.570000px;}
.y24{bottom:1122.990000px;}
.y180{bottom:1133.250000px;}
.y154{bottom:1134.150000px;}
.y23{bottom:1139.910000px;}
.y1{bottom:1140.270000px;}
.h11{height:21.600000px;}
.h12{height:21.636000px;}
.he{height:22.500000px;}
.hc{height:22.536000px;}
.h8{height:27.147656px;}
.h16{height:33.683203px;}
.h10{height:40.320000px;}
.h9{height:41.726953px;}
.h18{height:43.236000px;}
.ha{height:49.255313px;}
.h3{height:50.273438px;}
.h17{height:50.800781px;}
.h1b{height:52.171875px;}
.h7{height:52.417969px;}
.h6{height:53.332031px;}
.h1a{height:55.291992px;}
.h5{height:59.343750px;}
.h4{height:59.436914px;}
.hb{height:59.439023px;}
.h2{height:61.043203px;}
.h13{height:63.559688px;}
.hf{height:65.884219px;}
.hd{height:67.824844px;}
.h19{height:82.476000px;}
.h15{height:108.919687px;}
.h14{height:115.399688px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w16{width:57.240000px;}
.w17{width:57.456000px;}
.w18{width:65.520000px;}
.w15{width:72.540000px;}
.w14{width:72.576000px;}
.w12{width:73.260000px;}
.w11{width:76.140000px;}
.w13{width:86.256000px;}
.w4{width:92.340000px;}
.w19{width:94.140000px;}
.wa{width:94.896000px;}
.w8{width:106.056000px;}
.w9{width:115.200000px;}
.w7{width:116.100000px;}
.wf{width:116.316000px;}
.wd{width:126.360000px;}
.wb{width:140.616000px;}
.w5{width:141.876000px;}
.wc{width:145.080000px;}
.w10{width:158.760000px;}
.w6{width:173.190000px;}
.we{width:318.315000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:4.860000px;}
.x10{left:7.740000px;}
.x19{left:52.914000px;}
.x1a{left:61.194000px;}
.x37{left:74.160000px;}
.x36{left:78.840000px;}
.x2c{left:104.754000px;}
.x1{left:106.235987px;}
.xf{left:113.795987px;}
.x2d{left:121.355987px;}
.x2{left:133.235987px;}
.x3{left:160.229987px;}
.x2e{left:184.170000px;}
.x11{left:199.290000px;}
.x14{left:224.130000px;}
.x2a{left:234.210000px;}
.xc{left:252.209973px;}
.xd{left:257.069987px;}
.x2f{left:258.150000px;}
.x21{left:278.129987px;}
.xa{left:292.214973px;}
.x1f{left:295.094987px;}
.xb{left:297.074987px;}
.x8{left:300.854973px;}
.x9{left:305.714987px;}
.xe{left:322.274987px;}
.x15{left:330.915000px;}
.x12{left:341.895000px;}
.x30{left:345.315000px;}
.x24{left:353.774973px;}
.x25{left:358.634987px;}
.x1e{left:366.014987px;}
.x28{left:392.654973px;}
.x29{left:397.514987px;}
.x31{left:422.175000px;}
.x20{left:435.854987px;}
.x16{left:447.015000px;}
.x32{left:495.465000px;}
.x1c{left:515.264973px;}
.x1d{left:520.124987px;}
.x17{left:542.625000px;}
.x4{left:552.884973px;}
.x5{left:557.744987px;}
.x33{left:568.725000px;}
.x34{left:626.685000px;}
.x22{left:648.464973px;}
.x23{left:653.324987px;}
.x2b{left:670.290000px;}
.x18{left:683.970000px;}
.x27{left:708.269987px;}
.x26{left:710.429987px;}
.x35{left:751.110000px;}
.x6{left:756.329973px;}
.x7{left:761.189987px;}
.x1b{left:786.749987px;}
@media print{
.v4{vertical-align:-12.800000pt;}
.v2{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:1.920000pt;}
.v6{vertical-align:12.800000pt;}
.v5{vertical-align:15.360000pt;}
.v9{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.v8{vertical-align:42.880000pt;}
.v7{vertical-align:48.640000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.242133pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls20{letter-spacing:-0.176000pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls1f{letter-spacing:-0.051840pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.069333pt;}
.lsa{letter-spacing:0.096000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.154880pt;}
.ls6{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.227733pt;}
.ls7{letter-spacing:0.230933pt;}
.ls21{letter-spacing:0.272000pt;}
.ls9{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls18{letter-spacing:1.408000pt;}
.ls11{letter-spacing:1.984000pt;}
.ls12{letter-spacing:2.240000pt;}
.ls17{letter-spacing:2.490240pt;}
.ls14{letter-spacing:2.596907pt;}
.lsb{letter-spacing:6.937600pt;}
.ls13{letter-spacing:17.600000pt;}
.ls16{letter-spacing:17.920000pt;}
.ls2{letter-spacing:30.186667pt;}
.ls15{letter-spacing:41.792000pt;}
.ls19{letter-spacing:48.746667pt;}
.lse{letter-spacing:55.808000pt;}
.ls1{letter-spacing:65.408000pt;}
.ls1a{letter-spacing:752.138667pt;}
.wsf{word-spacing:-64.000000pt;}
.ws9{word-spacing:-17.408000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws16{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.wsa{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.824000pt;}
.wse{word-spacing:-13.600000pt;}
.ws10{word-spacing:-13.534613pt;}
.ws12{word-spacing:-13.376213pt;}
.ws5{word-spacing:-13.306880pt;}
.ws4{word-spacing:-13.280000pt;}
.ws14{word-spacing:-12.277120pt;}
.ws7{word-spacing:-12.005120pt;}
.ws15{word-spacing:-11.953280pt;}
.ws13{word-spacing:-10.672000pt;}
.ws11{word-spacing:-7.568427pt;}
.ws2{word-spacing:0.000000pt;}
.wsd{word-spacing:10.185600pt;}
.wsb{word-spacing:11.537920pt;}
._4{margin-left:-7.477760pt;}
._8{margin-left:-3.349333pt;}
._2{margin-left:-2.080000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.088000pt;}
._6{width:2.016000pt;}
._3{width:2.982613pt;}
._5{width:6.848000pt;}
._9{width:9.152000pt;}
._a{width:18.474667pt;}
._7{width:752.138667pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fs6{font-size:45.440000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y160{bottom:3.200000pt;}
.y63{bottom:4.000000pt;}
.y76{bottom:4.040000pt;}
.y14c{bottom:4.640000pt;}
.y13d{bottom:4.800000pt;}
.y65{bottom:4.960000pt;}
.y62{bottom:5.120000pt;}
.y161{bottom:7.200000pt;}
.y188{bottom:7.240000pt;}
.y166{bottom:7.360000pt;}
.y15f{bottom:17.960000pt;}
.y72{bottom:21.920000pt;}
.y15e{bottom:32.520000pt;}
.y15d{bottom:47.240000pt;}
.y15c{bottom:61.800000pt;}
.y11f{bottom:78.720000pt;}
.yb3{bottom:79.040000pt;}
.y70{bottom:83.360000pt;}
.y4b{bottom:89.440000pt;}
.y17f{bottom:90.400000pt;}
.y11e{bottom:93.920000pt;}
.yb2{bottom:95.200000pt;}
.y103{bottom:97.280000pt;}
.y4a{bottom:104.640000pt;}
.yf7{bottom:104.960000pt;}
.y11d{bottom:109.280000pt;}
.y6f{bottom:111.040000pt;}
.yb1{bottom:111.520000pt;}
.y153{bottom:111.840000pt;}
.y8c{bottom:113.440000pt;}
.yb7{bottom:121.760000pt;}
.y11c{bottom:124.640000pt;}
.yb0{bottom:127.840000pt;}
.y49{bottom:131.040000pt;}
.yf6{bottom:131.680000pt;}
.y152{bottom:137.760000pt;}
.y6e{bottom:138.560000pt;}
.y11b{bottom:140.000000pt;}
.y102{bottom:142.400000pt;}
.yaf{bottom:144.160000pt;}
.yf5{bottom:147.520000pt;}
.yb6{bottom:148.320000pt;}
.y17e{bottom:152.346667pt;}
.y22{bottom:155.386667pt;}
.y11a{bottom:155.706667pt;}
.y151{bottom:157.626667pt;}
.y48{bottom:157.786667pt;}
.yae{bottom:160.346667pt;}
.y119{bottom:172.346667pt;}
.y47{bottom:172.986667pt;}
.yad{bottom:176.666667pt;}
.y6d{bottom:176.986667pt;}
.y150{bottom:177.466667pt;}
.y21{bottom:183.066667pt;}
.y46{bottom:188.666667pt;}
.y6c{bottom:192.186667pt;}
.yac{bottom:193.306667pt;}
.y17d{bottom:193.626667pt;}
.y14f{bottom:197.306667pt;}
.y20{bottom:210.586667pt;}
.y6b{bottom:212.826667pt;}
.y17c{bottom:214.426667pt;}
.y45{bottom:215.386667pt;}
.y14e{bottom:217.146667pt;}
.y44{bottom:230.906667pt;}
.y6a{bottom:233.466667pt;}
.y17b{bottom:235.066667pt;}
.y14d{bottom:236.986667pt;}
.y1f{bottom:238.266667pt;}
.yf4{bottom:252.986667pt;}
.y69{bottom:254.106667pt;}
.y17a{bottom:255.706667pt;}
.y14b{bottom:256.986667pt;}
.y43{bottom:258.906667pt;}
.y1e{bottom:265.786667pt;}
.yf3{bottom:271.386667pt;}
.y68{bottom:274.746667pt;}
.y42{bottom:275.386667pt;}
.y179{bottom:276.346667pt;}
.y14a{bottom:276.826667pt;}
.yf2{bottom:289.786667pt;}
.y41{bottom:292.026667pt;}
.y124{bottom:293.146667pt;}
.y123{bottom:293.306667pt;}
.y1d{bottom:293.466667pt;}
.yab{bottom:294.106667pt;}
.y67{bottom:295.546667pt;}
.y178{bottom:296.986667pt;}
.yfa{bottom:305.626667pt;}
.y40{bottom:307.866667pt;}
.yf0{bottom:308.186667pt;}
.y122{bottom:310.426667pt;}
.y149{bottom:312.666667pt;}
.yf1{bottom:312.826667pt;}
.y66{bottom:316.186667pt;}
.y177{bottom:317.626667pt;}
.yf9{bottom:320.186667pt;}
.y1c{bottom:320.986667pt;}
.y121{bottom:324.026667pt;}
.yaa{bottom:324.666667pt;}
.yef{bottom:326.586667pt;}
.y8b{bottom:333.466667pt;}
.y64{bottom:336.826667pt;}
.y3f{bottom:337.466667pt;}
.y176{bottom:338.426667pt;}
.y120{bottom:338.586667pt;}
.y148{bottom:343.066667pt;}
.yee{bottom:344.986667pt;}
.y1b{bottom:348.666667pt;}
.ya9{bottom:355.226667pt;}
.y61{bottom:357.466667pt;}
.y147{bottom:358.426667pt;}
.y175{bottom:359.066667pt;}
.y19c{bottom:361.946667pt;}
.yed{bottom:363.386667pt;}
.y8a{bottom:364.026667pt;}
.y3d{bottom:364.986667pt;}
.y3e{bottom:369.666667pt;}
.ya8{bottom:375.106667pt;}
.y1a{bottom:376.226667pt;}
.y146{bottom:378.306667pt;}
.y174{bottom:379.746667pt;}
.yec{bottom:381.826667pt;}
.y89{bottom:383.906667pt;}
.y3c{bottom:392.706667pt;}
.y145{bottom:398.146667pt;}
.yeb{bottom:400.226667pt;}
.y173{bottom:400.386667pt;}
.y60{bottom:401.826667pt;}
.y88{bottom:403.746667pt;}
.y19{bottom:403.906667pt;}
.ya7{bottom:405.666667pt;}
.y19b{bottom:408.066667pt;}
.y1b2{bottom:412.386667pt;}
.y144{bottom:417.986667pt;}
.yea{bottom:418.626667pt;}
.y3b{bottom:420.226667pt;}
.y172{bottom:421.026667pt;}
.y87{bottom:423.586667pt;}
.ya6{bottom:425.506667pt;}
.y19a{bottom:428.706667pt;}
.y18{bottom:431.426667pt;}
.y1b1{bottom:432.226667pt;}
.ye9{bottom:437.026667pt;}
.y143{bottom:437.826667pt;}
.y5f{bottom:440.226667pt;}
.y171{bottom:441.666667pt;}
.y86{bottom:443.426667pt;}
.ya5{bottom:445.346667pt;}
.y3a{bottom:447.906667pt;}
.y199{bottom:449.346667pt;}
.y1b0{bottom:452.066667pt;}
.ye8{bottom:455.426667pt;}
.y142{bottom:457.666667pt;}
.y17{bottom:459.106667pt;}
.y170{bottom:462.466667pt;}
.y85{bottom:463.266667pt;}
.y5e{bottom:467.746667pt;}
.y198{bottom:469.986667pt;}
.ye7{bottom:473.826667pt;}
.y39{bottom:475.426667pt;}
.ya4{bottom:475.906667pt;}
.y141{bottom:477.666667pt;}
.y1af{bottom:482.626667pt;}
.y84{bottom:483.106667pt;}
.y197{bottom:490.626667pt;}
.ye6{bottom:492.226667pt;}
.y5d{bottom:495.426667pt;}
.ya3{bottom:495.746667pt;}
.y16{bottom:497.346667pt;}
.y140{bottom:497.506667pt;}
.y1ae{bottom:502.466667pt;}
.y83{bottom:503.106667pt;}
.y16f{bottom:503.746667pt;}
.ye5{bottom:510.626667pt;}
.y196{bottom:511.266667pt;}
.y37{bottom:513.826667pt;}
.ya2{bottom:515.586667pt;}
.ycc{bottom:517.346667pt;}
.y38{bottom:518.466667pt;}
.y5c{bottom:522.946667pt;}
.y16e{bottom:524.386667pt;}
.y15{bottom:524.866667pt;}
.ye3{bottom:529.026667pt;}
.y118{bottom:530.466667pt;}
.y195{bottom:532.066667pt;}
.ye4{bottom:533.666667pt;}
.yc8{bottom:533.986667pt;}
.ya1{bottom:535.426667pt;}
.y13f{bottom:537.186667pt;}
.y1ad{bottom:539.426667pt;}
.y36{bottom:541.346667pt;}
.y82{bottom:542.786667pt;}
.ycb{bottom:544.066667pt;}
.y16d{bottom:545.026667pt;}
.ye2{bottom:547.426667pt;}
.y5b{bottom:550.466667pt;}
.y14{bottom:552.546667pt;}
.y194{bottom:552.706667pt;}
.ya0{bottom:555.266667pt;}
.y13e{bottom:557.026667pt;}
.y1ac{bottom:557.826667pt;}
.y117{bottom:561.026667pt;}
.y81{bottom:562.626667pt;}
.yc7{bottom:564.546667pt;}
.y16c{bottom:565.666667pt;}
.ye1{bottom:565.826667pt;}
.yb5{bottom:567.586667pt;}
.y35{bottom:569.026667pt;}
.y193{bottom:573.346667pt;}
.y1ab{bottom:576.226667pt;}
.y5a{bottom:578.146667pt;}
.y13{bottom:580.066667pt;}
.y116{bottom:580.866667pt;}
.y80{bottom:582.466667pt;}
.ye0{bottom:584.226667pt;}
.y9f{bottom:585.853333pt;}
.y16b{bottom:586.493333pt;}
.y192{bottom:594.013333pt;}
.yb4{bottom:594.333333pt;}
.yc6{bottom:594.973333pt;}
.y13c{bottom:596.093333pt;}
.y34{bottom:596.573333pt;}
.y12{bottom:599.773333pt;}
.y115{bottom:600.733333pt;}
.y7f{bottom:602.013333pt;}
.ydf{bottom:602.653333pt;}
.y59{bottom:605.693333pt;}
.y16a{bottom:607.133333pt;}
.y129{bottom:610.013333pt;}
.y1aa{bottom:613.373333pt;}
.y191{bottom:614.653333pt;}
.yc5{bottom:614.813333pt;}
.y13b{bottom:616.093333pt;}
.y114{bottom:620.573333pt;}
.yde{bottom:621.053333pt;}
.y33{bottom:624.253333pt;}
.y9e{bottom:625.533333pt;}
.y169{bottom:627.773333pt;}
.y1a9{bottom:631.773333pt;}
.y58{bottom:633.373333pt;}
.yc4{bottom:634.813333pt;}
.y190{bottom:635.293333pt;}
.y11{bottom:635.773333pt;}
.y13a{bottom:635.933333pt;}
.y113{bottom:640.413333pt;}
.ydd{bottom:641.533333pt;}
.y9d{bottom:645.373333pt;}
.y7e{bottom:646.013333pt;}
.y168{bottom:648.413333pt;}
.y32{bottom:651.773333pt;}
.yc3{bottom:654.653333pt;}
.y139{bottom:655.773333pt;}
.y18f{bottom:656.093333pt;}
.ydc{bottom:660.413333pt;}
.y57{bottom:660.893333pt;}
.y7d{bottom:661.213333pt;}
.y1a8{bottom:662.333333pt;}
.y9b{bottom:665.213333pt;}
.y10{bottom:666.333333pt;}
.y167{bottom:669.053333pt;}
.y9c{bottom:669.853333pt;}
.yc2{bottom:674.493333pt;}
.y138{bottom:675.613333pt;}
.y18e{bottom:676.733333pt;}
.ydb{bottom:677.213333pt;}
.y31{bottom:679.293333pt;}
.y112{bottom:680.253333pt;}
.y7c{bottom:681.053333pt;}
.y128{bottom:681.373333pt;}
.y1a7{bottom:682.173333pt;}
.y9a{bottom:685.053333pt;}
.yda{bottom:687.933333pt;}
.y56{bottom:688.573333pt;}
.y165{bottom:689.693333pt;}
.yc1{bottom:694.333333pt;}
.y137{bottom:695.453333pt;}
.yf{bottom:696.893333pt;}
.y18d{bottom:697.373333pt;}
.y111{bottom:700.093333pt;}
.y7b{bottom:700.893333pt;}
.y127{bottom:701.213333pt;}
.y1a6{bottom:702.013333pt;}
.y99{bottom:704.893333pt;}
.y30{bottom:706.973333pt;}
.y164{bottom:710.493333pt;}
.yc0{bottom:714.173333pt;}
.y136{bottom:715.293333pt;}
.y55{bottom:716.093333pt;}
.ye{bottom:716.733333pt;}
.yd9{bottom:717.213333pt;}
.y18c{bottom:718.013333pt;}
.y110{bottom:719.933333pt;}
.y7a{bottom:720.733333pt;}
.y126{bottom:722.173333pt;}
.y98{bottom:724.893333pt;}
.y163{bottom:731.133333pt;}
.y1a5{bottom:732.573333pt;}
.ybf{bottom:734.013333pt;}
.y2f{bottom:734.493333pt;}
.y135{bottom:735.293333pt;}
.yd8{bottom:735.613333pt;}
.yd{bottom:736.573333pt;}
.y18b{bottom:738.653333pt;}
.y79{bottom:740.573333pt;}
.y54{bottom:743.773333pt;}
.y97{bottom:744.733333pt;}
.y10f{bottom:750.493333pt;}
.y162{bottom:751.773333pt;}
.y1a4{bottom:752.413333pt;}
.y125{bottom:753.853333pt;}
.yd7{bottom:754.013333pt;}
.y18a{bottom:759.293333pt;}
.y78{bottom:760.573333pt;}
.y2e{bottom:762.173333pt;}
.ybe{bottom:764.573333pt;}
.yc{bottom:767.133333pt;}
.y10e{bottom:770.333333pt;}
.y134{bottom:771.133333pt;}
.y1a3{bottom:772.253333pt;}
.yd6{bottom:772.413333pt;}
.y96{bottom:775.133333pt;}
.y189{bottom:780.093333pt;}
.y77{bottom:780.413333pt;}
.y53{bottom:782.013333pt;}
.ybd{bottom:784.413333pt;}
.yb{bottom:786.973333pt;}
.y10c{bottom:790.173333pt;}
.yd5{bottom:790.813333pt;}
.y15b{bottom:793.053333pt;}
.y10d{bottom:794.813333pt;}
.y95{bottom:795.133333pt;}
.y75{bottom:800.253333pt;}
.y2d{bottom:800.413333pt;}
.y187{bottom:800.733333pt;}
.y133{bottom:801.533333pt;}
.y1a2{bottom:802.853333pt;}
.ybc{bottom:804.293333pt;}
.ya{bottom:806.853333pt;}
.yd4{bottom:809.253333pt;}
.y52{bottom:809.733333pt;}
.y10b{bottom:810.053333pt;}
.y94{bottom:815.013333pt;}
.y101{bottom:817.413333pt;}
.y74{bottom:820.133333pt;}
.y132{bottom:821.413333pt;}
.ybb{bottom:824.133333pt;}
.y9{bottom:826.693333pt;}
.yd3{bottom:827.653333pt;}
.y2c{bottom:828.133333pt;}
.y10a{bottom:829.893333pt;}
.y1a1{bottom:833.253333pt;}
.y93{bottom:834.853333pt;}
.y100{bottom:835.813333pt;}
.y51{bottom:837.253333pt;}
.y73{bottom:839.973333pt;}
.y131{bottom:841.253333pt;}
.y186{bottom:842.053333pt;}
.yba{bottom:843.973333pt;}
.yd2{bottom:846.053333pt;}
.y8{bottom:846.533333pt;}
.y1a0{bottom:853.253333pt;}
.y92{bottom:854.693333pt;}
.y2a{bottom:855.653333pt;}
.y71{bottom:859.813333pt;}
.y2b{bottom:860.293333pt;}
.y109{bottom:860.453333pt;}
.y185{bottom:862.693333pt;}
.yb9{bottom:863.813333pt;}
.yd1{bottom:864.453333pt;}
.y50{bottom:864.773333pt;}
.y7{bottom:866.373333pt;}
.y130{bottom:871.813333pt;}
.y19f{bottom:873.093333pt;}
.y91{bottom:874.533333pt;}
.y108{bottom:880.293333pt;}
.y15a{bottom:883.013333pt;}
.y29{bottom:883.333333pt;}
.yb8{bottom:883.653333pt;}
.yff{bottom:884.773333pt;}
.y12f{bottom:891.653333pt;}
.y4f{bottom:892.453333pt;}
.y90{bottom:894.373333pt;}
.y6{bottom:896.933333pt;}
.y107{bottom:901.253333pt;}
.yd0{bottom:901.733333pt;}
.y159{bottom:902.533333pt;}
.yfe{bottom:903.173333pt;}
.y19e{bottom:903.493333pt;}
.y184{bottom:904.133333pt;}
.y28{bottom:910.853333pt;}
.y12e{bottom:911.493333pt;}
.y8f{bottom:914.213333pt;}
.y4e{bottom:919.973333pt;}
.ycf{bottom:920.133333pt;}
.y106{bottom:921.093333pt;}
.yfd{bottom:921.573333pt;}
.y19d{bottom:923.493333pt;}
.y183{bottom:924.773333pt;}
.y5{bottom:928.293333pt;}
.y12d{bottom:931.493333pt;}
.y158{bottom:933.413333pt;}
.y8e{bottom:934.053333pt;}
.y27{bottom:938.533333pt;}
.yfc{bottom:939.973333pt;}
.y105{bottom:942.053333pt;}
.y182{bottom:945.413333pt;}
.y157{bottom:948.613333pt;}
.y4{bottom:951.173333pt;}
.y12c{bottom:951.333333pt;}
.y8d{bottom:953.893333pt;}
.yce{bottom:956.933333pt;}
.y4d{bottom:958.373333pt;}
.y104{bottom:962.053333pt;}
.yca{bottom:963.173333pt;}
.y25{bottom:966.053333pt;}
.y156{bottom:968.453333pt;}
.y26{bottom:970.693333pt;}
.y12b{bottom:971.173333pt;}
.y3{bottom:973.733333pt;}
.ycd{bottom:975.333333pt;}
.yfb{bottom:976.773333pt;}
.yc9{bottom:983.013333pt;}
.y4c{bottom:985.893333pt;}
.y181{bottom:986.693333pt;}
.y155{bottom:988.293333pt;}
.y12a{bottom:990.533333pt;}
.y2{bottom:993.573333pt;}
.yf8{bottom:995.173333pt;}
.y24{bottom:998.213333pt;}
.y180{bottom:1007.333333pt;}
.y154{bottom:1008.133333pt;}
.y23{bottom:1013.253333pt;}
.y1{bottom:1013.573333pt;}
.h11{height:19.200000pt;}
.h12{height:19.232000pt;}
.he{height:20.000000pt;}
.hc{height:20.032000pt;}
.h8{height:24.131250pt;}
.h16{height:29.940625pt;}
.h10{height:35.840000pt;}
.h9{height:37.090625pt;}
.h18{height:38.432000pt;}
.ha{height:43.782500pt;}
.h3{height:44.687500pt;}
.h17{height:45.156250pt;}
.h1b{height:46.375000pt;}
.h7{height:46.593750pt;}
.h6{height:47.406250pt;}
.h1a{height:49.148438pt;}
.h5{height:52.750000pt;}
.h4{height:52.832812pt;}
.hb{height:52.834688pt;}
.h2{height:54.260625pt;}
.h13{height:56.497500pt;}
.hf{height:58.563750pt;}
.hd{height:60.288750pt;}
.h19{height:73.312000pt;}
.h15{height:96.817500pt;}
.h14{height:102.577500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w16{width:50.880000pt;}
.w17{width:51.072000pt;}
.w18{width:58.240000pt;}
.w15{width:64.480000pt;}
.w14{width:64.512000pt;}
.w12{width:65.120000pt;}
.w11{width:67.680000pt;}
.w13{width:76.672000pt;}
.w4{width:82.080000pt;}
.w19{width:83.680000pt;}
.wa{width:84.352000pt;}
.w8{width:94.272000pt;}
.w9{width:102.400000pt;}
.w7{width:103.200000pt;}
.wf{width:103.392000pt;}
.wd{width:112.320000pt;}
.wb{width:124.992000pt;}
.w5{width:126.112000pt;}
.wc{width:128.960000pt;}
.w10{width:141.120000pt;}
.w6{width:153.946667pt;}
.we{width:282.946667pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:4.320000pt;}
.x10{left:6.880000pt;}
.x19{left:47.034667pt;}
.x1a{left:54.394667pt;}
.x37{left:65.920000pt;}
.x36{left:70.080000pt;}
.x2c{left:93.114667pt;}
.x1{left:94.431988pt;}
.xf{left:101.151988pt;}
.x2d{left:107.871988pt;}
.x2{left:118.431988pt;}
.x3{left:142.426655pt;}
.x2e{left:163.706667pt;}
.x11{left:177.146667pt;}
.x14{left:199.226667pt;}
.x2a{left:208.186667pt;}
.xc{left:224.186643pt;}
.xd{left:228.506655pt;}
.x2f{left:229.466667pt;}
.x21{left:247.226655pt;}
.xa{left:259.746643pt;}
.x1f{left:262.306655pt;}
.xb{left:264.066655pt;}
.x8{left:267.426643pt;}
.x9{left:271.746655pt;}
.xe{left:286.466655pt;}
.x15{left:294.146667pt;}
.x12{left:303.906667pt;}
.x30{left:306.946667pt;}
.x24{left:314.466643pt;}
.x25{left:318.786655pt;}
.x1e{left:325.346655pt;}
.x28{left:349.026643pt;}
.x29{left:353.346655pt;}
.x31{left:375.266667pt;}
.x20{left:387.426655pt;}
.x16{left:397.346667pt;}
.x32{left:440.413333pt;}
.x1c{left:458.013310pt;}
.x1d{left:462.333322pt;}
.x17{left:482.333333pt;}
.x4{left:491.453310pt;}
.x5{left:495.773322pt;}
.x33{left:505.533333pt;}
.x34{left:557.053333pt;}
.x22{left:576.413310pt;}
.x23{left:580.733322pt;}
.x2b{left:595.813333pt;}
.x18{left:607.973333pt;}
.x27{left:629.573322pt;}
.x26{left:631.493322pt;}
.x35{left:667.653333pt;}
.x6{left:672.293310pt;}
.x7{left:676.613322pt;}
.x1b{left:699.333322pt;}
}




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