
    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_ea6cc89e562ceb7f3b2def2b.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c029dded792395b556d2cb63.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ff898ea860fc23cd23fa63da.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.982910;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_0e8b9ecc1223cb850ce323c7.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_32658edacca6a5319e98a123.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_74806a66cf3392be3a7a9341.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_cb5933224a312fc40eb1079f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.982910;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_911359011d50cd670527e61b.woff2')format("woff");}.ff9{font-family:ff9;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:-23.760000px;}
.v3{vertical-align:-13.680000px;}
.v4{vertical-align:-6.480000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.540000px;}
.v5{vertical-align:45.660000px;}
.v6{vertical-align:47.400000px;}
.ls4{letter-spacing:-1.440000px;}
.ls5{letter-spacing:-0.720000px;}
.ls1{letter-spacing:-0.463800px;}
.ls6{letter-spacing:-0.456000px;}
.ls7{letter-spacing:-0.382800px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.lsa{letter-spacing:53.424000px;}
.ls8{letter-spacing:167.506560px;}
.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;}
}
.ws8{word-spacing:-60.480000px;}
.ws10{word-spacing:-18.908064px;}
.ws1{word-spacing:-18.000000px;}
.ws3{word-spacing:-16.560000px;}
.ws0{word-spacing:-14.506440px;}
.ws7{word-spacing:-13.668480px;}
.wse{word-spacing:-12.399264px;}
.ws4{word-spacing:-12.366720px;}
.ws2{word-spacing:0.000000px;}
.ws9{word-spacing:387.579840px;}
.wsd{word-spacing:393.639840px;}
.wsa{word-spacing:397.116528px;}
.wsc{word-spacing:406.539840px;}
.wsb{word-spacing:420.579840px;}
.ws6{word-spacing:594.573600px;}
.ws5{word-spacing:702.253776px;}
.wsf{word-spacing:737.315088px;}
._27{margin-left:-6.915840px;}
._5{margin-left:-4.281120px;}
._1{margin-left:-2.462400px;}
._0{margin-left:-1.258560px;}
._2{width:1.203840px;}
._3{width:2.510400px;}
._e{width:4.196640px;}
._10{width:5.722560px;}
._11{width:6.769440px;}
._f{width:8.034720px;}
._13{width:9.717120px;}
._14{width:10.738560px;}
._16{width:11.851200px;}
._15{width:12.885120px;}
._1a{width:14.057280px;}
._4{width:15.166560px;}
._1b{width:16.302720px;}
._2f{width:19.217760px;}
._12{width:20.878080px;}
._d{width:22.128000px;}
._c{width:23.261280px;}
._17{width:24.353280px;}
._18{width:25.541280px;}
._19{width:26.931840px;}
._9{width:28.756320px;}
._8{width:31.210560px;}
._b{width:33.765120px;}
._a{width:35.242560px;}
._2c{width:36.490560px;}
._21{width:38.537280px;}
._1c{width:41.417280px;}
._1d{width:43.292160px;}
._7{width:44.529120px;}
._6{width:45.864000px;}
._29{width:57.562560px;}
._1e{width:68.166720px;}
._22{width:70.001280px;}
._23{width:91.121280px;}
._2d{width:96.718560px;}
._2e{width:98.314560px;}
._2b{width:111.963840px;}
._24{width:117.826560px;}
._1f{width:148.841280px;}
._20{width:156.706560px;}
._30{width:187.853760px;}
._28{width:205.332528px;}
._26{width:414.402240px;}
._2a{width:445.225440px;}
._25{width:516.428640px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(112,48,160);}
.fc5{color:rgb(89,89,89);}
.fc4{color:rgb(64,64,64);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:54.720000px;}
.fs4{font-size:54.864000px;}
.fs5{font-size:60.480000px;}
.fs8{font-size:60.624000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs7{font-size:83.664000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y4f{bottom:7.560000px;}
.y49{bottom:7.590000px;}
.ya1{bottom:7.605000px;}
.ya4{bottom:7.920000px;}
.y6c{bottom:7.965000px;}
.y5e{bottom:8.640000px;}
.y6{bottom:10.800000px;}
.y7{bottom:11.160000px;}
.y6a{bottom:11.565000px;}
.y72{bottom:12.240000px;}
.y9e{bottom:17.205000px;}
.ycf{bottom:17.430000px;}
.yff{bottom:22.290000px;}
.y4e{bottom:31.320000px;}
.y48{bottom:31.350000px;}
.ya0{bottom:31.365000px;}
.y85{bottom:31.674000px;}
.y57{bottom:31.680000px;}
.y6b{bottom:31.725000px;}
.y73{bottom:32.400000px;}
.y5d{bottom:32.430000px;}
.y67{bottom:32.445000px;}
.y5b{bottom:33.150000px;}
.y64{bottom:34.920000px;}
.y69{bottom:35.325000px;}
.y71{bottom:36.000000px;}
.yfd{bottom:44.715000px;}
.y77{bottom:55.110000px;}
.y84{bottom:55.434000px;}
.y47{bottom:55.470000px;}
.y4c{bottom:55.800000px;}
.y62{bottom:56.154000px;}
.y55{bottom:56.205000px;}
.y9a{bottom:56.490000px;}
.ycb{bottom:56.730000px;}
.y6f{bottom:56.880000px;}
.y5a{bottom:56.910000px;}
.y8{bottom:57.240000px;}
.yf1{bottom:59.400000px;}
.y78{bottom:59.760000px;}
.yf7{bottom:62.280000px;}
.y105{bottom:62.535000px;}
.y5{bottom:73.476000px;}
.y98{bottom:78.915000px;}
.y46{bottom:79.230000px;}
.y83{bottom:79.239000px;}
.yc9{bottom:79.455000px;}
.y4b{bottom:79.560000px;}
.y51{bottom:79.590000px;}
.y61{bottom:79.914000px;}
.y54{bottom:79.965000px;}
.y66{bottom:80.325000px;}
.y6e{bottom:80.640000px;}
.y59{bottom:80.670000px;}
.yf8{bottom:82.515000px;}
.yf2{bottom:86.610000px;}
.y104{bottom:87.840000px;}
.yc8{bottom:95.655000px;}
.y91{bottom:96.480000px;}
.yf9{bottom:102.780000px;}
.y45{bottom:102.990000px;}
.y75{bottom:104.430000px;}
.yf4{bottom:106.170000px;}
.yfe{bottom:111.390000px;}
.ybd{bottom:113.190000px;}
.y60{bottom:113.436000px;}
.y8d{bottom:114.630000px;}
.y34{bottom:115.596000px;}
.yf3{bottom:122.370000px;}
.yfa{bottom:123.045000px;}
.y44{bottom:126.750000px;}
.yb9{bottom:126.756000px;}
.y82{bottom:128.196000px;}
.y92{bottom:130.320000px;}
.ybe{bottom:131.040000px;}
.y8c{bottom:131.190000px;}
.yf5{bottom:137.235000px;}
.yef{bottom:137.556000px;}
.y33{bottom:139.716000px;}
.yfb{bottom:143.280000px;}
.ybf{bottom:148.890000px;}
.yb8{bottom:150.510000px;}
.y43{bottom:150.555000px;}
.yf6{bottom:150.945000px;}
.ybb{bottom:154.155000px;}
.yee{bottom:161.310000px;}
.y63{bottom:162.030000px;}
.y32{bottom:163.470000px;}
.yfc{bottom:163.545000px;}
.y93{bottom:164.160000px;}
.yc0{bottom:166.755000px;}
.y8a{bottom:173.055000px;}
.yb7{bottom:174.270000px;}
.yc1{bottom:184.605000px;}
.yed{bottom:185.070000px;}
.y31{bottom:187.230000px;}
.y103{bottom:191.985000px;}
.y99{bottom:196.410000px;}
.y94{bottom:198.030000px;}
.yb6{bottom:198.075000px;}
.y87{bottom:199.110000px;}
.yca{bottom:201.030000px;}
.yc2{bottom:202.470000px;}
.yec{bottom:208.875000px;}
.y5f{bottom:210.315000px;}
.y30{bottom:211.035000px;}
.y102{bottom:217.545000px;}
.y89{bottom:219.135000px;}
.yc3{bottom:220.290000px;}
.yb5{bottom:221.835000px;}
.y81{bottom:227.595000px;}
.y86{bottom:227.880000px;}
.y95{bottom:231.870000px;}
.yeb{bottom:232.995000px;}
.y2f{bottom:234.795000px;}
.yc4{bottom:238.140000px;}
.ybc{bottom:241.815000px;}
.y101{bottom:243.105000px;}
.y88{bottom:243.570000px;}
.yb4{bottom:245.595000px;}
.y8b{bottom:246.450000px;}
.yc5{bottom:255.990000px;}
.yea{bottom:256.755000px;}
.y2e{bottom:258.555000px;}
.y90{bottom:263.085000px;}
.y96{bottom:265.710000px;}
.y100{bottom:268.665000px;}
.yb3{bottom:269.355000px;}
.y8f{bottom:272.010000px;}
.yc6{bottom:273.855000px;}
.ye9{bottom:280.515000px;}
.y2d{bottom:282.315000px;}
.y8e{bottom:288.570000px;}
.yc7{bottom:291.705000px;}
.yb2{bottom:293.475000px;}
.y97{bottom:299.595000px;}
.ye8{bottom:304.275000px;}
.y2c{bottom:306.075000px;}
.y58{bottom:306.795000px;}
.yb1{bottom:317.235000px;}
.yce{bottom:320.070000px;}
.ye7{bottom:328.065000px;}
.y2b{bottom:330.225000px;}
.yb0{bottom:341.025000px;}
.ycd{bottom:345.630000px;}
.ye6{bottom:351.825000px;}
.y9d{bottom:353.595000px;}
.y2a{bottom:353.985000px;}
.y5c{bottom:356.145000px;}
.yaf{bottom:364.785000px;}
.ycc{bottom:371.190000px;}
.ye5{bottom:375.585000px;}
.y29{bottom:377.745000px;}
.y9c{bottom:379.155000px;}
.yae{bottom:388.545000px;}
.ye4{bottom:399.345000px;}
.y28{bottom:401.505000px;}
.y53{bottom:404.385000px;}
.y9b{bottom:404.715000px;}
.yad{bottom:412.305000px;}
.ye3{bottom:423.465000px;}
.y27{bottom:425.265000px;}
.yac{bottom:436.065000px;}
.ye2{bottom:447.270000px;}
.y26{bottom:449.070000px;}
.y56{bottom:453.030000px;}
.yba{bottom:455.760000px;}
.yab{bottom:455.910000px;}
.ye1{bottom:471.030000px;}
.y25{bottom:472.830000px;}
.ye0{bottom:494.790000px;}
.y24{bottom:496.590000px;}
.y50{bottom:501.270000px;}
.ydf{bottom:518.550000px;}
.y23{bottom:520.350000px;}
.yde{bottom:542.310000px;}
.y22{bottom:544.470000px;}
.y52{bottom:549.510000px;}
.ydd{bottom:566.070000px;}
.y21{bottom:568.230000px;}
.ydc{bottom:589.860000px;}
.y20{bottom:592.020000px;}
.y4a{bottom:598.140000px;}
.ydb{bottom:613.620000px;}
.y1f{bottom:615.780000px;}
.yda{bottom:637.740000px;}
.y1e{bottom:639.540000px;}
.y4d{bottom:646.380000px;}
.yd9{bottom:661.500000px;}
.y1d{bottom:663.300000px;}
.y80{bottom:671.580000px;}
.yd8{bottom:685.260000px;}
.y1c{bottom:687.060000px;}
.y42{bottom:694.620000px;}
.y7f{bottom:695.340000px;}
.yd7{bottom:708.690000px;}
.y1b{bottom:710.850000px;}
.y7e{bottom:719.130000px;}
.yd6{bottom:732.810000px;}
.y1a{bottom:734.970000px;}
.y7d{bottom:742.890000px;}
.yd5{bottom:756.570000px;}
.y19{bottom:758.370000px;}
.y7c{bottom:767.010000px;}
.yd4{bottom:780.330000px;}
.y18{bottom:782.490000px;}
.y7b{bottom:790.770000px;}
.yd3{bottom:804.090000px;}
.y17{bottom:806.250000px;}
.y7a{bottom:814.530000px;}
.yd2{bottom:828.255000px;}
.y16{bottom:830.055000px;}
.y79{bottom:838.335000px;}
.yd1{bottom:852.015000px;}
.y15{bottom:853.815000px;}
.y74{bottom:855.255000px;}
.yaa{bottom:866.055000px;}
.y41{bottom:869.295000px;}
.yd0{bottom:871.455000px;}
.yf0{bottom:871.560000px;}
.y14{bottom:877.575000px;}
.ya9{bottom:889.815000px;}
.y40{bottom:893.055000px;}
.y13{bottom:901.335000px;}
.y76{bottom:904.575000px;}
.ya8{bottom:913.575000px;}
.y3f{bottom:917.175000px;}
.y12{bottom:925.455000px;}
.ya7{bottom:937.335000px;}
.y3e{bottom:941.295000px;}
.y11{bottom:949.215000px;}
.ya6{bottom:961.125000px;}
.y3d{bottom:965.085000px;}
.y10{bottom:973.005000px;}
.y6d{bottom:976.605000px;}
.ya5{bottom:984.885000px;}
.y3c{bottom:988.845000px;}
.yf{bottom:996.405000px;}
.ya3{bottom:1001.805000px;}
.y3b{bottom:1012.605000px;}
.ye{bottom:1020.165000px;}
.y70{bottom:1025.925000px;}
.ya2{bottom:1026.645000px;}
.y3a{bottom:1036.365000px;}
.yd{bottom:1044.285000px;}
.y39{bottom:1060.125000px;}
.yc{bottom:1067.685000px;}
.y65{bottom:1074.525000px;}
.y9f{bottom:1074.885000px;}
.y38{bottom:1083.930000px;}
.yb{bottom:1091.490000px;}
.y37{bottom:1107.690000px;}
.ya{bottom:1117.770000px;}
.y68{bottom:1123.170000px;}
.y36{bottom:1131.810000px;}
.y9{bottom:1149.450000px;}
.y35{bottom:1155.570000px;}
.y4{bottom:1195.170000px;}
.y3{bottom:1210.680000px;}
.y2{bottom:1226.880000px;}
.y1{bottom:1246.320000px;}
.h22{height:24.120000px;}
.h5{height:27.000000px;}
.h1d{height:44.032500px;}
.h1c{height:44.148375px;}
.hc{height:47.520000px;}
.he{height:47.556000px;}
.h14{height:47.880000px;}
.h10{height:47.916000px;}
.h17{height:48.600000px;}
.h12{height:48.636000px;}
.h1f{height:48.667500px;}
.h26{height:48.783375px;}
.h16{height:50.273438px;}
.h7{height:53.302500px;}
.h4{height:55.147500px;}
.h3{height:66.757500px;}
.h20{height:67.207500px;}
.h21{height:67.323375px;}
.h24{height:69.532500px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h19{height:71.316000px;}
.h2{height:72.562500px;}
.h27{height:74.004654px;}
.h1e{height:74.572500px;}
.h25{height:75.832500px;}
.h29{height:91.432500px;}
.h1a{height:95.436000px;}
.hb{height:95.760000px;}
.hd{height:95.796000px;}
.hf{height:96.156000px;}
.h13{height:96.516000px;}
.h15{height:96.840000px;}
.h11{height:96.876000px;}
.h8{height:97.233750px;}
.h18{height:120.636000px;}
.ha{height:166.755000px;}
.h28{height:300.240000px;}
.h23{height:402.840000px;}
.h1b{height:436.320000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w7{width:93.996000px;}
.w8{width:101.556000px;}
.w5{width:102.996000px;}
.w4{width:104.076000px;}
.w9{width:114.876000px;}
.w6{width:122.472000px;}
.wa{width:132.156000px;}
.wd{width:162.390000px;}
.wc{width:162.435000px;}
.we{width:162.795000px;}
.wb{width:180.075000px;}
.w3{width:298.905000px;}
.wf{width:648.000000px;}
.w10{width:653.760000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x16{left:7.920000px;}
.x13{left:9.360000px;}
.x2a{left:33.516000px;}
.x8{left:39.270000px;}
.x28{left:41.724000px;}
.x27{left:48.708000px;}
.x26{left:55.365000px;}
.x2d{left:71.820000px;}
.x49{left:76.290000px;}
.x2f{left:85.710000px;}
.x3c{left:89.175000px;}
.x47{left:91.410000px;}
.x5{left:95.796000px;}
.x33{left:98.820000px;}
.x3b{left:100.335000px;}
.x2c{left:103.140000px;}
.xa{left:107.315987px;}
.x12{left:110.916000px;}
.x48{left:111.960000px;}
.x45{left:114.585000px;}
.x21{left:116.610000px;}
.x31{left:119.520000px;}
.x3f{left:122.400000px;}
.x11{left:124.235987px;}
.x3e{left:127.835987px;}
.x34{left:135.180000px;}
.x32{left:136.620000px;}
.x29{left:139.395000px;}
.x22{left:145.770000px;}
.xf{left:149.111987px;}
.x20{left:152.100000px;}
.x1e{left:160.770000px;}
.x44{left:168.765000px;}
.x40{left:170.205000px;}
.x42{left:183.525000px;}
.x3{left:190.154987px;}
.x2e{left:201.855000px;}
.x14{left:214.635000px;}
.x35{left:233.130000px;}
.xb{left:251.384987px;}
.x23{left:265.530000px;}
.x46{left:275.655000px;}
.x1b{left:277.305000px;}
.x3a{left:278.970000px;}
.x6{left:290.634000px;}
.x24{left:292.935000px;}
.x4a{left:297.435000px;}
.x2b{left:317.670000px;}
.xe{left:322.664987px;}
.x2{left:333.509987px;}
.x15{left:337.830000px;}
.x4{left:342.869987px;}
.xd{left:354.029987px;}
.x36{left:372.165000px;}
.x43{left:381.060000px;}
.x41{left:382.575000px;}
.x7{left:394.710000px;}
.x37{left:415.365000px;}
.x17{left:432.540000px;}
.x1c{left:440.460000px;}
.xc{left:446.579987px;}
.x9{left:498.780000px;}
.x38{left:511.890000px;}
.x25{left:517.110000px;}
.x18{left:534.810000px;}
.x4b{left:543.270000px;}
.x1f{left:549.030000px;}
.x39{left:550.050000px;}
.x1d{left:603.570000px;}
.x19{left:650.415000px;}
.x10{left:728.564987px;}
.x1a{left:744.044987px;}
.x3d{left:770.684987px;}
.x30{left:773.564987px;}
.x1{left:797.684987px;}
@media print{
.v1{vertical-align:-21.120000pt;}
.v3{vertical-align:-12.160000pt;}
.v4{vertical-align:-5.760000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:27.146667pt;}
.v5{vertical-align:40.586667pt;}
.v6{vertical-align:42.133333pt;}
.ls4{letter-spacing:-1.280000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:-0.412267pt;}
.ls6{letter-spacing:-0.405333pt;}
.ls7{letter-spacing:-0.340267pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsa{letter-spacing:47.488000pt;}
.ls8{letter-spacing:148.894720pt;}
.ws8{word-spacing:-53.760000pt;}
.ws10{word-spacing:-16.807168pt;}
.ws1{word-spacing:-16.000000pt;}
.ws3{word-spacing:-14.720000pt;}
.ws0{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.149760pt;}
.wse{word-spacing:-11.021568pt;}
.ws4{word-spacing:-10.992640pt;}
.ws2{word-spacing:0.000000pt;}
.ws9{word-spacing:344.515413pt;}
.wsd{word-spacing:349.902080pt;}
.wsa{word-spacing:352.992469pt;}
.wsc{word-spacing:361.368747pt;}
.wsb{word-spacing:373.848747pt;}
.ws6{word-spacing:528.509867pt;}
.ws5{word-spacing:624.225579pt;}
.wsf{word-spacing:655.391189pt;}
._27{margin-left:-6.147413pt;}
._5{margin-left:-3.805440pt;}
._1{margin-left:-2.188800pt;}
._0{margin-left:-1.118720pt;}
._2{width:1.070080pt;}
._3{width:2.231467pt;}
._e{width:3.730347pt;}
._10{width:5.086720pt;}
._11{width:6.017280pt;}
._f{width:7.141973pt;}
._13{width:8.637440pt;}
._14{width:9.545387pt;}
._16{width:10.534400pt;}
._15{width:11.453440pt;}
._1a{width:12.495360pt;}
._4{width:13.481387pt;}
._1b{width:14.491307pt;}
._2f{width:17.082453pt;}
._12{width:18.558293pt;}
._d{width:19.669333pt;}
._c{width:20.676693pt;}
._17{width:21.647360pt;}
._18{width:22.703360pt;}
._19{width:23.939413pt;}
._9{width:25.561173pt;}
._8{width:27.742720pt;}
._b{width:30.013440pt;}
._a{width:31.326720pt;}
._2c{width:32.436053pt;}
._21{width:34.255360pt;}
._1c{width:36.815360pt;}
._1d{width:38.481920pt;}
._7{width:39.581440pt;}
._6{width:40.768000pt;}
._29{width:51.166720pt;}
._1e{width:60.592640pt;}
._22{width:62.223360pt;}
._23{width:80.996693pt;}
._2d{width:85.972053pt;}
._2e{width:87.390720pt;}
._2b{width:99.523413pt;}
._24{width:104.734720pt;}
._1f{width:132.303360pt;}
._20{width:139.294720pt;}
._30{width:166.981120pt;}
._28{width:182.517803pt;}
._26{width:368.357547pt;}
._2a{width:395.755947pt;}
._25{width:459.047680pt;}
.fs2{font-size:48.640000pt;}
.fs4{font-size:48.768000pt;}
.fs5{font-size:53.760000pt;}
.fs8{font-size:53.888000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs7{font-size:74.368000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y4f{bottom:6.720000pt;}
.y49{bottom:6.746667pt;}
.ya1{bottom:6.760000pt;}
.ya4{bottom:7.040000pt;}
.y6c{bottom:7.080000pt;}
.y5e{bottom:7.680000pt;}
.y6{bottom:9.600000pt;}
.y7{bottom:9.920000pt;}
.y6a{bottom:10.280000pt;}
.y72{bottom:10.880000pt;}
.y9e{bottom:15.293333pt;}
.ycf{bottom:15.493333pt;}
.yff{bottom:19.813333pt;}
.y4e{bottom:27.840000pt;}
.y48{bottom:27.866667pt;}
.ya0{bottom:27.880000pt;}
.y85{bottom:28.154667pt;}
.y57{bottom:28.160000pt;}
.y6b{bottom:28.200000pt;}
.y73{bottom:28.800000pt;}
.y5d{bottom:28.826667pt;}
.y67{bottom:28.840000pt;}
.y5b{bottom:29.466667pt;}
.y64{bottom:31.040000pt;}
.y69{bottom:31.400000pt;}
.y71{bottom:32.000000pt;}
.yfd{bottom:39.746667pt;}
.y77{bottom:48.986667pt;}
.y84{bottom:49.274667pt;}
.y47{bottom:49.306667pt;}
.y4c{bottom:49.600000pt;}
.y62{bottom:49.914667pt;}
.y55{bottom:49.960000pt;}
.y9a{bottom:50.213333pt;}
.ycb{bottom:50.426667pt;}
.y6f{bottom:50.560000pt;}
.y5a{bottom:50.586667pt;}
.y8{bottom:50.880000pt;}
.yf1{bottom:52.800000pt;}
.y78{bottom:53.120000pt;}
.yf7{bottom:55.360000pt;}
.y105{bottom:55.586667pt;}
.y5{bottom:65.312000pt;}
.y98{bottom:70.146667pt;}
.y46{bottom:70.426667pt;}
.y83{bottom:70.434667pt;}
.yc9{bottom:70.626667pt;}
.y4b{bottom:70.720000pt;}
.y51{bottom:70.746667pt;}
.y61{bottom:71.034667pt;}
.y54{bottom:71.080000pt;}
.y66{bottom:71.400000pt;}
.y6e{bottom:71.680000pt;}
.y59{bottom:71.706667pt;}
.yf8{bottom:73.346667pt;}
.yf2{bottom:76.986667pt;}
.y104{bottom:78.080000pt;}
.yc8{bottom:85.026667pt;}
.y91{bottom:85.760000pt;}
.yf9{bottom:91.360000pt;}
.y45{bottom:91.546667pt;}
.y75{bottom:92.826667pt;}
.yf4{bottom:94.373333pt;}
.yfe{bottom:99.013333pt;}
.ybd{bottom:100.613333pt;}
.y60{bottom:100.832000pt;}
.y8d{bottom:101.893333pt;}
.y34{bottom:102.752000pt;}
.yf3{bottom:108.773333pt;}
.yfa{bottom:109.373333pt;}
.y44{bottom:112.666667pt;}
.yb9{bottom:112.672000pt;}
.y82{bottom:113.952000pt;}
.y92{bottom:115.840000pt;}
.ybe{bottom:116.480000pt;}
.y8c{bottom:116.613333pt;}
.yf5{bottom:121.986667pt;}
.yef{bottom:122.272000pt;}
.y33{bottom:124.192000pt;}
.yfb{bottom:127.360000pt;}
.ybf{bottom:132.346667pt;}
.yb8{bottom:133.786667pt;}
.y43{bottom:133.826667pt;}
.yf6{bottom:134.173333pt;}
.ybb{bottom:137.026667pt;}
.yee{bottom:143.386667pt;}
.y63{bottom:144.026667pt;}
.y32{bottom:145.306667pt;}
.yfc{bottom:145.373333pt;}
.y93{bottom:145.920000pt;}
.yc0{bottom:148.226667pt;}
.y8a{bottom:153.826667pt;}
.yb7{bottom:154.906667pt;}
.yc1{bottom:164.093333pt;}
.yed{bottom:164.506667pt;}
.y31{bottom:166.426667pt;}
.y103{bottom:170.653333pt;}
.y99{bottom:174.586667pt;}
.y94{bottom:176.026667pt;}
.yb6{bottom:176.066667pt;}
.y87{bottom:176.986667pt;}
.yca{bottom:178.693333pt;}
.yc2{bottom:179.973333pt;}
.yec{bottom:185.666667pt;}
.y5f{bottom:186.946667pt;}
.y30{bottom:187.586667pt;}
.y102{bottom:193.373333pt;}
.y89{bottom:194.786667pt;}
.yc3{bottom:195.813333pt;}
.yb5{bottom:197.186667pt;}
.y81{bottom:202.306667pt;}
.y86{bottom:202.560000pt;}
.y95{bottom:206.106667pt;}
.yeb{bottom:207.106667pt;}
.y2f{bottom:208.706667pt;}
.yc4{bottom:211.680000pt;}
.ybc{bottom:214.946667pt;}
.y101{bottom:216.093333pt;}
.y88{bottom:216.506667pt;}
.yb4{bottom:218.306667pt;}
.y8b{bottom:219.066667pt;}
.yc5{bottom:227.546667pt;}
.yea{bottom:228.226667pt;}
.y2e{bottom:229.826667pt;}
.y90{bottom:233.853333pt;}
.y96{bottom:236.186667pt;}
.y100{bottom:238.813333pt;}
.yb3{bottom:239.426667pt;}
.y8f{bottom:241.786667pt;}
.yc6{bottom:243.426667pt;}
.ye9{bottom:249.346667pt;}
.y2d{bottom:250.946667pt;}
.y8e{bottom:256.506667pt;}
.yc7{bottom:259.293333pt;}
.yb2{bottom:260.866667pt;}
.y97{bottom:266.306667pt;}
.ye8{bottom:270.466667pt;}
.y2c{bottom:272.066667pt;}
.y58{bottom:272.706667pt;}
.yb1{bottom:281.986667pt;}
.yce{bottom:284.506667pt;}
.ye7{bottom:291.613333pt;}
.y2b{bottom:293.533333pt;}
.yb0{bottom:303.133333pt;}
.ycd{bottom:307.226667pt;}
.ye6{bottom:312.733333pt;}
.y9d{bottom:314.306667pt;}
.y2a{bottom:314.653333pt;}
.y5c{bottom:316.573333pt;}
.yaf{bottom:324.253333pt;}
.ycc{bottom:329.946667pt;}
.ye5{bottom:333.853333pt;}
.y29{bottom:335.773333pt;}
.y9c{bottom:337.026667pt;}
.yae{bottom:345.373333pt;}
.ye4{bottom:354.973333pt;}
.y28{bottom:356.893333pt;}
.y53{bottom:359.453333pt;}
.y9b{bottom:359.746667pt;}
.yad{bottom:366.493333pt;}
.ye3{bottom:376.413333pt;}
.y27{bottom:378.013333pt;}
.yac{bottom:387.613333pt;}
.ye2{bottom:397.573333pt;}
.y26{bottom:399.173333pt;}
.y56{bottom:402.693333pt;}
.yba{bottom:405.120000pt;}
.yab{bottom:405.253333pt;}
.ye1{bottom:418.693333pt;}
.y25{bottom:420.293333pt;}
.ye0{bottom:439.813333pt;}
.y24{bottom:441.413333pt;}
.y50{bottom:445.573333pt;}
.ydf{bottom:460.933333pt;}
.y23{bottom:462.533333pt;}
.yde{bottom:482.053333pt;}
.y22{bottom:483.973333pt;}
.y52{bottom:488.453333pt;}
.ydd{bottom:503.173333pt;}
.y21{bottom:505.093333pt;}
.ydc{bottom:524.320000pt;}
.y20{bottom:526.240000pt;}
.y4a{bottom:531.680000pt;}
.ydb{bottom:545.440000pt;}
.y1f{bottom:547.360000pt;}
.yda{bottom:566.880000pt;}
.y1e{bottom:568.480000pt;}
.y4d{bottom:574.560000pt;}
.yd9{bottom:588.000000pt;}
.y1d{bottom:589.600000pt;}
.y80{bottom:596.960000pt;}
.yd8{bottom:609.120000pt;}
.y1c{bottom:610.720000pt;}
.y42{bottom:617.440000pt;}
.y7f{bottom:618.080000pt;}
.yd7{bottom:629.946667pt;}
.y1b{bottom:631.866667pt;}
.y7e{bottom:639.226667pt;}
.yd6{bottom:651.386667pt;}
.y1a{bottom:653.306667pt;}
.y7d{bottom:660.346667pt;}
.yd5{bottom:672.506667pt;}
.y19{bottom:674.106667pt;}
.y7c{bottom:681.786667pt;}
.yd4{bottom:693.626667pt;}
.y18{bottom:695.546667pt;}
.y7b{bottom:702.906667pt;}
.yd3{bottom:714.746667pt;}
.y17{bottom:716.666667pt;}
.y7a{bottom:724.026667pt;}
.yd2{bottom:736.226667pt;}
.y16{bottom:737.826667pt;}
.y79{bottom:745.186667pt;}
.yd1{bottom:757.346667pt;}
.y15{bottom:758.946667pt;}
.y74{bottom:760.226667pt;}
.yaa{bottom:769.826667pt;}
.y41{bottom:772.706667pt;}
.yd0{bottom:774.626667pt;}
.yf0{bottom:774.720000pt;}
.y14{bottom:780.066667pt;}
.ya9{bottom:790.946667pt;}
.y40{bottom:793.826667pt;}
.y13{bottom:801.186667pt;}
.y76{bottom:804.066667pt;}
.ya8{bottom:812.066667pt;}
.y3f{bottom:815.266667pt;}
.y12{bottom:822.626667pt;}
.ya7{bottom:833.186667pt;}
.y3e{bottom:836.706667pt;}
.y11{bottom:843.746667pt;}
.ya6{bottom:854.333333pt;}
.y3d{bottom:857.853333pt;}
.y10{bottom:864.893333pt;}
.y6d{bottom:868.093333pt;}
.ya5{bottom:875.453333pt;}
.y3c{bottom:878.973333pt;}
.yf{bottom:885.693333pt;}
.ya3{bottom:890.493333pt;}
.y3b{bottom:900.093333pt;}
.ye{bottom:906.813333pt;}
.y70{bottom:911.933333pt;}
.ya2{bottom:912.573333pt;}
.y3a{bottom:921.213333pt;}
.yd{bottom:928.253333pt;}
.y39{bottom:942.333333pt;}
.yc{bottom:949.053333pt;}
.y65{bottom:955.133333pt;}
.y9f{bottom:955.453333pt;}
.y38{bottom:963.493333pt;}
.yb{bottom:970.213333pt;}
.y37{bottom:984.613333pt;}
.ya{bottom:993.573333pt;}
.y68{bottom:998.373333pt;}
.y36{bottom:1006.053333pt;}
.y9{bottom:1021.733333pt;}
.y35{bottom:1027.173333pt;}
.y4{bottom:1062.373333pt;}
.y3{bottom:1076.160000pt;}
.y2{bottom:1090.560000pt;}
.y1{bottom:1107.840000pt;}
.h22{height:21.440000pt;}
.h5{height:24.000000pt;}
.h1d{height:39.140000pt;}
.h1c{height:39.243000pt;}
.hc{height:42.240000pt;}
.he{height:42.272000pt;}
.h14{height:42.560000pt;}
.h10{height:42.592000pt;}
.h17{height:43.200000pt;}
.h12{height:43.232000pt;}
.h1f{height:43.260000pt;}
.h26{height:43.363000pt;}
.h16{height:44.687500pt;}
.h7{height:47.380000pt;}
.h4{height:49.020000pt;}
.h3{height:59.340000pt;}
.h20{height:59.740000pt;}
.h21{height:59.843000pt;}
.h24{height:61.806667pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h19{height:63.392000pt;}
.h2{height:64.500000pt;}
.h27{height:65.781915pt;}
.h1e{height:66.286667pt;}
.h25{height:67.406667pt;}
.h29{height:81.273333pt;}
.h1a{height:84.832000pt;}
.hb{height:85.120000pt;}
.hd{height:85.152000pt;}
.hf{height:85.472000pt;}
.h13{height:85.792000pt;}
.h15{height:86.080000pt;}
.h11{height:86.112000pt;}
.h8{height:86.430000pt;}
.h18{height:107.232000pt;}
.ha{height:148.226667pt;}
.h28{height:266.880000pt;}
.h23{height:358.080000pt;}
.h1b{height:387.840000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w7{width:83.552000pt;}
.w8{width:90.272000pt;}
.w5{width:91.552000pt;}
.w4{width:92.512000pt;}
.w9{width:102.112000pt;}
.w6{width:108.864000pt;}
.wa{width:117.472000pt;}
.wd{width:144.346667pt;}
.wc{width:144.386667pt;}
.we{width:144.706667pt;}
.wb{width:160.066667pt;}
.w3{width:265.693333pt;}
.wf{width:576.000000pt;}
.w10{width:581.120000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x16{left:7.040000pt;}
.x13{left:8.320000pt;}
.x2a{left:29.792000pt;}
.x8{left:34.906667pt;}
.x28{left:37.088000pt;}
.x27{left:43.296000pt;}
.x26{left:49.213333pt;}
.x2d{left:63.840000pt;}
.x49{left:67.813333pt;}
.x2f{left:76.186667pt;}
.x3c{left:79.266667pt;}
.x47{left:81.253333pt;}
.x5{left:85.152000pt;}
.x33{left:87.840000pt;}
.x3b{left:89.186667pt;}
.x2c{left:91.680000pt;}
.xa{left:95.391988pt;}
.x12{left:98.592000pt;}
.x48{left:99.520000pt;}
.x45{left:101.853333pt;}
.x21{left:103.653333pt;}
.x31{left:106.240000pt;}
.x3f{left:108.800000pt;}
.x11{left:110.431988pt;}
.x3e{left:113.631988pt;}
.x34{left:120.160000pt;}
.x32{left:121.440000pt;}
.x29{left:123.906667pt;}
.x22{left:129.573333pt;}
.xf{left:132.543988pt;}
.x20{left:135.200000pt;}
.x1e{left:142.906667pt;}
.x44{left:150.013333pt;}
.x40{left:151.293333pt;}
.x42{left:163.133333pt;}
.x3{left:169.026655pt;}
.x2e{left:179.426667pt;}
.x14{left:190.786667pt;}
.x35{left:207.226667pt;}
.xb{left:223.453322pt;}
.x23{left:236.026667pt;}
.x46{left:245.026667pt;}
.x1b{left:246.493333pt;}
.x3a{left:247.973333pt;}
.x6{left:258.341333pt;}
.x24{left:260.386667pt;}
.x4a{left:264.386667pt;}
.x2b{left:282.373333pt;}
.xe{left:286.813322pt;}
.x2{left:296.453322pt;}
.x15{left:300.293333pt;}
.x4{left:304.773322pt;}
.xd{left:314.693322pt;}
.x36{left:330.813333pt;}
.x43{left:338.720000pt;}
.x41{left:340.066667pt;}
.x7{left:350.853333pt;}
.x37{left:369.213333pt;}
.x17{left:384.480000pt;}
.x1c{left:391.520000pt;}
.xc{left:396.959988pt;}
.x9{left:443.360000pt;}
.x38{left:455.013333pt;}
.x25{left:459.653333pt;}
.x18{left:475.386667pt;}
.x4b{left:482.906667pt;}
.x1f{left:488.026667pt;}
.x39{left:488.933333pt;}
.x1d{left:536.506667pt;}
.x19{left:578.146667pt;}
.x10{left:647.613322pt;}
.x1a{left:661.373322pt;}
.x3d{left:685.053322pt;}
.x30{left:687.613322pt;}
.x1{left:709.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; }
  