
    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_e6f39060c115c5a06fe382c0.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_e8814d90a83d7c6913fdf8e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.986816;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_a2a07d664866c99f2b62e9b5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_c13146440d651544318283c6.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_07b4dae4177224bdbe89e58d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_382e1059cc26614686f0f722.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_91d7807951a64448b3ed029e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_4ee22d807df2d2053b8d5702.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cdc8e8b1cc524bd064f2fdaa.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls18{letter-spacing:-0.828000px;}
.lsb{letter-spacing:-0.513600px;}
.ls8{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.108000px;}
.ls1e{letter-spacing:-0.053280px;}
.ls15{letter-spacing:-0.018000px;}
.ls6{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.053280px;}
.ls1f{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.126000px;}
.ls1c{letter-spacing:0.144000px;}
.lsd{letter-spacing:0.180000px;}
.lse{letter-spacing:0.206400px;}
.ls17{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.365760px;}
.ls0{letter-spacing:0.394560px;}
.ls3{letter-spacing:0.437760px;}
.ls2{letter-spacing:0.529920px;}
.ls16{letter-spacing:0.702000px;}
.ls12{letter-spacing:0.720000px;}
.ls1b{letter-spacing:0.864000px;}
.ls11{letter-spacing:0.900000px;}
.ls20{letter-spacing:2.340000px;}
.ls10{letter-spacing:5.220000px;}
.ls9{letter-spacing:6.660000px;}
.ls1a{letter-spacing:7.380000px;}
.ls19{letter-spacing:8.100000px;}
.ls23{letter-spacing:10.746720px;}
.ls1d{letter-spacing:11.100000px;}
.ls5{letter-spacing:12.420000px;}
.ls4{letter-spacing:18.900000px;}
.ls21{letter-spacing:40.986720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws9{word-spacing:-20.304000px;}
.ws0{word-spacing:-16.353480px;}
.wsa{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.146400px;}
.ws16{word-spacing:-15.046800px;}
.ws17{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.426400px;}
.ws12{word-spacing:-14.364000px;}
.wsf{word-spacing:-14.202000px;}
.wsb{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.716000px;}
.ws14{word-spacing:-13.644000px;}
.wsd{word-spacing:-13.626000px;}
.ws3{word-spacing:-13.500000px;}
.wse{word-spacing:-13.482000px;}
.wsc{word-spacing:-13.392000px;}
.ws13{word-spacing:-13.140000px;}
.ws11{word-spacing:-12.672000px;}
.ws1{word-spacing:-9.720000px;}
.ws2{word-spacing:-9.000000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.862160px;}
._0{width:1.775520px;}
._6{width:3.535440px;}
._7{width:5.084160px;}
._3{width:6.112800px;}
._4{width:7.589520px;}
._18{width:8.593440px;}
._5{width:9.621360px;}
._2{width:10.995840px;}
._9{width:12.728880px;}
._f{width:13.771680px;}
._10{width:16.690320px;}
._e{width:17.758320px;}
._8{width:19.182960px;}
._a{width:20.302800px;}
._14{width:21.442560px;}
._19{width:22.581840px;}
._d{width:23.709120px;}
._c{width:25.280400px;}
._15{width:26.533440px;}
._16{width:27.685920px;}
._12{width:29.640960px;}
._11{width:46.800000px;}
._17{width:67.860000px;}
._b{width:1033.479360px;}
._13{width:1993.119360px;}
.fc4{color:rgb(79,98,40);}
.fc3{color:rgb(152,72,6);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9c{bottom:6.300000px;}
.yc7{bottom:6.345000px;}
.y9a{bottom:6.480000px;}
.ya2{bottom:6.510000px;}
.y9d{bottom:6.660000px;}
.yc8{bottom:6.705000px;}
.y9f{bottom:6.840000px;}
.ya3{bottom:6.870000px;}
.yaa{bottom:7.200000px;}
.yab{bottom:7.560000px;}
.y5{bottom:9.720000px;}
.y3{bottom:10.260000px;}
.y4{bottom:27.000000px;}
.y2{bottom:27.180000px;}
.y102{bottom:131.436000px;}
.y86{bottom:135.756000px;}
.y12f{bottom:137.916000px;}
.ye2{bottom:143.316000px;}
.yb9{bottom:145.116000px;}
.y101{bottom:150.510000px;}
.y85{bottom:152.850000px;}
.y12e{bottom:155.190000px;}
.y5f{bottom:157.890000px;}
.y2e{bottom:158.430000px;}
.yb8{bottom:162.390000px;}
.ye1{bottom:165.990000px;}
.y84{bottom:170.130000px;}
.y5e{bottom:174.990000px;}
.yb7{bottom:179.670000px;}
.y12d{bottom:181.470000px;}
.y83{bottom:187.410000px;}
.y2d{bottom:191.010000px;}
.y5d{bottom:192.270000px;}
.y100{bottom:195.150000px;}
.y12c{bottom:198.750000px;}
.yb6{bottom:205.770000px;}
.y2c{bottom:208.290000px;}
.y5c{bottom:209.550000px;}
.y82{bottom:213.690000px;}
.yff{bottom:219.810000px;}
.y12b{bottom:224.850000px;}
.y2b{bottom:225.390000px;}
.y81{bottom:230.970000px;}
.y5b{bottom:235.830000px;}
.yb5{bottom:236.910000px;}
.yfe{bottom:238.890000px;}
.y2a{bottom:242.670000px;}
.y80{bottom:248.250000px;}
.y12a{bottom:251.130000px;}
.y5a{bottom:253.110000px;}
.yb4{bottom:255.810000px;}
.yfd{bottom:258.510000px;}
.y7f{bottom:265.350000px;}
.y29{bottom:268.950000px;}
.y59{bottom:270.390000px;}
.yb3{bottom:274.755000px;}
.y129{bottom:277.455000px;}
.y7e{bottom:282.675000px;}
.yfc{bottom:283.575000px;}
.y28{bottom:286.275000px;}
.y58{bottom:287.535000px;}
.yb2{bottom:293.835000px;}
.y128{bottom:294.735000px;}
.y7d{bottom:299.955000px;}
.y27{bottom:303.555000px;}
.y57{bottom:304.815000px;}
.yfb{bottom:308.415000px;}
.y127{bottom:312.015000px;}
.yb1{bottom:313.455000px;}
.y7c{bottom:317.235000px;}
.y26{bottom:320.835000px;}
.y56{bottom:322.095000px;}
.yfa{bottom:327.315000px;}
.y7b{bottom:334.515000px;}
.y25{bottom:337.935000px;}
.y126{bottom:338.295000px;}
.yb0{bottom:338.475000px;}
.yf9{bottom:346.395000px;}
.y55{bottom:348.195000px;}
.y7a{bottom:351.795000px;}
.y24{bottom:355.215000px;}
.ye0{bottom:361.515000px;}
.yaf{bottom:363.315000px;}
.y125{bottom:364.395000px;}
.yf8{bottom:366.015000px;}
.y79{bottom:368.895000px;}
.y23{bottom:372.495000px;}
.ydf{bottom:378.615000px;}
.y54{bottom:381.135000px;}
.yae{bottom:382.215000px;}
.y124{bottom:390.675000px;}
.yf7{bottom:391.035000px;}
.y78{bottom:395.175000px;}
.y22{bottom:398.775000px;}
.yad{bottom:401.295000px;}
.yde{bottom:404.895000px;}
.y123{bottom:407.955000px;}
.y77{bottom:412.455000px;}
.yf6{bottom:417.315000px;}
.y53{bottom:419.475000px;}
.yac{bottom:420.195000px;}
.ydd{bottom:422.175000px;}
.y76{bottom:429.735000px;}
.y122{bottom:434.235000px;}
.yf5{bottom:434.595000px;}
.y21{bottom:436.755000px;}
.ya9{bottom:439.095000px;}
.ydc{bottom:439.455000px;}
.y75{bottom:447.015000px;}
.y121{bottom:451.515000px;}
.yf4{bottom:451.695000px;}
.y52{bottom:454.035000px;}
.y20{bottom:454.215000px;}
.ydb{bottom:456.735000px;}
.ya8{bottom:458.895000px;}
.y51{bottom:471.315000px;}
.y1f{bottom:471.495000px;}
.y74{bottom:473.295000px;}
.y120{bottom:477.795000px;}
.ya7{bottom:477.975000px;}
.yda{bottom:483.015000px;}
.y50{bottom:488.595000px;}
.y73{bottom:490.395000px;}
.y11f{bottom:494.895000px;}
.yf3{bottom:495.255000px;}
.ya6{bottom:496.875000px;}
.yd9{bottom:500.115000px;}
.y4f{bottom:505.695000px;}
.y1e{bottom:506.775000px;}
.y72{bottom:507.675000px;}
.yf2{bottom:512.535000px;}
.ya5{bottom:515.955000px;}
.yd8{bottom:517.395000px;}
.y11e{bottom:521.175000px;}
.y4e{bottom:522.975000px;}
.y1d{bottom:524.055000px;}
.y71{bottom:524.955000px;}
.yf1{bottom:529.815000px;}
.yd7{bottom:534.675000px;}
.ya4{bottom:534.855000px;}
.y11d{bottom:538.455000px;}
.yf0{bottom:546.915000px;}
.y4d{bottom:549.255000px;}
.y70{bottom:551.235000px;}
.yd6{bottom:551.955000px;}
.ya1{bottom:553.755000px;}
.y1c{bottom:559.185000px;}
.yef{bottom:564.225000px;}
.y11c{bottom:565.125000px;}
.y4c{bottom:566.565000px;}
.y6f{bottom:568.545000px;}
.yd5{bottom:569.265000px;}
.ya0{bottom:572.865000px;}
.y1b{bottom:576.465000px;}
.yee{bottom:581.505000px;}
.y6e{bottom:585.645000px;}
.yd4{bottom:586.545000px;}
.y9e{bottom:591.765000px;}
.y4b{bottom:592.845000px;}
.y1a{bottom:593.745000px;}
.yed{bottom:598.785000px;}
.y6d{bottom:602.925000px;}
.y11b{bottom:603.465000px;}
.yd3{bottom:603.645000px;}
.y4a{bottom:610.125000px;}
.y9b{bottom:610.845000px;}
.y19{bottom:611.025000px;}
.y11a{bottom:620.745000px;}
.yec{bottom:625.065000px;}
.y49{bottom:627.225000px;}
.y6c{bottom:629.205000px;}
.yd2{bottom:630.285000px;}
.y99{bottom:630.465000px;}
.y119{bottom:638.025000px;}
.yeb{bottom:642.345000px;}
.y48{bottom:644.505000px;}
.y18{bottom:646.305000px;}
.y6b{bottom:651.885000px;}
.y118{bottom:655.125000px;}
.y98{bottom:655.485000px;}
.yea{bottom:659.445000px;}
.y47{bottom:661.785000px;}
.y17{bottom:663.585000px;}
.yd1{bottom:667.185000px;}
.y117{bottom:672.405000px;}
.ye9{bottom:676.725000px;}
.y16{bottom:680.685000px;}
.y97{bottom:681.765000px;}
.yd0{bottom:686.085000px;}
.y46{bottom:688.065000px;}
.ye8{bottom:694.005000px;}
.y116{bottom:698.685000px;}
.ycf{bottom:705.165000px;}
.y45{bottom:705.345000px;}
.y96{bottom:708.045000px;}
.y15{bottom:715.965000px;}
.ye7{bottom:720.645000px;}
.y44{bottom:722.445000px;}
.yce{bottom:724.065000px;}
.y95{bottom:725.145000px;}
.y14{bottom:733.245000px;}
.y43{bottom:739.725000px;}
.y94{bottom:742.425000px;}
.ycd{bottom:743.145000px;}
.y13{bottom:750.525000px;}
.y42{bottom:757.005000px;}
.ye6{bottom:758.985000px;}
.y115{bottom:759.345000px;}
.ycc{bottom:762.045000px;}
.y12{bottom:767.805000px;}
.y93{bottom:768.705000px;}
.y114{bottom:776.625000px;}
.ycb{bottom:780.945000px;}
.ye5{bottom:781.485000px;}
.y41{bottom:783.285000px;}
.y11{bottom:784.905000px;}
.y92{bottom:785.985000px;}
.y113{bottom:793.905000px;}
.yca{bottom:800.025000px;}
.y91{bottom:803.265000px;}
.y112{bottom:811.185000px;}
.y40{bottom:815.685000px;}
.yc9{bottom:818.925000px;}
.y90{bottom:820.545000px;}
.y10{bottom:822.705000px;}
.y111{bottom:828.465000px;}
.y3f{bottom:832.965000px;}
.yc6{bottom:838.005000px;}
.y110{bottom:845.790000px;}
.y8f{bottom:846.690000px;}
.y3e{bottom:850.290000px;}
.yf{bottom:853.350000px;}
.y6a{bottom:855.690000px;}
.yc5{bottom:856.950000px;}
.y8e{bottom:863.970000px;}
.y10f{bottom:871.890000px;}
.y69{bottom:872.970000px;}
.y3d{bottom:876.570000px;}
.yc4{bottom:876.750000px;}
.ye{bottom:877.830000px;}
.y8d{bottom:890.250000px;}
.y3c{bottom:893.850000px;}
.yc3{bottom:895.650000px;}
.y10e{bottom:898.530000px;}
.y68{bottom:899.250000px;}
.yd{bottom:902.310000px;}
.y3b{bottom:911.130000px;}
.yc2{bottom:914.730000px;}
.y67{bottom:916.530000px;}
.yc{bottom:926.790000px;}
.y3a{bottom:928.230000px;}
.yc1{bottom:933.630000px;}
.y66{bottom:933.810000px;}
.y10d{bottom:935.430000px;}
.y8c{bottom:942.810000px;}
.yb{bottom:951.450000px;}
.yc0{bottom:952.710000px;}
.y10c{bottom:954.330000px;}
.y39{bottom:954.510000px;}
.y65{bottom:960.090000px;}
.y8b{bottom:969.090000px;}
.ya{bottom:969.990000px;}
.ybf{bottom:971.610000px;}
.y10b{bottom:973.410000px;}
.y64{bottom:977.190000px;}
.y8a{bottom:986.190000px;}
.y38{bottom:987.090000px;}
.ybe{bottom:990.690000px;}
.y10a{bottom:993.030000px;}
.y63{bottom:1003.470000px;}
.y37{bottom:1004.190000px;}
.y9{bottom:1007.970000px;}
.ybd{bottom:1009.590000px;}
.y89{bottom:1012.470000px;}
.y109{bottom:1018.050000px;}
.ye4{bottom:1021.470000px;}
.ybc{bottom:1028.490000px;}
.y62{bottom:1029.750000px;}
.y36{bottom:1030.470000px;}
.y88{bottom:1038.750000px;}
.y8{bottom:1038.930000px;}
.y108{bottom:1044.330000px;}
.y35{bottom:1047.750000px;}
.ybb{bottom:1048.290000px;}
.y61{bottom:1056.030000px;}
.y107{bottom:1061.610000px;}
.y34{bottom:1065.030000px;}
.y7{bottom:1070.070000px;}
.yba{bottom:1073.310000px;}
.y106{bottom:1078.890000px;}
.y60{bottom:1082.310000px;}
.y33{bottom:1091.310000px;}
.y105{bottom:1095.990000px;}
.y87{bottom:1099.590000px;}
.y32{bottom:1108.590000px;}
.y104{bottom:1113.270000px;}
.ye3{bottom:1116.690000px;}
.y31{bottom:1125.720000px;}
.y103{bottom:1139.940000px;}
.y30{bottom:1143.000000px;}
.y6{bottom:1156.860000px;}
.y1{bottom:1171.980000px;}
.y2f{bottom:1206.720000px;}
.h10{height:18.900000px;}
.h14{height:18.936000px;}
.he{height:19.080000px;}
.h12{height:19.116000px;}
.h13{height:19.800000px;}
.h8{height:35.314453px;}
.h4{height:44.820000px;}
.h2{height:46.800000px;}
.h11{height:52.998047px;}
.hc{height:53.573906px;}
.hf{height:54.421875px;}
.h9{height:58.621992px;}
.h3{height:58.651172px;}
.hb{height:60.226875px;}
.h15{height:61.423863px;}
.h5{height:62.327813px;}
.h7{height:66.543750px;}
.ha{height:69.086250px;}
.hd{height:75.093750px;}
.h6{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:57.420000px;}
.we{width:62.676000px;}
.w11{width:62.820000px;}
.wf{width:69.480000px;}
.wa{width:71.100000px;}
.w14{width:77.940000px;}
.w13{width:77.976000px;}
.w16{width:82.296000px;}
.w17{width:88.920000px;}
.w18{width:89.136000px;}
.wc{width:89.676000px;}
.w8{width:90.540000px;}
.wb{width:103.860000px;}
.w9{width:104.436000px;}
.w10{width:115.560000px;}
.w7{width:122.796000px;}
.w12{width:147.816000px;}
.wd{width:175.890000px;}
.w5{width:202.350000px;}
.w6{width:202.530000px;}
.w4{width:248.430000px;}
.w15{width:271.650000px;}
.w3{width:374.475000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:8.100000px;}
.x45{left:9.720000px;}
.x41{left:10.980000px;}
.x24{left:15.705000px;}
.x26{left:17.145000px;}
.x40{left:19.440000px;}
.x3c{left:21.060000px;}
.x5{left:24.480000px;}
.x2d{left:26.100000px;}
.x2f{left:27.900000px;}
.x28{left:29.160000px;}
.x20{left:30.465000px;}
.x27{left:32.400000px;}
.x25{left:36.390000px;}
.x32{left:37.980000px;}
.x30{left:39.600000px;}
.x15{left:40.860000px;}
.x2e{left:43.020000px;}
.x31{left:44.850000px;}
.x2{left:47.154000px;}
.x33{left:52.020000px;}
.x43{left:58.545000px;}
.x4c{left:66.960000px;}
.x1f{left:68.430000px;}
.x1e{left:70.245000px;}
.x39{left:72.765000px;}
.x13{left:73.845000px;}
.x1c{left:76.890000px;}
.x19{left:82.110000px;}
.x18{left:84.285000px;}
.x17{left:85.350000px;}
.x16{left:88.065000px;}
.x1b{left:93.285000px;}
.x1d{left:94.365000px;}
.x1a{left:97.425000px;}
.x1{left:106.416000px;}
.x48{left:110.340000px;}
.x7{left:124.416000px;}
.x42{left:129.816000px;}
.x4d{left:138.276000px;}
.x3d{left:142.956000px;}
.x9{left:144.576000px;}
.x6{left:148.716000px;}
.x3{left:163.830000px;}
.x47{left:180.570000px;}
.xa{left:193.350000px;}
.xb{left:194.430000px;}
.x37{left:195.690000px;}
.xd{left:200.550000px;}
.xc{left:201.810000px;}
.x12{left:244.110000px;}
.x46{left:249.150000px;}
.x8{left:261.570000px;}
.x29{left:268.230000px;}
.x11{left:276.870000px;}
.xe{left:288.570000px;}
.x38{left:292.530000px;}
.x10{left:295.050000px;}
.x2a{left:314.175000px;}
.x35{left:326.055000px;}
.x2b{left:385.275000px;}
.x21{left:410.475000px;}
.x3e{left:441.615000px;}
.x14{left:446.475000px;}
.x49{left:452.235000px;}
.x3a{left:468.435000px;}
.x2c{left:489.135000px;}
.x23{left:501.015000px;}
.x3f{left:504.285000px;}
.x44{left:520.485000px;}
.x3b{left:531.105000px;}
.x4a{left:534.525000px;}
.x4{left:538.305000px;}
.xf{left:543.345000px;}
.x36{left:560.625000px;}
.x34{left:569.625000px;}
.x4b{left:623.445000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls18{letter-spacing:-0.736000pt;}
.lsb{letter-spacing:-0.456533pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.096000pt;}
.ls1e{letter-spacing:-0.047360pt;}
.ls15{letter-spacing:-0.016000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.047360pt;}
.ls1f{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.112000pt;}
.ls1c{letter-spacing:0.128000pt;}
.lsd{letter-spacing:0.160000pt;}
.lse{letter-spacing:0.183467pt;}
.ls17{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.325120pt;}
.ls0{letter-spacing:0.350720pt;}
.ls3{letter-spacing:0.389120pt;}
.ls2{letter-spacing:0.471040pt;}
.ls16{letter-spacing:0.624000pt;}
.ls12{letter-spacing:0.640000pt;}
.ls1b{letter-spacing:0.768000pt;}
.ls11{letter-spacing:0.800000pt;}
.ls20{letter-spacing:2.080000pt;}
.ls10{letter-spacing:4.640000pt;}
.ls9{letter-spacing:5.920000pt;}
.ls1a{letter-spacing:6.560000pt;}
.ls19{letter-spacing:7.200000pt;}
.ls23{letter-spacing:9.552640pt;}
.ls1d{letter-spacing:9.866667pt;}
.ls5{letter-spacing:11.040000pt;}
.ls4{letter-spacing:16.800000pt;}
.ls21{letter-spacing:36.432640pt;}
.ws9{word-spacing:-18.048000pt;}
.ws0{word-spacing:-14.536427pt;}
.wsa{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.463467pt;}
.ws16{word-spacing:-13.374933pt;}
.ws17{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.232640pt;}
.ws5{word-spacing:-12.823467pt;}
.ws12{word-spacing:-12.768000pt;}
.wsf{word-spacing:-12.624000pt;}
.wsb{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.192000pt;}
.ws14{word-spacing:-12.128000pt;}
.wsd{word-spacing:-12.112000pt;}
.ws3{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.984000pt;}
.wsc{word-spacing:-11.904000pt;}
.ws13{word-spacing:-11.680000pt;}
.ws11{word-spacing:-11.264000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1.655253pt;}
._0{width:1.578240pt;}
._6{width:3.142613pt;}
._7{width:4.519253pt;}
._3{width:5.433600pt;}
._4{width:6.746240pt;}
._18{width:7.638613pt;}
._5{width:8.552320pt;}
._2{width:9.774080pt;}
._9{width:11.314560pt;}
._f{width:12.241493pt;}
._10{width:14.835840pt;}
._e{width:15.785173pt;}
._8{width:17.051520pt;}
._a{width:18.046933pt;}
._14{width:19.060053pt;}
._19{width:20.072747pt;}
._d{width:21.074773pt;}
._c{width:22.471467pt;}
._15{width:23.585280pt;}
._16{width:24.609707pt;}
._12{width:26.347520pt;}
._11{width:41.600000pt;}
._17{width:60.320000pt;}
._b{width:918.648320pt;}
._13{width:1771.661653pt;}
.fs3{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9c{bottom:5.600000pt;}
.yc7{bottom:5.640000pt;}
.y9a{bottom:5.760000pt;}
.ya2{bottom:5.786667pt;}
.y9d{bottom:5.920000pt;}
.yc8{bottom:5.960000pt;}
.y9f{bottom:6.080000pt;}
.ya3{bottom:6.106667pt;}
.yaa{bottom:6.400000pt;}
.yab{bottom:6.720000pt;}
.y5{bottom:8.640000pt;}
.y3{bottom:9.120000pt;}
.y4{bottom:24.000000pt;}
.y2{bottom:24.160000pt;}
.y102{bottom:116.832000pt;}
.y86{bottom:120.672000pt;}
.y12f{bottom:122.592000pt;}
.ye2{bottom:127.392000pt;}
.yb9{bottom:128.992000pt;}
.y101{bottom:133.786667pt;}
.y85{bottom:135.866667pt;}
.y12e{bottom:137.946667pt;}
.y5f{bottom:140.346667pt;}
.y2e{bottom:140.826667pt;}
.yb8{bottom:144.346667pt;}
.ye1{bottom:147.546667pt;}
.y84{bottom:151.226667pt;}
.y5e{bottom:155.546667pt;}
.yb7{bottom:159.706667pt;}
.y12d{bottom:161.306667pt;}
.y83{bottom:166.586667pt;}
.y2d{bottom:169.786667pt;}
.y5d{bottom:170.906667pt;}
.y100{bottom:173.466667pt;}
.y12c{bottom:176.666667pt;}
.yb6{bottom:182.906667pt;}
.y2c{bottom:185.146667pt;}
.y5c{bottom:186.266667pt;}
.y82{bottom:189.946667pt;}
.yff{bottom:195.386667pt;}
.y12b{bottom:199.866667pt;}
.y2b{bottom:200.346667pt;}
.y81{bottom:205.306667pt;}
.y5b{bottom:209.626667pt;}
.yb5{bottom:210.586667pt;}
.yfe{bottom:212.346667pt;}
.y2a{bottom:215.706667pt;}
.y80{bottom:220.666667pt;}
.y12a{bottom:223.226667pt;}
.y5a{bottom:224.986667pt;}
.yb4{bottom:227.386667pt;}
.yfd{bottom:229.786667pt;}
.y7f{bottom:235.866667pt;}
.y29{bottom:239.066667pt;}
.y59{bottom:240.346667pt;}
.yb3{bottom:244.226667pt;}
.y129{bottom:246.626667pt;}
.y7e{bottom:251.266667pt;}
.yfc{bottom:252.066667pt;}
.y28{bottom:254.466667pt;}
.y58{bottom:255.586667pt;}
.yb2{bottom:261.186667pt;}
.y128{bottom:261.986667pt;}
.y7d{bottom:266.626667pt;}
.y27{bottom:269.826667pt;}
.y57{bottom:270.946667pt;}
.yfb{bottom:274.146667pt;}
.y127{bottom:277.346667pt;}
.yb1{bottom:278.626667pt;}
.y7c{bottom:281.986667pt;}
.y26{bottom:285.186667pt;}
.y56{bottom:286.306667pt;}
.yfa{bottom:290.946667pt;}
.y7b{bottom:297.346667pt;}
.y25{bottom:300.386667pt;}
.y126{bottom:300.706667pt;}
.yb0{bottom:300.866667pt;}
.yf9{bottom:307.906667pt;}
.y55{bottom:309.506667pt;}
.y7a{bottom:312.706667pt;}
.y24{bottom:315.746667pt;}
.ye0{bottom:321.346667pt;}
.yaf{bottom:322.946667pt;}
.y125{bottom:323.906667pt;}
.yf8{bottom:325.346667pt;}
.y79{bottom:327.906667pt;}
.y23{bottom:331.106667pt;}
.ydf{bottom:336.546667pt;}
.y54{bottom:338.786667pt;}
.yae{bottom:339.746667pt;}
.y124{bottom:347.266667pt;}
.yf7{bottom:347.586667pt;}
.y78{bottom:351.266667pt;}
.y22{bottom:354.466667pt;}
.yad{bottom:356.706667pt;}
.yde{bottom:359.906667pt;}
.y123{bottom:362.626667pt;}
.y77{bottom:366.626667pt;}
.yf6{bottom:370.946667pt;}
.y53{bottom:372.866667pt;}
.yac{bottom:373.506667pt;}
.ydd{bottom:375.266667pt;}
.y76{bottom:381.986667pt;}
.y122{bottom:385.986667pt;}
.yf5{bottom:386.306667pt;}
.y21{bottom:388.226667pt;}
.ya9{bottom:390.306667pt;}
.ydc{bottom:390.626667pt;}
.y75{bottom:397.346667pt;}
.y121{bottom:401.346667pt;}
.yf4{bottom:401.506667pt;}
.y52{bottom:403.586667pt;}
.y20{bottom:403.746667pt;}
.ydb{bottom:405.986667pt;}
.ya8{bottom:407.906667pt;}
.y51{bottom:418.946667pt;}
.y1f{bottom:419.106667pt;}
.y74{bottom:420.706667pt;}
.y120{bottom:424.706667pt;}
.ya7{bottom:424.866667pt;}
.yda{bottom:429.346667pt;}
.y50{bottom:434.306667pt;}
.y73{bottom:435.906667pt;}
.y11f{bottom:439.906667pt;}
.yf3{bottom:440.226667pt;}
.ya6{bottom:441.666667pt;}
.yd9{bottom:444.546667pt;}
.y4f{bottom:449.506667pt;}
.y1e{bottom:450.466667pt;}
.y72{bottom:451.266667pt;}
.yf2{bottom:455.586667pt;}
.ya5{bottom:458.626667pt;}
.yd8{bottom:459.906667pt;}
.y11e{bottom:463.266667pt;}
.y4e{bottom:464.866667pt;}
.y1d{bottom:465.826667pt;}
.y71{bottom:466.626667pt;}
.yf1{bottom:470.946667pt;}
.yd7{bottom:475.266667pt;}
.ya4{bottom:475.426667pt;}
.y11d{bottom:478.626667pt;}
.yf0{bottom:486.146667pt;}
.y4d{bottom:488.226667pt;}
.y70{bottom:489.986667pt;}
.yd6{bottom:490.626667pt;}
.ya1{bottom:492.226667pt;}
.y1c{bottom:497.053333pt;}
.yef{bottom:501.533333pt;}
.y11c{bottom:502.333333pt;}
.y4c{bottom:503.613333pt;}
.y6f{bottom:505.373333pt;}
.yd5{bottom:506.013333pt;}
.ya0{bottom:509.213333pt;}
.y1b{bottom:512.413333pt;}
.yee{bottom:516.893333pt;}
.y6e{bottom:520.573333pt;}
.yd4{bottom:521.373333pt;}
.y9e{bottom:526.013333pt;}
.y4b{bottom:526.973333pt;}
.y1a{bottom:527.773333pt;}
.yed{bottom:532.253333pt;}
.y6d{bottom:535.933333pt;}
.y11b{bottom:536.413333pt;}
.yd3{bottom:536.573333pt;}
.y4a{bottom:542.333333pt;}
.y9b{bottom:542.973333pt;}
.y19{bottom:543.133333pt;}
.y11a{bottom:551.773333pt;}
.yec{bottom:555.613333pt;}
.y49{bottom:557.533333pt;}
.y6c{bottom:559.293333pt;}
.yd2{bottom:560.253333pt;}
.y99{bottom:560.413333pt;}
.y119{bottom:567.133333pt;}
.yeb{bottom:570.973333pt;}
.y48{bottom:572.893333pt;}
.y18{bottom:574.493333pt;}
.y6b{bottom:579.453333pt;}
.y118{bottom:582.333333pt;}
.y98{bottom:582.653333pt;}
.yea{bottom:586.173333pt;}
.y47{bottom:588.253333pt;}
.y17{bottom:589.853333pt;}
.yd1{bottom:593.053333pt;}
.y117{bottom:597.693333pt;}
.ye9{bottom:601.533333pt;}
.y16{bottom:605.053333pt;}
.y97{bottom:606.013333pt;}
.yd0{bottom:609.853333pt;}
.y46{bottom:611.613333pt;}
.ye8{bottom:616.893333pt;}
.y116{bottom:621.053333pt;}
.ycf{bottom:626.813333pt;}
.y45{bottom:626.973333pt;}
.y96{bottom:629.373333pt;}
.y15{bottom:636.413333pt;}
.ye7{bottom:640.573333pt;}
.y44{bottom:642.173333pt;}
.yce{bottom:643.613333pt;}
.y95{bottom:644.573333pt;}
.y14{bottom:651.773333pt;}
.y43{bottom:657.533333pt;}
.y94{bottom:659.933333pt;}
.ycd{bottom:660.573333pt;}
.y13{bottom:667.133333pt;}
.y42{bottom:672.893333pt;}
.ye6{bottom:674.653333pt;}
.y115{bottom:674.973333pt;}
.ycc{bottom:677.373333pt;}
.y12{bottom:682.493333pt;}
.y93{bottom:683.293333pt;}
.y114{bottom:690.333333pt;}
.ycb{bottom:694.173333pt;}
.ye5{bottom:694.653333pt;}
.y41{bottom:696.253333pt;}
.y11{bottom:697.693333pt;}
.y92{bottom:698.653333pt;}
.y113{bottom:705.693333pt;}
.yca{bottom:711.133333pt;}
.y91{bottom:714.013333pt;}
.y112{bottom:721.053333pt;}
.y40{bottom:725.053333pt;}
.yc9{bottom:727.933333pt;}
.y90{bottom:729.373333pt;}
.y10{bottom:731.293333pt;}
.y111{bottom:736.413333pt;}
.y3f{bottom:740.413333pt;}
.yc6{bottom:744.893333pt;}
.y110{bottom:751.813333pt;}
.y8f{bottom:752.613333pt;}
.y3e{bottom:755.813333pt;}
.yf{bottom:758.533333pt;}
.y6a{bottom:760.613333pt;}
.yc5{bottom:761.733333pt;}
.y8e{bottom:767.973333pt;}
.y10f{bottom:775.013333pt;}
.y69{bottom:775.973333pt;}
.y3d{bottom:779.173333pt;}
.yc4{bottom:779.333333pt;}
.ye{bottom:780.293333pt;}
.y8d{bottom:791.333333pt;}
.y3c{bottom:794.533333pt;}
.yc3{bottom:796.133333pt;}
.y10e{bottom:798.693333pt;}
.y68{bottom:799.333333pt;}
.yd{bottom:802.053333pt;}
.y3b{bottom:809.893333pt;}
.yc2{bottom:813.093333pt;}
.y67{bottom:814.693333pt;}
.yc{bottom:823.813333pt;}
.y3a{bottom:825.093333pt;}
.yc1{bottom:829.893333pt;}
.y66{bottom:830.053333pt;}
.y10d{bottom:831.493333pt;}
.y8c{bottom:838.053333pt;}
.yb{bottom:845.733333pt;}
.yc0{bottom:846.853333pt;}
.y10c{bottom:848.293333pt;}
.y39{bottom:848.453333pt;}
.y65{bottom:853.413333pt;}
.y8b{bottom:861.413333pt;}
.ya{bottom:862.213333pt;}
.ybf{bottom:863.653333pt;}
.y10b{bottom:865.253333pt;}
.y64{bottom:868.613333pt;}
.y8a{bottom:876.613333pt;}
.y38{bottom:877.413333pt;}
.ybe{bottom:880.613333pt;}
.y10a{bottom:882.693333pt;}
.y63{bottom:891.973333pt;}
.y37{bottom:892.613333pt;}
.y9{bottom:895.973333pt;}
.ybd{bottom:897.413333pt;}
.y89{bottom:899.973333pt;}
.y109{bottom:904.933333pt;}
.ye4{bottom:907.973333pt;}
.ybc{bottom:914.213333pt;}
.y62{bottom:915.333333pt;}
.y36{bottom:915.973333pt;}
.y88{bottom:923.333333pt;}
.y8{bottom:923.493333pt;}
.y108{bottom:928.293333pt;}
.y35{bottom:931.333333pt;}
.ybb{bottom:931.813333pt;}
.y61{bottom:938.693333pt;}
.y107{bottom:943.653333pt;}
.y34{bottom:946.693333pt;}
.y7{bottom:951.173333pt;}
.yba{bottom:954.053333pt;}
.y106{bottom:959.013333pt;}
.y60{bottom:962.053333pt;}
.y33{bottom:970.053333pt;}
.y105{bottom:974.213333pt;}
.y87{bottom:977.413333pt;}
.y32{bottom:985.413333pt;}
.y104{bottom:989.573333pt;}
.ye3{bottom:992.613333pt;}
.y31{bottom:1000.640000pt;}
.y103{bottom:1013.280000pt;}
.y30{bottom:1016.000000pt;}
.y6{bottom:1028.320000pt;}
.y1{bottom:1041.760000pt;}
.y2f{bottom:1072.640000pt;}
.h10{height:16.800000pt;}
.h14{height:16.832000pt;}
.he{height:16.960000pt;}
.h12{height:16.992000pt;}
.h13{height:17.600000pt;}
.h8{height:31.390625pt;}
.h4{height:39.840000pt;}
.h2{height:41.600000pt;}
.h11{height:47.109375pt;}
.hc{height:47.621250pt;}
.hf{height:48.375000pt;}
.h9{height:52.108438pt;}
.h3{height:52.134375pt;}
.hb{height:53.535000pt;}
.h15{height:54.598989pt;}
.h5{height:55.402500pt;}
.h7{height:59.150000pt;}
.ha{height:61.410000pt;}
.hd{height:66.750000pt;}
.h6{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:51.040000pt;}
.we{width:55.712000pt;}
.w11{width:55.840000pt;}
.wf{width:61.760000pt;}
.wa{width:63.200000pt;}
.w14{width:69.280000pt;}
.w13{width:69.312000pt;}
.w16{width:73.152000pt;}
.w17{width:79.040000pt;}
.w18{width:79.232000pt;}
.wc{width:79.712000pt;}
.w8{width:80.480000pt;}
.wb{width:92.320000pt;}
.w9{width:92.832000pt;}
.w10{width:102.720000pt;}
.w7{width:109.152000pt;}
.w12{width:131.392000pt;}
.wd{width:156.346667pt;}
.w5{width:179.866667pt;}
.w6{width:180.026667pt;}
.w4{width:220.826667pt;}
.w15{width:241.466667pt;}
.w3{width:332.866667pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:7.200000pt;}
.x45{left:8.640000pt;}
.x41{left:9.760000pt;}
.x24{left:13.960000pt;}
.x26{left:15.240000pt;}
.x40{left:17.280000pt;}
.x3c{left:18.720000pt;}
.x5{left:21.760000pt;}
.x2d{left:23.200000pt;}
.x2f{left:24.800000pt;}
.x28{left:25.920000pt;}
.x20{left:27.080000pt;}
.x27{left:28.800000pt;}
.x25{left:32.346667pt;}
.x32{left:33.760000pt;}
.x30{left:35.200000pt;}
.x15{left:36.320000pt;}
.x2e{left:38.240000pt;}
.x31{left:39.866667pt;}
.x2{left:41.914667pt;}
.x33{left:46.240000pt;}
.x43{left:52.040000pt;}
.x4c{left:59.520000pt;}
.x1f{left:60.826667pt;}
.x1e{left:62.440000pt;}
.x39{left:64.680000pt;}
.x13{left:65.640000pt;}
.x1c{left:68.346667pt;}
.x19{left:72.986667pt;}
.x18{left:74.920000pt;}
.x17{left:75.866667pt;}
.x16{left:78.280000pt;}
.x1b{left:82.920000pt;}
.x1d{left:83.880000pt;}
.x1a{left:86.600000pt;}
.x1{left:94.592000pt;}
.x48{left:98.080000pt;}
.x7{left:110.592000pt;}
.x42{left:115.392000pt;}
.x4d{left:122.912000pt;}
.x3d{left:127.072000pt;}
.x9{left:128.512000pt;}
.x6{left:132.192000pt;}
.x3{left:145.626667pt;}
.x47{left:160.506667pt;}
.xa{left:171.866667pt;}
.xb{left:172.826667pt;}
.x37{left:173.946667pt;}
.xd{left:178.266667pt;}
.xc{left:179.386667pt;}
.x12{left:216.986667pt;}
.x46{left:221.466667pt;}
.x8{left:232.506667pt;}
.x29{left:238.426667pt;}
.x11{left:246.106667pt;}
.xe{left:256.506667pt;}
.x38{left:260.026667pt;}
.x10{left:262.266667pt;}
.x2a{left:279.266667pt;}
.x35{left:289.826667pt;}
.x2b{left:342.466667pt;}
.x21{left:364.866667pt;}
.x3e{left:392.546667pt;}
.x14{left:396.866667pt;}
.x49{left:401.986667pt;}
.x3a{left:416.386667pt;}
.x2c{left:434.786667pt;}
.x23{left:445.346667pt;}
.x3f{left:448.253333pt;}
.x44{left:462.653333pt;}
.x3b{left:472.093333pt;}
.x4a{left:475.133333pt;}
.x4{left:478.493333pt;}
.xf{left:482.973333pt;}
.x36{left:498.333333pt;}
.x34{left:506.333333pt;}
.x4b{left:554.173333pt;}
}




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