
    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_4e410d8cd36595926aeddca7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_05de1d9df1df2b0010642736.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_9b60a704bc5b38819b6e5315.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_5117ca2b2e212f348c9490d7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_0b2e671f34f063ad98f2d2bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_cee615f100dfe082fe6d36f9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.895508;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_65d8385600ab0ed0de57744e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.311035;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_df232087389689e6ba1b5913.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_eead85f05298821b788a4fd1.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_879307695144d55e1a319aca.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m3{transform:matrix(0.000000,-0.253090,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.253090,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.253090,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.246947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246947,0.000000,0.000000,0.250000,0,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:-30.240000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls15{letter-spacing:-2.160000px;}
.lsb{letter-spacing:-1.759543px;}
.ls13{letter-spacing:-1.440000px;}
.lsc{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.288000px;}
.ls14{letter-spacing:-0.216000px;}
.ls16{letter-spacing:-0.144000px;}
.ls11{letter-spacing:-0.072000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.015120px;}
.ls3{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.072000px;}
.ls9{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.149760px;}
.ls6{letter-spacing:0.150000px;}
.ls8{letter-spacing:0.174240px;}
.lse{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.567600px;}
.ls2{letter-spacing:0.612000px;}
.lsa{letter-spacing:0.720000px;}
.ls7{letter-spacing:7.920000px;}
.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;}
}
.ws12{word-spacing:-72.000000px;}
.wsb{word-spacing:-18.720000px;}
.ws7{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.wsd{word-spacing:-17.928000px;}
.ws15{word-spacing:-17.856000px;}
.ws13{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws0{word-spacing:-17.225280px;}
.ws2{word-spacing:-17.127600px;}
.ws3{word-spacing:-16.560000px;}
.wsf{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.993280px;}
.ws14{word-spacing:-14.970240px;}
.ws10{word-spacing:-14.940000px;}
.wse{word-spacing:-12.420000px;}
.ws9{word-spacing:-10.975138px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:-8.786880px;}
.ws4{word-spacing:0.000000px;}
.wsa{word-spacing:209.468540px;}
._13{margin-left:-12.817920px;}
._1{margin-left:-2.239920px;}
._2{margin-left:-1.231920px;}
._0{width:1.015920px;}
._3{width:2.376000px;}
._c{width:3.762000px;}
._9{width:5.299200px;}
._a{width:6.678000px;}
._f{width:8.064000px;}
._11{width:9.144000px;}
._e{width:11.141280px;}
._d{width:12.254400px;}
._5{width:13.380480px;}
._6{width:14.520720px;}
._10{width:16.016640px;}
._4{width:19.342080px;}
._8{width:20.931840px;}
._7{width:22.230000px;}
._b{width:23.232000px;}
._12{width:24.847920px;}
._14{width:26.544240px;}
._1c{width:27.983520px;}
._1e{width:29.184480px;}
._17{width:30.528000px;}
._18{width:31.680000px;}
._1d{width:33.768000px;}
._15{width:35.424000px;}
._16{width:37.288080px;}
._23{width:38.319840px;}
._1a{width:40.680000px;}
._1b{width:41.743920px;}
._20{width:45.079920px;}
._1f{width:46.368000px;}
._24{width:47.736000px;}
._25{width:49.164000px;}
._21{width:128.448000px;}
._22{width:130.104000px;}
._19{width:215.432571px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(5,99,193);}
.fs1{font-size:2.880000px;}
.fs9{font-size:23.760000px;}
.fsa{font-size:38.880000px;}
.fsc{font-size:43.900553px;}
.fsb{font-size:44.443226px;}
.fs4{font-size:45.360000px;}
.fs5{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs8{font-size:84.240000px;}
.fs7{font-size:95.760000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y31{bottom:1.440000px;}
.y8{bottom:2.880000px;}
.yc1{bottom:8.553332px;}
.y30{bottom:10.620000px;}
.y2{bottom:12.060000px;}
.y7{bottom:16.380000px;}
.yc0{bottom:27.364979px;}
.y6{bottom:34.380000px;}
.y5{bottom:55.080000px;}
.y33{bottom:71.100000px;}
.ya{bottom:71.280000px;}
.yb8{bottom:75.246587px;}
.y4{bottom:79.590000px;}
.yb9{bottom:102.611566px;}
.yd8{bottom:107.820000px;}
.y5e{bottom:114.660000px;}
.ya4{bottom:120.780000px;}
.yb4{bottom:121.140000px;}
.y14c{bottom:121.320000px;}
.y2e{bottom:123.660000px;}
.ydb{bottom:125.100000px;}
.yba{bottom:129.976545px;}
.y5d{bottom:131.940000px;}
.y111{bottom:139.500000px;}
.yb3{bottom:139.680000px;}
.ya3{bottom:141.480000px;}
.y14b{bottom:142.020000px;}
.y2d{bottom:142.560000px;}
.y5c{bottom:149.040000px;}
.y149{bottom:149.580000px;}
.y8a{bottom:156.780000px;}
.ybb{bottom:157.335840px;}
.y190{bottom:160.020000px;}
.y2c{bottom:161.640000px;}
.ya2{bottom:162.180000px;}
.y14a{bottom:162.720000px;}
.yb2{bottom:166.320000px;}
.y148{bottom:170.310000px;}
.y159{bottom:172.470000px;}
.y5b{bottom:174.090000px;}
.y177{bottom:179.490000px;}
.y2b{bottom:180.570000px;}
.y18f{bottom:180.750000px;}
.y110{bottom:182.910000px;}
.y89{bottom:183.450000px;}
.yb1{bottom:183.630000px;}
.ybc{bottom:185.558994px;}
.y147{bottom:191.010000px;}
.y158{bottom:193.170000px;}
.y2a{bottom:199.470000px;}
.yd7{bottom:199.830000px;}
.y176{bottom:200.190000px;}
.yb0{bottom:200.730000px;}
.ya1{bottom:203.430000px;}
.y10f{bottom:203.610000px;}
.y88{bottom:204.150000px;}
.yda{bottom:204.510000px;}
.yf2{bottom:208.470000px;}
.y146{bottom:211.710000px;}
.ybd{bottom:212.895556px;}
.y157{bottom:213.870000px;}
.yd6{bottom:220.530000px;}
.y18e{bottom:222.510000px;}
.y12a{bottom:224.310000px;}
.y87{bottom:224.850000px;}
.yd9{bottom:225.210000px;}
.yaf{bottom:225.750000px;}
.ydf{bottom:229.350000px;}
.y145{bottom:232.410000px;}
.y156{bottom:234.570000px;}
.y29{bottom:239.070000px;}
.ybe{bottom:240.254851px;}
.yd5{bottom:241.230000px;}
.y175{bottom:241.950000px;}
.yde{bottom:242.850000px;}
.y18d{bottom:243.210000px;}
.yf1{bottom:245.010000px;}
.y10e{bottom:245.190000px;}
.ya0{bottom:245.550000px;}
.yae{bottom:245.910000px;}
.y144{bottom:253.110000px;}
.y155{bottom:255.270000px;}
.y5a{bottom:255.630000px;}
.y28{bottom:258.150000px;}
.yd4{bottom:261.750000px;}
.yf0{bottom:265.710000px;}
.y10d{bottom:265.890000px;}
.y9f{bottom:266.250000px;}
.y86{bottom:266.610000px;}
.ybf{bottom:267.625513px;}
.y154{bottom:275.970000px;}
.y59{bottom:276.330000px;}
.y27{bottom:277.050000px;}
.yd3{bottom:282.450000px;}
.y174{bottom:283.710000px;}
.y18c{bottom:284.790000px;}
.yef{bottom:286.410000px;}
.y10c{bottom:286.590000px;}
.y9e{bottom:286.950000px;}
.y85{bottom:287.310000px;}
.y143{bottom:294.870000px;}
.y153{bottom:296.670000px;}
.y58{bottom:297.030000px;}
.yd2{bottom:303.150000px;}
.y173{bottom:304.410000px;}
.y18b{bottom:305.490000px;}
.y129{bottom:307.110000px;}
.y10b{bottom:307.290000px;}
.y9d{bottom:307.650000px;}
.y84{bottom:308.010000px;}
.y142{bottom:315.570000px;}
.y26{bottom:317.010000px;}
.y152{bottom:317.370000px;}
.y57{bottom:317.730000px;}
.yd1{bottom:323.850000px;}
.y172{bottom:325.110000px;}
.y18a{bottom:326.190000px;}
.y128{bottom:327.810000px;}
.yee{bottom:327.990000px;}
.y9c{bottom:328.350000px;}
.y83{bottom:328.710000px;}
.y141{bottom:336.270000px;}
.y151{bottom:338.070000px;}
.y56{bottom:338.430000px;}
.yd0{bottom:344.550000px;}
.y127{bottom:348.510000px;}
.yed{bottom:348.690000px;}
.y9b{bottom:349.050000px;}
.y82{bottom:349.410000px;}
.y140{bottom:356.970000px;}
.y25{bottom:357.330000px;}
.y150{bottom:358.770000px;}
.y55{bottom:359.130000px;}
.ycf{bottom:365.250000px;}
.y171{bottom:366.690000px;}
.y189{bottom:367.950000px;}
.y126{bottom:369.210000px;}
.yec{bottom:369.390000px;}
.y9a{bottom:369.750000px;}
.y81{bottom:370.110000px;}
.y24{bottom:376.410000px;}
.y13f{bottom:377.670000px;}
.y54{bottom:379.830000px;}
.y188{bottom:388.650000px;}
.y125{bottom:389.910000px;}
.y10a{bottom:390.090000px;}
.y99{bottom:390.450000px;}
.y80{bottom:390.810000px;}
.y13e{bottom:398.370000px;}
.y14f{bottom:399.810000px;}
.y53{bottom:400.530000px;}
.yce{bottom:407.010000px;}
.y170{bottom:408.450000px;}
.y187{bottom:409.350000px;}
.y124{bottom:410.610000px;}
.y109{bottom:410.790000px;}
.yeb{bottom:411.150000px;}
.y7f{bottom:411.510000px;}
.y23{bottom:416.415000px;}
.y14e{bottom:418.035000px;}
.y13d{bottom:419.115000px;}
.y52{bottom:421.275000px;}
.ycd{bottom:427.755000px;}
.y16f{bottom:429.195000px;}
.y123{bottom:431.355000px;}
.y15e{bottom:431.535000px;}
.y98{bottom:431.895000px;}
.y7e{bottom:432.255000px;}
.yad{bottom:432.435000px;}
.y14d{bottom:433.515000px;}
.y22{bottom:435.315000px;}
.y13c{bottom:439.815000px;}
.y51{bottom:441.975000px;}
.ycc{bottom:448.455000px;}
.y16e{bottom:449.895000px;}
.y186{bottom:451.155000px;}
.y122{bottom:452.055000px;}
.y15d{bottom:452.235000px;}
.yea{bottom:452.595000px;}
.y7d{bottom:452.955000px;}
.yac{bottom:453.135000px;}
.y21{bottom:454.395000px;}
.y13b{bottom:460.515000px;}
.y50{bottom:462.675000px;}
.ycb{bottom:469.155000px;}
.y185{bottom:471.855000px;}
.y15c{bottom:472.935000px;}
.y20{bottom:473.295000px;}
.y7c{bottom:473.655000px;}
.y97{bottom:473.835000px;}
.y13a{bottom:481.215000px;}
.y4f{bottom:483.375000px;}
.yca{bottom:489.855000px;}
.y16d{bottom:491.655000px;}
.y1f{bottom:492.375000px;}
.y184{bottom:492.555000px;}
.y121{bottom:493.635000px;}
.y108{bottom:493.995000px;}
.y7b{bottom:494.355000px;}
.y96{bottom:494.535000px;}
.y139{bottom:501.915000px;}
.y4e{bottom:504.075000px;}
.yc9{bottom:510.555000px;}
.y1e{bottom:511.275000px;}
.y16c{bottom:512.355000px;}
.y120{bottom:514.335000px;}
.y107{bottom:514.695000px;}
.y7a{bottom:515.055000px;}
.y95{bottom:515.235000px;}
.y138{bottom:522.615000px;}
.y4d{bottom:524.775000px;}
.y1d{bottom:530.175000px;}
.yc8{bottom:531.255000px;}
.y16b{bottom:533.055000px;}
.y183{bottom:534.135000px;}
.y11f{bottom:535.035000px;}
.y106{bottom:535.395000px;}
.y79{bottom:535.755000px;}
.y94{bottom:535.935000px;}
.y137{bottom:543.315000px;}
.y4c{bottom:545.475000px;}
.y1c{bottom:549.255000px;}
.yc7{bottom:551.955000px;}
.y182{bottom:554.835000px;}
.y11e{bottom:555.735000px;}
.y105{bottom:556.095000px;}
.y78{bottom:556.455000px;}
.y93{bottom:556.635000px;}
.y136{bottom:564.015000px;}
.y1b{bottom:568.155000px;}
.yc6{bottom:572.655000px;}
.y16a{bottom:574.275000px;}
.y11d{bottom:576.435000px;}
.y104{bottom:576.795000px;}
.y77{bottom:577.155000px;}
.y92{bottom:577.335000px;}
.y135{bottom:584.715000px;}
.y4b{bottom:587.055000px;}
.y1a{bottom:587.235000px;}
.yc5{bottom:593.355000px;}
.y181{bottom:596.595000px;}
.y11c{bottom:597.135000px;}
.y103{bottom:597.495000px;}
.y76{bottom:597.855000px;}
.y91{bottom:598.035000px;}
.y19{bottom:606.135000px;}
.y4a{bottom:607.755000px;}
.yc4{bottom:614.055000px;}
.y169{bottom:616.395000px;}
.y180{bottom:617.295000px;}
.y11b{bottom:617.835000px;}
.y102{bottom:618.195000px;}
.y75{bottom:618.555000px;}
.y90{bottom:618.735000px;}
.y134{bottom:625.575000px;}
.y49{bottom:628.455000px;}
.y17f{bottom:637.995000px;}
.y11a{bottom:638.535000px;}
.y130{bottom:638.895000px;}
.y133{bottom:639.075000px;}
.y74{bottom:639.255000px;}
.y8f{bottom:639.435000px;}
.y18{bottom:645.735000px;}
.y48{bottom:649.155000px;}
.yc3{bottom:654.915000px;}
.y168{bottom:658.185000px;}
.y17e{bottom:658.725000px;}
.y119{bottom:659.265000px;}
.y12f{bottom:659.625000px;}
.y73{bottom:659.985000px;}
.y8e{bottom:660.165000px;}
.y17{bottom:664.665000px;}
.yb7{bottom:668.415000px;}
.yc2{bottom:668.445000px;}
.y47{bottom:669.885000px;}
.y167{bottom:678.885000px;}
.y17d{bottom:679.425000px;}
.y118{bottom:679.965000px;}
.y12e{bottom:680.325000px;}
.y72{bottom:680.685000px;}
.y8d{bottom:680.865000px;}
.y46{bottom:690.585000px;}
.y117{bottom:700.665000px;}
.y12d{bottom:701.025000px;}
.y101{bottom:701.385000px;}
.y8c{bottom:701.565000px;}
.y16{bottom:705.525000px;}
.y45{bottom:711.285000px;}
.y166{bottom:720.465000px;}
.y17c{bottom:721.185000px;}
.y116{bottom:721.365000px;}
.y12c{bottom:721.725000px;}
.y100{bottom:722.085000px;}
.y71{bottom:722.265000px;}
.y44{bottom:731.985000px;}
.y165{bottom:741.165000px;}
.y17b{bottom:741.885000px;}
.y115{bottom:742.065000px;}
.y12b{bottom:742.425000px;}
.yff{bottom:742.785000px;}
.y70{bottom:742.965000px;}
.y15{bottom:746.565000px;}
.y43{bottom:752.685000px;}
.y114{bottom:762.765000px;}
.y15b{bottom:763.125000px;}
.yfe{bottom:763.485000px;}
.y6f{bottom:763.665000px;}
.yab{bottom:764.025000px;}
.y14{bottom:764.565000px;}
.y42{bottom:773.385000px;}
.y164{bottom:782.925000px;}
.y17a{bottom:783.465000px;}
.yfd{bottom:784.185000px;}
.y6e{bottom:784.365000px;}
.yaa{bottom:784.725000px;}
.y13{bottom:785.265000px;}
.y41{bottom:794.085000px;}
.y113{bottom:804.165000px;}
.yfc{bottom:804.885000px;}
.y6d{bottom:805.065000px;}
.ya9{bottom:805.425000px;}
.y12{bottom:805.965000px;}
.y40{bottom:814.785000px;}
.y163{bottom:824.685000px;}
.yfb{bottom:825.585000px;}
.y6c{bottom:825.765000px;}
.ya8{bottom:826.125000px;}
.y3f{bottom:835.485000px;}
.y179{bottom:845.925000px;}
.yfa{bottom:846.285000px;}
.y6b{bottom:846.465000px;}
.ya7{bottom:846.825000px;}
.y11{bottom:847.185000px;}
.y3e{bottom:856.185000px;}
.y162{bottom:866.265000px;}
.y178{bottom:866.625000px;}
.yf9{bottom:866.985000px;}
.y6a{bottom:867.165000px;}
.ya6{bottom:867.525000px;}
.y3d{bottom:876.885000px;}
.y161{bottom:886.965000px;}
.yf8{bottom:887.685000px;}
.y8b{bottom:887.865000px;}
.ya5{bottom:888.225000px;}
.y10{bottom:889.665000px;}
.y3c{bottom:897.585000px;}
.yf7{bottom:908.430000px;}
.ye9{bottom:908.610000px;}
.y69{bottom:908.970000px;}
.yf{bottom:913.650000px;}
.y3b{bottom:918.330000px;}
.y160{bottom:928.770000px;}
.yf6{bottom:928.950000px;}
.ye8{bottom:929.310000px;}
.y68{bottom:929.670000px;}
.ye{bottom:937.770000px;}
.yf5{bottom:949.650000px;}
.ye7{bottom:950.010000px;}
.y67{bottom:950.370000px;}
.yb6{bottom:955.770000px;}
.y3a{bottom:959.730000px;}
.yd{bottom:962.070000px;}
.yf4{bottom:970.350000px;}
.ye6{bottom:970.710000px;}
.y66{bottom:971.070000px;}
.yb5{bottom:973.050000px;}
.ydd{bottom:976.470000px;}
.y112{bottom:991.050000px;}
.ye5{bottom:991.410000px;}
.y65{bottom:991.770000px;}
.ydc{bottom:993.750000px;}
.y39{bottom:1001.310000px;}
.yc{bottom:1007.790000px;}
.yf3{bottom:1011.750000px;}
.ye4{bottom:1012.110000px;}
.y64{bottom:1012.470000px;}
.y38{bottom:1020.210000px;}
.y15a{bottom:1032.450000px;}
.ye3{bottom:1032.810000px;}
.y63{bottom:1033.170000px;}
.yb{bottom:1035.330000px;}
.y15f{bottom:1053.150000px;}
.ye2{bottom:1053.510000px;}
.y62{bottom:1053.870000px;}
.y37{bottom:1060.350000px;}
.y9{bottom:1060.530000px;}
.ye1{bottom:1074.210000px;}
.y61{bottom:1074.570000px;}
.y3{bottom:1075.830000px;}
.y36{bottom:1079.250000px;}
.y60{bottom:1095.270000px;}
.y35{bottom:1098.150000px;}
.y132{bottom:1101.030000px;}
.ye0{bottom:1115.430000px;}
.y5f{bottom:1115.970000px;}
.y34{bottom:1117.230000px;}
.y131{bottom:1118.310000px;}
.y32{bottom:1135.050000px;}
.y2f{bottom:1146.780000px;}
.y1{bottom:1193.220000px;}
.h13{height:23.319141px;}
.h18{height:28.411172px;}
.h2{height:34.560000px;}
.h16{height:38.158594px;}
.h1c{height:43.085992px;}
.h1b{height:43.618596px;}
.h14{height:47.344922px;}
.h9{height:47.545312px;}
.h8{height:50.312812px;}
.he{height:58.651172px;}
.h11{height:59.383125px;}
.h19{height:60.226875px;}
.h3{height:62.327813px;}
.h17{height:64.546875px;}
.h10{height:65.010937px;}
.hf{height:66.757500px;}
.h1d{height:70.628906px;}
.hd{height:70.664062px;}
.hc{height:72.562500px;}
.h7{height:75.093750px;}
.h15{height:80.464922px;}
.h12{height:84.240000px;}
.hb{height:84.898125px;}
.ha{height:96.508125px;}
.h5{height:113.076000px;}
.h6{height:141.257812px;}
.h4{height:150.187500px;}
.h1a{height:283.879682px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:340.950000px;}
.w3{width:341.130000px;}
.w6{width:429.461936px;}
.w4{width:683.205000px;}
.w5{width:692.025000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:10.975138px;}
.x1a{left:31.213181px;}
.x6{left:57.954000px;}
.x1c{left:66.664843px;}
.x25{left:71.717336px;}
.x7{left:89.994000px;}
.x13{left:100.476000px;}
.x1{left:103.896000px;}
.x4{left:104.976000px;}
.x30{left:109.836000px;}
.xd{left:124.416000px;}
.x1d{left:140.908426px;}
.x27{left:145.836000px;}
.x18{left:148.536000px;}
.x2e{left:149.616000px;}
.x9{left:151.734000px;}
.xb{left:163.470000px;}
.x14{left:169.014000px;}
.x8{left:174.279000px;}
.x1e{left:178.016183px;}
.x3{left:190.305000px;}
.x1f{left:215.157623px;}
.x28{left:222.510000px;}
.x19{left:231.765000px;}
.x2a{left:234.210000px;}
.x5{left:242.859000px;}
.x20{left:251.445753px;}
.x11{left:285.195000px;}
.x21{left:288.553510px;}
.xc{left:290.955000px;}
.x22{left:325.694950px;}
.x10{left:329.835000px;}
.xf{left:344.955000px;}
.x2f{left:349.455000px;}
.x2c{left:352.515000px;}
.xe{left:360.075000px;}
.x23{left:362.802707px;}
.x24{left:399.932919px;}
.x17{left:417.315000px;}
.x31{left:426.495000px;}
.x2b{left:437.475000px;}
.x16{left:441.975000px;}
.xa{left:446.475000px;}
.x2{left:448.125000px;}
.x26{left:661.290000px;}
.x15{left:683.934000px;}
.x29{left:788.190000px;}
.x2d{left:789.630000px;}
.x12{left:793.050000px;}
@media print{
.v3{vertical-align:-26.880000pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls15{letter-spacing:-1.920000pt;}
.lsb{letter-spacing:-1.564038pt;}
.ls13{letter-spacing:-1.280000pt;}
.lsc{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.256000pt;}
.ls14{letter-spacing:-0.192000pt;}
.ls16{letter-spacing:-0.128000pt;}
.ls11{letter-spacing:-0.064000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.013440pt;}
.ls3{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.064000pt;}
.ls9{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.133120pt;}
.ls6{letter-spacing:0.133333pt;}
.ls8{letter-spacing:0.154880pt;}
.lse{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.504533pt;}
.ls2{letter-spacing:0.544000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls7{letter-spacing:7.040000pt;}
.ws12{word-spacing:-64.000000pt;}
.wsb{word-spacing:-16.640000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.wsd{word-spacing:-15.936000pt;}
.ws15{word-spacing:-15.872000pt;}
.ws13{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws0{word-spacing:-15.311360pt;}
.ws2{word-spacing:-15.224533pt;}
.ws3{word-spacing:-14.720000pt;}
.wsf{word-spacing:-13.600000pt;}
.ws1{word-spacing:-13.327360pt;}
.ws14{word-spacing:-13.306880pt;}
.ws10{word-spacing:-13.280000pt;}
.wse{word-spacing:-11.040000pt;}
.ws9{word-spacing:-9.755679pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:-7.810560pt;}
.ws4{word-spacing:0.000000pt;}
.wsa{word-spacing:186.194258pt;}
._13{margin-left:-11.393707pt;}
._1{margin-left:-1.991040pt;}
._2{margin-left:-1.095040pt;}
._0{width:0.903040pt;}
._3{width:2.112000pt;}
._c{width:3.344000pt;}
._9{width:4.710400pt;}
._a{width:5.936000pt;}
._f{width:7.168000pt;}
._11{width:8.128000pt;}
._e{width:9.903360pt;}
._d{width:10.892800pt;}
._5{width:11.893760pt;}
._6{width:12.907307pt;}
._10{width:14.237013pt;}
._4{width:17.192960pt;}
._8{width:18.606080pt;}
._7{width:19.760000pt;}
._b{width:20.650667pt;}
._12{width:22.087040pt;}
._14{width:23.594880pt;}
._1c{width:24.874240pt;}
._1e{width:25.941760pt;}
._17{width:27.136000pt;}
._18{width:28.160000pt;}
._1d{width:30.016000pt;}
._15{width:31.488000pt;}
._16{width:33.144960pt;}
._23{width:34.062080pt;}
._1a{width:36.160000pt;}
._1b{width:37.105707pt;}
._20{width:40.071040pt;}
._1f{width:41.216000pt;}
._24{width:42.432000pt;}
._25{width:43.701333pt;}
._21{width:114.176000pt;}
._22{width:115.648000pt;}
._19{width:191.495618pt;}
.fs1{font-size:2.560000pt;}
.fs9{font-size:21.120000pt;}
.fsa{font-size:34.560000pt;}
.fsc{font-size:39.022714pt;}
.fsb{font-size:39.505090pt;}
.fs4{font-size:40.320000pt;}
.fs5{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs8{font-size:74.880000pt;}
.fs7{font-size:85.120000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y31{bottom:1.280000pt;}
.y8{bottom:2.560000pt;}
.yc1{bottom:7.602962pt;}
.y30{bottom:9.440000pt;}
.y2{bottom:10.720000pt;}
.y7{bottom:14.560000pt;}
.yc0{bottom:24.324426pt;}
.y6{bottom:30.560000pt;}
.y5{bottom:48.960000pt;}
.y33{bottom:63.200000pt;}
.ya{bottom:63.360000pt;}
.yb8{bottom:66.885855pt;}
.y4{bottom:70.746667pt;}
.yb9{bottom:91.210281pt;}
.yd8{bottom:95.840000pt;}
.y5e{bottom:101.920000pt;}
.ya4{bottom:107.360000pt;}
.yb4{bottom:107.680000pt;}
.y14c{bottom:107.840000pt;}
.y2e{bottom:109.920000pt;}
.ydb{bottom:111.200000pt;}
.yba{bottom:115.534706pt;}
.y5d{bottom:117.280000pt;}
.y111{bottom:124.000000pt;}
.yb3{bottom:124.160000pt;}
.ya3{bottom:125.760000pt;}
.y14b{bottom:126.240000pt;}
.y2d{bottom:126.720000pt;}
.y5c{bottom:132.480000pt;}
.y149{bottom:132.960000pt;}
.y8a{bottom:139.360000pt;}
.ybb{bottom:139.854080pt;}
.y190{bottom:142.240000pt;}
.y2c{bottom:143.680000pt;}
.ya2{bottom:144.160000pt;}
.y14a{bottom:144.640000pt;}
.yb2{bottom:147.840000pt;}
.y148{bottom:151.386667pt;}
.y159{bottom:153.306667pt;}
.y5b{bottom:154.746667pt;}
.y177{bottom:159.546667pt;}
.y2b{bottom:160.506667pt;}
.y18f{bottom:160.666667pt;}
.y110{bottom:162.586667pt;}
.y89{bottom:163.066667pt;}
.yb1{bottom:163.226667pt;}
.ybc{bottom:164.941328pt;}
.y147{bottom:169.786667pt;}
.y158{bottom:171.706667pt;}
.y2a{bottom:177.306667pt;}
.yd7{bottom:177.626667pt;}
.y176{bottom:177.946667pt;}
.yb0{bottom:178.426667pt;}
.ya1{bottom:180.826667pt;}
.y10f{bottom:180.986667pt;}
.y88{bottom:181.466667pt;}
.yda{bottom:181.786667pt;}
.yf2{bottom:185.306667pt;}
.y146{bottom:188.186667pt;}
.ybd{bottom:189.240494pt;}
.y157{bottom:190.106667pt;}
.yd6{bottom:196.026667pt;}
.y18e{bottom:197.786667pt;}
.y12a{bottom:199.386667pt;}
.y87{bottom:199.866667pt;}
.yd9{bottom:200.186667pt;}
.yaf{bottom:200.666667pt;}
.ydf{bottom:203.866667pt;}
.y145{bottom:206.586667pt;}
.y156{bottom:208.506667pt;}
.y29{bottom:212.506667pt;}
.ybe{bottom:213.559868pt;}
.yd5{bottom:214.426667pt;}
.y175{bottom:215.066667pt;}
.yde{bottom:215.866667pt;}
.y18d{bottom:216.186667pt;}
.yf1{bottom:217.786667pt;}
.y10e{bottom:217.946667pt;}
.ya0{bottom:218.266667pt;}
.yae{bottom:218.586667pt;}
.y144{bottom:224.986667pt;}
.y155{bottom:226.906667pt;}
.y5a{bottom:227.226667pt;}
.y28{bottom:229.466667pt;}
.yd4{bottom:232.666667pt;}
.yf0{bottom:236.186667pt;}
.y10d{bottom:236.346667pt;}
.y9f{bottom:236.666667pt;}
.y86{bottom:236.986667pt;}
.ybf{bottom:237.889345pt;}
.y154{bottom:245.306667pt;}
.y59{bottom:245.626667pt;}
.y27{bottom:246.266667pt;}
.yd3{bottom:251.066667pt;}
.y174{bottom:252.186667pt;}
.y18c{bottom:253.146667pt;}
.yef{bottom:254.586667pt;}
.y10c{bottom:254.746667pt;}
.y9e{bottom:255.066667pt;}
.y85{bottom:255.386667pt;}
.y143{bottom:262.106667pt;}
.y153{bottom:263.706667pt;}
.y58{bottom:264.026667pt;}
.yd2{bottom:269.466667pt;}
.y173{bottom:270.586667pt;}
.y18b{bottom:271.546667pt;}
.y129{bottom:272.986667pt;}
.y10b{bottom:273.146667pt;}
.y9d{bottom:273.466667pt;}
.y84{bottom:273.786667pt;}
.y142{bottom:280.506667pt;}
.y26{bottom:281.786667pt;}
.y152{bottom:282.106667pt;}
.y57{bottom:282.426667pt;}
.yd1{bottom:287.866667pt;}
.y172{bottom:288.986667pt;}
.y18a{bottom:289.946667pt;}
.y128{bottom:291.386667pt;}
.yee{bottom:291.546667pt;}
.y9c{bottom:291.866667pt;}
.y83{bottom:292.186667pt;}
.y141{bottom:298.906667pt;}
.y151{bottom:300.506667pt;}
.y56{bottom:300.826667pt;}
.yd0{bottom:306.266667pt;}
.y127{bottom:309.786667pt;}
.yed{bottom:309.946667pt;}
.y9b{bottom:310.266667pt;}
.y82{bottom:310.586667pt;}
.y140{bottom:317.306667pt;}
.y25{bottom:317.626667pt;}
.y150{bottom:318.906667pt;}
.y55{bottom:319.226667pt;}
.ycf{bottom:324.666667pt;}
.y171{bottom:325.946667pt;}
.y189{bottom:327.066667pt;}
.y126{bottom:328.186667pt;}
.yec{bottom:328.346667pt;}
.y9a{bottom:328.666667pt;}
.y81{bottom:328.986667pt;}
.y24{bottom:334.586667pt;}
.y13f{bottom:335.706667pt;}
.y54{bottom:337.626667pt;}
.y188{bottom:345.466667pt;}
.y125{bottom:346.586667pt;}
.y10a{bottom:346.746667pt;}
.y99{bottom:347.066667pt;}
.y80{bottom:347.386667pt;}
.y13e{bottom:354.106667pt;}
.y14f{bottom:355.386667pt;}
.y53{bottom:356.026667pt;}
.yce{bottom:361.786667pt;}
.y170{bottom:363.066667pt;}
.y187{bottom:363.866667pt;}
.y124{bottom:364.986667pt;}
.y109{bottom:365.146667pt;}
.yeb{bottom:365.466667pt;}
.y7f{bottom:365.786667pt;}
.y23{bottom:370.146667pt;}
.y14e{bottom:371.586667pt;}
.y13d{bottom:372.546667pt;}
.y52{bottom:374.466667pt;}
.ycd{bottom:380.226667pt;}
.y16f{bottom:381.506667pt;}
.y123{bottom:383.426667pt;}
.y15e{bottom:383.586667pt;}
.y98{bottom:383.906667pt;}
.y7e{bottom:384.226667pt;}
.yad{bottom:384.386667pt;}
.y14d{bottom:385.346667pt;}
.y22{bottom:386.946667pt;}
.y13c{bottom:390.946667pt;}
.y51{bottom:392.866667pt;}
.ycc{bottom:398.626667pt;}
.y16e{bottom:399.906667pt;}
.y186{bottom:401.026667pt;}
.y122{bottom:401.826667pt;}
.y15d{bottom:401.986667pt;}
.yea{bottom:402.306667pt;}
.y7d{bottom:402.626667pt;}
.yac{bottom:402.786667pt;}
.y21{bottom:403.906667pt;}
.y13b{bottom:409.346667pt;}
.y50{bottom:411.266667pt;}
.ycb{bottom:417.026667pt;}
.y185{bottom:419.426667pt;}
.y15c{bottom:420.386667pt;}
.y20{bottom:420.706667pt;}
.y7c{bottom:421.026667pt;}
.y97{bottom:421.186667pt;}
.y13a{bottom:427.746667pt;}
.y4f{bottom:429.666667pt;}
.yca{bottom:435.426667pt;}
.y16d{bottom:437.026667pt;}
.y1f{bottom:437.666667pt;}
.y184{bottom:437.826667pt;}
.y121{bottom:438.786667pt;}
.y108{bottom:439.106667pt;}
.y7b{bottom:439.426667pt;}
.y96{bottom:439.586667pt;}
.y139{bottom:446.146667pt;}
.y4e{bottom:448.066667pt;}
.yc9{bottom:453.826667pt;}
.y1e{bottom:454.466667pt;}
.y16c{bottom:455.426667pt;}
.y120{bottom:457.186667pt;}
.y107{bottom:457.506667pt;}
.y7a{bottom:457.826667pt;}
.y95{bottom:457.986667pt;}
.y138{bottom:464.546667pt;}
.y4d{bottom:466.466667pt;}
.y1d{bottom:471.266667pt;}
.yc8{bottom:472.226667pt;}
.y16b{bottom:473.826667pt;}
.y183{bottom:474.786667pt;}
.y11f{bottom:475.586667pt;}
.y106{bottom:475.906667pt;}
.y79{bottom:476.226667pt;}
.y94{bottom:476.386667pt;}
.y137{bottom:482.946667pt;}
.y4c{bottom:484.866667pt;}
.y1c{bottom:488.226667pt;}
.yc7{bottom:490.626667pt;}
.y182{bottom:493.186667pt;}
.y11e{bottom:493.986667pt;}
.y105{bottom:494.306667pt;}
.y78{bottom:494.626667pt;}
.y93{bottom:494.786667pt;}
.y136{bottom:501.346667pt;}
.y1b{bottom:505.026667pt;}
.yc6{bottom:509.026667pt;}
.y16a{bottom:510.466667pt;}
.y11d{bottom:512.386667pt;}
.y104{bottom:512.706667pt;}
.y77{bottom:513.026667pt;}
.y92{bottom:513.186667pt;}
.y135{bottom:519.746667pt;}
.y4b{bottom:521.826667pt;}
.y1a{bottom:521.986667pt;}
.yc5{bottom:527.426667pt;}
.y181{bottom:530.306667pt;}
.y11c{bottom:530.786667pt;}
.y103{bottom:531.106667pt;}
.y76{bottom:531.426667pt;}
.y91{bottom:531.586667pt;}
.y19{bottom:538.786667pt;}
.y4a{bottom:540.226667pt;}
.yc4{bottom:545.826667pt;}
.y169{bottom:547.906667pt;}
.y180{bottom:548.706667pt;}
.y11b{bottom:549.186667pt;}
.y102{bottom:549.506667pt;}
.y75{bottom:549.826667pt;}
.y90{bottom:549.986667pt;}
.y134{bottom:556.066667pt;}
.y49{bottom:558.626667pt;}
.y17f{bottom:567.106667pt;}
.y11a{bottom:567.586667pt;}
.y130{bottom:567.906667pt;}
.y133{bottom:568.066667pt;}
.y74{bottom:568.226667pt;}
.y8f{bottom:568.386667pt;}
.y18{bottom:573.986667pt;}
.y48{bottom:577.026667pt;}
.yc3{bottom:582.146667pt;}
.y168{bottom:585.053333pt;}
.y17e{bottom:585.533333pt;}
.y119{bottom:586.013333pt;}
.y12f{bottom:586.333333pt;}
.y73{bottom:586.653333pt;}
.y8e{bottom:586.813333pt;}
.y17{bottom:590.813333pt;}
.yb7{bottom:594.146667pt;}
.yc2{bottom:594.173333pt;}
.y47{bottom:595.453333pt;}
.y167{bottom:603.453333pt;}
.y17d{bottom:603.933333pt;}
.y118{bottom:604.413333pt;}
.y12e{bottom:604.733333pt;}
.y72{bottom:605.053333pt;}
.y8d{bottom:605.213333pt;}
.y46{bottom:613.853333pt;}
.y117{bottom:622.813333pt;}
.y12d{bottom:623.133333pt;}
.y101{bottom:623.453333pt;}
.y8c{bottom:623.613333pt;}
.y16{bottom:627.133333pt;}
.y45{bottom:632.253333pt;}
.y166{bottom:640.413333pt;}
.y17c{bottom:641.053333pt;}
.y116{bottom:641.213333pt;}
.y12c{bottom:641.533333pt;}
.y100{bottom:641.853333pt;}
.y71{bottom:642.013333pt;}
.y44{bottom:650.653333pt;}
.y165{bottom:658.813333pt;}
.y17b{bottom:659.453333pt;}
.y115{bottom:659.613333pt;}
.y12b{bottom:659.933333pt;}
.yff{bottom:660.253333pt;}
.y70{bottom:660.413333pt;}
.y15{bottom:663.613333pt;}
.y43{bottom:669.053333pt;}
.y114{bottom:678.013333pt;}
.y15b{bottom:678.333333pt;}
.yfe{bottom:678.653333pt;}
.y6f{bottom:678.813333pt;}
.yab{bottom:679.133333pt;}
.y14{bottom:679.613333pt;}
.y42{bottom:687.453333pt;}
.y164{bottom:695.933333pt;}
.y17a{bottom:696.413333pt;}
.yfd{bottom:697.053333pt;}
.y6e{bottom:697.213333pt;}
.yaa{bottom:697.533333pt;}
.y13{bottom:698.013333pt;}
.y41{bottom:705.853333pt;}
.y113{bottom:714.813333pt;}
.yfc{bottom:715.453333pt;}
.y6d{bottom:715.613333pt;}
.ya9{bottom:715.933333pt;}
.y12{bottom:716.413333pt;}
.y40{bottom:724.253333pt;}
.y163{bottom:733.053333pt;}
.yfb{bottom:733.853333pt;}
.y6c{bottom:734.013333pt;}
.ya8{bottom:734.333333pt;}
.y3f{bottom:742.653333pt;}
.y179{bottom:751.933333pt;}
.yfa{bottom:752.253333pt;}
.y6b{bottom:752.413333pt;}
.ya7{bottom:752.733333pt;}
.y11{bottom:753.053333pt;}
.y3e{bottom:761.053333pt;}
.y162{bottom:770.013333pt;}
.y178{bottom:770.333333pt;}
.yf9{bottom:770.653333pt;}
.y6a{bottom:770.813333pt;}
.ya6{bottom:771.133333pt;}
.y3d{bottom:779.453333pt;}
.y161{bottom:788.413333pt;}
.yf8{bottom:789.053333pt;}
.y8b{bottom:789.213333pt;}
.ya5{bottom:789.533333pt;}
.y10{bottom:790.813333pt;}
.y3c{bottom:797.853333pt;}
.yf7{bottom:807.493333pt;}
.ye9{bottom:807.653333pt;}
.y69{bottom:807.973333pt;}
.yf{bottom:812.133333pt;}
.y3b{bottom:816.293333pt;}
.y160{bottom:825.573333pt;}
.yf6{bottom:825.733333pt;}
.ye8{bottom:826.053333pt;}
.y68{bottom:826.373333pt;}
.ye{bottom:833.573333pt;}
.yf5{bottom:844.133333pt;}
.ye7{bottom:844.453333pt;}
.y67{bottom:844.773333pt;}
.yb6{bottom:849.573333pt;}
.y3a{bottom:853.093333pt;}
.yd{bottom:855.173333pt;}
.yf4{bottom:862.533333pt;}
.ye6{bottom:862.853333pt;}
.y66{bottom:863.173333pt;}
.yb5{bottom:864.933333pt;}
.ydd{bottom:867.973333pt;}
.y112{bottom:880.933333pt;}
.ye5{bottom:881.253333pt;}
.y65{bottom:881.573333pt;}
.ydc{bottom:883.333333pt;}
.y39{bottom:890.053333pt;}
.yc{bottom:895.813333pt;}
.yf3{bottom:899.333333pt;}
.ye4{bottom:899.653333pt;}
.y64{bottom:899.973333pt;}
.y38{bottom:906.853333pt;}
.y15a{bottom:917.733333pt;}
.ye3{bottom:918.053333pt;}
.y63{bottom:918.373333pt;}
.yb{bottom:920.293333pt;}
.y15f{bottom:936.133333pt;}
.ye2{bottom:936.453333pt;}
.y62{bottom:936.773333pt;}
.y37{bottom:942.533333pt;}
.y9{bottom:942.693333pt;}
.ye1{bottom:954.853333pt;}
.y61{bottom:955.173333pt;}
.y3{bottom:956.293333pt;}
.y36{bottom:959.333333pt;}
.y60{bottom:973.573333pt;}
.y35{bottom:976.133333pt;}
.y132{bottom:978.693333pt;}
.ye0{bottom:991.493333pt;}
.y5f{bottom:991.973333pt;}
.y34{bottom:993.093333pt;}
.y131{bottom:994.053333pt;}
.y32{bottom:1008.933333pt;}
.y2f{bottom:1019.360000pt;}
.y1{bottom:1060.640000pt;}
.h13{height:20.728125pt;}
.h18{height:25.254375pt;}
.h2{height:30.720000pt;}
.h16{height:33.918750pt;}
.h1c{height:38.298660pt;}
.h1b{height:38.772085pt;}
.h14{height:42.084375pt;}
.h9{height:42.262500pt;}
.h8{height:44.722500pt;}
.he{height:52.134375pt;}
.h11{height:52.785000pt;}
.h19{height:53.535000pt;}
.h3{height:55.402500pt;}
.h17{height:57.375000pt;}
.h10{height:57.787500pt;}
.hf{height:59.340000pt;}
.h1d{height:62.781250pt;}
.hd{height:62.812500pt;}
.hc{height:64.500000pt;}
.h7{height:66.750000pt;}
.h15{height:71.524375pt;}
.h12{height:74.880000pt;}
.hb{height:75.465000pt;}
.ha{height:85.785000pt;}
.h5{height:100.512000pt;}
.h6{height:125.562500pt;}
.h4{height:133.500000pt;}
.h1a{height:252.337495pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:303.066667pt;}
.w3{width:303.226667pt;}
.w6{width:381.743943pt;}
.w4{width:607.293333pt;}
.w5{width:615.133333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:9.755679pt;}
.x1a{left:27.745050pt;}
.x6{left:51.514667pt;}
.x1c{left:59.257638pt;}
.x25{left:63.748743pt;}
.x7{left:79.994667pt;}
.x13{left:89.312000pt;}
.x1{left:92.352000pt;}
.x4{left:93.312000pt;}
.x30{left:97.632000pt;}
.xd{left:110.592000pt;}
.x1d{left:125.251934pt;}
.x27{left:129.632000pt;}
.x18{left:132.032000pt;}
.x2e{left:132.992000pt;}
.x9{left:134.874667pt;}
.xb{left:145.306667pt;}
.x14{left:150.234667pt;}
.x8{left:154.914667pt;}
.x1e{left:158.236607pt;}
.x3{left:169.160000pt;}
.x1f{left:191.251221pt;}
.x28{left:197.786667pt;}
.x19{left:206.013333pt;}
.x2a{left:208.186667pt;}
.x5{left:215.874667pt;}
.x20{left:223.507336pt;}
.x11{left:253.506667pt;}
.x21{left:256.492009pt;}
.xc{left:258.626667pt;}
.x22{left:289.506622pt;}
.x10{left:293.186667pt;}
.xf{left:306.626667pt;}
.x2f{left:310.626667pt;}
.x2c{left:313.346667pt;}
.xe{left:320.066667pt;}
.x23{left:322.491295pt;}
.x24{left:355.495928pt;}
.x17{left:370.946667pt;}
.x31{left:379.106667pt;}
.x2b{left:388.866667pt;}
.x16{left:392.866667pt;}
.xa{left:396.866667pt;}
.x2{left:398.333333pt;}
.x26{left:587.813333pt;}
.x15{left:607.941333pt;}
.x29{left:700.613333pt;}
.x2d{left:701.893333pt;}
.x12{left:704.933333pt;}
}




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