
    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_d1fc04402dbdd8dc73c94e06.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_4095117f5a6422e2991f29c7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_23e45ecdfecbb511f184c97a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_dc81cf37214e8bdefd4fa977.woff')format("woff");}.ff4{font-family:ff4;line-height:0.690918;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_82b9a768071f6a1a57e94f2e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_5623dad7355e0b13e16edd81.woff')format("woff");}.ff6{font-family:ff6;line-height:1.035156;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_5e515ceb791c16871798d8ce.woff')format("woff");}.ff7{font-family:ff7;line-height:0.942383;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_3c457ddb3cd2405c490732ef.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff9{font-family:ff9;line-height:1.003906;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_ddb64498bde728ddd383a367.woff')format("woff");}.ffa{font-family:ffa;line-height:0.708008;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_c5777bb54f7b60fe13a24d07.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffc{font-family:ffc;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-77.040000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.414600px;}
.lsa{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.305400px;}
.ls16{letter-spacing:-0.262200px;}
.ls8{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.ls0{letter-spacing:0.119520px;}
.ls6{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.149760px;}
.ls4{letter-spacing:0.153600px;}
.ls5{letter-spacing:0.174000px;}
.ls1{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls12{letter-spacing:0.262200px;}
.ls17{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.504000px;}
.lse{letter-spacing:0.720000px;}
.lsb{letter-spacing:5.040000px;}
.lsd{letter-spacing:5.760000px;}
.ls15{letter-spacing:6.785280px;}
.lsc{letter-spacing:10.080000px;}
.ls7{letter-spacing:12.960000px;}
.ls18{letter-spacing:16.506720px;}
.ls14{letter-spacing:39.905280px;}
.ls19{letter-spacing:3085.200000px;}
.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;}
}
.wsb{word-spacing:-18.144000px;}
.ws6{word-spacing:-18.000000px;}
.ws5{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.297800px;}
.wsd{word-spacing:-16.254600px;}
.wse{word-spacing:-15.840000px;}
.ws2{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.120000px;}
.ws3{word-spacing:-15.093600px;}
.ws8{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.ws1{word-spacing:-14.580000px;}
.ws4{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._6{margin-left:-2728.441440px;}
._1d{margin-left:-1445.076000px;}
._1b{margin-left:-767.213760px;}
._1c{margin-left:-571.824000px;}
._a{margin-left:-4.392000px;}
._b{margin-left:-2.952000px;}
._1{margin-left:-1.513680px;}
._0{width:1.135440px;}
._11{width:2.184000px;}
._2{width:3.187200px;}
._7{width:5.002320px;}
._c{width:6.534240px;}
._f{width:8.424000px;}
._10{width:9.720000px;}
._9{width:11.088000px;}
._8{width:12.528000px;}
._1a{width:13.621680px;}
._19{width:14.688000px;}
._15{width:16.573680px;}
._d{width:19.080000px;}
._e{width:20.421120px;}
._17{width:22.752000px;}
._18{width:24.736560px;}
._16{width:25.776000px;}
._1e{width:27.448560px;}
._14{width:28.944000px;}
._1f{width:29.970240px;}
._12{width:34.200000px;}
._13{width:35.208000px;}
._4{width:72.618960px;}
._5{width:92.340000px;}
._3{width:143.294400px;}
.fc7{color:rgb(62,61,64);}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(255,0,0);}
.fc6{color:rgb(27,27,27);}
.fc5{color:rgb(33,33,33);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,176,240);}
.fs6{font-size:30.240000px;}
.fs3{font-size:38.880000px;}
.fs1{font-size:41.760000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y17a{bottom:-76.140000px;}
.y179{bottom:-42.300000px;}
.y178{bottom:-9.180000px;}
.y8b{bottom:-5.760000px;}
.y0{bottom:0.000000px;}
.yae{bottom:3.240000px;}
.yf8{bottom:4.140000px;}
.yf6{bottom:4.320000px;}
.y38{bottom:4.500000px;}
.ydd{bottom:5.220000px;}
.ycd{bottom:6.120000px;}
.y95{bottom:6.300000px;}
.y9c{bottom:6.660000px;}
.ye1{bottom:7.020000px;}
.ya6{bottom:7.200000px;}
.ya8{bottom:7.380000px;}
.yb0{bottom:7.560000px;}
.ya0{bottom:7.740000px;}
.yaa{bottom:7.770000px;}
.ydf{bottom:7.950000px;}
.y177{bottom:8.280000px;}
.yd4{bottom:9.360000px;}
.ya4{bottom:9.540000px;}
.yd0{bottom:9.720000px;}
.yf0{bottom:10.260000px;}
.y8f{bottom:11.160000px;}
.yb3{bottom:11.700000px;}
.yac{bottom:11.880000px;}
.yf4{bottom:12.780000px;}
.y9e{bottom:12.960000px;}
.y8a{bottom:13.860000px;}
.yce{bottom:14.760000px;}
.y91{bottom:14.940000px;}
.y9a{bottom:15.300000px;}
.yf2{bottom:17.820000px;}
.yd5{bottom:17.865000px;}
.ya2{bottom:18.180000px;}
.yd1{bottom:18.360000px;}
.y97{bottom:19.620000px;}
.yad{bottom:20.520000px;}
.yf5{bottom:21.420000px;}
.y37{bottom:21.780000px;}
.ydc{bottom:22.500000px;}
.ycc{bottom:23.400000px;}
.y9b{bottom:23.940000px;}
.y5{bottom:24.300000px;}
.y176{bottom:25.560000px;}
.yd3{bottom:26.505000px;}
.ya3{bottom:26.820000px;}
.y94{bottom:27.000000px;}
.yd8{bottom:28.980000px;}
.y8e{bottom:31.860000px;}
.y89{bottom:34.560000px;}
.yc8{bottom:35.460000px;}
.y175{bottom:42.840000px;}
.yca{bottom:44.100000px;}
.yd7{bottom:46.260000px;}
.yc9{bottom:52.740000px;}
.y174{bottom:59.940000px;}
.yc5{bottom:61.920000px;}
.y96{bottom:64.260000px;}
.y35{bottom:71.460000px;}
.yf9{bottom:73.440000px;}
.y11d{bottom:74.340000px;}
.y173{bottom:77.220000px;}
.y64{bottom:80.100000px;}
.yc4{bottom:85.680000px;}
.y143{bottom:86.760000px;}
.y87{bottom:93.600000px;}
.y172{bottom:94.500000px;}
.y34{bottom:95.220000px;}
.y11c{bottom:98.100000px;}
.y63{bottom:103.860000px;}
.y142{bottom:105.660000px;}
.yc3{bottom:109.440000px;}
.y171{bottom:111.825000px;}
.yf7{bottom:113.940000px;}
.y33{bottom:118.980000px;}
.y11b{bottom:121.860000px;}
.y141{bottom:124.740000px;}
.y62{bottom:127.620000px;}
.y170{bottom:129.105000px;}
.yc2{bottom:133.380000px;}
.y86{bottom:135.180000px;}
.y140{bottom:143.640000px;}
.y11a{bottom:145.620000px;}
.y16f{bottom:146.385000px;}
.y169{bottom:147.240000px;}
.y61{bottom:151.560000px;}
.y32{bottom:151.950000px;}
.yf3{bottom:156.270000px;}
.yc1{bottom:157.170000px;}
.y92{bottom:158.790000px;}
.y13f{bottom:162.570000px;}
.y16e{bottom:163.485000px;}
.y168{bottom:167.070000px;}
.y93{bottom:169.050000px;}
.y119{bottom:169.590000px;}
.y60{bottom:175.350000px;}
.y31{bottom:175.710000px;}
.y85{bottom:176.970000px;}
.y16d{bottom:180.765000px;}
.yc0{bottom:180.930000px;}
.y13e{bottom:181.650000px;}
.y167{bottom:186.870000px;}
.y118{bottom:193.350000px;}
.y16c{bottom:198.045000px;}
.yf1{bottom:198.750000px;}
.y30{bottom:199.470000px;}
.y13d{bottom:200.550000px;}
.ybf{bottom:204.690000px;}
.y166{bottom:206.670000px;}
.y5f{bottom:208.110000px;}
.y16b{bottom:215.325000px;}
.y117{bottom:217.110000px;}
.y84{bottom:218.730000px;}
.y13c{bottom:219.630000px;}
.y2f{bottom:223.230000px;}
.y165{bottom:226.470000px;}
.y5e{bottom:231.870000px;}
.ybe{bottom:237.450000px;}
.y13b{bottom:238.530000px;}
.y116{bottom:240.870000px;}
.y164{bottom:246.450000px;}
.y2e{bottom:247.170000px;}
.yef{bottom:251.130000px;}
.y90{bottom:254.190000px;}
.y5d{bottom:255.630000px;}
.y13a{bottom:257.610000px;}
.y83{bottom:260.310000px;}
.ybd{bottom:261.390000px;}
.y115{bottom:264.630000px;}
.y163{bottom:266.250000px;}
.y2d{bottom:270.930000px;}
.y139{bottom:276.510000px;}
.y5c{bottom:279.570000px;}
.ybc{bottom:285.150000px;}
.y114{bottom:288.570000px;}
.y16a{bottom:293.430000px;}
.y2c{bottom:294.690000px;}
.y138{bottom:295.410000px;}
.y82{bottom:302.070000px;}
.yee{bottom:302.610000px;}
.y5b{bottom:303.330000px;}
.ybb{bottom:308.910000px;}
.y113{bottom:312.330000px;}
.y137{bottom:314.490000px;}
.y2b{bottom:318.450000px;}
.yed{bottom:325.110000px;}
.yba{bottom:332.670000px;}
.y136{bottom:333.390000px;}
.y8c{bottom:334.290000px;}
.y5a{bottom:336.090000px;}
.y8d{bottom:337.170000px;}
.y2a{bottom:342.390000px;}
.y81{bottom:343.830000px;}
.yec{bottom:348.870000px;}
.y135{bottom:352.470000px;}
.yb9{bottom:356.610000px;}
.y59{bottom:359.850000px;}
.y29{bottom:366.150000px;}
.y134{bottom:371.370000px;}
.yeb{bottom:372.810000px;}
.yb8{bottom:380.370000px;}
.y58{bottom:383.790000px;}
.y80{bottom:385.410000px;}
.y28{bottom:389.910000px;}
.y133{bottom:390.270000px;}
.yea{bottom:396.570000px;}
.yb7{bottom:404.175000px;}
.y112{bottom:407.595000px;}
.y132{bottom:409.395000px;}
.y27{bottom:413.715000px;}
.y57{bottom:416.595000px;}
.ye9{bottom:420.375000px;}
.y7f{bottom:427.215000px;}
.y88{bottom:427.755000px;}
.yb6{bottom:427.935000px;}
.y131{bottom:428.295000px;}
.y111{bottom:431.355000px;}
.y26{bottom:437.475000px;}
.y56{bottom:440.355000px;}
.ye8{bottom:444.135000px;}
.y130{bottom:447.375000px;}
.yb5{bottom:451.875000px;}
.y110{bottom:455.115000px;}
.y25{bottom:461.415000px;}
.y55{bottom:464.115000px;}
.y12f{bottom:466.275000px;}
.ye7{bottom:467.895000px;}
.y7e{bottom:468.975000px;}
.yb4{bottom:473.115000px;}
.y10f{bottom:479.055000px;}
.y24{bottom:485.175000px;}
.y54{bottom:488.055000px;}
.y7d{bottom:489.675000px;}
.ye6{bottom:491.835000px;}
.yb2{bottom:501.015000px;}
.y10e{bottom:502.815000px;}
.y12e{bottom:504.255000px;}
.y23{bottom:508.935000px;}
.y7c{bottom:510.015000px;}
.y53{bottom:511.815000px;}
.ye5{bottom:515.595000px;}
.y12d{bottom:523.155000px;}
.y10d{bottom:526.575000px;}
.y7b{bottom:532.335000px;}
.y22{bottom:532.695000px;}
.y52{bottom:535.575000px;}
.ye4{bottom:539.355000px;}
.yb1{bottom:541.335000px;}
.y12c{bottom:542.235000px;}
.y10c{bottom:550.335000px;}
.y7a{bottom:556.275000px;}
.y21{bottom:556.635000px;}
.y51{bottom:559.335000px;}
.y12b{bottom:561.135000px;}
.ye3{bottom:563.115000px;}
.y162{bottom:571.935000px;}
.yaf{bottom:572.655000px;}
.y10b{bottom:574.275000px;}
.y79{bottom:580.035000px;}
.y20{bottom:580.395000px;}
.y50{bottom:583.275000px;}
.ye2{bottom:584.895000px;}
.y161{bottom:590.835000px;}
.y10a{bottom:598.035000px;}
.y12a{bottom:599.115000px;}
.y1f{bottom:604.155000px;}
.yab{bottom:604.695000px;}
.y4f{bottom:607.035000px;}
.y160{bottom:609.915000px;}
.y78{bottom:612.795000px;}
.ye0{bottom:614.235000px;}
.y129{bottom:618.015000px;}
.y109{bottom:621.795000px;}
.y1e{bottom:627.915000px;}
.y15f{bottom:628.815000px;}
.y4e{bottom:630.795000px;}
.y77{bottom:636.555000px;}
.y128{bottom:637.095000px;}
.yde{bottom:645.015000px;}
.ya9{bottom:645.195000px;}
.y108{bottom:645.555000px;}
.y15e{bottom:647.715000px;}
.y1d{bottom:651.885000px;}
.y4d{bottom:654.585000px;}
.y127{bottom:656.025000px;}
.y76{bottom:660.525000px;}
.y15d{bottom:666.825000px;}
.y107{bottom:669.525000px;}
.y1c{bottom:671.865000px;}
.y126{bottom:675.105000px;}
.ya7{bottom:677.445000px;}
.y4c{bottom:678.525000px;}
.y75{bottom:684.285000px;}
.y15c{bottom:685.725000px;}
.y1b{bottom:688.965000px;}
.y106{bottom:693.285000px;}
.y125{bottom:694.005000px;}
.y4b{bottom:702.285000px;}
.y15b{bottom:704.805000px;}
.y74{bottom:708.045000px;}
.y1a{bottom:708.765000px;}
.ya5{bottom:709.125000px;}
.y124{bottom:712.905000px;}
.ydb{bottom:713.625000px;}
.y15a{bottom:723.705000px;}
.y4a{bottom:726.045000px;}
.y19{bottom:728.745000px;}
.y73{bottom:731.805000px;}
.y123{bottom:731.985000px;}
.ya1{bottom:740.445000px;}
.y159{bottom:742.785000px;}
.y18{bottom:748.545000px;}
.y49{bottom:749.805000px;}
.y122{bottom:750.885000px;}
.y72{bottom:755.745000px;}
.y158{bottom:761.685000px;}
.y17{bottom:768.345000px;}
.yda{bottom:769.425000px;}
.y121{bottom:769.965000px;}
.y105{bottom:773.745000px;}
.y71{bottom:779.505000px;}
.y157{bottom:780.585000px;}
.y48{bottom:782.745000px;}
.y16{bottom:784.005000px;}
.y120{bottom:788.865000px;}
.yd9{bottom:791.925000px;}
.y9f{bottom:793.365000px;}
.y104{bottom:797.505000px;}
.y156{bottom:799.665000px;}
.y70{bottom:803.265000px;}
.y36{bottom:804.165000px;}
.y47{bottom:806.505000px;}
.y11f{bottom:807.765000px;}
.yd6{bottom:813.525000px;}
.y155{bottom:818.565000px;}
.y103{bottom:821.265000px;}
.y9d{bottom:825.585000px;}
.y6f{bottom:827.025000px;}
.y46{bottom:830.265000px;}
.y154{bottom:837.645000px;}
.y102{bottom:845.025000px;}
.y6e{bottom:850.785000px;}
.y11e{bottom:852.405000px;}
.y45{bottom:854.025000px;}
.y153{bottom:856.545000px;}
.y15{bottom:860.505000px;}
.y99{bottom:868.065000px;}
.y101{bottom:868.785000px;}
.y6d{bottom:874.725000px;}
.y152{bottom:875.445000px;}
.y44{bottom:877.785000px;}
.y14{bottom:879.045000px;}
.yd2{bottom:888.045000px;}
.y100{bottom:892.725000px;}
.y151{bottom:894.525000px;}
.y13{bottom:896.325000px;}
.y43{bottom:901.770000px;}
.y6c{bottom:907.530000px;}
.y150{bottom:913.470000px;}
.yff{bottom:916.530000px;}
.y12{bottom:918.690000px;}
.y42{bottom:925.530000px;}
.y98{bottom:926.790000px;}
.y6b{bottom:931.290000px;}
.y14f{bottom:932.550000px;}
.y11{bottom:935.970000px;}
.yfe{bottom:940.290000px;}
.ycf{bottom:940.650000px;}
.y41{bottom:949.290000px;}
.y14e{bottom:951.450000px;}
.y10{bottom:953.250000px;}
.y6a{bottom:955.050000px;}
.yfd{bottom:964.050000px;}
.y14d{bottom:970.350000px;}
.yf{bottom:970.530000px;}
.y40{bottom:973.050000px;}
.y69{bottom:978.990000px;}
.ye{bottom:987.810000px;}
.yfc{bottom:987.990000px;}
.y14c{bottom:989.430000px;}
.ycb{bottom:994.110000px;}
.y3f{bottom:996.990000px;}
.yd{bottom:999.870000px;}
.y68{bottom:1002.750000px;}
.y14b{bottom:1008.330000px;}
.yfb{bottom:1011.750000px;}
.yc{bottom:1017.150000px;}
.y3e{bottom:1020.750000px;}
.y14a{bottom:1027.410000px;}
.y67{bottom:1035.510000px;}
.yb{bottom:1038.390000px;}
.yc7{bottom:1040.370000px;}
.y3d{bottom:1044.510000px;}
.y149{bottom:1046.310000px;}
.y66{bottom:1059.270000px;}
.ya{bottom:1059.630000px;}
.y148{bottom:1065.210000px;}
.y3c{bottom:1068.270000px;}
.y9{bottom:1078.170000px;}
.y65{bottom:1083.210000px;}
.y147{bottom:1084.290000px;}
.y3b{bottom:1092.210000px;}
.y8{bottom:1102.290000px;}
.y146{bottom:1103.190000px;}
.yfa{bottom:1106.970000px;}
.y3a{bottom:1115.970000px;}
.y145{bottom:1122.270000px;}
.y7{bottom:1125.150000px;}
.y39{bottom:1139.730000px;}
.yc6{bottom:1140.990000px;}
.y144{bottom:1141.170000px;}
.y6{bottom:1142.430000px;}
.y4{bottom:1159.740000px;}
.y3{bottom:1177.020000px;}
.y2{bottom:1194.300000px;}
.y1{bottom:1211.580000px;}
.hb{height:21.867891px;}
.h2a{height:24.840000px;}
.h1b{height:25.380000px;}
.h1c{height:25.740000px;}
.h1f{height:26.100000px;}
.h19{height:26.280000px;}
.h1d{height:26.316000px;}
.h29{height:26.496000px;}
.h8{height:28.115859px;}
.h28{height:30.240000px;}
.h2b{height:31.140000px;}
.h20{height:34.380000px;}
.h1e{height:34.560000px;}
.he{height:35.820000px;}
.h2d{height:36.360000px;}
.h18{height:36.540000px;}
.h26{height:38.520000px;}
.h22{height:40.320000px;}
.h17{height:41.256000px;}
.h7{height:41.493516px;}
.h3{height:42.164648px;}
.h14{height:42.480000px;}
.h27{height:43.156758px;}
.h2{height:43.215117px;}
.h15{height:46.080000px;}
.h2c{height:46.260000px;}
.h24{height:46.656000px;}
.h1a{height:46.980000px;}
.h23{height:47.340000px;}
.ha{height:47.901094px;}
.h2e{height:48.224531px;}
.h6{height:48.312422px;}
.hf{height:48.995859px;}
.hd{height:50.800781px;}
.h10{height:51.300000px;}
.hc{height:52.066406px;}
.h16{height:52.200000px;}
.h13{height:55.980000px;}
.h4{height:59.436914px;}
.h30{height:59.439023px;}
.h9{height:61.189805px;}
.h12{height:61.200000px;}
.h11{height:65.884219px;}
.h5{height:67.565039px;}
.h25{height:68.580000px;}
.h21{height:81.720000px;}
.h2f{height:229.350000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w18{width:57.060000px;}
.w19{width:77.256000px;}
.wc{width:78.516000px;}
.w14{width:100.296000px;}
.w1a{width:102.780000px;}
.wf{width:109.800000px;}
.w10{width:111.816000px;}
.w15{width:114.516000px;}
.w13{width:123.840000px;}
.w12{width:127.656000px;}
.wb{width:146.520000px;}
.we{width:161.850000px;}
.w11{width:162.570000px;}
.wd{width:170.310000px;}
.w16{width:197.310000px;}
.w5{width:235.335000px;}
.w8{width:247.035000px;}
.w9{width:250.455000px;}
.w6{width:260.355000px;}
.w17{width:272.910000px;}
.w1c{width:292.755000px;}
.w7{width:350.490000px;}
.w4{width:352.290000px;}
.w1b{width:368.895000px;}
.wa{width:391.605000px;}
.w1d{width:780.840000px;}
.w3{width:785.160000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3a{left:1.440000px;}
.x2f{left:2.880000px;}
.x35{left:4.140000px;}
.x49{left:5.400000px;}
.x57{left:6.840000px;}
.x50{left:8.325000px;}
.x16{left:10.800000px;}
.x2b{left:12.105000px;}
.x47{left:14.040000px;}
.x26{left:16.020000px;}
.x31{left:17.640000px;}
.x23{left:19.080000px;}
.x1c{left:21.060000px;}
.x33{left:22.320000px;}
.x32{left:24.480000px;}
.x37{left:25.740000px;}
.x3b{left:27.540000px;}
.x2a{left:28.800000px;}
.x42{left:30.420000px;}
.x3c{left:33.300000px;}
.x39{left:34.920000px;}
.x40{left:36.180000px;}
.x34{left:37.440000px;}
.x48{left:39.096000px;}
.x1d{left:41.976000px;}
.x1f{left:43.380000px;}
.x4a{left:44.460000px;}
.x19{left:46.440000px;}
.x44{left:49.320000px;}
.x53{left:51.480000px;}
.x3f{left:52.560000px;}
.x1{left:53.999987px;}
.x24{left:56.376000px;}
.x38{left:57.960000px;}
.x20{left:61.965000px;}
.x36{left:63.000000px;}
.x27{left:64.485000px;}
.x2d{left:66.420000px;}
.x4c{left:69.294000px;}
.x58{left:75.060000px;}
.x5b{left:80.999987px;}
.x22{left:83.700000px;}
.x4b{left:85.356000px;}
.x11{left:88.415987px;}
.x1a{left:104.760000px;}
.x5c{left:108.035987px;}
.xe{left:110.375987px;}
.x5a{left:120.105000px;}
.x59{left:122.985000px;}
.x12{left:129.635987px;}
.x52{left:132.660000px;}
.x4{left:139.175987px;}
.x6{left:148.355987px;}
.x15{left:156.089987px;}
.x55{left:157.365000px;}
.x5{left:160.409987px;}
.x1b{left:166.500000px;}
.x3e{left:172.830000px;}
.x9{left:176.429987px;}
.xb{left:190.649987px;}
.x8{left:208.109987px;}
.xa{left:214.589987px;}
.xc{left:223.049987px;}
.x3d{left:235.649987px;}
.x28{left:249.330000px;}
.x7{left:256.169987px;}
.x29{left:258.149987px;}
.x18{left:269.535000px;}
.x21{left:270.615000px;}
.xd{left:273.494987px;}
.x4d{left:286.455000px;}
.x3{left:292.934987px;}
.x17{left:296.714987px;}
.x54{left:317.594987px;}
.x13{left:322.094987px;}
.x2c{left:338.115000px;}
.x41{left:339.195000px;}
.x10{left:374.654987px;}
.x14{left:439.814987px;}
.x2{left:446.504987px;}
.x43{left:470.625000px;}
.x2e{left:512.205000px;}
.x56{left:545.505000px;}
.x4e{left:563.145000px;}
.x1e{left:576.645000px;}
.x25{left:585.645000px;}
.x45{left:598.245000px;}
.x4f{left:623.985000px;}
.x30{left:677.850000px;}
.x46{left:702.150000px;}
.x51{left:705.030000px;}
.x5d{left:760.320000px;}
.xf{left:835.739987px;}
@media print{
.v3{vertical-align:-68.480000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.368533pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.271467pt;}
.ls16{letter-spacing:-0.233067pt;}
.ls8{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls0{letter-spacing:0.106240pt;}
.ls6{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.133120pt;}
.ls4{letter-spacing:0.136533pt;}
.ls5{letter-spacing:0.154667pt;}
.ls1{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls12{letter-spacing:0.233067pt;}
.ls17{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.448000pt;}
.lse{letter-spacing:0.640000pt;}
.lsb{letter-spacing:4.480000pt;}
.lsd{letter-spacing:5.120000pt;}
.ls15{letter-spacing:6.031360pt;}
.lsc{letter-spacing:8.960000pt;}
.ls7{letter-spacing:11.520000pt;}
.ls18{letter-spacing:14.672640pt;}
.ls14{letter-spacing:35.471360pt;}
.ls19{letter-spacing:2742.400000pt;}
.wsb{word-spacing:-16.128000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws5{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.486933pt;}
.wsd{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.080000pt;}
.ws2{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.416533pt;}
.ws8{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._6{margin-left:-2425.281280pt;}
._1d{margin-left:-1284.512000pt;}
._1b{margin-left:-681.967787pt;}
._1c{margin-left:-508.288000pt;}
._a{margin-left:-3.904000pt;}
._b{margin-left:-2.624000pt;}
._1{margin-left:-1.345493pt;}
._0{width:1.009280pt;}
._11{width:1.941333pt;}
._2{width:2.833067pt;}
._7{width:4.446507pt;}
._c{width:5.808213pt;}
._f{width:7.488000pt;}
._10{width:8.640000pt;}
._9{width:9.856000pt;}
._8{width:11.136000pt;}
._1a{width:12.108160pt;}
._19{width:13.056000pt;}
._15{width:14.732160pt;}
._d{width:16.960000pt;}
._e{width:18.152107pt;}
._17{width:20.224000pt;}
._18{width:21.988053pt;}
._16{width:22.912000pt;}
._1e{width:24.398720pt;}
._14{width:25.728000pt;}
._1f{width:26.640213pt;}
._12{width:30.400000pt;}
._13{width:31.296000pt;}
._4{width:64.550187pt;}
._5{width:82.080000pt;}
._3{width:127.372800pt;}
.fs6{font-size:26.880000pt;}
.fs3{font-size:34.560000pt;}
.fs1{font-size:37.120000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y17a{bottom:-67.680000pt;}
.y179{bottom:-37.600000pt;}
.y178{bottom:-8.160000pt;}
.y8b{bottom:-5.120000pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:2.880000pt;}
.yf8{bottom:3.680000pt;}
.yf6{bottom:3.840000pt;}
.y38{bottom:4.000000pt;}
.ydd{bottom:4.640000pt;}
.ycd{bottom:5.440000pt;}
.y95{bottom:5.600000pt;}
.y9c{bottom:5.920000pt;}
.ye1{bottom:6.240000pt;}
.ya6{bottom:6.400000pt;}
.ya8{bottom:6.560000pt;}
.yb0{bottom:6.720000pt;}
.ya0{bottom:6.880000pt;}
.yaa{bottom:6.906667pt;}
.ydf{bottom:7.066667pt;}
.y177{bottom:7.360000pt;}
.yd4{bottom:8.320000pt;}
.ya4{bottom:8.480000pt;}
.yd0{bottom:8.640000pt;}
.yf0{bottom:9.120000pt;}
.y8f{bottom:9.920000pt;}
.yb3{bottom:10.400000pt;}
.yac{bottom:10.560000pt;}
.yf4{bottom:11.360000pt;}
.y9e{bottom:11.520000pt;}
.y8a{bottom:12.320000pt;}
.yce{bottom:13.120000pt;}
.y91{bottom:13.280000pt;}
.y9a{bottom:13.600000pt;}
.yf2{bottom:15.840000pt;}
.yd5{bottom:15.880000pt;}
.ya2{bottom:16.160000pt;}
.yd1{bottom:16.320000pt;}
.y97{bottom:17.440000pt;}
.yad{bottom:18.240000pt;}
.yf5{bottom:19.040000pt;}
.y37{bottom:19.360000pt;}
.ydc{bottom:20.000000pt;}
.ycc{bottom:20.800000pt;}
.y9b{bottom:21.280000pt;}
.y5{bottom:21.600000pt;}
.y176{bottom:22.720000pt;}
.yd3{bottom:23.560000pt;}
.ya3{bottom:23.840000pt;}
.y94{bottom:24.000000pt;}
.yd8{bottom:25.760000pt;}
.y8e{bottom:28.320000pt;}
.y89{bottom:30.720000pt;}
.yc8{bottom:31.520000pt;}
.y175{bottom:38.080000pt;}
.yca{bottom:39.200000pt;}
.yd7{bottom:41.120000pt;}
.yc9{bottom:46.880000pt;}
.y174{bottom:53.280000pt;}
.yc5{bottom:55.040000pt;}
.y96{bottom:57.120000pt;}
.y35{bottom:63.520000pt;}
.yf9{bottom:65.280000pt;}
.y11d{bottom:66.080000pt;}
.y173{bottom:68.640000pt;}
.y64{bottom:71.200000pt;}
.yc4{bottom:76.160000pt;}
.y143{bottom:77.120000pt;}
.y87{bottom:83.200000pt;}
.y172{bottom:84.000000pt;}
.y34{bottom:84.640000pt;}
.y11c{bottom:87.200000pt;}
.y63{bottom:92.320000pt;}
.y142{bottom:93.920000pt;}
.yc3{bottom:97.280000pt;}
.y171{bottom:99.400000pt;}
.yf7{bottom:101.280000pt;}
.y33{bottom:105.760000pt;}
.y11b{bottom:108.320000pt;}
.y141{bottom:110.880000pt;}
.y62{bottom:113.440000pt;}
.y170{bottom:114.760000pt;}
.yc2{bottom:118.560000pt;}
.y86{bottom:120.160000pt;}
.y140{bottom:127.680000pt;}
.y11a{bottom:129.440000pt;}
.y16f{bottom:130.120000pt;}
.y169{bottom:130.880000pt;}
.y61{bottom:134.720000pt;}
.y32{bottom:135.066667pt;}
.yf3{bottom:138.906667pt;}
.yc1{bottom:139.706667pt;}
.y92{bottom:141.146667pt;}
.y13f{bottom:144.506667pt;}
.y16e{bottom:145.320000pt;}
.y168{bottom:148.506667pt;}
.y93{bottom:150.266667pt;}
.y119{bottom:150.746667pt;}
.y60{bottom:155.866667pt;}
.y31{bottom:156.186667pt;}
.y85{bottom:157.306667pt;}
.y16d{bottom:160.680000pt;}
.yc0{bottom:160.826667pt;}
.y13e{bottom:161.466667pt;}
.y167{bottom:166.106667pt;}
.y118{bottom:171.866667pt;}
.y16c{bottom:176.040000pt;}
.yf1{bottom:176.666667pt;}
.y30{bottom:177.306667pt;}
.y13d{bottom:178.266667pt;}
.ybf{bottom:181.946667pt;}
.y166{bottom:183.706667pt;}
.y5f{bottom:184.986667pt;}
.y16b{bottom:191.400000pt;}
.y117{bottom:192.986667pt;}
.y84{bottom:194.426667pt;}
.y13c{bottom:195.226667pt;}
.y2f{bottom:198.426667pt;}
.y165{bottom:201.306667pt;}
.y5e{bottom:206.106667pt;}
.ybe{bottom:211.066667pt;}
.y13b{bottom:212.026667pt;}
.y116{bottom:214.106667pt;}
.y164{bottom:219.066667pt;}
.y2e{bottom:219.706667pt;}
.yef{bottom:223.226667pt;}
.y90{bottom:225.946667pt;}
.y5d{bottom:227.226667pt;}
.y13a{bottom:228.986667pt;}
.y83{bottom:231.386667pt;}
.ybd{bottom:232.346667pt;}
.y115{bottom:235.226667pt;}
.y163{bottom:236.666667pt;}
.y2d{bottom:240.826667pt;}
.y139{bottom:245.786667pt;}
.y5c{bottom:248.506667pt;}
.ybc{bottom:253.466667pt;}
.y114{bottom:256.506667pt;}
.y16a{bottom:260.826667pt;}
.y2c{bottom:261.946667pt;}
.y138{bottom:262.586667pt;}
.y82{bottom:268.506667pt;}
.yee{bottom:268.986667pt;}
.y5b{bottom:269.626667pt;}
.ybb{bottom:274.586667pt;}
.y113{bottom:277.626667pt;}
.y137{bottom:279.546667pt;}
.y2b{bottom:283.066667pt;}
.yed{bottom:288.986667pt;}
.yba{bottom:295.706667pt;}
.y136{bottom:296.346667pt;}
.y8c{bottom:297.146667pt;}
.y5a{bottom:298.746667pt;}
.y8d{bottom:299.706667pt;}
.y2a{bottom:304.346667pt;}
.y81{bottom:305.626667pt;}
.yec{bottom:310.106667pt;}
.y135{bottom:313.306667pt;}
.yb9{bottom:316.986667pt;}
.y59{bottom:319.866667pt;}
.y29{bottom:325.466667pt;}
.y134{bottom:330.106667pt;}
.yeb{bottom:331.386667pt;}
.yb8{bottom:338.106667pt;}
.y58{bottom:341.146667pt;}
.y80{bottom:342.586667pt;}
.y28{bottom:346.586667pt;}
.y133{bottom:346.906667pt;}
.yea{bottom:352.506667pt;}
.yb7{bottom:359.266667pt;}
.y112{bottom:362.306667pt;}
.y132{bottom:363.906667pt;}
.y27{bottom:367.746667pt;}
.y57{bottom:370.306667pt;}
.ye9{bottom:373.666667pt;}
.y7f{bottom:379.746667pt;}
.y88{bottom:380.226667pt;}
.yb6{bottom:380.386667pt;}
.y131{bottom:380.706667pt;}
.y111{bottom:383.426667pt;}
.y26{bottom:388.866667pt;}
.y56{bottom:391.426667pt;}
.ye8{bottom:394.786667pt;}
.y130{bottom:397.666667pt;}
.yb5{bottom:401.666667pt;}
.y110{bottom:404.546667pt;}
.y25{bottom:410.146667pt;}
.y55{bottom:412.546667pt;}
.y12f{bottom:414.466667pt;}
.ye7{bottom:415.906667pt;}
.y7e{bottom:416.866667pt;}
.yb4{bottom:420.546667pt;}
.y10f{bottom:425.826667pt;}
.y24{bottom:431.266667pt;}
.y54{bottom:433.826667pt;}
.y7d{bottom:435.266667pt;}
.ye6{bottom:437.186667pt;}
.yb2{bottom:445.346667pt;}
.y10e{bottom:446.946667pt;}
.y12e{bottom:448.226667pt;}
.y23{bottom:452.386667pt;}
.y7c{bottom:453.346667pt;}
.y53{bottom:454.946667pt;}
.ye5{bottom:458.306667pt;}
.y12d{bottom:465.026667pt;}
.y10d{bottom:468.066667pt;}
.y7b{bottom:473.186667pt;}
.y22{bottom:473.506667pt;}
.y52{bottom:476.066667pt;}
.ye4{bottom:479.426667pt;}
.yb1{bottom:481.186667pt;}
.y12c{bottom:481.986667pt;}
.y10c{bottom:489.186667pt;}
.y7a{bottom:494.466667pt;}
.y21{bottom:494.786667pt;}
.y51{bottom:497.186667pt;}
.y12b{bottom:498.786667pt;}
.ye3{bottom:500.546667pt;}
.y162{bottom:508.386667pt;}
.yaf{bottom:509.026667pt;}
.y10b{bottom:510.466667pt;}
.y79{bottom:515.586667pt;}
.y20{bottom:515.906667pt;}
.y50{bottom:518.466667pt;}
.ye2{bottom:519.906667pt;}
.y161{bottom:525.186667pt;}
.y10a{bottom:531.586667pt;}
.y12a{bottom:532.546667pt;}
.y1f{bottom:537.026667pt;}
.yab{bottom:537.506667pt;}
.y4f{bottom:539.586667pt;}
.y160{bottom:542.146667pt;}
.y78{bottom:544.706667pt;}
.ye0{bottom:545.986667pt;}
.y129{bottom:549.346667pt;}
.y109{bottom:552.706667pt;}
.y1e{bottom:558.146667pt;}
.y15f{bottom:558.946667pt;}
.y4e{bottom:560.706667pt;}
.y77{bottom:565.826667pt;}
.y128{bottom:566.306667pt;}
.yde{bottom:573.346667pt;}
.ya9{bottom:573.506667pt;}
.y108{bottom:573.826667pt;}
.y15e{bottom:575.746667pt;}
.y1d{bottom:579.453333pt;}
.y4d{bottom:581.853333pt;}
.y127{bottom:583.133333pt;}
.y76{bottom:587.133333pt;}
.y15d{bottom:592.733333pt;}
.y107{bottom:595.133333pt;}
.y1c{bottom:597.213333pt;}
.y126{bottom:600.093333pt;}
.ya7{bottom:602.173333pt;}
.y4c{bottom:603.133333pt;}
.y75{bottom:608.253333pt;}
.y15c{bottom:609.533333pt;}
.y1b{bottom:612.413333pt;}
.y106{bottom:616.253333pt;}
.y125{bottom:616.893333pt;}
.y4b{bottom:624.253333pt;}
.y15b{bottom:626.493333pt;}
.y74{bottom:629.373333pt;}
.y1a{bottom:630.013333pt;}
.ya5{bottom:630.333333pt;}
.y124{bottom:633.693333pt;}
.ydb{bottom:634.333333pt;}
.y15a{bottom:643.293333pt;}
.y4a{bottom:645.373333pt;}
.y19{bottom:647.773333pt;}
.y73{bottom:650.493333pt;}
.y123{bottom:650.653333pt;}
.ya1{bottom:658.173333pt;}
.y159{bottom:660.253333pt;}
.y18{bottom:665.373333pt;}
.y49{bottom:666.493333pt;}
.y122{bottom:667.453333pt;}
.y72{bottom:671.773333pt;}
.y158{bottom:677.053333pt;}
.y17{bottom:682.973333pt;}
.yda{bottom:683.933333pt;}
.y121{bottom:684.413333pt;}
.y105{bottom:687.773333pt;}
.y71{bottom:692.893333pt;}
.y157{bottom:693.853333pt;}
.y48{bottom:695.773333pt;}
.y16{bottom:696.893333pt;}
.y120{bottom:701.213333pt;}
.yd9{bottom:703.933333pt;}
.y9f{bottom:705.213333pt;}
.y104{bottom:708.893333pt;}
.y156{bottom:710.813333pt;}
.y70{bottom:714.013333pt;}
.y36{bottom:714.813333pt;}
.y47{bottom:716.893333pt;}
.y11f{bottom:718.013333pt;}
.yd6{bottom:723.133333pt;}
.y155{bottom:727.613333pt;}
.y103{bottom:730.013333pt;}
.y9d{bottom:733.853333pt;}
.y6f{bottom:735.133333pt;}
.y46{bottom:738.013333pt;}
.y154{bottom:744.573333pt;}
.y102{bottom:751.133333pt;}
.y6e{bottom:756.253333pt;}
.y11e{bottom:757.693333pt;}
.y45{bottom:759.133333pt;}
.y153{bottom:761.373333pt;}
.y15{bottom:764.893333pt;}
.y99{bottom:771.613333pt;}
.y101{bottom:772.253333pt;}
.y6d{bottom:777.533333pt;}
.y152{bottom:778.173333pt;}
.y44{bottom:780.253333pt;}
.y14{bottom:781.373333pt;}
.yd2{bottom:789.373333pt;}
.y100{bottom:793.533333pt;}
.y151{bottom:795.133333pt;}
.y13{bottom:796.733333pt;}
.y43{bottom:801.573333pt;}
.y6c{bottom:806.693333pt;}
.y150{bottom:811.973333pt;}
.yff{bottom:814.693333pt;}
.y12{bottom:816.613333pt;}
.y42{bottom:822.693333pt;}
.y98{bottom:823.813333pt;}
.y6b{bottom:827.813333pt;}
.y14f{bottom:828.933333pt;}
.y11{bottom:831.973333pt;}
.yfe{bottom:835.813333pt;}
.ycf{bottom:836.133333pt;}
.y41{bottom:843.813333pt;}
.y14e{bottom:845.733333pt;}
.y10{bottom:847.333333pt;}
.y6a{bottom:848.933333pt;}
.yfd{bottom:856.933333pt;}
.y14d{bottom:862.533333pt;}
.yf{bottom:862.693333pt;}
.y40{bottom:864.933333pt;}
.y69{bottom:870.213333pt;}
.ye{bottom:878.053333pt;}
.yfc{bottom:878.213333pt;}
.y14c{bottom:879.493333pt;}
.ycb{bottom:883.653333pt;}
.y3f{bottom:886.213333pt;}
.yd{bottom:888.773333pt;}
.y68{bottom:891.333333pt;}
.y14b{bottom:896.293333pt;}
.yfb{bottom:899.333333pt;}
.yc{bottom:904.133333pt;}
.y3e{bottom:907.333333pt;}
.y14a{bottom:913.253333pt;}
.y67{bottom:920.453333pt;}
.yb{bottom:923.013333pt;}
.yc7{bottom:924.773333pt;}
.y3d{bottom:928.453333pt;}
.y149{bottom:930.053333pt;}
.y66{bottom:941.573333pt;}
.ya{bottom:941.893333pt;}
.y148{bottom:946.853333pt;}
.y3c{bottom:949.573333pt;}
.y9{bottom:958.373333pt;}
.y65{bottom:962.853333pt;}
.y147{bottom:963.813333pt;}
.y3b{bottom:970.853333pt;}
.y8{bottom:979.813333pt;}
.y146{bottom:980.613333pt;}
.yfa{bottom:983.973333pt;}
.y3a{bottom:991.973333pt;}
.y145{bottom:997.573333pt;}
.y7{bottom:1000.133333pt;}
.y39{bottom:1013.093333pt;}
.yc6{bottom:1014.213333pt;}
.y144{bottom:1014.373333pt;}
.y6{bottom:1015.493333pt;}
.y4{bottom:1030.880000pt;}
.y3{bottom:1046.240000pt;}
.y2{bottom:1061.600000pt;}
.y1{bottom:1076.960000pt;}
.hb{height:19.438125pt;}
.h2a{height:22.080000pt;}
.h1b{height:22.560000pt;}
.h1c{height:22.880000pt;}
.h1f{height:23.200000pt;}
.h19{height:23.360000pt;}
.h1d{height:23.392000pt;}
.h29{height:23.552000pt;}
.h8{height:24.991875pt;}
.h28{height:26.880000pt;}
.h2b{height:27.680000pt;}
.h20{height:30.560000pt;}
.h1e{height:30.720000pt;}
.he{height:31.840000pt;}
.h2d{height:32.320000pt;}
.h18{height:32.480000pt;}
.h26{height:34.240000pt;}
.h22{height:35.840000pt;}
.h17{height:36.672000pt;}
.h7{height:36.883125pt;}
.h3{height:37.479688pt;}
.h14{height:37.760000pt;}
.h27{height:38.361562pt;}
.h2{height:38.413438pt;}
.h15{height:40.960000pt;}
.h2c{height:41.120000pt;}
.h24{height:41.472000pt;}
.h1a{height:41.760000pt;}
.h23{height:42.080000pt;}
.ha{height:42.578750pt;}
.h2e{height:42.866250pt;}
.h6{height:42.944375pt;}
.hf{height:43.551875pt;}
.hd{height:45.156250pt;}
.h10{height:45.600000pt;}
.hc{height:46.281250pt;}
.h16{height:46.400000pt;}
.h13{height:49.760000pt;}
.h4{height:52.832812pt;}
.h30{height:52.834688pt;}
.h9{height:54.390938pt;}
.h12{height:54.400000pt;}
.h11{height:58.563750pt;}
.h5{height:60.057813pt;}
.h25{height:60.960000pt;}
.h21{height:72.640000pt;}
.h2f{height:203.866667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w18{width:50.720000pt;}
.w19{width:68.672000pt;}
.wc{width:69.792000pt;}
.w14{width:89.152000pt;}
.w1a{width:91.360000pt;}
.wf{width:97.600000pt;}
.w10{width:99.392000pt;}
.w15{width:101.792000pt;}
.w13{width:110.080000pt;}
.w12{width:113.472000pt;}
.wb{width:130.240000pt;}
.we{width:143.866667pt;}
.w11{width:144.506667pt;}
.wd{width:151.386667pt;}
.w16{width:175.386667pt;}
.w5{width:209.186667pt;}
.w8{width:219.586667pt;}
.w9{width:222.626667pt;}
.w6{width:231.426667pt;}
.w17{width:242.586667pt;}
.w1c{width:260.226667pt;}
.w7{width:311.546667pt;}
.w4{width:313.146667pt;}
.w1b{width:327.906667pt;}
.wa{width:348.093333pt;}
.w1d{width:694.080000pt;}
.w3{width:697.920000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3a{left:1.280000pt;}
.x2f{left:2.560000pt;}
.x35{left:3.680000pt;}
.x49{left:4.800000pt;}
.x57{left:6.080000pt;}
.x50{left:7.400000pt;}
.x16{left:9.600000pt;}
.x2b{left:10.760000pt;}
.x47{left:12.480000pt;}
.x26{left:14.240000pt;}
.x31{left:15.680000pt;}
.x23{left:16.960000pt;}
.x1c{left:18.720000pt;}
.x33{left:19.840000pt;}
.x32{left:21.760000pt;}
.x37{left:22.880000pt;}
.x3b{left:24.480000pt;}
.x2a{left:25.600000pt;}
.x42{left:27.040000pt;}
.x3c{left:29.600000pt;}
.x39{left:31.040000pt;}
.x40{left:32.160000pt;}
.x34{left:33.280000pt;}
.x48{left:34.752000pt;}
.x1d{left:37.312000pt;}
.x1f{left:38.560000pt;}
.x4a{left:39.520000pt;}
.x19{left:41.280000pt;}
.x44{left:43.840000pt;}
.x53{left:45.760000pt;}
.x3f{left:46.720000pt;}
.x1{left:47.999988pt;}
.x24{left:50.112000pt;}
.x38{left:51.520000pt;}
.x20{left:55.080000pt;}
.x36{left:56.000000pt;}
.x27{left:57.320000pt;}
.x2d{left:59.040000pt;}
.x4c{left:61.594667pt;}
.x58{left:66.720000pt;}
.x5b{left:71.999988pt;}
.x22{left:74.400000pt;}
.x4b{left:75.872000pt;}
.x11{left:78.591988pt;}
.x1a{left:93.120000pt;}
.x5c{left:96.031988pt;}
.xe{left:98.111988pt;}
.x5a{left:106.760000pt;}
.x59{left:109.320000pt;}
.x12{left:115.231988pt;}
.x52{left:117.920000pt;}
.x4{left:123.711988pt;}
.x6{left:131.871988pt;}
.x15{left:138.746655pt;}
.x55{left:139.880000pt;}
.x5{left:142.586655pt;}
.x1b{left:148.000000pt;}
.x3e{left:153.626667pt;}
.x9{left:156.826655pt;}
.xb{left:169.466655pt;}
.x8{left:184.986655pt;}
.xa{left:190.746655pt;}
.xc{left:198.266655pt;}
.x3d{left:209.466655pt;}
.x28{left:221.626667pt;}
.x7{left:227.706655pt;}
.x29{left:229.466655pt;}
.x18{left:239.586667pt;}
.x21{left:240.546667pt;}
.xd{left:243.106655pt;}
.x4d{left:254.626667pt;}
.x3{left:260.386655pt;}
.x17{left:263.746655pt;}
.x54{left:282.306655pt;}
.x13{left:286.306655pt;}
.x2c{left:300.546667pt;}
.x41{left:301.506667pt;}
.x10{left:333.026655pt;}
.x14{left:390.946655pt;}
.x2{left:396.893322pt;}
.x43{left:418.333333pt;}
.x2e{left:455.293333pt;}
.x56{left:484.893333pt;}
.x4e{left:500.573333pt;}
.x1e{left:512.573333pt;}
.x25{left:520.573333pt;}
.x45{left:531.773333pt;}
.x4f{left:554.653333pt;}
.x30{left:602.533333pt;}
.x46{left:624.133333pt;}
.x51{left:626.693333pt;}
.x5d{left:675.840000pt;}
.xf{left:742.879988pt;}
}




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