
    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_6950dc7af78ab8e9640697bd.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_ec923dc7e11e12c8d84f1344.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f081aeb826272191c3541b78.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.084961;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_4c32ba27605a5abf31a45922.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.112305;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_735d8c2c311a782a9f1eb92e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_883501e5510de8a499cc818e.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_cc4a7af198ef2c68dacf313b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_1ce48580025877b56cac3ce6.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_1359522890eea8ece5124ee6.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.952148;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:ffb;src:url('chunks/assets/font_8a115aae572b7ac90cb3621a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.123047;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:ffc;src:url('chunks/assets/font_313d47f7a851b8b195784958.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.952148;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:ffd;src:url('chunks/assets/font_c37a680ecfe6b6349f9642df.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.995117;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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-2.880000px;}
.ls2{letter-spacing:-0.720000px;}
.ls1{letter-spacing:-0.341400px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000003px;}
.lsb{letter-spacing:0.120000px;}
.ls7{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.216000px;}
.ls3{letter-spacing:0.504000px;}
.ls4{letter-spacing:0.720000px;}
.ls6{letter-spacing:17.460000px;}
.ls5{letter-spacing:33.984000px;}
.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;}
}
.ws6{word-spacing:-43.200003px;}
.ws7{word-spacing:-43.200000px;}
.ws0{word-spacing:-21.060000px;}
.ws5{word-spacing:-18.720000px;}
.ws3{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws4{word-spacing:-15.120000px;}
.ws1{word-spacing:0.000000px;}
._2b{margin-left:-98.880020px;}
._2c{margin-left:-93.840020px;}
._2d{margin-left:-88.800020px;}
._2e{margin-left:-83.760023px;}
._8{margin-left:-8.722080px;}
._5{margin-left:-7.621920px;}
._1{margin-left:-6.486480px;}
._6{margin-left:-5.130000px;}
._7{margin-left:-3.971520px;}
._3{margin-left:-2.358720px;}
._2{margin-left:-1.263600px;}
._4{width:1.196640px;}
._13{width:2.259360px;}
._14{width:3.911760px;}
._1a{width:5.076480px;}
._11{width:6.120000px;}
._10{width:7.992000px;}
._12{width:9.325440px;}
._e{width:10.512000px;}
._f{width:11.803680px;}
._a{width:12.971520px;}
._b{width:14.773440px;}
._1f{width:16.056000px;}
._9{width:19.451520px;}
._26{width:20.496960px;}
._15{width:21.600000px;}
._16{width:22.791600px;}
._1b{width:23.864400px;}
._1e{width:25.035600px;}
._1c{width:26.184000px;}
._1d{width:27.270720px;}
._24{width:28.529280px;}
._25{width:29.532000px;}
._21{width:31.136400px;}
._20{width:32.367600px;}
._17{width:33.879600px;}
._27{width:36.360000px;}
._22{width:38.088000px;}
._23{width:39.384000px;}
._18{width:40.824000px;}
._19{width:42.264000px;}
._28{width:43.992000px;}
._29{width:45.660000px;}
._2a{width:47.304000px;}
._d{width:59.727600px;}
._c{width:60.840000px;}
._0{width:846.156000px;}
.fc12{color:rgb(105,234,255);}
.fc11{color:rgb(240,58,23);}
.fcf{color:rgb(229,229,229);}
.fce{color:rgb(242,242,242);}
.fcd{color:rgb(22,198,12);}
.fc0{color:rgb(0,0,0);}
.fc3{color:rgb(34,34,34);}
.fc4{color:rgb(160,43,147);}
.fc5{color:rgb(255,255,255);}
.fca{color:rgb(166,166,166);}
.fc16{color:rgb(0,70,255);}
.fc13{color:rgb(117,117,117);}
.fc10{color:rgb(0,120,215);}
.fcb{color:rgb(204,204,204);}
.fc15{color:rgb(252,225,0);}
.fc8{color:rgb(255,200,61);}
.fc1{color:rgb(27,28,29);}
.fc2{color:transparent;}
.fc6{color:rgb(232,18,36);}
.fc14{color:rgb(255,185,0);}
.fcc{color:rgb(0,188,242);}
.fc7{color:rgb(247,99,12);}
.fc9{color:rgb(74,84,89);}
.fs0{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y4{bottom:28.620000px;}
.yf{bottom:28.800000px;}
.ye{bottom:52.920000px;}
.yb{bottom:56.160000px;}
.y3{bottom:56.520000px;}
.yd{bottom:77.040000px;}
.ya{bottom:84.420000px;}
.y9{bottom:112.320000px;}
.ye9{bottom:112.536000px;}
.y15d{bottom:118.476000px;}
.y1ae{bottom:120.276000px;}
.y101{bottom:120.456000px;}
.y40{bottom:123.696000px;}
.y5d{bottom:125.676000px;}
.y92{bottom:128.736000px;}
.ya5{bottom:131.256000px;}
.y18b{bottom:131.796000px;}
.ye8{bottom:133.236000px;}
.y15c{bottom:138.816000px;}
.y8{bottom:140.400000px;}
.y1ad{bottom:140.616000px;}
.y100{bottom:141.156000px;}
.y12e{bottom:142.596000px;}
.y3f{bottom:144.396000px;}
.y5c{bottom:146.376000px;}
.y91{bottom:149.436000px;}
.ycf{bottom:151.230000px;}
.ya4{bottom:151.950000px;}
.y18a{bottom:152.130000px;}
.y1c8{bottom:152.850000px;}
.ye7{bottom:153.930000px;}
.yc{bottom:158.250000px;}
.y15b{bottom:159.150000px;}
.y1ac{bottom:160.950000px;}
.yff{bottom:161.850000px;}
.y12d{bottom:163.110000px;}
.y3e{bottom:165.090000px;}
.y5b{bottom:167.070000px;}
.y7{bottom:168.300000px;}
.y90{bottom:170.130000px;}
.yce{bottom:171.930000px;}
.y189{bottom:172.470000px;}
.ya3{bottom:172.650000px;}
.y1c7{bottom:173.190000px;}
.ye6{bottom:174.630000px;}
.y15a{bottom:179.670000px;}
.y1ab{bottom:181.470000px;}
.yfe{bottom:182.550000px;}
.y12c{bottom:183.450000px;}
.y3d{bottom:185.790000px;}
.y5a{bottom:187.770000px;}
.y8f{bottom:190.830000px;}
.ycd{bottom:192.630000px;}
.y188{bottom:192.990000px;}
.ya2{bottom:193.350000px;}
.y1c6{bottom:193.530000px;}
.ye5{bottom:195.330000px;}
.y159{bottom:200.010000px;}
.y1aa{bottom:201.810000px;}
.yfd{bottom:203.250000px;}
.y12b{bottom:203.790000px;}
.y3c{bottom:206.490000px;}
.y59{bottom:208.470000px;}
.y8e{bottom:211.530000px;}
.ycc{bottom:213.330000px;}
.ya1{bottom:214.050000px;}
.ye4{bottom:216.030000px;}
.y1c5{bottom:218.550000px;}
.y158{bottom:220.350000px;}
.y1a9{bottom:222.150000px;}
.yfc{bottom:223.950000px;}
.y12a{bottom:224.310000px;}
.y3b{bottom:227.190000px;}
.y58{bottom:229.170000px;}
.y8d{bottom:232.230000px;}
.y187{bottom:233.670000px;}
.ycb{bottom:234.030000px;}
.ya0{bottom:234.750000px;}
.ye3{bottom:236.730000px;}
.y1c4{bottom:238.890000px;}
.y157{bottom:240.690000px;}
.y1a8{bottom:242.670000px;}
.yfb{bottom:244.650000px;}
.y3a{bottom:247.890000px;}
.y57{bottom:249.870000px;}
.y8c{bottom:252.930000px;}
.y186{bottom:254.190000px;}
.yca{bottom:254.730000px;}
.y9f{bottom:255.450000px;}
.ye2{bottom:257.430000px;}
.y1c3{bottom:261.390000px;}
.y1a7{bottom:263.010000px;}
.y129{bottom:264.990000px;}
.yfa{bottom:265.350000px;}
.y156{bottom:265.710000px;}
.y39{bottom:268.590000px;}
.y56{bottom:270.570000px;}
.y74{bottom:271.650000px;}
.y8b{bottom:273.630000px;}
.y185{bottom:274.530000px;}
.yc9{bottom:275.430000px;}
.y9e{bottom:276.150000px;}
.ye1{bottom:278.130000px;}
.y1c2{bottom:281.730000px;}
.y1a6{bottom:283.350000px;}
.y128{bottom:285.330000px;}
.yf9{bottom:286.050000px;}
.y38{bottom:289.290000px;}
.y55{bottom:291.270000px;}
.y73{bottom:292.350000px;}
.y8a{bottom:294.330000px;}
.y184{bottom:294.870000px;}
.yc8{bottom:296.130000px;}
.y9d{bottom:296.850000px;}
.ye0{bottom:298.830000px;}
.y1a5{bottom:303.690000px;}
.y1c1{bottom:304.230000px;}
.y127{bottom:305.850000px;}
.y155{bottom:306.390000px;}
.yf8{bottom:306.750000px;}
.y37{bottom:309.990000px;}
.y54{bottom:311.970000px;}
.y72{bottom:313.050000px;}
.y89{bottom:315.030000px;}
.y183{bottom:315.210000px;}
.yc7{bottom:316.830000px;}
.y9c{bottom:317.550000px;}
.ydf{bottom:319.530000px;}
.yb9{bottom:323.130000px;}
.y1a4{bottom:324.210000px;}
.y1c0{bottom:324.570000px;}
.y126{bottom:326.190000px;}
.y154{bottom:326.730000px;}
.yf7{bottom:327.495000px;}
.y36{bottom:330.735000px;}
.y53{bottom:332.715000px;}
.y71{bottom:333.795000px;}
.y88{bottom:335.775000px;}
.yc6{bottom:337.575000px;}
.y9b{bottom:338.295000px;}
.y1b7{bottom:340.095000px;}
.yde{bottom:340.275000px;}
.yb8{bottom:343.875000px;}
.y1a3{bottom:344.595000px;}
.y125{bottom:346.575000px;}
.y1bf{bottom:347.115000px;}
.y153{bottom:347.295000px;}
.yf6{bottom:348.195000px;}
.y35{bottom:351.435000px;}
.y52{bottom:353.415000px;}
.y70{bottom:354.495000px;}
.y182{bottom:356.115000px;}
.y87{bottom:356.475000px;}
.yc5{bottom:358.275000px;}
.y9a{bottom:358.995000px;}
.y1b6{bottom:360.615000px;}
.ydd{bottom:360.975000px;}
.yb7{bottom:364.575000px;}
.y1a2{bottom:364.935000px;}
.y124{bottom:367.095000px;}
.y152{bottom:367.635000px;}
.yf5{bottom:368.895000px;}
.y34{bottom:372.135000px;}
.y51{bottom:374.115000px;}
.y6f{bottom:375.195000px;}
.y181{bottom:376.455000px;}
.y86{bottom:377.175000px;}
.yc4{bottom:378.975000px;}
.y99{bottom:379.695000px;}
.y1b5{bottom:380.955000px;}
.ydc{bottom:381.675000px;}
.yb6{bottom:385.275000px;}
.y1a1{bottom:385.455000px;}
.y123{bottom:387.435000px;}
.y151{bottom:387.975000px;}
.yf4{bottom:389.595000px;}
.y1be{bottom:392.475000px;}
.y33{bottom:392.835000px;}
.y50{bottom:394.815000px;}
.y6e{bottom:395.895000px;}
.y180{bottom:396.975000px;}
.y85{bottom:397.875000px;}
.yc3{bottom:399.675000px;}
.y98{bottom:400.395000px;}
.y1b4{bottom:401.295000px;}
.ydb{bottom:402.375000px;}
.y1a0{bottom:405.795000px;}
.yb5{bottom:405.975000px;}
.y122{bottom:407.775000px;}
.y6{bottom:408.315000px;}
.y150{bottom:408.495000px;}
.yf3{bottom:410.295000px;}
.y1bd{bottom:412.815000px;}
.y32{bottom:413.535000px;}
.y4f{bottom:415.515000px;}
.y6d{bottom:416.595000px;}
.y17f{bottom:417.315000px;}
.y84{bottom:418.575000px;}
.yc2{bottom:420.375000px;}
.y97{bottom:421.095000px;}
.y1b3{bottom:421.635000px;}
.yda{bottom:423.075000px;}
.y19f{bottom:426.135000px;}
.yb4{bottom:426.675000px;}
.y121{bottom:428.115000px;}
.y14f{bottom:428.835000px;}
.yf2{bottom:430.995000px;}
.y1bc{bottom:433.155000px;}
.y31{bottom:434.235000px;}
.y4e{bottom:436.215000px;}
.y6c{bottom:437.295000px;}
.y17e{bottom:437.655000px;}
.y83{bottom:439.275000px;}
.yc1{bottom:441.075000px;}
.y96{bottom:441.795000px;}
.y1b2{bottom:442.155000px;}
.yd9{bottom:443.775000px;}
.y19e{bottom:446.475000px;}
.yb3{bottom:447.375000px;}
.y120{bottom:448.635000px;}
.y14e{bottom:449.175000px;}
.yf1{bottom:451.695000px;}
.y1bb{bottom:453.675000px;}
.y30{bottom:454.935000px;}
.y4d{bottom:456.915000px;}
.y6b{bottom:457.995000px;}
.y82{bottom:459.975000px;}
.yc0{bottom:461.775000px;}
.y95{bottom:462.495000px;}
.yd8{bottom:464.475000px;}
.y19d{bottom:466.995000px;}
.yb2{bottom:468.075000px;}
.y11f{bottom:468.975000px;}
.yf0{bottom:472.395000px;}
.y14d{bottom:474.015000px;}
.y2f{bottom:475.635000px;}
.y4c{bottom:477.615000px;}
.y17d{bottom:478.515000px;}
.y6a{bottom:478.695000px;}
.y81{bottom:480.675000px;}
.ybf{bottom:482.475000px;}
.y1b1{bottom:482.835000px;}
.y94{bottom:483.195000px;}
.yd7{bottom:485.175000px;}
.y19c{bottom:487.335000px;}
.yb1{bottom:488.775000px;}
.y11e{bottom:489.315000px;}
.yef{bottom:493.095000px;}
.y14c{bottom:494.355000px;}
.y2e{bottom:496.335000px;}
.y4b{bottom:498.315000px;}
.y17c{bottom:498.855000px;}
.y69{bottom:499.395000px;}
.y80{bottom:501.375000px;}
.ybe{bottom:503.175000px;}
.y1b0{bottom:503.355000px;}
.y93{bottom:503.895000px;}
.yd6{bottom:505.875000px;}
.y19b{bottom:507.675000px;}
.yb0{bottom:509.475000px;}
.yee{bottom:513.795000px;}
.y11d{bottom:514.155000px;}
.y1ba{bottom:514.695000px;}
.y14b{bottom:514.875000px;}
.y2d{bottom:517.035000px;}
.y4a{bottom:519.015000px;}
.y17b{bottom:519.195000px;}
.y68{bottom:520.095000px;}
.y7f{bottom:522.075000px;}
.y1af{bottom:523.695000px;}
.ybd{bottom:523.875000px;}
.yd5{bottom:526.575000px;}
.y19a{bottom:528.195000px;}
.yaf{bottom:530.175000px;}
.yed{bottom:534.495000px;}
.y14a{bottom:535.215000px;}
.y2c{bottom:537.735000px;}
.y49{bottom:539.715000px;}
.y67{bottom:540.795000px;}
.y7e{bottom:542.775000px;}
.ybc{bottom:544.575000px;}
.yd4{bottom:547.275000px;}
.y199{bottom:548.535000px;}
.yae{bottom:550.875000px;}
.y11c{bottom:555.015000px;}
.yec{bottom:555.195000px;}
.y149{bottom:555.555000px;}
.y2b{bottom:558.435000px;}
.y17a{bottom:560.055000px;}
.y48{bottom:560.415000px;}
.y66{bottom:561.495000px;}
.y7d{bottom:563.475000px;}
.ybb{bottom:565.275000px;}
.yd3{bottom:567.975000px;}
.y198{bottom:568.875000px;}
.yad{bottom:571.575000px;}
.y11b{bottom:575.355000px;}
.yeb{bottom:575.895000px;}
.y2a{bottom:579.135000px;}
.y179{bottom:580.395000px;}
.y47{bottom:581.115000px;}
.y65{bottom:582.195000px;}
.y1cc{bottom:582.735000px;}
.y7c{bottom:584.175000px;}
.yba{bottom:585.975000px;}
.yd2{bottom:588.675000px;}
.y197{bottom:589.215000px;}
.yac{bottom:592.275000px;}
.y11a{bottom:595.725000px;}
.y148{bottom:596.445000px;}
.yea{bottom:596.625000px;}
.y29{bottom:599.865000px;}
.y178{bottom:600.765000px;}
.y46{bottom:601.845000px;}
.y64{bottom:602.925000px;}
.y7b{bottom:604.905000px;}
.y1b9{bottom:605.265000px;}
.yd1{bottom:609.405000px;}
.y196{bottom:609.765000px;}
.yab{bottom:613.005000px;}
.y119{bottom:616.245000px;}
.y147{bottom:616.785000px;}
.y28{bottom:620.565000px;}
.y177{bottom:621.285000px;}
.y45{bottom:622.545000px;}
.y63{bottom:623.625000px;}
.y7a{bottom:625.605000px;}
.yd0{bottom:630.105000px;}
.yaa{bottom:633.705000px;}
.y118{bottom:636.585000px;}
.y146{bottom:637.125000px;}
.y27{bottom:641.265000px;}
.y176{bottom:641.625000px;}
.y44{bottom:643.245000px;}
.y62{bottom:644.325000px;}
.y1b8{bottom:646.125000px;}
.y79{bottom:646.305000px;}
.y195{bottom:650.445000px;}
.ya9{bottom:654.405000px;}
.y117{bottom:656.925000px;}
.y26{bottom:661.965000px;}
.y43{bottom:663.945000px;}
.y61{bottom:665.025000px;}
.y175{bottom:666.465000px;}
.y78{bottom:667.005000px;}
.y194{bottom:670.965000px;}
.ya8{bottom:675.105000px;}
.y116{bottom:677.265000px;}
.y145{bottom:682.305000px;}
.y25{bottom:682.665000px;}
.y42{bottom:684.645000px;}
.y60{bottom:685.725000px;}
.y174{bottom:686.805000px;}
.y77{bottom:687.705000px;}
.y193{bottom:691.305000px;}
.ya7{bottom:695.805000px;}
.y115{bottom:702.105000px;}
.y144{bottom:702.825000px;}
.y24{bottom:703.365000px;}
.y41{bottom:705.345000px;}
.y5f{bottom:706.425000px;}
.y173{bottom:707.145000px;}
.y76{bottom:708.405000px;}
.y192{bottom:711.645000px;}
.ya6{bottom:716.505000px;}
.y114{bottom:722.625000px;}
.y143{bottom:723.165000px;}
.y23{bottom:724.065000px;}
.y5e{bottom:727.125000px;}
.y1cb{bottom:727.485000px;}
.y172{bottom:727.665000px;}
.y75{bottom:729.105000px;}
.y191{bottom:731.985000px;}
.y113{bottom:742.965000px;}
.y142{bottom:743.505000px;}
.y22{bottom:744.765000px;}
.y171{bottom:748.005000px;}
.y190{bottom:752.505000px;}
.y112{bottom:763.305000px;}
.y141{bottom:764.025000px;}
.y21{bottom:765.465000px;}
.y170{bottom:768.345000px;}
.y18f{bottom:772.845000px;}
.y111{bottom:783.645000px;}
.y140{bottom:784.365000px;}
.y1cd{bottom:784.725000px;}
.y20{bottom:786.165000px;}
.y16f{bottom:788.865000px;}
.y18e{bottom:793.185000px;}
.y110{bottom:804.165000px;}
.y13f{bottom:804.705000px;}
.y1f{bottom:806.865000px;}
.y16e{bottom:809.205000px;}
.y18d{bottom:813.525000px;}
.y10f{bottom:824.505000px;}
.y13e{bottom:825.045000px;}
.y1e{bottom:827.565000px;}
.y16d{bottom:829.545000px;}
.y18c{bottom:834.045000px;}
.y10e{bottom:844.845000px;}
.y13d{bottom:845.565000px;}
.y1d{bottom:848.265000px;}
.y16c{bottom:854.385000px;}
.y10d{bottom:865.230000px;}
.y13c{bottom:865.950000px;}
.y1c{bottom:869.010000px;}
.y16b{bottom:874.770000px;}
.y13b{bottom:886.290000px;}
.y1b{bottom:889.710000px;}
.y10c{bottom:890.250000px;}
.y16a{bottom:895.290000px;}
.y13a{bottom:906.810000px;}
.y1a{bottom:910.410000px;}
.y10b{bottom:910.590000px;}
.y169{bottom:915.630000px;}
.y139{bottom:927.150000px;}
.y10a{bottom:930.930000px;}
.y19{bottom:931.110000px;}
.y168{bottom:935.970000px;}
.y109{bottom:951.270000px;}
.y18{bottom:951.810000px;}
.y138{bottom:951.990000px;}
.y167{bottom:956.310000px;}
.y137{bottom:972.330000px;}
.y17{bottom:972.510000px;}
.y108{bottom:976.110000px;}
.y166{bottom:976.830000px;}
.y1ca{bottom:990.690000px;}
.y136{bottom:992.670000px;}
.y16{bottom:993.210000px;}
.y107{bottom:996.630000px;}
.y165{bottom:997.170000px;}
.y1c9{bottom:1011.390000px;}
.y135{bottom:1013.190000px;}
.y15{bottom:1013.910000px;}
.y106{bottom:1016.970000px;}
.y164{bottom:1017.510000px;}
.y2{bottom:1025.970000px;}
.y134{bottom:1033.530000px;}
.y14{bottom:1034.610000px;}
.y105{bottom:1037.310000px;}
.y163{bottom:1038.030000px;}
.y133{bottom:1053.870000px;}
.y13{bottom:1055.310000px;}
.y104{bottom:1057.650000px;}
.y162{bottom:1058.370000px;}
.y132{bottom:1074.210000px;}
.y12{bottom:1076.010000px;}
.y103{bottom:1078.170000px;}
.y161{bottom:1078.710000px;}
.y131{bottom:1094.730000px;}
.y11{bottom:1096.710000px;}
.y102{bottom:1098.510000px;}
.y160{bottom:1099.050000px;}
.y130{bottom:1115.070000px;}
.y10{bottom:1117.410000px;}
.y15f{bottom:1119.570000px;}
.y12f{bottom:1135.440000px;}
.y1{bottom:1138.140000px;}
.y15e{bottom:1139.940000px;}
.ha{height:48.832031px;}
.h2{height:50.800781px;}
.h9{height:58.429688px;}
.h4{height:59.436914px;}
.hc{height:60.679688px;}
.h8{height:64.546875px;}
.hb{height:65.707031px;}
.h5{height:68.362734px;}
.h3{height:76.140000px;}
.h7{height:96.660000px;}
.h6{height:187.950000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:593.205000px;}
.w4{width:735.270000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:19.614000px;}
.x3{left:26.994000px;}
.xd{left:62.316000px;}
.xb{left:78.660000px;}
.x1{left:108.035987px;}
.xa{left:121.860000px;}
.x7{left:140.805000px;}
.x2{left:149.976000px;}
.x5{left:159.330000px;}
.x14{left:162.029987px;}
.x1a{left:189.029987px;}
.x12{left:192.989987px;}
.x21{left:203.789987px;}
.xe{left:211.935000px;}
.x6{left:215.145000px;}
.xc{left:219.495000px;}
.x17{left:227.909987px;}
.x9{left:235.485000px;}
.x1e{left:240.689987px;}
.x18{left:246.269987px;}
.x1d{left:254.189987px;}
.x1b{left:270.389987px;}
.x20{left:283.754987px;}
.x8{left:296.505000px;}
.x1f{left:311.294987px;}
.x16{left:344.774987px;}
.xf{left:346.575000px;}
.x19{left:352.514987px;}
.x23{left:363.674987px;}
.x13{left:370.694987px;}
.x22{left:373.214987px;}
.x15{left:397.334987px;}
.x10{left:403.094987px;}
.x11{left:446.474987px;}
.x1c{left:473.504987px;}
.x25{left:544.604987px;}
.x24{left:785.309987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-2.560000pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls1{letter-spacing:-0.303467pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000003pt;}
.lsb{letter-spacing:0.106667pt;}
.ls7{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.192000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls4{letter-spacing:0.640000pt;}
.ls6{letter-spacing:15.520000pt;}
.ls5{letter-spacing:30.208000pt;}
.ws6{word-spacing:-38.400003pt;}
.ws7{word-spacing:-38.400000pt;}
.ws0{word-spacing:-18.720000pt;}
.ws5{word-spacing:-16.640000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws4{word-spacing:-13.440000pt;}
.ws1{word-spacing:0.000000pt;}
._2b{margin-left:-87.893351pt;}
._2c{margin-left:-83.413351pt;}
._2d{margin-left:-78.933351pt;}
._2e{margin-left:-74.453354pt;}
._8{margin-left:-7.752960pt;}
._5{margin-left:-6.775040pt;}
._1{margin-left:-5.765760pt;}
._6{margin-left:-4.560000pt;}
._7{margin-left:-3.530240pt;}
._3{margin-left:-2.096640pt;}
._2{margin-left:-1.123200pt;}
._4{width:1.063680pt;}
._13{width:2.008320pt;}
._14{width:3.477120pt;}
._1a{width:4.512427pt;}
._11{width:5.440000pt;}
._10{width:7.104000pt;}
._12{width:8.289280pt;}
._e{width:9.344000pt;}
._f{width:10.492160pt;}
._a{width:11.530240pt;}
._b{width:13.131947pt;}
._1f{width:14.272000pt;}
._9{width:17.290240pt;}
._26{width:18.219520pt;}
._15{width:19.200000pt;}
._16{width:20.259200pt;}
._1b{width:21.212800pt;}
._1e{width:22.253867pt;}
._1c{width:23.274667pt;}
._1d{width:24.240640pt;}
._24{width:25.359360pt;}
._25{width:26.250667pt;}
._21{width:27.676800pt;}
._20{width:28.771200pt;}
._17{width:30.115200pt;}
._27{width:32.320000pt;}
._22{width:33.856000pt;}
._23{width:35.008000pt;}
._18{width:36.288000pt;}
._19{width:37.568000pt;}
._28{width:39.104000pt;}
._29{width:40.586667pt;}
._2a{width:42.048000pt;}
._d{width:53.091200pt;}
._c{width:54.080000pt;}
._0{width:752.138667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y4{bottom:25.440000pt;}
.yf{bottom:25.600000pt;}
.ye{bottom:47.040000pt;}
.yb{bottom:49.920000pt;}
.y3{bottom:50.240000pt;}
.yd{bottom:68.480000pt;}
.ya{bottom:75.040000pt;}
.y9{bottom:99.840000pt;}
.ye9{bottom:100.032000pt;}
.y15d{bottom:105.312000pt;}
.y1ae{bottom:106.912000pt;}
.y101{bottom:107.072000pt;}
.y40{bottom:109.952000pt;}
.y5d{bottom:111.712000pt;}
.y92{bottom:114.432000pt;}
.ya5{bottom:116.672000pt;}
.y18b{bottom:117.152000pt;}
.ye8{bottom:118.432000pt;}
.y15c{bottom:123.392000pt;}
.y8{bottom:124.800000pt;}
.y1ad{bottom:124.992000pt;}
.y100{bottom:125.472000pt;}
.y12e{bottom:126.752000pt;}
.y3f{bottom:128.352000pt;}
.y5c{bottom:130.112000pt;}
.y91{bottom:132.832000pt;}
.ycf{bottom:134.426667pt;}
.ya4{bottom:135.066667pt;}
.y18a{bottom:135.226667pt;}
.y1c8{bottom:135.866667pt;}
.ye7{bottom:136.826667pt;}
.yc{bottom:140.666667pt;}
.y15b{bottom:141.466667pt;}
.y1ac{bottom:143.066667pt;}
.yff{bottom:143.866667pt;}
.y12d{bottom:144.986667pt;}
.y3e{bottom:146.746667pt;}
.y5b{bottom:148.506667pt;}
.y7{bottom:149.600000pt;}
.y90{bottom:151.226667pt;}
.yce{bottom:152.826667pt;}
.y189{bottom:153.306667pt;}
.ya3{bottom:153.466667pt;}
.y1c7{bottom:153.946667pt;}
.ye6{bottom:155.226667pt;}
.y15a{bottom:159.706667pt;}
.y1ab{bottom:161.306667pt;}
.yfe{bottom:162.266667pt;}
.y12c{bottom:163.066667pt;}
.y3d{bottom:165.146667pt;}
.y5a{bottom:166.906667pt;}
.y8f{bottom:169.626667pt;}
.ycd{bottom:171.226667pt;}
.y188{bottom:171.546667pt;}
.ya2{bottom:171.866667pt;}
.y1c6{bottom:172.026667pt;}
.ye5{bottom:173.626667pt;}
.y159{bottom:177.786667pt;}
.y1aa{bottom:179.386667pt;}
.yfd{bottom:180.666667pt;}
.y12b{bottom:181.146667pt;}
.y3c{bottom:183.546667pt;}
.y59{bottom:185.306667pt;}
.y8e{bottom:188.026667pt;}
.ycc{bottom:189.626667pt;}
.ya1{bottom:190.266667pt;}
.ye4{bottom:192.026667pt;}
.y1c5{bottom:194.266667pt;}
.y158{bottom:195.866667pt;}
.y1a9{bottom:197.466667pt;}
.yfc{bottom:199.066667pt;}
.y12a{bottom:199.386667pt;}
.y3b{bottom:201.946667pt;}
.y58{bottom:203.706667pt;}
.y8d{bottom:206.426667pt;}
.y187{bottom:207.706667pt;}
.ycb{bottom:208.026667pt;}
.ya0{bottom:208.666667pt;}
.ye3{bottom:210.426667pt;}
.y1c4{bottom:212.346667pt;}
.y157{bottom:213.946667pt;}
.y1a8{bottom:215.706667pt;}
.yfb{bottom:217.466667pt;}
.y3a{bottom:220.346667pt;}
.y57{bottom:222.106667pt;}
.y8c{bottom:224.826667pt;}
.y186{bottom:225.946667pt;}
.yca{bottom:226.426667pt;}
.y9f{bottom:227.066667pt;}
.ye2{bottom:228.826667pt;}
.y1c3{bottom:232.346667pt;}
.y1a7{bottom:233.786667pt;}
.y129{bottom:235.546667pt;}
.yfa{bottom:235.866667pt;}
.y156{bottom:236.186667pt;}
.y39{bottom:238.746667pt;}
.y56{bottom:240.506667pt;}
.y74{bottom:241.466667pt;}
.y8b{bottom:243.226667pt;}
.y185{bottom:244.026667pt;}
.yc9{bottom:244.826667pt;}
.y9e{bottom:245.466667pt;}
.ye1{bottom:247.226667pt;}
.y1c2{bottom:250.426667pt;}
.y1a6{bottom:251.866667pt;}
.y128{bottom:253.626667pt;}
.yf9{bottom:254.266667pt;}
.y38{bottom:257.146667pt;}
.y55{bottom:258.906667pt;}
.y73{bottom:259.866667pt;}
.y8a{bottom:261.626667pt;}
.y184{bottom:262.106667pt;}
.yc8{bottom:263.226667pt;}
.y9d{bottom:263.866667pt;}
.ye0{bottom:265.626667pt;}
.y1a5{bottom:269.946667pt;}
.y1c1{bottom:270.426667pt;}
.y127{bottom:271.866667pt;}
.y155{bottom:272.346667pt;}
.yf8{bottom:272.666667pt;}
.y37{bottom:275.546667pt;}
.y54{bottom:277.306667pt;}
.y72{bottom:278.266667pt;}
.y89{bottom:280.026667pt;}
.y183{bottom:280.186667pt;}
.yc7{bottom:281.626667pt;}
.y9c{bottom:282.266667pt;}
.ydf{bottom:284.026667pt;}
.yb9{bottom:287.226667pt;}
.y1a4{bottom:288.186667pt;}
.y1c0{bottom:288.506667pt;}
.y126{bottom:289.946667pt;}
.y154{bottom:290.426667pt;}
.yf7{bottom:291.106667pt;}
.y36{bottom:293.986667pt;}
.y53{bottom:295.746667pt;}
.y71{bottom:296.706667pt;}
.y88{bottom:298.466667pt;}
.yc6{bottom:300.066667pt;}
.y9b{bottom:300.706667pt;}
.y1b7{bottom:302.306667pt;}
.yde{bottom:302.466667pt;}
.yb8{bottom:305.666667pt;}
.y1a3{bottom:306.306667pt;}
.y125{bottom:308.066667pt;}
.y1bf{bottom:308.546667pt;}
.y153{bottom:308.706667pt;}
.yf6{bottom:309.506667pt;}
.y35{bottom:312.386667pt;}
.y52{bottom:314.146667pt;}
.y70{bottom:315.106667pt;}
.y182{bottom:316.546667pt;}
.y87{bottom:316.866667pt;}
.yc5{bottom:318.466667pt;}
.y9a{bottom:319.106667pt;}
.y1b6{bottom:320.546667pt;}
.ydd{bottom:320.866667pt;}
.yb7{bottom:324.066667pt;}
.y1a2{bottom:324.386667pt;}
.y124{bottom:326.306667pt;}
.y152{bottom:326.786667pt;}
.yf5{bottom:327.906667pt;}
.y34{bottom:330.786667pt;}
.y51{bottom:332.546667pt;}
.y6f{bottom:333.506667pt;}
.y181{bottom:334.626667pt;}
.y86{bottom:335.266667pt;}
.yc4{bottom:336.866667pt;}
.y99{bottom:337.506667pt;}
.y1b5{bottom:338.626667pt;}
.ydc{bottom:339.266667pt;}
.yb6{bottom:342.466667pt;}
.y1a1{bottom:342.626667pt;}
.y123{bottom:344.386667pt;}
.y151{bottom:344.866667pt;}
.yf4{bottom:346.306667pt;}
.y1be{bottom:348.866667pt;}
.y33{bottom:349.186667pt;}
.y50{bottom:350.946667pt;}
.y6e{bottom:351.906667pt;}
.y180{bottom:352.866667pt;}
.y85{bottom:353.666667pt;}
.yc3{bottom:355.266667pt;}
.y98{bottom:355.906667pt;}
.y1b4{bottom:356.706667pt;}
.ydb{bottom:357.666667pt;}
.y1a0{bottom:360.706667pt;}
.yb5{bottom:360.866667pt;}
.y122{bottom:362.466667pt;}
.y6{bottom:362.946667pt;}
.y150{bottom:363.106667pt;}
.yf3{bottom:364.706667pt;}
.y1bd{bottom:366.946667pt;}
.y32{bottom:367.586667pt;}
.y4f{bottom:369.346667pt;}
.y6d{bottom:370.306667pt;}
.y17f{bottom:370.946667pt;}
.y84{bottom:372.066667pt;}
.yc2{bottom:373.666667pt;}
.y97{bottom:374.306667pt;}
.y1b3{bottom:374.786667pt;}
.yda{bottom:376.066667pt;}
.y19f{bottom:378.786667pt;}
.yb4{bottom:379.266667pt;}
.y121{bottom:380.546667pt;}
.y14f{bottom:381.186667pt;}
.yf2{bottom:383.106667pt;}
.y1bc{bottom:385.026667pt;}
.y31{bottom:385.986667pt;}
.y4e{bottom:387.746667pt;}
.y6c{bottom:388.706667pt;}
.y17e{bottom:389.026667pt;}
.y83{bottom:390.466667pt;}
.yc1{bottom:392.066667pt;}
.y96{bottom:392.706667pt;}
.y1b2{bottom:393.026667pt;}
.yd9{bottom:394.466667pt;}
.y19e{bottom:396.866667pt;}
.yb3{bottom:397.666667pt;}
.y120{bottom:398.786667pt;}
.y14e{bottom:399.266667pt;}
.yf1{bottom:401.506667pt;}
.y1bb{bottom:403.266667pt;}
.y30{bottom:404.386667pt;}
.y4d{bottom:406.146667pt;}
.y6b{bottom:407.106667pt;}
.y82{bottom:408.866667pt;}
.yc0{bottom:410.466667pt;}
.y95{bottom:411.106667pt;}
.yd8{bottom:412.866667pt;}
.y19d{bottom:415.106667pt;}
.yb2{bottom:416.066667pt;}
.y11f{bottom:416.866667pt;}
.yf0{bottom:419.906667pt;}
.y14d{bottom:421.346667pt;}
.y2f{bottom:422.786667pt;}
.y4c{bottom:424.546667pt;}
.y17d{bottom:425.346667pt;}
.y6a{bottom:425.506667pt;}
.y81{bottom:427.266667pt;}
.ybf{bottom:428.866667pt;}
.y1b1{bottom:429.186667pt;}
.y94{bottom:429.506667pt;}
.yd7{bottom:431.266667pt;}
.y19c{bottom:433.186667pt;}
.yb1{bottom:434.466667pt;}
.y11e{bottom:434.946667pt;}
.yef{bottom:438.306667pt;}
.y14c{bottom:439.426667pt;}
.y2e{bottom:441.186667pt;}
.y4b{bottom:442.946667pt;}
.y17c{bottom:443.426667pt;}
.y69{bottom:443.906667pt;}
.y80{bottom:445.666667pt;}
.ybe{bottom:447.266667pt;}
.y1b0{bottom:447.426667pt;}
.y93{bottom:447.906667pt;}
.yd6{bottom:449.666667pt;}
.y19b{bottom:451.266667pt;}
.yb0{bottom:452.866667pt;}
.yee{bottom:456.706667pt;}
.y11d{bottom:457.026667pt;}
.y1ba{bottom:457.506667pt;}
.y14b{bottom:457.666667pt;}
.y2d{bottom:459.586667pt;}
.y4a{bottom:461.346667pt;}
.y17b{bottom:461.506667pt;}
.y68{bottom:462.306667pt;}
.y7f{bottom:464.066667pt;}
.y1af{bottom:465.506667pt;}
.ybd{bottom:465.666667pt;}
.yd5{bottom:468.066667pt;}
.y19a{bottom:469.506667pt;}
.yaf{bottom:471.266667pt;}
.yed{bottom:475.106667pt;}
.y14a{bottom:475.746667pt;}
.y2c{bottom:477.986667pt;}
.y49{bottom:479.746667pt;}
.y67{bottom:480.706667pt;}
.y7e{bottom:482.466667pt;}
.ybc{bottom:484.066667pt;}
.yd4{bottom:486.466667pt;}
.y199{bottom:487.586667pt;}
.yae{bottom:489.666667pt;}
.y11c{bottom:493.346667pt;}
.yec{bottom:493.506667pt;}
.y149{bottom:493.826667pt;}
.y2b{bottom:496.386667pt;}
.y17a{bottom:497.826667pt;}
.y48{bottom:498.146667pt;}
.y66{bottom:499.106667pt;}
.y7d{bottom:500.866667pt;}
.ybb{bottom:502.466667pt;}
.yd3{bottom:504.866667pt;}
.y198{bottom:505.666667pt;}
.yad{bottom:508.066667pt;}
.y11b{bottom:511.426667pt;}
.yeb{bottom:511.906667pt;}
.y2a{bottom:514.786667pt;}
.y179{bottom:515.906667pt;}
.y47{bottom:516.546667pt;}
.y65{bottom:517.506667pt;}
.y1cc{bottom:517.986667pt;}
.y7c{bottom:519.266667pt;}
.yba{bottom:520.866667pt;}
.yd2{bottom:523.266667pt;}
.y197{bottom:523.746667pt;}
.yac{bottom:526.466667pt;}
.y11a{bottom:529.533333pt;}
.y148{bottom:530.173333pt;}
.yea{bottom:530.333333pt;}
.y29{bottom:533.213333pt;}
.y178{bottom:534.013333pt;}
.y46{bottom:534.973333pt;}
.y64{bottom:535.933333pt;}
.y7b{bottom:537.693333pt;}
.y1b9{bottom:538.013333pt;}
.yd1{bottom:541.693333pt;}
.y196{bottom:542.013333pt;}
.yab{bottom:544.893333pt;}
.y119{bottom:547.773333pt;}
.y147{bottom:548.253333pt;}
.y28{bottom:551.613333pt;}
.y177{bottom:552.253333pt;}
.y45{bottom:553.373333pt;}
.y63{bottom:554.333333pt;}
.y7a{bottom:556.093333pt;}
.yd0{bottom:560.093333pt;}
.yaa{bottom:563.293333pt;}
.y118{bottom:565.853333pt;}
.y146{bottom:566.333333pt;}
.y27{bottom:570.013333pt;}
.y176{bottom:570.333333pt;}
.y44{bottom:571.773333pt;}
.y62{bottom:572.733333pt;}
.y1b8{bottom:574.333333pt;}
.y79{bottom:574.493333pt;}
.y195{bottom:578.173333pt;}
.ya9{bottom:581.693333pt;}
.y117{bottom:583.933333pt;}
.y26{bottom:588.413333pt;}
.y43{bottom:590.173333pt;}
.y61{bottom:591.133333pt;}
.y175{bottom:592.413333pt;}
.y78{bottom:592.893333pt;}
.y194{bottom:596.413333pt;}
.ya8{bottom:600.093333pt;}
.y116{bottom:602.013333pt;}
.y145{bottom:606.493333pt;}
.y25{bottom:606.813333pt;}
.y42{bottom:608.573333pt;}
.y60{bottom:609.533333pt;}
.y174{bottom:610.493333pt;}
.y77{bottom:611.293333pt;}
.y193{bottom:614.493333pt;}
.ya7{bottom:618.493333pt;}
.y115{bottom:624.093333pt;}
.y144{bottom:624.733333pt;}
.y24{bottom:625.213333pt;}
.y41{bottom:626.973333pt;}
.y5f{bottom:627.933333pt;}
.y173{bottom:628.573333pt;}
.y76{bottom:629.693333pt;}
.y192{bottom:632.573333pt;}
.ya6{bottom:636.893333pt;}
.y114{bottom:642.333333pt;}
.y143{bottom:642.813333pt;}
.y23{bottom:643.613333pt;}
.y5e{bottom:646.333333pt;}
.y1cb{bottom:646.653333pt;}
.y172{bottom:646.813333pt;}
.y75{bottom:648.093333pt;}
.y191{bottom:650.653333pt;}
.y113{bottom:660.413333pt;}
.y142{bottom:660.893333pt;}
.y22{bottom:662.013333pt;}
.y171{bottom:664.893333pt;}
.y190{bottom:668.893333pt;}
.y112{bottom:678.493333pt;}
.y141{bottom:679.133333pt;}
.y21{bottom:680.413333pt;}
.y170{bottom:682.973333pt;}
.y18f{bottom:686.973333pt;}
.y111{bottom:696.573333pt;}
.y140{bottom:697.213333pt;}
.y1cd{bottom:697.533333pt;}
.y20{bottom:698.813333pt;}
.y16f{bottom:701.213333pt;}
.y18e{bottom:705.053333pt;}
.y110{bottom:714.813333pt;}
.y13f{bottom:715.293333pt;}
.y1f{bottom:717.213333pt;}
.y16e{bottom:719.293333pt;}
.y18d{bottom:723.133333pt;}
.y10f{bottom:732.893333pt;}
.y13e{bottom:733.373333pt;}
.y1e{bottom:735.613333pt;}
.y16d{bottom:737.373333pt;}
.y18c{bottom:741.373333pt;}
.y10e{bottom:750.973333pt;}
.y13d{bottom:751.613333pt;}
.y1d{bottom:754.013333pt;}
.y16c{bottom:759.453333pt;}
.y10d{bottom:769.093333pt;}
.y13c{bottom:769.733333pt;}
.y1c{bottom:772.453333pt;}
.y16b{bottom:777.573333pt;}
.y13b{bottom:787.813333pt;}
.y1b{bottom:790.853333pt;}
.y10c{bottom:791.333333pt;}
.y16a{bottom:795.813333pt;}
.y13a{bottom:806.053333pt;}
.y1a{bottom:809.253333pt;}
.y10b{bottom:809.413333pt;}
.y169{bottom:813.893333pt;}
.y139{bottom:824.133333pt;}
.y10a{bottom:827.493333pt;}
.y19{bottom:827.653333pt;}
.y168{bottom:831.973333pt;}
.y109{bottom:845.573333pt;}
.y18{bottom:846.053333pt;}
.y138{bottom:846.213333pt;}
.y167{bottom:850.053333pt;}
.y137{bottom:864.293333pt;}
.y17{bottom:864.453333pt;}
.y108{bottom:867.653333pt;}
.y166{bottom:868.293333pt;}
.y1ca{bottom:880.613333pt;}
.y136{bottom:882.373333pt;}
.y16{bottom:882.853333pt;}
.y107{bottom:885.893333pt;}
.y165{bottom:886.373333pt;}
.y1c9{bottom:899.013333pt;}
.y135{bottom:900.613333pt;}
.y15{bottom:901.253333pt;}
.y106{bottom:903.973333pt;}
.y164{bottom:904.453333pt;}
.y2{bottom:911.973333pt;}
.y134{bottom:918.693333pt;}
.y14{bottom:919.653333pt;}
.y105{bottom:922.053333pt;}
.y163{bottom:922.693333pt;}
.y133{bottom:936.773333pt;}
.y13{bottom:938.053333pt;}
.y104{bottom:940.133333pt;}
.y162{bottom:940.773333pt;}
.y132{bottom:954.853333pt;}
.y12{bottom:956.453333pt;}
.y103{bottom:958.373333pt;}
.y161{bottom:958.853333pt;}
.y131{bottom:973.093333pt;}
.y11{bottom:974.853333pt;}
.y102{bottom:976.453333pt;}
.y160{bottom:976.933333pt;}
.y130{bottom:991.173333pt;}
.y10{bottom:993.253333pt;}
.y15f{bottom:995.173333pt;}
.y12f{bottom:1009.280000pt;}
.y1{bottom:1011.680000pt;}
.y15e{bottom:1013.280000pt;}
.ha{height:43.406250pt;}
.h2{height:45.156250pt;}
.h9{height:51.937500pt;}
.h4{height:52.832812pt;}
.hc{height:53.937500pt;}
.h8{height:57.375000pt;}
.hb{height:58.406250pt;}
.h5{height:60.766875pt;}
.h3{height:67.680000pt;}
.h7{height:85.920000pt;}
.h6{height:167.066667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:527.293333pt;}
.w4{width:653.573333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:17.434667pt;}
.x3{left:23.994667pt;}
.xd{left:55.392000pt;}
.xb{left:69.920000pt;}
.x1{left:96.031988pt;}
.xa{left:108.320000pt;}
.x7{left:125.160000pt;}
.x2{left:133.312000pt;}
.x5{left:141.626667pt;}
.x14{left:144.026655pt;}
.x1a{left:168.026655pt;}
.x12{left:171.546655pt;}
.x21{left:181.146655pt;}
.xe{left:188.386667pt;}
.x6{left:191.240000pt;}
.xc{left:195.106667pt;}
.x17{left:202.586655pt;}
.x9{left:209.320000pt;}
.x1e{left:213.946655pt;}
.x18{left:218.906655pt;}
.x1d{left:225.946655pt;}
.x1b{left:240.346655pt;}
.x20{left:252.226655pt;}
.x8{left:263.560000pt;}
.x1f{left:276.706655pt;}
.x16{left:306.466655pt;}
.xf{left:308.066667pt;}
.x19{left:313.346655pt;}
.x23{left:323.266655pt;}
.x13{left:329.506655pt;}
.x22{left:331.746655pt;}
.x15{left:353.186655pt;}
.x10{left:358.306655pt;}
.x11{left:396.866655pt;}
.x1c{left:420.893322pt;}
.x25{left:484.093322pt;}
.x24{left:698.053322pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  