
    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_b6434b5a4ea7507f942a5955.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_63a15ed1e89a354149d43c3c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4af08c333d32875099807a18.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_27cdd73e0785f8158b935a2e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_ed62aa9d96f0c31828d66853.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_dd678013f6341d0defee40cf.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_1ca3a6b8244f7dbac9c0411a.woff2')format("woff");}.ff7{font-family:ff7;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;}
.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:-82.800000px;}
.v4{vertical-align:-71.640000px;}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:29.880000px;}
.ls8{letter-spacing:-1.872000px;}
.ls26{letter-spacing:-0.648000px;}
.ls1a{letter-spacing:-0.373200px;}
.ls22{letter-spacing:-0.360000px;}
.ls19{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.270000px;}
.ls1d{letter-spacing:-0.220200px;}
.ls25{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.153600px;}
.ls1f{letter-spacing:-0.072000px;}
.lsf{letter-spacing:-0.053280px;}
.ls15{letter-spacing:-0.027360px;}
.ls7{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.072000px;}
.lsa{letter-spacing:0.078600px;}
.ls3{letter-spacing:0.090000px;}
.ls14{letter-spacing:0.139800px;}
.ls13{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.192000px;}
.ls21{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.306000px;}
.lse{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.756000px;}
.ls10{letter-spacing:0.900000px;}
.ls1c{letter-spacing:1.170000px;}
.ls11{letter-spacing:1.260000px;}
.ls20{letter-spacing:1.980000px;}
.ls2{letter-spacing:4.050000px;}
.ls1b{letter-spacing:10.980000px;}
.ls24{letter-spacing:12.690000px;}
.ls27{letter-spacing:24.120000px;}
.ls1e{letter-spacing:30.240000px;}
.ls23{letter-spacing:67.440000px;}
.lsd{letter-spacing:109.560000px;}
.ls12{letter-spacing:109.920000px;}
.ls9{letter-spacing:174.111120px;}
.ls18{letter-spacing:237.720000px;}
.ls28{letter-spacing:826.320000px;}
.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:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws12{word-spacing:-17.928000px;}
.ws14{word-spacing:-17.712000px;}
.ws13{word-spacing:-17.640000px;}
.wse{word-spacing:-15.210000px;}
.ws2{word-spacing:-15.030000px;}
.wsa{word-spacing:-14.976720px;}
.ws9{word-spacing:-14.967480px;}
.ws8{word-spacing:-14.888880px;}
.wsd{word-spacing:-14.876400px;}
.ws3{word-spacing:-14.850000px;}
.ws11{word-spacing:-14.809800px;}
.wsf{word-spacing:-14.656800px;}
.ws1{word-spacing:-14.220000px;}
.ws10{word-spacing:-14.192640px;}
.ws4{word-spacing:-12.204000px;}
.ws5{word-spacing:-12.186000px;}
.ws6{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._f{margin-left:-2.630880px;}
._8{margin-left:-1.249560px;}
._a{width:1.384680px;}
._6{width:2.691360px;}
._4{width:4.517640px;}
._5{width:6.343920px;}
._c{width:7.499520px;}
._b{width:8.537040px;}
._e{width:9.537840px;}
._d{width:10.920000px;}
._1e{width:11.952000px;}
._13{width:13.338000px;}
._11{width:15.017520px;}
._10{width:16.138200px;}
._22{width:17.356680px;}
._2a{width:18.906840px;}
._7{width:20.089080px;}
._1b{width:21.810000px;}
._23{width:23.066880px;}
._17{width:24.192000px;}
._16{width:25.272000px;}
._15{width:27.072000px;}
._14{width:28.080000px;}
._19{width:29.160000px;}
._18{width:30.296640px;}
._9{width:31.527360px;}
._1a{width:33.005880px;}
._27{width:34.632000px;}
._28{width:36.504000px;}
._24{width:38.592000px;}
._2b{width:40.032000px;}
._29{width:41.760000px;}
._2c{width:42.937560px;}
._25{width:44.496000px;}
._20{width:46.512000px;}
._21{width:47.592000px;}
._1f{width:49.608000px;}
._32{width:51.024000px;}
._1d{width:52.272000px;}
._31{width:56.016000px;}
._26{width:57.024000px;}
._2f{width:63.288000px;}
._30{width:64.368000px;}
._2e{width:73.584000px;}
._2d{width:74.592000px;}
._2{width:93.813120px;}
._3{width:94.836720px;}
._12{width:243.156000px;}
._0{width:805.620000px;}
._1c{width:1273.431840px;}
._1{width:1748.700000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs8{font-size:47.880000px;}
.fs1{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs6{font-size:60.120000px;}
.fs3{font-size:63.000000px;}
.fs0{font-size:65.880000px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y5{bottom:45.359908px;}
.y4{bottom:60.869908px;}
.y3{bottom:76.439908px;}
.y2c{bottom:96.689908px;}
.yd4{bottom:101.909908px;}
.y2b{bottom:113.969908px;}
.yd3{bottom:114.329908px;}
.yae{bottom:118.739908px;}
.yd7{bottom:119.189908px;}
.y5b{bottom:131.159908px;}
.y87{bottom:131.609908px;}
.y2a{bottom:136.379908px;}
.yad{bottom:139.439908px;}
.y101{bottom:140.969908px;}
.yd2{bottom:141.239908px;}
.y5a{bottom:148.439908px;}
.y29{bottom:148.799908px;}
.yaa{bottom:153.659908px;}
.yab{bottom:160.139908px;}
.yd1{bottom:161.939908px;}
.y100{bottom:163.289908px;}
.y59{bottom:165.719908px;}
.yac{bottom:166.079908px;}
.yee{bottom:166.889908px;}
.y58{bottom:170.939908px;}
.y28{bottom:173.189908px;}
.y86{bottom:180.839908px;}
.yd0{bottom:182.639908px;}
.y57{bottom:182.909908px;}
.yf0{bottom:183.359908px;}
.yec{bottom:184.349908px;}
.yff{bottom:185.699908px;}
.y56{bottom:188.129908px;}
.y27{bottom:189.659908px;}
.yed{bottom:191.099908px;}
.y55{bottom:200.189908px;}
.y85{bottom:201.539908px;}
.ycf{bottom:203.249908px;}
.yeb{bottom:205.049908px;}
.y81{bottom:205.409908px;}
.y26{bottom:206.129908px;}
.yfe{bottom:208.019908px;}
.y54{bottom:217.469908px;}
.yf2{bottom:217.829908px;}
.y84{bottom:222.239908px;}
.y25{bottom:222.599908px;}
.y7d{bottom:222.689908px;}
.yce{bottom:223.949908px;}
.yea{bottom:225.749908px;}
.y53{bottom:234.659908px;}
.y7c{bottom:235.019908px;}
.y24{bottom:239.069908px;}
.ya9{bottom:239.879908px;}
.yfd{bottom:242.309908px;}
.y83{bottom:242.939908px;}
.ycd{bottom:244.649908px;}
.ye9{bottom:246.449908px;}
.yf1{bottom:249.689908px;}
.y52{bottom:251.939908px;}
.ya8{bottom:252.299908px;}
.y23{bottom:255.539908px;}
.y82{bottom:263.639908px;}
.yfc{bottom:264.629908px;}
.ycc{bottom:265.349908px;}
.ye8{bottom:267.149908px;}
.y51{bottom:269.219908px;}
.y22{bottom:272.009908px;}
.y7b{bottom:284.339908px;}
.ycb{bottom:286.049908px;}
.y50{bottom:286.409908px;}
.yfb{bottom:287.039908px;}
.ye7{bottom:287.849908px;}
.y21{bottom:288.479908px;}
.ya7{bottom:291.089908px;}
.y4f{bottom:291.629908px;}
.y4e{bottom:303.689908px;}
.y80{bottom:304.049908px;}
.y20{bottom:304.949908px;}
.y7a{bottom:305.039908px;}
.yca{bottom:306.749908px;}
.ye6{bottom:308.549908px;}
.yfa{bottom:309.359908px;}
.y4d{bottom:320.969908px;}
.y1f{bottom:321.419908px;}
.ya4{bottom:322.319908px;}
.y79{bottom:325.739908px;}
.yc9{bottom:327.449908px;}
.ye5{bottom:329.249908px;}
.y7f{bottom:332.489908px;}
.y1e{bottom:337.979908px;}
.y4c{bottom:338.159908px;}
.ya3{bottom:343.019908px;}
.y4b{bottom:343.379908px;}
.yf9{bottom:343.649908px;}
.y78{bottom:346.439908px;}
.yc8{bottom:348.149908px;}
.ye3{bottom:349.949908px;}
.yda{bottom:353.189908px;}
.y1d{bottom:354.449908px;}
.yd6{bottom:354.899908px;}
.y4a{bottom:355.799908px;}
.ye4{bottom:356.699908px;}
.ya2{bottom:363.089908px;}
.yf8{bottom:366.059908px;}
.y77{bottom:367.139908px;}
.yc7{bottom:368.849908px;}
.y1c{bottom:370.559908px;}
.ye2{bottom:370.649908px;}
.yd9{bottom:373.889908px;}
.ya1{bottom:380.279908px;}
.y1b{bottom:387.749908px;}
.y76{bottom:387.839908px;}
.yf7{bottom:388.379908px;}
.yc6{bottom:389.549908px;}
.ye1{bottom:391.259908px;}
.yef{bottom:394.589908px;}
.y48{bottom:394.949908px;}
.ya0{bottom:397.559908px;}
.y49{bottom:401.699908px;}
.y1a{bottom:405.029908px;}
.y75{bottom:408.539908px;}
.yd5{bottom:409.979908px;}
.yc5{bottom:410.249908px;}
.yf6{bottom:410.699908px;}
.ye0{bottom:411.959908px;}
.y9f{bottom:414.839908px;}
.y47{bottom:415.559908px;}
.y19{bottom:422.309908px;}
.y74{bottom:429.239908px;}
.yc4{bottom:430.949908px;}
.y9e{bottom:432.029908px;}
.ydf{bottom:432.659908px;}
.yf5{bottom:433.019908px;}
.y46{bottom:436.259908px;}
.y18{bottom:439.499908px;}
.y9d{bottom:449.339908px;}
.y73{bottom:449.969908px;}
.yc3{bottom:451.679908px;}
.yde{bottom:453.389908px;}
.y17{bottom:456.809908px;}
.y45{bottom:456.989908px;}
.y9c{bottom:466.619908px;}
.yf4{bottom:467.429908px;}
.y72{bottom:470.669908px;}
.yc2{bottom:472.379908px;}
.y16{bottom:474.089908px;}
.y44{bottom:477.689908px;}
.yf3{bottom:489.749908px;}
.y15{bottom:491.279908px;}
.y71{bottom:491.369908px;}
.yc1{bottom:493.079908px;}
.ydd{bottom:494.519908px;}
.y43{bottom:498.389908px;}
.y9b{bottom:501.719908px;}
.y14{bottom:508.559908px;}
.y70{bottom:512.069908px;}
.yc0{bottom:513.779908px;}
.yd8{bottom:518.819908px;}
.y42{bottom:519.089908px;}
.y99{bottom:522.419908px;}
.y13{bottom:525.839908px;}
.y9a{bottom:529.169908px;}
.y6f{bottom:532.769908px;}
.ydc{bottom:534.209908px;}
.ybf{bottom:534.479908px;}
.y41{bottom:539.789908px;}
.y12{bottom:543.029908px;}
.y98{bottom:543.119908px;}
.y10e{bottom:546.269908px;}
.y6e{bottom:553.469908px;}
.ybe{bottom:555.179908px;}
.y7e{bottom:560.219908px;}
.y11{bottom:560.309908px;}
.y40{bottom:560.489908px;}
.y97{bottom:563.819908px;}
.y6d{bottom:574.169908px;}
.ybd{bottom:575.879908px;}
.y10{bottom:578.129908px;}
.y10d{bottom:580.559908px;}
.y3e{bottom:581.189908px;}
.y96{bottom:584.519908px;}
.y3f{bottom:587.939908px;}
.y6c{bottom:594.869908px;}
.ybc{bottom:596.579908px;}
.y3d{bottom:601.889908px;}
.y10c{bottom:602.969908px;}
.y95{bottom:605.219908px;}
.yf{bottom:614.939908px;}
.y6b{bottom:615.569908px;}
.ybb{bottom:617.279908px;}
.y3c{bottom:622.589908px;}
.y10b{bottom:625.289908px;}
.y94{bottom:625.919908px;}
.y6a{bottom:636.269908px;}
.yba{bottom:637.979908px;}
.y3b{bottom:643.289908px;}
.ye{bottom:644.279908px;}
.y93{bottom:646.619908px;}
.y10a{bottom:647.609908px;}
.y69{bottom:656.969908px;}
.yb9{bottom:658.679908px;}
.y39{bottom:663.989908px;}
.y92{bottom:667.319908px;}
.y109{bottom:669.929908px;}
.y3a{bottom:670.739908px;}
.yd{bottom:673.619908px;}
.y68{bottom:677.669908px;}
.yb8{bottom:679.379908px;}
.y90{bottom:688.019908px;}
.y91{bottom:694.769908px;}
.y67{bottom:698.369908px;}
.yb6{bottom:700.079908px;}
.yc{bottom:702.869908px;}
.y108{bottom:704.309908px;}
.ya6{bottom:705.119908px;}
.y38{bottom:705.389908px;}
.yb7{bottom:706.829908px;}
.y8f{bottom:708.089908px;}
.y66{bottom:719.069908px;}
.yb5{bottom:720.779908px;}
.y8e{bottom:725.369908px;}
.ydb{bottom:725.819908px;}
.y37{bottom:726.089908px;}
.y107{bottom:726.629908px;}
.yb{bottom:732.209908px;}
.y65{bottom:739.769908px;}
.yb4{bottom:741.479908px;}
.y8d{bottom:742.559908px;}
.y36{bottom:746.789908px;}
.y106{bottom:748.949908px;}
.y8c{bottom:759.839908px;}
.y64{bottom:760.469908px;}
.ya{bottom:761.459908px;}
.yb3{bottom:762.179908px;}
.y35{bottom:773.249908px;}
.y8b{bottom:777.029908px;}
.y63{bottom:781.169908px;}
.yb2{bottom:782.879908px;}
.y105{bottom:783.329908px;}
.y34{bottom:789.719908px;}
.y9{bottom:790.799908px;}
.y8a{bottom:794.309908px;}
.y62{bottom:801.869908px;}
.yb1{bottom:803.579908px;}
.y104{bottom:805.649908px;}
.y33{bottom:806.189908px;}
.y89{bottom:811.589908px;}
.y8{bottom:820.049908px;}
.y60{bottom:822.569908px;}
.y32{bottom:822.659908px;}
.yb0{bottom:824.279908px;}
.y88{bottom:828.779908px;}
.y61{bottom:829.319908px;}
.y31{bottom:839.159908px;}
.y103{bottom:839.969908px;}
.y5f{bottom:843.299908px;}
.yaf{bottom:844.739908px;}
.y7{bottom:849.419908px;}
.y30{bottom:855.629908px;}
.y102{bottom:862.289908px;}
.y5e{bottom:863.999908px;}
.ya5{bottom:870.749908px;}
.y2f{bottom:872.189908px;}
.y6{bottom:878.669908px;}
.y5d{bottom:884.699908px;}
.y2e{bottom:888.659908px;}
.y5c{bottom:916.739908px;}
.y2d{bottom:917.099908px;}
.y2{bottom:936.809908px;}
.ha{height:38.158594px;}
.hd{height:46.991602px;}
.h4{height:52.998047px;}
.h9{height:53.709961px;}
.h8{height:55.291992px;}
.h7{height:59.004492px;}
.he{height:64.546875px;}
.hb{height:64.657617px;}
.h3{height:65.526152px;}
.hf{height:70.628906px;}
.h6{height:70.664062px;}
.hc{height:72.562500px;}
.h5{height:95.603730px;}
.h2{height:1020.599908px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w3{width:722.879978px;}
.w2{width:722.879989px;}
.w0{width:722.880000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3c{left:63.809989px;}
.x1{left:95.669989px;}
.xa{left:100.529989px;}
.x1e{left:105.419989px;}
.x20{left:117.029989px;}
.xb{left:127.559989px;}
.x12{left:159.599989px;}
.x2b{left:163.649978px;}
.x2c{left:175.709989px;}
.x36{left:181.649978px;}
.x37{left:193.709989px;}
.x15{left:212.159978px;}
.x16{left:218.189989px;}
.x28{left:241.409978px;}
.x29{left:253.469989px;}
.x3a{left:254.819978px;}
.x3b{left:266.879989px;}
.x1c{left:285.329978px;}
.x1d{left:297.389989px;}
.x2f{left:298.469978px;}
.xc{left:302.249978px;}
.xd{left:308.279989px;}
.x1a{left:310.169978px;}
.x2d{left:311.339978px;}
.x1b{left:322.259989px;}
.x2e{left:323.429989px;}
.x4{left:325.229978px;}
.x5{left:331.259989px;}
.x27{left:336.659989px;}
.x30{left:359.249978px;}
.x31{left:371.309989px;}
.x1f{left:374.819978px;}
.x35{left:379.589978px;}
.x8{left:386.159978px;}
.x9{left:392.189989px;}
.x17{left:398.759989px;}
.x2{left:401.459978px;}
.x3{left:407.489989px;}
.xe{left:412.889978px;}
.xf{left:418.919989px;}
.x10{left:427.559978px;}
.x11{left:433.589989px;}
.x32{left:437.099978px;}
.x23{left:449.699978px;}
.x24{left:461.759989px;}
.x6{left:464.009978px;}
.x7{left:470.039989px;}
.x18{left:480.749978px;}
.x33{left:488.219978px;}
.x19{left:492.809989px;}
.x34{left:500.279989px;}
.x25{left:507.749978px;}
.x26{left:519.809989px;}
.x21{left:551.159978px;}
.x22{left:563.219989px;}
.x2a{left:576.089989px;}
.x13{left:587.429978px;}
.x14{left:593.459989px;}
.x38{left:610.829978px;}
.x39{left:622.889989px;}
@media print{
.v3{vertical-align:-73.600000pt;}
.v4{vertical-align:-63.680000pt;}
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:26.560000pt;}
.ls8{letter-spacing:-1.664000pt;}
.ls26{letter-spacing:-0.576000pt;}
.ls1a{letter-spacing:-0.331733pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.240000pt;}
.ls1d{letter-spacing:-0.195733pt;}
.ls25{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.136533pt;}
.ls1f{letter-spacing:-0.064000pt;}
.lsf{letter-spacing:-0.047360pt;}
.ls15{letter-spacing:-0.024320pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.064000pt;}
.lsa{letter-spacing:0.069867pt;}
.ls3{letter-spacing:0.080000pt;}
.ls14{letter-spacing:0.124267pt;}
.ls13{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.170667pt;}
.ls21{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.272000pt;}
.lse{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.672000pt;}
.ls10{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:1.040000pt;}
.ls11{letter-spacing:1.120000pt;}
.ls20{letter-spacing:1.760000pt;}
.ls2{letter-spacing:3.600000pt;}
.ls1b{letter-spacing:9.760000pt;}
.ls24{letter-spacing:11.280000pt;}
.ls27{letter-spacing:21.440000pt;}
.ls1e{letter-spacing:26.880000pt;}
.ls23{letter-spacing:59.946667pt;}
.lsd{letter-spacing:97.386667pt;}
.ls12{letter-spacing:97.706667pt;}
.ls9{letter-spacing:154.765440pt;}
.ls18{letter-spacing:211.306667pt;}
.ls28{letter-spacing:734.506667pt;}
.wsc{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws12{word-spacing:-15.936000pt;}
.ws14{word-spacing:-15.744000pt;}
.ws13{word-spacing:-15.680000pt;}
.wse{word-spacing:-13.520000pt;}
.ws2{word-spacing:-13.360000pt;}
.wsa{word-spacing:-13.312640pt;}
.ws9{word-spacing:-13.304427pt;}
.ws8{word-spacing:-13.234560pt;}
.wsd{word-spacing:-13.223467pt;}
.ws3{word-spacing:-13.200000pt;}
.ws11{word-spacing:-13.164267pt;}
.wsf{word-spacing:-13.028267pt;}
.ws1{word-spacing:-12.640000pt;}
.ws10{word-spacing:-12.615680pt;}
.ws4{word-spacing:-10.848000pt;}
.ws5{word-spacing:-10.832000pt;}
.ws6{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._f{margin-left:-2.338560pt;}
._8{margin-left:-1.110720pt;}
._a{width:1.230827pt;}
._6{width:2.392320pt;}
._4{width:4.015680pt;}
._5{width:5.639040pt;}
._c{width:6.666240pt;}
._b{width:7.588480pt;}
._e{width:8.478080pt;}
._d{width:9.706667pt;}
._1e{width:10.624000pt;}
._13{width:11.856000pt;}
._11{width:13.348907pt;}
._10{width:14.345067pt;}
._22{width:15.428160pt;}
._2a{width:16.806080pt;}
._7{width:17.856960pt;}
._1b{width:19.386667pt;}
._23{width:20.503893pt;}
._17{width:21.504000pt;}
._16{width:22.464000pt;}
._15{width:24.064000pt;}
._14{width:24.960000pt;}
._19{width:25.920000pt;}
._18{width:26.930347pt;}
._9{width:28.024320pt;}
._1a{width:29.338560pt;}
._27{width:30.784000pt;}
._28{width:32.448000pt;}
._24{width:34.304000pt;}
._2b{width:35.584000pt;}
._29{width:37.120000pt;}
._2c{width:38.166720pt;}
._25{width:39.552000pt;}
._20{width:41.344000pt;}
._21{width:42.304000pt;}
._1f{width:44.096000pt;}
._32{width:45.354667pt;}
._1d{width:46.464000pt;}
._31{width:49.792000pt;}
._26{width:50.688000pt;}
._2f{width:56.256000pt;}
._30{width:57.216000pt;}
._2e{width:65.408000pt;}
._2d{width:66.304000pt;}
._2{width:83.389440pt;}
._3{width:84.299307pt;}
._12{width:216.138667pt;}
._0{width:716.106667pt;}
._1c{width:1131.939413pt;}
._1{width:1554.400000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:42.560000pt;}
.fs1{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs6{font-size:53.440000pt;}
.fs3{font-size:56.000000pt;}
.fs0{font-size:58.560000pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y5{bottom:40.319919pt;}
.y4{bottom:54.106585pt;}
.y3{bottom:67.946585pt;}
.y2c{bottom:85.946585pt;}
.yd4{bottom:90.586585pt;}
.y2b{bottom:101.306585pt;}
.yd3{bottom:101.626585pt;}
.yae{bottom:105.546585pt;}
.yd7{bottom:105.946585pt;}
.y5b{bottom:116.586585pt;}
.y87{bottom:116.986585pt;}
.y2a{bottom:121.226585pt;}
.yad{bottom:123.946585pt;}
.y101{bottom:125.306585pt;}
.yd2{bottom:125.546585pt;}
.y5a{bottom:131.946585pt;}
.y29{bottom:132.266585pt;}
.yaa{bottom:136.586585pt;}
.yab{bottom:142.346585pt;}
.yd1{bottom:143.946585pt;}
.y100{bottom:145.146585pt;}
.y59{bottom:147.306585pt;}
.yac{bottom:147.626585pt;}
.yee{bottom:148.346585pt;}
.y58{bottom:151.946585pt;}
.y28{bottom:153.946585pt;}
.y86{bottom:160.746585pt;}
.yd0{bottom:162.346585pt;}
.y57{bottom:162.586585pt;}
.yf0{bottom:162.986585pt;}
.yec{bottom:163.866585pt;}
.yff{bottom:165.066585pt;}
.y56{bottom:167.226585pt;}
.y27{bottom:168.586585pt;}
.yed{bottom:169.866585pt;}
.y55{bottom:177.946585pt;}
.y85{bottom:179.146585pt;}
.ycf{bottom:180.666585pt;}
.yeb{bottom:182.266585pt;}
.y81{bottom:182.586585pt;}
.y26{bottom:183.226585pt;}
.yfe{bottom:184.906585pt;}
.y54{bottom:193.306585pt;}
.yf2{bottom:193.626585pt;}
.y84{bottom:197.546585pt;}
.y25{bottom:197.866585pt;}
.y7d{bottom:197.946585pt;}
.yce{bottom:199.066585pt;}
.yea{bottom:200.666585pt;}
.y53{bottom:208.586585pt;}
.y7c{bottom:208.906585pt;}
.y24{bottom:212.506585pt;}
.ya9{bottom:213.226585pt;}
.yfd{bottom:215.386585pt;}
.y83{bottom:215.946585pt;}
.ycd{bottom:217.466585pt;}
.ye9{bottom:219.066585pt;}
.yf1{bottom:221.946585pt;}
.y52{bottom:223.946585pt;}
.ya8{bottom:224.266585pt;}
.y23{bottom:227.146585pt;}
.y82{bottom:234.346585pt;}
.yfc{bottom:235.226585pt;}
.ycc{bottom:235.866585pt;}
.ye8{bottom:237.466585pt;}
.y51{bottom:239.306585pt;}
.y22{bottom:241.786585pt;}
.y7b{bottom:252.746585pt;}
.ycb{bottom:254.266585pt;}
.y50{bottom:254.586585pt;}
.yfb{bottom:255.146585pt;}
.ye7{bottom:255.866585pt;}
.y21{bottom:256.426585pt;}
.ya7{bottom:258.746585pt;}
.y4f{bottom:259.226585pt;}
.y4e{bottom:269.946585pt;}
.y80{bottom:270.266585pt;}
.y20{bottom:271.066585pt;}
.y7a{bottom:271.146585pt;}
.yca{bottom:272.666585pt;}
.ye6{bottom:274.266585pt;}
.yfa{bottom:274.986585pt;}
.y4d{bottom:285.306585pt;}
.y1f{bottom:285.706585pt;}
.ya4{bottom:286.506585pt;}
.y79{bottom:289.546585pt;}
.yc9{bottom:291.066585pt;}
.ye5{bottom:292.666585pt;}
.y7f{bottom:295.546585pt;}
.y1e{bottom:300.426585pt;}
.y4c{bottom:300.586585pt;}
.ya3{bottom:304.906585pt;}
.y4b{bottom:305.226585pt;}
.yf9{bottom:305.466585pt;}
.y78{bottom:307.946585pt;}
.yc8{bottom:309.466585pt;}
.ye3{bottom:311.066585pt;}
.yda{bottom:313.946585pt;}
.y1d{bottom:315.066585pt;}
.yd6{bottom:315.466585pt;}
.y4a{bottom:316.266585pt;}
.ye4{bottom:317.066585pt;}
.ya2{bottom:322.746585pt;}
.yf8{bottom:325.386585pt;}
.y77{bottom:326.346585pt;}
.yc7{bottom:327.866585pt;}
.y1c{bottom:329.386585pt;}
.ye2{bottom:329.466585pt;}
.yd9{bottom:332.346585pt;}
.ya1{bottom:338.026585pt;}
.y1b{bottom:344.666585pt;}
.y76{bottom:344.746585pt;}
.yf7{bottom:345.226585pt;}
.yc6{bottom:346.266585pt;}
.ye1{bottom:347.786585pt;}
.yef{bottom:350.746585pt;}
.y48{bottom:351.066585pt;}
.ya0{bottom:353.386585pt;}
.y49{bottom:357.066585pt;}
.y1a{bottom:360.026585pt;}
.y75{bottom:363.146585pt;}
.yd5{bottom:364.426585pt;}
.yc5{bottom:364.666585pt;}
.yf6{bottom:365.066585pt;}
.ye0{bottom:366.186585pt;}
.y9f{bottom:368.746585pt;}
.y47{bottom:369.386585pt;}
.y19{bottom:375.386585pt;}
.y74{bottom:381.546585pt;}
.yc4{bottom:383.066585pt;}
.y9e{bottom:384.026585pt;}
.ydf{bottom:384.586585pt;}
.yf5{bottom:384.906585pt;}
.y46{bottom:387.786585pt;}
.y18{bottom:390.666585pt;}
.y9d{bottom:399.413252pt;}
.y73{bottom:399.973252pt;}
.yc3{bottom:401.493252pt;}
.yde{bottom:403.013252pt;}
.y17{bottom:406.053252pt;}
.y45{bottom:406.213252pt;}
.y9c{bottom:414.773252pt;}
.yf4{bottom:415.493252pt;}
.y72{bottom:418.373252pt;}
.yc2{bottom:419.893252pt;}
.y16{bottom:421.413252pt;}
.y44{bottom:424.613252pt;}
.yf3{bottom:435.333252pt;}
.y15{bottom:436.693252pt;}
.y71{bottom:436.773252pt;}
.yc1{bottom:438.293252pt;}
.ydd{bottom:439.573252pt;}
.y43{bottom:443.013252pt;}
.y9b{bottom:445.973252pt;}
.y14{bottom:452.053252pt;}
.y70{bottom:455.173252pt;}
.yc0{bottom:456.693252pt;}
.yd8{bottom:461.173252pt;}
.y42{bottom:461.413252pt;}
.y99{bottom:464.373252pt;}
.y13{bottom:467.413252pt;}
.y9a{bottom:470.373252pt;}
.y6f{bottom:473.573252pt;}
.ydc{bottom:474.853252pt;}
.ybf{bottom:475.093252pt;}
.y41{bottom:479.813252pt;}
.y12{bottom:482.693252pt;}
.y98{bottom:482.773252pt;}
.y10e{bottom:485.573252pt;}
.y6e{bottom:491.973252pt;}
.ybe{bottom:493.493252pt;}
.y7e{bottom:497.973252pt;}
.y11{bottom:498.053252pt;}
.y40{bottom:498.213252pt;}
.y97{bottom:501.173252pt;}
.y6d{bottom:510.373252pt;}
.ybd{bottom:511.893252pt;}
.y10{bottom:513.893252pt;}
.y10d{bottom:516.053252pt;}
.y3e{bottom:516.613252pt;}
.y96{bottom:519.573252pt;}
.y3f{bottom:522.613252pt;}
.y6c{bottom:528.773252pt;}
.ybc{bottom:530.293252pt;}
.y3d{bottom:535.013252pt;}
.y10c{bottom:535.973252pt;}
.y95{bottom:537.973252pt;}
.yf{bottom:546.613252pt;}
.y6b{bottom:547.173252pt;}
.ybb{bottom:548.693252pt;}
.y3c{bottom:553.413252pt;}
.y10b{bottom:555.813252pt;}
.y94{bottom:556.373252pt;}
.y6a{bottom:565.573252pt;}
.yba{bottom:567.093252pt;}
.y3b{bottom:571.813252pt;}
.ye{bottom:572.693252pt;}
.y93{bottom:574.773252pt;}
.y10a{bottom:575.653252pt;}
.y69{bottom:583.973252pt;}
.yb9{bottom:585.493252pt;}
.y39{bottom:590.213252pt;}
.y92{bottom:593.173252pt;}
.y109{bottom:595.493252pt;}
.y3a{bottom:596.213252pt;}
.yd{bottom:598.773252pt;}
.y68{bottom:602.373252pt;}
.yb8{bottom:603.893252pt;}
.y90{bottom:611.573252pt;}
.y91{bottom:617.573252pt;}
.y67{bottom:620.773252pt;}
.yb6{bottom:622.293252pt;}
.yc{bottom:624.773252pt;}
.y108{bottom:626.053252pt;}
.ya6{bottom:626.773252pt;}
.y38{bottom:627.013252pt;}
.yb7{bottom:628.293252pt;}
.y8f{bottom:629.413252pt;}
.y66{bottom:639.173252pt;}
.yb5{bottom:640.693252pt;}
.y8e{bottom:644.773252pt;}
.ydb{bottom:645.173252pt;}
.y37{bottom:645.413252pt;}
.y107{bottom:645.893252pt;}
.yb{bottom:650.853252pt;}
.y65{bottom:657.573252pt;}
.yb4{bottom:659.093252pt;}
.y8d{bottom:660.053252pt;}
.y36{bottom:663.813252pt;}
.y106{bottom:665.733252pt;}
.y8c{bottom:675.413252pt;}
.y64{bottom:675.973252pt;}
.ya{bottom:676.853252pt;}
.yb3{bottom:677.493252pt;}
.y35{bottom:687.333252pt;}
.y8b{bottom:690.693252pt;}
.y63{bottom:694.373252pt;}
.yb2{bottom:695.893252pt;}
.y105{bottom:696.293252pt;}
.y34{bottom:701.973252pt;}
.y9{bottom:702.933252pt;}
.y8a{bottom:706.053252pt;}
.y62{bottom:712.773252pt;}
.yb1{bottom:714.293252pt;}
.y104{bottom:716.133252pt;}
.y33{bottom:716.613252pt;}
.y89{bottom:721.413252pt;}
.y8{bottom:728.933252pt;}
.y60{bottom:731.173252pt;}
.y32{bottom:731.253252pt;}
.yb0{bottom:732.693252pt;}
.y88{bottom:736.693252pt;}
.y61{bottom:737.173252pt;}
.y31{bottom:745.919919pt;}
.y103{bottom:746.639919pt;}
.y5f{bottom:749.599919pt;}
.yaf{bottom:750.879919pt;}
.y7{bottom:755.039919pt;}
.y30{bottom:760.559919pt;}
.y102{bottom:766.479919pt;}
.y5e{bottom:767.999919pt;}
.ya5{bottom:773.999919pt;}
.y2f{bottom:775.279919pt;}
.y6{bottom:781.039919pt;}
.y5d{bottom:786.399919pt;}
.y2e{bottom:789.919919pt;}
.y5c{bottom:814.879919pt;}
.y2d{bottom:815.199919pt;}
.y2{bottom:832.719919pt;}
.ha{height:33.918750pt;}
.hd{height:41.770312pt;}
.h4{height:47.109375pt;}
.h9{height:47.742188pt;}
.h8{height:49.148438pt;}
.h7{height:52.448437pt;}
.he{height:57.375000pt;}
.hb{height:57.473437pt;}
.h3{height:58.245469pt;}
.hf{height:62.781250pt;}
.h6{height:62.812500pt;}
.hc{height:64.500000pt;}
.h5{height:84.981094pt;}
.h2{height:907.199919pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w3{width:642.559981pt;}
.w2{width:642.559990pt;}
.w0{width:642.560000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3c{left:56.719990pt;}
.x1{left:85.039990pt;}
.xa{left:89.359990pt;}
.x1e{left:93.706657pt;}
.x20{left:104.026657pt;}
.xb{left:113.386657pt;}
.x12{left:141.866657pt;}
.x2b{left:145.466648pt;}
.x2c{left:156.186657pt;}
.x36{left:161.466648pt;}
.x37{left:172.186657pt;}
.x15{left:188.586648pt;}
.x16{left:193.946657pt;}
.x28{left:214.586648pt;}
.x29{left:225.306657pt;}
.x3a{left:226.506648pt;}
.x3b{left:237.226657pt;}
.x1c{left:253.626648pt;}
.x1d{left:264.346657pt;}
.x2f{left:265.306648pt;}
.xc{left:268.666648pt;}
.xd{left:274.026657pt;}
.x1a{left:275.706648pt;}
.x2d{left:276.746648pt;}
.x1b{left:286.453324pt;}
.x2e{left:287.493324pt;}
.x4{left:289.093314pt;}
.x5{left:294.453324pt;}
.x27{left:299.253324pt;}
.x30{left:319.333314pt;}
.x31{left:330.053324pt;}
.x1f{left:333.173314pt;}
.x35{left:337.413314pt;}
.x8{left:343.253314pt;}
.x9{left:348.613324pt;}
.x17{left:354.453324pt;}
.x2{left:356.853314pt;}
.x3{left:362.213324pt;}
.xe{left:367.013314pt;}
.xf{left:372.373324pt;}
.x10{left:380.053314pt;}
.x11{left:385.413324pt;}
.x32{left:388.533314pt;}
.x23{left:399.733314pt;}
.x24{left:410.453324pt;}
.x6{left:412.453314pt;}
.x7{left:417.813324pt;}
.x18{left:427.333314pt;}
.x33{left:433.973314pt;}
.x19{left:438.053324pt;}
.x34{left:444.693324pt;}
.x25{left:451.333314pt;}
.x26{left:462.053324pt;}
.x21{left:489.919981pt;}
.x22{left:500.639990pt;}
.x2a{left:512.079990pt;}
.x13{left:522.159981pt;}
.x14{left:527.519990pt;}
.x38{left:542.959981pt;}
.x39{left:553.679990pt;}
}




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