
    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_966de893158cd32dfcfb56e6.woff')format("woff");}.ff1{font-family:ff1;line-height:1.111000;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_7c21ad1b957f6d9cceb5b409.woff')format("woff");}.ff2{font-family:ff2;line-height:1.055000;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_3298674954616c466f34c724.woff')format("woff");}.ff3{font-family:ff3;line-height:1.111000;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff4{font-family:ff4;line-height:1.003906;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_27d3d77e786661bf3617d5d8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.119000;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_75db79f9d529bade16d4a816.woff')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_1643884e13f4d2481d815615.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_0c4dc8438b5d07533c065492.woff')format("woff");}.ff8{font-family:ff8;line-height:1.014000;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);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-1.062000px;}
.ls13{letter-spacing:-0.780000px;}
.ls17{letter-spacing:-0.726000px;}
.lsa{letter-spacing:-0.636000px;}
.ls1c{letter-spacing:-0.600000px;}
.ls18{letter-spacing:-0.512400px;}
.ls20{letter-spacing:-0.460800px;}
.lsc{letter-spacing:-0.406200px;}
.ls11{letter-spacing:-0.328200px;}
.ls7{letter-spacing:-0.259200px;}
.ls1b{letter-spacing:-0.241800px;}
.ls9{letter-spacing:-0.224400px;}
.ls5{letter-spacing:-0.178800px;}
.ls6{letter-spacing:-0.117600px;}
.ls1{letter-spacing:-0.100800px;}
.ls1a{letter-spacing:-0.057600px;}
.ls12{letter-spacing:-0.020160px;}
.ls0{letter-spacing:0.000000px;}
.ls21{letter-spacing:0.030960px;}
.lsb{letter-spacing:0.083400px;}
.lsf{letter-spacing:0.100800px;}
.ls1f{letter-spacing:0.198600px;}
.lsd{letter-spacing:0.207600px;}
.ls8{letter-spacing:0.222000px;}
.ls19{letter-spacing:0.224640px;}
.ls10{letter-spacing:0.259200px;}
.ls16{letter-spacing:0.299400px;}
.ls3{letter-spacing:0.299520px;}
.ls1e{letter-spacing:0.356400px;}
.ls15{letter-spacing:0.357000px;}
.ls4{letter-spacing:0.541200px;}
.ls2{letter-spacing:0.618000px;}
.ls14{letter-spacing:53.585280px;}
.lse{letter-spacing:848.821440px;}
.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;}
}
.ws10{word-spacing:-66.240000px;}
.ws0{word-spacing:-21.565440px;}
.ws11{word-spacing:-17.256840px;}
.wsb{word-spacing:-17.165040px;}
.ws16{word-spacing:-17.156040px;}
.ws6{word-spacing:-16.957440px;}
.wse{word-spacing:-16.937280px;}
.ws13{word-spacing:-16.899840px;}
.ws8{word-spacing:-16.733040px;}
.ws14{word-spacing:-16.715640px;}
.ws5{word-spacing:-16.698240px;}
.wsc{word-spacing:-16.629240px;}
.wsa{word-spacing:-16.551240px;}
.ws7{word-spacing:-16.318320px;}
.ws12{word-spacing:-16.231440px;}
.wsf{word-spacing:-16.177440px;}
.ws9{word-spacing:-16.096320px;}
.ws2{word-spacing:-15.916560px;}
.ws18{word-spacing:-15.500160px;}
.ws4{word-spacing:-15.298560px;}
.ws1{word-spacing:-15.197760px;}
.ws17{word-spacing:-13.118400px;}
.ws15{word-spacing:-12.986640px;}
.wsd{word-spacing:-10.690560px;}
.ws3{word-spacing:0.000000px;}
._9{margin-left:-14.130240px;}
._a{margin-left:-12.197760px;}
._c{margin-left:-5.822880px;}
._b{margin-left:-4.755840px;}
._d{margin-left:-2.862720px;}
._1{margin-left:-1.152000px;}
._2{width:1.226640px;}
._13{width:2.583360px;}
._3{width:4.106880px;}
._4{width:5.192640px;}
._8{width:6.744000px;}
._e{width:8.038080px;}
._7{width:9.144000px;}
._14{width:10.390080px;}
._16{width:11.453760px;}
._12{width:12.519360px;}
._f{width:13.777920px;}
._17{width:15.920640px;}
._15{width:18.017760px;}
._11{width:19.529280px;}
._10{width:20.692800px;}
._5{width:22.587840px;}
._6{width:23.650320px;}
._0{width:848.821440px;}
.fc5{color:rgb(5,99,193);}
.fc3{color:transparent;}
.fc4{color:rgb(0,0,0);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(61,174,43);}
.fc0{color:rgb(84,86,90);}
.fs6{font-size:41.760000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs1{font-size:144.000000px;}
.y7{bottom:-49.185000px;}
.y0{bottom:0.000000px;}
.y9{bottom:2.340000px;}
.y34{bottom:3.600000px;}
.yf{bottom:3.960000px;}
.y29{bottom:6.300000px;}
.y24{bottom:6.480000px;}
.y11{bottom:6.660000px;}
.y15{bottom:6.840000px;}
.y6{bottom:9.540000px;}
.y13{bottom:9.900000px;}
.y17{bottom:9.930000px;}
.y1d{bottom:12.420000px;}
.y33{bottom:13.500000px;}
.ye{bottom:23.400000px;}
.y20{bottom:41.400000px;}
.y1c{bottom:42.120000px;}
.yd{bottom:42.840000px;}
.yb{bottom:50.400000px;}
.y5{bottom:56.160000px;}
.y1b{bottom:56.340000px;}
.y1f{bottom:59.940000px;}
.yc{bottom:63.000000px;}
.y1a{bottom:81.540000px;}
.y111{bottom:100.620000px;}
.y110{bottom:107.820000px;}
.y136{bottom:109.620000px;}
.y19{bottom:112.140000px;}
.ydd{bottom:112.860000px;}
.y99{bottom:122.760000px;}
.y135{bottom:132.660000px;}
.y18{bottom:137.340000px;}
.yfd{bottom:137.880000px;}
.ycc{bottom:139.500000px;}
.y10f{bottom:140.040000px;}
.ydc{bottom:145.620000px;}
.y98{bottom:155.520000px;}
.y16{bottom:159.840000px;}
.ycb{bottom:162.360000px;}
.y134{bottom:167.790000px;}
.yfc{bottom:172.650000px;}
.yb7{bottom:174.630000px;}
.y10e{bottom:178.050000px;}
.ydb{bottom:178.230000px;}
.y14{bottom:184.890000px;}
.yca{bottom:185.070000px;}
.y97{bottom:188.130000px;}
.y133{bottom:202.530000px;}
.yb6{bottom:207.210000px;}
.yfb{bottom:207.390000px;}
.yc9{bottom:207.930000px;}
.y12{bottom:209.190000px;}
.yda{bottom:210.990000px;}
.y10d{bottom:216.750000px;}
.y96{bottom:220.890000px;}
.y132{bottom:225.570000px;}
.yfa{bottom:230.250000px;}
.yc8{bottom:230.610000px;}
.y10{bottom:234.390000px;}
.yb5{bottom:239.970000px;}
.y66{bottom:243.750000px;}
.y131{bottom:248.790000px;}
.y10c{bottom:249.510000px;}
.y95{bottom:253.650000px;}
.yc7{bottom:264.810000px;}
.yf9{bottom:264.990000px;}
.y65{bottom:266.610000px;}
.y84{bottom:268.950000px;}
.y130{bottom:271.830000px;}
.yb4{bottom:272.730000px;}
.yd9{bottom:276.330000px;}
.ya{bottom:277.050000px;}
.y10b{bottom:282.090000px;}
.y94{bottom:286.230000px;}
.y64{bottom:289.290000px;}
.y83{bottom:291.630000px;}
.y12f{bottom:294.870000px;}
.yc6{bottom:297.570000px;}
.yf8{bottom:299.730000px;}
.yb3{bottom:305.310000px;}
.yd8{bottom:309.090000px;}
.y63{bottom:312.150000px;}
.y82{bottom:314.490000px;}
.y10a{bottom:314.850000px;}
.y12e{bottom:317.910000px;}
.y93{bottom:318.990000px;}
.yf7{bottom:322.590000px;}
.yc5{bottom:330.150000px;}
.y62{bottom:334.830000px;}
.yb2{bottom:338.070000px;}
.yd7{bottom:341.850000px;}
.yf6{bottom:345.270000px;}
.y109{bottom:347.610000px;}
.y81{bottom:349.230000px;}
.y92{bottom:351.750000px;}
.y12d{bottom:353.010000px;}
.yc4{bottom:362.910000px;}
.yf5{bottom:368.130000px;}
.y61{bottom:369.750000px;}
.yb1{bottom:370.830000px;}
.yd6{bottom:374.430000px;}
.y108{bottom:380.190000px;}
.y80{bottom:383.970000px;}
.y91{bottom:384.330000px;}
.y8{bottom:385.590000px;}
.y12c{bottom:387.750000px;}
.yf4{bottom:390.810000px;}
.yc3{bottom:395.670000px;}
.yb0{bottom:403.410000px;}
.y60{bottom:404.850000px;}
.y7f{bottom:406.830000px;}
.yd5{bottom:407.190000px;}
.y12b{bottom:410.790000px;}
.y107{bottom:412.995000px;}
.y90{bottom:417.135000px;}
.y4{bottom:423.615000px;}
.yf3{bottom:425.595000px;}
.yc2{bottom:428.295000px;}
.y7e{bottom:429.555000px;}
.y12a{bottom:434.055000px;}
.yaf{bottom:436.215000px;}
.yd4{bottom:439.995000px;}
.y5f{bottom:441.795000px;}
.y106{bottom:445.755000px;}
.yf2{bottom:448.455000px;}
.y8f{bottom:449.895000px;}
.y7d{bottom:452.415000px;}
.y129{bottom:457.095000px;}
.yc1{bottom:461.055000px;}
.yae{bottom:468.975000px;}
.yf1{bottom:471.135000px;}
.yd3{bottom:472.575000px;}
.y5e{bottom:478.155000px;}
.y105{bottom:479.055000px;}
.y128{bottom:480.135000px;}
.y8e{bottom:482.475000px;}
.y7c{bottom:487.155000px;}
.y3c{bottom:489.675000px;}
.yc0{bottom:493.815000px;}
.y5d{bottom:501.015000px;}
.yad{bottom:501.555000px;}
.y127{bottom:503.175000px;}
.yf0{bottom:505.335000px;}
.yd2{bottom:505.875000px;}
.y104{bottom:513.795000px;}
.y8d{bottom:515.235000px;}
.y7b{bottom:521.895000px;}
.y5c{bottom:523.695000px;}
.y3b{bottom:524.415000px;}
.y126{bottom:526.215000px;}
.ybf{bottom:526.395000px;}
.yd1{bottom:528.735000px;}
.yac{bottom:534.315000px;}
.y103{bottom:536.655000px;}
.yef{bottom:538.095000px;}
.y7a{bottom:544.935000px;}
.y5b{bottom:546.555000px;}
.y3a{bottom:547.275000px;}
.y8c{bottom:548.535000px;}
.y125{bottom:549.255000px;}
.yd0{bottom:551.415000px;}
.ybe{bottom:559.155000px;}
.yab{bottom:567.075000px;}
.y79{bottom:567.975000px;}
.y5a{bottom:569.235000px;}
.y39{bottom:569.955000px;}
.yee{bottom:570.675000px;}
.y8b{bottom:571.395000px;}
.y102{bottom:571.755000px;}
.y124{bottom:572.475000px;}
.ycf{bottom:574.275000px;}
.y78{bottom:591.015000px;}
.ybd{bottom:591.915000px;}
.y59{bottom:592.095000px;}
.y38{bottom:592.815000px;}
.y8a{bottom:594.075000px;}
.y123{bottom:595.515000px;}
.yaa{bottom:599.655000px;}
.yed{bottom:603.435000px;}
.y101{bottom:608.115000px;}
.yce{bottom:608.475000px;}
.y77{bottom:614.235000px;}
.y89{bottom:616.935000px;}
.y122{bottom:618.555000px;}
.ybc{bottom:624.495000px;}
.y37{bottom:626.115000px;}
.y58{bottom:626.835000px;}
.ya9{bottom:632.415000px;}
.yec{bottom:636.195000px;}
.y76{bottom:637.275000px;}
.y88{bottom:639.615000px;}
.ycd{bottom:641.055000px;}
.y121{bottom:641.595000px;}
.y100{bottom:643.035000px;}
.ya8{bottom:653.115000px;}
.ybb{bottom:657.255000px;}
.y36{bottom:659.625000px;}
.y57{bottom:661.965000px;}
.y87{bottom:662.505000px;}
.y120{bottom:664.665000px;}
.yff{bottom:665.745000px;}
.yeb{bottom:668.805000px;}
.y75{bottom:672.405000px;}
.ya7{bottom:673.845000px;}
.y11f{bottom:687.885000px;}
.yfe{bottom:688.605000px;}
.yba{bottom:690.045000px;}
.y35{bottom:692.925000px;}
.y74{bottom:695.085000px;}
.y86{bottom:697.245000px;}
.y56{bottom:700.125000px;}
.yea{bottom:701.565000px;}
.ya6{bottom:706.605000px;}
.y32{bottom:709.845000px;}
.y11e{bottom:710.925000px;}
.yb9{bottom:722.625000px;}
.y73{bottom:730.005000px;}
.y85{bottom:731.445000px;}
.ye9{bottom:734.325000px;}
.y55{bottom:738.825000px;}
.ya5{bottom:739.185000px;}
.yb8{bottom:743.325000px;}
.y11d{bottom:746.025000px;}
.y31{bottom:750.165000px;}
.y72{bottom:764.025000px;}
.ye8{bottom:766.905000px;}
.ya4{bottom:771.945000px;}
.y54{bottom:772.125000px;}
.y30{bottom:776.445000px;}
.y11c{bottom:780.765000px;}
.y47{bottom:787.425000px;}
.y53{bottom:794.805000px;}
.y71{bottom:796.785000px;}
.ye7{bottom:799.665000px;}
.y2f{bottom:802.725000px;}
.y11b{bottom:803.805000px;}
.ya3{bottom:804.705000px;}
.y52{bottom:817.665000px;}
.y46{bottom:821.805000px;}
.y11a{bottom:826.845000px;}
.y70{bottom:829.545000px;}
.ye6{bottom:832.425000px;}
.ya2{bottom:837.285000px;}
.y2e{bottom:846.105000px;}
.y119{bottom:849.885000px;}
.y51{bottom:852.405000px;}
.y45{bottom:853.305000px;}
.y6f{bottom:862.125000px;}
.y2d{bottom:863.025000px;}
.ye5{bottom:865.005000px;}
.ya1{bottom:870.045000px;}
.y118{bottom:872.925000px;}
.y50{bottom:875.265000px;}
.y44{bottom:881.565000px;}
.y2c{bottom:889.305000px;}
.y6e{bottom:894.885000px;}
.y117{bottom:896.145000px;}
.ye4{bottom:897.765000px;}
.y4f{bottom:897.945000px;}
.ya0{bottom:902.805000px;}
.y43{bottom:910.050000px;}
.y2b{bottom:915.630000px;}
.y116{bottom:919.230000px;}
.y4e{bottom:920.850000px;}
.y6d{bottom:927.690000px;}
.ye3{bottom:930.570000px;}
.y9f{bottom:935.430000px;}
.y42{bottom:938.850000px;}
.y2a{bottom:941.910000px;}
.y115{bottom:942.270000px;}
.y4d{bottom:955.590000px;}
.y6c{bottom:960.270000px;}
.ye2{bottom:963.150000px;}
.y114{bottom:965.310000px;}
.y41{bottom:967.650000px;}
.y28{bottom:968.190000px;}
.y4c{bottom:978.270000px;}
.y113{bottom:988.350000px;}
.y6b{bottom:993.030000px;}
.y27{bottom:994.290000px;}
.ye1{bottom:996.450000px;}
.y40{bottom:996.630000px;}
.y9e{bottom:1000.950000px;}
.y4b{bottom:1001.130000px;}
.y112{bottom:1011.570000px;}
.y26{bottom:1020.570000px;}
.y4a{bottom:1023.810000px;}
.y3f{bottom:1025.430000px;}
.y6a{bottom:1025.790000px;}
.ye0{bottom:1031.370000px;}
.y9d{bottom:1033.530000px;}
.y49{bottom:1046.670000px;}
.y25{bottom:1046.850000px;}
.ydf{bottom:1054.050000px;}
.y3e{bottom:1054.230000px;}
.y69{bottom:1058.370000px;}
.y9c{bottom:1066.290000px;}
.y23{bottom:1073.130000px;}
.yde{bottom:1076.910000px;}
.y48{bottom:1081.410000px;}
.y3d{bottom:1083.210000px;}
.y138{bottom:1087.350000px;}
.y68{bottom:1091.130000px;}
.y9b{bottom:1099.590000px;}
.y22{bottom:1117.950000px;}
.y137{bottom:1122.090000px;}
.y9a{bottom:1122.450000px;}
.y67{bottom:1123.890000px;}
.y3{bottom:1131.270000px;}
.y1e{bottom:1141.890000px;}
.y2{bottom:1162.620000px;}
.y21{bottom:1168.740000px;}
.y1{bottom:1194.120000px;}
.ha{height:24.480000px;}
.hc{height:24.660000px;}
.hd{height:24.696000px;}
.h14{height:25.380000px;}
.h11{height:25.560000px;}
.h15{height:25.596000px;}
.h5{height:26.100000px;}
.he{height:27.180000px;}
.hf{height:38.160000px;}
.h16{height:39.600000px;}
.h1b{height:49.720320px;}
.h1c{height:52.230240px;}
.h2{height:55.337760px;}
.h19{height:55.606680px;}
.h9{height:57.600000px;}
.h12{height:57.893760px;}
.h13{height:61.338240px;}
.hb{height:62.928000px;}
.h17{height:65.884219px;}
.h18{height:66.672000px;}
.h1a{height:68.084282px;}
.h7{height:71.100000px;}
.h10{height:73.625760px;}
.h8{height:78.006240px;}
.h6{height:88.673760px;}
.h3{height:91.620000px;}
.h4{height:125.856000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:83.916000px;}
.we{width:106.920000px;}
.wf{width:137.196000px;}
.wb{width:254.055000px;}
.w5{width:352.335000px;}
.w7{width:356.115000px;}
.w8{width:356.250000px;}
.w6{width:356.295000px;}
.w10{width:453.135000px;}
.w4{width:479.805000px;}
.wc{width:528.735000px;}
.wa{width:537.405000px;}
.w9{width:548.385000px;}
.w3{width:803.850000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x16{left:7.740000px;}
.xa{left:10.800000px;}
.x8{left:41.760000px;}
.x2{left:44.640000px;}
.x14{left:47.520000px;}
.x1{left:53.999987px;}
.x3{left:64.836000px;}
.x1b{left:70.559987px;}
.x1e{left:80.999987px;}
.x23{left:84.779987px;}
.x18{left:139.536000px;}
.x21{left:160.229987px;}
.x11{left:189.030000px;}
.x7{left:206.670000px;}
.xc{left:211.935000px;}
.x9{left:214.770000px;}
.x4{left:221.070000px;}
.xf{left:237.855000px;}
.x19{left:247.170000px;}
.x1d{left:266.429987px;}
.x10{left:268.275000px;}
.x12{left:283.725000px;}
.xd{left:294.195000px;}
.x17{left:309.675000px;}
.x6{left:312.915000px;}
.x1f{left:319.574987px;}
.x13{left:324.615000px;}
.x25{left:372.674987px;}
.x1a{left:385.275000px;}
.x5{left:401.835000px;}
.x1c{left:446.474987px;}
.xb{left:467.715000px;}
.xe{left:469.335000px;}
.x26{left:718.889987px;}
.x20{left:800.249987px;}
.x22{left:804.209987px;}
.x24{left:818.249987px;}
.x15{left:828.689987px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-0.944000pt;}
.ls13{letter-spacing:-0.693333pt;}
.ls17{letter-spacing:-0.645333pt;}
.lsa{letter-spacing:-0.565333pt;}
.ls1c{letter-spacing:-0.533333pt;}
.ls18{letter-spacing:-0.455467pt;}
.ls20{letter-spacing:-0.409600pt;}
.lsc{letter-spacing:-0.361067pt;}
.ls11{letter-spacing:-0.291733pt;}
.ls7{letter-spacing:-0.230400pt;}
.ls1b{letter-spacing:-0.214933pt;}
.ls9{letter-spacing:-0.199467pt;}
.ls5{letter-spacing:-0.158933pt;}
.ls6{letter-spacing:-0.104533pt;}
.ls1{letter-spacing:-0.089600pt;}
.ls1a{letter-spacing:-0.051200pt;}
.ls12{letter-spacing:-0.017920pt;}
.ls0{letter-spacing:0.000000pt;}
.ls21{letter-spacing:0.027520pt;}
.lsb{letter-spacing:0.074133pt;}
.lsf{letter-spacing:0.089600pt;}
.ls1f{letter-spacing:0.176533pt;}
.lsd{letter-spacing:0.184533pt;}
.ls8{letter-spacing:0.197333pt;}
.ls19{letter-spacing:0.199680pt;}
.ls10{letter-spacing:0.230400pt;}
.ls16{letter-spacing:0.266133pt;}
.ls3{letter-spacing:0.266240pt;}
.ls1e{letter-spacing:0.316800pt;}
.ls15{letter-spacing:0.317333pt;}
.ls4{letter-spacing:0.481067pt;}
.ls2{letter-spacing:0.549333pt;}
.ls14{letter-spacing:47.631360pt;}
.lse{letter-spacing:754.507947pt;}
.ws10{word-spacing:-58.880000pt;}
.ws0{word-spacing:-19.169280pt;}
.ws11{word-spacing:-15.339413pt;}
.wsb{word-spacing:-15.257813pt;}
.ws16{word-spacing:-15.249813pt;}
.ws6{word-spacing:-15.073280pt;}
.wse{word-spacing:-15.055360pt;}
.ws13{word-spacing:-15.022080pt;}
.ws8{word-spacing:-14.873813pt;}
.ws14{word-spacing:-14.858347pt;}
.ws5{word-spacing:-14.842880pt;}
.wsc{word-spacing:-14.781547pt;}
.wsa{word-spacing:-14.712213pt;}
.ws7{word-spacing:-14.505173pt;}
.ws12{word-spacing:-14.427947pt;}
.wsf{word-spacing:-14.379947pt;}
.ws9{word-spacing:-14.307840pt;}
.ws2{word-spacing:-14.148053pt;}
.ws18{word-spacing:-13.777920pt;}
.ws4{word-spacing:-13.598720pt;}
.ws1{word-spacing:-13.509120pt;}
.ws17{word-spacing:-11.660800pt;}
.ws15{word-spacing:-11.543680pt;}
.wsd{word-spacing:-9.502720pt;}
.ws3{word-spacing:0.000000pt;}
._9{margin-left:-12.560213pt;}
._a{margin-left:-10.842453pt;}
._c{margin-left:-5.175893pt;}
._b{margin-left:-4.227413pt;}
._d{margin-left:-2.544640pt;}
._1{margin-left:-1.024000pt;}
._2{width:1.090347pt;}
._13{width:2.296320pt;}
._3{width:3.650560pt;}
._4{width:4.615680pt;}
._8{width:5.994667pt;}
._e{width:7.144960pt;}
._7{width:8.128000pt;}
._14{width:9.235627pt;}
._16{width:10.181120pt;}
._12{width:11.128320pt;}
._f{width:12.247040pt;}
._17{width:14.151680pt;}
._15{width:16.015787pt;}
._11{width:17.359360pt;}
._10{width:18.393600pt;}
._5{width:20.078080pt;}
._6{width:21.022507pt;}
._0{width:754.507947pt;}
.fs6{font-size:37.120000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs1{font-size:128.000000pt;}
.y7{bottom:-43.720000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:2.080000pt;}
.y34{bottom:3.200000pt;}
.yf{bottom:3.520000pt;}
.y29{bottom:5.600000pt;}
.y24{bottom:5.760000pt;}
.y11{bottom:5.920000pt;}
.y15{bottom:6.080000pt;}
.y6{bottom:8.480000pt;}
.y13{bottom:8.800000pt;}
.y17{bottom:8.826667pt;}
.y1d{bottom:11.040000pt;}
.y33{bottom:12.000000pt;}
.ye{bottom:20.800000pt;}
.y20{bottom:36.800000pt;}
.y1c{bottom:37.440000pt;}
.yd{bottom:38.080000pt;}
.yb{bottom:44.800000pt;}
.y5{bottom:49.920000pt;}
.y1b{bottom:50.080000pt;}
.y1f{bottom:53.280000pt;}
.yc{bottom:56.000000pt;}
.y1a{bottom:72.480000pt;}
.y111{bottom:89.440000pt;}
.y110{bottom:95.840000pt;}
.y136{bottom:97.440000pt;}
.y19{bottom:99.680000pt;}
.ydd{bottom:100.320000pt;}
.y99{bottom:109.120000pt;}
.y135{bottom:117.920000pt;}
.y18{bottom:122.080000pt;}
.yfd{bottom:122.560000pt;}
.ycc{bottom:124.000000pt;}
.y10f{bottom:124.480000pt;}
.ydc{bottom:129.440000pt;}
.y98{bottom:138.240000pt;}
.y16{bottom:142.080000pt;}
.ycb{bottom:144.320000pt;}
.y134{bottom:149.146667pt;}
.yfc{bottom:153.466667pt;}
.yb7{bottom:155.226667pt;}
.y10e{bottom:158.266667pt;}
.ydb{bottom:158.426667pt;}
.y14{bottom:164.346667pt;}
.yca{bottom:164.506667pt;}
.y97{bottom:167.226667pt;}
.y133{bottom:180.026667pt;}
.yb6{bottom:184.186667pt;}
.yfb{bottom:184.346667pt;}
.yc9{bottom:184.826667pt;}
.y12{bottom:185.946667pt;}
.yda{bottom:187.546667pt;}
.y10d{bottom:192.666667pt;}
.y96{bottom:196.346667pt;}
.y132{bottom:200.506667pt;}
.yfa{bottom:204.666667pt;}
.yc8{bottom:204.986667pt;}
.y10{bottom:208.346667pt;}
.yb5{bottom:213.306667pt;}
.y66{bottom:216.666667pt;}
.y131{bottom:221.146667pt;}
.y10c{bottom:221.786667pt;}
.y95{bottom:225.466667pt;}
.yc7{bottom:235.386667pt;}
.yf9{bottom:235.546667pt;}
.y65{bottom:236.986667pt;}
.y84{bottom:239.066667pt;}
.y130{bottom:241.626667pt;}
.yb4{bottom:242.426667pt;}
.yd9{bottom:245.626667pt;}
.ya{bottom:246.266667pt;}
.y10b{bottom:250.746667pt;}
.y94{bottom:254.426667pt;}
.y64{bottom:257.146667pt;}
.y83{bottom:259.226667pt;}
.y12f{bottom:262.106667pt;}
.yc6{bottom:264.506667pt;}
.yf8{bottom:266.426667pt;}
.yb3{bottom:271.386667pt;}
.yd8{bottom:274.746667pt;}
.y63{bottom:277.466667pt;}
.y82{bottom:279.546667pt;}
.y10a{bottom:279.866667pt;}
.y12e{bottom:282.586667pt;}
.y93{bottom:283.546667pt;}
.yf7{bottom:286.746667pt;}
.yc5{bottom:293.466667pt;}
.y62{bottom:297.626667pt;}
.yb2{bottom:300.506667pt;}
.yd7{bottom:303.866667pt;}
.yf6{bottom:306.906667pt;}
.y109{bottom:308.986667pt;}
.y81{bottom:310.426667pt;}
.y92{bottom:312.666667pt;}
.y12d{bottom:313.786667pt;}
.yc4{bottom:322.586667pt;}
.yf5{bottom:327.226667pt;}
.y61{bottom:328.666667pt;}
.yb1{bottom:329.626667pt;}
.yd6{bottom:332.826667pt;}
.y108{bottom:337.946667pt;}
.y80{bottom:341.306667pt;}
.y91{bottom:341.626667pt;}
.y8{bottom:342.746667pt;}
.y12c{bottom:344.666667pt;}
.yf4{bottom:347.386667pt;}
.yc3{bottom:351.706667pt;}
.yb0{bottom:358.586667pt;}
.y60{bottom:359.866667pt;}
.y7f{bottom:361.626667pt;}
.yd5{bottom:361.946667pt;}
.y12b{bottom:365.146667pt;}
.y107{bottom:367.106667pt;}
.y90{bottom:370.786667pt;}
.y4{bottom:376.546667pt;}
.yf3{bottom:378.306667pt;}
.yc2{bottom:380.706667pt;}
.y7e{bottom:381.826667pt;}
.y12a{bottom:385.826667pt;}
.yaf{bottom:387.746667pt;}
.yd4{bottom:391.106667pt;}
.y5f{bottom:392.706667pt;}
.y106{bottom:396.226667pt;}
.yf2{bottom:398.626667pt;}
.y8f{bottom:399.906667pt;}
.y7d{bottom:402.146667pt;}
.y129{bottom:406.306667pt;}
.yc1{bottom:409.826667pt;}
.yae{bottom:416.866667pt;}
.yf1{bottom:418.786667pt;}
.yd3{bottom:420.066667pt;}
.y5e{bottom:425.026667pt;}
.y105{bottom:425.826667pt;}
.y128{bottom:426.786667pt;}
.y8e{bottom:428.866667pt;}
.y7c{bottom:433.026667pt;}
.y3c{bottom:435.266667pt;}
.yc0{bottom:438.946667pt;}
.y5d{bottom:445.346667pt;}
.yad{bottom:445.826667pt;}
.y127{bottom:447.266667pt;}
.yf0{bottom:449.186667pt;}
.yd2{bottom:449.666667pt;}
.y104{bottom:456.706667pt;}
.y8d{bottom:457.986667pt;}
.y7b{bottom:463.906667pt;}
.y5c{bottom:465.506667pt;}
.y3b{bottom:466.146667pt;}
.y126{bottom:467.746667pt;}
.ybf{bottom:467.906667pt;}
.yd1{bottom:469.986667pt;}
.yac{bottom:474.946667pt;}
.y103{bottom:477.026667pt;}
.yef{bottom:478.306667pt;}
.y7a{bottom:484.386667pt;}
.y5b{bottom:485.826667pt;}
.y3a{bottom:486.466667pt;}
.y8c{bottom:487.586667pt;}
.y125{bottom:488.226667pt;}
.yd0{bottom:490.146667pt;}
.ybe{bottom:497.026667pt;}
.yab{bottom:504.066667pt;}
.y79{bottom:504.866667pt;}
.y5a{bottom:505.986667pt;}
.y39{bottom:506.626667pt;}
.yee{bottom:507.266667pt;}
.y8b{bottom:507.906667pt;}
.y102{bottom:508.226667pt;}
.y124{bottom:508.866667pt;}
.ycf{bottom:510.466667pt;}
.y78{bottom:525.346667pt;}
.ybd{bottom:526.146667pt;}
.y59{bottom:526.306667pt;}
.y38{bottom:526.946667pt;}
.y8a{bottom:528.066667pt;}
.y123{bottom:529.346667pt;}
.yaa{bottom:533.026667pt;}
.yed{bottom:536.386667pt;}
.y101{bottom:540.546667pt;}
.yce{bottom:540.866667pt;}
.y77{bottom:545.986667pt;}
.y89{bottom:548.386667pt;}
.y122{bottom:549.826667pt;}
.ybc{bottom:555.106667pt;}
.y37{bottom:556.546667pt;}
.y58{bottom:557.186667pt;}
.ya9{bottom:562.146667pt;}
.yec{bottom:565.506667pt;}
.y76{bottom:566.466667pt;}
.y88{bottom:568.546667pt;}
.ycd{bottom:569.826667pt;}
.y121{bottom:570.306667pt;}
.y100{bottom:571.586667pt;}
.ya8{bottom:580.546667pt;}
.ybb{bottom:584.226667pt;}
.y36{bottom:586.333333pt;}
.y57{bottom:588.413333pt;}
.y87{bottom:588.893333pt;}
.y120{bottom:590.813333pt;}
.yff{bottom:591.773333pt;}
.yeb{bottom:594.493333pt;}
.y75{bottom:597.693333pt;}
.ya7{bottom:598.973333pt;}
.y11f{bottom:611.453333pt;}
.yfe{bottom:612.093333pt;}
.yba{bottom:613.373333pt;}
.y35{bottom:615.933333pt;}
.y74{bottom:617.853333pt;}
.y86{bottom:619.773333pt;}
.y56{bottom:622.333333pt;}
.yea{bottom:623.613333pt;}
.ya6{bottom:628.093333pt;}
.y32{bottom:630.973333pt;}
.y11e{bottom:631.933333pt;}
.yb9{bottom:642.333333pt;}
.y73{bottom:648.893333pt;}
.y85{bottom:650.173333pt;}
.ye9{bottom:652.733333pt;}
.y55{bottom:656.733333pt;}
.ya5{bottom:657.053333pt;}
.yb8{bottom:660.733333pt;}
.y11d{bottom:663.133333pt;}
.y31{bottom:666.813333pt;}
.y72{bottom:679.133333pt;}
.ye8{bottom:681.693333pt;}
.ya4{bottom:686.173333pt;}
.y54{bottom:686.333333pt;}
.y30{bottom:690.173333pt;}
.y11c{bottom:694.013333pt;}
.y47{bottom:699.933333pt;}
.y53{bottom:706.493333pt;}
.y71{bottom:708.253333pt;}
.ye7{bottom:710.813333pt;}
.y2f{bottom:713.533333pt;}
.y11b{bottom:714.493333pt;}
.ya3{bottom:715.293333pt;}
.y52{bottom:726.813333pt;}
.y46{bottom:730.493333pt;}
.y11a{bottom:734.973333pt;}
.y70{bottom:737.373333pt;}
.ye6{bottom:739.933333pt;}
.ya2{bottom:744.253333pt;}
.y2e{bottom:752.093333pt;}
.y119{bottom:755.453333pt;}
.y51{bottom:757.693333pt;}
.y45{bottom:758.493333pt;}
.y6f{bottom:766.333333pt;}
.y2d{bottom:767.133333pt;}
.ye5{bottom:768.893333pt;}
.ya1{bottom:773.373333pt;}
.y118{bottom:775.933333pt;}
.y50{bottom:778.013333pt;}
.y44{bottom:783.613333pt;}
.y2c{bottom:790.493333pt;}
.y6e{bottom:795.453333pt;}
.y117{bottom:796.573333pt;}
.ye4{bottom:798.013333pt;}
.y4f{bottom:798.173333pt;}
.ya0{bottom:802.493333pt;}
.y43{bottom:808.933333pt;}
.y2b{bottom:813.893333pt;}
.y116{bottom:817.093333pt;}
.y4e{bottom:818.533333pt;}
.y6d{bottom:824.613333pt;}
.ye3{bottom:827.173333pt;}
.y9f{bottom:831.493333pt;}
.y42{bottom:834.533333pt;}
.y2a{bottom:837.253333pt;}
.y115{bottom:837.573333pt;}
.y4d{bottom:849.413333pt;}
.y6c{bottom:853.573333pt;}
.ye2{bottom:856.133333pt;}
.y114{bottom:858.053333pt;}
.y41{bottom:860.133333pt;}
.y28{bottom:860.613333pt;}
.y4c{bottom:869.573333pt;}
.y113{bottom:878.533333pt;}
.y6b{bottom:882.693333pt;}
.y27{bottom:883.813333pt;}
.ye1{bottom:885.733333pt;}
.y40{bottom:885.893333pt;}
.y9e{bottom:889.733333pt;}
.y4b{bottom:889.893333pt;}
.y112{bottom:899.173333pt;}
.y26{bottom:907.173333pt;}
.y4a{bottom:910.053333pt;}
.y3f{bottom:911.493333pt;}
.y6a{bottom:911.813333pt;}
.ye0{bottom:916.773333pt;}
.y9d{bottom:918.693333pt;}
.y49{bottom:930.373333pt;}
.y25{bottom:930.533333pt;}
.ydf{bottom:936.933333pt;}
.y3e{bottom:937.093333pt;}
.y69{bottom:940.773333pt;}
.y9c{bottom:947.813333pt;}
.y23{bottom:953.893333pt;}
.yde{bottom:957.253333pt;}
.y48{bottom:961.253333pt;}
.y3d{bottom:962.853333pt;}
.y138{bottom:966.533333pt;}
.y68{bottom:969.893333pt;}
.y9b{bottom:977.413333pt;}
.y22{bottom:993.733333pt;}
.y137{bottom:997.413333pt;}
.y9a{bottom:997.733333pt;}
.y67{bottom:999.013333pt;}
.y3{bottom:1005.573333pt;}
.y1e{bottom:1015.013333pt;}
.y2{bottom:1033.440000pt;}
.y21{bottom:1038.880000pt;}
.y1{bottom:1061.440000pt;}
.ha{height:21.760000pt;}
.hc{height:21.920000pt;}
.hd{height:21.952000pt;}
.h14{height:22.560000pt;}
.h11{height:22.720000pt;}
.h15{height:22.752000pt;}
.h5{height:23.200000pt;}
.he{height:24.160000pt;}
.hf{height:33.920000pt;}
.h16{height:35.200000pt;}
.h1b{height:44.195840pt;}
.h1c{height:46.426880pt;}
.h2{height:49.189120pt;}
.h19{height:49.428160pt;}
.h9{height:51.200000pt;}
.h12{height:51.461120pt;}
.h13{height:54.522880pt;}
.hb{height:55.936000pt;}
.h17{height:58.563750pt;}
.h18{height:59.264000pt;}
.h1a{height:60.519362pt;}
.h7{height:63.200000pt;}
.h10{height:65.445120pt;}
.h8{height:69.338880pt;}
.h6{height:78.821120pt;}
.h3{height:81.440000pt;}
.h4{height:111.872000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:74.592000pt;}
.we{width:95.040000pt;}
.wf{width:121.952000pt;}
.wb{width:225.826667pt;}
.w5{width:313.186667pt;}
.w7{width:316.546667pt;}
.w8{width:316.666667pt;}
.w6{width:316.706667pt;}
.w10{width:402.786667pt;}
.w4{width:426.493333pt;}
.wc{width:469.986667pt;}
.wa{width:477.693333pt;}
.w9{width:487.453333pt;}
.w3{width:714.533333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x16{left:6.880000pt;}
.xa{left:9.600000pt;}
.x8{left:37.120000pt;}
.x2{left:39.680000pt;}
.x14{left:42.240000pt;}
.x1{left:47.999988pt;}
.x3{left:57.632000pt;}
.x1b{left:62.719988pt;}
.x1e{left:71.999988pt;}
.x23{left:75.359988pt;}
.x18{left:124.032000pt;}
.x21{left:142.426655pt;}
.x11{left:168.026667pt;}
.x7{left:183.706667pt;}
.xc{left:188.386667pt;}
.x9{left:190.906667pt;}
.x4{left:196.506667pt;}
.xf{left:211.426667pt;}
.x19{left:219.706667pt;}
.x1d{left:236.826655pt;}
.x10{left:238.466667pt;}
.x12{left:252.200000pt;}
.xd{left:261.506667pt;}
.x17{left:275.266667pt;}
.x6{left:278.146667pt;}
.x1f{left:284.066655pt;}
.x13{left:288.546667pt;}
.x25{left:331.266655pt;}
.x1a{left:342.466667pt;}
.x5{left:357.186667pt;}
.x1c{left:396.866655pt;}
.xb{left:415.746667pt;}
.xe{left:417.186667pt;}
.x26{left:639.013322pt;}
.x20{left:711.333322pt;}
.x22{left:714.853322pt;}
.x24{left:727.333322pt;}
.x15{left:736.613322pt;}
}




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