
    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_2d71b1598d062d7127ca1db7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_410056db8d553d25cf12d8a4.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2225533c119fa84706cb238f.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_81afaf3af224771fe4fe264b.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5cdd6ebbbbf62f4a2de0d119.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.095703;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_ddccb04248bc574f1244a64e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_b662bb9057a2847032e4b4cd.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.104004;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e6996bfc88eb57d648643acd.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_824159ce94308be3d685d6c5.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.903320;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_24a255de0867627683d7058d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.854980;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-23.760000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.lsf{letter-spacing:-1.080000px;}
.lsc{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.538800px;}
.lsd{letter-spacing:-0.413400px;}
.ls10{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.259800px;}
.ls1d{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.206400px;}
.ls16{letter-spacing:-0.159600px;}
.lse{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls4{letter-spacing:0.018000px;}
.ls14{letter-spacing:0.022320px;}
.ls8{letter-spacing:0.053280px;}
.ls1b{letter-spacing:0.106560px;}
.lsa{letter-spacing:0.106800px;}
.ls18{letter-spacing:0.129600px;}
.ls15{letter-spacing:0.150000px;}
.ls3{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.181200px;}
.lsb{letter-spacing:0.262080px;}
.ls5{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.ls13{letter-spacing:0.828000px;}
.ls6{letter-spacing:1.620000px;}
.ls19{letter-spacing:16.829280px;}
.ls12{letter-spacing:60.426720px;}
.ls17{letter-spacing:533.160000px;}
.ls0{letter-spacing:564.120000px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws9{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.046800px;}
.ws3{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.680200px;}
.ws12{word-spacing:-13.860000px;}
.ws2{word-spacing:-13.518000px;}
.ws1{word-spacing:-13.500000px;}
.ws14{word-spacing:-13.284000px;}
.ws13{word-spacing:-13.140000px;}
.ws11{word-spacing:-12.241200px;}
.ws10{word-spacing:-11.521200px;}
.wse{word-spacing:-10.924560px;}
.wsf{word-spacing:-10.440000px;}
.ws0{word-spacing:-9.720000px;}
.wsd{word-spacing:-9.278160px;}
.ws7{word-spacing:0.000000px;}
._13{margin-left:-2.085840px;}
._1{margin-left:-1.026000px;}
._0{width:1.062000px;}
._8{width:2.165040px;}
._c{width:4.006080px;}
._b{width:5.356080px;}
._a{width:6.812640px;}
._e{width:8.426160px;}
._7{width:9.522720px;}
._5{width:11.016000px;}
._9{width:12.391200px;}
._4{width:13.666320px;}
._2{width:14.774400px;}
._16{width:16.989840px;}
._f{width:18.346320px;}
._10{width:19.638000px;}
._14{width:37.348560px;}
._15{width:38.604240px;}
._6{width:71.928000px;}
._18{width:75.114000px;}
._17{width:94.770000px;}
._1a{width:105.462000px;}
._19{width:107.190000px;}
._1b{width:108.876000px;}
._3{width:146.817120px;}
._12{width:534.990000px;}
._d{width:563.040000px;}
._11{width:564.510000px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs7{font-size:51.120000px;}
.fs1{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.yd9{bottom:3.240000px;}
.y166{bottom:5.775000px;}
.ydb{bottom:14.400000px;}
.y155{bottom:14.940000px;}
.ydd{bottom:15.120000px;}
.ye0{bottom:15.330000px;}
.ydf{bottom:16.050000px;}
.y165{bottom:23.235000px;}
.y16a{bottom:24.135000px;}
.yda{bottom:29.700000px;}
.y164{bottom:39.795000px;}
.y169{bottom:40.695000px;}
.y163{bottom:56.355000px;}
.y168{bottom:57.255000px;}
.y162{bottom:72.915000px;}
.y167{bottom:73.815000px;}
.y161{bottom:90.375000px;}
.y160{bottom:106.935000px;}
.y15f{bottom:123.315000px;}
.y15e{bottom:140.775000px;}
.y5{bottom:149.580000px;}
.y26{bottom:154.080000px;}
.y15d{bottom:157.365000px;}
.y15c{bottom:173.925000px;}
.y15a{bottom:191.370000px;}
.y159{bottom:207.930000px;}
.y158{bottom:224.490000px;}
.y106{bottom:235.650000px;}
.yb9{bottom:236.190000px;}
.y43{bottom:239.430000px;}
.yd7{bottom:239.970000px;}
.y83{bottom:241.050000px;}
.yea{bottom:241.410000px;}
.y12c{bottom:242.310000px;}
.y5d{bottom:243.570000px;}
.y23{bottom:243.930000px;}
.y105{bottom:254.370000px;}
.yb8{bottom:256.890000px;}
.y157{bottom:257.610000px;}
.y19b{bottom:257.970000px;}
.y42{bottom:260.130000px;}
.yd6{bottom:260.670000px;}
.y150{bottom:261.750000px;}
.ye9{bottom:262.110000px;}
.y5c{bottom:264.270000px;}
.y22{bottom:264.630000px;}
.y176{bottom:266.610000px;}
.y82{bottom:270.750000px;}
.y12b{bottom:272.010000px;}
.y104{bottom:272.910000px;}
.y156{bottom:274.170000px;}
.ye8{bottom:275.250000px;}
.y97{bottom:275.790000px;}
.y19a{bottom:275.970000px;}
.yb7{bottom:277.590000px;}
.y41{bottom:280.830000px;}
.yd5{bottom:281.370000px;}
.y14f{bottom:282.450000px;}
.y5b{bottom:284.970000px;}
.y175{bottom:287.310000px;}
.y12a{bottom:290.550000px;}
.y81{bottom:291.450000px;}
.y103{bottom:291.630000px;}
.y199{bottom:293.970000px;}
.y21{bottom:294.690000px;}
.y96{bottom:296.490000px;}
.yb6{bottom:298.290000px;}
.y40{bottom:301.530000px;}
.ye7{bottom:304.950000px;}
.y5a{bottom:305.670000px;}
.yd4{bottom:306.210000px;}
.y174{bottom:308.010000px;}
.y102{bottom:310.170000px;}
.y198{bottom:311.970000px;}
.y80{bottom:312.150000px;}
.y14e{bottom:312.510000px;}
.y71{bottom:314.670000px;}
.y95{bottom:317.190000px;}
.y129{bottom:318.090000px;}
.yb5{bottom:318.990000px;}
.y20{bottom:325.290000px;}
.ye6{bottom:325.650000px;}
.y59{bottom:326.370000px;}
.y173{bottom:328.710000px;}
.y101{bottom:328.890000px;}
.y3f{bottom:331.230000px;}
.y7f{bottom:332.850000px;}
.y70{bottom:335.370000px;}
.y94{bottom:337.890000px;}
.y197{bottom:338.970000px;}
.yb4{bottom:339.690000px;}
.y14d{bottom:344.010000px;}
.y1f{bottom:344.370000px;}
.yd3{bottom:345.270000px;}
.y58{bottom:347.070000px;}
.y100{bottom:347.430000px;}
.y172{bottom:349.410000px;}
.ye5{bottom:351.750000px;}
.y3e{bottom:351.930000px;}
.y7e{bottom:353.550000px;}
.y6f{bottom:356.070000px;}
.y196{bottom:356.970000px;}
.yb3{bottom:360.390000px;}
.y14c{bottom:364.710000px;}
.yd2{bottom:365.970000px;}
.yff{bottom:366.150000px;}
.y93{bottom:367.590000px;}
.y57{bottom:367.770000px;}
.y171{bottom:370.110000px;}
.y3d{bottom:372.630000px;}
.y7d{bottom:374.250000px;}
.y1e{bottom:374.430000px;}
.y6e{bottom:376.770000px;}
.y195{bottom:383.970000px;}
.y128{bottom:384.690000px;}
.y14b{bottom:385.410000px;}
.yb2{bottom:385.590000px;}
.yd1{bottom:386.670000px;}
.y92{bottom:388.290000px;}
.y56{bottom:388.470000px;}
.y170{bottom:390.810000px;}
.y3c{bottom:393.330000px;}
.yfe{bottom:393.870000px;}
.y7c{bottom:394.950000px;}
.y1d{bottom:395.130000px;}
.y6d{bottom:397.470000px;}
.y194{bottom:401.970000px;}
.y127{bottom:403.230000px;}
.y14a{bottom:406.110000px;}
.yd0{bottom:407.370000px;}
.y91{bottom:408.990000px;}
.y7b{bottom:415.650000px;}
.y1c{bottom:415.830000px;}
.y3b{bottom:418.170000px;}
.y55{bottom:418.890000px;}
.y16f{bottom:420.870000px;}
.y126{bottom:421.950000px;}
.yfd{bottom:423.210000px;}
.yb1{bottom:424.290000px;}
.y149{bottom:426.810000px;}
.ycf{bottom:428.070000px;}
.y193{bottom:428.970000px;}
.y90{bottom:429.690000px;}
.y7a{bottom:436.350000px;}
.y1b{bottom:436.530000px;}
.y6c{bottom:438.870000px;}
.y125{bottom:440.490000px;}
.y54{bottom:441.030000px;}
.yfc{bottom:441.930000px;}
.yb0{bottom:444.990000px;}
.y192{bottom:447.015000px;}
.y148{bottom:447.555000px;}
.yce{bottom:448.815000px;}
.y8f{bottom:450.435000px;}
.y16e{bottom:452.415000px;}
.y79{bottom:457.095000px;}
.y1a{bottom:457.275000px;}
.y124{bottom:459.255000px;}
.y6b{bottom:459.615000px;}
.y53{bottom:461.775000px;}
.y191{bottom:465.015000px;}
.ycd{bottom:469.515000px;}
.yfb{bottom:470.775000px;}
.y8e{bottom:471.135000px;}
.y147{bottom:472.395000px;}
.y16d{bottom:473.115000px;}
.yaf{bottom:474.735000px;}
.y78{bottom:477.795000px;}
.y19{bottom:477.975000px;}
.y6a{bottom:480.315000px;}
.y52{bottom:482.475000px;}
.ycc{bottom:490.215000px;}
.yfa{bottom:491.475000px;}
.y190{bottom:492.015000px;}
.y16c{bottom:493.815000px;}
.yae{bottom:495.435000px;}
.y8d{bottom:496.335000px;}
.y123{bottom:496.515000px;}
.y18{bottom:498.675000px;}
.y69{bottom:501.015000px;}
.y77{bottom:502.995000px;}
.y18f{bottom:510.015000px;}
.ycb{bottom:510.915000px;}
.y51{bottom:512.175000px;}
.y146{bottom:512.895000px;}
.y16b{bottom:514.515000px;}
.y122{bottom:515.055000px;}
.yad{bottom:516.135000px;}
.yf9{bottom:516.315000px;}
.y17{bottom:519.735000px;}
.y18e{bottom:528.015000px;}
.y15b{bottom:528.720000px;}
.y3a{bottom:528.735000px;}
.y68{bottom:530.715000px;}
.y145{bottom:531.435000px;}
.y50{bottom:532.875000px;}
.y121{bottom:533.775000px;}
.y8c{bottom:535.035000px;}
.yac{bottom:536.835000px;}
.y76{bottom:537.555000px;}
.yca{bottom:541.695000px;}
.y18d{bottom:546.015000px;}
.y144{bottom:550.155000px;}
.y67{bottom:551.415000px;}
.y120{bottom:552.315000px;}
.y16{bottom:552.495000px;}
.y4f{bottom:553.575000px;}
.yf8{bottom:555.375000px;}
.y8b{bottom:555.735000px;}
.yab{bottom:557.535000px;}
.y39{bottom:560.235000px;}
.yc9{bottom:562.395000px;}
.y143{bottom:568.695000px;}
.y11f{bottom:571.035000px;}
.y15{bottom:571.935000px;}
.y66{bottom:572.115000px;}
.y18c{bottom:573.015000px;}
.yf7{bottom:576.075000px;}
.y8a{bottom:576.435000px;}
.yaa{bottom:578.235000px;}
.y38{bottom:580.935000px;}
.yc8{bottom:583.095000px;}
.y4e{bottom:583.275000px;}
.y142{bottom:587.415000px;}
.y11e{bottom:589.575000px;}
.y18b{bottom:591.015000px;}
.yf6{bottom:596.775000px;}
.y89{bottom:597.135000px;}
.y14{bottom:601.635000px;}
.y65{bottom:601.815000px;}
.ya9{bottom:603.435000px;}
.yc7{bottom:603.615000px;}
.y4d{bottom:603.975000px;}
.y11d{bottom:605.235000px;}
.y141{bottom:606.135000px;}
.ye4{bottom:607.395000px;}
.yf5{bottom:617.475000px;}
.y88{bottom:617.835000px;}
.y18a{bottom:618.015000px;}
.y11c{bottom:620.715000px;}
.y13{bottom:622.335000px;}
.y64{bottom:622.515000px;}
.ye3{bottom:631.695000px;}
.y4c{bottom:633.675000px;}
.yc6{bottom:634.395000px;}
.y140{bottom:635.475000px;}
.y189{bottom:636.015000px;}
.y11b{bottom:636.195000px;}
.yf4{bottom:638.175000px;}
.y87{bottom:638.535000px;}
.ya8{bottom:642.135000px;}
.y12{bottom:643.035000px;}
.y63{bottom:643.215000px;}
.y11a{bottom:651.675000px;}
.y4b{bottom:654.195000px;}
.yc5{bottom:655.095000px;}
.yf3{bottom:658.695000px;}
.ya7{bottom:662.835000px;}
.y188{bottom:663.015000px;}
.y11{bottom:663.735000px;}
.y62{bottom:663.915000px;}
.y119{bottom:667.155000px;}
.y86{bottom:668.235000px;}
.yc4{bottom:675.795000px;}
.y4a{bottom:679.035000px;}
.y187{bottom:681.045000px;}
.y13f{bottom:681.585000px;}
.y118{bottom:682.845000px;}
.ya6{bottom:683.565000px;}
.y37{bottom:684.285000px;}
.y10{bottom:684.465000px;}
.y61{bottom:684.645000px;}
.yf2{bottom:688.425000px;}
.y85{bottom:694.365000px;}
.y186{bottom:699.045000px;}
.yc3{bottom:701.025000px;}
.y117{bottom:701.385000px;}
.ya5{bottom:704.265000px;}
.y36{bottom:704.985000px;}
.yf{bottom:705.165000px;}
.y60{bottom:705.345000px;}
.yf1{bottom:709.125000px;}
.y13e{bottom:710.925000px;}
.y49{bottom:718.125000px;}
.y116{bottom:720.105000px;}
.y35{bottom:725.685000px;}
.ye{bottom:725.865000px;}
.y185{bottom:726.045000px;}
.y13d{bottom:729.645000px;}
.yf0{bottom:729.825000px;}
.y5f{bottom:730.185000px;}
.ya4{bottom:734.865000px;}
.y115{bottom:738.645000px;}
.y48{bottom:738.825000px;}
.yc2{bottom:739.725000px;}
.y184{bottom:744.045000px;}
.yd{bottom:746.925000px;}
.y13c{bottom:748.185000px;}
.yef{bottom:750.525000px;}
.ya3{bottom:755.565000px;}
.y34{bottom:756.105000px;}
.y114{bottom:757.365000px;}
.y47{bottom:759.525000px;}
.yc1{bottom:760.425000px;}
.y13b{bottom:766.905000px;}
.y5e{bottom:769.425000px;}
.y183{bottom:771.045000px;}
.yee{bottom:771.225000px;}
.y113{bottom:776.085000px;}
.ya2{bottom:776.265000px;}
.y33{bottom:778.785000px;}
.y46{bottom:780.225000px;}
.y13a{bottom:785.445000px;}
.yc{bottom:788.865000px;}
.y182{bottom:789.045000px;}
.yc0{bottom:790.125000px;}
.yed{bottom:791.925000px;}
.ya1{bottom:796.965000px;}
.y32{bottom:800.925000px;}
.y139{bottom:804.165000px;}
.y112{bottom:805.425000px;}
.yb{bottom:807.405000px;}
.ybf{bottom:810.825000px;}
.yec{bottom:812.625000px;}
.y154{bottom:815.325000px;}
.y181{bottom:816.045000px;}
.ya0{bottom:817.665000px;}
.y31{bottom:821.625000px;}
.y138{bottom:822.705000px;}
.y111{bottom:824.145000px;}
.ya{bottom:830.625000px;}
.ybe{bottom:831.525000px;}
.yeb{bottom:833.325000px;}
.y180{bottom:834.045000px;}
.y137{bottom:841.425000px;}
.y30{bottom:842.325000px;}
.y9{bottom:845.205000px;}
.y9f{bottom:848.445000px;}
.y110{bottom:851.505000px;}
.y17f{bottom:852.045000px;}
.y153{bottom:858.525000px;}
.y136{bottom:859.965000px;}
.ybd{bottom:861.225000px;}
.y2f{bottom:863.025000px;}
.y75{bottom:865.725000px;}
.y8{bottom:865.905000px;}
.y9e{bottom:869.145000px;}
.y17e{bottom:870.045000px;}
.ye2{bottom:874.005000px;}
.y135{bottom:878.685000px;}
.y10f{bottom:880.845000px;}
.ybc{bottom:881.925000px;}
.y2e{bottom:883.725000px;}
.y9d{bottom:889.845000px;}
.y152{bottom:895.425000px;}
.y17d{bottom:897.045000px;}
.y134{bottom:897.225000px;}
.y7{bottom:897.405000px;}
.y10e{bottom:899.565000px;}
.ye1{bottom:901.905000px;}
.y74{bottom:902.625000px;}
.y2d{bottom:904.425000px;}
.y9c{bottom:910.545000px;}
.y17c{bottom:915.045000px;}
.y133{bottom:915.945000px;}
.y151{bottom:916.125000px;}
.yde{bottom:916.140000px;}
.y10d{bottom:918.150000px;}
.y73{bottom:923.370000px;}
.y6{bottom:924.450000px;}
.y2c{bottom:925.170000px;}
.y132{bottom:934.530000px;}
.y10c{bottom:936.870000px;}
.y9b{bottom:941.370000px;}
.y17b{bottom:942.090000px;}
.ybb{bottom:944.070000px;}
.y4{bottom:945.510000px;}
.y2b{bottom:945.870000px;}
.ydc{bottom:947.850000px;}
.y72{bottom:948.210000px;}
.y131{bottom:953.250000px;}
.y10b{bottom:955.410000px;}
.y3{bottom:959.370000px;}
.y17a{bottom:960.090000px;}
.y9a{bottom:962.070000px;}
.y2a{bottom:966.570000px;}
.yba{bottom:969.270000px;}
.y130{bottom:971.790000px;}
.y2{bottom:973.230000px;}
.y10a{bottom:974.130000px;}
.yd8{bottom:975.210000px;}
.y179{bottom:978.090000px;}
.y99{bottom:982.770000px;}
.y1{bottom:984.030000px;}
.y29{bottom:987.270000px;}
.y12f{bottom:990.510000px;}
.y109{bottom:992.670000px;}
.y178{bottom:996.090000px;}
.y98{bottom:1003.470000px;}
.y28{bottom:1007.970000px;}
.y12e{bottom:1009.050000px;}
.y108{bottom:1011.390000px;}
.y177{bottom:1026.870000px;}
.y12d{bottom:1027.770000px;}
.y27{bottom:1028.670000px;}
.y107{bottom:1029.930000px;}
.y84{bottom:1030.470000px;}
.y25{bottom:1060.890000px;}
.y45{bottom:1064.130000px;}
.y24{bottom:1076.370000px;}
.y44{bottom:1077.810000px;}
.h12{height:26.445000px;}
.h1b{height:27.540000px;}
.h11{height:30.320859px;}
.h14{height:30.981000px;}
.h13{height:34.625391px;}
.h10{height:35.025820px;}
.h6{height:35.332031px;}
.h18{height:38.158594px;}
.hf{height:39.585000px;}
.h2{height:47.344922px;}
.h1a{height:47.513672px;}
.h17{height:47.545312px;}
.h1d{height:49.583118px;}
.hd{height:51.519375px;}
.hb{height:52.971680px;}
.h7{height:52.998047px;}
.h19{height:54.421875px;}
.h9{height:58.621992px;}
.h3{height:58.651172px;}
.h5{height:60.226875px;}
.he{height:61.423863px;}
.h15{height:64.745156px;}
.h8{height:64.978594px;}
.hc{height:65.010937px;}
.ha{height:66.757500px;}
.h4{height:78.367500px;}
.h1c{height:285.870000px;}
.h1e{height:285.885000px;}
.h1{height:1263.000000px;}
.h16{height:1263.044910px;}
.h0{height:1263.060000px;}
.w6{width:53.121000px;}
.w5{width:74.685000px;}
.w4{width:85.716000px;}
.w7{width:87.825000px;}
.w3{width:106.920000px;}
.w2{width:157.875000px;}
.w9{width:243.915000px;}
.wb{width:243.930000px;}
.wc{width:318.120000px;}
.wa{width:318.135000px;}
.w8{width:892.957500px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.725000px;}
.x19{left:10.245000px;}
.x1a{left:12.585000px;}
.x16{left:13.710000px;}
.x17{left:15.330000px;}
.x13{left:18.180000px;}
.x1c{left:21.045000px;}
.x1e{left:22.305000px;}
.x22{left:33.330000px;}
.x14{left:42.480000px;}
.x20{left:46.290000px;}
.x24{left:48.990000px;}
.x21{left:54.885000px;}
.x23{left:62.100000px;}
.x1f{left:81.000000px;}
.x5{left:161.670000px;}
.x10{left:170.865000px;}
.x3{left:178.590000px;}
.x2a{left:183.450000px;}
.xd{left:188.670000px;}
.x6{left:190.830000px;}
.x27{left:200.730000px;}
.x25{left:203.070000px;}
.xb{left:205.590000px;}
.xe{left:215.670000px;}
.x4{left:221.070000px;}
.xc{left:232.590000px;}
.x8{left:270.075000px;}
.x9{left:289.335000px;}
.x12{left:329.115000px;}
.xf{left:369.795000px;}
.x29{left:394.635000px;}
.x2b{left:423.615000px;}
.x15{left:436.395000px;}
.x18{left:522.480000px;}
.x1b{left:597.720000px;}
.x1d{left:651.390000px;}
.x7{left:689.550000px;}
.xa{left:714.030000px;}
.x2{left:731.490000px;}
.x1{left:736.890000px;}
.x26{left:797.190000px;}
.x28{left:821.700000px;}
@media print{
.v4{vertical-align:-21.120000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.960000pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.478933pt;}
.lsd{letter-spacing:-0.367467pt;}
.ls10{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.230933pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls16{letter-spacing:-0.141867pt;}
.lse{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls4{letter-spacing:0.016000pt;}
.ls14{letter-spacing:0.019840pt;}
.ls8{letter-spacing:0.047360pt;}
.ls1b{letter-spacing:0.094720pt;}
.lsa{letter-spacing:0.094933pt;}
.ls18{letter-spacing:0.115200pt;}
.ls15{letter-spacing:0.133333pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.161067pt;}
.lsb{letter-spacing:0.232960pt;}
.ls5{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.ls13{letter-spacing:0.736000pt;}
.ls6{letter-spacing:1.440000pt;}
.ls19{letter-spacing:14.959360pt;}
.ls12{letter-spacing:53.712640pt;}
.ls17{letter-spacing:473.920000pt;}
.ls0{letter-spacing:501.440000pt;}
.wsc{word-spacing:-53.120000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.374933pt;}
.ws3{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.096533pt;}
.wsa{word-spacing:-13.049067pt;}
.ws12{word-spacing:-12.320000pt;}
.ws2{word-spacing:-12.016000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws14{word-spacing:-11.808000pt;}
.ws13{word-spacing:-11.680000pt;}
.ws11{word-spacing:-10.881067pt;}
.ws10{word-spacing:-10.241067pt;}
.wse{word-spacing:-9.710720pt;}
.wsf{word-spacing:-9.280000pt;}
.ws0{word-spacing:-8.640000pt;}
.wsd{word-spacing:-8.247253pt;}
.ws7{word-spacing:0.000000pt;}
._13{margin-left:-1.854080pt;}
._1{margin-left:-0.912000pt;}
._0{width:0.944000pt;}
._8{width:1.924480pt;}
._c{width:3.560960pt;}
._b{width:4.760960pt;}
._a{width:6.055680pt;}
._e{width:7.489920pt;}
._7{width:8.464640pt;}
._5{width:9.792000pt;}
._9{width:11.014400pt;}
._4{width:12.147840pt;}
._2{width:13.132800pt;}
._16{width:15.102080pt;}
._f{width:16.307840pt;}
._10{width:17.456000pt;}
._14{width:33.198720pt;}
._15{width:34.314880pt;}
._6{width:63.936000pt;}
._18{width:66.768000pt;}
._17{width:84.240000pt;}
._1a{width:93.744000pt;}
._19{width:95.280000pt;}
._1b{width:96.778667pt;}
._3{width:130.504107pt;}
._12{width:475.546667pt;}
._d{width:500.480000pt;}
._11{width:501.786667pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs7{font-size:45.440000pt;}
.fs1{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.yd9{bottom:2.880000pt;}
.y166{bottom:5.133333pt;}
.ydb{bottom:12.800000pt;}
.y155{bottom:13.280000pt;}
.ydd{bottom:13.440000pt;}
.ye0{bottom:13.626667pt;}
.ydf{bottom:14.266667pt;}
.y165{bottom:20.653333pt;}
.y16a{bottom:21.453333pt;}
.yda{bottom:26.400000pt;}
.y164{bottom:35.373333pt;}
.y169{bottom:36.173333pt;}
.y163{bottom:50.093333pt;}
.y168{bottom:50.893333pt;}
.y162{bottom:64.813333pt;}
.y167{bottom:65.613333pt;}
.y161{bottom:80.333333pt;}
.y160{bottom:95.053333pt;}
.y15f{bottom:109.613333pt;}
.y15e{bottom:125.133333pt;}
.y5{bottom:132.960000pt;}
.y26{bottom:136.960000pt;}
.y15d{bottom:139.880000pt;}
.y15c{bottom:154.600000pt;}
.y15a{bottom:170.106667pt;}
.y159{bottom:184.826667pt;}
.y158{bottom:199.546667pt;}
.y106{bottom:209.466667pt;}
.yb9{bottom:209.946667pt;}
.y43{bottom:212.826667pt;}
.yd7{bottom:213.306667pt;}
.y83{bottom:214.266667pt;}
.yea{bottom:214.586667pt;}
.y12c{bottom:215.386667pt;}
.y5d{bottom:216.506667pt;}
.y23{bottom:216.826667pt;}
.y105{bottom:226.106667pt;}
.yb8{bottom:228.346667pt;}
.y157{bottom:228.986667pt;}
.y19b{bottom:229.306667pt;}
.y42{bottom:231.226667pt;}
.yd6{bottom:231.706667pt;}
.y150{bottom:232.666667pt;}
.ye9{bottom:232.986667pt;}
.y5c{bottom:234.906667pt;}
.y22{bottom:235.226667pt;}
.y176{bottom:236.986667pt;}
.y82{bottom:240.666667pt;}
.y12b{bottom:241.786667pt;}
.y104{bottom:242.586667pt;}
.y156{bottom:243.706667pt;}
.ye8{bottom:244.666667pt;}
.y97{bottom:245.146667pt;}
.y19a{bottom:245.306667pt;}
.yb7{bottom:246.746667pt;}
.y41{bottom:249.626667pt;}
.yd5{bottom:250.106667pt;}
.y14f{bottom:251.066667pt;}
.y5b{bottom:253.306667pt;}
.y175{bottom:255.386667pt;}
.y12a{bottom:258.266667pt;}
.y81{bottom:259.066667pt;}
.y103{bottom:259.226667pt;}
.y199{bottom:261.306667pt;}
.y21{bottom:261.946667pt;}
.y96{bottom:263.546667pt;}
.yb6{bottom:265.146667pt;}
.y40{bottom:268.026667pt;}
.ye7{bottom:271.066667pt;}
.y5a{bottom:271.706667pt;}
.yd4{bottom:272.186667pt;}
.y174{bottom:273.786667pt;}
.y102{bottom:275.706667pt;}
.y198{bottom:277.306667pt;}
.y80{bottom:277.466667pt;}
.y14e{bottom:277.786667pt;}
.y71{bottom:279.706667pt;}
.y95{bottom:281.946667pt;}
.y129{bottom:282.746667pt;}
.yb5{bottom:283.546667pt;}
.y20{bottom:289.146667pt;}
.ye6{bottom:289.466667pt;}
.y59{bottom:290.106667pt;}
.y173{bottom:292.186667pt;}
.y101{bottom:292.346667pt;}
.y3f{bottom:294.426667pt;}
.y7f{bottom:295.866667pt;}
.y70{bottom:298.106667pt;}
.y94{bottom:300.346667pt;}
.y197{bottom:301.306667pt;}
.yb4{bottom:301.946667pt;}
.y14d{bottom:305.786667pt;}
.y1f{bottom:306.106667pt;}
.yd3{bottom:306.906667pt;}
.y58{bottom:308.506667pt;}
.y100{bottom:308.826667pt;}
.y172{bottom:310.586667pt;}
.ye5{bottom:312.666667pt;}
.y3e{bottom:312.826667pt;}
.y7e{bottom:314.266667pt;}
.y6f{bottom:316.506667pt;}
.y196{bottom:317.306667pt;}
.yb3{bottom:320.346667pt;}
.y14c{bottom:324.186667pt;}
.yd2{bottom:325.306667pt;}
.yff{bottom:325.466667pt;}
.y93{bottom:326.746667pt;}
.y57{bottom:326.906667pt;}
.y171{bottom:328.986667pt;}
.y3d{bottom:331.226667pt;}
.y7d{bottom:332.666667pt;}
.y1e{bottom:332.826667pt;}
.y6e{bottom:334.906667pt;}
.y195{bottom:341.306667pt;}
.y128{bottom:341.946667pt;}
.y14b{bottom:342.586667pt;}
.yb2{bottom:342.746667pt;}
.yd1{bottom:343.706667pt;}
.y92{bottom:345.146667pt;}
.y56{bottom:345.306667pt;}
.y170{bottom:347.386667pt;}
.y3c{bottom:349.626667pt;}
.yfe{bottom:350.106667pt;}
.y7c{bottom:351.066667pt;}
.y1d{bottom:351.226667pt;}
.y6d{bottom:353.306667pt;}
.y194{bottom:357.306667pt;}
.y127{bottom:358.426667pt;}
.y14a{bottom:360.986667pt;}
.yd0{bottom:362.106667pt;}
.y91{bottom:363.546667pt;}
.y7b{bottom:369.466667pt;}
.y1c{bottom:369.626667pt;}
.y3b{bottom:371.706667pt;}
.y55{bottom:372.346667pt;}
.y16f{bottom:374.106667pt;}
.y126{bottom:375.066667pt;}
.yfd{bottom:376.186667pt;}
.yb1{bottom:377.146667pt;}
.y149{bottom:379.386667pt;}
.ycf{bottom:380.506667pt;}
.y193{bottom:381.306667pt;}
.y90{bottom:381.946667pt;}
.y7a{bottom:387.866667pt;}
.y1b{bottom:388.026667pt;}
.y6c{bottom:390.106667pt;}
.y125{bottom:391.546667pt;}
.y54{bottom:392.026667pt;}
.yfc{bottom:392.826667pt;}
.yb0{bottom:395.546667pt;}
.y192{bottom:397.346667pt;}
.y148{bottom:397.826667pt;}
.yce{bottom:398.946667pt;}
.y8f{bottom:400.386667pt;}
.y16e{bottom:402.146667pt;}
.y79{bottom:406.306667pt;}
.y1a{bottom:406.466667pt;}
.y124{bottom:408.226667pt;}
.y6b{bottom:408.546667pt;}
.y53{bottom:410.466667pt;}
.y191{bottom:413.346667pt;}
.ycd{bottom:417.346667pt;}
.yfb{bottom:418.466667pt;}
.y8e{bottom:418.786667pt;}
.y147{bottom:419.906667pt;}
.y16d{bottom:420.546667pt;}
.yaf{bottom:421.986667pt;}
.y78{bottom:424.706667pt;}
.y19{bottom:424.866667pt;}
.y6a{bottom:426.946667pt;}
.y52{bottom:428.866667pt;}
.ycc{bottom:435.746667pt;}
.yfa{bottom:436.866667pt;}
.y190{bottom:437.346667pt;}
.y16c{bottom:438.946667pt;}
.yae{bottom:440.386667pt;}
.y8d{bottom:441.186667pt;}
.y123{bottom:441.346667pt;}
.y18{bottom:443.266667pt;}
.y69{bottom:445.346667pt;}
.y77{bottom:447.106667pt;}
.y18f{bottom:453.346667pt;}
.ycb{bottom:454.146667pt;}
.y51{bottom:455.266667pt;}
.y146{bottom:455.906667pt;}
.y16b{bottom:457.346667pt;}
.y122{bottom:457.826667pt;}
.yad{bottom:458.786667pt;}
.yf9{bottom:458.946667pt;}
.y17{bottom:461.986667pt;}
.y18e{bottom:469.346667pt;}
.y15b{bottom:469.973333pt;}
.y3a{bottom:469.986667pt;}
.y68{bottom:471.746667pt;}
.y145{bottom:472.386667pt;}
.y50{bottom:473.666667pt;}
.y121{bottom:474.466667pt;}
.y8c{bottom:475.586667pt;}
.yac{bottom:477.186667pt;}
.y76{bottom:477.826667pt;}
.yca{bottom:481.506667pt;}
.y18d{bottom:485.346667pt;}
.y144{bottom:489.026667pt;}
.y67{bottom:490.146667pt;}
.y120{bottom:490.946667pt;}
.y16{bottom:491.106667pt;}
.y4f{bottom:492.066667pt;}
.yf8{bottom:493.666667pt;}
.y8b{bottom:493.986667pt;}
.yab{bottom:495.586667pt;}
.y39{bottom:497.986667pt;}
.yc9{bottom:499.906667pt;}
.y143{bottom:505.506667pt;}
.y11f{bottom:507.586667pt;}
.y15{bottom:508.386667pt;}
.y66{bottom:508.546667pt;}
.y18c{bottom:509.346667pt;}
.yf7{bottom:512.066667pt;}
.y8a{bottom:512.386667pt;}
.yaa{bottom:513.986667pt;}
.y38{bottom:516.386667pt;}
.yc8{bottom:518.306667pt;}
.y4e{bottom:518.466667pt;}
.y142{bottom:522.146667pt;}
.y11e{bottom:524.066667pt;}
.y18b{bottom:525.346667pt;}
.yf6{bottom:530.466667pt;}
.y89{bottom:530.786667pt;}
.y14{bottom:534.786667pt;}
.y65{bottom:534.946667pt;}
.ya9{bottom:536.386667pt;}
.yc7{bottom:536.546667pt;}
.y4d{bottom:536.866667pt;}
.y11d{bottom:537.986667pt;}
.y141{bottom:538.786667pt;}
.ye4{bottom:539.906667pt;}
.yf5{bottom:548.866667pt;}
.y88{bottom:549.186667pt;}
.y18a{bottom:549.346667pt;}
.y11c{bottom:551.746667pt;}
.y13{bottom:553.186667pt;}
.y64{bottom:553.346667pt;}
.ye3{bottom:561.506667pt;}
.y4c{bottom:563.266667pt;}
.yc6{bottom:563.906667pt;}
.y140{bottom:564.866667pt;}
.y189{bottom:565.346667pt;}
.y11b{bottom:565.506667pt;}
.yf4{bottom:567.266667pt;}
.y87{bottom:567.586667pt;}
.ya8{bottom:570.786667pt;}
.y12{bottom:571.586667pt;}
.y63{bottom:571.746667pt;}
.y11a{bottom:579.266667pt;}
.y4b{bottom:581.506667pt;}
.yc5{bottom:582.306667pt;}
.yf3{bottom:585.506667pt;}
.ya7{bottom:589.186667pt;}
.y188{bottom:589.346667pt;}
.y11{bottom:589.986667pt;}
.y62{bottom:590.146667pt;}
.y119{bottom:593.026667pt;}
.y86{bottom:593.986667pt;}
.yc4{bottom:600.706667pt;}
.y4a{bottom:603.586667pt;}
.y187{bottom:605.373333pt;}
.y13f{bottom:605.853333pt;}
.y118{bottom:606.973333pt;}
.ya6{bottom:607.613333pt;}
.y37{bottom:608.253333pt;}
.y10{bottom:608.413333pt;}
.y61{bottom:608.573333pt;}
.yf2{bottom:611.933333pt;}
.y85{bottom:617.213333pt;}
.y186{bottom:621.373333pt;}
.yc3{bottom:623.133333pt;}
.y117{bottom:623.453333pt;}
.ya5{bottom:626.013333pt;}
.y36{bottom:626.653333pt;}
.yf{bottom:626.813333pt;}
.y60{bottom:626.973333pt;}
.yf1{bottom:630.333333pt;}
.y13e{bottom:631.933333pt;}
.y49{bottom:638.333333pt;}
.y116{bottom:640.093333pt;}
.y35{bottom:645.053333pt;}
.ye{bottom:645.213333pt;}
.y185{bottom:645.373333pt;}
.y13d{bottom:648.573333pt;}
.yf0{bottom:648.733333pt;}
.y5f{bottom:649.053333pt;}
.ya4{bottom:653.213333pt;}
.y115{bottom:656.573333pt;}
.y48{bottom:656.733333pt;}
.yc2{bottom:657.533333pt;}
.y184{bottom:661.373333pt;}
.yd{bottom:663.933333pt;}
.y13c{bottom:665.053333pt;}
.yef{bottom:667.133333pt;}
.ya3{bottom:671.613333pt;}
.y34{bottom:672.093333pt;}
.y114{bottom:673.213333pt;}
.y47{bottom:675.133333pt;}
.yc1{bottom:675.933333pt;}
.y13b{bottom:681.693333pt;}
.y5e{bottom:683.933333pt;}
.y183{bottom:685.373333pt;}
.yee{bottom:685.533333pt;}
.y113{bottom:689.853333pt;}
.ya2{bottom:690.013333pt;}
.y33{bottom:692.253333pt;}
.y46{bottom:693.533333pt;}
.y13a{bottom:698.173333pt;}
.yc{bottom:701.213333pt;}
.y182{bottom:701.373333pt;}
.yc0{bottom:702.333333pt;}
.yed{bottom:703.933333pt;}
.ya1{bottom:708.413333pt;}
.y32{bottom:711.933333pt;}
.y139{bottom:714.813333pt;}
.y112{bottom:715.933333pt;}
.yb{bottom:717.693333pt;}
.ybf{bottom:720.733333pt;}
.yec{bottom:722.333333pt;}
.y154{bottom:724.733333pt;}
.y181{bottom:725.373333pt;}
.ya0{bottom:726.813333pt;}
.y31{bottom:730.333333pt;}
.y138{bottom:731.293333pt;}
.y111{bottom:732.573333pt;}
.ya{bottom:738.333333pt;}
.ybe{bottom:739.133333pt;}
.yeb{bottom:740.733333pt;}
.y180{bottom:741.373333pt;}
.y137{bottom:747.933333pt;}
.y30{bottom:748.733333pt;}
.y9{bottom:751.293333pt;}
.y9f{bottom:754.173333pt;}
.y110{bottom:756.893333pt;}
.y17f{bottom:757.373333pt;}
.y153{bottom:763.133333pt;}
.y136{bottom:764.413333pt;}
.ybd{bottom:765.533333pt;}
.y2f{bottom:767.133333pt;}
.y75{bottom:769.533333pt;}
.y8{bottom:769.693333pt;}
.y9e{bottom:772.573333pt;}
.y17e{bottom:773.373333pt;}
.ye2{bottom:776.893333pt;}
.y135{bottom:781.053333pt;}
.y10f{bottom:782.973333pt;}
.ybc{bottom:783.933333pt;}
.y2e{bottom:785.533333pt;}
.y9d{bottom:790.973333pt;}
.y152{bottom:795.933333pt;}
.y17d{bottom:797.373333pt;}
.y134{bottom:797.533333pt;}
.y7{bottom:797.693333pt;}
.y10e{bottom:799.613333pt;}
.ye1{bottom:801.693333pt;}
.y74{bottom:802.333333pt;}
.y2d{bottom:803.933333pt;}
.y9c{bottom:809.373333pt;}
.y17c{bottom:813.373333pt;}
.y133{bottom:814.173333pt;}
.y151{bottom:814.333333pt;}
.yde{bottom:814.346667pt;}
.y10d{bottom:816.133333pt;}
.y73{bottom:820.773333pt;}
.y6{bottom:821.733333pt;}
.y2c{bottom:822.373333pt;}
.y132{bottom:830.693333pt;}
.y10c{bottom:832.773333pt;}
.y9b{bottom:836.773333pt;}
.y17b{bottom:837.413333pt;}
.ybb{bottom:839.173333pt;}
.y4{bottom:840.453333pt;}
.y2b{bottom:840.773333pt;}
.ydc{bottom:842.533333pt;}
.y72{bottom:842.853333pt;}
.y131{bottom:847.333333pt;}
.y10b{bottom:849.253333pt;}
.y3{bottom:852.773333pt;}
.y17a{bottom:853.413333pt;}
.y9a{bottom:855.173333pt;}
.y2a{bottom:859.173333pt;}
.yba{bottom:861.573333pt;}
.y130{bottom:863.813333pt;}
.y2{bottom:865.093333pt;}
.y10a{bottom:865.893333pt;}
.yd8{bottom:866.853333pt;}
.y179{bottom:869.413333pt;}
.y99{bottom:873.573333pt;}
.y1{bottom:874.693333pt;}
.y29{bottom:877.573333pt;}
.y12f{bottom:880.453333pt;}
.y109{bottom:882.373333pt;}
.y178{bottom:885.413333pt;}
.y98{bottom:891.973333pt;}
.y28{bottom:895.973333pt;}
.y12e{bottom:896.933333pt;}
.y108{bottom:899.013333pt;}
.y177{bottom:912.773333pt;}
.y12d{bottom:913.573333pt;}
.y27{bottom:914.373333pt;}
.y107{bottom:915.493333pt;}
.y84{bottom:915.973333pt;}
.y25{bottom:943.013333pt;}
.y45{bottom:945.893333pt;}
.y24{bottom:956.773333pt;}
.y44{bottom:958.053333pt;}
.h12{height:23.506667pt;}
.h1b{height:24.480000pt;}
.h11{height:26.951875pt;}
.h14{height:27.538667pt;}
.h13{height:30.778125pt;}
.h10{height:31.134062pt;}
.h6{height:31.406250pt;}
.h18{height:33.918750pt;}
.hf{height:35.186667pt;}
.h2{height:42.084375pt;}
.h1a{height:42.234375pt;}
.h17{height:42.262500pt;}
.h1d{height:44.073883pt;}
.hd{height:45.795000pt;}
.hb{height:47.085938pt;}
.h7{height:47.109375pt;}
.h19{height:48.375000pt;}
.h9{height:52.108438pt;}
.h3{height:52.134375pt;}
.h5{height:53.535000pt;}
.he{height:54.598989pt;}
.h15{height:57.551250pt;}
.h8{height:57.758750pt;}
.hc{height:57.787500pt;}
.ha{height:59.340000pt;}
.h4{height:69.660000pt;}
.h1c{height:254.106667pt;}
.h1e{height:254.120000pt;}
.h1{height:1122.666667pt;}
.h16{height:1122.706587pt;}
.h0{height:1122.720000pt;}
.w6{width:47.218667pt;}
.w5{width:66.386667pt;}
.w4{width:76.192000pt;}
.w7{width:78.066667pt;}
.w3{width:95.040000pt;}
.w2{width:140.333333pt;}
.w9{width:216.813333pt;}
.wb{width:216.826667pt;}
.wc{width:282.773333pt;}
.wa{width:282.786667pt;}
.w8{width:793.740000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.866667pt;}
.x19{left:9.106667pt;}
.x1a{left:11.186667pt;}
.x16{left:12.186667pt;}
.x17{left:13.626667pt;}
.x13{left:16.160000pt;}
.x1c{left:18.706667pt;}
.x1e{left:19.826667pt;}
.x22{left:29.626667pt;}
.x14{left:37.760000pt;}
.x20{left:41.146667pt;}
.x24{left:43.546667pt;}
.x21{left:48.786667pt;}
.x23{left:55.200000pt;}
.x1f{left:72.000000pt;}
.x5{left:143.706667pt;}
.x10{left:151.880000pt;}
.x3{left:158.746667pt;}
.x2a{left:163.066667pt;}
.xd{left:167.706667pt;}
.x6{left:169.626667pt;}
.x27{left:178.426667pt;}
.x25{left:180.506667pt;}
.xb{left:182.746667pt;}
.xe{left:191.706667pt;}
.x4{left:196.506667pt;}
.xc{left:206.746667pt;}
.x8{left:240.066667pt;}
.x9{left:257.186667pt;}
.x12{left:292.546667pt;}
.xf{left:328.706667pt;}
.x29{left:350.786667pt;}
.x2b{left:376.546667pt;}
.x15{left:387.906667pt;}
.x18{left:464.426667pt;}
.x1b{left:531.306667pt;}
.x1d{left:579.013333pt;}
.x7{left:612.933333pt;}
.xa{left:634.693333pt;}
.x2{left:650.213333pt;}
.x1{left:655.013333pt;}
.x26{left:708.613333pt;}
.x28{left:730.400000pt;}
}




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