
    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_566c87e8eb8ccb802f65f898.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6d84325f67adc31f397436f9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c70f9ecbb1bef6ab9a3908db.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fe5c2701451b0ed3523d2f84.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_c049c7c28c7c6305f0e9ee86.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_81fea407125205fd854cae8d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-2.160000px;}
.lsc{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.ls9{letter-spacing:-0.460200px;}
.ls12{letter-spacing:-0.385800px;}
.lsa{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.334200px;}
.lsd{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.206400px;}
.ls4{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.051840px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.334200px;}
.ls14{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:4.320000px;}
.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;}
}
.wsd{word-spacing:-41.760000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.856000px;}
.wsa{word-spacing:-16.669200px;}
.wsb{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.254600px;}
.wse{word-spacing:-16.174200px;}
.ws10{word-spacing:-15.840000px;}
.wsf{word-spacing:-15.505800px;}
.ws8{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.680200px;}
.ws9{word-spacing:-14.580000px;}
.ws11{word-spacing:-14.220000px;}
.ws12{word-spacing:-13.860000px;}
.ws2{word-spacing:-12.060000px;}
.ws3{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._15{margin-left:-5.014080px;}
._16{margin-left:-3.908160px;}
._12{margin-left:-2.858400px;}
._0{margin-left:-1.324800px;}
._1{width:1.092000px;}
._6{width:2.509920px;}
._5{width:3.748560px;}
._4{width:5.378400px;}
._8{width:6.780000px;}
._a{width:7.828560px;}
._9{width:9.083520px;}
._3{width:10.099440px;}
._2{width:11.234880px;}
._11{width:12.354000px;}
._17{width:14.241600px;}
._14{width:15.497760px;}
._13{width:17.138160px;}
._c{width:18.451440px;}
._b{width:19.720800px;}
._1a{width:20.792160px;}
._e{width:21.796080px;}
._18{width:23.103360px;}
._10{width:24.143040px;}
._f{width:25.338240px;}
._d{width:30.716640px;}
._7{width:32.688720px;}
._19{width:41.817600px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs9{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs8{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y34{bottom:3.240000px;}
.yf4{bottom:5.760000px;}
.yef{bottom:5.940000px;}
.yf1{bottom:11.700000px;}
.yf6{bottom:11.880000px;}
.y11{bottom:14.400000px;}
.yed{bottom:17.505000px;}
.yf2{bottom:20.340000px;}
.yf7{bottom:20.520000px;}
.y18{bottom:21.240000px;}
.y33{bottom:29.520000px;}
.yff{bottom:37.620000px;}
.y17{bottom:38.520000px;}
.y32{bottom:46.800000px;}
.y16{bottom:55.650000px;}
.y31{bottom:64.080000px;}
.y15{bottom:72.930000px;}
.y30{bottom:81.360000px;}
.y14{bottom:90.210000px;}
.y19{bottom:95.430000px;}
.y2f{bottom:98.460000px;}
.y13{bottom:105.150000px;}
.y2e{bottom:115.740000px;}
.y2d{bottom:133.020000px;}
.y2c{bottom:150.345000px;}
.y130{bottom:162.750000px;}
.y76{bottom:166.170000px;}
.y2b{bottom:167.625000px;}
.yea{bottom:171.570000px;}
.y104{bottom:171.930000px;}
.y12f{bottom:179.130000px;}
.yc5{bottom:183.450000px;}
.y2a{bottom:184.905000px;}
.y75{bottom:185.070000px;}
.y40{bottom:188.850000px;}
.ye9{bottom:189.750000px;}
.y103{bottom:199.110000px;}
.y12e{bottom:200.010000px;}
.y29{bottom:202.005000px;}
.y74{bottom:204.150000px;}
.ya4{bottom:205.230000px;}
.yc4{bottom:207.210000px;}
.ye8{bottom:207.750000px;}
.y3f{bottom:207.930000px;}
.y12d{bottom:216.390000px;}
.y28{bottom:219.285000px;}
.ye7{bottom:225.930000px;}
.y102{bottom:226.110000px;}
.y73{bottom:227.370000px;}
.y3b{bottom:228.465000px;}
.ya3{bottom:232.230000px;}
.y12c{bottom:232.770000px;}
.y3e{bottom:235.650000px;}
.y27{bottom:236.565000px;}
.ye6{bottom:244.110000px;}
.y3a{bottom:245.565000px;}
.y72{bottom:246.630000px;}
.y101{bottom:249.870000px;}
.ya2{bottom:250.410000px;}
.y12b{bottom:253.650000px;}
.y26{bottom:253.845000px;}
.y3d{bottom:254.370000px;}
.y39{bottom:262.845000px;}
.y71{bottom:265.530000px;}
.ya1{bottom:268.590000px;}
.y12a{bottom:270.030000px;}
.y1a{bottom:270.570000px;}
.y25{bottom:271.125000px;}
.ye5{bottom:271.290000px;}
.y38{bottom:280.125000px;}
.y70{bottom:284.610000px;}
.y129{bottom:286.410000px;}
.ya0{bottom:286.770000px;}
.y24{bottom:288.405000px;}
.y37{bottom:297.405000px;}
.ye4{bottom:299.010000px;}
.y6f{bottom:303.510000px;}
.y9f{bottom:304.770000px;}
.y23{bottom:305.505000px;}
.y128{bottom:307.290000px;}
.y36{bottom:314.685000px;}
.ye3{bottom:317.190000px;}
.y3c{bottom:319.905000px;}
.y6e{bottom:322.410000px;}
.y22{bottom:322.785000px;}
.y9e{bottom:322.950000px;}
.y127{bottom:323.850000px;}
.y35{bottom:329.625000px;}
.ye2{bottom:335.370000px;}
.y21{bottom:340.065000px;}
.y126{bottom:340.230000px;}
.y9d{bottom:340.950000px;}
.y6d{bottom:341.490000px;}
.ye1{bottom:353.550000px;}
.y20{bottom:357.345000px;}
.y9c{bottom:359.130000px;}
.y6c{bottom:360.390000px;}
.y125{bottom:361.110000px;}
.ye0{bottom:371.550000px;}
.y1f{bottom:374.625000px;}
.y124{bottom:377.490000px;}
.y6b{bottom:379.470000px;}
.y9b{bottom:386.310000px;}
.y1e{bottom:391.755000px;}
.y123{bottom:393.870000px;}
.y6a{bottom:398.370000px;}
.ydf{bottom:398.550000px;}
.y1d{bottom:409.035000px;}
.y9a{bottom:414.255000px;}
.y122{bottom:414.795000px;}
.y69{bottom:417.315000px;}
.yde{bottom:422.355000px;}
.y1c{bottom:426.315000px;}
.y121{bottom:431.175000px;}
.y99{bottom:432.435000px;}
.y68{bottom:436.395000px;}
.y1b{bottom:441.255000px;}
.y120{bottom:447.555000px;}
.y98{bottom:450.435000px;}
.y67{bottom:455.295000px;}
.y11f{bottom:468.435000px;}
.y97{bottom:468.615000px;}
.y66{bottom:474.375000px;}
.y11e{bottom:484.815000px;}
.y96{bottom:486.795000px;}
.yc3{bottom:487.515000px;}
.y65{bottom:493.275000px;}
.y11d{bottom:501.195000px;}
.y95{bottom:504.795000px;}
.yc2{bottom:505.695000px;}
.y153{bottom:511.815000px;}
.y64{bottom:512.175000px;}
.y11c{bottom:522.075000px;}
.y100{bottom:522.975000px;}
.yc1{bottom:523.695000px;}
.y152{bottom:528.195000px;}
.y63{bottom:531.255000px;}
.y94{bottom:531.975000px;}
.y11b{bottom:538.455000px;}
.y151{bottom:549.075000px;}
.y62{bottom:550.155000px;}
.yc0{bottom:550.875000px;}
.y11a{bottom:554.835000px;}
.yfe{bottom:557.535000px;}
.y93{bottom:560.055000px;}
.y150{bottom:565.455000px;}
.y61{bottom:569.235000px;}
.y119{bottom:575.715000px;}
.ybf{bottom:578.955000px;}
.y14f{bottom:581.835000px;}
.y60{bottom:588.135000px;}
.y118{bottom:592.095000px;}
.y92{bottom:596.955000px;}
.y14e{bottom:602.715000px;}
.y12{bottom:606.675000px;}
.y5f{bottom:607.035000px;}
.yfd{bottom:609.195000px;}
.y117{bottom:612.975000px;}
.y91{bottom:616.035000px;}
.y14d{bottom:619.095000px;}
.ybe{bottom:624.855000px;}
.y5e{bottom:626.115000px;}
.y116{bottom:629.355000px;}
.yfc{bottom:631.695000px;}
.y90{bottom:635.115000px;}
.y14c{bottom:635.475000px;}
.ybd{bottom:643.035000px;}
.y115{bottom:645.735000px;}
.y5d{bottom:649.335000px;}
.y8f{bottom:654.045000px;}
.y14b{bottom:656.565000px;}
.ybc{bottom:661.065000px;}
.yfb{bottom:666.285000px;}
.y114{bottom:666.645000px;}
.y5c{bottom:668.625000px;}
.y14a{bottom:672.945000px;}
.y8e{bottom:677.445000px;}
.ybb{bottom:679.245000px;}
.y113{bottom:683.025000px;}
.y5b{bottom:687.525000px;}
.y149{bottom:689.325000px;}
.y8d{bottom:696.525000px;}
.yba{bottom:697.425000px;}
.ydd{bottom:697.965000px;}
.y112{bottom:699.405000px;}
.yfa{bottom:700.845000px;}
.y5a{bottom:706.425000px;}
.y148{bottom:710.205000px;}
.y8c{bottom:715.425000px;}
.y111{bottom:715.785000px;}
.ydc{bottom:716.145000px;}
.y10{bottom:718.305000px;}
.yf9{bottom:723.345000px;}
.y59{bottom:725.505000px;}
.y147{bottom:726.585000px;}
.ydb{bottom:734.325000px;}
.y8b{bottom:734.505000px;}
.y110{bottom:736.665000px;}
.yb9{bottom:742.605000px;}
.y146{bottom:742.965000px;}
.y58{bottom:744.405000px;}
.yda{bottom:752.505000px;}
.y10f{bottom:753.045000px;}
.y8a{bottom:753.405000px;}
.yf8{bottom:757.725000px;}
.y145{bottom:759.345000px;}
.yb8{bottom:760.785000px;}
.yf{bottom:762.765000px;}
.y57{bottom:763.485000px;}
.y10e{bottom:769.425000px;}
.yd9{bottom:770.505000px;}
.y89{bottom:772.485000px;}
.yb7{bottom:778.785000px;}
.ye{bottom:780.045000px;}
.y144{bottom:780.225000px;}
.y56{bottom:782.385000px;}
.yd8{bottom:788.685000px;}
.y10d{bottom:790.305000px;}
.y88{bottom:791.385000px;}
.yf5{bottom:792.285000px;}
.y143{bottom:796.605000px;}
.yb6{bottom:796.965000px;}
.yd{bottom:797.325000px;}
.y55{bottom:801.465000px;}
.y10c{bottom:806.685000px;}
.yd7{bottom:806.865000px;}
.y87{bottom:810.465000px;}
.y142{bottom:812.985000px;}
.yc{bottom:814.605000px;}
.yb5{bottom:814.965000px;}
.y54{bottom:820.365000px;}
.y10b{bottom:823.065000px;}
.yd6{bottom:824.865000px;}
.yf3{bottom:826.845000px;}
.y86{bottom:829.365000px;}
.yb{bottom:832.785000px;}
.yb4{bottom:833.145000px;}
.y141{bottom:833.865000px;}
.y53{bottom:839.265000px;}
.y85{bottom:848.265000px;}
.yf0{bottom:849.345000px;}
.y140{bottom:850.245000px;}
.yb3{bottom:851.325000px;}
.yd5{bottom:852.045000px;}
.ya{bottom:856.185000px;}
.y10a{bottom:857.985000px;}
.y52{bottom:858.345000px;}
.y13f{bottom:866.625000px;}
.y84{bottom:867.345000px;}
.yb2{bottom:869.325000px;}
.y9{bottom:874.185000px;}
.y51{bottom:877.245000px;}
.yd4{bottom:879.945000px;}
.yec{bottom:884.445000px;}
.y109{bottom:885.885000px;}
.y83{bottom:886.245000px;}
.yb1{bottom:887.505000px;}
.y50{bottom:896.325000px;}
.yd3{bottom:898.125000px;}
.y13e{bottom:903.930000px;}
.y82{bottom:905.370000px;}
.yb0{bottom:905.550000px;}
.y8{bottom:905.730000px;}
.yee{bottom:907.710000px;}
.y108{bottom:914.010000px;}
.y4f{bottom:915.270000px;}
.yd2{bottom:916.170000px;}
.y13d{bottom:920.310000px;}
.y81{bottom:924.270000px;}
.yaf{bottom:932.730000px;}
.y4e{bottom:934.170000px;}
.yd1{bottom:934.350000px;}
.y13c{bottom:941.190000px;}
.y107{bottom:941.730000px;}
.y80{bottom:943.170000px;}
.yeb{bottom:943.350000px;}
.y7{bottom:944.430000px;}
.yd0{bottom:952.530000px;}
.y4d{bottom:953.250000px;}
.y13b{bottom:957.570000px;}
.y106{bottom:959.910000px;}
.yae{bottom:960.630000px;}
.y7f{bottom:962.250000px;}
.y6{bottom:965.130000px;}
.ycf{bottom:970.530000px;}
.y13a{bottom:973.950000px;}
.y4c{bottom:976.470000px;}
.yad{bottom:978.810000px;}
.y7e{bottom:981.150000px;}
.y105{bottom:987.090000px;}
.yce{bottom:988.710000px;}
.y139{bottom:994.830000px;}
.y4b{bottom:995.730000px;}
.yac{bottom:996.990000px;}
.y7d{bottom:1000.230000px;}
.y5{bottom:1003.830000px;}
.ycd{bottom:1006.890000px;}
.y138{bottom:1011.210000px;}
.y4a{bottom:1014.630000px;}
.yab{bottom:1014.990000px;}
.y7c{bottom:1019.130000px;}
.ycc{bottom:1024.890000px;}
.y137{bottom:1027.590000px;}
.yaa{bottom:1033.170000px;}
.y49{bottom:1033.530000px;}
.y7b{bottom:1038.030000px;}
.y4{bottom:1038.570000px;}
.ycb{bottom:1043.070000px;}
.y136{bottom:1048.470000px;}
.ya9{bottom:1051.350000px;}
.y48{bottom:1052.610000px;}
.y7a{bottom:1057.110000px;}
.yca{bottom:1061.070000px;}
.y135{bottom:1064.850000px;}
.ya8{bottom:1069.350000px;}
.y47{bottom:1071.510000px;}
.y79{bottom:1076.010000px;}
.yc9{bottom:1079.250000px;}
.y134{bottom:1081.230000px;}
.ya7{bottom:1087.530000px;}
.y46{bottom:1090.590000px;}
.y78{bottom:1095.090000px;}
.yc8{bottom:1097.430000px;}
.y133{bottom:1102.110000px;}
.ya6{bottom:1105.530000px;}
.y45{bottom:1113.810000px;}
.y77{bottom:1113.990000px;}
.yc7{bottom:1115.430000px;}
.y132{bottom:1118.490000px;}
.ya5{bottom:1132.710000px;}
.y44{bottom:1132.890000px;}
.yc6{bottom:1133.610000px;}
.y131{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y43{bottom:1169.460000px;}
.y42{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y41{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.hc{height:17.657227px;}
.h13{height:22.500000px;}
.h14{height:22.536000px;}
.h15{height:34.380000px;}
.h16{height:34.560000px;}
.h17{height:34.596000px;}
.h9{height:40.500000px;}
.h1b{height:41.132461px;}
.h5{height:41.304375px;}
.h12{height:45.756000px;}
.h18{height:51.660000px;}
.h1a{height:55.824609px;}
.hd{height:58.621992px;}
.h7{height:58.651172px;}
.h8{height:60.226875px;}
.h6{height:62.184375px;}
.h19{height:63.855000px;}
.h2{height:65.010937px;}
.ha{height:66.757500px;}
.h10{height:70.664062px;}
.h4{height:72.562500px;}
.h3{height:96.508125px;}
.hb{height:109.476000px;}
.h11{height:153.341016px;}
.hf{height:333.750000px;}
.he{height:445.575000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w6{width:69.660000px;}
.wb{width:83.196000px;}
.w9{width:86.256000px;}
.wa{width:176.220000px;}
.wc{width:213.870000px;}
.w3{width:237.810000px;}
.w7{width:262.470000px;}
.w8{width:297.075000px;}
.w5{width:407.055000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x13{left:17.640000px;}
.x1f{left:20.910000px;}
.x1e{left:22.500000px;}
.x1a{left:24.150000px;}
.x18{left:25.560000px;}
.x21{left:28.080000px;}
.x17{left:29.370000px;}
.x1d{left:31.134000px;}
.x19{left:33.660000px;}
.x22{left:41.610000px;}
.x20{left:43.020000px;}
.x1c{left:52.380000px;}
.x15{left:61.380000px;}
.x5{left:108.035987px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.xc{left:160.949987px;}
.xa{left:185.430000px;}
.x14{left:201.810000px;}
.x11{left:203.429987px;}
.xf{left:217.289987px;}
.x12{left:287.534987px;}
.x3{left:314.354987px;}
.x8{left:360.615000px;}
.xd{left:375.374987px;}
.x9{left:378.255000px;}
.x16{left:464.295000px;}
.x1b{left:547.485000px;}
.x10{left:662.009987px;}
.x23{left:678.389987px;}
.xe{left:681.809987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-1.920000pt;}
.lsc{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.ls9{letter-spacing:-0.409067pt;}
.ls12{letter-spacing:-0.342933pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.297067pt;}
.lsd{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls4{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.046080pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.297067pt;}
.ls14{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:3.840000pt;}
.wsd{word-spacing:-37.120000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.872000pt;}
.wsa{word-spacing:-14.817067pt;}
.wsb{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.377067pt;}
.ws10{word-spacing:-14.080000pt;}
.wsf{word-spacing:-13.782933pt;}
.ws8{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.049067pt;}
.ws9{word-spacing:-12.960000pt;}
.ws11{word-spacing:-12.640000pt;}
.ws12{word-spacing:-12.320000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._15{margin-left:-4.456960pt;}
._16{margin-left:-3.473920pt;}
._12{margin-left:-2.540800pt;}
._0{margin-left:-1.177600pt;}
._1{width:0.970667pt;}
._6{width:2.231040pt;}
._5{width:3.332053pt;}
._4{width:4.780800pt;}
._8{width:6.026667pt;}
._a{width:6.958720pt;}
._9{width:8.074240pt;}
._3{width:8.977280pt;}
._2{width:9.986560pt;}
._11{width:10.981333pt;}
._17{width:12.659200pt;}
._14{width:13.775787pt;}
._13{width:15.233920pt;}
._c{width:16.401280pt;}
._b{width:17.529600pt;}
._1a{width:18.481920pt;}
._e{width:19.374293pt;}
._18{width:20.536320pt;}
._10{width:21.460480pt;}
._f{width:22.522880pt;}
._d{width:27.303680pt;}
._7{width:29.056640pt;}
._19{width:37.171200pt;}
.fs7{font-size:16.000000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs9{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs8{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:2.880000pt;}
.yf4{bottom:5.120000pt;}
.yef{bottom:5.280000pt;}
.yf1{bottom:10.400000pt;}
.yf6{bottom:10.560000pt;}
.y11{bottom:12.800000pt;}
.yed{bottom:15.560000pt;}
.yf2{bottom:18.080000pt;}
.yf7{bottom:18.240000pt;}
.y18{bottom:18.880000pt;}
.y33{bottom:26.240000pt;}
.yff{bottom:33.440000pt;}
.y17{bottom:34.240000pt;}
.y32{bottom:41.600000pt;}
.y16{bottom:49.466667pt;}
.y31{bottom:56.960000pt;}
.y15{bottom:64.826667pt;}
.y30{bottom:72.320000pt;}
.y14{bottom:80.186667pt;}
.y19{bottom:84.826667pt;}
.y2f{bottom:87.520000pt;}
.y13{bottom:93.466667pt;}
.y2e{bottom:102.880000pt;}
.y2d{bottom:118.240000pt;}
.y2c{bottom:133.640000pt;}
.y130{bottom:144.666667pt;}
.y76{bottom:147.706667pt;}
.y2b{bottom:149.000000pt;}
.yea{bottom:152.506667pt;}
.y104{bottom:152.826667pt;}
.y12f{bottom:159.226667pt;}
.yc5{bottom:163.066667pt;}
.y2a{bottom:164.360000pt;}
.y75{bottom:164.506667pt;}
.y40{bottom:167.866667pt;}
.ye9{bottom:168.666667pt;}
.y103{bottom:176.986667pt;}
.y12e{bottom:177.786667pt;}
.y29{bottom:179.560000pt;}
.y74{bottom:181.466667pt;}
.ya4{bottom:182.426667pt;}
.yc4{bottom:184.186667pt;}
.ye8{bottom:184.666667pt;}
.y3f{bottom:184.826667pt;}
.y12d{bottom:192.346667pt;}
.y28{bottom:194.920000pt;}
.ye7{bottom:200.826667pt;}
.y102{bottom:200.986667pt;}
.y73{bottom:202.106667pt;}
.y3b{bottom:203.080000pt;}
.ya3{bottom:206.426667pt;}
.y12c{bottom:206.906667pt;}
.y3e{bottom:209.466667pt;}
.y27{bottom:210.280000pt;}
.ye6{bottom:216.986667pt;}
.y3a{bottom:218.280000pt;}
.y72{bottom:219.226667pt;}
.y101{bottom:222.106667pt;}
.ya2{bottom:222.586667pt;}
.y12b{bottom:225.466667pt;}
.y26{bottom:225.640000pt;}
.y3d{bottom:226.106667pt;}
.y39{bottom:233.640000pt;}
.y71{bottom:236.026667pt;}
.ya1{bottom:238.746667pt;}
.y12a{bottom:240.026667pt;}
.y1a{bottom:240.506667pt;}
.y25{bottom:241.000000pt;}
.ye5{bottom:241.146667pt;}
.y38{bottom:249.000000pt;}
.y70{bottom:252.986667pt;}
.y129{bottom:254.586667pt;}
.ya0{bottom:254.906667pt;}
.y24{bottom:256.360000pt;}
.y37{bottom:264.360000pt;}
.ye4{bottom:265.786667pt;}
.y6f{bottom:269.786667pt;}
.y9f{bottom:270.906667pt;}
.y23{bottom:271.560000pt;}
.y128{bottom:273.146667pt;}
.y36{bottom:279.720000pt;}
.ye3{bottom:281.946667pt;}
.y3c{bottom:284.360000pt;}
.y6e{bottom:286.586667pt;}
.y22{bottom:286.920000pt;}
.y9e{bottom:287.066667pt;}
.y127{bottom:287.866667pt;}
.y35{bottom:293.000000pt;}
.ye2{bottom:298.106667pt;}
.y21{bottom:302.280000pt;}
.y126{bottom:302.426667pt;}
.y9d{bottom:303.066667pt;}
.y6d{bottom:303.546667pt;}
.ye1{bottom:314.266667pt;}
.y20{bottom:317.640000pt;}
.y9c{bottom:319.226667pt;}
.y6c{bottom:320.346667pt;}
.y125{bottom:320.986667pt;}
.ye0{bottom:330.266667pt;}
.y1f{bottom:333.000000pt;}
.y124{bottom:335.546667pt;}
.y6b{bottom:337.306667pt;}
.y9b{bottom:343.386667pt;}
.y1e{bottom:348.226667pt;}
.y123{bottom:350.106667pt;}
.y6a{bottom:354.106667pt;}
.ydf{bottom:354.266667pt;}
.y1d{bottom:363.586667pt;}
.y9a{bottom:368.226667pt;}
.y122{bottom:368.706667pt;}
.y69{bottom:370.946667pt;}
.yde{bottom:375.426667pt;}
.y1c{bottom:378.946667pt;}
.y121{bottom:383.266667pt;}
.y99{bottom:384.386667pt;}
.y68{bottom:387.906667pt;}
.y1b{bottom:392.226667pt;}
.y120{bottom:397.826667pt;}
.y98{bottom:400.386667pt;}
.y67{bottom:404.706667pt;}
.y11f{bottom:416.386667pt;}
.y97{bottom:416.546667pt;}
.y66{bottom:421.666667pt;}
.y11e{bottom:430.946667pt;}
.y96{bottom:432.706667pt;}
.yc3{bottom:433.346667pt;}
.y65{bottom:438.466667pt;}
.y11d{bottom:445.506667pt;}
.y95{bottom:448.706667pt;}
.yc2{bottom:449.506667pt;}
.y153{bottom:454.946667pt;}
.y64{bottom:455.266667pt;}
.y11c{bottom:464.066667pt;}
.y100{bottom:464.866667pt;}
.yc1{bottom:465.506667pt;}
.y152{bottom:469.506667pt;}
.y63{bottom:472.226667pt;}
.y94{bottom:472.866667pt;}
.y11b{bottom:478.626667pt;}
.y151{bottom:488.066667pt;}
.y62{bottom:489.026667pt;}
.yc0{bottom:489.666667pt;}
.y11a{bottom:493.186667pt;}
.yfe{bottom:495.586667pt;}
.y93{bottom:497.826667pt;}
.y150{bottom:502.626667pt;}
.y61{bottom:505.986667pt;}
.y119{bottom:511.746667pt;}
.ybf{bottom:514.626667pt;}
.y14f{bottom:517.186667pt;}
.y60{bottom:522.786667pt;}
.y118{bottom:526.306667pt;}
.y92{bottom:530.626667pt;}
.y14e{bottom:535.746667pt;}
.y12{bottom:539.266667pt;}
.y5f{bottom:539.586667pt;}
.yfd{bottom:541.506667pt;}
.y117{bottom:544.866667pt;}
.y91{bottom:547.586667pt;}
.y14d{bottom:550.306667pt;}
.ybe{bottom:555.426667pt;}
.y5e{bottom:556.546667pt;}
.y116{bottom:559.426667pt;}
.yfc{bottom:561.506667pt;}
.y90{bottom:564.546667pt;}
.y14c{bottom:564.866667pt;}
.ybd{bottom:571.586667pt;}
.y115{bottom:573.986667pt;}
.y5d{bottom:577.186667pt;}
.y8f{bottom:581.373333pt;}
.y14b{bottom:583.613333pt;}
.ybc{bottom:587.613333pt;}
.yfb{bottom:592.253333pt;}
.y114{bottom:592.573333pt;}
.y5c{bottom:594.333333pt;}
.y14a{bottom:598.173333pt;}
.y8e{bottom:602.173333pt;}
.ybb{bottom:603.773333pt;}
.y113{bottom:607.133333pt;}
.y5b{bottom:611.133333pt;}
.y149{bottom:612.733333pt;}
.y8d{bottom:619.133333pt;}
.yba{bottom:619.933333pt;}
.ydd{bottom:620.413333pt;}
.y112{bottom:621.693333pt;}
.yfa{bottom:622.973333pt;}
.y5a{bottom:627.933333pt;}
.y148{bottom:631.293333pt;}
.y8c{bottom:635.933333pt;}
.y111{bottom:636.253333pt;}
.ydc{bottom:636.573333pt;}
.y10{bottom:638.493333pt;}
.yf9{bottom:642.973333pt;}
.y59{bottom:644.893333pt;}
.y147{bottom:645.853333pt;}
.ydb{bottom:652.733333pt;}
.y8b{bottom:652.893333pt;}
.y110{bottom:654.813333pt;}
.yb9{bottom:660.093333pt;}
.y146{bottom:660.413333pt;}
.y58{bottom:661.693333pt;}
.yda{bottom:668.893333pt;}
.y10f{bottom:669.373333pt;}
.y8a{bottom:669.693333pt;}
.yf8{bottom:673.533333pt;}
.y145{bottom:674.973333pt;}
.yb8{bottom:676.253333pt;}
.yf{bottom:678.013333pt;}
.y57{bottom:678.653333pt;}
.y10e{bottom:683.933333pt;}
.yd9{bottom:684.893333pt;}
.y89{bottom:686.653333pt;}
.yb7{bottom:692.253333pt;}
.ye{bottom:693.373333pt;}
.y144{bottom:693.533333pt;}
.y56{bottom:695.453333pt;}
.yd8{bottom:701.053333pt;}
.y10d{bottom:702.493333pt;}
.y88{bottom:703.453333pt;}
.yf5{bottom:704.253333pt;}
.y143{bottom:708.093333pt;}
.yb6{bottom:708.413333pt;}
.yd{bottom:708.733333pt;}
.y55{bottom:712.413333pt;}
.y10c{bottom:717.053333pt;}
.yd7{bottom:717.213333pt;}
.y87{bottom:720.413333pt;}
.y142{bottom:722.653333pt;}
.yc{bottom:724.093333pt;}
.yb5{bottom:724.413333pt;}
.y54{bottom:729.213333pt;}
.y10b{bottom:731.613333pt;}
.yd6{bottom:733.213333pt;}
.yf3{bottom:734.973333pt;}
.y86{bottom:737.213333pt;}
.yb{bottom:740.253333pt;}
.yb4{bottom:740.573333pt;}
.y141{bottom:741.213333pt;}
.y53{bottom:746.013333pt;}
.y85{bottom:754.013333pt;}
.yf0{bottom:754.973333pt;}
.y140{bottom:755.773333pt;}
.yb3{bottom:756.733333pt;}
.yd5{bottom:757.373333pt;}
.ya{bottom:761.053333pt;}
.y10a{bottom:762.653333pt;}
.y52{bottom:762.973333pt;}
.y13f{bottom:770.333333pt;}
.y84{bottom:770.973333pt;}
.yb2{bottom:772.733333pt;}
.y9{bottom:777.053333pt;}
.y51{bottom:779.773333pt;}
.yd4{bottom:782.173333pt;}
.yec{bottom:786.173333pt;}
.y109{bottom:787.453333pt;}
.y83{bottom:787.773333pt;}
.yb1{bottom:788.893333pt;}
.y50{bottom:796.733333pt;}
.yd3{bottom:798.333333pt;}
.y13e{bottom:803.493333pt;}
.y82{bottom:804.773333pt;}
.yb0{bottom:804.933333pt;}
.y8{bottom:805.093333pt;}
.yee{bottom:806.853333pt;}
.y108{bottom:812.453333pt;}
.y4f{bottom:813.573333pt;}
.yd2{bottom:814.373333pt;}
.y13d{bottom:818.053333pt;}
.y81{bottom:821.573333pt;}
.yaf{bottom:829.093333pt;}
.y4e{bottom:830.373333pt;}
.yd1{bottom:830.533333pt;}
.y13c{bottom:836.613333pt;}
.y107{bottom:837.093333pt;}
.y80{bottom:838.373333pt;}
.yeb{bottom:838.533333pt;}
.y7{bottom:839.493333pt;}
.yd0{bottom:846.693333pt;}
.y4d{bottom:847.333333pt;}
.y13b{bottom:851.173333pt;}
.y106{bottom:853.253333pt;}
.yae{bottom:853.893333pt;}
.y7f{bottom:855.333333pt;}
.y6{bottom:857.893333pt;}
.ycf{bottom:862.693333pt;}
.y13a{bottom:865.733333pt;}
.y4c{bottom:867.973333pt;}
.yad{bottom:870.053333pt;}
.y7e{bottom:872.133333pt;}
.y105{bottom:877.413333pt;}
.yce{bottom:878.853333pt;}
.y139{bottom:884.293333pt;}
.y4b{bottom:885.093333pt;}
.yac{bottom:886.213333pt;}
.y7d{bottom:889.093333pt;}
.y5{bottom:892.293333pt;}
.ycd{bottom:895.013333pt;}
.y138{bottom:898.853333pt;}
.y4a{bottom:901.893333pt;}
.yab{bottom:902.213333pt;}
.y7c{bottom:905.893333pt;}
.ycc{bottom:911.013333pt;}
.y137{bottom:913.413333pt;}
.yaa{bottom:918.373333pt;}
.y49{bottom:918.693333pt;}
.y7b{bottom:922.693333pt;}
.y4{bottom:923.173333pt;}
.ycb{bottom:927.173333pt;}
.y136{bottom:931.973333pt;}
.ya9{bottom:934.533333pt;}
.y48{bottom:935.653333pt;}
.y7a{bottom:939.653333pt;}
.yca{bottom:943.173333pt;}
.y135{bottom:946.533333pt;}
.ya8{bottom:950.533333pt;}
.y47{bottom:952.453333pt;}
.y79{bottom:956.453333pt;}
.yc9{bottom:959.333333pt;}
.y134{bottom:961.093333pt;}
.ya7{bottom:966.693333pt;}
.y46{bottom:969.413333pt;}
.y78{bottom:973.413333pt;}
.yc8{bottom:975.493333pt;}
.y133{bottom:979.653333pt;}
.ya6{bottom:982.693333pt;}
.y45{bottom:990.053333pt;}
.y77{bottom:990.213333pt;}
.yc7{bottom:991.493333pt;}
.y132{bottom:994.213333pt;}
.ya5{bottom:1006.853333pt;}
.y44{bottom:1007.013333pt;}
.yc6{bottom:1007.653333pt;}
.y131{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y43{bottom:1039.520000pt;}
.y42{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y41{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.hc{height:15.695312pt;}
.h13{height:20.000000pt;}
.h14{height:20.032000pt;}
.h15{height:30.560000pt;}
.h16{height:30.720000pt;}
.h17{height:30.752000pt;}
.h9{height:36.000000pt;}
.h1b{height:36.562188pt;}
.h5{height:36.715000pt;}
.h12{height:40.672000pt;}
.h18{height:45.920000pt;}
.h1a{height:49.621875pt;}
.hd{height:52.108438pt;}
.h7{height:52.134375pt;}
.h8{height:53.535000pt;}
.h6{height:55.275000pt;}
.h19{height:56.760000pt;}
.h2{height:57.787500pt;}
.ha{height:59.340000pt;}
.h10{height:62.812500pt;}
.h4{height:64.500000pt;}
.h3{height:85.785000pt;}
.hb{height:97.312000pt;}
.h11{height:136.303125pt;}
.hf{height:296.666667pt;}
.he{height:396.066667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w6{width:61.920000pt;}
.wb{width:73.952000pt;}
.w9{width:76.672000pt;}
.wa{width:156.640000pt;}
.wc{width:190.106667pt;}
.w3{width:211.386667pt;}
.w7{width:233.306667pt;}
.w8{width:264.066667pt;}
.w5{width:361.826667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x13{left:15.680000pt;}
.x1f{left:18.586667pt;}
.x1e{left:20.000000pt;}
.x1a{left:21.466667pt;}
.x18{left:22.720000pt;}
.x21{left:24.960000pt;}
.x17{left:26.106667pt;}
.x1d{left:27.674667pt;}
.x19{left:29.920000pt;}
.x22{left:36.986667pt;}
.x20{left:38.240000pt;}
.x1c{left:46.560000pt;}
.x15{left:54.560000pt;}
.x5{left:96.031988pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.xc{left:143.066655pt;}
.xa{left:164.826667pt;}
.x14{left:179.386667pt;}
.x11{left:180.826655pt;}
.xf{left:193.146655pt;}
.x12{left:255.586655pt;}
.x3{left:279.426655pt;}
.x8{left:320.546667pt;}
.xd{left:333.666655pt;}
.x9{left:336.226667pt;}
.x16{left:412.706667pt;}
.x1b{left:486.653333pt;}
.x10{left:588.453322pt;}
.x23{left:603.013322pt;}
.xe{left:606.053322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
}




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