
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_9477e99090c6060060f18777.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_506a2cd0fd090f495a0e076f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_c5ab74db02176d7034b77ea0.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_850a08a759b922f2fa85add7.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_4338015af4b61568fae65844.woff')format("woff");}.ff6{font-family:ff6;line-height:1.402354;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_cc2639b232d2622e09bfdc3f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsb{letter-spacing:-0.186600px;}
.ls19{letter-spacing:-0.160800px;}
.ls18{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.ls14{letter-spacing:-0.125400px;}
.lsc{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.lsa{letter-spacing:-0.084600px;}
.ls9{letter-spacing:-0.057000px;}
.lsd{letter-spacing:-0.015000px;}
.ls12{letter-spacing:-0.014760px;}
.ls5{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.lsf{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.lse{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls13{letter-spacing:0.115800px;}
.ls1a{letter-spacing:0.116400px;}
.ls6{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls17{letter-spacing:0.181200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls16{letter-spacing:47.726640px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.396600px;}
.wsb{word-spacing:-14.372400px;}
.wsf{word-spacing:-13.407600px;}
.ws9{word-spacing:-13.399800px;}
.ws12{word-spacing:-13.342800px;}
.wsd{word-spacing:-13.342200px;}
.ws7{word-spacing:-13.275600px;}
.wsa{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.wsc{word-spacing:-13.211640px;}
.ws6{word-spacing:-13.211400px;}
.wse{word-spacing:-13.101000px;}
.ws10{word-spacing:-13.072800px;}
.ws11{word-spacing:-13.065600px;}
.ws3{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._19{margin-left:-4.208400px;}
._1{margin-left:-2.899764px;}
._0{margin-left:-1.104000px;}
._2{width:1.020779px;}
._10{width:2.052961px;}
._7{width:3.066000px;}
._e{width:4.509000px;}
._14{width:5.771520px;}
._16{width:6.774600px;}
._f{width:7.815600px;}
._3{width:8.837400px;}
._8{width:10.100400px;}
._9{width:11.148597px;}
._11{width:12.185408px;}
._6{width:14.811600px;}
._12{width:16.090080px;}
._18{width:17.096160px;}
._c{width:18.156000px;}
._d{width:19.179001px;}
._1a{width:20.604720px;}
._15{width:21.643200px;}
._2a{width:22.845600px;}
._4{width:23.867400px;}
._5{width:25.011603px;}
._17{width:26.753400px;}
._13{width:27.955800px;}
._1b{width:29.098080px;}
._1c{width:30.420720px;}
._1d{width:31.940760px;}
._26{width:34.569000px;}
._20{width:37.514880px;}
._28{width:39.017880px;}
._38{width:41.001840px;}
._b{width:42.204000px;}
._1f{width:44.368560px;}
._22{width:47.434680px;}
._24{width:50.810040px;}
._1e{width:55.190160px;}
._36{width:56.813400px;}
._21{width:61.623000px;}
._30{width:63.065880px;}
._27{width:65.891520px;}
._2e{width:73.647000px;}
._3b{width:76.833360px;}
._3c{width:78.037021px;}
._34{width:92.404440px;}
._25{width:94.689000px;}
._2d{width:97.875360px;}
._a{width:103.287360px;}
._3e{width:108.216000px;}
._3f{width:109.238040px;}
._35{width:121.923360px;}
._23{width:123.366240px;}
._31{width:130.472280px;}
._2b{width:138.155760px;}
._2f{width:139.358160px;}
._32{width:142.785000px;}
._39{width:162.624600px;}
._3a{width:163.848840px;}
._2c{width:193.165560px;}
._29{width:206.872920px;}
._37{width:225.750600px;}
._33{width:231.762600px;}
._3d{width:243.005040px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:7.830000px;}
.yf6{bottom:7.860000px;}
.ybb{bottom:7.920000px;}
.yf9{bottom:25.380000px;}
.yb8{bottom:25.470000px;}
.ybe{bottom:43.020000px;}
.yba{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y58{bottom:112.170000px;}
.ya6{bottom:114.870000px;}
.yf3{bottom:116.130000px;}
.y6f{bottom:117.120000px;}
.yc3{bottom:124.770000px;}
.y57{bottom:129.720000px;}
.ya5{bottom:132.420000px;}
.yf2{bottom:133.680000px;}
.y6e{bottom:134.670000px;}
.yc2{bottom:142.410000px;}
.ya4{bottom:150.060000px;}
.yf1{bottom:151.230000px;}
.y6d{bottom:152.310000px;}
.y12c{bottom:153.120000px;}
.y56{bottom:156.270000px;}
.yc1{bottom:159.960000px;}
.yf0{bottom:168.870000px;}
.y6c{bottom:169.860000px;}
.yd8{bottom:170.580000px;}
.y12b{bottom:170.670000px;}
.ya3{bottom:176.610000px;}
.y25{bottom:184.350000px;}
.yef{bottom:186.420000px;}
.yc0{bottom:186.600000px;}
.y6b{bottom:187.410000px;}
.yd7{bottom:188.130000px;}
.y55{bottom:191.910000px;}
.y12a{bottom:197.310000px;}
.yfc{bottom:200.370000px;}
.y24{bottom:201.990000px;}
.yee{bottom:204.060000px;}
.y6a{bottom:205.050000px;}
.yd6{bottom:205.680000px;}
.y54{bottom:209.460000px;}
.ya2{bottom:212.160000px;}
.y129{bottom:214.860000px;}
.yfb{bottom:215.400000px;}
.y23{bottom:219.540000px;}
.ybf{bottom:222.420000px;}
.y69{bottom:222.600000px;}
.yd5{bottom:223.320000px;}
.y53{bottom:227.100000px;}
.ya1{bottom:229.800000px;}
.yed{bottom:230.610000px;}
.y128{bottom:232.500000px;}
.y22{bottom:237.090000px;}
.yd4{bottom:240.870000px;}
.y52{bottom:244.650000px;}
.ya0{bottom:247.350000px;}
.y68{bottom:249.240000px;}
.y127{bottom:250.050000px;}
.y21{bottom:254.730000px;}
.yd3{bottom:258.510000px;}
.y51{bottom:262.200000px;}
.y9f{bottom:264.990000px;}
.yec{bottom:266.160000px;}
.ybd{bottom:268.140000px;}
.y20{bottom:272.280000px;}
.yd2{bottom:276.060000px;}
.y126{bottom:276.600000px;}
.yfa{bottom:277.860000px;}
.y50{bottom:279.840000px;}
.y9e{bottom:282.540000px;}
.yeb{bottom:283.800000px;}
.y67{bottom:285.060000px;}
.y1f{bottom:289.920000px;}
.yd1{bottom:293.610000px;}
.y125{bottom:294.240000px;}
.y4f{bottom:297.390000px;}
.y9d{bottom:300.090000px;}
.yea{bottom:301.350000px;}
.y1e{bottom:307.470000px;}
.yd0{bottom:311.250000px;}
.y124{bottom:311.790000px;}
.y9c{bottom:317.730000px;}
.ye9{bottom:318.990000px;}
.ybc{bottom:330.600000px;}
.y4e{bottom:332.940000px;}
.y66{bottom:333.390000px;}
.y1d{bottom:334.020000px;}
.y9b{bottom:335.280000px;}
.ye8{bottom:336.540000px;}
.y123{bottom:338.430000px;}
.yf8{bottom:340.410000px;}
.ycf{bottom:346.800000px;}
.y4d{bottom:350.580000px;}
.ye7{bottom:354.090000px;}
.y122{bottom:355.980000px;}
.yce{bottom:364.440000px;}
.y65{bottom:365.610000px;}
.y4c{bottom:368.130000px;}
.y1c{bottom:369.660000px;}
.y9a{bottom:370.920000px;}
.ye6{bottom:371.730000px;}
.y121{bottom:373.530000px;}
.yb9{bottom:375.510000px;}
.y8e{bottom:381.540000px;}
.ycd{bottom:381.990000px;}
.y4b{bottom:385.770000px;}
.y1b{bottom:387.210000px;}
.y99{bottom:388.470000px;}
.y120{bottom:391.170000px;}
.y8d{bottom:399.180000px;}
.ycc{bottom:399.540000px;}
.yf7{bottom:402.870000px;}
.y4a{bottom:403.320000px;}
.y1a{bottom:404.850000px;}
.y98{bottom:406.020000px;}
.ye5{bottom:407.280000px;}
.y8c{bottom:416.730000px;}
.ycb{bottom:417.180000px;}
.y11f{bottom:417.720000px;}
.y19{bottom:422.400000px;}
.y97{bottom:423.660000px;}
.ye4{bottom:424.920000px;}
.y49{bottom:429.870000px;}
.y8b{bottom:434.370000px;}
.yca{bottom:434.730000px;}
.y11e{bottom:435.360000px;}
.yb7{bottom:438.060000px;}
.y18{bottom:439.950000px;}
.y96{bottom:441.210000px;}
.ye3{bottom:442.470000px;}
.y8a{bottom:451.920000px;}
.yc9{bottom:452.370000px;}
.y11d{bottom:452.910000px;}
.y17{bottom:457.590000px;}
.y95{bottom:458.760000px;}
.ye2{bottom:460.020000px;}
.yf5{bottom:465.420000px;}
.y48{bottom:465.510000px;}
.y89{bottom:469.470000px;}
.yc8{bottom:469.950000px;}
.y94{bottom:476.430000px;}
.ye1{bottom:477.690000px;}
.y11c{bottom:479.490000px;}
.yb5{bottom:483.000000px;}
.y47{bottom:483.090000px;}
.y16{bottom:484.530000px;}
.y88{bottom:487.140000px;}
.y93{bottom:493.980000px;}
.ye0{bottom:495.240000px;}
.yc7{bottom:496.500000px;}
.y11b{bottom:497.130000px;}
.y46{bottom:500.730000px;}
.ydf{bottom:512.790000px;}
.yf4{bottom:514.140000px;}
.y45{bottom:518.280000px;}
.y92{bottom:520.620000px;}
.y87{bottom:522.690000px;}
.y11a{bottom:523.680000px;}
.yde{bottom:530.430000px;}
.yb4{bottom:531.690000px;}
.yc6{bottom:532.140000px;}
.y15{bottom:532.770000px;}
.y44{bottom:535.830000px;}
.y86{bottom:540.330000px;}
.y119{bottom:541.230000px;}
.ydd{bottom:547.980000px;}
.yc5{bottom:549.690000px;}
.y14{bottom:550.680000px;}
.y43{bottom:553.470000px;}
.y91{bottom:556.530000px;}
.y85{bottom:557.880000px;}
.y118{bottom:558.870000px;}
.yb3{bottom:567.330000px;}
.y42{bottom:571.020000px;}
.ydc{bottom:574.620000px;}
.y84{bottom:575.430000px;}
.y117{bottom:576.420000px;}
.yb2{bottom:584.880000px;}
.y13{bottom:587.670000px;}
.y83{bottom:593.070000px;}
.y116{bottom:594.060000px;}
.yb1{bottom:602.430000px;}
.y90{bottom:604.770000px;}
.y12{bottom:605.310000px;}
.y41{bottom:606.660000px;}
.ydb{bottom:610.530000px;}
.y82{bottom:610.620000px;}
.y115{bottom:611.610000px;}
.yb0{bottom:620.070000px;}
.y11{bottom:622.860000px;}
.y40{bottom:624.210000px;}
.y114{bottom:629.160000px;}
.y8f{bottom:636.990000px;}
.y81{bottom:637.260000px;}
.yaf{bottom:637.620000px;}
.y10{bottom:640.500000px;}
.y3f{bottom:641.760000px;}
.yae{bottom:655.260000px;}
.y113{bottom:655.800000px;}
.yf{bottom:658.050000px;}
.yda{bottom:658.770000px;}
.y3e{bottom:659.400000px;}
.y80{bottom:672.810000px;}
.y112{bottom:673.350000px;}
.ye{bottom:675.600000px;}
.y3d{bottom:676.950000px;}
.y7f{bottom:690.360000px;}
.yd9{bottom:690.990000px;}
.yd{bottom:693.240000px;}
.y3c{bottom:703.590000px;}
.y7e{bottom:708.000000px;}
.yc4{bottom:708.360000px;}
.y111{bottom:708.540000px;}
.yc{bottom:710.790000px;}
.y7d{bottom:725.550000px;}
.yad{bottom:726.000000px;}
.y110{bottom:726.090000px;}
.yb{bottom:728.430000px;}
.y3b{bottom:739.500000px;}
.y7c{bottom:743.190000px;}
.yac{bottom:743.550000px;}
.y10f{bottom:752.730000px;}
.ya{bottom:755.340000px;}
.y7b{bottom:760.740000px;}
.yab{bottom:761.190000px;}
.y10e{bottom:770.280000px;}
.y7a{bottom:778.290000px;}
.yaa{bottom:778.740000px;}
.y3a{bottom:787.740000px;}
.y10d{bottom:787.920000px;}
.ya9{bottom:796.290000px;}
.y9{bottom:803.580000px;}
.y39{bottom:805.290000px;}
.y79{bottom:813.930000px;}
.y10c{bottom:814.470000px;}
.y38{bottom:822.930000px;}
.y78{bottom:831.480000px;}
.y10b{bottom:832.020000px;}
.y8{bottom:839.130000px;}
.y37{bottom:840.480000px;}
.y77{bottom:849.030000px;}
.y10a{bottom:849.660000px;}
.y36{bottom:858.030000px;}
.y76{bottom:866.670000px;}
.y109{bottom:867.210000px;}
.y7{bottom:874.950000px;}
.y35{bottom:875.670000px;}
.y75{bottom:884.220000px;}
.y34{bottom:893.220000px;}
.ya8{bottom:893.670000px;}
.y108{bottom:894.120000px;}
.y74{bottom:901.860000px;}
.y33{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y64{bottom:911.220000px;}
.y73{bottom:919.410000px;}
.y63{bottom:928.860000px;}
.y32{bottom:937.410000px;}
.y107{bottom:942.450000px;}
.y72{bottom:945.960000px;}
.y62{bottom:946.410000px;}
.y5{bottom:947.040000px;}
.y106{bottom:960.000000px;}
.y61{bottom:963.960000px;}
.y31{bottom:972.960000px;}
.y105{bottom:977.550000px;}
.y60{bottom:981.600000px;}
.y4{bottom:985.380000px;}
.y30{bottom:990.600000px;}
.y104{bottom:995.190000px;}
.y5f{bottom:999.150000px;}
.y2f{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y103{bottom:1012.770000px;}
.y5e{bottom:1016.820000px;}
.y2e{bottom:1025.820000px;}
.y102{bottom:1030.320000px;}
.y5d{bottom:1034.370000px;}
.y2d{bottom:1043.370000px;}
.y101{bottom:1047.960000px;}
.y5c{bottom:1051.920000px;}
.y2c{bottom:1060.920000px;}
.y100{bottom:1065.510000px;}
.y71{bottom:1069.560000px;}
.ya7{bottom:1069.920000px;}
.y2b{bottom:1078.560000px;}
.yff{bottom:1083.150000px;}
.y70{bottom:1087.110000px;}
.y5b{bottom:1087.560000px;}
.y2a{bottom:1096.110000px;}
.yfe{bottom:1100.700000px;}
.y5a{bottom:1105.110000px;}
.y29{bottom:1113.750000px;}
.y59{bottom:1122.750000px;}
.yfd{bottom:1127.610000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h9{height:26.550000px;}
.he{height:26.580000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hc{height:44.190000px;}
.ha{height:44.220000px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.hd{height:61.740000px;}
.hf{height:61.793886px;}
.hb{height:61.830000px;}
.h7{height:62.585859px;}
.h8{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:136.740000px;}
.w7{width:146.010000px;}
.w6{width:179.280000px;}
.wa{width:200.250000px;}
.w8{width:202.140000px;}
.w9{width:205.140000px;}
.w5{width:214.860000px;}
.w4{width:222.570000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:3.960000px;}
.x1{left:68.040000px;}
.xf{left:111.239987px;}
.x2{left:202.799987px;}
.x7{left:206.309987px;}
.x5{left:216.119987px;}
.xc{left:240.239987px;}
.xd{left:418.350000px;}
.x9{left:429.600000px;}
.xe{left:624.210000px;}
.xa{left:645.180000px;}
.xb{left:756.059987px;}
.x6{left:775.139987px;}
.x3{left:792.059987px;}
.x4{left:801.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.165867pt;}
.ls19{letter-spacing:-0.142933pt;}
.ls18{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.ls14{letter-spacing:-0.111467pt;}
.lsc{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsa{letter-spacing:-0.075200pt;}
.ls9{letter-spacing:-0.050667pt;}
.lsd{letter-spacing:-0.013333pt;}
.ls12{letter-spacing:-0.013120pt;}
.ls5{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.lsf{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.lse{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls13{letter-spacing:0.102933pt;}
.ls1a{letter-spacing:0.103467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls17{letter-spacing:0.161067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls16{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.352533pt;}
.wsb{word-spacing:-12.775467pt;}
.wsf{word-spacing:-11.917867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws12{word-spacing:-11.860267pt;}
.wsd{word-spacing:-11.859733pt;}
.ws7{word-spacing:-11.800533pt;}
.wsa{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.wsc{word-spacing:-11.743680pt;}
.ws6{word-spacing:-11.743467pt;}
.wse{word-spacing:-11.645333pt;}
.ws10{word-spacing:-11.620267pt;}
.ws11{word-spacing:-11.613867pt;}
.ws3{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._19{margin-left:-3.740800pt;}
._1{margin-left:-2.577568pt;}
._0{margin-left:-0.981333pt;}
._2{width:0.907359pt;}
._10{width:1.824854pt;}
._7{width:2.725333pt;}
._e{width:4.008000pt;}
._14{width:5.130240pt;}
._16{width:6.021867pt;}
._f{width:6.947200pt;}
._3{width:7.855466pt;}
._8{width:8.978134pt;}
._9{width:9.909864pt;}
._11{width:10.831474pt;}
._6{width:13.165867pt;}
._12{width:14.302293pt;}
._18{width:15.196587pt;}
._c{width:16.138666pt;}
._d{width:17.048001pt;}
._1a{width:18.315307pt;}
._15{width:19.238400pt;}
._2a{width:20.307200pt;}
._4{width:21.215466pt;}
._5{width:22.232536pt;}
._17{width:23.780800pt;}
._13{width:24.849600pt;}
._1b{width:25.864960pt;}
._1c{width:27.040640pt;}
._1d{width:28.391787pt;}
._26{width:30.728000pt;}
._20{width:33.346560pt;}
._28{width:34.682560pt;}
._38{width:36.446080pt;}
._b{width:37.514666pt;}
._1f{width:39.438720pt;}
._22{width:42.164160pt;}
._24{width:45.164480pt;}
._1e{width:49.057920pt;}
._36{width:50.500800pt;}
._21{width:54.776000pt;}
._30{width:56.058560pt;}
._27{width:58.570240pt;}
._2e{width:65.464000pt;}
._3b{width:68.296320pt;}
._3c{width:69.366241pt;}
._34{width:82.137280pt;}
._25{width:84.168000pt;}
._2d{width:87.000320pt;}
._a{width:91.810987pt;}
._3e{width:96.192000pt;}
._3f{width:97.100480pt;}
._35{width:108.376320pt;}
._23{width:109.658880pt;}
._31{width:115.975360pt;}
._2b{width:122.805120pt;}
._2f{width:123.873920pt;}
._32{width:126.920000pt;}
._39{width:144.555200pt;}
._3a{width:145.643413pt;}
._2c{width:171.702720pt;}
._29{width:183.887040pt;}
._37{width:200.667200pt;}
._33{width:206.011200pt;}
._3d{width:216.004480pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:6.960000pt;}
.yf6{bottom:6.986667pt;}
.ybb{bottom:7.040000pt;}
.yf9{bottom:22.560000pt;}
.yb8{bottom:22.640000pt;}
.ybe{bottom:38.240000pt;}
.yba{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y58{bottom:99.706667pt;}
.ya6{bottom:102.106667pt;}
.yf3{bottom:103.226667pt;}
.y6f{bottom:104.106667pt;}
.yc3{bottom:110.906667pt;}
.y57{bottom:115.306667pt;}
.ya5{bottom:117.706667pt;}
.yf2{bottom:118.826667pt;}
.y6e{bottom:119.706667pt;}
.yc2{bottom:126.586667pt;}
.ya4{bottom:133.386667pt;}
.yf1{bottom:134.426667pt;}
.y6d{bottom:135.386667pt;}
.y12c{bottom:136.106667pt;}
.y56{bottom:138.906667pt;}
.yc1{bottom:142.186667pt;}
.yf0{bottom:150.106667pt;}
.y6c{bottom:150.986667pt;}
.yd8{bottom:151.626667pt;}
.y12b{bottom:151.706667pt;}
.ya3{bottom:156.986667pt;}
.y25{bottom:163.866667pt;}
.yef{bottom:165.706667pt;}
.yc0{bottom:165.866667pt;}
.y6b{bottom:166.586667pt;}
.yd7{bottom:167.226667pt;}
.y55{bottom:170.586667pt;}
.y12a{bottom:175.386667pt;}
.yfc{bottom:178.106667pt;}
.y24{bottom:179.546667pt;}
.yee{bottom:181.386667pt;}
.y6a{bottom:182.266667pt;}
.yd6{bottom:182.826667pt;}
.y54{bottom:186.186667pt;}
.ya2{bottom:188.586667pt;}
.y129{bottom:190.986667pt;}
.yfb{bottom:191.466667pt;}
.y23{bottom:195.146667pt;}
.ybf{bottom:197.706667pt;}
.y69{bottom:197.866667pt;}
.yd5{bottom:198.506667pt;}
.y53{bottom:201.866667pt;}
.ya1{bottom:204.266667pt;}
.yed{bottom:204.986667pt;}
.y128{bottom:206.666667pt;}
.y22{bottom:210.746667pt;}
.yd4{bottom:214.106667pt;}
.y52{bottom:217.466667pt;}
.ya0{bottom:219.866667pt;}
.y68{bottom:221.546667pt;}
.y127{bottom:222.266667pt;}
.y21{bottom:226.426667pt;}
.yd3{bottom:229.786667pt;}
.y51{bottom:233.066667pt;}
.y9f{bottom:235.546667pt;}
.yec{bottom:236.586667pt;}
.ybd{bottom:238.346667pt;}
.y20{bottom:242.026667pt;}
.yd2{bottom:245.386667pt;}
.y126{bottom:245.866667pt;}
.yfa{bottom:246.986667pt;}
.y50{bottom:248.746667pt;}
.y9e{bottom:251.146667pt;}
.yeb{bottom:252.266667pt;}
.y67{bottom:253.386667pt;}
.y1f{bottom:257.706667pt;}
.yd1{bottom:260.986667pt;}
.y125{bottom:261.546667pt;}
.y4f{bottom:264.346667pt;}
.y9d{bottom:266.746667pt;}
.yea{bottom:267.866667pt;}
.y1e{bottom:273.306667pt;}
.yd0{bottom:276.666667pt;}
.y124{bottom:277.146667pt;}
.y9c{bottom:282.426667pt;}
.ye9{bottom:283.546667pt;}
.ybc{bottom:293.866667pt;}
.y4e{bottom:295.946667pt;}
.y66{bottom:296.346667pt;}
.y1d{bottom:296.906667pt;}
.y9b{bottom:298.026667pt;}
.ye8{bottom:299.146667pt;}
.y123{bottom:300.826667pt;}
.yf8{bottom:302.586667pt;}
.ycf{bottom:308.266667pt;}
.y4d{bottom:311.626667pt;}
.ye7{bottom:314.746667pt;}
.y122{bottom:316.426667pt;}
.yce{bottom:323.946667pt;}
.y65{bottom:324.986667pt;}
.y4c{bottom:327.226667pt;}
.y1c{bottom:328.586667pt;}
.y9a{bottom:329.706667pt;}
.ye6{bottom:330.426667pt;}
.y121{bottom:332.026667pt;}
.yb9{bottom:333.786667pt;}
.y8e{bottom:339.146667pt;}
.ycd{bottom:339.546667pt;}
.y4b{bottom:342.906667pt;}
.y1b{bottom:344.186667pt;}
.y99{bottom:345.306667pt;}
.y120{bottom:347.706667pt;}
.y8d{bottom:354.826667pt;}
.ycc{bottom:355.146667pt;}
.yf7{bottom:358.106667pt;}
.y4a{bottom:358.506667pt;}
.y1a{bottom:359.866667pt;}
.y98{bottom:360.906667pt;}
.ye5{bottom:362.026667pt;}
.y8c{bottom:370.426667pt;}
.ycb{bottom:370.826667pt;}
.y11f{bottom:371.306667pt;}
.y19{bottom:375.466667pt;}
.y97{bottom:376.586667pt;}
.ye4{bottom:377.706667pt;}
.y49{bottom:382.106667pt;}
.y8b{bottom:386.106667pt;}
.yca{bottom:386.426667pt;}
.y11e{bottom:386.986667pt;}
.yb7{bottom:389.386667pt;}
.y18{bottom:391.066667pt;}
.y96{bottom:392.186667pt;}
.ye3{bottom:393.306667pt;}
.y8a{bottom:401.706667pt;}
.yc9{bottom:402.106667pt;}
.y11d{bottom:402.586667pt;}
.y17{bottom:406.746667pt;}
.y95{bottom:407.786667pt;}
.ye2{bottom:408.906667pt;}
.yf5{bottom:413.706667pt;}
.y48{bottom:413.786667pt;}
.y89{bottom:417.306667pt;}
.yc8{bottom:417.733333pt;}
.y94{bottom:423.493333pt;}
.ye1{bottom:424.613333pt;}
.y11c{bottom:426.213333pt;}
.yb5{bottom:429.333333pt;}
.y47{bottom:429.413333pt;}
.y16{bottom:430.693333pt;}
.y88{bottom:433.013333pt;}
.y93{bottom:439.093333pt;}
.ye0{bottom:440.213333pt;}
.yc7{bottom:441.333333pt;}
.y11b{bottom:441.893333pt;}
.y46{bottom:445.093333pt;}
.ydf{bottom:455.813333pt;}
.yf4{bottom:457.013333pt;}
.y45{bottom:460.693333pt;}
.y92{bottom:462.773333pt;}
.y87{bottom:464.613333pt;}
.y11a{bottom:465.493333pt;}
.yde{bottom:471.493333pt;}
.yb4{bottom:472.613333pt;}
.yc6{bottom:473.013333pt;}
.y15{bottom:473.573333pt;}
.y44{bottom:476.293333pt;}
.y86{bottom:480.293333pt;}
.y119{bottom:481.093333pt;}
.ydd{bottom:487.093333pt;}
.yc5{bottom:488.613333pt;}
.y14{bottom:489.493333pt;}
.y43{bottom:491.973333pt;}
.y91{bottom:494.693333pt;}
.y85{bottom:495.893333pt;}
.y118{bottom:496.773333pt;}
.yb3{bottom:504.293333pt;}
.y42{bottom:507.573333pt;}
.ydc{bottom:510.773333pt;}
.y84{bottom:511.493333pt;}
.y117{bottom:512.373333pt;}
.yb2{bottom:519.893333pt;}
.y13{bottom:522.373333pt;}
.y83{bottom:527.173333pt;}
.y116{bottom:528.053333pt;}
.yb1{bottom:535.493333pt;}
.y90{bottom:537.573333pt;}
.y12{bottom:538.053333pt;}
.y41{bottom:539.253333pt;}
.ydb{bottom:542.693333pt;}
.y82{bottom:542.773333pt;}
.y115{bottom:543.653333pt;}
.yb0{bottom:551.173333pt;}
.y11{bottom:553.653333pt;}
.y40{bottom:554.853333pt;}
.y114{bottom:559.253333pt;}
.y8f{bottom:566.213333pt;}
.y81{bottom:566.453333pt;}
.yaf{bottom:566.773333pt;}
.y10{bottom:569.333333pt;}
.y3f{bottom:570.453333pt;}
.yae{bottom:582.453333pt;}
.y113{bottom:582.933333pt;}
.yf{bottom:584.933333pt;}
.yda{bottom:585.573333pt;}
.y3e{bottom:586.133333pt;}
.y80{bottom:598.053333pt;}
.y112{bottom:598.533333pt;}
.ye{bottom:600.533333pt;}
.y3d{bottom:601.733333pt;}
.y7f{bottom:613.653333pt;}
.yd9{bottom:614.213333pt;}
.yd{bottom:616.213333pt;}
.y3c{bottom:625.413333pt;}
.y7e{bottom:629.333333pt;}
.yc4{bottom:629.653333pt;}
.y111{bottom:629.813333pt;}
.yc{bottom:631.813333pt;}
.y7d{bottom:644.933333pt;}
.yad{bottom:645.333333pt;}
.y110{bottom:645.413333pt;}
.yb{bottom:647.493333pt;}
.y3b{bottom:657.333333pt;}
.y7c{bottom:660.613333pt;}
.yac{bottom:660.933333pt;}
.y10f{bottom:669.093333pt;}
.ya{bottom:671.413333pt;}
.y7b{bottom:676.213333pt;}
.yab{bottom:676.613333pt;}
.y10e{bottom:684.693333pt;}
.y7a{bottom:691.813333pt;}
.yaa{bottom:692.213333pt;}
.y3a{bottom:700.213333pt;}
.y10d{bottom:700.373333pt;}
.ya9{bottom:707.813333pt;}
.y9{bottom:714.293333pt;}
.y39{bottom:715.813333pt;}
.y79{bottom:723.493333pt;}
.y10c{bottom:723.973333pt;}
.y38{bottom:731.493333pt;}
.y78{bottom:739.093333pt;}
.y10b{bottom:739.573333pt;}
.y8{bottom:745.893333pt;}
.y37{bottom:747.093333pt;}
.y77{bottom:754.693333pt;}
.y10a{bottom:755.253333pt;}
.y36{bottom:762.693333pt;}
.y76{bottom:770.373333pt;}
.y109{bottom:770.853333pt;}
.y7{bottom:777.733333pt;}
.y35{bottom:778.373333pt;}
.y75{bottom:785.973333pt;}
.y34{bottom:793.973333pt;}
.ya8{bottom:794.373333pt;}
.y108{bottom:794.773333pt;}
.y74{bottom:801.653333pt;}
.y33{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y64{bottom:809.973333pt;}
.y73{bottom:817.253333pt;}
.y63{bottom:825.653333pt;}
.y32{bottom:833.253333pt;}
.y107{bottom:837.733333pt;}
.y72{bottom:840.853333pt;}
.y62{bottom:841.253333pt;}
.y5{bottom:841.813333pt;}
.y106{bottom:853.333333pt;}
.y61{bottom:856.853333pt;}
.y31{bottom:864.853333pt;}
.y105{bottom:868.933333pt;}
.y60{bottom:872.533333pt;}
.y4{bottom:875.893333pt;}
.y30{bottom:880.533333pt;}
.y104{bottom:884.613333pt;}
.y5f{bottom:888.133333pt;}
.y2f{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y103{bottom:900.240000pt;}
.y5e{bottom:903.840000pt;}
.y2e{bottom:911.840000pt;}
.y102{bottom:915.840000pt;}
.y5d{bottom:919.440000pt;}
.y2d{bottom:927.440000pt;}
.y101{bottom:931.520000pt;}
.y5c{bottom:935.040000pt;}
.y2c{bottom:943.040000pt;}
.y100{bottom:947.120000pt;}
.y71{bottom:950.720000pt;}
.ya7{bottom:951.040000pt;}
.y2b{bottom:958.720000pt;}
.yff{bottom:962.800000pt;}
.y70{bottom:966.320000pt;}
.y5b{bottom:966.720000pt;}
.y2a{bottom:974.320000pt;}
.yfe{bottom:978.400000pt;}
.y5a{bottom:982.320000pt;}
.y29{bottom:990.000000pt;}
.y59{bottom:998.000000pt;}
.yfd{bottom:1002.320000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h9{height:23.600000pt;}
.he{height:23.626667pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hc{height:39.280000pt;}
.ha{height:39.306667pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.hd{height:54.880000pt;}
.hf{height:54.927899pt;}
.hb{height:54.960000pt;}
.h7{height:55.631875pt;}
.h8{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:121.546667pt;}
.w7{width:129.786667pt;}
.w6{width:159.360000pt;}
.wa{width:178.000000pt;}
.w8{width:179.680000pt;}
.w9{width:182.346667pt;}
.w5{width:190.986667pt;}
.w4{width:197.840000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:3.520000pt;}
.x1{left:60.480000pt;}
.xf{left:98.879988pt;}
.x2{left:180.266655pt;}
.x7{left:183.386655pt;}
.x5{left:192.106655pt;}
.xc{left:213.546655pt;}
.xd{left:371.866667pt;}
.x9{left:381.866667pt;}
.xe{left:554.853333pt;}
.xa{left:573.493333pt;}
.xb{left:672.053322pt;}
.x6{left:689.013322pt;}
.x3{left:704.053322pt;}
.x4{left:712.053322pt;}
}




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