
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_d41fc4abd83420518aaee006.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_2298124f89a1ec66ae6c1ab9.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_34bf3d78f60625649e87350c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_4b028caa8b5235e6d37279c8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d3c2cc01de32f071b8b6be7f.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e68a0bf4a8cc50c23748d2be.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_f823e758cbfa3ea34e0bcacf.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_baf69751b5310791f7c99fb5.woff2')format("woff");}.ffa{font-family:ffa;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls7{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.274800px;}
.lsd{letter-spacing:-0.259800px;}
.ls10{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.106800px;}
.ls5{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.lse{letter-spacing:0.152400px;}
.lsb{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.lsf{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:6.785280px;}
.ls11{letter-spacing:39.905280px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.ws0{word-spacing:-59.760000px;}
.wsb{word-spacing:-28.712400px;}
.ws3{word-spacing:-18.000000px;}
.ws10{word-spacing:-16.712400px;}
.ws6{word-spacing:-16.669200px;}
.ws5{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.450800px;}
.wsc{word-spacing:-16.254600px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.093600px;}
.wse{word-spacing:-14.833200px;}
.wsf{word-spacing:-14.680200px;}
.ws2{word-spacing:-14.580000px;}
.wsa{word-spacing:-13.939200px;}
.ws9{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.ws4{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._21{margin-left:-2.082240px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._15{width:2.684160px;}
._7{width:3.700800px;}
._6{width:4.769280px;}
._d{width:6.160320px;}
._b{width:8.161920px;}
._c{width:9.401760px;}
._a{width:10.532160px;}
._1a{width:12.320640px;}
._8{width:13.777920px;}
._9{width:15.226560px;}
._28{width:16.388880px;}
._f{width:18.017280px;}
._3{width:19.209600px;}
._1f{width:20.790720px;}
._16{width:22.256640px;}
._5{width:23.529600px;}
._4{width:24.575040px;}
._12{width:26.164800px;}
._e{width:27.224640px;}
._26{width:28.748160px;}
._18{width:30.205440px;}
._14{width:31.875840px;}
._13{width:32.906880px;}
._20{width:34.179840px;}
._11{width:35.254080px;}
._10{width:36.763200px;}
._19{width:38.088000px;}
._24{width:39.706560px;}
._29{width:41.686080px;}
._1c{width:42.791040px;}
._1d{width:43.850880px;}
._1e{width:45.241920px;}
._23{width:46.632960px;}
._2c{width:47.825280px;}
._27{width:49.346160px;}
._22{width:51.148800px;}
._17{width:52.269120px;}
._2d{width:53.280000px;}
._25{width:54.316800px;}
._2a{width:60.477120px;}
._2b{width:62.029440px;}
._2f{width:66.497280px;}
._2e{width:68.198400px;}
._1b{width:73.342080px;}
._2{width:961.680000px;}
.fc7{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y68{bottom:12.240000px;}
.y66{bottom:12.420000px;}
.y74{bottom:12.450000px;}
.y80{bottom:13.500000px;}
.y9e{bottom:13.545000px;}
.y84{bottom:13.680000px;}
.y86{bottom:13.725000px;}
.y8c{bottom:13.860000px;}
.y82{bottom:14.760000px;}
.y36{bottom:20.520000px;}
.ya{bottom:20.880000px;}
.y35{bottom:37.080000px;}
.y71{bottom:38.160000px;}
.y65{bottom:38.340000px;}
.y7f{bottom:41.940000px;}
.y37{bottom:48.420000px;}
.y38{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y34{bottom:53.100000px;}
.y7{bottom:53.280000px;}
.y5{bottom:68.976000px;}
.y7d{bottom:93.096000px;}
.y30{bottom:97.596000px;}
.y5c{bottom:99.756000px;}
.ybc{bottom:99.936000px;}
.y97{bottom:106.956000px;}
.y63{bottom:109.296000px;}
.ya7{bottom:110.916000px;}
.y7c{bottom:121.536000px;}
.y2f{bottom:126.036000px;}
.y5b{bottom:128.196000px;}
.ybb{bottom:128.376000px;}
.y96{bottom:135.396000px;}
.ya6{bottom:139.356000px;}
.y7b{bottom:149.976000px;}
.y2e{bottom:154.470000px;}
.y61{bottom:156.270000px;}
.y5a{bottom:156.630000px;}
.yba{bottom:156.810000px;}
.y95{bottom:163.830000px;}
.y7a{bottom:174.630000px;}
.y2d{bottom:182.910000px;}
.y59{bottom:185.250000px;}
.y94{bottom:192.270000px;}
.yb9{bottom:209.910000px;}
.y2c{bottom:211.350000px;}
.y58{bottom:213.690000px;}
.y93{bottom:220.710000px;}
.y2b{bottom:239.790000px;}
.y57{bottom:242.130000px;}
.y92{bottom:245.190000px;}
.y2a{bottom:268.230000px;}
.y56{bottom:270.570000px;}
.y29{bottom:296.850000px;}
.y55{bottom:299.010000px;}
.y28{bottom:325.335000px;}
.y54{bottom:327.495000px;}
.y27{bottom:353.775000px;}
.y53{bottom:355.935000px;}
.y5f{bottom:361.875000px;}
.y26{bottom:382.215000px;}
.y52{bottom:384.375000px;}
.y25{bottom:410.655000px;}
.y51{bottom:412.815000px;}
.y62{bottom:413.535000px;}
.y78{bottom:429.195000px;}
.y24{bottom:439.095000px;}
.y50{bottom:441.435000px;}
.y77{bottom:455.835000px;}
.y23{bottom:467.535000px;}
.y4f{bottom:469.875000px;}
.y22{bottom:495.615000px;}
.y31{bottom:495.975000px;}
.y4e{bottom:498.315000px;}
.y76{bottom:508.215000px;}
.y79{bottom:526.575000px;}
.y4d{bottom:526.755000px;}
.y21{bottom:528.195000px;}
.y75{bottom:534.855000px;}
.y90{bottom:542.235000px;}
.y4c{bottom:555.195000px;}
.ya5{bottom:555.375000px;}
.y20{bottom:556.635000px;}
.y73{bottom:561.495000px;}
.yb8{bottom:569.805000px;}
.yb7{bottom:571.065000px;}
.y8f{bottom:572.685000px;}
.y4b{bottom:583.665000px;}
.y1f{bottom:585.105000px;}
.yc6{bottom:585.465000px;}
.y72{bottom:588.165000px;}
.y91{bottom:594.105000px;}
.yb6{bottom:600.225000px;}
.y8e{bottom:602.205000px;}
.ya4{bottom:609.945000px;}
.y4a{bottom:612.105000px;}
.y1e{bottom:613.725000px;}
.yc5{bottom:614.625000px;}
.y70{bottom:614.805000px;}
.yb5{bottom:629.385000px;}
.y8d{bottom:631.545000px;}
.ya3{bottom:639.105000px;}
.y49{bottom:640.545000px;}
.y1d{bottom:642.165000px;}
.yc4{bottom:643.965000px;}
.yb4{bottom:658.725000px;}
.y8b{bottom:660.885000px;}
.y6f{bottom:667.365000px;}
.ya2{bottom:668.265000px;}
.y60{bottom:668.625000px;}
.y48{bottom:668.985000px;}
.y1c{bottom:670.605000px;}
.yb3{bottom:687.885000px;}
.y8a{bottom:690.405000px;}
.y6e{bottom:693.825000px;}
.ya1{bottom:697.425000px;}
.y47{bottom:697.605000px;}
.y1b{bottom:699.045000px;}
.yc3{bottom:701.565000px;}
.yb2{bottom:717.045000px;}
.y89{bottom:719.745000px;}
.y6d{bottom:720.465000px;}
.y46{bottom:726.045000px;}
.ya0{bottom:726.765000px;}
.y1a{bottom:727.485000px;}
.yc2{bottom:730.725000px;}
.yb1{bottom:746.205000px;}
.y6c{bottom:747.105000px;}
.y88{bottom:750.345000px;}
.yc8{bottom:754.125000px;}
.y45{bottom:754.485000px;}
.y19{bottom:755.925000px;}
.yc1{bottom:760.065000px;}
.y6b{bottom:773.745000px;}
.yb0{bottom:775.545000px;}
.y87{bottom:779.685000px;}
.y44{bottom:782.925000px;}
.y18{bottom:784.365000px;}
.y9f{bottom:785.085000px;}
.yaf{bottom:804.705000px;}
.y85{bottom:809.025000px;}
.y43{bottom:811.365000px;}
.y17{bottom:812.805000px;}
.y9d{bottom:814.425000px;}
.yc0{bottom:817.665000px;}
.y6a{bottom:826.350000px;}
.yae{bottom:833.910000px;}
.y83{bottom:838.590000px;}
.y42{bottom:839.850000px;}
.y9c{bottom:843.630000px;}
.ybf{bottom:846.870000px;}
.y16{bottom:847.230000px;}
.y69{bottom:852.990000px;}
.yad{bottom:863.250000px;}
.y81{bottom:867.930000px;}
.y41{bottom:868.290000px;}
.y15{bottom:869.910000px;}
.y9b{bottom:872.790000px;}
.ybe{bottom:876.210000px;}
.y67{bottom:879.630000px;}
.yac{bottom:892.410000px;}
.yc9{bottom:896.370000px;}
.y40{bottom:896.730000px;}
.y7e{bottom:898.530000px;}
.y9a{bottom:901.950000px;}
.y14{bottom:904.290000px;}
.y64{bottom:906.090000px;}
.yab{bottom:921.570000px;}
.y3f{bottom:925.170000px;}
.y13{bottom:926.790000px;}
.y99{bottom:931.290000px;}
.ybd{bottom:933.810000px;}
.yaa{bottom:950.730000px;}
.y3e{bottom:953.790000px;}
.y98{bottom:960.450000px;}
.y12{bottom:961.170000px;}
.ya9{bottom:980.070000px;}
.yc7{bottom:981.870000px;}
.y3d{bottom:982.230000px;}
.y11{bottom:983.310000px;}
.y5e{bottom:988.170000px;}
.ya8{bottom:1009.230000px;}
.y3c{bottom:1010.670000px;}
.y10{bottom:1011.750000px;}
.y4{bottom:1032.810000px;}
.y3b{bottom:1039.110000px;}
.y3{bottom:1052.790000px;}
.y3a{bottom:1067.550000px;}
.y2{bottom:1072.620000px;}
.y39{bottom:1095.660000px;}
.y5d{bottom:1096.020000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1114.380000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1131.660000px;}
.h14{height:25.740000px;}
.h15{height:25.920000px;}
.h18{height:25.956000px;}
.h20{height:28.440000px;}
.h21{height:28.476000px;}
.h1b{height:28.620000px;}
.h1c{height:28.656000px;}
.h1d{height:28.800000px;}
.h1a{height:29.700000px;}
.h1e{height:29.736000px;}
.h6{height:33.480000px;}
.hb{height:41.250937px;}
.h1{height:48.045938px;}
.h17{height:51.660000px;}
.h12{height:51.840000px;}
.h16{height:51.876000px;}
.he{height:52.971680px;}
.hd{height:53.709961px;}
.h7{height:54.421875px;}
.h19{height:56.880000px;}
.h2{height:58.621992px;}
.h13{height:58.651172px;}
.hc{height:59.383125px;}
.h11{height:60.679688px;}
.h9{height:63.019687px;}
.h1f{height:64.978594px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h22{height:68.084282px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.h10{height:111.043849px;}
.h4{height:167.250000px;}
.hf{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w31{width:36.540000px;}
.w26{width:37.260000px;}
.w6{width:38.520000px;}
.w1a{width:38.700000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w48{width:41.616000px;}
.w3d{width:42.336000px;}
.w2d{width:43.020000px;}
.w21{width:43.740000px;}
.w62{width:44.820000px;}
.w59{width:45.540000px;}
.w2e{width:45.720000px;}
.w22{width:46.440000px;}
.w43{width:47.340000px;}
.w63{width:47.700000px;}
.w38{width:48.060000px;}
.w5a{width:48.420000px;}
.w44{width:51.300000px;}
.w39{width:52.020000px;}
.w17{width:52.200000px;}
.w16{width:52.380000px;}
.w15{width:52.416000px;}
.wd{width:52.920000px;}
.wc{width:53.100000px;}
.wa{width:53.136000px;}
.wb{width:53.280000px;}
.w25{width:53.820000px;}
.w2f{width:54.000000px;}
.w23{width:54.720000px;}
.w4c{width:54.900000px;}
.w64{width:55.800000px;}
.w5b{width:56.520000px;}
.w66{width:56.556000px;}
.w5c{width:57.276000px;}
.w19{width:58.320000px;}
.wf{width:59.040000px;}
.w61{width:61.596000px;}
.w1b{width:61.776000px;}
.w58{width:62.316000px;}
.w47{width:62.640000px;}
.w10{width:62.676000px;}
.w1c{width:63.000000px;}
.w45{width:63.036000px;}
.w3c{width:63.360000px;}
.w11{width:63.720000px;}
.w3a{width:63.756000px;}
.w53{width:63.900000px;}
.w32{width:64.260000px;}
.w4e{width:64.620000px;}
.w27{width:64.980000px;}
.w2c{width:65.016000px;}
.w20{width:65.736000px;}
.w30{width:65.916000px;}
.w4d{width:66.636000px;}
.w24{width:66.816000px;}
.w49{width:67.320000px;}
.w3e{width:68.040000px;}
.w65{width:69.696000px;}
.w4a{width:70.056000px;}
.w3f{width:70.416000px;}
.w18{width:72.216000px;}
.we{width:72.936000px;}
.w46{width:77.940000px;}
.w3b{width:78.660000px;}
.w42{width:80.136000px;}
.w68{width:80.280000px;}
.w5e{width:80.640000px;}
.w37{width:80.856000px;}
.w67{width:81.180000px;}
.w5d{width:81.900000px;}
.w13{width:84.276000px;}
.w52{width:84.600000px;}
.w8{width:84.636000px;}
.w4b{width:85.320000px;}
.w1d{width:88.560000px;}
.w12{width:88.920000px;}
.w2b{width:91.440000px;}
.w2a{width:91.476000px;}
.w55{width:91.620000px;}
.w51{width:91.656000px;}
.w50{width:91.980000px;}
.w1e{width:92.016000px;}
.w1f{width:92.160000px;}
.w5f{width:92.376000px;}
.w56{width:92.736000px;}
.w54{width:93.456000px;}
.w33{width:93.996000px;}
.w4f{width:94.176000px;}
.w28{width:94.896000px;}
.w41{width:99.180000px;}
.w36{width:99.900000px;}
.w40{width:100.476000px;}
.w35{width:100.836000px;}
.w34{width:102.456000px;}
.w29{width:102.816000px;}
.w60{width:108.180000px;}
.w57{width:108.900000px;}
.w14{width:116.280000px;}
.w9{width:117.000000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x17{left:3.060000px;}
.xd{left:7.740000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.x43{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.xe{left:138.996000px;}
.x1b{left:146.376000px;}
.x42{left:147.456000px;}
.x26{left:155.190000px;}
.x31{left:231.690000px;}
.x1c{left:238.530000px;}
.xf{left:255.990000px;}
.x32{left:297.435000px;}
.x1d{left:304.275000px;}
.x10{left:309.135000px;}
.x3b{left:318.315000px;}
.x27{left:335.955000px;}
.x33{left:341.175000px;}
.x1e{left:348.015000px;}
.x11{left:362.415000px;}
.x3c{left:363.855000px;}
.x28{left:384.015000px;}
.x34{left:387.615000px;}
.x1f{left:394.455000px;}
.x3d{left:412.275000px;}
.x12{left:415.515000px;}
.x29{left:436.215000px;}
.x35{left:442.515000px;}
.x20{left:449.175000px;}
.x13{left:468.435000px;}
.x8{left:486.104986px;}
.xc{left:493.484986px;}
.x2a{left:499.965000px;}
.x36{left:509.145000px;}
.x44{left:513.104986px;}
.x21{left:515.985000px;}
.x5{left:521.025000px;}
.x3e{left:539.205000px;}
.x14{left:541.365000px;}
.x37{left:562.965000px;}
.x22{left:569.805000px;}
.x2b{left:578.625000px;}
.x3a{left:596.264986px;}
.x15{left:600.405000px;}
.x1a{left:601.484986px;}
.x30{left:603.104986px;}
.x25{left:605.264986px;}
.x23{left:607.065000px;}
.x3f{left:632.985000px;}
.x16{left:640.005000px;}
.x2c{left:641.985000px;}
.x38{left:664.845000px;}
.x24{left:672.045000px;}
.x2d{left:684.330000px;}
.x40{left:690.270000px;}
.x18{left:702.690000px;}
.x2e{left:736.350000px;}
.x39{left:759.030000px;}
.x19{left:766.410000px;}
.x41{left:772.170000px;}
.x2f{left:804.390000px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.244267pt;}
.lsd{letter-spacing:-0.230933pt;}
.ls10{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.094933pt;}
.ls5{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.lse{letter-spacing:0.135467pt;}
.lsb{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.lsf{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:6.031360pt;}
.ls11{letter-spacing:35.471360pt;}
.ls0{letter-spacing:184.370347pt;}
.ws0{word-spacing:-53.120000pt;}
.wsb{word-spacing:-25.522133pt;}
.ws3{word-spacing:-16.000000pt;}
.ws10{word-spacing:-14.855467pt;}
.ws6{word-spacing:-14.817067pt;}
.ws5{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.622933pt;}
.wsc{word-spacing:-14.448533pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.416533pt;}
.wse{word-spacing:-13.185067pt;}
.wsf{word-spacing:-13.049067pt;}
.ws2{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.390400pt;}
.ws9{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._21{margin-left:-1.850880pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._15{width:2.385920pt;}
._7{width:3.289600pt;}
._6{width:4.239360pt;}
._d{width:5.475840pt;}
._b{width:7.255040pt;}
._c{width:8.357120pt;}
._a{width:9.361920pt;}
._1a{width:10.951680pt;}
._8{width:12.247040pt;}
._9{width:13.534720pt;}
._28{width:14.567893pt;}
._f{width:16.015360pt;}
._3{width:17.075200pt;}
._1f{width:18.480640pt;}
._16{width:19.783680pt;}
._5{width:20.915200pt;}
._4{width:21.844480pt;}
._12{width:23.257600pt;}
._e{width:24.199680pt;}
._26{width:25.553920pt;}
._18{width:26.849280pt;}
._14{width:28.334080pt;}
._13{width:29.250560pt;}
._20{width:30.382080pt;}
._11{width:31.336960pt;}
._10{width:32.678400pt;}
._19{width:33.856000pt;}
._24{width:35.294720pt;}
._29{width:37.054293pt;}
._1c{width:38.036480pt;}
._1d{width:38.978560pt;}
._1e{width:40.215040pt;}
._23{width:41.451520pt;}
._2c{width:42.511360pt;}
._27{width:43.863253pt;}
._22{width:45.465600pt;}
._17{width:46.461440pt;}
._2d{width:47.360000pt;}
._25{width:48.281600pt;}
._2a{width:53.757440pt;}
._2b{width:55.137280pt;}
._2f{width:59.108693pt;}
._2e{width:60.620800pt;}
._1b{width:65.192960pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y68{bottom:10.880000pt;}
.y66{bottom:11.040000pt;}
.y74{bottom:11.066667pt;}
.y80{bottom:12.000000pt;}
.y9e{bottom:12.040000pt;}
.y84{bottom:12.160000pt;}
.y86{bottom:12.200000pt;}
.y8c{bottom:12.320000pt;}
.y82{bottom:13.120000pt;}
.y36{bottom:18.240000pt;}
.ya{bottom:18.560000pt;}
.y35{bottom:32.960000pt;}
.y71{bottom:33.920000pt;}
.y65{bottom:34.080000pt;}
.y7f{bottom:37.280000pt;}
.y37{bottom:43.040000pt;}
.y38{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y34{bottom:47.200000pt;}
.y7{bottom:47.360000pt;}
.y5{bottom:61.312000pt;}
.y7d{bottom:82.752000pt;}
.y30{bottom:86.752000pt;}
.y5c{bottom:88.672000pt;}
.ybc{bottom:88.832000pt;}
.y97{bottom:95.072000pt;}
.y63{bottom:97.152000pt;}
.ya7{bottom:98.592000pt;}
.y7c{bottom:108.032000pt;}
.y2f{bottom:112.032000pt;}
.y5b{bottom:113.952000pt;}
.ybb{bottom:114.112000pt;}
.y96{bottom:120.352000pt;}
.ya6{bottom:123.872000pt;}
.y7b{bottom:133.312000pt;}
.y2e{bottom:137.306667pt;}
.y61{bottom:138.906667pt;}
.y5a{bottom:139.226667pt;}
.yba{bottom:139.386667pt;}
.y95{bottom:145.626667pt;}
.y7a{bottom:155.226667pt;}
.y2d{bottom:162.586667pt;}
.y59{bottom:164.666667pt;}
.y94{bottom:170.906667pt;}
.yb9{bottom:186.586667pt;}
.y2c{bottom:187.866667pt;}
.y58{bottom:189.946667pt;}
.y93{bottom:196.186667pt;}
.y2b{bottom:213.146667pt;}
.y57{bottom:215.226667pt;}
.y92{bottom:217.946667pt;}
.y2a{bottom:238.426667pt;}
.y56{bottom:240.506667pt;}
.y29{bottom:263.866667pt;}
.y55{bottom:265.786667pt;}
.y28{bottom:289.186667pt;}
.y54{bottom:291.106667pt;}
.y27{bottom:314.466667pt;}
.y53{bottom:316.386667pt;}
.y5f{bottom:321.666667pt;}
.y26{bottom:339.746667pt;}
.y52{bottom:341.666667pt;}
.y25{bottom:365.026667pt;}
.y51{bottom:366.946667pt;}
.y62{bottom:367.586667pt;}
.y78{bottom:381.506667pt;}
.y24{bottom:390.306667pt;}
.y50{bottom:392.386667pt;}
.y77{bottom:405.186667pt;}
.y23{bottom:415.586667pt;}
.y4f{bottom:417.666667pt;}
.y22{bottom:440.546667pt;}
.y31{bottom:440.866667pt;}
.y4e{bottom:442.946667pt;}
.y76{bottom:451.746667pt;}
.y79{bottom:468.066667pt;}
.y4d{bottom:468.226667pt;}
.y21{bottom:469.506667pt;}
.y75{bottom:475.426667pt;}
.y90{bottom:481.986667pt;}
.y4c{bottom:493.506667pt;}
.ya5{bottom:493.666667pt;}
.y20{bottom:494.786667pt;}
.y73{bottom:499.106667pt;}
.yb8{bottom:506.493333pt;}
.yb7{bottom:507.613333pt;}
.y8f{bottom:509.053333pt;}
.y4b{bottom:518.813333pt;}
.y1f{bottom:520.093333pt;}
.yc6{bottom:520.413333pt;}
.y72{bottom:522.813333pt;}
.y91{bottom:528.093333pt;}
.yb6{bottom:533.533333pt;}
.y8e{bottom:535.293333pt;}
.ya4{bottom:542.173333pt;}
.y4a{bottom:544.093333pt;}
.y1e{bottom:545.533333pt;}
.yc5{bottom:546.333333pt;}
.y70{bottom:546.493333pt;}
.yb5{bottom:559.453333pt;}
.y8d{bottom:561.373333pt;}
.ya3{bottom:568.093333pt;}
.y49{bottom:569.373333pt;}
.y1d{bottom:570.813333pt;}
.yc4{bottom:572.413333pt;}
.yb4{bottom:585.533333pt;}
.y8b{bottom:587.453333pt;}
.y6f{bottom:593.213333pt;}
.ya2{bottom:594.013333pt;}
.y60{bottom:594.333333pt;}
.y48{bottom:594.653333pt;}
.y1c{bottom:596.093333pt;}
.yb3{bottom:611.453333pt;}
.y8a{bottom:613.693333pt;}
.y6e{bottom:616.733333pt;}
.ya1{bottom:619.933333pt;}
.y47{bottom:620.093333pt;}
.y1b{bottom:621.373333pt;}
.yc3{bottom:623.613333pt;}
.yb2{bottom:637.373333pt;}
.y89{bottom:639.773333pt;}
.y6d{bottom:640.413333pt;}
.y46{bottom:645.373333pt;}
.ya0{bottom:646.013333pt;}
.y1a{bottom:646.653333pt;}
.yc2{bottom:649.533333pt;}
.yb1{bottom:663.293333pt;}
.y6c{bottom:664.093333pt;}
.y88{bottom:666.973333pt;}
.yc8{bottom:670.333333pt;}
.y45{bottom:670.653333pt;}
.y19{bottom:671.933333pt;}
.yc1{bottom:675.613333pt;}
.y6b{bottom:687.773333pt;}
.yb0{bottom:689.373333pt;}
.y87{bottom:693.053333pt;}
.y44{bottom:695.933333pt;}
.y18{bottom:697.213333pt;}
.y9f{bottom:697.853333pt;}
.yaf{bottom:715.293333pt;}
.y85{bottom:719.133333pt;}
.y43{bottom:721.213333pt;}
.y17{bottom:722.493333pt;}
.y9d{bottom:723.933333pt;}
.yc0{bottom:726.813333pt;}
.y6a{bottom:734.533333pt;}
.yae{bottom:741.253333pt;}
.y83{bottom:745.413333pt;}
.y42{bottom:746.533333pt;}
.y9c{bottom:749.893333pt;}
.ybf{bottom:752.773333pt;}
.y16{bottom:753.093333pt;}
.y69{bottom:758.213333pt;}
.yad{bottom:767.333333pt;}
.y81{bottom:771.493333pt;}
.y41{bottom:771.813333pt;}
.y15{bottom:773.253333pt;}
.y9b{bottom:775.813333pt;}
.ybe{bottom:778.853333pt;}
.y67{bottom:781.893333pt;}
.yac{bottom:793.253333pt;}
.yc9{bottom:796.773333pt;}
.y40{bottom:797.093333pt;}
.y7e{bottom:798.693333pt;}
.y9a{bottom:801.733333pt;}
.y14{bottom:803.813333pt;}
.y64{bottom:805.413333pt;}
.yab{bottom:819.173333pt;}
.y3f{bottom:822.373333pt;}
.y13{bottom:823.813333pt;}
.y99{bottom:827.813333pt;}
.ybd{bottom:830.053333pt;}
.yaa{bottom:845.093333pt;}
.y3e{bottom:847.813333pt;}
.y98{bottom:853.733333pt;}
.y12{bottom:854.373333pt;}
.ya9{bottom:871.173333pt;}
.yc7{bottom:872.773333pt;}
.y3d{bottom:873.093333pt;}
.y11{bottom:874.053333pt;}
.y5e{bottom:878.373333pt;}
.ya8{bottom:897.093333pt;}
.y3c{bottom:898.373333pt;}
.y10{bottom:899.333333pt;}
.y4{bottom:918.053333pt;}
.y3b{bottom:923.653333pt;}
.y3{bottom:935.813333pt;}
.y3a{bottom:948.933333pt;}
.y2{bottom:953.440000pt;}
.y39{bottom:973.920000pt;}
.y5d{bottom:974.240000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:990.560000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1005.920000pt;}
.h14{height:22.880000pt;}
.h15{height:23.040000pt;}
.h18{height:23.072000pt;}
.h20{height:25.280000pt;}
.h21{height:25.312000pt;}
.h1b{height:25.440000pt;}
.h1c{height:25.472000pt;}
.h1d{height:25.600000pt;}
.h1a{height:26.400000pt;}
.h1e{height:26.432000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h1{height:42.707500pt;}
.h17{height:45.920000pt;}
.h12{height:46.080000pt;}
.h16{height:46.112000pt;}
.he{height:47.085938pt;}
.hd{height:47.742188pt;}
.h7{height:48.375000pt;}
.h19{height:50.560000pt;}
.h2{height:52.108438pt;}
.h13{height:52.134375pt;}
.hc{height:52.785000pt;}
.h11{height:53.937500pt;}
.h9{height:56.017500pt;}
.h1f{height:57.758750pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h22{height:60.519362pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.h10{height:98.705643pt;}
.h4{height:148.666667pt;}
.hf{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w31{width:32.480000pt;}
.w26{width:33.120000pt;}
.w6{width:34.240000pt;}
.w1a{width:34.400000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w48{width:36.992000pt;}
.w3d{width:37.632000pt;}
.w2d{width:38.240000pt;}
.w21{width:38.880000pt;}
.w62{width:39.840000pt;}
.w59{width:40.480000pt;}
.w2e{width:40.640000pt;}
.w22{width:41.280000pt;}
.w43{width:42.080000pt;}
.w63{width:42.400000pt;}
.w38{width:42.720000pt;}
.w5a{width:43.040000pt;}
.w44{width:45.600000pt;}
.w39{width:46.240000pt;}
.w17{width:46.400000pt;}
.w16{width:46.560000pt;}
.w15{width:46.592000pt;}
.wd{width:47.040000pt;}
.wc{width:47.200000pt;}
.wa{width:47.232000pt;}
.wb{width:47.360000pt;}
.w25{width:47.840000pt;}
.w2f{width:48.000000pt;}
.w23{width:48.640000pt;}
.w4c{width:48.800000pt;}
.w64{width:49.600000pt;}
.w5b{width:50.240000pt;}
.w66{width:50.272000pt;}
.w5c{width:50.912000pt;}
.w19{width:51.840000pt;}
.wf{width:52.480000pt;}
.w61{width:54.752000pt;}
.w1b{width:54.912000pt;}
.w58{width:55.392000pt;}
.w47{width:55.680000pt;}
.w10{width:55.712000pt;}
.w1c{width:56.000000pt;}
.w45{width:56.032000pt;}
.w3c{width:56.320000pt;}
.w11{width:56.640000pt;}
.w3a{width:56.672000pt;}
.w53{width:56.800000pt;}
.w32{width:57.120000pt;}
.w4e{width:57.440000pt;}
.w27{width:57.760000pt;}
.w2c{width:57.792000pt;}
.w20{width:58.432000pt;}
.w30{width:58.592000pt;}
.w4d{width:59.232000pt;}
.w24{width:59.392000pt;}
.w49{width:59.840000pt;}
.w3e{width:60.480000pt;}
.w65{width:61.952000pt;}
.w4a{width:62.272000pt;}
.w3f{width:62.592000pt;}
.w18{width:64.192000pt;}
.we{width:64.832000pt;}
.w46{width:69.280000pt;}
.w3b{width:69.920000pt;}
.w42{width:71.232000pt;}
.w68{width:71.360000pt;}
.w5e{width:71.680000pt;}
.w37{width:71.872000pt;}
.w67{width:72.160000pt;}
.w5d{width:72.800000pt;}
.w13{width:74.912000pt;}
.w52{width:75.200000pt;}
.w8{width:75.232000pt;}
.w4b{width:75.840000pt;}
.w1d{width:78.720000pt;}
.w12{width:79.040000pt;}
.w2b{width:81.280000pt;}
.w2a{width:81.312000pt;}
.w55{width:81.440000pt;}
.w51{width:81.472000pt;}
.w50{width:81.760000pt;}
.w1e{width:81.792000pt;}
.w1f{width:81.920000pt;}
.w5f{width:82.112000pt;}
.w56{width:82.432000pt;}
.w54{width:83.072000pt;}
.w33{width:83.552000pt;}
.w4f{width:83.712000pt;}
.w28{width:84.352000pt;}
.w41{width:88.160000pt;}
.w36{width:88.800000pt;}
.w40{width:89.312000pt;}
.w35{width:89.632000pt;}
.w34{width:91.072000pt;}
.w29{width:91.392000pt;}
.w60{width:96.160000pt;}
.w57{width:96.800000pt;}
.w14{width:103.360000pt;}
.w9{width:104.000000pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x17{left:2.720000pt;}
.xd{left:6.880000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.x43{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.xe{left:123.552000pt;}
.x1b{left:130.112000pt;}
.x42{left:131.072000pt;}
.x26{left:137.946667pt;}
.x31{left:205.946667pt;}
.x1c{left:212.026667pt;}
.xf{left:227.546667pt;}
.x32{left:264.386667pt;}
.x1d{left:270.466667pt;}
.x10{left:274.786667pt;}
.x3b{left:282.946667pt;}
.x27{left:298.626667pt;}
.x33{left:303.266667pt;}
.x1e{left:309.346667pt;}
.x11{left:322.146667pt;}
.x3c{left:323.426667pt;}
.x28{left:341.346667pt;}
.x34{left:344.546667pt;}
.x1f{left:350.626667pt;}
.x3d{left:366.466667pt;}
.x12{left:369.346667pt;}
.x29{left:387.746667pt;}
.x35{left:393.346667pt;}
.x20{left:399.266667pt;}
.x13{left:416.386667pt;}
.x8{left:432.093321pt;}
.xc{left:438.653321pt;}
.x2a{left:444.413333pt;}
.x36{left:452.573333pt;}
.x44{left:456.093321pt;}
.x21{left:458.653333pt;}
.x5{left:463.133333pt;}
.x3e{left:479.293333pt;}
.x14{left:481.213333pt;}
.x37{left:500.413333pt;}
.x22{left:506.493333pt;}
.x2b{left:514.333333pt;}
.x3a{left:530.013321pt;}
.x15{left:533.693333pt;}
.x1a{left:534.653321pt;}
.x30{left:536.093321pt;}
.x25{left:538.013321pt;}
.x23{left:539.613333pt;}
.x3f{left:562.653333pt;}
.x16{left:568.893333pt;}
.x2c{left:570.653333pt;}
.x38{left:590.973333pt;}
.x24{left:597.373333pt;}
.x2d{left:608.293333pt;}
.x40{left:613.573333pt;}
.x18{left:624.613333pt;}
.x2e{left:654.533333pt;}
.x39{left:674.693333pt;}
.x19{left:681.253333pt;}
.x41{left:686.373333pt;}
.x2f{left:715.013333pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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