
    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_bbe73009a11ce61679d2d185.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_6bb14877dabbfd29bf0d5d85.woff')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_b796a167d6b0e6489b071c71.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_befebee148861af9eba36d06.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5639612f0705fb1ca218379d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_28e1cc858933a4769a21e3ee.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_9a8e9ea3617c92e009285719.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;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;}
.lsf{letter-spacing:-4.680000px;}
.ls11{letter-spacing:-4.266000px;}
.ls4{letter-spacing:-1.260000px;}
.ls2{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.lsb{letter-spacing:-0.206400px;}
.lsa{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.106800px;}
.ls0{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.193200px;}
.ls7{letter-spacing:0.259800px;}
.lse{letter-spacing:0.298800px;}
.ls8{letter-spacing:0.337200px;}
.ls6{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.900000px;}
.lsd{letter-spacing:16.506720px;}
.lsc{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;}
}
.ws2{word-spacing:-23.940000px;}
.ws9{word-spacing:-17.573760px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws8{word-spacing:-15.199800px;}
.ws10{word-spacing:-15.046800px;}
.ws5{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.886720px;}
.wsb{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.580000px;}
.wsc{word-spacing:-10.902240px;}
.ws3{word-spacing:-10.440000px;}
.wse{word-spacing:-10.260000px;}
.ws4{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1573.637760px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1111.639680px;}
._27{margin-left:-1077.175440px;}
._28{margin-left:-732.026160px;}
._42{margin-left:-7.889040px;}
._39{margin-left:-6.494400px;}
._7{margin-left:-4.842720px;}
._6{margin-left:-3.576960px;}
._8{margin-left:-2.218320px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._c{width:2.527680px;}
._b{width:3.793680px;}
._9{width:4.927680px;}
._10{width:6.721920px;}
._12{width:7.795920px;}
._25{width:9.682800px;}
._30{width:10.688160px;}
._f{width:11.892240px;}
._a{width:13.176000px;}
._11{width:15.950640px;}
._d{width:17.060400px;}
._e{width:18.375120px;}
._1b{width:20.139120px;}
._3b{width:21.155040px;}
._16{width:22.170960px;}
._17{width:23.502240px;}
._15{width:24.621120px;}
._24{width:26.354160px;}
._23{width:27.489600px;}
._2f{width:28.814400px;}
._22{width:30.152880px;}
._21{width:31.343040px;}
._34{width:32.480640px;}
._2b{width:33.883920px;}
._19{width:34.988400px;}
._18{width:36.812160px;}
._1e{width:38.310960px;}
._1a{width:39.709440px;}
._2d{width:41.037840px;}
._2c{width:42.257280px;}
._3a{width:43.295040px;}
._2e{width:44.370720px;}
._2a{width:45.864720px;}
._35{width:46.975680px;}
._13{width:48.374640px;}
._14{width:49.376640px;}
._32{width:50.787360px;}
._31{width:51.811920px;}
._29{width:52.947360px;}
._1f{width:54.529920px;}
._33{width:55.665360px;}
._1d{width:57.836160px;}
._3e{width:59.729040px;}
._51{width:61.083360px;}
._41{width:62.118000px;}
._1c{width:63.237600px;}
._47{width:64.481040px;}
._26{width:65.705040px;}
._20{width:67.617360px;}
._38{width:68.783760px;}
._37{width:70.067520px;}
._3d{width:71.195760px;}
._3c{width:72.457920px;}
._4a{width:75.364560px;}
._4c{width:78.636960px;}
._49{width:80.616240px;}
._46{width:85.553280px;}
._4d{width:86.948640px;}
._4e{width:91.043280px;}
._43{width:94.389120px;}
._52{width:95.835600px;}
._44{width:97.619760px;}
._40{width:101.836800px;}
._45{width:102.838320px;}
._4b{width:106.831440px;}
._48{width:109.748160px;}
._57{width:119.491200px;}
._58{width:124.843680px;}
._54{width:131.823360px;}
._53{width:133.391520px;}
._50{width:143.543520px;}
._4f{width:145.635120px;}
._55{width:198.730800px;}
._56{width:300.561840px;}
._3f{width:2591.160000px;}
._36{width:2592.658320px;}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fsa{font-size:48.240000px;}
.fs9{font-size:48.384000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs8{font-size:66.384000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs7{font-size:77.904000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:6.300000px;}
.y9{bottom:11.520000px;}
.y8{bottom:12.240000px;}
.ya{bottom:37.080000px;}
.y109{bottom:38.805000px;}
.y108{bottom:52.125000px;}
.y6{bottom:54.180000px;}
.ye9{bottom:70.950000px;}
.ye0{bottom:85.860000px;}
.ye8{bottom:89.130000px;}
.y91{bottom:90.360000px;}
.y39{bottom:90.720000px;}
.y71{bottom:94.140000px;}
.y9c{bottom:94.245000px;}
.yff{bottom:99.000000px;}
.ybd{bottom:104.940000px;}
.y98{bottom:104.970000px;}
.ydf{bottom:105.660000px;}
.y90{bottom:110.160000px;}
.y38{bottom:110.520000px;}
.y70{bottom:113.940000px;}
.y9b{bottom:115.665000px;}
.yfe{bottom:118.800000px;}
.ybc{bottom:124.740000px;}
.yde{bottom:125.460000px;}
.y97{bottom:126.390000px;}
.y8f{bottom:129.960000px;}
.y37{bottom:130.320000px;}
.y6f{bottom:133.740000px;}
.y9a{bottom:137.085000px;}
.yfd{bottom:138.600000px;}
.ybb{bottom:144.540000px;}
.ydd{bottom:145.440000px;}
.ye7{bottom:146.550000px;}
.y96{bottom:147.810000px;}
.y8e{bottom:149.940000px;}
.y36{bottom:150.300000px;}
.y6e{bottom:153.570000px;}
.yfc{bottom:158.430000px;}
.y99{bottom:158.505000px;}
.yba{bottom:164.370000px;}
.ye6{bottom:164.730000px;}
.ydc{bottom:165.270000px;}
.y8d{bottom:169.770000px;}
.y35{bottom:170.130000px;}
.y107{bottom:170.670000px;}
.y6d{bottom:173.370000px;}
.y10c{bottom:177.225000px;}
.yfb{bottom:178.230000px;}
.y106{bottom:183.810000px;}
.yb9{bottom:184.170000px;}
.ydb{bottom:185.070000px;}
.y8c{bottom:189.570000px;}
.y34{bottom:189.930000px;}
.y10b{bottom:190.365000px;}
.y6c{bottom:193.170000px;}
.y105{bottom:196.950000px;}
.yfa{bottom:198.210000px;}
.y10a{bottom:203.685000px;}
.yb8{bottom:204.150000px;}
.yda{bottom:204.870000px;}
.y8b{bottom:209.370000px;}
.y33{bottom:209.730000px;}
.y104{bottom:210.270000px;}
.y6b{bottom:213.150000px;}
.yf9{bottom:218.010000px;}
.y9e{bottom:221.505000px;}
.ye5{bottom:222.120000px;}
.yb7{bottom:223.950000px;}
.y95{bottom:224.070000px;}
.yd9{bottom:224.670000px;}
.y8a{bottom:229.170000px;}
.y32{bottom:229.530000px;}
.y6a{bottom:232.950000px;}
.yf8{bottom:237.810000px;}
.ye4{bottom:240.330000px;}
.y9d{bottom:242.970000px;}
.yb6{bottom:243.750000px;}
.yd8{bottom:244.650000px;}
.y94{bottom:245.490000px;}
.y89{bottom:249.150000px;}
.y31{bottom:249.510000px;}
.y69{bottom:252.750000px;}
.yf7{bottom:257.610000px;}
.yb5{bottom:263.550000px;}
.yd7{bottom:264.450000px;}
.y93{bottom:266.910000px;}
.y88{bottom:268.950000px;}
.y30{bottom:269.310000px;}
.y68{bottom:272.550000px;}
.yf6{bottom:277.410000px;}
.yb4{bottom:283.350000px;}
.yd6{bottom:284.250000px;}
.y87{bottom:288.750000px;}
.y2f{bottom:289.110000px;}
.y67{bottom:292.350000px;}
.yf5{bottom:297.390000px;}
.ye3{bottom:297.720000px;}
.yb3{bottom:303.330000px;}
.yd5{bottom:304.050000px;}
.y86{bottom:308.550000px;}
.y2e{bottom:308.910000px;}
.y66{bottom:312.330000px;}
.ye2{bottom:315.900000px;}
.yf4{bottom:317.190000px;}
.y103{bottom:322.170000px;}
.yb2{bottom:323.130000px;}
.yd4{bottom:323.850000px;}
.y85{bottom:328.350000px;}
.y2d{bottom:328.710000px;}
.y65{bottom:332.130000px;}
.y102{bottom:335.310000px;}
.yf3{bottom:336.990000px;}
.yb1{bottom:342.930000px;}
.yd3{bottom:343.650000px;}
.y84{bottom:348.150000px;}
.y101{bottom:348.660000px;}
.y2c{bottom:348.690000px;}
.y64{bottom:351.930000px;}
.yf2{bottom:356.790000px;}
.yb0{bottom:362.730000px;}
.yd2{bottom:363.630000px;}
.y83{bottom:368.130000px;}
.y2b{bottom:368.490000px;}
.y63{bottom:371.730000px;}
.yf1{bottom:376.590000px;}
.yaf{bottom:382.530000px;}
.yd1{bottom:383.430000px;}
.y82{bottom:387.930000px;}
.y2a{bottom:388.290000px;}
.y100{bottom:390.780000px;}
.y62{bottom:391.530000px;}
.yf0{bottom:393.150000px;}
.yae{bottom:402.555000px;}
.yd0{bottom:403.275000px;}
.y81{bottom:407.775000px;}
.y29{bottom:408.135000px;}
.y61{bottom:411.555000px;}
.yad{bottom:422.355000px;}
.ycf{bottom:423.075000px;}
.y80{bottom:427.575000px;}
.y28{bottom:427.935000px;}
.y60{bottom:431.355000px;}
.yac{bottom:442.155000px;}
.yce{bottom:442.875000px;}
.y7f{bottom:447.375000px;}
.y27{bottom:447.915000px;}
.y5f{bottom:451.155000px;}
.yab{bottom:461.955000px;}
.ycd{bottom:462.855000px;}
.y7e{bottom:467.355000px;}
.y26{bottom:467.715000px;}
.y5e{bottom:470.955000px;}
.yaa{bottom:481.755000px;}
.ycc{bottom:482.655000px;}
.y7d{bottom:487.155000px;}
.y25{bottom:489.675000px;}
.y5d{bottom:490.755000px;}
.y92{bottom:501.300000px;}
.ya9{bottom:501.735000px;}
.ycb{bottom:502.455000px;}
.y7c{bottom:503.715000px;}
.y24{bottom:509.655000px;}
.y5c{bottom:510.735000px;}
.ya8{bottom:521.535000px;}
.yca{bottom:522.255000px;}
.y23{bottom:529.455000px;}
.y5b{bottom:530.535000px;}
.ya7{bottom:541.335000px;}
.yc9{bottom:542.055000px;}
.y22{bottom:549.255000px;}
.y5a{bottom:550.335000px;}
.ya6{bottom:561.135000px;}
.yc8{bottom:562.035000px;}
.y21{bottom:569.055000px;}
.y59{bottom:570.135000px;}
.ya5{bottom:580.935000px;}
.yc7{bottom:581.835000px;}
.y20{bottom:588.855000px;}
.y58{bottom:589.935000px;}
.ya4{bottom:600.915000px;}
.yc6{bottom:601.635000px;}
.y1f{bottom:608.835000px;}
.y57{bottom:609.915000px;}
.ya3{bottom:620.715000px;}
.yc5{bottom:621.435000px;}
.y1e{bottom:628.635000px;}
.y56{bottom:629.715000px;}
.ya2{bottom:640.515000px;}
.yc4{bottom:641.235000px;}
.y1d{bottom:648.435000px;}
.y55{bottom:649.545000px;}
.ya1{bottom:660.345000px;}
.yc3{bottom:661.245000px;}
.y1c{bottom:668.265000px;}
.y54{bottom:669.345000px;}
.ya0{bottom:680.145000px;}
.yc2{bottom:681.045000px;}
.y1b{bottom:688.065000px;}
.y53{bottom:689.145000px;}
.y9f{bottom:700.125000px;}
.yc1{bottom:700.845000px;}
.y1a{bottom:708.045000px;}
.y52{bottom:709.125000px;}
.yc0{bottom:720.645000px;}
.y19{bottom:727.845000px;}
.y51{bottom:728.925000px;}
.ybf{bottom:740.445000px;}
.y18{bottom:747.645000px;}
.y50{bottom:748.725000px;}
.ye1{bottom:754.560000px;}
.ybe{bottom:757.185000px;}
.y17{bottom:767.445000px;}
.y4f{bottom:768.525000px;}
.yef{bottom:779.325000px;}
.y16{bottom:787.245000px;}
.y4e{bottom:788.325000px;}
.yee{bottom:799.305000px;}
.y15{bottom:807.225000px;}
.y4d{bottom:808.305000px;}
.yed{bottom:819.105000px;}
.y14{bottom:827.025000px;}
.y4c{bottom:828.105000px;}
.yec{bottom:838.905000px;}
.y13{bottom:846.825000px;}
.y4b{bottom:847.905000px;}
.yeb{bottom:858.705000px;}
.y4a{bottom:867.705000px;}
.y12{bottom:868.965000px;}
.yea{bottom:878.505000px;}
.y49{bottom:887.505000px;}
.y11{bottom:893.985000px;}
.y7b{bottom:898.530000px;}
.y48{bottom:907.530000px;}
.y10{bottom:913.830000px;}
.y7a{bottom:918.330000px;}
.y47{bottom:927.330000px;}
.yf{bottom:933.630000px;}
.y79{bottom:938.130000px;}
.y46{bottom:947.130000px;}
.ye{bottom:948.930000px;}
.y78{bottom:957.930000px;}
.y45{bottom:966.930000px;}
.yd{bottom:970.170000px;}
.y77{bottom:977.730000px;}
.y44{bottom:986.730000px;}
.yc{bottom:993.570000px;}
.y76{bottom:997.710000px;}
.y43{bottom:1006.710000px;}
.y75{bottom:1017.510000px;}
.yb{bottom:1025.250000px;}
.y42{bottom:1026.510000px;}
.y74{bottom:1037.310000px;}
.y41{bottom:1046.310000px;}
.y5{bottom:1054.050000px;}
.y73{bottom:1057.110000px;}
.y40{bottom:1066.110000px;}
.y72{bottom:1076.910000px;}
.y3f{bottom:1085.910000px;}
.y4{bottom:1087.890000px;}
.y3e{bottom:1105.890000px;}
.y3{bottom:1118.850000px;}
.y3d{bottom:1125.690000px;}
.y3c{bottom:1145.490000px;}
.y2{bottom:1149.660000px;}
.y3b{bottom:1165.320000px;}
.y1{bottom:1181.700000px;}
.y3a{bottom:1193.400000px;}
.h5{height:21.780000px;}
.hc{height:27.147656px;}
.h7{height:27.432422px;}
.h6{height:29.464453px;}
.ha{height:41.726953px;}
.hd{height:42.164648px;}
.h18{height:43.506914px;}
.h4{height:46.251562px;}
.h3{height:46.736719px;}
.h17{height:47.980898px;}
.h16{height:48.124125px;}
.he{height:49.255313px;}
.hb{height:53.224453px;}
.h2{height:54.864844px;}
.h13{height:65.884219px;}
.h14{height:66.027445px;}
.h9{height:67.565039px;}
.h8{height:71.613281px;}
.h10{height:77.342344px;}
.h11{height:77.485570px;}
.hf{height:380.520000px;}
.h15{height:382.860000px;}
.h12{height:385.200000px;}
.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;}
.x9{left:68.939987px;}
.x30{left:80.999987px;}
.x31{left:108.035987px;}
.x4{left:118.296000px;}
.x11{left:169.049987px;}
.xc{left:207.569987px;}
.x2d{left:229.784987px;}
.xd{left:233.129987px;}
.x2c{left:247.424987px;}
.xe{left:260.849987px;}
.x8{left:317.919000px;}
.xf{left:320.474987px;}
.x7{left:322.959000px;}
.x1a{left:325.589987px;}
.x1d{left:327.164987px;}
.x1c{left:328.469987px;}
.x22{left:331.094987px;}
.x13{left:337.214987px;}
.x1b{left:355.829987px;}
.x2a{left:372.959987px;}
.x23{left:374.939987px;}
.x24{left:384.839987px;}
.x2b{left:400.139987px;}
.x25{left:404.279987px;}
.xa{left:407.774987px;}
.x6{left:429.009000px;}
.x5{left:442.509000px;}
.xb{left:446.504987px;}
.x19{left:451.589987px;}
.x17{left:456.269987px;}
.x15{left:461.489987px;}
.x16{left:464.369987px;}
.x14{left:469.409987px;}
.x10{left:473.504987px;}
.x1f{left:477.389987px;}
.x20{left:483.149987px;}
.x18{left:484.349987px;}
.x1e{left:488.189987px;}
.x21{left:491.249987px;}
.x2e{left:500.504987px;}
.x26{left:520.814987px;}
.x29{left:522.794987px;}
.x28{left:523.874987px;}
.x2f{left:527.504987px;}
.x27{left:544.754987px;}
.x12{left:617.154000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-4.160000pt;}
.ls11{letter-spacing:-3.792000pt;}
.ls4{letter-spacing:-1.120000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.lsb{letter-spacing:-0.183467pt;}
.lsa{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.094933pt;}
.ls0{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.171733pt;}
.ls7{letter-spacing:0.230933pt;}
.lse{letter-spacing:0.265600pt;}
.ls8{letter-spacing:0.299733pt;}
.ls6{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.800000pt;}
.lsd{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.ws2{word-spacing:-21.280000pt;}
.ws9{word-spacing:-15.621120pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws8{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.374933pt;}
.ws5{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.232640pt;}
.wsb{word-spacing:-13.096533pt;}
.wsd{word-spacing:-12.960000pt;}
.wsc{word-spacing:-9.690880pt;}
.ws3{word-spacing:-9.280000pt;}
.wse{word-spacing:-9.120000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1398.789120pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-988.124160pt;}
._27{margin-left:-957.489280pt;}
._28{margin-left:-650.689920pt;}
._42{margin-left:-7.012480pt;}
._39{margin-left:-5.772800pt;}
._7{margin-left:-4.304640pt;}
._6{margin-left:-3.179520pt;}
._8{margin-left:-1.971840pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._c{width:2.246827pt;}
._b{width:3.372160pt;}
._9{width:4.380160pt;}
._10{width:5.975040pt;}
._12{width:6.929707pt;}
._25{width:8.606933pt;}
._30{width:9.500587pt;}
._f{width:10.570880pt;}
._a{width:11.712000pt;}
._11{width:14.178347pt;}
._d{width:15.164800pt;}
._e{width:16.333440pt;}
._1b{width:17.901440pt;}
._3b{width:18.804480pt;}
._16{width:19.707520pt;}
._17{width:20.890880pt;}
._15{width:21.885440pt;}
._24{width:23.425920pt;}
._23{width:24.435200pt;}
._2f{width:25.612800pt;}
._22{width:26.802560pt;}
._21{width:27.860480pt;}
._34{width:28.871680pt;}
._2b{width:30.119040pt;}
._19{width:31.100800pt;}
._18{width:32.721920pt;}
._1e{width:34.054187pt;}
._1a{width:35.297280pt;}
._2d{width:36.478080pt;}
._2c{width:37.562027pt;}
._3a{width:38.484480pt;}
._2e{width:39.440640pt;}
._2a{width:40.768640pt;}
._35{width:41.756160pt;}
._13{width:42.999680pt;}
._14{width:43.890347pt;}
._32{width:45.144320pt;}
._31{width:46.055040pt;}
._29{width:47.064320pt;}
._1f{width:48.471040pt;}
._33{width:49.480320pt;}
._1d{width:51.409920pt;}
._3e{width:53.092480pt;}
._51{width:54.296320pt;}
._41{width:55.216000pt;}
._1c{width:56.211200pt;}
._47{width:57.316480pt;}
._26{width:58.404480pt;}
._20{width:60.104320pt;}
._38{width:61.141120pt;}
._37{width:62.282240pt;}
._3d{width:63.285120pt;}
._3c{width:64.407040pt;}
._4a{width:66.990720pt;}
._4c{width:69.899520pt;}
._49{width:71.658880pt;}
._46{width:76.047360pt;}
._4d{width:77.287680pt;}
._4e{width:80.927360pt;}
._43{width:83.901440pt;}
._52{width:85.187200pt;}
._44{width:86.773120pt;}
._40{width:90.521600pt;}
._45{width:91.411840pt;}
._4b{width:94.961280pt;}
._48{width:97.553920pt;}
._57{width:106.214400pt;}
._58{width:110.972160pt;}
._54{width:117.176320pt;}
._53{width:118.570240pt;}
._50{width:127.594240pt;}
._4f{width:129.453440pt;}
._55{width:176.649600pt;}
._56{width:267.166080pt;}
._3f{width:2303.253333pt;}
._36{width:2304.585173pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fsa{font-size:42.880000pt;}
.fs9{font-size:43.008000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs8{font-size:59.008000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs7{font-size:69.248000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.600000pt;}
.y9{bottom:10.240000pt;}
.y8{bottom:10.880000pt;}
.ya{bottom:32.960000pt;}
.y109{bottom:34.493333pt;}
.y108{bottom:46.333333pt;}
.y6{bottom:48.160000pt;}
.ye9{bottom:63.066667pt;}
.ye0{bottom:76.320000pt;}
.ye8{bottom:79.226667pt;}
.y91{bottom:80.320000pt;}
.y39{bottom:80.640000pt;}
.y71{bottom:83.680000pt;}
.y9c{bottom:83.773333pt;}
.yff{bottom:88.000000pt;}
.ybd{bottom:93.280000pt;}
.y98{bottom:93.306667pt;}
.ydf{bottom:93.920000pt;}
.y90{bottom:97.920000pt;}
.y38{bottom:98.240000pt;}
.y70{bottom:101.280000pt;}
.y9b{bottom:102.813333pt;}
.yfe{bottom:105.600000pt;}
.ybc{bottom:110.880000pt;}
.yde{bottom:111.520000pt;}
.y97{bottom:112.346667pt;}
.y8f{bottom:115.520000pt;}
.y37{bottom:115.840000pt;}
.y6f{bottom:118.880000pt;}
.y9a{bottom:121.853333pt;}
.yfd{bottom:123.200000pt;}
.ybb{bottom:128.480000pt;}
.ydd{bottom:129.280000pt;}
.ye7{bottom:130.266667pt;}
.y96{bottom:131.386667pt;}
.y8e{bottom:133.280000pt;}
.y36{bottom:133.600000pt;}
.y6e{bottom:136.506667pt;}
.yfc{bottom:140.826667pt;}
.y99{bottom:140.893333pt;}
.yba{bottom:146.106667pt;}
.ye6{bottom:146.426667pt;}
.ydc{bottom:146.906667pt;}
.y8d{bottom:150.906667pt;}
.y35{bottom:151.226667pt;}
.y107{bottom:151.706667pt;}
.y6d{bottom:154.106667pt;}
.y10c{bottom:157.533333pt;}
.yfb{bottom:158.426667pt;}
.y106{bottom:163.386667pt;}
.yb9{bottom:163.706667pt;}
.ydb{bottom:164.506667pt;}
.y8c{bottom:168.506667pt;}
.y34{bottom:168.826667pt;}
.y10b{bottom:169.213333pt;}
.y6c{bottom:171.706667pt;}
.y105{bottom:175.066667pt;}
.yfa{bottom:176.186667pt;}
.y10a{bottom:181.053333pt;}
.yb8{bottom:181.466667pt;}
.yda{bottom:182.106667pt;}
.y8b{bottom:186.106667pt;}
.y33{bottom:186.426667pt;}
.y104{bottom:186.906667pt;}
.y6b{bottom:189.466667pt;}
.yf9{bottom:193.786667pt;}
.y9e{bottom:196.893333pt;}
.ye5{bottom:197.440000pt;}
.yb7{bottom:199.066667pt;}
.y95{bottom:199.173333pt;}
.yd9{bottom:199.706667pt;}
.y8a{bottom:203.706667pt;}
.y32{bottom:204.026667pt;}
.y6a{bottom:207.066667pt;}
.yf8{bottom:211.386667pt;}
.ye4{bottom:213.626667pt;}
.y9d{bottom:215.973333pt;}
.yb6{bottom:216.666667pt;}
.yd8{bottom:217.466667pt;}
.y94{bottom:218.213333pt;}
.y89{bottom:221.466667pt;}
.y31{bottom:221.786667pt;}
.y69{bottom:224.666667pt;}
.yf7{bottom:228.986667pt;}
.yb5{bottom:234.266667pt;}
.yd7{bottom:235.066667pt;}
.y93{bottom:237.253333pt;}
.y88{bottom:239.066667pt;}
.y30{bottom:239.386667pt;}
.y68{bottom:242.266667pt;}
.yf6{bottom:246.586667pt;}
.yb4{bottom:251.866667pt;}
.yd6{bottom:252.666667pt;}
.y87{bottom:256.666667pt;}
.y2f{bottom:256.986667pt;}
.y67{bottom:259.866667pt;}
.yf5{bottom:264.346667pt;}
.ye3{bottom:264.640000pt;}
.yb3{bottom:269.626667pt;}
.yd5{bottom:270.266667pt;}
.y86{bottom:274.266667pt;}
.y2e{bottom:274.586667pt;}
.y66{bottom:277.626667pt;}
.ye2{bottom:280.800000pt;}
.yf4{bottom:281.946667pt;}
.y103{bottom:286.373333pt;}
.yb2{bottom:287.226667pt;}
.yd4{bottom:287.866667pt;}
.y85{bottom:291.866667pt;}
.y2d{bottom:292.186667pt;}
.y65{bottom:295.226667pt;}
.y102{bottom:298.053333pt;}
.yf3{bottom:299.546667pt;}
.yb1{bottom:304.826667pt;}
.yd3{bottom:305.466667pt;}
.y84{bottom:309.466667pt;}
.y101{bottom:309.920000pt;}
.y2c{bottom:309.946667pt;}
.y64{bottom:312.826667pt;}
.yf2{bottom:317.146667pt;}
.yb0{bottom:322.426667pt;}
.yd2{bottom:323.226667pt;}
.y83{bottom:327.226667pt;}
.y2b{bottom:327.546667pt;}
.y63{bottom:330.426667pt;}
.yf1{bottom:334.746667pt;}
.yaf{bottom:340.026667pt;}
.yd1{bottom:340.826667pt;}
.y82{bottom:344.826667pt;}
.y2a{bottom:345.146667pt;}
.y100{bottom:347.360000pt;}
.y62{bottom:348.026667pt;}
.yf0{bottom:349.466667pt;}
.yae{bottom:357.826667pt;}
.yd0{bottom:358.466667pt;}
.y81{bottom:362.466667pt;}
.y29{bottom:362.786667pt;}
.y61{bottom:365.826667pt;}
.yad{bottom:375.426667pt;}
.ycf{bottom:376.066667pt;}
.y80{bottom:380.066667pt;}
.y28{bottom:380.386667pt;}
.y60{bottom:383.426667pt;}
.yac{bottom:393.026667pt;}
.yce{bottom:393.666667pt;}
.y7f{bottom:397.666667pt;}
.y27{bottom:398.146667pt;}
.y5f{bottom:401.026667pt;}
.yab{bottom:410.626667pt;}
.ycd{bottom:411.426667pt;}
.y7e{bottom:415.426667pt;}
.y26{bottom:415.746667pt;}
.y5e{bottom:418.626667pt;}
.yaa{bottom:428.226667pt;}
.ycc{bottom:429.026667pt;}
.y7d{bottom:433.026667pt;}
.y25{bottom:435.266667pt;}
.y5d{bottom:436.226667pt;}
.y92{bottom:445.600000pt;}
.ya9{bottom:445.986667pt;}
.ycb{bottom:446.626667pt;}
.y7c{bottom:447.746667pt;}
.y24{bottom:453.026667pt;}
.y5c{bottom:453.986667pt;}
.ya8{bottom:463.586667pt;}
.yca{bottom:464.226667pt;}
.y23{bottom:470.626667pt;}
.y5b{bottom:471.586667pt;}
.ya7{bottom:481.186667pt;}
.yc9{bottom:481.826667pt;}
.y22{bottom:488.226667pt;}
.y5a{bottom:489.186667pt;}
.ya6{bottom:498.786667pt;}
.yc8{bottom:499.586667pt;}
.y21{bottom:505.826667pt;}
.y59{bottom:506.786667pt;}
.ya5{bottom:516.386667pt;}
.yc7{bottom:517.186667pt;}
.y20{bottom:523.426667pt;}
.y58{bottom:524.386667pt;}
.ya4{bottom:534.146667pt;}
.yc6{bottom:534.786667pt;}
.y1f{bottom:541.186667pt;}
.y57{bottom:542.146667pt;}
.ya3{bottom:551.746667pt;}
.yc5{bottom:552.386667pt;}
.y1e{bottom:558.786667pt;}
.y56{bottom:559.746667pt;}
.ya2{bottom:569.346667pt;}
.yc4{bottom:569.986667pt;}
.y1d{bottom:576.386667pt;}
.y55{bottom:577.373333pt;}
.ya1{bottom:586.973333pt;}
.yc3{bottom:587.773333pt;}
.y1c{bottom:594.013333pt;}
.y54{bottom:594.973333pt;}
.ya0{bottom:604.573333pt;}
.yc2{bottom:605.373333pt;}
.y1b{bottom:611.613333pt;}
.y53{bottom:612.573333pt;}
.y9f{bottom:622.333333pt;}
.yc1{bottom:622.973333pt;}
.y1a{bottom:629.373333pt;}
.y52{bottom:630.333333pt;}
.yc0{bottom:640.573333pt;}
.y19{bottom:646.973333pt;}
.y51{bottom:647.933333pt;}
.ybf{bottom:658.173333pt;}
.y18{bottom:664.573333pt;}
.y50{bottom:665.533333pt;}
.ye1{bottom:670.720000pt;}
.ybe{bottom:673.053333pt;}
.y17{bottom:682.173333pt;}
.y4f{bottom:683.133333pt;}
.yef{bottom:692.733333pt;}
.y16{bottom:699.773333pt;}
.y4e{bottom:700.733333pt;}
.yee{bottom:710.493333pt;}
.y15{bottom:717.533333pt;}
.y4d{bottom:718.493333pt;}
.yed{bottom:728.093333pt;}
.y14{bottom:735.133333pt;}
.y4c{bottom:736.093333pt;}
.yec{bottom:745.693333pt;}
.y13{bottom:752.733333pt;}
.y4b{bottom:753.693333pt;}
.yeb{bottom:763.293333pt;}
.y4a{bottom:771.293333pt;}
.y12{bottom:772.413333pt;}
.yea{bottom:780.893333pt;}
.y49{bottom:788.893333pt;}
.y11{bottom:794.653333pt;}
.y7b{bottom:798.693333pt;}
.y48{bottom:806.693333pt;}
.y10{bottom:812.293333pt;}
.y7a{bottom:816.293333pt;}
.y47{bottom:824.293333pt;}
.yf{bottom:829.893333pt;}
.y79{bottom:833.893333pt;}
.y46{bottom:841.893333pt;}
.ye{bottom:843.493333pt;}
.y78{bottom:851.493333pt;}
.y45{bottom:859.493333pt;}
.yd{bottom:862.373333pt;}
.y77{bottom:869.093333pt;}
.y44{bottom:877.093333pt;}
.yc{bottom:883.173333pt;}
.y76{bottom:886.853333pt;}
.y43{bottom:894.853333pt;}
.y75{bottom:904.453333pt;}
.yb{bottom:911.333333pt;}
.y42{bottom:912.453333pt;}
.y74{bottom:922.053333pt;}
.y41{bottom:930.053333pt;}
.y5{bottom:936.933333pt;}
.y73{bottom:939.653333pt;}
.y40{bottom:947.653333pt;}
.y72{bottom:957.253333pt;}
.y3f{bottom:965.253333pt;}
.y4{bottom:967.013333pt;}
.y3e{bottom:983.013333pt;}
.y3{bottom:994.533333pt;}
.y3d{bottom:1000.613333pt;}
.y3c{bottom:1018.213333pt;}
.y2{bottom:1021.920000pt;}
.y3b{bottom:1035.840000pt;}
.y1{bottom:1050.400000pt;}
.y3a{bottom:1060.800000pt;}
.h5{height:19.360000pt;}
.hc{height:24.131250pt;}
.h7{height:24.384375pt;}
.h6{height:26.190625pt;}
.ha{height:37.090625pt;}
.hd{height:37.479688pt;}
.h18{height:38.672812pt;}
.h4{height:41.112500pt;}
.h3{height:41.543750pt;}
.h17{height:42.649687pt;}
.h16{height:42.777000pt;}
.he{height:43.782500pt;}
.hb{height:47.310625pt;}
.h2{height:48.768750pt;}
.h13{height:58.563750pt;}
.h14{height:58.691063pt;}
.h9{height:60.057813pt;}
.h8{height:63.656250pt;}
.h10{height:68.748750pt;}
.h11{height:68.876063pt;}
.hf{height:338.240000pt;}
.h15{height:340.320000pt;}
.h12{height:342.400000pt;}
.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;}
.x9{left:61.279988pt;}
.x30{left:71.999988pt;}
.x31{left:96.031988pt;}
.x4{left:105.152000pt;}
.x11{left:150.266655pt;}
.xc{left:184.506655pt;}
.x2d{left:204.253322pt;}
.xd{left:207.226655pt;}
.x2c{left:219.933322pt;}
.xe{left:231.866655pt;}
.x8{left:282.594667pt;}
.xf{left:284.866655pt;}
.x7{left:287.074667pt;}
.x1a{left:289.413322pt;}
.x1d{left:290.813322pt;}
.x1c{left:291.973322pt;}
.x22{left:294.306655pt;}
.x13{left:299.746655pt;}
.x1b{left:316.293322pt;}
.x2a{left:331.519988pt;}
.x23{left:333.279988pt;}
.x24{left:342.079988pt;}
.x2b{left:355.679988pt;}
.x25{left:359.359988pt;}
.xa{left:362.466655pt;}
.x6{left:381.341333pt;}
.x5{left:393.341333pt;}
.xb{left:396.893322pt;}
.x19{left:401.413322pt;}
.x17{left:405.573322pt;}
.x15{left:410.213322pt;}
.x16{left:412.773322pt;}
.x14{left:417.253322pt;}
.x10{left:420.893322pt;}
.x1f{left:424.346655pt;}
.x20{left:429.466655pt;}
.x18{left:430.533322pt;}
.x1e{left:433.946655pt;}
.x21{left:436.666655pt;}
.x2e{left:444.893322pt;}
.x26{left:462.946655pt;}
.x29{left:464.706655pt;}
.x28{left:465.666655pt;}
.x2f{left:468.893322pt;}
.x27{left:484.226655pt;}
.x12{left:548.581333pt;}
}




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