
    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_7f89bb0455159532ca436d0a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_4999d08b07af2ae816303001.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_63cfa557b151383c9e0048e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_34cfb6651a286266fa2bddff.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.758789;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_d99d999fd928b58d0515cedb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966797;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_b80c5cd63929deaf26c11245.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.941406;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:-13.104000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:4.896000px;}
.ls21{letter-spacing:-5.310000px;}
.ls15{letter-spacing:-0.288000px;}
.ls2e{letter-spacing:-0.208200px;}
.ls8{letter-spacing:-0.106800px;}
.ls7{letter-spacing:-0.053280px;}
.ls31{letter-spacing:-0.037440px;}
.ls1c{letter-spacing:-0.034560px;}
.ls1a{letter-spacing:-0.025920px;}
.ls38{letter-spacing:-0.021300px;}
.ls9{letter-spacing:-0.018720px;}
.ls1b{letter-spacing:-0.017280px;}
.ls0{letter-spacing:0.000000px;}
.ls3b{letter-spacing:0.000006px;}
.ls1f{letter-spacing:0.008640px;}
.ls1{letter-spacing:0.018720px;}
.ls1d{letter-spacing:0.025920px;}
.ls3a{letter-spacing:0.029400px;}
.ls2d{letter-spacing:0.034560px;}
.lsb{letter-spacing:0.106800px;}
.ls37{letter-spacing:0.109200px;}
.ls3f{letter-spacing:0.144000px;}
.ls6{letter-spacing:0.155400px;}
.ls2a{letter-spacing:0.180000px;}
.ls2f{letter-spacing:0.180288px;}
.ls2b{letter-spacing:0.214560px;}
.ls27{letter-spacing:0.216000px;}
.ls13{letter-spacing:0.270000px;}
.ls2c{letter-spacing:0.280200px;}
.ls3d{letter-spacing:0.288000px;}
.ls30{letter-spacing:0.341280px;}
.ls32{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.413280px;}
.ls34{letter-spacing:0.504000px;}
.ls39{letter-spacing:0.734688px;}
.ls36{letter-spacing:1.494720px;}
.ls12{letter-spacing:1.777248px;}
.ls33{letter-spacing:2.214720px;}
.ls14{letter-spacing:2.376000px;}
.ls3e{letter-spacing:24.077664px;}
.ls3c{letter-spacing:24.192000px;}
.ls22{letter-spacing:31.852224px;}
.ls25{letter-spacing:31.966560px;}
.ls1e{letter-spacing:36.425664px;}
.ls18{letter-spacing:36.540000px;}
.ls24{letter-spacing:40.999104px;}
.ls23{letter-spacing:41.113440px;}
.ls20{letter-spacing:46.144224px;}
.ls19{letter-spacing:46.258560px;}
.ls4{letter-spacing:49.608000px;}
.ls5{letter-spacing:59.212224px;}
.ls3{letter-spacing:59.326560px;}
.ls2{letter-spacing:66.529440px;}
.ls17{letter-spacing:71.560224px;}
.ls16{letter-spacing:71.674560px;}
.lse{letter-spacing:76.133664px;}
.lsc{letter-spacing:76.248000px;}
.ls10{letter-spacing:80.707104px;}
.lsf{letter-spacing:80.821440px;}
.ls26{letter-spacing:85.852224px;}
.lsd{letter-spacing:85.966560px;}
.ls28{letter-spacing:90.425664px;}
.ls11{letter-spacing:90.540000px;}
.ls35{letter-spacing:94.999104px;}
.ls29{letter-spacing:95.113440px;}
.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;}
}
.ws5{word-spacing:-46.637280px;}
.ws8{word-spacing:-33.426720px;}
.wsd{word-spacing:-31.665312px;}
.ws16{word-spacing:-31.625280px;}
.ws7{word-spacing:-30.024000px;}
.wsa{word-spacing:-29.736000px;}
.ws9{word-spacing:-28.462752px;}
.ws14{word-spacing:-28.457280px;}
.ws13{word-spacing:-28.422720px;}
.ws0{word-spacing:-26.621280px;}
.ws6{word-spacing:-26.602560px;}
.ws12{word-spacing:-26.413080px;}
.ws15{word-spacing:-25.524000px;}
.ws10{word-spacing:-25.200000px;}
.ws11{word-spacing:-25.060032px;}
.wse{word-spacing:-25.020000px;}
.wsf{word-spacing:-23.418720px;}
.wsb{word-spacing:-21.591360px;}
.wsc{word-spacing:-21.582720px;}
.ws18{word-spacing:-20.056032px;}
.ws17{word-spacing:-20.016000px;}
.ws3{word-spacing:-16.613280px;}
.ws4{word-spacing:-16.506480px;}
.ws2{word-spacing:-11.364360px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-2078.533680px;}
._b{margin-left:-10.025280px;}
._a{margin-left:-9.002880px;}
._2{margin-left:-7.296000px;}
._9{margin-left:-5.581296px;}
._5{margin-left:-3.936240px;}
._7{margin-left:-2.160000px;}
._0{margin-left:-1.149120px;}
._1{width:1.915200px;}
._3{width:3.600000px;}
._c{width:5.490000px;}
._6{width:1295.645760px;}
._8{width:1296.795600px;}
.fc4{color:rgb(0,76,166);}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(11,53,111);}
.fc1{color:rgb(137,137,137);}
.fc0{color:rgb(60,144,197);}
.fs3{font-size:40.320000px;}
.fs14{font-size:48.240000px;}
.fs15{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:72.000000px;}
.fs13{font-size:72.144000px;}
.fse{font-size:77.760000px;}
.fs10{font-size:77.904000px;}
.fs11{font-size:84.240000px;}
.fs12{font-size:84.384000px;}
.fsb{font-size:90.000000px;}
.fsf{font-size:90.144000px;}
.fs0{font-size:95.760000px;}
.fs7{font-size:95.904000px;}
.fs9{font-size:102.240000px;}
.fsa{font-size:102.384000px;}
.fs6{font-size:108.000000px;}
.fs8{font-size:108.144000px;}
.fsc{font-size:113.760000px;}
.fsd{font-size:113.904000px;}
.fs5{font-size:120.240000px;}
.fs4{font-size:167.760000px;}
.y0{bottom:0.000000px;}
.y3{bottom:19.080000px;}
.y2{bottom:31.392000px;}
.y1{bottom:74.592000px;}
.y112{bottom:122.868000px;}
.yb5{bottom:126.648000px;}
.y9e{bottom:130.248000px;}
.yee{bottom:130.788000px;}
.y85{bottom:131.688000px;}
.y24{bottom:137.268000px;}
.y18{bottom:137.628000px;}
.y30{bottom:139.788000px;}
.y52{bottom:140.868000px;}
.y74{bottom:141.048000px;}
.y100{bottom:142.308000px;}
.y43{bottom:143.028000px;}
.yc0{bottom:145.548000px;}
.y5f{bottom:146.448000px;}
.yc9{bottom:151.305000px;}
.yf{bottom:152.745000px;}
.y9d{bottom:153.285000px;}
.ya8{bottom:153.465000px;}
.yb4{bottom:154.545000px;}
.y122{bottom:155.775000px;}
.ye1{bottom:156.345000px;}
.y84{bottom:156.705000px;}
.y90{bottom:158.685000px;}
.y2f{bottom:161.385000px;}
.y3b{bottom:163.185000px;}
.yed{bottom:164.985000px;}
.yff{bottom:166.785000px;}
.y51{bottom:167.865000px;}
.y109{bottom:168.585000px;}
.y17{bottom:170.025000px;}
.y23{bottom:170.745000px;}
.y121{bottom:171.615000px;}
.y73{bottom:172.365000px;}
.y83{bottom:174.345000px;}
.y69{bottom:175.065000px;}
.y5e{bottom:176.505000px;}
.y42{bottom:179.385000px;}
.yb3{bottom:183.345000px;}
.y9c{bottom:183.705000px;}
.y8f{bottom:184.965000px;}
.ye0{bottom:185.145000px;}
.y3a{bottom:189.105000px;}
.y2e{bottom:190.545000px;}
.yc8{bottom:190.725000px;}
.y120{bottom:195.765000px;}
.ybf{bottom:196.305000px;}
.y22{bottom:196.665000px;}
.yf4{bottom:197.025000px;}
.y72{bottom:198.330000px;}
.yfe{bottom:198.870000px;}
.yd7{bottom:199.590000px;}
.y82{bottom:199.950000px;}
.y68{bottom:201.030000px;}
.y108{bottom:201.930000px;}
.y5d{bottom:206.790000px;}
.y111{bottom:207.510000px;}
.yb2{bottom:211.290000px;}
.y8e{bottom:211.470000px;}
.ya7{bottom:212.910000px;}
.y9b{bottom:214.350000px;}
.y2d{bottom:220.470000px;}
.y39{bottom:222.450000px;}
.yfd{bottom:223.350000px;}
.yd6{bottom:224.790000px;}
.y45{bottom:225.030000px;}
.y50{bottom:225.330000px;}
.y81{bottom:226.050000px;}
.yf3{bottom:229.470000px;}
.y21{bottom:230.190000px;}
.y11f{bottom:230.370000px;}
.y71{bottom:231.630000px;}
.ye{bottom:234.510000px;}
.y67{bottom:235.050000px;}
.y107{bottom:235.410000px;}
.y5c{bottom:237.030000px;}
.yec{bottom:237.930000px;}
.y8d{bottom:238.470000px;}
.yb1{bottom:241.170000px;}
.y9a{bottom:244.950000px;}
.ya6{bottom:246.930000px;}
.y38{bottom:248.370000px;}
.y44{bottom:248.970000px;}
.ybe{bottom:249.090000px;}
.yd5{bottom:250.170000px;}
.y80{bottom:251.070000px;}
.y4f{bottom:251.610000px;}
.yfc{bottom:255.390000px;}
.y20{bottom:256.110000px;}
.yeb{bottom:260.970000px;}
.ydf{bottom:261.690000px;}
.yc7{bottom:262.230000px;}
.y16{bottom:264.210000px;}
.y11e{bottom:264.750000px;}
.y70{bottom:265.830000px;}
.y5b{bottom:267.810000px;}
.y7f{bottom:268.710000px;}
.y106{bottom:268.890000px;}
.y66{bottom:271.050000px;}
.y99{bottom:276.090000px;}
.yd4{bottom:276.270000px;}
.y4e{bottom:278.430000px;}
.yfb{bottom:279.870000px;}
.y110{bottom:280.590000px;}
.y37{bottom:281.850000px;}
.y1f{bottom:289.410000px;}
.yea{bottom:291.570000px;}
.y7e{bottom:294.270000px;}
.yde{bottom:295.170000px;}
.y65{bottom:296.970000px;}
.y2c{bottom:298.590000px;}
.y11d{bottom:299.130000px;}
.y8c{bottom:300.750000px;}
.ybd{bottom:301.470000px;}
.y15{bottom:301.650000px;}
.y105{bottom:302.190000px;}
.yd{bottom:305.430000px;}
.y98{bottom:308.850000px;}
.yfa{bottom:312.450000px;}
.ye9{bottom:314.610000px;}
.y36{bottom:316.050000px;}
.ya5{bottom:316.410000px;}
.yd3{bottom:319.110000px;}
.yb0{bottom:319.470000px;}
.y7d{bottom:320.370000px;}
.y1e{bottom:323.610000px;}
.yc6{bottom:326.130000px;}
.ybc{bottom:326.670000px;}
.y8b{bottom:327.030000px;}
.y2b{bottom:327.750000px;}
.ydd{bottom:328.470000px;}
.y4d{bottom:330.270000px;}
.y64{bottom:330.450000px;}
.y10f{bottom:331.170000px;}
.y97{bottom:331.890000px;}
.y11c{bottom:333.690000px;}
.y14{bottom:334.050000px;}
.yc{bottom:335.850000px;}
.yf9{bottom:339.810000px;}
.y6f{bottom:341.610000px;}
.yd2{bottom:344.130000px;}
.y7c{bottom:345.390000px;}
.ye8{bottom:345.750000px;}
.yaf{bottom:348.450000px;}
.yf2{bottom:348.810000px;}
.ya4{bottom:349.890000px;}
.ybb{bottom:351.870000px;}
.y10e{bottom:352.770000px;}
.y11b{bottom:353.130000px;}
.y8a{bottom:354.030000px;}
.y96{bottom:354.930000px;}
.y4c{bottom:356.580000px;}
.y5a{bottom:356.760000px;}
.y2a{bottom:357.660000px;}
.yc5{bottom:358.200000px;}
.y1d{bottom:360.180000px;}
.yd1{bottom:361.800000px;}
.ydc{bottom:361.980000px;}
.y63{bottom:364.500000px;}
.yb{bottom:366.480000px;}
.y104{bottom:369.180000px;}
.y7b{bottom:370.980000px;}
.y6e{bottom:372.240000px;}
.yba{bottom:377.280000px;}
.yae{bottom:378.360000px;}
.ye7{bottom:378.540000px;}
.y4b{bottom:382.680000px;}
.yf1{bottom:382.860000px;}
.ya3{bottom:383.220000px;}
.y95{bottom:385.560000px;}
.y59{bottom:386.820000px;}
.yd0{bottom:387.360000px;}
.y11a{bottom:387.540000px;}
.yc4{bottom:390.240000px;}
.ydb{bottom:396.180000px;}
.ya{bottom:397.080000px;}
.y1c{bottom:397.620000px;}
.y62{bottom:401.940000px;}
.y103{bottom:402.480000px;}
.y35{bottom:402.840000px;}
.y6d{bottom:403.380000px;}
.y119{bottom:406.980000px;}
.y94{bottom:408.600000px;}
.ye6{bottom:409.140000px;}
.y58{bottom:409.500000px;}
.y4a{bottom:409.680000px;}
.ycf{bottom:413.460000px;}
.y7a{bottom:414.720000px;}
.y10d{bottom:415.260000px;}
.ya2{bottom:416.700000px;}
.y41{bottom:418.140000px;}
.yf0{bottom:419.580000px;}
.yc3{bottom:422.100000px;}
.yf8{bottom:423.900000px;}
.y89{bottom:426.420000px;}
.y9{bottom:427.500000px;}
.y102{bottom:428.400000px;}
.y13{bottom:428.760000px;}
.yb9{bottom:429.840000px;}
.yce{bottom:431.100000px;}
.y29{bottom:435.780000px;}
.y6c{bottom:436.860000px;}
.y93{bottom:439.020000px;}
.y57{bottom:439.740000px;}
.ye5{bottom:440.280000px;}
.y118{bottom:441.360000px;}
.y40{bottom:442.080000px;}
.yf7{bottom:448.380000px;}
.ya1{bottom:450.180000px;}
.y88{bottom:452.700000px;}
.yc2{bottom:454.140000px;}
.y101{bottom:454.320000px;}
.yb8{bottom:455.220000px;}
.ycd{bottom:456.480000px;}
.yad{bottom:456.660000px;}
.yef{bottom:457.020000px;}
.y28{bottom:457.380000px;}
.y8{bottom:458.100000px;}
.y117{bottom:460.800000px;}
.y12{bottom:461.160000px;}
.y34{bottom:462.240000px;}
.y56{bottom:462.420000px;}
.y79{bottom:465.300000px;}
.y3f{bottom:466.020000px;}
.y49{bottom:467.100000px;}
.y92{bottom:470.340000px;}
.y6b{bottom:471.060000px;}
.yda{bottom:472.680000px;}
.ye4{bottom:473.040000px;}
.y87{bottom:479.700000px;}
.y1b{bottom:480.240000px;}
.yf6{bottom:480.960000px;}
.yb7{bottom:481.680000px;}
.ycc{bottom:482.580000px;}
.ya0{bottom:483.480000px;}
.y61{bottom:485.280000px;}
.yac{bottom:485.640000px;}
.yc1{bottom:486.180000px;}
.y27{bottom:486.540000px;}
.y7{bottom:489.240000px;}
.y3e{bottom:490.500000px;}
.y55{bottom:492.660000px;}
.y48{bottom:493.380000px;}
.y116{bottom:495.360000px;}
.y33{bottom:495.720000px;}
.ye3{bottom:496.080000px;}
.yd9{bottom:498.600000px;}
.y10c{bottom:499.320000px;}
.y91{bottom:504.360000px;}
.ycb{bottom:508.140000px;}
.y1a{bottom:514.440000px;}
.yab{bottom:514.800000px;}
.y26{bottom:516.450000px;}
.y9f{bottom:516.990000px;}
.y78{bottom:518.070000px;}
.y3d{bottom:518.250000px;}
.y47{bottom:520.230000px;}
.y60{bottom:521.850000px;}
.y54{bottom:523.470000px;}
.ye2{bottom:526.710000px;}
.y32{bottom:529.050000px;}
.y115{bottom:529.770000px;}
.y10b{bottom:530.670000px;}
.yd8{bottom:531.930000px;}
.yb6{bottom:534.450000px;}
.yca{bottom:535.170000px;}
.yaa{bottom:543.990000px;}
.y77{bottom:544.530000px;}
.y19{bottom:551.010000px;}
.y86{bottom:552.090000px;}
.y11{bottom:556.050000px;}
.y6a{bottom:557.850000px;}
.y6{bottom:560.190000px;}
.y10a{bottom:560.550000px;}
.y31{bottom:563.250000px;}
.y114{bottom:564.150000px;}
.ya9{bottom:565.590000px;}
.yf5{bottom:565.770000px;}
.y76{bottom:570.990000px;}
.y10{bottom:588.450000px;}
.y53{bottom:590.970000px;}
.y5{bottom:592.050000px;}
.y46{bottom:593.130000px;}
.y25{bottom:595.290000px;}
.y3c{bottom:596.010000px;}
.y75{bottom:597.990000px;}
.y113{bottom:598.710000px;}
.y4{bottom:722.085000px;}
.h19{height:50.312812px;}
.h7{height:54.597656px;}
.h1a{height:56.320312px;}
.h2{height:62.327813px;}
.h16{height:69.996445px;}
.h13{height:70.931602px;}
.h17{height:75.093750px;}
.h18{height:75.243937px;}
.h14{height:75.731484px;}
.h15{height:79.998047px;}
.he{height:81.101250px;}
.h10{height:81.251437px;}
.h11{height:87.859687px;}
.h12{height:88.009875px;}
.hb{height:93.867188px;}
.hf{height:94.017375px;}
.h1{height:99.874688px;}
.h6{height:100.024875px;}
.h9{height:106.633125px;}
.ha{height:106.783312px;}
.h5{height:112.640625px;}
.h8{height:112.790813px;}
.hc{height:118.648125px;}
.hd{height:118.798312px;}
.h4{height:125.406562px;}
.h3{height:174.968437px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x3{left:101.951979px;}
.x5{left:275.939979px;}
.x12{left:296.279979px;}
.x8{left:316.439979px;}
.xc{left:329.939979px;}
.x6{left:356.939979px;}
.xd{left:383.939979px;}
.xb{left:397.439979px;}
.x9{left:410.939979px;}
.xa{left:451.439979px;}
.x10{left:464.939979px;}
.x11{left:505.439979px;}
.x4{left:534.494979px;}
.x13{left:830.159979px;}
.x1{left:1021.319979px;}
.xe{left:1027.949979px;}
.x2{left:1078.739979px;}
.xf{left:1311.809979px;}
.x7{left:1321.019979px;}
@media print{
.v1{vertical-align:-11.648000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:4.352000pt;}
.ls21{letter-spacing:-4.720000pt;}
.ls15{letter-spacing:-0.256000pt;}
.ls2e{letter-spacing:-0.185067pt;}
.ls8{letter-spacing:-0.094933pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls31{letter-spacing:-0.033280pt;}
.ls1c{letter-spacing:-0.030720pt;}
.ls1a{letter-spacing:-0.023040pt;}
.ls38{letter-spacing:-0.018933pt;}
.ls9{letter-spacing:-0.016640pt;}
.ls1b{letter-spacing:-0.015360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3b{letter-spacing:0.000005pt;}
.ls1f{letter-spacing:0.007680pt;}
.ls1{letter-spacing:0.016640pt;}
.ls1d{letter-spacing:0.023040pt;}
.ls3a{letter-spacing:0.026133pt;}
.ls2d{letter-spacing:0.030720pt;}
.lsb{letter-spacing:0.094933pt;}
.ls37{letter-spacing:0.097067pt;}
.ls3f{letter-spacing:0.128000pt;}
.ls6{letter-spacing:0.138133pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls2f{letter-spacing:0.160256pt;}
.ls2b{letter-spacing:0.190720pt;}
.ls27{letter-spacing:0.192000pt;}
.ls13{letter-spacing:0.240000pt;}
.ls2c{letter-spacing:0.249067pt;}
.ls3d{letter-spacing:0.256000pt;}
.ls30{letter-spacing:0.303360pt;}
.ls32{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.367360pt;}
.ls34{letter-spacing:0.448000pt;}
.ls39{letter-spacing:0.653056pt;}
.ls36{letter-spacing:1.328640pt;}
.ls12{letter-spacing:1.579776pt;}
.ls33{letter-spacing:1.968640pt;}
.ls14{letter-spacing:2.112000pt;}
.ls3e{letter-spacing:21.402368pt;}
.ls3c{letter-spacing:21.504000pt;}
.ls22{letter-spacing:28.313088pt;}
.ls25{letter-spacing:28.414720pt;}
.ls1e{letter-spacing:32.378368pt;}
.ls18{letter-spacing:32.480000pt;}
.ls24{letter-spacing:36.443648pt;}
.ls23{letter-spacing:36.545280pt;}
.ls20{letter-spacing:41.017088pt;}
.ls19{letter-spacing:41.118720pt;}
.ls4{letter-spacing:44.096000pt;}
.ls5{letter-spacing:52.633088pt;}
.ls3{letter-spacing:52.734720pt;}
.ls2{letter-spacing:59.137280pt;}
.ls17{letter-spacing:63.609088pt;}
.ls16{letter-spacing:63.710720pt;}
.lse{letter-spacing:67.674368pt;}
.lsc{letter-spacing:67.776000pt;}
.ls10{letter-spacing:71.739648pt;}
.lsf{letter-spacing:71.841280pt;}
.ls26{letter-spacing:76.313088pt;}
.lsd{letter-spacing:76.414720pt;}
.ls28{letter-spacing:80.378368pt;}
.ls11{letter-spacing:80.480000pt;}
.ls35{letter-spacing:84.443648pt;}
.ls29{letter-spacing:84.545280pt;}
.ws5{word-spacing:-41.455360pt;}
.ws8{word-spacing:-29.712640pt;}
.wsd{word-spacing:-28.146944pt;}
.ws16{word-spacing:-28.111360pt;}
.ws7{word-spacing:-26.688000pt;}
.wsa{word-spacing:-26.432000pt;}
.ws9{word-spacing:-25.300224pt;}
.ws14{word-spacing:-25.295360pt;}
.ws13{word-spacing:-25.264640pt;}
.ws0{word-spacing:-23.663360pt;}
.ws6{word-spacing:-23.646720pt;}
.ws12{word-spacing:-23.478293pt;}
.ws15{word-spacing:-22.688000pt;}
.ws10{word-spacing:-22.400000pt;}
.ws11{word-spacing:-22.275584pt;}
.wse{word-spacing:-22.240000pt;}
.wsf{word-spacing:-20.816640pt;}
.wsb{word-spacing:-19.192320pt;}
.wsc{word-spacing:-19.184640pt;}
.ws18{word-spacing:-17.827584pt;}
.ws17{word-spacing:-17.792000pt;}
.ws3{word-spacing:-14.767360pt;}
.ws4{word-spacing:-14.672427pt;}
.ws2{word-spacing:-10.101653pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-1847.585493pt;}
._b{margin-left:-8.911360pt;}
._a{margin-left:-8.002560pt;}
._2{margin-left:-6.485333pt;}
._9{margin-left:-4.961152pt;}
._5{margin-left:-3.498880pt;}
._7{margin-left:-1.920000pt;}
._0{margin-left:-1.021440pt;}
._1{width:1.702400pt;}
._3{width:3.200000pt;}
._c{width:4.880000pt;}
._6{width:1151.685120pt;}
._8{width:1152.707200pt;}
.fs3{font-size:35.840000pt;}
.fs14{font-size:42.880000pt;}
.fs15{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:64.000000pt;}
.fs13{font-size:64.128000pt;}
.fse{font-size:69.120000pt;}
.fs10{font-size:69.248000pt;}
.fs11{font-size:74.880000pt;}
.fs12{font-size:75.008000pt;}
.fsb{font-size:80.000000pt;}
.fsf{font-size:80.128000pt;}
.fs0{font-size:85.120000pt;}
.fs7{font-size:85.248000pt;}
.fs9{font-size:90.880000pt;}
.fsa{font-size:91.008000pt;}
.fs6{font-size:96.000000pt;}
.fs8{font-size:96.128000pt;}
.fsc{font-size:101.120000pt;}
.fsd{font-size:101.248000pt;}
.fs5{font-size:106.880000pt;}
.fs4{font-size:149.120000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:16.960000pt;}
.y2{bottom:27.904000pt;}
.y1{bottom:66.304000pt;}
.y112{bottom:109.216000pt;}
.yb5{bottom:112.576000pt;}
.y9e{bottom:115.776000pt;}
.yee{bottom:116.256000pt;}
.y85{bottom:117.056000pt;}
.y24{bottom:122.016000pt;}
.y18{bottom:122.336000pt;}
.y30{bottom:124.256000pt;}
.y52{bottom:125.216000pt;}
.y74{bottom:125.376000pt;}
.y100{bottom:126.496000pt;}
.y43{bottom:127.136000pt;}
.yc0{bottom:129.376000pt;}
.y5f{bottom:130.176000pt;}
.yc9{bottom:134.493333pt;}
.yf{bottom:135.773333pt;}
.y9d{bottom:136.253333pt;}
.ya8{bottom:136.413333pt;}
.yb4{bottom:137.373333pt;}
.y122{bottom:138.466667pt;}
.ye1{bottom:138.973333pt;}
.y84{bottom:139.293333pt;}
.y90{bottom:141.053333pt;}
.y2f{bottom:143.453333pt;}
.y3b{bottom:145.053333pt;}
.yed{bottom:146.653333pt;}
.yff{bottom:148.253333pt;}
.y51{bottom:149.213333pt;}
.y109{bottom:149.853333pt;}
.y17{bottom:151.133333pt;}
.y23{bottom:151.773333pt;}
.y121{bottom:152.546667pt;}
.y73{bottom:153.213333pt;}
.y83{bottom:154.973333pt;}
.y69{bottom:155.613333pt;}
.y5e{bottom:156.893333pt;}
.y42{bottom:159.453333pt;}
.yb3{bottom:162.973333pt;}
.y9c{bottom:163.293333pt;}
.y8f{bottom:164.413333pt;}
.ye0{bottom:164.573333pt;}
.y3a{bottom:168.093333pt;}
.y2e{bottom:169.373333pt;}
.yc8{bottom:169.533333pt;}
.y120{bottom:174.013333pt;}
.ybf{bottom:174.493333pt;}
.y22{bottom:174.813333pt;}
.yf4{bottom:175.133333pt;}
.y72{bottom:176.293333pt;}
.yfe{bottom:176.773333pt;}
.yd7{bottom:177.413333pt;}
.y82{bottom:177.733333pt;}
.y68{bottom:178.693333pt;}
.y108{bottom:179.493333pt;}
.y5d{bottom:183.813333pt;}
.y111{bottom:184.453333pt;}
.yb2{bottom:187.813333pt;}
.y8e{bottom:187.973333pt;}
.ya7{bottom:189.253333pt;}
.y9b{bottom:190.533333pt;}
.y2d{bottom:195.973333pt;}
.y39{bottom:197.733333pt;}
.yfd{bottom:198.533333pt;}
.yd6{bottom:199.813333pt;}
.y45{bottom:200.026667pt;}
.y50{bottom:200.293333pt;}
.y81{bottom:200.933333pt;}
.yf3{bottom:203.973333pt;}
.y21{bottom:204.613333pt;}
.y11f{bottom:204.773333pt;}
.y71{bottom:205.893333pt;}
.ye{bottom:208.453333pt;}
.y67{bottom:208.933333pt;}
.y107{bottom:209.253333pt;}
.y5c{bottom:210.693333pt;}
.yec{bottom:211.493333pt;}
.y8d{bottom:211.973333pt;}
.yb1{bottom:214.373333pt;}
.y9a{bottom:217.733333pt;}
.ya6{bottom:219.493333pt;}
.y38{bottom:220.773333pt;}
.y44{bottom:221.306667pt;}
.ybe{bottom:221.413333pt;}
.yd5{bottom:222.373333pt;}
.y80{bottom:223.173333pt;}
.y4f{bottom:223.653333pt;}
.yfc{bottom:227.013333pt;}
.y20{bottom:227.653333pt;}
.yeb{bottom:231.973333pt;}
.ydf{bottom:232.613333pt;}
.yc7{bottom:233.093333pt;}
.y16{bottom:234.853333pt;}
.y11e{bottom:235.333333pt;}
.y70{bottom:236.293333pt;}
.y5b{bottom:238.053333pt;}
.y7f{bottom:238.853333pt;}
.y106{bottom:239.013333pt;}
.y66{bottom:240.933333pt;}
.y99{bottom:245.413333pt;}
.yd4{bottom:245.573333pt;}
.y4e{bottom:247.493333pt;}
.yfb{bottom:248.773333pt;}
.y110{bottom:249.413333pt;}
.y37{bottom:250.533333pt;}
.y1f{bottom:257.253333pt;}
.yea{bottom:259.173333pt;}
.y7e{bottom:261.573333pt;}
.yde{bottom:262.373333pt;}
.y65{bottom:263.973333pt;}
.y2c{bottom:265.413333pt;}
.y11d{bottom:265.893333pt;}
.y8c{bottom:267.333333pt;}
.ybd{bottom:267.973333pt;}
.y15{bottom:268.133333pt;}
.y105{bottom:268.613333pt;}
.yd{bottom:271.493333pt;}
.y98{bottom:274.533333pt;}
.yfa{bottom:277.733333pt;}
.ye9{bottom:279.653333pt;}
.y36{bottom:280.933333pt;}
.ya5{bottom:281.253333pt;}
.yd3{bottom:283.653333pt;}
.yb0{bottom:283.973333pt;}
.y7d{bottom:284.773333pt;}
.y1e{bottom:287.653333pt;}
.yc6{bottom:289.893333pt;}
.ybc{bottom:290.373333pt;}
.y8b{bottom:290.693333pt;}
.y2b{bottom:291.333333pt;}
.ydd{bottom:291.973333pt;}
.y4d{bottom:293.573333pt;}
.y64{bottom:293.733333pt;}
.y10f{bottom:294.373333pt;}
.y97{bottom:295.013333pt;}
.y11c{bottom:296.613333pt;}
.y14{bottom:296.933333pt;}
.yc{bottom:298.533333pt;}
.yf9{bottom:302.053333pt;}
.y6f{bottom:303.653333pt;}
.yd2{bottom:305.893333pt;}
.y7c{bottom:307.013333pt;}
.ye8{bottom:307.333333pt;}
.yaf{bottom:309.733333pt;}
.yf2{bottom:310.053333pt;}
.ya4{bottom:311.013333pt;}
.ybb{bottom:312.773333pt;}
.y10e{bottom:313.573333pt;}
.y11b{bottom:313.893333pt;}
.y8a{bottom:314.693333pt;}
.y96{bottom:315.493333pt;}
.y4c{bottom:316.960000pt;}
.y5a{bottom:317.120000pt;}
.y2a{bottom:317.920000pt;}
.yc5{bottom:318.400000pt;}
.y1d{bottom:320.160000pt;}
.yd1{bottom:321.600000pt;}
.ydc{bottom:321.760000pt;}
.y63{bottom:324.000000pt;}
.yb{bottom:325.760000pt;}
.y104{bottom:328.160000pt;}
.y7b{bottom:329.760000pt;}
.y6e{bottom:330.880000pt;}
.yba{bottom:335.360000pt;}
.yae{bottom:336.320000pt;}
.ye7{bottom:336.480000pt;}
.y4b{bottom:340.160000pt;}
.yf1{bottom:340.320000pt;}
.ya3{bottom:340.640000pt;}
.y95{bottom:342.720000pt;}
.y59{bottom:343.840000pt;}
.yd0{bottom:344.320000pt;}
.y11a{bottom:344.480000pt;}
.yc4{bottom:346.880000pt;}
.ydb{bottom:352.160000pt;}
.ya{bottom:352.960000pt;}
.y1c{bottom:353.440000pt;}
.y62{bottom:357.280000pt;}
.y103{bottom:357.760000pt;}
.y35{bottom:358.080000pt;}
.y6d{bottom:358.560000pt;}
.y119{bottom:361.760000pt;}
.y94{bottom:363.200000pt;}
.ye6{bottom:363.680000pt;}
.y58{bottom:364.000000pt;}
.y4a{bottom:364.160000pt;}
.ycf{bottom:367.520000pt;}
.y7a{bottom:368.640000pt;}
.y10d{bottom:369.120000pt;}
.ya2{bottom:370.400000pt;}
.y41{bottom:371.680000pt;}
.yf0{bottom:372.960000pt;}
.yc3{bottom:375.200000pt;}
.yf8{bottom:376.800000pt;}
.y89{bottom:379.040000pt;}
.y9{bottom:380.000000pt;}
.y102{bottom:380.800000pt;}
.y13{bottom:381.120000pt;}
.yb9{bottom:382.080000pt;}
.yce{bottom:383.200000pt;}
.y29{bottom:387.360000pt;}
.y6c{bottom:388.320000pt;}
.y93{bottom:390.240000pt;}
.y57{bottom:390.880000pt;}
.ye5{bottom:391.360000pt;}
.y118{bottom:392.320000pt;}
.y40{bottom:392.960000pt;}
.yf7{bottom:398.560000pt;}
.ya1{bottom:400.160000pt;}
.y88{bottom:402.400000pt;}
.yc2{bottom:403.680000pt;}
.y101{bottom:403.840000pt;}
.yb8{bottom:404.640000pt;}
.ycd{bottom:405.760000pt;}
.yad{bottom:405.920000pt;}
.yef{bottom:406.240000pt;}
.y28{bottom:406.560000pt;}
.y8{bottom:407.200000pt;}
.y117{bottom:409.600000pt;}
.y12{bottom:409.920000pt;}
.y34{bottom:410.880000pt;}
.y56{bottom:411.040000pt;}
.y79{bottom:413.600000pt;}
.y3f{bottom:414.240000pt;}
.y49{bottom:415.200000pt;}
.y92{bottom:418.080000pt;}
.y6b{bottom:418.720000pt;}
.yda{bottom:420.160000pt;}
.ye4{bottom:420.480000pt;}
.y87{bottom:426.400000pt;}
.y1b{bottom:426.880000pt;}
.yf6{bottom:427.520000pt;}
.yb7{bottom:428.160000pt;}
.ycc{bottom:428.960000pt;}
.ya0{bottom:429.760000pt;}
.y61{bottom:431.360000pt;}
.yac{bottom:431.680000pt;}
.yc1{bottom:432.160000pt;}
.y27{bottom:432.480000pt;}
.y7{bottom:434.880000pt;}
.y3e{bottom:436.000000pt;}
.y55{bottom:437.920000pt;}
.y48{bottom:438.560000pt;}
.y116{bottom:440.320000pt;}
.y33{bottom:440.640000pt;}
.ye3{bottom:440.960000pt;}
.yd9{bottom:443.200000pt;}
.y10c{bottom:443.840000pt;}
.y91{bottom:448.320000pt;}
.ycb{bottom:451.680000pt;}
.y1a{bottom:457.280000pt;}
.yab{bottom:457.600000pt;}
.y26{bottom:459.066667pt;}
.y9f{bottom:459.546667pt;}
.y78{bottom:460.506667pt;}
.y3d{bottom:460.666667pt;}
.y47{bottom:462.426667pt;}
.y60{bottom:463.866667pt;}
.y54{bottom:465.306667pt;}
.ye2{bottom:468.186667pt;}
.y32{bottom:470.266667pt;}
.y115{bottom:470.906667pt;}
.y10b{bottom:471.706667pt;}
.yd8{bottom:472.826667pt;}
.yb6{bottom:475.066667pt;}
.yca{bottom:475.706667pt;}
.yaa{bottom:483.546667pt;}
.y77{bottom:484.026667pt;}
.y19{bottom:489.786667pt;}
.y86{bottom:490.746667pt;}
.y11{bottom:494.266667pt;}
.y6a{bottom:495.866667pt;}
.y6{bottom:497.946667pt;}
.y10a{bottom:498.266667pt;}
.y31{bottom:500.666667pt;}
.y114{bottom:501.466667pt;}
.ya9{bottom:502.746667pt;}
.yf5{bottom:502.906667pt;}
.y76{bottom:507.546667pt;}
.y10{bottom:523.066667pt;}
.y53{bottom:525.306667pt;}
.y5{bottom:526.266667pt;}
.y46{bottom:527.226667pt;}
.y25{bottom:529.146667pt;}
.y3c{bottom:529.786667pt;}
.y75{bottom:531.546667pt;}
.y113{bottom:532.186667pt;}
.y4{bottom:641.853333pt;}
.h19{height:44.722500pt;}
.h7{height:48.531250pt;}
.h1a{height:50.062500pt;}
.h2{height:55.402500pt;}
.h16{height:62.219062pt;}
.h13{height:63.050313pt;}
.h17{height:66.750000pt;}
.h18{height:66.883500pt;}
.h14{height:67.316875pt;}
.h15{height:71.109375pt;}
.he{height:72.090000pt;}
.h10{height:72.223500pt;}
.h11{height:78.097500pt;}
.h12{height:78.231000pt;}
.hb{height:83.437500pt;}
.hf{height:83.571000pt;}
.h1{height:88.777500pt;}
.h6{height:88.911000pt;}
.h9{height:94.785000pt;}
.ha{height:94.918500pt;}
.h5{height:100.125000pt;}
.h8{height:100.258500pt;}
.hc{height:105.465000pt;}
.hd{height:105.598500pt;}
.h4{height:111.472500pt;}
.h3{height:155.527500pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x3{left:90.623981pt;}
.x5{left:245.279981pt;}
.x12{left:263.359981pt;}
.x8{left:281.279981pt;}
.xc{left:293.279981pt;}
.x6{left:317.279981pt;}
.xd{left:341.279981pt;}
.xb{left:353.279981pt;}
.x9{left:365.279981pt;}
.xa{left:401.279981pt;}
.x10{left:413.279981pt;}
.x11{left:449.279981pt;}
.x4{left:475.106648pt;}
.x13{left:737.919981pt;}
.x1{left:907.839981pt;}
.xe{left:913.733314pt;}
.x2{left:958.879981pt;}
.xf{left:1166.053314pt;}
.x7{left:1174.239981pt;}
}




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