
    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_77e05afb585e3b1608ed1f43.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_857c074d468a99c69d0caa12.woff2')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_b7fdd620d3ee929064be1446.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_78f90d3dda2c2848c6cfc05f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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_d3caa5ddc71d929ce2e92d8a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.909180;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_2f2f25b64abe392e779fc60e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.899414;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);}
.v2{vertical-align:-12.240000px;}
.v4{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:12.240000px;}
.v1{vertical-align:20.880000px;}
.v5{vertical-align:76.320000px;}
.ls20{letter-spacing:-1.260000px;}
.ls21{letter-spacing:-0.774000px;}
.lsb{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.360000px;}
.ls22{letter-spacing:-0.206400px;}
.ls1d{letter-spacing:-0.106800px;}
.ls18{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.106560px;}
.ls1b{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.197280px;}
.lsc{letter-spacing:0.259800px;}
.ls1f{letter-spacing:0.259920px;}
.ls5{letter-spacing:0.298800px;}
.ls1e{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.540000px;}
.ls1c{letter-spacing:0.666000px;}
.ls12{letter-spacing:0.866160px;}
.ls10{letter-spacing:1.506960px;}
.ls11{letter-spacing:1.594800px;}
.ls13{letter-spacing:1.830960px;}
.lsa{letter-spacing:3.060000px;}
.ls17{letter-spacing:3.945600px;}
.ls15{letter-spacing:4.065600px;}
.ls19{letter-spacing:4.140000px;}
.ls16{letter-spacing:4.665600px;}
.lse{letter-spacing:20.505600px;}
.ls14{letter-spacing:21.225600px;}
.ls4{letter-spacing:55.386720px;}
.ls2{letter-spacing:64.002720px;}
.ls1a{letter-spacing:849.216000px;}
.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;}
}
.ws2{word-spacing:-59.760000px;}
.ws0{word-spacing:-24.300000px;}
.ws12{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.238800px;}
.ws7{word-spacing:-15.199800px;}
.ws15{word-spacing:-15.120000px;}
.ws14{word-spacing:-15.046800px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws13{word-spacing:-14.833200px;}
.ws16{word-spacing:-14.733600px;}
.ws5{word-spacing:-14.580000px;}
.ws9{word-spacing:-13.147200px;}
.ws1{word-spacing:-9.720000px;}
.wsb{word-spacing:-9.187200px;}
.wsc{word-spacing:-7.920000px;}
.ws6{word-spacing:0.000000px;}
.ws11{word-spacing:4.132080px;}
.wsf{word-spacing:5.572080px;}
.wsa{word-spacing:22.811040px;}
.wsd{word-spacing:126.473760px;}
.ws10{word-spacing:224.513760px;}
._d{margin-left:-3.886560px;}
._c{margin-left:-2.808720px;}
._1{margin-left:-1.065360px;}
._0{width:1.436400px;}
._3{width:2.866320px;}
._4{width:4.100160px;}
._b{width:5.113920px;}
._a{width:6.454080px;}
._9{width:7.709040px;}
._2{width:8.964000px;}
._12{width:10.206240px;}
._7{width:11.591280px;}
._8{width:13.027680px;}
._11{width:14.155200px;}
._e{width:15.955920px;}
._f{width:17.013840px;}
._6{width:18.267120px;}
._5{width:19.471680px;}
._14{width:20.473920px;}
._1e{width:21.872160px;}
._1d{width:23.425920px;}
._1f{width:24.870240px;}
._18{width:26.115120px;}
._17{width:27.250560px;}
._16{width:28.552320px;}
._15{width:29.556720px;}
._19{width:30.834000px;}
._1a{width:32.005440px;}
._23{width:33.663600px;}
._25{width:35.199360px;}
._2d{width:36.393840px;}
._21{width:37.469520px;}
._20{width:39.202560px;}
._13{width:40.743120px;}
._2e{width:41.889600px;}
._10{width:43.194960px;}
._28{width:44.229600px;}
._24{width:45.594720px;}
._36{width:48.704400px;}
._35{width:49.897440px;}
._1c{width:51.393600px;}
._1b{width:52.648560px;}
._37{width:55.216080px;}
._38{width:56.236320px;}
._22{width:58.503600px;}
._26{width:61.163280px;}
._2c{width:62.269920px;}
._29{width:66.391200px;}
._2a{width:67.571280px;}
._39{width:69.742800px;}
._33{width:71.771760px;}
._32{width:73.026720px;}
._27{width:82.956960px;}
._3a{width:93.004560px;}
._2b{width:110.077920px;}
._31{width:130.931280px;}
._30{width:135.220320px;}
._2f{width:136.313280px;}
._34{width:849.216000px;}
.fc1{color:rgb(238,0,0);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y84{bottom:3.240000px;}
.y98{bottom:3.270000px;}
.yf1{bottom:3.780000px;}
.y105{bottom:5.760000px;}
.y104{bottom:8.460000px;}
.y100{bottom:11.700000px;}
.y82{bottom:11.880000px;}
.y11a{bottom:12.240000px;}
.yee{bottom:12.420000px;}
.y93{bottom:20.340000px;}
.y157{bottom:20.514000px;}
.y83{bottom:20.520000px;}
.y97{bottom:20.550000px;}
.yf5{bottom:20.565000px;}
.yef{bottom:21.060000px;}
.y13e{bottom:21.240000px;}
.yf3{bottom:28.980000px;}
.y143{bottom:29.160000px;}
.yed{bottom:29.700000px;}
.yb4{bottom:37.614000px;}
.y92{bottom:37.620000px;}
.ybe{bottom:37.665000px;}
.ya0{bottom:37.794000px;}
.y8e{bottom:37.800000px;}
.y96{bottom:37.830000px;}
.ydf{bottom:37.845000px;}
.yf0{bottom:38.340000px;}
.yb3{bottom:54.894000px;}
.y91{bottom:54.900000px;}
.y15c{bottom:54.930000px;}
.y8d{bottom:54.945000px;}
.y9c{bottom:55.080000px;}
.y95{bottom:55.110000px;}
.y2{bottom:58.356000px;}
.yb2{bottom:72.174000px;}
.y90{bottom:72.180000px;}
.y8c{bottom:72.225000px;}
.y9b{bottom:72.360000px;}
.y94{bottom:72.390000px;}
.y1{bottom:75.636000px;}
.yb1{bottom:89.454000px;}
.y9a{bottom:89.460000px;}
.y8b{bottom:89.505000px;}
.yb6{bottom:89.640000px;}
.yd0{bottom:89.670000px;}
.yb0{bottom:106.734000px;}
.ya6{bottom:106.740000px;}
.y8a{bottom:106.785000px;}
.y44{bottom:110.016000px;}
.yd4{bottom:110.916000px;}
.y7f{bottom:111.816000px;}
.y140{bottom:113.976000px;}
.y164{bottom:114.876000px;}
.yac{bottom:116.316000px;}
.yc3{bottom:117.036000px;}
.yca{bottom:117.756000px;}
.y9f{bottom:118.656000px;}
.y14d{bottom:119.016000px;}
.yaf{bottom:123.834000px;}
.y178{bottom:123.876000px;}
.yce{bottom:123.885000px;}
.yc6{bottom:124.014000px;}
.ya5{bottom:124.020000px;}
.y89{bottom:124.065000px;}
.y21{bottom:125.136000px;}
.y13d{bottom:128.736000px;}
.y156{bottom:130.536000px;}
.y63{bottom:133.776000px;}
.y43{bottom:135.936000px;}
.yd3{bottom:136.656000px;}
.y7e{bottom:137.736000px;}
.y163{bottom:140.796000px;}
.yae{bottom:141.114000px;}
.yc2{bottom:141.120000px;}
.ycd{bottom:141.165000px;}
.ycb{bottom:141.294000px;}
.ya4{bottom:141.300000px;}
.y88{bottom:141.345000px;}
.y20{bottom:146.016000px;}
.y13f{bottom:146.736000px;}
.y177{bottom:149.796000px;}
.yd1{bottom:151.410000px;}
.yab{bottom:158.400000px;}
.yad{bottom:158.439000px;}
.y87{bottom:158.445000px;}
.ya3{bottom:158.580000px;}
.yd2{bottom:158.625000px;}
.y62{bottom:159.510000px;}
.y42{bottom:161.670000px;}
.y7d{bottom:163.650000px;}
.y13c{bottom:164.730000px;}
.y162{bottom:166.710000px;}
.y9e{bottom:171.210000px;}
.y14c{bottom:171.390000px;}
.ybc{bottom:175.680000px;}
.yc9{bottom:175.710000px;}
.yc5{bottom:175.719000px;}
.y86{bottom:175.725000px;}
.ya2{bottom:175.860000px;}
.y1f{bottom:176.070000px;}
.y161{bottom:181.470000px;}
.y13b{bottom:182.730000px;}
.y117{bottom:183.090000px;}
.y61{bottom:185.430000px;}
.y41{bottom:187.590000px;}
.y7c{bottom:189.570000px;}
.ybb{bottom:192.990000px;}
.yc4{bottom:192.999000px;}
.y155{bottom:200.190000px;}
.y13a{bottom:200.730000px;}
.y176{bottom:201.630000px;}
.y1e{bottom:204.870000px;}
.y116{bottom:207.570000px;}
.yba{bottom:210.270000px;}
.y60{bottom:211.350000px;}
.y40{bottom:213.510000px;}
.y7b{bottom:215.310000px;}
.y139{bottom:218.730000px;}
.y14b{bottom:223.950000px;}
.y1d{bottom:224.670000px;}
.y175{bottom:227.370000px;}
.y160{bottom:234.030000px;}
.y138{bottom:236.730000px;}
.y5f{bottom:237.450000px;}
.ybd{bottom:237.810000px;}
.y115{bottom:238.170000px;}
.y3f{bottom:239.430000px;}
.y7a{bottom:241.230000px;}
.y1c{bottom:244.470000px;}
.y154{bottom:252.750000px;}
.y174{bottom:253.290000px;}
.y137{bottom:254.730000px;}
.y114{bottom:256.710000px;}
.y5e{bottom:263.910000px;}
.y1b{bottom:264.270000px;}
.y3e{bottom:265.170000px;}
.y79{bottom:267.150000px;}
.y136{bottom:272.775000px;}
.y113{bottom:276.555000px;}
.y173{bottom:279.255000px;}
.y1a{bottom:285.375000px;}
.yaa{bottom:289.515000px;}
.y5d{bottom:290.055000px;}
.y135{bottom:290.775000px;}
.y3d{bottom:291.135000px;}
.y9d{bottom:292.755000px;}
.y78{bottom:293.115000px;}
.y112{bottom:295.095000px;}
.y15f{bottom:303.735000px;}
.y172{bottom:305.175000px;}
.y19{bottom:306.255000px;}
.yb9{bottom:307.515000px;}
.y134{bottom:308.775000px;}
.y111{bottom:313.815000px;}
.y5c{bottom:315.795000px;}
.y3c{bottom:317.055000px;}
.y77{bottom:318.855000px;}
.y153{bottom:322.455000px;}
.yc1{bottom:324.795000px;}
.yc8{bottom:325.515000px;}
.y133{bottom:326.775000px;}
.y14a{bottom:328.935000px;}
.y171{bottom:330.915000px;}
.y110{bottom:332.355000px;}
.y18{bottom:336.135000px;}
.y5b{bottom:341.715000px;}
.y3b{bottom:342.975000px;}
.y76{bottom:344.775000px;}
.y10f{bottom:351.975000px;}
.y15e{bottom:356.295000px;}
.y170{bottom:356.835000px;}
.y132{bottom:362.775000px;}
.y17{bottom:364.935000px;}
.y5a{bottom:367.635000px;}
.y3a{bottom:368.715000px;}
.y75{bottom:370.695000px;}
.y152{bottom:375.015000px;}
.y99{bottom:379.695000px;}
.y131{bottom:380.775000px;}
.yfd{bottom:381.675000px;}
.y16f{bottom:382.755000px;}
.y16{bottom:384.735000px;}
.y10e{bottom:389.235000px;}
.y59{bottom:393.555000px;}
.y39{bottom:394.635000px;}
.y74{bottom:396.615000px;}
.y130{bottom:398.775000px;}
.y15{bottom:404.715000px;}
.yfc{bottom:407.415000px;}
.y10d{bottom:407.955000px;}
.y15d{bottom:408.675000px;}
.y12f{bottom:416.775000px;}
.y58{bottom:419.295000px;}
.yfb{bottom:422.175000px;}
.y73{bottom:422.355000px;}
.y38{bottom:423.435000px;}
.y14{bottom:424.515000px;}
.y10c{bottom:426.495000px;}
.y149{bottom:433.875000px;}
.y16e{bottom:434.415000px;}
.y12e{bottom:434.775000px;}
.ye8{bottom:437.295000px;}
.yfa{bottom:440.175000px;}
.y13{bottom:444.315000px;}
.y57{bottom:445.575000px;}
.y10b{bottom:446.295000px;}
.y72{bottom:448.275000px;}
.y37{bottom:452.235000px;}
.y12d{bottom:452.775000px;}
.y16d{bottom:460.335000px;}
.ye7{bottom:461.775000px;}
.ya9{bottom:462.675000px;}
.y12{bottom:464.115000px;}
.y12c{bottom:470.775000px;}
.y56{bottom:471.675000px;}
.y10a{bottom:473.115000px;}
.y71{bottom:474.195000px;}
.ye6{bottom:476.535000px;}
.y15b{bottom:478.515000px;}
.ycf{bottom:480.675000px;}
.y36{bottom:481.215000px;}
.y11{bottom:483.915000px;}
.y16c{bottom:486.255000px;}
.y148{bottom:486.435000px;}
.y12b{bottom:488.805000px;}
.yf9{bottom:492.765000px;}
.ye5{bottom:494.565000px;}
.y151{bottom:496.545000px;}
.y55{bottom:497.445000px;}
.ya8{bottom:497.985000px;}
.y109{bottom:499.065000px;}
.y70{bottom:500.145000px;}
.y35{bottom:501.045000px;}
.y10{bottom:504.825000px;}
.y12a{bottom:506.805000px;}
.y16b{bottom:512.205000px;}
.ye4{bottom:512.565000px;}
.y108{bottom:513.825000px;}
.y34{bottom:520.845000px;}
.y54{bottom:523.365000px;}
.y129{bottom:524.805000px;}
.y6f{bottom:525.885000px;}
.ye3{bottom:530.565000px;}
.y107{bottom:531.825000px;}
.yb8{bottom:532.545000px;}
.yc7{bottom:533.265000px;}
.yf{bottom:534.885000px;}
.y16a{bottom:537.945000px;}
.y147{bottom:539.025000px;}
.y33{bottom:540.645000px;}
.y128{bottom:542.805000px;}
.y15a{bottom:548.205000px;}
.y53{bottom:549.285000px;}
.y6e{bottom:551.805000px;}
.y32{bottom:560.445000px;}
.y127{bottom:560.805000px;}
.ye{bottom:563.685000px;}
.y169{bottom:563.865000px;}
.y150{bottom:566.205000px;}
.y8f{bottom:571.065000px;}
.y52{bottom:575.385000px;}
.y6d{bottom:577.725000px;}
.y126{bottom:578.805000px;}
.yf8{bottom:579.705000px;}
.y31{bottom:580.425000px;}
.y106{bottom:584.385000px;}
.ycc{bottom:585.105000px;}
.y168{bottom:589.785000px;}
.yd{bottom:592.485000px;}
.y125{bottom:596.805000px;}
.y30{bottom:600.225000px;}
.ye2{bottom:600.405000px;}
.y51{bottom:601.845000px;}
.y6c{bottom:603.465000px;}
.y146{bottom:608.685000px;}
.yc{bottom:612.285000px;}
.y124{bottom:614.805000px;}
.yf7{bottom:614.985000px;}
.y167{bottom:615.525000px;}
.y159{bottom:618.045000px;}
.ya7{bottom:619.485000px;}
.y2f{bottom:620.025000px;}
.y50{bottom:628.305000px;}
.y6b{bottom:629.385000px;}
.yb{bottom:632.085000px;}
.y122{bottom:632.805000px;}
.ye1{bottom:636.045000px;}
.y166{bottom:641.445000px;}
.y2e{bottom:648.825000px;}
.yf6{bottom:650.265000px;}
.y123{bottom:650.805000px;}
.ya{bottom:652.065000px;}
.y14f{bottom:653.325000px;}
.yc0{bottom:654.045000px;}
.y4f{bottom:654.585000px;}
.y6a{bottom:655.305000px;}
.y85{bottom:658.005000px;}
.ye0{bottom:660.705000px;}
.y165{bottom:667.365000px;}
.yd8{bottom:668.805000px;}
.yde{bottom:675.465000px;}
.y2d{bottom:677.625000px;}
.y145{bottom:678.525000px;}
.y121{bottom:680.505000px;}
.y9{bottom:680.865000px;}
.y4e{bottom:681.045000px;}
.y69{bottom:681.405000px;}
.yf4{bottom:685.545000px;}
.y158{bottom:687.705000px;}
.yd7{bottom:693.285000px;}
.y2c{bottom:697.605000px;}
.y120{bottom:704.310000px;}
.yb7{bottom:705.750000px;}
.y103{bottom:705.930000px;}
.y67{bottom:706.650000px;}
.y4d{bottom:707.370000px;}
.y8{bottom:709.710000px;}
.y2b{bottom:717.450000px;}
.yd6{bottom:719.070000px;}
.yf2{bottom:720.870000px;}
.y11f{bottom:722.310000px;}
.ya1{bottom:723.750000px;}
.y65{bottom:725.730000px;}
.y102{bottom:729.150000px;}
.y144{bottom:730.950000px;}
.y4c{bottom:732.570000px;}
.y2a{bottom:738.330000px;}
.y7{bottom:738.510000px;}
.y11e{bottom:740.310000px;}
.yd5{bottom:744.990000px;}
.ydd{bottom:745.170000px;}
.y68{bottom:748.050000px;}
.y66{bottom:750.210000px;}
.y4a{bottom:751.650000px;}
.y29{bottom:758.130000px;}
.ybf{bottom:758.310000px;}
.y101{bottom:764.430000px;}
.y64{bottom:770.910000px;}
.y6{bottom:771.630000px;}
.yec{bottom:773.250000px;}
.y4b{bottom:776.130000px;}
.y11d{bottom:776.310000px;}
.y28{bottom:777.930000px;}
.y142{bottom:783.510000px;}
.y11c{bottom:794.310000px;}
.y5{bottom:794.850000px;}
.y49{bottom:796.830000px;}
.ydc{bottom:797.730000px;}
.y27{bottom:797.910000px;}
.y80{bottom:798.270000px;}
.yff{bottom:799.710000px;}
.yb5{bottom:809.970000px;}
.y119{bottom:812.310000px;}
.y26{bottom:818.790000px;}
.y48{bottom:822.570000px;}
.y4{bottom:827.790000px;}
.y11b{bottom:830.310000px;}
.yfe{bottom:834.810000px;}
.y25{bottom:838.590000px;}
.yeb{bottom:838.770000px;}
.y14e{bottom:844.530000px;}
.y47{bottom:848.490000px;}
.ydb{bottom:850.290000px;}
.y24{bottom:859.470000px;}
.y118{bottom:860.190000px;}
.y3{bottom:861.090000px;}
.yea{bottom:870.450000px;}
.y141{bottom:870.990000px;}
.y46{bottom:874.410000px;}
.y23{bottom:879.270000px;}
.yda{bottom:885.930000px;}
.ye9{bottom:886.110000px;}
.y22{bottom:899.250000px;}
.y45{bottom:900.330000px;}
.y81{bottom:901.590000px;}
.yd9{bottom:901.770000px;}
.h22{height:17.100000px;}
.h2e{height:17.136000px;}
.h21{height:17.280000px;}
.h24{height:17.316000px;}
.h2b{height:22.500000px;}
.h2a{height:34.380000px;}
.h28{height:34.416000px;}
.hc{height:34.560000px;}
.h17{height:34.596000px;}
.h2d{height:35.100000px;}
.h2c{height:35.280000px;}
.hb{height:38.100586px;}
.h25{height:41.493516px;}
.h5{height:42.164648px;}
.h2{height:43.215117px;}
.h7{height:43.506914px;}
.h11{height:47.901094px;}
.h6{height:48.995859px;}
.h4{height:50.800781px;}
.h27{height:51.660000px;}
.h2f{height:51.696000px;}
.h9{height:51.792187px;}
.h13{height:51.840000px;}
.h29{height:51.876000px;}
.h26{height:52.920000px;}
.h3{height:67.565039px;}
.h23{height:68.940000px;}
.h1b{height:68.976000px;}
.h30{height:69.120000px;}
.h8{height:74.116406px;}
.he{height:86.220000px;}
.hf{height:86.256000px;}
.h32{height:86.400000px;}
.h10{height:103.500000px;}
.h15{height:103.536000px;}
.h1c{height:120.600000px;}
.h16{height:120.780000px;}
.h12{height:120.816000px;}
.h31{height:138.060000px;}
.ha{height:150.436406px;}
.h1d{height:155.160000px;}
.h1e{height:155.340000px;}
.h18{height:172.440000px;}
.h19{height:172.470000px;}
.h20{height:172.650000px;}
.h14{height:189.720000px;}
.hd{height:189.750000px;}
.h1f{height:207.030000px;}
.h1a{height:224.310000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w11{width:66.240000px;}
.w10{width:66.276000px;}
.w13{width:66.420000px;}
.w12{width:66.456000px;}
.wd{width:73.620000px;}
.w14{width:75.816000px;}
.w15{width:75.960000px;}
.w16{width:75.996000px;}
.wa{width:79.200000px;}
.w6{width:82.440000px;}
.w3{width:92.880000px;}
.w17{width:116.100000px;}
.we{width:132.300000px;}
.wb{width:206.130000px;}
.w19{width:227.910000px;}
.w8{width:252.210000px;}
.w4{width:286.050000px;}
.w5{width:299.055000px;}
.wc{width:318.135000px;}
.w18{width:333.975000px;}
.w9{width:426.495000px;}
.wf{width:535.965000px;}
.w7{width:596.265000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:4.860000px;}
.x19{left:7.560000px;}
.x3c{left:10.620000px;}
.x1c{left:12.240000px;}
.x20{left:14.220000px;}
.x22{left:16.020000px;}
.x28{left:19.800000px;}
.x12{left:21.780000px;}
.x1d{left:25.560000px;}
.x21{left:26.820000px;}
.x14{left:30.240000px;}
.x24{left:32.940000px;}
.x36{left:34.380000px;}
.x1e{left:35.460000px;}
.x39{left:36.900000px;}
.x17{left:38.550000px;}
.x2f{left:39.780000px;}
.x25{left:41.400000px;}
.x27{left:43.740000px;}
.x37{left:49.530000px;}
.x3a{left:58.320000px;}
.x18{left:61.770000px;}
.x3d{left:63.720000px;}
.x15{left:95.805000px;}
.x2{left:106.235987px;}
.x3{left:128.195987px;}
.x5{left:133.235987px;}
.x7{left:160.229987px;}
.xb{left:163.649987px;}
.x6{left:187.229987px;}
.x1a{left:189.930000px;}
.x13{left:200.370000px;}
.x38{left:223.590000px;}
.x26{left:239.970000px;}
.x29{left:306.975000px;}
.x30{left:316.515000px;}
.x1b{left:359.715000px;}
.x2a{left:374.115000px;}
.x4{left:384.914987px;}
.x31{left:393.195000px;}
.xc{left:394.454987px;}
.xd{left:399.134987px;}
.x8{left:401.654987px;}
.x11{left:431.534987px;}
.x9{left:434.054987px;}
.x10{left:438.194987px;}
.xa{left:440.894987px;}
.x1{left:442.694987px;}
.xf{left:454.934987px;}
.xe{left:458.354987px;}
.x32{left:469.875000px;}
.x16{left:487.155000px;}
.x2b{left:508.245000px;}
.x33{left:546.585000px;}
.x3b{left:558.285000px;}
.x2c{left:575.205000px;}
.x34{left:623.265000px;}
.x2d{left:642.345000px;}
.x35{left:699.990000px;}
.x2e{left:709.530000px;}
.x1f{left:712.770000px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v4{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:10.880000pt;}
.v1{vertical-align:18.560000pt;}
.v5{vertical-align:67.840000pt;}
.ls20{letter-spacing:-1.120000pt;}
.ls21{letter-spacing:-0.688000pt;}
.lsb{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls22{letter-spacing:-0.183467pt;}
.ls1d{letter-spacing:-0.094933pt;}
.ls18{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.094720pt;}
.ls1b{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.175360pt;}
.lsc{letter-spacing:0.230933pt;}
.ls1f{letter-spacing:0.231040pt;}
.ls5{letter-spacing:0.265600pt;}
.ls1e{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.480000pt;}
.ls1c{letter-spacing:0.592000pt;}
.ls12{letter-spacing:0.769920pt;}
.ls10{letter-spacing:1.339520pt;}
.ls11{letter-spacing:1.417600pt;}
.ls13{letter-spacing:1.627520pt;}
.lsa{letter-spacing:2.720000pt;}
.ls17{letter-spacing:3.507200pt;}
.ls15{letter-spacing:3.613867pt;}
.ls19{letter-spacing:3.680000pt;}
.ls16{letter-spacing:4.147200pt;}
.lse{letter-spacing:18.227200pt;}
.ls14{letter-spacing:18.867200pt;}
.ls4{letter-spacing:49.232640pt;}
.ls2{letter-spacing:56.891307pt;}
.ls1a{letter-spacing:754.858667pt;}
.ws2{word-spacing:-53.120000pt;}
.ws0{word-spacing:-21.600000pt;}
.ws12{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.545600pt;}
.ws7{word-spacing:-13.510933pt;}
.ws15{word-spacing:-13.440000pt;}
.ws14{word-spacing:-13.374933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws13{word-spacing:-13.185067pt;}
.ws16{word-spacing:-13.096533pt;}
.ws5{word-spacing:-12.960000pt;}
.ws9{word-spacing:-11.686400pt;}
.ws1{word-spacing:-8.640000pt;}
.wsb{word-spacing:-8.166400pt;}
.wsc{word-spacing:-7.040000pt;}
.ws6{word-spacing:0.000000pt;}
.ws11{word-spacing:3.672960pt;}
.wsf{word-spacing:4.952960pt;}
.wsa{word-spacing:20.276480pt;}
.wsd{word-spacing:112.421120pt;}
.ws10{word-spacing:199.567787pt;}
._d{margin-left:-3.454720pt;}
._c{margin-left:-2.496640pt;}
._1{margin-left:-0.946987pt;}
._0{width:1.276800pt;}
._3{width:2.547840pt;}
._4{width:3.644587pt;}
._b{width:4.545707pt;}
._a{width:5.736960pt;}
._9{width:6.852480pt;}
._2{width:7.968000pt;}
._12{width:9.072213pt;}
._7{width:10.303360pt;}
._8{width:11.580160pt;}
._11{width:12.582400pt;}
._e{width:14.183040pt;}
._f{width:15.123413pt;}
._6{width:16.237440pt;}
._5{width:17.308160pt;}
._14{width:18.199040pt;}
._1e{width:19.441920pt;}
._1d{width:20.823040pt;}
._1f{width:22.106880pt;}
._18{width:23.213440pt;}
._17{width:24.222720pt;}
._16{width:25.379840pt;}
._15{width:26.272640pt;}
._19{width:27.408000pt;}
._1a{width:28.449280pt;}
._23{width:29.923200pt;}
._25{width:31.288320pt;}
._2d{width:32.350080pt;}
._21{width:33.306240pt;}
._20{width:34.846720pt;}
._13{width:36.216107pt;}
._2e{width:37.235200pt;}
._10{width:38.395520pt;}
._28{width:39.315200pt;}
._24{width:40.528640pt;}
._36{width:43.292800pt;}
._35{width:44.353280pt;}
._1c{width:45.683200pt;}
._1b{width:46.798720pt;}
._37{width:49.080960pt;}
._38{width:49.987840pt;}
._22{width:52.003200pt;}
._26{width:54.367360pt;}
._2c{width:55.351040pt;}
._29{width:59.014400pt;}
._2a{width:60.063360pt;}
._39{width:61.993600pt;}
._33{width:63.797120pt;}
._32{width:64.912640pt;}
._27{width:73.739520pt;}
._3a{width:82.670720pt;}
._2b{width:97.847040pt;}
._31{width:116.383360pt;}
._30{width:120.195840pt;}
._2f{width:121.167360pt;}
._34{width:754.858667pt;}
.fs6{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y84{bottom:2.880000pt;}
.y98{bottom:2.906667pt;}
.yf1{bottom:3.360000pt;}
.y105{bottom:5.120000pt;}
.y104{bottom:7.520000pt;}
.y100{bottom:10.400000pt;}
.y82{bottom:10.560000pt;}
.y11a{bottom:10.880000pt;}
.yee{bottom:11.040000pt;}
.y93{bottom:18.080000pt;}
.y157{bottom:18.234667pt;}
.y83{bottom:18.240000pt;}
.y97{bottom:18.266667pt;}
.yf5{bottom:18.280000pt;}
.yef{bottom:18.720000pt;}
.y13e{bottom:18.880000pt;}
.yf3{bottom:25.760000pt;}
.y143{bottom:25.920000pt;}
.yed{bottom:26.400000pt;}
.yb4{bottom:33.434667pt;}
.y92{bottom:33.440000pt;}
.ybe{bottom:33.480000pt;}
.ya0{bottom:33.594667pt;}
.y8e{bottom:33.600000pt;}
.y96{bottom:33.626667pt;}
.ydf{bottom:33.640000pt;}
.yf0{bottom:34.080000pt;}
.yb3{bottom:48.794667pt;}
.y91{bottom:48.800000pt;}
.y15c{bottom:48.826667pt;}
.y8d{bottom:48.840000pt;}
.y9c{bottom:48.960000pt;}
.y95{bottom:48.986667pt;}
.y2{bottom:51.872000pt;}
.yb2{bottom:64.154667pt;}
.y90{bottom:64.160000pt;}
.y8c{bottom:64.200000pt;}
.y9b{bottom:64.320000pt;}
.y94{bottom:64.346667pt;}
.y1{bottom:67.232000pt;}
.yb1{bottom:79.514667pt;}
.y9a{bottom:79.520000pt;}
.y8b{bottom:79.560000pt;}
.yb6{bottom:79.680000pt;}
.yd0{bottom:79.706667pt;}
.yb0{bottom:94.874667pt;}
.ya6{bottom:94.880000pt;}
.y8a{bottom:94.920000pt;}
.y44{bottom:97.792000pt;}
.yd4{bottom:98.592000pt;}
.y7f{bottom:99.392000pt;}
.y140{bottom:101.312000pt;}
.y164{bottom:102.112000pt;}
.yac{bottom:103.392000pt;}
.yc3{bottom:104.032000pt;}
.yca{bottom:104.672000pt;}
.y9f{bottom:105.472000pt;}
.y14d{bottom:105.792000pt;}
.yaf{bottom:110.074667pt;}
.y178{bottom:110.112000pt;}
.yce{bottom:110.120000pt;}
.yc6{bottom:110.234667pt;}
.ya5{bottom:110.240000pt;}
.y89{bottom:110.280000pt;}
.y21{bottom:111.232000pt;}
.y13d{bottom:114.432000pt;}
.y156{bottom:116.032000pt;}
.y63{bottom:118.912000pt;}
.y43{bottom:120.832000pt;}
.yd3{bottom:121.472000pt;}
.y7e{bottom:122.432000pt;}
.y163{bottom:125.152000pt;}
.yae{bottom:125.434667pt;}
.yc2{bottom:125.440000pt;}
.ycd{bottom:125.480000pt;}
.ycb{bottom:125.594667pt;}
.ya4{bottom:125.600000pt;}
.y88{bottom:125.640000pt;}
.y20{bottom:129.792000pt;}
.y13f{bottom:130.432000pt;}
.y177{bottom:133.152000pt;}
.yd1{bottom:134.586667pt;}
.yab{bottom:140.800000pt;}
.yad{bottom:140.834667pt;}
.y87{bottom:140.840000pt;}
.ya3{bottom:140.960000pt;}
.yd2{bottom:141.000000pt;}
.y62{bottom:141.786667pt;}
.y42{bottom:143.706667pt;}
.y7d{bottom:145.466667pt;}
.y13c{bottom:146.426667pt;}
.y162{bottom:148.186667pt;}
.y9e{bottom:152.186667pt;}
.y14c{bottom:152.346667pt;}
.ybc{bottom:156.160000pt;}
.yc9{bottom:156.186667pt;}
.yc5{bottom:156.194667pt;}
.y86{bottom:156.200000pt;}
.ya2{bottom:156.320000pt;}
.y1f{bottom:156.506667pt;}
.y161{bottom:161.306667pt;}
.y13b{bottom:162.426667pt;}
.y117{bottom:162.746667pt;}
.y61{bottom:164.826667pt;}
.y41{bottom:166.746667pt;}
.y7c{bottom:168.506667pt;}
.ybb{bottom:171.546667pt;}
.yc4{bottom:171.554667pt;}
.y155{bottom:177.946667pt;}
.y13a{bottom:178.426667pt;}
.y176{bottom:179.226667pt;}
.y1e{bottom:182.106667pt;}
.y116{bottom:184.506667pt;}
.yba{bottom:186.906667pt;}
.y60{bottom:187.866667pt;}
.y40{bottom:189.786667pt;}
.y7b{bottom:191.386667pt;}
.y139{bottom:194.426667pt;}
.y14b{bottom:199.066667pt;}
.y1d{bottom:199.706667pt;}
.y175{bottom:202.106667pt;}
.y160{bottom:208.026667pt;}
.y138{bottom:210.426667pt;}
.y5f{bottom:211.066667pt;}
.ybd{bottom:211.386667pt;}
.y115{bottom:211.706667pt;}
.y3f{bottom:212.826667pt;}
.y7a{bottom:214.426667pt;}
.y1c{bottom:217.306667pt;}
.y154{bottom:224.666667pt;}
.y174{bottom:225.146667pt;}
.y137{bottom:226.426667pt;}
.y114{bottom:228.186667pt;}
.y5e{bottom:234.586667pt;}
.y1b{bottom:234.906667pt;}
.y3e{bottom:235.706667pt;}
.y79{bottom:237.466667pt;}
.y136{bottom:242.466667pt;}
.y113{bottom:245.826667pt;}
.y173{bottom:248.226667pt;}
.y1a{bottom:253.666667pt;}
.yaa{bottom:257.346667pt;}
.y5d{bottom:257.826667pt;}
.y135{bottom:258.466667pt;}
.y3d{bottom:258.786667pt;}
.y9d{bottom:260.226667pt;}
.y78{bottom:260.546667pt;}
.y112{bottom:262.306667pt;}
.y15f{bottom:269.986667pt;}
.y172{bottom:271.266667pt;}
.y19{bottom:272.226667pt;}
.yb9{bottom:273.346667pt;}
.y134{bottom:274.466667pt;}
.y111{bottom:278.946667pt;}
.y5c{bottom:280.706667pt;}
.y3c{bottom:281.826667pt;}
.y77{bottom:283.426667pt;}
.y153{bottom:286.626667pt;}
.yc1{bottom:288.706667pt;}
.yc8{bottom:289.346667pt;}
.y133{bottom:290.466667pt;}
.y14a{bottom:292.386667pt;}
.y171{bottom:294.146667pt;}
.y110{bottom:295.426667pt;}
.y18{bottom:298.786667pt;}
.y5b{bottom:303.746667pt;}
.y3b{bottom:304.866667pt;}
.y76{bottom:306.466667pt;}
.y10f{bottom:312.866667pt;}
.y15e{bottom:316.706667pt;}
.y170{bottom:317.186667pt;}
.y132{bottom:322.466667pt;}
.y17{bottom:324.386667pt;}
.y5a{bottom:326.786667pt;}
.y3a{bottom:327.746667pt;}
.y75{bottom:329.506667pt;}
.y152{bottom:333.346667pt;}
.y99{bottom:337.506667pt;}
.y131{bottom:338.466667pt;}
.yfd{bottom:339.266667pt;}
.y16f{bottom:340.226667pt;}
.y16{bottom:341.986667pt;}
.y10e{bottom:345.986667pt;}
.y59{bottom:349.826667pt;}
.y39{bottom:350.786667pt;}
.y74{bottom:352.546667pt;}
.y130{bottom:354.466667pt;}
.y15{bottom:359.746667pt;}
.yfc{bottom:362.146667pt;}
.y10d{bottom:362.626667pt;}
.y15d{bottom:363.266667pt;}
.y12f{bottom:370.466667pt;}
.y58{bottom:372.706667pt;}
.yfb{bottom:375.266667pt;}
.y73{bottom:375.426667pt;}
.y38{bottom:376.386667pt;}
.y14{bottom:377.346667pt;}
.y10c{bottom:379.106667pt;}
.y149{bottom:385.666667pt;}
.y16e{bottom:386.146667pt;}
.y12e{bottom:386.466667pt;}
.ye8{bottom:388.706667pt;}
.yfa{bottom:391.266667pt;}
.y13{bottom:394.946667pt;}
.y57{bottom:396.066667pt;}
.y10b{bottom:396.706667pt;}
.y72{bottom:398.466667pt;}
.y37{bottom:401.986667pt;}
.y12d{bottom:402.466667pt;}
.y16d{bottom:409.186667pt;}
.ye7{bottom:410.466667pt;}
.ya9{bottom:411.266667pt;}
.y12{bottom:412.546667pt;}
.y12c{bottom:418.466667pt;}
.y56{bottom:419.266667pt;}
.y10a{bottom:420.546667pt;}
.y71{bottom:421.506667pt;}
.ye6{bottom:423.586667pt;}
.y15b{bottom:425.346667pt;}
.ycf{bottom:427.266667pt;}
.y36{bottom:427.746667pt;}
.y11{bottom:430.146667pt;}
.y16c{bottom:432.226667pt;}
.y148{bottom:432.386667pt;}
.y12b{bottom:434.493333pt;}
.yf9{bottom:438.013333pt;}
.ye5{bottom:439.613333pt;}
.y151{bottom:441.373333pt;}
.y55{bottom:442.173333pt;}
.ya8{bottom:442.653333pt;}
.y109{bottom:443.613333pt;}
.y70{bottom:444.573333pt;}
.y35{bottom:445.373333pt;}
.y10{bottom:448.733333pt;}
.y12a{bottom:450.493333pt;}
.y16b{bottom:455.293333pt;}
.ye4{bottom:455.613333pt;}
.y108{bottom:456.733333pt;}
.y34{bottom:462.973333pt;}
.y54{bottom:465.213333pt;}
.y129{bottom:466.493333pt;}
.y6f{bottom:467.453333pt;}
.ye3{bottom:471.613333pt;}
.y107{bottom:472.733333pt;}
.yb8{bottom:473.373333pt;}
.yc7{bottom:474.013333pt;}
.yf{bottom:475.453333pt;}
.y16a{bottom:478.173333pt;}
.y147{bottom:479.133333pt;}
.y33{bottom:480.573333pt;}
.y128{bottom:482.493333pt;}
.y15a{bottom:487.293333pt;}
.y53{bottom:488.253333pt;}
.y6e{bottom:490.493333pt;}
.y32{bottom:498.173333pt;}
.y127{bottom:498.493333pt;}
.ye{bottom:501.053333pt;}
.y169{bottom:501.213333pt;}
.y150{bottom:503.293333pt;}
.y8f{bottom:507.613333pt;}
.y52{bottom:511.453333pt;}
.y6d{bottom:513.533333pt;}
.y126{bottom:514.493333pt;}
.yf8{bottom:515.293333pt;}
.y31{bottom:515.933333pt;}
.y106{bottom:519.453333pt;}
.ycc{bottom:520.093333pt;}
.y168{bottom:524.253333pt;}
.yd{bottom:526.653333pt;}
.y125{bottom:530.493333pt;}
.y30{bottom:533.533333pt;}
.ye2{bottom:533.693333pt;}
.y51{bottom:534.973333pt;}
.y6c{bottom:536.413333pt;}
.y146{bottom:541.053333pt;}
.yc{bottom:544.253333pt;}
.y124{bottom:546.493333pt;}
.yf7{bottom:546.653333pt;}
.y167{bottom:547.133333pt;}
.y159{bottom:549.373333pt;}
.ya7{bottom:550.653333pt;}
.y2f{bottom:551.133333pt;}
.y50{bottom:558.493333pt;}
.y6b{bottom:559.453333pt;}
.yb{bottom:561.853333pt;}
.y122{bottom:562.493333pt;}
.ye1{bottom:565.373333pt;}
.y166{bottom:570.173333pt;}
.y2e{bottom:576.733333pt;}
.yf6{bottom:578.013333pt;}
.y123{bottom:578.493333pt;}
.ya{bottom:579.613333pt;}
.y14f{bottom:580.733333pt;}
.yc0{bottom:581.373333pt;}
.y4f{bottom:581.853333pt;}
.y6a{bottom:582.493333pt;}
.y85{bottom:584.893333pt;}
.ye0{bottom:587.293333pt;}
.y165{bottom:593.213333pt;}
.yd8{bottom:594.493333pt;}
.yde{bottom:600.413333pt;}
.y2d{bottom:602.333333pt;}
.y145{bottom:603.133333pt;}
.y121{bottom:604.893333pt;}
.y9{bottom:605.213333pt;}
.y4e{bottom:605.373333pt;}
.y69{bottom:605.693333pt;}
.yf4{bottom:609.373333pt;}
.y158{bottom:611.293333pt;}
.yd7{bottom:616.253333pt;}
.y2c{bottom:620.093333pt;}
.y120{bottom:626.053333pt;}
.yb7{bottom:627.333333pt;}
.y103{bottom:627.493333pt;}
.y67{bottom:628.133333pt;}
.y4d{bottom:628.773333pt;}
.y8{bottom:630.853333pt;}
.y2b{bottom:637.733333pt;}
.yd6{bottom:639.173333pt;}
.yf2{bottom:640.773333pt;}
.y11f{bottom:642.053333pt;}
.ya1{bottom:643.333333pt;}
.y65{bottom:645.093333pt;}
.y102{bottom:648.133333pt;}
.y144{bottom:649.733333pt;}
.y4c{bottom:651.173333pt;}
.y2a{bottom:656.293333pt;}
.y7{bottom:656.453333pt;}
.y11e{bottom:658.053333pt;}
.yd5{bottom:662.213333pt;}
.ydd{bottom:662.373333pt;}
.y68{bottom:664.933333pt;}
.y66{bottom:666.853333pt;}
.y4a{bottom:668.133333pt;}
.y29{bottom:673.893333pt;}
.ybf{bottom:674.053333pt;}
.y101{bottom:679.493333pt;}
.y64{bottom:685.253333pt;}
.y6{bottom:685.893333pt;}
.yec{bottom:687.333333pt;}
.y4b{bottom:689.893333pt;}
.y11d{bottom:690.053333pt;}
.y28{bottom:691.493333pt;}
.y142{bottom:696.453333pt;}
.y11c{bottom:706.053333pt;}
.y5{bottom:706.533333pt;}
.y49{bottom:708.293333pt;}
.ydc{bottom:709.093333pt;}
.y27{bottom:709.253333pt;}
.y80{bottom:709.573333pt;}
.yff{bottom:710.853333pt;}
.yb5{bottom:719.973333pt;}
.y119{bottom:722.053333pt;}
.y26{bottom:727.813333pt;}
.y48{bottom:731.173333pt;}
.y4{bottom:735.813333pt;}
.y11b{bottom:738.053333pt;}
.yfe{bottom:742.053333pt;}
.y25{bottom:745.413333pt;}
.yeb{bottom:745.573333pt;}
.y14e{bottom:750.693333pt;}
.y47{bottom:754.213333pt;}
.ydb{bottom:755.813333pt;}
.y24{bottom:763.973333pt;}
.y118{bottom:764.613333pt;}
.y3{bottom:765.413333pt;}
.yea{bottom:773.733333pt;}
.y141{bottom:774.213333pt;}
.y46{bottom:777.253333pt;}
.y23{bottom:781.573333pt;}
.yda{bottom:787.493333pt;}
.ye9{bottom:787.653333pt;}
.y22{bottom:799.333333pt;}
.y45{bottom:800.293333pt;}
.y81{bottom:801.413333pt;}
.yd9{bottom:801.573333pt;}
.h22{height:15.200000pt;}
.h2e{height:15.232000pt;}
.h21{height:15.360000pt;}
.h24{height:15.392000pt;}
.h2b{height:20.000000pt;}
.h2a{height:30.560000pt;}
.h28{height:30.592000pt;}
.hc{height:30.720000pt;}
.h17{height:30.752000pt;}
.h2d{height:31.200000pt;}
.h2c{height:31.360000pt;}
.hb{height:33.867188pt;}
.h25{height:36.883125pt;}
.h5{height:37.479688pt;}
.h2{height:38.413438pt;}
.h7{height:38.672812pt;}
.h11{height:42.578750pt;}
.h6{height:43.551875pt;}
.h4{height:45.156250pt;}
.h27{height:45.920000pt;}
.h2f{height:45.952000pt;}
.h9{height:46.037500pt;}
.h13{height:46.080000pt;}
.h29{height:46.112000pt;}
.h26{height:47.040000pt;}
.h3{height:60.057813pt;}
.h23{height:61.280000pt;}
.h1b{height:61.312000pt;}
.h30{height:61.440000pt;}
.h8{height:65.881250pt;}
.he{height:76.640000pt;}
.hf{height:76.672000pt;}
.h32{height:76.800000pt;}
.h10{height:92.000000pt;}
.h15{height:92.032000pt;}
.h1c{height:107.200000pt;}
.h16{height:107.360000pt;}
.h12{height:107.392000pt;}
.h31{height:122.720000pt;}
.ha{height:133.721250pt;}
.h1d{height:137.920000pt;}
.h1e{height:138.080000pt;}
.h18{height:153.280000pt;}
.h19{height:153.306667pt;}
.h20{height:153.466667pt;}
.h14{height:168.640000pt;}
.hd{height:168.666667pt;}
.h1f{height:184.026667pt;}
.h1a{height:199.386667pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w11{width:58.880000pt;}
.w10{width:58.912000pt;}
.w13{width:59.040000pt;}
.w12{width:59.072000pt;}
.wd{width:65.440000pt;}
.w14{width:67.392000pt;}
.w15{width:67.520000pt;}
.w16{width:67.552000pt;}
.wa{width:70.400000pt;}
.w6{width:73.280000pt;}
.w3{width:82.560000pt;}
.w17{width:103.200000pt;}
.we{width:117.600000pt;}
.wb{width:183.226667pt;}
.w19{width:202.586667pt;}
.w8{width:224.186667pt;}
.w4{width:254.266667pt;}
.w5{width:265.826667pt;}
.wc{width:282.786667pt;}
.w18{width:296.866667pt;}
.w9{width:379.106667pt;}
.wf{width:476.413333pt;}
.w7{width:530.013333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:4.320000pt;}
.x19{left:6.720000pt;}
.x3c{left:9.440000pt;}
.x1c{left:10.880000pt;}
.x20{left:12.640000pt;}
.x22{left:14.240000pt;}
.x28{left:17.600000pt;}
.x12{left:19.360000pt;}
.x1d{left:22.720000pt;}
.x21{left:23.840000pt;}
.x14{left:26.880000pt;}
.x24{left:29.280000pt;}
.x36{left:30.560000pt;}
.x1e{left:31.520000pt;}
.x39{left:32.800000pt;}
.x17{left:34.266667pt;}
.x2f{left:35.360000pt;}
.x25{left:36.800000pt;}
.x27{left:38.880000pt;}
.x37{left:44.026667pt;}
.x3a{left:51.840000pt;}
.x18{left:54.906667pt;}
.x3d{left:56.640000pt;}
.x15{left:85.160000pt;}
.x2{left:94.431988pt;}
.x3{left:113.951988pt;}
.x5{left:118.431988pt;}
.x7{left:142.426655pt;}
.xb{left:145.466655pt;}
.x6{left:166.426655pt;}
.x1a{left:168.826667pt;}
.x13{left:178.106667pt;}
.x38{left:198.746667pt;}
.x26{left:213.306667pt;}
.x29{left:272.866667pt;}
.x30{left:281.346667pt;}
.x1b{left:319.746667pt;}
.x2a{left:332.546667pt;}
.x4{left:342.146655pt;}
.x31{left:349.506667pt;}
.xc{left:350.626655pt;}
.xd{left:354.786655pt;}
.x8{left:357.026655pt;}
.x11{left:383.586655pt;}
.x9{left:385.826655pt;}
.x10{left:389.506655pt;}
.xa{left:391.906655pt;}
.x1{left:393.506655pt;}
.xf{left:404.386655pt;}
.xe{left:407.426655pt;}
.x32{left:417.666667pt;}
.x16{left:433.026667pt;}
.x2b{left:451.773333pt;}
.x33{left:485.853333pt;}
.x3b{left:496.253333pt;}
.x2c{left:511.293333pt;}
.x34{left:554.013333pt;}
.x2d{left:570.973333pt;}
.x35{left:622.213333pt;}
.x2e{left:630.693333pt;}
.x1f{left:633.573333pt;}
}




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