
    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_1ed5f2101c6b85f0a91a5b81.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d21b9123109e7f0e026a69a2.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_426a1a1aee2b7970f1a236d0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6dc4833a41871edfc7816c28.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_28a0445060e1679ef4de12de.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4ce7b47609f1738e8b950c7b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_30cad950b051f5b28cfb6999.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.660000px;}
.v3{vertical-align:-18.720000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.720000px;}
.v1{vertical-align:24.480000px;}
.ls13{letter-spacing:-1.422000px;}
.ls8{letter-spacing:-0.972000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.498000px;}
.ls7{letter-spacing:-0.486600px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.020160px;}
.ls11{letter-spacing:0.423360px;}
.lsf{letter-spacing:0.466800px;}
.ls0{letter-spacing:0.498240px;}
.lsd{letter-spacing:0.648000px;}
.ls1{letter-spacing:0.720000px;}
.lsc{letter-spacing:0.864000px;}
.lse{letter-spacing:62.064000px;}
.ls10{letter-spacing:71.026560px;}
.lsb{letter-spacing:71.038560px;}
.ls12{letter-spacing:75.197280px;}
.lsa{letter-spacing:79.678560px;}
.ls9{letter-spacing:81.250560px;}
.ls6{letter-spacing:82.690560px;}
.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;}
}
.ws8{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.633400px;}
.ws2{word-spacing:-13.182000px;}
.ws3{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
.ws6{word-spacing:187.459200px;}
.ws7{word-spacing:264.588000px;}
._7{margin-left:-4.596480px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._b{width:3.425760px;}
._9{width:4.775520px;}
._a{width:5.866560px;}
._8{width:6.894720px;}
._e{width:8.622720px;}
._d{width:9.797760px;}
._10{width:11.672640px;}
._f{width:13.366080px;}
._12{width:16.243200px;}
._11{width:17.478720px;}
._17{width:18.852480px;}
._13{width:203.216640px;}
._14{width:205.372800px;}
._15{width:208.101120px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._c{width:1303.056000px;}
._3{width:1591.176000px;}
._16{width:1843.356000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc8{color:rgb(64,64,64);}
.fc7{color:rgb(89,89,89);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs6{font-size:30.240000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:47.520000px;}
.fs9{font-size:47.664000px;}
.fs2{font-size:54.720000px;}
.fsa{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs8{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:108.000000px;}
.y100{bottom:-12.240000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y33{bottom:3.240000px;}
.yff{bottom:5.040000px;}
.y8a{bottom:5.760000px;}
.y8f{bottom:5.790000px;}
.yc7{bottom:5.805000px;}
.y8c{bottom:6.120000px;}
.yfb{bottom:6.840000px;}
.y135{bottom:7.200000px;}
.y130{bottom:7.560000px;}
.y12d{bottom:8.280000px;}
.yc3{bottom:8.685000px;}
.yfd{bottom:9.360000px;}
.y12f{bottom:11.160000px;}
.ycb{bottom:11.565000px;}
.ya6{bottom:15.810000px;}
.y12b{bottom:16.920000px;}
.y32{bottom:20.520000px;}
.yc6{bottom:23.085000px;}
.yc2{bottom:25.965000px;}
.y12c{bottom:28.080000px;}
.y12e{bottom:28.440000px;}
.yca{bottom:28.845000px;}
.y31{bottom:37.800000px;}
.yc5{bottom:40.365000px;}
.yc1{bottom:43.245000px;}
.ye{bottom:43.560000px;}
.ya0{bottom:45.435000px;}
.yc9{bottom:45.765000px;}
.y44{bottom:55.800000px;}
.y97{bottom:59.295000px;}
.y30{bottom:64.125000px;}
.yc{bottom:68.400000px;}
.y98{bottom:81.720000px;}
.y2f{bottom:90.405000px;}
.y43{bottom:91.080000px;}
.ya{bottom:94.716000px;}
.y99{bottom:104.145000px;}
.y42{bottom:108.360000px;}
.y41{bottom:125.310000px;}
.y2e{bottom:125.325000px;}
.y9a{bottom:126.570000px;}
.ya4{bottom:126.750000px;}
.yf9{bottom:137.556000px;}
.ybf{bottom:137.916000px;}
.y61{bottom:138.636000px;}
.y40{bottom:142.590000px;}
.y2d{bottom:142.605000px;}
.y9b{bottom:149.010000px;}
.ya3{bottom:149.190000px;}
.y1c{bottom:155.550000px;}
.y60{bottom:158.790000px;}
.y129{bottom:159.150000px;}
.y3f{bottom:159.870000px;}
.y2c{bottom:159.885000px;}
.yf8{bottom:160.230000px;}
.y155{bottom:168.510000px;}
.y9c{bottom:171.435000px;}
.ya2{bottom:171.615000px;}
.y3e{bottom:177.150000px;}
.y2b{bottom:177.195000px;}
.y128{bottom:178.950000px;}
.y7a{bottom:181.470000px;}
.y154{bottom:188.310000px;}
.yc0{bottom:191.190000px;}
.yf7{bottom:191.910000px;}
.yc8{bottom:192.630000px;}
.y9d{bottom:193.860000px;}
.y3d{bottom:194.430000px;}
.y2a{bottom:194.475000px;}
.ybe{bottom:195.150000px;}
.y5f{bottom:196.590000px;}
.yc4{bottom:196.950000px;}
.y127{bottom:198.795000px;}
.y95{bottom:204.195000px;}
.y153{bottom:208.155000px;}
.y29{bottom:211.755000px;}
.ybd{bottom:212.475000px;}
.y9e{bottom:216.285000px;}
.y5e{bottom:216.435000px;}
.y79{bottom:216.795000px;}
.y126{bottom:218.595000px;}
.y94{bottom:221.115000px;}
.y96{bottom:221.400000px;}
.y28{bottom:229.035000px;}
.y3c{bottom:229.710000px;}
.ybc{bottom:229.755000px;}
.yf6{bottom:231.915000px;}
.y5d{bottom:236.235000px;}
.y78{bottom:238.395000px;}
.y9f{bottom:238.710000px;}
.y27{bottom:246.315000px;}
.ybb{bottom:246.675000px;}
.y3b{bottom:247.035000px;}
.y152{bottom:249.555000px;}
.yf5{bottom:251.715000px;}
.y5c{bottom:256.035000px;}
.y125{bottom:258.195000px;}
.ya1{bottom:261.330000px;}
.yba{bottom:263.955000px;}
.y3a{bottom:264.315000px;}
.y151{bottom:269.355000px;}
.yf4{bottom:271.515000px;}
.y77{bottom:273.675000px;}
.y5b{bottom:275.835000px;}
.y124{bottom:277.995000px;}
.y26{bottom:281.595000px;}
.yb9{bottom:283.755000px;}
.y150{bottom:290.595000px;}
.yf3{bottom:291.315000px;}
.y5a{bottom:295.635000px;}
.y123{bottom:297.795000px;}
.y39{bottom:298.875000px;}
.y25{bottom:298.920000px;}
.ya5{bottom:299.055000px;}
.y76{bottom:302.475000px;}
.y14f{bottom:310.395000px;}
.yf2{bottom:312.915000px;}
.y24{bottom:316.200000px;}
.y122{bottom:317.595000px;}
.yb8{bottom:319.035000px;}
.y75{bottom:322.275000px;}
.y14e{bottom:330.225000px;}
.y59{bottom:333.465000px;}
.y121{bottom:339.585000px;}
.y74{bottom:342.465000px;}
.yb7{bottom:348.585000px;}
.y14d{bottom:350.025000px;}
.yf1{bottom:350.745000px;}
.y23{bottom:351.120000px;}
.y58{bottom:353.265000px;}
.y22{bottom:368.400000px;}
.y14c{bottom:369.825000px;}
.yfc{bottom:370.185000px;}
.yf0{bottom:370.545000px;}
.yfe{bottom:370.905000px;}
.y57{bottom:373.065000px;}
.y120{bottom:377.385000px;}
.yb6{bottom:377.745000px;}
.y73{bottom:380.265000px;}
.y21{bottom:385.680000px;}
.yef{bottom:390.705000px;}
.y14b{bottom:391.065000px;}
.y56{bottom:393.225000px;}
.y11f{bottom:397.185000px;}
.y72{bottom:400.065000px;}
.yb5{bottom:406.905000px;}
.yee{bottom:410.505000px;}
.y14a{bottom:410.865000px;}
.y55{bottom:413.025000px;}
.y71{bottom:416.625000px;}
.y11e{bottom:416.985000px;}
.y20{bottom:420.990000px;}
.yed{bottom:427.785000px;}
.y149{bottom:430.665000px;}
.yb4{bottom:436.065000px;}
.y11d{bottom:436.785000px;}
.y1f{bottom:438.270000px;}
.yec{bottom:445.065000px;}
.y148{bottom:450.510000px;}
.y54{bottom:450.870000px;}
.y1e{bottom:455.550000px;}
.y11c{bottom:458.430000px;}
.yeb{bottom:462.030000px;}
.yb3{bottom:465.630000px;}
.y53{bottom:470.670000px;}
.y147{bottom:471.750000px;}
.yea{bottom:479.310000px;}
.yb2{bottom:482.910000px;}
.y52{bottom:490.470000px;}
.y1d{bottom:490.830000px;}
.y146{bottom:491.910000px;}
.ye9{bottom:496.590000px;}
.yb1{bottom:504.510000px;}
.y51{bottom:510.270000px;}
.y145{bottom:511.710000px;}
.ye8{bottom:513.870000px;}
.y11b{bottom:519.270000px;}
.y50{bottom:530.070000px;}
.ye7{bottom:531.150000px;}
.yb0{bottom:533.310000px;}
.y11a{bottom:541.950000px;}
.ye6{bottom:548.430000px;}
.y4f{bottom:549.870000px;}
.y119{bottom:564.630000px;}
.ye5{bottom:565.710000px;}
.y93{bottom:568.590000px;}
.y144{bottom:579.780000px;}
.y118{bottom:587.340000px;}
.y4e{bottom:587.700000px;}
.y143{bottom:599.580000px;}
.ye4{bottom:600.660000px;}
.y92{bottom:606.780000px;}
.y4d{bottom:607.500000px;}
.y117{bottom:610.020000px;}
.y142{bottom:619.380000px;}
.ye3{bottom:622.260000px;}
.y4c{bottom:627.660000px;}
.y116{bottom:632.700000px;}
.y141{bottom:639.180000px;}
.y91{bottom:644.580000px;}
.y4b{bottom:647.460000px;}
.y115{bottom:655.380000px;}
.ye2{bottom:657.540000px;}
.y140{bottom:658.980000px;}
.y90{bottom:664.380000px;}
.y4a{bottom:667.260000px;}
.y13f{bottom:678.780000px;}
.y1b{bottom:683.820000px;}
.ye1{bottom:689.220000px;}
.y8e{bottom:697.140000px;}
.y13e{bottom:698.580000px;}
.y49{bottom:705.090000px;}
.y1a{bottom:707.250000px;}
.ye0{bottom:709.050000px;}
.y114{bottom:709.410000px;}
.y8d{bottom:717.690000px;}
.y13d{bottom:718.410000px;}
.y19{bottom:723.090000px;}
.y48{bottom:724.890000px;}
.ydf{bottom:729.210000px;}
.y113{bottom:732.090000px;}
.y8b{bottom:738.210000px;}
.y18{bottom:738.930000px;}
.y47{bottom:744.690000px;}
.yde{bottom:749.010000px;}
.y112{bottom:751.890000px;}
.y17{bottom:754.770000px;}
.y13c{bottom:756.570000px;}
.y89{bottom:759.090000px;}
.ydd{bottom:768.810000px;}
.y16{bottom:770.610000px;}
.y111{bottom:774.570000px;}
.y13b{bottom:776.370000px;}
.y88{bottom:785.370000px;}
.y46{bottom:788.610000px;}
.y15{bottom:789.330000px;}
.ydc{bottom:790.410000px;}
.y13a{bottom:796.170000px;}
.y110{bottom:797.250000px;}
.y14{bottom:806.610000px;}
.y139{bottom:815.970000px;}
.y45{bottom:816.690000px;}
.y87{bottom:817.050000px;}
.y70{bottom:820.650000px;}
.y10f{bottom:821.730000px;}
.y13{bottom:823.890000px;}
.ydb{bottom:834.015000px;}
.y138{bottom:835.815000px;}
.y86{bottom:836.895000px;}
.y6f{bottom:840.495000px;}
.y12{bottom:841.215000px;}
.y38{bottom:841.575000px;}
.yda{bottom:855.615000px;}
.y85{bottom:857.055000px;}
.y11{bottom:860.295000px;}
.y6e{bottom:860.655000px;}
.y10e{bottom:864.615000px;}
.y84{bottom:878.655000px;}
.y137{bottom:879.375000px;}
.y6d{bottom:880.455000px;}
.yd9{bottom:883.335000px;}
.y10d{bottom:884.415000px;}
.yaf{bottom:886.575000px;}
.y10{bottom:888.015000px;}
.yfa{bottom:892.335000px;}
.yd8{bottom:899.535000px;}
.y6c{bottom:900.255000px;}
.y10c{bottom:904.215000px;}
.y136{bottom:906.015000px;}
.yf{bottom:915.375000px;}
.y83{bottom:916.455000px;}
.y6b{bottom:920.055000px;}
.y10b{bottom:924.015000px;}
.yae{bottom:924.375000px;}
.yd7{bottom:931.215000px;}
.y82{bottom:936.255000px;}
.y134{bottom:938.775000px;}
.y6a{bottom:939.855000px;}
.y9{bottom:941.295000px;}
.y10a{bottom:943.815000px;}
.yad{bottom:944.175000px;}
.yd6{bottom:947.055000px;}
.y81{bottom:958.245000px;}
.y8{bottom:958.605000px;}
.y133{bottom:960.765000px;}
.y69{bottom:961.485000px;}
.yd5{bottom:962.925000px;}
.y109{bottom:963.645000px;}
.y7{bottom:972.645000px;}
.yd4{bottom:978.765000px;}
.yac{bottom:979.485000px;}
.y108{bottom:983.445000px;}
.yd3{bottom:994.605000px;}
.y80{bottom:996.045000px;}
.y68{bottom:996.405000px;}
.y107{bottom:1003.245000px;}
.y132{bottom:1003.965000px;}
.yd2{bottom:1010.445000px;}
.yab{bottom:1014.405000px;}
.y7f{bottom:1015.845000px;}
.y67{bottom:1025.205000px;}
.y106{bottom:1025.925000px;}
.yd1{bottom:1026.285000px;}
.y6{bottom:1027.365000px;}
.y7e{bottom:1037.445000px;}
.yd0{bottom:1042.125000px;}
.yaa{bottom:1043.205000px;}
.y66{bottom:1045.005000px;}
.y131{bottom:1046.805000px;}
.y105{bottom:1048.605000px;}
.y5{bottom:1052.205000px;}
.ycf{bottom:1057.965000px;}
.y15a{bottom:1061.925000px;}
.ya9{bottom:1063.005000px;}
.y7d{bottom:1063.725000px;}
.y65{bottom:1064.805000px;}
.y104{bottom:1071.285000px;}
.y4{bottom:1072.725000px;}
.yce{bottom:1073.805000px;}
.y159{bottom:1081.770000px;}
.ya8{bottom:1082.850000px;}
.y64{bottom:1085.010000px;}
.y7c{bottom:1085.370000px;}
.y12a{bottom:1089.690000px;}
.ycd{bottom:1090.050000px;}
.y3{bottom:1094.010000px;}
.y103{bottom:1094.370000px;}
.y158{bottom:1101.570000px;}
.ya7{bottom:1103.010000px;}
.ycc{bottom:1105.890000px;}
.y2{bottom:1114.530000px;}
.y102{bottom:1117.050000px;}
.y7b{bottom:1120.650000px;}
.y157{bottom:1121.370000px;}
.y63{bottom:1122.810000px;}
.y1{bottom:1131.450000px;}
.y101{bottom:1139.730000px;}
.y156{bottom:1141.170000px;}
.y62{bottom:1142.610000px;}
.y37{bottom:1166.370000px;}
.y36{bottom:1180.410000px;}
.y35{bottom:1201.290000px;}
.y34{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h20{height:19.080000px;}
.h14{height:19.800000px;}
.h16{height:19.836000px;}
.h15{height:20.160000px;}
.h1e{height:20.880000px;}
.h24{height:21.276000px;}
.h1f{height:23.400000px;}
.hd{height:24.924375px;}
.h12{height:34.363828px;}
.h18{height:34.467961px;}
.h7{height:39.570469px;}
.h19{height:41.653125px;}
.h21{height:42.120000px;}
.h22{height:42.156000px;}
.h23{height:42.480000px;}
.h4{height:43.735781px;}
.h13{height:44.031094px;}
.h5{height:45.101250px;}
.h10{height:47.901094px;}
.h25{height:48.224531px;}
.h11{height:49.848750px;}
.h1d{height:52.417969px;}
.h2{height:53.717344px;}
.h1b{height:54.396000px;}
.h1a{height:57.276000px;}
.hb{height:59.012578px;}
.hc{height:59.192578px;}
.h1c{height:59.796000px;}
.h3{height:63.949219px;}
.h9{height:85.691953px;}
.ha{height:95.923828px;}
.hf{height:312.915000px;}
.h17{height:324.000000px;}
.he{height:522.870000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:84.276000px;}
.w1a{width:84.996000px;}
.w13{width:87.876000px;}
.w19{width:88.596000px;}
.w12{width:90.036000px;}
.w18{width:90.396000px;}
.w16{width:93.636000px;}
.w15{width:93.996000px;}
.w1b{width:94.716000px;}
.w9{width:95.076000px;}
.w8{width:115.992000px;}
.wa{width:116.316000px;}
.w17{width:140.472000px;}
.wd{width:187.275000px;}
.we{width:192.675000px;}
.wc{width:212.505000px;}
.w11{width:250.305000px;}
.w10{width:258.945000px;}
.wf{width:313.305000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.wb{width:540.000000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x15{left:7.560000px;}
.x9{left:8.640000px;}
.x27{left:11.160000px;}
.x21{left:12.240000px;}
.x38{left:14.040000px;}
.x23{left:15.120000px;}
.x35{left:19.110000px;}
.x20{left:20.520000px;}
.x37{left:23.445000px;}
.x2c{left:25.920000px;}
.x31{left:27.390000px;}
.x39{left:29.190000px;}
.x18{left:30.672000px;}
.x26{left:34.920000px;}
.x17{left:36.684000px;}
.x3a{left:38.565000px;}
.x3f{left:39.630000px;}
.x3e{left:42.525000px;}
.x3b{left:43.590000px;}
.x24{left:49.350000px;}
.x40{left:51.510000px;}
.x3d{left:55.110000px;}
.x3c{left:59.070000px;}
.x28{left:71.310000px;}
.x19{left:77.115000px;}
.x1a{left:99.435000px;}
.x2e{left:105.150000px;}
.x7{left:106.235987px;}
.x41{left:117.035987px;}
.xb{left:123.515987px;}
.x12{left:133.271987px;}
.xc{left:140.111987px;}
.x1d{left:149.760000px;}
.x29{left:160.274987px;}
.x11{left:169.994987px;}
.x2a{left:175.034987px;}
.xd{left:180.794987px;}
.x30{left:197.715000px;}
.x2f{left:202.034987px;}
.x13{left:223.665000px;}
.x2b{left:233.025000px;}
.x1e{left:245.445000px;}
.x2{left:254.264987px;}
.x1b{left:262.695000px;}
.x6{left:274.064987px;}
.x32{left:286.305000px;}
.xa{left:304.350000px;}
.x14{left:319.470000px;}
.xf{left:339.984000px;}
.x22{left:357.990000px;}
.x5{left:362.669987px;}
.x33{left:371.310000px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x1c{left:425.985000px;}
.x2d{left:433.980000px;}
.x8{left:446.579987px;}
.xe{left:447.660000px;}
.x34{left:466.020000px;}
.x36{left:560.370000px;}
.x25{left:592.455000px;}
.x16{left:646.454987px;}
.x10{left:738.644987px;}
.x1f{left:782.969987px;}
.x1{left:786.929987px;}
@media print{
.v2{vertical-align:-21.920000pt;}
.v3{vertical-align:-16.640000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.640000pt;}
.v1{vertical-align:21.760000pt;}
.ls13{letter-spacing:-1.264000pt;}
.ls8{letter-spacing:-0.864000pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.442667pt;}
.ls7{letter-spacing:-0.432533pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.017920pt;}
.ls11{letter-spacing:0.376320pt;}
.lsf{letter-spacing:0.414933pt;}
.ls0{letter-spacing:0.442880pt;}
.lsd{letter-spacing:0.576000pt;}
.ls1{letter-spacing:0.640000pt;}
.lsc{letter-spacing:0.768000pt;}
.lse{letter-spacing:55.168000pt;}
.ls10{letter-spacing:63.134720pt;}
.lsb{letter-spacing:63.145387pt;}
.ls12{letter-spacing:66.842027pt;}
.lsa{letter-spacing:70.825387pt;}
.ls9{letter-spacing:72.222720pt;}
.ls6{letter-spacing:73.502720pt;}
.ws8{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.ws5{word-spacing:-13.007467pt;}
.ws2{word-spacing:-11.717333pt;}
.ws3{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
.ws6{word-spacing:166.630400pt;}
.ws7{word-spacing:235.189333pt;}
._7{margin-left:-4.085760pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._b{width:3.045120pt;}
._9{width:4.244907pt;}
._a{width:5.214720pt;}
._8{width:6.128640pt;}
._e{width:7.664640pt;}
._d{width:8.709120pt;}
._10{width:10.375680pt;}
._f{width:11.880960pt;}
._12{width:14.438400pt;}
._11{width:15.536640pt;}
._17{width:16.757760pt;}
._13{width:180.637013pt;}
._14{width:182.553600pt;}
._15{width:184.978773pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._c{width:1158.272000pt;}
._3{width:1414.378667pt;}
._16{width:1638.538667pt;}
.fs6{font-size:26.880000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:42.240000pt;}
.fs9{font-size:42.368000pt;}
.fs2{font-size:48.640000pt;}
.fsa{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs8{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:96.000000pt;}
.y100{bottom:-10.880000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y33{bottom:2.880000pt;}
.yff{bottom:4.480000pt;}
.y8a{bottom:5.120000pt;}
.y8f{bottom:5.146667pt;}
.yc7{bottom:5.160000pt;}
.y8c{bottom:5.440000pt;}
.yfb{bottom:6.080000pt;}
.y135{bottom:6.400000pt;}
.y130{bottom:6.720000pt;}
.y12d{bottom:7.360000pt;}
.yc3{bottom:7.720000pt;}
.yfd{bottom:8.320000pt;}
.y12f{bottom:9.920000pt;}
.ycb{bottom:10.280000pt;}
.ya6{bottom:14.053333pt;}
.y12b{bottom:15.040000pt;}
.y32{bottom:18.240000pt;}
.yc6{bottom:20.520000pt;}
.yc2{bottom:23.080000pt;}
.y12c{bottom:24.960000pt;}
.y12e{bottom:25.280000pt;}
.yca{bottom:25.640000pt;}
.y31{bottom:33.600000pt;}
.yc5{bottom:35.880000pt;}
.yc1{bottom:38.440000pt;}
.ye{bottom:38.720000pt;}
.ya0{bottom:40.386667pt;}
.yc9{bottom:40.680000pt;}
.y44{bottom:49.600000pt;}
.y97{bottom:52.706667pt;}
.y30{bottom:57.000000pt;}
.yc{bottom:60.800000pt;}
.y98{bottom:72.640000pt;}
.y2f{bottom:80.360000pt;}
.y43{bottom:80.960000pt;}
.ya{bottom:84.192000pt;}
.y99{bottom:92.573333pt;}
.y42{bottom:96.320000pt;}
.y41{bottom:111.386667pt;}
.y2e{bottom:111.400000pt;}
.y9a{bottom:112.506667pt;}
.ya4{bottom:112.666667pt;}
.yf9{bottom:122.272000pt;}
.ybf{bottom:122.592000pt;}
.y61{bottom:123.232000pt;}
.y40{bottom:126.746667pt;}
.y2d{bottom:126.760000pt;}
.y9b{bottom:132.453333pt;}
.ya3{bottom:132.613333pt;}
.y1c{bottom:138.266667pt;}
.y60{bottom:141.146667pt;}
.y129{bottom:141.466667pt;}
.y3f{bottom:142.106667pt;}
.y2c{bottom:142.120000pt;}
.yf8{bottom:142.426667pt;}
.y155{bottom:149.786667pt;}
.y9c{bottom:152.386667pt;}
.ya2{bottom:152.546667pt;}
.y3e{bottom:157.466667pt;}
.y2b{bottom:157.506667pt;}
.y128{bottom:159.066667pt;}
.y7a{bottom:161.306667pt;}
.y154{bottom:167.386667pt;}
.yc0{bottom:169.946667pt;}
.yf7{bottom:170.586667pt;}
.yc8{bottom:171.226667pt;}
.y9d{bottom:172.320000pt;}
.y3d{bottom:172.826667pt;}
.y2a{bottom:172.866667pt;}
.ybe{bottom:173.466667pt;}
.y5f{bottom:174.746667pt;}
.yc4{bottom:175.066667pt;}
.y127{bottom:176.706667pt;}
.y95{bottom:181.506667pt;}
.y153{bottom:185.026667pt;}
.y29{bottom:188.226667pt;}
.ybd{bottom:188.866667pt;}
.y9e{bottom:192.253333pt;}
.y5e{bottom:192.386667pt;}
.y79{bottom:192.706667pt;}
.y126{bottom:194.306667pt;}
.y94{bottom:196.546667pt;}
.y96{bottom:196.800000pt;}
.y28{bottom:203.586667pt;}
.y3c{bottom:204.186667pt;}
.ybc{bottom:204.226667pt;}
.yf6{bottom:206.146667pt;}
.y5d{bottom:209.986667pt;}
.y78{bottom:211.906667pt;}
.y9f{bottom:212.186667pt;}
.y27{bottom:218.946667pt;}
.ybb{bottom:219.266667pt;}
.y3b{bottom:219.586667pt;}
.y152{bottom:221.826667pt;}
.yf5{bottom:223.746667pt;}
.y5c{bottom:227.586667pt;}
.y125{bottom:229.506667pt;}
.ya1{bottom:232.293333pt;}
.yba{bottom:234.626667pt;}
.y3a{bottom:234.946667pt;}
.y151{bottom:239.426667pt;}
.yf4{bottom:241.346667pt;}
.y77{bottom:243.266667pt;}
.y5b{bottom:245.186667pt;}
.y124{bottom:247.106667pt;}
.y26{bottom:250.306667pt;}
.yb9{bottom:252.226667pt;}
.y150{bottom:258.306667pt;}
.yf3{bottom:258.946667pt;}
.y5a{bottom:262.786667pt;}
.y123{bottom:264.706667pt;}
.y39{bottom:265.666667pt;}
.y25{bottom:265.706667pt;}
.ya5{bottom:265.826667pt;}
.y76{bottom:268.866667pt;}
.y14f{bottom:275.906667pt;}
.yf2{bottom:278.146667pt;}
.y24{bottom:281.066667pt;}
.y122{bottom:282.306667pt;}
.yb8{bottom:283.586667pt;}
.y75{bottom:286.466667pt;}
.y14e{bottom:293.533333pt;}
.y59{bottom:296.413333pt;}
.y121{bottom:301.853333pt;}
.y74{bottom:304.413333pt;}
.yb7{bottom:309.853333pt;}
.y14d{bottom:311.133333pt;}
.yf1{bottom:311.773333pt;}
.y23{bottom:312.106667pt;}
.y58{bottom:314.013333pt;}
.y22{bottom:327.466667pt;}
.y14c{bottom:328.733333pt;}
.yfc{bottom:329.053333pt;}
.yf0{bottom:329.373333pt;}
.yfe{bottom:329.693333pt;}
.y57{bottom:331.613333pt;}
.y120{bottom:335.453333pt;}
.yb6{bottom:335.773333pt;}
.y73{bottom:338.013333pt;}
.y21{bottom:342.826667pt;}
.yef{bottom:347.293333pt;}
.y14b{bottom:347.613333pt;}
.y56{bottom:349.533333pt;}
.y11f{bottom:353.053333pt;}
.y72{bottom:355.613333pt;}
.yb5{bottom:361.693333pt;}
.yee{bottom:364.893333pt;}
.y14a{bottom:365.213333pt;}
.y55{bottom:367.133333pt;}
.y71{bottom:370.333333pt;}
.y11e{bottom:370.653333pt;}
.y20{bottom:374.213333pt;}
.yed{bottom:380.253333pt;}
.y149{bottom:382.813333pt;}
.yb4{bottom:387.613333pt;}
.y11d{bottom:388.253333pt;}
.y1f{bottom:389.573333pt;}
.yec{bottom:395.613333pt;}
.y148{bottom:400.453333pt;}
.y54{bottom:400.773333pt;}
.y1e{bottom:404.933333pt;}
.y11c{bottom:407.493333pt;}
.yeb{bottom:410.693333pt;}
.yb3{bottom:413.893333pt;}
.y53{bottom:418.373333pt;}
.y147{bottom:419.333333pt;}
.yea{bottom:426.053333pt;}
.yb2{bottom:429.253333pt;}
.y52{bottom:435.973333pt;}
.y1d{bottom:436.293333pt;}
.y146{bottom:437.253333pt;}
.ye9{bottom:441.413333pt;}
.yb1{bottom:448.453333pt;}
.y51{bottom:453.573333pt;}
.y145{bottom:454.853333pt;}
.ye8{bottom:456.773333pt;}
.y11b{bottom:461.573333pt;}
.y50{bottom:471.173333pt;}
.ye7{bottom:472.133333pt;}
.yb0{bottom:474.053333pt;}
.y11a{bottom:481.733333pt;}
.ye6{bottom:487.493333pt;}
.y4f{bottom:488.773333pt;}
.y119{bottom:501.893333pt;}
.ye5{bottom:502.853333pt;}
.y93{bottom:505.413333pt;}
.y144{bottom:515.360000pt;}
.y118{bottom:522.080000pt;}
.y4e{bottom:522.400000pt;}
.y143{bottom:532.960000pt;}
.ye4{bottom:533.920000pt;}
.y92{bottom:539.360000pt;}
.y4d{bottom:540.000000pt;}
.y117{bottom:542.240000pt;}
.y142{bottom:550.560000pt;}
.ye3{bottom:553.120000pt;}
.y4c{bottom:557.920000pt;}
.y116{bottom:562.400000pt;}
.y141{bottom:568.160000pt;}
.y91{bottom:572.960000pt;}
.y4b{bottom:575.520000pt;}
.y115{bottom:582.560000pt;}
.ye2{bottom:584.480000pt;}
.y140{bottom:585.760000pt;}
.y90{bottom:590.560000pt;}
.y4a{bottom:593.120000pt;}
.y13f{bottom:603.360000pt;}
.y1b{bottom:607.840000pt;}
.ye1{bottom:612.640000pt;}
.y8e{bottom:619.680000pt;}
.y13e{bottom:620.960000pt;}
.y49{bottom:626.746667pt;}
.y1a{bottom:628.666667pt;}
.ye0{bottom:630.266667pt;}
.y114{bottom:630.586667pt;}
.y8d{bottom:637.946667pt;}
.y13d{bottom:638.586667pt;}
.y19{bottom:642.746667pt;}
.y48{bottom:644.346667pt;}
.ydf{bottom:648.186667pt;}
.y113{bottom:650.746667pt;}
.y8b{bottom:656.186667pt;}
.y18{bottom:656.826667pt;}
.y47{bottom:661.946667pt;}
.yde{bottom:665.786667pt;}
.y112{bottom:668.346667pt;}
.y17{bottom:670.906667pt;}
.y13c{bottom:672.506667pt;}
.y89{bottom:674.746667pt;}
.ydd{bottom:683.386667pt;}
.y16{bottom:684.986667pt;}
.y111{bottom:688.506667pt;}
.y13b{bottom:690.106667pt;}
.y88{bottom:698.106667pt;}
.y46{bottom:700.986667pt;}
.y15{bottom:701.626667pt;}
.ydc{bottom:702.586667pt;}
.y13a{bottom:707.706667pt;}
.y110{bottom:708.666667pt;}
.y14{bottom:716.986667pt;}
.y139{bottom:725.306667pt;}
.y45{bottom:725.946667pt;}
.y87{bottom:726.266667pt;}
.y70{bottom:729.466667pt;}
.y10f{bottom:730.426667pt;}
.y13{bottom:732.346667pt;}
.ydb{bottom:741.346667pt;}
.y138{bottom:742.946667pt;}
.y86{bottom:743.906667pt;}
.y6f{bottom:747.106667pt;}
.y12{bottom:747.746667pt;}
.y38{bottom:748.066667pt;}
.yda{bottom:760.546667pt;}
.y85{bottom:761.826667pt;}
.y11{bottom:764.706667pt;}
.y6e{bottom:765.026667pt;}
.y10e{bottom:768.546667pt;}
.y84{bottom:781.026667pt;}
.y137{bottom:781.666667pt;}
.y6d{bottom:782.626667pt;}
.yd9{bottom:785.186667pt;}
.y10d{bottom:786.146667pt;}
.yaf{bottom:788.066667pt;}
.y10{bottom:789.346667pt;}
.yfa{bottom:793.186667pt;}
.yd8{bottom:799.586667pt;}
.y6c{bottom:800.226667pt;}
.y10c{bottom:803.746667pt;}
.y136{bottom:805.346667pt;}
.yf{bottom:813.666667pt;}
.y83{bottom:814.626667pt;}
.y6b{bottom:817.826667pt;}
.y10b{bottom:821.346667pt;}
.yae{bottom:821.666667pt;}
.yd7{bottom:827.746667pt;}
.y82{bottom:832.226667pt;}
.y134{bottom:834.466667pt;}
.y6a{bottom:835.426667pt;}
.y9{bottom:836.706667pt;}
.y10a{bottom:838.946667pt;}
.yad{bottom:839.266667pt;}
.yd6{bottom:841.826667pt;}
.y81{bottom:851.773333pt;}
.y8{bottom:852.093333pt;}
.y133{bottom:854.013333pt;}
.y69{bottom:854.653333pt;}
.yd5{bottom:855.933333pt;}
.y109{bottom:856.573333pt;}
.y7{bottom:864.573333pt;}
.yd4{bottom:870.013333pt;}
.yac{bottom:870.653333pt;}
.y108{bottom:874.173333pt;}
.yd3{bottom:884.093333pt;}
.y80{bottom:885.373333pt;}
.y68{bottom:885.693333pt;}
.y107{bottom:891.773333pt;}
.y132{bottom:892.413333pt;}
.yd2{bottom:898.173333pt;}
.yab{bottom:901.693333pt;}
.y7f{bottom:902.973333pt;}
.y67{bottom:911.293333pt;}
.y106{bottom:911.933333pt;}
.yd1{bottom:912.253333pt;}
.y6{bottom:913.213333pt;}
.y7e{bottom:922.173333pt;}
.yd0{bottom:926.333333pt;}
.yaa{bottom:927.293333pt;}
.y66{bottom:928.893333pt;}
.y131{bottom:930.493333pt;}
.y105{bottom:932.093333pt;}
.y5{bottom:935.293333pt;}
.ycf{bottom:940.413333pt;}
.y15a{bottom:943.933333pt;}
.ya9{bottom:944.893333pt;}
.y7d{bottom:945.533333pt;}
.y65{bottom:946.493333pt;}
.y104{bottom:952.253333pt;}
.y4{bottom:953.533333pt;}
.yce{bottom:954.493333pt;}
.y159{bottom:961.573333pt;}
.ya8{bottom:962.533333pt;}
.y64{bottom:964.453333pt;}
.y7c{bottom:964.773333pt;}
.y12a{bottom:968.613333pt;}
.ycd{bottom:968.933333pt;}
.y3{bottom:972.453333pt;}
.y103{bottom:972.773333pt;}
.y158{bottom:979.173333pt;}
.ya7{bottom:980.453333pt;}
.ycc{bottom:983.013333pt;}
.y2{bottom:990.693333pt;}
.y102{bottom:992.933333pt;}
.y7b{bottom:996.133333pt;}
.y157{bottom:996.773333pt;}
.y63{bottom:998.053333pt;}
.y1{bottom:1005.733333pt;}
.y101{bottom:1013.093333pt;}
.y156{bottom:1014.373333pt;}
.y62{bottom:1015.653333pt;}
.y37{bottom:1036.773333pt;}
.y36{bottom:1049.253333pt;}
.y35{bottom:1067.813333pt;}
.y34{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h20{height:16.960000pt;}
.h14{height:17.600000pt;}
.h16{height:17.632000pt;}
.h15{height:17.920000pt;}
.h1e{height:18.560000pt;}
.h24{height:18.912000pt;}
.h1f{height:20.800000pt;}
.hd{height:22.155000pt;}
.h12{height:30.545625pt;}
.h18{height:30.638188pt;}
.h7{height:35.173750pt;}
.h19{height:37.025000pt;}
.h21{height:37.440000pt;}
.h22{height:37.472000pt;}
.h23{height:37.760000pt;}
.h4{height:38.876250pt;}
.h13{height:39.138750pt;}
.h5{height:40.090000pt;}
.h10{height:42.578750pt;}
.h25{height:42.866250pt;}
.h11{height:44.310000pt;}
.h1d{height:46.593750pt;}
.h2{height:47.748750pt;}
.h1b{height:48.352000pt;}
.h1a{height:50.912000pt;}
.hb{height:52.455625pt;}
.hc{height:52.615625pt;}
.h1c{height:53.152000pt;}
.h3{height:56.843750pt;}
.h9{height:76.170625pt;}
.ha{height:85.265625pt;}
.hf{height:278.146667pt;}
.h17{height:288.000000pt;}
.he{height:464.773333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:74.912000pt;}
.w1a{width:75.552000pt;}
.w13{width:78.112000pt;}
.w19{width:78.752000pt;}
.w12{width:80.032000pt;}
.w18{width:80.352000pt;}
.w16{width:83.232000pt;}
.w15{width:83.552000pt;}
.w1b{width:84.192000pt;}
.w9{width:84.512000pt;}
.w8{width:103.104000pt;}
.wa{width:103.392000pt;}
.w17{width:124.864000pt;}
.wd{width:166.466667pt;}
.we{width:171.266667pt;}
.wc{width:188.893333pt;}
.w11{width:222.493333pt;}
.w10{width:230.173333pt;}
.wf{width:278.493333pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.wb{width:480.000000pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x15{left:6.720000pt;}
.x9{left:7.680000pt;}
.x27{left:9.920000pt;}
.x21{left:10.880000pt;}
.x38{left:12.480000pt;}
.x23{left:13.440000pt;}
.x35{left:16.986667pt;}
.x20{left:18.240000pt;}
.x37{left:20.840000pt;}
.x2c{left:23.040000pt;}
.x31{left:24.346667pt;}
.x39{left:25.946667pt;}
.x18{left:27.264000pt;}
.x26{left:31.040000pt;}
.x17{left:32.608000pt;}
.x3a{left:34.280000pt;}
.x3f{left:35.226667pt;}
.x3e{left:37.800000pt;}
.x3b{left:38.746667pt;}
.x24{left:43.866667pt;}
.x40{left:45.786667pt;}
.x3d{left:48.986667pt;}
.x3c{left:52.506667pt;}
.x28{left:63.386667pt;}
.x19{left:68.546667pt;}
.x1a{left:88.386667pt;}
.x2e{left:93.466667pt;}
.x7{left:94.431988pt;}
.x41{left:104.031988pt;}
.xb{left:109.791988pt;}
.x12{left:118.463988pt;}
.xc{left:124.543988pt;}
.x1d{left:133.120000pt;}
.x29{left:142.466655pt;}
.x11{left:151.106655pt;}
.x2a{left:155.586655pt;}
.xd{left:160.706655pt;}
.x30{left:175.746667pt;}
.x2f{left:179.586655pt;}
.x13{left:198.813333pt;}
.x2b{left:207.133333pt;}
.x1e{left:218.173333pt;}
.x2{left:226.013322pt;}
.x1b{left:233.506667pt;}
.x6{left:243.613322pt;}
.x32{left:254.493333pt;}
.xa{left:270.533333pt;}
.x14{left:283.973333pt;}
.xf{left:302.208000pt;}
.x22{left:318.213333pt;}
.x5{left:322.373322pt;}
.x33{left:330.053333pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x1c{left:378.653333pt;}
.x2d{left:385.760000pt;}
.x8{left:396.959988pt;}
.xe{left:397.920000pt;}
.x34{left:414.240000pt;}
.x36{left:498.106667pt;}
.x25{left:526.626667pt;}
.x16{left:574.626655pt;}
.x10{left:656.573322pt;}
.x1f{left:695.973322pt;}
.x1{left:699.493322pt;}
}




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