
    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_43128730bae174b84f7f756d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_edcdc6fe4466847f8673782a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.727539;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_d5d45977f1f6ddc08c87af54.woff')format("woff");}.ff3{font-family:ff3;line-height:1.202148;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_888d63111d75a5c7f32f8514.woff')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_3bd2302d9fcbe617c452a7af.woff')format("woff");}.ff5{font-family:ff5;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3fc856444482b6b37739110a.woff')format("woff");}.ff7{font-family:ff7;line-height:1.202148;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);}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.107400px;}
.lsc{letter-spacing:-0.058320px;}
.ls1b{letter-spacing:-0.043920px;}
.ls7{letter-spacing:-0.018000px;}
.ls3{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.023760px;}
.ls1{letter-spacing:0.031680px;}
.ls2{letter-spacing:0.036000px;}
.lsd{letter-spacing:0.060600px;}
.ls5{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.140400px;}
.ls9{letter-spacing:0.174000px;}
.ls0{letter-spacing:0.174240px;}
.ls11{letter-spacing:0.175200px;}
.ls8{letter-spacing:0.180000px;}
.ls12{letter-spacing:0.186600px;}
.ls6{letter-spacing:0.198000px;}
.lsb{letter-spacing:0.216000px;}
.ls18{letter-spacing:0.274800px;}
.lse{letter-spacing:0.306000px;}
.ls10{letter-spacing:0.393600px;}
.ls1c{letter-spacing:0.433440px;}
.ls13{letter-spacing:0.479520px;}
.ls16{letter-spacing:0.780000px;}
.ls17{letter-spacing:0.858000px;}
.ls1a{letter-spacing:97.866720px;}
.ls19{letter-spacing:128.826720px;}
.lsf{letter-spacing:150.426720px;}
.lsa{letter-spacing:328.494240px;}
.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;}
}
.ws7{word-spacing:-16.488000px;}
.wsd{word-spacing:-14.363760px;}
.ws9{word-spacing:-13.899360px;}
.ws8{word-spacing:-13.811760px;}
.wse{word-spacing:-13.780560px;}
.wsa{word-spacing:-13.692360px;}
.wsf{word-spacing:-13.680960px;}
.wsb{word-spacing:-13.646160px;}
.wsc{word-spacing:-13.529520px;}
.ws0{word-spacing:-13.505760px;}
.ws6{word-spacing:-13.447440px;}
.ws1{word-spacing:-13.398360px;}
.ws2{word-spacing:-12.402000px;}
.ws4{word-spacing:-12.204000px;}
.ws3{word-spacing:-12.186000px;}
.ws5{word-spacing:0.000000px;}
._17{margin-left:-3.515040px;}
._13{margin-left:-2.198880px;}
._1{margin-left:-1.179360px;}
._2{width:1.015920px;}
._6{width:2.211120px;}
._7{width:3.884400px;}
._f{width:5.318640px;}
._e{width:6.573600px;}
._d{width:7.709040px;}
._8{width:9.143280px;}
._10{width:11.070000px;}
._b{width:12.191040px;}
._16{width:14.581440px;}
._15{width:16.434000px;}
._14{width:17.629200px;}
._a{width:18.704880px;}
._9{width:19.780560px;}
._c{width:21.752640px;}
._2b{width:23.306400px;}
._4{width:24.322320px;}
._5{width:25.338240px;}
._12{width:27.310320px;}
._11{width:28.326240px;}
._18{width:29.862000px;}
._19{width:31.006080px;}
._37{width:32.270400px;}
._2c{width:33.346080px;}
._25{width:34.601040px;}
._22{width:36.035280px;}
._21{width:37.051200px;}
._2a{width:38.246400px;}
._45{width:39.301200px;}
._20{width:40.397760px;}
._1f{width:41.832000px;}
._33{width:43.744320px;}
._26{width:44.939520px;}
._2e{width:46.001520px;}
._38{width:47.059200px;}
._28{width:48.078720px;}
._27{width:49.242240px;}
._29{width:50.465520px;}
._46{width:51.548400px;}
._32{width:53.007120px;}
._24{width:54.202320px;}
._23{width:55.457280px;}
._39{width:57.159120px;}
._2d{width:58.803840px;}
._36{width:60.464880px;}
._35{width:61.552800px;}
._3b{width:62.987040px;}
._43{width:64.660320px;}
._3d{width:66.214080px;}
._30{width:67.648320px;}
._31{width:68.664240px;}
._42{width:70.576560px;}
._3{width:72.201360px;}
._3e{width:73.206000px;}
._3f{width:74.485920px;}
._66{width:78.823440px;}
._2f{width:80.377200px;}
._4e{width:84.500640px;}
._41{width:85.934880px;}
._40{width:87.010560px;}
._68{width:89.042400px;}
._67{width:90.297360px;}
._54{width:96.572160px;}
._34{width:98.305200px;}
._63{width:100.874880px;}
._44{width:103.265280px;}
._52{width:104.639760px;}
._1b{width:113.832000px;}
._1a{width:115.227360px;}
._3a{width:121.253040px;}
._50{width:135.356400px;}
._51{width:136.372320px;}
._5f{width:137.866320px;}
._4f{width:143.902080px;}
._61{width:144.918000px;}
._59{width:146.352240px;}
._58{width:147.726720px;}
._55{width:151.670880px;}
._47{width:157.228560px;}
._3c{width:159.858000px;}
._4d{width:160.873920px;}
._64{width:189.259920px;}
._49{width:221.948640px;}
._57{width:232.824960px;}
._5e{width:295.035120px;}
._53{width:302.266080px;}
._5c{width:306.030960px;}
._5a{width:311.170320px;}
._4a{width:320.851440px;}
._60{width:331.907040px;}
._48{width:333.162000px;}
._56{width:340.452720px;}
._4c{width:351.687600px;}
._65{width:425.371680px;}
._5b{width:494.454240px;}
._69{width:631.902240px;}
._62{width:742.637520px;}
._4b{width:758.712960px;}
._5d{width:791.999280px;}
._1c{width:850.395120px;}
._1e{width:1059.893520px;}
._1d{width:1417.176000px;}
._0{width:1431.065760px;}
.fc6{color:rgb(238,0,0);}
.fc3{color:transparent;}
.fc2{color:rgb(240,23,6);}
.fc5{color:rgb(255,255,255);}
.fc4{color:rgb(34,34,34);}
.fc1{color:rgb(33,29,30);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y54{bottom:-1140.480000px;}
.y0{bottom:0.000000px;}
.y59{bottom:3.060000px;}
.yc{bottom:3.960000px;}
.y53{bottom:4.320000px;}
.y25{bottom:22.140000px;}
.y52{bottom:39.780000px;}
.y24{bottom:40.500000px;}
.y2{bottom:56.520000px;}
.y57{bottom:57.060000px;}
.y51{bottom:57.600000px;}
.y23{bottom:58.860000px;}
.y58{bottom:71.820000px;}
.y50{bottom:75.420000px;}
.y22{bottom:77.220000px;}
.y38{bottom:88.560000px;}
.y4f{bottom:93.240000px;}
.y21{bottom:95.400000px;}
.y37{bottom:106.920000px;}
.y4e{bottom:111.060000px;}
.y20{bottom:113.760000px;}
.y96{bottom:122.580000px;}
.y36{bottom:125.100000px;}
.y4d{bottom:128.700000px;}
.y1f{bottom:132.120000px;}
.yb8{bottom:132.480000px;}
.y11b{bottom:133.020000px;}
.y11c{bottom:133.200000px;}
.y90{bottom:133.920000px;}
.ye8{bottom:137.520000px;}
.yb7{bottom:137.700000px;}
.y95{bottom:140.940000px;}
.y35{bottom:143.460000px;}
.y4c{bottom:146.520000px;}
.y1e{bottom:150.480000px;}
.y8f{bottom:152.130000px;}
.y11a{bottom:152.850000px;}
.yb6{bottom:155.910000px;}
.ye7{bottom:157.170000px;}
.y94{bottom:159.330000px;}
.y34{bottom:161.850000px;}
.y4b{bottom:164.340000px;}
.y1d{bottom:168.660000px;}
.y8e{bottom:170.490000px;}
.y119{bottom:172.650000px;}
.yb5{bottom:174.270000px;}
.ye6{bottom:176.970000px;}
.y93{bottom:177.690000px;}
.y33{bottom:180.210000px;}
.y4a{bottom:182.160000px;}
.y1c{bottom:187.020000px;}
.y8d{bottom:188.850000px;}
.y118{bottom:192.450000px;}
.yb4{bottom:192.630000px;}
.ye5{bottom:196.770000px;}
.y92{bottom:197.310000px;}
.y32{bottom:198.390000px;}
.y1b{bottom:205.380000px;}
.y8c{bottom:207.030000px;}
.y49{bottom:208.620000px;}
.yb3{bottom:210.990000px;}
.y117{bottom:212.250000px;}
.y91{bottom:213.150000px;}
.ye4{bottom:216.570000px;}
.y31{bottom:216.750000px;}
.y1a{bottom:223.590000px;}
.y8b{bottom:225.390000px;}
.yb2{bottom:229.170000px;}
.y116{bottom:231.870000px;}
.y30{bottom:235.110000px;}
.ye3{bottom:236.370000px;}
.y19{bottom:241.950000px;}
.y8a{bottom:243.750000px;}
.yb1{bottom:247.530000px;}
.y115{bottom:251.670000px;}
.y2f{bottom:253.290000px;}
.ye2{bottom:255.990000px;}
.y18{bottom:260.310000px;}
.y89{bottom:262.110000px;}
.yb0{bottom:265.890000px;}
.y114{bottom:271.470000px;}
.y2e{bottom:271.650000px;}
.ye1{bottom:275.790000px;}
.y17{bottom:278.670000px;}
.y88{bottom:280.290000px;}
.yaf{bottom:284.250000px;}
.y2d{bottom:290.010000px;}
.y113{bottom:291.270000px;}
.y48{bottom:293.250000px;}
.ye0{bottom:295.590000px;}
.y16{bottom:296.850000px;}
.y87{bottom:298.650000px;}
.yae{bottom:302.430000px;}
.y2c{bottom:308.370000px;}
.y112{bottom:310.890000px;}
.y15{bottom:315.210000px;}
.ydf{bottom:315.390000px;}
.y86{bottom:317.010000px;}
.yad{bottom:320.790000px;}
.y47{bottom:322.950000px;}
.y2b{bottom:326.550000px;}
.y111{bottom:330.690000px;}
.y14{bottom:333.570000px;}
.yde{bottom:335.010000px;}
.y85{bottom:335.370000px;}
.yac{bottom:339.150000px;}
.y2a{bottom:344.910000px;}
.y110{bottom:350.490000px;}
.y13{bottom:351.750000px;}
.y46{bottom:352.830000px;}
.y84{bottom:353.550000px;}
.ydd{bottom:354.810000px;}
.yab{bottom:357.330000px;}
.y29{bottom:363.270000px;}
.y45{bottom:369.210000px;}
.y12{bottom:370.110000px;}
.y10f{bottom:370.290000px;}
.y83{bottom:371.910000px;}
.ydc{bottom:374.610000px;}
.yaa{bottom:375.690000px;}
.y28{bottom:381.630000px;}
.y44{bottom:385.590000px;}
.y11{bottom:388.470000px;}
.y10e{bottom:390.090000px;}
.y82{bottom:390.270000px;}
.ya9{bottom:394.050000px;}
.ydb{bottom:394.410000px;}
.y27{bottom:399.810000px;}
.y43{bottom:402.150000px;}
.y10{bottom:406.830000px;}
.y81{bottom:408.495000px;}
.y10d{bottom:409.755000px;}
.ya8{bottom:412.455000px;}
.yda{bottom:414.255000px;}
.y26{bottom:418.215000px;}
.y42{bottom:418.530000px;}
.yf{bottom:425.010000px;}
.y80{bottom:426.855000px;}
.y10c{bottom:429.555000px;}
.ya7{bottom:430.635000px;}
.yd{bottom:432.615000px;}
.yd9{bottom:433.875000px;}
.y41{bottom:435.090000px;}
.y39{bottom:439.815000px;}
.ye{bottom:443.370000px;}
.y7f{bottom:445.215000px;}
.ya6{bottom:448.995000px;}
.y10b{bottom:449.355000px;}
.yd8{bottom:453.675000px;}
.y40{bottom:460.515000px;}
.y7e{bottom:463.575000px;}
.ya5{bottom:467.355000px;}
.y10a{bottom:469.155000px;}
.yd7{bottom:473.475000px;}
.y7d{bottom:481.755000px;}
.ya4{bottom:485.715000px;}
.y109{bottom:488.775000px;}
.y3f{bottom:490.395000px;}
.yd6{bottom:493.275000px;}
.y7c{bottom:500.115000px;}
.ya3{bottom:503.895000px;}
.y108{bottom:508.575000px;}
.yd5{bottom:512.895000px;}
.y7b{bottom:518.475000px;}
.y3e{bottom:520.275000px;}
.ya2{bottom:522.255000px;}
.y107{bottom:528.375000px;}
.yd4{bottom:532.695000px;}
.y7a{bottom:536.655000px;}
.y3d{bottom:537.915000px;}
.ya1{bottom:540.615000px;}
.y106{bottom:548.175000px;}
.yd3{bottom:552.495000px;}
.y79{bottom:555.015000px;}
.y3c{bottom:555.735000px;}
.ya0{bottom:558.795000px;}
.y105{bottom:567.975000px;}
.yd2{bottom:572.295000px;}
.y3b{bottom:573.375000px;}
.y9f{bottom:578.595000px;}
.y104{bottom:587.595000px;}
.y78{bottom:591.735000px;}
.yd1{bottom:592.095000px;}
.y9e{bottom:598.395000px;}
.y3a{bottom:599.295000px;}
.y103{bottom:607.395000px;}
.y77{bottom:609.915000px;}
.yd0{bottom:611.715000px;}
.y9d{bottom:618.015000px;}
.y102{bottom:627.195000px;}
.y76{bottom:628.275000px;}
.ycf{bottom:631.515000px;}
.y9c{bottom:637.815000px;}
.y75{bottom:646.635000px;}
.y101{bottom:646.995000px;}
.yce{bottom:651.345000px;}
.y9b{bottom:657.645000px;}
.y74{bottom:665.025000px;}
.y100{bottom:666.645000px;}
.ycd{bottom:671.145000px;}
.y9a{bottom:677.445000px;}
.y73{bottom:683.205000px;}
.yff{bottom:686.445000px;}
.ycc{bottom:690.765000px;}
.y99{bottom:697.245000px;}
.y72{bottom:701.565000px;}
.yfe{bottom:706.245000px;}
.ycb{bottom:710.565000px;}
.y98{bottom:716.865000px;}
.y71{bottom:719.925000px;}
.yfd{bottom:726.045000px;}
.yca{bottom:730.365000px;}
.y97{bottom:736.665000px;}
.y70{bottom:738.105000px;}
.yfc{bottom:745.845000px;}
.yc9{bottom:750.165000px;}
.y6f{bottom:756.465000px;}
.yfb{bottom:765.465000px;}
.yc8{bottom:769.965000px;}
.y6e{bottom:774.825000px;}
.yfa{bottom:785.265000px;}
.yc7{bottom:789.585000px;}
.y6d{bottom:793.185000px;}
.yf9{bottom:805.065000px;}
.yc6{bottom:809.385000px;}
.y6c{bottom:811.365000px;}
.yf8{bottom:824.865000px;}
.yc5{bottom:829.185000px;}
.y6b{bottom:829.725000px;}
.yf7{bottom:844.485000px;}
.y6a{bottom:848.085000px;}
.yc4{bottom:848.985000px;}
.yf6{bottom:864.285000px;}
.y69{bottom:866.445000px;}
.yc3{bottom:868.605000px;}
.yf5{bottom:884.085000px;}
.y68{bottom:884.625000px;}
.yc2{bottom:888.405000px;}
.yb{bottom:890.385000px;}
.y67{bottom:903.030000px;}
.yf4{bottom:903.930000px;}
.yc1{bottom:908.250000px;}
.ya{bottom:913.290000px;}
.y66{bottom:921.390000px;}
.yf3{bottom:923.730000px;}
.yc0{bottom:928.050000px;}
.y9{bottom:932.730000px;}
.y65{bottom:939.570000px;}
.yf2{bottom:943.350000px;}
.ybf{bottom:947.850000px;}
.y8{bottom:951.270000px;}
.y64{bottom:957.930000px;}
.yf1{bottom:963.150000px;}
.ybe{bottom:967.470000px;}
.y7{bottom:973.230000px;}
.y63{bottom:976.290000px;}
.yf0{bottom:982.950000px;}
.ybd{bottom:987.270000px;}
.y6{bottom:991.410000px;}
.y62{bottom:994.650000px;}
.yef{bottom:1002.750000px;}
.ybc{bottom:1007.070000px;}
.y5{bottom:1011.390000px;}
.y61{bottom:1012.830000px;}
.yee{bottom:1022.370000px;}
.ybb{bottom:1026.870000px;}
.y60{bottom:1031.190000px;}
.y4{bottom:1037.130000px;}
.yed{bottom:1042.170000px;}
.yba{bottom:1046.490000px;}
.y5f{bottom:1049.550000px;}
.y3{bottom:1061.610000px;}
.yec{bottom:1061.970000px;}
.yb9{bottom:1066.290000px;}
.y5e{bottom:1067.910000px;}
.yeb{bottom:1081.770000px;}
.y5d{bottom:1086.090000px;}
.yea{bottom:1101.570000px;}
.y1{bottom:1102.110000px;}
.y5c{bottom:1104.450000px;}
.ye9{bottom:1121.190000px;}
.y5b{bottom:1122.810000px;}
.y5a{bottom:1140.990000px;}
.y56{bottom:1159.020000px;}
.y55{bottom:1175.940000px;}
.h7{height:18.396000px;}
.hd{height:20.160000px;}
.h3{height:47.415937px;}
.hc{height:47.980898px;}
.hb{height:53.709961px;}
.ha{height:55.291992px;}
.h6{height:59.439023px;}
.h5{height:61.189805px;}
.h2{height:65.884219px;}
.he{height:73.722656px;}
.h4{height:86.255508px;}
.h8{height:457.770000px;}
.h9{height:613.695000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:49.500000px;}
.w4{width:216.750000px;}
.w3{width:478.515000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x6{left:10.800000px;}
.x1{left:84.995987px;}
.x9{left:145.655987px;}
.x7{left:202.005000px;}
.xc{left:204.869987px;}
.x8{left:265.575000px;}
.x4{left:473.144987px;}
.x5{left:586.545000px;}
.xb{left:674.249987px;}
.xa{left:756.330000px;}
.x2{left:808.019987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.095467pt;}
.lsc{letter-spacing:-0.051840pt;}
.ls1b{letter-spacing:-0.039040pt;}
.ls7{letter-spacing:-0.016000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.021120pt;}
.ls1{letter-spacing:0.028160pt;}
.ls2{letter-spacing:0.032000pt;}
.lsd{letter-spacing:0.053867pt;}
.ls5{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.124800pt;}
.ls9{letter-spacing:0.154667pt;}
.ls0{letter-spacing:0.154880pt;}
.ls11{letter-spacing:0.155733pt;}
.ls8{letter-spacing:0.160000pt;}
.ls12{letter-spacing:0.165867pt;}
.ls6{letter-spacing:0.176000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls18{letter-spacing:0.244267pt;}
.lse{letter-spacing:0.272000pt;}
.ls10{letter-spacing:0.349867pt;}
.ls1c{letter-spacing:0.385280pt;}
.ls13{letter-spacing:0.426240pt;}
.ls16{letter-spacing:0.693333pt;}
.ls17{letter-spacing:0.762667pt;}
.ls1a{letter-spacing:86.992640pt;}
.ls19{letter-spacing:114.512640pt;}
.lsf{letter-spacing:133.712640pt;}
.lsa{letter-spacing:291.994880pt;}
.ws7{word-spacing:-14.656000pt;}
.wsd{word-spacing:-12.767787pt;}
.ws9{word-spacing:-12.354987pt;}
.ws8{word-spacing:-12.277120pt;}
.wse{word-spacing:-12.249387pt;}
.wsa{word-spacing:-12.170987pt;}
.wsf{word-spacing:-12.160853pt;}
.wsb{word-spacing:-12.129920pt;}
.wsc{word-spacing:-12.026240pt;}
.ws0{word-spacing:-12.005120pt;}
.ws6{word-spacing:-11.953280pt;}
.ws1{word-spacing:-11.909653pt;}
.ws2{word-spacing:-11.024000pt;}
.ws4{word-spacing:-10.848000pt;}
.ws3{word-spacing:-10.832000pt;}
.ws5{word-spacing:0.000000pt;}
._17{margin-left:-3.124480pt;}
._13{margin-left:-1.954560pt;}
._1{margin-left:-1.048320pt;}
._2{width:0.903040pt;}
._6{width:1.965440pt;}
._7{width:3.452800pt;}
._f{width:4.727680pt;}
._e{width:5.843200pt;}
._d{width:6.852480pt;}
._8{width:8.127360pt;}
._10{width:9.840000pt;}
._b{width:10.836480pt;}
._16{width:12.961280pt;}
._15{width:14.608000pt;}
._14{width:15.670400pt;}
._a{width:16.626560pt;}
._9{width:17.582720pt;}
._c{width:19.335680pt;}
._2b{width:20.716800pt;}
._4{width:21.619840pt;}
._5{width:22.522880pt;}
._12{width:24.275840pt;}
._11{width:25.178880pt;}
._18{width:26.544000pt;}
._19{width:27.560960pt;}
._37{width:28.684800pt;}
._2c{width:29.640960pt;}
._25{width:30.756480pt;}
._22{width:32.031360pt;}
._21{width:32.934400pt;}
._2a{width:33.996800pt;}
._45{width:34.934400pt;}
._20{width:35.909120pt;}
._1f{width:37.184000pt;}
._33{width:38.883840pt;}
._26{width:39.946240pt;}
._2e{width:40.890240pt;}
._38{width:41.830400pt;}
._28{width:42.736640pt;}
._27{width:43.770880pt;}
._29{width:44.858240pt;}
._46{width:45.820800pt;}
._32{width:47.117440pt;}
._24{width:48.179840pt;}
._23{width:49.295360pt;}
._39{width:50.808107pt;}
._2d{width:52.270080pt;}
._36{width:53.746560pt;}
._35{width:54.713600pt;}
._3b{width:55.988480pt;}
._43{width:57.475840pt;}
._3d{width:58.856960pt;}
._30{width:60.131840pt;}
._31{width:61.034880pt;}
._42{width:62.734720pt;}
._3{width:64.178987pt;}
._3e{width:65.072000pt;}
._3f{width:66.209707pt;}
._66{width:70.065280pt;}
._2f{width:71.446400pt;}
._4e{width:75.111680pt;}
._41{width:76.386560pt;}
._40{width:77.342720pt;}
._68{width:79.148800pt;}
._67{width:80.264320pt;}
._54{width:85.841920pt;}
._34{width:87.382400pt;}
._63{width:89.666560pt;}
._44{width:91.791360pt;}
._52{width:93.013120pt;}
._1b{width:101.184000pt;}
._1a{width:102.424320pt;}
._3a{width:107.780480pt;}
._50{width:120.316800pt;}
._51{width:121.219840pt;}
._5f{width:122.547840pt;}
._4f{width:127.912960pt;}
._61{width:128.816000pt;}
._59{width:130.090880pt;}
._58{width:131.312640pt;}
._55{width:134.818560pt;}
._47{width:139.758720pt;}
._3c{width:142.096000pt;}
._4d{width:142.999040pt;}
._64{width:168.231040pt;}
._49{width:197.287680pt;}
._57{width:206.955520pt;}
._5e{width:262.253440pt;}
._53{width:268.680960pt;}
._5c{width:272.027520pt;}
._5a{width:276.595840pt;}
._4a{width:285.201280pt;}
._60{width:295.028480pt;}
._48{width:296.144000pt;}
._56{width:302.624640pt;}
._4c{width:312.611200pt;}
._65{width:378.108160pt;}
._5b{width:439.514880pt;}
._69{width:561.690880pt;}
._62{width:660.122240pt;}
._4b{width:674.411520pt;}
._5d{width:703.999360pt;}
._1c{width:755.906773pt;}
._1e{width:942.127573pt;}
._1d{width:1259.712000pt;}
._0{width:1272.058453pt;}
.fs4{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y54{bottom:-1013.760000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:2.720000pt;}
.yc{bottom:3.520000pt;}
.y53{bottom:3.840000pt;}
.y25{bottom:19.680000pt;}
.y52{bottom:35.360000pt;}
.y24{bottom:36.000000pt;}
.y2{bottom:50.240000pt;}
.y57{bottom:50.720000pt;}
.y51{bottom:51.200000pt;}
.y23{bottom:52.320000pt;}
.y58{bottom:63.840000pt;}
.y50{bottom:67.040000pt;}
.y22{bottom:68.640000pt;}
.y38{bottom:78.720000pt;}
.y4f{bottom:82.880000pt;}
.y21{bottom:84.800000pt;}
.y37{bottom:95.040000pt;}
.y4e{bottom:98.720000pt;}
.y20{bottom:101.120000pt;}
.y96{bottom:108.960000pt;}
.y36{bottom:111.200000pt;}
.y4d{bottom:114.400000pt;}
.y1f{bottom:117.440000pt;}
.yb8{bottom:117.760000pt;}
.y11b{bottom:118.240000pt;}
.y11c{bottom:118.400000pt;}
.y90{bottom:119.040000pt;}
.ye8{bottom:122.240000pt;}
.yb7{bottom:122.400000pt;}
.y95{bottom:125.280000pt;}
.y35{bottom:127.520000pt;}
.y4c{bottom:130.240000pt;}
.y1e{bottom:133.760000pt;}
.y8f{bottom:135.226667pt;}
.y11a{bottom:135.866667pt;}
.yb6{bottom:138.586667pt;}
.ye7{bottom:139.706667pt;}
.y94{bottom:141.626667pt;}
.y34{bottom:143.866667pt;}
.y4b{bottom:146.080000pt;}
.y1d{bottom:149.920000pt;}
.y8e{bottom:151.546667pt;}
.y119{bottom:153.466667pt;}
.yb5{bottom:154.906667pt;}
.ye6{bottom:157.306667pt;}
.y93{bottom:157.946667pt;}
.y33{bottom:160.186667pt;}
.y4a{bottom:161.920000pt;}
.y1c{bottom:166.240000pt;}
.y8d{bottom:167.866667pt;}
.y118{bottom:171.066667pt;}
.yb4{bottom:171.226667pt;}
.ye5{bottom:174.906667pt;}
.y92{bottom:175.386667pt;}
.y32{bottom:176.346667pt;}
.y1b{bottom:182.560000pt;}
.y8c{bottom:184.026667pt;}
.y49{bottom:185.440000pt;}
.yb3{bottom:187.546667pt;}
.y117{bottom:188.666667pt;}
.y91{bottom:189.466667pt;}
.ye4{bottom:192.506667pt;}
.y31{bottom:192.666667pt;}
.y1a{bottom:198.746667pt;}
.y8b{bottom:200.346667pt;}
.yb2{bottom:203.706667pt;}
.y116{bottom:206.106667pt;}
.y30{bottom:208.986667pt;}
.ye3{bottom:210.106667pt;}
.y19{bottom:215.066667pt;}
.y8a{bottom:216.666667pt;}
.yb1{bottom:220.026667pt;}
.y115{bottom:223.706667pt;}
.y2f{bottom:225.146667pt;}
.ye2{bottom:227.546667pt;}
.y18{bottom:231.386667pt;}
.y89{bottom:232.986667pt;}
.yb0{bottom:236.346667pt;}
.y114{bottom:241.306667pt;}
.y2e{bottom:241.466667pt;}
.ye1{bottom:245.146667pt;}
.y17{bottom:247.706667pt;}
.y88{bottom:249.146667pt;}
.yaf{bottom:252.666667pt;}
.y2d{bottom:257.786667pt;}
.y113{bottom:258.906667pt;}
.y48{bottom:260.666667pt;}
.ye0{bottom:262.746667pt;}
.y16{bottom:263.866667pt;}
.y87{bottom:265.466667pt;}
.yae{bottom:268.826667pt;}
.y2c{bottom:274.106667pt;}
.y112{bottom:276.346667pt;}
.y15{bottom:280.186667pt;}
.ydf{bottom:280.346667pt;}
.y86{bottom:281.786667pt;}
.yad{bottom:285.146667pt;}
.y47{bottom:287.066667pt;}
.y2b{bottom:290.266667pt;}
.y111{bottom:293.946667pt;}
.y14{bottom:296.506667pt;}
.yde{bottom:297.786667pt;}
.y85{bottom:298.106667pt;}
.yac{bottom:301.466667pt;}
.y2a{bottom:306.586667pt;}
.y110{bottom:311.546667pt;}
.y13{bottom:312.666667pt;}
.y46{bottom:313.626667pt;}
.y84{bottom:314.266667pt;}
.ydd{bottom:315.386667pt;}
.yab{bottom:317.626667pt;}
.y29{bottom:322.906667pt;}
.y45{bottom:328.186667pt;}
.y12{bottom:328.986667pt;}
.y10f{bottom:329.146667pt;}
.y83{bottom:330.586667pt;}
.ydc{bottom:332.986667pt;}
.yaa{bottom:333.946667pt;}
.y28{bottom:339.226667pt;}
.y44{bottom:342.746667pt;}
.y11{bottom:345.306667pt;}
.y10e{bottom:346.746667pt;}
.y82{bottom:346.906667pt;}
.ya9{bottom:350.266667pt;}
.ydb{bottom:350.586667pt;}
.y27{bottom:355.386667pt;}
.y43{bottom:357.466667pt;}
.y10{bottom:361.626667pt;}
.y81{bottom:363.106667pt;}
.y10d{bottom:364.226667pt;}
.ya8{bottom:366.626667pt;}
.yda{bottom:368.226667pt;}
.y26{bottom:371.746667pt;}
.y42{bottom:372.026667pt;}
.yf{bottom:377.786667pt;}
.y80{bottom:379.426667pt;}
.y10c{bottom:381.826667pt;}
.ya7{bottom:382.786667pt;}
.yd{bottom:384.546667pt;}
.yd9{bottom:385.666667pt;}
.y41{bottom:386.746667pt;}
.y39{bottom:390.946667pt;}
.ye{bottom:394.106667pt;}
.y7f{bottom:395.746667pt;}
.ya6{bottom:399.106667pt;}
.y10b{bottom:399.426667pt;}
.yd8{bottom:403.266667pt;}
.y40{bottom:409.346667pt;}
.y7e{bottom:412.066667pt;}
.ya5{bottom:415.426667pt;}
.y10a{bottom:417.026667pt;}
.yd7{bottom:420.866667pt;}
.y7d{bottom:428.226667pt;}
.ya4{bottom:431.746667pt;}
.y109{bottom:434.466667pt;}
.y3f{bottom:435.906667pt;}
.yd6{bottom:438.466667pt;}
.y7c{bottom:444.546667pt;}
.ya3{bottom:447.906667pt;}
.y108{bottom:452.066667pt;}
.yd5{bottom:455.906667pt;}
.y7b{bottom:460.866667pt;}
.y3e{bottom:462.466667pt;}
.ya2{bottom:464.226667pt;}
.y107{bottom:469.666667pt;}
.yd4{bottom:473.506667pt;}
.y7a{bottom:477.026667pt;}
.y3d{bottom:478.146667pt;}
.ya1{bottom:480.546667pt;}
.y106{bottom:487.266667pt;}
.yd3{bottom:491.106667pt;}
.y79{bottom:493.346667pt;}
.y3c{bottom:493.986667pt;}
.ya0{bottom:496.706667pt;}
.y105{bottom:504.866667pt;}
.yd2{bottom:508.706667pt;}
.y3b{bottom:509.666667pt;}
.y9f{bottom:514.306667pt;}
.y104{bottom:522.306667pt;}
.y78{bottom:525.986667pt;}
.yd1{bottom:526.306667pt;}
.y9e{bottom:531.906667pt;}
.y3a{bottom:532.706667pt;}
.y103{bottom:539.906667pt;}
.y77{bottom:542.146667pt;}
.yd0{bottom:543.746667pt;}
.y9d{bottom:549.346667pt;}
.y102{bottom:557.506667pt;}
.y76{bottom:558.466667pt;}
.ycf{bottom:561.346667pt;}
.y9c{bottom:566.946667pt;}
.y75{bottom:574.786667pt;}
.y101{bottom:575.106667pt;}
.yce{bottom:578.973333pt;}
.y9b{bottom:584.573333pt;}
.y74{bottom:591.133333pt;}
.y100{bottom:592.573333pt;}
.ycd{bottom:596.573333pt;}
.y9a{bottom:602.173333pt;}
.y73{bottom:607.293333pt;}
.yff{bottom:610.173333pt;}
.ycc{bottom:614.013333pt;}
.y99{bottom:619.773333pt;}
.y72{bottom:623.613333pt;}
.yfe{bottom:627.773333pt;}
.ycb{bottom:631.613333pt;}
.y98{bottom:637.213333pt;}
.y71{bottom:639.933333pt;}
.yfd{bottom:645.373333pt;}
.yca{bottom:649.213333pt;}
.y97{bottom:654.813333pt;}
.y70{bottom:656.093333pt;}
.yfc{bottom:662.973333pt;}
.yc9{bottom:666.813333pt;}
.y6f{bottom:672.413333pt;}
.yfb{bottom:680.413333pt;}
.yc8{bottom:684.413333pt;}
.y6e{bottom:688.733333pt;}
.yfa{bottom:698.013333pt;}
.yc7{bottom:701.853333pt;}
.y6d{bottom:705.053333pt;}
.yf9{bottom:715.613333pt;}
.yc6{bottom:719.453333pt;}
.y6c{bottom:721.213333pt;}
.yf8{bottom:733.213333pt;}
.yc5{bottom:737.053333pt;}
.y6b{bottom:737.533333pt;}
.yf7{bottom:750.653333pt;}
.y6a{bottom:753.853333pt;}
.yc4{bottom:754.653333pt;}
.yf6{bottom:768.253333pt;}
.y69{bottom:770.173333pt;}
.yc3{bottom:772.093333pt;}
.yf5{bottom:785.853333pt;}
.y68{bottom:786.333333pt;}
.yc2{bottom:789.693333pt;}
.yb{bottom:791.453333pt;}
.y67{bottom:802.693333pt;}
.yf4{bottom:803.493333pt;}
.yc1{bottom:807.333333pt;}
.ya{bottom:811.813333pt;}
.y66{bottom:819.013333pt;}
.yf3{bottom:821.093333pt;}
.yc0{bottom:824.933333pt;}
.y9{bottom:829.093333pt;}
.y65{bottom:835.173333pt;}
.yf2{bottom:838.533333pt;}
.ybf{bottom:842.533333pt;}
.y8{bottom:845.573333pt;}
.y64{bottom:851.493333pt;}
.yf1{bottom:856.133333pt;}
.ybe{bottom:859.973333pt;}
.y7{bottom:865.093333pt;}
.y63{bottom:867.813333pt;}
.yf0{bottom:873.733333pt;}
.ybd{bottom:877.573333pt;}
.y6{bottom:881.253333pt;}
.y62{bottom:884.133333pt;}
.yef{bottom:891.333333pt;}
.ybc{bottom:895.173333pt;}
.y5{bottom:899.013333pt;}
.y61{bottom:900.293333pt;}
.yee{bottom:908.773333pt;}
.ybb{bottom:912.773333pt;}
.y60{bottom:916.613333pt;}
.y4{bottom:921.893333pt;}
.yed{bottom:926.373333pt;}
.yba{bottom:930.213333pt;}
.y5f{bottom:932.933333pt;}
.y3{bottom:943.653333pt;}
.yec{bottom:943.973333pt;}
.yb9{bottom:947.813333pt;}
.y5e{bottom:949.253333pt;}
.yeb{bottom:961.573333pt;}
.y5d{bottom:965.413333pt;}
.yea{bottom:979.173333pt;}
.y1{bottom:979.653333pt;}
.y5c{bottom:981.733333pt;}
.ye9{bottom:996.613333pt;}
.y5b{bottom:998.053333pt;}
.y5a{bottom:1014.213333pt;}
.y56{bottom:1030.240000pt;}
.y55{bottom:1045.280000pt;}
.h7{height:16.352000pt;}
.hd{height:17.920000pt;}
.h3{height:42.147500pt;}
.hc{height:42.649687pt;}
.hb{height:47.742188pt;}
.ha{height:49.148438pt;}
.h6{height:52.834688pt;}
.h5{height:54.390938pt;}
.h2{height:58.563750pt;}
.he{height:65.531250pt;}
.h4{height:76.671562pt;}
.h8{height:406.906667pt;}
.h9{height:545.506667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:44.000000pt;}
.w4{width:192.666667pt;}
.w3{width:425.346667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x6{left:9.600000pt;}
.x1{left:75.551988pt;}
.x9{left:129.471988pt;}
.x7{left:179.560000pt;}
.xc{left:182.106655pt;}
.x8{left:236.066667pt;}
.x4{left:420.573322pt;}
.x5{left:521.373333pt;}
.xb{left:599.333322pt;}
.xa{left:672.293333pt;}
.x2{left:718.239988pt;}
}




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