
    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_b45f2ac76888442f750b087f.woff2')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_5b67d18d0919657457fe9152.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_e84ba3e9fdaac1eca780347b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_e24a9255040f36d34553eda8.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_aa9acbd712653c435c042f3b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_974740e211f085bf1d6e5f05.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8f6e26a2691cfed436ef9e35.woff2')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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_5748396ef89230ac2948928e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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:ff9;src:url('chunks/assets/font_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.682617;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:ffa;src:url('chunks/assets/font_aa3e43a4ae6d228d7e1b90de.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854492;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;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls17{letter-spacing:-0.427200px;}
.lsc{letter-spacing:-0.186600px;}
.ls7{letter-spacing:-0.121200px;}
.ls5{letter-spacing:-0.090000px;}
.ls13{letter-spacing:-0.084600px;}
.ls14{letter-spacing:-0.067200px;}
.ls11{letter-spacing:-0.063600px;}
.ls6{letter-spacing:-0.060600px;}
.ls15{letter-spacing:-0.007560px;}
.ls16{letter-spacing:-0.006120px;}
.ls4{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.045360px;}
.lsa{letter-spacing:0.048960px;}
.lsd{letter-spacing:0.064800px;}
.ls2{letter-spacing:0.065520px;}
.ls8{letter-spacing:0.074160px;}
.ls1{letter-spacing:0.093600px;}
.lsf{letter-spacing:0.115800px;}
.lsb{letter-spacing:0.173400px;}
.ls9{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:5.973600px;}
.ls19{letter-spacing:47.726640px;}
.ls10{letter-spacing:55.286640px;}
.lse{letter-spacing:63.566640px;}
.ls18{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;}
}
.ws5{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.wsa{word-spacing:-13.342200px;}
.ws9{word-spacing:-13.275360px;}
.ws3{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.220280px;}
.wse{word-spacing:-13.218840px;}
.wsb{word-spacing:-13.162800px;}
.ws8{word-spacing:-13.039800px;}
.wsf{word-spacing:-10.533600px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.266400px;}
.ws2{word-spacing:-8.553600px;}
.wsc{word-spacing:-0.060120px;}
.ws6{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._8{margin-left:-3.645720px;}
._2{margin-left:-2.317440px;}
._0{margin-left:-1.020000px;}
._1{width:1.509588px;}
._4{width:2.964960px;}
._a{width:4.173120px;}
._5{width:5.332920px;}
._6{width:6.411240px;}
._7{width:7.515000px;}
._d{width:8.957880px;}
._b{width:10.160280px;}
._3{width:12.142560px;}
._9{width:14.308800px;}
._12{width:15.510960px;}
._c{width:16.593120px;}
._e{width:18.516960px;}
._f{width:19.959840px;}
._11{width:20.979840px;}
._10{width:22.003920px;}
._13{width:64.568880px;}
._14{width:75.148920px;}
._15{width:76.639200px;}
.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;}
.fs8{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.ybd{bottom:3.330000px;}
.y60{bottom:7.830000px;}
.y61{bottom:7.920000px;}
.y68{bottom:7.950000px;}
.ybb{bottom:10.530000px;}
.yc0{bottom:12.960000px;}
.ybc{bottom:20.970000px;}
.yb9{bottom:29.610000px;}
.y5e{bottom:35.190000px;}
.y66{bottom:35.220000px;}
.yd1{bottom:36.000000px;}
.yb8{bottom:47.160000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y122{bottom:116.130000px;}
.y76{bottom:116.490000px;}
.yb6{bottom:130.080000px;}
.y121{bottom:133.680000px;}
.y75{bottom:134.130000px;}
.y98{bottom:144.300000px;}
.yb5{bottom:147.630000px;}
.y104{bottom:151.320000px;}
.ye1{bottom:156.270000px;}
.y25{bottom:158.970000px;}
.y97{bottom:161.850000px;}
.y4f{bottom:162.390000px;}
.y103{bottom:168.870000px;}
.y74{bottom:169.680000px;}
.ye0{bottom:173.820000px;}
.y24{bottom:176.520000px;}
.y120{bottom:177.870000px;}
.y4e{bottom:179.940000px;}
.yb4{bottom:183.270000px;}
.y102{bottom:186.510000px;}
.y142{bottom:186.870000px;}
.y73{bottom:187.320000px;}
.y23{bottom:194.160000px;}
.y11f{bottom:195.420000px;}
.y96{bottom:197.400000px;}
.ydf{bottom:200.730000px;}
.yb3{bottom:200.820000px;}
.y101{bottom:204.060000px;}
.y141{bottom:204.510000px;}
.y72{bottom:204.870000px;}
.y4d{bottom:215.580000px;}
.yb2{bottom:218.370000px;}
.y22{bottom:221.070000px;}
.y11e{bottom:222.060000px;}
.y71{bottom:222.420000px;}
.y95{bottom:224.040000px;}
.y4c{bottom:233.130000px;}
.y100{bottom:239.610000px;}
.y70{bottom:240.060000px;}
.y140{bottom:248.610000px;}
.yde{bottom:248.970000px;}
.yb1{bottom:251.400000px;}
.yff{bottom:257.250000px;}
.y6f{bottom:257.610000px;}
.y94{bottom:259.590000px;}
.y11d{bottom:266.250000px;}
.ydd{bottom:266.610000px;}
.y4b{bottom:268.770000px;}
.y21{bottom:269.670000px;}
.yfe{bottom:274.800000px;}
.yb0{bottom:278.760000px;}
.y11c{bottom:283.800000px;}
.ydc{bottom:284.160000px;}
.y4a{bottom:286.320000px;}
.yfd{bottom:292.440000px;}
.y13f{bottom:292.800000px;}
.y6e{bottom:293.160000px;}
.y93{bottom:295.230000px;}
.y11b{bottom:301.350000px;}
.ydb{bottom:301.800000px;}
.y49{bottom:303.870000px;}
.yaf{bottom:306.030000px;}
.y20{bottom:306.660000px;}
.yfc{bottom:309.990000px;}
.y13e{bottom:310.440000px;}
.y6d{bottom:311.610000px;}
.yda{bottom:319.350000px;}
.y1f{bottom:324.300000px;}
.y11a{bottom:327.990000px;}
.y6c{bottom:329.970000px;}
.y92{bottom:330.780000px;}
.yae{bottom:333.390000px;}
.yd9{bottom:336.900000px;}
.y48{bottom:339.510000px;}
.y1e{bottom:341.850000px;}
.yfb{bottom:345.540000px;}
.y91{bottom:348.330000px;}
.yd8{bottom:354.540000px;}
.y47{bottom:357.060000px;}
.y1d{bottom:359.400000px;}
.yad{bottom:360.750000px;}
.y119{bottom:363.090000px;}
.yfa{bottom:363.180000px;}
.y6b{bottom:366.420000px;}
.y13d{bottom:372.180000px;}
.y90{bottom:374.970000px;}
.y1c{bottom:377.040000px;}
.yac{bottom:388.020000px;}
.yd7{bottom:389.370000px;}
.y118{bottom:389.730000px;}
.y46{bottom:392.700000px;}
.y1b{bottom:394.590000px;}
.yf9{bottom:398.730000px;}
.y6a{bottom:401.340000px;}
.yd6{bottom:403.410000px;}
.y117{bottom:407.280000px;}
.y8f{bottom:410.520000px;}
.y1a{bottom:412.140000px;}
.y69{bottom:413.490000px;}
.yab{bottom:415.380000px;}
.yd5{bottom:416.370000px;}
.y8e{bottom:428.160000px;}
.y45{bottom:428.250000px;}
.yf8{bottom:433.920000px;}
.y65{bottom:440.850000px;}
.yd4{bottom:444.450000px;}
.y44{bottom:445.800000px;}
.y19{bottom:447.780000px;}
.yf7{bottom:451.470000px;}
.y8d{bottom:463.710000px;}
.yaa{bottom:464.070000px;}
.y18{bottom:465.330000px;}
.y67{bottom:468.120000px;}
.y116{bottom:469.020000px;}
.yf6{bottom:469.110000px;}
.y43{bottom:472.470000px;}
.yd3{bottom:472.560000px;}
.y13c{bottom:478.140000px;}
.y8c{bottom:481.290000px;}
.y17{bottom:483.000000px;}
.yf5{bottom:486.690000px;}
.y64{bottom:495.510000px;}
.y115{bottom:495.690000px;}
.ya9{bottom:499.740000px;}
.yd0{bottom:500.640000px;}
.yf4{bottom:504.330000px;}
.y42{bottom:508.380000px;}
.y114{bottom:513.240000px;}
.y8b{bottom:516.930000px;}
.ya8{bottom:517.290000px;}
.y16{bottom:518.550000px;}
.yf3{bottom:521.880000px;}
.y13b{bottom:522.330000px;}
.y62{bottom:522.870000px;}
.yd2{bottom:528.720000px;}
.y8a{bottom:534.480000px;}
.ya7{bottom:534.840000px;}
.y15{bottom:536.100000px;}
.yf2{bottom:539.430000px;}
.y13a{bottom:539.880000px;}
.y113{bottom:540.150000px;}
.y63{bottom:550.230000px;}
.ya6{bottom:552.480000px;}
.y41{bottom:556.620000px;}
.yf1{bottom:557.070000px;}
.y139{bottom:557.430000px;}
.ya5{bottom:570.030000px;}
.y89{bottom:570.120000px;}
.y14{bottom:571.740000px;}
.y40{bottom:574.260000px;}
.yf0{bottom:574.620000px;}
.y5d{bottom:577.500000px;}
.ycf{bottom:578.220000px;}
.y138{bottom:584.070000px;}
.y112{bottom:588.480000px;}
.y13{bottom:589.290000px;}
.y3f{bottom:591.810000px;}
.yef{bottom:592.260000px;}
.y137{bottom:601.620000px;}
.y5f{bottom:604.860000px;}
.y88{bottom:605.670000px;}
.y12{bottom:606.930000px;}
.y3e{bottom:609.360000px;}
.yee{bottom:609.810000px;}
.yce{bottom:613.770000px;}
.y111{bottom:615.390000px;}
.ya4{bottom:623.220000px;}
.y3d{bottom:627.000000px;}
.y136{bottom:628.260000px;}
.ycd{bottom:631.410000px;}
.y11{bottom:633.840000px;}
.y87{bottom:641.220000px;}
.yed{bottom:645.360000px;}
.y135{bottom:645.810000px;}
.ycc{bottom:648.960000px;}
.y110{bottom:652.380000px;}
.y5c{bottom:653.550000px;}
.ya3{bottom:656.160000px;}
.y3c{bottom:662.550000px;}
.yec{bottom:663.000000px;}
.y134{bottom:663.360000px;}
.ycb{bottom:666.510000px;}
.y10f{bottom:669.930000px;}
.y86{bottom:676.860000px;}
.y3b{bottom:680.190000px;}
.y10{bottom:682.080000px;}
.ya2{bottom:683.520000px;}
.yca{bottom:684.150000px;}
.y5b{bottom:689.190000px;}
.y133{bottom:690.000000px;}
.y85{bottom:694.410000px;}
.y10e{bottom:696.840000px;}
.yeb{bottom:698.550000px;}
.yc9{bottom:701.700000px;}
.y5a{bottom:706.740000px;}
.ya1{bottom:710.880000px;}
.y3a{bottom:715.740000px;}
.yea{bottom:716.190000px;}
.y132{bottom:716.550000px;}
.yf{bottom:717.900000px;}
.yc8{bottom:719.340000px;}
.y84{bottom:729.960000px;}
.y39{bottom:733.290000px;}
.ye9{bottom:733.740000px;}
.y10d{bottom:734.190000px;}
.yc7{bottom:736.890000px;}
.ya0{bottom:738.240000px;}
.y38{bottom:750.930000px;}
.ye8{bottom:751.290000px;}
.ye{bottom:753.900000px;}
.y131{bottom:760.740000px;}
.y9f{bottom:765.510000px;}
.y83{bottom:766.410000px;}
.y59{bottom:768.930000px;}
.yc6{bottom:771.720000px;}
.y10c{bottom:782.520000px;}
.y82{bottom:783.960000px;}
.yc5{bottom:785.850000px;}
.y37{bottom:786.480000px;}
.y130{bottom:787.290000px;}
.y9e{bottom:792.870000px;}
.yd{bottom:793.680000px;}
.yc4{bottom:798.720000px;}
.y10b{bottom:800.070000px;}
.y36{bottom:804.030000px;}
.ye7{bottom:804.480000px;}
.y12f{bottom:804.930000px;}
.yc{bottom:807.900000px;}
.y58{bottom:813.030000px;}
.y10a{bottom:817.620000px;}
.y81{bottom:819.510000px;}
.y9d{bottom:820.230000px;}
.y35{bottom:821.670000px;}
.ye6{bottom:822.030000px;}
.yc3{bottom:825.000000px;}
.yb{bottom:829.680000px;}
.y12e{bottom:831.480000px;}
.y109{bottom:835.260000px;}
.ye5{bottom:839.670000px;}
.ya{bottom:843.900000px;}
.y9c{bottom:847.500000px;}
.y57{bottom:848.670000px;}
.y12d{bottom:849.030000px;}
.yc2{bottom:851.280000px;}
.y108{bottom:852.810000px;}
.y80{bottom:855.960000px;}
.y34{bottom:857.220000px;}
.y9{bottom:865.680000px;}
.y56{bottom:866.220000px;}
.y7f{bottom:873.600000px;}
.y33{bottom:874.860000px;}
.y12c{bottom:875.670000px;}
.yc1{bottom:877.470000px;}
.y8{bottom:879.900000px;}
.y55{bottom:883.860000px;}
.y107{bottom:888.450000px;}
.y32{bottom:892.410000px;}
.ye4{bottom:892.860000px;}
.y12b{bottom:893.220000px;}
.y54{bottom:901.410000px;}
.y7{bottom:901.680000px;}
.ybf{bottom:903.750000px;}
.y106{bottom:906.000000px;}
.y7e{bottom:909.150000px;}
.ye3{bottom:910.410000px;}
.y12a{bottom:919.860000px;}
.y9b{bottom:923.550000px;}
.y7d{bottom:926.790000px;}
.y31{bottom:927.960000px;}
.ybe{bottom:932.370000px;}
.y105{bottom:932.910000px;}
.y6{bottom:933.810000px;}
.y53{bottom:936.960000px;}
.y129{bottom:937.410000px;}
.y30{bottom:945.600000px;}
.y9a{bottom:950.190000px;}
.y5{bottom:952.260000px;}
.y52{bottom:954.600000px;}
.y128{bottom:954.960000px;}
.yb7{bottom:958.650000px;}
.y7c{bottom:962.250000px;}
.ye2{bottom:963.600000px;}
.y2f{bottom:981.150000px;}
.y127{bottom:981.600000px;}
.y99{bottom:986.100000px;}
.y4{bottom:989.880000px;}
.yba{bottom:995.280000px;}
.y2e{bottom:998.790000px;}
.y126{bottom:999.150000px;}
.y3{bottom:1014.570000px;}
.y7b{bottom:1016.370000px;}
.y51{bottom:1016.820000px;}
.y2d{bottom:1034.370000px;}
.y7a{bottom:1042.920000px;}
.y125{bottom:1043.370000px;}
.y2c{bottom:1051.920000px;}
.y124{bottom:1060.920000px;}
.y2b{bottom:1069.560000px;}
.y79{bottom:1078.560000px;}
.y50{bottom:1087.110000px;}
.y123{bottom:1087.560000px;}
.y78{bottom:1096.110000px;}
.y2a{bottom:1105.110000px;}
.y77{bottom:1113.750000px;}
.y29{bottom:1122.750000px;}
.y28{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.h17{height:24.750000px;}
.h15{height:24.780000px;}
.hc{height:26.550000px;}
.hd{height:26.640000px;}
.hf{height:26.670000px;}
.h18{height:27.180000px;}
.h2{height:31.901133px;}
.h16{height:35.190000px;}
.h6{height:37.191445px;}
.h3{height:39.155273px;}
.h10{height:41.661211px;}
.h19{height:42.035273px;}
.h7{height:52.311445px;}
.h9{height:52.781133px;}
.hb{height:53.910000px;}
.he{height:53.940000px;}
.h1a{height:54.720000px;}
.h5{height:54.817383px;}
.h1b{height:57.323320px;}
.h8{height:57.838008px;}
.h12{height:59.973223px;}
.h14{height:61.410000px;}
.h11{height:61.793886px;}
.ha{height:62.585859px;}
.h13{height:68.582109px;}
.h4{height:72.985430px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w17{width:83.610000px;}
.w16{width:85.500000px;}
.w15{width:92.160000px;}
.w10{width:94.140000px;}
.w11{width:94.170000px;}
.wf{width:94.230000px;}
.w18{width:94.260000px;}
.w12{width:104.850000px;}
.w19{width:114.840000px;}
.w8{width:122.940000px;}
.wa{width:123.120000px;}
.wb{width:125.910000px;}
.wc{width:128.190000px;}
.w9{width:128.550000px;}
.w3{width:130.980000px;}
.wd{width:134.130000px;}
.w7{width:134.910000px;}
.w1a{width:146.910000px;}
.w13{width:147.630000px;}
.w4{width:151.200000px;}
.w6{width:153.120000px;}
.w5{width:288.840000px;}
.w14{width:571.980000px;}
.we{width:583.320000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:7.770000px;}
.x1{left:68.040000px;}
.x11{left:69.570000px;}
.x1a{left:86.400000px;}
.xa{left:95.039987px;}
.x21{left:111.239987px;}
.x18{left:137.519987px;}
.x4{left:160.290000px;}
.x12{left:205.230000px;}
.x9{left:228.089987px;}
.x1b{left:234.840000px;}
.x2{left:251.759987px;}
.xe{left:257.250000px;}
.xb{left:258.600000px;}
.x6{left:292.080000px;}
.x13{left:300.900000px;}
.x1c{left:328.530000px;}
.x19{left:360.389987px;}
.xc{left:382.350000px;}
.xf{left:383.970000px;}
.x14{left:396.660000px;}
.x1d{left:415.470000px;}
.x7{left:444.090000px;}
.x15{left:492.330000px;}
.x1e{left:500.520000px;}
.xd{left:511.620000px;}
.x10{left:512.880000px;}
.x16{left:588.030000px;}
.x1f{left:596.310000px;}
.x8{left:598.020000px;}
.x20{left:691.980000px;}
.x17{left:694.320000px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls17{letter-spacing:-0.379733pt;}
.lsc{letter-spacing:-0.165867pt;}
.ls7{letter-spacing:-0.107733pt;}
.ls5{letter-spacing:-0.080000pt;}
.ls13{letter-spacing:-0.075200pt;}
.ls14{letter-spacing:-0.059733pt;}
.ls11{letter-spacing:-0.056533pt;}
.ls6{letter-spacing:-0.053867pt;}
.ls15{letter-spacing:-0.006720pt;}
.ls16{letter-spacing:-0.005440pt;}
.ls4{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.040320pt;}
.lsa{letter-spacing:0.043520pt;}
.lsd{letter-spacing:0.057600pt;}
.ls2{letter-spacing:0.058240pt;}
.ls8{letter-spacing:0.065920pt;}
.ls1{letter-spacing:0.083200pt;}
.lsf{letter-spacing:0.102933pt;}
.lsb{letter-spacing:0.154133pt;}
.ls9{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:5.309867pt;}
.ls19{letter-spacing:42.423680pt;}
.ls10{letter-spacing:49.143680pt;}
.lse{letter-spacing:56.503680pt;}
.ls18{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.wsa{word-spacing:-11.859733pt;}
.ws9{word-spacing:-11.800320pt;}
.ws3{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.751360pt;}
.wse{word-spacing:-11.750080pt;}
.wsb{word-spacing:-11.700267pt;}
.ws8{word-spacing:-11.590933pt;}
.wsf{word-spacing:-9.363200pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.236800pt;}
.ws2{word-spacing:-7.603200pt;}
.wsc{word-spacing:-0.053440pt;}
.ws6{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._8{margin-left:-3.240640pt;}
._2{margin-left:-2.059946pt;}
._0{margin-left:-0.906667pt;}
._1{width:1.341856pt;}
._4{width:2.635520pt;}
._a{width:3.709440pt;}
._5{width:4.740374pt;}
._6{width:5.698880pt;}
._7{width:6.680000pt;}
._d{width:7.962560pt;}
._b{width:9.031360pt;}
._3{width:10.793387pt;}
._9{width:12.718934pt;}
._12{width:13.787520pt;}
._c{width:14.749440pt;}
._e{width:16.459520pt;}
._f{width:17.742080pt;}
._11{width:18.648747pt;}
._10{width:19.559040pt;}
._13{width:57.394560pt;}
._14{width:66.799040pt;}
._15{width:68.123733pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs8{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.ybd{bottom:2.960000pt;}
.y60{bottom:6.960000pt;}
.y61{bottom:7.040000pt;}
.y68{bottom:7.066667pt;}
.ybb{bottom:9.360000pt;}
.yc0{bottom:11.520000pt;}
.ybc{bottom:18.640000pt;}
.yb9{bottom:26.320000pt;}
.y5e{bottom:31.280000pt;}
.y66{bottom:31.306667pt;}
.yd1{bottom:32.000000pt;}
.yb8{bottom:41.920000pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y122{bottom:103.226667pt;}
.y76{bottom:103.546667pt;}
.yb6{bottom:115.626667pt;}
.y121{bottom:118.826667pt;}
.y75{bottom:119.226667pt;}
.y98{bottom:128.266667pt;}
.yb5{bottom:131.226667pt;}
.y104{bottom:134.506667pt;}
.ye1{bottom:138.906667pt;}
.y25{bottom:141.306667pt;}
.y97{bottom:143.866667pt;}
.y4f{bottom:144.346667pt;}
.y103{bottom:150.106667pt;}
.y74{bottom:150.826667pt;}
.ye0{bottom:154.506667pt;}
.y24{bottom:156.906667pt;}
.y120{bottom:158.106667pt;}
.y4e{bottom:159.946667pt;}
.yb4{bottom:162.906667pt;}
.y102{bottom:165.786667pt;}
.y142{bottom:166.106667pt;}
.y73{bottom:166.506667pt;}
.y23{bottom:172.586667pt;}
.y11f{bottom:173.706667pt;}
.y96{bottom:175.466667pt;}
.ydf{bottom:178.426667pt;}
.yb3{bottom:178.506667pt;}
.y101{bottom:181.386667pt;}
.y141{bottom:181.786667pt;}
.y72{bottom:182.106667pt;}
.y4d{bottom:191.626667pt;}
.yb2{bottom:194.106667pt;}
.y22{bottom:196.506667pt;}
.y11e{bottom:197.386667pt;}
.y71{bottom:197.706667pt;}
.y95{bottom:199.146667pt;}
.y4c{bottom:207.226667pt;}
.y100{bottom:212.986667pt;}
.y70{bottom:213.386667pt;}
.y140{bottom:220.986667pt;}
.yde{bottom:221.306667pt;}
.yb1{bottom:223.466667pt;}
.yff{bottom:228.666667pt;}
.y6f{bottom:228.986667pt;}
.y94{bottom:230.746667pt;}
.y11d{bottom:236.666667pt;}
.ydd{bottom:236.986667pt;}
.y4b{bottom:238.906667pt;}
.y21{bottom:239.706667pt;}
.yfe{bottom:244.266667pt;}
.yb0{bottom:247.786667pt;}
.y11c{bottom:252.266667pt;}
.ydc{bottom:252.586667pt;}
.y4a{bottom:254.506667pt;}
.yfd{bottom:259.946667pt;}
.y13f{bottom:260.266667pt;}
.y6e{bottom:260.586667pt;}
.y93{bottom:262.426667pt;}
.y11b{bottom:267.866667pt;}
.ydb{bottom:268.266667pt;}
.y49{bottom:270.106667pt;}
.yaf{bottom:272.026667pt;}
.y20{bottom:272.586667pt;}
.yfc{bottom:275.546667pt;}
.y13e{bottom:275.946667pt;}
.y6d{bottom:276.986667pt;}
.yda{bottom:283.866667pt;}
.y1f{bottom:288.266667pt;}
.y11a{bottom:291.546667pt;}
.y6c{bottom:293.306667pt;}
.y92{bottom:294.026667pt;}
.yae{bottom:296.346667pt;}
.yd9{bottom:299.466667pt;}
.y48{bottom:301.786667pt;}
.y1e{bottom:303.866667pt;}
.yfb{bottom:307.146667pt;}
.y91{bottom:309.626667pt;}
.yd8{bottom:315.146667pt;}
.y47{bottom:317.386667pt;}
.y1d{bottom:319.466667pt;}
.yad{bottom:320.666667pt;}
.y119{bottom:322.746667pt;}
.yfa{bottom:322.826667pt;}
.y6b{bottom:325.706667pt;}
.y13d{bottom:330.826667pt;}
.y90{bottom:333.306667pt;}
.y1c{bottom:335.146667pt;}
.yac{bottom:344.906667pt;}
.yd7{bottom:346.106667pt;}
.y118{bottom:346.426667pt;}
.y46{bottom:349.066667pt;}
.y1b{bottom:350.746667pt;}
.yf9{bottom:354.426667pt;}
.y6a{bottom:356.746667pt;}
.yd6{bottom:358.586667pt;}
.y117{bottom:362.026667pt;}
.y8f{bottom:364.906667pt;}
.y1a{bottom:366.346667pt;}
.y69{bottom:367.546667pt;}
.yab{bottom:369.226667pt;}
.yd5{bottom:370.106667pt;}
.y8e{bottom:380.586667pt;}
.y45{bottom:380.666667pt;}
.yf8{bottom:385.706667pt;}
.y65{bottom:391.866667pt;}
.yd4{bottom:395.066667pt;}
.y44{bottom:396.266667pt;}
.y19{bottom:398.026667pt;}
.yf7{bottom:401.306667pt;}
.y8d{bottom:412.186667pt;}
.yaa{bottom:412.506667pt;}
.y18{bottom:413.626667pt;}
.y67{bottom:416.106667pt;}
.y116{bottom:416.906667pt;}
.yf6{bottom:416.986667pt;}
.y43{bottom:419.973333pt;}
.yd3{bottom:420.053333pt;}
.y13c{bottom:425.013333pt;}
.y8c{bottom:427.813333pt;}
.y17{bottom:429.333333pt;}
.yf5{bottom:432.613333pt;}
.y64{bottom:440.453333pt;}
.y115{bottom:440.613333pt;}
.ya9{bottom:444.213333pt;}
.yd0{bottom:445.013333pt;}
.yf4{bottom:448.293333pt;}
.y42{bottom:451.893333pt;}
.y114{bottom:456.213333pt;}
.y8b{bottom:459.493333pt;}
.ya8{bottom:459.813333pt;}
.y16{bottom:460.933333pt;}
.yf3{bottom:463.893333pt;}
.y13b{bottom:464.293333pt;}
.y62{bottom:464.773333pt;}
.yd2{bottom:469.973333pt;}
.y8a{bottom:475.093333pt;}
.ya7{bottom:475.413333pt;}
.y15{bottom:476.533333pt;}
.yf2{bottom:479.493333pt;}
.y13a{bottom:479.893333pt;}
.y113{bottom:480.133333pt;}
.y63{bottom:489.093333pt;}
.ya6{bottom:491.093333pt;}
.y41{bottom:494.773333pt;}
.yf1{bottom:495.173333pt;}
.y139{bottom:495.493333pt;}
.ya5{bottom:506.693333pt;}
.y89{bottom:506.773333pt;}
.y14{bottom:508.213333pt;}
.y40{bottom:510.453333pt;}
.yf0{bottom:510.773333pt;}
.y5d{bottom:513.333333pt;}
.ycf{bottom:513.973333pt;}
.y138{bottom:519.173333pt;}
.y112{bottom:523.093333pt;}
.y13{bottom:523.813333pt;}
.y3f{bottom:526.053333pt;}
.yef{bottom:526.453333pt;}
.y137{bottom:534.773333pt;}
.y5f{bottom:537.653333pt;}
.y88{bottom:538.373333pt;}
.y12{bottom:539.493333pt;}
.y3e{bottom:541.653333pt;}
.yee{bottom:542.053333pt;}
.yce{bottom:545.573333pt;}
.y111{bottom:547.013333pt;}
.ya4{bottom:553.973333pt;}
.y3d{bottom:557.333333pt;}
.y136{bottom:558.453333pt;}
.ycd{bottom:561.253333pt;}
.y11{bottom:563.413333pt;}
.y87{bottom:569.973333pt;}
.yed{bottom:573.653333pt;}
.y135{bottom:574.053333pt;}
.ycc{bottom:576.853333pt;}
.y110{bottom:579.893333pt;}
.y5c{bottom:580.933333pt;}
.ya3{bottom:583.253333pt;}
.y3c{bottom:588.933333pt;}
.yec{bottom:589.333333pt;}
.y134{bottom:589.653333pt;}
.ycb{bottom:592.453333pt;}
.y10f{bottom:595.493333pt;}
.y86{bottom:601.653333pt;}
.y3b{bottom:604.613333pt;}
.y10{bottom:606.293333pt;}
.ya2{bottom:607.573333pt;}
.yca{bottom:608.133333pt;}
.y5b{bottom:612.613333pt;}
.y133{bottom:613.333333pt;}
.y85{bottom:617.253333pt;}
.y10e{bottom:619.413333pt;}
.yeb{bottom:620.933333pt;}
.yc9{bottom:623.733333pt;}
.y5a{bottom:628.213333pt;}
.ya1{bottom:631.893333pt;}
.y3a{bottom:636.213333pt;}
.yea{bottom:636.613333pt;}
.y132{bottom:636.933333pt;}
.yf{bottom:638.133333pt;}
.yc8{bottom:639.413333pt;}
.y84{bottom:648.853333pt;}
.y39{bottom:651.813333pt;}
.ye9{bottom:652.213333pt;}
.y10d{bottom:652.613333pt;}
.yc7{bottom:655.013333pt;}
.ya0{bottom:656.213333pt;}
.y38{bottom:667.493333pt;}
.ye8{bottom:667.813333pt;}
.ye{bottom:670.133333pt;}
.y131{bottom:676.213333pt;}
.y9f{bottom:680.453333pt;}
.y83{bottom:681.253333pt;}
.y59{bottom:683.493333pt;}
.yc6{bottom:685.973333pt;}
.y10c{bottom:695.573333pt;}
.y82{bottom:696.853333pt;}
.yc5{bottom:698.533333pt;}
.y37{bottom:699.093333pt;}
.y130{bottom:699.813333pt;}
.y9e{bottom:704.773333pt;}
.yd{bottom:705.493333pt;}
.yc4{bottom:709.973333pt;}
.y10b{bottom:711.173333pt;}
.y36{bottom:714.693333pt;}
.ye7{bottom:715.093333pt;}
.y12f{bottom:715.493333pt;}
.yc{bottom:718.133333pt;}
.y58{bottom:722.693333pt;}
.y10a{bottom:726.773333pt;}
.y81{bottom:728.453333pt;}
.y9d{bottom:729.093333pt;}
.y35{bottom:730.373333pt;}
.ye6{bottom:730.693333pt;}
.yc3{bottom:733.333333pt;}
.yb{bottom:737.493333pt;}
.y12e{bottom:739.093333pt;}
.y109{bottom:742.453333pt;}
.ye5{bottom:746.373333pt;}
.ya{bottom:750.133333pt;}
.y9c{bottom:753.333333pt;}
.y57{bottom:754.373333pt;}
.y12d{bottom:754.693333pt;}
.yc2{bottom:756.693333pt;}
.y108{bottom:758.053333pt;}
.y80{bottom:760.853333pt;}
.y34{bottom:761.973333pt;}
.y9{bottom:769.493333pt;}
.y56{bottom:769.973333pt;}
.y7f{bottom:776.533333pt;}
.y33{bottom:777.653333pt;}
.y12c{bottom:778.373333pt;}
.yc1{bottom:779.973333pt;}
.y8{bottom:782.133333pt;}
.y55{bottom:785.653333pt;}
.y107{bottom:789.733333pt;}
.y32{bottom:793.253333pt;}
.ye4{bottom:793.653333pt;}
.y12b{bottom:793.973333pt;}
.y54{bottom:801.253333pt;}
.y7{bottom:801.493333pt;}
.ybf{bottom:803.333333pt;}
.y106{bottom:805.333333pt;}
.y7e{bottom:808.133333pt;}
.ye3{bottom:809.253333pt;}
.y12a{bottom:817.653333pt;}
.y9b{bottom:820.933333pt;}
.y7d{bottom:823.813333pt;}
.y31{bottom:824.853333pt;}
.ybe{bottom:828.773333pt;}
.y105{bottom:829.253333pt;}
.y6{bottom:830.053333pt;}
.y53{bottom:832.853333pt;}
.y129{bottom:833.253333pt;}
.y30{bottom:840.533333pt;}
.y9a{bottom:844.613333pt;}
.y5{bottom:846.453333pt;}
.y52{bottom:848.533333pt;}
.y128{bottom:848.853333pt;}
.yb7{bottom:852.133333pt;}
.y7c{bottom:855.333333pt;}
.ye2{bottom:856.533333pt;}
.y2f{bottom:872.133333pt;}
.y127{bottom:872.533333pt;}
.y99{bottom:876.533333pt;}
.y4{bottom:879.893333pt;}
.yba{bottom:884.693333pt;}
.y2e{bottom:887.813333pt;}
.y126{bottom:888.133333pt;}
.y3{bottom:901.840000pt;}
.y7b{bottom:903.440000pt;}
.y51{bottom:903.840000pt;}
.y2d{bottom:919.440000pt;}
.y7a{bottom:927.040000pt;}
.y125{bottom:927.440000pt;}
.y2c{bottom:935.040000pt;}
.y124{bottom:943.040000pt;}
.y2b{bottom:950.720000pt;}
.y79{bottom:958.720000pt;}
.y50{bottom:966.320000pt;}
.y123{bottom:966.720000pt;}
.y78{bottom:974.320000pt;}
.y2a{bottom:982.320000pt;}
.y77{bottom:990.000000pt;}
.y29{bottom:998.000000pt;}
.y28{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.h17{height:22.000000pt;}
.h15{height:22.026667pt;}
.hc{height:23.600000pt;}
.hd{height:23.680000pt;}
.hf{height:23.706667pt;}
.h18{height:24.160000pt;}
.h2{height:28.356562pt;}
.h16{height:31.280000pt;}
.h6{height:33.059063pt;}
.h3{height:34.804688pt;}
.h10{height:37.032187pt;}
.h19{height:37.364688pt;}
.h7{height:46.499062pt;}
.h9{height:46.916562pt;}
.hb{height:47.920000pt;}
.he{height:47.946667pt;}
.h1a{height:48.640000pt;}
.h5{height:48.726562pt;}
.h1b{height:50.954062pt;}
.h8{height:51.411562pt;}
.h12{height:53.309531pt;}
.h14{height:54.586667pt;}
.h11{height:54.927899pt;}
.ha{height:55.631875pt;}
.h13{height:60.961875pt;}
.h4{height:64.875937pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w17{width:74.320000pt;}
.w16{width:76.000000pt;}
.w15{width:81.920000pt;}
.w10{width:83.680000pt;}
.w11{width:83.706667pt;}
.wf{width:83.760000pt;}
.w18{width:83.786667pt;}
.w12{width:93.200000pt;}
.w19{width:102.080000pt;}
.w8{width:109.280000pt;}
.wa{width:109.440000pt;}
.wb{width:111.920000pt;}
.wc{width:113.946667pt;}
.w9{width:114.266667pt;}
.w3{width:116.426667pt;}
.wd{width:119.226667pt;}
.w7{width:119.920000pt;}
.w1a{width:130.586667pt;}
.w13{width:131.226667pt;}
.w4{width:134.400000pt;}
.w6{width:136.106667pt;}
.w5{width:256.746667pt;}
.w14{width:508.426667pt;}
.we{width:518.506667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.906667pt;}
.x1{left:60.480000pt;}
.x11{left:61.840000pt;}
.x1a{left:76.800000pt;}
.xa{left:84.479988pt;}
.x21{left:98.879988pt;}
.x18{left:122.239988pt;}
.x4{left:142.480000pt;}
.x12{left:182.426667pt;}
.x9{left:202.746655pt;}
.x1b{left:208.746667pt;}
.x2{left:223.786655pt;}
.xe{left:228.666667pt;}
.xb{left:229.866667pt;}
.x6{left:259.626667pt;}
.x13{left:267.466667pt;}
.x1c{left:292.026667pt;}
.x19{left:320.346655pt;}
.xc{left:339.866667pt;}
.xf{left:341.306667pt;}
.x14{left:352.586667pt;}
.x1d{left:369.306667pt;}
.x7{left:394.746667pt;}
.x15{left:437.626667pt;}
.x1e{left:444.906667pt;}
.xd{left:454.773333pt;}
.x10{left:455.893333pt;}
.x16{left:522.693333pt;}
.x1f{left:530.053333pt;}
.x8{left:531.573333pt;}
.x20{left:615.093333pt;}
.x17{left:617.173333pt;}
.x3{left:711.413322pt;}
}




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