
    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_01b17644981102a1f97a86b8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.955078;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_b941d371a712b5270a991202.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_9992dfb53d07b8eec7822670.woff2')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_a19a0f711cb77cb13ae27cf1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_9b667b6d4e664d0b2a9e59bc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c0696052ed3376abf5e8914c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_38387c4651ca19d9f647b4d4.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_1f5409871b0d7098328abc91.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.305400px;}
.ls4{letter-spacing:-0.288000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.008640px;}
.ls6{letter-spacing:0.120000px;}
.ls0{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.306600px;}
.ls7{letter-spacing:0.720000px;}
.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;}
}
.ws3{word-spacing:-16.560000px;}
.ws8{word-spacing:-16.254600px;}
.ws7{word-spacing:-15.840000px;}
.ws4{word-spacing:-15.246600px;}
.ws5{word-spacing:-14.940000px;}
.ws0{word-spacing:-12.060000px;}
.ws1{word-spacing:-11.700000px;}
.ws2{word-spacing:-10.440000px;}
.ws6{word-spacing:0.000000px;}
._16{margin-left:-4.877520px;}
._d{margin-left:-3.323280px;}
._3{margin-left:-2.092080px;}
._0{margin-left:-1.059840px;}
._2{width:1.095600px;}
._b{width:2.101440px;}
._6{width:3.107520px;}
._a{width:5.059680px;}
._8{width:6.493920px;}
._9{width:7.549680px;}
._c{width:8.625360px;}
._10{width:10.637280px;}
._5{width:12.370320px;}
._4{width:13.625280px;}
._12{width:15.168960px;}
._7{width:17.131200px;}
._1c{width:18.160800px;}
._15{width:19.184880px;}
._14{width:20.203200px;}
._18{width:21.227280px;}
._17{width:22.389120px;}
._13{width:24.137040px;}
._e{width:25.617120px;}
._f{width:26.652960px;}
._19{width:32.258880px;}
._1a{width:33.444240px;}
._11{width:41.371680px;}
._1f{width:55.244160px;}
._1e{width:56.342640px;}
._20{width:62.841360px;}
._26{width:109.296000px;}
._25{width:110.355840px;}
._22{width:116.954400px;}
._1d{width:158.400000px;}
._27{width:160.300800px;}
._28{width:161.625600px;}
._1b{width:199.416000px;}
._21{width:265.622400px;}
._23{width:838.399680px;}
._24{width:839.875200px;}
._1{width:914.174400px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.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;}
.y70{bottom:6.300000px;}
.y85{bottom:6.345000px;}
.y2{bottom:6.480000px;}
.yda{bottom:6.660000px;}
.y94{bottom:10.800000px;}
.y72{bottom:13.140000px;}
.ybe{bottom:14.580000px;}
.yba{bottom:17.640000px;}
.yb3{bottom:21.060000px;}
.ybc{bottom:21.645000px;}
.yb1{bottom:21.780000px;}
.y9f{bottom:28.080000px;}
.yd9{bottom:28.440000px;}
.yd3{bottom:28.980000px;}
.ye6{bottom:29.700000px;}
.yac{bottom:36.540000px;}
.yd6{bottom:40.140000px;}
.yb0{bottom:43.560000px;}
.y9d{bottom:50.805000px;}
.y4{bottom:56.520000px;}
.yaf{bottom:65.340000px;}
.yb9{bottom:68.805000px;}
.yb8{bottom:90.585000px;}
.yb7{bottom:112.365000px;}
.yaa{bottom:113.220000px;}
.y6e{bottom:113.940000px;}
.y3f{bottom:115.380000px;}
.y78{bottom:116.640000px;}
.ye4{bottom:121.500000px;}
.y100{bottom:128.160000px;}
.yb6{bottom:134.145000px;}
.ya9{bottom:135.036000px;}
.y6d{bottom:135.756000px;}
.y3e{bottom:137.376000px;}
.y77{bottom:139.176000px;}
.ye3{bottom:143.316000px;}
.yff{bottom:149.976000px;}
.y3d{bottom:155.370000px;}
.ya8{bottom:156.990000px;}
.y6c{bottom:157.530000px;}
.y76{bottom:161.850000px;}
.ye2{bottom:165.090000px;}
.y3c{bottom:169.050000px;}
.yfe{bottom:171.930000px;}
.ya7{bottom:178.770000px;}
.y6b{bottom:179.310000px;}
.y3b{bottom:183.630000px;}
.y75{bottom:184.350000px;}
.ye1{bottom:186.870000px;}
.yfd{bottom:193.710000px;}
.ya6{bottom:200.550000px;}
.y3a{bottom:200.910000px;}
.y6a{bottom:201.270000px;}
.y74{bottom:206.850000px;}
.ye0{bottom:208.650000px;}
.yfc{bottom:215.490000px;}
.y39{bottom:218.190000px;}
.ya5{bottom:222.330000px;}
.y69{bottom:223.050000px;}
.y73{bottom:229.530000px;}
.ydf{bottom:230.610000px;}
.y38{bottom:235.290000px;}
.yfb{bottom:237.270000px;}
.ya4{bottom:244.290000px;}
.y68{bottom:244.830000px;}
.y71{bottom:252.030000px;}
.yde{bottom:252.390000px;}
.y37{bottom:252.570000px;}
.yfa{bottom:259.230000px;}
.ya3{bottom:260.490000px;}
.y67{bottom:266.610000px;}
.ydc{bottom:268.590000px;}
.y36{bottom:269.850000px;}
.yf9{bottom:281.010000px;}
.y6f{bottom:281.370000px;}
.ya2{bottom:282.990000px;}
.y35{bottom:287.130000px;}
.y66{bottom:288.390000px;}
.ydd{bottom:291.090000px;}
.yf8{bottom:302.790000px;}
.y34{bottom:304.410000px;}
.ya1{bottom:304.770000px;}
.y65{bottom:310.350000px;}
.yd5{bottom:313.770000px;}
.y33{bottom:321.510000px;}
.yf7{bottom:324.570000px;}
.ya0{bottom:326.730000px;}
.y64{bottom:332.130000px;}
.ydb{bottom:336.270000px;}
.y32{bottom:338.790000px;}
.yf6{bottom:346.350000px;}
.y9c{bottom:349.230000px;}
.y63{bottom:353.910000px;}
.y31{bottom:356.070000px;}
.yd7{bottom:358.950000px;}
.yf5{bottom:368.310000px;}
.y30{bottom:373.350000px;}
.y62{bottom:375.690000px;}
.yd8{bottom:381.450000px;}
.yf4{bottom:390.135000px;}
.y2f{bottom:390.675000px;}
.y9e{bottom:393.735000px;}
.y61{bottom:397.695000px;}
.yd2{bottom:403.995000px;}
.y2e{bottom:407.955000px;}
.yf3{bottom:411.915000px;}
.y60{bottom:419.475000px;}
.y9b{bottom:422.535000px;}
.y2d{bottom:425.055000px;}
.yd4{bottom:426.675000px;}
.yf2{bottom:433.695000px;}
.y5f{bottom:441.255000px;}
.y2c{bottom:442.335000px;}
.y9a{bottom:444.315000px;}
.yd1{bottom:455.475000px;}
.yf1{bottom:455.655000px;}
.y2b{bottom:459.615000px;}
.y5e{bottom:463.035000px;}
.y99{bottom:466.275000px;}
.y2a{bottom:476.895000px;}
.yd0{bottom:477.435000px;}
.y5d{bottom:484.815000px;}
.y98{bottom:488.055000px;}
.y29{bottom:494.175000px;}
.ycf{bottom:499.215000px;}
.y5c{bottom:506.775000px;}
.y97{bottom:509.835000px;}
.y28{bottom:511.455000px;}
.yce{bottom:520.995000px;}
.y27{bottom:528.555000px;}
.y96{bottom:531.615000px;}
.ycd{bottom:542.775000px;}
.y26{bottom:545.835000px;}
.y5b{bottom:550.335000px;}
.y95{bottom:553.575000px;}
.y25{bottom:563.115000px;}
.ycc{bottom:564.555000px;}
.yf0{bottom:564.735000px;}
.y93{bottom:569.775000px;}
.y5a{bottom:572.115000px;}
.y24{bottom:580.395000px;}
.ycb{bottom:586.515000px;}
.y59{bottom:594.075000px;}
.y92{bottom:596.775000px;}
.y23{bottom:597.675000px;}
.yca{bottom:608.295000px;}
.y22{bottom:614.955000px;}
.y58{bottom:615.855000px;}
.y91{bottom:619.275000px;}
.yc9{bottom:630.075000px;}
.y21{bottom:632.055000px;}
.y57{bottom:637.635000px;}
.y90{bottom:641.805000px;}
.y20{bottom:649.365000px;}
.yc8{bottom:651.885000px;}
.y56{bottom:659.445000px;}
.y8f{bottom:664.485000px;}
.y1f{bottom:666.645000px;}
.yc7{bottom:673.845000px;}
.y55{bottom:681.225000px;}
.y1e{bottom:683.925000px;}
.y8e{bottom:693.285000px;}
.yc6{bottom:695.625000px;}
.y1d{bottom:701.205000px;}
.y54{bottom:703.185000px;}
.y8d{bottom:715.245000px;}
.yc5{bottom:717.405000px;}
.y1c{bottom:718.305000px;}
.y53{bottom:724.965000px;}
.y1b{bottom:735.585000px;}
.y8c{bottom:737.025000px;}
.yc4{bottom:739.185000px;}
.y52{bottom:746.745000px;}
.y1a{bottom:752.865000px;}
.y8b{bottom:758.805000px;}
.yc3{bottom:760.965000px;}
.yef{bottom:761.145000px;}
.y51{bottom:768.525000px;}
.y19{bottom:770.145000px;}
.y8a{bottom:780.585000px;}
.yc2{bottom:782.925000px;}
.y18{bottom:787.425000px;}
.y50{bottom:790.305000px;}
.y89{bottom:796.785000px;}
.y17{bottom:804.705000px;}
.y4f{bottom:812.265000px;}
.y88{bottom:819.465000px;}
.y16{bottom:821.805000px;}
.yc1{bottom:826.485000px;}
.y4e{bottom:834.045000px;}
.y15{bottom:839.085000px;}
.y87{bottom:841.965000px;}
.yc0{bottom:848.265000px;}
.y4d{bottom:855.825000px;}
.y14{bottom:856.365000px;}
.y86{bottom:864.645000px;}
.ybf{bottom:870.225000px;}
.y13{bottom:873.645000px;}
.y4c{bottom:877.605000px;}
.yb5{bottom:886.425000px;}
.y84{bottom:887.145000px;}
.y12{bottom:891.285000px;}
.yee{bottom:892.005000px;}
.y4b{bottom:899.610000px;}
.yec{bottom:908.250000px;}
.ybd{bottom:908.970000px;}
.y11{bottom:910.410000px;}
.y83{bottom:916.170000px;}
.y4a{bottom:921.390000px;}
.yed{bottom:930.750000px;}
.y10{bottom:935.250000px;}
.y82{bottom:937.950000px;}
.yae{bottom:939.750000px;}
.y49{bottom:943.170000px;}
.yf{bottom:948.210000px;}
.ye8{bottom:953.430000px;}
.y81{bottom:959.730000px;}
.ybb{bottom:962.250000px;}
.y48{bottom:964.950000px;}
.ye{bottom:967.290000px;}
.yeb{bottom:975.930000px;}
.y80{bottom:981.510000px;}
.yb2{bottom:984.930000px;}
.yd{bottom:986.190000px;}
.y47{bottom:986.730000px;}
.ye9{bottom:998.610000px;}
.y7f{bottom:1003.470000px;}
.yc{bottom:1005.630000px;}
.yb4{bottom:1007.430000px;}
.y46{bottom:1008.690000px;}
.y7e{bottom:1019.670000px;}
.yea{bottom:1021.110000px;}
.yb{bottom:1028.130000px;}
.y45{bottom:1030.470000px;}
.yab{bottom:1036.770000px;}
.y7d{bottom:1042.170000px;}
.ye5{bottom:1043.610000px;}
.ya{bottom:1050.450000px;}
.y44{bottom:1052.250000px;}
.yad{bottom:1060.170000px;}
.y7c{bottom:1064.670000px;}
.ye7{bottom:1067.010000px;}
.y9{bottom:1072.050000px;}
.y43{bottom:1074.030000px;}
.y7b{bottom:1087.350000px;}
.y8{bottom:1089.330000px;}
.y42{bottom:1095.990000px;}
.y7{bottom:1106.610000px;}
.y7a{bottom:1109.850000px;}
.y41{bottom:1117.770000px;}
.y6{bottom:1123.710000px;}
.y79{bottom:1132.530000px;}
.y40{bottom:1139.550000px;}
.y5{bottom:1140.990000px;}
.y3{bottom:1168.740000px;}
.y1{bottom:1184.040000px;}
.h10{height:21.780000px;}
.h13{height:21.816000px;}
.h12{height:21.960000px;}
.h2{height:25.020000px;}
.h14{height:26.280000px;}
.h11{height:28.620000px;}
.ha{height:29.158594px;}
.h1d{height:30.060000px;}
.he{height:34.036523px;}
.h5{height:39.760312px;}
.hb{height:41.726953px;}
.h6{height:42.164648px;}
.hd{height:43.156758px;}
.h16{height:43.596000px;}
.h20{height:44.280000px;}
.h1f{height:44.316000px;}
.h1b{height:44.460000px;}
.h21{height:45.180000px;}
.h4{height:46.251562px;}
.hf{height:46.736719px;}
.h3{height:47.836406px;}
.hc{height:49.255313px;}
.h19{height:51.120000px;}
.h17{height:52.020000px;}
.h1c{height:52.596000px;}
.h9{height:53.224453px;}
.h8{height:54.596250px;}
.h7{height:54.864844px;}
.h15{height:66.276000px;}
.h22{height:89.460000px;}
.h1e{height:89.496000px;}
.h18{height:96.300000px;}
.h1a{height:149.616000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w13{width:37.620000px;}
.w1a{width:37.980000px;}
.w5{width:41.796000px;}
.w9{width:43.380000px;}
.we{width:43.416000px;}
.w30{width:61.560000px;}
.w21{width:63.180000px;}
.w2{width:63.900000px;}
.w32{width:72.900000px;}
.w22{width:73.260000px;}
.w31{width:73.296000px;}
.w35{width:73.620000px;}
.w26{width:73.656000px;}
.w2d{width:73.800000px;}
.w23{width:83.376000px;}
.w20{width:83.916000px;}
.w34{width:86.436000px;}
.w17{width:92.556000px;}
.w24{width:93.960000px;}
.w25{width:94.860000px;}
.w7{width:94.896000px;}
.w19{width:101.556000px;}
.w1c{width:101.916000px;}
.w18{width:103.140000px;}
.w1d{width:103.500000px;}
.w33{width:103.716000px;}
.w11{width:105.516000px;}
.w6{width:105.660000px;}
.w29{width:107.100000px;}
.w2c{width:109.836000px;}
.w2a{width:115.776000px;}
.w2b{width:121.896000px;}
.wf{width:126.900000px;}
.wb{width:137.556000px;}
.w14{width:147.816000px;}
.w1b{width:148.176000px;}
.wc{width:158.790000px;}
.w2e{width:160.950000px;}
.w1e{width:169.230000px;}
.w10{width:169.410000px;}
.w12{width:171.030000px;}
.wa{width:180.030000px;}
.w27{width:184.350000px;}
.w15{width:196.410000px;}
.w16{width:205.410000px;}
.w8{width:211.890000px;}
.wd{width:224.130000px;}
.w28{width:239.115000px;}
.w2f{width:252.795000px;}
.w1f{width:253.830000px;}
.w3{width:616.650000px;}
.w1{width:893.250000px;}
.w4{width:893.339987px;}
.w0{width:893.340000px;}
.x0{left:0.000000px;}
.x4c{left:4.500000px;}
.x2{left:7.920000px;}
.x10{left:10.800000px;}
.x1c{left:12.600000px;}
.x3f{left:13.860000px;}
.x2a{left:15.480000px;}
.x17{left:16.740000px;}
.x5d{left:18.540000px;}
.x1d{left:20.880000px;}
.x63{left:22.140000px;}
.x14{left:23.400000px;}
.x48{left:24.525000px;}
.x29{left:25.920000px;}
.x62{left:28.080000px;}
.x32{left:29.700000px;}
.x4f{left:31.500000px;}
.x55{left:33.480000px;}
.x1e{left:35.280000px;}
.x12{left:37.620000px;}
.x1f{left:39.060000px;}
.x39{left:40.365000px;}
.x27{left:42.150000px;}
.x19{left:43.200000px;}
.x18{left:44.460000px;}
.x42{left:46.620000px;}
.x50{left:48.060000px;}
.x41{left:49.500000px;}
.x58{left:50.580000px;}
.x25{left:57.645000px;}
.x35{left:59.220000px;}
.x2c{left:60.510000px;}
.x16{left:62.100000px;}
.x2d{left:65.025000px;}
.x2e{left:67.005000px;}
.x38{left:68.085000px;}
.x4e{left:70.770000px;}
.x3e{left:73.305000px;}
.x36{left:76.350000px;}
.x37{left:80.490000px;}
.x2b{left:85.905000px;}
.x1b{left:91.440000px;}
.x20{left:93.420000px;}
.x1a{left:95.580000px;}
.x1{left:108.036000px;}
.x7{left:110.195987px;}
.x5{left:112.535987px;}
.xc{left:120.455987px;}
.x3b{left:140.616000px;}
.x45{left:151.770000px;}
.x59{left:162.029987px;}
.x3{left:171.930000px;}
.xd{left:173.369987px;}
.x9{left:178.589987px;}
.x52{left:180.390000px;}
.x21{left:183.989987px;}
.xe{left:185.069987px;}
.x23{left:189.750000px;}
.x43{left:192.989987px;}
.x2f{left:201.809987px;}
.x5b{left:205.770000px;}
.x5a{left:209.549987px;}
.xf{left:212.610000px;}
.x22{left:215.309987px;}
.x30{left:218.730000px;}
.x24{left:233.850000px;}
.x8{left:242.309987px;}
.x44{left:245.009987px;}
.x4d{left:247.350000px;}
.x11{left:255.135000px;}
.x31{left:262.875000px;}
.x57{left:290.955000px;}
.x61{left:293.115000px;}
.x46{left:321.735000px;}
.x3c{left:327.495000px;}
.xa{left:336.314987px;}
.x13{left:361.515000px;}
.x53{left:365.475000px;}
.x5c{left:367.455000px;}
.x33{left:390.495000px;}
.x4a{left:396.615000px;}
.x3a{left:405.974987px;}
.x26{left:414.615000px;}
.xb{left:420.944987px;}
.x6{left:427.244987px;}
.x51{left:430.124987px;}
.x5f{left:442.185000px;}
.x4{left:446.684987px;}
.x15{left:457.125000px;}
.x4b{left:481.605000px;}
.x56{left:482.685000px;}
.x60{left:516.525000px;}
.x3d{left:524.625000px;}
.x28{left:552.885000px;}
.x34{left:560.625000px;}
.x47{left:577.005000px;}
.x54{left:606.030000px;}
.x5e{left:621.690000px;}
.x40{left:626.910000px;}
.x49{left:661.650000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.271467pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.007680pt;}
.ls6{letter-spacing:0.106667pt;}
.ls0{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.272533pt;}
.ls7{letter-spacing:0.640000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws8{word-spacing:-14.448533pt;}
.ws7{word-spacing:-14.080000pt;}
.ws4{word-spacing:-13.552533pt;}
.ws5{word-spacing:-13.280000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws6{word-spacing:0.000000pt;}
._16{margin-left:-4.335573pt;}
._d{margin-left:-2.954027pt;}
._3{margin-left:-1.859627pt;}
._0{margin-left:-0.942080pt;}
._2{width:0.973867pt;}
._b{width:1.867947pt;}
._6{width:2.762240pt;}
._a{width:4.497493pt;}
._8{width:5.772373pt;}
._9{width:6.710827pt;}
._c{width:7.666987pt;}
._10{width:9.455360pt;}
._5{width:10.995840pt;}
._4{width:12.111360pt;}
._12{width:13.483520pt;}
._7{width:15.227733pt;}
._1c{width:16.142933pt;}
._15{width:17.053227pt;}
._14{width:17.958400pt;}
._18{width:18.868693pt;}
._17{width:19.901440pt;}
._13{width:21.455147pt;}
._e{width:22.770773pt;}
._f{width:23.691520pt;}
._19{width:28.674560pt;}
._1a{width:29.728213pt;}
._11{width:36.774827pt;}
._1f{width:49.105920pt;}
._1e{width:50.082347pt;}
._20{width:55.858987pt;}
._26{width:97.152000pt;}
._25{width:98.094080pt;}
._22{width:103.959467pt;}
._1d{width:140.800000pt;}
._27{width:142.489600pt;}
._28{width:143.667200pt;}
._1b{width:177.258667pt;}
._21{width:236.108800pt;}
._23{width:745.244160pt;}
._24{width:746.555733pt;}
._1{width:812.599467pt;}
.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;}
.y70{bottom:5.600000pt;}
.y85{bottom:5.640000pt;}
.y2{bottom:5.760000pt;}
.yda{bottom:5.920000pt;}
.y94{bottom:9.600000pt;}
.y72{bottom:11.680000pt;}
.ybe{bottom:12.960000pt;}
.yba{bottom:15.680000pt;}
.yb3{bottom:18.720000pt;}
.ybc{bottom:19.240000pt;}
.yb1{bottom:19.360000pt;}
.y9f{bottom:24.960000pt;}
.yd9{bottom:25.280000pt;}
.yd3{bottom:25.760000pt;}
.ye6{bottom:26.400000pt;}
.yac{bottom:32.480000pt;}
.yd6{bottom:35.680000pt;}
.yb0{bottom:38.720000pt;}
.y9d{bottom:45.160000pt;}
.y4{bottom:50.240000pt;}
.yaf{bottom:58.080000pt;}
.yb9{bottom:61.160000pt;}
.yb8{bottom:80.520000pt;}
.yb7{bottom:99.880000pt;}
.yaa{bottom:100.640000pt;}
.y6e{bottom:101.280000pt;}
.y3f{bottom:102.560000pt;}
.y78{bottom:103.680000pt;}
.ye4{bottom:108.000000pt;}
.y100{bottom:113.920000pt;}
.yb6{bottom:119.240000pt;}
.ya9{bottom:120.032000pt;}
.y6d{bottom:120.672000pt;}
.y3e{bottom:122.112000pt;}
.y77{bottom:123.712000pt;}
.ye3{bottom:127.392000pt;}
.yff{bottom:133.312000pt;}
.y3d{bottom:138.106667pt;}
.ya8{bottom:139.546667pt;}
.y6c{bottom:140.026667pt;}
.y76{bottom:143.866667pt;}
.ye2{bottom:146.746667pt;}
.y3c{bottom:150.266667pt;}
.yfe{bottom:152.826667pt;}
.ya7{bottom:158.906667pt;}
.y6b{bottom:159.386667pt;}
.y3b{bottom:163.226667pt;}
.y75{bottom:163.866667pt;}
.ye1{bottom:166.106667pt;}
.yfd{bottom:172.186667pt;}
.ya6{bottom:178.266667pt;}
.y3a{bottom:178.586667pt;}
.y6a{bottom:178.906667pt;}
.y74{bottom:183.866667pt;}
.ye0{bottom:185.466667pt;}
.yfc{bottom:191.546667pt;}
.y39{bottom:193.946667pt;}
.ya5{bottom:197.626667pt;}
.y69{bottom:198.266667pt;}
.y73{bottom:204.026667pt;}
.ydf{bottom:204.986667pt;}
.y38{bottom:209.146667pt;}
.yfb{bottom:210.906667pt;}
.ya4{bottom:217.146667pt;}
.y68{bottom:217.626667pt;}
.y71{bottom:224.026667pt;}
.yde{bottom:224.346667pt;}
.y37{bottom:224.506667pt;}
.yfa{bottom:230.426667pt;}
.ya3{bottom:231.546667pt;}
.y67{bottom:236.986667pt;}
.ydc{bottom:238.746667pt;}
.y36{bottom:239.866667pt;}
.yf9{bottom:249.786667pt;}
.y6f{bottom:250.106667pt;}
.ya2{bottom:251.546667pt;}
.y35{bottom:255.226667pt;}
.y66{bottom:256.346667pt;}
.ydd{bottom:258.746667pt;}
.yf8{bottom:269.146667pt;}
.y34{bottom:270.586667pt;}
.ya1{bottom:270.906667pt;}
.y65{bottom:275.866667pt;}
.yd5{bottom:278.906667pt;}
.y33{bottom:285.786667pt;}
.yf7{bottom:288.506667pt;}
.ya0{bottom:290.426667pt;}
.y64{bottom:295.226667pt;}
.ydb{bottom:298.906667pt;}
.y32{bottom:301.146667pt;}
.yf6{bottom:307.866667pt;}
.y9c{bottom:310.426667pt;}
.y63{bottom:314.586667pt;}
.y31{bottom:316.506667pt;}
.yd7{bottom:319.066667pt;}
.yf5{bottom:327.386667pt;}
.y30{bottom:331.866667pt;}
.y62{bottom:333.946667pt;}
.yd8{bottom:339.066667pt;}
.yf4{bottom:346.786667pt;}
.y2f{bottom:347.266667pt;}
.y9e{bottom:349.986667pt;}
.y61{bottom:353.506667pt;}
.yd2{bottom:359.106667pt;}
.y2e{bottom:362.626667pt;}
.yf3{bottom:366.146667pt;}
.y60{bottom:372.866667pt;}
.y9b{bottom:375.586667pt;}
.y2d{bottom:377.826667pt;}
.yd4{bottom:379.266667pt;}
.yf2{bottom:385.506667pt;}
.y5f{bottom:392.226667pt;}
.y2c{bottom:393.186667pt;}
.y9a{bottom:394.946667pt;}
.yd1{bottom:404.866667pt;}
.yf1{bottom:405.026667pt;}
.y2b{bottom:408.546667pt;}
.y5e{bottom:411.586667pt;}
.y99{bottom:414.466667pt;}
.y2a{bottom:423.906667pt;}
.yd0{bottom:424.386667pt;}
.y5d{bottom:430.946667pt;}
.y98{bottom:433.826667pt;}
.y29{bottom:439.266667pt;}
.ycf{bottom:443.746667pt;}
.y5c{bottom:450.466667pt;}
.y97{bottom:453.186667pt;}
.y28{bottom:454.626667pt;}
.yce{bottom:463.106667pt;}
.y27{bottom:469.826667pt;}
.y96{bottom:472.546667pt;}
.ycd{bottom:482.466667pt;}
.y26{bottom:485.186667pt;}
.y5b{bottom:489.186667pt;}
.y95{bottom:492.066667pt;}
.y25{bottom:500.546667pt;}
.ycc{bottom:501.826667pt;}
.yf0{bottom:501.986667pt;}
.y93{bottom:506.466667pt;}
.y5a{bottom:508.546667pt;}
.y24{bottom:515.906667pt;}
.ycb{bottom:521.346667pt;}
.y59{bottom:528.066667pt;}
.y92{bottom:530.466667pt;}
.y23{bottom:531.266667pt;}
.yca{bottom:540.706667pt;}
.y22{bottom:546.626667pt;}
.y58{bottom:547.426667pt;}
.y91{bottom:550.466667pt;}
.yc9{bottom:560.066667pt;}
.y21{bottom:561.826667pt;}
.y57{bottom:566.786667pt;}
.y90{bottom:570.493333pt;}
.y20{bottom:577.213333pt;}
.yc8{bottom:579.453333pt;}
.y56{bottom:586.173333pt;}
.y8f{bottom:590.653333pt;}
.y1f{bottom:592.573333pt;}
.yc7{bottom:598.973333pt;}
.y55{bottom:605.533333pt;}
.y1e{bottom:607.933333pt;}
.y8e{bottom:616.253333pt;}
.yc6{bottom:618.333333pt;}
.y1d{bottom:623.293333pt;}
.y54{bottom:625.053333pt;}
.y8d{bottom:635.773333pt;}
.yc5{bottom:637.693333pt;}
.y1c{bottom:638.493333pt;}
.y53{bottom:644.413333pt;}
.y1b{bottom:653.853333pt;}
.y8c{bottom:655.133333pt;}
.yc4{bottom:657.053333pt;}
.y52{bottom:663.773333pt;}
.y1a{bottom:669.213333pt;}
.y8b{bottom:674.493333pt;}
.yc3{bottom:676.413333pt;}
.yef{bottom:676.573333pt;}
.y51{bottom:683.133333pt;}
.y19{bottom:684.573333pt;}
.y8a{bottom:693.853333pt;}
.yc2{bottom:695.933333pt;}
.y18{bottom:699.933333pt;}
.y50{bottom:702.493333pt;}
.y89{bottom:708.253333pt;}
.y17{bottom:715.293333pt;}
.y4f{bottom:722.013333pt;}
.y88{bottom:728.413333pt;}
.y16{bottom:730.493333pt;}
.yc1{bottom:734.653333pt;}
.y4e{bottom:741.373333pt;}
.y15{bottom:745.853333pt;}
.y87{bottom:748.413333pt;}
.yc0{bottom:754.013333pt;}
.y4d{bottom:760.733333pt;}
.y14{bottom:761.213333pt;}
.y86{bottom:768.573333pt;}
.ybf{bottom:773.533333pt;}
.y13{bottom:776.573333pt;}
.y4c{bottom:780.093333pt;}
.yb5{bottom:787.933333pt;}
.y84{bottom:788.573333pt;}
.y12{bottom:792.253333pt;}
.yee{bottom:792.893333pt;}
.y4b{bottom:799.653333pt;}
.yec{bottom:807.333333pt;}
.ybd{bottom:807.973333pt;}
.y11{bottom:809.253333pt;}
.y83{bottom:814.373333pt;}
.y4a{bottom:819.013333pt;}
.yed{bottom:827.333333pt;}
.y10{bottom:831.333333pt;}
.y82{bottom:833.733333pt;}
.yae{bottom:835.333333pt;}
.y49{bottom:838.373333pt;}
.yf{bottom:842.853333pt;}
.ye8{bottom:847.493333pt;}
.y81{bottom:853.093333pt;}
.ybb{bottom:855.333333pt;}
.y48{bottom:857.733333pt;}
.ye{bottom:859.813333pt;}
.yeb{bottom:867.493333pt;}
.y80{bottom:872.453333pt;}
.yb2{bottom:875.493333pt;}
.yd{bottom:876.613333pt;}
.y47{bottom:877.093333pt;}
.ye9{bottom:887.653333pt;}
.y7f{bottom:891.973333pt;}
.yc{bottom:893.893333pt;}
.yb4{bottom:895.493333pt;}
.y46{bottom:896.613333pt;}
.y7e{bottom:906.373333pt;}
.yea{bottom:907.653333pt;}
.yb{bottom:913.893333pt;}
.y45{bottom:915.973333pt;}
.yab{bottom:921.573333pt;}
.y7d{bottom:926.373333pt;}
.ye5{bottom:927.653333pt;}
.ya{bottom:933.733333pt;}
.y44{bottom:935.333333pt;}
.yad{bottom:942.373333pt;}
.y7c{bottom:946.373333pt;}
.ye7{bottom:948.453333pt;}
.y9{bottom:952.933333pt;}
.y43{bottom:954.693333pt;}
.y7b{bottom:966.533333pt;}
.y8{bottom:968.293333pt;}
.y42{bottom:974.213333pt;}
.y7{bottom:983.653333pt;}
.y7a{bottom:986.533333pt;}
.y41{bottom:993.573333pt;}
.y6{bottom:998.853333pt;}
.y79{bottom:1006.693333pt;}
.y40{bottom:1012.933333pt;}
.y5{bottom:1014.213333pt;}
.y3{bottom:1038.880000pt;}
.y1{bottom:1052.480000pt;}
.h10{height:19.360000pt;}
.h13{height:19.392000pt;}
.h12{height:19.520000pt;}
.h2{height:22.240000pt;}
.h14{height:23.360000pt;}
.h11{height:25.440000pt;}
.ha{height:25.918750pt;}
.h1d{height:26.720000pt;}
.he{height:30.254687pt;}
.h5{height:35.342500pt;}
.hb{height:37.090625pt;}
.h6{height:37.479688pt;}
.hd{height:38.361562pt;}
.h16{height:38.752000pt;}
.h20{height:39.360000pt;}
.h1f{height:39.392000pt;}
.h1b{height:39.520000pt;}
.h21{height:40.160000pt;}
.h4{height:41.112500pt;}
.hf{height:41.543750pt;}
.h3{height:42.521250pt;}
.hc{height:43.782500pt;}
.h19{height:45.440000pt;}
.h17{height:46.240000pt;}
.h1c{height:46.752000pt;}
.h9{height:47.310625pt;}
.h8{height:48.530000pt;}
.h7{height:48.768750pt;}
.h15{height:58.912000pt;}
.h22{height:79.520000pt;}
.h1e{height:79.552000pt;}
.h18{height:85.600000pt;}
.h1a{height:132.992000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w13{width:33.440000pt;}
.w1a{width:33.760000pt;}
.w5{width:37.152000pt;}
.w9{width:38.560000pt;}
.we{width:38.592000pt;}
.w30{width:54.720000pt;}
.w21{width:56.160000pt;}
.w2{width:56.800000pt;}
.w32{width:64.800000pt;}
.w22{width:65.120000pt;}
.w31{width:65.152000pt;}
.w35{width:65.440000pt;}
.w26{width:65.472000pt;}
.w2d{width:65.600000pt;}
.w23{width:74.112000pt;}
.w20{width:74.592000pt;}
.w34{width:76.832000pt;}
.w17{width:82.272000pt;}
.w24{width:83.520000pt;}
.w25{width:84.320000pt;}
.w7{width:84.352000pt;}
.w19{width:90.272000pt;}
.w1c{width:90.592000pt;}
.w18{width:91.680000pt;}
.w1d{width:92.000000pt;}
.w33{width:92.192000pt;}
.w11{width:93.792000pt;}
.w6{width:93.920000pt;}
.w29{width:95.200000pt;}
.w2c{width:97.632000pt;}
.w2a{width:102.912000pt;}
.w2b{width:108.352000pt;}
.wf{width:112.800000pt;}
.wb{width:122.272000pt;}
.w14{width:131.392000pt;}
.w1b{width:131.712000pt;}
.wc{width:141.146667pt;}
.w2e{width:143.066667pt;}
.w1e{width:150.426667pt;}
.w10{width:150.586667pt;}
.w12{width:152.026667pt;}
.wa{width:160.026667pt;}
.w27{width:163.866667pt;}
.w15{width:174.586667pt;}
.w16{width:182.586667pt;}
.w8{width:188.346667pt;}
.wd{width:199.226667pt;}
.w28{width:212.546667pt;}
.w2f{width:224.706667pt;}
.w1f{width:225.626667pt;}
.w3{width:548.133333pt;}
.w1{width:794.000000pt;}
.w4{width:794.079988pt;}
.w0{width:794.080000pt;}
.x0{left:0.000000pt;}
.x4c{left:4.000000pt;}
.x2{left:7.040000pt;}
.x10{left:9.600000pt;}
.x1c{left:11.200000pt;}
.x3f{left:12.320000pt;}
.x2a{left:13.760000pt;}
.x17{left:14.880000pt;}
.x5d{left:16.480000pt;}
.x1d{left:18.560000pt;}
.x63{left:19.680000pt;}
.x14{left:20.800000pt;}
.x48{left:21.800000pt;}
.x29{left:23.040000pt;}
.x62{left:24.960000pt;}
.x32{left:26.400000pt;}
.x4f{left:28.000000pt;}
.x55{left:29.760000pt;}
.x1e{left:31.360000pt;}
.x12{left:33.440000pt;}
.x1f{left:34.720000pt;}
.x39{left:35.880000pt;}
.x27{left:37.466667pt;}
.x19{left:38.400000pt;}
.x18{left:39.520000pt;}
.x42{left:41.440000pt;}
.x50{left:42.720000pt;}
.x41{left:44.000000pt;}
.x58{left:44.960000pt;}
.x25{left:51.240000pt;}
.x35{left:52.640000pt;}
.x2c{left:53.786667pt;}
.x16{left:55.200000pt;}
.x2d{left:57.800000pt;}
.x2e{left:59.560000pt;}
.x38{left:60.520000pt;}
.x4e{left:62.906667pt;}
.x3e{left:65.160000pt;}
.x36{left:67.866667pt;}
.x37{left:71.546667pt;}
.x2b{left:76.360000pt;}
.x1b{left:81.280000pt;}
.x20{left:83.040000pt;}
.x1a{left:84.960000pt;}
.x1{left:96.032000pt;}
.x7{left:97.951988pt;}
.x5{left:100.031988pt;}
.xc{left:107.071988pt;}
.x3b{left:124.992000pt;}
.x45{left:134.906667pt;}
.x59{left:144.026655pt;}
.x3{left:152.826667pt;}
.xd{left:154.106655pt;}
.x9{left:158.746655pt;}
.x52{left:160.346667pt;}
.x21{left:163.546655pt;}
.xe{left:164.506655pt;}
.x23{left:168.666667pt;}
.x43{left:171.546655pt;}
.x2f{left:179.386655pt;}
.x5b{left:182.906667pt;}
.x5a{left:186.266655pt;}
.xf{left:188.986667pt;}
.x22{left:191.386655pt;}
.x30{left:194.426667pt;}
.x24{left:207.866667pt;}
.x8{left:215.386655pt;}
.x44{left:217.786655pt;}
.x4d{left:219.866667pt;}
.x11{left:226.786667pt;}
.x31{left:233.666667pt;}
.x57{left:258.626667pt;}
.x61{left:260.546667pt;}
.x46{left:285.986667pt;}
.x3c{left:291.106667pt;}
.xa{left:298.946655pt;}
.x13{left:321.346667pt;}
.x53{left:324.866667pt;}
.x5c{left:326.626667pt;}
.x33{left:347.106667pt;}
.x4a{left:352.546667pt;}
.x3a{left:360.866655pt;}
.x26{left:368.546667pt;}
.xb{left:374.173321pt;}
.x6{left:379.773321pt;}
.x51{left:382.333321pt;}
.x5f{left:393.053333pt;}
.x4{left:397.053321pt;}
.x15{left:406.333333pt;}
.x4b{left:428.093333pt;}
.x56{left:429.053333pt;}
.x60{left:459.133333pt;}
.x3d{left:466.333333pt;}
.x28{left:491.453333pt;}
.x34{left:498.333333pt;}
.x47{left:512.893333pt;}
.x54{left:538.693333pt;}
.x5e{left:552.613333pt;}
.x40{left:557.253333pt;}
.x49{left:588.133333pt;}
}




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