
    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_695ef49445a5c3a9e1f29da6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.073242;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_db5434f804902ffc3e2e05f5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.073242;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_c252991900af59f3ab4661d2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.050293;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_6a9c059388c6a5f86a11b147.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ab6ddd00fee2e82b6ca99eaa.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_b8fed40b2623cf4caa2209c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_d95c0c211cd8882254410c70.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.854980;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_72dc78bcbc254d797ebe36f9.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_aa9d6cba3f929d42efdf7f77.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_27fb3c20856f0669d0fa40a0.woff2')format("woff");}.ffd{font-family:ffd;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;}
.m2{transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249617,0.000000,0.000000,0.250000,0,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);}
.m3{transform:matrix(0.254085,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254085,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254085,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.v3{vertical-align:54.000000px;}
.lsd{letter-spacing:-0.702000px;}
.lse{letter-spacing:-0.612000px;}
.ls1b{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.360000px;}
.ls15{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.108000px;}
.ls9{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.126000px;}
.ls18{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.900000px;}
.ls4{letter-spacing:3.060000px;}
.ls10{letter-spacing:11.628000px;}
.lsb{letter-spacing:20.340000px;}
.ls2{letter-spacing:22.500000px;}
.ls6{letter-spacing:23.220000px;}
.ls1{letter-spacing:28.260000px;}
.ls17{letter-spacing:29.700000px;}
.ls5{letter-spacing:41.940000px;}
.ls13{letter-spacing:48.348000px;}
.ls12{letter-spacing:51.228000px;}
.ls11{letter-spacing:60.588000px;}
.ls8{letter-spacing:64.026720px;}
.ls3{letter-spacing:68.508000px;}
.ls16{letter-spacing:972.480000px;}
.ls19{letter-spacing:1307.160000px;}
.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;}
}
.ws3{word-spacing:-59.760000px;}
.ws2{word-spacing:-54.000000px;}
.ws0{word-spacing:-32.400000px;}
.ws5{word-spacing:-16.560000px;}
.ws9{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.626000px;}
.ws1{word-spacing:-13.500000px;}
.ws4{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.284000px;}
.ws7{word-spacing:-13.140000px;}
.wsa{word-spacing:-12.186343px;}
.ws6{word-spacing:0.000000px;}
.wsb{word-spacing:663.702392px;}
._2f{margin-left:-3.124983px;}
._0{margin-left:-1.263600px;}
._1{width:1.718400px;}
._a{width:3.195600px;}
._8{width:4.471200px;}
._7{width:5.508000px;}
._9{width:6.642000px;}
._32{width:7.722000px;}
._19{width:8.730000px;}
._d{width:10.015200px;}
._5{width:11.070000px;}
._4{width:12.096000px;}
._17{width:14.742000px;}
._12{width:16.524000px;}
._11{width:17.550000px;}
._21{width:18.876000px;}
._16{width:19.926000px;}
._1b{width:21.698400px;}
._6{width:22.711200px;}
._15{width:24.231600px;}
._e{width:25.974000px;}
._3{width:27.432000px;}
._2{width:28.458000px;}
._f{width:29.538000px;}
._25{width:30.942000px;}
._1c{width:32.724000px;}
._2e{width:33.804000px;}
._20{width:34.905600px;}
._1f{width:36.234000px;}
._1e{width:37.746000px;}
._1a{width:39.182400px;}
._24{width:40.711200px;}
._10{width:42.078000px;}
._c{width:43.473600px;}
._b{width:44.676000px;}
._18{width:45.900000px;}
._29{width:47.088000px;}
._27{width:48.276000px;}
._23{width:49.302000px;}
._22{width:50.652000px;}
._31{width:53.932800px;}
._28{width:54.972000px;}
._1d{width:56.754000px;}
._26{width:58.320000px;}
._14{width:65.349600px;}
._13{width:67.014000px;}
._2b{width:77.544000px;}
._2a{width:78.678000px;}
._2c{width:105.030000px;}
._2d{width:233.280000px;}
._30{width:1008.229434px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs7{font-size:53.921872px;}
.fs3{font-size:54.000000px;}
.fs6{font-size:54.033743px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:62.552839px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd6{bottom:2.880000px;}
.yd9{bottom:5.940000px;}
.yd4{bottom:10.620000px;}
.yda{bottom:13.680000px;}
.yf0{bottom:17.815994px;}
.yd5{bottom:18.540000px;}
.yd8{bottom:21.420000px;}
.yf6{bottom:23.493420px;}
.yfe{bottom:24.022238px;}
.yef{bottom:34.009336px;}
.yf5{bottom:39.686762px;}
.yee{bottom:50.202679px;}
.yf4{bottom:55.880102px;}
.yed{bottom:66.396021px;}
.yec{bottom:104.068590px;}
.yeb{bottom:120.259695px;}
.yf3{bottom:123.649403px;}
.yf2{bottom:139.837151px;}
.yf1{bottom:156.036088px;}
.y4e{bottom:164.010000px;}
.y35{bottom:165.810000px;}
.y12d{bottom:165.990000px;}
.yba{bottom:167.250000px;}
.y8d{bottom:170.310000px;}
.y4d{bottom:179.490000px;}
.y12c{bottom:181.470000px;}
.yb9{bottom:182.730000px;}
.y145{bottom:184.170000px;}
.y8c{bottom:185.790000px;}
.y4c{bottom:194.970000px;}
.y12b{bottom:196.950000px;}
.yb8{bottom:198.210000px;}
.y34{bottom:199.650000px;}
.y8b{bottom:201.270000px;}
.y4b{bottom:210.630000px;}
.y12a{bottom:212.430000px;}
.yb7{bottom:213.690000px;}
.y144{bottom:215.130000px;}
.y8a{bottom:216.750000px;}
.y4a{bottom:226.110000px;}
.y33{bottom:227.010000px;}
.y129{bottom:227.910000px;}
.yb6{bottom:229.350000px;}
.y143{bottom:230.610000px;}
.y89{bottom:232.230000px;}
.y49{bottom:241.590000px;}
.y32{bottom:242.490000px;}
.y128{bottom:243.390000px;}
.yb5{bottom:244.830000px;}
.y142{bottom:246.090000px;}
.y88{bottom:247.710000px;}
.y31{bottom:257.970000px;}
.y127{bottom:259.050000px;}
.yb4{bottom:260.310000px;}
.y141{bottom:261.750000px;}
.y87{bottom:263.370000px;}
.y48{bottom:266.610000px;}
.y30{bottom:273.630000px;}
.y126{bottom:274.530000px;}
.yb3{bottom:275.790000px;}
.y140{bottom:277.230000px;}
.y86{bottom:278.850000px;}
.y2f{bottom:289.110000px;}
.yb2{bottom:291.270000px;}
.y13f{bottom:292.710000px;}
.y125{bottom:293.070000px;}
.y85{bottom:297.390000px;}
.y47{bottom:301.530000px;}
.y2e{bottom:304.590000px;}
.yb1{bottom:306.930000px;}
.y13e{bottom:308.190000px;}
.y124{bottom:311.610000px;}
.y84{bottom:312.870000px;}
.y46{bottom:317.010000px;}
.y2d{bottom:320.070000px;}
.y13d{bottom:323.670000px;}
.yb0{bottom:325.290000px;}
.y123{bottom:327.090000px;}
.y83{bottom:328.350000px;}
.y45{bottom:332.670000px;}
.y2c{bottom:335.550000px;}
.y13c{bottom:339.150000px;}
.yaf{bottom:340.950000px;}
.y122{bottom:342.570000px;}
.y82{bottom:343.830000px;}
.y44{bottom:348.150000px;}
.yfa{bottom:352.650000px;}
.y13b{bottom:354.810000px;}
.y2b{bottom:355.170000px;}
.yae{bottom:356.430000px;}
.y121{bottom:358.050000px;}
.y81{bottom:359.310000px;}
.y43{bottom:363.630000px;}
.y13a{bottom:370.290000px;}
.y2a{bottom:370.650000px;}
.yf9{bottom:371.190000px;}
.yad{bottom:371.910000px;}
.y120{bottom:373.530000px;}
.y80{bottom:374.970000px;}
.y42{bottom:379.110000px;}
.y29{bottom:386.130000px;}
.yac{bottom:387.435000px;}
.y11f{bottom:389.055000px;}
.yf8{bottom:389.955000px;}
.y7f{bottom:390.495000px;}
.y139{bottom:395.355000px;}
.y41{bottom:400.215000px;}
.y28{bottom:401.655000px;}
.yab{bottom:402.915000px;}
.y11e{bottom:404.715000px;}
.y7e{bottom:405.975000px;}
.yf7{bottom:406.875000px;}
.yea{bottom:407.324452px;}
.y40{bottom:415.695000px;}
.y27{bottom:417.135000px;}
.yaa{bottom:418.395000px;}
.y11d{bottom:420.195000px;}
.y7d{bottom:421.455000px;}
.y3f{bottom:431.175000px;}
.y26{bottom:432.615000px;}
.ya9{bottom:434.055000px;}
.y11c{bottom:435.675000px;}
.y7c{bottom:436.935000px;}
.y138{bottom:445.215000px;}
.y3e{bottom:446.655000px;}
.ya8{bottom:449.535000px;}
.y11b{bottom:451.155000px;}
.y25{bottom:452.235000px;}
.y7b{bottom:455.475000px;}
.y3d{bottom:462.135000px;}
.ya7{bottom:465.015000px;}
.y24{bottom:467.715000px;}
.y11a{bottom:469.695000px;}
.y137{bottom:469.875000px;}
.y7a{bottom:470.955000px;}
.ya6{bottom:480.495000px;}
.y23{bottom:483.195000px;}
.y79{bottom:486.435000px;}
.y119{bottom:488.235000px;}
.ya5{bottom:495.975000px;}
.y22{bottom:498.675000px;}
.y78{bottom:502.095000px;}
.y118{bottom:503.715000px;}
.ya4{bottom:511.455000px;}
.y21{bottom:514.155000px;}
.y77{bottom:517.575000px;}
.y117{bottom:519.195000px;}
.y20{bottom:529.635000px;}
.y3c{bottom:529.815000px;}
.ya3{bottom:529.995000px;}
.y76{bottom:533.055000px;}
.y116{bottom:534.675000px;}
.y3b{bottom:545.295000px;}
.ya2{bottom:545.475000px;}
.y75{bottom:548.535000px;}
.y1f{bottom:549.255000px;}
.y115{bottom:550.155000px;}
.ya1{bottom:561.135000px;}
.y74{bottom:564.015000px;}
.y1e{bottom:564.735000px;}
.y114{bottom:565.815000px;}
.y3a{bottom:566.175000px;}
.ya0{bottom:576.615000px;}
.y73{bottom:579.675000px;}
.y113{bottom:581.295000px;}
.y39{bottom:581.655000px;}
.ye9{bottom:583.995000px;}
.y1d{bottom:584.175000px;}
.y9f{bottom:592.095000px;}
.yc9{bottom:593.715000px;}
.y72{bottom:595.155000px;}
.y112{bottom:596.775000px;}
.y38{bottom:597.135000px;}
.y1c{bottom:599.655000px;}
.ye8{bottom:602.535000px;}
.y9e{bottom:607.575000px;}
.yc8{bottom:609.195000px;}
.y71{bottom:610.635000px;}
.y111{bottom:612.255000px;}
.y1b{bottom:615.315000px;}
.ye7{bottom:618.015000px;}
.y37{bottom:618.195000px;}
.y9d{bottom:623.055000px;}
.yc7{bottom:624.675000px;}
.y70{bottom:626.115000px;}
.y110{bottom:627.735000px;}
.y1a{bottom:630.795000px;}
.ye6{bottom:633.495000px;}
.y36{bottom:633.675000px;}
.y9c{bottom:638.715000px;}
.yc6{bottom:640.185000px;}
.y6f{bottom:641.625000px;}
.y10f{bottom:643.425000px;}
.ye5{bottom:649.185000px;}
.y19{bottom:649.365000px;}
.y9b{bottom:654.225000px;}
.yc5{bottom:655.845000px;}
.y6e{bottom:657.105000px;}
.y10e{bottom:658.905000px;}
.y18{bottom:664.845000px;}
.ye4{bottom:667.545000px;}
.y9a{bottom:669.705000px;}
.yc4{bottom:671.325000px;}
.y6d{bottom:672.765000px;}
.y10d{bottom:677.445000px;}
.y17{bottom:680.325000px;}
.y99{bottom:685.185000px;}
.ye3{bottom:686.085000px;}
.yc3{bottom:686.805000px;}
.y6c{bottom:688.245000px;}
.y16{bottom:695.805000px;}
.y98{bottom:700.665000px;}
.ye2{bottom:701.565000px;}
.yc2{bottom:702.285000px;}
.y6b{bottom:703.725000px;}
.y15{bottom:711.285000px;}
.y10c{bottom:711.465000px;}
.yc1{bottom:717.765000px;}
.y6a{bottom:719.205000px;}
.ye1{bottom:720.105000px;}
.y69{bottom:734.685000px;}
.ye0{bottom:735.585000px;}
.yc0{bottom:736.305000px;}
.y14{bottom:736.485000px;}
.y68{bottom:750.165000px;}
.ydf{bottom:754.125000px;}
.ybf{bottom:754.845000px;}
.y13{bottom:761.865000px;}
.y67{bottom:765.825000px;}
.yde{bottom:769.605000px;}
.y10b{bottom:771.405000px;}
.y136{bottom:773.385000px;}
.y12{bottom:777.165000px;}
.y66{bottom:781.305000px;}
.y10a{bottom:786.885000px;}
.y135{bottom:788.865000px;}
.y11{bottom:792.465000px;}
.ydd{bottom:794.805000px;}
.y65{bottom:796.785000px;}
.y109{bottom:802.365000px;}
.y134{bottom:804.525000px;}
.y10{bottom:807.765000px;}
.y97{bottom:812.265000px;}
.y64{bottom:815.325000px;}
.y108{bottom:817.845000px;}
.y133{bottom:820.005000px;}
.ydc{bottom:824.505000px;}
.y96{bottom:827.745000px;}
.y63{bottom:830.805000px;}
.y107{bottom:833.325000px;}
.y150{bottom:833.865000px;}
.yf{bottom:835.305000px;}
.y132{bottom:835.485000px;}
.y95{bottom:843.225000px;}
.y62{bottom:846.285000px;}
.y106{bottom:848.985000px;}
.ye{bottom:849.165000px;}
.y14f{bottom:849.345000px;}
.y131{bottom:850.965000px;}
.ydb{bottom:858.525000px;}
.y94{bottom:858.885000px;}
.y61{bottom:861.765000px;}
.yd{bottom:864.465000px;}
.y14e{bottom:864.825000px;}
.y130{bottom:866.445000px;}
.y93{bottom:874.365000px;}
.y60{bottom:877.425000px;}
.yc{bottom:879.765000px;}
.y105{bottom:879.945000px;}
.y14d{bottom:880.305000px;}
.y12f{bottom:882.105000px;}
.y92{bottom:889.845000px;}
.yd7{bottom:892.590000px;}
.y5f{bottom:892.950000px;}
.y104{bottom:895.470000px;}
.y14c{bottom:895.830000px;}
.y12e{bottom:907.170000px;}
.yb{bottom:907.350000px;}
.y5e{bottom:908.430000px;}
.y103{bottom:910.950000px;}
.y14b{bottom:911.490000px;}
.ya{bottom:921.030000px;}
.y5d{bottom:923.910000px;}
.y102{bottom:926.430000px;}
.y14a{bottom:926.970000px;}
.yd3{bottom:927.330000px;}
.y5c{bottom:939.390000px;}
.y9{bottom:941.730000px;}
.y101{bottom:942.090000px;}
.y149{bottom:942.450000px;}
.y5b{bottom:954.870000px;}
.y8{bottom:957.030000px;}
.y100{bottom:957.570000px;}
.y148{bottom:957.930000px;}
.yd2{bottom:965.130000px;}
.y5a{bottom:970.530000px;}
.y147{bottom:973.410000px;}
.yd1{bottom:983.490000px;}
.y7{bottom:984.570000px;}
.y59{bottom:986.010000px;}
.yff{bottom:986.550000px;}
.y146{bottom:988.890000px;}
.y6{bottom:998.430000px;}
.yfd{bottom:999.600419px;}
.y58{bottom:1001.490000px;}
.yd0{bottom:1002.030000px;}
.ybe{bottom:1004.550000px;}
.y57{bottom:1016.970000px;}
.y5{bottom:1019.130000px;}
.ybd{bottom:1020.030000px;}
.ycf{bottom:1020.570000px;}
.y56{bottom:1032.450000px;}
.ybc{bottom:1035.510000px;}
.yce{bottom:1039.110000px;}
.y4{bottom:1039.830000px;}
.y55{bottom:1047.930000px;}
.ybb{bottom:1050.990000px;}
.ycd{bottom:1058.550000px;}
.y3{bottom:1061.070000px;}
.y54{bottom:1063.590000px;}
.y91{bottom:1066.470000px;}
.ycc{bottom:1074.030000px;}
.y53{bottom:1079.070000px;}
.y90{bottom:1081.950000px;}
.y2{bottom:1092.750000px;}
.ycb{bottom:1093.650000px;}
.y52{bottom:1094.550000px;}
.y8f{bottom:1097.610000px;}
.yca{bottom:1109.130000px;}
.y51{bottom:1110.030000px;}
.y8e{bottom:1113.090000px;}
.y1{bottom:1116.870000px;}
.yfc{bottom:1125.510000px;}
.y50{bottom:1128.570000px;}
.yfb{bottom:1130.550000px;}
.y4f{bottom:1144.050000px;}
.ha{height:31.140000px;}
.hb{height:34.020000px;}
.hc{height:34.056000px;}
.h6{height:35.991211px;}
.h5{height:40.254961px;}
.h14{height:44.507812px;}
.h8{height:45.061523px;}
.h9{height:46.300781px;}
.h10{height:49.868086px;}
.hf{height:53.632253px;}
.he{height:53.743523px;}
.h7{height:56.795625px;}
.h3{height:60.082031px;}
.h13{height:62.216862px;}
.h4{height:67.614961px;}
.h2{height:72.229219px;}
.h11{height:99.061523px;}
.h12{height:102.535066px;}
.hd{height:170.323797px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:72.900000px;}
.w6{width:81.000000px;}
.w5{width:95.616000px;}
.w4{width:95.760000px;}
.w7{width:512.701796px;}
.w8{width:722.590357px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x23{left:8.100000px;}
.x1f{left:9.540000px;}
.x2a{left:10.725646px;}
.x1d{left:13.320000px;}
.x24{left:14.580000px;}
.x25{left:16.560000px;}
.x21{left:19.845000px;}
.x10{left:84.959987px;}
.x1a{left:106.235987px;}
.x11{left:111.995987px;}
.x37{left:113.795987px;}
.x12{left:138.995987px;}
.x19{left:152.309987px;}
.x2b{left:156.415596px;}
.x2d{left:160.771889px;}
.x2c{left:167.529721px;}
.x1{left:181.109987px;}
.x27{left:200.709321px;}
.x3{left:205.409987px;}
.xf{left:229.529987px;}
.x32{left:232.647487px;}
.x6{left:250.589987px;}
.x13{left:253.289987px;}
.xc{left:289.154987px;}
.x5{left:301.214987px;}
.x7{left:306.974987px;}
.xd{left:310.214987px;}
.xa{left:320.114987px;}
.x28{left:326.366744px;}
.x29{left:330.332087px;}
.x9{left:337.394987px;}
.xe{left:341.174987px;}
.x8{left:353.234987px;}
.xb{left:357.374987px;}
.x2{left:385.814987px;}
.x30{left:428.594352px;}
.x2f{left:432.112891px;}
.x4{left:446.474987px;}
.x2e{left:454.843785px;}
.x15{left:467.924987px;}
.x1c{left:469.545000px;}
.x34{left:489.524987px;}
.x16{left:494.924987px;}
.x36{left:496.724987px;}
.x17{left:521.924987px;}
.x1e{left:542.265000px;}
.x1b{left:548.924987px;}
.x26{left:564.224987px;}
.x33{left:598.064987px;}
.x35{left:602.204987px;}
.x14{left:605.624987px;}
.x18{left:611.924987px;}
.x20{left:638.025000px;}
.x31{left:713.849987px;}
.x22{left:733.650000px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.v3{vertical-align:48.000000pt;}
.lsd{letter-spacing:-0.624000pt;}
.lse{letter-spacing:-0.544000pt;}
.ls1b{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.320000pt;}
.ls15{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.096000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.112000pt;}
.ls18{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.800000pt;}
.ls4{letter-spacing:2.720000pt;}
.ls10{letter-spacing:10.336000pt;}
.lsb{letter-spacing:18.080000pt;}
.ls2{letter-spacing:20.000000pt;}
.ls6{letter-spacing:20.640000pt;}
.ls1{letter-spacing:25.120000pt;}
.ls17{letter-spacing:26.400000pt;}
.ls5{letter-spacing:37.280000pt;}
.ls13{letter-spacing:42.976000pt;}
.ls12{letter-spacing:45.536000pt;}
.ls11{letter-spacing:53.856000pt;}
.ls8{letter-spacing:56.912640pt;}
.ls3{letter-spacing:60.896000pt;}
.ls16{letter-spacing:864.426667pt;}
.ls19{letter-spacing:1161.920000pt;}
.ws3{word-spacing:-53.120000pt;}
.ws2{word-spacing:-48.000000pt;}
.ws0{word-spacing:-28.800000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws9{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.112000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws4{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.808000pt;}
.ws7{word-spacing:-11.680000pt;}
.wsa{word-spacing:-10.832305pt;}
.ws6{word-spacing:0.000000pt;}
.wsb{word-spacing:589.957682pt;}
._2f{margin-left:-2.777763pt;}
._0{margin-left:-1.123200pt;}
._1{width:1.527467pt;}
._a{width:2.840533pt;}
._8{width:3.974400pt;}
._7{width:4.896000pt;}
._9{width:5.904000pt;}
._32{width:6.864000pt;}
._19{width:7.760000pt;}
._d{width:8.902400pt;}
._5{width:9.840000pt;}
._4{width:10.752000pt;}
._17{width:13.104000pt;}
._12{width:14.688000pt;}
._11{width:15.600000pt;}
._21{width:16.778667pt;}
._16{width:17.712000pt;}
._1b{width:19.287467pt;}
._6{width:20.187733pt;}
._15{width:21.539200pt;}
._e{width:23.088000pt;}
._3{width:24.384000pt;}
._2{width:25.296000pt;}
._f{width:26.256000pt;}
._25{width:27.504000pt;}
._1c{width:29.088000pt;}
._2e{width:30.048000pt;}
._20{width:31.027200pt;}
._1f{width:32.208000pt;}
._1e{width:33.552000pt;}
._1a{width:34.828800pt;}
._24{width:36.187733pt;}
._10{width:37.402667pt;}
._c{width:38.643200pt;}
._b{width:39.712000pt;}
._18{width:40.800000pt;}
._29{width:41.856000pt;}
._27{width:42.912000pt;}
._23{width:43.824000pt;}
._22{width:45.024000pt;}
._31{width:47.940267pt;}
._28{width:48.864000pt;}
._1d{width:50.448000pt;}
._26{width:51.840000pt;}
._14{width:58.088533pt;}
._13{width:59.568000pt;}
._2b{width:68.928000pt;}
._2a{width:69.936000pt;}
._2c{width:93.360000pt;}
._2d{width:207.360000pt;}
._30{width:896.203942pt;}
.fs2{font-size:42.880000pt;}
.fs7{font-size:47.930553pt;}
.fs3{font-size:48.000000pt;}
.fs6{font-size:48.029994pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:55.602524pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd6{bottom:2.560000pt;}
.yd9{bottom:5.280000pt;}
.yd4{bottom:9.440000pt;}
.yda{bottom:12.160000pt;}
.yf0{bottom:15.836439pt;}
.yd5{bottom:16.480000pt;}
.yd8{bottom:19.040000pt;}
.yf6{bottom:20.883040pt;}
.yfe{bottom:21.353100pt;}
.yef{bottom:30.230521pt;}
.yf5{bottom:35.277121pt;}
.yee{bottom:44.624603pt;}
.yf4{bottom:49.671202pt;}
.yed{bottom:59.018685pt;}
.yec{bottom:92.505413pt;}
.yeb{bottom:106.897507pt;}
.yf3{bottom:109.910580pt;}
.yf2{bottom:124.299690pt;}
.yf1{bottom:138.698745pt;}
.y4e{bottom:145.786667pt;}
.y35{bottom:147.386667pt;}
.y12d{bottom:147.546667pt;}
.yba{bottom:148.666667pt;}
.y8d{bottom:151.386667pt;}
.y4d{bottom:159.546667pt;}
.y12c{bottom:161.306667pt;}
.yb9{bottom:162.426667pt;}
.y145{bottom:163.706667pt;}
.y8c{bottom:165.146667pt;}
.y4c{bottom:173.306667pt;}
.y12b{bottom:175.066667pt;}
.yb8{bottom:176.186667pt;}
.y34{bottom:177.466667pt;}
.y8b{bottom:178.906667pt;}
.y4b{bottom:187.226667pt;}
.y12a{bottom:188.826667pt;}
.yb7{bottom:189.946667pt;}
.y144{bottom:191.226667pt;}
.y8a{bottom:192.666667pt;}
.y4a{bottom:200.986667pt;}
.y33{bottom:201.786667pt;}
.y129{bottom:202.586667pt;}
.yb6{bottom:203.866667pt;}
.y143{bottom:204.986667pt;}
.y89{bottom:206.426667pt;}
.y49{bottom:214.746667pt;}
.y32{bottom:215.546667pt;}
.y128{bottom:216.346667pt;}
.yb5{bottom:217.626667pt;}
.y142{bottom:218.746667pt;}
.y88{bottom:220.186667pt;}
.y31{bottom:229.306667pt;}
.y127{bottom:230.266667pt;}
.yb4{bottom:231.386667pt;}
.y141{bottom:232.666667pt;}
.y87{bottom:234.106667pt;}
.y48{bottom:236.986667pt;}
.y30{bottom:243.226667pt;}
.y126{bottom:244.026667pt;}
.yb3{bottom:245.146667pt;}
.y140{bottom:246.426667pt;}
.y86{bottom:247.866667pt;}
.y2f{bottom:256.986667pt;}
.yb2{bottom:258.906667pt;}
.y13f{bottom:260.186667pt;}
.y125{bottom:260.506667pt;}
.y85{bottom:264.346667pt;}
.y47{bottom:268.026667pt;}
.y2e{bottom:270.746667pt;}
.yb1{bottom:272.826667pt;}
.y13e{bottom:273.946667pt;}
.y124{bottom:276.986667pt;}
.y84{bottom:278.106667pt;}
.y46{bottom:281.786667pt;}
.y2d{bottom:284.506667pt;}
.y13d{bottom:287.706667pt;}
.yb0{bottom:289.146667pt;}
.y123{bottom:290.746667pt;}
.y83{bottom:291.866667pt;}
.y45{bottom:295.706667pt;}
.y2c{bottom:298.266667pt;}
.y13c{bottom:301.466667pt;}
.yaf{bottom:303.066667pt;}
.y122{bottom:304.506667pt;}
.y82{bottom:305.626667pt;}
.y44{bottom:309.466667pt;}
.yfa{bottom:313.466667pt;}
.y13b{bottom:315.386667pt;}
.y2b{bottom:315.706667pt;}
.yae{bottom:316.826667pt;}
.y121{bottom:318.266667pt;}
.y81{bottom:319.386667pt;}
.y43{bottom:323.226667pt;}
.y13a{bottom:329.146667pt;}
.y2a{bottom:329.466667pt;}
.yf9{bottom:329.946667pt;}
.yad{bottom:330.586667pt;}
.y120{bottom:332.026667pt;}
.y80{bottom:333.306667pt;}
.y42{bottom:336.986667pt;}
.y29{bottom:343.226667pt;}
.yac{bottom:344.386667pt;}
.y11f{bottom:345.826667pt;}
.yf8{bottom:346.626667pt;}
.y7f{bottom:347.106667pt;}
.y139{bottom:351.426667pt;}
.y41{bottom:355.746667pt;}
.y28{bottom:357.026667pt;}
.yab{bottom:358.146667pt;}
.y11e{bottom:359.746667pt;}
.y7e{bottom:360.866667pt;}
.yf7{bottom:361.666667pt;}
.yea{bottom:362.066179pt;}
.y40{bottom:369.506667pt;}
.y27{bottom:370.786667pt;}
.yaa{bottom:371.906667pt;}
.y11d{bottom:373.506667pt;}
.y7d{bottom:374.626667pt;}
.y3f{bottom:383.266667pt;}
.y26{bottom:384.546667pt;}
.ya9{bottom:385.826667pt;}
.y11c{bottom:387.266667pt;}
.y7c{bottom:388.386667pt;}
.y138{bottom:395.746667pt;}
.y3e{bottom:397.026667pt;}
.ya8{bottom:399.586667pt;}
.y11b{bottom:401.026667pt;}
.y25{bottom:401.986667pt;}
.y7b{bottom:404.866667pt;}
.y3d{bottom:410.786667pt;}
.ya7{bottom:413.346667pt;}
.y24{bottom:415.746667pt;}
.y11a{bottom:417.506667pt;}
.y137{bottom:417.666667pt;}
.y7a{bottom:418.626667pt;}
.ya6{bottom:427.106667pt;}
.y23{bottom:429.506667pt;}
.y79{bottom:432.386667pt;}
.y119{bottom:433.986667pt;}
.ya5{bottom:440.866667pt;}
.y22{bottom:443.266667pt;}
.y78{bottom:446.306667pt;}
.y118{bottom:447.746667pt;}
.ya4{bottom:454.626667pt;}
.y21{bottom:457.026667pt;}
.y77{bottom:460.066667pt;}
.y117{bottom:461.506667pt;}
.y20{bottom:470.786667pt;}
.y3c{bottom:470.946667pt;}
.ya3{bottom:471.106667pt;}
.y76{bottom:473.826667pt;}
.y116{bottom:475.266667pt;}
.y3b{bottom:484.706667pt;}
.ya2{bottom:484.866667pt;}
.y75{bottom:487.586667pt;}
.y1f{bottom:488.226667pt;}
.y115{bottom:489.026667pt;}
.ya1{bottom:498.786667pt;}
.y74{bottom:501.346667pt;}
.y1e{bottom:501.986667pt;}
.y114{bottom:502.946667pt;}
.y3a{bottom:503.266667pt;}
.ya0{bottom:512.546667pt;}
.y73{bottom:515.266667pt;}
.y113{bottom:516.706667pt;}
.y39{bottom:517.026667pt;}
.ye9{bottom:519.106667pt;}
.y1d{bottom:519.266667pt;}
.y9f{bottom:526.306667pt;}
.yc9{bottom:527.746667pt;}
.y72{bottom:529.026667pt;}
.y112{bottom:530.466667pt;}
.y38{bottom:530.786667pt;}
.y1c{bottom:533.026667pt;}
.ye8{bottom:535.586667pt;}
.y9e{bottom:540.066667pt;}
.yc8{bottom:541.506667pt;}
.y71{bottom:542.786667pt;}
.y111{bottom:544.226667pt;}
.y1b{bottom:546.946667pt;}
.ye7{bottom:549.346667pt;}
.y37{bottom:549.506667pt;}
.y9d{bottom:553.826667pt;}
.yc7{bottom:555.266667pt;}
.y70{bottom:556.546667pt;}
.y110{bottom:557.986667pt;}
.y1a{bottom:560.706667pt;}
.ye6{bottom:563.106667pt;}
.y36{bottom:563.266667pt;}
.y9c{bottom:567.746667pt;}
.yc6{bottom:569.053333pt;}
.y6f{bottom:570.333333pt;}
.y10f{bottom:571.933333pt;}
.ye5{bottom:577.053333pt;}
.y19{bottom:577.213333pt;}
.y9b{bottom:581.533333pt;}
.yc5{bottom:582.973333pt;}
.y6e{bottom:584.093333pt;}
.y10e{bottom:585.693333pt;}
.y18{bottom:590.973333pt;}
.ye4{bottom:593.373333pt;}
.y9a{bottom:595.293333pt;}
.yc4{bottom:596.733333pt;}
.y6d{bottom:598.013333pt;}
.y10d{bottom:602.173333pt;}
.y17{bottom:604.733333pt;}
.y99{bottom:609.053333pt;}
.ye3{bottom:609.853333pt;}
.yc3{bottom:610.493333pt;}
.y6c{bottom:611.773333pt;}
.y16{bottom:618.493333pt;}
.y98{bottom:622.813333pt;}
.ye2{bottom:623.613333pt;}
.yc2{bottom:624.253333pt;}
.y6b{bottom:625.533333pt;}
.y15{bottom:632.253333pt;}
.y10c{bottom:632.413333pt;}
.yc1{bottom:638.013333pt;}
.y6a{bottom:639.293333pt;}
.ye1{bottom:640.093333pt;}
.y69{bottom:653.053333pt;}
.ye0{bottom:653.853333pt;}
.yc0{bottom:654.493333pt;}
.y14{bottom:654.653333pt;}
.y68{bottom:666.813333pt;}
.ydf{bottom:670.333333pt;}
.ybf{bottom:670.973333pt;}
.y13{bottom:677.213333pt;}
.y67{bottom:680.733333pt;}
.yde{bottom:684.093333pt;}
.y10b{bottom:685.693333pt;}
.y136{bottom:687.453333pt;}
.y12{bottom:690.813333pt;}
.y66{bottom:694.493333pt;}
.y10a{bottom:699.453333pt;}
.y135{bottom:701.213333pt;}
.y11{bottom:704.413333pt;}
.ydd{bottom:706.493333pt;}
.y65{bottom:708.253333pt;}
.y109{bottom:713.213333pt;}
.y134{bottom:715.133333pt;}
.y10{bottom:718.013333pt;}
.y97{bottom:722.013333pt;}
.y64{bottom:724.733333pt;}
.y108{bottom:726.973333pt;}
.y133{bottom:728.893333pt;}
.ydc{bottom:732.893333pt;}
.y96{bottom:735.773333pt;}
.y63{bottom:738.493333pt;}
.y107{bottom:740.733333pt;}
.y150{bottom:741.213333pt;}
.yf{bottom:742.493333pt;}
.y132{bottom:742.653333pt;}
.y95{bottom:749.533333pt;}
.y62{bottom:752.253333pt;}
.y106{bottom:754.653333pt;}
.ye{bottom:754.813333pt;}
.y14f{bottom:754.973333pt;}
.y131{bottom:756.413333pt;}
.ydb{bottom:763.133333pt;}
.y94{bottom:763.453333pt;}
.y61{bottom:766.013333pt;}
.yd{bottom:768.413333pt;}
.y14e{bottom:768.733333pt;}
.y130{bottom:770.173333pt;}
.y93{bottom:777.213333pt;}
.y60{bottom:779.933333pt;}
.yc{bottom:782.013333pt;}
.y105{bottom:782.173333pt;}
.y14d{bottom:782.493333pt;}
.y12f{bottom:784.093333pt;}
.y92{bottom:790.973333pt;}
.yd7{bottom:793.413333pt;}
.y5f{bottom:793.733333pt;}
.y104{bottom:795.973333pt;}
.y14c{bottom:796.293333pt;}
.y12e{bottom:806.373333pt;}
.yb{bottom:806.533333pt;}
.y5e{bottom:807.493333pt;}
.y103{bottom:809.733333pt;}
.y14b{bottom:810.213333pt;}
.ya{bottom:818.693333pt;}
.y5d{bottom:821.253333pt;}
.y102{bottom:823.493333pt;}
.y14a{bottom:823.973333pt;}
.yd3{bottom:824.293333pt;}
.y5c{bottom:835.013333pt;}
.y9{bottom:837.093333pt;}
.y101{bottom:837.413333pt;}
.y149{bottom:837.733333pt;}
.y5b{bottom:848.773333pt;}
.y8{bottom:850.693333pt;}
.y100{bottom:851.173333pt;}
.y148{bottom:851.493333pt;}
.yd2{bottom:857.893333pt;}
.y5a{bottom:862.693333pt;}
.y147{bottom:865.253333pt;}
.yd1{bottom:874.213333pt;}
.y7{bottom:875.173333pt;}
.y59{bottom:876.453333pt;}
.yff{bottom:876.933333pt;}
.y146{bottom:879.013333pt;}
.y6{bottom:887.493333pt;}
.yfd{bottom:888.533706pt;}
.y58{bottom:890.213333pt;}
.yd0{bottom:890.693333pt;}
.ybe{bottom:892.933333pt;}
.y57{bottom:903.973333pt;}
.y5{bottom:905.893333pt;}
.ybd{bottom:906.693333pt;}
.ycf{bottom:907.173333pt;}
.y56{bottom:917.733333pt;}
.ybc{bottom:920.453333pt;}
.yce{bottom:923.653333pt;}
.y4{bottom:924.293333pt;}
.y55{bottom:931.493333pt;}
.ybb{bottom:934.213333pt;}
.ycd{bottom:940.933333pt;}
.y3{bottom:943.173333pt;}
.y54{bottom:945.413333pt;}
.y91{bottom:947.973333pt;}
.ycc{bottom:954.693333pt;}
.y53{bottom:959.173333pt;}
.y90{bottom:961.733333pt;}
.y2{bottom:971.333333pt;}
.ycb{bottom:972.133333pt;}
.y52{bottom:972.933333pt;}
.y8f{bottom:975.653333pt;}
.yca{bottom:985.893333pt;}
.y51{bottom:986.693333pt;}
.y8e{bottom:989.413333pt;}
.y1{bottom:992.773333pt;}
.yfc{bottom:1000.453333pt;}
.y50{bottom:1003.173333pt;}
.yfb{bottom:1004.933333pt;}
.y4f{bottom:1016.933333pt;}
.ha{height:27.680000pt;}
.hb{height:30.240000pt;}
.hc{height:30.272000pt;}
.h6{height:31.992188pt;}
.h5{height:35.782187pt;}
.h14{height:39.562500pt;}
.h8{height:40.054688pt;}
.h9{height:41.156250pt;}
.h10{height:44.327188pt;}
.hf{height:47.673114pt;}
.he{height:47.772020pt;}
.h7{height:50.485000pt;}
.h3{height:53.406250pt;}
.h13{height:55.303877pt;}
.h4{height:60.102188pt;}
.h2{height:64.203750pt;}
.h11{height:88.054688pt;}
.h12{height:91.142281pt;}
.hd{height:151.398930pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:64.800000pt;}
.w6{width:72.000000pt;}
.w5{width:84.992000pt;}
.w4{width:85.120000pt;}
.w7{width:455.734930pt;}
.w8{width:642.302539pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x23{left:7.200000pt;}
.x1f{left:8.480000pt;}
.x2a{left:9.533908pt;}
.x1d{left:11.840000pt;}
.x24{left:12.960000pt;}
.x25{left:14.720000pt;}
.x21{left:17.640000pt;}
.x10{left:75.519988pt;}
.x1a{left:94.431988pt;}
.x11{left:99.551988pt;}
.x37{left:101.151988pt;}
.x12{left:123.551988pt;}
.x19{left:135.386655pt;}
.x2b{left:139.036085pt;}
.x2d{left:142.908346pt;}
.x2c{left:148.915308pt;}
.x1{left:160.986655pt;}
.x27{left:178.408286pt;}
.x3{left:182.586655pt;}
.xf{left:204.026655pt;}
.x32{left:206.797767pt;}
.x6{left:222.746655pt;}
.x13{left:225.146655pt;}
.xc{left:257.026655pt;}
.x5{left:267.746655pt;}
.x7{left:272.866655pt;}
.xd{left:275.746655pt;}
.xa{left:284.546655pt;}
.x28{left:290.103773pt;}
.x29{left:293.628522pt;}
.x9{left:299.906655pt;}
.xe{left:303.266655pt;}
.x8{left:313.986655pt;}
.xb{left:317.666655pt;}
.x2{left:342.946655pt;}
.x30{left:380.972757pt;}
.x2f{left:384.100348pt;}
.x4{left:396.866655pt;}
.x2e{left:404.305587pt;}
.x15{left:415.933322pt;}
.x1c{left:417.373333pt;}
.x34{left:435.133322pt;}
.x16{left:439.933322pt;}
.x36{left:441.533322pt;}
.x17{left:463.933322pt;}
.x1e{left:482.013333pt;}
.x1b{left:487.933322pt;}
.x26{left:501.533322pt;}
.x33{left:531.613322pt;}
.x35{left:535.293322pt;}
.x14{left:538.333322pt;}
.x18{left:543.933322pt;}
.x20{left:567.133333pt;}
.x31{left:634.533322pt;}
.x22{left:652.133333pt;}
}




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