
    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_56620415ac9e75401634d8d2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_e36157da49bcfd40fb9385a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.435059;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_3911ce13c61ab87db9cd21b0.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d261ef5d8d67e18abb88ab60.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_63db004c29b4ba8939d54b1a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_59005a35e642e2dd2cde945c.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:14.400000px;}
.v1{vertical-align:18.720000px;}
.ls6{letter-spacing:-2.862000px;}
.lsf{letter-spacing:-1.206000px;}
.lse{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.015840px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.015840px;}
.lsb{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.190080px;}
.ls14{letter-spacing:0.234600px;}
.lsc{letter-spacing:0.250560px;}
.ls16{letter-spacing:0.273600px;}
.ls11{letter-spacing:0.469200px;}
.ls5{letter-spacing:0.501000px;}
.lsd{letter-spacing:0.665280px;}
.ls3{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.840000px;}
.ls17{letter-spacing:1.080000px;}
.ls7{letter-spacing:1.458000px;}
.lsa{letter-spacing:1.584000px;}
.ls1{letter-spacing:1.944000px;}
.ls13{letter-spacing:9.720000px;}
.ls9{letter-spacing:31.429440px;}
.ls12{letter-spacing:45.720000px;}
.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;}
}
.ws6{word-spacing:-13.464000px;}
.ws3{word-spacing:-13.338000px;}
.ws5{word-spacing:-12.600000px;}
.ws8{word-spacing:-12.545280px;}
.ws1{word-spacing:-12.381000px;}
.wsa{word-spacing:-12.349200px;}
.ws4{word-spacing:-11.895840px;}
.ws0{word-spacing:-11.880000px;}
.ws9{word-spacing:-11.864160px;}
.ws7{word-spacing:-11.160000px;}
.ws2{word-spacing:0.000000px;}
._21{margin-left:-6.363360px;}
._2{margin-left:-4.176000px;}
._0{margin-left:-2.592000px;}
._3{margin-left:-1.152000px;}
._1{width:1.368000px;}
._5{width:2.982720px;}
._6{width:4.202880px;}
._8{width:5.914080px;}
._7{width:6.943680px;}
._9{width:8.030880px;}
._a{width:9.630720px;}
._b{width:10.680480px;}
._c{width:11.964960px;}
._e{width:13.448160px;}
._d{width:14.788800px;}
._20{width:16.463520px;}
._1a{width:18.828000px;}
._18{width:20.291040px;}
._29{width:22.031040px;}
._19{width:23.142240px;}
._1b{width:25.074720px;}
._38{width:26.209440px;}
._26{width:27.514080px;}
._23{width:28.878720px;}
._11{width:30.566880px;}
._f{width:31.610880px;}
._10{width:32.781120px;}
._1d{width:34.283520px;}
._37{width:36.491040px;}
._39{width:40.412160px;}
._24{width:41.490720px;}
._25{width:42.588000px;}
._22{width:47.995200px;}
._12{width:50.726880px;}
._14{width:52.135680px;}
._13{width:53.618400px;}
._35{width:55.121760px;}
._34{width:56.468160px;}
._36{width:57.598080px;}
._15{width:58.829760px;}
._4{width:61.551840px;}
._2d{width:68.471040px;}
._2c{width:71.198400px;}
._28{width:73.881120px;}
._1f{width:78.952320px;}
._2a{width:83.062560px;}
._33{width:98.991360px;}
._31{width:102.458880px;}
._16{width:104.163840px;}
._32{width:105.202080px;}
._1c{width:130.109760px;}
._1e{width:133.911360px;}
._17{width:139.908960px;}
._30{width:175.717440px;}
._2f{width:177.354720px;}
._2e{width:179.112960px;}
._2b{width:203.616000px;}
._27{width:205.024800px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.240000px;}
.fs1{font-size:47.520000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:16.560000px;}
.y83{bottom:16.920000px;}
.y8d{bottom:16.950000px;}
.y95{bottom:17.274000px;}
.y80{bottom:17.280000px;}
.y84{bottom:32.760000px;}
.y8e{bottom:32.790000px;}
.y96{bottom:33.114000px;}
.y81{bottom:33.120000px;}
.y89{bottom:33.165000px;}
.y85{bottom:48.600000px;}
.y91{bottom:48.630000px;}
.y93{bottom:48.960000px;}
.y87{bottom:48.990000px;}
.y8b{bottom:49.005000px;}
.y90{bottom:64.470000px;}
.y8a{bottom:64.845000px;}
.y8f{bottom:80.310000px;}
.yb5{bottom:115.236000px;}
.yfc{bottom:118.836000px;}
.y6d{bottom:130.716000px;}
.yb4{bottom:131.076000px;}
.yfb{bottom:134.676000px;}
.y13a{bottom:141.516000px;}
.y94{bottom:144.036000px;}
.y6c{bottom:146.556000px;}
.y36{bottom:150.150000px;}
.yb3{bottom:159.150000px;}
.yfa{bottom:162.390000px;}
.y6b{bottom:162.750000px;}
.y11b{bottom:165.990000px;}
.y35{bottom:166.350000px;}
.y139{bottom:169.590000px;}
.yb2{bottom:174.990000px;}
.y34{bottom:182.190000px;}
.y6a{bottom:190.470000px;}
.yb1{bottom:190.830000px;}
.y11a{bottom:194.115000px;}
.y138{bottom:197.355000px;}
.y33{bottom:198.075000px;}
.y69{bottom:206.355000px;}
.yb0{bottom:206.715000px;}
.y119{bottom:209.955000px;}
.ydd{bottom:214.275000px;}
.y92{bottom:215.715000px;}
.y68{bottom:222.195000px;}
.y137{bottom:225.435000px;}
.y32{bottom:225.795000px;}
.yaf{bottom:234.795000px;}
.y118{bottom:237.675000px;}
.yf9{bottom:238.035000px;}
.y136{bottom:241.275000px;}
.y31{bottom:241.635000px;}
.ydc{bottom:241.995000px;}
.y67{bottom:249.915000px;}
.yae{bottom:250.635000px;}
.y117{bottom:253.515000px;}
.y30{bottom:257.475000px;}
.ydb{bottom:257.835000px;}
.yf8{bottom:266.115000px;}
.yad{bottom:266.475000px;}
.y135{bottom:268.995000px;}
.y2f{bottom:273.315000px;}
.yda{bottom:273.675000px;}
.y66{bottom:277.995000px;}
.y116{bottom:281.595000px;}
.yf7{bottom:281.955000px;}
.yac{bottom:282.315000px;}
.y152{bottom:285.195000px;}
.yd9{bottom:289.515000px;}
.y65{bottom:293.835000px;}
.y134{bottom:297.075000px;}
.y115{bottom:297.435000px;}
.yf6{bottom:297.795000px;}
.yab{bottom:298.155000px;}
.y151{bottom:301.035000px;}
.y2e{bottom:301.395000px;}
.y8c{bottom:303.195000px;}
.y64{bottom:309.675000px;}
.y133{bottom:312.915000px;}
.yf5{bottom:313.635000px;}
.y2d{bottom:317.235000px;}
.yd8{bottom:317.595000px;}
.y114{bottom:325.185000px;}
.yaa{bottom:325.905000px;}
.y132{bottom:328.785000px;}
.y150{bottom:329.145000px;}
.yf4{bottom:329.505000px;}
.y2c{bottom:333.105000px;}
.yd7{bottom:333.465000px;}
.y63{bottom:337.425000px;}
.y113{bottom:341.025000px;}
.ya9{bottom:341.745000px;}
.y14f{bottom:344.985000px;}
.yd6{bottom:349.305000px;}
.y62{bottom:353.625000px;}
.y131{bottom:356.505000px;}
.yf3{bottom:357.225000px;}
.ya8{bottom:357.585000px;}
.y2b{bottom:360.825000px;}
.y112{bottom:369.105000px;}
.y61{bottom:369.465000px;}
.y130{bottom:372.345000px;}
.y14e{bottom:372.705000px;}
.yf2{bottom:373.065000px;}
.ya7{bottom:373.785000px;}
.y2a{bottom:376.665000px;}
.yd5{bottom:377.025000px;}
.y111{bottom:384.945000px;}
.y60{bottom:385.305000px;}
.y14d{bottom:388.545000px;}
.yf1{bottom:388.905000px;}
.ya6{bottom:389.625000px;}
.y29{bottom:392.505000px;}
.yd4{bottom:392.865000px;}
.y12f{bottom:400.425000px;}
.yf0{bottom:405.105000px;}
.y28{bottom:408.705000px;}
.y110{bottom:412.665000px;}
.y5f{bottom:413.025000px;}
.y12e{bottom:416.265000px;}
.y14c{bottom:416.625000px;}
.ya5{bottom:417.345000px;}
.yd3{bottom:420.945000px;}
.y88{bottom:422.025000px;}
.y27{bottom:424.545000px;}
.y10f{bottom:428.505000px;}
.y5e{bottom:428.865000px;}
.y14b{bottom:432.465000px;}
.yef{bottom:432.825000px;}
.ya4{bottom:433.185000px;}
.yd2{bottom:436.785000px;}
.y12d{bottom:443.985000px;}
.y5d{bottom:444.705000px;}
.yee{bottom:448.710000px;}
.ya3{bottom:449.070000px;}
.y26{bottom:452.310000px;}
.yd1{bottom:452.670000px;}
.y10e{bottom:456.270000px;}
.y12c{bottom:459.870000px;}
.y14a{bottom:460.230000px;}
.y5c{bottom:460.590000px;}
.yed{bottom:464.550000px;}
.ya2{bottom:464.910000px;}
.y25{bottom:468.150000px;}
.yd0{bottom:468.510000px;}
.y12b{bottom:475.710000px;}
.y149{bottom:476.070000px;}
.ya1{bottom:480.750000px;}
.y24{bottom:483.990000px;}
.y10d{bottom:484.350000px;}
.y5b{bottom:488.670000px;}
.yec{bottom:492.630000px;}
.ycf{bottom:496.230000px;}
.y23{bottom:499.830000px;}
.y10c{bottom:500.190000px;}
.y12a{bottom:503.790000px;}
.y148{bottom:504.150000px;}
.y5a{bottom:504.510000px;}
.yeb{bottom:508.470000px;}
.ya0{bottom:508.830000px;}
.yce{bottom:512.070000px;}
.y10b{bottom:516.030000px;}
.y129{bottom:519.630000px;}
.y147{bottom:519.990000px;}
.y59{bottom:520.350000px;}
.yea{bottom:524.310000px;}
.y86{bottom:525.390000px;}
.y22{bottom:527.910000px;}
.y10a{bottom:531.870000px;}
.y9f{bottom:533.670000px;}
.y58{bottom:536.190000px;}
.ye9{bottom:540.150000px;}
.y21{bottom:543.750000px;}
.y128{bottom:547.350000px;}
.y109{bottom:547.710000px;}
.y57{bottom:552.030000px;}
.ycd{bottom:555.990000px;}
.y20{bottom:559.590000px;}
.y127{bottom:563.190000px;}
.y108{bottom:563.550000px;}
.ye8{bottom:567.870000px;}
.ycc{bottom:571.830000px;}
.y1f{bottom:575.460000px;}
.y107{bottom:579.420000px;}
.y56{bottom:580.140000px;}
.ye7{bottom:583.740000px;}
.ycb{bottom:587.700000px;}
.y1e{bottom:591.300000px;}
.y106{bottom:595.620000px;}
.y55{bottom:595.980000px;}
.ye6{bottom:599.580000px;}
.y105{bottom:611.460000px;}
.y54{bottom:611.820000px;}
.y82{bottom:612.900000px;}
.yca{bottom:615.420000px;}
.y1d{bottom:619.020000px;}
.y9e{bottom:621.180000px;}
.y104{bottom:627.300000px;}
.y53{bottom:627.660000px;}
.yc9{bottom:631.620000px;}
.y126{bottom:634.860000px;}
.y1c{bottom:635.220000px;}
.y103{bottom:643.140000px;}
.y52{bottom:643.500000px;}
.yc8{bottom:647.460000px;}
.y1b{bottom:651.060000px;}
.y146{bottom:658.980000px;}
.y125{bottom:662.940000px;}
.yc7{bottom:663.300000px;}
.y1a{bottom:666.900000px;}
.y102{bottom:670.500000px;}
.y51{bottom:671.220000px;}
.ye5{bottom:675.180000px;}
.y124{bottom:678.780000px;}
.y19{bottom:682.740000px;}
.y145{bottom:686.700000px;}
.y50{bottom:687.060000px;}
.yc6{bottom:691.020000px;}
.y9d{bottom:692.820000px;}
.y101{bottom:698.970000px;}
.y7f{bottom:700.050000px;}
.y144{bottom:702.570000px;}
.y4f{bottom:702.930000px;}
.y123{bottom:706.530000px;}
.yc5{bottom:706.890000px;}
.y18{bottom:710.130000px;}
.y4e{bottom:719.130000px;}
.y122{bottom:722.370000px;}
.yc4{bottom:722.730000px;}
.y100{bottom:726.330000px;}
.y143{bottom:730.650000px;}
.y17{bottom:738.570000px;}
.y142{bottom:746.490000px;}
.y4d{bottom:746.850000px;}
.y121{bottom:750.450000px;}
.yc3{bottom:750.810000px;}
.ye4{bottom:754.410000px;}
.y4c{bottom:762.690000px;}
.y9c{bottom:764.130000px;}
.y16{bottom:766.290000px;}
.yc2{bottom:766.650000px;}
.y7d{bottom:767.370000px;}
.yff{bottom:770.250000px;}
.y141{bottom:774.210000px;}
.y4b{bottom:778.530000px;}
.y15{bottom:782.130000px;}
.yc1{bottom:782.490000px;}
.y140{bottom:790.050000px;}
.y120{bottom:794.010000px;}
.y4a{bottom:794.370000px;}
.y14{bottom:797.970000px;}
.yc0{bottom:798.330000px;}
.y49{bottom:810.210000px;}
.y13{bottom:813.810000px;}
.ye3{bottom:814.170000px;}
.y13f{bottom:818.130000px;}
.y7c{bottom:821.370000px;}
.y11f{bottom:821.730000px;}
.ybf{bottom:826.095000px;}
.y12{bottom:829.695000px;}
.ye2{bottom:830.055000px;}
.y13e{bottom:834.015000px;}
.y9b{bottom:835.815000px;}
.y11e{bottom:837.975000px;}
.y48{bottom:838.335000px;}
.ybe{bottom:841.935000px;}
.y11{bottom:845.535000px;}
.ye1{bottom:845.895000px;}
.y7b{bottom:849.855000px;}
.y47{bottom:854.175000px;}
.ybd{bottom:857.775000px;}
.y10{bottom:861.375000px;}
.ye0{bottom:861.735000px;}
.y7a{bottom:865.695000px;}
.y46{bottom:870.015000px;}
.ybc{bottom:873.975000px;}
.yf{bottom:877.575000px;}
.y79{bottom:881.535000px;}
.y45{bottom:885.855000px;}
.ydf{bottom:889.455000px;}
.ye{bottom:893.415000px;}
.y78{bottom:897.375000px;}
.yfe{bottom:901.335000px;}
.y44{bottom:901.695000px;}
.y9a{bottom:907.095000px;}
.yd{bottom:909.255000px;}
.ybb{bottom:917.535000px;}
.y13d{bottom:921.495000px;}
.y77{bottom:925.095000px;}
.y11d{bottom:925.455000px;}
.y43{bottom:929.415000px;}
.yba{bottom:933.375000px;}
.yc{bottom:936.615000px;}
.y13c{bottom:937.335000px;}
.y42{bottom:945.255000px;}
.yb9{bottom:949.215000px;}
.y76{bottom:953.205000px;}
.y41{bottom:961.485000px;}
.yb{bottom:964.725000px;}
.yde{bottom:965.085000px;}
.y75{bottom:969.045000px;}
.y40{bottom:977.325000px;}
.ya{bottom:978.405000px;}
.y99{bottom:978.765000px;}
.y13b{bottom:980.925000px;}
.y74{bottom:984.885000px;}
.y3f{bottom:993.165000px;}
.y9{bottom:996.765000px;}
.yb8{bottom:1009.005000px;}
.y8{bottom:1010.445000px;}
.y73{bottom:1012.965000px;}
.y3e{bottom:1020.885000px;}
.y7{bottom:1024.125000px;}
.yb7{bottom:1024.845000px;}
.y72{bottom:1028.805000px;}
.y3d{bottom:1036.725000px;}
.y6{bottom:1038.525000px;}
.y11c{bottom:1040.685000px;}
.y98{bottom:1050.045000px;}
.y5{bottom:1052.205000px;}
.y3c{bottom:1052.565000px;}
.y71{bottom:1056.525000px;}
.y3b{bottom:1068.405000px;}
.y4{bottom:1070.205000px;}
.y70{bottom:1072.365000px;}
.y3{bottom:1079.250000px;}
.yfd{bottom:1080.690000px;}
.yb6{bottom:1084.290000px;}
.y3a{bottom:1096.530000px;}
.y6f{bottom:1100.490000px;}
.y39{bottom:1112.370000px;}
.y2{bottom:1114.530000px;}
.y6e{bottom:1116.330000px;}
.y97{bottom:1117.410000px;}
.y38{bottom:1128.210000px;}
.y1{bottom:1138.290000px;}
.y37{bottom:1144.050000px;}
.h9{height:27.720000px;}
.h5{height:31.480313px;}
.h6{height:33.180469px;}
.h13{height:39.166875px;}
.h11{height:43.560000px;}
.h12{height:43.596000px;}
.ha{height:43.920000px;}
.h10{height:43.956000px;}
.h7{height:45.481955px;}
.h8{height:48.843072px;}
.h4{height:49.469062px;}
.h2{height:50.800781px;}
.hb{height:59.400000px;}
.hf{height:59.760000px;}
.hc{height:59.796000px;}
.h3{height:74.953125px;}
.hd{height:75.636000px;}
.he{height:91.116000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:53.676000px;}
.w6{width:74.160000px;}
.w5{width:108.036000px;}
.w7{width:175.755000px;}
.w4{width:263.625000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xb{left:13.680000px;}
.x9{left:108.035987px;}
.x1{left:127.475987px;}
.x5{left:138.635987px;}
.xc{left:161.715000px;}
.xa{left:242.024987px;}
.x8{left:275.504987px;}
.x6{left:293.144987px;}
.x7{left:328.469987px;}
.x2{left:378.149987px;}
.x3{left:395.789987px;}
.xd{left:425.340000px;}
.x4{left:446.579987px;}
.xe{left:533.370000px;}
.xf{left:607.530000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:12.800000pt;}
.v1{vertical-align:16.640000pt;}
.ls6{letter-spacing:-2.544000pt;}
.lsf{letter-spacing:-1.072000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.014080pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.014080pt;}
.lsb{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.168960pt;}
.ls14{letter-spacing:0.208533pt;}
.lsc{letter-spacing:0.222720pt;}
.ls16{letter-spacing:0.243200pt;}
.ls11{letter-spacing:0.417067pt;}
.ls5{letter-spacing:0.445333pt;}
.lsd{letter-spacing:0.591360pt;}
.ls3{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.746667pt;}
.ls17{letter-spacing:0.960000pt;}
.ls7{letter-spacing:1.296000pt;}
.lsa{letter-spacing:1.408000pt;}
.ls1{letter-spacing:1.728000pt;}
.ls13{letter-spacing:8.640000pt;}
.ls9{letter-spacing:27.937280pt;}
.ls12{letter-spacing:40.640000pt;}
.ws6{word-spacing:-11.968000pt;}
.ws3{word-spacing:-11.856000pt;}
.ws5{word-spacing:-11.200000pt;}
.ws8{word-spacing:-11.151360pt;}
.ws1{word-spacing:-11.005333pt;}
.wsa{word-spacing:-10.977067pt;}
.ws4{word-spacing:-10.574080pt;}
.ws0{word-spacing:-10.560000pt;}
.ws9{word-spacing:-10.545920pt;}
.ws7{word-spacing:-9.920000pt;}
.ws2{word-spacing:0.000000pt;}
._21{margin-left:-5.656320pt;}
._2{margin-left:-3.712000pt;}
._0{margin-left:-2.304000pt;}
._3{margin-left:-1.024000pt;}
._1{width:1.216000pt;}
._5{width:2.651307pt;}
._6{width:3.735893pt;}
._8{width:5.256960pt;}
._7{width:6.172160pt;}
._9{width:7.138560pt;}
._a{width:8.560640pt;}
._b{width:9.493760pt;}
._c{width:10.635520pt;}
._e{width:11.953920pt;}
._d{width:13.145600pt;}
._20{width:14.634240pt;}
._1a{width:16.736000pt;}
._18{width:18.036480pt;}
._29{width:19.583147pt;}
._19{width:20.570880pt;}
._1b{width:22.288640pt;}
._38{width:23.297280pt;}
._26{width:24.456960pt;}
._23{width:25.669973pt;}
._11{width:27.170560pt;}
._f{width:28.098560pt;}
._10{width:29.138773pt;}
._1d{width:30.474240pt;}
._37{width:32.436480pt;}
._39{width:35.921920pt;}
._24{width:36.880640pt;}
._25{width:37.856000pt;}
._22{width:42.662400pt;}
._12{width:45.090560pt;}
._14{width:46.342827pt;}
._13{width:47.660800pt;}
._35{width:48.997120pt;}
._34{width:50.193920pt;}
._36{width:51.198293pt;}
._15{width:52.293120pt;}
._4{width:54.712747pt;}
._2d{width:60.863147pt;}
._2c{width:63.287467pt;}
._28{width:65.672107pt;}
._1f{width:70.179840pt;}
._2a{width:73.833387pt;}
._33{width:87.992320pt;}
._31{width:91.074560pt;}
._16{width:92.590080pt;}
._32{width:93.512960pt;}
._1c{width:115.653120pt;}
._1e{width:119.032320pt;}
._17{width:124.363520pt;}
._30{width:156.193280pt;}
._2f{width:157.648640pt;}
._2e{width:159.211520pt;}
._2b{width:180.992000pt;}
._27{width:182.244267pt;}
.fs2{font-size:26.880000pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:14.720000pt;}
.y83{bottom:15.040000pt;}
.y8d{bottom:15.066667pt;}
.y95{bottom:15.354667pt;}
.y80{bottom:15.360000pt;}
.y84{bottom:29.120000pt;}
.y8e{bottom:29.146667pt;}
.y96{bottom:29.434667pt;}
.y81{bottom:29.440000pt;}
.y89{bottom:29.480000pt;}
.y85{bottom:43.200000pt;}
.y91{bottom:43.226667pt;}
.y93{bottom:43.520000pt;}
.y87{bottom:43.546667pt;}
.y8b{bottom:43.560000pt;}
.y90{bottom:57.306667pt;}
.y8a{bottom:57.640000pt;}
.y8f{bottom:71.386667pt;}
.yb5{bottom:102.432000pt;}
.yfc{bottom:105.632000pt;}
.y6d{bottom:116.192000pt;}
.yb4{bottom:116.512000pt;}
.yfb{bottom:119.712000pt;}
.y13a{bottom:125.792000pt;}
.y94{bottom:128.032000pt;}
.y6c{bottom:130.272000pt;}
.y36{bottom:133.466667pt;}
.yb3{bottom:141.466667pt;}
.yfa{bottom:144.346667pt;}
.y6b{bottom:144.666667pt;}
.y11b{bottom:147.546667pt;}
.y35{bottom:147.866667pt;}
.y139{bottom:150.746667pt;}
.yb2{bottom:155.546667pt;}
.y34{bottom:161.946667pt;}
.y6a{bottom:169.306667pt;}
.yb1{bottom:169.626667pt;}
.y11a{bottom:172.546667pt;}
.y138{bottom:175.426667pt;}
.y33{bottom:176.066667pt;}
.y69{bottom:183.426667pt;}
.yb0{bottom:183.746667pt;}
.y119{bottom:186.626667pt;}
.ydd{bottom:190.466667pt;}
.y92{bottom:191.746667pt;}
.y68{bottom:197.506667pt;}
.y137{bottom:200.386667pt;}
.y32{bottom:200.706667pt;}
.yaf{bottom:208.706667pt;}
.y118{bottom:211.266667pt;}
.yf9{bottom:211.586667pt;}
.y136{bottom:214.466667pt;}
.y31{bottom:214.786667pt;}
.ydc{bottom:215.106667pt;}
.y67{bottom:222.146667pt;}
.yae{bottom:222.786667pt;}
.y117{bottom:225.346667pt;}
.y30{bottom:228.866667pt;}
.ydb{bottom:229.186667pt;}
.yf8{bottom:236.546667pt;}
.yad{bottom:236.866667pt;}
.y135{bottom:239.106667pt;}
.y2f{bottom:242.946667pt;}
.yda{bottom:243.266667pt;}
.y66{bottom:247.106667pt;}
.y116{bottom:250.306667pt;}
.yf7{bottom:250.626667pt;}
.yac{bottom:250.946667pt;}
.y152{bottom:253.506667pt;}
.yd9{bottom:257.346667pt;}
.y65{bottom:261.186667pt;}
.y134{bottom:264.066667pt;}
.y115{bottom:264.386667pt;}
.yf6{bottom:264.706667pt;}
.yab{bottom:265.026667pt;}
.y151{bottom:267.586667pt;}
.y2e{bottom:267.906667pt;}
.y8c{bottom:269.506667pt;}
.y64{bottom:275.266667pt;}
.y133{bottom:278.146667pt;}
.yf5{bottom:278.786667pt;}
.y2d{bottom:281.986667pt;}
.yd8{bottom:282.306667pt;}
.y114{bottom:289.053333pt;}
.yaa{bottom:289.693333pt;}
.y132{bottom:292.253333pt;}
.y150{bottom:292.573333pt;}
.yf4{bottom:292.893333pt;}
.y2c{bottom:296.093333pt;}
.yd7{bottom:296.413333pt;}
.y63{bottom:299.933333pt;}
.y113{bottom:303.133333pt;}
.ya9{bottom:303.773333pt;}
.y14f{bottom:306.653333pt;}
.yd6{bottom:310.493333pt;}
.y62{bottom:314.333333pt;}
.y131{bottom:316.893333pt;}
.yf3{bottom:317.533333pt;}
.ya8{bottom:317.853333pt;}
.y2b{bottom:320.733333pt;}
.y112{bottom:328.093333pt;}
.y61{bottom:328.413333pt;}
.y130{bottom:330.973333pt;}
.y14e{bottom:331.293333pt;}
.yf2{bottom:331.613333pt;}
.ya7{bottom:332.253333pt;}
.y2a{bottom:334.813333pt;}
.yd5{bottom:335.133333pt;}
.y111{bottom:342.173333pt;}
.y60{bottom:342.493333pt;}
.y14d{bottom:345.373333pt;}
.yf1{bottom:345.693333pt;}
.ya6{bottom:346.333333pt;}
.y29{bottom:348.893333pt;}
.yd4{bottom:349.213333pt;}
.y12f{bottom:355.933333pt;}
.yf0{bottom:360.093333pt;}
.y28{bottom:363.293333pt;}
.y110{bottom:366.813333pt;}
.y5f{bottom:367.133333pt;}
.y12e{bottom:370.013333pt;}
.y14c{bottom:370.333333pt;}
.ya5{bottom:370.973333pt;}
.yd3{bottom:374.173333pt;}
.y88{bottom:375.133333pt;}
.y27{bottom:377.373333pt;}
.y10f{bottom:380.893333pt;}
.y5e{bottom:381.213333pt;}
.y14b{bottom:384.413333pt;}
.yef{bottom:384.733333pt;}
.ya4{bottom:385.053333pt;}
.yd2{bottom:388.253333pt;}
.y12d{bottom:394.653333pt;}
.y5d{bottom:395.293333pt;}
.yee{bottom:398.853333pt;}
.ya3{bottom:399.173333pt;}
.y26{bottom:402.053333pt;}
.yd1{bottom:402.373333pt;}
.y10e{bottom:405.573333pt;}
.y12c{bottom:408.773333pt;}
.y14a{bottom:409.093333pt;}
.y5c{bottom:409.413333pt;}
.yed{bottom:412.933333pt;}
.ya2{bottom:413.253333pt;}
.y25{bottom:416.133333pt;}
.yd0{bottom:416.453333pt;}
.y12b{bottom:422.853333pt;}
.y149{bottom:423.173333pt;}
.ya1{bottom:427.333333pt;}
.y24{bottom:430.213333pt;}
.y10d{bottom:430.533333pt;}
.y5b{bottom:434.373333pt;}
.yec{bottom:437.893333pt;}
.ycf{bottom:441.093333pt;}
.y23{bottom:444.293333pt;}
.y10c{bottom:444.613333pt;}
.y12a{bottom:447.813333pt;}
.y148{bottom:448.133333pt;}
.y5a{bottom:448.453333pt;}
.yeb{bottom:451.973333pt;}
.ya0{bottom:452.293333pt;}
.yce{bottom:455.173333pt;}
.y10b{bottom:458.693333pt;}
.y129{bottom:461.893333pt;}
.y147{bottom:462.213333pt;}
.y59{bottom:462.533333pt;}
.yea{bottom:466.053333pt;}
.y86{bottom:467.013333pt;}
.y22{bottom:469.253333pt;}
.y10a{bottom:472.773333pt;}
.y9f{bottom:474.373333pt;}
.y58{bottom:476.613333pt;}
.ye9{bottom:480.133333pt;}
.y21{bottom:483.333333pt;}
.y128{bottom:486.533333pt;}
.y109{bottom:486.853333pt;}
.y57{bottom:490.693333pt;}
.ycd{bottom:494.213333pt;}
.y20{bottom:497.413333pt;}
.y127{bottom:500.613333pt;}
.y108{bottom:500.933333pt;}
.ye8{bottom:504.773333pt;}
.ycc{bottom:508.293333pt;}
.y1f{bottom:511.520000pt;}
.y107{bottom:515.040000pt;}
.y56{bottom:515.680000pt;}
.ye7{bottom:518.880000pt;}
.ycb{bottom:522.400000pt;}
.y1e{bottom:525.600000pt;}
.y106{bottom:529.440000pt;}
.y55{bottom:529.760000pt;}
.ye6{bottom:532.960000pt;}
.y105{bottom:543.520000pt;}
.y54{bottom:543.840000pt;}
.y82{bottom:544.800000pt;}
.yca{bottom:547.040000pt;}
.y1d{bottom:550.240000pt;}
.y9e{bottom:552.160000pt;}
.y104{bottom:557.600000pt;}
.y53{bottom:557.920000pt;}
.yc9{bottom:561.440000pt;}
.y126{bottom:564.320000pt;}
.y1c{bottom:564.640000pt;}
.y103{bottom:571.680000pt;}
.y52{bottom:572.000000pt;}
.yc8{bottom:575.520000pt;}
.y1b{bottom:578.720000pt;}
.y146{bottom:585.760000pt;}
.y125{bottom:589.280000pt;}
.yc7{bottom:589.600000pt;}
.y1a{bottom:592.800000pt;}
.y102{bottom:596.000000pt;}
.y51{bottom:596.640000pt;}
.ye5{bottom:600.160000pt;}
.y124{bottom:603.360000pt;}
.y19{bottom:606.880000pt;}
.y145{bottom:610.400000pt;}
.y50{bottom:610.720000pt;}
.yc6{bottom:614.240000pt;}
.y9d{bottom:615.840000pt;}
.y101{bottom:621.306667pt;}
.y7f{bottom:622.266667pt;}
.y144{bottom:624.506667pt;}
.y4f{bottom:624.826667pt;}
.y123{bottom:628.026667pt;}
.yc5{bottom:628.346667pt;}
.y18{bottom:631.226667pt;}
.y4e{bottom:639.226667pt;}
.y122{bottom:642.106667pt;}
.yc4{bottom:642.426667pt;}
.y100{bottom:645.626667pt;}
.y143{bottom:649.466667pt;}
.y17{bottom:656.506667pt;}
.y142{bottom:663.546667pt;}
.y4d{bottom:663.866667pt;}
.y121{bottom:667.066667pt;}
.yc3{bottom:667.386667pt;}
.ye4{bottom:670.586667pt;}
.y4c{bottom:677.946667pt;}
.y9c{bottom:679.226667pt;}
.y16{bottom:681.146667pt;}
.yc2{bottom:681.466667pt;}
.y7d{bottom:682.106667pt;}
.yff{bottom:684.666667pt;}
.y141{bottom:688.186667pt;}
.y4b{bottom:692.026667pt;}
.y15{bottom:695.226667pt;}
.yc1{bottom:695.546667pt;}
.y140{bottom:702.266667pt;}
.y120{bottom:705.786667pt;}
.y4a{bottom:706.106667pt;}
.y14{bottom:709.306667pt;}
.yc0{bottom:709.626667pt;}
.y49{bottom:720.186667pt;}
.y13{bottom:723.386667pt;}
.ye3{bottom:723.706667pt;}
.y13f{bottom:727.226667pt;}
.y7c{bottom:730.106667pt;}
.y11f{bottom:730.426667pt;}
.ybf{bottom:734.306667pt;}
.y12{bottom:737.506667pt;}
.ye2{bottom:737.826667pt;}
.y13e{bottom:741.346667pt;}
.y9b{bottom:742.946667pt;}
.y11e{bottom:744.866667pt;}
.y48{bottom:745.186667pt;}
.ybe{bottom:748.386667pt;}
.y11{bottom:751.586667pt;}
.ye1{bottom:751.906667pt;}
.y7b{bottom:755.426667pt;}
.y47{bottom:759.266667pt;}
.ybd{bottom:762.466667pt;}
.y10{bottom:765.666667pt;}
.ye0{bottom:765.986667pt;}
.y7a{bottom:769.506667pt;}
.y46{bottom:773.346667pt;}
.ybc{bottom:776.866667pt;}
.yf{bottom:780.066667pt;}
.y79{bottom:783.586667pt;}
.y45{bottom:787.426667pt;}
.ydf{bottom:790.626667pt;}
.ye{bottom:794.146667pt;}
.y78{bottom:797.666667pt;}
.yfe{bottom:801.186667pt;}
.y44{bottom:801.506667pt;}
.y9a{bottom:806.306667pt;}
.yd{bottom:808.226667pt;}
.ybb{bottom:815.586667pt;}
.y13d{bottom:819.106667pt;}
.y77{bottom:822.306667pt;}
.y11d{bottom:822.626667pt;}
.y43{bottom:826.146667pt;}
.yba{bottom:829.666667pt;}
.yc{bottom:832.546667pt;}
.y13c{bottom:833.186667pt;}
.y42{bottom:840.226667pt;}
.yb9{bottom:843.746667pt;}
.y76{bottom:847.293333pt;}
.y41{bottom:854.653333pt;}
.yb{bottom:857.533333pt;}
.yde{bottom:857.853333pt;}
.y75{bottom:861.373333pt;}
.y40{bottom:868.733333pt;}
.ya{bottom:869.693333pt;}
.y99{bottom:870.013333pt;}
.y13b{bottom:871.933333pt;}
.y74{bottom:875.453333pt;}
.y3f{bottom:882.813333pt;}
.y9{bottom:886.013333pt;}
.yb8{bottom:896.893333pt;}
.y8{bottom:898.173333pt;}
.y73{bottom:900.413333pt;}
.y3e{bottom:907.453333pt;}
.y7{bottom:910.333333pt;}
.yb7{bottom:910.973333pt;}
.y72{bottom:914.493333pt;}
.y3d{bottom:921.533333pt;}
.y6{bottom:923.133333pt;}
.y11c{bottom:925.053333pt;}
.y98{bottom:933.373333pt;}
.y5{bottom:935.293333pt;}
.y3c{bottom:935.613333pt;}
.y71{bottom:939.133333pt;}
.y3b{bottom:949.693333pt;}
.y4{bottom:951.293333pt;}
.y70{bottom:953.213333pt;}
.y3{bottom:959.333333pt;}
.yfd{bottom:960.613333pt;}
.yb6{bottom:963.813333pt;}
.y3a{bottom:974.693333pt;}
.y6f{bottom:978.213333pt;}
.y39{bottom:988.773333pt;}
.y2{bottom:990.693333pt;}
.y6e{bottom:992.293333pt;}
.y97{bottom:993.253333pt;}
.y38{bottom:1002.853333pt;}
.y1{bottom:1011.813333pt;}
.y37{bottom:1016.933333pt;}
.h9{height:24.640000pt;}
.h5{height:27.982500pt;}
.h6{height:29.493750pt;}
.h13{height:34.815000pt;}
.h11{height:38.720000pt;}
.h12{height:38.752000pt;}
.ha{height:39.040000pt;}
.h10{height:39.072000pt;}
.h7{height:40.428404pt;}
.h8{height:43.416064pt;}
.h4{height:43.972500pt;}
.h2{height:45.156250pt;}
.hb{height:52.800000pt;}
.hf{height:53.120000pt;}
.hc{height:53.152000pt;}
.h3{height:66.625000pt;}
.hd{height:67.232000pt;}
.he{height:80.992000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:47.712000pt;}
.w6{width:65.920000pt;}
.w5{width:96.032000pt;}
.w7{width:156.226667pt;}
.w4{width:234.333333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xb{left:12.160000pt;}
.x9{left:96.031988pt;}
.x1{left:113.311988pt;}
.x5{left:123.231988pt;}
.xc{left:143.746667pt;}
.xa{left:215.133322pt;}
.x8{left:244.893322pt;}
.x6{left:260.573322pt;}
.x7{left:291.973322pt;}
.x2{left:336.133322pt;}
.x3{left:351.813322pt;}
.xd{left:378.080000pt;}
.x4{left:396.959988pt;}
.xe{left:474.106667pt;}
.xf{left:540.026667pt;}
}




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