
    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_edf0e51a85d43ef22d3f81f4.woff')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_2e14c1890cd94b0d21237459.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_83aced96b0aec80e6864eaa4.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_30de71ae679fca5525c719af.woff')format("woff");}.ff4{font-family:ff4;line-height:0.925293;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_663aa7d2714df22abc81f0f5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.925293;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_c965f13b5e8947e6e12c0898.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')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;}
.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:23.760000px;}
.lsc{letter-spacing:-4.680000px;}
.ls3{letter-spacing:-0.540000px;}
.ls6{letter-spacing:-0.460200px;}
.lsd{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.053280px;}
.ls4{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.259800px;}
.ls9{letter-spacing:0.298800px;}
.ls1{letter-spacing:0.360000px;}
.lsa{letter-spacing:16.506720px;}
.ls7{letter-spacing:46.026720px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.238800px;}
.wsf{word-spacing:-15.199800px;}
.wsa{word-spacing:-15.046800px;}
.ws6{word-spacing:-14.993280px;}
.wsb{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.580000px;}
.wsc{word-spacing:-13.505760px;}
.wse{word-spacing:-13.500000px;}
.ws2{word-spacing:-10.440000px;}
.ws10{word-spacing:-10.260000px;}
.ws4{word-spacing:-10.080000px;}
.ws3{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1588.921920px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1111.639680px;}
._23{margin-left:-1078.401600px;}
._24{margin-left:-171.164160px;}
._48{margin-left:-8.347680px;}
._3a{margin-left:-7.121520px;}
._1d{margin-left:-5.276640px;}
._6{margin-left:-3.925440px;}
._f{margin-left:-2.370480px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._c{width:3.152400px;}
._12{width:4.209360px;}
._d{width:5.254320px;}
._11{width:6.584400px;}
._e{width:7.976880px;}
._a{width:9.291600px;}
._b{width:10.309680px;}
._30{width:11.310480px;}
._8{width:12.324720px;}
._10{width:13.813200px;}
._9{width:16.137360px;}
._7{width:17.627040px;}
._27{width:19.244880px;}
._17{width:20.258640px;}
._19{width:21.719520px;}
._2e{width:22.782000px;}
._1b{width:23.904000px;}
._33{width:24.908400px;}
._1e{width:26.115120px;}
._1a{width:27.850320px;}
._18{width:29.012400px;}
._14{width:30.656880px;}
._31{width:32.031360px;}
._28{width:33.286320px;}
._1f{width:34.331040px;}
._20{width:35.437680px;}
._2f{width:36.619680px;}
._13{width:38.067120px;}
._22{width:39.706560px;}
._21{width:41.294160px;}
._2d{width:42.668640px;}
._3c{width:43.693440px;}
._2a{width:44.820000px;}
._1c{width:46.194480px;}
._37{width:47.601360px;}
._26{width:48.943440px;}
._25{width:50.736240px;}
._32{width:51.900480px;}
._34{width:53.032320px;}
._35{width:54.051840px;}
._36{width:55.069920px;}
._2b{width:56.681280px;}
._2c{width:57.907440px;}
._39{width:59.250960px;}
._16{width:60.656400px;}
._15{width:62.956080px;}
._29{width:64.283040px;}
._56{width:65.928720px;}
._3b{width:67.736880px;}
._38{width:69.828480px;}
._45{width:71.561520px;}
._5b{width:72.966960px;}
._40{width:75.114000px;}
._3f{width:77.405280px;}
._58{width:82.439280px;}
._57{width:84.589200px;}
._44{width:85.875120px;}
._51{width:87.393360px;}
._4b{width:93.165840px;}
._4a{width:94.301280px;}
._50{width:98.125920px;}
._46{width:102.368880px;}
._54{width:110.059680px;}
._55{width:111.093840px;}
._49{width:120.325680px;}
._3e{width:127.164480px;}
._5c{width:128.520240px;}
._53{width:151.058640px;}
._5a{width:152.416800px;}
._4c{width:153.882000px;}
._4e{width:164.249280px;}
._4d{width:165.475440px;}
._4f{width:188.028000px;}
._3d{width:201.838320px;}
._52{width:324.824400px;}
._59{width:340.034400px;}
._43{width:374.994000px;}
._42{width:380.580480px;}
._41{width:399.884160px;}
._47{width:625.132560px;}
.fc1{color:rgb(0,78,154);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs8{font-size:59.904000px;}
.fs1{font-size:66.240000px;}
.fs7{font-size:66.384000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:6.300000px;}
.y9{bottom:11.520000px;}
.y8{bottom:12.240000px;}
.yc7{bottom:34.230000px;}
.yc8{bottom:42.555000px;}
.yc6{bottom:50.790000px;}
.ya{bottom:51.480000px;}
.ye4{bottom:57.885000px;}
.ya8{bottom:58.680000px;}
.ya6{bottom:59.295000px;}
.y6{bottom:68.580000px;}
.ye3{bottom:74.445000px;}
.ya7{bottom:75.780000px;}
.ya5{bottom:77.475000px;}
.y9b{bottom:97.920000px;}
.y82{bottom:103.500000px;}
.yc1{bottom:106.920000px;}
.y115{bottom:108.360000px;}
.y38{bottom:108.540000px;}
.yda{bottom:108.900000px;}
.y6f{bottom:112.500000px;}
.ya4{bottom:117.720000px;}
.y9a{bottom:117.900000px;}
.yc2{bottom:121.140000px;}
.y81{bottom:123.300000px;}
.yc0{bottom:123.660000px;}
.y114{bottom:128.160000px;}
.y37{bottom:128.340000px;}
.yd9{bottom:128.700000px;}
.y6e{bottom:132.300000px;}
.ya3{bottom:135.900000px;}
.y99{bottom:137.700000px;}
.ye2{bottom:138.390000px;}
.y80{bottom:143.280000px;}
.y113{bottom:148.140000px;}
.y36{bottom:148.320000px;}
.yd8{bottom:148.500000px;}
.y6d{bottom:152.310000px;}
.ye1{bottom:154.770000px;}
.y98{bottom:157.530000px;}
.y7f{bottom:163.110000px;}
.y112{bottom:167.970000px;}
.y35{bottom:168.150000px;}
.yd7{bottom:168.330000px;}
.ye0{bottom:171.360000px;}
.y6c{bottom:172.110000px;}
.ya2{bottom:176.145000px;}
.y97{bottom:177.330000px;}
.y7e{bottom:182.910000px;}
.y111{bottom:187.770000px;}
.y34{bottom:187.950000px;}
.yd6{bottom:188.130000px;}
.y6b{bottom:191.910000px;}
.ya1{bottom:194.325000px;}
.y96{bottom:197.130000px;}
.y7d{bottom:202.710000px;}
.yc5{bottom:205.665000px;}
.y110{bottom:207.570000px;}
.y33{bottom:207.750000px;}
.yd5{bottom:208.110000px;}
.y6a{bottom:211.710000px;}
.y95{bottom:217.110000px;}
.yc4{bottom:222.225000px;}
.y7c{bottom:222.510000px;}
.y10f{bottom:227.370000px;}
.y32{bottom:227.550000px;}
.yd4{bottom:227.910000px;}
.y69{bottom:231.510000px;}
.ya0{bottom:234.570000px;}
.ye7{bottom:236.700000px;}
.y94{bottom:236.910000px;}
.y7b{bottom:242.490000px;}
.ydf{bottom:244.620000px;}
.y10e{bottom:247.350000px;}
.y31{bottom:247.530000px;}
.yd3{bottom:247.710000px;}
.y68{bottom:251.490000px;}
.y9f{bottom:252.750000px;}
.ye6{bottom:253.080000px;}
.y93{bottom:256.710000px;}
.yde{bottom:261.180000px;}
.y7a{bottom:262.290000px;}
.y10d{bottom:267.150000px;}
.y30{bottom:267.330000px;}
.yd2{bottom:267.510000px;}
.ye5{bottom:269.640000px;}
.y67{bottom:271.290000px;}
.y92{bottom:276.510000px;}
.ydd{bottom:277.560000px;}
.y79{bottom:282.090000px;}
.y10c{bottom:286.950000px;}
.y2f{bottom:287.130000px;}
.yd1{bottom:287.310000px;}
.y66{bottom:291.090000px;}
.y9e{bottom:293.010000px;}
.ydc{bottom:294.120000px;}
.y91{bottom:296.310000px;}
.y78{bottom:301.890000px;}
.y10b{bottom:304.230000px;}
.y2e{bottom:306.930000px;}
.yd0{bottom:307.290000px;}
.y65{bottom:310.890000px;}
.y9d{bottom:311.220000px;}
.y90{bottom:316.290000px;}
.yc3{bottom:319.935000px;}
.y10a{bottom:321.510000px;}
.y77{bottom:321.690000px;}
.y2d{bottom:326.730000px;}
.ycf{bottom:327.090000px;}
.y64{bottom:330.690000px;}
.y8f{bottom:336.090000px;}
.y109{bottom:338.790000px;}
.y76{bottom:341.670000px;}
.y2c{bottom:346.710000px;}
.yce{bottom:346.890000px;}
.y63{bottom:350.670000px;}
.y8e{bottom:355.890000px;}
.y108{bottom:358.590000px;}
.y75{bottom:361.470000px;}
.y2b{bottom:366.510000px;}
.ycd{bottom:366.690000px;}
.y62{bottom:370.470000px;}
.y8d{bottom:375.690000px;}
.y107{bottom:378.390000px;}
.y74{bottom:381.270000px;}
.y2a{bottom:386.310000px;}
.ycc{bottom:386.490000px;}
.y61{bottom:390.270000px;}
.y8c{bottom:395.490000px;}
.y106{bottom:398.190000px;}
.y73{bottom:401.115000px;}
.y29{bottom:406.155000px;}
.ycb{bottom:406.515000px;}
.y60{bottom:410.115000px;}
.y8b{bottom:415.515000px;}
.y105{bottom:418.035000px;}
.y72{bottom:420.915000px;}
.y28{bottom:425.955000px;}
.yca{bottom:426.315000px;}
.y5f{bottom:429.915000px;}
.y8a{bottom:435.315000px;}
.y104{bottom:437.835000px;}
.ydb{bottom:440.460000px;}
.y71{bottom:440.895000px;}
.yc9{bottom:442.875000px;}
.y27{bottom:445.935000px;}
.y5e{bottom:449.895000px;}
.y89{bottom:455.115000px;}
.y103{bottom:457.815000px;}
.y70{bottom:460.695000px;}
.y26{bottom:465.735000px;}
.y5d{bottom:469.695000px;}
.y88{bottom:474.915000px;}
.y102{bottom:477.615000px;}
.ye9{bottom:480.495000px;}
.y25{bottom:485.535000px;}
.y5c{bottom:489.495000px;}
.y87{bottom:494.715000px;}
.y101{bottom:497.415000px;}
.ye8{bottom:500.295000px;}
.y24{bottom:507.675000px;}
.y5b{bottom:509.295000px;}
.y86{bottom:514.695000px;}
.y100{bottom:517.215000px;}
.ybf{bottom:520.095000px;}
.y23{bottom:527.475000px;}
.y5a{bottom:529.095000px;}
.y85{bottom:534.495000px;}
.yff{bottom:537.015000px;}
.ybe{bottom:540.075000px;}
.y22{bottom:547.275000px;}
.y59{bottom:549.075000px;}
.y84{bottom:554.295000px;}
.yfe{bottom:556.995000px;}
.ybd{bottom:559.875000px;}
.y21{bottom:567.075000px;}
.y9c{bottom:568.440000px;}
.y58{bottom:568.875000px;}
.y83{bottom:570.855000px;}
.yfd{bottom:576.795000px;}
.ybc{bottom:579.675000px;}
.y20{bottom:586.875000px;}
.y57{bottom:588.675000px;}
.yfc{bottom:596.595000px;}
.ybb{bottom:599.475000px;}
.y1f{bottom:606.855000px;}
.y56{bottom:608.475000px;}
.yfb{bottom:616.395000px;}
.yba{bottom:619.275000px;}
.y1e{bottom:626.655000px;}
.y55{bottom:628.275000px;}
.yfa{bottom:636.195000px;}
.yb9{bottom:639.255000px;}
.y1d{bottom:646.455000px;}
.y54{bottom:648.255000px;}
.yf9{bottom:656.205000px;}
.yb8{bottom:659.085000px;}
.y1c{bottom:666.285000px;}
.y53{bottom:668.085000px;}
.yf8{bottom:676.005000px;}
.yb7{bottom:678.885000px;}
.y1b{bottom:686.085000px;}
.y52{bottom:687.885000px;}
.yf7{bottom:695.805000px;}
.yb6{bottom:698.685000px;}
.y1a{bottom:706.065000px;}
.y51{bottom:707.685000px;}
.yf6{bottom:715.605000px;}
.yb5{bottom:718.485000px;}
.y19{bottom:725.865000px;}
.y50{bottom:727.485000px;}
.yf5{bottom:735.405000px;}
.yb4{bottom:738.465000px;}
.y18{bottom:745.665000px;}
.y4f{bottom:747.465000px;}
.yf4{bottom:755.385000px;}
.yb3{bottom:758.265000px;}
.y17{bottom:765.465000px;}
.y4e{bottom:767.265000px;}
.yf3{bottom:775.185000px;}
.yb2{bottom:778.065000px;}
.y16{bottom:785.265000px;}
.y4d{bottom:787.065000px;}
.yf2{bottom:794.985000px;}
.yb1{bottom:797.865000px;}
.y15{bottom:805.245000px;}
.y4c{bottom:806.865000px;}
.yf1{bottom:814.785000px;}
.yb0{bottom:817.665000px;}
.y14{bottom:825.045000px;}
.y4b{bottom:826.665000px;}
.yf0{bottom:834.585000px;}
.yaf{bottom:837.645000px;}
.y13{bottom:844.845000px;}
.y4a{bottom:846.645000px;}
.yef{bottom:854.565000px;}
.yae{bottom:857.445000px;}
.y12{bottom:864.645000px;}
.y49{bottom:866.445000px;}
.yee{bottom:874.365000px;}
.yad{bottom:877.245000px;}
.y48{bottom:886.245000px;}
.y11{bottom:886.785000px;}
.yed{bottom:893.625000px;}
.yac{bottom:897.045000px;}
.y47{bottom:906.090000px;}
.yec{bottom:911.490000px;}
.y10{bottom:911.850000px;}
.yab{bottom:916.890000px;}
.y46{bottom:925.890000px;}
.yeb{bottom:929.310000px;}
.yf{bottom:931.650000px;}
.yaa{bottom:936.870000px;}
.y45{bottom:945.870000px;}
.ye{bottom:946.950000px;}
.yea{bottom:947.310000px;}
.ya9{bottom:956.670000px;}
.y44{bottom:965.670000px;}
.yd{bottom:968.730000px;}
.y43{bottom:985.470000px;}
.yc{bottom:993.570000px;}
.y42{bottom:1005.270000px;}
.y41{bottom:1025.070000px;}
.yb{bottom:1025.250000px;}
.y40{bottom:1045.050000px;}
.y5{bottom:1054.050000px;}
.y3f{bottom:1064.850000px;}
.y3e{bottom:1084.650000px;}
.y4{bottom:1087.890000px;}
.y3d{bottom:1104.450000px;}
.y3{bottom:1118.850000px;}
.y3c{bottom:1124.250000px;}
.y3b{bottom:1144.230000px;}
.y2{bottom:1149.660000px;}
.y3a{bottom:1164.060000px;}
.y1{bottom:1181.700000px;}
.y39{bottom:1193.400000px;}
.h5{height:21.780000px;}
.hb{height:27.166641px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.h17{height:37.731445px;}
.hc{height:41.756133px;}
.hd{height:42.164648px;}
.h16{height:43.506914px;}
.hf{height:46.283906px;}
.h4{height:46.736719px;}
.he{height:49.255313px;}
.ha{height:53.224453px;}
.h2{height:54.864844px;}
.h13{height:59.439023px;}
.h15{height:59.582250px;}
.h3{height:65.884219px;}
.h11{height:66.027445px;}
.h9{height:67.565039px;}
.h8{height:71.613281px;}
.h12{height:362.700000px;}
.h10{height:371.520000px;}
.h14{height:380.520000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w4{width:719.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x30{left:80.999987px;}
.x9{left:92.375987px;}
.x31{left:108.035987px;}
.x4{left:118.296000px;}
.x10{left:172.469987px;}
.x13{left:252.029987px;}
.x23{left:259.994987px;}
.xc{left:276.194987px;}
.x22{left:280.514987px;}
.x2c{left:305.489987px;}
.x21{left:308.849987px;}
.x24{left:313.634987px;}
.x2b{left:315.209987px;}
.xd{left:319.934987px;}
.xe{left:331.274987px;}
.x1c{left:334.694987px;}
.x2f{left:337.244987px;}
.x2e{left:342.464987px;}
.x8{left:348.909000px;}
.x2d{left:352.364987px;}
.x7{left:353.949000px;}
.xa{left:388.514987px;}
.x1d{left:396.644987px;}
.x2a{left:400.574987px;}
.x29{left:401.654987px;}
.x6{left:428.829000px;}
.x5{left:442.329000px;}
.xb{left:446.504987px;}
.x16{left:451.874987px;}
.x14{left:456.554987px;}
.x26{left:459.974987px;}
.xf{left:473.504987px;}
.x11{left:476.529000px;}
.x18{left:477.974987px;}
.x25{left:480.494987px;}
.x19{left:484.274987px;}
.x27{left:495.434987px;}
.x15{left:499.034987px;}
.x33{left:500.504987px;}
.x17{left:501.914987px;}
.x1a{left:503.534987px;}
.x28{left:515.414987px;}
.x20{left:519.194987px;}
.x32{left:527.504987px;}
.x1e{left:553.469987px;}
.x1f{left:564.989987px;}
.x12{left:770.549987px;}
.x1b{left:771.629987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsc{letter-spacing:-4.160000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls6{letter-spacing:-0.409067pt;}
.lsd{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.047360pt;}
.ls4{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.230933pt;}
.ls9{letter-spacing:0.265600pt;}
.ls1{letter-spacing:0.320000pt;}
.lsa{letter-spacing:14.672640pt;}
.ls7{letter-spacing:40.912640pt;}
.ws1{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.545600pt;}
.wsf{word-spacing:-13.510933pt;}
.wsa{word-spacing:-13.374933pt;}
.ws6{word-spacing:-13.327360pt;}
.wsb{word-spacing:-13.306880pt;}
.ws5{word-spacing:-13.280000pt;}
.ws9{word-spacing:-13.232640pt;}
.ws11{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.005120pt;}
.wse{word-spacing:-12.000000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws10{word-spacing:-9.120000pt;}
.ws4{word-spacing:-8.960000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1412.375040pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-988.124160pt;}
._23{margin-left:-958.579200pt;}
._24{margin-left:-152.145920pt;}
._48{margin-left:-7.420160pt;}
._3a{margin-left:-6.330240pt;}
._1d{margin-left:-4.690347pt;}
._6{margin-left:-3.489280pt;}
._f{margin-left:-2.107093pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._c{width:2.802133pt;}
._12{width:3.741653pt;}
._d{width:4.670507pt;}
._11{width:5.852800pt;}
._e{width:7.090560pt;}
._a{width:8.259200pt;}
._b{width:9.164160pt;}
._30{width:10.053760pt;}
._8{width:10.955307pt;}
._10{width:12.278400pt;}
._9{width:14.344320pt;}
._7{width:15.668480pt;}
._27{width:17.106560pt;}
._17{width:18.007680pt;}
._19{width:19.306240pt;}
._2e{width:20.250667pt;}
._1b{width:21.248000pt;}
._33{width:22.140800pt;}
._1e{width:23.213440pt;}
._1a{width:24.755840pt;}
._18{width:25.788800pt;}
._14{width:27.250560pt;}
._31{width:28.472320pt;}
._28{width:29.587840pt;}
._1f{width:30.516480pt;}
._20{width:31.500160pt;}
._2f{width:32.550827pt;}
._13{width:33.837440pt;}
._22{width:35.294720pt;}
._21{width:36.705920pt;}
._2d{width:37.927680pt;}
._3c{width:38.838613pt;}
._2a{width:39.840000pt;}
._1c{width:41.061760pt;}
._37{width:42.312320pt;}
._26{width:43.505280pt;}
._25{width:45.098880pt;}
._32{width:46.133760pt;}
._34{width:47.139840pt;}
._35{width:48.046080pt;}
._36{width:48.951040pt;}
._2b{width:50.383360pt;}
._2c{width:51.473280pt;}
._39{width:52.667520pt;}
._16{width:53.916800pt;}
._15{width:55.960960pt;}
._29{width:57.140480pt;}
._56{width:58.603307pt;}
._3b{width:60.210560pt;}
._38{width:62.069760pt;}
._45{width:63.610240pt;}
._5b{width:64.859520pt;}
._40{width:66.768000pt;}
._3f{width:68.804693pt;}
._58{width:73.279360pt;}
._57{width:75.190400pt;}
._44{width:76.333440pt;}
._51{width:77.682987pt;}
._4b{width:82.814080pt;}
._4a{width:83.823360pt;}
._50{width:87.223040pt;}
._46{width:90.994560pt;}
._54{width:97.830827pt;}
._55{width:98.750080pt;}
._49{width:106.956160pt;}
._3e{width:113.035093pt;}
._5c{width:114.240213pt;}
._53{width:134.274347pt;}
._5a{width:135.481600pt;}
._4c{width:136.784000pt;}
._4e{width:145.999360pt;}
._4d{width:147.089280pt;}
._4f{width:167.136000pt;}
._3d{width:179.411840pt;}
._52{width:288.732800pt;}
._59{width:302.252800pt;}
._43{width:333.328000pt;}
._42{width:338.293760pt;}
._41{width:355.452587pt;}
._47{width:555.673387pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs8{font-size:53.248000pt;}
.fs1{font-size:58.880000pt;}
.fs7{font-size:59.008000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:10.240000pt;}
.y8{bottom:10.880000pt;}
.yc7{bottom:30.426667pt;}
.yc8{bottom:37.826667pt;}
.yc6{bottom:45.146667pt;}
.ya{bottom:45.760000pt;}
.ye4{bottom:51.453333pt;}
.ya8{bottom:52.160000pt;}
.ya6{bottom:52.706667pt;}
.y6{bottom:60.960000pt;}
.ye3{bottom:66.173333pt;}
.ya7{bottom:67.360000pt;}
.ya5{bottom:68.866667pt;}
.y9b{bottom:87.040000pt;}
.y82{bottom:92.000000pt;}
.yc1{bottom:95.040000pt;}
.y115{bottom:96.320000pt;}
.y38{bottom:96.480000pt;}
.yda{bottom:96.800000pt;}
.y6f{bottom:100.000000pt;}
.ya4{bottom:104.640000pt;}
.y9a{bottom:104.800000pt;}
.yc2{bottom:107.680000pt;}
.y81{bottom:109.600000pt;}
.yc0{bottom:109.920000pt;}
.y114{bottom:113.920000pt;}
.y37{bottom:114.080000pt;}
.yd9{bottom:114.400000pt;}
.y6e{bottom:117.600000pt;}
.ya3{bottom:120.800000pt;}
.y99{bottom:122.400000pt;}
.ye2{bottom:123.013333pt;}
.y80{bottom:127.360000pt;}
.y113{bottom:131.680000pt;}
.y36{bottom:131.840000pt;}
.yd8{bottom:132.000000pt;}
.y6d{bottom:135.386667pt;}
.ye1{bottom:137.573333pt;}
.y98{bottom:140.026667pt;}
.y7f{bottom:144.986667pt;}
.y112{bottom:149.306667pt;}
.y35{bottom:149.466667pt;}
.yd7{bottom:149.626667pt;}
.ye0{bottom:152.320000pt;}
.y6c{bottom:152.986667pt;}
.ya2{bottom:156.573333pt;}
.y97{bottom:157.626667pt;}
.y7e{bottom:162.586667pt;}
.y111{bottom:166.906667pt;}
.y34{bottom:167.066667pt;}
.yd6{bottom:167.226667pt;}
.y6b{bottom:170.586667pt;}
.ya1{bottom:172.733333pt;}
.y96{bottom:175.226667pt;}
.y7d{bottom:180.186667pt;}
.yc5{bottom:182.813333pt;}
.y110{bottom:184.506667pt;}
.y33{bottom:184.666667pt;}
.yd5{bottom:184.986667pt;}
.y6a{bottom:188.186667pt;}
.y95{bottom:192.986667pt;}
.yc4{bottom:197.533333pt;}
.y7c{bottom:197.786667pt;}
.y10f{bottom:202.106667pt;}
.y32{bottom:202.266667pt;}
.yd4{bottom:202.586667pt;}
.y69{bottom:205.786667pt;}
.ya0{bottom:208.506667pt;}
.ye7{bottom:210.400000pt;}
.y94{bottom:210.586667pt;}
.y7b{bottom:215.546667pt;}
.ydf{bottom:217.440000pt;}
.y10e{bottom:219.866667pt;}
.y31{bottom:220.026667pt;}
.yd3{bottom:220.186667pt;}
.y68{bottom:223.546667pt;}
.y9f{bottom:224.666667pt;}
.ye6{bottom:224.960000pt;}
.y93{bottom:228.186667pt;}
.yde{bottom:232.160000pt;}
.y7a{bottom:233.146667pt;}
.y10d{bottom:237.466667pt;}
.y30{bottom:237.626667pt;}
.yd2{bottom:237.786667pt;}
.ye5{bottom:239.680000pt;}
.y67{bottom:241.146667pt;}
.y92{bottom:245.786667pt;}
.ydd{bottom:246.720000pt;}
.y79{bottom:250.746667pt;}
.y10c{bottom:255.066667pt;}
.y2f{bottom:255.226667pt;}
.yd1{bottom:255.386667pt;}
.y66{bottom:258.746667pt;}
.y9e{bottom:260.453333pt;}
.ydc{bottom:261.440000pt;}
.y91{bottom:263.386667pt;}
.y78{bottom:268.346667pt;}
.y10b{bottom:270.426667pt;}
.y2e{bottom:272.826667pt;}
.yd0{bottom:273.146667pt;}
.y65{bottom:276.346667pt;}
.y9d{bottom:276.640000pt;}
.y90{bottom:281.146667pt;}
.yc3{bottom:284.386667pt;}
.y10a{bottom:285.786667pt;}
.y77{bottom:285.946667pt;}
.y2d{bottom:290.426667pt;}
.ycf{bottom:290.746667pt;}
.y64{bottom:293.946667pt;}
.y8f{bottom:298.746667pt;}
.y109{bottom:301.146667pt;}
.y76{bottom:303.706667pt;}
.y2c{bottom:308.186667pt;}
.yce{bottom:308.346667pt;}
.y63{bottom:311.706667pt;}
.y8e{bottom:316.346667pt;}
.y108{bottom:318.746667pt;}
.y75{bottom:321.306667pt;}
.y2b{bottom:325.786667pt;}
.ycd{bottom:325.946667pt;}
.y62{bottom:329.306667pt;}
.y8d{bottom:333.946667pt;}
.y107{bottom:336.346667pt;}
.y74{bottom:338.906667pt;}
.y2a{bottom:343.386667pt;}
.ycc{bottom:343.546667pt;}
.y61{bottom:346.906667pt;}
.y8c{bottom:351.546667pt;}
.y106{bottom:353.946667pt;}
.y73{bottom:356.546667pt;}
.y29{bottom:361.026667pt;}
.ycb{bottom:361.346667pt;}
.y60{bottom:364.546667pt;}
.y8b{bottom:369.346667pt;}
.y105{bottom:371.586667pt;}
.y72{bottom:374.146667pt;}
.y28{bottom:378.626667pt;}
.yca{bottom:378.946667pt;}
.y5f{bottom:382.146667pt;}
.y8a{bottom:386.946667pt;}
.y104{bottom:389.186667pt;}
.ydb{bottom:391.520000pt;}
.y71{bottom:391.906667pt;}
.yc9{bottom:393.666667pt;}
.y27{bottom:396.386667pt;}
.y5e{bottom:399.906667pt;}
.y89{bottom:404.546667pt;}
.y103{bottom:406.946667pt;}
.y70{bottom:409.506667pt;}
.y26{bottom:413.986667pt;}
.y5d{bottom:417.506667pt;}
.y88{bottom:422.146667pt;}
.y102{bottom:424.546667pt;}
.ye9{bottom:427.106667pt;}
.y25{bottom:431.586667pt;}
.y5c{bottom:435.106667pt;}
.y87{bottom:439.746667pt;}
.y101{bottom:442.146667pt;}
.ye8{bottom:444.706667pt;}
.y24{bottom:451.266667pt;}
.y5b{bottom:452.706667pt;}
.y86{bottom:457.506667pt;}
.y100{bottom:459.746667pt;}
.ybf{bottom:462.306667pt;}
.y23{bottom:468.866667pt;}
.y5a{bottom:470.306667pt;}
.y85{bottom:475.106667pt;}
.yff{bottom:477.346667pt;}
.ybe{bottom:480.066667pt;}
.y22{bottom:486.466667pt;}
.y59{bottom:488.066667pt;}
.y84{bottom:492.706667pt;}
.yfe{bottom:495.106667pt;}
.ybd{bottom:497.666667pt;}
.y21{bottom:504.066667pt;}
.y9c{bottom:505.280000pt;}
.y58{bottom:505.666667pt;}
.y83{bottom:507.426667pt;}
.yfd{bottom:512.706667pt;}
.ybc{bottom:515.266667pt;}
.y20{bottom:521.666667pt;}
.y57{bottom:523.266667pt;}
.yfc{bottom:530.306667pt;}
.ybb{bottom:532.866667pt;}
.y1f{bottom:539.426667pt;}
.y56{bottom:540.866667pt;}
.yfb{bottom:547.906667pt;}
.yba{bottom:550.466667pt;}
.y1e{bottom:557.026667pt;}
.y55{bottom:558.466667pt;}
.yfa{bottom:565.506667pt;}
.yb9{bottom:568.226667pt;}
.y1d{bottom:574.626667pt;}
.y54{bottom:576.226667pt;}
.yf9{bottom:583.293333pt;}
.yb8{bottom:585.853333pt;}
.y1c{bottom:592.253333pt;}
.y53{bottom:593.853333pt;}
.yf8{bottom:600.893333pt;}
.yb7{bottom:603.453333pt;}
.y1b{bottom:609.853333pt;}
.y52{bottom:611.453333pt;}
.yf7{bottom:618.493333pt;}
.yb6{bottom:621.053333pt;}
.y1a{bottom:627.613333pt;}
.y51{bottom:629.053333pt;}
.yf6{bottom:636.093333pt;}
.yb5{bottom:638.653333pt;}
.y19{bottom:645.213333pt;}
.y50{bottom:646.653333pt;}
.yf5{bottom:653.693333pt;}
.yb4{bottom:656.413333pt;}
.y18{bottom:662.813333pt;}
.y4f{bottom:664.413333pt;}
.yf4{bottom:671.453333pt;}
.yb3{bottom:674.013333pt;}
.y17{bottom:680.413333pt;}
.y4e{bottom:682.013333pt;}
.yf3{bottom:689.053333pt;}
.yb2{bottom:691.613333pt;}
.y16{bottom:698.013333pt;}
.y4d{bottom:699.613333pt;}
.yf2{bottom:706.653333pt;}
.yb1{bottom:709.213333pt;}
.y15{bottom:715.773333pt;}
.y4c{bottom:717.213333pt;}
.yf1{bottom:724.253333pt;}
.yb0{bottom:726.813333pt;}
.y14{bottom:733.373333pt;}
.y4b{bottom:734.813333pt;}
.yf0{bottom:741.853333pt;}
.yaf{bottom:744.573333pt;}
.y13{bottom:750.973333pt;}
.y4a{bottom:752.573333pt;}
.yef{bottom:759.613333pt;}
.yae{bottom:762.173333pt;}
.y12{bottom:768.573333pt;}
.y49{bottom:770.173333pt;}
.yee{bottom:777.213333pt;}
.yad{bottom:779.773333pt;}
.y48{bottom:787.773333pt;}
.y11{bottom:788.253333pt;}
.yed{bottom:794.333333pt;}
.yac{bottom:797.373333pt;}
.y47{bottom:805.413333pt;}
.yec{bottom:810.213333pt;}
.y10{bottom:810.533333pt;}
.yab{bottom:815.013333pt;}
.y46{bottom:823.013333pt;}
.yeb{bottom:826.053333pt;}
.yf{bottom:828.133333pt;}
.yaa{bottom:832.773333pt;}
.y45{bottom:840.773333pt;}
.ye{bottom:841.733333pt;}
.yea{bottom:842.053333pt;}
.ya9{bottom:850.373333pt;}
.y44{bottom:858.373333pt;}
.yd{bottom:861.093333pt;}
.y43{bottom:875.973333pt;}
.yc{bottom:883.173333pt;}
.y42{bottom:893.573333pt;}
.y41{bottom:911.173333pt;}
.yb{bottom:911.333333pt;}
.y40{bottom:928.933333pt;}
.y5{bottom:936.933333pt;}
.y3f{bottom:946.533333pt;}
.y3e{bottom:964.133333pt;}
.y4{bottom:967.013333pt;}
.y3d{bottom:981.733333pt;}
.y3{bottom:994.533333pt;}
.y3c{bottom:999.333333pt;}
.y3b{bottom:1017.093333pt;}
.y2{bottom:1021.920000pt;}
.y3a{bottom:1034.720000pt;}
.y1{bottom:1050.400000pt;}
.y39{bottom:1060.800000pt;}
.h5{height:19.360000pt;}
.hb{height:24.148125pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.h17{height:33.539062pt;}
.hc{height:37.116563pt;}
.hd{height:37.479688pt;}
.h16{height:38.672812pt;}
.hf{height:41.141250pt;}
.h4{height:41.543750pt;}
.he{height:43.782500pt;}
.ha{height:47.310625pt;}
.h2{height:48.768750pt;}
.h13{height:52.834688pt;}
.h15{height:52.962000pt;}
.h3{height:58.563750pt;}
.h11{height:58.691063pt;}
.h9{height:60.057813pt;}
.h8{height:63.656250pt;}
.h12{height:322.400000pt;}
.h10{height:330.240000pt;}
.h14{height:338.240000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w4{width:639.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x30{left:71.999988pt;}
.x9{left:82.111988pt;}
.x31{left:96.031988pt;}
.x4{left:105.152000pt;}
.x10{left:153.306655pt;}
.x13{left:224.026655pt;}
.x23{left:231.106655pt;}
.xc{left:245.506655pt;}
.x22{left:249.346655pt;}
.x2c{left:271.546655pt;}
.x21{left:274.533322pt;}
.x24{left:278.786655pt;}
.x2b{left:280.186655pt;}
.xd{left:284.386655pt;}
.xe{left:294.466655pt;}
.x1c{left:297.506655pt;}
.x2f{left:299.773322pt;}
.x2e{left:304.413322pt;}
.x8{left:310.141333pt;}
.x2d{left:313.213322pt;}
.x7{left:314.621333pt;}
.xa{left:345.346655pt;}
.x1d{left:352.573322pt;}
.x2a{left:356.066655pt;}
.x29{left:357.026655pt;}
.x6{left:381.181333pt;}
.x5{left:393.181333pt;}
.xb{left:396.893322pt;}
.x16{left:401.666655pt;}
.x14{left:405.826655pt;}
.x26{left:408.866655pt;}
.xf{left:420.893322pt;}
.x11{left:423.581333pt;}
.x18{left:424.866655pt;}
.x25{left:427.106655pt;}
.x19{left:430.466655pt;}
.x27{left:440.386655pt;}
.x15{left:443.586655pt;}
.x33{left:444.893322pt;}
.x17{left:446.146655pt;}
.x1a{left:447.586655pt;}
.x28{left:458.146655pt;}
.x20{left:461.506655pt;}
.x32{left:468.893322pt;}
.x1e{left:491.973322pt;}
.x1f{left:502.213322pt;}
.x12{left:684.933322pt;}
.x1b{left:685.893322pt;}
}




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