
    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_ad34b4901846c6be45d73b1f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120605;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_b62db9986afed7bca2d5eacc.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_499519ca7826f4d75408b1f6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_757eae94f5cc889bcf07dbcd.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_899440fbc6803abaaa301c62.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_4eae4399c4ccb1d28cdff206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_b12fe1651b0488dd4916f692.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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;}
.v1{vertical-align:27.360000px;}
.ls9{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.450600px;}
.ls8{letter-spacing:-0.288000px;}
.ls3{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.ls4{letter-spacing:-0.072000px;}
.lsc{letter-spacing:-0.058320px;}
.lsf{letter-spacing:-0.045360px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.057600px;}
.ls2{letter-spacing:0.144000px;}
.ls10{letter-spacing:0.269400px;}
.lsa{letter-spacing:0.432000px;}
.ls6{letter-spacing:0.720000px;}
.ls7{letter-spacing:0.777600px;}
.lsb{letter-spacing:0.792000px;}
.lse{letter-spacing:2.880000px;}
.lsd{letter-spacing:44.640000px;}
.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;}
}
.wsa{word-spacing:-18.720000px;}
.ws1{word-spacing:-18.144000px;}
.ws0{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.928000px;}
.ws4{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.280000px;}
.ws9{word-spacing:-13.505760px;}
.wsc{word-spacing:-12.329400px;}
.ws2{word-spacing:-12.060000px;}
.wsb{word-spacing:-12.014640px;}
.wsd{word-spacing:-11.609400px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-4.464000px;}
._6{margin-left:-2.706000px;}
._0{margin-left:-1.080000px;}
._1{width:1.266000px;}
._2{width:2.400000px;}
._c{width:3.504000px;}
._7{width:4.608000px;}
._b{width:5.682000px;}
._8{width:6.858000px;}
._15{width:8.028000px;}
._31{width:9.078000px;}
._e{width:10.656000px;}
._f{width:11.676000px;}
._10{width:12.738000px;}
._17{width:13.788000px;}
._16{width:15.174000px;}
._21{width:16.950000px;}
._d{width:19.344000px;}
._9{width:20.376000px;}
._a{width:21.534000px;}
._13{width:23.328000px;}
._3{width:24.408000px;}
._4{width:25.560000px;}
._24{width:26.712000px;}
._25{width:27.864000px;}
._33{width:29.784000px;}
._36{width:31.320000px;}
._28{width:32.904000px;}
._20{width:34.056000px;}
._19{width:35.640000px;}
._23{width:37.758000px;}
._22{width:39.168000px;}
._38{width:40.224000px;}
._14{width:41.688000px;}
._1e{width:43.230000px;}
._1a{width:44.856000px;}
._1b{width:45.870000px;}
._39{width:46.956000px;}
._32{width:48.162000px;}
._34{width:49.542000px;}
._26{width:50.976000px;}
._27{width:52.200000px;}
._1c{width:53.280000px;}
._1d{width:54.762000px;}
._37{width:56.094000px;}
._2a{width:57.528000px;}
._4c{width:58.752000px;}
._41{width:60.150000px;}
._3c{width:61.920000px;}
._3d{width:63.696000px;}
._40{width:64.704000px;}
._1f{width:66.168000px;}
._2f{width:68.328000px;}
._30{width:69.672000px;}
._43{width:71.712000px;}
._29{width:73.152000px;}
._11{width:75.456000px;}
._12{width:76.926000px;}
._3a{width:78.264000px;}
._3b{width:79.776000px;}
._35{width:81.216000px;}
._4a{width:82.848000px;}
._42{width:84.312000px;}
._3f{width:85.968000px;}
._4b{width:88.056000px;}
._46{width:89.064000px;}
._48{width:90.072000px;}
._18{width:93.000000px;}
._4e{width:96.120000px;}
._4f{width:97.500000px;}
._58{width:103.536000px;}
._59{width:104.646000px;}
._5b{width:107.280000px;}
._2c{width:108.390000px;}
._2b{width:109.470000px;}
._44{width:111.384000px;}
._45{width:112.710000px;}
._55{width:122.040000px;}
._3e{width:123.120000px;}
._4d{width:124.680000px;}
._50{width:127.800000px;}
._56{width:135.576000px;}
._57{width:137.232000px;}
._2d{width:140.760000px;}
._2e{width:141.768000px;}
._51{width:158.472000px;}
._60{width:181.296000px;}
._47{width:183.384000px;}
._49{width:207.426240px;}
._5e{width:213.192000px;}
._53{width:226.224000px;}
._52{width:232.632000px;}
._54{width:249.192000px;}
._5c{width:256.968000px;}
._5d{width:258.336000px;}
._5a{width:282.960000px;}
._5f{width:519.120000px;}
._61{width:666.792000px;}
.fc3{color:rgb(0,111,192);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(5,99,193);}
.fc6{color:rgb(33,33,33);}
.fc5{color:rgb(27,27,27);}
.fc4{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs4{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:4.140000px;}
.yce{bottom:4.485000px;}
.yd6{bottom:4.491000px;}
.yc4{bottom:4.500000px;}
.yee{bottom:4.530000px;}
.ycd{bottom:5.925000px;}
.yd8{bottom:5.931000px;}
.yc6{bottom:5.940000px;}
.yd0{bottom:6.105000px;}
.yd5{bottom:6.111000px;}
.yc3{bottom:6.120000px;}
.yff{bottom:18.180000px;}
.yfe{bottom:53.070000px;}
.y3{bottom:57.636000px;}
.yfd{bottom:71.385000px;}
.y157{bottom:71.850000px;}
.y2{bottom:77.796000px;}
.yf4{bottom:90.900000px;}
.y155{bottom:94.680000px;}
.y154{bottom:112.965000px;}
.y128{bottom:113.616000px;}
.yd7{bottom:114.165000px;}
.yf5{bottom:114.300000px;}
.y58{bottom:114.876000px;}
.yb3{bottom:117.576000px;}
.y8e{bottom:122.796000px;}
.y127{bottom:130.545000px;}
.y2c{bottom:131.436000px;}
.y14d{bottom:132.480000px;}
.y144{bottom:132.516000px;}
.yac{bottom:135.396000px;}
.yf6{bottom:137.700000px;}
.yd4{bottom:137.745000px;}
.y57{bottom:138.636000px;}
.y18e{bottom:140.436000px;}
.y156{bottom:141.330000px;}
.y67{bottom:141.516000px;}
.y168{bottom:144.216000px;}
.y8d{bottom:147.096000px;}
.y126{bottom:153.045000px;}
.y2b{bottom:155.370000px;}
.yf2{bottom:155.550000px;}
.y143{bottom:156.270000px;}
.y14e{bottom:157.500000px;}
.yab{bottom:159.150000px;}
.yf7{bottom:161.130000px;}
.yd3{bottom:161.505000px;}
.y56{bottom:162.390000px;}
.y66{bottom:165.270000px;}
.y167{bottom:167.970000px;}
.y8c{bottom:170.850000px;}
.y125{bottom:175.545000px;}
.y2a{bottom:179.130000px;}
.y142{bottom:180.030000px;}
.y18d{bottom:181.830000px;}
.y14f{bottom:182.490000px;}
.yaa{bottom:183.090000px;}
.yf8{bottom:184.530000px;}
.yd2{bottom:185.085000px;}
.y55{bottom:186.150000px;}
.y65{bottom:189.030000px;}
.y166{bottom:191.910000px;}
.y8b{bottom:194.610000px;}
.y124{bottom:198.045000px;}
.y18c{bottom:202.530000px;}
.y29{bottom:202.890000px;}
.y141{bottom:203.790000px;}
.y1b2{bottom:205.230000px;}
.ya9{bottom:206.850000px;}
.y150{bottom:207.465000px;}
.yf9{bottom:207.975000px;}
.yd1{bottom:208.665000px;}
.yf1{bottom:209.010000px;}
.y54{bottom:210.090000px;}
.y64{bottom:212.790000px;}
.y165{bottom:215.670000px;}
.y8a{bottom:218.370000px;}
.y123{bottom:220.545000px;}
.y18b{bottom:223.230000px;}
.y1b1{bottom:225.930000px;}
.yf0{bottom:225.945000px;}
.y28{bottom:226.650000px;}
.y140{bottom:227.730000px;}
.ya8{bottom:230.610000px;}
.yfa{bottom:231.375000px;}
.ycf{bottom:232.245000px;}
.y151{bottom:232.485000px;}
.y53{bottom:233.850000px;}
.y63{bottom:236.550000px;}
.y164{bottom:239.430000px;}
.y1b7{bottom:241.230000px;}
.y89{bottom:242.310000px;}
.y122{bottom:243.045000px;}
.y18a{bottom:243.930000px;}
.y1b0{bottom:246.630000px;}
.yef{bottom:248.445000px;}
.y27{bottom:250.410000px;}
.y13f{bottom:251.490000px;}
.ya7{bottom:254.370000px;}
.yfb{bottom:254.805000px;}
.ycc{bottom:256.005000px;}
.y152{bottom:257.475000px;}
.y52{bottom:257.610000px;}
.y62{bottom:260.490000px;}
.y1b6{bottom:261.930000px;}
.y163{bottom:263.190000px;}
.y189{bottom:264.630000px;}
.y121{bottom:265.545000px;}
.y88{bottom:266.070000px;}
.y1af{bottom:267.330000px;}
.yed{bottom:270.945000px;}
.y26{bottom:274.395000px;}
.y13e{bottom:275.295000px;}
.yfc{bottom:278.205000px;}
.ya6{bottom:278.355000px;}
.ycb{bottom:279.615000px;}
.y51{bottom:281.415000px;}
.y153{bottom:282.450000px;}
.y1b5{bottom:282.675000px;}
.y61{bottom:284.295000px;}
.y1a6{bottom:285.375000px;}
.y162{bottom:287.175000px;}
.y120{bottom:288.075000px;}
.y87{bottom:289.875000px;}
.yec{bottom:293.475000px;}
.y25{bottom:298.155000px;}
.y13d{bottom:299.055000px;}
.ya5{bottom:302.115000px;}
.yca{bottom:303.195000px;}
.y188{bottom:303.375000px;}
.y50{bottom:305.355000px;}
.y1a5{bottom:306.075000px;}
.y60{bottom:308.055000px;}
.y158{bottom:308.235000px;}
.y11f{bottom:310.575000px;}
.y161{bottom:310.935000px;}
.y86{bottom:313.635000px;}
.yeb{bottom:315.975000px;}
.y24{bottom:321.915000px;}
.y13c{bottom:322.815000px;}
.y187{bottom:324.075000px;}
.ya4{bottom:325.875000px;}
.yc9{bottom:326.775000px;}
.y5a{bottom:328.755000px;}
.y4f{bottom:329.115000px;}
.y5f{bottom:331.815000px;}
.y11e{bottom:333.075000px;}
.y160{bottom:334.695000px;}
.y85{bottom:337.575000px;}
.yea{bottom:338.475000px;}
.y186{bottom:344.775000px;}
.y23{bottom:345.675000px;}
.y13b{bottom:346.755000px;}
.y1ae{bottom:347.475000px;}
.ya3{bottom:349.635000px;}
.yc8{bottom:350.535000px;}
.y4e{bottom:352.875000px;}
.y11d{bottom:355.575000px;}
.y5e{bottom:355.755000px;}
.y15f{bottom:358.455000px;}
.ye9{bottom:360.975000px;}
.y84{bottom:361.515000px;}
.y185{bottom:365.475000px;}
.y1ad{bottom:368.175000px;}
.y22{bottom:369.615000px;}
.y13a{bottom:370.515000px;}
.ya2{bottom:373.575000px;}
.yc7{bottom:374.115000px;}
.y4d{bottom:376.635000px;}
.y11c{bottom:378.075000px;}
.yb2{bottom:379.515000px;}
.y5d{bottom:379.695000px;}
.y15e{bottom:382.395000px;}
.ye8{bottom:383.475000px;}
.y1a4{bottom:386.175000px;}
.y1ac{bottom:388.875000px;}
.y21{bottom:393.375000px;}
.y139{bottom:394.275000px;}
.ya1{bottom:397.335000px;}
.yc5{bottom:397.695000px;}
.y4c{bottom:400.575000px;}
.yb1{bottom:403.275000px;}
.y184{bottom:404.175000px;}
.ye7{bottom:405.975000px;}
.y83{bottom:406.155000px;}
.y1a3{bottom:406.875000px;}
.y20{bottom:417.135000px;}
.y138{bottom:418.035000px;}
.ya0{bottom:421.095000px;}
.yc2{bottom:421.275000px;}
.y11b{bottom:423.075000px;}
.y4b{bottom:424.335000px;}
.y183{bottom:424.875000px;}
.yb0{bottom:427.035000px;}
.y1a2{bottom:427.575000px;}
.ye6{bottom:428.475000px;}
.y82{bottom:429.915000px;}
.y1f{bottom:440.895000px;}
.y137{bottom:441.975000px;}
.y9f{bottom:444.855000px;}
.y11a{bottom:445.575000px;}
.yc0{bottom:445.755000px;}
.y5c{bottom:447.735000px;}
.y4a{bottom:448.095000px;}
.y1a1{bottom:448.275000px;}
.yaf{bottom:450.975000px;}
.y81{bottom:453.675000px;}
.y1e{bottom:464.835000px;}
.y136{bottom:465.735000px;}
.y1b4{bottom:466.275000px;}
.y119{bottom:468.075000px;}
.y9e{bottom:468.795000px;}
.y1ab{bottom:468.975000px;}
.y49{bottom:471.855000px;}
.ye5{bottom:473.475000px;}
.yae{bottom:474.735000px;}
.y80{bottom:477.435000px;}
.y182{bottom:484.275000px;}
.y1a0{bottom:486.975000px;}
.y1d{bottom:488.595000px;}
.y135{bottom:489.495000px;}
.y1aa{bottom:489.675000px;}
.y118{bottom:491.295000px;}
.y9d{bottom:492.555000px;}
.y48{bottom:495.795000px;}
.ye4{bottom:495.975000px;}
.yad{bottom:498.675000px;}
.y7f{bottom:501.375000px;}
.y181{bottom:504.975000px;}
.y19f{bottom:507.675000px;}
.y134{bottom:513.255000px;}
.y9c{bottom:516.315000px;}
.ye3{bottom:518.475000px;}
.y47{bottom:519.555000px;}
.y117{bottom:522.075000px;}
.y1c{bottom:522.795000px;}
.y7e{bottom:525.135000px;}
.ybf{bottom:525.315000px;}
.y180{bottom:525.675000px;}
.y19e{bottom:528.375000px;}
.y133{bottom:537.195000px;}
.y9b{bottom:540.075000px;}
.ye2{bottom:540.975000px;}
.y46{bottom:543.315000px;}
.y116{bottom:545.835000px;}
.y17f{bottom:546.375000px;}
.y7d{bottom:548.895000px;}
.y19d{bottom:549.075000px;}
.y132{bottom:560.985000px;}
.y14b{bottom:561.165000px;}
.ye1{bottom:563.505000px;}
.y9a{bottom:563.865000px;}
.y1b{bottom:566.025000px;}
.y45{bottom:567.105000px;}
.y19c{bottom:569.805000px;}
.ybe{bottom:569.985000px;}
.y7c{bottom:572.685000px;}
.y131{bottom:584.745000px;}
.ye0{bottom:586.725000px;}
.y99{bottom:587.805000px;}
.y19b{bottom:590.505000px;}
.y44{bottom:591.045000px;}
.ybd{bottom:593.745000px;}
.y7b{bottom:596.625000px;}
.y1a{bottom:598.785000px;}
.y115{bottom:599.505000px;}
.y14a{bottom:605.805000px;}
.y130{bottom:608.505000px;}
.y1a9{bottom:611.205000px;}
.y98{bottom:611.565000px;}
.y43{bottom:614.805000px;}
.y114{bottom:616.425000px;}
.ybc{bottom:617.505000px;}
.y19{bottom:619.485000px;}
.y7a{bottom:620.385000px;}
.y17e{bottom:629.205000px;}
.ydf{bottom:629.565000px;}
.y1a8{bottom:631.905000px;}
.y12f{bottom:632.445000px;}
.y97{bottom:635.325000px;}
.y42{bottom:638.565000px;}
.y113{bottom:638.925000px;}
.y18{bottom:640.185000px;}
.ybb{bottom:641.445000px;}
.y79{bottom:644.145000px;}
.y15d{bottom:644.325000px;}
.y17d{bottom:649.905000px;}
.yde{bottom:653.145000px;}
.y149{bottom:653.325000px;}
.y12e{bottom:656.205000px;}
.y96{bottom:658.725000px;}
.y17{bottom:660.885000px;}
.y112{bottom:661.425000px;}
.y41{bottom:662.325000px;}
.yba{bottom:665.205000px;}
.y78{bottom:667.905000px;}
.y19a{bottom:670.605000px;}
.y148{bottom:677.085000px;}
.y12d{bottom:679.965000px;}
.y16{bottom:681.585000px;}
.y95{bottom:683.025000px;}
.y111{bottom:683.925000px;}
.y40{bottom:686.085000px;}
.y17c{bottom:688.605000px;}
.yb9{bottom:688.965000px;}
.y199{bottom:691.305000px;}
.y77{bottom:691.845000px;}
.y147{bottom:701.025000px;}
.y15{bottom:702.285000px;}
.y12c{bottom:703.905000px;}
.y110{bottom:706.425000px;}
.ydd{bottom:706.785000px;}
.y17b{bottom:709.305000px;}
.y3f{bottom:710.025000px;}
.y198{bottom:712.005000px;}
.yb8{bottom:712.725000px;}
.y76{bottom:715.605000px;}
.y94{bottom:717.405000px;}
.y14{bottom:722.985000px;}
.y146{bottom:724.785000px;}
.y10f{bottom:728.925000px;}
.y17a{bottom:730.005000px;}
.y197{bottom:732.705000px;}
.y3e{bottom:733.785000px;}
.yb7{bottom:736.665000px;}
.y75{bottom:739.365000px;}
.y93{bottom:739.725000px;}
.y13{bottom:743.685000px;}
.y12b{bottom:748.185000px;}
.y145{bottom:748.545000px;}
.y179{bottom:750.705000px;}
.y10e{bottom:751.425000px;}
.y196{bottom:753.405000px;}
.yf3{bottom:755.820000px;}
.ydc{bottom:755.925000px;}
.y3d{bottom:757.545000px;}
.yb6{bottom:760.425000px;}
.y92{bottom:762.045000px;}
.y74{bottom:763.125000px;}
.y12{bottom:764.385000px;}
.y178{bottom:771.405000px;}
.y10d{bottom:773.925000px;}
.y5b{bottom:780.945000px;}
.y3c{bottom:781.305000px;}
.yb5{bottom:784.185000px;}
.y91{bottom:784.365000px;}
.y11{bottom:785.085000px;}
.y73{bottom:787.065000px;}
.y177{bottom:792.105000px;}
.y10c{bottom:796.425000px;}
.y12a{bottom:802.185000px;}
.y3b{bottom:805.245000px;}
.y10{bottom:805.785000px;}
.y90{bottom:806.685000px;}
.y15c{bottom:807.945000px;}
.yb4{bottom:808.125000px;}
.y72{bottom:810.825000px;}
.y176{bottom:812.805000px;}
.y10b{bottom:818.925000px;}
.yf{bottom:826.485000px;}
.y8f{bottom:828.645000px;}
.y3a{bottom:829.005000px;}
.y15b{bottom:831.705000px;}
.y175{bottom:833.505000px;}
.y71{bottom:834.765000px;}
.y10a{bottom:841.470000px;}
.ye{bottom:847.230000px;}
.y129{bottom:851.190000px;}
.y14c{bottom:851.220000px;}
.y1b3{bottom:851.550000px;}
.y39{bottom:852.810000px;}
.y195{bottom:854.250000px;}
.y15a{bottom:855.690000px;}
.y109{bottom:863.970000px;}
.y174{bottom:872.250000px;}
.y194{bottom:874.950000px;}
.y38{bottom:876.570000px;}
.yd{bottom:877.830000px;}
.y70{bottom:879.450000px;}
.y108{bottom:886.470000px;}
.y173{bottom:892.950000px;}
.y193{bottom:895.650000px;}
.y37{bottom:900.510000px;}
.y6f{bottom:903.210000px;}
.y107{bottom:908.970000px;}
.y172{bottom:913.650000px;}
.y36{bottom:924.270000px;}
.y6e{bottom:926.970000px;}
.y106{bottom:931.470000px;}
.yc{bottom:931.650000px;}
.y171{bottom:934.350000px;}
.y35{bottom:948.030000px;}
.y6d{bottom:950.910000px;}
.yb{bottom:952.350000px;}
.y105{bottom:953.970000px;}
.y170{bottom:955.050000px;}
.y34{bottom:971.790000px;}
.ya{bottom:973.050000px;}
.y6c{bottom:974.670000px;}
.y16f{bottom:975.750000px;}
.y104{bottom:977.190000px;}
.y9{bottom:993.750000px;}
.y33{bottom:995.730000px;}
.y16e{bottom:996.450000px;}
.y6b{bottom:998.430000px;}
.y103{bottom:1007.790000px;}
.y1a7{bottom:1014.450000px;}
.y192{bottom:1017.150000px;}
.y59{bottom:1019.130000px;}
.y32{bottom:1019.490000px;}
.y6a{bottom:1022.190000px;}
.y159{bottom:1022.370000px;}
.y8{bottom:1029.570000px;}
.y102{bottom:1031.730000px;}
.y16d{bottom:1035.150000px;}
.y191{bottom:1037.850000px;}
.y31{bottom:1043.250000px;}
.y69{bottom:1046.130000px;}
.y7{bottom:1051.350000px;}
.y16c{bottom:1055.850000px;}
.y190{bottom:1058.550000px;}
.y30{bottom:1067.010000px;}
.y68{bottom:1070.070000px;}
.y6{bottom:1073.850000px;}
.y16b{bottom:1076.550000px;}
.y1b9{bottom:1079.250000px;}
.y101{bottom:1085.190000px;}
.ydb{bottom:1089.870000px;}
.y2f{bottom:1090.950000px;}
.y16a{bottom:1097.250000px;}
.y1b8{bottom:1099.950000px;}
.yda{bottom:1106.790000px;}
.y5{bottom:1113.630000px;}
.y2e{bottom:1114.710000px;}
.y18f{bottom:1117.950000px;}
.yd9{bottom:1130.580000px;}
.y4{bottom:1134.000000px;}
.y169{bottom:1138.320000px;}
.y2d{bottom:1138.500000px;}
.y100{bottom:1138.680000px;}
.y1{bottom:1194.300000px;}
.h14{height:22.485000px;}
.h19{height:22.491000px;}
.h12{height:22.500000px;}
.h15{height:22.521000px;}
.h18{height:22.522500px;}
.h13{height:22.530000px;}
.hb{height:23.565000px;}
.hf{height:23.571000px;}
.h10{height:23.580000px;}
.hd{height:23.601000px;}
.hc{height:23.745000px;}
.he{height:23.751000px;}
.h11{height:23.790000px;}
.ha{height:52.066406px;}
.h17{height:59.439023px;}
.h2{height:65.884219px;}
.h4{height:66.757500px;}
.h9{height:70.628906px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.h8{height:74.681367px;}
.h7{height:74.704922px;}
.h3{height:90.703125px;}
.h16{height:297.000000px;}
.h1a{height:303.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:80.085000px;}
.wb{width:84.981000px;}
.w6{width:85.161000px;}
.w10{width:95.565000px;}
.w11{width:100.641000px;}
.w13{width:106.236000px;}
.w12{width:106.380000px;}
.wf{width:111.621000px;}
.w5{width:116.805000px;}
.w7{width:116.991000px;}
.w4{width:117.036000px;}
.wa{width:119.685000px;}
.we{width:125.085000px;}
.w2{width:127.611000px;}
.w3{width:127.641000px;}
.wd{width:130.536000px;}
.w9{width:130.716000px;}
.w8{width:132.501000px;}
.wc{width:589.140000px;}
.w15{width:676.260000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:8.085000px;}
.x1c{left:9.828000px;}
.x1b{left:17.460000px;}
.x19{left:25.380000px;}
.x44{left:36.972000px;}
.x37{left:45.540000px;}
.x1d{left:47.010000px;}
.x36{left:53.130000px;}
.x38{left:77.040000px;}
.x1{left:106.416000px;}
.x5{left:110.736000px;}
.x29{left:112.245000px;}
.x7{left:116.676000px;}
.x2a{left:123.885000px;}
.x13{left:126.216000px;}
.x6{left:134.676000px;}
.x1a{left:137.340000px;}
.x14{left:139.725000px;}
.xc{left:145.125000px;}
.x9{left:147.096000px;}
.x3{left:148.176000px;}
.x46{left:153.540000px;}
.x35{left:166.350000px;}
.x2f{left:187.785000px;}
.x4{left:200.730000px;}
.x2b{left:240.885000px;}
.x15{left:256.725000px;}
.xe{left:272.745000px;}
.xa{left:273.810000px;}
.x30{left:283.365000px;}
.x8{left:313.275000px;}
.x45{left:318.345000px;}
.x1e{left:372.315000px;}
.x2c{left:373.395000px;}
.x31{left:384.015000px;}
.x16{left:389.235000px;}
.xf{left:400.395000px;}
.x1f{left:403.380000px;}
.x20{left:407.370000px;}
.x2{left:419.655000px;}
.x39{left:437.145000px;}
.x21{left:438.480000px;}
.x22{left:442.470000px;}
.xb{left:458.715000px;}
.x3a{left:472.110000px;}
.x23{left:473.580000px;}
.x3b{left:476.100000px;}
.x24{left:477.570000px;}
.x32{left:490.395000px;}
.x47{left:501.225000px;}
.x2d{left:503.940000px;}
.x25{left:508.650000px;}
.x3c{left:511.095000px;}
.x26{left:512.640000px;}
.x3d{left:515.055000px;}
.x10{left:517.440000px;}
.x17{left:519.960000px;}
.x27{left:543.750000px;}
.x28{left:547.740000px;}
.x3e{left:550.050000px;}
.x3f{left:554.040000px;}
.x40{left:588.990000px;}
.x41{left:592.995000px;}
.x33{left:596.640000px;}
.x42{left:627.945000px;}
.x2e{left:629.040000px;}
.x43{left:631.950000px;}
.x11{left:634.260000px;}
.x18{left:639.660000px;}
.x12{left:726.990000px;}
.x34{left:783.690000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.400533pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls3{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:-0.064000pt;}
.lsc{letter-spacing:-0.051840pt;}
.lsf{letter-spacing:-0.040320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.051200pt;}
.ls2{letter-spacing:0.128000pt;}
.ls10{letter-spacing:0.239467pt;}
.lsa{letter-spacing:0.384000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls7{letter-spacing:0.691200pt;}
.lsb{letter-spacing:0.704000pt;}
.lse{letter-spacing:2.560000pt;}
.lsd{letter-spacing:39.680000pt;}
.wsa{word-spacing:-16.640000pt;}
.ws1{word-spacing:-16.128000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.936000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.360000pt;}
.ws9{word-spacing:-12.005120pt;}
.wsc{word-spacing:-10.959467pt;}
.ws2{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.679680pt;}
.wsd{word-spacing:-10.319467pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-3.968000pt;}
._6{margin-left:-2.405333pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.125333pt;}
._2{width:2.133333pt;}
._c{width:3.114667pt;}
._7{width:4.096000pt;}
._b{width:5.050667pt;}
._8{width:6.096000pt;}
._15{width:7.136000pt;}
._31{width:8.069333pt;}
._e{width:9.472000pt;}
._f{width:10.378667pt;}
._10{width:11.322667pt;}
._17{width:12.256000pt;}
._16{width:13.488000pt;}
._21{width:15.066667pt;}
._d{width:17.194667pt;}
._9{width:18.112000pt;}
._a{width:19.141333pt;}
._13{width:20.736000pt;}
._3{width:21.696000pt;}
._4{width:22.720000pt;}
._24{width:23.744000pt;}
._25{width:24.768000pt;}
._33{width:26.474667pt;}
._36{width:27.840000pt;}
._28{width:29.248000pt;}
._20{width:30.272000pt;}
._19{width:31.680000pt;}
._23{width:33.562667pt;}
._22{width:34.816000pt;}
._38{width:35.754667pt;}
._14{width:37.056000pt;}
._1e{width:38.426667pt;}
._1a{width:39.872000pt;}
._1b{width:40.773333pt;}
._39{width:41.738667pt;}
._32{width:42.810667pt;}
._34{width:44.037333pt;}
._26{width:45.312000pt;}
._27{width:46.400000pt;}
._1c{width:47.360000pt;}
._1d{width:48.677333pt;}
._37{width:49.861333pt;}
._2a{width:51.136000pt;}
._4c{width:52.224000pt;}
._41{width:53.466667pt;}
._3c{width:55.040000pt;}
._3d{width:56.618667pt;}
._40{width:57.514667pt;}
._1f{width:58.816000pt;}
._2f{width:60.736000pt;}
._30{width:61.930667pt;}
._43{width:63.744000pt;}
._29{width:65.024000pt;}
._11{width:67.072000pt;}
._12{width:68.378667pt;}
._3a{width:69.568000pt;}
._3b{width:70.912000pt;}
._35{width:72.192000pt;}
._4a{width:73.642667pt;}
._42{width:74.944000pt;}
._3f{width:76.416000pt;}
._4b{width:78.272000pt;}
._46{width:79.168000pt;}
._48{width:80.064000pt;}
._18{width:82.666667pt;}
._4e{width:85.440000pt;}
._4f{width:86.666667pt;}
._58{width:92.032000pt;}
._59{width:93.018667pt;}
._5b{width:95.360000pt;}
._2c{width:96.346667pt;}
._2b{width:97.306667pt;}
._44{width:99.008000pt;}
._45{width:100.186667pt;}
._55{width:108.480000pt;}
._3e{width:109.440000pt;}
._4d{width:110.826667pt;}
._50{width:113.600000pt;}
._56{width:120.512000pt;}
._57{width:121.984000pt;}
._2d{width:125.120000pt;}
._2e{width:126.016000pt;}
._51{width:140.864000pt;}
._60{width:161.152000pt;}
._47{width:163.008000pt;}
._49{width:184.378880pt;}
._5e{width:189.504000pt;}
._53{width:201.088000pt;}
._52{width:206.784000pt;}
._54{width:221.504000pt;}
._5c{width:228.416000pt;}
._5d{width:229.632000pt;}
._5a{width:251.520000pt;}
._5f{width:461.440000pt;}
._61{width:592.704000pt;}
.fs3{font-size:42.880000pt;}
.fs4{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:3.680000pt;}
.yce{bottom:3.986667pt;}
.yd6{bottom:3.992000pt;}
.yc4{bottom:4.000000pt;}
.yee{bottom:4.026667pt;}
.ycd{bottom:5.266667pt;}
.yd8{bottom:5.272000pt;}
.yc6{bottom:5.280000pt;}
.yd0{bottom:5.426667pt;}
.yd5{bottom:5.432000pt;}
.yc3{bottom:5.440000pt;}
.yff{bottom:16.160000pt;}
.yfe{bottom:47.173333pt;}
.y3{bottom:51.232000pt;}
.yfd{bottom:63.453333pt;}
.y157{bottom:63.866667pt;}
.y2{bottom:69.152000pt;}
.yf4{bottom:80.800000pt;}
.y155{bottom:84.160000pt;}
.y154{bottom:100.413333pt;}
.y128{bottom:100.992000pt;}
.yd7{bottom:101.480000pt;}
.yf5{bottom:101.600000pt;}
.y58{bottom:102.112000pt;}
.yb3{bottom:104.512000pt;}
.y8e{bottom:109.152000pt;}
.y127{bottom:116.040000pt;}
.y2c{bottom:116.832000pt;}
.y14d{bottom:117.760000pt;}
.y144{bottom:117.792000pt;}
.yac{bottom:120.352000pt;}
.yf6{bottom:122.400000pt;}
.yd4{bottom:122.440000pt;}
.y57{bottom:123.232000pt;}
.y18e{bottom:124.832000pt;}
.y156{bottom:125.626667pt;}
.y67{bottom:125.792000pt;}
.y168{bottom:128.192000pt;}
.y8d{bottom:130.752000pt;}
.y126{bottom:136.040000pt;}
.y2b{bottom:138.106667pt;}
.yf2{bottom:138.266667pt;}
.y143{bottom:138.906667pt;}
.y14e{bottom:140.000000pt;}
.yab{bottom:141.466667pt;}
.yf7{bottom:143.226667pt;}
.yd3{bottom:143.560000pt;}
.y56{bottom:144.346667pt;}
.y66{bottom:146.906667pt;}
.y167{bottom:149.306667pt;}
.y8c{bottom:151.866667pt;}
.y125{bottom:156.040000pt;}
.y2a{bottom:159.226667pt;}
.y142{bottom:160.026667pt;}
.y18d{bottom:161.626667pt;}
.y14f{bottom:162.213333pt;}
.yaa{bottom:162.746667pt;}
.yf8{bottom:164.026667pt;}
.yd2{bottom:164.520000pt;}
.y55{bottom:165.466667pt;}
.y65{bottom:168.026667pt;}
.y166{bottom:170.586667pt;}
.y8b{bottom:172.986667pt;}
.y124{bottom:176.040000pt;}
.y18c{bottom:180.026667pt;}
.y29{bottom:180.346667pt;}
.y141{bottom:181.146667pt;}
.y1b2{bottom:182.426667pt;}
.ya9{bottom:183.866667pt;}
.y150{bottom:184.413333pt;}
.yf9{bottom:184.866667pt;}
.yd1{bottom:185.480000pt;}
.yf1{bottom:185.786667pt;}
.y54{bottom:186.746667pt;}
.y64{bottom:189.146667pt;}
.y165{bottom:191.706667pt;}
.y8a{bottom:194.106667pt;}
.y123{bottom:196.040000pt;}
.y18b{bottom:198.426667pt;}
.y1b1{bottom:200.826667pt;}
.yf0{bottom:200.840000pt;}
.y28{bottom:201.466667pt;}
.y140{bottom:202.426667pt;}
.ya8{bottom:204.986667pt;}
.yfa{bottom:205.666667pt;}
.ycf{bottom:206.440000pt;}
.y151{bottom:206.653333pt;}
.y53{bottom:207.866667pt;}
.y63{bottom:210.266667pt;}
.y164{bottom:212.826667pt;}
.y1b7{bottom:214.426667pt;}
.y89{bottom:215.386667pt;}
.y122{bottom:216.040000pt;}
.y18a{bottom:216.826667pt;}
.y1b0{bottom:219.226667pt;}
.yef{bottom:220.840000pt;}
.y27{bottom:222.586667pt;}
.y13f{bottom:223.546667pt;}
.ya7{bottom:226.106667pt;}
.yfb{bottom:226.493333pt;}
.ycc{bottom:227.560000pt;}
.y152{bottom:228.866667pt;}
.y52{bottom:228.986667pt;}
.y62{bottom:231.546667pt;}
.y1b6{bottom:232.826667pt;}
.y163{bottom:233.946667pt;}
.y189{bottom:235.226667pt;}
.y121{bottom:236.040000pt;}
.y88{bottom:236.506667pt;}
.y1af{bottom:237.626667pt;}
.yed{bottom:240.840000pt;}
.y26{bottom:243.906667pt;}
.y13e{bottom:244.706667pt;}
.yfc{bottom:247.293333pt;}
.ya6{bottom:247.426667pt;}
.ycb{bottom:248.546667pt;}
.y51{bottom:250.146667pt;}
.y153{bottom:251.066667pt;}
.y1b5{bottom:251.266667pt;}
.y61{bottom:252.706667pt;}
.y1a6{bottom:253.666667pt;}
.y162{bottom:255.266667pt;}
.y120{bottom:256.066667pt;}
.y87{bottom:257.666667pt;}
.yec{bottom:260.866667pt;}
.y25{bottom:265.026667pt;}
.y13d{bottom:265.826667pt;}
.ya5{bottom:268.546667pt;}
.yca{bottom:269.506667pt;}
.y188{bottom:269.666667pt;}
.y50{bottom:271.426667pt;}
.y1a5{bottom:272.066667pt;}
.y60{bottom:273.826667pt;}
.y158{bottom:273.986667pt;}
.y11f{bottom:276.066667pt;}
.y161{bottom:276.386667pt;}
.y86{bottom:278.786667pt;}
.yeb{bottom:280.866667pt;}
.y24{bottom:286.146667pt;}
.y13c{bottom:286.946667pt;}
.y187{bottom:288.066667pt;}
.ya4{bottom:289.666667pt;}
.yc9{bottom:290.466667pt;}
.y5a{bottom:292.226667pt;}
.y4f{bottom:292.546667pt;}
.y5f{bottom:294.946667pt;}
.y11e{bottom:296.066667pt;}
.y160{bottom:297.506667pt;}
.y85{bottom:300.066667pt;}
.yea{bottom:300.866667pt;}
.y186{bottom:306.466667pt;}
.y23{bottom:307.266667pt;}
.y13b{bottom:308.226667pt;}
.y1ae{bottom:308.866667pt;}
.ya3{bottom:310.786667pt;}
.yc8{bottom:311.586667pt;}
.y4e{bottom:313.666667pt;}
.y11d{bottom:316.066667pt;}
.y5e{bottom:316.226667pt;}
.y15f{bottom:318.626667pt;}
.ye9{bottom:320.866667pt;}
.y84{bottom:321.346667pt;}
.y185{bottom:324.866667pt;}
.y1ad{bottom:327.266667pt;}
.y22{bottom:328.546667pt;}
.y13a{bottom:329.346667pt;}
.ya2{bottom:332.066667pt;}
.yc7{bottom:332.546667pt;}
.y4d{bottom:334.786667pt;}
.y11c{bottom:336.066667pt;}
.yb2{bottom:337.346667pt;}
.y5d{bottom:337.506667pt;}
.y15e{bottom:339.906667pt;}
.ye8{bottom:340.866667pt;}
.y1a4{bottom:343.266667pt;}
.y1ac{bottom:345.666667pt;}
.y21{bottom:349.666667pt;}
.y139{bottom:350.466667pt;}
.ya1{bottom:353.186667pt;}
.yc5{bottom:353.506667pt;}
.y4c{bottom:356.066667pt;}
.yb1{bottom:358.466667pt;}
.y184{bottom:359.266667pt;}
.ye7{bottom:360.866667pt;}
.y83{bottom:361.026667pt;}
.y1a3{bottom:361.666667pt;}
.y20{bottom:370.786667pt;}
.y138{bottom:371.586667pt;}
.ya0{bottom:374.306667pt;}
.yc2{bottom:374.466667pt;}
.y11b{bottom:376.066667pt;}
.y4b{bottom:377.186667pt;}
.y183{bottom:377.666667pt;}
.yb0{bottom:379.586667pt;}
.y1a2{bottom:380.066667pt;}
.ye6{bottom:380.866667pt;}
.y82{bottom:382.146667pt;}
.y1f{bottom:391.906667pt;}
.y137{bottom:392.866667pt;}
.y9f{bottom:395.426667pt;}
.y11a{bottom:396.066667pt;}
.yc0{bottom:396.226667pt;}
.y5c{bottom:397.986667pt;}
.y4a{bottom:398.306667pt;}
.y1a1{bottom:398.466667pt;}
.yaf{bottom:400.866667pt;}
.y81{bottom:403.266667pt;}
.y1e{bottom:413.186667pt;}
.y136{bottom:413.986667pt;}
.y1b4{bottom:414.466667pt;}
.y119{bottom:416.066667pt;}
.y9e{bottom:416.706667pt;}
.y1ab{bottom:416.866667pt;}
.y49{bottom:419.426667pt;}
.ye5{bottom:420.866667pt;}
.yae{bottom:421.986667pt;}
.y80{bottom:424.386667pt;}
.y182{bottom:430.466667pt;}
.y1a0{bottom:432.866667pt;}
.y1d{bottom:434.306667pt;}
.y135{bottom:435.106667pt;}
.y1aa{bottom:435.266667pt;}
.y118{bottom:436.706667pt;}
.y9d{bottom:437.826667pt;}
.y48{bottom:440.706667pt;}
.ye4{bottom:440.866667pt;}
.yad{bottom:443.266667pt;}
.y7f{bottom:445.666667pt;}
.y181{bottom:448.866667pt;}
.y19f{bottom:451.266667pt;}
.y134{bottom:456.226667pt;}
.y9c{bottom:458.946667pt;}
.ye3{bottom:460.866667pt;}
.y47{bottom:461.826667pt;}
.y117{bottom:464.066667pt;}
.y1c{bottom:464.706667pt;}
.y7e{bottom:466.786667pt;}
.ybf{bottom:466.946667pt;}
.y180{bottom:467.266667pt;}
.y19e{bottom:469.666667pt;}
.y133{bottom:477.506667pt;}
.y9b{bottom:480.066667pt;}
.ye2{bottom:480.866667pt;}
.y46{bottom:482.946667pt;}
.y116{bottom:485.186667pt;}
.y17f{bottom:485.666667pt;}
.y7d{bottom:487.906667pt;}
.y19d{bottom:488.066667pt;}
.y132{bottom:498.653333pt;}
.y14b{bottom:498.813333pt;}
.ye1{bottom:500.893333pt;}
.y9a{bottom:501.213333pt;}
.y1b{bottom:503.133333pt;}
.y45{bottom:504.093333pt;}
.y19c{bottom:506.493333pt;}
.ybe{bottom:506.653333pt;}
.y7c{bottom:509.053333pt;}
.y131{bottom:519.773333pt;}
.ye0{bottom:521.533333pt;}
.y99{bottom:522.493333pt;}
.y19b{bottom:524.893333pt;}
.y44{bottom:525.373333pt;}
.ybd{bottom:527.773333pt;}
.y7b{bottom:530.333333pt;}
.y1a{bottom:532.253333pt;}
.y115{bottom:532.893333pt;}
.y14a{bottom:538.493333pt;}
.y130{bottom:540.893333pt;}
.y1a9{bottom:543.293333pt;}
.y98{bottom:543.613333pt;}
.y43{bottom:546.493333pt;}
.y114{bottom:547.933333pt;}
.ybc{bottom:548.893333pt;}
.y19{bottom:550.653333pt;}
.y7a{bottom:551.453333pt;}
.y17e{bottom:559.293333pt;}
.ydf{bottom:559.613333pt;}
.y1a8{bottom:561.693333pt;}
.y12f{bottom:562.173333pt;}
.y97{bottom:564.733333pt;}
.y42{bottom:567.613333pt;}
.y113{bottom:567.933333pt;}
.y18{bottom:569.053333pt;}
.ybb{bottom:570.173333pt;}
.y79{bottom:572.573333pt;}
.y15d{bottom:572.733333pt;}
.y17d{bottom:577.693333pt;}
.yde{bottom:580.573333pt;}
.y149{bottom:580.733333pt;}
.y12e{bottom:583.293333pt;}
.y96{bottom:585.533333pt;}
.y17{bottom:587.453333pt;}
.y112{bottom:587.933333pt;}
.y41{bottom:588.733333pt;}
.yba{bottom:591.293333pt;}
.y78{bottom:593.693333pt;}
.y19a{bottom:596.093333pt;}
.y148{bottom:601.853333pt;}
.y12d{bottom:604.413333pt;}
.y16{bottom:605.853333pt;}
.y95{bottom:607.133333pt;}
.y111{bottom:607.933333pt;}
.y40{bottom:609.853333pt;}
.y17c{bottom:612.093333pt;}
.yb9{bottom:612.413333pt;}
.y199{bottom:614.493333pt;}
.y77{bottom:614.973333pt;}
.y147{bottom:623.133333pt;}
.y15{bottom:624.253333pt;}
.y12c{bottom:625.693333pt;}
.y110{bottom:627.933333pt;}
.ydd{bottom:628.253333pt;}
.y17b{bottom:630.493333pt;}
.y3f{bottom:631.133333pt;}
.y198{bottom:632.893333pt;}
.yb8{bottom:633.533333pt;}
.y76{bottom:636.093333pt;}
.y94{bottom:637.693333pt;}
.y14{bottom:642.653333pt;}
.y146{bottom:644.253333pt;}
.y10f{bottom:647.933333pt;}
.y17a{bottom:648.893333pt;}
.y197{bottom:651.293333pt;}
.y3e{bottom:652.253333pt;}
.yb7{bottom:654.813333pt;}
.y75{bottom:657.213333pt;}
.y93{bottom:657.533333pt;}
.y13{bottom:661.053333pt;}
.y12b{bottom:665.053333pt;}
.y145{bottom:665.373333pt;}
.y179{bottom:667.293333pt;}
.y10e{bottom:667.933333pt;}
.y196{bottom:669.693333pt;}
.yf3{bottom:671.840000pt;}
.ydc{bottom:671.933333pt;}
.y3d{bottom:673.373333pt;}
.yb6{bottom:675.933333pt;}
.y92{bottom:677.373333pt;}
.y74{bottom:678.333333pt;}
.y12{bottom:679.453333pt;}
.y178{bottom:685.693333pt;}
.y10d{bottom:687.933333pt;}
.y5b{bottom:694.173333pt;}
.y3c{bottom:694.493333pt;}
.yb5{bottom:697.053333pt;}
.y91{bottom:697.213333pt;}
.y11{bottom:697.853333pt;}
.y73{bottom:699.613333pt;}
.y177{bottom:704.093333pt;}
.y10c{bottom:707.933333pt;}
.y12a{bottom:713.053333pt;}
.y3b{bottom:715.773333pt;}
.y10{bottom:716.253333pt;}
.y90{bottom:717.053333pt;}
.y15c{bottom:718.173333pt;}
.yb4{bottom:718.333333pt;}
.y72{bottom:720.733333pt;}
.y176{bottom:722.493333pt;}
.y10b{bottom:727.933333pt;}
.yf{bottom:734.653333pt;}
.y8f{bottom:736.573333pt;}
.y3a{bottom:736.893333pt;}
.y15b{bottom:739.293333pt;}
.y175{bottom:740.893333pt;}
.y71{bottom:742.013333pt;}
.y10a{bottom:747.973333pt;}
.ye{bottom:753.093333pt;}
.y129{bottom:756.613333pt;}
.y14c{bottom:756.640000pt;}
.y1b3{bottom:756.933333pt;}
.y39{bottom:758.053333pt;}
.y195{bottom:759.333333pt;}
.y15a{bottom:760.613333pt;}
.y109{bottom:767.973333pt;}
.y174{bottom:775.333333pt;}
.y194{bottom:777.733333pt;}
.y38{bottom:779.173333pt;}
.yd{bottom:780.293333pt;}
.y70{bottom:781.733333pt;}
.y108{bottom:787.973333pt;}
.y173{bottom:793.733333pt;}
.y193{bottom:796.133333pt;}
.y37{bottom:800.453333pt;}
.y6f{bottom:802.853333pt;}
.y107{bottom:807.973333pt;}
.y172{bottom:812.133333pt;}
.y36{bottom:821.573333pt;}
.y6e{bottom:823.973333pt;}
.y106{bottom:827.973333pt;}
.yc{bottom:828.133333pt;}
.y171{bottom:830.533333pt;}
.y35{bottom:842.693333pt;}
.y6d{bottom:845.253333pt;}
.yb{bottom:846.533333pt;}
.y105{bottom:847.973333pt;}
.y170{bottom:848.933333pt;}
.y34{bottom:863.813333pt;}
.ya{bottom:864.933333pt;}
.y6c{bottom:866.373333pt;}
.y16f{bottom:867.333333pt;}
.y104{bottom:868.613333pt;}
.y9{bottom:883.333333pt;}
.y33{bottom:885.093333pt;}
.y16e{bottom:885.733333pt;}
.y6b{bottom:887.493333pt;}
.y103{bottom:895.813333pt;}
.y1a7{bottom:901.733333pt;}
.y192{bottom:904.133333pt;}
.y59{bottom:905.893333pt;}
.y32{bottom:906.213333pt;}
.y6a{bottom:908.613333pt;}
.y159{bottom:908.773333pt;}
.y8{bottom:915.173333pt;}
.y102{bottom:917.093333pt;}
.y16d{bottom:920.133333pt;}
.y191{bottom:922.533333pt;}
.y31{bottom:927.333333pt;}
.y69{bottom:929.893333pt;}
.y7{bottom:934.533333pt;}
.y16c{bottom:938.533333pt;}
.y190{bottom:940.933333pt;}
.y30{bottom:948.453333pt;}
.y68{bottom:951.173333pt;}
.y6{bottom:954.533333pt;}
.y16b{bottom:956.933333pt;}
.y1b9{bottom:959.333333pt;}
.y101{bottom:964.613333pt;}
.ydb{bottom:968.773333pt;}
.y2f{bottom:969.733333pt;}
.y16a{bottom:975.333333pt;}
.y1b8{bottom:977.733333pt;}
.yda{bottom:983.813333pt;}
.y5{bottom:989.893333pt;}
.y2e{bottom:990.853333pt;}
.y18f{bottom:993.733333pt;}
.yd9{bottom:1004.960000pt;}
.y4{bottom:1008.000000pt;}
.y169{bottom:1011.840000pt;}
.y2d{bottom:1012.000000pt;}
.y100{bottom:1012.160000pt;}
.y1{bottom:1061.600000pt;}
.h14{height:19.986667pt;}
.h19{height:19.992000pt;}
.h12{height:20.000000pt;}
.h15{height:20.018667pt;}
.h18{height:20.020000pt;}
.h13{height:20.026667pt;}
.hb{height:20.946667pt;}
.hf{height:20.952000pt;}
.h10{height:20.960000pt;}
.hd{height:20.978667pt;}
.hc{height:21.106667pt;}
.he{height:21.112000pt;}
.h11{height:21.146667pt;}
.ha{height:46.281250pt;}
.h17{height:52.834688pt;}
.h2{height:58.563750pt;}
.h4{height:59.340000pt;}
.h9{height:62.781250pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.h8{height:66.383438pt;}
.h7{height:66.404375pt;}
.h3{height:80.625000pt;}
.h16{height:264.000000pt;}
.h1a{height:269.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:71.186667pt;}
.wb{width:75.538667pt;}
.w6{width:75.698667pt;}
.w10{width:84.946667pt;}
.w11{width:89.458667pt;}
.w13{width:94.432000pt;}
.w12{width:94.560000pt;}
.wf{width:99.218667pt;}
.w5{width:103.826667pt;}
.w7{width:103.992000pt;}
.w4{width:104.032000pt;}
.wa{width:106.386667pt;}
.we{width:111.186667pt;}
.w2{width:113.432000pt;}
.w3{width:113.458667pt;}
.wd{width:116.032000pt;}
.w9{width:116.192000pt;}
.w8{width:117.778667pt;}
.wc{width:523.680000pt;}
.w15{width:601.120000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:7.186667pt;}
.x1c{left:8.736000pt;}
.x1b{left:15.520000pt;}
.x19{left:22.560000pt;}
.x44{left:32.864000pt;}
.x37{left:40.480000pt;}
.x1d{left:41.786667pt;}
.x36{left:47.226667pt;}
.x38{left:68.480000pt;}
.x1{left:94.592000pt;}
.x5{left:98.432000pt;}
.x29{left:99.773333pt;}
.x7{left:103.712000pt;}
.x2a{left:110.120000pt;}
.x13{left:112.192000pt;}
.x6{left:119.712000pt;}
.x1a{left:122.080000pt;}
.x14{left:124.200000pt;}
.xc{left:129.000000pt;}
.x9{left:130.752000pt;}
.x3{left:131.712000pt;}
.x46{left:136.480000pt;}
.x35{left:147.866667pt;}
.x2f{left:166.920000pt;}
.x4{left:178.426667pt;}
.x2b{left:214.120000pt;}
.x15{left:228.200000pt;}
.xe{left:242.440000pt;}
.xa{left:243.386667pt;}
.x30{left:251.880000pt;}
.x8{left:278.466667pt;}
.x45{left:282.973333pt;}
.x1e{left:330.946667pt;}
.x2c{left:331.906667pt;}
.x31{left:341.346667pt;}
.x16{left:345.986667pt;}
.xf{left:355.906667pt;}
.x1f{left:358.560000pt;}
.x20{left:362.106667pt;}
.x2{left:373.026667pt;}
.x39{left:388.573333pt;}
.x21{left:389.760000pt;}
.x22{left:393.306667pt;}
.xb{left:407.746667pt;}
.x3a{left:419.653333pt;}
.x23{left:420.960000pt;}
.x3b{left:423.200000pt;}
.x24{left:424.506667pt;}
.x32{left:435.906667pt;}
.x47{left:445.533333pt;}
.x2d{left:447.946667pt;}
.x25{left:452.133333pt;}
.x3c{left:454.306667pt;}
.x26{left:455.680000pt;}
.x3d{left:457.826667pt;}
.x10{left:459.946667pt;}
.x17{left:462.186667pt;}
.x27{left:483.333333pt;}
.x28{left:486.880000pt;}
.x3e{left:488.933333pt;}
.x3f{left:492.480000pt;}
.x40{left:523.546667pt;}
.x41{left:527.106667pt;}
.x33{left:530.346667pt;}
.x42{left:558.173333pt;}
.x2e{left:559.146667pt;}
.x43{left:561.733333pt;}
.x11{left:563.786667pt;}
.x18{left:568.586667pt;}
.x12{left:646.213333pt;}
.x34{left:696.613333pt;}
}




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