
    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_aef1ca1fe911ef8016c14e3c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_ac91cff005c1ec76b34a3157.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_23395042de4eeea1b2f824cc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.120605;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_1076414245cd78820d46ca8c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.008789;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_378954e1986f7d009686ecdb.woff')format("woff");}.ff6{font-family:ff6;line-height:0.964844;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_dc2d12559d68710580938b56.woff')format("woff");}.ff7{font-family:ff7;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a480cd9c5a4b7052d5866b42.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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:ffa;src:url('chunks/assets/font_f3fc3831f6193e1dfa261af5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_76cce82b7e2ae67567b0a60a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.946777;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v2{vertical-align:27.360000px;}
.ls6{letter-spacing:-0.457800px;}
.ls3{letter-spacing:-0.180000px;}
.lsb{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.018720px;}
.ls2{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.018720px;}
.lse{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.256200px;}
.ls0{letter-spacing:0.341280px;}
.ls1{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.738000px;}
.ls9{letter-spacing:33.960000px;}
.lsd{letter-spacing:87.960000px;}
.lsc{letter-spacing:90.642720px;}
.lsa{letter-spacing:91.362720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-24.678000px;}
.ws4{word-spacing:-24.300000px;}
.ws6{word-spacing:-23.958720px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.wsc{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.226440px;}
.wsa{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws7{word-spacing:-12.060000px;}
.wsd{word-spacing:-0.072000px;}
.ws8{word-spacing:0.000000px;}
._23{margin-left:-9.756720px;}
._14{margin-left:-6.999120px;}
._6{margin-left:-5.396160px;}
._5{margin-left:-4.056000px;}
._b{margin-left:-2.615280px;}
._0{margin-left:-1.267920px;}
._1{width:1.487280px;}
._4{width:2.912160px;}
._7{width:4.144080px;}
._13{width:5.924640px;}
._15{width:6.942720px;}
._10{width:8.184000px;}
._11{width:9.504000px;}
._e{width:10.891920px;}
._c{width:12.000000px;}
._d{width:13.104000px;}
._f{width:14.184000px;}
._a{width:16.200000px;}
._18{width:19.512000px;}
._19{width:20.569440px;}
._1a{width:21.764400px;}
._1b{width:22.841280px;}
._1c{width:23.934480px;}
._16{width:24.984000px;}
._1e{width:26.466000px;}
._9{width:27.691920px;}
._8{width:28.728000px;}
._17{width:29.860800px;}
._2{width:31.632720px;}
._1d{width:33.552000px;}
._22{width:64.385280px;}
._21{width:66.509280px;}
._3{width:83.380080px;}
._1f{width:112.337280px;}
._20{width:198.180000px;}
._12{width:846.156000px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(237,125,49);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.240000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:77.760000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.ya{bottom:-17.100000px;}
.y0{bottom:0.000000px;}
.yd2{bottom:3.954000px;}
.yc5{bottom:3.960000px;}
.yc8{bottom:4.005000px;}
.y9{bottom:7.920000px;}
.ycb{bottom:10.260000px;}
.yd1{bottom:10.434000px;}
.ycd{bottom:10.440000px;}
.yc7{bottom:10.485000px;}
.yc3{bottom:10.800000px;}
.y7{bottom:20.160000px;}
.y8{bottom:31.680000px;}
.y6{bottom:58.896000px;}
.y5{bottom:79.956000px;}
.yd3{bottom:119.736000px;}
.yb2{bottom:122.616000px;}
.yef{bottom:125.496000px;}
.y50{bottom:127.116000px;}
.y8b{bottom:129.276000px;}
.y128{bottom:143.316000px;}
.yd0{bottom:146.376000px;}
.y4f{bottom:147.816000px;}
.y8a{bottom:149.976000px;}
.yee{bottom:152.130000px;}
.ya4{bottom:155.370000px;}
.y72{bottom:158.610000px;}
.y10d{bottom:161.310000px;}
.y127{bottom:164.010000px;}
.y89{bottom:170.670000px;}
.ycf{bottom:173.190000px;}
.ya3{bottom:176.070000px;}
.yed{bottom:178.770000px;}
.y71{bottom:179.310000px;}
.y4e{bottom:180.570000px;}
.yb1{bottom:188.130000px;}
.y88{bottom:191.370000px;}
.y126{bottom:196.770000px;}
.yce{bottom:199.830000px;}
.y70{bottom:200.010000px;}
.y10c{bottom:203.070000px;}
.ya2{bottom:208.830000px;}
.y87{bottom:212.070000px;}
.y4d{bottom:213.330000px;}
.y125{bottom:217.470000px;}
.yb0{bottom:220.710000px;}
.ycc{bottom:226.470000px;}
.yec{bottom:227.910000px;}
.ya1{bottom:229.530000px;}
.y6f{bottom:232.770000px;}
.y4c{bottom:234.030000px;}
.y124{bottom:238.170000px;}
.y10b{bottom:244.830000px;}
.y27{bottom:249.150000px;}
.yca{bottom:253.290000px;}
.y6e{bottom:253.470000px;}
.y4b{bottom:254.730000px;}
.ya0{bottom:262.110000px;}
.y10a{bottom:264.810000px;}
.yeb{bottom:269.490000px;}
.y123{bottom:270.930000px;}
.yaf{bottom:274.170000px;}
.y4a{bottom:275.430000px;}
.yc9{bottom:279.930000px;}
.y9f{bottom:282.810000px;}
.y6d{bottom:286.230000px;}
.yea{bottom:290.190000px;}
.y26{bottom:290.910000px;}
.y109{bottom:291.630000px;}
.y133{bottom:294.870000px;}
.y49{bottom:296.130000px;}
.yc6{bottom:306.570000px;}
.y6c{bottom:306.930000px;}
.ye9{bottom:310.935000px;}
.y25{bottom:311.655000px;}
.y122{bottom:312.375000px;}
.y9e{bottom:315.615000px;}
.y48{bottom:316.875000px;}
.y108{bottom:318.315000px;}
.y86{bottom:318.855000px;}
.yae{bottom:327.675000px;}
.ye8{bottom:331.635000px;}
.yc4{bottom:333.435000px;}
.y47{bottom:337.575000px;}
.y6b{bottom:339.555000px;}
.y107{bottom:344.955000px;}
.y9d{bottom:348.375000px;}
.y24{bottom:353.235000px;}
.y46{bottom:358.275000px;}
.yc2{bottom:360.075000px;}
.y85{bottom:360.255000px;}
.y132{bottom:369.075000px;}
.y106{bottom:371.775000px;}
.y6a{bottom:372.315000px;}
.ye7{bottom:373.395000px;}
.y23{bottom:373.935000px;}
.y121{bottom:377.715000px;}
.y9c{bottom:380.955000px;}
.y131{bottom:389.775000px;}
.y45{bottom:390.855000px;}
.y69{bottom:393.015000px;}
.ye6{bottom:394.095000px;}
.y22{bottom:394.635000px;}
.y120{bottom:410.475000px;}
.y44{bottom:411.555000px;}
.y68{bottom:413.715000px;}
.y21{bottom:415.335000px;}
.y105{bottom:420.735000px;}
.yc1{bottom:424.155000px;}
.yad{bottom:425.775000px;}
.y11f{bottom:431.175000px;}
.y43{bottom:432.255000px;}
.y67{bottom:434.415000px;}
.ye5{bottom:435.855000px;}
.y20{bottom:436.035000px;}
.y130{bottom:443.055000px;}
.y9b{bottom:446.475000px;}
.y11e{bottom:451.875000px;}
.y42{bottom:452.955000px;}
.y66{bottom:455.115000px;}
.y1f{bottom:456.735000px;}
.y104{bottom:462.495000px;}
.yc0{bottom:465.915000px;}
.y41{bottom:473.655000px;}
.y65{bottom:475.815000px;}
.y1e{bottom:477.435000px;}
.y9a{bottom:479.055000px;}
.y103{bottom:483.195000px;}
.y11d{bottom:484.455000px;}
.ybf{bottom:486.615000px;}
.y84{bottom:487.875000px;}
.y40{bottom:494.355000px;}
.y64{bottom:496.515000px;}
.y1d{bottom:498.135000px;}
.yac{bottom:499.755000px;}
.y102{bottom:503.895000px;}
.y11c{bottom:505.155000px;}
.y83{bottom:508.575000px;}
.y99{bottom:511.815000px;}
.y3f{bottom:515.055000px;}
.y1c{bottom:518.835000px;}
.y13a{bottom:520.455000px;}
.ybe{bottom:528.195000px;}
.y63{bottom:529.275000px;}
.y98{bottom:532.515000px;}
.y3e{bottom:535.755000px;}
.y11b{bottom:537.915000px;}
.ye4{bottom:539.355000px;}
.y1b{bottom:539.535000px;}
.y12f{bottom:541.155000px;}
.y101{bottom:545.475000px;}
.y82{bottom:549.975000px;}
.y97{bottom:553.215000px;}
.y3d{bottom:556.455000px;}
.y11a{bottom:558.615000px;}
.y1a{bottom:560.235000px;}
.y62{bottom:561.885000px;}
.yab{bottom:565.305000px;}
.ye3{bottom:566.025000px;}
.ybd{bottom:569.985000px;}
.y96{bottom:573.945000px;}
.y19{bottom:580.965000px;}
.y61{bottom:582.585000px;}
.y100{bottom:587.265000px;}
.y3c{bottom:589.245000px;}
.ybc{bottom:590.685000px;}
.y119{bottom:591.225000px;}
.ye2{bottom:592.665000px;}
.yaa{bottom:597.885000px;}
.y18{bottom:601.665000px;}
.y60{bottom:603.285000px;}
.y95{bottom:606.705000px;}
.ybb{bottom:611.385000px;}
.y81{bottom:615.345000px;}
.ye1{bottom:619.485000px;}
.y3b{bottom:622.005000px;}
.y17{bottom:622.365000px;}
.y5f{bottom:623.985000px;}
.y139{bottom:627.405000px;}
.yff{bottom:629.025000px;}
.ya9{bottom:630.645000px;}
.y80{bottom:636.045000px;}
.y94{bottom:639.285000px;}
.y3a{bottom:642.705000px;}
.y16{bottom:643.065000px;}
.y5e{bottom:644.685000px;}
.y138{bottom:647.925000px;}
.yfe{bottom:649.725000px;}
.ya8{bottom:651.345000px;}
.yba{bottom:653.145000px;}
.y93{bottom:659.985000px;}
.y39{bottom:663.405000px;}
.y15{bottom:663.765000px;}
.y5d{bottom:665.385000px;}
.ye0{bottom:668.445000px;}
.y7f{bottom:668.625000px;}
.yfd{bottom:670.425000px;}
.ya7{bottom:672.045000px;}
.y118{bottom:677.445000px;}
.y92{bottom:680.685000px;}
.y38{bottom:683.925000px;}
.y14{bottom:684.465000px;}
.y5c{bottom:686.085000px;}
.ya6{bottom:692.745000px;}
.yb9{bottom:694.725000px;}
.y7e{bottom:701.385000px;}
.y37{bottom:704.625000px;}
.y5b{bottom:706.785000px;}
.y117{bottom:710.025000px;}
.ydf{bottom:710.205000px;}
.yfc{bottom:712.005000px;}
.y91{bottom:713.445000px;}
.y137{bottom:722.085000px;}
.y36{bottom:725.325000px;}
.y13{bottom:726.225000px;}
.y5a{bottom:727.485000px;}
.yde{bottom:730.905000px;}
.y7d{bottom:734.145000px;}
.y12e{bottom:737.385000px;}
.y35{bottom:746.025000px;}
.yb8{bottom:748.185000px;}
.ydd{bottom:751.605000px;}
.y116{bottom:751.785000px;}
.yfb{bottom:753.765000px;}
.y90{bottom:754.845000px;}
.y12d{bottom:758.085000px;}
.y59{bottom:760.245000px;}
.y34{bottom:766.725000px;}
.y12{bottom:767.985000px;}
.y115{bottom:772.485000px;}
.yfa{bottom:774.465000px;}
.y136{bottom:775.545000px;}
.y12c{bottom:778.785000px;}
.yb7{bottom:780.945000px;}
.y7c{bottom:787.425000px;}
.ydc{bottom:793.185000px;}
.yf9{bottom:795.165000px;}
.y33{bottom:799.485000px;}
.y11{bottom:800.565000px;}
.y58{bottom:801.825000px;}
.y7b{bottom:808.125000px;}
.y12b{bottom:811.590000px;}
.yb6{bottom:813.570000px;}
.ydb{bottom:813.930000px;}
.y114{bottom:814.290000px;}
.yf8{bottom:815.910000px;}
.y32{bottom:820.230000px;}
.y57{bottom:822.570000px;}
.y10{bottom:828.150000px;}
.y7a{bottom:828.870000px;}
.y12a{bottom:832.290000px;}
.y113{bottom:834.990000px;}
.yf7{bottom:836.610000px;}
.y31{bottom:840.930000px;}
.yf{bottom:842.010000px;}
.y56{bottom:843.270000px;}
.yb5{bottom:846.330000px;}
.y79{bottom:849.570000px;}
.y129{bottom:852.990000px;}
.yda{bottom:855.690000px;}
.yf6{bottom:857.310000px;}
.y30{bottom:861.630000px;}
.y55{bottom:863.970000px;}
.ye{bottom:869.550000px;}
.y8f{bottom:873.690000px;}
.y112{bottom:876.390000px;}
.yb4{bottom:879.090000px;}
.y2f{bottom:882.330000px;}
.y8e{bottom:894.390000px;}
.yd{bottom:895.470000px;}
.y111{bottom:897.090000px;}
.yd9{bottom:897.450000px;}
.yf5{bottom:899.070000px;}
.y2e{bottom:903.030000px;}
.y54{bottom:905.730000px;}
.yb3{bottom:911.670000px;}
.y78{bottom:915.090000px;}
.yd8{bottom:918.150000px;}
.yf4{bottom:919.770000px;}
.y2d{bottom:923.730000px;}
.y8d{bottom:926.970000px;}
.y135{bottom:935.790000px;}
.yc{bottom:938.490000px;}
.y110{bottom:938.670000px;}
.y2c{bottom:944.430000px;}
.y77{bottom:947.670000px;}
.ya5{bottom:956.490000px;}
.yd7{bottom:960.810000px;}
.yf3{bottom:961.350000px;}
.y2b{bottom:965.130000px;}
.yb{bottom:966.030000px;}
.y76{bottom:968.370000px;}
.y134{bottom:977.190000px;}
.y53{bottom:980.070000px;}
.y10f{bottom:980.430000px;}
.yd6{bottom:987.450000px;}
.y75{bottom:989.070000px;}
.y2a{bottom:997.890000px;}
.y52{bottom:1000.770000px;}
.y10e{bottom:1001.130000px;}
.yf2{bottom:1002.570000px;}
.y8c{bottom:1009.770000px;}
.y4{bottom:1013.190000px;}
.yd5{bottom:1014.090000px;}
.y51{bottom:1021.470000px;}
.y74{bottom:1021.830000px;}
.yf1{bottom:1029.210000px;}
.y29{bottom:1030.470000px;}
.yd4{bottom:1040.730000px;}
.y73{bottom:1042.530000px;}
.y3{bottom:1055.670000px;}
.yf0{bottom:1055.850000px;}
.y28{bottom:1063.260000px;}
.y2{bottom:1079.280000px;}
.y1{bottom:1114.380000px;}
.h10{height:20.700000px;}
.h11{height:20.736000px;}
.hc{height:33.683203px;}
.hf{height:34.200000px;}
.h12{height:34.416000px;}
.h7{height:49.500000px;}
.h4{height:50.273438px;}
.h2{height:50.800781px;}
.hd{height:52.417969px;}
.he{height:52.628906px;}
.h6{height:54.000000px;}
.h9{height:54.316406px;}
.h8{height:58.320000px;}
.h3{height:59.436914px;}
.hb{height:61.043203px;}
.h5{height:65.884219px;}
.ha{height:67.565039px;}
.h1{height:86.255508px;}
.h0{height:1188.000000px;}
.w6{width:68.220000px;}
.wa{width:78.300000px;}
.wd{width:122.580000px;}
.wf{width:129.420000px;}
.wc{width:145.116000px;}
.w8{width:150.870000px;}
.w9{width:162.570000px;}
.w2{width:171.720000px;}
.w5{width:171.930000px;}
.w4{width:173.550000px;}
.w3{width:173.730000px;}
.w10{width:186.870000px;}
.w7{width:263.010000px;}
.wb{width:344.775000px;}
.we{width:376.635000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1b{left:1.080000px;}
.x6{left:10.799986px;}
.x22{left:21.420000px;}
.x7{left:23.219986px;}
.x1a{left:26.100000px;}
.x23{left:29.514000px;}
.x2c{left:31.500000px;}
.x1d{left:34.014000px;}
.x28{left:39.060000px;}
.x18{left:45.930000px;}
.x16{left:51.345000px;}
.x14{left:52.374000px;}
.x1f{left:54.900000px;}
.x2e{left:59.040000px;}
.x27{left:61.950000px;}
.x2f{left:63.540000px;}
.x25{left:66.450000px;}
.x33{left:77.625000px;}
.x5{left:108.035986px;}
.x13{left:110.376000px;}
.x24{left:111.465000px;}
.x9{left:114.695986px;}
.x26{left:117.045000px;}
.x10{left:118.835986px;}
.x12{left:120.455986px;}
.xf{left:122.975986px;}
.x11{left:125.495986px;}
.xe{left:127.115986px;}
.x1c{left:133.236000px;}
.xc{left:135.035986px;}
.x30{left:138.954000px;}
.x2a{left:146.925000px;}
.xd{left:162.029986px;}
.x1{left:176.249986px;}
.x29{left:191.010000px;}
.x1e{left:203.790000px;}
.x2{left:282.449986px;}
.x15{left:284.250000px;}
.xa{left:335.774986px;}
.xb{left:393.194986px;}
.x34{left:398.594986px;}
.x8{left:459.074986px;}
.x17{left:460.155000px;}
.x20{left:469.155000px;}
.x31{left:489.345000px;}
.x2b{left:537.945000px;}
.x32{left:621.105000px;}
.x21{left:622.365000px;}
.x19{left:636.045000px;}
.x2d{left:685.410000px;}
.x4{left:793.409986px;}
.x3{left:810.149986px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v2{vertical-align:24.320000pt;}
.ls6{letter-spacing:-0.406933pt;}
.ls3{letter-spacing:-0.160000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.016640pt;}
.ls2{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.016640pt;}
.lse{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls0{letter-spacing:0.303360pt;}
.ls1{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.656000pt;}
.ls9{letter-spacing:30.186667pt;}
.lsd{letter-spacing:78.186667pt;}
.lsc{letter-spacing:80.571307pt;}
.lsa{letter-spacing:81.211307pt;}
.ws5{word-spacing:-21.936000pt;}
.ws4{word-spacing:-21.600000pt;}
.ws6{word-spacing:-21.296640pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.wsc{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.534613pt;}
.wsa{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws7{word-spacing:-10.720000pt;}
.wsd{word-spacing:-0.064000pt;}
.ws8{word-spacing:0.000000pt;}
._23{margin-left:-8.672640pt;}
._14{margin-left:-6.221440pt;}
._6{margin-left:-4.796587pt;}
._5{margin-left:-3.605333pt;}
._b{margin-left:-2.324693pt;}
._0{margin-left:-1.127040pt;}
._1{width:1.322027pt;}
._4{width:2.588587pt;}
._7{width:3.683627pt;}
._13{width:5.266347pt;}
._15{width:6.171307pt;}
._10{width:7.274667pt;}
._11{width:8.448000pt;}
._e{width:9.681707pt;}
._c{width:10.666667pt;}
._d{width:11.648000pt;}
._f{width:12.608000pt;}
._a{width:14.400000pt;}
._18{width:17.344000pt;}
._19{width:18.283947pt;}
._1a{width:19.346133pt;}
._1b{width:20.303360pt;}
._1c{width:21.275093pt;}
._16{width:22.208000pt;}
._1e{width:23.525333pt;}
._9{width:24.615040pt;}
._8{width:25.536000pt;}
._17{width:26.542933pt;}
._2{width:28.117973pt;}
._1d{width:29.824000pt;}
._22{width:57.231360pt;}
._21{width:59.119360pt;}
._3{width:74.115627pt;}
._1f{width:99.855360pt;}
._20{width:176.160000pt;}
._12{width:752.138667pt;}
.fs5{font-size:42.880000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:69.120000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.ya{bottom:-15.200000pt;}
.y0{bottom:0.000000pt;}
.yd2{bottom:3.514667pt;}
.yc5{bottom:3.520000pt;}
.yc8{bottom:3.560000pt;}
.y9{bottom:7.040000pt;}
.ycb{bottom:9.120000pt;}
.yd1{bottom:9.274667pt;}
.ycd{bottom:9.280000pt;}
.yc7{bottom:9.320000pt;}
.yc3{bottom:9.600000pt;}
.y7{bottom:17.920000pt;}
.y8{bottom:28.160000pt;}
.y6{bottom:52.352000pt;}
.y5{bottom:71.072000pt;}
.yd3{bottom:106.432000pt;}
.yb2{bottom:108.992000pt;}
.yef{bottom:111.552000pt;}
.y50{bottom:112.992000pt;}
.y8b{bottom:114.912000pt;}
.y128{bottom:127.392000pt;}
.yd0{bottom:130.112000pt;}
.y4f{bottom:131.392000pt;}
.y8a{bottom:133.312000pt;}
.yee{bottom:135.226667pt;}
.ya4{bottom:138.106667pt;}
.y72{bottom:140.986667pt;}
.y10d{bottom:143.386667pt;}
.y127{bottom:145.786667pt;}
.y89{bottom:151.706667pt;}
.ycf{bottom:153.946667pt;}
.ya3{bottom:156.506667pt;}
.yed{bottom:158.906667pt;}
.y71{bottom:159.386667pt;}
.y4e{bottom:160.506667pt;}
.yb1{bottom:167.226667pt;}
.y88{bottom:170.106667pt;}
.y126{bottom:174.906667pt;}
.yce{bottom:177.626667pt;}
.y70{bottom:177.786667pt;}
.y10c{bottom:180.506667pt;}
.ya2{bottom:185.626667pt;}
.y87{bottom:188.506667pt;}
.y4d{bottom:189.626667pt;}
.y125{bottom:193.306667pt;}
.yb0{bottom:196.186667pt;}
.ycc{bottom:201.306667pt;}
.yec{bottom:202.586667pt;}
.ya1{bottom:204.026667pt;}
.y6f{bottom:206.906667pt;}
.y4c{bottom:208.026667pt;}
.y124{bottom:211.706667pt;}
.y10b{bottom:217.626667pt;}
.y27{bottom:221.466667pt;}
.yca{bottom:225.146667pt;}
.y6e{bottom:225.306667pt;}
.y4b{bottom:226.426667pt;}
.ya0{bottom:232.986667pt;}
.y10a{bottom:235.386667pt;}
.yeb{bottom:239.546667pt;}
.y123{bottom:240.826667pt;}
.yaf{bottom:243.706667pt;}
.y4a{bottom:244.826667pt;}
.yc9{bottom:248.826667pt;}
.y9f{bottom:251.386667pt;}
.y6d{bottom:254.426667pt;}
.yea{bottom:257.946667pt;}
.y26{bottom:258.586667pt;}
.y109{bottom:259.226667pt;}
.y133{bottom:262.106667pt;}
.y49{bottom:263.226667pt;}
.yc6{bottom:272.506667pt;}
.y6c{bottom:272.826667pt;}
.ye9{bottom:276.386667pt;}
.y25{bottom:277.026667pt;}
.y122{bottom:277.666667pt;}
.y9e{bottom:280.546667pt;}
.y48{bottom:281.666667pt;}
.y108{bottom:282.946667pt;}
.y86{bottom:283.426667pt;}
.yae{bottom:291.266667pt;}
.ye8{bottom:294.786667pt;}
.yc4{bottom:296.386667pt;}
.y47{bottom:300.066667pt;}
.y6b{bottom:301.826667pt;}
.y107{bottom:306.626667pt;}
.y9d{bottom:309.666667pt;}
.y24{bottom:313.986667pt;}
.y46{bottom:318.466667pt;}
.yc2{bottom:320.066667pt;}
.y85{bottom:320.226667pt;}
.y132{bottom:328.066667pt;}
.y106{bottom:330.466667pt;}
.y6a{bottom:330.946667pt;}
.ye7{bottom:331.906667pt;}
.y23{bottom:332.386667pt;}
.y121{bottom:335.746667pt;}
.y9c{bottom:338.626667pt;}
.y131{bottom:346.466667pt;}
.y45{bottom:347.426667pt;}
.y69{bottom:349.346667pt;}
.ye6{bottom:350.306667pt;}
.y22{bottom:350.786667pt;}
.y120{bottom:364.866667pt;}
.y44{bottom:365.826667pt;}
.y68{bottom:367.746667pt;}
.y21{bottom:369.186667pt;}
.y105{bottom:373.986667pt;}
.yc1{bottom:377.026667pt;}
.yad{bottom:378.466667pt;}
.y11f{bottom:383.266667pt;}
.y43{bottom:384.226667pt;}
.y67{bottom:386.146667pt;}
.ye5{bottom:387.426667pt;}
.y20{bottom:387.586667pt;}
.y130{bottom:393.826667pt;}
.y9b{bottom:396.866667pt;}
.y11e{bottom:401.666667pt;}
.y42{bottom:402.626667pt;}
.y66{bottom:404.546667pt;}
.y1f{bottom:405.986667pt;}
.y104{bottom:411.106667pt;}
.yc0{bottom:414.146667pt;}
.y41{bottom:421.026667pt;}
.y65{bottom:422.946667pt;}
.y1e{bottom:424.386667pt;}
.y9a{bottom:425.826667pt;}
.y103{bottom:429.506667pt;}
.y11d{bottom:430.626667pt;}
.ybf{bottom:432.546667pt;}
.y84{bottom:433.666667pt;}
.y40{bottom:439.426667pt;}
.y64{bottom:441.346667pt;}
.y1d{bottom:442.786667pt;}
.yac{bottom:444.226667pt;}
.y102{bottom:447.906667pt;}
.y11c{bottom:449.026667pt;}
.y83{bottom:452.066667pt;}
.y99{bottom:454.946667pt;}
.y3f{bottom:457.826667pt;}
.y1c{bottom:461.186667pt;}
.y13a{bottom:462.626667pt;}
.ybe{bottom:469.506667pt;}
.y63{bottom:470.466667pt;}
.y98{bottom:473.346667pt;}
.y3e{bottom:476.226667pt;}
.y11b{bottom:478.146667pt;}
.ye4{bottom:479.426667pt;}
.y1b{bottom:479.586667pt;}
.y12f{bottom:481.026667pt;}
.y101{bottom:484.866667pt;}
.y82{bottom:488.866667pt;}
.y97{bottom:491.746667pt;}
.y3d{bottom:494.626667pt;}
.y11a{bottom:496.546667pt;}
.y1a{bottom:497.986667pt;}
.y62{bottom:499.453333pt;}
.yab{bottom:502.493333pt;}
.ye3{bottom:503.133333pt;}
.ybd{bottom:506.653333pt;}
.y96{bottom:510.173333pt;}
.y19{bottom:516.413333pt;}
.y61{bottom:517.853333pt;}
.y100{bottom:522.013333pt;}
.y3c{bottom:523.773333pt;}
.ybc{bottom:525.053333pt;}
.y119{bottom:525.533333pt;}
.ye2{bottom:526.813333pt;}
.yaa{bottom:531.453333pt;}
.y18{bottom:534.813333pt;}
.y60{bottom:536.253333pt;}
.y95{bottom:539.293333pt;}
.ybb{bottom:543.453333pt;}
.y81{bottom:546.973333pt;}
.ye1{bottom:550.653333pt;}
.y3b{bottom:552.893333pt;}
.y17{bottom:553.213333pt;}
.y5f{bottom:554.653333pt;}
.y139{bottom:557.693333pt;}
.yff{bottom:559.133333pt;}
.ya9{bottom:560.573333pt;}
.y80{bottom:565.373333pt;}
.y94{bottom:568.253333pt;}
.y3a{bottom:571.293333pt;}
.y16{bottom:571.613333pt;}
.y5e{bottom:573.053333pt;}
.y138{bottom:575.933333pt;}
.yfe{bottom:577.533333pt;}
.ya8{bottom:578.973333pt;}
.yba{bottom:580.573333pt;}
.y93{bottom:586.653333pt;}
.y39{bottom:589.693333pt;}
.y15{bottom:590.013333pt;}
.y5d{bottom:591.453333pt;}
.ye0{bottom:594.173333pt;}
.y7f{bottom:594.333333pt;}
.yfd{bottom:595.933333pt;}
.ya7{bottom:597.373333pt;}
.y118{bottom:602.173333pt;}
.y92{bottom:605.053333pt;}
.y38{bottom:607.933333pt;}
.y14{bottom:608.413333pt;}
.y5c{bottom:609.853333pt;}
.ya6{bottom:615.773333pt;}
.yb9{bottom:617.533333pt;}
.y7e{bottom:623.453333pt;}
.y37{bottom:626.333333pt;}
.y5b{bottom:628.253333pt;}
.y117{bottom:631.133333pt;}
.ydf{bottom:631.293333pt;}
.yfc{bottom:632.893333pt;}
.y91{bottom:634.173333pt;}
.y137{bottom:641.853333pt;}
.y36{bottom:644.733333pt;}
.y13{bottom:645.533333pt;}
.y5a{bottom:646.653333pt;}
.yde{bottom:649.693333pt;}
.y7d{bottom:652.573333pt;}
.y12e{bottom:655.453333pt;}
.y35{bottom:663.133333pt;}
.yb8{bottom:665.053333pt;}
.ydd{bottom:668.093333pt;}
.y116{bottom:668.253333pt;}
.yfb{bottom:670.013333pt;}
.y90{bottom:670.973333pt;}
.y12d{bottom:673.853333pt;}
.y59{bottom:675.773333pt;}
.y34{bottom:681.533333pt;}
.y12{bottom:682.653333pt;}
.y115{bottom:686.653333pt;}
.yfa{bottom:688.413333pt;}
.y136{bottom:689.373333pt;}
.y12c{bottom:692.253333pt;}
.yb7{bottom:694.173333pt;}
.y7c{bottom:699.933333pt;}
.ydc{bottom:705.053333pt;}
.yf9{bottom:706.813333pt;}
.y33{bottom:710.653333pt;}
.y11{bottom:711.613333pt;}
.y58{bottom:712.733333pt;}
.y7b{bottom:718.333333pt;}
.y12b{bottom:721.413333pt;}
.yb6{bottom:723.173333pt;}
.ydb{bottom:723.493333pt;}
.y114{bottom:723.813333pt;}
.yf8{bottom:725.253333pt;}
.y32{bottom:729.093333pt;}
.y57{bottom:731.173333pt;}
.y10{bottom:736.133333pt;}
.y7a{bottom:736.773333pt;}
.y12a{bottom:739.813333pt;}
.y113{bottom:742.213333pt;}
.yf7{bottom:743.653333pt;}
.y31{bottom:747.493333pt;}
.yf{bottom:748.453333pt;}
.y56{bottom:749.573333pt;}
.yb5{bottom:752.293333pt;}
.y79{bottom:755.173333pt;}
.y129{bottom:758.213333pt;}
.yda{bottom:760.613333pt;}
.yf6{bottom:762.053333pt;}
.y30{bottom:765.893333pt;}
.y55{bottom:767.973333pt;}
.ye{bottom:772.933333pt;}
.y8f{bottom:776.613333pt;}
.y112{bottom:779.013333pt;}
.yb4{bottom:781.413333pt;}
.y2f{bottom:784.293333pt;}
.y8e{bottom:795.013333pt;}
.yd{bottom:795.973333pt;}
.y111{bottom:797.413333pt;}
.yd9{bottom:797.733333pt;}
.yf5{bottom:799.173333pt;}
.y2e{bottom:802.693333pt;}
.y54{bottom:805.093333pt;}
.yb3{bottom:810.373333pt;}
.y78{bottom:813.413333pt;}
.yd8{bottom:816.133333pt;}
.yf4{bottom:817.573333pt;}
.y2d{bottom:821.093333pt;}
.y8d{bottom:823.973333pt;}
.y135{bottom:831.813333pt;}
.yc{bottom:834.213333pt;}
.y110{bottom:834.373333pt;}
.y2c{bottom:839.493333pt;}
.y77{bottom:842.373333pt;}
.ya5{bottom:850.213333pt;}
.yd7{bottom:854.053333pt;}
.yf3{bottom:854.533333pt;}
.y2b{bottom:857.893333pt;}
.yb{bottom:858.693333pt;}
.y76{bottom:860.773333pt;}
.y134{bottom:868.613333pt;}
.y53{bottom:871.173333pt;}
.y10f{bottom:871.493333pt;}
.yd6{bottom:877.733333pt;}
.y75{bottom:879.173333pt;}
.y2a{bottom:887.013333pt;}
.y52{bottom:889.573333pt;}
.y10e{bottom:889.893333pt;}
.yf2{bottom:891.173333pt;}
.y8c{bottom:897.573333pt;}
.y4{bottom:900.613333pt;}
.yd5{bottom:901.413333pt;}
.y51{bottom:907.973333pt;}
.y74{bottom:908.293333pt;}
.yf1{bottom:914.853333pt;}
.y29{bottom:915.973333pt;}
.yd4{bottom:925.093333pt;}
.y73{bottom:926.693333pt;}
.y3{bottom:938.373333pt;}
.yf0{bottom:938.533333pt;}
.y28{bottom:945.120000pt;}
.y2{bottom:959.360000pt;}
.y1{bottom:990.560000pt;}
.h10{height:18.400000pt;}
.h11{height:18.432000pt;}
.hc{height:29.940625pt;}
.hf{height:30.400000pt;}
.h12{height:30.592000pt;}
.h7{height:44.000000pt;}
.h4{height:44.687500pt;}
.h2{height:45.156250pt;}
.hd{height:46.593750pt;}
.he{height:46.781250pt;}
.h6{height:48.000000pt;}
.h9{height:48.281250pt;}
.h8{height:51.840000pt;}
.h3{height:52.832812pt;}
.hb{height:54.260625pt;}
.h5{height:58.563750pt;}
.ha{height:60.057813pt;}
.h1{height:76.671562pt;}
.h0{height:1056.000000pt;}
.w6{width:60.640000pt;}
.wa{width:69.600000pt;}
.wd{width:108.960000pt;}
.wf{width:115.040000pt;}
.wc{width:128.992000pt;}
.w8{width:134.106667pt;}
.w9{width:144.506667pt;}
.w2{width:152.640000pt;}
.w5{width:152.826667pt;}
.w4{width:154.266667pt;}
.w3{width:154.426667pt;}
.w10{width:166.106667pt;}
.w7{width:233.786667pt;}
.wb{width:306.466667pt;}
.we{width:334.786667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:0.960000pt;}
.x6{left:9.599988pt;}
.x22{left:19.040000pt;}
.x7{left:20.639988pt;}
.x1a{left:23.200000pt;}
.x23{left:26.234667pt;}
.x2c{left:28.000000pt;}
.x1d{left:30.234667pt;}
.x28{left:34.720000pt;}
.x18{left:40.826667pt;}
.x16{left:45.640000pt;}
.x14{left:46.554667pt;}
.x1f{left:48.800000pt;}
.x2e{left:52.480000pt;}
.x27{left:55.066667pt;}
.x2f{left:56.480000pt;}
.x25{left:59.066667pt;}
.x33{left:69.000000pt;}
.x5{left:96.031988pt;}
.x13{left:98.112000pt;}
.x24{left:99.080000pt;}
.x9{left:101.951988pt;}
.x26{left:104.040000pt;}
.x10{left:105.631988pt;}
.x12{left:107.071988pt;}
.xf{left:109.311988pt;}
.x11{left:111.551988pt;}
.xe{left:112.991988pt;}
.x1c{left:118.432000pt;}
.xc{left:120.031988pt;}
.x30{left:123.514667pt;}
.x2a{left:130.600000pt;}
.xd{left:144.026655pt;}
.x1{left:156.666655pt;}
.x29{left:169.786667pt;}
.x1e{left:181.146667pt;}
.x2{left:251.066655pt;}
.x15{left:252.666667pt;}
.xa{left:298.466655pt;}
.xb{left:349.506655pt;}
.x34{left:354.306655pt;}
.x8{left:408.066655pt;}
.x17{left:409.026667pt;}
.x20{left:417.026667pt;}
.x31{left:434.973333pt;}
.x2b{left:478.173333pt;}
.x32{left:552.093333pt;}
.x21{left:553.213333pt;}
.x19{left:565.373333pt;}
.x2d{left:609.253333pt;}
.x4{left:705.253321pt;}
.x3{left:720.133321pt;}
}




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