
    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_fc4cfbaf2355cd070707344b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.961914;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_37d93660b0b78594b007c96a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.115234;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_43378333d34bf180f235a50b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_8afddca98885edbe8b3f47c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.720703;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_501a96cbae6145173a1cf296.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.892578;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_3fdb77b5329998abbbae7b0c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104492;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_57508d4b6f878a3211c9f55e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-1.440000px;}
.ls23{letter-spacing:-1.266000px;}
.lsf{letter-spacing:-1.152000px;}
.ls25{letter-spacing:-0.750000px;}
.ls1a{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.432000px;}
.ls6{letter-spacing:-0.360000px;}
.ls28{letter-spacing:-0.350400px;}
.ls21{letter-spacing:-0.341400px;}
.ls18{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.181200px;}
.lse{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.053280px;}
.ls26{letter-spacing:-0.028080px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.108000px;}
.lsc{letter-spacing:0.144000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.259920px;}
.lsa{letter-spacing:0.288000px;}
.ls29{letter-spacing:0.305280px;}
.ls22{letter-spacing:0.305400px;}
.ls27{letter-spacing:0.369600px;}
.ls20{letter-spacing:0.377400px;}
.ls17{letter-spacing:0.378600px;}
.ls8{letter-spacing:0.612000px;}
.ls2c{letter-spacing:0.613440px;}
.ls2a{letter-spacing:0.666000px;}
.ls2b{letter-spacing:0.786720px;}
.ls10{letter-spacing:0.864000px;}
.ls14{letter-spacing:2.304000px;}
.ls1f{letter-spacing:3.024000px;}
.ls15{letter-spacing:5.904000px;}
.ls1d{letter-spacing:7.344000px;}
.ls12{letter-spacing:9.504000px;}
.ls13{letter-spacing:15.984000px;}
.lsb{letter-spacing:21.744000px;}
.ls1b{letter-spacing:22.464000px;}
.ls16{letter-spacing:26.064000px;}
.ls1c{letter-spacing:29.664000px;}
.ls11{letter-spacing:43.344000px;}
.ls1e{letter-spacing:44.064000px;}
.ls24{letter-spacing:78.821280px;}
.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:-27.000000px;}
.wsf{word-spacing:-23.797320px;}
.ws18{word-spacing:-23.788320px;}
.ws16{word-spacing:-23.418720px;}
.ws17{word-spacing:-23.390640px;}
.ws13{word-spacing:-23.077320px;}
.ws19{word-spacing:-23.068320px;}
.ws15{word-spacing:-22.668720px;}
.wsb{word-spacing:-20.304000px;}
.ws9{word-spacing:-20.232000px;}
.ws8{word-spacing:-20.016000px;}
.wsd{word-spacing:-19.872000px;}
.ws10{word-spacing:-19.800000px;}
.wsc{word-spacing:-19.584000px;}
.ws12{word-spacing:-19.296000px;}
.wse{word-spacing:-18.864000px;}
.ws11{word-spacing:-18.576000px;}
.wsa{word-spacing:-18.414720px;}
.ws6{word-spacing:-17.225280px;}
.ws5{word-spacing:-16.613280px;}
.ws4{word-spacing:-16.506480px;}
.ws3{word-spacing:-15.012000px;}
.ws14{word-spacing:-14.588760px;}
.ws0{word-spacing:-13.410720px;}
.ws1{word-spacing:-13.229520px;}
.ws7{word-spacing:0.000000px;}
._16{margin-left:-6.543120px;}
._17{margin-left:-5.400000px;}
._7{margin-left:-4.104000px;}
._6{margin-left:-2.700000px;}
._0{margin-left:-1.010880px;}
._3{width:1.191120px;}
._4{width:2.480880px;}
._5{width:4.237680px;}
._9{width:5.929200px;}
._1{width:6.946560px;}
._2{width:8.049600px;}
._d{width:9.936000px;}
._19{width:11.062080px;}
._14{width:12.231360px;}
._8{width:13.484880px;}
._10{width:14.574240px;}
._13{width:16.416000px;}
._b{width:17.712000px;}
._22{width:18.840000px;}
._32{width:19.936800px;}
._18{width:21.064320px;}
._c{width:22.104000px;}
._1d{width:24.120000px;}
._1c{width:25.632000px;}
._1b{width:26.856000px;}
._1a{width:27.864000px;}
._15{width:29.592000px;}
._f{width:31.613760px;}
._e{width:32.616000px;}
._28{width:34.454880px;}
._2e{width:35.477280px;}
._2c{width:37.164240px;}
._12{width:39.600000px;}
._11{width:40.680000px;}
._27{width:41.785920px;}
._1f{width:43.112880px;}
._1e{width:44.328000px;}
._2d{width:46.263600px;}
._2b{width:48.921840px;}
._3e{width:53.547360px;}
._33{width:54.635760px;}
._24{width:55.925280px;}
._21{width:57.264000px;}
._20{width:58.404000px;}
._23{width:69.165360px;}
._25{width:71.465760px;}
._30{width:73.805760px;}
._26{width:76.015440px;}
._35{width:77.996400px;}
._34{width:79.549680px;}
._3b{width:96.034320px;}
._3c{width:97.673040px;}
._29{width:112.872960px;}
._2a{width:114.033360px;}
._39{width:117.667440px;}
._2f{width:121.001040px;}
._3d{width:122.149440px;}
._3a{width:214.956720px;}
._31{width:238.679280px;}
._40{width:305.015040px;}
._3f{width:306.509040px;}
._a{width:844.140000px;}
._36{width:845.741280px;}
._37{width:1016.834880px;}
._38{width:1018.370160px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,0,0);}
.fs7{font-size:5.760000px;}
.fs9{font-size:38.880000px;}
.fs1{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.yf3{bottom:2.700000px;}
.yd8{bottom:2.880000px;}
.yd6{bottom:10.080000px;}
.yd7{bottom:17.460000px;}
.yf2{bottom:32.040000px;}
.yf1{bottom:46.800000px;}
.y8{bottom:58.896000px;}
.yf0{bottom:61.380000px;}
.yef{bottom:76.140000px;}
.yee{bottom:90.720000px;}
.yed{bottom:105.300000px;}
.yec{bottom:120.060000px;}
.y31{bottom:130.716000px;}
.yfc{bottom:131.400000px;}
.yeb{bottom:134.640000px;}
.yfd{bottom:137.376000px;}
.yae{bottom:140.616000px;}
.yfb{bottom:146.025000px;}
.y30{bottom:147.996000px;}
.y7b{bottom:149.256000px;}
.yea{bottom:149.445000px;}
.y112{bottom:149.796000px;}
.y2f{bottom:152.490000px;}
.yd9{bottom:155.010000px;}
.y55{bottom:158.790000px;}
.yfa{bottom:160.785000px;}
.yad{bottom:161.310000px;}
.ye9{bottom:164.025000px;}
.y16f{bottom:164.910000px;}
.y2e{bottom:165.450000px;}
.y14e{bottom:168.150000px;}
.y111{bottom:168.690000px;}
.y7a{bottom:169.950000px;}
.yc2{bottom:170.490000px;}
.yf9{bottom:175.365000px;}
.ye8{bottom:178.785000px;}
.y54{bottom:179.490000px;}
.yac{bottom:182.010000px;}
.y16e{bottom:182.190000px;}
.y14d{bottom:185.430000px;}
.y110{bottom:187.770000px;}
.yf8{bottom:190.125000px;}
.y79{bottom:190.650000px;}
.ye7{bottom:193.365000px;}
.y12e{bottom:196.050000px;}
.y16d{bottom:199.470000px;}
.y53{bottom:200.190000px;}
.yab{bottom:202.710000px;}
.yf7{bottom:204.705000px;}
.y10f{bottom:206.670000px;}
.ye6{bottom:208.125000px;}
.yc1{bottom:209.190000px;}
.y78{bottom:211.350000px;}
.yf6{bottom:219.465000px;}
.y14c{bottom:219.990000px;}
.y52{bottom:220.890000px;}
.ye5{bottom:222.705000px;}
.yaa{bottom:223.410000px;}
.y10e{bottom:225.570000px;}
.yc0{bottom:229.890000px;}
.y77{bottom:232.050000px;}
.y12d{bottom:232.950000px;}
.yf5{bottom:234.045000px;}
.y16c{bottom:234.570000px;}
.ye4{bottom:237.465000px;}
.y51{bottom:241.590000px;}
.y10d{bottom:244.650000px;}
.yf4{bottom:248.625000px;}
.ybf{bottom:250.590000px;}
.y16b{bottom:251.850000px;}
.y12c{bottom:252.030000px;}
.ye3{bottom:252.045000px;}
.y14b{bottom:255.090000px;}
.ya9{bottom:262.110000px;}
.y97{bottom:262.290000px;}
.y10c{bottom:263.550000px;}
.ye2{bottom:266.625000px;}
.y2d{bottom:268.770000px;}
.y16a{bottom:269.130000px;}
.y76{bottom:270.570000px;}
.ybe{bottom:271.290000px;}
.y14a{bottom:272.370000px;}
.y50{bottom:280.110000px;}
.ye1{bottom:281.385000px;}
.y10b{bottom:282.630000px;}
.ya8{bottom:282.810000px;}
.y96{bottom:282.990000px;}
.y2c{bottom:289.290000px;}
.y75{bottom:289.470000px;}
.y149{bottom:289.650000px;}
.y12b{bottom:290.550000px;}
.ybd{bottom:292.035000px;}
.ye0{bottom:295.965000px;}
.y4f{bottom:299.055000px;}
.y10a{bottom:302.655000px;}
.ya7{bottom:303.555000px;}
.y169{bottom:304.635000px;}
.y148{bottom:306.975000px;}
.y2b{bottom:308.055000px;}
.y74{bottom:308.415000px;}
.ydf{bottom:310.725000px;}
.y4e{bottom:318.135000px;}
.y95{bottom:321.735000px;}
.y168{bottom:323.715000px;}
.ya6{bottom:324.255000px;}
.yde{bottom:325.305000px;}
.y2a{bottom:325.335000px;}
.y109{bottom:326.775000px;}
.y73{bottom:327.495000px;}
.ybc{bottom:331.455000px;}
.y12a{bottom:334.515000px;}
.y4d{bottom:337.035000px;}
.ydd{bottom:340.065000px;}
.y29{bottom:342.435000px;}
.y167{bottom:342.615000px;}
.ya5{bottom:344.955000px;}
.y72{bottom:346.395000px;}
.y108{bottom:350.895000px;}
.ydc{bottom:354.645000px;}
.y28{bottom:359.355000px;}
.y166{bottom:361.695000px;}
.y94{bottom:363.135000px;}
.ya4{bottom:365.655000px;}
.ydb{bottom:369.405000px;}
.ybb{bottom:372.855000px;}
.y129{bottom:373.215000px;}
.y4c{bottom:374.295000px;}
.y27{bottom:375.015000px;}
.y147{bottom:376.635000px;}
.y71{bottom:383.475000px;}
.yda{bottom:383.985000px;}
.ya3{bottom:386.355000px;}
.y26{bottom:390.495000px;}
.y107{bottom:392.295000px;}
.yba{bottom:393.555000px;}
.y146{bottom:393.915000px;}
.y4b{bottom:394.995000px;}
.y165{bottom:398.415000px;}
.y93{bottom:401.835000px;}
.y70{bottom:402.375000px;}
.y25{bottom:405.975000px;}
.y145{bottom:411.195000px;}
.y106{bottom:412.995000px;}
.yb9{bottom:414.255000px;}
.y4a{bottom:415.695000px;}
.y128{bottom:417.135000px;}
.y6f{bottom:421.275000px;}
.y24{bottom:421.455000px;}
.y92{bottom:422.535000px;}
.ya2{bottom:425.055000px;}
.y164{bottom:432.795000px;}
.y105{bottom:433.695000px;}
.yb8{bottom:434.955000px;}
.y127{bottom:436.035000px;}
.y49{bottom:436.395000px;}
.y23{bottom:437.115000px;}
.y6e{bottom:440.355000px;}
.ya1{bottom:445.755000px;}
.y144{bottom:446.475000px;}
.y22{bottom:452.595000px;}
.y104{bottom:454.395000px;}
.y126{bottom:455.115000px;}
.yb7{bottom:455.655000px;}
.y48{bottom:457.095000px;}
.y6d{bottom:459.255000px;}
.y91{bottom:461.235000px;}
.y143{bottom:463.755000px;}
.ya0{bottom:466.455000px;}
.y21{bottom:468.075000px;}
.y125{bottom:474.015000px;}
.y103{bottom:475.095000px;}
.y47{bottom:477.795000px;}
.y6c{bottom:478.335000px;}
.y142{bottom:480.855000px;}
.y90{bottom:481.935000px;}
.y20{bottom:483.555000px;}
.y163{bottom:485.355000px;}
.y9f{bottom:487.155000px;}
.yb6{bottom:495.075000px;}
.y102{bottom:495.795000px;}
.y46{bottom:498.495000px;}
.y1f{bottom:499.215000px;}
.y8f{bottom:502.635000px;}
.y9e{bottom:507.855000px;}
.y124{bottom:511.095000px;}
.y1e{bottom:514.695000px;}
.y6b{bottom:515.235000px;}
.y141{bottom:516.135000px;}
.y101{bottom:516.495000px;}
.y45{bottom:519.195000px;}
.y162{bottom:519.915000px;}
.y8e{bottom:523.335000px;}
.y9d{bottom:528.555000px;}
.y123{bottom:529.995000px;}
.y1d{bottom:530.175000px;}
.y140{bottom:533.415000px;}
.y6a{bottom:534.135000px;}
.yb5{bottom:536.475000px;}
.y100{bottom:537.195000px;}
.y8d{bottom:544.035000px;}
.y1c{bottom:545.655000px;}
.y122{bottom:548.895000px;}
.y13f{bottom:550.725000px;}
.yd5{bottom:551.625000px;}
.y69{bottom:553.245000px;}
.y161{bottom:555.045000px;}
.yb4{bottom:557.205000px;}
.y44{bottom:557.925000px;}
.y1b{bottom:561.345000px;}
.y9c{bottom:562.065000px;}
.y121{bottom:568.005000px;}
.y68{bottom:572.145000px;}
.y160{bottom:572.325000px;}
.y1a{bottom:576.825000px;}
.yb3{bottom:577.905000px;}
.y43{bottom:578.625000px;}
.y8c{bottom:582.765000px;}
.y13e{bottom:585.285000px;}
.yd4{bottom:585.465000px;}
.y120{bottom:586.905000px;}
.y67{bottom:591.225000px;}
.y19{bottom:592.305000px;}
.yb2{bottom:598.605000px;}
.y42{bottom:599.325000px;}
.y8b{bottom:603.465000px;}
.y11f{bottom:605.985000px;}
.yd3{bottom:606.165000px;}
.y15f{bottom:607.605000px;}
.y18{bottom:607.785000px;}
.y66{bottom:610.125000px;}
.yff{bottom:617.325000px;}
.yb1{bottom:619.305000px;}
.y41{bottom:620.025000px;}
.y13d{bottom:620.385000px;}
.y17{bottom:623.445000px;}
.y8a{bottom:624.165000px;}
.y15e{bottom:624.885000px;}
.y65{bottom:629.025000px;}
.y13c{bottom:637.665000px;}
.yfe{bottom:638.025000px;}
.y16{bottom:638.925000px;}
.y11e{bottom:640.365000px;}
.y40{bottom:640.725000px;}
.y15d{bottom:642.165000px;}
.yd2{bottom:644.685000px;}
.y89{bottom:644.865000px;}
.y64{bottom:648.105000px;}
.y13b{bottom:654.945000px;}
.y15{bottom:655.305000px;}
.yb0{bottom:658.725000px;}
.yd1{bottom:663.585000px;}
.y88{bottom:665.565000px;}
.y63{bottom:667.005000px;}
.y13a{bottom:672.225000px;}
.y14{bottom:676.005000px;}
.y15c{bottom:677.265000px;}
.y3f{bottom:679.425000px;}
.yd0{bottom:682.665000px;}
.y11d{bottom:684.285000px;}
.y87{bottom:686.265000px;}
.y15b{bottom:694.545000px;}
.y13{bottom:696.705000px;}
.y62{bottom:699.045000px;}
.y3e{bottom:700.125000px;}
.yaf{bottom:701.385000px;}
.ycf{bottom:701.565000px;}
.y11c{bottom:703.185000px;}
.y86{bottom:706.965000px;}
.y139{bottom:707.325000px;}
.y15a{bottom:711.825000px;}
.y12{bottom:717.405000px;}
.yce{bottom:720.465000px;}
.y3d{bottom:720.825000px;}
.y11b{bottom:722.265000px;}
.y138{bottom:724.605000px;}
.y9b{bottom:727.665000px;}
.y61{bottom:737.565000px;}
.y11{bottom:738.105000px;}
.y11a{bottom:741.165000px;}
.y3c{bottom:741.525000px;}
.y85{bottom:745.665000px;}
.y159{bottom:747.285000px;}
.y10{bottom:758.805000px;}
.ycd{bottom:759.165000px;}
.y137{bottom:759.885000px;}
.y119{bottom:760.245000px;}
.y3b{bottom:762.225000px;}
.y84{bottom:766.365000px;}
.y136{bottom:777.165000px;}
.yf{bottom:779.505000px;}
.y60{bottom:781.665000px;}
.ycc{bottom:785.445000px;}
.y83{bottom:787.065000px;}
.y135{bottom:794.445000px;}
.y118{bottom:797.145000px;}
.y5f{bottom:800.565000px;}
.y3a{bottom:800.925000px;}
.y158{bottom:803.085000px;}
.ycb{bottom:806.145000px;}
.y82{bottom:807.765000px;}
.y117{bottom:816.270000px;}
.ye{bottom:819.510000px;}
.y5e{bottom:819.690000px;}
.y157{bottom:820.410000px;}
.y39{bottom:821.670000px;}
.yca{bottom:826.890000px;}
.y81{bottom:828.510000px;}
.y134{bottom:829.770000px;}
.y116{bottom:835.170000px;}
.y156{bottom:837.690000px;}
.y5d{bottom:838.590000px;}
.y38{bottom:842.370000px;}
.yd{bottom:847.050000px;}
.yc9{bottom:847.590000px;}
.y80{bottom:849.210000px;}
.y115{bottom:854.070000px;}
.y155{bottom:854.790000px;}
.y5c{bottom:857.670000px;}
.y37{bottom:863.070000px;}
.y133{bottom:864.510000px;}
.yc8{bottom:868.290000px;}
.y7f{bottom:869.910000px;}
.y114{bottom:873.150000px;}
.yc{bottom:874.770000px;}
.y5b{bottom:876.570000px;}
.y132{bottom:883.230000px;}
.y36{bottom:883.770000px;}
.yc7{bottom:888.990000px;}
.y154{bottom:890.070000px;}
.y9a{bottom:890.610000px;}
.y113{bottom:892.050000px;}
.y5a{bottom:895.470000px;}
.y35{bottom:904.470000px;}
.y153{bottom:907.350000px;}
.y7e{bottom:908.610000px;}
.yc6{bottom:909.330000px;}
.y99{bottom:911.310000px;}
.y59{bottom:914.550000px;}
.y131{bottom:918.330000px;}
.yb{bottom:921.030000px;}
.y152{bottom:924.630000px;}
.y34{bottom:925.170000px;}
.yc5{bottom:928.590000px;}
.y7d{bottom:929.310000px;}
.y98{bottom:932.010000px;}
.y58{bottom:933.450000px;}
.y130{bottom:935.610000px;}
.y33{bottom:945.870000px;}
.yc4{bottom:949.290000px;}
.y7c{bottom:950.010000px;}
.ya{bottom:952.170000px;}
.y12f{bottom:952.890000px;}
.y151{bottom:959.730000px;}
.y57{bottom:970.710000px;}
.y150{bottom:977.010000px;}
.y9{bottom:983.130000px;}
.y32{bottom:985.830000px;}
.yc3{bottom:988.710000px;}
.y56{bottom:991.410000px;}
.y14f{bottom:994.290000px;}
.y7{bottom:1030.290000px;}
.y6{bottom:1044.150000px;}
.y5{bottom:1058.010000px;}
.y4{bottom:1071.720000px;}
.y3{bottom:1085.580000px;}
.y2{bottom:1099.440000px;}
.y1{bottom:1115.280000px;}
.ha{height:5.163750px;}
.h11{height:29.340000px;}
.hf{height:34.855313px;}
.h3{height:43.246406px;}
.h2{height:43.646836px;}
.h14{height:45.828281px;}
.h12{height:46.252617px;}
.hc{height:48.410156px;}
.hb{height:48.858398px;}
.hd{height:53.573906px;}
.h16{height:54.069961px;}
.h15{height:59.221406px;}
.h4{height:59.383125px;}
.he{height:59.932969px;}
.h1{height:63.303398px;}
.h8{height:64.546875px;}
.h9{height:65.144531px;}
.h6{height:74.408203px;}
.h5{height:74.988281px;}
.h10{height:76.219102px;}
.h7{height:86.642227px;}
.h13{height:395.895000px;}
.h0{height:1188.000000px;}
.w3{width:219.990000px;}
.w4{width:220.035000px;}
.w2{width:917.999973px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x14{left:14.220000px;}
.x11{left:18.900000px;}
.xf{left:43.014000px;}
.x12{left:78.480000px;}
.x1{left:127.655986px;}
.xd{left:133.055986px;}
.x6{left:154.289986px;}
.x3{left:155.549986px;}
.xe{left:159.689986px;}
.x16{left:170.129986px;}
.x7{left:213.689986px;}
.x4{left:228.089986px;}
.x9{left:249.689986px;}
.xa{left:303.014986px;}
.x5{left:344.234986px;}
.x10{left:349.095000px;}
.x8{left:370.334986px;}
.x2{left:428.294986px;}
.xc{left:435.524986px;}
.x13{left:569.805000px;}
.xb{left:614.309973px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-1.280000pt;}
.ls23{letter-spacing:-1.125333pt;}
.lsf{letter-spacing:-1.024000pt;}
.ls25{letter-spacing:-0.666667pt;}
.ls1a{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.384000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls28{letter-spacing:-0.311467pt;}
.ls21{letter-spacing:-0.303467pt;}
.ls18{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.161067pt;}
.lse{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls26{letter-spacing:-0.024960pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.096000pt;}
.lsc{letter-spacing:0.128000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.231040pt;}
.lsa{letter-spacing:0.256000pt;}
.ls29{letter-spacing:0.271360pt;}
.ls22{letter-spacing:0.271467pt;}
.ls27{letter-spacing:0.328533pt;}
.ls20{letter-spacing:0.335467pt;}
.ls17{letter-spacing:0.336533pt;}
.ls8{letter-spacing:0.544000pt;}
.ls2c{letter-spacing:0.545280pt;}
.ls2a{letter-spacing:0.592000pt;}
.ls2b{letter-spacing:0.699307pt;}
.ls10{letter-spacing:0.768000pt;}
.ls14{letter-spacing:2.048000pt;}
.ls1f{letter-spacing:2.688000pt;}
.ls15{letter-spacing:5.248000pt;}
.ls1d{letter-spacing:6.528000pt;}
.ls12{letter-spacing:8.448000pt;}
.ls13{letter-spacing:14.208000pt;}
.lsb{letter-spacing:19.328000pt;}
.ls1b{letter-spacing:19.968000pt;}
.ls16{letter-spacing:23.168000pt;}
.ls1c{letter-spacing:26.368000pt;}
.ls11{letter-spacing:38.528000pt;}
.ls1e{letter-spacing:39.168000pt;}
.ls24{letter-spacing:70.063360pt;}
.ws2{word-spacing:-24.000000pt;}
.wsf{word-spacing:-21.153173pt;}
.ws18{word-spacing:-21.145173pt;}
.ws16{word-spacing:-20.816640pt;}
.ws17{word-spacing:-20.791680pt;}
.ws13{word-spacing:-20.513173pt;}
.ws19{word-spacing:-20.505173pt;}
.ws15{word-spacing:-20.149973pt;}
.wsb{word-spacing:-18.048000pt;}
.ws9{word-spacing:-17.984000pt;}
.ws8{word-spacing:-17.792000pt;}
.wsd{word-spacing:-17.664000pt;}
.ws10{word-spacing:-17.600000pt;}
.wsc{word-spacing:-17.408000pt;}
.ws12{word-spacing:-17.152000pt;}
.wse{word-spacing:-16.768000pt;}
.ws11{word-spacing:-16.512000pt;}
.wsa{word-spacing:-16.368640pt;}
.ws6{word-spacing:-15.311360pt;}
.ws5{word-spacing:-14.767360pt;}
.ws4{word-spacing:-14.672427pt;}
.ws3{word-spacing:-13.344000pt;}
.ws14{word-spacing:-12.967787pt;}
.ws0{word-spacing:-11.920640pt;}
.ws1{word-spacing:-11.759573pt;}
.ws7{word-spacing:0.000000pt;}
._16{margin-left:-5.816107pt;}
._17{margin-left:-4.800000pt;}
._7{margin-left:-3.648000pt;}
._6{margin-left:-2.400000pt;}
._0{margin-left:-0.898560pt;}
._3{width:1.058773pt;}
._4{width:2.205227pt;}
._5{width:3.766827pt;}
._9{width:5.270400pt;}
._1{width:6.174720pt;}
._2{width:7.155200pt;}
._d{width:8.832000pt;}
._19{width:9.832960pt;}
._14{width:10.872320pt;}
._8{width:11.986560pt;}
._10{width:12.954880pt;}
._13{width:14.592000pt;}
._b{width:15.744000pt;}
._22{width:16.746667pt;}
._32{width:17.721600pt;}
._18{width:18.723840pt;}
._c{width:19.648000pt;}
._1d{width:21.440000pt;}
._1c{width:22.784000pt;}
._1b{width:23.872000pt;}
._1a{width:24.768000pt;}
._15{width:26.304000pt;}
._f{width:28.101120pt;}
._e{width:28.992000pt;}
._28{width:30.626560pt;}
._2e{width:31.535360pt;}
._2c{width:33.034880pt;}
._12{width:35.200000pt;}
._11{width:36.160000pt;}
._27{width:37.143040pt;}
._1f{width:38.322560pt;}
._1e{width:39.402667pt;}
._2d{width:41.123200pt;}
._2b{width:43.486080pt;}
._3e{width:47.597653pt;}
._33{width:48.565120pt;}
._24{width:49.711360pt;}
._21{width:50.901333pt;}
._20{width:51.914667pt;}
._23{width:61.480320pt;}
._25{width:63.525120pt;}
._30{width:65.605120pt;}
._26{width:67.569280pt;}
._35{width:69.330133pt;}
._34{width:70.710827pt;}
._3b{width:85.363840pt;}
._3c{width:86.820480pt;}
._29{width:100.331520pt;}
._2a{width:101.362987pt;}
._39{width:104.593280pt;}
._2f{width:107.556480pt;}
._3d{width:108.577280pt;}
._3a{width:191.072640pt;}
._31{width:212.159360pt;}
._40{width:271.124480pt;}
._3f{width:272.452480pt;}
._a{width:750.346667pt;}
._36{width:751.770027pt;}
._37{width:903.853227pt;}
._38{width:905.217920pt;}
.fs7{font-size:5.120000pt;}
.fs9{font-size:34.560000pt;}
.fs1{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.yf3{bottom:2.400000pt;}
.yd8{bottom:2.560000pt;}
.yd6{bottom:8.960000pt;}
.yd7{bottom:15.520000pt;}
.yf2{bottom:28.480000pt;}
.yf1{bottom:41.600000pt;}
.y8{bottom:52.352000pt;}
.yf0{bottom:54.560000pt;}
.yef{bottom:67.680000pt;}
.yee{bottom:80.640000pt;}
.yed{bottom:93.600000pt;}
.yec{bottom:106.720000pt;}
.y31{bottom:116.192000pt;}
.yfc{bottom:116.800000pt;}
.yeb{bottom:119.680000pt;}
.yfd{bottom:122.112000pt;}
.yae{bottom:124.992000pt;}
.yfb{bottom:129.800000pt;}
.y30{bottom:131.552000pt;}
.y7b{bottom:132.672000pt;}
.yea{bottom:132.840000pt;}
.y112{bottom:133.152000pt;}
.y2f{bottom:135.546667pt;}
.yd9{bottom:137.786667pt;}
.y55{bottom:141.146667pt;}
.yfa{bottom:142.920000pt;}
.yad{bottom:143.386667pt;}
.ye9{bottom:145.800000pt;}
.y16f{bottom:146.586667pt;}
.y2e{bottom:147.066667pt;}
.y14e{bottom:149.466667pt;}
.y111{bottom:149.946667pt;}
.y7a{bottom:151.066667pt;}
.yc2{bottom:151.546667pt;}
.yf9{bottom:155.880000pt;}
.ye8{bottom:158.920000pt;}
.y54{bottom:159.546667pt;}
.yac{bottom:161.786667pt;}
.y16e{bottom:161.946667pt;}
.y14d{bottom:164.826667pt;}
.y110{bottom:166.906667pt;}
.yf8{bottom:169.000000pt;}
.y79{bottom:169.466667pt;}
.ye7{bottom:171.880000pt;}
.y12e{bottom:174.266667pt;}
.y16d{bottom:177.306667pt;}
.y53{bottom:177.946667pt;}
.yab{bottom:180.186667pt;}
.yf7{bottom:181.960000pt;}
.y10f{bottom:183.706667pt;}
.ye6{bottom:185.000000pt;}
.yc1{bottom:185.946667pt;}
.y78{bottom:187.866667pt;}
.yf6{bottom:195.080000pt;}
.y14c{bottom:195.546667pt;}
.y52{bottom:196.346667pt;}
.ye5{bottom:197.960000pt;}
.yaa{bottom:198.586667pt;}
.y10e{bottom:200.506667pt;}
.yc0{bottom:204.346667pt;}
.y77{bottom:206.266667pt;}
.y12d{bottom:207.066667pt;}
.yf5{bottom:208.040000pt;}
.y16c{bottom:208.506667pt;}
.ye4{bottom:211.080000pt;}
.y51{bottom:214.746667pt;}
.y10d{bottom:217.466667pt;}
.yf4{bottom:221.000000pt;}
.ybf{bottom:222.746667pt;}
.y16b{bottom:223.866667pt;}
.y12c{bottom:224.026667pt;}
.ye3{bottom:224.040000pt;}
.y14b{bottom:226.746667pt;}
.ya9{bottom:232.986667pt;}
.y97{bottom:233.146667pt;}
.y10c{bottom:234.266667pt;}
.ye2{bottom:237.000000pt;}
.y2d{bottom:238.906667pt;}
.y16a{bottom:239.226667pt;}
.y76{bottom:240.506667pt;}
.ybe{bottom:241.146667pt;}
.y14a{bottom:242.106667pt;}
.y50{bottom:248.986667pt;}
.ye1{bottom:250.120000pt;}
.y10b{bottom:251.226667pt;}
.ya8{bottom:251.386667pt;}
.y96{bottom:251.546667pt;}
.y2c{bottom:257.146667pt;}
.y75{bottom:257.306667pt;}
.y149{bottom:257.466667pt;}
.y12b{bottom:258.266667pt;}
.ybd{bottom:259.586667pt;}
.ye0{bottom:263.080000pt;}
.y4f{bottom:265.826667pt;}
.y10a{bottom:269.026667pt;}
.ya7{bottom:269.826667pt;}
.y169{bottom:270.786667pt;}
.y148{bottom:272.866667pt;}
.y2b{bottom:273.826667pt;}
.y74{bottom:274.146667pt;}
.ydf{bottom:276.200000pt;}
.y4e{bottom:282.786667pt;}
.y95{bottom:285.986667pt;}
.y168{bottom:287.746667pt;}
.ya6{bottom:288.226667pt;}
.yde{bottom:289.160000pt;}
.y2a{bottom:289.186667pt;}
.y109{bottom:290.466667pt;}
.y73{bottom:291.106667pt;}
.ybc{bottom:294.626667pt;}
.y12a{bottom:297.346667pt;}
.y4d{bottom:299.586667pt;}
.ydd{bottom:302.280000pt;}
.y29{bottom:304.386667pt;}
.y167{bottom:304.546667pt;}
.ya5{bottom:306.626667pt;}
.y72{bottom:307.906667pt;}
.y108{bottom:311.906667pt;}
.ydc{bottom:315.240000pt;}
.y28{bottom:319.426667pt;}
.y166{bottom:321.506667pt;}
.y94{bottom:322.786667pt;}
.ya4{bottom:325.026667pt;}
.ydb{bottom:328.360000pt;}
.ybb{bottom:331.426667pt;}
.y129{bottom:331.746667pt;}
.y4c{bottom:332.706667pt;}
.y27{bottom:333.346667pt;}
.y147{bottom:334.786667pt;}
.y71{bottom:340.866667pt;}
.yda{bottom:341.320000pt;}
.ya3{bottom:343.426667pt;}
.y26{bottom:347.106667pt;}
.y107{bottom:348.706667pt;}
.yba{bottom:349.826667pt;}
.y146{bottom:350.146667pt;}
.y4b{bottom:351.106667pt;}
.y165{bottom:354.146667pt;}
.y93{bottom:357.186667pt;}
.y70{bottom:357.666667pt;}
.y25{bottom:360.866667pt;}
.y145{bottom:365.506667pt;}
.y106{bottom:367.106667pt;}
.yb9{bottom:368.226667pt;}
.y4a{bottom:369.506667pt;}
.y128{bottom:370.786667pt;}
.y6f{bottom:374.466667pt;}
.y24{bottom:374.626667pt;}
.y92{bottom:375.586667pt;}
.ya2{bottom:377.826667pt;}
.y164{bottom:384.706667pt;}
.y105{bottom:385.506667pt;}
.yb8{bottom:386.626667pt;}
.y127{bottom:387.586667pt;}
.y49{bottom:387.906667pt;}
.y23{bottom:388.546667pt;}
.y6e{bottom:391.426667pt;}
.ya1{bottom:396.226667pt;}
.y144{bottom:396.866667pt;}
.y22{bottom:402.306667pt;}
.y104{bottom:403.906667pt;}
.y126{bottom:404.546667pt;}
.yb7{bottom:405.026667pt;}
.y48{bottom:406.306667pt;}
.y6d{bottom:408.226667pt;}
.y91{bottom:409.986667pt;}
.y143{bottom:412.226667pt;}
.ya0{bottom:414.626667pt;}
.y21{bottom:416.066667pt;}
.y125{bottom:421.346667pt;}
.y103{bottom:422.306667pt;}
.y47{bottom:424.706667pt;}
.y6c{bottom:425.186667pt;}
.y142{bottom:427.426667pt;}
.y90{bottom:428.386667pt;}
.y20{bottom:429.826667pt;}
.y163{bottom:431.426667pt;}
.y9f{bottom:433.026667pt;}
.yb6{bottom:440.066667pt;}
.y102{bottom:440.706667pt;}
.y46{bottom:443.106667pt;}
.y1f{bottom:443.746667pt;}
.y8f{bottom:446.786667pt;}
.y9e{bottom:451.426667pt;}
.y124{bottom:454.306667pt;}
.y1e{bottom:457.506667pt;}
.y6b{bottom:457.986667pt;}
.y141{bottom:458.786667pt;}
.y101{bottom:459.106667pt;}
.y45{bottom:461.506667pt;}
.y162{bottom:462.146667pt;}
.y8e{bottom:465.186667pt;}
.y9d{bottom:469.826667pt;}
.y123{bottom:471.106667pt;}
.y1d{bottom:471.266667pt;}
.y140{bottom:474.146667pt;}
.y6a{bottom:474.786667pt;}
.yb5{bottom:476.866667pt;}
.y100{bottom:477.506667pt;}
.y8d{bottom:483.586667pt;}
.y1c{bottom:485.026667pt;}
.y122{bottom:487.906667pt;}
.y13f{bottom:489.533333pt;}
.yd5{bottom:490.333333pt;}
.y69{bottom:491.773333pt;}
.y161{bottom:493.373333pt;}
.yb4{bottom:495.293333pt;}
.y44{bottom:495.933333pt;}
.y1b{bottom:498.973333pt;}
.y9c{bottom:499.613333pt;}
.y121{bottom:504.893333pt;}
.y68{bottom:508.573333pt;}
.y160{bottom:508.733333pt;}
.y1a{bottom:512.733333pt;}
.yb3{bottom:513.693333pt;}
.y43{bottom:514.333333pt;}
.y8c{bottom:518.013333pt;}
.y13e{bottom:520.253333pt;}
.yd4{bottom:520.413333pt;}
.y120{bottom:521.693333pt;}
.y67{bottom:525.533333pt;}
.y19{bottom:526.493333pt;}
.yb2{bottom:532.093333pt;}
.y42{bottom:532.733333pt;}
.y8b{bottom:536.413333pt;}
.y11f{bottom:538.653333pt;}
.yd3{bottom:538.813333pt;}
.y15f{bottom:540.093333pt;}
.y18{bottom:540.253333pt;}
.y66{bottom:542.333333pt;}
.yff{bottom:548.733333pt;}
.yb1{bottom:550.493333pt;}
.y41{bottom:551.133333pt;}
.y13d{bottom:551.453333pt;}
.y17{bottom:554.173333pt;}
.y8a{bottom:554.813333pt;}
.y15e{bottom:555.453333pt;}
.y65{bottom:559.133333pt;}
.y13c{bottom:566.813333pt;}
.yfe{bottom:567.133333pt;}
.y16{bottom:567.933333pt;}
.y11e{bottom:569.213333pt;}
.y40{bottom:569.533333pt;}
.y15d{bottom:570.813333pt;}
.yd2{bottom:573.053333pt;}
.y89{bottom:573.213333pt;}
.y64{bottom:576.093333pt;}
.y13b{bottom:582.173333pt;}
.y15{bottom:582.493333pt;}
.yb0{bottom:585.533333pt;}
.yd1{bottom:589.853333pt;}
.y88{bottom:591.613333pt;}
.y63{bottom:592.893333pt;}
.y13a{bottom:597.533333pt;}
.y14{bottom:600.893333pt;}
.y15c{bottom:602.013333pt;}
.y3f{bottom:603.933333pt;}
.yd0{bottom:606.813333pt;}
.y11d{bottom:608.253333pt;}
.y87{bottom:610.013333pt;}
.y15b{bottom:617.373333pt;}
.y13{bottom:619.293333pt;}
.y62{bottom:621.373333pt;}
.y3e{bottom:622.333333pt;}
.yaf{bottom:623.453333pt;}
.ycf{bottom:623.613333pt;}
.y11c{bottom:625.053333pt;}
.y86{bottom:628.413333pt;}
.y139{bottom:628.733333pt;}
.y15a{bottom:632.733333pt;}
.y12{bottom:637.693333pt;}
.yce{bottom:640.413333pt;}
.y3d{bottom:640.733333pt;}
.y11b{bottom:642.013333pt;}
.y138{bottom:644.093333pt;}
.y9b{bottom:646.813333pt;}
.y61{bottom:655.613333pt;}
.y11{bottom:656.093333pt;}
.y11a{bottom:658.813333pt;}
.y3c{bottom:659.133333pt;}
.y85{bottom:662.813333pt;}
.y159{bottom:664.253333pt;}
.y10{bottom:674.493333pt;}
.ycd{bottom:674.813333pt;}
.y137{bottom:675.453333pt;}
.y119{bottom:675.773333pt;}
.y3b{bottom:677.533333pt;}
.y84{bottom:681.213333pt;}
.y136{bottom:690.813333pt;}
.yf{bottom:692.893333pt;}
.y60{bottom:694.813333pt;}
.ycc{bottom:698.173333pt;}
.y83{bottom:699.613333pt;}
.y135{bottom:706.173333pt;}
.y118{bottom:708.573333pt;}
.y5f{bottom:711.613333pt;}
.y3a{bottom:711.933333pt;}
.y158{bottom:713.853333pt;}
.ycb{bottom:716.573333pt;}
.y82{bottom:718.013333pt;}
.y117{bottom:725.573333pt;}
.ye{bottom:728.453333pt;}
.y5e{bottom:728.613333pt;}
.y157{bottom:729.253333pt;}
.y39{bottom:730.373333pt;}
.yca{bottom:735.013333pt;}
.y81{bottom:736.453333pt;}
.y134{bottom:737.573333pt;}
.y116{bottom:742.373333pt;}
.y156{bottom:744.613333pt;}
.y5d{bottom:745.413333pt;}
.y38{bottom:748.773333pt;}
.yd{bottom:752.933333pt;}
.yc9{bottom:753.413333pt;}
.y80{bottom:754.853333pt;}
.y115{bottom:759.173333pt;}
.y155{bottom:759.813333pt;}
.y5c{bottom:762.373333pt;}
.y37{bottom:767.173333pt;}
.y133{bottom:768.453333pt;}
.yc8{bottom:771.813333pt;}
.y7f{bottom:773.253333pt;}
.y114{bottom:776.133333pt;}
.yc{bottom:777.573333pt;}
.y5b{bottom:779.173333pt;}
.y132{bottom:785.093333pt;}
.y36{bottom:785.573333pt;}
.yc7{bottom:790.213333pt;}
.y154{bottom:791.173333pt;}
.y9a{bottom:791.653333pt;}
.y113{bottom:792.933333pt;}
.y5a{bottom:795.973333pt;}
.y35{bottom:803.973333pt;}
.y153{bottom:806.533333pt;}
.y7e{bottom:807.653333pt;}
.yc6{bottom:808.293333pt;}
.y99{bottom:810.053333pt;}
.y59{bottom:812.933333pt;}
.y131{bottom:816.293333pt;}
.yb{bottom:818.693333pt;}
.y152{bottom:821.893333pt;}
.y34{bottom:822.373333pt;}
.yc5{bottom:825.413333pt;}
.y7d{bottom:826.053333pt;}
.y98{bottom:828.453333pt;}
.y58{bottom:829.733333pt;}
.y130{bottom:831.653333pt;}
.y33{bottom:840.773333pt;}
.yc4{bottom:843.813333pt;}
.y7c{bottom:844.453333pt;}
.ya{bottom:846.373333pt;}
.y12f{bottom:847.013333pt;}
.y151{bottom:853.093333pt;}
.y57{bottom:862.853333pt;}
.y150{bottom:868.453333pt;}
.y9{bottom:873.893333pt;}
.y32{bottom:876.293333pt;}
.yc3{bottom:878.853333pt;}
.y56{bottom:881.253333pt;}
.y14f{bottom:883.813333pt;}
.y7{bottom:915.813333pt;}
.y6{bottom:928.133333pt;}
.y5{bottom:940.453333pt;}
.y4{bottom:952.640000pt;}
.y3{bottom:964.960000pt;}
.y2{bottom:977.280000pt;}
.y1{bottom:991.360000pt;}
.ha{height:4.590000pt;}
.h11{height:26.080000pt;}
.hf{height:30.982500pt;}
.h3{height:38.441250pt;}
.h2{height:38.797187pt;}
.h14{height:40.736250pt;}
.h12{height:41.113437pt;}
.hc{height:43.031250pt;}
.hb{height:43.429688pt;}
.hd{height:47.621250pt;}
.h16{height:48.062188pt;}
.h15{height:52.641250pt;}
.h4{height:52.785000pt;}
.he{height:53.273750pt;}
.h1{height:56.269687pt;}
.h8{height:57.375000pt;}
.h9{height:57.906250pt;}
.h6{height:66.140625pt;}
.h5{height:66.656250pt;}
.h10{height:67.750312pt;}
.h7{height:77.015312pt;}
.h13{height:351.906667pt;}
.h0{height:1056.000000pt;}
.w3{width:195.546667pt;}
.w4{width:195.586667pt;}
.w2{width:815.999976pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x14{left:12.640000pt;}
.x11{left:16.800000pt;}
.xf{left:38.234667pt;}
.x12{left:69.760000pt;}
.x1{left:113.471988pt;}
.xd{left:118.271988pt;}
.x6{left:137.146655pt;}
.x3{left:138.266655pt;}
.xe{left:141.946655pt;}
.x16{left:151.226655pt;}
.x7{left:189.946655pt;}
.x4{left:202.746655pt;}
.x9{left:221.946655pt;}
.xa{left:269.346655pt;}
.x5{left:305.986655pt;}
.x10{left:310.306667pt;}
.x8{left:329.186655pt;}
.x2{left:380.706655pt;}
.xc{left:387.133321pt;}
.x13{left:506.493333pt;}
.xb{left:546.053309pt;}
}




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