
    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_eee9a82bd73b85e816e6b0a7.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3c651cc401525932638f58ef.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bf57d02efd1c7a7a413a9ebe.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f2f000330abe216bf7aec8ac.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.976562;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_fff760cd48ac0e0c1eccfe61.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;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_821e2bd03c2add29ac0aba38.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;}
.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);}
.m2{transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.371200,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.371200,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);}
.v0{vertical-align:0.000000px;}
.lse{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.756000px;}
.ls13{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.360000px;}
.ls3{letter-spacing:-0.341400px;}
.ls12{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.106800px;}
.ls5{letter-spacing:-0.028080px;}
.ls2{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.180000px;}
.ls11{letter-spacing:0.288000px;}
.ls8{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.774000px;}
.ls0{letter-spacing:2.160000px;}
.ls14{letter-spacing:20.880000px;}
.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;}
}
.ws0{word-spacing:-23.921280px;}
.ws4{word-spacing:-21.060000px;}
.wsd{word-spacing:-20.304000px;}
.ws3{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.288000px;}
.ws12{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.wse{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.712000px;}
.ws11{word-spacing:-17.280000px;}
.ws8{word-spacing:-15.714000px;}
.ws9{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.833200px;}
.ws5{word-spacing:-14.733600px;}
.wsa{word-spacing:-14.580000px;}
.wsc{word-spacing:-13.860000px;}
.ws2{word-spacing:0.000000px;}
._7{margin-left:-8.406000px;}
._3{margin-left:-7.277760px;}
._5{margin-left:-6.156480px;}
._8{margin-left:-4.575600px;}
._f{margin-left:-3.312000px;}
._0{margin-left:-1.457280px;}
._2{width:1.053360px;}
._9{width:2.543280px;}
._10{width:3.864720px;}
._c{width:5.256000px;}
._d{width:6.317280px;}
._1c{width:7.722720px;}
._13{width:9.305280px;}
._12{width:10.368000px;}
._1f{width:11.380080px;}
._1e{width:13.332000px;}
._16{width:14.544000px;}
._17{width:16.056000px;}
._21{width:17.426160px;}
._11{width:19.080000px;}
._1d{width:20.160000px;}
._19{width:21.456000px;}
._e{width:22.464000px;}
._1a{width:23.904000px;}
._29{width:24.984000px;}
._22{width:25.992000px;}
._23{width:27.072000px;}
._14{width:28.296000px;}
._15{width:29.520000px;}
._18{width:31.608000px;}
._1b{width:34.488000px;}
._26{width:40.248000px;}
._27{width:41.256000px;}
._28{width:43.326000px;}
._a{width:44.473440px;}
._24{width:45.516000px;}
._b{width:46.589280px;}
._25{width:48.277200px;}
._2b{width:50.014800px;}
._2f{width:56.868000px;}
._30{width:59.184000px;}
._20{width:64.881120px;}
._2e{width:128.460000px;}
._2c{width:141.312000px;}
._2d{width:142.668000px;}
._1{width:147.982800px;}
._2a{width:172.522560px;}
._4{width:232.448160px;}
._6{width:233.977680px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,0,10);}
.fc1{color:rgb(15,71,97);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:3.060000px;}
.y91{bottom:3.240000px;}
.y97{bottom:3.420000px;}
.ya5{bottom:3.600000px;}
.y98{bottom:3.780000px;}
.y95{bottom:4.140000px;}
.ya1{bottom:4.500000px;}
.y7d{bottom:18.720000px;}
.yb5{bottom:19.614000px;}
.ya9{bottom:19.620000px;}
.yaa{bottom:19.980000px;}
.y96{bottom:20.160000px;}
.ya4{bottom:20.340000px;}
.y90{bottom:20.520000px;}
.y93{bottom:20.550000px;}
.yad{bottom:20.700000px;}
.ya3{bottom:21.060000px;}
.ya0{bottom:21.240000px;}
.y94{bottom:21.270000px;}
.y9f{bottom:21.960000px;}
.yb4{bottom:35.814000px;}
.ya8{bottom:36.360000px;}
.ya7{bottom:37.080000px;}
.y9d{bottom:37.620000px;}
.y8f{bottom:37.800000px;}
.yac{bottom:37.980000px;}
.yae{bottom:38.160000px;}
.yaf{bottom:38.520000px;}
.yb3{bottom:52.914000px;}
.y5{bottom:53.100000px;}
.yb6{bottom:53.994000px;}
.y9c{bottom:54.900000px;}
.y8e{bottom:55.080000px;}
.y4{bottom:57.600000px;}
.yb2{bottom:70.194000px;}
.y9b{bottom:72.180000px;}
.y8d{bottom:72.360000px;}
.y3{bottom:76.716000px;}
.yb1{bottom:87.474000px;}
.y8c{bottom:89.460000px;}
.y2{bottom:95.616000px;}
.y8b{bottom:106.740000px;}
.y1{bottom:114.516000px;}
.y8a{bottom:124.020000px;}
.y9a{bottom:124.200000px;}
.y12e{bottom:133.956000px;}
.y152{bottom:135.396000px;}
.y31{bottom:140.436000px;}
.yb0{bottom:141.156000px;}
.y89{bottom:141.300000px;}
.y70{bottom:142.236000px;}
.y112{bottom:142.776000px;}
.yd5{bottom:149.976000px;}
.yf4{bottom:154.110000px;}
.y151{bottom:156.090000px;}
.y88{bottom:158.580000px;}
.y12d{bottom:164.910000px;}
.y30{bottom:171.030000px;}
.y51{bottom:171.390000px;}
.y6f{bottom:173.190000px;}
.y87{bottom:175.860000px;}
.y150{bottom:176.790000px;}
.yd4{bottom:180.930000px;}
.y111{bottom:182.370000px;}
.yf3{bottom:185.070000px;}
.y2f{bottom:191.730000px;}
.y83{bottom:193.530000px;}
.y14f{bottom:197.490000px;}
.y12c{bottom:199.110000px;}
.y50{bottom:202.350000px;}
.y6e{bottom:204.330000px;}
.y110{bottom:208.290000px;}
.y82{bottom:210.810000px;}
.yd3{bottom:212.070000px;}
.y2e{bottom:212.430000px;}
.yf2{bottom:216.210000px;}
.y14e{bottom:218.190000px;}
.y81{bottom:228.090000px;}
.y85{bottom:228.450000px;}
.y2d{bottom:233.130000px;}
.y4f{bottom:233.490000px;}
.y10f{bottom:234.030000px;}
.y6d{bottom:235.290000px;}
.y14d{bottom:238.890000px;}
.y12b{bottom:241.950000px;}
.yd2{bottom:243.030000px;}
.yab{bottom:243.390000px;}
.y80{bottom:245.370000px;}
.y84{bottom:245.550000px;}
.yf1{bottom:247.170000px;}
.y2c{bottom:253.830000px;}
.y14c{bottom:259.590000px;}
.y10e{bottom:259.950000px;}
.y4e{bottom:264.450000px;}
.y6c{bottom:266.430000px;}
.y12a{bottom:273.090000px;}
.yd1{bottom:274.170000px;}
.y2b{bottom:274.530000px;}
.yf0{bottom:278.310000px;}
.y14b{bottom:280.290000px;}
.y10d{bottom:285.870000px;}
.y179{bottom:291.090000px;}
.y2a{bottom:295.230000px;}
.y4d{bottom:295.590000px;}
.ya6{bottom:295.950000px;}
.y6b{bottom:297.390000px;}
.y14a{bottom:300.990000px;}
.y129{bottom:304.050000px;}
.yd0{bottom:305.130000px;}
.yef{bottom:309.270000px;}
.y178{bottom:311.790000px;}
.y10c{bottom:314.130000px;}
.y29{bottom:315.930000px;}
.y149{bottom:321.690000px;}
.y4c{bottom:326.550000px;}
.y6a{bottom:328.530000px;}
.y177{bottom:332.490000px;}
.y128{bottom:335.010000px;}
.ycf{bottom:336.270000px;}
.y28{bottom:336.675000px;}
.yee{bottom:340.455000px;}
.y148{bottom:342.435000px;}
.y10b{bottom:345.315000px;}
.ya2{bottom:346.395000px;}
.y176{bottom:353.235000px;}
.y27{bottom:357.375000px;}
.y4b{bottom:357.735000px;}
.y69{bottom:359.535000px;}
.y147{bottom:363.135000px;}
.yce{bottom:367.275000px;}
.yed{bottom:371.415000px;}
.y127{bottom:371.955000px;}
.y175{bottom:373.935000px;}
.y10a{bottom:376.275000px;}
.y26{bottom:378.075000px;}
.y9e{bottom:380.775000px;}
.y146{bottom:383.655000px;}
.y4a{bottom:388.695000px;}
.y68{bottom:390.675000px;}
.y174{bottom:394.635000px;}
.ycd{bottom:398.415000px;}
.yec{bottom:402.555000px;}
.y126{bottom:403.095000px;}
.y145{bottom:404.355000px;}
.y109{bottom:407.415000px;}
.y25{bottom:408.675000px;}
.y173{bottom:415.335000px;}
.y99{bottom:416.055000px;}
.y49{bottom:419.835000px;}
.y67{bottom:421.635000px;}
.y144{bottom:425.055000px;}
.ycc{bottom:429.375000px;}
.yeb{bottom:433.515000px;}
.y125{bottom:434.055000px;}
.y172{bottom:436.035000px;}
.y108{bottom:438.375000px;}
.y24{bottom:439.275000px;}
.y143{bottom:445.755000px;}
.y48{bottom:450.795000px;}
.y66{bottom:452.775000px;}
.y171{bottom:456.735000px;}
.y23{bottom:459.975000px;}
.ycb{bottom:460.515000px;}
.yea{bottom:464.655000px;}
.y124{bottom:465.195000px;}
.y142{bottom:466.455000px;}
.y107{bottom:469.515000px;}
.y170{bottom:477.435000px;}
.y22{bottom:480.675000px;}
.y47{bottom:481.755000px;}
.y65{bottom:483.735000px;}
.y141{bottom:487.155000px;}
.yca{bottom:491.475000px;}
.ye9{bottom:495.615000px;}
.y123{bottom:496.155000px;}
.y16f{bottom:498.135000px;}
.y106{bottom:500.475000px;}
.y21{bottom:501.375000px;}
.y140{bottom:507.855000px;}
.y46{bottom:512.895000px;}
.y64{bottom:514.875000px;}
.y16e{bottom:518.835000px;}
.y20{bottom:522.075000px;}
.yc9{bottom:522.615000px;}
.ye8{bottom:526.755000px;}
.y122{bottom:527.295000px;}
.y13f{bottom:528.555000px;}
.y105{bottom:531.615000px;}
.y16d{bottom:539.535000px;}
.y1f{bottom:542.775000px;}
.y45{bottom:543.855000px;}
.y63{bottom:545.835000px;}
.y13e{bottom:549.255000px;}
.yc8{bottom:553.575000px;}
.y7f{bottom:554.655000px;}
.ye7{bottom:557.715000px;}
.y121{bottom:558.255000px;}
.y16c{bottom:560.235000px;}
.y104{bottom:562.575000px;}
.y1e{bottom:563.475000px;}
.y13d{bottom:569.955000px;}
.y44{bottom:574.995000px;}
.y62{bottom:576.975000px;}
.y16b{bottom:580.935000px;}
.y1d{bottom:584.175000px;}
.yc7{bottom:585.975000px;}
.y92{bottom:588.855000px;}
.y120{bottom:589.215000px;}
.y13c{bottom:590.655000px;}
.y103{bottom:593.715000px;}
.y16a{bottom:601.635000px;}
.y1c{bottom:604.905000px;}
.y43{bottom:605.985000px;}
.y61{bottom:607.965000px;}
.y13b{bottom:611.385000px;}
.yc6{bottom:617.145000px;}
.ye6{bottom:619.845000px;}
.y11f{bottom:620.385000px;}
.y169{bottom:622.365000px;}
.y86{bottom:624.165000px;}
.y102{bottom:624.705000px;}
.y1b{bottom:625.605000px;}
.y13a{bottom:632.085000px;}
.y42{bottom:637.125000px;}
.y60{bottom:642.165000px;}
.y168{bottom:643.065000px;}
.y1a{bottom:646.305000px;}
.yc5{bottom:648.105000px;}
.ye5{bottom:650.985000px;}
.y11e{bottom:651.345000px;}
.y139{bottom:652.785000px;}
.y101{bottom:655.845000px;}
.y167{bottom:663.765000px;}
.y19{bottom:667.005000px;}
.y41{bottom:668.085000px;}
.y138{bottom:673.485000px;}
.y5f{bottom:679.065000px;}
.yc4{bottom:679.245000px;}
.ye4{bottom:681.945000px;}
.y11d{bottom:682.485000px;}
.y166{bottom:684.465000px;}
.y100{bottom:686.805000px;}
.y18{bottom:687.705000px;}
.y137{bottom:694.185000px;}
.y40{bottom:699.225000px;}
.y165{bottom:705.165000px;}
.y17{bottom:708.405000px;}
.yc3{bottom:710.205000px;}
.ye3{bottom:713.085000px;}
.y11c{bottom:713.445000px;}
.y136{bottom:714.885000px;}
.yff{bottom:717.945000px;}
.y5e{bottom:722.085000px;}
.y164{bottom:725.865000px;}
.y16{bottom:729.105000px;}
.y3f{bottom:730.185000px;}
.y135{bottom:735.585000px;}
.yc2{bottom:741.705000px;}
.ye2{bottom:744.045000px;}
.y11b{bottom:744.585000px;}
.y163{bottom:746.565000px;}
.yfe{bottom:748.725000px;}
.y5d{bottom:753.045000px;}
.y15{bottom:759.705000px;}
.y3e{bottom:761.325000px;}
.y162{bottom:767.265000px;}
.ye1{bottom:775.005000px;}
.y11a{bottom:775.545000px;}
.y134{bottom:776.985000px;}
.y5c{bottom:784.005000px;}
.yc1{bottom:784.365000px;}
.yfd{bottom:785.805000px;}
.y14{bottom:790.305000px;}
.y3d{bottom:792.285000px;}
.y133{bottom:797.685000px;}
.ye0{bottom:806.145000px;}
.y119{bottom:806.685000px;}
.y161{bottom:808.485000px;}
.y13{bottom:811.005000px;}
.y7c{bottom:814.785000px;}
.y5b{bottom:815.145000px;}
.yfc{bottom:816.765000px;}
.y132{bottom:818.385000px;}
.y3c{bottom:823.425000px;}
.yc0{bottom:825.945000px;}
.y160{bottom:829.185000px;}
.y12{bottom:831.705000px;}
.ydf{bottom:837.105000px;}
.y118{bottom:837.645000px;}
.y131{bottom:839.085000px;}
.y5a{bottom:846.105000px;}
.yfb{bottom:847.905000px;}
.y15f{bottom:849.885000px;}
.y11{bottom:852.405000px;}
.y3b{bottom:854.385000px;}
.y7b{bottom:856.185000px;}
.ybf{bottom:856.905000px;}
.yde{bottom:868.245000px;}
.y117{bottom:868.785000px;}
.y130{bottom:869.685000px;}
.y15e{bottom:870.630000px;}
.y10{bottom:873.150000px;}
.y7a{bottom:873.510000px;}
.y59{bottom:877.290000px;}
.yfa{bottom:878.910000px;}
.y3a{bottom:885.570000px;}
.ybe{bottom:888.090000px;}
.y15d{bottom:891.330000px;}
.y79{bottom:891.510000px;}
.yf{bottom:893.850000px;}
.ydd{bottom:899.250000px;}
.y116{bottom:899.790000px;}
.y58{bottom:908.250000px;}
.yf9{bottom:910.050000px;}
.y12f{bottom:912.030000px;}
.ye{bottom:914.550000px;}
.y39{bottom:916.530000px;}
.ybd{bottom:919.050000px;}
.y78{bottom:922.470000px;}
.ydc{bottom:930.390000px;}
.y115{bottom:930.750000px;}
.y15c{bottom:932.730000px;}
.yd{bottom:935.250000px;}
.y57{bottom:939.390000px;}
.yf8{bottom:941.010000px;}
.y38{bottom:947.670000px;}
.ybc{bottom:950.190000px;}
.y15b{bottom:953.430000px;}
.y77{bottom:953.610000px;}
.yc{bottom:957.210000px;}
.ydb{bottom:961.350000px;}
.y114{bottom:962.430000px;}
.y56{bottom:970.350000px;}
.yf7{bottom:972.150000px;}
.y15a{bottom:974.130000px;}
.y37{bottom:978.630000px;}
.ybb{bottom:981.150000px;}
.y76{bottom:984.570000px;}
.yb{bottom:984.750000px;}
.yda{bottom:992.490000px;}
.y159{bottom:994.830000px;}
.y55{bottom:1001.490000px;}
.yf6{bottom:1003.110000px;}
.y113{bottom:1005.270000px;}
.y36{bottom:1009.770000px;}
.yba{bottom:1012.290000px;}
.ya{bottom:1012.470000px;}
.y158{bottom:1015.530000px;}
.y75{bottom:1015.710000px;}
.yd9{bottom:1023.450000px;}
.y54{bottom:1032.450000px;}
.yf5{bottom:1034.790000px;}
.y157{bottom:1036.230000px;}
.y35{bottom:1040.730000px;}
.yb9{bottom:1043.250000px;}
.y9{bottom:1045.770000px;}
.y74{bottom:1046.670000px;}
.yd8{bottom:1054.590000px;}
.y156{bottom:1056.930000px;}
.y53{bottom:1063.590000px;}
.y34{bottom:1071.870000px;}
.y8{bottom:1073.670000px;}
.yb8{bottom:1074.390000px;}
.y155{bottom:1077.630000px;}
.y73{bottom:1077.810000px;}
.y52{bottom:1094.550000px;}
.yd7{bottom:1096.890000px;}
.y154{bottom:1098.330000px;}
.y7{bottom:1101.210000px;}
.y33{bottom:1102.830000px;}
.yb7{bottom:1105.170000px;}
.y72{bottom:1108.770000px;}
.y153{bottom:1119.030000px;}
.y6{bottom:1128.750000px;}
.y32{bottom:1137.030000px;}
.yd6{bottom:1139.760000px;}
.y71{bottom:1139.940000px;}
.hb{height:31.500000px;}
.hf{height:33.480000px;}
.h13{height:33.660000px;}
.h11{height:34.560000px;}
.he{height:34.596000px;}
.h12{height:48.410156px;}
.h14{height:49.716000px;}
.h15{height:51.660000px;}
.ha{height:53.077852px;}
.h3{height:53.573906px;}
.h7{height:54.773438px;}
.h2{height:59.383125px;}
.h8{height:63.949219px;}
.h6{height:64.546875px;}
.h9{height:74.820586px;}
.h17{height:75.519844px;}
.h4{height:85.052461px;}
.h5{height:85.847344px;}
.h16{height:101.520000px;}
.h10{height:137.880000px;}
.hd{height:189.720000px;}
.hc{height:259.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:1.439985px;}
.w4{width:94.896000px;}
.w7{width:146.736000px;}
.w5{width:148.176000px;}
.w3{width:180.030000px;}
.w6{width:360.795000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:5.040000px;}
.x1e{left:7.020000px;}
.x11{left:8.100000px;}
.x1f{left:11.340000px;}
.x20{left:23.265000px;}
.x17{left:24.840000px;}
.x14{left:26.145000px;}
.x24{left:50.220000px;}
.x25{left:60.840000px;}
.x10{left:74.700000px;}
.x26{left:85.500000px;}
.x19{left:96.300000px;}
.x1a{left:106.020000px;}
.x1{left:127.655987px;}
.xd{left:131.075987px;}
.xb{left:138.095987px;}
.xe{left:143.495987px;}
.x27{left:150.480000px;}
.x28{left:160.605000px;}
.x29{left:167.265000px;}
.xa{left:170.129987px;}
.x4{left:172.289987px;}
.x5{left:176.249987px;}
.x2a{left:178.065000px;}
.xc{left:180.569987px;}
.x1b{left:189.945000px;}
.x7{left:248.069987px;}
.x12{left:255.630000px;}
.x1c{left:262.485000px;}
.x1d{left:272.205000px;}
.x9{left:277.994987px;}
.x2b{left:297.794987px;}
.x8{left:315.074987px;}
.x21{left:329.805000px;}
.x22{left:340.245000px;}
.x15{left:351.255000px;}
.x23{left:354.495000px;}
.x6{left:355.574987px;}
.xf{left:364.754987px;}
.x3{left:446.474987px;}
.x2{left:467.744987px;}
.x18{left:497.985000px;}
.x16{left:500.145000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lse{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.672000pt;}
.ls13{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls3{letter-spacing:-0.303467pt;}
.ls12{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:-0.024960pt;}
.ls2{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.160000pt;}
.ls11{letter-spacing:0.256000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.688000pt;}
.ls0{letter-spacing:1.920000pt;}
.ls14{letter-spacing:18.560000pt;}
.ws0{word-spacing:-21.263360pt;}
.ws4{word-spacing:-18.720000pt;}
.wsd{word-spacing:-18.048000pt;}
.ws3{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws12{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.744000pt;}
.ws11{word-spacing:-15.360000pt;}
.ws8{word-spacing:-13.968000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.185067pt;}
.ws5{word-spacing:-13.096533pt;}
.wsa{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.320000pt;}
.ws2{word-spacing:0.000000pt;}
._7{margin-left:-7.472000pt;}
._3{margin-left:-6.469120pt;}
._5{margin-left:-5.472427pt;}
._8{margin-left:-4.067200pt;}
._f{margin-left:-2.944000pt;}
._0{margin-left:-1.295360pt;}
._2{width:0.936320pt;}
._9{width:2.260693pt;}
._10{width:3.435307pt;}
._c{width:4.672000pt;}
._d{width:5.615360pt;}
._1c{width:6.864640pt;}
._13{width:8.271360pt;}
._12{width:9.216000pt;}
._1f{width:10.115627pt;}
._1e{width:11.850667pt;}
._16{width:12.928000pt;}
._17{width:14.272000pt;}
._21{width:15.489920pt;}
._11{width:16.960000pt;}
._1d{width:17.920000pt;}
._19{width:19.072000pt;}
._e{width:19.968000pt;}
._1a{width:21.248000pt;}
._29{width:22.208000pt;}
._22{width:23.104000pt;}
._23{width:24.064000pt;}
._14{width:25.152000pt;}
._15{width:26.240000pt;}
._18{width:28.096000pt;}
._1b{width:30.656000pt;}
._26{width:35.776000pt;}
._27{width:36.672000pt;}
._28{width:38.512000pt;}
._a{width:39.531947pt;}
._24{width:40.458667pt;}
._b{width:41.412693pt;}
._25{width:42.913067pt;}
._2b{width:44.457600pt;}
._2f{width:50.549333pt;}
._30{width:52.608000pt;}
._20{width:57.672107pt;}
._2e{width:114.186667pt;}
._2c{width:125.610667pt;}
._2d{width:126.816000pt;}
._1{width:131.540267pt;}
._2a{width:153.353387pt;}
._4{width:206.620587pt;}
._6{width:207.980160pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:2.720000pt;}
.y91{bottom:2.880000pt;}
.y97{bottom:3.040000pt;}
.ya5{bottom:3.200000pt;}
.y98{bottom:3.360000pt;}
.y95{bottom:3.680000pt;}
.ya1{bottom:4.000000pt;}
.y7d{bottom:16.640000pt;}
.yb5{bottom:17.434667pt;}
.ya9{bottom:17.440000pt;}
.yaa{bottom:17.760000pt;}
.y96{bottom:17.920000pt;}
.ya4{bottom:18.080000pt;}
.y90{bottom:18.240000pt;}
.y93{bottom:18.266667pt;}
.yad{bottom:18.400000pt;}
.ya3{bottom:18.720000pt;}
.ya0{bottom:18.880000pt;}
.y94{bottom:18.906667pt;}
.y9f{bottom:19.520000pt;}
.yb4{bottom:31.834667pt;}
.ya8{bottom:32.320000pt;}
.ya7{bottom:32.960000pt;}
.y9d{bottom:33.440000pt;}
.y8f{bottom:33.600000pt;}
.yac{bottom:33.760000pt;}
.yae{bottom:33.920000pt;}
.yaf{bottom:34.240000pt;}
.yb3{bottom:47.034667pt;}
.y5{bottom:47.200000pt;}
.yb6{bottom:47.994667pt;}
.y9c{bottom:48.800000pt;}
.y8e{bottom:48.960000pt;}
.y4{bottom:51.200000pt;}
.yb2{bottom:62.394667pt;}
.y9b{bottom:64.160000pt;}
.y8d{bottom:64.320000pt;}
.y3{bottom:68.192000pt;}
.yb1{bottom:77.754667pt;}
.y8c{bottom:79.520000pt;}
.y2{bottom:84.992000pt;}
.y8b{bottom:94.880000pt;}
.y1{bottom:101.792000pt;}
.y8a{bottom:110.240000pt;}
.y9a{bottom:110.400000pt;}
.y12e{bottom:119.072000pt;}
.y152{bottom:120.352000pt;}
.y31{bottom:124.832000pt;}
.yb0{bottom:125.472000pt;}
.y89{bottom:125.600000pt;}
.y70{bottom:126.432000pt;}
.y112{bottom:126.912000pt;}
.yd5{bottom:133.312000pt;}
.yf4{bottom:136.986667pt;}
.y151{bottom:138.746667pt;}
.y88{bottom:140.960000pt;}
.y12d{bottom:146.586667pt;}
.y30{bottom:152.026667pt;}
.y51{bottom:152.346667pt;}
.y6f{bottom:153.946667pt;}
.y87{bottom:156.320000pt;}
.y150{bottom:157.146667pt;}
.yd4{bottom:160.826667pt;}
.y111{bottom:162.106667pt;}
.yf3{bottom:164.506667pt;}
.y2f{bottom:170.426667pt;}
.y83{bottom:172.026667pt;}
.y14f{bottom:175.546667pt;}
.y12c{bottom:176.986667pt;}
.y50{bottom:179.866667pt;}
.y6e{bottom:181.626667pt;}
.y110{bottom:185.146667pt;}
.y82{bottom:187.386667pt;}
.yd3{bottom:188.506667pt;}
.y2e{bottom:188.826667pt;}
.yf2{bottom:192.186667pt;}
.y14e{bottom:193.946667pt;}
.y81{bottom:202.746667pt;}
.y85{bottom:203.066667pt;}
.y2d{bottom:207.226667pt;}
.y4f{bottom:207.546667pt;}
.y10f{bottom:208.026667pt;}
.y6d{bottom:209.146667pt;}
.y14d{bottom:212.346667pt;}
.y12b{bottom:215.066667pt;}
.yd2{bottom:216.026667pt;}
.yab{bottom:216.346667pt;}
.y80{bottom:218.106667pt;}
.y84{bottom:218.266667pt;}
.yf1{bottom:219.706667pt;}
.y2c{bottom:225.626667pt;}
.y14c{bottom:230.746667pt;}
.y10e{bottom:231.066667pt;}
.y4e{bottom:235.066667pt;}
.y6c{bottom:236.826667pt;}
.y12a{bottom:242.746667pt;}
.yd1{bottom:243.706667pt;}
.y2b{bottom:244.026667pt;}
.yf0{bottom:247.386667pt;}
.y14b{bottom:249.146667pt;}
.y10d{bottom:254.106667pt;}
.y179{bottom:258.746667pt;}
.y2a{bottom:262.426667pt;}
.y4d{bottom:262.746667pt;}
.ya6{bottom:263.066667pt;}
.y6b{bottom:264.346667pt;}
.y14a{bottom:267.546667pt;}
.y129{bottom:270.266667pt;}
.yd0{bottom:271.226667pt;}
.yef{bottom:274.906667pt;}
.y178{bottom:277.146667pt;}
.y10c{bottom:279.226667pt;}
.y29{bottom:280.826667pt;}
.y149{bottom:285.946667pt;}
.y4c{bottom:290.266667pt;}
.y6a{bottom:292.026667pt;}
.y177{bottom:295.546667pt;}
.y128{bottom:297.786667pt;}
.ycf{bottom:298.906667pt;}
.y28{bottom:299.266667pt;}
.yee{bottom:302.626667pt;}
.y148{bottom:304.386667pt;}
.y10b{bottom:306.946667pt;}
.ya2{bottom:307.906667pt;}
.y176{bottom:313.986667pt;}
.y27{bottom:317.666667pt;}
.y4b{bottom:317.986667pt;}
.y69{bottom:319.586667pt;}
.y147{bottom:322.786667pt;}
.yce{bottom:326.466667pt;}
.yed{bottom:330.146667pt;}
.y127{bottom:330.626667pt;}
.y175{bottom:332.386667pt;}
.y10a{bottom:334.466667pt;}
.y26{bottom:336.066667pt;}
.y9e{bottom:338.466667pt;}
.y146{bottom:341.026667pt;}
.y4a{bottom:345.506667pt;}
.y68{bottom:347.266667pt;}
.y174{bottom:350.786667pt;}
.ycd{bottom:354.146667pt;}
.yec{bottom:357.826667pt;}
.y126{bottom:358.306667pt;}
.y145{bottom:359.426667pt;}
.y109{bottom:362.146667pt;}
.y25{bottom:363.266667pt;}
.y173{bottom:369.186667pt;}
.y99{bottom:369.826667pt;}
.y49{bottom:373.186667pt;}
.y67{bottom:374.786667pt;}
.y144{bottom:377.826667pt;}
.ycc{bottom:381.666667pt;}
.yeb{bottom:385.346667pt;}
.y125{bottom:385.826667pt;}
.y172{bottom:387.586667pt;}
.y108{bottom:389.666667pt;}
.y24{bottom:390.466667pt;}
.y143{bottom:396.226667pt;}
.y48{bottom:400.706667pt;}
.y66{bottom:402.466667pt;}
.y171{bottom:405.986667pt;}
.y23{bottom:408.866667pt;}
.ycb{bottom:409.346667pt;}
.yea{bottom:413.026667pt;}
.y124{bottom:413.506667pt;}
.y142{bottom:414.626667pt;}
.y107{bottom:417.346667pt;}
.y170{bottom:424.386667pt;}
.y22{bottom:427.266667pt;}
.y47{bottom:428.226667pt;}
.y65{bottom:429.986667pt;}
.y141{bottom:433.026667pt;}
.yca{bottom:436.866667pt;}
.ye9{bottom:440.546667pt;}
.y123{bottom:441.026667pt;}
.y16f{bottom:442.786667pt;}
.y106{bottom:444.866667pt;}
.y21{bottom:445.666667pt;}
.y140{bottom:451.426667pt;}
.y46{bottom:455.906667pt;}
.y64{bottom:457.666667pt;}
.y16e{bottom:461.186667pt;}
.y20{bottom:464.066667pt;}
.yc9{bottom:464.546667pt;}
.ye8{bottom:468.226667pt;}
.y122{bottom:468.706667pt;}
.y13f{bottom:469.826667pt;}
.y105{bottom:472.546667pt;}
.y16d{bottom:479.586667pt;}
.y1f{bottom:482.466667pt;}
.y45{bottom:483.426667pt;}
.y63{bottom:485.186667pt;}
.y13e{bottom:488.226667pt;}
.yc8{bottom:492.066667pt;}
.y7f{bottom:493.026667pt;}
.ye7{bottom:495.746667pt;}
.y121{bottom:496.226667pt;}
.y16c{bottom:497.986667pt;}
.y104{bottom:500.066667pt;}
.y1e{bottom:500.866667pt;}
.y13d{bottom:506.626667pt;}
.y44{bottom:511.106667pt;}
.y62{bottom:512.866667pt;}
.y16b{bottom:516.386667pt;}
.y1d{bottom:519.266667pt;}
.yc7{bottom:520.866667pt;}
.y92{bottom:523.426667pt;}
.y120{bottom:523.746667pt;}
.y13c{bottom:525.026667pt;}
.y103{bottom:527.746667pt;}
.y16a{bottom:534.786667pt;}
.y1c{bottom:537.693333pt;}
.y43{bottom:538.653333pt;}
.y61{bottom:540.413333pt;}
.y13b{bottom:543.453333pt;}
.yc6{bottom:548.573333pt;}
.ye6{bottom:550.973333pt;}
.y11f{bottom:551.453333pt;}
.y169{bottom:553.213333pt;}
.y86{bottom:554.813333pt;}
.y102{bottom:555.293333pt;}
.y1b{bottom:556.093333pt;}
.y13a{bottom:561.853333pt;}
.y42{bottom:566.333333pt;}
.y60{bottom:570.813333pt;}
.y168{bottom:571.613333pt;}
.y1a{bottom:574.493333pt;}
.yc5{bottom:576.093333pt;}
.ye5{bottom:578.653333pt;}
.y11e{bottom:578.973333pt;}
.y139{bottom:580.253333pt;}
.y101{bottom:582.973333pt;}
.y167{bottom:590.013333pt;}
.y19{bottom:592.893333pt;}
.y41{bottom:593.853333pt;}
.y138{bottom:598.653333pt;}
.y5f{bottom:603.613333pt;}
.yc4{bottom:603.773333pt;}
.ye4{bottom:606.173333pt;}
.y11d{bottom:606.653333pt;}
.y166{bottom:608.413333pt;}
.y100{bottom:610.493333pt;}
.y18{bottom:611.293333pt;}
.y137{bottom:617.053333pt;}
.y40{bottom:621.533333pt;}
.y165{bottom:626.813333pt;}
.y17{bottom:629.693333pt;}
.yc3{bottom:631.293333pt;}
.ye3{bottom:633.853333pt;}
.y11c{bottom:634.173333pt;}
.y136{bottom:635.453333pt;}
.yff{bottom:638.173333pt;}
.y5e{bottom:641.853333pt;}
.y164{bottom:645.213333pt;}
.y16{bottom:648.093333pt;}
.y3f{bottom:649.053333pt;}
.y135{bottom:653.853333pt;}
.yc2{bottom:659.293333pt;}
.ye2{bottom:661.373333pt;}
.y11b{bottom:661.853333pt;}
.y163{bottom:663.613333pt;}
.yfe{bottom:665.533333pt;}
.y5d{bottom:669.373333pt;}
.y15{bottom:675.293333pt;}
.y3e{bottom:676.733333pt;}
.y162{bottom:682.013333pt;}
.ye1{bottom:688.893333pt;}
.y11a{bottom:689.373333pt;}
.y134{bottom:690.653333pt;}
.y5c{bottom:696.893333pt;}
.yc1{bottom:697.213333pt;}
.yfd{bottom:698.493333pt;}
.y14{bottom:702.493333pt;}
.y3d{bottom:704.253333pt;}
.y133{bottom:709.053333pt;}
.ye0{bottom:716.573333pt;}
.y119{bottom:717.053333pt;}
.y161{bottom:718.653333pt;}
.y13{bottom:720.893333pt;}
.y7c{bottom:724.253333pt;}
.y5b{bottom:724.573333pt;}
.yfc{bottom:726.013333pt;}
.y132{bottom:727.453333pt;}
.y3c{bottom:731.933333pt;}
.yc0{bottom:734.173333pt;}
.y160{bottom:737.053333pt;}
.y12{bottom:739.293333pt;}
.ydf{bottom:744.093333pt;}
.y118{bottom:744.573333pt;}
.y131{bottom:745.853333pt;}
.y5a{bottom:752.093333pt;}
.yfb{bottom:753.693333pt;}
.y15f{bottom:755.453333pt;}
.y11{bottom:757.693333pt;}
.y3b{bottom:759.453333pt;}
.y7b{bottom:761.053333pt;}
.ybf{bottom:761.693333pt;}
.yde{bottom:771.773333pt;}
.y117{bottom:772.253333pt;}
.y130{bottom:773.053333pt;}
.y15e{bottom:773.893333pt;}
.y10{bottom:776.133333pt;}
.y7a{bottom:776.453333pt;}
.y59{bottom:779.813333pt;}
.yfa{bottom:781.253333pt;}
.y3a{bottom:787.173333pt;}
.ybe{bottom:789.413333pt;}
.y15d{bottom:792.293333pt;}
.y79{bottom:792.453333pt;}
.yf{bottom:794.533333pt;}
.ydd{bottom:799.333333pt;}
.y116{bottom:799.813333pt;}
.y58{bottom:807.333333pt;}
.yf9{bottom:808.933333pt;}
.y12f{bottom:810.693333pt;}
.ye{bottom:812.933333pt;}
.y39{bottom:814.693333pt;}
.ybd{bottom:816.933333pt;}
.y78{bottom:819.973333pt;}
.ydc{bottom:827.013333pt;}
.y115{bottom:827.333333pt;}
.y15c{bottom:829.093333pt;}
.yd{bottom:831.333333pt;}
.y57{bottom:835.013333pt;}
.yf8{bottom:836.453333pt;}
.y38{bottom:842.373333pt;}
.ybc{bottom:844.613333pt;}
.y15b{bottom:847.493333pt;}
.y77{bottom:847.653333pt;}
.yc{bottom:850.853333pt;}
.ydb{bottom:854.533333pt;}
.y114{bottom:855.493333pt;}
.y56{bottom:862.533333pt;}
.yf7{bottom:864.133333pt;}
.y15a{bottom:865.893333pt;}
.y37{bottom:869.893333pt;}
.ybb{bottom:872.133333pt;}
.y76{bottom:875.173333pt;}
.yb{bottom:875.333333pt;}
.yda{bottom:882.213333pt;}
.y159{bottom:884.293333pt;}
.y55{bottom:890.213333pt;}
.yf6{bottom:891.653333pt;}
.y113{bottom:893.573333pt;}
.y36{bottom:897.573333pt;}
.yba{bottom:899.813333pt;}
.ya{bottom:899.973333pt;}
.y158{bottom:902.693333pt;}
.y75{bottom:902.853333pt;}
.yd9{bottom:909.733333pt;}
.y54{bottom:917.733333pt;}
.yf5{bottom:919.813333pt;}
.y157{bottom:921.093333pt;}
.y35{bottom:925.093333pt;}
.yb9{bottom:927.333333pt;}
.y9{bottom:929.573333pt;}
.y74{bottom:930.373333pt;}
.yd8{bottom:937.413333pt;}
.y156{bottom:939.493333pt;}
.y53{bottom:945.413333pt;}
.y34{bottom:952.773333pt;}
.y8{bottom:954.373333pt;}
.yb8{bottom:955.013333pt;}
.y155{bottom:957.893333pt;}
.y73{bottom:958.053333pt;}
.y52{bottom:972.933333pt;}
.yd7{bottom:975.013333pt;}
.y154{bottom:976.293333pt;}
.y7{bottom:978.853333pt;}
.y33{bottom:980.293333pt;}
.yb7{bottom:982.373333pt;}
.y72{bottom:985.573333pt;}
.y153{bottom:994.693333pt;}
.y6{bottom:1003.333333pt;}
.y32{bottom:1010.693333pt;}
.yd6{bottom:1013.120000pt;}
.y71{bottom:1013.280000pt;}
.hb{height:28.000000pt;}
.hf{height:29.760000pt;}
.h13{height:29.920000pt;}
.h11{height:30.720000pt;}
.he{height:30.752000pt;}
.h12{height:43.031250pt;}
.h14{height:44.192000pt;}
.h15{height:45.920000pt;}
.ha{height:47.180312pt;}
.h3{height:47.621250pt;}
.h7{height:48.687500pt;}
.h2{height:52.785000pt;}
.h8{height:56.843750pt;}
.h6{height:57.375000pt;}
.h9{height:66.507188pt;}
.h17{height:67.128750pt;}
.h4{height:75.602187pt;}
.h5{height:76.308750pt;}
.h16{height:90.240000pt;}
.h10{height:122.560000pt;}
.hd{height:168.640000pt;}
.hc{height:230.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:1.279987pt;}
.w4{width:84.352000pt;}
.w7{width:130.432000pt;}
.w5{width:131.712000pt;}
.w3{width:160.026667pt;}
.w6{width:320.706667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:4.480000pt;}
.x1e{left:6.240000pt;}
.x11{left:7.200000pt;}
.x1f{left:10.080000pt;}
.x20{left:20.680000pt;}
.x17{left:22.080000pt;}
.x14{left:23.240000pt;}
.x24{left:44.640000pt;}
.x25{left:54.080000pt;}
.x10{left:66.400000pt;}
.x26{left:76.000000pt;}
.x19{left:85.600000pt;}
.x1a{left:94.240000pt;}
.x1{left:113.471988pt;}
.xd{left:116.511988pt;}
.xb{left:122.751988pt;}
.xe{left:127.551988pt;}
.x27{left:133.760000pt;}
.x28{left:142.760000pt;}
.x29{left:148.680000pt;}
.xa{left:151.226655pt;}
.x4{left:153.146655pt;}
.x5{left:156.666655pt;}
.x2a{left:158.280000pt;}
.xc{left:160.506655pt;}
.x1b{left:168.840000pt;}
.x7{left:220.506655pt;}
.x12{left:227.226667pt;}
.x1c{left:233.320000pt;}
.x1d{left:241.960000pt;}
.x9{left:247.106655pt;}
.x2b{left:264.706655pt;}
.x8{left:280.066655pt;}
.x21{left:293.160000pt;}
.x22{left:302.440000pt;}
.x15{left:312.226667pt;}
.x23{left:315.106667pt;}
.x6{left:316.066655pt;}
.xf{left:324.226655pt;}
.x3{left:396.866655pt;}
.x2{left:415.773322pt;}
.x18{left:442.653333pt;}
.x16{left:444.573333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  