
    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_b75e9074442a73bae8fe9e2c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_33f803417c4621b82ef7eb6e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_0eb04e38ed85071e61c17b6d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5d79a690bfff685a03c2bc72.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_f2c1071d14f2d0ac7aec7a0e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.957031;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_5d123772bb4c8abe91c34807.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_130301694ab792f9947e2b7d.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e0f6460096cd0d8f80f0e2ca.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_41a895a1cf68293d7b42022c.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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_51d7697c73b3f292a1678398.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682617;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_3e9d80ecfba64223225f1bc1.woff')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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:ffc;src:url('chunks/assets/font_59c517336c79b347652981a6.woff')format("woff");}.ffc{font-family:ffc;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-0.498000px;}
.ls4{letter-spacing:-0.486600px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.498240px;}
.ls5{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.ls8{letter-spacing:44.928000px;}
.ls6{letter-spacing:54.876000px;}
.ls9{letter-spacing:55.008000px;}
.lsb{letter-spacing:167.916000px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.120000px;}
.ws4{word-spacing:-14.633400px;}
.ws0{word-spacing:-13.182000px;}
.ws6{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._25{margin-left:-5.558400px;}
._f{margin-left:-4.276800px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._15{width:3.295200px;}
._7{width:4.824000px;}
._8{width:6.120000px;}
._1d{width:7.200000px;}
._c{width:8.352000px;}
._1c{width:9.403200px;}
._19{width:10.440000px;}
._11{width:12.096000px;}
._10{width:13.824000px;}
._a{width:14.832000px;}
._b{width:15.840000px;}
._1e{width:16.992000px;}
._16{width:19.512000px;}
._1f{width:20.520000px;}
._d{width:21.960000px;}
._e{width:23.227200px;}
._14{width:24.696000px;}
._13{width:26.136000px;}
._12{width:27.144000px;}
._1b{width:31.219200px;}
._1a{width:32.400000px;}
._9{width:33.768000px;}
._18{width:34.992000px;}
._20{width:43.416000px;}
._21{width:103.464000px;}
._24{width:128.232000px;}
._17{width:139.836000px;}
._23{width:167.916000px;}
._22{width:247.536000px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.yb{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.yd{bottom:2.880000px;}
.y27{bottom:14.034000px;}
.y7a{bottom:14.040000px;}
.y10e{bottom:14.070000px;}
.yb7{bottom:14.085000px;}
.yac{bottom:14.400000px;}
.y99{bottom:14.430000px;}
.y6a{bottom:14.445000px;}
.y90{bottom:16.230000px;}
.y8f{bottom:18.390000px;}
.y95{bottom:42.840000px;}
.ye{bottom:43.560000px;}
.y26{bottom:44.994000px;}
.y93{bottom:45.000000px;}
.y4a{bottom:45.354000px;}
.y10c{bottom:45.360000px;}
.y98{bottom:45.390000px;}
.y69{bottom:45.405000px;}
.yc{bottom:68.400000px;}
.y94{bottom:74.160000px;}
.y14e{bottom:75.960000px;}
.y25{bottom:75.999000px;}
.y92{bottom:76.320000px;}
.y49{bottom:76.359000px;}
.y68{bottom:76.365000px;}
.y13a{bottom:77.445000px;}
.ya{bottom:94.716000px;}
.y14d{bottom:107.310000px;}
.y24{bottom:107.319000px;}
.y67{bottom:107.325000px;}
.yb6{bottom:107.685000px;}
.y139{bottom:108.405000px;}
.yb8{bottom:127.836000px;}
.ycb{bottom:129.276000px;}
.y112{bottom:131.796000px;}
.y7b{bottom:136.476000px;}
.y14c{bottom:138.270000px;}
.y48{bottom:138.279000px;}
.y79{bottom:138.285000px;}
.y66{bottom:138.315000px;}
.yf2{bottom:138.645000px;}
.ye8{bottom:139.359000px;}
.y138{bottom:139.755000px;}
.yb5{bottom:140.115000px;}
.y2c{bottom:144.756000px;}
.y23{bottom:146.196000px;}
.y9a{bottom:156.279000px;}
.yf3{bottom:156.630000px;}
.ye9{bottom:161.310000px;}
.y6b{bottom:162.750000px;}
.y47{bottom:169.239000px;}
.y78{bottom:169.275000px;}
.y65{bottom:169.635000px;}
.ye7{bottom:170.679000px;}
.y137{bottom:171.795000px;}
.yb4{bottom:172.155000px;}
.y14b{bottom:184.350000px;}
.y11e{bottom:186.150000px;}
.y9b{bottom:193.350000px;}
.y4b{bottom:193.710000px;}
.y11d{bottom:200.229000px;}
.y46{bottom:200.589000px;}
.y64{bottom:200.595000px;}
.ye6{bottom:202.749000px;}
.y136{bottom:203.115000px;}
.yb3{bottom:204.555000px;}
.y14a{bottom:215.670000px;}
.y111{bottom:219.675000px;}
.y45{bottom:231.549000px;}
.y63{bottom:231.555000px;}
.ye5{bottom:234.069000px;}
.y135{bottom:235.155000px;}
.yb2{bottom:235.515000px;}
.y149{bottom:247.740000px;}
.y110{bottom:251.355000px;}
.y44{bottom:262.509000px;}
.y77{bottom:262.515000px;}
.y62{bottom:262.560000px;}
.yf1{bottom:262.875000px;}
.ye4{bottom:265.029000px;}
.yb1{bottom:266.520000px;}
.y148{bottom:279.060000px;}
.y10f{bottom:283.395000px;}
.y22{bottom:284.475000px;}
.y43{bottom:293.469000px;}
.y76{bottom:293.520000px;}
.y61{bottom:293.880000px;}
.ye3{bottom:295.989000px;}
.yb0{bottom:297.480000px;}
.y134{bottom:298.920000px;}
.y97{bottom:310.395000px;}
.y147{bottom:311.460000px;}
.y10d{bottom:315.075000px;}
.y21{bottom:315.435000px;}
.y11c{bottom:324.474000px;}
.y42{bottom:324.834000px;}
.y60{bottom:324.840000px;}
.ye2{bottom:326.994000px;}
.y133{bottom:329.880000px;}
.y146{bottom:343.500000px;}
.y20{bottom:346.425000px;}
.y10b{bottom:346.785000px;}
.yaf{bottom:346.800000px;}
.y41{bottom:355.794000px;}
.y5f{bottom:355.800000px;}
.ye1{bottom:358.314000px;}
.y108{bottom:361.920000px;}
.y132{bottom:362.280000px;}
.y96{bottom:373.425000px;}
.y145{bottom:374.865000px;}
.y1f{bottom:375.225000px;}
.y40{bottom:386.754000px;}
.y75{bottom:386.760000px;}
.y5e{bottom:386.790000px;}
.yf0{bottom:387.120000px;}
.ye0{bottom:389.274000px;}
.y107{bottom:392.880000px;}
.y131{bottom:393.270000px;}
.y1e{bottom:403.665000px;}
.y144{bottom:406.905000px;}
.y10a{bottom:409.785000px;}
.y3f{bottom:417.714000px;}
.y74{bottom:417.750000px;}
.y5d{bottom:418.110000px;}
.ydf{bottom:420.234000px;}
.y106{bottom:423.870000px;}
.y130{bottom:425.670000px;}
.y150{bottom:429.585000px;}
.y1d{bottom:434.625000px;}
.y143{bottom:438.225000px;}
.y109{bottom:441.465000px;}
.y11b{bottom:448.704000px;}
.y3e{bottom:449.064000px;}
.y5c{bottom:449.070000px;}
.yde{bottom:451.224000px;}
.y105{bottom:455.190000px;}
.y12f{bottom:456.630000px;}
.y14f{bottom:460.950000px;}
.y1c{bottom:465.630000px;}
.y91{bottom:467.430000px;}
.y142{bottom:470.265000px;}
.y8d{bottom:475.344000px;}
.y13b{bottom:477.870000px;}
.yca{bottom:480.024000px;}
.y5b{bottom:480.030000px;}
.ydd{bottom:482.544000px;}
.y104{bottom:486.150000px;}
.y12e{bottom:487.590000px;}
.y1b{bottom:496.590000px;}
.y3d{bottom:498.024000px;}
.y141{bottom:501.615000px;}
.y8c{bottom:506.304000px;}
.yc9{bottom:510.984000px;}
.y73{bottom:510.990000px;}
.y5a{bottom:511.020000px;}
.yef{bottom:511.350000px;}
.ydc{bottom:513.504000px;}
.y103{bottom:517.110000px;}
.y12d{bottom:518.580000px;}
.ya9{bottom:523.620000px;}
.y1a{bottom:527.910000px;}
.y3c{bottom:528.984000px;}
.y140{bottom:533.655000px;}
.y8b{bottom:537.264000px;}
.yc8{bottom:541.944000px;}
.y72{bottom:541.980000px;}
.y59{bottom:542.340000px;}
.ydb{bottom:544.464000px;}
.y102{bottom:548.100000px;}
.y12c{bottom:549.900000px;}
.ya8{bottom:554.580000px;}
.y19{bottom:558.870000px;}
.y3b{bottom:559.974000px;}
.y8e{bottom:561.390000px;}
.y13f{bottom:564.975000px;}
.y8a{bottom:568.254000px;}
.y11a{bottom:572.934000px;}
.yc7{bottom:573.294000px;}
.y58{bottom:573.300000px;}
.yda{bottom:575.454000px;}
.yae{bottom:575.820000px;}
.y101{bottom:579.420000px;}
.y12b{bottom:580.860000px;}
.ya7{bottom:585.900000px;}
.y18{bottom:589.860000px;}
.y3a{bottom:591.294000px;}
.y13e{bottom:597.375000px;}
.y89{bottom:599.574000px;}
.yc6{bottom:604.254000px;}
.y57{bottom:604.260000px;}
.yd9{bottom:606.774000px;}
.yad{bottom:607.500000px;}
.y100{bottom:610.380000px;}
.y12a{bottom:611.820000px;}
.ya6{bottom:616.860000px;}
.y17{bottom:620.820000px;}
.y39{bottom:622.254000px;}
.y13d{bottom:629.460000px;}
.y88{bottom:630.534000px;}
.yc5{bottom:635.214000px;}
.y71{bottom:635.220000px;}
.y56{bottom:635.265000px;}
.yee{bottom:635.580000px;}
.yd8{bottom:637.734000px;}
.yab{bottom:639.180000px;}
.yff{bottom:641.340000px;}
.y129{bottom:642.825000px;}
.ya5{bottom:647.865000px;}
.y16{bottom:652.140000px;}
.y38{bottom:653.214000px;}
.y13c{bottom:660.780000px;}
.y87{bottom:661.494000px;}
.yc4{bottom:666.174000px;}
.y70{bottom:666.225000px;}
.y55{bottom:666.585000px;}
.yd7{bottom:668.694000px;}
.yaa{bottom:671.220000px;}
.yfe{bottom:672.345000px;}
.y128{bottom:674.145000px;}
.ya4{bottom:678.825000px;}
.y15{bottom:683.100000px;}
.y37{bottom:684.219000px;}
.y86{bottom:692.499000px;}
.y119{bottom:697.179000px;}
.yc3{bottom:697.494000px;}
.y54{bottom:697.545000px;}
.yd6{bottom:699.699000px;}
.yfd{bottom:703.665000px;}
.y127{bottom:705.105000px;}
.ya3{bottom:710.145000px;}
.y36{bottom:715.539000px;}
.y14{bottom:718.770000px;}
.y85{bottom:723.819000px;}
.yc2{bottom:728.499000px;}
.y53{bottom:728.505000px;}
.yd5{bottom:731.019000px;}
.yfc{bottom:734.625000px;}
.y126{bottom:736.065000px;}
.ya2{bottom:741.105000px;}
.y35{bottom:746.499000px;}
.y84{bottom:754.779000px;}
.yc1{bottom:759.459000px;}
.y6f{bottom:759.465000px;}
.y52{bottom:759.495000px;}
.yed{bottom:759.825000px;}
.y13{bottom:760.170000px;}
.yd4{bottom:761.979000px;}
.yfb{bottom:765.585000px;}
.y125{bottom:767.055000px;}
.ya1{bottom:772.095000px;}
.y34{bottom:777.459000px;}
.y83{bottom:785.739000px;}
.yc0{bottom:790.419000px;}
.y6e{bottom:790.455000px;}
.yec{bottom:790.785000px;}
.y51{bottom:790.815000px;}
.yd3{bottom:792.939000px;}
.yfa{bottom:796.575000px;}
.y124{bottom:798.375000px;}
.y12{bottom:801.570000px;}
.y33{bottom:808.449000px;}
.y82{bottom:816.729000px;}
.ya0{bottom:818.535000px;}
.y118{bottom:821.409000px;}
.ybf{bottom:821.739000px;}
.y50{bottom:821.775000px;}
.yd2{bottom:823.929000px;}
.yf9{bottom:827.895000px;}
.y123{bottom:829.335000px;}
.y32{bottom:839.769000px;}
.y11{bottom:843.015000px;}
.y81{bottom:848.049000px;}
.y9f{bottom:850.575000px;}
.ybe{bottom:852.729000px;}
.y4f{bottom:852.735000px;}
.yd1{bottom:855.249000px;}
.yf8{bottom:858.855000px;}
.y122{bottom:860.295000px;}
.y31{bottom:870.729000px;}
.y80{bottom:879.009000px;}
.y9e{bottom:882.975000px;}
.y117{bottom:883.689000px;}
.y4e{bottom:883.695000px;}
.y10{bottom:884.415000px;}
.ybd{bottom:885.129000px;}
.yd0{bottom:886.209000px;}
.yf7{bottom:889.815000px;}
.y121{bottom:891.255000px;}
.y30{bottom:901.689000px;}
.y7f{bottom:909.969000px;}
.y116{bottom:914.649000px;}
.y6d{bottom:914.655000px;}
.yeb{bottom:915.015000px;}
.y4d{bottom:915.060000px;}
.y9d{bottom:915.420000px;}
.ycf{bottom:917.169000px;}
.ybc{bottom:917.529000px;}
.yf6{bottom:920.775000px;}
.yf{bottom:921.135000px;}
.y120{bottom:922.620000px;}
.y2f{bottom:932.649000px;}
.y7e{bottom:940.929000px;}
.y9{bottom:941.295000px;}
.y115{bottom:945.609000px;}
.y4c{bottom:946.020000px;}
.y9c{bottom:946.380000px;}
.yce{bottom:948.129000px;}
.ybb{bottom:949.569000px;}
.yf5{bottom:952.140000px;}
.y11f{bottom:953.580000px;}
.y8{bottom:958.605000px;}
.y2e{bottom:964.014000px;}
.y7d{bottom:972.294000px;}
.y7{bottom:972.645000px;}
.y114{bottom:976.974000px;}
.y6c{bottom:976.980000px;}
.yea{bottom:977.340000px;}
.ycd{bottom:979.494000px;}
.yba{bottom:980.934000px;}
.yf4{bottom:983.100000px;}
.y2d{bottom:994.974000px;}
.y7c{bottom:1003.254000px;}
.y113{bottom:1007.934000px;}
.ycc{bottom:1010.454000px;}
.yb9{bottom:1011.894000px;}
.y6{bottom:1027.365000px;}
.y5{bottom:1052.205000px;}
.y4{bottom:1072.725000px;}
.y3{bottom:1094.010000px;}
.y2{bottom:1114.530000px;}
.y1{bottom:1131.450000px;}
.y2b{bottom:1166.370000px;}
.y2a{bottom:1180.410000px;}
.y29{bottom:1201.290000px;}
.y28{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h18{height:30.960000px;}
.h16{height:30.996000px;}
.h17{height:31.320000px;}
.h10{height:35.316000px;}
.h5{height:39.997969px;}
.h2{height:44.828437px;}
.h7{height:48.013594px;}
.h15{height:52.628906px;}
.h4{height:53.067656px;}
.h3{height:53.367188px;}
.h19{height:58.429688px;}
.h1e{height:62.280000px;}
.h13{height:62.316000px;}
.ha{height:63.175781px;}
.h9{height:71.512031px;}
.h11{height:93.240000px;}
.h12{height:93.276000px;}
.hb{height:124.236000px;}
.h21{height:678.780000px;}
.hd{height:962.925000px;}
.h14{height:963.285000px;}
.h20{height:970.485000px;}
.he{height:993.885000px;}
.h1c{height:995.325000px;}
.h1d{height:1000.005000px;}
.hc{height:1011.885000px;}
.hf{height:1020.165000px;}
.h1f{height:1024.845000px;}
.h1b{height:1027.365000px;}
.h1a{height:1028.805000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:113.436000px;}
.wb{width:123.156000px;}
.w8{width:131.832000px;}
.wc{width:132.192000px;}
.w10{width:137.592000px;}
.wa{width:158.835000px;}
.wd{width:164.955000px;}
.we{width:165.315000px;}
.w11{width:181.515000px;}
.wf{width:182.235000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:7.560000px;}
.x9{left:8.640000px;}
.x38{left:12.240000px;}
.x37{left:16.920000px;}
.x2a{left:18.000000px;}
.x22{left:19.080000px;}
.x27{left:20.880000px;}
.x24{left:23.445000px;}
.x31{left:24.885000px;}
.x25{left:25.965000px;}
.x36{left:27.405000px;}
.x1d{left:29.556000px;}
.x32{left:31.350000px;}
.x21{left:35.316000px;}
.x2c{left:36.405000px;}
.x2f{left:37.845000px;}
.x28{left:44.670000px;}
.x2e{left:47.880000px;}
.x30{left:51.480000px;}
.x34{left:52.950000px;}
.x2d{left:59.430000px;}
.x3a{left:62.319000px;}
.x33{left:63.765000px;}
.x2b{left:66.630000px;}
.x35{left:74.910000px;}
.x7{left:106.235987px;}
.x16{left:115.236000px;}
.xd{left:129.275987px;}
.xb{left:141.911987px;}
.x12{left:144.791987px;}
.x15{left:155.589000px;}
.x13{left:180.794987px;}
.x10{left:187.994987px;}
.x18{left:247.785000px;}
.x2{left:254.264987px;}
.xc{left:258.584987px;}
.xe{left:264.704987px;}
.x6{left:274.064987px;}
.x1e{left:280.905000px;}
.x23{left:298.185000px;}
.xa{left:304.350000px;}
.x11{left:322.349987px;}
.x3b{left:339.984000px;}
.x5{left:360.509987px;}
.x19{left:361.950000px;}
.xf{left:364.469987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x1c{left:414.894000px;}
.x8{left:446.579987px;}
.x14{left:447.660000px;}
.x26{left:457.740000px;}
.x39{left:486.939000px;}
.x20{left:511.059000px;}
.x1a{left:521.490000px;}
.x29{left:596.055000px;}
.x1f{left:612.255000px;}
.x1b{left:645.375000px;}
.x1{left:786.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-0.442667pt;}
.ls4{letter-spacing:-0.432533pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.442880pt;}
.ls5{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.ls8{letter-spacing:39.936000pt;}
.ls6{letter-spacing:48.778667pt;}
.ls9{letter-spacing:48.896000pt;}
.lsb{letter-spacing:149.258667pt;}
.ws5{word-spacing:-64.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.440000pt;}
.ws4{word-spacing:-13.007467pt;}
.ws0{word-spacing:-11.717333pt;}
.ws6{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._25{margin-left:-4.940800pt;}
._f{margin-left:-3.801600pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._15{width:2.929067pt;}
._7{width:4.288000pt;}
._8{width:5.440000pt;}
._1d{width:6.400000pt;}
._c{width:7.424000pt;}
._1c{width:8.358400pt;}
._19{width:9.280000pt;}
._11{width:10.752000pt;}
._10{width:12.288000pt;}
._a{width:13.184000pt;}
._b{width:14.080000pt;}
._1e{width:15.104000pt;}
._16{width:17.344000pt;}
._1f{width:18.240000pt;}
._d{width:19.520000pt;}
._e{width:20.646400pt;}
._14{width:21.952000pt;}
._13{width:23.232000pt;}
._12{width:24.128000pt;}
._1b{width:27.750400pt;}
._1a{width:28.800000pt;}
._9{width:30.016000pt;}
._18{width:31.104000pt;}
._20{width:38.592000pt;}
._21{width:91.968000pt;}
._24{width:113.984000pt;}
._17{width:124.298667pt;}
._23{width:149.258667pt;}
._22{width:220.032000pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.yb{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:2.560000pt;}
.y27{bottom:12.474667pt;}
.y7a{bottom:12.480000pt;}
.y10e{bottom:12.506667pt;}
.yb7{bottom:12.520000pt;}
.yac{bottom:12.800000pt;}
.y99{bottom:12.826667pt;}
.y6a{bottom:12.840000pt;}
.y90{bottom:14.426667pt;}
.y8f{bottom:16.346667pt;}
.y95{bottom:38.080000pt;}
.ye{bottom:38.720000pt;}
.y26{bottom:39.994667pt;}
.y93{bottom:40.000000pt;}
.y4a{bottom:40.314667pt;}
.y10c{bottom:40.320000pt;}
.y98{bottom:40.346667pt;}
.y69{bottom:40.360000pt;}
.yc{bottom:60.800000pt;}
.y94{bottom:65.920000pt;}
.y14e{bottom:67.520000pt;}
.y25{bottom:67.554667pt;}
.y92{bottom:67.840000pt;}
.y49{bottom:67.874667pt;}
.y68{bottom:67.880000pt;}
.y13a{bottom:68.840000pt;}
.ya{bottom:84.192000pt;}
.y14d{bottom:95.386667pt;}
.y24{bottom:95.394667pt;}
.y67{bottom:95.400000pt;}
.yb6{bottom:95.720000pt;}
.y139{bottom:96.360000pt;}
.yb8{bottom:113.632000pt;}
.ycb{bottom:114.912000pt;}
.y112{bottom:117.152000pt;}
.y7b{bottom:121.312000pt;}
.y14c{bottom:122.906667pt;}
.y48{bottom:122.914667pt;}
.y79{bottom:122.920000pt;}
.y66{bottom:122.946667pt;}
.yf2{bottom:123.240000pt;}
.ye8{bottom:123.874667pt;}
.y138{bottom:124.226667pt;}
.yb5{bottom:124.546667pt;}
.y2c{bottom:128.672000pt;}
.y23{bottom:129.952000pt;}
.y9a{bottom:138.914667pt;}
.yf3{bottom:139.226667pt;}
.ye9{bottom:143.386667pt;}
.y6b{bottom:144.666667pt;}
.y47{bottom:150.434667pt;}
.y78{bottom:150.466667pt;}
.y65{bottom:150.786667pt;}
.ye7{bottom:151.714667pt;}
.y137{bottom:152.706667pt;}
.yb4{bottom:153.026667pt;}
.y14b{bottom:163.866667pt;}
.y11e{bottom:165.466667pt;}
.y9b{bottom:171.866667pt;}
.y4b{bottom:172.186667pt;}
.y11d{bottom:177.981333pt;}
.y46{bottom:178.301333pt;}
.y64{bottom:178.306667pt;}
.ye6{bottom:180.221333pt;}
.y136{bottom:180.546667pt;}
.yb3{bottom:181.826667pt;}
.y14a{bottom:191.706667pt;}
.y111{bottom:195.266667pt;}
.y45{bottom:205.821333pt;}
.y63{bottom:205.826667pt;}
.ye5{bottom:208.061333pt;}
.y135{bottom:209.026667pt;}
.yb2{bottom:209.346667pt;}
.y149{bottom:220.213333pt;}
.y110{bottom:223.426667pt;}
.y44{bottom:233.341333pt;}
.y77{bottom:233.346667pt;}
.y62{bottom:233.386667pt;}
.yf1{bottom:233.666667pt;}
.ye4{bottom:235.581333pt;}
.yb1{bottom:236.906667pt;}
.y148{bottom:248.053333pt;}
.y10f{bottom:251.906667pt;}
.y22{bottom:252.866667pt;}
.y43{bottom:260.861333pt;}
.y76{bottom:260.906667pt;}
.y61{bottom:261.226667pt;}
.ye3{bottom:263.101333pt;}
.yb0{bottom:264.426667pt;}
.y134{bottom:265.706667pt;}
.y97{bottom:275.906667pt;}
.y147{bottom:276.853333pt;}
.y10d{bottom:280.066667pt;}
.y21{bottom:280.386667pt;}
.y11c{bottom:288.421333pt;}
.y42{bottom:288.741333pt;}
.y60{bottom:288.746667pt;}
.ye2{bottom:290.661333pt;}
.y133{bottom:293.226667pt;}
.y146{bottom:305.333333pt;}
.y20{bottom:307.933333pt;}
.y10b{bottom:308.253333pt;}
.yaf{bottom:308.266667pt;}
.y41{bottom:316.261333pt;}
.y5f{bottom:316.266667pt;}
.ye1{bottom:318.501333pt;}
.y108{bottom:321.706667pt;}
.y132{bottom:322.026667pt;}
.y96{bottom:331.933333pt;}
.y145{bottom:333.213333pt;}
.y1f{bottom:333.533333pt;}
.y40{bottom:343.781333pt;}
.y75{bottom:343.786667pt;}
.y5e{bottom:343.813333pt;}
.yf0{bottom:344.106667pt;}
.ye0{bottom:346.021333pt;}
.y107{bottom:349.226667pt;}
.y131{bottom:349.573333pt;}
.y1e{bottom:358.813333pt;}
.y144{bottom:361.693333pt;}
.y10a{bottom:364.253333pt;}
.y3f{bottom:371.301333pt;}
.y74{bottom:371.333333pt;}
.y5d{bottom:371.653333pt;}
.ydf{bottom:373.541333pt;}
.y106{bottom:376.773333pt;}
.y130{bottom:378.373333pt;}
.y150{bottom:381.853333pt;}
.y1d{bottom:386.333333pt;}
.y143{bottom:389.533333pt;}
.y109{bottom:392.413333pt;}
.y11b{bottom:398.848000pt;}
.y3e{bottom:399.168000pt;}
.y5c{bottom:399.173333pt;}
.yde{bottom:401.088000pt;}
.y105{bottom:404.613333pt;}
.y12f{bottom:405.893333pt;}
.y14f{bottom:409.733333pt;}
.y1c{bottom:413.893333pt;}
.y91{bottom:415.493333pt;}
.y142{bottom:418.013333pt;}
.y8d{bottom:422.528000pt;}
.y13b{bottom:424.773333pt;}
.yca{bottom:426.688000pt;}
.y5b{bottom:426.693333pt;}
.ydd{bottom:428.928000pt;}
.y104{bottom:432.133333pt;}
.y12e{bottom:433.413333pt;}
.y1b{bottom:441.413333pt;}
.y3d{bottom:442.688000pt;}
.y141{bottom:445.880000pt;}
.y8c{bottom:450.048000pt;}
.yc9{bottom:454.208000pt;}
.y73{bottom:454.213333pt;}
.y5a{bottom:454.240000pt;}
.yef{bottom:454.533333pt;}
.ydc{bottom:456.448000pt;}
.y103{bottom:459.653333pt;}
.y12d{bottom:460.960000pt;}
.ya9{bottom:465.440000pt;}
.y1a{bottom:469.253333pt;}
.y3c{bottom:470.208000pt;}
.y140{bottom:474.360000pt;}
.y8b{bottom:477.568000pt;}
.yc8{bottom:481.728000pt;}
.y72{bottom:481.760000pt;}
.y59{bottom:482.080000pt;}
.ydb{bottom:483.968000pt;}
.y102{bottom:487.200000pt;}
.y12c{bottom:488.800000pt;}
.ya8{bottom:492.960000pt;}
.y19{bottom:496.773333pt;}
.y3b{bottom:497.754667pt;}
.y8e{bottom:499.013333pt;}
.y13f{bottom:502.200000pt;}
.y8a{bottom:505.114667pt;}
.y11a{bottom:509.274667pt;}
.yc7{bottom:509.594667pt;}
.y58{bottom:509.600000pt;}
.yda{bottom:511.514667pt;}
.yae{bottom:511.840000pt;}
.y101{bottom:515.040000pt;}
.y12b{bottom:516.320000pt;}
.ya7{bottom:520.800000pt;}
.y18{bottom:524.320000pt;}
.y3a{bottom:525.594667pt;}
.y13e{bottom:531.000000pt;}
.y89{bottom:532.954667pt;}
.yc6{bottom:537.114667pt;}
.y57{bottom:537.120000pt;}
.yd9{bottom:539.354667pt;}
.yad{bottom:540.000000pt;}
.y100{bottom:542.560000pt;}
.y12a{bottom:543.840000pt;}
.ya6{bottom:548.320000pt;}
.y17{bottom:551.840000pt;}
.y39{bottom:553.114667pt;}
.y13d{bottom:559.520000pt;}
.y88{bottom:560.474667pt;}
.yc5{bottom:564.634667pt;}
.y71{bottom:564.640000pt;}
.y56{bottom:564.680000pt;}
.yee{bottom:564.960000pt;}
.yd8{bottom:566.874667pt;}
.yab{bottom:568.160000pt;}
.yff{bottom:570.080000pt;}
.y129{bottom:571.400000pt;}
.ya5{bottom:575.880000pt;}
.y16{bottom:579.680000pt;}
.y38{bottom:580.634667pt;}
.y13c{bottom:587.360000pt;}
.y87{bottom:587.994667pt;}
.yc4{bottom:592.154667pt;}
.y70{bottom:592.200000pt;}
.y55{bottom:592.520000pt;}
.yd7{bottom:594.394667pt;}
.yaa{bottom:596.640000pt;}
.yfe{bottom:597.640000pt;}
.y128{bottom:599.240000pt;}
.ya4{bottom:603.400000pt;}
.y15{bottom:607.200000pt;}
.y37{bottom:608.194667pt;}
.y86{bottom:615.554667pt;}
.y119{bottom:619.714667pt;}
.yc3{bottom:619.994667pt;}
.y54{bottom:620.040000pt;}
.yd6{bottom:621.954667pt;}
.yfd{bottom:625.480000pt;}
.y127{bottom:626.760000pt;}
.ya3{bottom:631.240000pt;}
.y36{bottom:636.034667pt;}
.y14{bottom:638.906667pt;}
.y85{bottom:643.394667pt;}
.yc2{bottom:647.554667pt;}
.y53{bottom:647.560000pt;}
.yd5{bottom:649.794667pt;}
.yfc{bottom:653.000000pt;}
.y126{bottom:654.280000pt;}
.ya2{bottom:658.760000pt;}
.y35{bottom:663.554667pt;}
.y84{bottom:670.914667pt;}
.yc1{bottom:675.074667pt;}
.y6f{bottom:675.080000pt;}
.y52{bottom:675.106667pt;}
.yed{bottom:675.400000pt;}
.y13{bottom:675.706667pt;}
.yd4{bottom:677.314667pt;}
.yfb{bottom:680.520000pt;}
.y125{bottom:681.826667pt;}
.ya1{bottom:686.306667pt;}
.y34{bottom:691.074667pt;}
.y83{bottom:698.434667pt;}
.yc0{bottom:702.594667pt;}
.y6e{bottom:702.626667pt;}
.yec{bottom:702.920000pt;}
.y51{bottom:702.946667pt;}
.yd3{bottom:704.834667pt;}
.yfa{bottom:708.066667pt;}
.y124{bottom:709.666667pt;}
.y12{bottom:712.506667pt;}
.y33{bottom:718.621333pt;}
.y82{bottom:725.981333pt;}
.ya0{bottom:727.586667pt;}
.y118{bottom:730.141333pt;}
.ybf{bottom:730.434667pt;}
.y50{bottom:730.466667pt;}
.yd2{bottom:732.381333pt;}
.yf9{bottom:735.906667pt;}
.y123{bottom:737.186667pt;}
.y32{bottom:746.461333pt;}
.y11{bottom:749.346667pt;}
.y81{bottom:753.821333pt;}
.y9f{bottom:756.066667pt;}
.ybe{bottom:757.981333pt;}
.y4f{bottom:757.986667pt;}
.yd1{bottom:760.221333pt;}
.yf8{bottom:763.426667pt;}
.y122{bottom:764.706667pt;}
.y31{bottom:773.981333pt;}
.y80{bottom:781.341333pt;}
.y9e{bottom:784.866667pt;}
.y117{bottom:785.501333pt;}
.y4e{bottom:785.506667pt;}
.y10{bottom:786.146667pt;}
.ybd{bottom:786.781333pt;}
.yd0{bottom:787.741333pt;}
.yf7{bottom:790.946667pt;}
.y121{bottom:792.226667pt;}
.y30{bottom:801.501333pt;}
.y7f{bottom:808.861333pt;}
.y116{bottom:813.021333pt;}
.y6d{bottom:813.026667pt;}
.yeb{bottom:813.346667pt;}
.y4d{bottom:813.386667pt;}
.y9d{bottom:813.706667pt;}
.ycf{bottom:815.261333pt;}
.ybc{bottom:815.581333pt;}
.yf6{bottom:818.466667pt;}
.yf{bottom:818.786667pt;}
.y120{bottom:820.106667pt;}
.y2f{bottom:829.021333pt;}
.y7e{bottom:836.381333pt;}
.y9{bottom:836.706667pt;}
.y115{bottom:840.541333pt;}
.y4c{bottom:840.906667pt;}
.y9c{bottom:841.226667pt;}
.yce{bottom:842.781333pt;}
.ybb{bottom:844.061333pt;}
.yf5{bottom:846.346667pt;}
.y11f{bottom:847.626667pt;}
.y8{bottom:852.093333pt;}
.y2e{bottom:856.901333pt;}
.y7d{bottom:864.261333pt;}
.y7{bottom:864.573333pt;}
.y114{bottom:868.421333pt;}
.y6c{bottom:868.426667pt;}
.yea{bottom:868.746667pt;}
.ycd{bottom:870.661333pt;}
.yba{bottom:871.941333pt;}
.yf4{bottom:873.866667pt;}
.y2d{bottom:884.421333pt;}
.y7c{bottom:891.781333pt;}
.y113{bottom:895.941333pt;}
.ycc{bottom:898.181333pt;}
.yb9{bottom:899.461333pt;}
.y6{bottom:913.213333pt;}
.y5{bottom:935.293333pt;}
.y4{bottom:953.533333pt;}
.y3{bottom:972.453333pt;}
.y2{bottom:990.693333pt;}
.y1{bottom:1005.733333pt;}
.y2b{bottom:1036.773333pt;}
.y2a{bottom:1049.253333pt;}
.y29{bottom:1067.813333pt;}
.y28{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h18{height:27.520000pt;}
.h16{height:27.552000pt;}
.h17{height:27.840000pt;}
.h10{height:31.392000pt;}
.h5{height:35.553750pt;}
.h2{height:39.847500pt;}
.h7{height:42.678750pt;}
.h15{height:46.781250pt;}
.h4{height:47.171250pt;}
.h3{height:47.437500pt;}
.h19{height:51.937500pt;}
.h1e{height:55.360000pt;}
.h13{height:55.392000pt;}
.ha{height:56.156250pt;}
.h9{height:63.566250pt;}
.h11{height:82.880000pt;}
.h12{height:82.912000pt;}
.hb{height:110.432000pt;}
.h21{height:603.360000pt;}
.hd{height:855.933333pt;}
.h14{height:856.253333pt;}
.h20{height:862.653333pt;}
.he{height:883.453333pt;}
.h1c{height:884.733333pt;}
.h1d{height:888.893333pt;}
.hc{height:899.453333pt;}
.hf{height:906.813333pt;}
.h1f{height:910.973333pt;}
.h1b{height:913.213333pt;}
.h1a{height:914.493333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:100.832000pt;}
.wb{width:109.472000pt;}
.w8{width:117.184000pt;}
.wc{width:117.504000pt;}
.w10{width:122.304000pt;}
.wa{width:141.186667pt;}
.wd{width:146.626667pt;}
.we{width:146.946667pt;}
.w11{width:161.346667pt;}
.wf{width:161.986667pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:6.720000pt;}
.x9{left:7.680000pt;}
.x38{left:10.880000pt;}
.x37{left:15.040000pt;}
.x2a{left:16.000000pt;}
.x22{left:16.960000pt;}
.x27{left:18.560000pt;}
.x24{left:20.840000pt;}
.x31{left:22.120000pt;}
.x25{left:23.080000pt;}
.x36{left:24.360000pt;}
.x1d{left:26.272000pt;}
.x32{left:27.866667pt;}
.x21{left:31.392000pt;}
.x2c{left:32.360000pt;}
.x2f{left:33.640000pt;}
.x28{left:39.706667pt;}
.x2e{left:42.560000pt;}
.x30{left:45.760000pt;}
.x34{left:47.066667pt;}
.x2d{left:52.826667pt;}
.x3a{left:55.394667pt;}
.x33{left:56.680000pt;}
.x2b{left:59.226667pt;}
.x35{left:66.586667pt;}
.x7{left:94.431988pt;}
.x16{left:102.432000pt;}
.xd{left:114.911988pt;}
.xb{left:126.143988pt;}
.x12{left:128.703988pt;}
.x15{left:138.301333pt;}
.x13{left:160.706655pt;}
.x10{left:167.106655pt;}
.x18{left:220.253333pt;}
.x2{left:226.013322pt;}
.xc{left:229.853322pt;}
.xe{left:235.293322pt;}
.x6{left:243.613322pt;}
.x1e{left:249.693333pt;}
.x23{left:265.053333pt;}
.xa{left:270.533333pt;}
.x11{left:286.533322pt;}
.x3b{left:302.208000pt;}
.x5{left:320.453322pt;}
.x19{left:321.733333pt;}
.xf{left:323.973322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x1c{left:368.794667pt;}
.x8{left:396.959988pt;}
.x14{left:397.920000pt;}
.x26{left:406.880000pt;}
.x39{left:432.834667pt;}
.x20{left:454.274667pt;}
.x1a{left:463.546667pt;}
.x29{left:529.826667pt;}
.x1f{left:544.226667pt;}
.x1b{left:573.666667pt;}
.x1{left:699.493322pt;}
}




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