
    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_6eedc1a49fa89a6e4d8767bf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.946777;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_d7939db2005272fa43c513db.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_3e2608ef59677e63233a5c68.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_7c6c98fdf78e6f292886f9f1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.288000px;}
.ls5{letter-spacing:-0.216000px;}
.ls1{letter-spacing:0.000000px;}
.lse{letter-spacing:0.008640px;}
.ls4{letter-spacing:0.017280px;}
.lsa{letter-spacing:0.072000px;}
.ls7{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.lsb{letter-spacing:0.864000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws2{word-spacing:-66.240000px;}
.wsa{word-spacing:-59.760000px;}
.ws0{word-spacing:-23.940000px;}
.ws1{word-spacing:-21.060000px;}
.ws7{word-spacing:-19.457280px;}
.wsd{word-spacing:-19.448640px;}
.ws6{word-spacing:-18.144000px;}
.wsc{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws8{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.wse{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.ws3{word-spacing:0.000000px;}
._d{margin-left:-5.299200px;}
._c{margin-left:-4.173120px;}
._4{margin-left:-2.715840px;}
._2{margin-left:-1.258560px;}
._0{width:1.015920px;}
._1{width:2.276160px;}
._6{width:3.775680px;}
._7{width:5.010240px;}
._5{width:6.721920px;}
._1c{width:8.470080px;}
._16{width:9.504000px;}
._13{width:10.656000px;}
._14{width:11.656080px;}
._b{width:12.790080px;}
._a{width:14.008320px;}
._f{width:15.408000px;}
._10{width:16.704000px;}
._8{width:19.805760px;}
._17{width:21.528000px;}
._1b{width:23.112000px;}
._9{width:24.707520px;}
._1a{width:25.715520px;}
._11{width:26.856000px;}
._12{width:28.224000px;}
._1e{width:29.304000px;}
._1d{width:30.528000px;}
._3{width:32.325120px;}
._15{width:33.842880px;}
._24{width:36.072000px;}
._25{width:37.072080px;}
._21{width:38.448000px;}
._22{width:41.184000px;}
._23{width:42.768000px;}
._18{width:47.160000px;}
._19{width:48.312000px;}
._1f{width:50.074560px;}
._20{width:62.352000px;}
._26{width:73.224000px;}
._e{width:849.216000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.160000px;}
.y168{bottom:120.420000px;}
.y96{bottom:120.600000px;}
.ye2{bottom:122.220000px;}
.yac{bottom:125.820000px;}
.y81{bottom:129.780000px;}
.y1a4{bottom:130.140000px;}
.y151{bottom:131.400000px;}
.y64{bottom:135.360000px;}
.y145{bottom:135.900000px;}
.yf2{bottom:149.940000px;}
.y167{bottom:151.560000px;}
.y95{bottom:151.740000px;}
.yab{bottom:156.960000px;}
.y1a3{bottom:158.220000px;}
.y12b{bottom:159.120000px;}
.y80{bottom:160.740000px;}
.y135{bottom:162.540000px;}
.y1cb{bottom:163.260000px;}
.y63{bottom:166.500000px;}
.yc7{bottom:166.680000px;}
.y144{bottom:167.040000px;}
.ye1{bottom:175.860000px;}
.y1a2{bottom:177.300000px;}
.yf1{bottom:180.900000px;}
.y40{bottom:181.440000px;}
.y166{bottom:182.520000px;}
.y94{bottom:182.700000px;}
.y150{bottom:185.040000px;}
.yaa{bottom:187.920000px;}
.y12a{bottom:190.260000px;}
.y7f{bottom:195.150000px;}
.y62{bottom:197.490000px;}
.yc6{bottom:197.850000px;}
.y1a1{bottom:205.050000px;}
.ye0{bottom:206.850000px;}
.y1ca{bottom:210.270000px;}
.yf0{bottom:212.070000px;}
.y3f{bottom:212.610000px;}
.y143{bottom:213.150000px;}
.y165{bottom:213.690000px;}
.y93{bottom:213.870000px;}
.y10c{bottom:214.770000px;}
.y134{bottom:216.210000px;}
.ya9{bottom:222.330000px;}
.y129{bottom:224.670000px;}
.yc5{bottom:228.810000px;}
.y1c9{bottom:229.530000px;}
.y1a0{bottom:233.130000px;}
.ydf{bottom:237.990000px;}
.yef{bottom:243.030000px;}
.y3e{bottom:243.570000px;}
.y142{bottom:244.110000px;}
.y164{bottom:244.650000px;}
.y92{bottom:244.830000px;}
.y133{bottom:247.170000px;}
.y1c8{bottom:248.430000px;}
.y7e{bottom:248.790000px;}
.y17e{bottom:251.130000px;}
.y10b{bottom:258.150000px;}
.yc4{bottom:259.950000px;}
.y19f{bottom:261.030000px;}
.yde{bottom:268.950000px;}
.y3d{bottom:274.710000px;}
.ya8{bottom:275.970000px;}
.y1c7{bottom:276.150000px;}
.yee{bottom:277.410000px;}
.y128{bottom:278.310000px;}
.y7d{bottom:279.750000px;}
.y10a{bottom:289.110000px;}
.y141{bottom:290.190000px;}
.y163{bottom:290.730000px;}
.y91{bottom:290.910000px;}
.y119{bottom:291.810000px;}
.y17d{bottom:294.330000px;}
.y1c6{bottom:295.410000px;}
.y3c{bottom:305.670000px;}
.yc3{bottom:305.850000px;}
.ya7{bottom:306.930000px;}
.y19e{bottom:308.190000px;}
.y127{bottom:309.270000px;}
.y7c{bottom:310.890000px;}
.y14f{bottom:312.690000px;}
.ydd{bottom:315.030000px;}
.y109{bottom:320.250000px;}
.y140{bottom:321.150000px;}
.y162{bottom:321.690000px;}
.y90{bottom:322.050000px;}
.y11c{bottom:322.950000px;}
.y1c5{bottom:323.130000px;}
.y17c{bottom:325.470000px;}
.yed{bottom:331.050000px;}
.y118{bottom:335.190000px;}
.y19d{bottom:335.910000px;}
.y61{bottom:336.810000px;}
.yc2{bottom:336.990000px;}
.ya6{bottom:338.070000px;}
.y126{bottom:340.410000px;}
.y7b{bottom:341.850000px;}
.y1c4{bottom:342.390000px;}
.y132{bottom:343.650000px;}
.ydc{bottom:345.990000px;}
.y108{bottom:351.210000px;}
.y3b{bottom:351.750000px;}
.y161{bottom:352.830000px;}
.y8f{bottom:353.010000px;}
.y19c{bottom:355.170000px;}
.y13f{bottom:355.530000px;}
.y17b{bottom:356.430000px;}
.y22{bottom:359.130000px;}
.yfd{bottom:360.930000px;}
.yec{bottom:362.010000px;}
.y117{bottom:366.150000px;}
.y60{bottom:367.770000px;}
.yc1{bottom:367.950000px;}
.ya5{bottom:369.030000px;}
.y1c3{bottom:370.110000px;}
.y125{bottom:371.370000px;}
.y19b{bottom:374.070000px;}
.ydb{bottom:377.130000px;}
.y58{bottom:381.630000px;}
.y107{bottom:382.350000px;}
.y3a{bottom:382.890000px;}
.y160{bottom:383.790000px;}
.y8e{bottom:384.150000px;}
.y17a{bottom:387.570000px;}
.y7a{bottom:387.930000px;}
.yeb{bottom:393.150000px;}
.y116{bottom:397.290000px;}
.y1c2{bottom:398.010000px;}
.y5f{bottom:398.910000px;}
.yc0{bottom:399.090000px;}
.y19a{bottom:401.970000px;}
.yfc{bottom:404.310000px;}
.y124{bottom:405.750000px;}
.yda{bottom:408.090000px;}
.y13e{bottom:409.170000px;}
.y21{bottom:412.590000px;}
.y39{bottom:413.850000px;}
.y15f{bottom:414.930000px;}
.ya4{bottom:415.110000px;}
.y106{bottom:416.550000px;}
.y1c1{bottom:417.270000px;}
.y179{bottom:418.530000px;}
.y79{bottom:419.070000px;}
.y199{bottom:421.050000px;}
.yea{bottom:424.110000px;}
.y57{bottom:425.010000px;}
.y115{bottom:428.250000px;}
.y5e{bottom:429.870000px;}
.y8d{bottom:430.050000px;}
.y20{bottom:431.895000px;}
.yd3{bottom:432.615000px;}
.yfb{bottom:435.315000px;}
.yd9{bottom:439.275000px;}
.y13d{bottom:440.355000px;}
.y38{bottom:444.855000px;}
.y1c0{bottom:445.035000px;}
.y15e{bottom:445.935000px;}
.ya3{bottom:446.295000px;}
.y198{bottom:448.815000px;}
.y178{bottom:449.715000px;}
.y78{bottom:450.075000px;}
.y1f{bottom:450.795000px;}
.y56{bottom:456.015000px;}
.y114{bottom:459.435000px;}
.y8c{bottom:461.235000px;}
.ye4{bottom:463.935000px;}
.y1bf{bottom:464.295000px;}
.yfa{bottom:466.455000px;}
.yd2{bottom:467.715000px;}
.y197{bottom:468.075000px;}
.yd8{bottom:470.235000px;}
.y37{bottom:475.995000px;}
.ya2{bottom:477.255000px;}
.y77{bottom:481.215000px;}
.yd1{bottom:484.995000px;}
.y13c{bottom:486.255000px;}
.y55{bottom:487.155000px;}
.y1e{bottom:487.515000px;}
.y177{bottom:488.775000px;}
.y11b{bottom:490.395000px;}
.y15d{bottom:492.015000px;}
.y8b{bottom:492.195000px;}
.y113{bottom:493.815000px;}
.y196{bottom:495.795000px;}
.yf9{bottom:497.415000px;}
.ye9{bottom:501.375000px;}
.yd0{bottom:502.275000px;}
.yd7{bottom:504.615000px;}
.y1d{bottom:506.775000px;}
.y36{bottom:506.955000px;}
.ybf{bottom:507.315000px;}
.ya1{bottom:508.395000px;}
.y1be{bottom:511.095000px;}
.y76{bottom:512.175000px;}
.y195{bottom:515.055000px;}
.y13b{bottom:517.395000px;}
.y54{bottom:518.115000px;}
.ycf{bottom:519.555000px;}
.y123{bottom:521.535000px;}
.y15c{bottom:523.155000px;}
.y8a{bottom:523.335000px;}
.y11a{bottom:524.775000px;}
.y1c{bottom:525.675000px;}
.ye8{bottom:532.335000px;}
.yce{bottom:536.835000px;}
.y5d{bottom:538.095000px;}
.ybe{bottom:538.275000px;}
.y1bd{bottom:538.995000px;}
.ya0{bottom:539.355000px;}
.y12e{bottom:542.055000px;}
.y194{bottom:542.775000px;}
.yf8{bottom:543.495000px;}
.y1b{bottom:544.755000px;}
.y112{bottom:547.455000px;}
.y13a{bottom:548.355000px;}
.y53{bottom:549.255000px;}
.y176{bottom:549.795000px;}
.y122{bottom:552.495000px;}
.y35{bottom:553.035000px;}
.ycd{bottom:554.115000px;}
.y89{bottom:554.295000px;}
.y75{bottom:558.255000px;}
.y193{bottom:561.855000px;}
.ye7{bottom:563.475000px;}
.y1a{bottom:563.655000px;}
.y1bc{bottom:566.895000px;}
.y5c{bottom:569.055000px;}
.ybd{bottom:569.415000px;}
.y9f{bottom:570.315000px;}
.ycc{bottom:571.215000px;}
.yf7{bottom:574.455000px;}
.y111{bottom:578.415000px;}
.y52{bottom:580.215000px;}
.y175{bottom:580.935000px;}
.y19{bottom:582.555000px;}
.y139{bottom:582.735000px;}
.y14e{bottom:583.635000px;}
.y34{bottom:584.175000px;}
.y15b{bottom:585.255000px;}
.y88{bottom:585.435000px;}
.y1bb{bottom:586.155000px;}
.y121{bottom:586.875000px;}
.ycb{bottom:588.495000px;}
.y74{bottom:589.215000px;}
.y105{bottom:594.435000px;}
.ye6{bottom:597.855000px;}
.y5b{bottom:600.195000px;}
.ybc{bottom:600.375000px;}
.y18{bottom:601.635000px;}
.yf6{bottom:605.595000px;}
.y192{bottom:608.655000px;}
.y110{bottom:609.555000px;}
.y51{bottom:611.355000px;}
.y174{bottom:611.895000px;}
.y1ba{bottom:613.875000px;}
.yca{bottom:614.955000px;}
.y33{bottom:615.135000px;}
.y15a{bottom:616.215000px;}
.y9e{bottom:616.395000px;}
.y14d{bottom:618.015000px;}
.y87{bottom:619.815000px;}
.y73{bottom:620.355000px;}
.y1dd{bottom:623.775000px;}
.y104{bottom:625.575000px;}
.y191{bottom:627.915000px;}
.y17{bottom:629.355000px;}
.y5a{bottom:631.155000px;}
.yb4{bottom:631.515000px;}
.y1b9{bottom:632.955000px;}
.y138{bottom:636.375000px;}
.yf5{bottom:636.555000px;}
.y10f{bottom:640.515000px;}
.y32{bottom:646.275000px;}
.y9d{bottom:647.535000px;}
.yc9{bottom:648.435000px;}
.y16{bottom:648.615000px;}
.y72{bottom:651.315000px;}
.y1dc{bottom:651.855000px;}
.y190{bottom:655.635000px;}
.y103{bottom:656.535000px;}
.y50{bottom:657.255000px;}
.y1b8{bottom:660.855000px;}
.y59{bottom:662.295000px;}
.yb3{bottom:662.475000px;}
.y15{bottom:667.515000px;}
.yf4{bottom:670.965000px;}
.y10e{bottom:671.685000px;}
.y86{bottom:673.485000px;}
.y18f{bottom:674.925000px;}
.y31{bottom:677.265000px;}
.y9c{bottom:678.525000px;}
.y1db{bottom:679.785000px;}
.y1b7{bottom:679.965000px;}
.y71{bottom:682.485000px;}
.y14{bottom:686.445000px;}
.y4f{bottom:688.425000px;}
.y102{bottom:690.945000px;}
.y159{bottom:693.285000px;}
.yb2{bottom:693.645000px;}
.y137{bottom:698.505000px;}
.y1b6{bottom:699.045000px;}
.y173{bottom:699.945000px;}
.y120{bottom:702.645000px;}
.y85{bottom:704.445000px;}
.y13{bottom:705.525000px;}
.y10d{bottom:705.885000px;}
.y1da{bottom:707.865000px;}
.y30{bottom:708.405000px;}
.y9b{bottom:709.665000px;}
.y14a{bottom:712.365000px;}
.y12d{bottom:712.905000px;}
.y70{bottom:713.445000px;}
.y4e{bottom:719.385000px;}
.y12{bottom:724.425000px;}
.yb1{bottom:724.605000px;}
.y1b5{bottom:726.765000px;}
.ye3{bottom:728.025000px;}
.y18e{bottom:730.545000px;}
.y11f{bottom:733.605000px;}
.y172{bottom:734.325000px;}
.y84{bottom:735.585000px;}
.y1d9{bottom:735.765000px;}
.y131{bottom:737.025000px;}
.y2f{bottom:739.365000px;}
.y11{bottom:743.505000px;}
.y9a{bottom:744.045000px;}
.yd6{bottom:744.585000px;}
.y1b4{bottom:745.845000px;}
.y4d{bottom:750.525000px;}
.y158{bottom:755.385000px;}
.yb0{bottom:755.745000px;}
.y18d{bottom:758.625000px;}
.y6f{bottom:759.525000px;}
.y10{bottom:762.405000px;}
.y1d8{bottom:763.665000px;}
.y11e{bottom:764.745000px;}
.y83{bottom:766.545000px;}
.yc8{bottom:769.245000px;}
.y2e{bottom:770.505000px;}
.y1b3{bottom:773.745000px;}
.ye5{bottom:775.545000px;}
.y18c{bottom:777.705000px;}
.y4c{bottom:781.485000px;}
.y1d7{bottom:782.925000px;}
.yaf{bottom:786.705000px;}
.y171{bottom:787.965000px;}
.yf{bottom:790.305000px;}
.y6e{bottom:790.665000px;}
.y1b2{bottom:792.825000px;}
.y14c{bottom:795.705000px;}
.y82{bottom:797.505000px;}
.y11d{bottom:799.125000px;}
.y2d{bottom:801.465000px;}
.ybb{bottom:801.645000px;}
.y18b{bottom:805.605000px;}
.y101{bottom:806.685000px;}
.ye{bottom:809.385000px;}
.y1d6{bottom:810.645000px;}
.y1b1{bottom:811.905000px;}
.y4b{bottom:812.625000px;}
.yae{bottom:817.845000px;}
.y170{bottom:818.925000px;}
.y6d{bottom:821.625000px;}
.y18a{bottom:824.685000px;}
.yd{bottom:828.285000px;}
.y99{bottom:828.645000px;}
.y1d5{bottom:829.905000px;}
.y14b{bottom:830.085000px;}
.y2c{bottom:832.605000px;}
.yba{bottom:832.785000px;}
.y100{bottom:837.645000px;}
.y1b0{bottom:839.625000px;}
.y4a{bottom:843.585000px;}
.yc{bottom:847.365000px;}
.yf3{bottom:848.805000px;}
.yad{bottom:852.045000px;}
.y6c{bottom:852.765000px;}
.y16f{bottom:853.305000px;}
.y1af{bottom:858.885000px;}
.y98{bottom:859.605000px;}
.y157{bottom:863.565000px;}
.yb9{bottom:863.745000px;}
.yb{bottom:866.265000px;}
.y189{bottom:871.485000px;}
.y49{bottom:874.725000px;}
.y1d4{bottom:876.705000px;}
.y153{bottom:877.425000px;}
.y2b{bottom:878.505000px;}
.y149{bottom:879.945000px;}
.y6b{bottom:883.725000px;}
.ya{bottom:885.345000px;}
.y1ae{bottom:886.605000px;}
.y188{bottom:890.565000px;}
.y12c{bottom:890.745000px;}
.y69{bottom:893.445000px;}
.y156{bottom:894.705000px;}
.yb8{bottom:894.885000px;}
.y1d3{bottom:895.785000px;}
.y9{bottom:904.245000px;}
.y48{bottom:905.685000px;}
.y16e{bottom:906.945000px;}
.y2a{bottom:909.645000px;}
.y148{bottom:910.950000px;}
.yd5{bottom:914.910000px;}
.y6a{bottom:918.150000px;}
.y187{bottom:918.510000px;}
.y152{bottom:920.850000px;}
.y8{bottom:923.190000px;}
.y1d2{bottom:923.550000px;}
.y155{bottom:925.710000px;}
.yb7{bottom:925.890000px;}
.y1ad{bottom:933.630000px;}
.y68{bottom:936.870000px;}
.y186{bottom:937.590000px;}
.y16d{bottom:937.950000px;}
.y29{bottom:940.650000px;}
.yff{bottom:945.870000px;}
.yd4{bottom:949.290000px;}
.y1d1{bottom:951.630000px;}
.y47{bottom:951.810000px;}
.y154{bottom:956.850000px;}
.yb6{bottom:957.030000px;}
.y7{bottom:961.170000px;}
.y1ac{bottom:961.530000px;}
.y185{bottom:965.310000px;}
.y67{bottom:967.830000px;}
.y28{bottom:971.790000px;}
.y16c{bottom:972.330000px;}
.y130{bottom:977.010000px;}
.y1d0{bottom:979.530000px;}
.yfe{bottom:980.250000px;}
.y46{bottom:982.950000px;}
.y184{bottom:984.570000px;}
.y147{bottom:987.990000px;}
.y1ab{bottom:989.610000px;}
.yb5{bottom:991.410000px;}
.y1cf{bottom:998.790000px;}
.y66{bottom:998.970000px;}
.y27{bottom:1002.750000px;}
.y1aa{bottom:1008.690000px;}
.y12f{bottom:1011.390000px;}
.y183{bottom:1012.290000px;}
.y45{bottom:1013.910000px;}
.y6{bottom:1020.210000px;}
.y146{bottom:1022.370000px;}
.y16b{bottom:1025.970000px;}
.y1ce{bottom:1026.510000px;}
.y65{bottom:1029.930000px;}
.y182{bottom:1031.550000px;}
.y136{bottom:1032.630000px;}
.y26{bottom:1033.890000px;}
.y1a9{bottom:1036.410000px;}
.y44{bottom:1045.050000px;}
.y1cd{bottom:1045.590000px;}
.y5{bottom:1048.110000px;}
.y181{bottom:1050.450000px;}
.y16a{bottom:1057.110000px;}
.y97{bottom:1061.070000px;}
.y1a8{bottom:1064.490000px;}
.y1cc{bottom:1064.670000px;}
.y25{bottom:1064.850000px;}
.y43{bottom:1076.010000px;}
.y180{bottom:1078.170000px;}
.y169{bottom:1091.490000px;}
.y1a7{bottom:1092.390000px;}
.y24{bottom:1095.990000px;}
.y17f{bottom:1097.430000px;}
.y4{bottom:1104.990000px;}
.y42{bottom:1107.150000px;}
.y1a6{bottom:1111.650000px;}
.y3{bottom:1132.530000px;}
.y23{bottom:1135.230000px;}
.y41{bottom:1138.110000px;}
.y1a5{bottom:1139.370000px;}
.y1{bottom:1195.740000px;}
.h3{height:41.726953px;}
.h2{height:43.681992px;}
.h7{height:46.251562px;}
.h8{height:46.736719px;}
.h5{height:48.418594px;}
.h9{height:50.273438px;}
.ha{height:54.864844px;}
.h6{height:59.436914px;}
.h4{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:108.035987px;}
.x3{left:131.795987px;}
.xc{left:135.035987px;}
.x8{left:162.029987px;}
.xb{left:198.569987px;}
.x6{left:323.894987px;}
.x5{left:346.934987px;}
.x4{left:409.214987px;}
.x9{left:439.094987px;}
.x2{left:442.694987px;}
.x1{left:603.824987px;}
.xa{left:772.889987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls5{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.007680pt;}
.ls4{letter-spacing:0.015360pt;}
.lsa{letter-spacing:0.064000pt;}
.ls7{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsb{letter-spacing:0.768000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws2{word-spacing:-58.880000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws0{word-spacing:-21.280000pt;}
.ws1{word-spacing:-18.720000pt;}
.ws7{word-spacing:-17.295360pt;}
.wsd{word-spacing:-17.287680pt;}
.ws6{word-spacing:-16.128000pt;}
.wsc{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.wse{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.ws3{word-spacing:0.000000pt;}
._d{margin-left:-4.710400pt;}
._c{margin-left:-3.709440pt;}
._4{margin-left:-2.414080pt;}
._2{margin-left:-1.118720pt;}
._0{width:0.903040pt;}
._1{width:2.023253pt;}
._6{width:3.356160pt;}
._7{width:4.453547pt;}
._5{width:5.975040pt;}
._1c{width:7.528960pt;}
._16{width:8.448000pt;}
._13{width:9.472000pt;}
._14{width:10.360960pt;}
._b{width:11.368960pt;}
._a{width:12.451840pt;}
._f{width:13.696000pt;}
._10{width:14.848000pt;}
._8{width:17.605120pt;}
._17{width:19.136000pt;}
._1b{width:20.544000pt;}
._9{width:21.962240pt;}
._1a{width:22.858240pt;}
._11{width:23.872000pt;}
._12{width:25.088000pt;}
._1e{width:26.048000pt;}
._1d{width:27.136000pt;}
._3{width:28.733440pt;}
._15{width:30.082560pt;}
._24{width:32.064000pt;}
._25{width:32.952960pt;}
._21{width:34.176000pt;}
._22{width:36.608000pt;}
._23{width:38.016000pt;}
._18{width:41.920000pt;}
._19{width:42.944000pt;}
._1f{width:44.510720pt;}
._20{width:55.424000pt;}
._26{width:65.088000pt;}
._e{width:754.858667pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:49.920000pt;}
.y168{bottom:107.040000pt;}
.y96{bottom:107.200000pt;}
.ye2{bottom:108.640000pt;}
.yac{bottom:111.840000pt;}
.y81{bottom:115.360000pt;}
.y1a4{bottom:115.680000pt;}
.y151{bottom:116.800000pt;}
.y64{bottom:120.320000pt;}
.y145{bottom:120.800000pt;}
.yf2{bottom:133.280000pt;}
.y167{bottom:134.720000pt;}
.y95{bottom:134.880000pt;}
.yab{bottom:139.520000pt;}
.y1a3{bottom:140.640000pt;}
.y12b{bottom:141.440000pt;}
.y80{bottom:142.880000pt;}
.y135{bottom:144.480000pt;}
.y1cb{bottom:145.120000pt;}
.y63{bottom:148.000000pt;}
.yc7{bottom:148.160000pt;}
.y144{bottom:148.480000pt;}
.ye1{bottom:156.320000pt;}
.y1a2{bottom:157.600000pt;}
.yf1{bottom:160.800000pt;}
.y40{bottom:161.280000pt;}
.y166{bottom:162.240000pt;}
.y94{bottom:162.400000pt;}
.y150{bottom:164.480000pt;}
.yaa{bottom:167.040000pt;}
.y12a{bottom:169.120000pt;}
.y7f{bottom:173.466667pt;}
.y62{bottom:175.546667pt;}
.yc6{bottom:175.866667pt;}
.y1a1{bottom:182.266667pt;}
.ye0{bottom:183.866667pt;}
.y1ca{bottom:186.906667pt;}
.yf0{bottom:188.506667pt;}
.y3f{bottom:188.986667pt;}
.y143{bottom:189.466667pt;}
.y165{bottom:189.946667pt;}
.y93{bottom:190.106667pt;}
.y10c{bottom:190.906667pt;}
.y134{bottom:192.186667pt;}
.ya9{bottom:197.626667pt;}
.y129{bottom:199.706667pt;}
.yc5{bottom:203.386667pt;}
.y1c9{bottom:204.026667pt;}
.y1a0{bottom:207.226667pt;}
.ydf{bottom:211.546667pt;}
.yef{bottom:216.026667pt;}
.y3e{bottom:216.506667pt;}
.y142{bottom:216.986667pt;}
.y164{bottom:217.466667pt;}
.y92{bottom:217.626667pt;}
.y133{bottom:219.706667pt;}
.y1c8{bottom:220.826667pt;}
.y7e{bottom:221.146667pt;}
.y17e{bottom:223.226667pt;}
.y10b{bottom:229.466667pt;}
.yc4{bottom:231.066667pt;}
.y19f{bottom:232.026667pt;}
.yde{bottom:239.066667pt;}
.y3d{bottom:244.186667pt;}
.ya8{bottom:245.306667pt;}
.y1c7{bottom:245.466667pt;}
.yee{bottom:246.586667pt;}
.y128{bottom:247.386667pt;}
.y7d{bottom:248.666667pt;}
.y10a{bottom:256.986667pt;}
.y141{bottom:257.946667pt;}
.y163{bottom:258.426667pt;}
.y91{bottom:258.586667pt;}
.y119{bottom:259.386667pt;}
.y17d{bottom:261.626667pt;}
.y1c6{bottom:262.586667pt;}
.y3c{bottom:271.706667pt;}
.yc3{bottom:271.866667pt;}
.ya7{bottom:272.826667pt;}
.y19e{bottom:273.946667pt;}
.y127{bottom:274.906667pt;}
.y7c{bottom:276.346667pt;}
.y14f{bottom:277.946667pt;}
.ydd{bottom:280.026667pt;}
.y109{bottom:284.666667pt;}
.y140{bottom:285.466667pt;}
.y162{bottom:285.946667pt;}
.y90{bottom:286.266667pt;}
.y11c{bottom:287.066667pt;}
.y1c5{bottom:287.226667pt;}
.y17c{bottom:289.306667pt;}
.yed{bottom:294.266667pt;}
.y118{bottom:297.946667pt;}
.y19d{bottom:298.586667pt;}
.y61{bottom:299.386667pt;}
.yc2{bottom:299.546667pt;}
.ya6{bottom:300.506667pt;}
.y126{bottom:302.586667pt;}
.y7b{bottom:303.866667pt;}
.y1c4{bottom:304.346667pt;}
.y132{bottom:305.466667pt;}
.ydc{bottom:307.546667pt;}
.y108{bottom:312.186667pt;}
.y3b{bottom:312.666667pt;}
.y161{bottom:313.626667pt;}
.y8f{bottom:313.786667pt;}
.y19c{bottom:315.706667pt;}
.y13f{bottom:316.026667pt;}
.y17b{bottom:316.826667pt;}
.y22{bottom:319.226667pt;}
.yfd{bottom:320.826667pt;}
.yec{bottom:321.786667pt;}
.y117{bottom:325.466667pt;}
.y60{bottom:326.906667pt;}
.yc1{bottom:327.066667pt;}
.ya5{bottom:328.026667pt;}
.y1c3{bottom:328.986667pt;}
.y125{bottom:330.106667pt;}
.y19b{bottom:332.506667pt;}
.ydb{bottom:335.226667pt;}
.y58{bottom:339.226667pt;}
.y107{bottom:339.866667pt;}
.y3a{bottom:340.346667pt;}
.y160{bottom:341.146667pt;}
.y8e{bottom:341.466667pt;}
.y17a{bottom:344.506667pt;}
.y7a{bottom:344.826667pt;}
.yeb{bottom:349.466667pt;}
.y116{bottom:353.146667pt;}
.y1c2{bottom:353.786667pt;}
.y5f{bottom:354.586667pt;}
.yc0{bottom:354.746667pt;}
.y19a{bottom:357.306667pt;}
.yfc{bottom:359.386667pt;}
.y124{bottom:360.666667pt;}
.yda{bottom:362.746667pt;}
.y13e{bottom:363.706667pt;}
.y21{bottom:366.746667pt;}
.y39{bottom:367.866667pt;}
.y15f{bottom:368.826667pt;}
.ya4{bottom:368.986667pt;}
.y106{bottom:370.266667pt;}
.y1c1{bottom:370.906667pt;}
.y179{bottom:372.026667pt;}
.y79{bottom:372.506667pt;}
.y199{bottom:374.266667pt;}
.yea{bottom:376.986667pt;}
.y57{bottom:377.786667pt;}
.y115{bottom:380.666667pt;}
.y5e{bottom:382.106667pt;}
.y8d{bottom:382.266667pt;}
.y20{bottom:383.906667pt;}
.yd3{bottom:384.546667pt;}
.yfb{bottom:386.946667pt;}
.yd9{bottom:390.466667pt;}
.y13d{bottom:391.426667pt;}
.y38{bottom:395.426667pt;}
.y1c0{bottom:395.586667pt;}
.y15e{bottom:396.386667pt;}
.ya3{bottom:396.706667pt;}
.y198{bottom:398.946667pt;}
.y178{bottom:399.746667pt;}
.y78{bottom:400.066667pt;}
.y1f{bottom:400.706667pt;}
.y56{bottom:405.346667pt;}
.y114{bottom:408.386667pt;}
.y8c{bottom:409.986667pt;}
.ye4{bottom:412.386667pt;}
.y1bf{bottom:412.706667pt;}
.yfa{bottom:414.626667pt;}
.yd2{bottom:415.746667pt;}
.y197{bottom:416.066667pt;}
.yd8{bottom:417.986667pt;}
.y37{bottom:423.106667pt;}
.ya2{bottom:424.226667pt;}
.y77{bottom:427.746667pt;}
.yd1{bottom:431.106667pt;}
.y13c{bottom:432.226667pt;}
.y55{bottom:433.026667pt;}
.y1e{bottom:433.346667pt;}
.y177{bottom:434.466667pt;}
.y11b{bottom:435.906667pt;}
.y15d{bottom:437.346667pt;}
.y8b{bottom:437.506667pt;}
.y113{bottom:438.946667pt;}
.y196{bottom:440.706667pt;}
.yf9{bottom:442.146667pt;}
.ye9{bottom:445.666667pt;}
.yd0{bottom:446.466667pt;}
.yd7{bottom:448.546667pt;}
.y1d{bottom:450.466667pt;}
.y36{bottom:450.626667pt;}
.ybf{bottom:450.946667pt;}
.ya1{bottom:451.906667pt;}
.y1be{bottom:454.306667pt;}
.y76{bottom:455.266667pt;}
.y195{bottom:457.826667pt;}
.y13b{bottom:459.906667pt;}
.y54{bottom:460.546667pt;}
.ycf{bottom:461.826667pt;}
.y123{bottom:463.586667pt;}
.y15c{bottom:465.026667pt;}
.y8a{bottom:465.186667pt;}
.y11a{bottom:466.466667pt;}
.y1c{bottom:467.266667pt;}
.ye8{bottom:473.186667pt;}
.yce{bottom:477.186667pt;}
.y5d{bottom:478.306667pt;}
.ybe{bottom:478.466667pt;}
.y1bd{bottom:479.106667pt;}
.ya0{bottom:479.426667pt;}
.y12e{bottom:481.826667pt;}
.y194{bottom:482.466667pt;}
.yf8{bottom:483.106667pt;}
.y1b{bottom:484.226667pt;}
.y112{bottom:486.626667pt;}
.y13a{bottom:487.426667pt;}
.y53{bottom:488.226667pt;}
.y176{bottom:488.706667pt;}
.y122{bottom:491.106667pt;}
.y35{bottom:491.586667pt;}
.ycd{bottom:492.546667pt;}
.y89{bottom:492.706667pt;}
.y75{bottom:496.226667pt;}
.y193{bottom:499.426667pt;}
.ye7{bottom:500.866667pt;}
.y1a{bottom:501.026667pt;}
.y1bc{bottom:503.906667pt;}
.y5c{bottom:505.826667pt;}
.ybd{bottom:506.146667pt;}
.y9f{bottom:506.946667pt;}
.ycc{bottom:507.746667pt;}
.yf7{bottom:510.626667pt;}
.y111{bottom:514.146667pt;}
.y52{bottom:515.746667pt;}
.y175{bottom:516.386667pt;}
.y19{bottom:517.826667pt;}
.y139{bottom:517.986667pt;}
.y14e{bottom:518.786667pt;}
.y34{bottom:519.266667pt;}
.y15b{bottom:520.226667pt;}
.y88{bottom:520.386667pt;}
.y1bb{bottom:521.026667pt;}
.y121{bottom:521.666667pt;}
.ycb{bottom:523.106667pt;}
.y74{bottom:523.746667pt;}
.y105{bottom:528.386667pt;}
.ye6{bottom:531.426667pt;}
.y5b{bottom:533.506667pt;}
.ybc{bottom:533.666667pt;}
.y18{bottom:534.786667pt;}
.yf6{bottom:538.306667pt;}
.y192{bottom:541.026667pt;}
.y110{bottom:541.826667pt;}
.y51{bottom:543.426667pt;}
.y174{bottom:543.906667pt;}
.y1ba{bottom:545.666667pt;}
.yca{bottom:546.626667pt;}
.y33{bottom:546.786667pt;}
.y15a{bottom:547.746667pt;}
.y9e{bottom:547.906667pt;}
.y14d{bottom:549.346667pt;}
.y87{bottom:550.946667pt;}
.y73{bottom:551.426667pt;}
.y1dd{bottom:554.466667pt;}
.y104{bottom:556.066667pt;}
.y191{bottom:558.146667pt;}
.y17{bottom:559.426667pt;}
.y5a{bottom:561.026667pt;}
.yb4{bottom:561.346667pt;}
.y1b9{bottom:562.626667pt;}
.y138{bottom:565.666667pt;}
.yf5{bottom:565.826667pt;}
.y10f{bottom:569.346667pt;}
.y32{bottom:574.466667pt;}
.y9d{bottom:575.586667pt;}
.yc9{bottom:576.386667pt;}
.y16{bottom:576.546667pt;}
.y72{bottom:578.946667pt;}
.y1dc{bottom:579.426667pt;}
.y190{bottom:582.786667pt;}
.y103{bottom:583.586667pt;}
.y50{bottom:584.226667pt;}
.y1b8{bottom:587.426667pt;}
.y59{bottom:588.706667pt;}
.yb3{bottom:588.866667pt;}
.y15{bottom:593.346667pt;}
.yf4{bottom:596.413333pt;}
.y10e{bottom:597.053333pt;}
.y86{bottom:598.653333pt;}
.y18f{bottom:599.933333pt;}
.y31{bottom:602.013333pt;}
.y9c{bottom:603.133333pt;}
.y1db{bottom:604.253333pt;}
.y1b7{bottom:604.413333pt;}
.y71{bottom:606.653333pt;}
.y14{bottom:610.173333pt;}
.y4f{bottom:611.933333pt;}
.y102{bottom:614.173333pt;}
.y159{bottom:616.253333pt;}
.yb2{bottom:616.573333pt;}
.y137{bottom:620.893333pt;}
.y1b6{bottom:621.373333pt;}
.y173{bottom:622.173333pt;}
.y120{bottom:624.573333pt;}
.y85{bottom:626.173333pt;}
.y13{bottom:627.133333pt;}
.y10d{bottom:627.453333pt;}
.y1da{bottom:629.213333pt;}
.y30{bottom:629.693333pt;}
.y9b{bottom:630.813333pt;}
.y14a{bottom:633.213333pt;}
.y12d{bottom:633.693333pt;}
.y70{bottom:634.173333pt;}
.y4e{bottom:639.453333pt;}
.y12{bottom:643.933333pt;}
.yb1{bottom:644.093333pt;}
.y1b5{bottom:646.013333pt;}
.ye3{bottom:647.133333pt;}
.y18e{bottom:649.373333pt;}
.y11f{bottom:652.093333pt;}
.y172{bottom:652.733333pt;}
.y84{bottom:653.853333pt;}
.y1d9{bottom:654.013333pt;}
.y131{bottom:655.133333pt;}
.y2f{bottom:657.213333pt;}
.y11{bottom:660.893333pt;}
.y9a{bottom:661.373333pt;}
.yd6{bottom:661.853333pt;}
.y1b4{bottom:662.973333pt;}
.y4d{bottom:667.133333pt;}
.y158{bottom:671.453333pt;}
.yb0{bottom:671.773333pt;}
.y18d{bottom:674.333333pt;}
.y6f{bottom:675.133333pt;}
.y10{bottom:677.693333pt;}
.y1d8{bottom:678.813333pt;}
.y11e{bottom:679.773333pt;}
.y83{bottom:681.373333pt;}
.yc8{bottom:683.773333pt;}
.y2e{bottom:684.893333pt;}
.y1b3{bottom:687.773333pt;}
.ye5{bottom:689.373333pt;}
.y18c{bottom:691.293333pt;}
.y4c{bottom:694.653333pt;}
.y1d7{bottom:695.933333pt;}
.yaf{bottom:699.293333pt;}
.y171{bottom:700.413333pt;}
.yf{bottom:702.493333pt;}
.y6e{bottom:702.813333pt;}
.y1b2{bottom:704.733333pt;}
.y14c{bottom:707.293333pt;}
.y82{bottom:708.893333pt;}
.y11d{bottom:710.333333pt;}
.y2d{bottom:712.413333pt;}
.ybb{bottom:712.573333pt;}
.y18b{bottom:716.093333pt;}
.y101{bottom:717.053333pt;}
.ye{bottom:719.453333pt;}
.y1d6{bottom:720.573333pt;}
.y1b1{bottom:721.693333pt;}
.y4b{bottom:722.333333pt;}
.yae{bottom:726.973333pt;}
.y170{bottom:727.933333pt;}
.y6d{bottom:730.333333pt;}
.y18a{bottom:733.053333pt;}
.yd{bottom:736.253333pt;}
.y99{bottom:736.573333pt;}
.y1d5{bottom:737.693333pt;}
.y14b{bottom:737.853333pt;}
.y2c{bottom:740.093333pt;}
.yba{bottom:740.253333pt;}
.y100{bottom:744.573333pt;}
.y1b0{bottom:746.333333pt;}
.y4a{bottom:749.853333pt;}
.yc{bottom:753.213333pt;}
.yf3{bottom:754.493333pt;}
.yad{bottom:757.373333pt;}
.y6c{bottom:758.013333pt;}
.y16f{bottom:758.493333pt;}
.y1af{bottom:763.453333pt;}
.y98{bottom:764.093333pt;}
.y157{bottom:767.613333pt;}
.yb9{bottom:767.773333pt;}
.yb{bottom:770.013333pt;}
.y189{bottom:774.653333pt;}
.y49{bottom:777.533333pt;}
.y1d4{bottom:779.293333pt;}
.y153{bottom:779.933333pt;}
.y2b{bottom:780.893333pt;}
.y149{bottom:782.173333pt;}
.y6b{bottom:785.533333pt;}
.ya{bottom:786.973333pt;}
.y1ae{bottom:788.093333pt;}
.y188{bottom:791.613333pt;}
.y12c{bottom:791.773333pt;}
.y69{bottom:794.173333pt;}
.y156{bottom:795.293333pt;}
.yb8{bottom:795.453333pt;}
.y1d3{bottom:796.253333pt;}
.y9{bottom:803.773333pt;}
.y48{bottom:805.053333pt;}
.y16e{bottom:806.173333pt;}
.y2a{bottom:808.573333pt;}
.y148{bottom:809.733333pt;}
.yd5{bottom:813.253333pt;}
.y6a{bottom:816.133333pt;}
.y187{bottom:816.453333pt;}
.y152{bottom:818.533333pt;}
.y8{bottom:820.613333pt;}
.y1d2{bottom:820.933333pt;}
.y155{bottom:822.853333pt;}
.yb7{bottom:823.013333pt;}
.y1ad{bottom:829.893333pt;}
.y68{bottom:832.773333pt;}
.y186{bottom:833.413333pt;}
.y16d{bottom:833.733333pt;}
.y29{bottom:836.133333pt;}
.yff{bottom:840.773333pt;}
.yd4{bottom:843.813333pt;}
.y1d1{bottom:845.893333pt;}
.y47{bottom:846.053333pt;}
.y154{bottom:850.533333pt;}
.yb6{bottom:850.693333pt;}
.y7{bottom:854.373333pt;}
.y1ac{bottom:854.693333pt;}
.y185{bottom:858.053333pt;}
.y67{bottom:860.293333pt;}
.y28{bottom:863.813333pt;}
.y16c{bottom:864.293333pt;}
.y130{bottom:868.453333pt;}
.y1d0{bottom:870.693333pt;}
.yfe{bottom:871.333333pt;}
.y46{bottom:873.733333pt;}
.y184{bottom:875.173333pt;}
.y147{bottom:878.213333pt;}
.y1ab{bottom:879.653333pt;}
.yb5{bottom:881.253333pt;}
.y1cf{bottom:887.813333pt;}
.y66{bottom:887.973333pt;}
.y27{bottom:891.333333pt;}
.y1aa{bottom:896.613333pt;}
.y12f{bottom:899.013333pt;}
.y183{bottom:899.813333pt;}
.y45{bottom:901.253333pt;}
.y6{bottom:906.853333pt;}
.y146{bottom:908.773333pt;}
.y16b{bottom:911.973333pt;}
.y1ce{bottom:912.453333pt;}
.y65{bottom:915.493333pt;}
.y182{bottom:916.933333pt;}
.y136{bottom:917.893333pt;}
.y26{bottom:919.013333pt;}
.y1a9{bottom:921.253333pt;}
.y44{bottom:928.933333pt;}
.y1cd{bottom:929.413333pt;}
.y5{bottom:931.653333pt;}
.y181{bottom:933.733333pt;}
.y16a{bottom:939.653333pt;}
.y97{bottom:943.173333pt;}
.y1a8{bottom:946.213333pt;}
.y1cc{bottom:946.373333pt;}
.y25{bottom:946.533333pt;}
.y43{bottom:956.453333pt;}
.y180{bottom:958.373333pt;}
.y169{bottom:970.213333pt;}
.y1a7{bottom:971.013333pt;}
.y24{bottom:974.213333pt;}
.y17f{bottom:975.493333pt;}
.y4{bottom:982.213333pt;}
.y42{bottom:984.133333pt;}
.y1a6{bottom:988.133333pt;}
.y3{bottom:1006.693333pt;}
.y23{bottom:1009.093333pt;}
.y41{bottom:1011.653333pt;}
.y1a5{bottom:1012.773333pt;}
.y1{bottom:1062.880000pt;}
.h3{height:37.090625pt;}
.h2{height:38.828437pt;}
.h7{height:41.112500pt;}
.h8{height:41.543750pt;}
.h5{height:43.038750pt;}
.h9{height:44.687500pt;}
.ha{height:48.768750pt;}
.h6{height:52.832812pt;}
.h4{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:96.031988pt;}
.x3{left:117.151988pt;}
.xc{left:120.031988pt;}
.x8{left:144.026655pt;}
.xb{left:176.506655pt;}
.x6{left:287.906655pt;}
.x5{left:308.386655pt;}
.x4{left:363.746655pt;}
.x9{left:390.306655pt;}
.x2{left:393.506655pt;}
.x1{left:536.733322pt;}
.xa{left:687.013322pt;}
}




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