
    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_fe1148606ef3806d4151a016.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_1bd869938c2dc53dfa9c3b62.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_8f07ab27720e9ae262dfcf7d.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_f64f68bc9c0e4708ce4532f0.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_40fd7b7b668f3c3bdc7583ae.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_15c24b3dc41b678d9673491a.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2dd908da4c9c03eecd5a3f55.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.752441;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_3e63f8136d18ddbbcb8a9b51.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_09b7c27b8c7868d4246b4e63.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_6143f213f9bf5eea32ccfa4e.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:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.460200px;}
.ls4{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.008640px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.017280px;}
.lsb{letter-spacing:0.048960px;}
.lse{letter-spacing:0.053280px;}
.ls7{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.109440px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.386640px;}
.ls11{letter-spacing:16.506720px;}
.lsd{letter-spacing:39.546720px;}
.lsf{letter-spacing:46.026720px;}
.ls9{letter-spacing:55.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws9{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.199800px;}
.ws8{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:-9.711360px;}
.ws5{word-spacing:0.000000px;}
._1{margin-left:-6.094080px;}
._4{margin-left:-3.444480px;}
._b{margin-left:-2.404080px;}
._2{margin-left:-1.391040px;}
._0{width:1.010880px;}
._7{width:2.829360px;}
._8{width:4.431120px;}
._a{width:5.911200px;}
._9{width:7.236000px;}
._1a{width:8.306640px;}
._10{width:9.501840px;}
._19{width:10.821600px;}
._15{width:11.897280px;}
._14{width:13.027680px;}
._1b{width:16.268400px;}
._d{width:17.569440px;}
._c{width:19.003680px;}
._1c{width:20.019600px;}
._23{width:21.035520px;}
._13{width:22.111200px;}
._12{width:23.186880px;}
._27{width:24.556320px;}
._11{width:25.701840px;}
._1d{width:26.897040px;}
._1f{width:27.907920px;}
._f{width:29.103120px;}
._e{width:30.178800px;}
._28{width:32.693760px;}
._20{width:34.486560px;}
._36{width:35.792640px;}
._22{width:37.474560px;}
._18{width:39.028320px;}
._21{width:40.636800px;}
._26{width:42.229440px;}
._29{width:43.983360px;}
._1e{width:45.303120px;}
._31{width:46.732320px;}
._30{width:48.345840px;}
._2f{width:49.899600px;}
._35{width:50.954400px;}
._2d{width:52.763040px;}
._2a{width:53.789040px;}
._17{width:56.109600px;}
._16{width:57.613680px;}
._2c{width:66.089520px;}
._2b{width:67.474080px;}
._32{width:69.207120px;}
._33{width:95.083200px;}
._25{width:96.751440px;}
._24{width:98.130960px;}
._34{width:188.781840px;}
._6{width:202.500000px;}
._5{width:345.365760px;}
._3{width:631.448160px;}
._2e{width:938.530800px;}
.fc1{color:rgb(0,78,154);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs6{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ydf{bottom:5.760000px;}
.y8{bottom:6.480000px;}
.y7{bottom:6.660000px;}
.ye2{bottom:25.740000px;}
.y9{bottom:57.600000px;}
.y6{bottom:73.080000px;}
.ydd{bottom:103.860000px;}
.y12f{bottom:106.920000px;}
.yaf{bottom:112.860000px;}
.y82{bottom:113.400000px;}
.y37{bottom:118.440000px;}
.ydc{bottom:123.660000px;}
.y12e{bottom:126.900000px;}
.y10a{bottom:127.080000px;}
.yae{bottom:132.660000px;}
.y81{bottom:133.200000px;}
.y36{bottom:138.240000px;}
.ydb{bottom:143.460000px;}
.y12d{bottom:146.700000px;}
.y109{bottom:146.880000px;}
.yad{bottom:152.490000px;}
.y80{bottom:153.030000px;}
.y35{bottom:158.250000px;}
.yda{bottom:163.290000px;}
.y12c{bottom:166.530000px;}
.y108{bottom:166.890000px;}
.yac{bottom:172.290000px;}
.y7f{bottom:172.830000px;}
.y34{bottom:178.050000px;}
.yd9{bottom:183.090000px;}
.y12b{bottom:186.330000px;}
.y107{bottom:186.690000px;}
.yab{bottom:192.270000px;}
.y7e{bottom:192.810000px;}
.y33{bottom:197.850000px;}
.yd8{bottom:203.250000px;}
.y12a{bottom:206.130000px;}
.y106{bottom:206.490000px;}
.yaa{bottom:212.070000px;}
.y7d{bottom:212.610000px;}
.y32{bottom:217.650000px;}
.yd7{bottom:223.050000px;}
.y129{bottom:226.110000px;}
.y105{bottom:226.290000px;}
.ya9{bottom:231.690000px;}
.y7c{bottom:232.410000px;}
.y31{bottom:237.450000px;}
.yd6{bottom:243.030000px;}
.y128{bottom:245.910000px;}
.y104{bottom:246.090000px;}
.ya8{bottom:252.030000px;}
.y7b{bottom:252.210000px;}
.y30{bottom:257.430000px;}
.yd5{bottom:262.830000px;}
.y127{bottom:265.710000px;}
.y103{bottom:266.070000px;}
.ya7{bottom:271.830000px;}
.y7a{bottom:272.010000px;}
.y2f{bottom:277.230000px;}
.yd4{bottom:282.630000px;}
.y126{bottom:285.510000px;}
.y102{bottom:285.870000px;}
.ya6{bottom:291.630000px;}
.y79{bottom:291.990000px;}
.y2e{bottom:297.030000px;}
.yd3{bottom:302.430000px;}
.y125{bottom:305.310000px;}
.y101{bottom:305.670000px;}
.ya5{bottom:311.430000px;}
.y78{bottom:311.790000px;}
.y2d{bottom:316.830000px;}
.yd2{bottom:322.230000px;}
.y124{bottom:325.290000px;}
.y100{bottom:325.470000px;}
.ya4{bottom:331.230000px;}
.y77{bottom:331.590000px;}
.y2c{bottom:336.630000px;}
.yd1{bottom:342.210000px;}
.y123{bottom:345.090000px;}
.yff{bottom:345.270000px;}
.ya3{bottom:351.210000px;}
.y62{bottom:351.390000px;}
.y2b{bottom:356.610000px;}
.yd0{bottom:362.010000px;}
.y122{bottom:364.890000px;}
.yfe{bottom:365.070000px;}
.y76{bottom:370.650000px;}
.ya2{bottom:371.010000px;}
.y61{bottom:371.190000px;}
.y2a{bottom:376.410000px;}
.ycf{bottom:381.810000px;}
.y121{bottom:384.690000px;}
.yfd{bottom:385.230000px;}
.y75{bottom:390.630000px;}
.ya1{bottom:390.810000px;}
.y60{bottom:391.170000px;}
.y29{bottom:396.210000px;}
.yce{bottom:401.655000px;}
.y120{bottom:404.535000px;}
.yfc{bottom:405.255000px;}
.y74{bottom:410.475000px;}
.ya0{bottom:410.655000px;}
.y5f{bottom:411.015000px;}
.y28{bottom:416.055000px;}
.y89{bottom:420.375000px;}
.ycd{bottom:423.795000px;}
.y11f{bottom:424.515000px;}
.yfb{bottom:425.055000px;}
.y73{bottom:430.275000px;}
.y9f{bottom:430.455000px;}
.y5e{bottom:430.815000px;}
.y27{bottom:435.855000px;}
.y88{bottom:440.355000px;}
.ycc{bottom:443.595000px;}
.y11e{bottom:444.135000px;}
.yfa{bottom:444.855000px;}
.y72{bottom:450.075000px;}
.y9e{bottom:450.435000px;}
.y5d{bottom:450.615000px;}
.y26{bottom:455.835000px;}
.y87{bottom:460.155000px;}
.ycb{bottom:463.395000px;}
.y11d{bottom:464.475000px;}
.yf9{bottom:464.655000px;}
.y71{bottom:469.875000px;}
.y9d{bottom:470.235000px;}
.y5c{bottom:470.415000px;}
.y25{bottom:475.635000px;}
.y86{bottom:479.955000px;}
.y11c{bottom:484.275000px;}
.yf8{bottom:484.455000px;}
.yca{bottom:485.355000px;}
.y70{bottom:489.855000px;}
.y9c{bottom:490.035000px;}
.y5b{bottom:490.395000px;}
.y24{bottom:495.435000px;}
.y11b{bottom:504.075000px;}
.yf7{bottom:504.615000px;}
.yc9{bottom:505.155000px;}
.y6f{bottom:509.655000px;}
.y9b{bottom:509.835000px;}
.y5a{bottom:510.195000px;}
.y23{bottom:515.235000px;}
.y11a{bottom:523.875000px;}
.yf6{bottom:524.415000px;}
.yc8{bottom:525.135000px;}
.y6e{bottom:529.455000px;}
.y9a{bottom:529.635000px;}
.y59{bottom:529.995000px;}
.y22{bottom:535.035000px;}
.y119{bottom:543.675000px;}
.yf5{bottom:544.215000px;}
.yc7{bottom:544.935000px;}
.y6d{bottom:549.255000px;}
.y99{bottom:549.615000px;}
.y58{bottom:549.795000px;}
.y21{bottom:555.015000px;}
.y118{bottom:563.475000px;}
.yf4{bottom:564.195000px;}
.yc6{bottom:564.735000px;}
.y6c{bottom:569.055000px;}
.y98{bottom:569.415000px;}
.y57{bottom:569.595000px;}
.y20{bottom:574.815000px;}
.y117{bottom:583.635000px;}
.yf3{bottom:583.995000px;}
.yc5{bottom:584.535000px;}
.y6b{bottom:589.035000px;}
.y97{bottom:589.215000px;}
.y56{bottom:589.575000px;}
.y1f{bottom:594.615000px;}
.y116{bottom:603.615000px;}
.yf2{bottom:603.795000px;}
.yc4{bottom:606.675000px;}
.y6a{bottom:608.835000px;}
.y96{bottom:609.015000px;}
.y55{bottom:609.375000px;}
.y1e{bottom:616.755000px;}
.y115{bottom:623.415000px;}
.yf1{bottom:623.595000px;}
.yc3{bottom:626.475000px;}
.y69{bottom:628.635000px;}
.y95{bottom:628.815000px;}
.y54{bottom:629.175000px;}
.y1d{bottom:636.555000px;}
.y114{bottom:643.215000px;}
.yf0{bottom:643.395000px;}
.yc2{bottom:646.275000px;}
.y68{bottom:648.435000px;}
.y94{bottom:648.795000px;}
.y53{bottom:648.975000px;}
.y1c{bottom:656.385000px;}
.y113{bottom:663.045000px;}
.yef{bottom:663.405000px;}
.yc1{bottom:666.105000px;}
.y67{bottom:668.265000px;}
.y93{bottom:668.625000px;}
.y52{bottom:668.805000px;}
.y1b{bottom:676.185000px;}
.y112{bottom:682.845000px;}
.yee{bottom:683.205000px;}
.yc0{bottom:685.905000px;}
.y66{bottom:688.065000px;}
.y92{bottom:688.425000px;}
.y51{bottom:688.785000px;}
.y1a{bottom:696.165000px;}
.y111{bottom:702.645000px;}
.yed{bottom:703.005000px;}
.ybf{bottom:705.885000px;}
.y65{bottom:708.225000px;}
.y50{bottom:708.585000px;}
.y19{bottom:715.965000px;}
.y110{bottom:722.805000px;}
.yec{bottom:723.165000px;}
.ybe{bottom:727.845000px;}
.y64{bottom:728.025000px;}
.y4f{bottom:728.385000px;}
.y18{bottom:735.765000px;}
.y10f{bottom:742.605000px;}
.yeb{bottom:742.965000px;}
.ybd{bottom:747.645000px;}
.y63{bottom:747.825000px;}
.y91{bottom:748.005000px;}
.y4e{bottom:748.185000px;}
.y17{bottom:755.565000px;}
.y10e{bottom:762.585000px;}
.yea{bottom:762.765000px;}
.ybc{bottom:767.445000px;}
.y90{bottom:767.805000px;}
.y4d{bottom:767.985000px;}
.y16{bottom:775.365000px;}
.y10d{bottom:782.385000px;}
.ye9{bottom:782.565000px;}
.ybb{bottom:787.245000px;}
.y8f{bottom:787.605000px;}
.y4c{bottom:787.965000px;}
.y15{bottom:795.345000px;}
.y85{bottom:800.745000px;}
.y10c{bottom:802.185000px;}
.ye8{bottom:802.545000px;}
.yba{bottom:807.225000px;}
.y8e{bottom:807.405000px;}
.y4b{bottom:807.765000px;}
.y14{bottom:815.145000px;}
.y84{bottom:820.545000px;}
.y10b{bottom:821.985000px;}
.ye7{bottom:822.345000px;}
.yb9{bottom:827.025000px;}
.y8d{bottom:827.205000px;}
.y4a{bottom:827.565000px;}
.y13{bottom:834.945000px;}
.y83{bottom:840.345000px;}
.ye6{bottom:842.145000px;}
.yb8{bottom:846.825000px;}
.y8c{bottom:847.185000px;}
.y49{bottom:847.365000px;}
.y12{bottom:854.745000px;}
.ye5{bottom:856.905000px;}
.yb7{bottom:866.625000px;}
.y8b{bottom:866.985000px;}
.y48{bottom:867.165000px;}
.y11{bottom:874.545000px;}
.ye4{bottom:877.605000px;}
.y8a{bottom:886.785000px;}
.y47{bottom:887.145000px;}
.y10{bottom:894.345000px;}
.ye3{bottom:898.170000px;}
.yb6{bottom:906.630000px;}
.y46{bottom:906.990000px;}
.yf{bottom:916.530000px;}
.ye1{bottom:918.690000px;}
.yb5{bottom:926.430000px;}
.y45{bottom:926.790000px;}
.ye{bottom:941.550000px;}
.yb4{bottom:946.410000px;}
.y44{bottom:946.590000px;}
.ye0{bottom:959.190000px;}
.yd{bottom:961.530000px;}
.yb3{bottom:966.210000px;}
.y43{bottom:966.390000px;}
.yc{bottom:976.650000px;}
.yde{bottom:979.710000px;}
.yb2{bottom:986.010000px;}
.y42{bottom:986.370000px;}
.yb{bottom:998.430000px;}
.yb1{bottom:1005.810000px;}
.y41{bottom:1006.170000px;}
.ya{bottom:1023.270000px;}
.yb0{bottom:1025.610000px;}
.y40{bottom:1025.970000px;}
.y3f{bottom:1045.770000px;}
.y3e{bottom:1065.570000px;}
.y5{bottom:1068.090000px;}
.y3d{bottom:1085.550000px;}
.y4{bottom:1103.730000px;}
.y3c{bottom:1105.350000px;}
.y3b{bottom:1125.150000px;}
.y3{bottom:1132.170000px;}
.y3a{bottom:1144.950000px;}
.y2{bottom:1160.640000px;}
.y39{bottom:1164.780000px;}
.y1{bottom:1191.420000px;}
.y38{bottom:1194.300000px;}
.h10{height:19.800000px;}
.h6{height:21.960000px;}
.ha{height:28.115859px;}
.h11{height:39.780000px;}
.hb{height:42.164648px;}
.hc{height:43.215117px;}
.h12{height:43.506914px;}
.hf{height:44.236406px;}
.h3{height:46.736719px;}
.h7{height:47.901094px;}
.he{height:48.995859px;}
.h13{height:49.255313px;}
.h4{height:50.800781px;}
.h8{height:53.224453px;}
.h2{height:54.864844px;}
.hd{height:59.439023px;}
.h5{height:65.884219px;}
.h9{height:67.565039px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:51.336000px;}
.w7{width:200.775000px;}
.w6{width:222.510000px;}
.w5{width:285.150000px;}
.w4{width:733.110000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x5{left:10.980000px;}
.x1{left:52.919987px;}
.x2{left:53.999987px;}
.xf{left:80.999987px;}
.x4{left:106.056000px;}
.x10{left:108.035987px;}
.xa{left:138.995987px;}
.x6{left:213.509987px;}
.x9{left:245.549987px;}
.xc{left:289.694987px;}
.x8{left:346.574987px;}
.x13{left:394.635000px;}
.x7{left:446.504987px;}
.xb{left:473.504987px;}
.xd{left:500.504987px;}
.xe{left:527.504987px;}
.x11{left:554.504987px;}
.x12{left:581.504987px;}
.x14{left:617.865000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.007680pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.015360pt;}
.lsb{letter-spacing:0.043520pt;}
.lse{letter-spacing:0.047360pt;}
.ls7{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.097280pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.343680pt;}
.ls11{letter-spacing:14.672640pt;}
.lsd{letter-spacing:35.152640pt;}
.lsf{letter-spacing:40.912640pt;}
.ls9{letter-spacing:49.232640pt;}
.ws6{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws9{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.wsa{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:-8.632320pt;}
.ws5{word-spacing:0.000000pt;}
._1{margin-left:-5.416960pt;}
._4{margin-left:-3.061760pt;}
._b{margin-left:-2.136960pt;}
._2{margin-left:-1.236480pt;}
._0{width:0.898560pt;}
._7{width:2.514987pt;}
._8{width:3.938773pt;}
._a{width:5.254400pt;}
._9{width:6.432000pt;}
._1a{width:7.383680pt;}
._10{width:8.446080pt;}
._19{width:9.619200pt;}
._15{width:10.575360pt;}
._14{width:11.580160pt;}
._1b{width:14.460800pt;}
._d{width:15.617280pt;}
._c{width:16.892160pt;}
._1c{width:17.795200pt;}
._23{width:18.698240pt;}
._13{width:19.654400pt;}
._12{width:20.610560pt;}
._27{width:21.827840pt;}
._11{width:22.846080pt;}
._1d{width:23.908480pt;}
._1f{width:24.807040pt;}
._f{width:25.869440pt;}
._e{width:26.825600pt;}
._28{width:29.061120pt;}
._20{width:30.654720pt;}
._36{width:31.815680pt;}
._22{width:33.310720pt;}
._18{width:34.691840pt;}
._21{width:36.121600pt;}
._26{width:37.537280pt;}
._29{width:39.096320pt;}
._1e{width:40.269440pt;}
._31{width:41.539840pt;}
._30{width:42.974080pt;}
._2f{width:44.355200pt;}
._35{width:45.292800pt;}
._2d{width:46.900480pt;}
._2a{width:47.812480pt;}
._17{width:49.875200pt;}
._16{width:51.212160pt;}
._2c{width:58.746240pt;}
._2b{width:59.976960pt;}
._32{width:61.517440pt;}
._33{width:84.518400pt;}
._25{width:86.001280pt;}
._24{width:87.227520pt;}
._34{width:167.806080pt;}
._6{width:180.000000pt;}
._5{width:306.991787pt;}
._3{width:561.287253pt;}
._2e{width:834.249600pt;}
.fs7{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs6{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ydf{bottom:5.120000pt;}
.y8{bottom:5.760000pt;}
.y7{bottom:5.920000pt;}
.ye2{bottom:22.880000pt;}
.y9{bottom:51.200000pt;}
.y6{bottom:64.960000pt;}
.ydd{bottom:92.320000pt;}
.y12f{bottom:95.040000pt;}
.yaf{bottom:100.320000pt;}
.y82{bottom:100.800000pt;}
.y37{bottom:105.280000pt;}
.ydc{bottom:109.920000pt;}
.y12e{bottom:112.800000pt;}
.y10a{bottom:112.960000pt;}
.yae{bottom:117.920000pt;}
.y81{bottom:118.400000pt;}
.y36{bottom:122.880000pt;}
.ydb{bottom:127.520000pt;}
.y12d{bottom:130.400000pt;}
.y109{bottom:130.560000pt;}
.yad{bottom:135.546667pt;}
.y80{bottom:136.026667pt;}
.y35{bottom:140.666667pt;}
.yda{bottom:145.146667pt;}
.y12c{bottom:148.026667pt;}
.y108{bottom:148.346667pt;}
.yac{bottom:153.146667pt;}
.y7f{bottom:153.626667pt;}
.y34{bottom:158.266667pt;}
.yd9{bottom:162.746667pt;}
.y12b{bottom:165.626667pt;}
.y107{bottom:165.946667pt;}
.yab{bottom:170.906667pt;}
.y7e{bottom:171.386667pt;}
.y33{bottom:175.866667pt;}
.yd8{bottom:180.666667pt;}
.y12a{bottom:183.226667pt;}
.y106{bottom:183.546667pt;}
.yaa{bottom:188.506667pt;}
.y7d{bottom:188.986667pt;}
.y32{bottom:193.466667pt;}
.yd7{bottom:198.266667pt;}
.y129{bottom:200.986667pt;}
.y105{bottom:201.146667pt;}
.ya9{bottom:205.946667pt;}
.y7c{bottom:206.586667pt;}
.y31{bottom:211.066667pt;}
.yd6{bottom:216.026667pt;}
.y128{bottom:218.586667pt;}
.y104{bottom:218.746667pt;}
.ya8{bottom:224.026667pt;}
.y7b{bottom:224.186667pt;}
.y30{bottom:228.826667pt;}
.yd5{bottom:233.626667pt;}
.y127{bottom:236.186667pt;}
.y103{bottom:236.506667pt;}
.ya7{bottom:241.626667pt;}
.y7a{bottom:241.786667pt;}
.y2f{bottom:246.426667pt;}
.yd4{bottom:251.226667pt;}
.y126{bottom:253.786667pt;}
.y102{bottom:254.106667pt;}
.ya6{bottom:259.226667pt;}
.y79{bottom:259.546667pt;}
.y2e{bottom:264.026667pt;}
.yd3{bottom:268.826667pt;}
.y125{bottom:271.386667pt;}
.y101{bottom:271.706667pt;}
.ya5{bottom:276.826667pt;}
.y78{bottom:277.146667pt;}
.y2d{bottom:281.626667pt;}
.yd2{bottom:286.426667pt;}
.y124{bottom:289.146667pt;}
.y100{bottom:289.306667pt;}
.ya4{bottom:294.426667pt;}
.y77{bottom:294.746667pt;}
.y2c{bottom:299.226667pt;}
.yd1{bottom:304.186667pt;}
.y123{bottom:306.746667pt;}
.yff{bottom:306.906667pt;}
.ya3{bottom:312.186667pt;}
.y62{bottom:312.346667pt;}
.y2b{bottom:316.986667pt;}
.yd0{bottom:321.786667pt;}
.y122{bottom:324.346667pt;}
.yfe{bottom:324.506667pt;}
.y76{bottom:329.466667pt;}
.ya2{bottom:329.786667pt;}
.y61{bottom:329.946667pt;}
.y2a{bottom:334.586667pt;}
.ycf{bottom:339.386667pt;}
.y121{bottom:341.946667pt;}
.yfd{bottom:342.426667pt;}
.y75{bottom:347.226667pt;}
.ya1{bottom:347.386667pt;}
.y60{bottom:347.706667pt;}
.y29{bottom:352.186667pt;}
.yce{bottom:357.026667pt;}
.y120{bottom:359.586667pt;}
.yfc{bottom:360.226667pt;}
.y74{bottom:364.866667pt;}
.ya0{bottom:365.026667pt;}
.y5f{bottom:365.346667pt;}
.y28{bottom:369.826667pt;}
.y89{bottom:373.666667pt;}
.ycd{bottom:376.706667pt;}
.y11f{bottom:377.346667pt;}
.yfb{bottom:377.826667pt;}
.y73{bottom:382.466667pt;}
.y9f{bottom:382.626667pt;}
.y5e{bottom:382.946667pt;}
.y27{bottom:387.426667pt;}
.y88{bottom:391.426667pt;}
.ycc{bottom:394.306667pt;}
.y11e{bottom:394.786667pt;}
.yfa{bottom:395.426667pt;}
.y72{bottom:400.066667pt;}
.y9e{bottom:400.386667pt;}
.y5d{bottom:400.546667pt;}
.y26{bottom:405.186667pt;}
.y87{bottom:409.026667pt;}
.ycb{bottom:411.906667pt;}
.y11d{bottom:412.866667pt;}
.yf9{bottom:413.026667pt;}
.y71{bottom:417.666667pt;}
.y9d{bottom:417.986667pt;}
.y5c{bottom:418.146667pt;}
.y25{bottom:422.786667pt;}
.y86{bottom:426.626667pt;}
.y11c{bottom:430.466667pt;}
.yf8{bottom:430.626667pt;}
.yca{bottom:431.426667pt;}
.y70{bottom:435.426667pt;}
.y9c{bottom:435.586667pt;}
.y5b{bottom:435.906667pt;}
.y24{bottom:440.386667pt;}
.y11b{bottom:448.066667pt;}
.yf7{bottom:448.546667pt;}
.yc9{bottom:449.026667pt;}
.y6f{bottom:453.026667pt;}
.y9b{bottom:453.186667pt;}
.y5a{bottom:453.506667pt;}
.y23{bottom:457.986667pt;}
.y11a{bottom:465.666667pt;}
.yf6{bottom:466.146667pt;}
.yc8{bottom:466.786667pt;}
.y6e{bottom:470.626667pt;}
.y9a{bottom:470.786667pt;}
.y59{bottom:471.106667pt;}
.y22{bottom:475.586667pt;}
.y119{bottom:483.266667pt;}
.yf5{bottom:483.746667pt;}
.yc7{bottom:484.386667pt;}
.y6d{bottom:488.226667pt;}
.y99{bottom:488.546667pt;}
.y58{bottom:488.706667pt;}
.y21{bottom:493.346667pt;}
.y118{bottom:500.866667pt;}
.yf4{bottom:501.506667pt;}
.yc6{bottom:501.986667pt;}
.y6c{bottom:505.826667pt;}
.y98{bottom:506.146667pt;}
.y57{bottom:506.306667pt;}
.y20{bottom:510.946667pt;}
.y117{bottom:518.786667pt;}
.yf3{bottom:519.106667pt;}
.yc5{bottom:519.586667pt;}
.y6b{bottom:523.586667pt;}
.y97{bottom:523.746667pt;}
.y56{bottom:524.066667pt;}
.y1f{bottom:528.546667pt;}
.y116{bottom:536.546667pt;}
.yf2{bottom:536.706667pt;}
.yc4{bottom:539.266667pt;}
.y6a{bottom:541.186667pt;}
.y96{bottom:541.346667pt;}
.y55{bottom:541.666667pt;}
.y1e{bottom:548.226667pt;}
.y115{bottom:554.146667pt;}
.yf1{bottom:554.306667pt;}
.yc3{bottom:556.866667pt;}
.y69{bottom:558.786667pt;}
.y95{bottom:558.946667pt;}
.y54{bottom:559.266667pt;}
.y1d{bottom:565.826667pt;}
.y114{bottom:571.746667pt;}
.yf0{bottom:571.906667pt;}
.yc2{bottom:574.466667pt;}
.y68{bottom:576.386667pt;}
.y94{bottom:576.706667pt;}
.y53{bottom:576.866667pt;}
.y1c{bottom:583.453333pt;}
.y113{bottom:589.373333pt;}
.yef{bottom:589.693333pt;}
.yc1{bottom:592.093333pt;}
.y67{bottom:594.013333pt;}
.y93{bottom:594.333333pt;}
.y52{bottom:594.493333pt;}
.y1b{bottom:601.053333pt;}
.y112{bottom:606.973333pt;}
.yee{bottom:607.293333pt;}
.yc0{bottom:609.693333pt;}
.y66{bottom:611.613333pt;}
.y92{bottom:611.933333pt;}
.y51{bottom:612.253333pt;}
.y1a{bottom:618.813333pt;}
.y111{bottom:624.573333pt;}
.yed{bottom:624.893333pt;}
.ybf{bottom:627.453333pt;}
.y65{bottom:629.533333pt;}
.y50{bottom:629.853333pt;}
.y19{bottom:636.413333pt;}
.y110{bottom:642.493333pt;}
.yec{bottom:642.813333pt;}
.ybe{bottom:646.973333pt;}
.y64{bottom:647.133333pt;}
.y4f{bottom:647.453333pt;}
.y18{bottom:654.013333pt;}
.y10f{bottom:660.093333pt;}
.yeb{bottom:660.413333pt;}
.ybd{bottom:664.573333pt;}
.y63{bottom:664.733333pt;}
.y91{bottom:664.893333pt;}
.y4e{bottom:665.053333pt;}
.y17{bottom:671.613333pt;}
.y10e{bottom:677.853333pt;}
.yea{bottom:678.013333pt;}
.ybc{bottom:682.173333pt;}
.y90{bottom:682.493333pt;}
.y4d{bottom:682.653333pt;}
.y16{bottom:689.213333pt;}
.y10d{bottom:695.453333pt;}
.ye9{bottom:695.613333pt;}
.ybb{bottom:699.773333pt;}
.y8f{bottom:700.093333pt;}
.y4c{bottom:700.413333pt;}
.y15{bottom:706.973333pt;}
.y85{bottom:711.773333pt;}
.y10c{bottom:713.053333pt;}
.ye8{bottom:713.373333pt;}
.yba{bottom:717.533333pt;}
.y8e{bottom:717.693333pt;}
.y4b{bottom:718.013333pt;}
.y14{bottom:724.573333pt;}
.y84{bottom:729.373333pt;}
.y10b{bottom:730.653333pt;}
.ye7{bottom:730.973333pt;}
.yb9{bottom:735.133333pt;}
.y8d{bottom:735.293333pt;}
.y4a{bottom:735.613333pt;}
.y13{bottom:742.173333pt;}
.y83{bottom:746.973333pt;}
.ye6{bottom:748.573333pt;}
.yb8{bottom:752.733333pt;}
.y8c{bottom:753.053333pt;}
.y49{bottom:753.213333pt;}
.y12{bottom:759.773333pt;}
.ye5{bottom:761.693333pt;}
.yb7{bottom:770.333333pt;}
.y8b{bottom:770.653333pt;}
.y48{bottom:770.813333pt;}
.y11{bottom:777.373333pt;}
.ye4{bottom:780.093333pt;}
.y8a{bottom:788.253333pt;}
.y47{bottom:788.573333pt;}
.y10{bottom:794.973333pt;}
.ye3{bottom:798.373333pt;}
.yb6{bottom:805.893333pt;}
.y46{bottom:806.213333pt;}
.yf{bottom:814.693333pt;}
.ye1{bottom:816.613333pt;}
.yb5{bottom:823.493333pt;}
.y45{bottom:823.813333pt;}
.ye{bottom:836.933333pt;}
.yb4{bottom:841.253333pt;}
.y44{bottom:841.413333pt;}
.ye0{bottom:852.613333pt;}
.yd{bottom:854.693333pt;}
.yb3{bottom:858.853333pt;}
.y43{bottom:859.013333pt;}
.yc{bottom:868.133333pt;}
.yde{bottom:870.853333pt;}
.yb2{bottom:876.453333pt;}
.y42{bottom:876.773333pt;}
.yb{bottom:887.493333pt;}
.yb1{bottom:894.053333pt;}
.y41{bottom:894.373333pt;}
.ya{bottom:909.573333pt;}
.yb0{bottom:911.653333pt;}
.y40{bottom:911.973333pt;}
.y3f{bottom:929.573333pt;}
.y3e{bottom:947.173333pt;}
.y5{bottom:949.413333pt;}
.y3d{bottom:964.933333pt;}
.y4{bottom:981.093333pt;}
.y3c{bottom:982.533333pt;}
.y3b{bottom:1000.133333pt;}
.y3{bottom:1006.373333pt;}
.y3a{bottom:1017.733333pt;}
.y2{bottom:1031.680000pt;}
.y39{bottom:1035.360000pt;}
.y1{bottom:1059.040000pt;}
.y38{bottom:1061.600000pt;}
.h10{height:17.600000pt;}
.h6{height:19.520000pt;}
.ha{height:24.991875pt;}
.h11{height:35.360000pt;}
.hb{height:37.479688pt;}
.hc{height:38.413438pt;}
.h12{height:38.672812pt;}
.hf{height:39.321250pt;}
.h3{height:41.543750pt;}
.h7{height:42.578750pt;}
.he{height:43.551875pt;}
.h13{height:43.782500pt;}
.h4{height:45.156250pt;}
.h8{height:47.310625pt;}
.h2{height:48.768750pt;}
.hd{height:52.834688pt;}
.h5{height:58.563750pt;}
.h9{height:60.057813pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:45.632000pt;}
.w7{width:178.466667pt;}
.w6{width:197.786667pt;}
.w5{width:253.466667pt;}
.w4{width:651.653333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x5{left:9.760000pt;}
.x1{left:47.039988pt;}
.x2{left:47.999988pt;}
.xf{left:71.999988pt;}
.x4{left:94.272000pt;}
.x10{left:96.031988pt;}
.xa{left:123.551988pt;}
.x6{left:189.786655pt;}
.x9{left:218.266655pt;}
.xc{left:257.506655pt;}
.x8{left:308.066655pt;}
.x13{left:350.786667pt;}
.x7{left:396.893322pt;}
.xb{left:420.893322pt;}
.xd{left:444.893322pt;}
.xe{left:468.893322pt;}
.x11{left:492.893322pt;}
.x12{left:516.893322pt;}
.x14{left:549.213333pt;}
}




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