
    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_0d133504ff30577943a2ed8f.woff')format("woff");}.ff1{font-family:ff1;line-height:0.981934;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_c70a314dd1059a96ba00c535.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172363;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_1a05a002687e4ca3bf53507b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_70e0d676268bfa0303e126b5.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_11b7f0155033a14b73547aa0.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1d45a2124a26f959250dd0e6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_91beee0b723e4ac87db8a585.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6c073a18c03d12aaa802c139.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_76c61fd41f2fc2f2924766a5.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d18861fe735072766e52e0f0.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b98735c82a6cf65951a1ba7d.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffd{font-family:ffd;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;}
.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;}
.lsb{letter-spacing:-1.416000px;}
.ls9{letter-spacing:-1.080000px;}
.lsf{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.269400px;}
.ls14{letter-spacing:-0.152400px;}
.lsa{letter-spacing:-0.102000px;}
.ls6{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008640px;}
.ls4{letter-spacing:0.022320px;}
.ls12{letter-spacing:0.109440px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.262080px;}
.ls0{letter-spacing:0.360000px;}
.lse{letter-spacing:16.865280px;}
.ls13{letter-spacing:39.881280px;}
.ls11{letter-spacing:64.002720px;}
.ls5{letter-spacing:124.457760px;}
.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;}
}
.wsc{word-spacing:-59.760000px;}
.ws6{word-spacing:-19.448640px;}
.ws9{word-spacing:-16.560000px;}
.wsd{word-spacing:-16.407600px;}
.wsb{word-spacing:-16.254600px;}
.ws2{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws4{word-spacing:-13.860000px;}
.wsa{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws7{word-spacing:-9.486240px;}
.ws8{word-spacing:0.000000px;}
._1f{margin-left:-5.299200px;}
._f{margin-left:-3.708720px;}
._4{margin-left:-2.464080px;}
._0{margin-left:-1.192320px;}
._3{width:1.329840px;}
._9{width:2.538720px;}
._b{width:3.897840px;}
._8{width:5.005440px;}
._7{width:6.140160px;}
._a{width:7.903440px;}
._10{width:9.113040px;}
._5{width:10.159200px;}
._6{width:11.712240px;}
._c{width:12.967920px;}
._15{width:14.154480px;}
._1e{width:15.181200px;}
._d{width:16.359120px;}
._e{width:17.599680px;}
._14{width:18.613440px;}
._11{width:20.335680px;}
._12{width:21.408720px;}
._13{width:23.316480px;}
._1b{width:24.508800px;}
._1a{width:25.568640px;}
._1d{width:26.827200px;}
._17{width:29.278080px;}
._16{width:30.669120px;}
._1c{width:32.391360px;}
._21{width:35.239680px;}
._20{width:36.908880px;}
._18{width:45.639360px;}
._19{width:47.217840px;}
._22{width:63.457920px;}
._23{width:64.746240px;}
._25{width:66.504960px;}
._26{width:67.894320px;}
._27{width:125.922240px;}
._28{width:127.258080px;}
._24{width:141.886080px;}
._2{width:209.100000px;}
._1{width:1098.986880px;}
.fc4{color:transparent;}
.fc5{color:rgb(47,84,150);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:30.240000px;}
.fs4{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y9a{bottom:3.600000px;}
.y91{bottom:3.780000px;}
.ya1{bottom:4.140000px;}
.yd0{bottom:4.500000px;}
.y9d{bottom:4.680000px;}
.yca{bottom:5.034000px;}
.y95{bottom:5.040000px;}
.y8f{bottom:5.220000px;}
.yc7{bottom:5.400000px;}
.y9f{bottom:5.940000px;}
.yd2{bottom:6.120000px;}
.yab{bottom:6.660000px;}
.y93{bottom:6.840000px;}
.y2{bottom:7.380000px;}
.ydf{bottom:7.560000px;}
.ycd{bottom:8.280000px;}
.yb0{bottom:9.000000px;}
.ye4{bottom:14.940000px;}
.ye1{bottom:14.970000px;}
.ydd{bottom:15.120000px;}
.y8d{bottom:15.480000px;}
.y45{bottom:21.420000px;}
.y44{bottom:39.600000px;}
.y5{bottom:45.540000px;}
.y4{bottom:62.100000px;}
.y42{bottom:110.376000px;}
.y41{bottom:114.876000px;}
.yf7{bottom:117.396000px;}
.y87{bottom:124.236000px;}
.y40{bottom:126.216000px;}
.ycb{bottom:126.396000px;}
.y86{bottom:128.736000px;}
.y98{bottom:134.496000px;}
.yf6{bottom:136.296000px;}
.yfa{bottom:137.736000px;}
.y85{bottom:137.916000px;}
.y8b{bottom:139.896000px;}
.yc9{bottom:146.196000px;}
.y84{bottom:151.770000px;}
.y97{bottom:153.390000px;}
.yf5{bottom:155.190000px;}
.y83{bottom:156.270000px;}
.yf9{bottom:156.810000px;}
.y3f{bottom:165.450000px;}
.y82{bottom:165.630000px;}
.yc8{bottom:167.430000px;}
.y96{bottom:172.470000px;}
.yf4{bottom:174.270000px;}
.yf8{bottom:175.710000px;}
.y81{bottom:179.310000px;}
.y80{bottom:183.810000px;}
.y3d{bottom:184.350000px;}
.y94{bottom:188.490000px;}
.y3e{bottom:190.290000px;}
.y7f{bottom:193.170000px;}
.y8a{bottom:194.790000px;}
.y7e{bottom:197.670000px;}
.y3c{bottom:203.430000px;}
.y7d{bottom:209.010000px;}
.y92{bottom:209.550000px;}
.yc6{bottom:209.910000px;}
.yf3{bottom:212.250000px;}
.y89{bottom:213.690000px;}
.y3b{bottom:222.330000px;}
.yf2{bottom:231.150000px;}
.y90{bottom:232.410000px;}
.y7c{bottom:232.770000px;}
.yc5{bottom:233.310000px;}
.y3a{bottom:241.410000px;}
.yf1{bottom:250.050000px;}
.y7b{bottom:251.670000px;}
.y8e{bottom:252.210000px;}
.yc4{bottom:252.390000px;}
.y39{bottom:260.310000px;}
.yf0{bottom:266.250000px;}
.y79{bottom:270.570000px;}
.yc3{bottom:271.290000px;}
.y8c{bottom:273.450000px;}
.y7a{bottom:276.510000px;}
.y38{bottom:279.210000px;}
.yef{bottom:285.870000px;}
.y78{bottom:289.650000px;}
.yc2{bottom:290.190000px;}
.y37{bottom:298.290000px;}
.yee{bottom:305.670000px;}
.y77{bottom:308.550000px;}
.yc1{bottom:309.270000px;}
.y36{bottom:317.190000px;}
.yed{bottom:325.290000px;}
.y76{bottom:327.630000px;}
.yc0{bottom:328.170000px;}
.y35{bottom:336.270000px;}
.yec{bottom:345.135000px;}
.y75{bottom:346.575000px;}
.ybf{bottom:347.295000px;}
.y34{bottom:355.215000px;}
.ybe{bottom:363.315000px;}
.yeb{bottom:364.755000px;}
.y74{bottom:365.475000px;}
.y33{bottom:374.115000px;}
.ybd{bottom:382.935000px;}
.y73{bottom:384.555000px;}
.y32{bottom:393.195000px;}
.ybc{bottom:402.735000px;}
.y72{bottom:403.455000px;}
.yea{bottom:404.355000px;}
.y31{bottom:411.735000px;}
.y71{bottom:422.535000px;}
.ye9{bottom:423.975000px;}
.y30{bottom:426.495000px;}
.y2f{bottom:441.075000px;}
.y70{bottom:441.435000px;}
.ybb{bottom:442.155000px;}
.ye8{bottom:443.775000px;}
.y2e{bottom:458.175000px;}
.y6f{bottom:460.335000px;}
.yba{bottom:461.955000px;}
.ye7{bottom:467.175000px;}
.y2d{bottom:475.455000px;}
.y6e{bottom:479.415000px;}
.yb9{bottom:481.575000px;}
.ye6{bottom:486.075000px;}
.y2c{bottom:492.735000px;}
.y6d{bottom:498.315000px;}
.yb8{bottom:501.375000px;}
.ye5{bottom:502.095000px;}
.y2b{bottom:510.015000px;}
.y6c{bottom:517.395000px;}
.yb7{bottom:520.995000px;}
.y2a{bottom:527.295000px;}
.ye3{bottom:533.235000px;}
.y6b{bottom:536.295000px;}
.yb6{bottom:540.795000px;}
.y29{bottom:544.575000px;}
.y6a{bottom:555.195000px;}
.yb5{bottom:560.595000px;}
.y28{bottom:561.675000px;}
.ye2{bottom:564.195000px;}
.y68{bottom:574.275000px;}
.y27{bottom:578.955000px;}
.y69{bottom:580.215000px;}
.yb4{bottom:583.995000px;}
.y67{bottom:593.175000px;}
.ye0{bottom:595.335000px;}
.y26{bottom:596.235000px;}
.yb3{bottom:602.895000px;}
.y66{bottom:612.285000px;}
.y25{bottom:613.545000px;}
.yb2{bottom:618.945000px;}
.yde{bottom:626.325000px;}
.y24{bottom:630.825000px;}
.y65{bottom:631.185000px;}
.yb1{bottom:638.745000px;}
.y23{bottom:648.105000px;}
.ydc{bottom:649.905000px;}
.y64{bottom:650.085000px;}
.yaf{bottom:658.365000px;}
.y22{bottom:665.205000px;}
.y63{bottom:669.165000px;}
.ydb{bottom:681.045000px;}
.y21{bottom:682.485000px;}
.yae{bottom:683.385000px;}
.y62{bottom:688.065000px;}
.y20{bottom:699.765000px;}
.yda{bottom:700.665000px;}
.yad{bottom:703.185000px;}
.y61{bottom:707.145000px;}
.y1f{bottom:717.045000px;}
.yd9{bottom:720.465000px;}
.yac{bottom:722.805000px;}
.y60{bottom:726.045000px;}
.y1e{bottom:734.325000px;}
.yaa{bottom:742.605000px;}
.y5f{bottom:745.125000px;}
.y1d{bottom:751.425000px;}
.yd8{bottom:762.405000px;}
.y5e{bottom:764.025000px;}
.ya9{bottom:765.285000px;}
.y1c{bottom:768.705000px;}
.yd7{bottom:782.025000px;}
.y5d{bottom:782.925000px;}
.ya8{bottom:785.085000px;}
.y1b{bottom:785.985000px;}
.yd6{bottom:801.825000px;}
.y5c{bottom:802.005000px;}
.y1a{bottom:803.265000px;}
.ya7{bottom:805.245000px;}
.y88{bottom:807.945000px;}
.y19{bottom:820.545000px;}
.y5b{bottom:820.905000px;}
.yd5{bottom:821.445000px;}
.ya6{bottom:825.045000px;}
.y18{bottom:837.825000px;}
.y59{bottom:839.985000px;}
.yd4{bottom:841.245000px;}
.ya5{bottom:844.665000px;}
.y5a{bottom:845.925000px;}
.y17{bottom:854.925000px;}
.y58{bottom:858.885000px;}
.yd3{bottom:861.045000px;}
.ya4{bottom:864.465000px;}
.y16{bottom:872.250000px;}
.y56{bottom:877.830000px;}
.yd1{bottom:880.710000px;}
.y57{bottom:883.770000px;}
.ya3{bottom:884.130000px;}
.y15{bottom:889.530000px;}
.y55{bottom:896.910000px;}
.ycf{bottom:902.850000px;}
.ya2{bottom:903.930000px;}
.y14{bottom:906.810000px;}
.y54{bottom:915.810000px;}
.yce{bottom:923.370000px;}
.ya0{bottom:923.730000px;}
.y13{bottom:924.450000px;}
.y53{bottom:934.890000px;}
.y12{bottom:942.990000px;}
.y9e{bottom:943.890000px;}
.ycc{bottom:944.790000px;}
.y52{bottom:953.790000px;}
.y11{bottom:960.270000px;}
.y9c{bottom:965.850000px;}
.y51{bottom:972.690000px;}
.y10{bottom:977.910000px;}
.y9b{bottom:986.550000px;}
.y50{bottom:991.770000px;}
.yf{bottom:995.730000px;}
.y99{bottom:1006.350000px;}
.y4f{bottom:1010.670000px;}
.ye{bottom:1011.210000px;}
.y4e{bottom:1029.750000px;}
.yd{bottom:1033.530000px;}
.y4d{bottom:1048.650000px;}
.yc{bottom:1056.030000px;}
.y4c{bottom:1067.550000px;}
.yb{bottom:1077.630000px;}
.y4b{bottom:1086.630000px;}
.ya{bottom:1094.730000px;}
.y4a{bottom:1105.530000px;}
.y9{bottom:1112.010000px;}
.y49{bottom:1124.610000px;}
.y8{bottom:1129.290000px;}
.y47{bottom:1143.540000px;}
.y7{bottom:1146.600000px;}
.y48{bottom:1149.480000px;}
.y46{bottom:1162.620000px;}
.y6{bottom:1163.880000px;}
.y43{bottom:1186.020000px;}
.y3{bottom:1189.080000px;}
.y1{bottom:1204.740000px;}
.h1a{height:18.900000px;}
.h1e{height:18.936000px;}
.h17{height:19.080000px;}
.h29{height:19.116000px;}
.h1d{height:19.440000px;}
.h23{height:19.800000px;}
.h1b{height:19.980000px;}
.h19{height:20.340000px;}
.h16{height:20.520000px;}
.h21{height:20.700000px;}
.h11{height:21.114844px;}
.h1c{height:21.240000px;}
.h24{height:21.420000px;}
.h1f{height:21.960000px;}
.h18{height:22.140000px;}
.h26{height:22.860000px;}
.h22{height:23.580000px;}
.h20{height:24.300000px;}
.h2{height:26.100000px;}
.h10{height:29.158594px;}
.h28{height:30.240000px;}
.h27{height:30.276000px;}
.h25{height:30.420000px;}
.h15{height:30.780000px;}
.h13{height:33.683203px;}
.ha{height:34.036523px;}
.h5{height:39.760312px;}
.h6{height:41.726953px;}
.h7{height:42.164648px;}
.hf{height:46.251562px;}
.hb{height:46.736719px;}
.he{height:47.980898px;}
.h14{height:48.224531px;}
.hc{height:49.255313px;}
.hd{height:49.394180px;}
.h3{height:53.237812px;}
.h12{height:54.596250px;}
.h9{height:54.864844px;}
.h8{height:56.155781px;}
.h4{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:42.480000px;}
.w9{width:48.780000px;}
.w11{width:49.320000px;}
.w2{width:62.100000px;}
.w10{width:66.060000px;}
.wc{width:70.560000px;}
.wb{width:91.476000px;}
.w13{width:104.040000px;}
.w12{width:110.556000px;}
.w8{width:115.020000px;}
.wf{width:157.530000px;}
.we{width:157.710000px;}
.wd{width:248.430000px;}
.wa{width:463.575000px;}
.w7{width:509.865000px;}
.w3{width:618.405000px;}
.w5{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x2{left:-39.636000px;}
.x0{left:0.000000px;}
.x4{left:8.100000px;}
.x39{left:10.080000px;}
.x28{left:14.220000px;}
.x42{left:16.380000px;}
.x3e{left:22.860000px;}
.x2f{left:25.200000px;}
.x2c{left:28.845000px;}
.x32{left:31.320000px;}
.x34{left:34.560000px;}
.x21{left:39.060000px;}
.x24{left:41.040000px;}
.x44{left:43.740000px;}
.x45{left:46.980000px;}
.x23{left:49.140000px;}
.x43{left:51.120000px;}
.x22{left:53.280000px;}
.x3b{left:62.280000px;}
.x38{left:66.420000px;}
.x37{left:70.605000px;}
.x36{left:74.730000px;}
.x1{left:108.036000px;}
.xf{left:111.815987px;}
.x5{left:112.895987px;}
.x35{left:115.965000px;}
.x3a{left:121.365000px;}
.x27{left:128.736000px;}
.x46{left:135.035987px;}
.x47{left:140.075987px;}
.x26{left:143.315987px;}
.xb{left:150.509987px;}
.x1e{left:151.950000px;}
.x16{left:161.129987px;}
.x1f{left:166.905000px;}
.x3{left:170.130000px;}
.x13{left:171.749973px;}
.x14{left:176.969987px;}
.x29{left:178.230000px;}
.x30{left:180.030000px;}
.x2d{left:184.725000px;}
.x9{left:204.329987px;}
.x2a{left:210.645000px;}
.x2e{left:247.709987px;}
.xc{left:277.049973px;}
.x3d{left:280.154987px;}
.xd{left:282.314987px;}
.x1d{left:285.734987px;}
.x7{left:309.854987px;}
.xe{left:324.074987px;}
.x8{left:330.734987px;}
.x3f{left:347.295000px;}
.x11{left:351.794973px;}
.x12{left:357.014987px;}
.x19{left:370.694973px;}
.x1a{left:375.914987px;}
.x6{left:396.074987px;}
.x40{left:397.335000px;}
.x15{left:415.514973px;}
.x25{left:416.954987px;}
.xa{left:420.734987px;}
.x31{left:429.195000px;}
.x3c{left:441.614987px;}
.x41{left:508.605000px;}
.x1b{left:527.324973px;}
.x1c{left:532.544987px;}
.x33{left:587.625000px;}
.x2b{left:642.705000px;}
.x20{left:662.550000px;}
.x17{left:710.789973px;}
.x18{left:716.009987px;}
.x10{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-1.258667pt;}
.ls9{letter-spacing:-0.960000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.239467pt;}
.ls14{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:-0.090667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007680pt;}
.ls4{letter-spacing:0.019840pt;}
.ls12{letter-spacing:0.097280pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.232960pt;}
.ls0{letter-spacing:0.320000pt;}
.lse{letter-spacing:14.991360pt;}
.ls13{letter-spacing:35.450027pt;}
.ls11{letter-spacing:56.891307pt;}
.ls5{letter-spacing:110.629120pt;}
.wsc{word-spacing:-53.120000pt;}
.ws6{word-spacing:-17.287680pt;}
.ws9{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.584533pt;}
.wsb{word-spacing:-14.448533pt;}
.ws2{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.320000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws7{word-spacing:-8.432213pt;}
.ws8{word-spacing:0.000000pt;}
._1f{margin-left:-4.710400pt;}
._f{margin-left:-3.296640pt;}
._4{margin-left:-2.190293pt;}
._0{margin-left:-1.059840pt;}
._3{width:1.182080pt;}
._9{width:2.256640pt;}
._b{width:3.464747pt;}
._8{width:4.449280pt;}
._7{width:5.457920pt;}
._a{width:7.025280pt;}
._10{width:8.100480pt;}
._5{width:9.030400pt;}
._6{width:10.410880pt;}
._c{width:11.527040pt;}
._15{width:12.581760pt;}
._1e{width:13.494400pt;}
._d{width:14.541440pt;}
._e{width:15.644160pt;}
._14{width:16.545280pt;}
._11{width:18.076160pt;}
._12{width:19.029973pt;}
._13{width:20.725760pt;}
._1b{width:21.785600pt;}
._1a{width:22.727680pt;}
._1d{width:23.846400pt;}
._17{width:26.024960pt;}
._16{width:27.261440pt;}
._1c{width:28.792320pt;}
._21{width:31.324160pt;}
._20{width:32.807893pt;}
._18{width:40.568320pt;}
._19{width:41.971413pt;}
._22{width:56.407040pt;}
._23{width:57.552213pt;}
._25{width:59.115520pt;}
._26{width:60.350507pt;}
._27{width:111.930880pt;}
._28{width:113.118293pt;}
._24{width:126.120960pt;}
._2{width:185.866667pt;}
._1{width:976.877227pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y9a{bottom:3.200000pt;}
.y91{bottom:3.360000pt;}
.ya1{bottom:3.680000pt;}
.yd0{bottom:4.000000pt;}
.y9d{bottom:4.160000pt;}
.yca{bottom:4.474667pt;}
.y95{bottom:4.480000pt;}
.y8f{bottom:4.640000pt;}
.yc7{bottom:4.800000pt;}
.y9f{bottom:5.280000pt;}
.yd2{bottom:5.440000pt;}
.yab{bottom:5.920000pt;}
.y93{bottom:6.080000pt;}
.y2{bottom:6.560000pt;}
.ydf{bottom:6.720000pt;}
.ycd{bottom:7.360000pt;}
.yb0{bottom:8.000000pt;}
.ye4{bottom:13.280000pt;}
.ye1{bottom:13.306667pt;}
.ydd{bottom:13.440000pt;}
.y8d{bottom:13.760000pt;}
.y45{bottom:19.040000pt;}
.y44{bottom:35.200000pt;}
.y5{bottom:40.480000pt;}
.y4{bottom:55.200000pt;}
.y42{bottom:98.112000pt;}
.y41{bottom:102.112000pt;}
.yf7{bottom:104.352000pt;}
.y87{bottom:110.432000pt;}
.y40{bottom:112.192000pt;}
.ycb{bottom:112.352000pt;}
.y86{bottom:114.432000pt;}
.y98{bottom:119.552000pt;}
.yf6{bottom:121.152000pt;}
.yfa{bottom:122.432000pt;}
.y85{bottom:122.592000pt;}
.y8b{bottom:124.352000pt;}
.yc9{bottom:129.952000pt;}
.y84{bottom:134.906667pt;}
.y97{bottom:136.346667pt;}
.yf5{bottom:137.946667pt;}
.y83{bottom:138.906667pt;}
.yf9{bottom:139.386667pt;}
.y3f{bottom:147.066667pt;}
.y82{bottom:147.226667pt;}
.yc8{bottom:148.826667pt;}
.y96{bottom:153.306667pt;}
.yf4{bottom:154.906667pt;}
.yf8{bottom:156.186667pt;}
.y81{bottom:159.386667pt;}
.y80{bottom:163.386667pt;}
.y3d{bottom:163.866667pt;}
.y94{bottom:167.546667pt;}
.y3e{bottom:169.146667pt;}
.y7f{bottom:171.706667pt;}
.y8a{bottom:173.146667pt;}
.y7e{bottom:175.706667pt;}
.y3c{bottom:180.826667pt;}
.y7d{bottom:185.786667pt;}
.y92{bottom:186.266667pt;}
.yc6{bottom:186.586667pt;}
.yf3{bottom:188.666667pt;}
.y89{bottom:189.946667pt;}
.y3b{bottom:197.626667pt;}
.yf2{bottom:205.466667pt;}
.y90{bottom:206.586667pt;}
.y7c{bottom:206.906667pt;}
.yc5{bottom:207.386667pt;}
.y3a{bottom:214.586667pt;}
.yf1{bottom:222.266667pt;}
.y7b{bottom:223.706667pt;}
.y8e{bottom:224.186667pt;}
.yc4{bottom:224.346667pt;}
.y39{bottom:231.386667pt;}
.yf0{bottom:236.666667pt;}
.y79{bottom:240.506667pt;}
.yc3{bottom:241.146667pt;}
.y8c{bottom:243.066667pt;}
.y7a{bottom:245.786667pt;}
.y38{bottom:248.186667pt;}
.yef{bottom:254.106667pt;}
.y78{bottom:257.466667pt;}
.yc2{bottom:257.946667pt;}
.y37{bottom:265.146667pt;}
.yee{bottom:271.706667pt;}
.y77{bottom:274.266667pt;}
.yc1{bottom:274.906667pt;}
.y36{bottom:281.946667pt;}
.yed{bottom:289.146667pt;}
.y76{bottom:291.226667pt;}
.yc0{bottom:291.706667pt;}
.y35{bottom:298.906667pt;}
.yec{bottom:306.786667pt;}
.y75{bottom:308.066667pt;}
.ybf{bottom:308.706667pt;}
.y34{bottom:315.746667pt;}
.ybe{bottom:322.946667pt;}
.yeb{bottom:324.226667pt;}
.y74{bottom:324.866667pt;}
.y33{bottom:332.546667pt;}
.ybd{bottom:340.386667pt;}
.y73{bottom:341.826667pt;}
.y32{bottom:349.506667pt;}
.ybc{bottom:357.986667pt;}
.y72{bottom:358.626667pt;}
.yea{bottom:359.426667pt;}
.y31{bottom:365.986667pt;}
.y71{bottom:375.586667pt;}
.ye9{bottom:376.866667pt;}
.y30{bottom:379.106667pt;}
.y2f{bottom:392.066667pt;}
.y70{bottom:392.386667pt;}
.ybb{bottom:393.026667pt;}
.ye8{bottom:394.466667pt;}
.y2e{bottom:407.266667pt;}
.y6f{bottom:409.186667pt;}
.yba{bottom:410.626667pt;}
.ye7{bottom:415.266667pt;}
.y2d{bottom:422.626667pt;}
.y6e{bottom:426.146667pt;}
.yb9{bottom:428.066667pt;}
.ye6{bottom:432.066667pt;}
.y2c{bottom:437.986667pt;}
.y6d{bottom:442.946667pt;}
.yb8{bottom:445.666667pt;}
.ye5{bottom:446.306667pt;}
.y2b{bottom:453.346667pt;}
.y6c{bottom:459.906667pt;}
.yb7{bottom:463.106667pt;}
.y2a{bottom:468.706667pt;}
.ye3{bottom:473.986667pt;}
.y6b{bottom:476.706667pt;}
.yb6{bottom:480.706667pt;}
.y29{bottom:484.066667pt;}
.y6a{bottom:493.506667pt;}
.yb5{bottom:498.306667pt;}
.y28{bottom:499.266667pt;}
.ye2{bottom:501.506667pt;}
.y68{bottom:510.466667pt;}
.y27{bottom:514.626667pt;}
.y69{bottom:515.746667pt;}
.yb4{bottom:519.106667pt;}
.y67{bottom:527.266667pt;}
.ye0{bottom:529.186667pt;}
.y26{bottom:529.986667pt;}
.yb3{bottom:535.906667pt;}
.y66{bottom:544.253333pt;}
.y25{bottom:545.373333pt;}
.yb2{bottom:550.173333pt;}
.yde{bottom:556.733333pt;}
.y24{bottom:560.733333pt;}
.y65{bottom:561.053333pt;}
.yb1{bottom:567.773333pt;}
.y23{bottom:576.093333pt;}
.ydc{bottom:577.693333pt;}
.y64{bottom:577.853333pt;}
.yaf{bottom:585.213333pt;}
.y22{bottom:591.293333pt;}
.y63{bottom:594.813333pt;}
.ydb{bottom:605.373333pt;}
.y21{bottom:606.653333pt;}
.yae{bottom:607.453333pt;}
.y62{bottom:611.613333pt;}
.y20{bottom:622.013333pt;}
.yda{bottom:622.813333pt;}
.yad{bottom:625.053333pt;}
.y61{bottom:628.573333pt;}
.y1f{bottom:637.373333pt;}
.yd9{bottom:640.413333pt;}
.yac{bottom:642.493333pt;}
.y60{bottom:645.373333pt;}
.y1e{bottom:652.733333pt;}
.yaa{bottom:660.093333pt;}
.y5f{bottom:662.333333pt;}
.y1d{bottom:667.933333pt;}
.yd8{bottom:677.693333pt;}
.y5e{bottom:679.133333pt;}
.ya9{bottom:680.253333pt;}
.y1c{bottom:683.293333pt;}
.yd7{bottom:695.133333pt;}
.y5d{bottom:695.933333pt;}
.ya8{bottom:697.853333pt;}
.y1b{bottom:698.653333pt;}
.yd6{bottom:712.733333pt;}
.y5c{bottom:712.893333pt;}
.y1a{bottom:714.013333pt;}
.ya7{bottom:715.773333pt;}
.y88{bottom:718.173333pt;}
.y19{bottom:729.373333pt;}
.y5b{bottom:729.693333pt;}
.yd5{bottom:730.173333pt;}
.ya6{bottom:733.373333pt;}
.y18{bottom:744.733333pt;}
.y59{bottom:746.653333pt;}
.yd4{bottom:747.773333pt;}
.ya5{bottom:750.813333pt;}
.y5a{bottom:751.933333pt;}
.y17{bottom:759.933333pt;}
.y58{bottom:763.453333pt;}
.yd3{bottom:765.373333pt;}
.ya4{bottom:768.413333pt;}
.y16{bottom:775.333333pt;}
.y56{bottom:780.293333pt;}
.yd1{bottom:782.853333pt;}
.y57{bottom:785.573333pt;}
.ya3{bottom:785.893333pt;}
.y15{bottom:790.693333pt;}
.y55{bottom:797.253333pt;}
.ycf{bottom:802.533333pt;}
.ya2{bottom:803.493333pt;}
.y14{bottom:806.053333pt;}
.y54{bottom:814.053333pt;}
.yce{bottom:820.773333pt;}
.ya0{bottom:821.093333pt;}
.y13{bottom:821.733333pt;}
.y53{bottom:831.013333pt;}
.y12{bottom:838.213333pt;}
.y9e{bottom:839.013333pt;}
.ycc{bottom:839.813333pt;}
.y52{bottom:847.813333pt;}
.y11{bottom:853.573333pt;}
.y9c{bottom:858.533333pt;}
.y51{bottom:864.613333pt;}
.y10{bottom:869.253333pt;}
.y9b{bottom:876.933333pt;}
.y50{bottom:881.573333pt;}
.yf{bottom:885.093333pt;}
.y99{bottom:894.533333pt;}
.y4f{bottom:898.373333pt;}
.ye{bottom:898.853333pt;}
.y4e{bottom:915.333333pt;}
.yd{bottom:918.693333pt;}
.y4d{bottom:932.133333pt;}
.yc{bottom:938.693333pt;}
.y4c{bottom:948.933333pt;}
.yb{bottom:957.893333pt;}
.y4b{bottom:965.893333pt;}
.ya{bottom:973.093333pt;}
.y4a{bottom:982.693333pt;}
.y9{bottom:988.453333pt;}
.y49{bottom:999.653333pt;}
.y8{bottom:1003.813333pt;}
.y47{bottom:1016.480000pt;}
.y7{bottom:1019.200000pt;}
.y48{bottom:1021.760000pt;}
.y46{bottom:1033.440000pt;}
.y6{bottom:1034.560000pt;}
.y43{bottom:1054.240000pt;}
.y3{bottom:1056.960000pt;}
.y1{bottom:1070.880000pt;}
.h1a{height:16.800000pt;}
.h1e{height:16.832000pt;}
.h17{height:16.960000pt;}
.h29{height:16.992000pt;}
.h1d{height:17.280000pt;}
.h23{height:17.600000pt;}
.h1b{height:17.760000pt;}
.h19{height:18.080000pt;}
.h16{height:18.240000pt;}
.h21{height:18.400000pt;}
.h11{height:18.768750pt;}
.h1c{height:18.880000pt;}
.h24{height:19.040000pt;}
.h1f{height:19.520000pt;}
.h18{height:19.680000pt;}
.h26{height:20.320000pt;}
.h22{height:20.960000pt;}
.h20{height:21.600000pt;}
.h2{height:23.200000pt;}
.h10{height:25.918750pt;}
.h28{height:26.880000pt;}
.h27{height:26.912000pt;}
.h25{height:27.040000pt;}
.h15{height:27.360000pt;}
.h13{height:29.940625pt;}
.ha{height:30.254687pt;}
.h5{height:35.342500pt;}
.h6{height:37.090625pt;}
.h7{height:37.479688pt;}
.hf{height:41.112500pt;}
.hb{height:41.543750pt;}
.he{height:42.649687pt;}
.h14{height:42.866250pt;}
.hc{height:43.782500pt;}
.hd{height:43.905937pt;}
.h3{height:47.322500pt;}
.h12{height:48.530000pt;}
.h9{height:48.768750pt;}
.h8{height:49.916250pt;}
.h4{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:37.760000pt;}
.w9{width:43.360000pt;}
.w11{width:43.840000pt;}
.w2{width:55.200000pt;}
.w10{width:58.720000pt;}
.wc{width:62.720000pt;}
.wb{width:81.312000pt;}
.w13{width:92.480000pt;}
.w12{width:98.272000pt;}
.w8{width:102.240000pt;}
.wf{width:140.026667pt;}
.we{width:140.186667pt;}
.wd{width:220.826667pt;}
.wa{width:412.066667pt;}
.w7{width:453.213333pt;}
.w3{width:549.693333pt;}
.w5{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x2{left:-35.232000pt;}
.x0{left:0.000000pt;}
.x4{left:7.200000pt;}
.x39{left:8.960000pt;}
.x28{left:12.640000pt;}
.x42{left:14.560000pt;}
.x3e{left:20.320000pt;}
.x2f{left:22.400000pt;}
.x2c{left:25.640000pt;}
.x32{left:27.840000pt;}
.x34{left:30.720000pt;}
.x21{left:34.720000pt;}
.x24{left:36.480000pt;}
.x44{left:38.880000pt;}
.x45{left:41.760000pt;}
.x23{left:43.680000pt;}
.x43{left:45.440000pt;}
.x22{left:47.360000pt;}
.x3b{left:55.360000pt;}
.x38{left:59.040000pt;}
.x37{left:62.760000pt;}
.x36{left:66.426667pt;}
.x1{left:96.032000pt;}
.xf{left:99.391988pt;}
.x5{left:100.351988pt;}
.x35{left:103.080000pt;}
.x3a{left:107.880000pt;}
.x27{left:114.432000pt;}
.x46{left:120.031988pt;}
.x47{left:124.511988pt;}
.x26{left:127.391988pt;}
.xb{left:133.786655pt;}
.x1e{left:135.066667pt;}
.x16{left:143.226655pt;}
.x1f{left:148.360000pt;}
.x3{left:151.226667pt;}
.x13{left:152.666643pt;}
.x14{left:157.306655pt;}
.x29{left:158.426667pt;}
.x30{left:160.026667pt;}
.x2d{left:164.200000pt;}
.x9{left:181.626655pt;}
.x2a{left:187.240000pt;}
.x2e{left:220.186655pt;}
.xc{left:246.266643pt;}
.x3d{left:249.026655pt;}
.xd{left:250.946655pt;}
.x1d{left:253.986655pt;}
.x7{left:275.426655pt;}
.xe{left:288.066655pt;}
.x8{left:293.986655pt;}
.x3f{left:308.706667pt;}
.x11{left:312.706643pt;}
.x12{left:317.346655pt;}
.x19{left:329.506643pt;}
.x1a{left:334.146655pt;}
.x6{left:352.066655pt;}
.x40{left:353.186667pt;}
.x15{left:369.346643pt;}
.x25{left:370.626655pt;}
.xa{left:373.986655pt;}
.x31{left:381.506667pt;}
.x3c{left:392.546655pt;}
.x41{left:452.093333pt;}
.x1b{left:468.733310pt;}
.x1c{left:473.373322pt;}
.x33{left:522.333333pt;}
.x2b{left:571.293333pt;}
.x20{left:588.933333pt;}
.x17{left:631.813310pt;}
.x18{left:636.453322pt;}
.x10{left:698.053322pt;}
}




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