
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_91d38df60be97d5fc3576edd.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4285f34f71d3ed0fb9c9ba4d.woff')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_de19a08efe399a353d0d0db5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_4bf562a82a9ea05edb361f58.woff')format("woff");}.ff6{font-family:ff6;line-height:0.747070;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff7{font-family:ff7;line-height:0.736816;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_6cf82855d8ff71a5f677946b.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_638f1c9bc111da614a3230e3.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f87b62b83712d64045704348.woff')format("woff");}.ffa{font-family:ffa;line-height:1.040039;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_142895f463734852b524a5de.woff')format("woff");}.ffb{font-family:ffb;line-height:0.932129;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_1bcd6b30e4139ad7e905b935.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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:ffd;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_7492ee0089ecb6cd8abb2119.woff')format("woff");}.ffe{font-family:ffe;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_5832bc052232843ffd4faeaf.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_57a7f9bd6b4e5b0b919b0778.woff')format("woff");}.ff10{font-family:ff10;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;}
.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);}
.v3{vertical-align:-69.240000px;}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-1.728000px;}
.lse{letter-spacing:-1.440000px;}
.ls9{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.630000px;}
.ls10{letter-spacing:-0.486600px;}
.ls11{letter-spacing:-0.466800px;}
.lsa{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.313800px;}
.ls8{letter-spacing:-0.089400px;}
.lsb{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020160px;}
.ls4{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.493920px;}
.ls5{letter-spacing:0.498240px;}
.ls0{letter-spacing:0.720000px;}
.ls3{letter-spacing:1.080000px;}
.ls14{letter-spacing:16.306560px;}
.ls13{letter-spacing:46.546560px;}
.ls12{letter-spacing:55.186560px;}
.lsf{letter-spacing:63.826560px;}
.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;}
}
.wsb{word-spacing:-60.480000px;}
.ws0{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.140160px;}
.ws1{word-spacing:-15.120000px;}
.wse{word-spacing:-14.653200px;}
.wsc{word-spacing:-14.633400px;}
.ws5{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.366200px;}
.ws7{word-spacing:-13.050000px;}
.ws9{word-spacing:-12.240000px;}
.ws2{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:-8.928000px;}
.wsf{word-spacing:-0.060480px;}
.wsa{word-spacing:0.000000px;}
._1d{margin-left:-2838.546240px;}
._14{margin-left:-3.321120px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._c{width:4.430880px;}
._5{width:5.722080px;}
._6{width:7.058880px;}
._7{width:8.384160px;}
._f{width:9.405120px;}
._a{width:10.437120px;}
._b{width:11.626560px;}
._10{width:13.078080px;}
._18{width:14.089920px;}
._1a{width:15.244800px;}
._16{width:16.400160px;}
._15{width:17.499360px;}
._19{width:18.834720px;}
._1b{width:19.974720px;}
._9{width:21.333120px;}
._8{width:22.803840px;}
._1c{width:24.667200px;}
._d{width:26.449920px;}
._e{width:27.454560px;}
._12{width:31.484640px;}
._13{width:32.901120px;}
._11{width:34.292160px;}
._17{width:35.480640px;}
._20{width:50.408640px;}
._1f{width:51.773760px;}
._1e{width:117.901440px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsa{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:83.520000px;}
.fsb{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:2.911500px;}
.y42{bottom:3.960000px;}
.y5{bottom:4.320000px;}
.y75{bottom:5.025000px;}
.y6e{bottom:5.040000px;}
.y5b{bottom:5.370000px;}
.y79{bottom:5.385000px;}
.y84{bottom:5.400000px;}
.ya5{bottom:5.415000px;}
.y2{bottom:10.080000px;}
.y4b{bottom:10.471500px;}
.y70{bottom:14.400000px;}
.y58{bottom:15.514500px;}
.y41{bottom:21.240000px;}
.y4{bottom:23.400000px;}
.y71{bottom:23.760000px;}
.y73{bottom:23.775000px;}
.y77{bottom:24.105000px;}
.y57{bottom:30.994500px;}
.y40{bottom:38.520000px;}
.y4a{bottom:39.994500px;}
.y78{bottom:42.465000px;}
.y74{bottom:42.495000px;}
.y56{bottom:46.474500px;}
.y3{bottom:47.880000px;}
.y49{bottom:51.874500px;}
.y3f{bottom:55.800000px;}
.y7{bottom:57.636000px;}
.y55{bottom:64.114500px;}
.y48{bottom:65.194500px;}
.y3e{bottom:73.125000px;}
.y47{bottom:78.154500px;}
.y54{bottom:79.954500px;}
.y3d{bottom:90.405000px;}
.y53{bottom:92.914500px;}
.yd3{bottom:97.596000px;}
.y52{bottom:99.034500px;}
.y46{bottom:99.754500px;}
.y7e{bottom:105.156000px;}
.y3c{bottom:107.325000px;}
.y9d{bottom:108.396000px;}
.y51{bottom:114.874500px;}
.yd2{bottom:114.876000px;}
.y59{bottom:115.596000px;}
.y3b{bottom:124.605000px;}
.y50{bottom:130.354500px;}
.y7d{bottom:131.796000px;}
.yd1{bottom:132.156000px;}
.y43{bottom:139.000500px;}
.y3a{bottom:141.885000px;}
.y4f{bottom:145.864500px;}
.yd0{bottom:149.472000px;}
.y7c{bottom:149.832000px;}
.y39{bottom:159.165000px;}
.y4e{bottom:161.704500px;}
.y45{bottom:162.064500px;}
.ycf{bottom:166.755000px;}
.y7b{bottom:168.195000px;}
.y44{bottom:172.864500px;}
.y38{bottom:176.445000px;}
.y4d{bottom:176.824500px;}
.yce{bottom:184.035000px;}
.y7a{bottom:186.195000px;}
.y37{bottom:193.725000px;}
.ycd{bottom:201.315000px;}
.y76{bottom:209.610000px;}
.y36{bottom:211.035000px;}
.ycc{bottom:218.595000px;}
.y35{bottom:228.315000px;}
.ycb{bottom:235.875000px;}
.y34{bottom:245.595000px;}
.y1f{bottom:252.075000px;}
.yca{bottom:253.155000px;}
.y33{bottom:262.875000px;}
.y72{bottom:266.490000px;}
.yc9{bottom:270.435000px;}
.y1e{bottom:276.195000px;}
.y32{bottom:280.155000px;}
.yc8{bottom:287.745000px;}
.y31{bottom:297.075000px;}
.y1d{bottom:300.315000px;}
.yc7{bottom:304.665000px;}
.y30{bottom:314.355000px;}
.yc6{bottom:321.945000px;}
.y6f{bottom:323.025000px;}
.y1c{bottom:324.435000px;}
.y2f{bottom:331.665000px;}
.yc5{bottom:339.225000px;}
.y10{bottom:341.385000px;}
.y1b{bottom:348.585000px;}
.y2e{bottom:348.945000px;}
.yc4{bottom:356.505000px;}
.y6d{bottom:360.825000px;}
.y2d{bottom:365.865000px;}
.y1a{bottom:372.705000px;}
.yc3{bottom:373.785000px;}
.y6c{bottom:383.865000px;}
.yc2{bottom:391.065000px;}
.y2c{bottom:391.785000px;}
.y19{bottom:396.825000px;}
.y2b{bottom:407.265000px;}
.yc1{bottom:408.390000px;}
.y6b{bottom:415.590000px;}
.y18{bottom:420.945000px;}
.y2a{bottom:422.745000px;}
.yc0{bottom:425.670000px;}
.yef{bottom:433.230000px;}
.y6a{bottom:436.470000px;}
.y29{bottom:438.585000px;}
.ybf{bottom:442.950000px;}
.y17{bottom:445.065000px;}
.y28{bottom:454.065000px;}
.yee{bottom:459.510000px;}
.ybe{bottom:460.230000px;}
.y16{bottom:469.230000px;}
.y27{bottom:469.590000px;}
.ybd{bottom:477.510000px;}
.y26{bottom:485.070000px;}
.yed{bottom:486.150000px;}
.y15{bottom:493.350000px;}
.ybc{bottom:494.430000px;}
.y25{bottom:500.550000px;}
.yec{bottom:503.430000px;}
.ybb{bottom:511.710000px;}
.y24{bottom:516.030000px;}
.y14{bottom:517.470000px;}
.yba{bottom:528.630000px;}
.y23{bottom:531.510000px;}
.yeb{bottom:538.020000px;}
.y9c{bottom:538.740000px;}
.y13{bottom:541.950000px;}
.y22{bottom:546.990000px;}
.yb9{bottom:555.300000px;}
.y9b{bottom:557.100000px;}
.y21{bottom:562.830000px;}
.y12{bottom:566.070000px;}
.yb8{bottom:572.580000px;}
.y9a{bottom:575.460000px;}
.y20{bottom:577.950000px;}
.yb7{bottom:589.500000px;}
.yea{bottom:589.860000px;}
.y11{bottom:590.190000px;}
.y99{bottom:593.820000px;}
.y69{bottom:604.980000px;}
.ye9{bottom:607.140000px;}
.y98{bottom:611.820000px;}
.yb6{bottom:616.140000px;}
.y68{bottom:624.060000px;}
.ye8{bottom:624.420000px;}
.y97{bottom:629.100000px;}
.yb5{bottom:633.420000px;}
.ye7{bottom:641.340000px;}
.yb4{bottom:650.700000px;}
.y96{bottom:655.740000px;}
.ye6{bottom:658.620000px;}
.y95{bottom:673.050000px;}
.ye5{bottom:675.930000px;}
.yb3{bottom:677.010000px;}
.y94{bottom:690.330000px;}
.ye4{bottom:693.210000px;}
.yb2{bottom:694.290000px;}
.y93{bottom:707.250000px;}
.ye3{bottom:710.490000px;}
.yb1{bottom:712.650000px;}
.ye2{bottom:727.770000px;}
.yb0{bottom:729.570000px;}
.y92{bottom:733.530000px;}
.ye1{bottom:745.050000px;}
.yaf{bottom:747.930000px;}
.y91{bottom:750.810000px;}
.ye0{bottom:762.330000px;}
.yae{bottom:765.210000px;}
.y90{bottom:768.090000px;}
.ydf{bottom:779.610000px;}
.yad{bottom:783.570000px;}
.y8f{bottom:785.370000px;}
.yde{bottom:796.890000px;}
.yac{bottom:800.895000px;}
.y8e{bottom:802.695000px;}
.ydd{bottom:814.215000px;}
.yab{bottom:819.255000px;}
.y8d{bottom:819.615000px;}
.ydc{bottom:831.495000px;}
.yaa{bottom:836.175000px;}
.y8c{bottom:846.255000px;}
.ydb{bottom:848.415000px;}
.ya9{bottom:862.815000px;}
.y8b{bottom:863.535000px;}
.yda{bottom:865.695000px;}
.ya8{bottom:880.095000px;}
.y8a{bottom:880.455000px;}
.yd9{bottom:882.975000px;}
.y67{bottom:888.375000px;}
.ya7{bottom:897.375000px;}
.yd8{bottom:900.255000px;}
.y66{bottom:905.295000px;}
.y89{bottom:907.095000px;}
.ya6{bottom:911.430000px;}
.yd7{bottom:917.535000px;}
.y65{bottom:922.935000px;}
.y88{bottom:924.375000px;}
.ya4{bottom:930.510000px;}
.yd6{bottom:934.845000px;}
.y87{bottom:941.685000px;}
.y64{bottom:942.765000px;}
.yf{bottom:943.845000px;}
.ye{bottom:948.885000px;}
.ya3{bottom:949.965000px;}
.yd5{bottom:952.125000px;}
.y86{bottom:955.725000px;}
.y63{bottom:961.485000px;}
.ya2{bottom:969.405000px;}
.yd{bottom:973.005000px;}
.y85{bottom:974.805000px;}
.y62{bottom:978.405000px;}
.yd4{bottom:986.685000px;}
.ya1{bottom:988.845000px;}
.yc{bottom:990.285000px;}
.y83{bottom:994.245000px;}
.yb{bottom:1000.365000px;}
.y61{bottom:1003.965000px;}
.ya0{bottom:1011.885000px;}
.y82{bottom:1013.685000px;}
.ya{bottom:1019.805000px;}
.y60{bottom:1021.245000px;}
.y9f{bottom:1029.165000px;}
.y5f{bottom:1038.165000px;}
.y9{bottom:1044.285000px;}
.y9e{bottom:1046.085000px;}
.y81{bottom:1055.085000px;}
.y5e{bottom:1055.445000px;}
.y8{bottom:1072.050000px;}
.y80{bottom:1072.410000px;}
.y5d{bottom:1072.770000px;}
.y5a{bottom:1075.320000px;}
.y7f{bottom:1089.690000px;}
.y5c{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h15{height:5.650313px;}
.h1e{height:18.345000px;}
.h1a{height:18.705000px;}
.h1f{height:18.720000px;}
.h16{height:27.720000px;}
.h13{height:29.678906px;}
.h12{height:35.332031px;}
.h1b{height:37.065000px;}
.ha{height:38.158594px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.hf{height:53.677969px;}
.h19{height:53.704687px;}
.h14{height:55.147500px;}
.h1d{height:55.785000px;}
.h1c{height:55.800000px;}
.h7{height:58.050000px;}
.h6{height:59.357813px;}
.h10{height:60.155156px;}
.hb{height:60.952500px;}
.h18{height:62.163910px;}
.h17{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h3{height:65.884219px;}
.h9{height:66.543750px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h11{height:201.645000px;}
.hc{height:599.565000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:100.080000px;}
.w2{width:105.142500px;}
.w11{width:113.076000px;}
.wb{width:127.440000px;}
.w10{width:132.192000px;}
.w4{width:132.502500px;}
.w12{width:137.565000px;}
.wd{width:137.592000px;}
.we{width:143.280000px;}
.w9{width:143.712000px;}
.w7{width:145.125000px;}
.wa{width:155.925000px;}
.w6{width:163.080000px;}
.wc{width:186.195000px;}
.w8{width:195.555000px;}
.w5{width:596.745000px;}
.w3{width:631.305000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x22{left:6.876000px;}
.x1a{left:8.295000px;}
.x15{left:14.386500px;}
.x18{left:16.186500px;}
.x4{left:17.625000px;}
.x17{left:19.426500px;}
.x30{left:22.320000px;}
.x16{left:26.266500px;}
.x1e{left:29.146500px;}
.x41{left:30.255000px;}
.x6{left:33.105000px;}
.x2d{left:34.180500px;}
.x3f{left:35.655000px;}
.x32{left:38.145000px;}
.x40{left:39.600000px;}
.x29{left:42.870000px;}
.x10{left:43.906500px;}
.x27{left:45.705000px;}
.x1d{left:47.542500px;}
.x34{left:49.300500px;}
.x11{left:50.782500px;}
.x35{left:51.870000px;}
.x14{left:53.302500px;}
.xf{left:55.102500px;}
.x20{left:57.262500px;}
.x3e{left:58.725000px;}
.x3d{left:61.230000px;}
.x1b{left:62.295000px;}
.x28{left:65.175000px;}
.x1f{left:66.265500px;}
.x2a{left:68.775000px;}
.x1{left:78.529500px;}
.x33{left:82.125000px;}
.x7{left:86.436000px;}
.x42{left:91.836000px;}
.x13{left:92.905500px;}
.x37{left:93.996000px;}
.x2{left:96.145500px;}
.x21{left:102.985500px;}
.x1c{left:106.945500px;}
.x23{left:113.436000px;}
.x43{left:118.836000px;}
.x12{left:124.585500px;}
.x24{left:125.689500px;}
.x5{left:145.860000px;}
.x2c{left:148.414500px;}
.x3{left:183.690000px;}
.x39{left:204.210000px;}
.x19{left:218.970000px;}
.x2b{left:252.105000px;}
.x38{left:257.865000px;}
.x25{left:271.545000px;}
.x2e{left:276.585000px;}
.xb{left:278.025000px;}
.xc{left:283.065000px;}
.x3a{left:305.025000px;}
.x3b{left:437.940000px;}
.x2f{left:463.500000px;}
.x26{left:467.820000px;}
.xa{left:514.290000px;}
.x3c{left:551.745000px;}
.x31{left:601.830000px;}
.xd{left:611.895000px;}
.x36{left:665.925000px;}
.x9{left:766.050000px;}
.x8{left:791.970000px;}
.xe{left:807.090000px;}
@media print{
.v3{vertical-align:-61.546667pt;}
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-1.536000pt;}
.lse{letter-spacing:-1.280000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.560000pt;}
.ls10{letter-spacing:-0.432533pt;}
.ls11{letter-spacing:-0.414933pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.278933pt;}
.ls8{letter-spacing:-0.079467pt;}
.lsb{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.017920pt;}
.ls4{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.439040pt;}
.ls5{letter-spacing:0.442880pt;}
.ls0{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.960000pt;}
.ls14{letter-spacing:14.494720pt;}
.ls13{letter-spacing:41.374720pt;}
.ls12{letter-spacing:49.054720pt;}
.lsf{letter-spacing:56.734720pt;}
.wsb{word-spacing:-53.760000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsd{word-spacing:-13.457920pt;}
.ws1{word-spacing:-13.440000pt;}
.wse{word-spacing:-13.025067pt;}
.wsc{word-spacing:-13.007467pt;}
.ws5{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.881067pt;}
.ws7{word-spacing:-11.600000pt;}
.ws9{word-spacing:-10.880000pt;}
.ws2{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:-7.936000pt;}
.wsf{word-spacing:-0.053760pt;}
.wsa{word-spacing:0.000000pt;}
._1d{margin-left:-2523.152213pt;}
._14{margin-left:-2.952107pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._c{width:3.938560pt;}
._5{width:5.086293pt;}
._6{width:6.274560pt;}
._7{width:7.452587pt;}
._f{width:8.360107pt;}
._a{width:9.277440pt;}
._b{width:10.334720pt;}
._10{width:11.624960pt;}
._18{width:12.524373pt;}
._1a{width:13.550933pt;}
._16{width:14.577920pt;}
._15{width:15.554987pt;}
._19{width:16.741973pt;}
._1b{width:17.755307pt;}
._9{width:18.962773pt;}
._8{width:20.270080pt;}
._1c{width:21.926400pt;}
._d{width:23.511040pt;}
._e{width:24.404053pt;}
._12{width:27.986347pt;}
._13{width:29.245440pt;}
._11{width:30.481920pt;}
._17{width:31.538347pt;}
._20{width:44.807680pt;}
._1f{width:46.021120pt;}
._1e{width:104.801280pt;}
.fs6{font-size:5.120000pt;}
.fsa{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.240000pt;}
.fsb{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:2.588000pt;}
.y42{bottom:3.520000pt;}
.y5{bottom:3.840000pt;}
.y75{bottom:4.466667pt;}
.y6e{bottom:4.480000pt;}
.y5b{bottom:4.773333pt;}
.y79{bottom:4.786667pt;}
.y84{bottom:4.800000pt;}
.ya5{bottom:4.813333pt;}
.y2{bottom:8.960000pt;}
.y4b{bottom:9.308000pt;}
.y70{bottom:12.800000pt;}
.y58{bottom:13.790667pt;}
.y41{bottom:18.880000pt;}
.y4{bottom:20.800000pt;}
.y71{bottom:21.120000pt;}
.y73{bottom:21.133333pt;}
.y77{bottom:21.426667pt;}
.y57{bottom:27.550667pt;}
.y40{bottom:34.240000pt;}
.y4a{bottom:35.550667pt;}
.y78{bottom:37.746667pt;}
.y74{bottom:37.773333pt;}
.y56{bottom:41.310667pt;}
.y3{bottom:42.560000pt;}
.y49{bottom:46.110667pt;}
.y3f{bottom:49.600000pt;}
.y7{bottom:51.232000pt;}
.y55{bottom:56.990667pt;}
.y48{bottom:57.950667pt;}
.y3e{bottom:65.000000pt;}
.y47{bottom:69.470667pt;}
.y54{bottom:71.070667pt;}
.y3d{bottom:80.360000pt;}
.y53{bottom:82.590667pt;}
.yd3{bottom:86.752000pt;}
.y52{bottom:88.030667pt;}
.y46{bottom:88.670667pt;}
.y7e{bottom:93.472000pt;}
.y3c{bottom:95.400000pt;}
.y9d{bottom:96.352000pt;}
.y51{bottom:102.110667pt;}
.yd2{bottom:102.112000pt;}
.y59{bottom:102.752000pt;}
.y3b{bottom:110.760000pt;}
.y50{bottom:115.870667pt;}
.y7d{bottom:117.152000pt;}
.yd1{bottom:117.472000pt;}
.y43{bottom:123.556000pt;}
.y3a{bottom:126.120000pt;}
.y4f{bottom:129.657333pt;}
.yd0{bottom:132.864000pt;}
.y7c{bottom:133.184000pt;}
.y39{bottom:141.480000pt;}
.y4e{bottom:143.737333pt;}
.y45{bottom:144.057333pt;}
.ycf{bottom:148.226667pt;}
.y7b{bottom:149.506667pt;}
.y44{bottom:153.657333pt;}
.y38{bottom:156.840000pt;}
.y4d{bottom:157.177333pt;}
.yce{bottom:163.586667pt;}
.y7a{bottom:165.506667pt;}
.y37{bottom:172.200000pt;}
.ycd{bottom:178.946667pt;}
.y76{bottom:186.320000pt;}
.y36{bottom:187.586667pt;}
.ycc{bottom:194.306667pt;}
.y35{bottom:202.946667pt;}
.ycb{bottom:209.666667pt;}
.y34{bottom:218.306667pt;}
.y1f{bottom:224.066667pt;}
.yca{bottom:225.026667pt;}
.y33{bottom:233.666667pt;}
.y72{bottom:236.880000pt;}
.yc9{bottom:240.386667pt;}
.y1e{bottom:245.506667pt;}
.y32{bottom:249.026667pt;}
.yc8{bottom:255.773333pt;}
.y31{bottom:264.066667pt;}
.y1d{bottom:266.946667pt;}
.yc7{bottom:270.813333pt;}
.y30{bottom:279.426667pt;}
.yc6{bottom:286.173333pt;}
.y6f{bottom:287.133333pt;}
.y1c{bottom:288.386667pt;}
.y2f{bottom:294.813333pt;}
.yc5{bottom:301.533333pt;}
.y10{bottom:303.453333pt;}
.y1b{bottom:309.853333pt;}
.y2e{bottom:310.173333pt;}
.yc4{bottom:316.893333pt;}
.y6d{bottom:320.733333pt;}
.y2d{bottom:325.213333pt;}
.y1a{bottom:331.293333pt;}
.yc3{bottom:332.253333pt;}
.y6c{bottom:341.213333pt;}
.yc2{bottom:347.613333pt;}
.y2c{bottom:348.253333pt;}
.y19{bottom:352.733333pt;}
.y2b{bottom:362.013333pt;}
.yc1{bottom:363.013333pt;}
.y6b{bottom:369.413333pt;}
.y18{bottom:374.173333pt;}
.y2a{bottom:375.773333pt;}
.yc0{bottom:378.373333pt;}
.yef{bottom:385.093333pt;}
.y6a{bottom:387.973333pt;}
.y29{bottom:389.853333pt;}
.ybf{bottom:393.733333pt;}
.y17{bottom:395.613333pt;}
.y28{bottom:403.613333pt;}
.yee{bottom:408.453333pt;}
.ybe{bottom:409.093333pt;}
.y16{bottom:417.093333pt;}
.y27{bottom:417.413333pt;}
.ybd{bottom:424.453333pt;}
.y26{bottom:431.173333pt;}
.yed{bottom:432.133333pt;}
.y15{bottom:438.533333pt;}
.ybc{bottom:439.493333pt;}
.y25{bottom:444.933333pt;}
.yec{bottom:447.493333pt;}
.ybb{bottom:454.853333pt;}
.y24{bottom:458.693333pt;}
.y14{bottom:459.973333pt;}
.yba{bottom:469.893333pt;}
.y23{bottom:472.453333pt;}
.yeb{bottom:478.240000pt;}
.y9c{bottom:478.880000pt;}
.y13{bottom:481.733333pt;}
.y22{bottom:486.213333pt;}
.yb9{bottom:493.600000pt;}
.y9b{bottom:495.200000pt;}
.y21{bottom:500.293333pt;}
.y12{bottom:503.173333pt;}
.yb8{bottom:508.960000pt;}
.y9a{bottom:511.520000pt;}
.y20{bottom:513.733333pt;}
.yb7{bottom:524.000000pt;}
.yea{bottom:524.320000pt;}
.y11{bottom:524.613333pt;}
.y99{bottom:527.840000pt;}
.y69{bottom:537.760000pt;}
.ye9{bottom:539.680000pt;}
.y98{bottom:543.840000pt;}
.yb6{bottom:547.680000pt;}
.y68{bottom:554.720000pt;}
.ye8{bottom:555.040000pt;}
.y97{bottom:559.200000pt;}
.yb5{bottom:563.040000pt;}
.ye7{bottom:570.080000pt;}
.yb4{bottom:578.400000pt;}
.y96{bottom:582.880000pt;}
.ye6{bottom:585.440000pt;}
.y95{bottom:598.266667pt;}
.ye5{bottom:600.826667pt;}
.yb3{bottom:601.786667pt;}
.y94{bottom:613.626667pt;}
.ye4{bottom:616.186667pt;}
.yb2{bottom:617.146667pt;}
.y93{bottom:628.666667pt;}
.ye3{bottom:631.546667pt;}
.yb1{bottom:633.466667pt;}
.ye2{bottom:646.906667pt;}
.yb0{bottom:648.506667pt;}
.y92{bottom:652.026667pt;}
.ye1{bottom:662.266667pt;}
.yaf{bottom:664.826667pt;}
.y91{bottom:667.386667pt;}
.ye0{bottom:677.626667pt;}
.yae{bottom:680.186667pt;}
.y90{bottom:682.746667pt;}
.ydf{bottom:692.986667pt;}
.yad{bottom:696.506667pt;}
.y8f{bottom:698.106667pt;}
.yde{bottom:708.346667pt;}
.yac{bottom:711.906667pt;}
.y8e{bottom:713.506667pt;}
.ydd{bottom:723.746667pt;}
.yab{bottom:728.226667pt;}
.y8d{bottom:728.546667pt;}
.ydc{bottom:739.106667pt;}
.yaa{bottom:743.266667pt;}
.y8c{bottom:752.226667pt;}
.ydb{bottom:754.146667pt;}
.ya9{bottom:766.946667pt;}
.y8b{bottom:767.586667pt;}
.yda{bottom:769.506667pt;}
.ya8{bottom:782.306667pt;}
.y8a{bottom:782.626667pt;}
.yd9{bottom:784.866667pt;}
.y67{bottom:789.666667pt;}
.ya7{bottom:797.666667pt;}
.yd8{bottom:800.226667pt;}
.y66{bottom:804.706667pt;}
.y89{bottom:806.306667pt;}
.ya6{bottom:810.160000pt;}
.yd7{bottom:815.586667pt;}
.y65{bottom:820.386667pt;}
.y88{bottom:821.666667pt;}
.ya4{bottom:827.120000pt;}
.yd6{bottom:830.973333pt;}
.y87{bottom:837.053333pt;}
.y64{bottom:838.013333pt;}
.yf{bottom:838.973333pt;}
.ye{bottom:843.453333pt;}
.ya3{bottom:844.413333pt;}
.yd5{bottom:846.333333pt;}
.y86{bottom:849.533333pt;}
.y63{bottom:854.653333pt;}
.ya2{bottom:861.693333pt;}
.yd{bottom:864.893333pt;}
.y85{bottom:866.493333pt;}
.y62{bottom:869.693333pt;}
.yd4{bottom:877.053333pt;}
.ya1{bottom:878.973333pt;}
.yc{bottom:880.253333pt;}
.y83{bottom:883.773333pt;}
.yb{bottom:889.213333pt;}
.y61{bottom:892.413333pt;}
.ya0{bottom:899.453333pt;}
.y82{bottom:901.053333pt;}
.ya{bottom:906.493333pt;}
.y60{bottom:907.773333pt;}
.y9f{bottom:914.813333pt;}
.y5f{bottom:922.813333pt;}
.y9{bottom:928.253333pt;}
.y9e{bottom:929.853333pt;}
.y81{bottom:937.853333pt;}
.y5e{bottom:938.173333pt;}
.y8{bottom:952.933333pt;}
.y80{bottom:953.253333pt;}
.y5d{bottom:953.573333pt;}
.y5a{bottom:955.840000pt;}
.y7f{bottom:968.613333pt;}
.y5c{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h15{height:5.022500pt;}
.h1e{height:16.306667pt;}
.h1a{height:16.626667pt;}
.h1f{height:16.640000pt;}
.h16{height:24.640000pt;}
.h13{height:26.381250pt;}
.h12{height:31.406250pt;}
.h1b{height:32.946667pt;}
.ha{height:33.918750pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.hf{height:47.713750pt;}
.h19{height:47.737500pt;}
.h14{height:49.020000pt;}
.h1d{height:49.586667pt;}
.h1c{height:49.600000pt;}
.h7{height:51.600000pt;}
.h6{height:52.762500pt;}
.h10{height:53.471250pt;}
.hb{height:54.180000pt;}
.h18{height:55.256809pt;}
.h17{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h3{height:58.563750pt;}
.h9{height:59.150000pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h11{height:179.240000pt;}
.hc{height:532.946667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:88.960000pt;}
.w2{width:93.460000pt;}
.w11{width:100.512000pt;}
.wb{width:113.280000pt;}
.w10{width:117.504000pt;}
.w4{width:117.780000pt;}
.w12{width:122.280000pt;}
.wd{width:122.304000pt;}
.we{width:127.360000pt;}
.w9{width:127.744000pt;}
.w7{width:129.000000pt;}
.wa{width:138.600000pt;}
.w6{width:144.960000pt;}
.wc{width:165.506667pt;}
.w8{width:173.826667pt;}
.w5{width:530.440000pt;}
.w3{width:561.160000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x22{left:6.112000pt;}
.x1a{left:7.373333pt;}
.x15{left:12.788000pt;}
.x18{left:14.388000pt;}
.x4{left:15.666667pt;}
.x17{left:17.268000pt;}
.x30{left:19.840000pt;}
.x16{left:23.348000pt;}
.x1e{left:25.908000pt;}
.x41{left:26.893333pt;}
.x6{left:29.426667pt;}
.x2d{left:30.382667pt;}
.x3f{left:31.693333pt;}
.x32{left:33.906667pt;}
.x40{left:35.200000pt;}
.x29{left:38.106667pt;}
.x10{left:39.028000pt;}
.x27{left:40.626667pt;}
.x1d{left:42.260000pt;}
.x34{left:43.822667pt;}
.x11{left:45.140000pt;}
.x35{left:46.106667pt;}
.x14{left:47.380000pt;}
.xf{left:48.980000pt;}
.x20{left:50.900000pt;}
.x3e{left:52.200000pt;}
.x3d{left:54.426667pt;}
.x1b{left:55.373333pt;}
.x28{left:57.933333pt;}
.x1f{left:58.902667pt;}
.x2a{left:61.133333pt;}
.x1{left:69.804000pt;}
.x33{left:73.000000pt;}
.x7{left:76.832000pt;}
.x42{left:81.632000pt;}
.x13{left:82.582667pt;}
.x37{left:83.552000pt;}
.x2{left:85.462667pt;}
.x21{left:91.542667pt;}
.x1c{left:95.062667pt;}
.x23{left:100.832000pt;}
.x43{left:105.632000pt;}
.x12{left:110.742667pt;}
.x24{left:111.724000pt;}
.x5{left:129.653333pt;}
.x2c{left:131.924000pt;}
.x3{left:163.280000pt;}
.x39{left:181.520000pt;}
.x19{left:194.640000pt;}
.x2b{left:224.093333pt;}
.x38{left:229.213333pt;}
.x25{left:241.373333pt;}
.x2e{left:245.853333pt;}
.xb{left:247.133333pt;}
.xc{left:251.613333pt;}
.x3a{left:271.133333pt;}
.x3b{left:389.280000pt;}
.x2f{left:412.000000pt;}
.x26{left:415.840000pt;}
.xa{left:457.146667pt;}
.x3c{left:490.440000pt;}
.x31{left:534.960000pt;}
.xd{left:543.906667pt;}
.x36{left:591.933333pt;}
.x9{left:680.933333pt;}
.x8{left:703.973333pt;}
.xe{left:717.413333pt;}
}




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