
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b75c38e67679d00b66dde38e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_37212bafd47b576bdd8c355c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_4a9942220b52acbb59e95f83.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.736816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_847aa3820e4336c2f63ca842.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f14d852952997edd0c7773ac.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dd7bfcf636dc141f35175124.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f4a1e60a646ca7f8565d473d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.966309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_58985701b4c755d552b4c977.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_afe6c7a89523917083361ca2.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v3{vertical-align:-72.720000px;}
.v4{vertical-align:-68.580000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls4{letter-spacing:-3.240000px;}
.ls19{letter-spacing:-1.386000px;}
.ls1a{letter-spacing:-1.080000px;}
.ls7{letter-spacing:-0.810000px;}
.ls1f{letter-spacing:-0.666000px;}
.ls21{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.249000px;}
.ls8{letter-spacing:-0.226200px;}
.ls1c{letter-spacing:-0.223200px;}
.lse{letter-spacing:-0.108000px;}
.ls20{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.089400px;}
.lsd{letter-spacing:-0.072000px;}
.lsb{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.053280px;}
.ls1d{letter-spacing:0.106800px;}
.ls1e{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.259800px;}
.ls2{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.460200px;}
.lsa{letter-spacing:0.666000px;}
.ls12{letter-spacing:0.720000px;}
.lsf{letter-spacing:0.840000px;}
.ls17{letter-spacing:0.924000px;}
.ls10{letter-spacing:1.620000px;}
.ls13{letter-spacing:4.500000px;}
.ls11{letter-spacing:6.660000px;}
.ls16{letter-spacing:25.380000px;}
.ls15{letter-spacing:37.620000px;}
.ls18{letter-spacing:46.026720px;}
.ls14{letter-spacing:64.026720px;}
.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;}
}
.ws10{word-spacing:-59.760000px;}
.ws3{word-spacing:-21.060000px;}
.ws2{word-spacing:-17.820000px;}
.ws11{word-spacing:-15.864000px;}
.wsa{word-spacing:-15.606000px;}
.ws6{word-spacing:-15.400200px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.ws19{word-spacing:-15.093600px;}
.ws15{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.993280px;}
.ws0{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.886720px;}
.ws17{word-spacing:-14.833200px;}
.ws14{word-spacing:-14.691000px;}
.ws18{word-spacing:-14.580000px;}
.ws16{word-spacing:-14.274000px;}
.ws13{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.554000px;}
.wse{word-spacing:-13.392000px;}
.ws8{word-spacing:-10.440000px;}
.ws9{word-spacing:-10.350600px;}
.ws7{word-spacing:-10.213800px;}
.ws4{word-spacing:-9.720000px;}
.wsd{word-spacing:-8.928000px;}
.wsf{word-spacing:0.000000px;}
._7{margin-left:-3.996720px;}
._6{margin-left:-2.948400px;}
._0{margin-left:-1.093680px;}
._1{width:1.374480px;}
._2{width:2.851680px;}
._e{width:4.780800px;}
._b{width:6.534000px;}
._a{width:7.884000px;}
._d{width:9.014880px;}
._9{width:10.055520px;}
._11{width:11.067120px;}
._8{width:12.163680px;}
._c{width:13.413600px;}
._f{width:16.713600px;}
._10{width:18.284400px;}
._1a{width:19.686720px;}
._16{width:20.736720px;}
._19{width:21.991680px;}
._1d{width:24.264480px;}
._15{width:25.696800px;}
._20{width:31.010160px;}
._17{width:33.047280px;}
._18{width:34.986720px;}
._1b{width:37.879680px;}
._1c{width:38.952240px;}
._14{width:40.075200px;}
._13{width:41.832000px;}
._12{width:62.347680px;}
._1e{width:227.877600px;}
._1f{width:281.934480px;}
._4{width:396.269760px;}
._5{width:978.089760px;}
._3{width:1389.185760px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fsd{font-size:18.000000px;}
.fs3{font-size:23.760000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsc{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.ycc{bottom:3.240000px;}
.y92{bottom:3.420000px;}
.y43{bottom:3.585000px;}
.y5{bottom:3.780000px;}
.y5b{bottom:5.010000px;}
.y2{bottom:8.280000px;}
.y4d{bottom:14.040000px;}
.y59{bottom:17.100000px;}
.yd3{bottom:20.520000px;}
.yce{bottom:20.700000px;}
.y42{bottom:20.865000px;}
.yd4{bottom:20.880000px;}
.y4{bottom:21.060000px;}
.y4c{bottom:21.780000px;}
.y58{bottom:35.640000px;}
.y41{bottom:38.145000px;}
.ycf{bottom:38.160000px;}
.yd1{bottom:38.340000px;}
.y3{bottom:44.670000px;}
.y4b{bottom:51.840000px;}
.y57{bottom:54.180000px;}
.y40{bottom:55.425000px;}
.y7{bottom:57.600000px;}
.y4a{bottom:63.360000px;}
.y3f{bottom:72.705000px;}
.y56{bottom:75.960000px;}
.y49{bottom:76.500000px;}
.y48{bottom:89.460000px;}
.y3e{bottom:89.805000px;}
.y55{bottom:94.860000px;}
.y44{bottom:99.000000px;}
.y3d{bottom:107.085000px;}
.y8f{bottom:107.460000px;}
.y54{bottom:110.520000px;}
.y47{bottom:111.270000px;}
.yc8{bottom:112.860000px;}
.y53{bottom:119.910000px;}
.y3c{bottom:124.365000px;}
.yc7{bottom:130.140000px;}
.y52{bottom:138.810000px;}
.y8e{bottom:141.120000px;}
.y3b{bottom:141.690000px;}
.yc6{bottom:147.240000px;}
.y51{bottom:154.470000px;}
.y3a{bottom:158.970000px;}
.y8d{bottom:161.280000px;}
.yc5{bottom:164.520000px;}
.y50{bottom:169.950000px;}
.y46{bottom:173.550000px;}
.y39{bottom:176.250000px;}
.yc4{bottom:181.800000px;}
.y45{bottom:183.990000px;}
.y4f{bottom:185.430000px;}
.y8c{bottom:187.740000px;}
.y38{bottom:193.350000px;}
.yc3{bottom:199.080000px;}
.y4e{bottom:200.550000px;}
.y8b{bottom:205.020000px;}
.y37{bottom:210.630000px;}
.yc2{bottom:216.390000px;}
.y8a{bottom:222.330000px;}
.y36{bottom:227.910000px;}
.yc1{bottom:233.670000px;}
.y89{bottom:239.790000px;}
.y35{bottom:245.190000px;}
.yc0{bottom:250.770000px;}
.y34{bottom:262.470000px;}
.y88{bottom:266.430000px;}
.ybf{bottom:268.050000px;}
.y33{bottom:279.750000px;}
.y87{bottom:283.710000px;}
.ybe{bottom:285.330000px;}
.y32{bottom:296.850000px;}
.y86{bottom:302.070000px;}
.ybd{bottom:302.610000px;}
.y1e{bottom:307.650000px;}
.y10{bottom:313.065000px;}
.y31{bottom:314.130000px;}
.y85{bottom:319.170000px;}
.ybc{bottom:319.890000px;}
.y30{bottom:331.410000px;}
.y1d{bottom:331.770000px;}
.ybb{bottom:336.990000px;}
.y84{bottom:337.890000px;}
.y2f{bottom:348.690000px;}
.yba{bottom:354.270000px;}
.y1c{bottom:355.890000px;}
.y83{bottom:364.530000px;}
.y2e{bottom:365.970000px;}
.yb9{bottom:371.550000px;}
.y1b{bottom:380.040000px;}
.y82{bottom:381.630000px;}
.y2d{bottom:383.100000px;}
.yb8{bottom:388.830000px;}
.y81{bottom:398.910000px;}
.y2c{bottom:400.380000px;}
.y1a{bottom:404.340000px;}
.yb7{bottom:406.110000px;}
.y80{bottom:416.550000px;}
.y2b{bottom:417.660000px;}
.yed{bottom:422.490000px;}
.yb6{bottom:423.390000px;}
.y19{bottom:428.460000px;}
.y2a{bottom:434.940000px;}
.yec{bottom:439.770000px;}
.yb5{bottom:440.490000px;}
.y7f{bottom:443.190000px;}
.y29{bottom:451.860000px;}
.y18{bottom:452.580000px;}
.yeb{bottom:457.095000px;}
.yb4{bottom:457.815000px;}
.y7e{bottom:460.695000px;}
.yea{bottom:474.375000px;}
.yb3{bottom:475.095000px;}
.y17{bottom:476.700000px;}
.y28{bottom:479.220000px;}
.y7d{bottom:487.335000px;}
.ye9{bottom:491.655000px;}
.yb2{bottom:492.375000px;}
.y27{bottom:494.700000px;}
.y16{bottom:500.820000px;}
.y7c{bottom:504.615000px;}
.ye8{bottom:508.755000px;}
.yb1{bottom:509.655000px;}
.y26{bottom:510.180000px;}
.y7b{bottom:522.795000px;}
.y15{bottom:524.940000px;}
.y25{bottom:525.840000px;}
.ye7{bottom:526.035000px;}
.yb0{bottom:526.935000px;}
.y24{bottom:541.320000px;}
.y7a{bottom:541.515000px;}
.ye6{bottom:543.315000px;}
.yaf{bottom:544.035000px;}
.y14{bottom:549.240000px;}
.y23{bottom:556.800000px;}
.ye5{bottom:560.595000px;}
.yae{bottom:561.315000px;}
.y79{bottom:568.155000px;}
.y22{bottom:572.280000px;}
.y13{bottom:573.360000px;}
.ye4{bottom:577.875000px;}
.yad{bottom:578.595000px;}
.y78{bottom:585.255000px;}
.y21{bottom:587.940000px;}
.ye3{bottom:595.335000px;}
.yac{bottom:595.875000px;}
.y12{bottom:597.480000px;}
.y77{bottom:602.535000px;}
.y20{bottom:603.465000px;}
.yab{bottom:613.155000px;}
.y1f{bottom:618.585000px;}
.y76{bottom:619.815000px;}
.y11{bottom:621.645000px;}
.ye2{bottom:621.975000px;}
.yaa{bottom:630.435000px;}
.y75{bottom:637.095000px;}
.ye1{bottom:639.255000px;}
.ya9{bottom:647.535000px;}
.y74{bottom:654.375000px;}
.ye0{bottom:656.535000px;}
.ya8{bottom:665.175000px;}
.y73{bottom:671.655000px;}
.ydf{bottom:673.635000px;}
.ya7{bottom:682.845000px;}
.y72{bottom:689.145000px;}
.yde{bottom:690.945000px;}
.ya6{bottom:700.665000px;}
.ydd{bottom:708.225000px;}
.y71{bottom:715.785000px;}
.ya5{bottom:719.025000px;}
.ydc{bottom:725.685000px;}
.y70{bottom:733.065000px;}
.ya4{bottom:738.825000px;}
.y6f{bottom:750.165000px;}
.ydb{bottom:752.325000px;}
.ya3{bottom:765.285000px;}
.y6e{bottom:767.445000px;}
.yda{bottom:770.685000px;}
.ya2{bottom:780.045000px;}
.y6d{bottom:784.725000px;}
.yd9{bottom:789.045000px;}
.y6c{bottom:802.005000px;}
.ya1{bottom:802.725000px;}
.yd8{bottom:807.405000px;}
.y6b{bottom:819.285000px;}
.ya0{bottom:820.725000px;}
.yd7{bottom:825.585000px;}
.y6a{bottom:836.565000px;}
.y9f{bottom:838.725000px;}
.yd6{bottom:845.025000px;}
.y69{bottom:853.665000px;}
.y9e{bottom:856.725000px;}
.yd5{bottom:868.605000px;}
.y68{bottom:870.945000px;}
.y9d{bottom:874.725000px;}
.y67{bottom:888.225000px;}
.y9c{bottom:893.805000px;}
.y66{bottom:905.505000px;}
.y9b{bottom:920.130000px;}
.yd2{bottom:921.210000px;}
.y65{bottom:922.830000px;}
.y9a{bottom:937.410000px;}
.y64{bottom:940.110000px;}
.yf{bottom:946.950000px;}
.y99{bottom:951.990000px;}
.ye{bottom:953.610000px;}
.y98{bottom:956.670000px;}
.y63{bottom:957.210000px;}
.yd0{bottom:973.590000px;}
.y62{bottom:974.490000px;}
.y97{bottom:974.670000px;}
.yd{bottom:977.190000px;}
.y61{bottom:991.770000px;}
.y96{bottom:992.670000px;}
.yc{bottom:995.550000px;}
.yb{bottom:1008.150000px;}
.y60{bottom:1009.050000px;}
.y95{bottom:1010.670000px;}
.ycd{bottom:1026.150000px;}
.y5f{bottom:1026.330000px;}
.y94{bottom:1028.670000px;}
.ya{bottom:1035.690000px;}
.y5e{bottom:1043.610000px;}
.y93{bottom:1046.670000px;}
.y9{bottom:1059.810000px;}
.y5d{bottom:1061.070000px;}
.y91{bottom:1064.670000px;}
.ycb{bottom:1078.710000px;}
.y8{bottom:1088.250000px;}
.y5a{bottom:1091.700000px;}
.yca{bottom:1097.610000px;}
.yc9{bottom:1105.890000px;}
.y90{bottom:1106.070000px;}
.y5c{bottom:1106.250000px;}
.y6{bottom:1121.370000px;}
.y1{bottom:1126.950000px;}
.hd{height:4.165313px;}
.h17{height:5.650313px;}
.h20{height:17.085000px;}
.h1c{height:17.265000px;}
.h1f{height:17.280000px;}
.h1d{height:17.666016px;}
.h1e{height:18.140625px;}
.h7{height:23.632383px;}
.h19{height:27.540000px;}
.h15{height:29.678906px;}
.h14{height:35.332031px;}
.hc{height:38.158594px;}
.h10{height:40.985156px;}
.h12{height:41.726953px;}
.hf{height:42.086250px;}
.h21{height:51.645000px;}
.h22{height:51.825000px;}
.h23{height:51.862500px;}
.h11{height:52.971680px;}
.h16{height:54.421875px;}
.h8{height:57.324375px;}
.h18{height:58.621992px;}
.h5{height:58.651172px;}
.h9{height:59.436914px;}
.h6{height:59.439023px;}
.hb{height:60.226875px;}
.h1b{height:61.423863px;}
.h1a{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:81.570000px;}
.ha{height:84.898125px;}
.h4{height:117.180000px;}
.h13{height:213.150000px;}
.he{height:631.170000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w9{width:104.781000px;}
.wb{width:115.380000px;}
.w8{width:129.456000px;}
.w4{width:132.651000px;}
.wd{width:134.661000px;}
.wa{width:144.741000px;}
.wc{width:146.016000px;}
.we{width:149.031000px;}
.w6{width:162.720000px;}
.w7{width:167.595000px;}
.wf{width:269.340000px;}
.w10{width:280.635000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3d{left:1.431000px;}
.x26{left:3.420000px;}
.x20{left:6.876000px;}
.x18{left:8.085000px;}
.x3b{left:10.965000px;}
.x4{left:12.765000px;}
.x28{left:14.205000px;}
.x15{left:16.911000px;}
.x5{left:18.885000px;}
.x35{left:21.951000px;}
.x16{left:23.391000px;}
.x1c{left:29.151000px;}
.x24{left:31.170000px;}
.x2f{left:32.385000px;}
.x2c{left:34.185000px;}
.x6{left:35.985000px;}
.x29{left:39.045000px;}
.x34{left:40.485000px;}
.x2a{left:42.645000px;}
.xf{left:43.731000px;}
.x3a{left:45.210000px;}
.x1b{left:47.691000px;}
.x10{left:50.751000px;}
.x2b{left:54.030000px;}
.xe{left:55.071000px;}
.x1e{left:57.051000px;}
.x33{left:60.150000px;}
.x19{left:62.130000px;}
.x1d{left:66.225000px;}
.x12{left:67.485000px;}
.x1{left:78.300000px;}
.x14{left:79.545000px;}
.x13{left:83.685000px;}
.x7{left:86.436000px;}
.x37{left:88.770000px;}
.x2{left:95.790000px;}
.x1f{left:102.765000px;}
.x3c{left:104.970000px;}
.x1a{left:106.725000px;}
.x39{left:111.810000px;}
.x22{left:113.436000px;}
.x11{left:124.545000px;}
.x21{left:140.436000px;}
.x2e{left:175.185000px;}
.x3{left:182.385000px;}
.x17{left:219.105000px;}
.x23{left:245.025000px;}
.x36{left:246.105000px;}
.x30{left:320.655000px;}
.xa{left:374.835000px;}
.xb{left:383.835000px;}
.x25{left:413.355000px;}
.x31{left:436.755000px;}
.x2d{left:446.685000px;}
.x38{left:516.360000px;}
.x9{left:529.485000px;}
.x27{left:543.540000px;}
.x32{left:583.500000px;}
.xc{left:591.585000px;}
.x8{left:766.050000px;}
.xd{left:806.940000px;}
@media print{
.v3{vertical-align:-64.640000pt;}
.v4{vertical-align:-60.960000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls4{letter-spacing:-2.880000pt;}
.ls19{letter-spacing:-1.232000pt;}
.ls1a{letter-spacing:-0.960000pt;}
.ls7{letter-spacing:-0.720000pt;}
.ls1f{letter-spacing:-0.592000pt;}
.ls21{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.221333pt;}
.ls8{letter-spacing:-0.201067pt;}
.ls1c{letter-spacing:-0.198400pt;}
.lse{letter-spacing:-0.096000pt;}
.ls20{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.079467pt;}
.lsd{letter-spacing:-0.064000pt;}
.lsb{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.047360pt;}
.ls1d{letter-spacing:0.094933pt;}
.ls1e{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.230933pt;}
.ls2{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.409067pt;}
.lsa{letter-spacing:0.592000pt;}
.ls12{letter-spacing:0.640000pt;}
.lsf{letter-spacing:0.746667pt;}
.ls17{letter-spacing:0.821333pt;}
.ls10{letter-spacing:1.440000pt;}
.ls13{letter-spacing:4.000000pt;}
.ls11{letter-spacing:5.920000pt;}
.ls16{letter-spacing:22.560000pt;}
.ls15{letter-spacing:33.440000pt;}
.ls18{letter-spacing:40.912640pt;}
.ls14{letter-spacing:56.912640pt;}
.ws10{word-spacing:-53.120000pt;}
.ws3{word-spacing:-18.720000pt;}
.ws2{word-spacing:-15.840000pt;}
.ws11{word-spacing:-14.101333pt;}
.wsa{word-spacing:-13.872000pt;}
.ws6{word-spacing:-13.689067pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.ws19{word-spacing:-13.416533pt;}
.ws15{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.327360pt;}
.ws0{word-spacing:-13.280000pt;}
.wsb{word-spacing:-13.232640pt;}
.ws17{word-spacing:-13.185067pt;}
.ws14{word-spacing:-13.058667pt;}
.ws18{word-spacing:-12.960000pt;}
.ws16{word-spacing:-12.688000pt;}
.ws13{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.048000pt;}
.wse{word-spacing:-11.904000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws9{word-spacing:-9.200533pt;}
.ws7{word-spacing:-9.078933pt;}
.ws4{word-spacing:-8.640000pt;}
.wsd{word-spacing:-7.936000pt;}
.wsf{word-spacing:0.000000pt;}
._7{margin-left:-3.552640pt;}
._6{margin-left:-2.620800pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.221760pt;}
._2{width:2.534827pt;}
._e{width:4.249600pt;}
._b{width:5.808000pt;}
._a{width:7.008000pt;}
._d{width:8.013227pt;}
._9{width:8.938240pt;}
._11{width:9.837440pt;}
._8{width:10.812160pt;}
._c{width:11.923200pt;}
._f{width:14.856533pt;}
._10{width:16.252800pt;}
._1a{width:17.499307pt;}
._16{width:18.432640pt;}
._19{width:19.548160pt;}
._1d{width:21.568427pt;}
._15{width:22.841600pt;}
._20{width:27.564587pt;}
._17{width:29.375360pt;}
._18{width:31.099307pt;}
._1b{width:33.670827pt;}
._1c{width:34.624213pt;}
._14{width:35.622400pt;}
._13{width:37.184000pt;}
._12{width:55.420160pt;}
._1e{width:202.557867pt;}
._1f{width:250.608427pt;}
._4{width:352.239787pt;}
._5{width:869.413120pt;}
._3{width:1234.831787pt;}
.fs7{font-size:5.120000pt;}
.fsd{font-size:16.000000pt;}
.fs3{font-size:21.120000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsc{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.ycc{bottom:2.880000pt;}
.y92{bottom:3.040000pt;}
.y43{bottom:3.186667pt;}
.y5{bottom:3.360000pt;}
.y5b{bottom:4.453333pt;}
.y2{bottom:7.360000pt;}
.y4d{bottom:12.480000pt;}
.y59{bottom:15.200000pt;}
.yd3{bottom:18.240000pt;}
.yce{bottom:18.400000pt;}
.y42{bottom:18.546667pt;}
.yd4{bottom:18.560000pt;}
.y4{bottom:18.720000pt;}
.y4c{bottom:19.360000pt;}
.y58{bottom:31.680000pt;}
.y41{bottom:33.906667pt;}
.ycf{bottom:33.920000pt;}
.yd1{bottom:34.080000pt;}
.y3{bottom:39.706667pt;}
.y4b{bottom:46.080000pt;}
.y57{bottom:48.160000pt;}
.y40{bottom:49.266667pt;}
.y7{bottom:51.200000pt;}
.y4a{bottom:56.320000pt;}
.y3f{bottom:64.626667pt;}
.y56{bottom:67.520000pt;}
.y49{bottom:68.000000pt;}
.y48{bottom:79.520000pt;}
.y3e{bottom:79.826667pt;}
.y55{bottom:84.320000pt;}
.y44{bottom:88.000000pt;}
.y3d{bottom:95.186667pt;}
.y8f{bottom:95.520000pt;}
.y54{bottom:98.240000pt;}
.y47{bottom:98.906667pt;}
.yc8{bottom:100.320000pt;}
.y53{bottom:106.586667pt;}
.y3c{bottom:110.546667pt;}
.yc7{bottom:115.680000pt;}
.y52{bottom:123.386667pt;}
.y8e{bottom:125.440000pt;}
.y3b{bottom:125.946667pt;}
.yc6{bottom:130.880000pt;}
.y51{bottom:137.306667pt;}
.y3a{bottom:141.306667pt;}
.y8d{bottom:143.360000pt;}
.yc5{bottom:146.240000pt;}
.y50{bottom:151.066667pt;}
.y46{bottom:154.266667pt;}
.y39{bottom:156.666667pt;}
.yc4{bottom:161.600000pt;}
.y45{bottom:163.546667pt;}
.y4f{bottom:164.826667pt;}
.y8c{bottom:166.880000pt;}
.y38{bottom:171.866667pt;}
.yc3{bottom:176.960000pt;}
.y4e{bottom:178.266667pt;}
.y8b{bottom:182.240000pt;}
.y37{bottom:187.226667pt;}
.yc2{bottom:192.346667pt;}
.y8a{bottom:197.626667pt;}
.y36{bottom:202.586667pt;}
.yc1{bottom:207.706667pt;}
.y89{bottom:213.146667pt;}
.y35{bottom:217.946667pt;}
.yc0{bottom:222.906667pt;}
.y34{bottom:233.306667pt;}
.y88{bottom:236.826667pt;}
.ybf{bottom:238.266667pt;}
.y33{bottom:248.666667pt;}
.y87{bottom:252.186667pt;}
.ybe{bottom:253.626667pt;}
.y32{bottom:263.866667pt;}
.y86{bottom:268.506667pt;}
.ybd{bottom:268.986667pt;}
.y1e{bottom:273.466667pt;}
.y10{bottom:278.280000pt;}
.y31{bottom:279.226667pt;}
.y85{bottom:283.706667pt;}
.ybc{bottom:284.346667pt;}
.y30{bottom:294.586667pt;}
.y1d{bottom:294.906667pt;}
.ybb{bottom:299.546667pt;}
.y84{bottom:300.346667pt;}
.y2f{bottom:309.946667pt;}
.yba{bottom:314.906667pt;}
.y1c{bottom:316.346667pt;}
.y83{bottom:324.026667pt;}
.y2e{bottom:325.306667pt;}
.yb9{bottom:330.266667pt;}
.y1b{bottom:337.813333pt;}
.y82{bottom:339.226667pt;}
.y2d{bottom:340.533333pt;}
.yb8{bottom:345.626667pt;}
.y81{bottom:354.586667pt;}
.y2c{bottom:355.893333pt;}
.y1a{bottom:359.413333pt;}
.yb7{bottom:360.986667pt;}
.y80{bottom:370.266667pt;}
.y2b{bottom:371.253333pt;}
.yed{bottom:375.546667pt;}
.yb6{bottom:376.346667pt;}
.y19{bottom:380.853333pt;}
.y2a{bottom:386.613333pt;}
.yec{bottom:390.906667pt;}
.yb5{bottom:391.546667pt;}
.y7f{bottom:393.946667pt;}
.y29{bottom:401.653333pt;}
.y18{bottom:402.293333pt;}
.yeb{bottom:406.306667pt;}
.yb4{bottom:406.946667pt;}
.y7e{bottom:409.506667pt;}
.yea{bottom:421.666667pt;}
.yb3{bottom:422.306667pt;}
.y17{bottom:423.733333pt;}
.y28{bottom:425.973333pt;}
.y7d{bottom:433.186667pt;}
.ye9{bottom:437.026667pt;}
.yb2{bottom:437.666667pt;}
.y27{bottom:439.733333pt;}
.y16{bottom:445.173333pt;}
.y7c{bottom:448.546667pt;}
.ye8{bottom:452.226667pt;}
.yb1{bottom:453.026667pt;}
.y26{bottom:453.493333pt;}
.y7b{bottom:464.706667pt;}
.y15{bottom:466.613333pt;}
.y25{bottom:467.413333pt;}
.ye7{bottom:467.586667pt;}
.yb0{bottom:468.386667pt;}
.y24{bottom:481.173333pt;}
.y7a{bottom:481.346667pt;}
.ye6{bottom:482.946667pt;}
.yaf{bottom:483.586667pt;}
.y14{bottom:488.213333pt;}
.y23{bottom:494.933333pt;}
.ye5{bottom:498.306667pt;}
.yae{bottom:498.946667pt;}
.y79{bottom:505.026667pt;}
.y22{bottom:508.693333pt;}
.y13{bottom:509.653333pt;}
.ye4{bottom:513.666667pt;}
.yad{bottom:514.306667pt;}
.y78{bottom:520.226667pt;}
.y21{bottom:522.613333pt;}
.ye3{bottom:529.186667pt;}
.yac{bottom:529.666667pt;}
.y12{bottom:531.093333pt;}
.y77{bottom:535.586667pt;}
.y20{bottom:536.413333pt;}
.yab{bottom:545.026667pt;}
.y1f{bottom:549.853333pt;}
.y76{bottom:550.946667pt;}
.y11{bottom:552.573333pt;}
.ye2{bottom:552.866667pt;}
.yaa{bottom:560.386667pt;}
.y75{bottom:566.306667pt;}
.ye1{bottom:568.226667pt;}
.ya9{bottom:575.586667pt;}
.y74{bottom:581.666667pt;}
.ye0{bottom:583.586667pt;}
.ya8{bottom:591.266667pt;}
.y73{bottom:597.026667pt;}
.ydf{bottom:598.786667pt;}
.ya7{bottom:606.973333pt;}
.y72{bottom:612.573333pt;}
.yde{bottom:614.173333pt;}
.ya6{bottom:622.813333pt;}
.ydd{bottom:629.533333pt;}
.y71{bottom:636.253333pt;}
.ya5{bottom:639.133333pt;}
.ydc{bottom:645.053333pt;}
.y70{bottom:651.613333pt;}
.ya4{bottom:656.733333pt;}
.y6f{bottom:666.813333pt;}
.ydb{bottom:668.733333pt;}
.ya3{bottom:680.253333pt;}
.y6e{bottom:682.173333pt;}
.yda{bottom:685.053333pt;}
.ya2{bottom:693.373333pt;}
.y6d{bottom:697.533333pt;}
.yd9{bottom:701.373333pt;}
.y6c{bottom:712.893333pt;}
.ya1{bottom:713.533333pt;}
.yd8{bottom:717.693333pt;}
.y6b{bottom:728.253333pt;}
.ya0{bottom:729.533333pt;}
.yd7{bottom:733.853333pt;}
.y6a{bottom:743.613333pt;}
.y9f{bottom:745.533333pt;}
.yd6{bottom:751.133333pt;}
.y69{bottom:758.813333pt;}
.y9e{bottom:761.533333pt;}
.yd5{bottom:772.093333pt;}
.y68{bottom:774.173333pt;}
.y9d{bottom:777.533333pt;}
.y67{bottom:789.533333pt;}
.y9c{bottom:794.493333pt;}
.y66{bottom:804.893333pt;}
.y9b{bottom:817.893333pt;}
.yd2{bottom:818.853333pt;}
.y65{bottom:820.293333pt;}
.y9a{bottom:833.253333pt;}
.y64{bottom:835.653333pt;}
.yf{bottom:841.733333pt;}
.y99{bottom:846.213333pt;}
.ye{bottom:847.653333pt;}
.y98{bottom:850.373333pt;}
.y63{bottom:850.853333pt;}
.yd0{bottom:865.413333pt;}
.y62{bottom:866.213333pt;}
.y97{bottom:866.373333pt;}
.yd{bottom:868.613333pt;}
.y61{bottom:881.573333pt;}
.y96{bottom:882.373333pt;}
.yc{bottom:884.933333pt;}
.yb{bottom:896.133333pt;}
.y60{bottom:896.933333pt;}
.y95{bottom:898.373333pt;}
.ycd{bottom:912.133333pt;}
.y5f{bottom:912.293333pt;}
.y94{bottom:914.373333pt;}
.ya{bottom:920.613333pt;}
.y5e{bottom:927.653333pt;}
.y93{bottom:930.373333pt;}
.y9{bottom:942.053333pt;}
.y5d{bottom:943.173333pt;}
.y91{bottom:946.373333pt;}
.ycb{bottom:958.853333pt;}
.y8{bottom:967.333333pt;}
.y5a{bottom:970.400000pt;}
.yca{bottom:975.653333pt;}
.yc9{bottom:983.013333pt;}
.y90{bottom:983.173333pt;}
.y5c{bottom:983.333333pt;}
.y6{bottom:996.773333pt;}
.y1{bottom:1001.733333pt;}
.hd{height:3.702500pt;}
.h17{height:5.022500pt;}
.h20{height:15.186667pt;}
.h1c{height:15.346667pt;}
.h1f{height:15.360000pt;}
.h1d{height:15.703125pt;}
.h1e{height:16.125000pt;}
.h7{height:21.006562pt;}
.h19{height:24.480000pt;}
.h15{height:26.381250pt;}
.h14{height:31.406250pt;}
.hc{height:33.918750pt;}
.h10{height:36.431250pt;}
.h12{height:37.090625pt;}
.hf{height:37.410000pt;}
.h21{height:45.906667pt;}
.h22{height:46.066667pt;}
.h23{height:46.100000pt;}
.h11{height:47.085938pt;}
.h16{height:48.375000pt;}
.h8{height:50.955000pt;}
.h18{height:52.108438pt;}
.h5{height:52.134375pt;}
.h9{height:52.832812pt;}
.h6{height:52.834688pt;}
.hb{height:53.535000pt;}
.h1b{height:54.598989pt;}
.h1a{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:72.506667pt;}
.ha{height:75.465000pt;}
.h4{height:104.160000pt;}
.h13{height:189.466667pt;}
.he{height:561.040000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w9{width:93.138667pt;}
.wb{width:102.560000pt;}
.w8{width:115.072000pt;}
.w4{width:117.912000pt;}
.wd{width:119.698667pt;}
.wa{width:128.658667pt;}
.wc{width:129.792000pt;}
.we{width:132.472000pt;}
.w6{width:144.640000pt;}
.w7{width:148.973333pt;}
.wf{width:239.413333pt;}
.w10{width:249.453333pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3d{left:1.272000pt;}
.x26{left:3.040000pt;}
.x20{left:6.112000pt;}
.x18{left:7.186667pt;}
.x3b{left:9.746667pt;}
.x4{left:11.346667pt;}
.x28{left:12.626667pt;}
.x15{left:15.032000pt;}
.x5{left:16.786667pt;}
.x35{left:19.512000pt;}
.x16{left:20.792000pt;}
.x1c{left:25.912000pt;}
.x24{left:27.706667pt;}
.x2f{left:28.786667pt;}
.x2c{left:30.386667pt;}
.x6{left:31.986667pt;}
.x29{left:34.706667pt;}
.x34{left:35.986667pt;}
.x2a{left:37.906667pt;}
.xf{left:38.872000pt;}
.x3a{left:40.186667pt;}
.x1b{left:42.392000pt;}
.x10{left:45.112000pt;}
.x2b{left:48.026667pt;}
.xe{left:48.952000pt;}
.x1e{left:50.712000pt;}
.x33{left:53.466667pt;}
.x19{left:55.226667pt;}
.x1d{left:58.866667pt;}
.x12{left:59.986667pt;}
.x1{left:69.600000pt;}
.x14{left:70.706667pt;}
.x13{left:74.386667pt;}
.x7{left:76.832000pt;}
.x37{left:78.906667pt;}
.x2{left:85.146667pt;}
.x1f{left:91.346667pt;}
.x3c{left:93.306667pt;}
.x1a{left:94.866667pt;}
.x39{left:99.386667pt;}
.x22{left:100.832000pt;}
.x11{left:110.706667pt;}
.x21{left:124.832000pt;}
.x2e{left:155.720000pt;}
.x3{left:162.120000pt;}
.x17{left:194.760000pt;}
.x23{left:217.800000pt;}
.x36{left:218.760000pt;}
.x30{left:285.026667pt;}
.xa{left:333.186667pt;}
.xb{left:341.186667pt;}
.x25{left:367.426667pt;}
.x31{left:388.226667pt;}
.x2d{left:397.053333pt;}
.x38{left:458.986667pt;}
.x9{left:470.653333pt;}
.x27{left:483.146667pt;}
.x32{left:518.666667pt;}
.xc{left:525.853333pt;}
.x8{left:680.933333pt;}
.xd{left:717.280000pt;}
}




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