
    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_b5f62f0cdac5823430d7d32f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_8a6da78dc42aa8bc6f33c072.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_d7709fc0ea313eb71f4fe2b6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_30ab5f108a1e1f76f27f8387.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c2a05e81762d746b15d2c268.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.112305;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_1632e3562d2b37d1598f5b34.woff2')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_af4cb74d46946c2b395f1d94.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls5{letter-spacing:-0.774000px;}
.lse{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.334200px;}
.lsa{letter-spacing:-0.206400px;}
.ls3{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.053280px;}
.ls11{letter-spacing:-0.051840px;}
.ls15{letter-spacing:-0.027360px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.ls12{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.220800px;}
.ls9{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.720000px;}
.ls6{letter-spacing:3.600000px;}
.ls10{letter-spacing:5.760000px;}
.ls8{letter-spacing:39.881280px;}
.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;}
}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:-17.856000px;}
.wsc{word-spacing:-16.560000px;}
.wsd{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199800px;}
.ws6{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.440800px;}
.wse{word-spacing:-14.220000px;}
.ws11{word-spacing:-14.192640px;}
.wsf{word-spacing:-13.860000px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:-10.440000px;}
.ws4{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._13{margin-left:-5.147280px;}
._12{margin-left:-3.777840px;}
._4{margin-left:-2.768400px;}
._0{margin-left:-1.324800px;}
._1{width:1.156800px;}
._3{width:3.000480px;}
._2{width:4.173360px;}
._d{width:5.482800px;}
._c{width:6.588000px;}
._e{width:7.693440px;}
._f{width:8.746080px;}
._14{width:9.869760px;}
._15{width:10.892640px;}
._7{width:11.988000px;}
._16{width:13.305600px;}
._b{width:14.611200px;}
._6{width:15.958800px;}
._5{width:17.226000px;}
._a{width:18.288000px;}
._9{width:19.872000px;}
._18{width:20.915760px;}
._11{width:22.710480px;}
._17{width:23.742960px;}
._19{width:24.980880px;}
._10{width:26.406000px;}
._1a{width:36.806400px;}
._8{width:40.122000px;}
._1b{width:1126.010400px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:18.000000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs9{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y38{bottom:3.240000px;}
.yd3{bottom:3.420000px;}
.yd8{bottom:12.420000px;}
.yd1{bottom:12.600000px;}
.ye0{bottom:12.645000px;}
.y14{bottom:14.400000px;}
.y1b{bottom:21.060000px;}
.ye3{bottom:21.420000px;}
.yd2{bottom:21.600000px;}
.ydd{bottom:21.645000px;}
.y37{bottom:29.160000px;}
.yd4{bottom:30.600000px;}
.ydf{bottom:30.645000px;}
.y1a{bottom:38.340000px;}
.yd9{bottom:39.600000px;}
.yd5{bottom:39.780000px;}
.ydc{bottom:39.825000px;}
.y36{bottom:44.640000px;}
.yd7{bottom:48.600000px;}
.yde{bottom:48.825000px;}
.y19{bottom:55.620000px;}
.yda{bottom:57.780000px;}
.ye1{bottom:57.825000px;}
.y35{bottom:60.120000px;}
.y18{bottom:72.900000px;}
.y34{bottom:75.780000px;}
.y17{bottom:90.180000px;}
.y33{bottom:91.260000px;}
.y1c{bottom:95.430000px;}
.y16{bottom:105.150000px;}
.y32{bottom:106.740000px;}
.y31{bottom:122.220000px;}
.y18a{bottom:132.660000px;}
.y7e{bottom:133.560000px;}
.yf3{bottom:134.280000px;}
.y1c0{bottom:136.260000px;}
.y30{bottom:137.880000px;}
.yaf{bottom:140.220000px;}
.y15c{bottom:142.200000px;}
.y124{bottom:145.080000px;}
.y189{bottom:149.040000px;}
.y42{bottom:150.660000px;}
.yf2{bottom:152.460000px;}
.y7d{bottom:152.640000px;}
.y2f{bottom:153.360000px;}
.ycf{bottom:154.260000px;}
.yae{bottom:158.220000px;}
.y15b{bottom:160.230000px;}
.y144{bottom:162.750000px;}
.y123{bottom:163.110000px;}
.y188{bottom:165.450000px;}
.y47{bottom:166.530000px;}
.y41{bottom:167.985000px;}
.y2e{bottom:168.885000px;}
.yf1{bottom:170.490000px;}
.y1bf{bottom:173.550000px;}
.y7c{bottom:175.890000px;}
.yad{bottom:176.430000px;}
.y15a{bottom:178.410000px;}
.y143{bottom:180.930000px;}
.y122{bottom:181.290000px;}
.y187{bottom:181.830000px;}
.y2d{bottom:184.365000px;}
.y40{bottom:185.085000px;}
.y46{bottom:185.430000px;}
.yf0{bottom:188.670000px;}
.y1be{bottom:189.930000px;}
.yce{bottom:193.350000px;}
.yac{bottom:194.610000px;}
.y7b{bottom:195.150000px;}
.y142{bottom:198.930000px;}
.y121{bottom:199.470000px;}
.y2c{bottom:199.845000px;}
.y3f{bottom:202.365000px;}
.y186{bottom:202.710000px;}
.y1bd{bottom:210.810000px;}
.ycd{bottom:211.530000px;}
.yab{bottom:212.610000px;}
.y45{bottom:213.150000px;}
.y2b{bottom:215.505000px;}
.yef{bottom:215.850000px;}
.y141{bottom:217.110000px;}
.y120{bottom:217.470000px;}
.y7a{bottom:218.370000px;}
.y185{bottom:219.090000px;}
.y3e{bottom:219.645000px;}
.y1bc{bottom:227.190000px;}
.ycc{bottom:229.710000px;}
.yaa{bottom:230.790000px;}
.y2a{bottom:230.985000px;}
.y44{bottom:231.870000px;}
.y140{bottom:235.290000px;}
.y184{bottom:235.470000px;}
.y3d{bottom:236.925000px;}
.y79{bottom:237.630000px;}
.y1bb{bottom:243.570000px;}
.y11f{bottom:244.650000px;}
.y29{bottom:246.465000px;}
.ycb{bottom:247.710000px;}
.y1d{bottom:248.250000px;}
.ya9{bottom:248.790000px;}
.y183{bottom:251.850000px;}
.y13f{bottom:253.290000px;}
.y3c{bottom:254.205000px;}
.yee{bottom:255.630000px;}
.y159{bottom:257.970000px;}
.y78{bottom:260.850000px;}
.y28{bottom:261.945000px;}
.y11e{bottom:262.830000px;}
.y1ba{bottom:264.450000px;}
.yca{bottom:265.890000px;}
.ya8{bottom:266.970000px;}
.yed{bottom:270.390000px;}
.y13e{bottom:271.470000px;}
.y3b{bottom:271.485000px;}
.y182{bottom:272.730000px;}
.y27{bottom:277.605000px;}
.y158{bottom:278.670000px;}
.y77{bottom:280.110000px;}
.y11d{bottom:280.830000px;}
.yc9{bottom:283.890000px;}
.ya7{bottom:285.150000px;}
.y3a{bottom:288.585000px;}
.y181{bottom:289.110000px;}
.y13d{bottom:289.650000px;}
.y26{bottom:293.085000px;}
.y43{bottom:293.805000px;}
.y1b9{bottom:297.210000px;}
.y76{bottom:299.010000px;}
.y157{bottom:299.370000px;}
.yc8{bottom:302.070000px;}
.ya6{bottom:303.150000px;}
.y39{bottom:303.525000px;}
.y180{bottom:305.490000px;}
.y13c{bottom:307.650000px;}
.y25{bottom:308.565000px;}
.y11c{bottom:317.010000px;}
.y75{bottom:317.910000px;}
.y1b8{bottom:318.090000px;}
.y156{bottom:320.070000px;}
.yc7{bottom:320.250000px;}
.ya5{bottom:321.330000px;}
.y24{bottom:324.045000px;}
.y13b{bottom:325.830000px;}
.y17f{bottom:326.370000px;}
.y1b7{bottom:334.470000px;}
.y11b{bottom:335.190000px;}
.y74{bottom:336.990000px;}
.ya4{bottom:339.330000px;}
.y23{bottom:339.705000px;}
.y155{bottom:340.770000px;}
.y17e{bottom:342.750000px;}
.y13a{bottom:343.830000px;}
.yc6{bottom:347.430000px;}
.y1b6{bottom:350.850000px;}
.y11a{bottom:353.370000px;}
.y22{bottom:355.185000px;}
.y73{bottom:355.890000px;}
.ya3{bottom:357.510000px;}
.y17d{bottom:359.130000px;}
.y139{bottom:362.010000px;}
.y154{bottom:367.230000px;}
.y21{bottom:370.665000px;}
.y119{bottom:371.370000px;}
.y72{bottom:374.970000px;}
.yc5{bottom:375.150000px;}
.y17c{bottom:375.510000px;}
.ya2{bottom:375.690000px;}
.y138{bottom:380.190000px;}
.y20{bottom:386.145000px;}
.y1b5{bottom:388.110000px;}
.yc4{bottom:393.330000px;}
.ya1{bottom:393.690000px;}
.y71{bottom:393.870000px;}
.y17b{bottom:396.390000px;}
.y137{bottom:398.190000px;}
.y118{bottom:398.550000px;}
.y1f{bottom:401.805000px;}
.y1b4{bottom:404.490000px;}
.yc3{bottom:411.555000px;}
.y17a{bottom:412.815000px;}
.y1e{bottom:415.335000px;}
.y70{bottom:417.135000px;}
.y1b3{bottom:420.915000px;}
.y153{bottom:421.635000px;}
.ya0{bottom:422.355000px;}
.y136{bottom:425.415000px;}
.y117{bottom:426.495000px;}
.y179{bottom:429.375000px;}
.yc2{bottom:429.735000px;}
.y6f{bottom:436.395000px;}
.y1b2{bottom:441.795000px;}
.y116{bottom:444.675000px;}
.y178{bottom:445.755000px;}
.yc1{bottom:447.735000px;}
.y9f{bottom:449.355000px;}
.y135{bottom:453.315000px;}
.y6e{bottom:455.295000px;}
.y1b1{bottom:458.175000px;}
.y115{bottom:462.675000px;}
.y177{bottom:466.635000px;}
.y9e{bottom:467.535000px;}
.y134{bottom:471.495000px;}
.y6d{bottom:474.375000px;}
.y1b0{bottom:474.555000px;}
.yc0{bottom:474.915000px;}
.y152{bottom:475.995000px;}
.y114{bottom:480.855000px;}
.y176{bottom:483.015000px;}
.y9d{bottom:485.715000px;}
.y133{bottom:489.495000px;}
.y6c{bottom:493.275000px;}
.y1af{bottom:495.435000px;}
.y113{bottom:499.035000px;}
.y175{bottom:499.395000px;}
.ybf{bottom:502.995000px;}
.y9c{bottom:503.715000px;}
.y132{bottom:507.675000px;}
.y1ae{bottom:511.815000px;}
.y6b{bottom:512.175000px;}
.y112{bottom:517.035000px;}
.y174{bottom:520.275000px;}
.y9b{bottom:521.895000px;}
.y131{bottom:525.855000px;}
.y1ad{bottom:528.195000px;}
.ybe{bottom:530.715000px;}
.y6a{bottom:531.255000px;}
.y111{bottom:535.215000px;}
.y173{bottom:536.655000px;}
.y9a{bottom:540.075000px;}
.y130{bottom:543.855000px;}
.ybd{bottom:548.895000px;}
.y1ac{bottom:549.075000px;}
.y69{bottom:550.155000px;}
.y172{bottom:553.035000px;}
.y110{bottom:553.395000px;}
.y99{bottom:558.075000px;}
.y15{bottom:558.435000px;}
.y12f{bottom:562.035000px;}
.y1ab{bottom:565.455000px;}
.y151{bottom:566.535000px;}
.ybc{bottom:567.075000px;}
.y68{bottom:569.235000px;}
.y10f{bottom:571.395000px;}
.y171{bottom:573.915000px;}
.y98{bottom:576.255000px;}
.y1aa{bottom:581.835000px;}
.ybb{bottom:585.075000px;}
.y67{bottom:588.135000px;}
.y12e{bottom:589.035000px;}
.y10e{bottom:589.575000px;}
.y170{bottom:590.295000px;}
.y97{bottom:594.255000px;}
.y1a9{bottom:602.715000px;}
.yec{bottom:603.075000px;}
.yba{bottom:603.255000px;}
.y150{bottom:603.615000px;}
.y12d{bottom:607.215000px;}
.y10d{bottom:607.575000px;}
.y66{bottom:611.355000px;}
.y96{bottom:612.435000px;}
.y16f{bottom:616.035000px;}
.y1a8{bottom:619.095000px;}
.yeb{bottom:621.255000px;}
.yb9{bottom:621.435000px;}
.y12c{bottom:625.395000px;}
.y65{bottom:630.615000px;}
.y10c{bottom:634.755000px;}
.y1a7{bottom:635.475000px;}
.yb8{bottom:639.435000px;}
.y95{bottom:639.615000px;}
.y12b{bottom:643.395000px;}
.y14f{bottom:643.935000px;}
.y16e{bottom:644.115000px;}
.y64{bottom:649.515000px;}
.y10b{bottom:652.935000px;}
.y1a6{bottom:656.565000px;}
.yea{bottom:657.465000px;}
.yb7{bottom:657.645000px;}
.y12a{bottom:661.605000px;}
.y94{bottom:667.545000px;}
.y63{bottom:668.625000px;}
.y13{bottom:670.065000px;}
.y10a{bottom:670.965000px;}
.y16d{bottom:671.865000px;}
.y1a5{bottom:672.945000px;}
.ye9{bottom:675.645000px;}
.yb6{bottom:675.825000px;}
.y129{bottom:679.785000px;}
.y14e{bottom:683.025000px;}
.y93{bottom:685.725000px;}
.y62{bottom:687.525000px;}
.y109{bottom:689.145000px;}
.y1a4{bottom:689.325000px;}
.ye8{bottom:693.645000px;}
.yb5{bottom:693.825000px;}
.y128{bottom:697.785000px;}
.y16c{bottom:699.045000px;}
.y14d{bottom:701.205000px;}
.y92{bottom:703.725000px;}
.y61{bottom:706.425000px;}
.y108{bottom:707.145000px;}
.y1a3{bottom:710.205000px;}
.ye7{bottom:711.825000px;}
.y1d1{bottom:714.165000px;}
.y127{bottom:715.965000px;}
.y16b{bottom:717.225000px;}
.y12{bottom:718.845000px;}
.y14c{bottom:719.205000px;}
.y91{bottom:721.905000px;}
.yb4{bottom:722.625000px;}
.y107{bottom:725.325000px;}
.y60{bottom:725.505000px;}
.y1a2{bottom:726.585000px;}
.ye6{bottom:730.005000px;}
.y14b{bottom:737.385000px;}
.y1d0{bottom:738.465000px;}
.y90{bottom:740.085000px;}
.y11{bottom:740.625000px;}
.y1a1{bottom:742.965000px;}
.y126{bottom:743.145000px;}
.y106{bottom:743.505000px;}
.y16a{bottom:744.225000px;}
.y5f{bottom:744.405000px;}
.ye5{bottom:748.185000px;}
.y1cf{bottom:754.845000px;}
.y14a{bottom:755.565000px;}
.y10{bottom:757.905000px;}
.y8f{bottom:758.085000px;}
.y105{bottom:761.505000px;}
.yb3{bottom:762.405000px;}
.y5e{bottom:763.485000px;}
.y1a0{bottom:763.845000px;}
.y1ce{bottom:771.225000px;}
.y169{bottom:771.405000px;}
.y149{bottom:773.565000px;}
.y8e{bottom:776.265000px;}
.yb2{bottom:777.165000px;}
.y104{bottom:779.685000px;}
.y19f{bottom:780.225000px;}
.yf{bottom:780.405000px;}
.y125{bottom:782.925000px;}
.ye4{bottom:784.545000px;}
.y5d{bottom:786.705000px;}
.y168{bottom:789.585000px;}
.y148{bottom:791.745000px;}
.y1cd{bottom:792.105000px;}
.y8d{bottom:794.265000px;}
.y19e{bottom:796.605000px;}
.ye{bottom:797.685000px;}
.y103{bottom:797.865000px;}
.y5c{bottom:805.965000px;}
.y167{bottom:807.585000px;}
.y1cc{bottom:808.485000px;}
.y8c{bottom:812.445000px;}
.y19d{bottom:812.985000px;}
.yd{bottom:814.965000px;}
.y147{bottom:818.925000px;}
.y5b{bottom:824.865000px;}
.y102{bottom:825.045000px;}
.y166{bottom:825.765000px;}
.y1cb{bottom:829.365000px;}
.y8b{bottom:830.625000px;}
.yc{bottom:832.245000px;}
.y19c{bottom:833.865000px;}
.ye2{bottom:838.905000px;}
.y5a{bottom:843.765000px;}
.y165{bottom:843.945000px;}
.y1ca{bottom:845.745000px;}
.y146{bottom:846.825000px;}
.y8a{bottom:848.625000px;}
.yb{bottom:849.345000px;}
.y19b{bottom:850.245000px;}
.y101{bottom:852.765000px;}
.ya{bottom:861.405000px;}
.y164{bottom:861.945000px;}
.y1c9{bottom:862.125000px;}
.y59{bottom:862.845000px;}
.y19a{bottom:866.625000px;}
.y145{bottom:870.585000px;}
.y100{bottom:870.945000px;}
.y89{bottom:875.625000px;}
.y163{bottom:880.125000px;}
.y58{bottom:881.745000px;}
.y1c8{bottom:883.005000px;}
.y9{bottom:884.085000px;}
.y199{bottom:887.505000px;}
.yff{bottom:889.125000px;}
.ydb{bottom:893.085000px;}
.y88{bottom:893.805000px;}
.y162{bottom:898.125000px;}
.y1c7{bottom:899.385000px;}
.y57{bottom:900.870000px;}
.y198{bottom:903.930000px;}
.yfe{bottom:907.170000px;}
.y87{bottom:912.030000px;}
.y8{bottom:914.730000px;}
.y1c6{bottom:915.810000px;}
.y161{bottom:916.350000px;}
.y56{bottom:919.770000px;}
.y197{bottom:920.310000px;}
.yfd{bottom:925.350000px;}
.y86{bottom:930.210000px;}
.y1c5{bottom:936.690000px;}
.y55{bottom:938.670000px;}
.y196{bottom:941.190000px;}
.y160{bottom:943.350000px;}
.yfc{bottom:943.530000px;}
.y85{bottom:948.210000px;}
.y7{bottom:950.370000px;}
.y1c4{bottom:953.070000px;}
.y195{bottom:957.570000px;}
.y54{bottom:957.750000px;}
.yfb{bottom:961.530000px;}
.yd6{bottom:965.670000px;}
.y84{bottom:966.390000px;}
.y6{bottom:971.070000px;}
.y194{bottom:973.950000px;}
.yfa{bottom:979.710000px;}
.y53{bottom:980.970000px;}
.y83{bottom:984.570000px;}
.y1c3{bottom:990.330000px;}
.y193{bottom:994.830000px;}
.yf9{bottom:997.890000px;}
.y52{bottom:1000.230000px;}
.y82{bottom:1002.570000px;}
.y5{bottom:1006.710000px;}
.y192{bottom:1011.210000px;}
.y15f{bottom:1015.890000px;}
.y51{bottom:1019.130000px;}
.y81{bottom:1020.750000px;}
.yf8{bottom:1024.890000px;}
.y191{bottom:1027.590000px;}
.y15e{bottom:1034.070000px;}
.y50{bottom:1038.030000px;}
.y4{bottom:1038.570000px;}
.yf7{bottom:1043.070000px;}
.y1c2{bottom:1043.970000px;}
.y80{bottom:1047.930000px;}
.y190{bottom:1048.470000px;}
.y15d{bottom:1052.070000px;}
.y4f{bottom:1057.110000px;}
.yf6{bottom:1061.070000px;}
.y18f{bottom:1064.850000px;}
.y7f{bottom:1075.830000px;}
.y4e{bottom:1076.010000px;}
.yf5{bottom:1079.250000px;}
.y18e{bottom:1081.230000px;}
.yd0{bottom:1093.110000px;}
.y4d{bottom:1095.090000px;}
.yf4{bottom:1097.430000px;}
.y1c1{bottom:1097.610000px;}
.y18d{bottom:1102.110000px;}
.y4c{bottom:1113.990000px;}
.yb1{bottom:1115.430000px;}
.y18c{bottom:1118.490000px;}
.y4b{bottom:1132.890000px;}
.yb0{bottom:1133.610000px;}
.y18b{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y4a{bottom:1169.460000px;}
.y49{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y48{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.ha{height:17.657227px;}
.h1b{height:36.180000px;}
.h16{height:36.360000px;}
.h5{height:38.158594px;}
.h7{height:40.320000px;}
.hf{height:44.507812px;}
.h1f{height:50.992031px;}
.he{height:52.971680px;}
.h1a{height:54.180000px;}
.h17{height:54.360000px;}
.h1c{height:54.396000px;}
.h1e{height:55.824609px;}
.h1d{height:56.801250px;}
.hc{height:58.621992px;}
.h6{height:58.651172px;}
.hb{height:60.226875px;}
.h14{height:62.184375px;}
.h15{height:63.855000px;}
.h2{height:65.010937px;}
.h8{height:66.757500px;}
.h13{height:68.084282px;}
.h11{height:70.664062px;}
.h18{height:72.360000px;}
.h4{height:72.562500px;}
.h19{height:72.576000px;}
.h3{height:96.508125px;}
.h9{height:109.296000px;}
.h12{height:153.341016px;}
.h10{height:307.830000px;}
.hd{height:419.475000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.w8{width:116.676000px;}
.w6{width:117.000000px;}
.wb{width:128.376000px;}
.wa{width:138.240000px;}
.wd{width:187.410000px;}
.wc{width:189.030000px;}
.w7{width:202.530000px;}
.w9{width:231.690000px;}
.w3{width:237.990000px;}
.w5{width:406.875000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x5{left:108.035987px;}
.x13{left:112.716000px;}
.x6{left:122.796000px;}
.x1c{left:125.136000px;}
.x2{left:131.255987px;}
.xc{left:134.315987px;}
.x1a{left:141.515987px;}
.x18{left:146.375987px;}
.xe{left:162.029987px;}
.x1b{left:170.489987px;}
.xa{left:185.250000px;}
.x14{left:229.710000px;}
.x12{left:247.889987px;}
.x10{left:250.229987px;}
.x1d{left:263.370000px;}
.x3{left:314.354987px;}
.x8{left:360.795000px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x1e{left:391.755000px;}
.x15{left:432.255000px;}
.x11{left:446.654987px;}
.x16{left:548.925000px;}
.x19{left:578.264987px;}
.x1f{left:580.785000px;}
.xf{left:711.149987px;}
.x17{left:727.889987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls5{letter-spacing:-0.688000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.297067pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls11{letter-spacing:-0.046080pt;}
.ls15{letter-spacing:-0.024320pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.ls12{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.196267pt;}
.ls9{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls6{letter-spacing:3.200000pt;}
.ls10{letter-spacing:5.120000pt;}
.ls8{letter-spacing:35.450027pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:-15.872000pt;}
.wsc{word-spacing:-14.720000pt;}
.wsd{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.510933pt;}
.ws6{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.836267pt;}
.wse{word-spacing:-12.640000pt;}
.ws11{word-spacing:-12.615680pt;}
.wsf{word-spacing:-12.320000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:-9.280000pt;}
.ws4{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._13{margin-left:-4.575360pt;}
._12{margin-left:-3.358080pt;}
._4{margin-left:-2.460800pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.028267pt;}
._3{width:2.667093pt;}
._2{width:3.709653pt;}
._d{width:4.873600pt;}
._c{width:5.856000pt;}
._e{width:6.838613pt;}
._f{width:7.774293pt;}
._14{width:8.773120pt;}
._15{width:9.682347pt;}
._7{width:10.656000pt;}
._16{width:11.827200pt;}
._b{width:12.987733pt;}
._6{width:14.185600pt;}
._5{width:15.312000pt;}
._a{width:16.256000pt;}
._9{width:17.664000pt;}
._18{width:18.591787pt;}
._11{width:20.187093pt;}
._17{width:21.104853pt;}
._19{width:22.205227pt;}
._10{width:23.472000pt;}
._1a{width:32.716800pt;}
._8{width:35.664000pt;}
._1b{width:1000.898133pt;}
.fs7{font-size:16.000000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs9{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:2.880000pt;}
.yd3{bottom:3.040000pt;}
.yd8{bottom:11.040000pt;}
.yd1{bottom:11.200000pt;}
.ye0{bottom:11.240000pt;}
.y14{bottom:12.800000pt;}
.y1b{bottom:18.720000pt;}
.ye3{bottom:19.040000pt;}
.yd2{bottom:19.200000pt;}
.ydd{bottom:19.240000pt;}
.y37{bottom:25.920000pt;}
.yd4{bottom:27.200000pt;}
.ydf{bottom:27.240000pt;}
.y1a{bottom:34.080000pt;}
.yd9{bottom:35.200000pt;}
.yd5{bottom:35.360000pt;}
.ydc{bottom:35.400000pt;}
.y36{bottom:39.680000pt;}
.yd7{bottom:43.200000pt;}
.yde{bottom:43.400000pt;}
.y19{bottom:49.440000pt;}
.yda{bottom:51.360000pt;}
.ye1{bottom:51.400000pt;}
.y35{bottom:53.440000pt;}
.y18{bottom:64.800000pt;}
.y34{bottom:67.360000pt;}
.y17{bottom:80.160000pt;}
.y33{bottom:81.120000pt;}
.y1c{bottom:84.826667pt;}
.y16{bottom:93.466667pt;}
.y32{bottom:94.880000pt;}
.y31{bottom:108.640000pt;}
.y18a{bottom:117.920000pt;}
.y7e{bottom:118.720000pt;}
.yf3{bottom:119.360000pt;}
.y1c0{bottom:121.120000pt;}
.y30{bottom:122.560000pt;}
.yaf{bottom:124.640000pt;}
.y15c{bottom:126.400000pt;}
.y124{bottom:128.960000pt;}
.y189{bottom:132.480000pt;}
.y42{bottom:133.920000pt;}
.yf2{bottom:135.520000pt;}
.y7d{bottom:135.680000pt;}
.y2f{bottom:136.320000pt;}
.ycf{bottom:137.120000pt;}
.yae{bottom:140.640000pt;}
.y15b{bottom:142.426667pt;}
.y144{bottom:144.666667pt;}
.y123{bottom:144.986667pt;}
.y188{bottom:147.066667pt;}
.y47{bottom:148.026667pt;}
.y41{bottom:149.320000pt;}
.y2e{bottom:150.120000pt;}
.yf1{bottom:151.546667pt;}
.y1bf{bottom:154.266667pt;}
.y7c{bottom:156.346667pt;}
.yad{bottom:156.826667pt;}
.y15a{bottom:158.586667pt;}
.y143{bottom:160.826667pt;}
.y122{bottom:161.146667pt;}
.y187{bottom:161.626667pt;}
.y2d{bottom:163.880000pt;}
.y40{bottom:164.520000pt;}
.y46{bottom:164.826667pt;}
.yf0{bottom:167.706667pt;}
.y1be{bottom:168.826667pt;}
.yce{bottom:171.866667pt;}
.yac{bottom:172.986667pt;}
.y7b{bottom:173.466667pt;}
.y142{bottom:176.826667pt;}
.y121{bottom:177.306667pt;}
.y2c{bottom:177.640000pt;}
.y3f{bottom:179.880000pt;}
.y186{bottom:180.186667pt;}
.y1bd{bottom:187.386667pt;}
.ycd{bottom:188.026667pt;}
.yab{bottom:188.986667pt;}
.y45{bottom:189.466667pt;}
.y2b{bottom:191.560000pt;}
.yef{bottom:191.866667pt;}
.y141{bottom:192.986667pt;}
.y120{bottom:193.306667pt;}
.y7a{bottom:194.106667pt;}
.y185{bottom:194.746667pt;}
.y3e{bottom:195.240000pt;}
.y1bc{bottom:201.946667pt;}
.ycc{bottom:204.186667pt;}
.yaa{bottom:205.146667pt;}
.y2a{bottom:205.320000pt;}
.y44{bottom:206.106667pt;}
.y140{bottom:209.146667pt;}
.y184{bottom:209.306667pt;}
.y3d{bottom:210.600000pt;}
.y79{bottom:211.226667pt;}
.y1bb{bottom:216.506667pt;}
.y11f{bottom:217.466667pt;}
.y29{bottom:219.080000pt;}
.ycb{bottom:220.186667pt;}
.y1d{bottom:220.666667pt;}
.ya9{bottom:221.146667pt;}
.y183{bottom:223.866667pt;}
.y13f{bottom:225.146667pt;}
.y3c{bottom:225.960000pt;}
.yee{bottom:227.226667pt;}
.y159{bottom:229.306667pt;}
.y78{bottom:231.866667pt;}
.y28{bottom:232.840000pt;}
.y11e{bottom:233.626667pt;}
.y1ba{bottom:235.066667pt;}
.yca{bottom:236.346667pt;}
.ya8{bottom:237.306667pt;}
.yed{bottom:240.346667pt;}
.y13e{bottom:241.306667pt;}
.y3b{bottom:241.320000pt;}
.y182{bottom:242.426667pt;}
.y27{bottom:246.760000pt;}
.y158{bottom:247.706667pt;}
.y77{bottom:248.986667pt;}
.y11d{bottom:249.626667pt;}
.yc9{bottom:252.346667pt;}
.ya7{bottom:253.466667pt;}
.y3a{bottom:256.520000pt;}
.y181{bottom:256.986667pt;}
.y13d{bottom:257.466667pt;}
.y26{bottom:260.520000pt;}
.y43{bottom:261.160000pt;}
.y1b9{bottom:264.186667pt;}
.y76{bottom:265.786667pt;}
.y157{bottom:266.106667pt;}
.yc8{bottom:268.506667pt;}
.ya6{bottom:269.466667pt;}
.y39{bottom:269.800000pt;}
.y180{bottom:271.546667pt;}
.y13c{bottom:273.466667pt;}
.y25{bottom:274.280000pt;}
.y11c{bottom:281.786667pt;}
.y75{bottom:282.586667pt;}
.y1b8{bottom:282.746667pt;}
.y156{bottom:284.506667pt;}
.yc7{bottom:284.666667pt;}
.ya5{bottom:285.626667pt;}
.y24{bottom:288.040000pt;}
.y13b{bottom:289.626667pt;}
.y17f{bottom:290.106667pt;}
.y1b7{bottom:297.306667pt;}
.y11b{bottom:297.946667pt;}
.y74{bottom:299.546667pt;}
.ya4{bottom:301.626667pt;}
.y23{bottom:301.960000pt;}
.y155{bottom:302.906667pt;}
.y17e{bottom:304.666667pt;}
.y13a{bottom:305.626667pt;}
.yc6{bottom:308.826667pt;}
.y1b6{bottom:311.866667pt;}
.y11a{bottom:314.106667pt;}
.y22{bottom:315.720000pt;}
.y73{bottom:316.346667pt;}
.ya3{bottom:317.786667pt;}
.y17d{bottom:319.226667pt;}
.y139{bottom:321.786667pt;}
.y154{bottom:326.426667pt;}
.y21{bottom:329.480000pt;}
.y119{bottom:330.106667pt;}
.y72{bottom:333.306667pt;}
.yc5{bottom:333.466667pt;}
.y17c{bottom:333.786667pt;}
.ya2{bottom:333.946667pt;}
.y138{bottom:337.946667pt;}
.y20{bottom:343.240000pt;}
.y1b5{bottom:344.986667pt;}
.yc4{bottom:349.626667pt;}
.ya1{bottom:349.946667pt;}
.y71{bottom:350.106667pt;}
.y17b{bottom:352.346667pt;}
.y137{bottom:353.946667pt;}
.y118{bottom:354.266667pt;}
.y1f{bottom:357.160000pt;}
.y1b4{bottom:359.546667pt;}
.yc3{bottom:365.826667pt;}
.y17a{bottom:366.946667pt;}
.y1e{bottom:369.186667pt;}
.y70{bottom:370.786667pt;}
.y1b3{bottom:374.146667pt;}
.y153{bottom:374.786667pt;}
.ya0{bottom:375.426667pt;}
.y136{bottom:378.146667pt;}
.y117{bottom:379.106667pt;}
.y179{bottom:381.666667pt;}
.yc2{bottom:381.986667pt;}
.y6f{bottom:387.906667pt;}
.y1b2{bottom:392.706667pt;}
.y116{bottom:395.266667pt;}
.y178{bottom:396.226667pt;}
.yc1{bottom:397.986667pt;}
.y9f{bottom:399.426667pt;}
.y135{bottom:402.946667pt;}
.y6e{bottom:404.706667pt;}
.y1b1{bottom:407.266667pt;}
.y115{bottom:411.266667pt;}
.y177{bottom:414.786667pt;}
.y9e{bottom:415.586667pt;}
.y134{bottom:419.106667pt;}
.y6d{bottom:421.666667pt;}
.y1b0{bottom:421.826667pt;}
.yc0{bottom:422.146667pt;}
.y152{bottom:423.106667pt;}
.y114{bottom:427.426667pt;}
.y176{bottom:429.346667pt;}
.y9d{bottom:431.746667pt;}
.y133{bottom:435.106667pt;}
.y6c{bottom:438.466667pt;}
.y1af{bottom:440.386667pt;}
.y113{bottom:443.586667pt;}
.y175{bottom:443.906667pt;}
.ybf{bottom:447.106667pt;}
.y9c{bottom:447.746667pt;}
.y132{bottom:451.266667pt;}
.y1ae{bottom:454.946667pt;}
.y6b{bottom:455.266667pt;}
.y112{bottom:459.586667pt;}
.y174{bottom:462.466667pt;}
.y9b{bottom:463.906667pt;}
.y131{bottom:467.426667pt;}
.y1ad{bottom:469.506667pt;}
.ybe{bottom:471.746667pt;}
.y6a{bottom:472.226667pt;}
.y111{bottom:475.746667pt;}
.y173{bottom:477.026667pt;}
.y9a{bottom:480.066667pt;}
.y130{bottom:483.426667pt;}
.ybd{bottom:487.906667pt;}
.y1ac{bottom:488.066667pt;}
.y69{bottom:489.026667pt;}
.y172{bottom:491.586667pt;}
.y110{bottom:491.906667pt;}
.y99{bottom:496.066667pt;}
.y15{bottom:496.386667pt;}
.y12f{bottom:499.586667pt;}
.y1ab{bottom:502.626667pt;}
.y151{bottom:503.586667pt;}
.ybc{bottom:504.066667pt;}
.y68{bottom:505.986667pt;}
.y10f{bottom:507.906667pt;}
.y171{bottom:510.146667pt;}
.y98{bottom:512.226667pt;}
.y1aa{bottom:517.186667pt;}
.ybb{bottom:520.066667pt;}
.y67{bottom:522.786667pt;}
.y12e{bottom:523.586667pt;}
.y10e{bottom:524.066667pt;}
.y170{bottom:524.706667pt;}
.y97{bottom:528.226667pt;}
.y1a9{bottom:535.746667pt;}
.yec{bottom:536.066667pt;}
.yba{bottom:536.226667pt;}
.y150{bottom:536.546667pt;}
.y12d{bottom:539.746667pt;}
.y10d{bottom:540.066667pt;}
.y66{bottom:543.426667pt;}
.y96{bottom:544.386667pt;}
.y16f{bottom:547.586667pt;}
.y1a8{bottom:550.306667pt;}
.yeb{bottom:552.226667pt;}
.yb9{bottom:552.386667pt;}
.y12c{bottom:555.906667pt;}
.y65{bottom:560.546667pt;}
.y10c{bottom:564.226667pt;}
.y1a7{bottom:564.866667pt;}
.yb8{bottom:568.386667pt;}
.y95{bottom:568.546667pt;}
.y12b{bottom:571.906667pt;}
.y14f{bottom:572.386667pt;}
.y16e{bottom:572.546667pt;}
.y64{bottom:577.346667pt;}
.y10b{bottom:580.386667pt;}
.y1a6{bottom:583.613333pt;}
.yea{bottom:584.413333pt;}
.yb7{bottom:584.573333pt;}
.y12a{bottom:588.093333pt;}
.y94{bottom:593.373333pt;}
.y63{bottom:594.333333pt;}
.y13{bottom:595.613333pt;}
.y10a{bottom:596.413333pt;}
.y16d{bottom:597.213333pt;}
.y1a5{bottom:598.173333pt;}
.ye9{bottom:600.573333pt;}
.yb6{bottom:600.733333pt;}
.y129{bottom:604.253333pt;}
.y14e{bottom:607.133333pt;}
.y93{bottom:609.533333pt;}
.y62{bottom:611.133333pt;}
.y109{bottom:612.573333pt;}
.y1a4{bottom:612.733333pt;}
.ye8{bottom:616.573333pt;}
.yb5{bottom:616.733333pt;}
.y128{bottom:620.253333pt;}
.y16c{bottom:621.373333pt;}
.y14d{bottom:623.293333pt;}
.y92{bottom:625.533333pt;}
.y61{bottom:627.933333pt;}
.y108{bottom:628.573333pt;}
.y1a3{bottom:631.293333pt;}
.ye7{bottom:632.733333pt;}
.y1d1{bottom:634.813333pt;}
.y127{bottom:636.413333pt;}
.y16b{bottom:637.533333pt;}
.y12{bottom:638.973333pt;}
.y14c{bottom:639.293333pt;}
.y91{bottom:641.693333pt;}
.yb4{bottom:642.333333pt;}
.y107{bottom:644.733333pt;}
.y60{bottom:644.893333pt;}
.y1a2{bottom:645.853333pt;}
.ye6{bottom:648.893333pt;}
.y14b{bottom:655.453333pt;}
.y1d0{bottom:656.413333pt;}
.y90{bottom:657.853333pt;}
.y11{bottom:658.333333pt;}
.y1a1{bottom:660.413333pt;}
.y126{bottom:660.573333pt;}
.y106{bottom:660.893333pt;}
.y16a{bottom:661.533333pt;}
.y5f{bottom:661.693333pt;}
.ye5{bottom:665.053333pt;}
.y1cf{bottom:670.973333pt;}
.y14a{bottom:671.613333pt;}
.y10{bottom:673.693333pt;}
.y8f{bottom:673.853333pt;}
.y105{bottom:676.893333pt;}
.yb3{bottom:677.693333pt;}
.y5e{bottom:678.653333pt;}
.y1a0{bottom:678.973333pt;}
.y1ce{bottom:685.533333pt;}
.y169{bottom:685.693333pt;}
.y149{bottom:687.613333pt;}
.y8e{bottom:690.013333pt;}
.yb2{bottom:690.813333pt;}
.y104{bottom:693.053333pt;}
.y19f{bottom:693.533333pt;}
.yf{bottom:693.693333pt;}
.y125{bottom:695.933333pt;}
.ye4{bottom:697.373333pt;}
.y5d{bottom:699.293333pt;}
.y168{bottom:701.853333pt;}
.y148{bottom:703.773333pt;}
.y1cd{bottom:704.093333pt;}
.y8d{bottom:706.013333pt;}
.y19e{bottom:708.093333pt;}
.ye{bottom:709.053333pt;}
.y103{bottom:709.213333pt;}
.y5c{bottom:716.413333pt;}
.y167{bottom:717.853333pt;}
.y1cc{bottom:718.653333pt;}
.y8c{bottom:722.173333pt;}
.y19d{bottom:722.653333pt;}
.yd{bottom:724.413333pt;}
.y147{bottom:727.933333pt;}
.y5b{bottom:733.213333pt;}
.y102{bottom:733.373333pt;}
.y166{bottom:734.013333pt;}
.y1cb{bottom:737.213333pt;}
.y8b{bottom:738.333333pt;}
.yc{bottom:739.773333pt;}
.y19c{bottom:741.213333pt;}
.ye2{bottom:745.693333pt;}
.y5a{bottom:750.013333pt;}
.y165{bottom:750.173333pt;}
.y1ca{bottom:751.773333pt;}
.y146{bottom:752.733333pt;}
.y8a{bottom:754.333333pt;}
.yb{bottom:754.973333pt;}
.y19b{bottom:755.773333pt;}
.y101{bottom:758.013333pt;}
.ya{bottom:765.693333pt;}
.y164{bottom:766.173333pt;}
.y1c9{bottom:766.333333pt;}
.y59{bottom:766.973333pt;}
.y19a{bottom:770.333333pt;}
.y145{bottom:773.853333pt;}
.y100{bottom:774.173333pt;}
.y89{bottom:778.333333pt;}
.y163{bottom:782.333333pt;}
.y58{bottom:783.773333pt;}
.y1c8{bottom:784.893333pt;}
.y9{bottom:785.853333pt;}
.y199{bottom:788.893333pt;}
.yff{bottom:790.333333pt;}
.ydb{bottom:793.853333pt;}
.y88{bottom:794.493333pt;}
.y162{bottom:798.333333pt;}
.y1c7{bottom:799.453333pt;}
.y57{bottom:800.773333pt;}
.y198{bottom:803.493333pt;}
.yfe{bottom:806.373333pt;}
.y87{bottom:810.693333pt;}
.y8{bottom:813.093333pt;}
.y1c6{bottom:814.053333pt;}
.y161{bottom:814.533333pt;}
.y56{bottom:817.573333pt;}
.y197{bottom:818.053333pt;}
.yfd{bottom:822.533333pt;}
.y86{bottom:826.853333pt;}
.y1c5{bottom:832.613333pt;}
.y55{bottom:834.373333pt;}
.y196{bottom:836.613333pt;}
.y160{bottom:838.533333pt;}
.yfc{bottom:838.693333pt;}
.y85{bottom:842.853333pt;}
.y7{bottom:844.773333pt;}
.y1c4{bottom:847.173333pt;}
.y195{bottom:851.173333pt;}
.y54{bottom:851.333333pt;}
.yfb{bottom:854.693333pt;}
.yd6{bottom:858.373333pt;}
.y84{bottom:859.013333pt;}
.y6{bottom:863.173333pt;}
.y194{bottom:865.733333pt;}
.yfa{bottom:870.853333pt;}
.y53{bottom:871.973333pt;}
.y83{bottom:875.173333pt;}
.y1c3{bottom:880.293333pt;}
.y193{bottom:884.293333pt;}
.yf9{bottom:887.013333pt;}
.y52{bottom:889.093333pt;}
.y82{bottom:891.173333pt;}
.y5{bottom:894.853333pt;}
.y192{bottom:898.853333pt;}
.y15f{bottom:903.013333pt;}
.y51{bottom:905.893333pt;}
.y81{bottom:907.333333pt;}
.yf8{bottom:911.013333pt;}
.y191{bottom:913.413333pt;}
.y15e{bottom:919.173333pt;}
.y50{bottom:922.693333pt;}
.y4{bottom:923.173333pt;}
.yf7{bottom:927.173333pt;}
.y1c2{bottom:927.973333pt;}
.y80{bottom:931.493333pt;}
.y190{bottom:931.973333pt;}
.y15d{bottom:935.173333pt;}
.y4f{bottom:939.653333pt;}
.yf6{bottom:943.173333pt;}
.y18f{bottom:946.533333pt;}
.y7f{bottom:956.293333pt;}
.y4e{bottom:956.453333pt;}
.yf5{bottom:959.333333pt;}
.y18e{bottom:961.093333pt;}
.yd0{bottom:971.653333pt;}
.y4d{bottom:973.413333pt;}
.yf4{bottom:975.493333pt;}
.y1c1{bottom:975.653333pt;}
.y18d{bottom:979.653333pt;}
.y4c{bottom:990.213333pt;}
.yb1{bottom:991.493333pt;}
.y18c{bottom:994.213333pt;}
.y4b{bottom:1007.013333pt;}
.yb0{bottom:1007.653333pt;}
.y18b{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y4a{bottom:1039.520000pt;}
.y49{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y48{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.ha{height:15.695312pt;}
.h1b{height:32.160000pt;}
.h16{height:32.320000pt;}
.h5{height:33.918750pt;}
.h7{height:35.840000pt;}
.hf{height:39.562500pt;}
.h1f{height:45.326250pt;}
.he{height:47.085938pt;}
.h1a{height:48.160000pt;}
.h17{height:48.320000pt;}
.h1c{height:48.352000pt;}
.h1e{height:49.621875pt;}
.h1d{height:50.490000pt;}
.hc{height:52.108438pt;}
.h6{height:52.134375pt;}
.hb{height:53.535000pt;}
.h14{height:55.275000pt;}
.h15{height:56.760000pt;}
.h2{height:57.787500pt;}
.h8{height:59.340000pt;}
.h13{height:60.519362pt;}
.h11{height:62.812500pt;}
.h18{height:64.320000pt;}
.h4{height:64.500000pt;}
.h19{height:64.512000pt;}
.h3{height:85.785000pt;}
.h9{height:97.152000pt;}
.h12{height:136.303125pt;}
.h10{height:273.626667pt;}
.hd{height:372.866667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.w8{width:103.712000pt;}
.w6{width:104.000000pt;}
.wb{width:114.112000pt;}
.wa{width:122.880000pt;}
.wd{width:166.586667pt;}
.wc{width:168.026667pt;}
.w7{width:180.026667pt;}
.w9{width:205.946667pt;}
.w3{width:211.546667pt;}
.w5{width:361.666667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x5{left:96.031988pt;}
.x13{left:100.192000pt;}
.x6{left:109.152000pt;}
.x1c{left:111.232000pt;}
.x2{left:116.671988pt;}
.xc{left:119.391988pt;}
.x1a{left:125.791988pt;}
.x18{left:130.111988pt;}
.xe{left:144.026655pt;}
.x1b{left:151.546655pt;}
.xa{left:164.666667pt;}
.x14{left:204.186667pt;}
.x12{left:220.346655pt;}
.x10{left:222.426655pt;}
.x1d{left:234.106667pt;}
.x3{left:279.426655pt;}
.x8{left:320.706667pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x1e{left:348.226667pt;}
.x15{left:384.226667pt;}
.x11{left:397.026655pt;}
.x16{left:487.933333pt;}
.x19{left:514.013322pt;}
.x1f{left:516.253333pt;}
.xf{left:632.133322pt;}
.x17{left:647.013322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
}




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