
    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_fa02f1e692dc9633de392a26.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_e605453c64da9c2accb9533c.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_86b1751bb1918da8c150ac5d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_783be259fd3c99d90daa6410.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_5227f6613f803b1da2b7f296.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_70a71a5ea33ef572be1555f3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.172852;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_b5248b06e8ac84c63402b54f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_421fa6c475ffb2b8932ab9a6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_bf40ff0e6f24203c340a1100.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_774b189485d0efd72d57fc0c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.978027;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_6193fc93719873dbca485474.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222223,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222825,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222973,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.224138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.224138,0.000000,0.000000,0.250000,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);}
.m5{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:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.760000px;}
.v1{vertical-align:23.760000px;}
.ls20{letter-spacing:-1.026000px;}
.lsa{letter-spacing:-0.846000px;}
.lsf{letter-spacing:-0.720000px;}
.ls18{letter-spacing:-0.642000px;}
.ls8{letter-spacing:-0.532800px;}
.ls21{letter-spacing:-0.457800px;}
.ls1e{letter-spacing:-0.414600px;}
.lsc{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.305400px;}
.ls7{letter-spacing:-0.270600px;}
.ls13{letter-spacing:-0.109200px;}
.lse{letter-spacing:-0.102000px;}
.lsb{letter-spacing:-0.085200px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.022320px;}
.ls9{letter-spacing:0.054720px;}
.ls19{letter-spacing:0.080400px;}
.ls0{letter-spacing:0.144720px;}
.ls12{letter-spacing:0.152400px;}
.ls1c{letter-spacing:0.178560px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.187200px;}
.ls3{letter-spacing:0.259920px;}
.ls1a{letter-spacing:0.262200px;}
.ls1f{letter-spacing:0.305400px;}
.lsd{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.898560px;}
.ls14{letter-spacing:2.880000px;}
.ls10{letter-spacing:5.760000px;}
.ls1d{letter-spacing:10.080000px;}
.ls16{letter-spacing:12.240000px;}
.ls5{letter-spacing:17.897760px;}
.ls22{letter-spacing:39.905280px;}
.ls15{letter-spacing:40.320000px;}
.ls11{letter-spacing:153.336000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsc{word-spacing:-16.822200px;}
.wsa{word-spacing:-16.712400px;}
.ws6{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.450800px;}
.wsd{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.840000px;}
.wse{word-spacing:-15.534000px;}
.ws4{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws3{word-spacing:-14.580000px;}
.ws2{word-spacing:-10.612800px;}
.ws1{word-spacing:-10.527600px;}
.ws9{word-spacing:-10.440000px;}
.ws0{word-spacing:-10.342200px;}
.ws7{word-spacing:0.000000px;}
._0{margin-left:-1.059840px;}
._1{width:1.923840px;}
._4{width:3.084480px;}
._b{width:4.244400px;}
._2{width:5.426640px;}
._3{width:7.171200px;}
._c{width:8.176800px;}
._d{width:9.817200px;}
._7{width:10.832400px;}
._6{width:11.876400px;}
._5{width:12.967920px;}
._9{width:14.919120px;}
._13{width:17.884800px;}
._e{width:19.209600px;}
._a{width:20.799360px;}
._10{width:22.190400px;}
._21{width:23.250240px;}
._14{width:24.376320px;}
._f{width:25.568640px;}
._1e{width:27.423360px;}
._12{width:30.735360px;}
._11{width:32.126400px;}
._24{width:33.517440px;}
._20{width:39.927600px;}
._19{width:44.888160px;}
._17{width:46.434240px;}
._18{width:47.592480px;}
._16{width:53.104800px;}
._23{width:63.360000px;}
._1d{width:67.044960px;}
._15{width:115.257600px;}
._22{width:116.616000px;}
._1f{width:136.776000px;}
._8{width:153.336000px;}
._1c{width:160.622880px;}
._1a{width:199.416000px;}
._1b{width:1543.565280px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:6.300000px;}
.y68{bottom:6.480000px;}
.yd5{bottom:6.525000px;}
.y2{bottom:9.360000px;}
.y71{bottom:17.280000px;}
.y70{bottom:28.080000px;}
.y9e{bottom:28.110000px;}
.y6a{bottom:28.260000px;}
.y6d{bottom:49.860000px;}
.y73{bottom:50.085000px;}
.ya0{bottom:55.980000px;}
.y90{bottom:56.025000px;}
.y4{bottom:72.756000px;}
.yb2{bottom:111.996000px;}
.y66{bottom:113.796000px;}
.ydf{bottom:118.296000px;}
.y8c{bottom:126.576000px;}
.y65{bottom:135.576000px;}
.yde{bottom:140.256000px;}
.y36{bottom:143.496000px;}
.y8b{bottom:148.356000px;}
.y64{bottom:157.350000px;}
.yb1{bottom:158.610000px;}
.ydd{bottom:162.030000px;}
.y7b{bottom:163.830000px;}
.y35{bottom:165.270000px;}
.y8a{bottom:170.130000px;}
.y63{bottom:179.130000px;}
.ydc{bottom:183.810000px;}
.y7a{bottom:185.610000px;}
.yb0{bottom:186.870000px;}
.y34{bottom:187.050000px;}
.y89{bottom:188.670000px;}
.y62{bottom:201.090000px;}
.ydb{bottom:205.590000px;}
.y79{bottom:207.570000px;}
.yaf{bottom:208.650000px;}
.y33{bottom:209.010000px;}
.y61{bottom:222.870000px;}
.yda{bottom:227.550000px;}
.y78{bottom:229.350000px;}
.yae{bottom:230.430000px;}
.y32{bottom:230.790000px;}
.y60{bottom:244.650000px;}
.yd9{bottom:249.330000px;}
.yad{bottom:252.210000px;}
.y31{bottom:252.570000px;}
.y77{bottom:254.190000px;}
.y5f{bottom:266.430000px;}
.yd8{bottom:271.110000px;}
.yac{bottom:274.170000px;}
.y30{bottom:274.350000px;}
.y76{bottom:275.970000px;}
.y5e{bottom:288.210000px;}
.yd7{bottom:292.890000px;}
.yab{bottom:295.950000px;}
.y2f{bottom:296.310000px;}
.y72{bottom:297.750000px;}
.yd6{bottom:308.370000px;}
.y5d{bottom:310.170000px;}
.yaa{bottom:317.730000px;}
.y2e{bottom:318.090000px;}
.y75{bottom:319.530000px;}
.yd4{bottom:330.150000px;}
.y5c{bottom:331.950000px;}
.ya9{bottom:339.555000px;}
.y2d{bottom:339.915000px;}
.y74{bottom:341.535000px;}
.y5b{bottom:353.775000px;}
.yd3{bottom:355.035000px;}
.ya8{bottom:361.515000px;}
.y2c{bottom:361.695000px;}
.y6c{bottom:363.315000px;}
.y5a{bottom:375.555000px;}
.yd2{bottom:379.875000px;}
.ya7{bottom:383.295000px;}
.y2b{bottom:383.475000px;}
.y88{bottom:395.355000px;}
.y59{bottom:397.515000px;}
.ya6{bottom:405.075000px;}
.y2a{bottom:405.435000px;}
.y6e{bottom:406.875000px;}
.y87{bottom:417.135000px;}
.y58{bottom:419.295000px;}
.yd1{bottom:426.495000px;}
.ya5{bottom:426.855000px;}
.y29{bottom:427.215000px;}
.y6b{bottom:428.655000px;}
.y86{bottom:438.915000px;}
.y57{bottom:441.075000px;}
.ya4{bottom:448.635000px;}
.y28{bottom:448.995000px;}
.y69{bottom:453.495000px;}
.yd0{bottom:454.755000px;}
.y85{bottom:460.695000px;}
.y56{bottom:462.855000px;}
.ya3{bottom:470.595000px;}
.y27{bottom:470.775000px;}
.ycf{bottom:476.535000px;}
.y84{bottom:482.655000px;}
.y55{bottom:484.635000px;}
.y9f{bottom:488.955000px;}
.y26{bottom:492.735000px;}
.yce{bottom:498.315000px;}
.y67{bottom:500.115000px;}
.y83{bottom:504.435000px;}
.y54{bottom:506.595000px;}
.ya2{bottom:513.795000px;}
.y25{bottom:514.515000px;}
.ycd{bottom:520.095000px;}
.y82{bottom:522.615000px;}
.y53{bottom:528.375000px;}
.y24{bottom:536.295000px;}
.ya1{bottom:538.635000px;}
.ycc{bottom:542.055000px;}
.y52{bottom:550.155000px;}
.y23{bottom:557.175000px;}
.y9c{bottom:563.475000px;}
.ycb{bottom:563.835000px;}
.y51{bottom:571.935000px;}
.y22{bottom:573.915000px;}
.yca{bottom:585.615000px;}
.y9d{bottom:588.315000px;}
.y21{bottom:591.195000px;}
.y50{bottom:593.895000px;}
.yc9{bottom:607.425000px;}
.y20{bottom:611.205000px;}
.y4f{bottom:615.705000px;}
.yc8{bottom:629.205000px;}
.y1f{bottom:631.005000px;}
.y4e{bottom:637.485000px;}
.y9b{bottom:641.265000px;}
.y1e{bottom:650.805000px;}
.yc7{bottom:651.165000px;}
.y4d{bottom:659.265000px;}
.y9a{bottom:663.045000px;}
.y1d{bottom:670.605000px;}
.yc6{bottom:672.945000px;}
.y4c{bottom:681.045000px;}
.y99{bottom:685.005000px;}
.y1c{bottom:690.405000px;}
.yc5{bottom:694.725000px;}
.y4b{bottom:703.005000px;}
.y98{bottom:706.785000px;}
.y1b{bottom:710.385000px;}
.yc2{bottom:713.265000px;}
.y4a{bottom:724.785000px;}
.y81{bottom:726.225000px;}
.y97{bottom:728.565000px;}
.y1a{bottom:730.185000px;}
.yc4{bottom:738.105000px;}
.y49{bottom:746.565000px;}
.y80{bottom:748.005000px;}
.y19{bottom:749.985000px;}
.y96{bottom:750.345000px;}
.yc3{bottom:762.945000px;}
.y48{bottom:768.345000px;}
.y18{bottom:769.785000px;}
.y95{bottom:772.125000px;}
.yc0{bottom:787.605000px;}
.y17{bottom:789.585000px;}
.y47{bottom:790.125000px;}
.y7f{bottom:791.565000px;}
.y94{bottom:794.085000px;}
.y16{bottom:809.565000px;}
.y46{bottom:812.085000px;}
.yc1{bottom:812.445000px;}
.y7e{bottom:813.345000px;}
.y93{bottom:815.865000px;}
.y15{bottom:829.365000px;}
.y45{bottom:833.865000px;}
.y8f{bottom:834.405000px;}
.y7d{bottom:835.305000px;}
.y14{bottom:849.165000px;}
.y44{bottom:855.645000px;}
.y7c{bottom:857.265000px;}
.y92{bottom:859.065000px;}
.ybf{bottom:865.545000px;}
.y13{bottom:867.705000px;}
.y43{bottom:877.470000px;}
.y91{bottom:883.950000px;}
.y12{bottom:884.850000px;}
.ybe{bottom:887.370000px;}
.y42{bottom:899.430000px;}
.y11{bottom:904.830000px;}
.y8d{bottom:908.790000px;}
.ybd{bottom:909.150000px;}
.y41{bottom:921.210000px;}
.y10{bottom:924.990000px;}
.ybc{bottom:930.930000px;}
.y8e{bottom:933.630000px;}
.y40{bottom:942.990000px;}
.yf{bottom:945.330000px;}
.ybb{bottom:952.890000px;}
.ye{bottom:962.970000px;}
.y3f{bottom:964.770000px;}
.yba{bottom:974.670000px;}
.yd{bottom:984.750000px;}
.y3e{bottom:986.550000px;}
.yb9{bottom:996.450000px;}
.yc{bottom:1007.790000px;}
.y3d{bottom:1008.510000px;}
.yb8{bottom:1018.230000px;}
.y3c{bottom:1030.290000px;}
.yb{bottom:1033.530000px;}
.yb7{bottom:1033.710000px;}
.y3b{bottom:1052.070000px;}
.yb6{bottom:1055.490000px;}
.ya{bottom:1056.210000px;}
.y9{bottom:1071.510000px;}
.y3a{bottom:1073.850000px;}
.yb3{bottom:1080.330000px;}
.y8{bottom:1089.150000px;}
.y39{bottom:1095.810000px;}
.yb5{bottom:1105.170000px;}
.y7{bottom:1106.430000px;}
.y38{bottom:1117.590000px;}
.y6{bottom:1123.530000px;}
.yb4{bottom:1130.010000px;}
.y37{bottom:1139.400000px;}
.y5{bottom:1140.840000px;}
.y3{bottom:1165.140000px;}
.y1{bottom:1181.880000px;}
.h18{height:21.780000px;}
.h21{height:21.816000px;}
.h14{height:21.960000px;}
.h1b{height:21.996000px;}
.h2{height:27.900000px;}
.hf{height:33.683203px;}
.h8{height:34.036523px;}
.hc{height:36.768867px;}
.h5{height:40.655391px;}
.he{height:41.726953px;}
.h6{height:42.164648px;}
.h19{height:43.560000px;}
.h1f{height:43.596000px;}
.h15{height:43.740000px;}
.h10{height:45.549492px;}
.h13{height:46.251562px;}
.h3{height:46.380937px;}
.h1c{height:46.620000px;}
.hd{height:46.736719px;}
.h12{height:47.980898px;}
.h25{height:48.224531px;}
.h11{height:49.394180px;}
.h4{height:50.273438px;}
.hb{height:50.488594px;}
.h17{height:52.918594px;}
.h22{height:53.038594px;}
.h23{height:53.404453px;}
.ha{height:54.447188px;}
.h9{height:54.864844px;}
.h7{height:59.439023px;}
.h16{height:65.340000px;}
.h1a{height:65.556000px;}
.h1e{height:68.436000px;}
.h24{height:68.580000px;}
.h20{height:71.460000px;}
.h1d{height:71.496000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w21{width:53.640000px;}
.w18{width:55.980000px;}
.we{width:56.016000px;}
.w24{width:56.916000px;}
.w2{width:63.900000px;}
.w20{width:74.880000px;}
.w25{width:75.060000px;}
.w1f{width:75.636000px;}
.w1d{width:75.816000px;}
.wd{width:77.940000px;}
.w14{width:78.696000px;}
.w15{width:78.840000px;}
.w26{width:80.460000px;}
.w10{width:86.436000px;}
.wc{width:87.336000px;}
.w9{width:88.920000px;}
.w22{width:95.436000px;}
.w16{width:101.880000px;}
.w17{width:102.636000px;}
.w1e{width:104.580000px;}
.w28{width:108.396000px;}
.w1c{width:108.540000px;}
.w27{width:109.296000px;}
.w13{width:113.400000px;}
.wf{width:130.140000px;}
.w19{width:130.176000px;}
.w1b{width:149.076000px;}
.w7{width:155.190000px;}
.wb{width:166.710000px;}
.w11{width:186.150000px;}
.wa{width:186.870000px;}
.w12{width:206.130000px;}
.w8{width:301.215000px;}
.w6{width:390.135000px;}
.w23{width:440.565000px;}
.w5{width:551.085000px;}
.w1a{width:600.765000px;}
.w3{width:616.605000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:4.500000px;}
.x4{left:8.100000px;}
.x2e{left:10.650000px;}
.x2d{left:12.090000px;}
.x35{left:13.500000px;}
.x2{left:15.480000px;}
.x54{left:17.100000px;}
.x39{left:18.720000px;}
.x48{left:24.480000px;}
.x15{left:25.740000px;}
.x42{left:28.080000px;}
.x41{left:30.060000px;}
.x52{left:32.040000px;}
.x46{left:33.300000px;}
.x31{left:36.360000px;}
.x3a{left:41.580000px;}
.x38{left:45.540000px;}
.x56{left:47.160000px;}
.x16{left:48.600000px;}
.x4d{left:50.400000px;}
.x30{left:53.130000px;}
.x4c{left:54.720000px;}
.x4a{left:58.680000px;}
.x3c{left:61.200000px;}
.x4b{left:63.030000px;}
.x3d{left:68.760000px;}
.x1a{left:72.360000px;}
.x57{left:75.990000px;}
.x3e{left:80.100000px;}
.x19{left:88.740000px;}
.x1{left:99.936000px;}
.x5{left:108.035987px;}
.xb{left:109.475987px;}
.x7{left:111.095987px;}
.x1c{left:116.325000px;}
.x1b{left:121.905000px;}
.x1d{left:124.775987px;}
.x12{left:133.425000px;}
.x59{left:135.035987px;}
.x58{left:140.435987px;}
.x3f{left:146.196000px;}
.x40{left:147.636000px;}
.x28{left:162.029987px;}
.x3{left:163.830000px;}
.x3b{left:167.430000px;}
.x11{left:171.030000px;}
.x13{left:172.470000px;}
.x5a{left:192.989987px;}
.x49{left:201.270000px;}
.xe{left:204.509987px;}
.x50{left:226.290000px;}
.x51{left:227.730000px;}
.x1f{left:249.149987px;}
.x8{left:252.389987px;}
.x1e{left:264.089987px;}
.x2b{left:268.950000px;}
.xa{left:287.714987px;}
.x33{left:300.675000px;}
.x20{left:321.374987px;}
.x23{left:324.434987px;}
.x27{left:329.834987px;}
.xf{left:344.594987px;}
.x21{left:353.234987px;}
.xd{left:354.314987px;}
.x25{left:355.574987px;}
.xc{left:358.454987px;}
.x53{left:364.215000px;}
.x9{left:382.394987px;}
.x4e{left:398.234987px;}
.x4f{left:402.194987px;}
.x2a{left:403.814987px;}
.x32{left:404.894987px;}
.x43{left:409.755000px;}
.x26{left:413.714987px;}
.x10{left:418.574987px;}
.x29{left:421.634987px;}
.x6{left:446.474987px;}
.x2c{left:457.275000px;}
.x18{left:473.685000px;}
.x44{left:487.005000px;}
.x34{left:508.425000px;}
.x2f{left:546.045000px;}
.x55{left:556.845000px;}
.x14{left:565.485000px;}
.x45{left:593.205000px;}
.x36{left:623.445000px;}
.x22{left:638.384987px;}
.x24{left:659.669987px;}
.x47{left:670.470000px;}
.x37{left:703.590000px;}
@media print{
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:5.120000pt;}
.v1{vertical-align:21.120000pt;}
.ls20{letter-spacing:-0.912000pt;}
.lsa{letter-spacing:-0.752000pt;}
.lsf{letter-spacing:-0.640000pt;}
.ls18{letter-spacing:-0.570667pt;}
.ls8{letter-spacing:-0.473600pt;}
.ls21{letter-spacing:-0.406933pt;}
.ls1e{letter-spacing:-0.368533pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.271467pt;}
.ls7{letter-spacing:-0.240533pt;}
.ls13{letter-spacing:-0.097067pt;}
.lse{letter-spacing:-0.090667pt;}
.lsb{letter-spacing:-0.075733pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.019840pt;}
.ls9{letter-spacing:0.048640pt;}
.ls19{letter-spacing:0.071467pt;}
.ls0{letter-spacing:0.128640pt;}
.ls12{letter-spacing:0.135467pt;}
.ls1c{letter-spacing:0.158720pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.166400pt;}
.ls3{letter-spacing:0.231040pt;}
.ls1a{letter-spacing:0.233067pt;}
.ls1f{letter-spacing:0.271467pt;}
.lsd{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.798720pt;}
.ls14{letter-spacing:2.560000pt;}
.ls10{letter-spacing:5.120000pt;}
.ls1d{letter-spacing:8.960000pt;}
.ls16{letter-spacing:10.880000pt;}
.ls5{letter-spacing:15.909120pt;}
.ls22{letter-spacing:35.471360pt;}
.ls15{letter-spacing:35.840000pt;}
.ls11{letter-spacing:136.298667pt;}
.wsc{word-spacing:-14.953067pt;}
.wsa{word-spacing:-14.855467pt;}
.ws6{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.622933pt;}
.wsd{word-spacing:-14.448533pt;}
.ws8{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.808000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws2{word-spacing:-9.433600pt;}
.ws1{word-spacing:-9.357867pt;}
.ws9{word-spacing:-9.280000pt;}
.ws0{word-spacing:-9.193067pt;}
.ws7{word-spacing:0.000000pt;}
._0{margin-left:-0.942080pt;}
._1{width:1.710080pt;}
._4{width:2.741760pt;}
._b{width:3.772800pt;}
._2{width:4.823680pt;}
._3{width:6.374400pt;}
._c{width:7.268267pt;}
._d{width:8.726400pt;}
._7{width:9.628800pt;}
._6{width:10.556800pt;}
._5{width:11.527040pt;}
._9{width:13.261440pt;}
._13{width:15.897600pt;}
._e{width:17.075200pt;}
._a{width:18.488320pt;}
._10{width:19.724800pt;}
._21{width:20.666880pt;}
._14{width:21.667840pt;}
._f{width:22.727680pt;}
._1e{width:24.376320pt;}
._12{width:27.320320pt;}
._11{width:28.556800pt;}
._24{width:29.793280pt;}
._20{width:35.491200pt;}
._19{width:39.900587pt;}
._17{width:41.274880pt;}
._18{width:42.304427pt;}
._16{width:47.204267pt;}
._23{width:56.320000pt;}
._1d{width:59.595520pt;}
._15{width:102.451200pt;}
._22{width:103.658667pt;}
._1f{width:121.578667pt;}
._8{width:136.298667pt;}
._1c{width:142.775893pt;}
._1a{width:177.258667pt;}
._1b{width:1372.058027pt;}
.fs5{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:5.600000pt;}
.y68{bottom:5.760000pt;}
.yd5{bottom:5.800000pt;}
.y2{bottom:8.320000pt;}
.y71{bottom:15.360000pt;}
.y70{bottom:24.960000pt;}
.y9e{bottom:24.986667pt;}
.y6a{bottom:25.120000pt;}
.y6d{bottom:44.320000pt;}
.y73{bottom:44.520000pt;}
.ya0{bottom:49.760000pt;}
.y90{bottom:49.800000pt;}
.y4{bottom:64.672000pt;}
.yb2{bottom:99.552000pt;}
.y66{bottom:101.152000pt;}
.ydf{bottom:105.152000pt;}
.y8c{bottom:112.512000pt;}
.y65{bottom:120.512000pt;}
.yde{bottom:124.672000pt;}
.y36{bottom:127.552000pt;}
.y8b{bottom:131.872000pt;}
.y64{bottom:139.866667pt;}
.yb1{bottom:140.986667pt;}
.ydd{bottom:144.026667pt;}
.y7b{bottom:145.626667pt;}
.y35{bottom:146.906667pt;}
.y8a{bottom:151.226667pt;}
.y63{bottom:159.226667pt;}
.ydc{bottom:163.386667pt;}
.y7a{bottom:164.986667pt;}
.yb0{bottom:166.106667pt;}
.y34{bottom:166.266667pt;}
.y89{bottom:167.706667pt;}
.y62{bottom:178.746667pt;}
.ydb{bottom:182.746667pt;}
.y79{bottom:184.506667pt;}
.yaf{bottom:185.466667pt;}
.y33{bottom:185.786667pt;}
.y61{bottom:198.106667pt;}
.yda{bottom:202.266667pt;}
.y78{bottom:203.866667pt;}
.yae{bottom:204.826667pt;}
.y32{bottom:205.146667pt;}
.y60{bottom:217.466667pt;}
.yd9{bottom:221.626667pt;}
.yad{bottom:224.186667pt;}
.y31{bottom:224.506667pt;}
.y77{bottom:225.946667pt;}
.y5f{bottom:236.826667pt;}
.yd8{bottom:240.986667pt;}
.yac{bottom:243.706667pt;}
.y30{bottom:243.866667pt;}
.y76{bottom:245.306667pt;}
.y5e{bottom:256.186667pt;}
.yd7{bottom:260.346667pt;}
.yab{bottom:263.066667pt;}
.y2f{bottom:263.386667pt;}
.y72{bottom:264.666667pt;}
.yd6{bottom:274.106667pt;}
.y5d{bottom:275.706667pt;}
.yaa{bottom:282.426667pt;}
.y2e{bottom:282.746667pt;}
.y75{bottom:284.026667pt;}
.yd4{bottom:293.466667pt;}
.y5c{bottom:295.066667pt;}
.ya9{bottom:301.826667pt;}
.y2d{bottom:302.146667pt;}
.y74{bottom:303.586667pt;}
.y5b{bottom:314.466667pt;}
.yd3{bottom:315.586667pt;}
.ya8{bottom:321.346667pt;}
.y2c{bottom:321.506667pt;}
.y6c{bottom:322.946667pt;}
.y5a{bottom:333.826667pt;}
.yd2{bottom:337.666667pt;}
.ya7{bottom:340.706667pt;}
.y2b{bottom:340.866667pt;}
.y88{bottom:351.426667pt;}
.y59{bottom:353.346667pt;}
.ya6{bottom:360.066667pt;}
.y2a{bottom:360.386667pt;}
.y6e{bottom:361.666667pt;}
.y87{bottom:370.786667pt;}
.y58{bottom:372.706667pt;}
.yd1{bottom:379.106667pt;}
.ya5{bottom:379.426667pt;}
.y29{bottom:379.746667pt;}
.y6b{bottom:381.026667pt;}
.y86{bottom:390.146667pt;}
.y57{bottom:392.066667pt;}
.ya4{bottom:398.786667pt;}
.y28{bottom:399.106667pt;}
.y69{bottom:403.106667pt;}
.yd0{bottom:404.226667pt;}
.y85{bottom:409.506667pt;}
.y56{bottom:411.426667pt;}
.ya3{bottom:418.306667pt;}
.y27{bottom:418.466667pt;}
.ycf{bottom:423.586667pt;}
.y84{bottom:429.026667pt;}
.y55{bottom:430.786667pt;}
.y9f{bottom:434.626667pt;}
.y26{bottom:437.986667pt;}
.yce{bottom:442.946667pt;}
.y67{bottom:444.546667pt;}
.y83{bottom:448.386667pt;}
.y54{bottom:450.306667pt;}
.ya2{bottom:456.706667pt;}
.y25{bottom:457.346667pt;}
.ycd{bottom:462.306667pt;}
.y82{bottom:464.546667pt;}
.y53{bottom:469.666667pt;}
.y24{bottom:476.706667pt;}
.ya1{bottom:478.786667pt;}
.ycc{bottom:481.826667pt;}
.y52{bottom:489.026667pt;}
.y23{bottom:495.266667pt;}
.y9c{bottom:500.866667pt;}
.ycb{bottom:501.186667pt;}
.y51{bottom:508.386667pt;}
.y22{bottom:510.146667pt;}
.yca{bottom:520.546667pt;}
.y9d{bottom:522.946667pt;}
.y21{bottom:525.506667pt;}
.y50{bottom:527.906667pt;}
.yc9{bottom:539.933333pt;}
.y20{bottom:543.293333pt;}
.y4f{bottom:547.293333pt;}
.yc8{bottom:559.293333pt;}
.y1f{bottom:560.893333pt;}
.y4e{bottom:566.653333pt;}
.y9b{bottom:570.013333pt;}
.y1e{bottom:578.493333pt;}
.yc7{bottom:578.813333pt;}
.y4d{bottom:586.013333pt;}
.y9a{bottom:589.373333pt;}
.y1d{bottom:596.093333pt;}
.yc6{bottom:598.173333pt;}
.y4c{bottom:605.373333pt;}
.y99{bottom:608.893333pt;}
.y1c{bottom:613.693333pt;}
.yc5{bottom:617.533333pt;}
.y4b{bottom:624.893333pt;}
.y98{bottom:628.253333pt;}
.y1b{bottom:631.453333pt;}
.yc2{bottom:634.013333pt;}
.y4a{bottom:644.253333pt;}
.y81{bottom:645.533333pt;}
.y97{bottom:647.613333pt;}
.y1a{bottom:649.053333pt;}
.yc4{bottom:656.093333pt;}
.y49{bottom:663.613333pt;}
.y80{bottom:664.893333pt;}
.y19{bottom:666.653333pt;}
.y96{bottom:666.973333pt;}
.yc3{bottom:678.173333pt;}
.y48{bottom:682.973333pt;}
.y18{bottom:684.253333pt;}
.y95{bottom:686.333333pt;}
.yc0{bottom:700.093333pt;}
.y17{bottom:701.853333pt;}
.y47{bottom:702.333333pt;}
.y7f{bottom:703.613333pt;}
.y94{bottom:705.853333pt;}
.y16{bottom:719.613333pt;}
.y46{bottom:721.853333pt;}
.yc1{bottom:722.173333pt;}
.y7e{bottom:722.973333pt;}
.y93{bottom:725.213333pt;}
.y15{bottom:737.213333pt;}
.y45{bottom:741.213333pt;}
.y8f{bottom:741.693333pt;}
.y7d{bottom:742.493333pt;}
.y14{bottom:754.813333pt;}
.y44{bottom:760.573333pt;}
.y7c{bottom:762.013333pt;}
.y92{bottom:763.613333pt;}
.ybf{bottom:769.373333pt;}
.y13{bottom:771.293333pt;}
.y43{bottom:779.973333pt;}
.y91{bottom:785.733333pt;}
.y12{bottom:786.533333pt;}
.ybe{bottom:788.773333pt;}
.y42{bottom:799.493333pt;}
.y11{bottom:804.293333pt;}
.y8d{bottom:807.813333pt;}
.ybd{bottom:808.133333pt;}
.y41{bottom:818.853333pt;}
.y10{bottom:822.213333pt;}
.ybc{bottom:827.493333pt;}
.y8e{bottom:829.893333pt;}
.y40{bottom:838.213333pt;}
.yf{bottom:840.293333pt;}
.ybb{bottom:847.013333pt;}
.ye{bottom:855.973333pt;}
.y3f{bottom:857.573333pt;}
.yba{bottom:866.373333pt;}
.yd{bottom:875.333333pt;}
.y3e{bottom:876.933333pt;}
.yb9{bottom:885.733333pt;}
.yc{bottom:895.813333pt;}
.y3d{bottom:896.453333pt;}
.yb8{bottom:905.093333pt;}
.y3c{bottom:915.813333pt;}
.yb{bottom:918.693333pt;}
.yb7{bottom:918.853333pt;}
.y3b{bottom:935.173333pt;}
.yb6{bottom:938.213333pt;}
.ya{bottom:938.853333pt;}
.y9{bottom:952.453333pt;}
.y3a{bottom:954.533333pt;}
.yb3{bottom:960.293333pt;}
.y8{bottom:968.133333pt;}
.y39{bottom:974.053333pt;}
.yb5{bottom:982.373333pt;}
.y7{bottom:983.493333pt;}
.y38{bottom:993.413333pt;}
.y6{bottom:998.693333pt;}
.yb4{bottom:1004.453333pt;}
.y37{bottom:1012.800000pt;}
.y5{bottom:1014.080000pt;}
.y3{bottom:1035.680000pt;}
.y1{bottom:1050.560000pt;}
.h18{height:19.360000pt;}
.h21{height:19.392000pt;}
.h14{height:19.520000pt;}
.h1b{height:19.552000pt;}
.h2{height:24.800000pt;}
.hf{height:29.940625pt;}
.h8{height:30.254687pt;}
.hc{height:32.683437pt;}
.h5{height:36.138125pt;}
.he{height:37.090625pt;}
.h6{height:37.479688pt;}
.h19{height:38.720000pt;}
.h1f{height:38.752000pt;}
.h15{height:38.880000pt;}
.h10{height:40.488438pt;}
.h13{height:41.112500pt;}
.h3{height:41.227500pt;}
.h1c{height:41.440000pt;}
.hd{height:41.543750pt;}
.h12{height:42.649687pt;}
.h25{height:42.866250pt;}
.h11{height:43.905937pt;}
.h4{height:44.687500pt;}
.hb{height:44.878750pt;}
.h17{height:47.038750pt;}
.h22{height:47.145417pt;}
.h23{height:47.470625pt;}
.ha{height:48.397500pt;}
.h9{height:48.768750pt;}
.h7{height:52.834688pt;}
.h16{height:58.080000pt;}
.h1a{height:58.272000pt;}
.h1e{height:60.832000pt;}
.h24{height:60.960000pt;}
.h20{height:63.520000pt;}
.h1d{height:63.552000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w21{width:47.680000pt;}
.w18{width:49.760000pt;}
.we{width:49.792000pt;}
.w24{width:50.592000pt;}
.w2{width:56.800000pt;}
.w20{width:66.560000pt;}
.w25{width:66.720000pt;}
.w1f{width:67.232000pt;}
.w1d{width:67.392000pt;}
.wd{width:69.280000pt;}
.w14{width:69.952000pt;}
.w15{width:70.080000pt;}
.w26{width:71.520000pt;}
.w10{width:76.832000pt;}
.wc{width:77.632000pt;}
.w9{width:79.040000pt;}
.w22{width:84.832000pt;}
.w16{width:90.560000pt;}
.w17{width:91.232000pt;}
.w1e{width:92.960000pt;}
.w28{width:96.352000pt;}
.w1c{width:96.480000pt;}
.w27{width:97.152000pt;}
.w13{width:100.800000pt;}
.wf{width:115.680000pt;}
.w19{width:115.712000pt;}
.w1b{width:132.512000pt;}
.w7{width:137.946667pt;}
.wb{width:148.186667pt;}
.w11{width:165.466667pt;}
.wa{width:166.106667pt;}
.w12{width:183.226667pt;}
.w8{width:267.746667pt;}
.w6{width:346.786667pt;}
.w23{width:391.613333pt;}
.w5{width:489.853333pt;}
.w1a{width:534.013333pt;}
.w3{width:548.093333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:4.000000pt;}
.x4{left:7.200000pt;}
.x2e{left:9.466667pt;}
.x2d{left:10.746667pt;}
.x35{left:12.000000pt;}
.x2{left:13.760000pt;}
.x54{left:15.200000pt;}
.x39{left:16.640000pt;}
.x48{left:21.760000pt;}
.x15{left:22.880000pt;}
.x42{left:24.960000pt;}
.x41{left:26.720000pt;}
.x52{left:28.480000pt;}
.x46{left:29.600000pt;}
.x31{left:32.320000pt;}
.x3a{left:36.960000pt;}
.x38{left:40.480000pt;}
.x56{left:41.920000pt;}
.x16{left:43.200000pt;}
.x4d{left:44.800000pt;}
.x30{left:47.226667pt;}
.x4c{left:48.640000pt;}
.x4a{left:52.160000pt;}
.x3c{left:54.400000pt;}
.x4b{left:56.026667pt;}
.x3d{left:61.120000pt;}
.x1a{left:64.320000pt;}
.x57{left:67.546667pt;}
.x3e{left:71.200000pt;}
.x19{left:78.880000pt;}
.x1{left:88.832000pt;}
.x5{left:96.031988pt;}
.xb{left:97.311988pt;}
.x7{left:98.751988pt;}
.x1c{left:103.400000pt;}
.x1b{left:108.360000pt;}
.x1d{left:110.911988pt;}
.x12{left:118.600000pt;}
.x59{left:120.031988pt;}
.x58{left:124.831988pt;}
.x3f{left:129.952000pt;}
.x40{left:131.232000pt;}
.x28{left:144.026655pt;}
.x3{left:145.626667pt;}
.x3b{left:148.826667pt;}
.x11{left:152.026667pt;}
.x13{left:153.306667pt;}
.x5a{left:171.546655pt;}
.x49{left:178.906667pt;}
.xe{left:181.786655pt;}
.x50{left:201.146667pt;}
.x51{left:202.426667pt;}
.x1f{left:221.466655pt;}
.x8{left:224.346655pt;}
.x1e{left:234.746655pt;}
.x2b{left:239.066667pt;}
.xa{left:255.746655pt;}
.x33{left:267.266667pt;}
.x20{left:285.666655pt;}
.x23{left:288.386655pt;}
.x27{left:293.186655pt;}
.xf{left:306.306655pt;}
.x21{left:313.986655pt;}
.xd{left:314.946655pt;}
.x25{left:316.066655pt;}
.xc{left:318.626655pt;}
.x53{left:323.746667pt;}
.x9{left:339.906655pt;}
.x4e{left:353.986655pt;}
.x4f{left:357.506655pt;}
.x2a{left:358.946655pt;}
.x32{left:359.906655pt;}
.x43{left:364.226667pt;}
.x26{left:367.746655pt;}
.x10{left:372.066655pt;}
.x29{left:374.786655pt;}
.x6{left:396.866655pt;}
.x2c{left:406.466667pt;}
.x18{left:421.053333pt;}
.x44{left:432.893333pt;}
.x34{left:451.933333pt;}
.x2f{left:485.373333pt;}
.x55{left:494.973333pt;}
.x14{left:502.653333pt;}
.x45{left:527.293333pt;}
.x36{left:554.173333pt;}
.x22{left:567.453322pt;}
.x24{left:586.373322pt;}
.x47{left:595.973333pt;}
.x37{left:625.413333pt;}
}




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