
    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_281677cfdafba0554204027f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_ad253f610d5a5fefb637780a.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_9b1d2fefa877057f4a37e578.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_af1476d5d58f3078d0b6a056.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7ce5591fbb6fb981ba491baf.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_c5e47d6e615fc5dd0a2e1145.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ba252849e8b772672780f05f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.052734;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_5f2b1deb1a8298a397ce4f23.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956543;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_44071d75cadcab5dbcf8124d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.884277;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);}
.m2{transform:matrix(0.268012,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.268012,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.268012,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);}
.v2{vertical-align:-20.880000px;}
.v6{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.v5{vertical-align:30.240000px;}
.v4{vertical-align:35.280000px;}
.v3{vertical-align:36.720000px;}
.lsf{letter-spacing:-0.666000px;}
.ls21{letter-spacing:-0.540000px;}
.ls29{letter-spacing:-0.413400px;}
.lse{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.305400px;}
.ls13{letter-spacing:-0.259800px;}
.lsd{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.106800px;}
.ls14{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.018720px;}
.ls7{letter-spacing:0.037440px;}
.ls3{letter-spacing:0.053280px;}
.ls27{letter-spacing:0.129360px;}
.ls1f{letter-spacing:0.135600px;}
.ls4{letter-spacing:0.144000px;}
.ls24{letter-spacing:0.153360px;}
.ls1e{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.206400px;}
.lsa{letter-spacing:0.259800px;}
.ls20{letter-spacing:0.298800px;}
.ls9{letter-spacing:0.305400px;}
.ls12{letter-spacing:0.306600px;}
.lsc{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.460080px;}
.ls8{letter-spacing:0.567600px;}
.ls16{letter-spacing:0.612000px;}
.ls23{letter-spacing:0.613440px;}
.ls28{letter-spacing:0.900000px;}
.ls1a{letter-spacing:0.977760px;}
.lsb{letter-spacing:0.978000px;}
.ls0{letter-spacing:1.512000px;}
.ls2a{letter-spacing:1.620000px;}
.ls1c{letter-spacing:2.047680px;}
.ls18{letter-spacing:7.112160px;}
.ls1d{letter-spacing:7.256160px;}
.ls1b{letter-spacing:10.190160px;}
.ls26{letter-spacing:11.466720px;}
.ls19{letter-spacing:18.401760px;}
.ls11{letter-spacing:18.666720px;}
.ls22{letter-spacing:41.706720px;}
.ls17{letter-spacing:149.850720px;}
.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;}
}
.ws1{word-spacing:-17.127600px;}
.ws4{word-spacing:-16.865400px;}
.ws2{word-spacing:-16.560000px;}
.ws0{word-spacing:-16.254600px;}
.wsb{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.ws10{word-spacing:-15.199800px;}
.wsd{word-spacing:-15.093600px;}
.ws7{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wse{word-spacing:-14.886720px;}
.ws9{word-spacing:-14.580000px;}
.wsa{word-spacing:-14.274000px;}
.wsc{word-spacing:-13.147200px;}
.ws3{word-spacing:-10.440000px;}
.ws5{word-spacing:-9.720000px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-2770.303440px;}
._9{margin-left:-1575.624240px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-993.965760px;}
._d{margin-left:-688.104720px;}
._18{margin-left:-661.860000px;}
._e{margin-left:-659.954160px;}
._19{margin-left:-645.400800px;}
._a{margin-left:-571.401360px;}
._15{margin-left:-538.679640px;}
._1c{margin-left:-490.134240px;}
._1b{margin-left:-475.320000px;}
._16{margin-left:-428.114160px;}
._f{margin-left:-215.280000px;}
._13{margin-left:-174.240000px;}
._14{margin-left:-159.687360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-144.000000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._2d{margin-left:-39.179520px;}
._7{margin-left:-8.213760px;}
._4{margin-left:-5.071200px;}
._24{margin-left:-3.540480px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._1e{width:4.106880px;}
._1d{width:5.151120px;}
._20{width:6.435120px;}
._1f{width:7.713120px;}
._26{width:8.740320px;}
._22{width:9.800640px;}
._25{width:10.800720px;}
._23{width:11.901360px;}
._36{width:13.446000px;}
._21{width:15.974640px;}
._27{width:17.527680px;}
._29{width:18.718320px;}
._28{width:20.169600px;}
._37{width:76.026240px;}
._35{width:78.143760px;}
._34{width:88.063920px;}
._38{width:96.559920px;}
._2f{width:127.731360px;}
._31{width:139.464000px;}
._32{width:149.294160px;}
._33{width:170.931360px;}
._2c{width:181.944000px;}
._30{width:190.584000px;}
._2e{width:192.410640px;}
._2b{width:233.064000px;}
._2a{width:234.890640px;}
._39{width:1767.480000px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,73,125);}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs7{font-size:69.811446px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:3.669336px;}
.y7c{bottom:3.780000px;}
.yc9{bottom:12.780000px;}
.yfa{bottom:22.110000px;}
.yb4{bottom:28.350598px;}
.yf0{bottom:39.345000px;}
.y6{bottom:59.940000px;}
.yf1{bottom:70.710000px;}
.y9e{bottom:88.740000px;}
.y109{bottom:93.960000px;}
.y35{bottom:99.180000px;}
.yee{bottom:101.520000px;}
.yf2{bottom:102.030000px;}
.yfe{bottom:108.540000px;}
.y9d{bottom:108.720000px;}
.y108{bottom:113.760000px;}
.yd5{bottom:114.480000px;}
.y34{bottom:119.160000px;}
.yed{bottom:121.320000px;}
.y6b{bottom:124.560000px;}
.y9c{bottom:128.520000px;}
.yf3{bottom:133.380000px;}
.y107{bottom:133.560000px;}
.yd4{bottom:134.460000px;}
.y33{bottom:138.960000px;}
.yec{bottom:141.120000px;}
.yff{bottom:141.555000px;}
.y6a{bottom:144.360000px;}
.y9b{bottom:148.320000px;}
.y106{bottom:153.360000px;}
.yd3{bottom:153.900000px;}
.y32{bottom:158.760000px;}
.yeb{bottom:161.100000px;}
.y69{bottom:164.160000px;}
.yf4{bottom:164.700000px;}
.y102{bottom:165.885000px;}
.y9a{bottom:168.120000px;}
.yd2{bottom:168.660000px;}
.y105{bottom:173.160000px;}
.y31{bottom:178.560000px;}
.yea{bottom:180.900000px;}
.y68{bottom:183.780000px;}
.y79{bottom:184.140000px;}
.yd1{bottom:186.660000px;}
.y99{bottom:187.920000px;}
.y101{bottom:191.340000px;}
.y104{bottom:193.140000px;}
.yf5{bottom:196.050000px;}
.y30{bottom:198.360000px;}
.ye9{bottom:200.730000px;}
.y78{bottom:203.970000px;}
.yd0{bottom:204.690000px;}
.yfd{bottom:206.640000px;}
.y98{bottom:207.930000px;}
.y67{bottom:212.970000px;}
.y2f{bottom:218.370000px;}
.ye8{bottom:220.530000px;}
.y77{bottom:223.770000px;}
.yf6{bottom:227.415000px;}
.y97{bottom:227.730000px;}
.ycf{bottom:228.450000px;}
.y66{bottom:232.770000px;}
.y100{bottom:236.595000px;}
.y2e{bottom:238.170000px;}
.ye7{bottom:240.330000px;}
.y76{bottom:243.570000px;}
.y96{bottom:247.530000px;}
.yce{bottom:248.610000px;}
.y65{bottom:252.570000px;}
.y2d{bottom:257.970000px;}
.yf7{bottom:258.735000px;}
.ye6{bottom:260.310000px;}
.y75{bottom:263.370000px;}
.y95{bottom:267.330000px;}
.ycd{bottom:268.410000px;}
.y64{bottom:272.370000px;}
.y2c{bottom:277.770000px;}
.ye5{bottom:280.110000px;}
.y74{bottom:283.350000px;}
.y94{bottom:287.130000px;}
.ycc{bottom:288.390000px;}
.yfc{bottom:289.155000px;}
.yf8{bottom:290.085000px;}
.y63{bottom:292.350000px;}
.y2b{bottom:297.570000px;}
.ye4{bottom:299.910000px;}
.y73{bottom:303.150000px;}
.y93{bottom:307.110000px;}
.ycb{bottom:308.190000px;}
.y62{bottom:312.150000px;}
.y2a{bottom:317.550000px;}
.ye3{bottom:319.710000px;}
.yf9{bottom:321.405000px;}
.yfb{bottom:322.125000px;}
.y72{bottom:322.950000px;}
.y92{bottom:326.910000px;}
.yca{bottom:327.990000px;}
.y61{bottom:331.950000px;}
.y29{bottom:337.350000px;}
.ye2{bottom:339.510000px;}
.yc8{bottom:342.390000px;}
.y71{bottom:342.750000px;}
.y91{bottom:346.710000px;}
.y60{bottom:351.750000px;}
.y28{bottom:357.150000px;}
.ye1{bottom:359.490000px;}
.yc7{bottom:360.390000px;}
.y70{bottom:362.550000px;}
.y90{bottom:366.510000px;}
.y5f{bottom:371.550000px;}
.y27{bottom:376.950000px;}
.yc6{bottom:378.390000px;}
.ye0{bottom:379.290000px;}
.y6f{bottom:382.170000px;}
.y8f{bottom:385.950000px;}
.y5e{bottom:391.530000px;}
.y26{bottom:396.750000px;}
.ydf{bottom:399.090000px;}
.yc5{bottom:402.150000px;}
.y8e{bottom:405.930000px;}
.y5d{bottom:411.330000px;}
.y25{bottom:416.730000px;}
.yde{bottom:418.890000px;}
.yc4{bottom:422.130000px;}
.y8d{bottom:422.490000px;}
.y5c{bottom:431.130000px;}
.y24{bottom:436.575000px;}
.ydd{bottom:438.735000px;}
.yc3{bottom:441.975000px;}
.y5b{bottom:450.975000px;}
.y23{bottom:456.375000px;}
.ydc{bottom:458.715000px;}
.yc2{bottom:461.775000px;}
.y5a{bottom:470.775000px;}
.y22{bottom:476.175000px;}
.ydb{bottom:478.515000px;}
.yc1{bottom:481.575000px;}
.y59{bottom:490.755000px;}
.y21{bottom:495.975000px;}
.yda{bottom:498.315000px;}
.yc0{bottom:501.735000px;}
.y58{bottom:510.555000px;}
.y20{bottom:515.955000px;}
.yd9{bottom:517.755000px;}
.ybf{bottom:521.715000px;}
.y57{bottom:530.355000px;}
.y1f{bottom:535.755000px;}
.yd8{bottom:537.555000px;}
.ybe{bottom:541.515000px;}
.y56{bottom:550.155000px;}
.y1e{bottom:555.555000px;}
.yd7{bottom:557.535000px;}
.ybd{bottom:561.315000px;}
.y55{bottom:569.955000px;}
.yd6{bottom:574.095000px;}
.yef{bottom:574.200000px;}
.y1d{bottom:575.355000px;}
.ybc{bottom:581.115000px;}
.y54{bottom:589.935000px;}
.y1c{bottom:595.155000px;}
.ybb{bottom:600.915000px;}
.y53{bottom:609.735000px;}
.y1b{bottom:615.135000px;}
.yba{bottom:620.535000px;}
.y52{bottom:629.535000px;}
.y1a{bottom:634.935000px;}
.yb9{bottom:640.695000px;}
.y51{bottom:649.335000px;}
.y19{bottom:654.375000px;}
.yb8{bottom:660.495000px;}
.y50{bottom:669.135000px;}
.y18{bottom:674.565000px;}
.yb7{bottom:680.325000px;}
.y4f{bottom:689.145000px;}
.y17{bottom:696.705000px;}
.yb6{bottom:700.125000px;}
.y4e{bottom:708.945000px;}
.yb5{bottom:720.105000px;}
.y16{bottom:725.505000px;}
.y103{bottom:728.385000px;}
.y4d{bottom:728.745000px;}
.yb2{bottom:736.440000px;}
.y15{bottom:745.305000px;}
.y4c{bottom:748.545000px;}
.yb1{bottom:754.485000px;}
.y8c{bottom:754.845000px;}
.y14{bottom:765.105000px;}
.y4b{bottom:768.345000px;}
.y8b{bottom:775.005000px;}
.y13{bottom:785.085000px;}
.yb0{bottom:787.425000px;}
.y4a{bottom:788.325000px;}
.y8a{bottom:794.805000px;}
.y12{bottom:804.885000px;}
.yaf{bottom:807.225000px;}
.y49{bottom:808.125000px;}
.y89{bottom:814.605000px;}
.y11{bottom:824.685000px;}
.yae{bottom:827.025000px;}
.y48{bottom:827.925000px;}
.y88{bottom:834.585000px;}
.y10{bottom:844.485000px;}
.yad{bottom:846.825000px;}
.y47{bottom:847.725000px;}
.y87{bottom:854.385000px;}
.yf{bottom:864.285000px;}
.y46{bottom:867.525000px;}
.y86{bottom:873.825000px;}
.ye{bottom:884.265000px;}
.yac{bottom:887.145000px;}
.y45{bottom:887.505000px;}
.y85{bottom:893.625000px;}
.yd{bottom:904.065000px;}
.y44{bottom:907.305000px;}
.y84{bottom:913.830000px;}
.yc{bottom:925.890000px;}
.y43{bottom:927.150000px;}
.yab{bottom:927.510000px;}
.y83{bottom:933.810000px;}
.y42{bottom:946.590000px;}
.y6e{bottom:946.950000px;}
.yaa{bottom:947.310000px;}
.yb{bottom:951.270000px;}
.y82{bottom:953.610000px;}
.ya9{bottom:963.870000px;}
.y41{bottom:966.390000px;}
.y6d{bottom:966.750000px;}
.ya{bottom:971.070000px;}
.ya8{bottom:971.430000px;}
.y81{bottom:973.410000px;}
.y9{bottom:986.010000px;}
.y40{bottom:986.370000px;}
.y6c{bottom:986.730000px;}
.y80{bottom:993.210000px;}
.ya7{bottom:996.090000px;}
.y3f{bottom:1006.530000px;}
.y8{bottom:1007.430000px;}
.y7f{bottom:1007.610000px;}
.ya6{bottom:1015.890000px;}
.y7e{bottom:1025.610000px;}
.y3e{bottom:1026.330000px;}
.y7{bottom:1030.650000px;}
.ya5{bottom:1036.590000px;}
.y7d{bottom:1043.610000px;}
.y3d{bottom:1046.130000px;}
.ya4{bottom:1056.210000px;}
.y7b{bottom:1061.610000px;}
.y3c{bottom:1065.930000px;}
.y5{bottom:1069.530000px;}
.ya3{bottom:1076.370000px;}
.y7a{bottom:1085.550000px;}
.y3b{bottom:1085.910000px;}
.ya2{bottom:1096.530000px;}
.y4{bottom:1100.310000px;}
.y3a{bottom:1105.710000px;}
.ya1{bottom:1113.090000px;}
.ya0{bottom:1120.650000px;}
.y39{bottom:1125.510000px;}
.y3{bottom:1131.270000px;}
.y38{bottom:1145.340000px;}
.y2{bottom:1162.080000px;}
.y9f{bottom:1164.780000px;}
.y37{bottom:1165.140000px;}
.y1{bottom:1193.040000px;}
.y36{bottom:1194.480000px;}
.hb{height:17.280000px;}
.h14{height:17.316000px;}
.h13{height:35.280000px;}
.h7{height:38.158594px;}
.h9{height:41.726953px;}
.h10{height:45.000588px;}
.h16{height:45.316055px;}
.h12{height:51.710920px;}
.hf{height:56.491172px;}
.hc{height:58.621992px;}
.h5{height:58.651172px;}
.h8{height:60.226875px;}
.ha{height:61.423863px;}
.h3{height:65.010937px;}
.h6{height:66.757500px;}
.h11{height:68.482029px;}
.hd{height:71.914219px;}
.h2{height:72.562500px;}
.he{height:88.891172px;}
.h4{height:96.508125px;}
.h15{height:366.660000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:37.050423px;}
.w5{width:220.890000px;}
.w8{width:362.880000px;}
.w6{width:441.795000px;}
.w3{width:656.745000px;}
.w7{width:662.685000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:4.297794px;}
.xc{left:5.594506px;}
.x4{left:8.100000px;}
.x14{left:12.525000px;}
.xa{left:16.487674px;}
.xb{left:20.637395px;}
.x15{left:47.130000px;}
.x1{left:54.179987px;}
.x18{left:73.590000px;}
.x9{left:78.390000px;}
.x1c{left:80.999987px;}
.x7{left:82.799987px;}
.x8{left:86.039987px;}
.x1d{left:108.035987px;}
.xe{left:115.415987px;}
.x3{left:118.116000px;}
.x16{left:123.735000px;}
.x19{left:143.790000px;}
.x17{left:193.935000px;}
.x1a{left:214.020000px;}
.x6{left:259.589987px;}
.x13{left:264.960000px;}
.x12{left:305.714987px;}
.x1b{left:307.080000px;}
.xf{left:336.135000px;}
.x10{left:557.025000px;}
.x11{left:627.944987px;}
.x5{left:629.924987px;}
.x2{left:804.209987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v6{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.v5{vertical-align:26.880000pt;}
.v4{vertical-align:31.360000pt;}
.v3{vertical-align:32.640000pt;}
.lsf{letter-spacing:-0.592000pt;}
.ls21{letter-spacing:-0.480000pt;}
.ls29{letter-spacing:-0.367467pt;}
.lse{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.271467pt;}
.ls13{letter-spacing:-0.230933pt;}
.lsd{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.094933pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.016640pt;}
.ls7{letter-spacing:0.033280pt;}
.ls3{letter-spacing:0.047360pt;}
.ls27{letter-spacing:0.114987pt;}
.ls1f{letter-spacing:0.120533pt;}
.ls4{letter-spacing:0.128000pt;}
.ls24{letter-spacing:0.136320pt;}
.ls1e{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.183467pt;}
.lsa{letter-spacing:0.230933pt;}
.ls20{letter-spacing:0.265600pt;}
.ls9{letter-spacing:0.271467pt;}
.ls12{letter-spacing:0.272533pt;}
.lsc{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.408960pt;}
.ls8{letter-spacing:0.504533pt;}
.ls16{letter-spacing:0.544000pt;}
.ls23{letter-spacing:0.545280pt;}
.ls28{letter-spacing:0.800000pt;}
.ls1a{letter-spacing:0.869120pt;}
.lsb{letter-spacing:0.869333pt;}
.ls0{letter-spacing:1.344000pt;}
.ls2a{letter-spacing:1.440000pt;}
.ls1c{letter-spacing:1.820160pt;}
.ls18{letter-spacing:6.321920pt;}
.ls1d{letter-spacing:6.449920pt;}
.ls1b{letter-spacing:9.057920pt;}
.ls26{letter-spacing:10.192640pt;}
.ls19{letter-spacing:16.357120pt;}
.ls11{letter-spacing:16.592640pt;}
.ls22{letter-spacing:37.072640pt;}
.ls17{letter-spacing:133.200640pt;}
.ws1{word-spacing:-15.224533pt;}
.ws4{word-spacing:-14.991467pt;}
.ws2{word-spacing:-14.720000pt;}
.ws0{word-spacing:-14.448533pt;}
.wsb{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.ws10{word-spacing:-13.510933pt;}
.wsd{word-spacing:-13.416533pt;}
.ws7{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.232640pt;}
.ws9{word-spacing:-12.960000pt;}
.wsa{word-spacing:-12.688000pt;}
.wsc{word-spacing:-11.686400pt;}
.ws3{word-spacing:-9.280000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-2462.491947pt;}
._9{margin-left:-1400.554880pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-883.525120pt;}
._d{margin-left:-611.648640pt;}
._18{margin-left:-588.320000pt;}
._e{margin-left:-586.625920pt;}
._19{margin-left:-573.689600pt;}
._a{margin-left:-507.912320pt;}
._15{margin-left:-478.826347pt;}
._1c{margin-left:-435.674880pt;}
._1b{margin-left:-422.506667pt;}
._16{margin-left:-380.545920pt;}
._f{margin-left:-191.360000pt;}
._13{margin-left:-154.880000pt;}
._14{margin-left:-141.944320pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-128.000000pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._2d{margin-left:-34.826240pt;}
._7{margin-left:-7.301120pt;}
._4{margin-left:-4.507733pt;}
._24{margin-left:-3.147093pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._1e{width:3.650560pt;}
._1d{width:4.578773pt;}
._20{width:5.720107pt;}
._1f{width:6.856107pt;}
._26{width:7.769173pt;}
._22{width:8.711680pt;}
._25{width:9.600640pt;}
._23{width:10.578987pt;}
._36{width:11.952000pt;}
._21{width:14.199680pt;}
._27{width:15.580160pt;}
._29{width:16.638507pt;}
._28{width:17.928533pt;}
._37{width:67.578880pt;}
._35{width:69.461120pt;}
._34{width:78.279040pt;}
._38{width:85.831040pt;}
._2f{width:113.538987pt;}
._31{width:123.968000pt;}
._32{width:132.705920pt;}
._33{width:151.938987pt;}
._2c{width:161.728000pt;}
._30{width:169.408000pt;}
._2e{width:171.031680pt;}
._2b{width:207.168000pt;}
._2a{width:208.791680pt;}
._39{width:1571.093333pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs7{font-size:62.054619pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:3.261632pt;}
.y7c{bottom:3.360000pt;}
.yc9{bottom:11.360000pt;}
.yfa{bottom:19.653333pt;}
.yb4{bottom:25.200531pt;}
.yf0{bottom:34.973333pt;}
.y6{bottom:53.280000pt;}
.yf1{bottom:62.853333pt;}
.y9e{bottom:78.880000pt;}
.y109{bottom:83.520000pt;}
.y35{bottom:88.160000pt;}
.yee{bottom:90.240000pt;}
.yf2{bottom:90.693333pt;}
.yfe{bottom:96.480000pt;}
.y9d{bottom:96.640000pt;}
.y108{bottom:101.120000pt;}
.yd5{bottom:101.760000pt;}
.y34{bottom:105.920000pt;}
.yed{bottom:107.840000pt;}
.y6b{bottom:110.720000pt;}
.y9c{bottom:114.240000pt;}
.yf3{bottom:118.560000pt;}
.y107{bottom:118.720000pt;}
.yd4{bottom:119.520000pt;}
.y33{bottom:123.520000pt;}
.yec{bottom:125.440000pt;}
.yff{bottom:125.826667pt;}
.y6a{bottom:128.320000pt;}
.y9b{bottom:131.840000pt;}
.y106{bottom:136.320000pt;}
.yd3{bottom:136.800000pt;}
.y32{bottom:141.120000pt;}
.yeb{bottom:143.200000pt;}
.y69{bottom:145.920000pt;}
.yf4{bottom:146.400000pt;}
.y102{bottom:147.453333pt;}
.y9a{bottom:149.440000pt;}
.yd2{bottom:149.920000pt;}
.y105{bottom:153.920000pt;}
.y31{bottom:158.720000pt;}
.yea{bottom:160.800000pt;}
.y68{bottom:163.360000pt;}
.y79{bottom:163.680000pt;}
.yd1{bottom:165.920000pt;}
.y99{bottom:167.040000pt;}
.y101{bottom:170.080000pt;}
.y104{bottom:171.680000pt;}
.yf5{bottom:174.266667pt;}
.y30{bottom:176.320000pt;}
.ye9{bottom:178.426667pt;}
.y78{bottom:181.306667pt;}
.yd0{bottom:181.946667pt;}
.yfd{bottom:183.680000pt;}
.y98{bottom:184.826667pt;}
.y67{bottom:189.306667pt;}
.y2f{bottom:194.106667pt;}
.ye8{bottom:196.026667pt;}
.y77{bottom:198.906667pt;}
.yf6{bottom:202.146667pt;}
.y97{bottom:202.426667pt;}
.ycf{bottom:203.066667pt;}
.y66{bottom:206.906667pt;}
.y100{bottom:210.306667pt;}
.y2e{bottom:211.706667pt;}
.ye7{bottom:213.626667pt;}
.y76{bottom:216.506667pt;}
.y96{bottom:220.026667pt;}
.yce{bottom:220.986667pt;}
.y65{bottom:224.506667pt;}
.y2d{bottom:229.306667pt;}
.yf7{bottom:229.986667pt;}
.ye6{bottom:231.386667pt;}
.y75{bottom:234.106667pt;}
.y95{bottom:237.626667pt;}
.ycd{bottom:238.586667pt;}
.y64{bottom:242.106667pt;}
.y2c{bottom:246.906667pt;}
.ye5{bottom:248.986667pt;}
.y74{bottom:251.866667pt;}
.y94{bottom:255.226667pt;}
.ycc{bottom:256.346667pt;}
.yfc{bottom:257.026667pt;}
.yf8{bottom:257.853333pt;}
.y63{bottom:259.866667pt;}
.y2b{bottom:264.506667pt;}
.ye4{bottom:266.586667pt;}
.y73{bottom:269.466667pt;}
.y93{bottom:272.986667pt;}
.ycb{bottom:273.946667pt;}
.y62{bottom:277.466667pt;}
.y2a{bottom:282.266667pt;}
.ye3{bottom:284.186667pt;}
.yf9{bottom:285.693333pt;}
.yfb{bottom:286.333333pt;}
.y72{bottom:287.066667pt;}
.y92{bottom:290.586667pt;}
.yca{bottom:291.546667pt;}
.y61{bottom:295.066667pt;}
.y29{bottom:299.866667pt;}
.ye2{bottom:301.786667pt;}
.yc8{bottom:304.346667pt;}
.y71{bottom:304.666667pt;}
.y91{bottom:308.186667pt;}
.y60{bottom:312.666667pt;}
.y28{bottom:317.466667pt;}
.ye1{bottom:319.546667pt;}
.yc7{bottom:320.346667pt;}
.y70{bottom:322.266667pt;}
.y90{bottom:325.786667pt;}
.y5f{bottom:330.266667pt;}
.y27{bottom:335.066667pt;}
.yc6{bottom:336.346667pt;}
.ye0{bottom:337.146667pt;}
.y6f{bottom:339.706667pt;}
.y8f{bottom:343.066667pt;}
.y5e{bottom:348.026667pt;}
.y26{bottom:352.666667pt;}
.ydf{bottom:354.746667pt;}
.yc5{bottom:357.466667pt;}
.y8e{bottom:360.826667pt;}
.y5d{bottom:365.626667pt;}
.y25{bottom:370.426667pt;}
.yde{bottom:372.346667pt;}
.yc4{bottom:375.226667pt;}
.y8d{bottom:375.546667pt;}
.y5c{bottom:383.226667pt;}
.y24{bottom:388.066667pt;}
.ydd{bottom:389.986667pt;}
.yc3{bottom:392.866667pt;}
.y5b{bottom:400.866667pt;}
.y23{bottom:405.666667pt;}
.ydc{bottom:407.746667pt;}
.yc2{bottom:410.466667pt;}
.y5a{bottom:418.466667pt;}
.y22{bottom:423.266667pt;}
.ydb{bottom:425.346667pt;}
.yc1{bottom:428.066667pt;}
.y59{bottom:436.226667pt;}
.y21{bottom:440.866667pt;}
.yda{bottom:442.946667pt;}
.yc0{bottom:445.986667pt;}
.y58{bottom:453.826667pt;}
.y20{bottom:458.626667pt;}
.yd9{bottom:460.226667pt;}
.ybf{bottom:463.746667pt;}
.y57{bottom:471.426667pt;}
.y1f{bottom:476.226667pt;}
.yd8{bottom:477.826667pt;}
.ybe{bottom:481.346667pt;}
.y56{bottom:489.026667pt;}
.y1e{bottom:493.826667pt;}
.yd7{bottom:495.586667pt;}
.ybd{bottom:498.946667pt;}
.y55{bottom:506.626667pt;}
.yd6{bottom:510.306667pt;}
.yef{bottom:510.400000pt;}
.y1d{bottom:511.426667pt;}
.ybc{bottom:516.546667pt;}
.y54{bottom:524.386667pt;}
.y1c{bottom:529.026667pt;}
.ybb{bottom:534.146667pt;}
.y53{bottom:541.986667pt;}
.y1b{bottom:546.786667pt;}
.yba{bottom:551.586667pt;}
.y52{bottom:559.586667pt;}
.y1a{bottom:564.386667pt;}
.yb9{bottom:569.506667pt;}
.y51{bottom:577.186667pt;}
.y19{bottom:581.666667pt;}
.yb8{bottom:587.106667pt;}
.y50{bottom:594.786667pt;}
.y18{bottom:599.613333pt;}
.yb7{bottom:604.733333pt;}
.y4f{bottom:612.573333pt;}
.y17{bottom:619.293333pt;}
.yb6{bottom:622.333333pt;}
.y4e{bottom:630.173333pt;}
.yb5{bottom:640.093333pt;}
.y16{bottom:644.893333pt;}
.y103{bottom:647.453333pt;}
.y4d{bottom:647.773333pt;}
.yb2{bottom:654.613333pt;}
.y15{bottom:662.493333pt;}
.y4c{bottom:665.373333pt;}
.yb1{bottom:670.653333pt;}
.y8c{bottom:670.973333pt;}
.y14{bottom:680.093333pt;}
.y4b{bottom:682.973333pt;}
.y8b{bottom:688.893333pt;}
.y13{bottom:697.853333pt;}
.yb0{bottom:699.933333pt;}
.y4a{bottom:700.733333pt;}
.y8a{bottom:706.493333pt;}
.y12{bottom:715.453333pt;}
.yaf{bottom:717.533333pt;}
.y49{bottom:718.333333pt;}
.y89{bottom:724.093333pt;}
.y11{bottom:733.053333pt;}
.yae{bottom:735.133333pt;}
.y48{bottom:735.933333pt;}
.y88{bottom:741.853333pt;}
.y10{bottom:750.653333pt;}
.yad{bottom:752.733333pt;}
.y47{bottom:753.533333pt;}
.y87{bottom:759.453333pt;}
.yf{bottom:768.253333pt;}
.y46{bottom:771.133333pt;}
.y86{bottom:776.733333pt;}
.ye{bottom:786.013333pt;}
.yac{bottom:788.573333pt;}
.y45{bottom:788.893333pt;}
.y85{bottom:794.333333pt;}
.yd{bottom:803.613333pt;}
.y44{bottom:806.493333pt;}
.y84{bottom:812.293333pt;}
.yc{bottom:823.013333pt;}
.y43{bottom:824.133333pt;}
.yab{bottom:824.453333pt;}
.y83{bottom:830.053333pt;}
.y42{bottom:841.413333pt;}
.y6e{bottom:841.733333pt;}
.yaa{bottom:842.053333pt;}
.yb{bottom:845.573333pt;}
.y82{bottom:847.653333pt;}
.ya9{bottom:856.773333pt;}
.y41{bottom:859.013333pt;}
.y6d{bottom:859.333333pt;}
.ya{bottom:863.173333pt;}
.ya8{bottom:863.493333pt;}
.y81{bottom:865.253333pt;}
.y9{bottom:876.453333pt;}
.y40{bottom:876.773333pt;}
.y6c{bottom:877.093333pt;}
.y80{bottom:882.853333pt;}
.ya7{bottom:885.413333pt;}
.y3f{bottom:894.693333pt;}
.y8{bottom:895.493333pt;}
.y7f{bottom:895.653333pt;}
.ya6{bottom:903.013333pt;}
.y7e{bottom:911.653333pt;}
.y3e{bottom:912.293333pt;}
.y7{bottom:916.133333pt;}
.ya5{bottom:921.413333pt;}
.y7d{bottom:927.653333pt;}
.y3d{bottom:929.893333pt;}
.ya4{bottom:938.853333pt;}
.y7b{bottom:943.653333pt;}
.y3c{bottom:947.493333pt;}
.y5{bottom:950.693333pt;}
.ya3{bottom:956.773333pt;}
.y7a{bottom:964.933333pt;}
.y3b{bottom:965.253333pt;}
.ya2{bottom:974.693333pt;}
.y4{bottom:978.053333pt;}
.y3a{bottom:982.853333pt;}
.ya1{bottom:989.413333pt;}
.ya0{bottom:996.133333pt;}
.y39{bottom:1000.453333pt;}
.y3{bottom:1005.573333pt;}
.y38{bottom:1018.080000pt;}
.y2{bottom:1032.960000pt;}
.y9f{bottom:1035.360000pt;}
.y37{bottom:1035.680000pt;}
.y1{bottom:1060.480000pt;}
.y36{bottom:1061.760000pt;}
.hb{height:15.360000pt;}
.h14{height:15.392000pt;}
.h13{height:31.360000pt;}
.h7{height:33.918750pt;}
.h9{height:37.090625pt;}
.h10{height:40.000523pt;}
.h16{height:40.280938pt;}
.h12{height:45.965262pt;}
.hf{height:50.214375pt;}
.hc{height:52.108438pt;}
.h5{height:52.134375pt;}
.h8{height:53.535000pt;}
.ha{height:54.598989pt;}
.h3{height:57.787500pt;}
.h6{height:59.340000pt;}
.h11{height:60.872915pt;}
.hd{height:63.923750pt;}
.h2{height:64.500000pt;}
.he{height:79.014375pt;}
.h4{height:85.785000pt;}
.h15{height:325.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:32.933709pt;}
.w5{width:196.346667pt;}
.w8{width:322.560000pt;}
.w6{width:392.706667pt;}
.w3{width:583.773333pt;}
.w7{width:589.053333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:3.820261pt;}
.xc{left:4.972894pt;}
.x4{left:7.200000pt;}
.x14{left:11.133333pt;}
.xa{left:14.655710pt;}
.xb{left:18.344351pt;}
.x15{left:41.893333pt;}
.x1{left:48.159988pt;}
.x18{left:65.413333pt;}
.x9{left:69.680000pt;}
.x1c{left:71.999988pt;}
.x7{left:73.599988pt;}
.x8{left:76.479988pt;}
.x1d{left:96.031988pt;}
.xe{left:102.591988pt;}
.x3{left:104.992000pt;}
.x16{left:109.986667pt;}
.x19{left:127.813333pt;}
.x17{left:172.386667pt;}
.x1a{left:190.240000pt;}
.x6{left:230.746655pt;}
.x13{left:235.520000pt;}
.x12{left:271.746655pt;}
.x1b{left:272.960000pt;}
.xf{left:298.786667pt;}
.x10{left:495.133333pt;}
.x11{left:558.173322pt;}
.x5{left:559.933322pt;}
.x2{left:714.853322pt;}
}




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