
    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_7a62d7a968c3e1c4e1befe72.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.937988;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_3789db8e125283e9dd57d5cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4ba8f3f4b24dce8cc1b6c28d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_9500c6490ebd7fe27b26d07f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_c5001f5e5b04b606840ff02c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.939941;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_aa31592ab11c2ceeb2c4425e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938965;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_ecf53b99b417b3ba4cd28696.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_b12b6f86ce7e76b6f4b38b9d.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls13{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.053280px;}
.ls6{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.045360px;}
.ls17{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.106560px;}
.ls7{letter-spacing:0.106800px;}
.ls1{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259800px;}
.ls12{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.298800px;}
.ls14{letter-spacing:0.336000px;}
.ls4{letter-spacing:0.360000px;}
.ls9{letter-spacing:22.986720px;}
.ls2{letter-spacing:32.346720px;}
.ls10{letter-spacing:36.642720px;}
.ls11{letter-spacing:36.666720px;}
.ls3{letter-spacing:40.986720px;}
.lsf{letter-spacing:66.162720px;}
.lsa{letter-spacing:156.882720px;}
.lsb{letter-spacing:163.362720px;}
.lsc{letter-spacing:163.386720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws4{word-spacing:-15.300000px;}
.ws8{word-spacing:-15.199800px;}
.ws7{word-spacing:-15.046800px;}
.wsb{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.ws0{word-spacing:-12.420000px;}
.ws1{word-spacing:-12.105360px;}
.ws2{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._29{margin-left:-3.819840px;}
._a{margin-left:-2.813520px;}
._0{margin-left:-1.373280px;}
._1{width:1.015920px;}
._2{width:2.046480px;}
._20{width:3.064800px;}
._4{width:4.482000px;}
._3{width:5.916240px;}
._17{width:7.067280px;}
._d{width:8.127360px;}
._e{width:9.800640px;}
._f{width:11.115360px;}
._6{width:12.191040px;}
._5{width:13.565520px;}
._11{width:16.135200px;}
._10{width:17.390160px;}
._19{width:19.362240px;}
._31{width:20.627280px;}
._21{width:21.862080px;}
._2c{width:23.169360px;}
._2e{width:24.919920px;}
._32{width:26.174880px;}
._4a{width:27.310320px;}
._22{width:28.326240px;}
._1c{width:29.599920px;}
._23{width:30.697920px;}
._c{width:31.732560px;}
._b{width:32.748480px;}
._12{width:34.601040px;}
._1e{width:35.856000px;}
._14{width:37.828080px;}
._13{width:39.023280px;}
._25{width:40.644000px;}
._16{width:42.130800px;}
._15{width:43.266240px;}
._18{width:44.820000px;}
._26{width:46.074960px;}
._2d{width:47.329920px;}
._2f{width:49.062960px;}
._30{width:50.078880px;}
._40{width:51.393600px;}
._1b{width:53.066880px;}
._1f{width:54.132480px;}
._8{width:56.113440px;}
._7{width:57.250080px;}
._9{width:58.684320px;}
._1a{width:60.536880px;}
._33{width:61.598160px;}
._4f{width:64.122480px;}
._46{width:65.977200px;}
._4d{width:66.990960px;}
._34{width:68.006880px;}
._4b{width:69.441120px;}
._24{width:71.232720px;}
._1d{width:72.787680px;}
._51{width:74.787120px;}
._2b{width:76.492800px;}
._2a{width:77.628240px;}
._3b{width:78.644160px;}
._47{width:80.436960px;}
._39{width:83.903040px;}
._4e{width:85.815360px;}
._4c{width:88.444800px;}
._50{width:92.926800px;}
._28{width:94.600080px;}
._27{width:95.914800px;}
._43{width:104.340960px;}
._41{width:106.791120px;}
._3a{width:112.767120px;}
._48{width:116.591760px;}
._35{width:117.667440px;}
._3e{width:121.432320px;}
._3f{width:126.153360px;}
._44{width:127.766880px;}
._42{width:149.280480px;}
._38{width:162.367920px;}
._37{width:164.399760px;}
._49{width:178.622640px;}
._3d{width:198.462960px;}
._45{width:211.490640px;}
._36{width:243.103680px;}
._3c{width:349.416720px;}
._52{width:436.666320px;}
.fc2{color:rgb(238,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.ya8{bottom:3.240000px;}
.ybc{bottom:20.340000px;}
.yad{bottom:20.520000px;}
.yb1{bottom:20.565000px;}
.yb8{bottom:37.620000px;}
.yac{bottom:37.800000px;}
.yb0{bottom:37.845000px;}
.ybb{bottom:54.900000px;}
.yaf{bottom:54.945000px;}
.yb5{bottom:55.074000px;}
.yab{bottom:55.080000px;}
.y4{bottom:57.096000px;}
.yb4{bottom:72.174000px;}
.yef{bottom:72.180000px;}
.yaa{bottom:72.360000px;}
.yee{bottom:89.460000px;}
.yf7{bottom:89.490000px;}
.ye9{bottom:90.396000px;}
.y7b{bottom:91.296000px;}
.y41{bottom:91.836000px;}
.ya6{bottom:95.616000px;}
.y10c{bottom:100.116000px;}
.yb3{bottom:105.876000px;}
.yed{bottom:106.740000px;}
.yf6{bottom:106.770000px;}
.ye8{bottom:107.676000px;}
.y7a{bottom:108.576000px;}
.y40{bottom:109.116000px;}
.ya5{bottom:112.896000px;}
.y10b{bottom:117.396000px;}
.yec{bottom:124.020000px;}
.yf5{bottom:124.050000px;}
.ye7{bottom:124.956000px;}
.y79{bottom:125.856000px;}
.y3f{bottom:126.396000px;}
.ya4{bottom:130.176000px;}
.y10a{bottom:134.676000px;}
.yf4{bottom:141.330000px;}
.ye6{bottom:142.236000px;}
.y78{bottom:143.136000px;}
.y3e{bottom:143.676000px;}
.ya3{bottom:147.456000px;}
.y109{bottom:151.950000px;}
.yf3{bottom:158.610000px;}
.ye5{bottom:159.330000px;}
.y77{bottom:160.410000px;}
.y3d{bottom:160.950000px;}
.ya2{bottom:164.730000px;}
.y108{bottom:169.050000px;}
.yf2{bottom:175.710000px;}
.ye4{bottom:176.610000px;}
.y76{bottom:177.510000px;}
.y3c{bottom:178.050000px;}
.ya1{bottom:181.830000px;}
.y107{bottom:186.330000px;}
.yb2{bottom:192.810000px;}
.ye3{bottom:193.890000px;}
.y75{bottom:194.790000px;}
.y3b{bottom:195.330000px;}
.ya0{bottom:199.110000px;}
.y106{bottom:203.610000px;}
.ye2{bottom:211.170000px;}
.y74{bottom:212.070000px;}
.y3a{bottom:212.610000px;}
.y9f{bottom:216.390000px;}
.y105{bottom:220.890000px;}
.ye1{bottom:228.450000px;}
.y73{bottom:229.350000px;}
.y39{bottom:229.890000px;}
.y9e{bottom:233.670000px;}
.y104{bottom:238.170000px;}
.ye0{bottom:245.550000px;}
.y72{bottom:246.630000px;}
.y38{bottom:247.170000px;}
.y9d{bottom:250.950000px;}
.y103{bottom:255.450000px;}
.yae{bottom:262.650000px;}
.ydf{bottom:262.830000px;}
.y71{bottom:263.910000px;}
.y37{bottom:264.450000px;}
.y9c{bottom:268.050000px;}
.y102{bottom:272.550000px;}
.yde{bottom:280.155000px;}
.y70{bottom:281.055000px;}
.y36{bottom:281.595000px;}
.y9b{bottom:285.375000px;}
.y101{bottom:289.875000px;}
.ydd{bottom:297.435000px;}
.y6f{bottom:298.335000px;}
.y35{bottom:298.875000px;}
.y9a{bottom:302.655000px;}
.y100{bottom:307.155000px;}
.ydc{bottom:314.715000px;}
.y6e{bottom:315.615000px;}
.y34{bottom:316.155000px;}
.y99{bottom:319.935000px;}
.yff{bottom:324.435000px;}
.ydb{bottom:331.995000px;}
.ya9{bottom:332.355000px;}
.y6d{bottom:332.895000px;}
.y33{bottom:333.435000px;}
.y98{bottom:337.215000px;}
.yfe{bottom:341.715000px;}
.yda{bottom:349.095000px;}
.y6c{bottom:350.175000px;}
.y32{bottom:350.715000px;}
.y97{bottom:354.495000px;}
.yfd{bottom:358.995000px;}
.yd9{bottom:366.375000px;}
.y6b{bottom:367.275000px;}
.y31{bottom:367.995000px;}
.y96{bottom:371.595000px;}
.yfc{bottom:376.095000px;}
.yd8{bottom:383.655000px;}
.y6a{bottom:384.555000px;}
.y30{bottom:385.095000px;}
.y95{bottom:388.875000px;}
.yfb{bottom:393.375000px;}
.yd7{bottom:400.935000px;}
.y69{bottom:401.835000px;}
.y2f{bottom:402.375000px;}
.y94{bottom:406.155000px;}
.yfa{bottom:410.655000px;}
.yd6{bottom:418.215000px;}
.y68{bottom:419.115000px;}
.ya7{bottom:419.475000px;}
.y2e{bottom:419.655000px;}
.y93{bottom:423.435000px;}
.yf9{bottom:427.935000px;}
.yd5{bottom:435.495000px;}
.y67{bottom:436.395000px;}
.y2d{bottom:436.935000px;}
.y92{bottom:440.715000px;}
.yf8{bottom:445.215000px;}
.yd4{bottom:452.595000px;}
.y66{bottom:453.675000px;}
.y2c{bottom:454.215000px;}
.y91{bottom:457.995000px;}
.yd3{bottom:469.875000px;}
.y65{bottom:470.775000px;}
.y2b{bottom:471.495000px;}
.y90{bottom:475.095000px;}
.yf1{bottom:480.135000px;}
.yd2{bottom:487.155000px;}
.y64{bottom:488.055000px;}
.y2a{bottom:488.595000px;}
.y8f{bottom:492.375000px;}
.yd1{bottom:504.435000px;}
.y63{bottom:505.335000px;}
.y29{bottom:505.875000px;}
.y8e{bottom:509.655000px;}
.yd0{bottom:521.715000px;}
.y62{bottom:522.615000px;}
.y28{bottom:523.155000px;}
.y8d{bottom:526.935000px;}
.ycf{bottom:538.815000px;}
.y61{bottom:539.895000px;}
.y27{bottom:540.435000px;}
.y8c{bottom:544.215000px;}
.yce{bottom:556.095000px;}
.y26{bottom:557.715000px;}
.y60{bottom:558.255000px;}
.y8b{bottom:561.345000px;}
.ycd{bottom:573.405000px;}
.y25{bottom:574.845000px;}
.y5f{bottom:575.385000px;}
.y8a{bottom:578.625000px;}
.ycc{bottom:590.685000px;}
.y24{bottom:592.125000px;}
.y5e{bottom:592.665000px;}
.y89{bottom:595.905000px;}
.ycb{bottom:607.965000px;}
.y23{bottom:609.405000px;}
.y5d{bottom:609.945000px;}
.y88{bottom:613.185000px;}
.yca{bottom:625.245000px;}
.y22{bottom:626.685000px;}
.y5c{bottom:627.225000px;}
.y87{bottom:630.465000px;}
.yc9{bottom:642.345000px;}
.y21{bottom:643.965000px;}
.y5b{bottom:645.585000px;}
.y86{bottom:647.745000px;}
.yc8{bottom:659.625000px;}
.y20{bottom:661.245000px;}
.y5a{bottom:662.685000px;}
.y85{bottom:664.845000px;}
.yf0{bottom:670.605000px;}
.yc7{bottom:676.905000px;}
.y1f{bottom:678.345000px;}
.y59{bottom:679.965000px;}
.y84{bottom:682.125000px;}
.yeb{bottom:691.665000px;}
.yc6{bottom:694.185000px;}
.y1e{bottom:695.625000px;}
.y58{bottom:697.245000px;}
.y83{bottom:699.405000px;}
.yc5{bottom:711.465000px;}
.y1d{bottom:712.905000px;}
.y57{bottom:714.525000px;}
.y82{bottom:716.685000px;}
.yc4{bottom:728.745000px;}
.y1c{bottom:730.185000px;}
.y56{bottom:731.805000px;}
.y81{bottom:733.965000px;}
.yc3{bottom:745.845000px;}
.y1b{bottom:747.465000px;}
.y55{bottom:750.165000px;}
.y80{bottom:751.245000px;}
.yc2{bottom:763.125000px;}
.y1a{bottom:764.745000px;}
.y54{bottom:767.265000px;}
.y7f{bottom:768.345000px;}
.yc1{bottom:780.405000px;}
.y19{bottom:781.845000px;}
.y53{bottom:784.545000px;}
.y7e{bottom:785.625000px;}
.yc0{bottom:797.685000px;}
.y18{bottom:799.125000px;}
.y52{bottom:801.825000px;}
.y7d{bottom:802.905000px;}
.ybf{bottom:814.965000px;}
.y17{bottom:816.405000px;}
.y51{bottom:819.105000px;}
.y7c{bottom:820.185000px;}
.yea{bottom:830.445000px;}
.y16{bottom:833.685000px;}
.y50{bottom:837.465000px;}
.ybe{bottom:847.050000px;}
.y15{bottom:851.010000px;}
.y4f{bottom:854.790000px;}
.y14{bottom:868.110000px;}
.y4e{bottom:871.890000px;}
.y13{bottom:885.390000px;}
.y4d{bottom:889.170000px;}
.y4c{bottom:906.450000px;}
.y12{bottom:907.890000px;}
.ybd{bottom:916.710000px;}
.y11{bottom:919.950000px;}
.y4b{bottom:923.730000px;}
.y10{bottom:937.230000px;}
.y4a{bottom:941.010000px;}
.y49{bottom:958.110000px;}
.yf{bottom:959.730000px;}
.yba{bottom:969.270000px;}
.ye{bottom:971.610000px;}
.y48{bottom:975.390000px;}
.yd{bottom:988.890000px;}
.y47{bottom:992.670000px;}
.y46{bottom:1009.950000px;}
.yc{bottom:1011.390000px;}
.yb{bottom:1023.450000px;}
.y45{bottom:1027.230000px;}
.yb9{bottom:1038.930000px;}
.ya{bottom:1040.730000px;}
.y44{bottom:1044.510000px;}
.y9{bottom:1058.010000px;}
.y43{bottom:1061.610000px;}
.y42{bottom:1078.890000px;}
.yb7{bottom:1091.490000px;}
.y8{bottom:1096.170000px;}
.y7{bottom:1113.450000px;}
.y6{bottom:1130.760000px;}
.yb6{bottom:1143.900000px;}
.y5{bottom:1148.040000px;}
.y3{bottom:1166.400000px;}
.y2{bottom:1184.580000px;}
.y1{bottom:1198.440000px;}
.ha{height:17.280000px;}
.h13{height:17.316000px;}
.h6{height:28.153828px;}
.h2{height:39.760312px;}
.h7{height:43.215117px;}
.h4{height:43.273477px;}
.h8{height:43.506914px;}
.h5{height:49.033828px;}
.h9{height:49.255313px;}
.h12{height:51.660000px;}
.hf{height:51.696000px;}
.h10{height:51.840000px;}
.h3{height:65.884219px;}
.h11{height:68.940000px;}
.hc{height:68.976000px;}
.hd{height:69.120000px;}
.he{height:86.220000px;}
.hb{height:86.400000px;}
.h14{height:138.060000px;}
.h15{height:189.750000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:124.776000px;}
.w4{width:164.700000px;}
.w5{width:179.535000px;}
.w6{width:239.610000px;}
.w7{width:345.135000px;}
.w8{width:345.315000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:6.120000px;}
.x19{left:7.740000px;}
.x16{left:14.790000px;}
.x12{left:28.254000px;}
.x18{left:41.400000px;}
.x14{left:63.900000px;}
.x1{left:127.655987px;}
.x8{left:130.715987px;}
.x6{left:132.515987px;}
.x1b{left:134.325000px;}
.xb{left:136.115987px;}
.x3{left:139.535987px;}
.x4{left:145.655987px;}
.x2{left:147.455987px;}
.x7{left:155.729987px;}
.xa{left:173.009987px;}
.xf{left:181.649987px;}
.x5{left:210.989987px;}
.xd{left:217.829987px;}
.x13{left:253.875000px;}
.xc{left:271.514987px;}
.x9{left:279.794987px;}
.xe{left:297.794987px;}
.x15{left:419.475000px;}
.x1a{left:480.345000px;}
.x10{left:499.784987px;}
.x11{left:553.784987px;}
.x17{left:599.730000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.047360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.040320pt;}
.ls17{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.094720pt;}
.ls7{letter-spacing:0.094933pt;}
.ls1{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.230933pt;}
.ls12{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.265600pt;}
.ls14{letter-spacing:0.298667pt;}
.ls4{letter-spacing:0.320000pt;}
.ls9{letter-spacing:20.432640pt;}
.ls2{letter-spacing:28.752640pt;}
.ls10{letter-spacing:32.571307pt;}
.ls11{letter-spacing:32.592640pt;}
.ls3{letter-spacing:36.432640pt;}
.lsf{letter-spacing:58.811307pt;}
.lsa{letter-spacing:139.451307pt;}
.lsb{letter-spacing:145.211307pt;}
.lsc{letter-spacing:145.232640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws4{word-spacing:-13.600000pt;}
.ws8{word-spacing:-13.510933pt;}
.ws7{word-spacing:-13.374933pt;}
.wsb{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.ws0{word-spacing:-11.040000pt;}
.ws1{word-spacing:-10.760320pt;}
.ws2{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._29{margin-left:-3.395413pt;}
._a{margin-left:-2.500907pt;}
._0{margin-left:-1.220693pt;}
._1{width:0.903040pt;}
._2{width:1.819093pt;}
._20{width:2.724267pt;}
._4{width:3.984000pt;}
._3{width:5.258880pt;}
._17{width:6.282027pt;}
._d{width:7.224320pt;}
._e{width:8.711680pt;}
._f{width:9.880320pt;}
._6{width:10.836480pt;}
._5{width:12.058240pt;}
._11{width:14.342400pt;}
._10{width:15.457920pt;}
._19{width:17.210880pt;}
._31{width:18.335360pt;}
._21{width:19.432960pt;}
._2c{width:20.594987pt;}
._2e{width:22.151040pt;}
._32{width:23.266560pt;}
._4a{width:24.275840pt;}
._22{width:25.178880pt;}
._1c{width:26.311040pt;}
._23{width:27.287040pt;}
._c{width:28.206720pt;}
._b{width:29.109760pt;}
._12{width:30.756480pt;}
._1e{width:31.872000pt;}
._14{width:33.624960pt;}
._13{width:34.687360pt;}
._25{width:36.128000pt;}
._16{width:37.449600pt;}
._15{width:38.458880pt;}
._18{width:39.840000pt;}
._26{width:40.955520pt;}
._2d{width:42.071040pt;}
._2f{width:43.611520pt;}
._30{width:44.514560pt;}
._40{width:45.683200pt;}
._1b{width:47.170560pt;}
._1f{width:48.117760pt;}
._8{width:49.878613pt;}
._7{width:50.888960pt;}
._9{width:52.163840pt;}
._1a{width:53.810560pt;}
._33{width:54.753920pt;}
._4f{width:56.997760pt;}
._46{width:58.646400pt;}
._4d{width:59.547520pt;}
._34{width:60.450560pt;}
._4b{width:61.725440pt;}
._24{width:63.317973pt;}
._1d{width:64.700160pt;}
._51{width:66.477440pt;}
._2b{width:67.993600pt;}
._2a{width:69.002880pt;}
._3b{width:69.905920pt;}
._47{width:71.499520pt;}
._39{width:74.580480pt;}
._4e{width:76.280320pt;}
._4c{width:78.617600pt;}
._50{width:82.601600pt;}
._28{width:84.088960pt;}
._27{width:85.257600pt;}
._43{width:92.747520pt;}
._41{width:94.925440pt;}
._3a{width:100.237440pt;}
._48{width:103.637120pt;}
._35{width:104.593280pt;}
._3e{width:107.939840pt;}
._3f{width:112.136320pt;}
._44{width:113.570560pt;}
._42{width:132.693760pt;}
._38{width:144.327040pt;}
._37{width:146.133120pt;}
._49{width:158.775680pt;}
._3d{width:176.411520pt;}
._45{width:187.991680pt;}
._36{width:216.092160pt;}
._3c{width:310.592640pt;}
._52{width:388.147840pt;}
.fs4{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:2.880000pt;}
.ybc{bottom:18.080000pt;}
.yad{bottom:18.240000pt;}
.yb1{bottom:18.280000pt;}
.yb8{bottom:33.440000pt;}
.yac{bottom:33.600000pt;}
.yb0{bottom:33.640000pt;}
.ybb{bottom:48.800000pt;}
.yaf{bottom:48.840000pt;}
.yb5{bottom:48.954667pt;}
.yab{bottom:48.960000pt;}
.y4{bottom:50.752000pt;}
.yb4{bottom:64.154667pt;}
.yef{bottom:64.160000pt;}
.yaa{bottom:64.320000pt;}
.yee{bottom:79.520000pt;}
.yf7{bottom:79.546667pt;}
.ye9{bottom:80.352000pt;}
.y7b{bottom:81.152000pt;}
.y41{bottom:81.632000pt;}
.ya6{bottom:84.992000pt;}
.y10c{bottom:88.992000pt;}
.yb3{bottom:94.112000pt;}
.yed{bottom:94.880000pt;}
.yf6{bottom:94.906667pt;}
.ye8{bottom:95.712000pt;}
.y7a{bottom:96.512000pt;}
.y40{bottom:96.992000pt;}
.ya5{bottom:100.352000pt;}
.y10b{bottom:104.352000pt;}
.yec{bottom:110.240000pt;}
.yf5{bottom:110.266667pt;}
.ye7{bottom:111.072000pt;}
.y79{bottom:111.872000pt;}
.y3f{bottom:112.352000pt;}
.ya4{bottom:115.712000pt;}
.y10a{bottom:119.712000pt;}
.yf4{bottom:125.626667pt;}
.ye6{bottom:126.432000pt;}
.y78{bottom:127.232000pt;}
.y3e{bottom:127.712000pt;}
.ya3{bottom:131.072000pt;}
.y109{bottom:135.066667pt;}
.yf3{bottom:140.986667pt;}
.ye5{bottom:141.626667pt;}
.y77{bottom:142.586667pt;}
.y3d{bottom:143.066667pt;}
.ya2{bottom:146.426667pt;}
.y108{bottom:150.266667pt;}
.yf2{bottom:156.186667pt;}
.ye4{bottom:156.986667pt;}
.y76{bottom:157.786667pt;}
.y3c{bottom:158.266667pt;}
.ya1{bottom:161.626667pt;}
.y107{bottom:165.626667pt;}
.yb2{bottom:171.386667pt;}
.ye3{bottom:172.346667pt;}
.y75{bottom:173.146667pt;}
.y3b{bottom:173.626667pt;}
.ya0{bottom:176.986667pt;}
.y106{bottom:180.986667pt;}
.ye2{bottom:187.706667pt;}
.y74{bottom:188.506667pt;}
.y3a{bottom:188.986667pt;}
.y9f{bottom:192.346667pt;}
.y105{bottom:196.346667pt;}
.ye1{bottom:203.066667pt;}
.y73{bottom:203.866667pt;}
.y39{bottom:204.346667pt;}
.y9e{bottom:207.706667pt;}
.y104{bottom:211.706667pt;}
.ye0{bottom:218.266667pt;}
.y72{bottom:219.226667pt;}
.y38{bottom:219.706667pt;}
.y9d{bottom:223.066667pt;}
.y103{bottom:227.066667pt;}
.yae{bottom:233.466667pt;}
.ydf{bottom:233.626667pt;}
.y71{bottom:234.586667pt;}
.y37{bottom:235.066667pt;}
.y9c{bottom:238.266667pt;}
.y102{bottom:242.266667pt;}
.yde{bottom:249.026667pt;}
.y70{bottom:249.826667pt;}
.y36{bottom:250.306667pt;}
.y9b{bottom:253.666667pt;}
.y101{bottom:257.666667pt;}
.ydd{bottom:264.386667pt;}
.y6f{bottom:265.186667pt;}
.y35{bottom:265.666667pt;}
.y9a{bottom:269.026667pt;}
.y100{bottom:273.026667pt;}
.ydc{bottom:279.746667pt;}
.y6e{bottom:280.546667pt;}
.y34{bottom:281.026667pt;}
.y99{bottom:284.386667pt;}
.yff{bottom:288.386667pt;}
.ydb{bottom:295.106667pt;}
.ya9{bottom:295.426667pt;}
.y6d{bottom:295.906667pt;}
.y33{bottom:296.386667pt;}
.y98{bottom:299.746667pt;}
.yfe{bottom:303.746667pt;}
.yda{bottom:310.306667pt;}
.y6c{bottom:311.266667pt;}
.y32{bottom:311.746667pt;}
.y97{bottom:315.106667pt;}
.yfd{bottom:319.106667pt;}
.yd9{bottom:325.666667pt;}
.y6b{bottom:326.466667pt;}
.y31{bottom:327.106667pt;}
.y96{bottom:330.306667pt;}
.yfc{bottom:334.306667pt;}
.yd8{bottom:341.026667pt;}
.y6a{bottom:341.826667pt;}
.y30{bottom:342.306667pt;}
.y95{bottom:345.666667pt;}
.yfb{bottom:349.666667pt;}
.yd7{bottom:356.386667pt;}
.y69{bottom:357.186667pt;}
.y2f{bottom:357.666667pt;}
.y94{bottom:361.026667pt;}
.yfa{bottom:365.026667pt;}
.yd6{bottom:371.746667pt;}
.y68{bottom:372.546667pt;}
.ya7{bottom:372.866667pt;}
.y2e{bottom:373.026667pt;}
.y93{bottom:376.386667pt;}
.yf9{bottom:380.386667pt;}
.yd5{bottom:387.106667pt;}
.y67{bottom:387.906667pt;}
.y2d{bottom:388.386667pt;}
.y92{bottom:391.746667pt;}
.yf8{bottom:395.746667pt;}
.yd4{bottom:402.306667pt;}
.y66{bottom:403.266667pt;}
.y2c{bottom:403.746667pt;}
.y91{bottom:407.106667pt;}
.yd3{bottom:417.666667pt;}
.y65{bottom:418.466667pt;}
.y2b{bottom:419.106667pt;}
.y90{bottom:422.306667pt;}
.yf1{bottom:426.786667pt;}
.yd2{bottom:433.026667pt;}
.y64{bottom:433.826667pt;}
.y2a{bottom:434.306667pt;}
.y8f{bottom:437.666667pt;}
.yd1{bottom:448.386667pt;}
.y63{bottom:449.186667pt;}
.y29{bottom:449.666667pt;}
.y8e{bottom:453.026667pt;}
.yd0{bottom:463.746667pt;}
.y62{bottom:464.546667pt;}
.y28{bottom:465.026667pt;}
.y8d{bottom:468.386667pt;}
.ycf{bottom:478.946667pt;}
.y61{bottom:479.906667pt;}
.y27{bottom:480.386667pt;}
.y8c{bottom:483.746667pt;}
.yce{bottom:494.306667pt;}
.y26{bottom:495.746667pt;}
.y60{bottom:496.226667pt;}
.y8b{bottom:498.973333pt;}
.ycd{bottom:509.693333pt;}
.y25{bottom:510.973333pt;}
.y5f{bottom:511.453333pt;}
.y8a{bottom:514.333333pt;}
.ycc{bottom:525.053333pt;}
.y24{bottom:526.333333pt;}
.y5e{bottom:526.813333pt;}
.y89{bottom:529.693333pt;}
.ycb{bottom:540.413333pt;}
.y23{bottom:541.693333pt;}
.y5d{bottom:542.173333pt;}
.y88{bottom:545.053333pt;}
.yca{bottom:555.773333pt;}
.y22{bottom:557.053333pt;}
.y5c{bottom:557.533333pt;}
.y87{bottom:560.413333pt;}
.yc9{bottom:570.973333pt;}
.y21{bottom:572.413333pt;}
.y5b{bottom:573.853333pt;}
.y86{bottom:575.773333pt;}
.yc8{bottom:586.333333pt;}
.y20{bottom:587.773333pt;}
.y5a{bottom:589.053333pt;}
.y85{bottom:590.973333pt;}
.yf0{bottom:596.093333pt;}
.yc7{bottom:601.693333pt;}
.y1f{bottom:602.973333pt;}
.y59{bottom:604.413333pt;}
.y84{bottom:606.333333pt;}
.yeb{bottom:614.813333pt;}
.yc6{bottom:617.053333pt;}
.y1e{bottom:618.333333pt;}
.y58{bottom:619.773333pt;}
.y83{bottom:621.693333pt;}
.yc5{bottom:632.413333pt;}
.y1d{bottom:633.693333pt;}
.y57{bottom:635.133333pt;}
.y82{bottom:637.053333pt;}
.yc4{bottom:647.773333pt;}
.y1c{bottom:649.053333pt;}
.y56{bottom:650.493333pt;}
.y81{bottom:652.413333pt;}
.yc3{bottom:662.973333pt;}
.y1b{bottom:664.413333pt;}
.y55{bottom:666.813333pt;}
.y80{bottom:667.773333pt;}
.yc2{bottom:678.333333pt;}
.y1a{bottom:679.773333pt;}
.y54{bottom:682.013333pt;}
.y7f{bottom:682.973333pt;}
.yc1{bottom:693.693333pt;}
.y19{bottom:694.973333pt;}
.y53{bottom:697.373333pt;}
.y7e{bottom:698.333333pt;}
.yc0{bottom:709.053333pt;}
.y18{bottom:710.333333pt;}
.y52{bottom:712.733333pt;}
.y7d{bottom:713.693333pt;}
.ybf{bottom:724.413333pt;}
.y17{bottom:725.693333pt;}
.y51{bottom:728.093333pt;}
.y7c{bottom:729.053333pt;}
.yea{bottom:738.173333pt;}
.y16{bottom:741.053333pt;}
.y50{bottom:744.413333pt;}
.ybe{bottom:752.933333pt;}
.y15{bottom:756.453333pt;}
.y4f{bottom:759.813333pt;}
.y14{bottom:771.653333pt;}
.y4e{bottom:775.013333pt;}
.y13{bottom:787.013333pt;}
.y4d{bottom:790.373333pt;}
.y4c{bottom:805.733333pt;}
.y12{bottom:807.013333pt;}
.ybd{bottom:814.853333pt;}
.y11{bottom:817.733333pt;}
.y4b{bottom:821.093333pt;}
.y10{bottom:833.093333pt;}
.y4a{bottom:836.453333pt;}
.y49{bottom:851.653333pt;}
.yf{bottom:853.093333pt;}
.yba{bottom:861.573333pt;}
.ye{bottom:863.653333pt;}
.y48{bottom:867.013333pt;}
.yd{bottom:879.013333pt;}
.y47{bottom:882.373333pt;}
.y46{bottom:897.733333pt;}
.yc{bottom:899.013333pt;}
.yb{bottom:909.733333pt;}
.y45{bottom:913.093333pt;}
.yb9{bottom:923.493333pt;}
.ya{bottom:925.093333pt;}
.y44{bottom:928.453333pt;}
.y9{bottom:940.453333pt;}
.y43{bottom:943.653333pt;}
.y42{bottom:959.013333pt;}
.yb7{bottom:970.213333pt;}
.y8{bottom:974.373333pt;}
.y7{bottom:989.733333pt;}
.y6{bottom:1005.120000pt;}
.yb6{bottom:1016.800000pt;}
.y5{bottom:1020.480000pt;}
.y3{bottom:1036.800000pt;}
.y2{bottom:1052.960000pt;}
.y1{bottom:1065.280000pt;}
.ha{height:15.360000pt;}
.h13{height:15.392000pt;}
.h6{height:25.025625pt;}
.h2{height:35.342500pt;}
.h7{height:38.413438pt;}
.h4{height:38.465312pt;}
.h8{height:38.672812pt;}
.h5{height:43.585625pt;}
.h9{height:43.782500pt;}
.h12{height:45.920000pt;}
.hf{height:45.952000pt;}
.h10{height:46.080000pt;}
.h3{height:58.563750pt;}
.h11{height:61.280000pt;}
.hc{height:61.312000pt;}
.hd{height:61.440000pt;}
.he{height:76.640000pt;}
.hb{height:76.800000pt;}
.h14{height:122.720000pt;}
.h15{height:168.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:110.912000pt;}
.w4{width:146.400000pt;}
.w5{width:159.586667pt;}
.w6{width:212.986667pt;}
.w7{width:306.786667pt;}
.w8{width:306.946667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:5.440000pt;}
.x19{left:6.880000pt;}
.x16{left:13.146667pt;}
.x12{left:25.114667pt;}
.x18{left:36.800000pt;}
.x14{left:56.800000pt;}
.x1{left:113.471988pt;}
.x8{left:116.191988pt;}
.x6{left:117.791988pt;}
.x1b{left:119.400000pt;}
.xb{left:120.991988pt;}
.x3{left:124.031988pt;}
.x4{left:129.471988pt;}
.x2{left:131.071988pt;}
.x7{left:138.426655pt;}
.xa{left:153.786655pt;}
.xf{left:161.466655pt;}
.x5{left:187.546655pt;}
.xd{left:193.626655pt;}
.x13{left:225.666667pt;}
.xc{left:241.346655pt;}
.x9{left:248.706655pt;}
.xe{left:264.706655pt;}
.x15{left:372.866667pt;}
.x1a{left:426.973333pt;}
.x10{left:444.253322pt;}
.x11{left:492.253322pt;}
.x17{left:533.093333pt;}
}




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