
    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_6317ac18f055f37b16952aff.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_717907decee028f01154ce9f.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_4d69efdde624ff34bca2bad5.woff')format("woff");}.ff4{font-family:ff4;line-height:1.057129;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_da6e99be7c0b72f57e1c2c49.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_91319495b20d3bb712a05df0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_66c70f4bb8bca21f77075423.woff')format("woff");}.ff7{font-family:ff7;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;}
.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;}
.lsa{letter-spacing:-0.186600px;}
.ls11{letter-spacing:-0.160800px;}
.ls15{letter-spacing:-0.153600px;}
.ls8{letter-spacing:-0.135000px;}
.lsb{letter-spacing:-0.121200px;}
.ls7{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.084600px;}
.ls5{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.015480px;}
.lsf{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls4{letter-spacing:0.049200px;}
.lsd{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls14{letter-spacing:0.116400px;}
.ls13{letter-spacing:0.143400px;}
.ls6{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.173400px;}
.lsc{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls12{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;}
}
.wsc{word-spacing:-60.120000px;}
.ws5{word-spacing:-14.493600px;}
.wsb{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.425600px;}
.ws9{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.369800px;}
.wse{word-spacing:-13.342800px;}
.ws6{word-spacing:-13.275600px;}
.wsa{word-spacing:-13.275360px;}
.ws11{word-spacing:-13.241880px;}
.ws3{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.072800px;}
.wsd{word-spacing:-13.065600px;}
.ws2{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._13{margin-left:-3.999960px;}
._4{margin-left:-2.946000px;}
._0{margin-left:-1.110000px;}
._3{width:1.213956px;}
._f{width:2.273244px;}
._6{width:3.426600px;}
._e{width:4.704361px;}
._d{width:5.952000px;}
._10{width:7.034040px;}
._9{width:8.116200px;}
._a{width:9.415560px;}
._11{width:11.126039px;}
._5{width:12.172200px;}
._b{width:14.428800px;}
._c{width:15.738359px;}
._8{width:17.074200px;}
._7{width:18.396600px;}
._12{width:19.419602px;}
._14{width:20.500078px;}
._24{width:22.424760px;}
._25{width:23.506920px;}
._30{width:26.693280px;}
._2f{width:28.617120px;}
._20{width:29.939760px;}
._2e{width:32.765400px;}
._2{width:35.861256px;}
._1{width:37.533828px;}
._2c{width:40.821480px;}
._38{width:42.564960px;}
._39{width:43.827480px;}
._19{width:54.468720px;}
._3a{width:60.931440px;}
._32{width:62.164080px;}
._28{width:66.050640px;}
._1c{width:70.340400px;}
._27{width:72.805320px;}
._1e{width:73.887480px;}
._2d{width:76.713120px;}
._23{width:80.620920px;}
._21{width:86.572800px;}
._3b{width:87.715080px;}
._3c{width:89.037720px;}
._2b{width:91.622880px;}
._17{width:106.472520px;}
._1d{width:114.047640px;}
._1a{width:116.031600px;}
._1f{width:134.488440px;}
._35{width:156.672720px;}
._15{width:158.175720px;}
._2a{width:162.167760px;}
._1b{width:171.462240px;}
._37{width:173.746800px;}
._16{width:181.177920px;}
._36{width:189.197640px;}
._18{width:197.073360px;}
._33{width:211.261680px;}
._29{width:213.846840px;}
._26{width:222.323760px;}
._31{width:256.652280px;}
._22{width:269.578080px;}
._34{width:293.866560px;}
.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;}
.y7d{bottom:7.830000px;}
.y80{bottom:7.920000px;}
.y7c{bottom:25.470000px;}
.y86{bottom:25.500000px;}
.y7f{bottom:43.020000px;}
.y85{bottom:43.050000px;}
.y82{bottom:43.110000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y5b{bottom:112.530000px;}
.ye1{bottom:122.340000px;}
.y5a{bottom:130.170000px;}
.y27{bottom:132.690000px;}
.yb0{bottom:136.560000px;}
.ye0{bottom:139.980000px;}
.y59{bottom:147.720000px;}
.y26{bottom:150.330000px;}
.yaf{bottom:154.110000px;}
.ydf{bottom:157.530000px;}
.y7e{bottom:160.410000px;}
.y58{bottom:165.270000px;}
.y25{bottom:167.880000px;}
.yae{bottom:171.750000px;}
.yde{bottom:175.170000px;}
.y100{bottom:178.680000px;}
.y57{bottom:182.910000px;}
.y24{bottom:185.430000px;}
.yad{bottom:189.300000px;}
.ydd{bottom:192.720000px;}
.y149{bottom:196.770000px;}
.y56{bottom:200.460000px;}
.y126{bottom:204.240000px;}
.yac{bottom:206.850000px;}
.ydc{bottom:210.270000px;}
.y23{bottom:212.070000px;}
.yff{bottom:214.320000px;}
.y148{bottom:214.410000px;}
.y55{bottom:218.100000px;}
.y125{bottom:221.790000px;}
.y7b{bottom:222.960000px;}
.yab{bottom:224.490000px;}
.ydb{bottom:227.910000px;}
.y147{bottom:231.960000px;}
.y54{bottom:235.650000px;}
.y124{bottom:239.430000px;}
.yaa{bottom:242.040000px;}
.yda{bottom:245.460000px;}
.y22{bottom:247.620000px;}
.y146{bottom:249.600000px;}
.yfe{bottom:249.870000px;}
.y123{bottom:256.980000px;}
.ya9{bottom:259.680000px;}
.y53{bottom:262.200000px;}
.yd9{bottom:263.100000px;}
.y21{bottom:265.260000px;}
.y145{bottom:267.150000px;}
.y122{bottom:274.530000px;}
.ya8{bottom:277.230000px;}
.yd8{bottom:280.650000px;}
.y20{bottom:282.810000px;}
.y144{bottom:284.700000px;}
.yfd{bottom:285.510000px;}
.y7a{bottom:289.200000px;}
.y121{bottom:292.170000px;}
.ya7{bottom:294.780000px;}
.y52{bottom:297.840000px;}
.yd7{bottom:298.200000px;}
.y1f{bottom:300.360000px;}
.y143{bottom:302.340000px;}
.yfc{bottom:303.060000px;}
.y120{bottom:309.720000px;}
.ya6{bottom:312.420000px;}
.y51{bottom:315.390000px;}
.y1e{bottom:318.000000px;}
.y142{bottom:319.890000px;}
.yfb{bottom:320.610000px;}
.y79{bottom:324.840000px;}
.y11f{bottom:327.360000px;}
.ya5{bottom:329.970000px;}
.y50{bottom:332.940000px;}
.y1d{bottom:335.550000px;}
.y141{bottom:337.440000px;}
.yfa{bottom:338.250000px;}
.y78{bottom:342.390000px;}
.y11e{bottom:344.910000px;}
.ya4{bottom:347.610000px;}
.y4f{bottom:350.580000px;}
.y1c{bottom:353.190000px;}
.y140{bottom:355.080000px;}
.yf9{bottom:355.800000px;}
.y77{bottom:359.940000px;}
.yd6{bottom:360.750000px;}
.y11d{bottom:362.460000px;}
.y4e{bottom:368.130000px;}
.y1b{bottom:370.740000px;}
.y13f{bottom:372.630000px;}
.yf8{bottom:373.440000px;}
.ya3{bottom:374.160000px;}
.y76{bottom:377.580000px;}
.y11c{bottom:380.100000px;}
.y4d{bottom:385.770000px;}
.y13e{bottom:390.270000px;}
.yf7{bottom:390.990000px;}
.y75{bottom:395.130000px;}
.y1a{bottom:397.290000px;}
.y11b{bottom:397.650000px;}
.y4c{bottom:403.320000px;}
.y13d{bottom:407.820000px;}
.yf6{bottom:408.540000px;}
.yd5{bottom:408.990000px;}
.ya2{bottom:410.070000px;}
.y74{bottom:412.770000px;}
.y11a{bottom:415.290000px;}
.y4b{bottom:420.870000px;}
.y13c{bottom:425.370000px;}
.yf5{bottom:426.180000px;}
.yd4{bottom:426.540000px;}
.y73{bottom:430.320000px;}
.y119{bottom:432.840000px;}
.y19{bottom:433.200000px;}
.y4a{bottom:438.510000px;}
.y13b{bottom:443.010000px;}
.yf4{bottom:443.730000px;}
.yd3{bottom:444.180000px;}
.y72{bottom:447.870000px;}
.ya1{bottom:458.310000px;}
.y118{bottom:459.390000px;}
.yf3{bottom:461.370000px;}
.yd2{bottom:461.730000px;}
.y49{bottom:465.060000px;}
.y71{bottom:465.510000px;}
.y13a{bottom:469.950000px;}
.ya0{bottom:475.980000px;}
.yf2{bottom:478.950000px;}
.yd1{bottom:479.400000px;}
.y18{bottom:481.560000px;}
.y70{bottom:483.090000px;}
.y9f{bottom:493.530000px;}
.y117{bottom:495.060000px;}
.yf1{bottom:496.500000px;}
.yd0{bottom:496.950000px;}
.y17{bottom:499.470000px;}
.y48{bottom:500.730000px;}
.y9e{bottom:511.080000px;}
.y116{bottom:512.610000px;}
.yf0{bottom:514.140000px;}
.ycf{bottom:514.500000px;}
.y139{bottom:518.190000px;}
.y47{bottom:518.280000px;}
.y9d{bottom:528.720000px;}
.y115{bottom:530.160000px;}
.yce{bottom:532.140000px;}
.y46{bottom:535.830000px;}
.y16{bottom:536.460000px;}
.yef{bottom:540.690000px;}
.y6f{bottom:544.830000px;}
.y9c{bottom:546.270000px;}
.y114{bottom:547.800000px;}
.ycd{bottom:549.690000px;}
.y138{bottom:553.380000px;}
.y45{bottom:553.470000px;}
.y15{bottom:554.010000px;}
.y9b{bottom:563.910000px;}
.y113{bottom:565.350000px;}
.ycc{bottom:567.330000px;}
.y137{bottom:570.930000px;}
.y44{bottom:571.020000px;}
.y14{bottom:571.650000px;}
.yee{bottom:576.330000px;}
.y6e{bottom:580.470000px;}
.y9a{bottom:581.460000px;}
.y112{bottom:582.990000px;}
.ycb{bottom:584.880000px;}
.y136{bottom:588.570000px;}
.y43{bottom:588.660000px;}
.y13{bottom:589.200000px;}
.yed{bottom:593.880000px;}
.y6d{bottom:598.020000px;}
.y99{bottom:599.010000px;}
.y111{bottom:600.540000px;}
.yca{bottom:602.430000px;}
.y135{bottom:606.120000px;}
.y42{bottom:606.210000px;}
.y12{bottom:606.840000px;}
.yec{bottom:611.430000px;}
.y6c{bottom:615.660000px;}
.y98{bottom:616.650000px;}
.y110{bottom:618.090000px;}
.y41{bottom:623.760000px;}
.y11{bottom:624.390000px;}
.yc9{bottom:629.070000px;}
.y6b{bottom:633.210000px;}
.y97{bottom:634.200000px;}
.y10f{bottom:635.730000px;}
.y134{bottom:641.310000px;}
.y40{bottom:641.400000px;}
.y15f{bottom:641.760000px;}
.y10{bottom:641.940000px;}
.yeb{bottom:646.620000px;}
.y6a{bottom:650.760000px;}
.y96{bottom:651.840000px;}
.y10e{bottom:653.280000px;}
.y133{bottom:658.860000px;}
.y3f{bottom:658.950000px;}
.y15e{bottom:659.400000px;}
.yf{bottom:659.580000px;}
.yea{bottom:664.260000px;}
.yc8{bottom:664.620000px;}
.y69{bottom:668.400000px;}
.y95{bottom:669.390000px;}
.y10d{bottom:670.920000px;}
.y132{bottom:676.500000px;}
.ye{bottom:677.130000px;}
.ye9{bottom:681.810000px;}
.yc7{bottom:682.260000px;}
.y3e{bottom:685.590000px;}
.y68{bottom:685.950000px;}
.y10c{bottom:688.470000px;}
.y131{bottom:694.050000px;}
.yd{bottom:694.770000px;}
.y94{bottom:695.940000px;}
.ye8{bottom:699.360000px;}
.yc6{bottom:699.810000px;}
.y67{bottom:703.590000px;}
.y10b{bottom:706.020000px;}
.y130{bottom:711.690000px;}
.yc{bottom:712.320000px;}
.ye7{bottom:717.000000px;}
.yc5{bottom:717.360000px;}
.y66{bottom:721.140000px;}
.y3d{bottom:721.500000px;}
.y10a{bottom:723.660000px;}
.y12f{bottom:729.240000px;}
.yb{bottom:729.870000px;}
.y15d{bottom:730.140000px;}
.y93{bottom:731.580000px;}
.ye6{bottom:734.550000px;}
.yc4{bottom:735.000000px;}
.y65{bottom:738.690000px;}
.y109{bottom:741.210000px;}
.y12e{bottom:746.790000px;}
.y15c{bottom:747.690000px;}
.y92{bottom:749.130000px;}
.ye5{bottom:752.190000px;}
.yc3{bottom:752.550000px;}
.y64{bottom:756.330000px;}
.ya{bottom:756.870000px;}
.y12d{bottom:764.430000px;}
.y15b{bottom:765.330000px;}
.y91{bottom:766.770000px;}
.y108{bottom:767.850000px;}
.y3c{bottom:769.740000px;}
.yc2{bottom:770.190000px;}
.y63{bottom:773.880000px;}
.y12c{bottom:781.980000px;}
.y90{bottom:784.320000px;}
.y3b{bottom:787.290000px;}
.yc1{bottom:787.740000px;}
.y15a{bottom:791.880000px;}
.y62{bottom:800.520000px;}
.y8f{bottom:801.870000px;}
.y9{bottom:803.580000px;}
.y107{bottom:803.760000px;}
.y3a{bottom:804.930000px;}
.yc0{bottom:805.290000px;}
.y12b{bottom:808.530000px;}
.y159{bottom:809.520000px;}
.ye4{bottom:813.930000px;}
.y8e{bottom:819.510000px;}
.y39{bottom:822.480000px;}
.ybf{bottom:822.930000px;}
.y158{bottom:836.070000px;}
.y61{bottom:836.340000px;}
.y8d{bottom:837.060000px;}
.y8{bottom:839.130000px;}
.y38{bottom:840.030000px;}
.ybe{bottom:840.480000px;}
.y12a{bottom:841.560000px;}
.y106{bottom:849.390000px;}
.ye3{bottom:849.480000px;}
.y157{bottom:853.620000px;}
.y8c{bottom:854.700000px;}
.y37{bottom:857.670000px;}
.ybd{bottom:858.030000px;}
.ye2{bottom:867.030000px;}
.y8b{bottom:872.250000px;}
.y7{bottom:874.950000px;}
.y36{bottom:875.220000px;}
.y156{bottom:880.260000px;}
.y60{bottom:884.670000px;}
.y8a{bottom:889.800000px;}
.y105{bottom:894.300000px;}
.y155{bottom:897.810000px;}
.y35{bottom:901.860000px;}
.y5f{bottom:902.220000px;}
.y129{bottom:904.020000px;}
.y89{bottom:907.440000px;}
.y6{bottom:910.950000px;}
.y154{bottom:915.450000px;}
.y5e{bottom:919.860000px;}
.ybc{bottom:920.220000px;}
.y88{bottom:924.990000px;}
.y153{bottom:933.000000px;}
.y34{bottom:937.410000px;}
.ybb{bottom:937.860000px;}
.y104{bottom:939.210000px;}
.y5{bottom:947.040000px;}
.y87{bottom:951.630000px;}
.y33{bottom:954.960000px;}
.yba{bottom:955.410000px;}
.y152{bottom:959.550000px;}
.y128{bottom:966.570000px;}
.y32{bottom:972.600000px;}
.yb9{bottom:972.960000px;}
.y151{bottom:977.190000px;}
.y103{bottom:984.120000px;}
.y84{bottom:984.570000px;}
.y4{bottom:985.380000px;}
.y31{bottom:990.150000px;}
.yb8{bottom:990.600000px;}
.y150{bottom:994.740000px;}
.y30{bottom:1007.790000px;}
.yb7{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y127{bottom:1011.510000px;}
.y14f{bottom:1021.320000px;}
.y2f{bottom:1025.370000px;}
.yb6{bottom:1025.820000px;}
.y102{bottom:1029.060000px;}
.y14e{bottom:1038.960000px;}
.y2e{bottom:1042.920000px;}
.yb5{bottom:1043.370000px;}
.y83{bottom:1047.060000px;}
.y5d{bottom:1060.560000px;}
.yb4{bottom:1060.920000px;}
.y14d{bottom:1065.510000px;}
.y2d{bottom:1069.560000px;}
.y101{bottom:1073.970000px;}
.yb3{bottom:1078.560000px;}
.y14c{bottom:1083.150000px;}
.y5c{bottom:1087.110000px;}
.y81{bottom:1091.970000px;}
.yb2{bottom:1096.110000px;}
.y14b{bottom:1100.700000px;}
.y2c{bottom:1105.110000px;}
.yb1{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y14a{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.ha{height:44.190000px;}
.he{height:44.220000px;}
.h6{height:50.667539px;}
.h7{height:50.902383px;}
.h5{height:55.779258px;}
.hb{height:61.740000px;}
.hd{height:61.770000px;}
.hf{height:61.793886px;}
.hc{height:61.830000px;}
.h8{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:112.800000px;}
.wc{width:118.020000px;}
.wd{width:131.670000px;}
.w8{width:132.600000px;}
.w5{width:146.700000px;}
.w4{width:161.550000px;}
.w6{width:162.570000px;}
.we{width:166.590000px;}
.w10{width:168.030000px;}
.wf{width:168.420000px;}
.w7{width:169.200000px;}
.wa{width:201.180000px;}
.wb{width:205.110000px;}
.w9{width:214.650000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:3.960000px;}
.x1{left:68.040000px;}
.xf{left:111.239987px;}
.x5{left:182.280000px;}
.xb{left:187.500000px;}
.x2{left:202.799987px;}
.xc{left:319.890000px;}
.x6{left:344.550000px;}
.x9{left:417.450000px;}
.xd{left:487.200000px;}
.x7{left:491.970000px;}
.xa{left:619.350000px;}
.x8{left:655.260000px;}
.xe{left:656.430000px;}
.x3{left:792.059987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsa{letter-spacing:-0.165867pt;}
.ls11{letter-spacing:-0.142933pt;}
.ls15{letter-spacing:-0.136533pt;}
.ls8{letter-spacing:-0.120000pt;}
.lsb{letter-spacing:-0.107733pt;}
.ls7{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075200pt;}
.ls5{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.013760pt;}
.lsf{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls4{letter-spacing:0.043733pt;}
.lsd{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls14{letter-spacing:0.103467pt;}
.ls13{letter-spacing:0.127467pt;}
.ls6{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.154133pt;}
.lsc{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls12{letter-spacing:71.863680pt;}
.wsc{word-spacing:-53.440000pt;}
.ws5{word-spacing:-12.883200pt;}
.wsb{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.933867pt;}
.ws9{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.884267pt;}
.wse{word-spacing:-11.860267pt;}
.ws6{word-spacing:-11.800533pt;}
.wsa{word-spacing:-11.800320pt;}
.ws11{word-spacing:-11.770560pt;}
.ws3{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.620267pt;}
.wsd{word-spacing:-11.613867pt;}
.ws2{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._13{margin-left:-3.555520pt;}
._4{margin-left:-2.618667pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.079072pt;}
._f{width:2.020662pt;}
._6{width:3.045866pt;}
._e{width:4.181654pt;}
._d{width:5.290667pt;}
._10{width:6.252480pt;}
._9{width:7.214400pt;}
._a{width:8.369387pt;}
._11{width:9.889812pt;}
._5{width:10.819734pt;}
._b{width:12.825600pt;}
._c{width:13.989653pt;}
._8{width:15.177067pt;}
._7{width:16.352533pt;}
._12{width:17.261868pt;}
._14{width:18.222292pt;}
._24{width:19.933120pt;}
._25{width:20.895040pt;}
._30{width:23.727360pt;}
._2f{width:25.437440pt;}
._20{width:26.613120pt;}
._2e{width:29.124800pt;}
._2{width:31.876672pt;}
._1{width:33.363403pt;}
._2c{width:36.285760pt;}
._38{width:37.835520pt;}
._39{width:38.957760pt;}
._19{width:48.416640pt;}
._3a{width:54.161280pt;}
._32{width:55.256960pt;}
._28{width:58.711680pt;}
._1c{width:62.524800pt;}
._27{width:64.715840pt;}
._1e{width:65.677760pt;}
._2d{width:68.189440pt;}
._23{width:71.663040pt;}
._21{width:76.953600pt;}
._3b{width:77.968960pt;}
._3c{width:79.144640pt;}
._2b{width:81.442560pt;}
._17{width:94.642240pt;}
._1d{width:101.375680pt;}
._1a{width:103.139200pt;}
._1f{width:119.545280pt;}
._35{width:139.264640pt;}
._15{width:140.600640pt;}
._2a{width:144.149120pt;}
._1b{width:152.410880pt;}
._37{width:154.441600pt;}
._16{width:161.047040pt;}
._36{width:168.175680pt;}
._18{width:175.176320pt;}
._33{width:187.788160pt;}
._29{width:190.086080pt;}
._26{width:197.621120pt;}
._31{width:228.135360pt;}
._22{width:239.624960pt;}
._34{width:261.214720pt;}
.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;}
.y7d{bottom:6.960000pt;}
.y80{bottom:7.040000pt;}
.y7c{bottom:22.640000pt;}
.y86{bottom:22.666667pt;}
.y7f{bottom:38.240000pt;}
.y85{bottom:38.266667pt;}
.y82{bottom:38.320000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y5b{bottom:100.026667pt;}
.ye1{bottom:108.746667pt;}
.y5a{bottom:115.706667pt;}
.y27{bottom:117.946667pt;}
.yb0{bottom:121.386667pt;}
.ye0{bottom:124.426667pt;}
.y59{bottom:131.306667pt;}
.y26{bottom:133.626667pt;}
.yaf{bottom:136.986667pt;}
.ydf{bottom:140.026667pt;}
.y7e{bottom:142.586667pt;}
.y58{bottom:146.906667pt;}
.y25{bottom:149.226667pt;}
.yae{bottom:152.666667pt;}
.yde{bottom:155.706667pt;}
.y100{bottom:158.826667pt;}
.y57{bottom:162.586667pt;}
.y24{bottom:164.826667pt;}
.yad{bottom:168.266667pt;}
.ydd{bottom:171.306667pt;}
.y149{bottom:174.906667pt;}
.y56{bottom:178.186667pt;}
.y126{bottom:181.546667pt;}
.yac{bottom:183.866667pt;}
.ydc{bottom:186.906667pt;}
.y23{bottom:188.506667pt;}
.yff{bottom:190.506667pt;}
.y148{bottom:190.586667pt;}
.y55{bottom:193.866667pt;}
.y125{bottom:197.146667pt;}
.y7b{bottom:198.186667pt;}
.yab{bottom:199.546667pt;}
.ydb{bottom:202.586667pt;}
.y147{bottom:206.186667pt;}
.y54{bottom:209.466667pt;}
.y124{bottom:212.826667pt;}
.yaa{bottom:215.146667pt;}
.yda{bottom:218.186667pt;}
.y22{bottom:220.106667pt;}
.y146{bottom:221.866667pt;}
.yfe{bottom:222.106667pt;}
.y123{bottom:228.426667pt;}
.ya9{bottom:230.826667pt;}
.y53{bottom:233.066667pt;}
.yd9{bottom:233.866667pt;}
.y21{bottom:235.786667pt;}
.y145{bottom:237.466667pt;}
.y122{bottom:244.026667pt;}
.ya8{bottom:246.426667pt;}
.yd8{bottom:249.466667pt;}
.y20{bottom:251.386667pt;}
.y144{bottom:253.066667pt;}
.yfd{bottom:253.786667pt;}
.y7a{bottom:257.066667pt;}
.y121{bottom:259.706667pt;}
.ya7{bottom:262.026667pt;}
.y52{bottom:264.746667pt;}
.yd7{bottom:265.066667pt;}
.y1f{bottom:266.986667pt;}
.y143{bottom:268.746667pt;}
.yfc{bottom:269.386667pt;}
.y120{bottom:275.306667pt;}
.ya6{bottom:277.706667pt;}
.y51{bottom:280.346667pt;}
.y1e{bottom:282.666667pt;}
.y142{bottom:284.346667pt;}
.yfb{bottom:284.986667pt;}
.y79{bottom:288.746667pt;}
.y11f{bottom:290.986667pt;}
.ya5{bottom:293.306667pt;}
.y50{bottom:295.946667pt;}
.y1d{bottom:298.266667pt;}
.y141{bottom:299.946667pt;}
.yfa{bottom:300.666667pt;}
.y78{bottom:304.346667pt;}
.y11e{bottom:306.586667pt;}
.ya4{bottom:308.986667pt;}
.y4f{bottom:311.626667pt;}
.y1c{bottom:313.946667pt;}
.y140{bottom:315.626667pt;}
.yf9{bottom:316.266667pt;}
.y77{bottom:319.946667pt;}
.yd6{bottom:320.666667pt;}
.y11d{bottom:322.186667pt;}
.y4e{bottom:327.226667pt;}
.y1b{bottom:329.546667pt;}
.y13f{bottom:331.226667pt;}
.yf8{bottom:331.946667pt;}
.ya3{bottom:332.586667pt;}
.y76{bottom:335.626667pt;}
.y11c{bottom:337.866667pt;}
.y4d{bottom:342.906667pt;}
.y13e{bottom:346.906667pt;}
.yf7{bottom:347.546667pt;}
.y75{bottom:351.226667pt;}
.y1a{bottom:353.146667pt;}
.y11b{bottom:353.466667pt;}
.y4c{bottom:358.506667pt;}
.y13d{bottom:362.506667pt;}
.yf6{bottom:363.146667pt;}
.yd5{bottom:363.546667pt;}
.ya2{bottom:364.506667pt;}
.y74{bottom:366.906667pt;}
.y11a{bottom:369.146667pt;}
.y4b{bottom:374.106667pt;}
.y13c{bottom:378.106667pt;}
.yf5{bottom:378.826667pt;}
.yd4{bottom:379.146667pt;}
.y73{bottom:382.506667pt;}
.y119{bottom:384.746667pt;}
.y19{bottom:385.066667pt;}
.y4a{bottom:389.786667pt;}
.y13b{bottom:393.786667pt;}
.yf4{bottom:394.426667pt;}
.yd3{bottom:394.826667pt;}
.y72{bottom:398.106667pt;}
.ya1{bottom:407.386667pt;}
.y118{bottom:408.346667pt;}
.yf3{bottom:410.106667pt;}
.yd2{bottom:410.426667pt;}
.y49{bottom:413.386667pt;}
.y71{bottom:413.786667pt;}
.y13a{bottom:417.733333pt;}
.ya0{bottom:423.093333pt;}
.yf2{bottom:425.733333pt;}
.yd1{bottom:426.133333pt;}
.y18{bottom:428.053333pt;}
.y70{bottom:429.413333pt;}
.y9f{bottom:438.693333pt;}
.y117{bottom:440.053333pt;}
.yf1{bottom:441.333333pt;}
.yd0{bottom:441.733333pt;}
.y17{bottom:443.973333pt;}
.y48{bottom:445.093333pt;}
.y9e{bottom:454.293333pt;}
.y116{bottom:455.653333pt;}
.yf0{bottom:457.013333pt;}
.ycf{bottom:457.333333pt;}
.y139{bottom:460.613333pt;}
.y47{bottom:460.693333pt;}
.y9d{bottom:469.973333pt;}
.y115{bottom:471.253333pt;}
.yce{bottom:473.013333pt;}
.y46{bottom:476.293333pt;}
.y16{bottom:476.853333pt;}
.yef{bottom:480.613333pt;}
.y6f{bottom:484.293333pt;}
.y9c{bottom:485.573333pt;}
.y114{bottom:486.933333pt;}
.ycd{bottom:488.613333pt;}
.y138{bottom:491.893333pt;}
.y45{bottom:491.973333pt;}
.y15{bottom:492.453333pt;}
.y9b{bottom:501.253333pt;}
.y113{bottom:502.533333pt;}
.ycc{bottom:504.293333pt;}
.y137{bottom:507.493333pt;}
.y44{bottom:507.573333pt;}
.y14{bottom:508.133333pt;}
.yee{bottom:512.293333pt;}
.y6e{bottom:515.973333pt;}
.y9a{bottom:516.853333pt;}
.y112{bottom:518.213333pt;}
.ycb{bottom:519.893333pt;}
.y136{bottom:523.173333pt;}
.y43{bottom:523.253333pt;}
.y13{bottom:523.733333pt;}
.yed{bottom:527.893333pt;}
.y6d{bottom:531.573333pt;}
.y99{bottom:532.453333pt;}
.y111{bottom:533.813333pt;}
.yca{bottom:535.493333pt;}
.y135{bottom:538.773333pt;}
.y42{bottom:538.853333pt;}
.y12{bottom:539.413333pt;}
.yec{bottom:543.493333pt;}
.y6c{bottom:547.253333pt;}
.y98{bottom:548.133333pt;}
.y110{bottom:549.413333pt;}
.y41{bottom:554.453333pt;}
.y11{bottom:555.013333pt;}
.yc9{bottom:559.173333pt;}
.y6b{bottom:562.853333pt;}
.y97{bottom:563.733333pt;}
.y10f{bottom:565.093333pt;}
.y134{bottom:570.053333pt;}
.y40{bottom:570.133333pt;}
.y15f{bottom:570.453333pt;}
.y10{bottom:570.613333pt;}
.yeb{bottom:574.773333pt;}
.y6a{bottom:578.453333pt;}
.y96{bottom:579.413333pt;}
.y10e{bottom:580.693333pt;}
.y133{bottom:585.653333pt;}
.y3f{bottom:585.733333pt;}
.y15e{bottom:586.133333pt;}
.yf{bottom:586.293333pt;}
.yea{bottom:590.453333pt;}
.yc8{bottom:590.773333pt;}
.y69{bottom:594.133333pt;}
.y95{bottom:595.013333pt;}
.y10d{bottom:596.373333pt;}
.y132{bottom:601.333333pt;}
.ye{bottom:601.893333pt;}
.ye9{bottom:606.053333pt;}
.yc7{bottom:606.453333pt;}
.y3e{bottom:609.413333pt;}
.y68{bottom:609.733333pt;}
.y10c{bottom:611.973333pt;}
.y131{bottom:616.933333pt;}
.yd{bottom:617.573333pt;}
.y94{bottom:618.613333pt;}
.ye8{bottom:621.653333pt;}
.yc6{bottom:622.053333pt;}
.y67{bottom:625.413333pt;}
.y10b{bottom:627.573333pt;}
.y130{bottom:632.613333pt;}
.yc{bottom:633.173333pt;}
.ye7{bottom:637.333333pt;}
.yc5{bottom:637.653333pt;}
.y66{bottom:641.013333pt;}
.y3d{bottom:641.333333pt;}
.y10a{bottom:643.253333pt;}
.y12f{bottom:648.213333pt;}
.yb{bottom:648.773333pt;}
.y15d{bottom:649.013333pt;}
.y93{bottom:650.293333pt;}
.ye6{bottom:652.933333pt;}
.yc4{bottom:653.333333pt;}
.y65{bottom:656.613333pt;}
.y109{bottom:658.853333pt;}
.y12e{bottom:663.813333pt;}
.y15c{bottom:664.613333pt;}
.y92{bottom:665.893333pt;}
.ye5{bottom:668.613333pt;}
.yc3{bottom:668.933333pt;}
.y64{bottom:672.293333pt;}
.ya{bottom:672.773333pt;}
.y12d{bottom:679.493333pt;}
.y15b{bottom:680.293333pt;}
.y91{bottom:681.573333pt;}
.y108{bottom:682.533333pt;}
.y3c{bottom:684.213333pt;}
.yc2{bottom:684.613333pt;}
.y63{bottom:687.893333pt;}
.y12c{bottom:695.093333pt;}
.y90{bottom:697.173333pt;}
.y3b{bottom:699.813333pt;}
.yc1{bottom:700.213333pt;}
.y15a{bottom:703.893333pt;}
.y62{bottom:711.573333pt;}
.y8f{bottom:712.773333pt;}
.y9{bottom:714.293333pt;}
.y107{bottom:714.453333pt;}
.y3a{bottom:715.493333pt;}
.yc0{bottom:715.813333pt;}
.y12b{bottom:718.693333pt;}
.y159{bottom:719.573333pt;}
.ye4{bottom:723.493333pt;}
.y8e{bottom:728.453333pt;}
.y39{bottom:731.093333pt;}
.ybf{bottom:731.493333pt;}
.y158{bottom:743.173333pt;}
.y61{bottom:743.413333pt;}
.y8d{bottom:744.053333pt;}
.y8{bottom:745.893333pt;}
.y38{bottom:746.693333pt;}
.ybe{bottom:747.093333pt;}
.y12a{bottom:748.053333pt;}
.y106{bottom:755.013333pt;}
.ye3{bottom:755.093333pt;}
.y157{bottom:758.773333pt;}
.y8c{bottom:759.733333pt;}
.y37{bottom:762.373333pt;}
.ybd{bottom:762.693333pt;}
.ye2{bottom:770.693333pt;}
.y8b{bottom:775.333333pt;}
.y7{bottom:777.733333pt;}
.y36{bottom:777.973333pt;}
.y156{bottom:782.453333pt;}
.y60{bottom:786.373333pt;}
.y8a{bottom:790.933333pt;}
.y105{bottom:794.933333pt;}
.y155{bottom:798.053333pt;}
.y35{bottom:801.653333pt;}
.y5f{bottom:801.973333pt;}
.y129{bottom:803.573333pt;}
.y89{bottom:806.613333pt;}
.y6{bottom:809.733333pt;}
.y154{bottom:813.733333pt;}
.y5e{bottom:817.653333pt;}
.ybc{bottom:817.973333pt;}
.y88{bottom:822.213333pt;}
.y153{bottom:829.333333pt;}
.y34{bottom:833.253333pt;}
.ybb{bottom:833.653333pt;}
.y104{bottom:834.853333pt;}
.y5{bottom:841.813333pt;}
.y87{bottom:845.893333pt;}
.y33{bottom:848.853333pt;}
.yba{bottom:849.253333pt;}
.y152{bottom:852.933333pt;}
.y128{bottom:859.173333pt;}
.y32{bottom:864.533333pt;}
.yb9{bottom:864.853333pt;}
.y151{bottom:868.613333pt;}
.y103{bottom:874.773333pt;}
.y84{bottom:875.173333pt;}
.y4{bottom:875.893333pt;}
.y31{bottom:880.133333pt;}
.yb8{bottom:880.533333pt;}
.y150{bottom:884.213333pt;}
.y30{bottom:895.813333pt;}
.yb7{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y127{bottom:899.120000pt;}
.y14f{bottom:907.840000pt;}
.y2f{bottom:911.440000pt;}
.yb6{bottom:911.840000pt;}
.y102{bottom:914.720000pt;}
.y14e{bottom:923.520000pt;}
.y2e{bottom:927.040000pt;}
.yb5{bottom:927.440000pt;}
.y83{bottom:930.720000pt;}
.y5d{bottom:942.720000pt;}
.yb4{bottom:943.040000pt;}
.y14d{bottom:947.120000pt;}
.y2d{bottom:950.720000pt;}
.y101{bottom:954.640000pt;}
.yb3{bottom:958.720000pt;}
.y14c{bottom:962.800000pt;}
.y5c{bottom:966.320000pt;}
.y81{bottom:970.640000pt;}
.yb2{bottom:974.320000pt;}
.y14b{bottom:978.400000pt;}
.y2c{bottom:982.320000pt;}
.yb1{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y14a{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.ha{height:39.280000pt;}
.he{height:39.306667pt;}
.h6{height:45.037812pt;}
.h7{height:45.246562pt;}
.h5{height:49.581562pt;}
.hb{height:54.880000pt;}
.hd{height:54.906667pt;}
.hf{height:54.927899pt;}
.hc{height:54.960000pt;}
.h8{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:100.266667pt;}
.wc{width:104.906667pt;}
.wd{width:117.040000pt;}
.w8{width:117.866667pt;}
.w5{width:130.400000pt;}
.w4{width:143.600000pt;}
.w6{width:144.506667pt;}
.we{width:148.080000pt;}
.w10{width:149.360000pt;}
.wf{width:149.706667pt;}
.w7{width:150.400000pt;}
.wa{width:178.826667pt;}
.wb{width:182.320000pt;}
.w9{width:190.800000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:3.520000pt;}
.x1{left:60.480000pt;}
.xf{left:98.879988pt;}
.x5{left:162.026667pt;}
.xb{left:166.666667pt;}
.x2{left:180.266655pt;}
.xc{left:284.346667pt;}
.x6{left:306.266667pt;}
.x9{left:371.066667pt;}
.xd{left:433.066667pt;}
.x7{left:437.306667pt;}
.xa{left:550.533333pt;}
.x8{left:582.453333pt;}
.xe{left:583.493333pt;}
.x3{left:704.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; }
  