
    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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_f2a99f16ca3237c079377e26.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_c850b5c112250d48244481b2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3c1ef12c5b56bf242c450765.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_111b58c29842e4bc17c5c456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.736816;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_6894fe4e8ea697b18c2df689.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_73cd0fa9baccb54659090b9d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8fb0261657c8ba915c2c551c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978027;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_73a3e7881c54f26eaee1ad62.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_f62c4809d37b1e074130277c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_507ec38f80a39195ffc012fc.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_f22ad4cbf121b864005d4fd3.woff2')format("woff");}.ffc{font-family:ffc;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-74.880000px;}
.v5{vertical-align:-69.120000px;}
.v6{vertical-align:-67.680000px;}
.v4{vertical-align:-60.480000px;}
.v2{vertical-align:-54.000000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-0.810000px;}
.lsd{letter-spacing:-0.666000px;}
.ls19{letter-spacing:-0.460200px;}
.ls10{letter-spacing:-0.413400px;}
.lsa{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.226200px;}
.ls8{letter-spacing:-0.108000px;}
.ls6{letter-spacing:-0.089400px;}
.ls7{letter-spacing:-0.072000px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.206400px;}
.ls18{letter-spacing:0.259800px;}
.ls15{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.360720px;}
.lse{letter-spacing:0.480720px;}
.ls11{letter-spacing:0.513600px;}
.lsf{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.876000px;}
.ls14{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.260000px;}
.ls16{letter-spacing:2.340000px;}
.ls12{letter-spacing:5.940000px;}
.lsb{letter-spacing:33.066720px;}
.ls1b{letter-spacing:46.026720px;}
.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;}
}
.wsd{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws9{word-spacing:-14.580000px;}
.wse{word-spacing:-14.526600px;}
.ws10{word-spacing:-14.479800px;}
.wsc{word-spacing:-14.274000px;}
.ws6{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.392000px;}
.ws4{word-spacing:-10.440000px;}
.ws5{word-spacing:-10.350600px;}
.ws3{word-spacing:-10.213800px;}
.ws2{word-spacing:-9.720000px;}
.ws7{word-spacing:-8.928000px;}
.wsa{word-spacing:0.000000px;}
._11{margin-left:-2.159280px;}
._0{margin-left:-1.093680px;}
._1{width:1.374480px;}
._2{width:2.851680px;}
._6{width:3.901680px;}
._5{width:4.968000px;}
._4{width:6.430080px;}
._e{width:7.470000px;}
._f{width:8.629440px;}
._12{width:9.860400px;}
._8{width:11.556000px;}
._d{width:12.967920px;}
._7{width:14.573520px;}
._c{width:15.588000px;}
._b{width:16.902000px;}
._10{width:18.137520px;}
._a{width:19.926000px;}
._9{width:20.952000px;}
._17{width:25.995600px;}
._16{width:44.966880px;}
._13{width:48.373200px;}
._15{width:186.120000px;}
._14{width:436.707840px;}
._3{width:994.873920px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:5.760000px;}
.fsc{font-size:18.000000px;}
.fs3{font-size:23.760000px;}
.fsb{font-size:30.240000px;}
.fsa{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.fs1{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y43{bottom:3.585000px;}
.y5{bottom:3.780000px;}
.y5b{bottom:5.010000px;}
.y2{bottom:8.280000px;}
.y4d{bottom:14.040000px;}
.y59{bottom:17.100000px;}
.y42{bottom:20.865000px;}
.y4{bottom:21.060000px;}
.y4c{bottom:21.780000px;}
.y58{bottom:35.640000px;}
.y41{bottom:38.145000px;}
.y3{bottom:44.670000px;}
.y4b{bottom:51.840000px;}
.y57{bottom:54.360000px;}
.y40{bottom:55.425000px;}
.y7{bottom:57.600000px;}
.y4a{bottom:63.360000px;}
.y3f{bottom:72.705000px;}
.y56{bottom:75.960000px;}
.y49{bottom:76.500000px;}
.y48{bottom:89.460000px;}
.y3e{bottom:89.805000px;}
.ye4{bottom:91.080000px;}
.y55{bottom:95.040000px;}
.y13e{bottom:95.220000px;}
.y11c{bottom:97.020000px;}
.y16c{bottom:98.820000px;}
.y94{bottom:104.940000px;}
.y3d{bottom:107.085000px;}
.y185{bottom:108.000000px;}
.ye3{bottom:108.360000px;}
.ycc{bottom:109.440000px;}
.y44{bottom:110.160000px;}
.y54{bottom:110.550000px;}
.y47{bottom:111.270000px;}
.y13d{bottom:112.500000px;}
.y11b{bottom:114.300000px;}
.y16b{bottom:116.100000px;}
.y53{bottom:119.910000px;}
.y93{bottom:122.220000px;}
.y1b9{bottom:123.660000px;}
.y3c{bottom:124.410000px;}
.y184{bottom:125.280000px;}
.ye2{bottom:125.640000px;}
.y13c{bottom:129.780000px;}
.y11a{bottom:131.580000px;}
.y16a{bottom:133.380000px;}
.y52{bottom:138.810000px;}
.y92{bottom:139.320000px;}
.y1b8{bottom:140.940000px;}
.y3b{bottom:141.690000px;}
.y183{bottom:142.560000px;}
.ye1{bottom:142.920000px;}
.y13b{bottom:147.060000px;}
.y119{bottom:148.320000px;}
.y169{bottom:150.660000px;}
.y51{bottom:154.470000px;}
.y91{bottom:156.600000px;}
.y1b7{bottom:158.040000px;}
.y3a{bottom:158.970000px;}
.y182{bottom:159.840000px;}
.ye0{bottom:160.200000px;}
.y13a{bottom:164.340000px;}
.y168{bottom:167.940000px;}
.y50{bottom:169.950000px;}
.y46{bottom:173.550000px;}
.y90{bottom:173.880000px;}
.y118{bottom:174.960000px;}
.y1b6{bottom:175.320000px;}
.y39{bottom:175.890000px;}
.y181{bottom:176.940000px;}
.ydf{bottom:177.300000px;}
.y139{bottom:181.440000px;}
.y45{bottom:183.990000px;}
.y167{bottom:185.040000px;}
.y4f{bottom:185.430000px;}
.y8f{bottom:191.160000px;}
.y117{bottom:192.240000px;}
.y1b5{bottom:192.600000px;}
.y180{bottom:194.220000px;}
.yde{bottom:194.580000px;}
.y138{bottom:198.720000px;}
.y4e{bottom:200.550000px;}
.y38{bottom:201.990000px;}
.y166{bottom:202.320000px;}
.y8e{bottom:208.440000px;}
.y116{bottom:209.520000px;}
.y1b4{bottom:209.910000px;}
.y17f{bottom:211.530000px;}
.ydd{bottom:211.890000px;}
.y137{bottom:216.030000px;}
.y37{bottom:217.470000px;}
.y165{bottom:219.630000px;}
.y8d{bottom:225.750000px;}
.y115{bottom:226.830000px;}
.y1b3{bottom:227.190000px;}
.y17e{bottom:228.810000px;}
.ydc{bottom:229.170000px;}
.y36{bottom:232.950000px;}
.y136{bottom:233.310000px;}
.y164{bottom:236.910000px;}
.y8c{bottom:242.850000px;}
.y114{bottom:243.930000px;}
.y1b2{bottom:244.470000px;}
.y17d{bottom:245.730000px;}
.ydb{bottom:246.450000px;}
.y35{bottom:248.610000px;}
.y135{bottom:250.590000px;}
.y163{bottom:254.190000px;}
.y8b{bottom:260.130000px;}
.y113{bottom:261.210000px;}
.y1b1{bottom:261.570000px;}
.yda{bottom:263.730000px;}
.y34{bottom:264.090000px;}
.y134{bottom:267.690000px;}
.y162{bottom:271.470000px;}
.y17c{bottom:272.190000px;}
.y8a{bottom:277.410000px;}
.y112{bottom:278.490000px;}
.y1b0{bottom:278.850000px;}
.y33{bottom:279.570000px;}
.yd9{bottom:280.830000px;}
.y133{bottom:284.970000px;}
.y161{bottom:288.570000px;}
.y17b{bottom:289.470000px;}
.y89{bottom:294.690000px;}
.y32{bottom:295.050000px;}
.y111{bottom:295.770000px;}
.y1af{bottom:296.130000px;}
.yd8{bottom:298.110000px;}
.y132{bottom:302.250000px;}
.y160{bottom:305.850000px;}
.y1d{bottom:309.810000px;}
.y31{bottom:310.710000px;}
.yb5{bottom:311.610000px;}
.y88{bottom:311.970000px;}
.y110{bottom:313.050000px;}
.y1ae{bottom:313.410000px;}
.yd7{bottom:315.390000px;}
.ycb{bottom:317.730000px;}
.y131{bottom:319.530000px;}
.y15f{bottom:323.130000px;}
.y17a{bottom:323.670000px;}
.yf{bottom:324.225000px;}
.yca{bottom:325.470000px;}
.y30{bottom:326.190000px;}
.yd6{bottom:329.070000px;}
.y10f{bottom:330.330000px;}
.y1ad{bottom:330.690000px;}
.y130{bottom:333.030000px;}
.y1c{bottom:334.110000px;}
.yb4{bottom:338.070000px;}
.y15e{bottom:340.410000px;}
.y2f{bottom:341.670000px;}
.yc9{bottom:342.750000px;}
.y87{bottom:346.350000px;}
.y10e{bottom:347.430000px;}
.y1ac{bottom:347.610000px;}
.y179{bottom:350.310000px;}
.yb3{bottom:355.350000px;}
.y2e{bottom:357.180000px;}
.y15d{bottom:357.690000px;}
.y1b{bottom:358.260000px;}
.yc8{bottom:360.030000px;}
.y86{bottom:363.630000px;}
.y10d{bottom:364.710000px;}
.y178{bottom:367.590000px;}
.yb2{bottom:372.630000px;}
.y2d{bottom:372.840000px;}
.y1ab{bottom:374.070000px;}
.y15c{bottom:374.970000px;}
.yc7{bottom:377.130000px;}
.y85{bottom:380.910000px;}
.y10c{bottom:381.990000px;}
.y1a{bottom:382.380000px;}
.y177{bottom:384.690000px;}
.y2c{bottom:388.320000px;}
.yb1{bottom:389.550000px;}
.y1aa{bottom:391.170000px;}
.y15b{bottom:392.070000px;}
.yc6{bottom:394.410000px;}
.y84{bottom:398.190000px;}
.y10b{bottom:399.270000px;}
.y176{bottom:401.970000px;}
.y2b{bottom:403.800000px;}
.y19{bottom:406.500000px;}
.y15a{bottom:409.350000px;}
.y1a9{bottom:409.710000px;}
.yc5{bottom:411.690000px;}
.y83{bottom:415.470000px;}
.yb0{bottom:416.190000px;}
.y10a{bottom:416.550000px;}
.y175{bottom:419.250000px;}
.y2a{bottom:419.280000px;}
.y159{bottom:426.630000px;}
.y1a8{bottom:428.070000px;}
.yc4{bottom:428.970000px;}
.y18{bottom:430.620000px;}
.y82{bottom:432.570000px;}
.yaf{bottom:433.470000px;}
.y109{bottom:433.830000px;}
.y29{bottom:434.940000px;}
.y174{bottom:436.530000px;}
.y158{bottom:443.910000px;}
.yc3{bottom:446.295000px;}
.y1a7{bottom:446.475000px;}
.y81{bottom:449.895000px;}
.y28{bottom:450.420000px;}
.yae{bottom:450.615000px;}
.y108{bottom:450.975000px;}
.y173{bottom:453.855000px;}
.y17{bottom:454.740000px;}
.yc2{bottom:459.795000px;}
.y157{bottom:461.235000px;}
.y1a6{bottom:463.755000px;}
.y27{bottom:465.900000px;}
.y80{bottom:467.175000px;}
.yad{bottom:467.895000px;}
.y107{bottom:468.255000px;}
.y172{bottom:471.135000px;}
.y156{bottom:478.335000px;}
.y16{bottom:478.860000px;}
.y26{bottom:481.380000px;}
.y1a5{bottom:482.115000px;}
.y7f{bottom:484.095000px;}
.yac{bottom:485.175000px;}
.y12f{bottom:485.355000px;}
.y106{bottom:485.535000px;}
.y171{bottom:488.235000px;}
.y155{bottom:495.615000px;}
.y25{bottom:496.860000px;}
.y1a4{bottom:499.215000px;}
.yab{bottom:502.455000px;}
.y12e{bottom:502.635000px;}
.y105{bottom:502.815000px;}
.y15{bottom:503.160000px;}
.y170{bottom:505.515000px;}
.yd5{bottom:506.055000px;}
.y7e{bottom:510.735000px;}
.y24{bottom:512.520000px;}
.y154{bottom:512.895000px;}
.y1a3{bottom:517.755000px;}
.yaa{bottom:519.735000px;}
.y12d{bottom:519.915000px;}
.y104{bottom:520.095000px;}
.y16f{bottom:520.275000px;}
.yd4{bottom:523.335000px;}
.y16e{bottom:524.235000px;}
.y14{bottom:527.280000px;}
.y23{bottom:528.000000px;}
.y7d{bottom:528.015000px;}
.y153{bottom:530.175000px;}
.y1a2{bottom:535.035000px;}
.ya9{bottom:537.015000px;}
.y12c{bottom:537.195000px;}
.y103{bottom:537.375000px;}
.yd3{bottom:540.435000px;}
.y22{bottom:543.480000px;}
.y7c{bottom:545.115000px;}
.y152{bottom:547.455000px;}
.y12b{bottom:550.875000px;}
.y13{bottom:551.400000px;}
.y1a1{bottom:552.315000px;}
.ya8{bottom:554.115000px;}
.yd2{bottom:557.715000px;}
.y21{bottom:558.960000px;}
.y7b{bottom:562.395000px;}
.y151{bottom:564.735000px;}
.y1a0{bottom:569.595000px;}
.ya7{bottom:571.395000px;}
.y20{bottom:574.620000px;}
.yd1{bottom:574.995000px;}
.y12{bottom:575.520000px;}
.y7a{bottom:579.675000px;}
.y102{bottom:580.755000px;}
.y150{bottom:581.835000px;}
.y19f{bottom:586.875000px;}
.ya6{bottom:588.675000px;}
.y1f{bottom:590.100000px;}
.yd0{bottom:592.275000px;}
.y79{bottom:596.955000px;}
.y101{bottom:598.035000px;}
.y14f{bottom:599.115000px;}
.y11{bottom:599.685000px;}
.y19e{bottom:603.975000px;}
.ya5{bottom:605.955000px;}
.ycf{bottom:609.555000px;}
.y78{bottom:614.235000px;}
.y100{bottom:615.315000px;}
.y14e{bottom:616.395000px;}
.y1e{bottom:620.745000px;}
.y19d{bottom:621.255000px;}
.ya4{bottom:623.235000px;}
.y10{bottom:623.805000px;}
.yce{bottom:626.835000px;}
.y77{bottom:631.335000px;}
.yff{bottom:632.595000px;}
.y14d{bottom:633.495000px;}
.y19c{bottom:638.535000px;}
.ya3{bottom:640.335000px;}
.ycd{bottom:643.935000px;}
.y76{bottom:648.615000px;}
.yfe{bottom:649.695000px;}
.y14c{bottom:652.035000px;}
.yc1{bottom:652.575000px;}
.y19b{bottom:655.815000px;}
.ya2{bottom:657.615000px;}
.y75{bottom:665.895000px;}
.yfd{bottom:666.975000px;}
.y14b{bottom:669.135000px;}
.yc0{bottom:669.675000px;}
.y19a{bottom:673.095000px;}
.ya1{bottom:674.895000px;}
.y12a{bottom:680.865000px;}
.y74{bottom:683.205000px;}
.yfc{bottom:684.285000px;}
.ybf{bottom:686.985000px;}
.y14a{bottom:687.705000px;}
.y199{bottom:690.405000px;}
.ya0{bottom:692.205000px;}
.y129{bottom:698.145000px;}
.y73{bottom:700.485000px;}
.yfb{bottom:701.565000px;}
.ybe{bottom:704.265000px;}
.y149{bottom:704.985000px;}
.y198{bottom:707.505000px;}
.y9f{bottom:709.485000px;}
.y128{bottom:715.425000px;}
.y72{bottom:717.765000px;}
.yfa{bottom:718.845000px;}
.ybd{bottom:721.545000px;}
.y148{bottom:722.265000px;}
.y197{bottom:724.785000px;}
.y9e{bottom:726.765000px;}
.y127{bottom:732.705000px;}
.y71{bottom:734.865000px;}
.yf9{bottom:736.125000px;}
.ybc{bottom:738.825000px;}
.y147{bottom:739.365000px;}
.y196{bottom:742.065000px;}
.y9d{bottom:743.865000px;}
.y126{bottom:749.985000px;}
.y70{bottom:752.145000px;}
.yf8{bottom:753.225000px;}
.ybb{bottom:756.105000px;}
.y146{bottom:757.725000px;}
.y195{bottom:759.165000px;}
.y9c{bottom:761.145000px;}
.y125{bottom:767.265000px;}
.y6f{bottom:769.425000px;}
.yf7{bottom:770.505000px;}
.yba{bottom:773.205000px;}
.y145{bottom:776.265000px;}
.y194{bottom:777.705000px;}
.y9b{bottom:778.425000px;}
.y124{bottom:784.365000px;}
.y6e{bottom:786.705000px;}
.yf6{bottom:787.785000px;}
.yb9{bottom:790.485000px;}
.y144{bottom:793.365000px;}
.y193{bottom:794.985000px;}
.y9a{bottom:795.705000px;}
.y123{bottom:801.645000px;}
.y6d{bottom:803.985000px;}
.yf5{bottom:805.065000px;}
.yb8{bottom:807.405000px;}
.y143{bottom:810.645000px;}
.y192{bottom:812.265000px;}
.y99{bottom:812.985000px;}
.y122{bottom:818.925000px;}
.y6c{bottom:821.265000px;}
.yf4{bottom:822.345000px;}
.yb7{bottom:822.525000px;}
.y142{bottom:827.925000px;}
.y191{bottom:829.365000px;}
.y98{bottom:830.265000px;}
.y121{bottom:836.205000px;}
.y6b{bottom:838.365000px;}
.yf3{bottom:839.625000px;}
.y141{bottom:845.205000px;}
.y190{bottom:846.645000px;}
.y97{bottom:847.365000px;}
.y120{bottom:853.305000px;}
.y6a{bottom:855.645000px;}
.yf2{bottom:856.725000px;}
.y140{bottom:862.305000px;}
.y18f{bottom:863.925000px;}
.y96{bottom:864.645000px;}
.y11f{bottom:871.665000px;}
.y69{bottom:872.565000px;}
.yf1{bottom:874.005000px;}
.y13f{bottom:880.665000px;}
.y18e{bottom:881.205000px;}
.y95{bottom:881.925000px;}
.y11e{bottom:890.205000px;}
.yf0{bottom:891.285000px;}
.y18d{bottom:898.485000px;}
.y68{bottom:899.205000px;}
.y11d{bottom:907.485000px;}
.yef{bottom:908.565000px;}
.y18c{bottom:915.765000px;}
.y67{bottom:916.530000px;}
.yee{bottom:925.890000px;}
.y16d{bottom:926.070000px;}
.y18b{bottom:932.550000px;}
.y66{bottom:933.810000px;}
.yed{bottom:942.990000px;}
.y65{bottom:950.910000px;}
.y18a{bottom:959.190000px;}
.ye{bottom:960.270000px;}
.yec{bottom:961.350000px;}
.yd{bottom:965.670000px;}
.y64{bottom:968.190000px;}
.y189{bottom:976.470000px;}
.yeb{bottom:979.710000px;}
.y63{bottom:985.470000px;}
.yc{bottom:988.170000px;}
.y188{bottom:993.750000px;}
.yea{bottom:998.070000px;}
.y62{bottom:1002.750000px;}
.yb{bottom:1005.450000px;}
.y187{bottom:1011.030000px;}
.ye9{bottom:1016.430000px;}
.y61{bottom:1020.030000px;}
.y186{bottom:1027.770000px;}
.ye8{bottom:1034.970000px;}
.ya{bottom:1035.690000px;}
.y60{bottom:1037.130000px;}
.ye7{bottom:1052.250000px;}
.y5f{bottom:1054.410000px;}
.y9{bottom:1059.810000px;}
.ye6{bottom:1069.350000px;}
.y5e{bottom:1071.690000px;}
.ye5{bottom:1087.710000px;}
.y8{bottom:1088.250000px;}
.y5d{bottom:1088.970000px;}
.y5a{bottom:1091.700000px;}
.yb6{bottom:1105.890000px;}
.y5c{bottom:1106.250000px;}
.y6{bottom:1121.370000px;}
.y1{bottom:1126.950000px;}
.hc{height:4.165313px;}
.h15{height:5.650313px;}
.h19{height:17.666016px;}
.h7{height:23.632383px;}
.h17{height:27.540000px;}
.h13{height:29.678906px;}
.h12{height:35.332031px;}
.ha{height:38.158594px;}
.hf{height:40.985156px;}
.h1b{height:41.726953px;}
.he{height:42.086250px;}
.h10{height:52.971680px;}
.h14{height:54.421875px;}
.h8{height:57.324375px;}
.h16{height:58.621992px;}
.h5{height:58.651172px;}
.h6{height:59.439023px;}
.hb{height:60.226875px;}
.h1a{height:61.423863px;}
.h18{height:64.002656px;}
.h3{height:65.884219px;}
.h2{height:81.570000px;}
.h9{height:84.898125px;}
.h4{height:117.180000px;}
.h11{height:213.150000px;}
.hd{height:633.330000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:104.076000px;}
.w4{width:132.651000px;}
.w6{width:162.720000px;}
.w5{width:596.475000px;}
.w3{width:622.395000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:6.876000px;}
.x18{left:8.085000px;}
.x4{left:12.765000px;}
.x15{left:16.911000px;}
.x5{left:18.885000px;}
.x16{left:23.391000px;}
.x1b{left:29.151000px;}
.x6{left:35.985000px;}
.xf{left:43.731000px;}
.x1a{left:47.691000px;}
.x10{left:50.751000px;}
.xe{left:55.071000px;}
.x1d{left:57.051000px;}
.x1c{left:66.225000px;}
.x12{left:67.485000px;}
.x1{left:78.300000px;}
.x14{left:79.545000px;}
.x7{left:86.436000px;}
.x13{left:88.905000px;}
.x2{left:95.790000px;}
.x1e{left:102.765000px;}
.x19{left:106.725000px;}
.x26{left:113.436000px;}
.x11{left:124.545000px;}
.x20{left:140.436000px;}
.x3{left:182.385000px;}
.x17{left:219.105000px;}
.xa{left:521.925000px;}
.xb{left:531.285000px;}
.xc{left:578.985000px;}
.x24{left:607.425000px;}
.x25{left:617.685000px;}
.x28{left:630.510000px;}
.x22{left:638.250000px;}
.x27{left:641.670000px;}
.x29{left:664.350000px;}
.x23{left:682.170000px;}
.x9{left:766.050000px;}
.x21{left:791.970000px;}
.x8{left:799.380000px;}
.xd{left:806.940000px;}
@media print{
.v1{vertical-align:-66.560000pt;}
.v5{vertical-align:-61.440000pt;}
.v6{vertical-align:-60.160000pt;}
.v4{vertical-align:-53.760000pt;}
.v2{vertical-align:-48.000000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.720000pt;}
.lsd{letter-spacing:-0.592000pt;}
.ls19{letter-spacing:-0.409067pt;}
.ls10{letter-spacing:-0.367467pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.201067pt;}
.ls8{letter-spacing:-0.096000pt;}
.ls6{letter-spacing:-0.079467pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.183467pt;}
.ls18{letter-spacing:0.230933pt;}
.ls15{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.320640pt;}
.lse{letter-spacing:0.427307pt;}
.ls11{letter-spacing:0.456533pt;}
.lsf{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.778667pt;}
.ls14{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.120000pt;}
.ls16{letter-spacing:2.080000pt;}
.ls12{letter-spacing:5.280000pt;}
.lsb{letter-spacing:29.392640pt;}
.ls1b{letter-spacing:40.912640pt;}
.wsd{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws9{word-spacing:-12.960000pt;}
.wse{word-spacing:-12.912533pt;}
.ws10{word-spacing:-12.870933pt;}
.wsc{word-spacing:-12.688000pt;}
.ws6{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.904000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws5{word-spacing:-9.200533pt;}
.ws3{word-spacing:-9.078933pt;}
.ws2{word-spacing:-8.640000pt;}
.ws7{word-spacing:-7.936000pt;}
.wsa{word-spacing:0.000000pt;}
._11{margin-left:-1.919360pt;}
._0{margin-left:-0.972160pt;}
._1{width:1.221760pt;}
._2{width:2.534827pt;}
._6{width:3.468160pt;}
._5{width:4.416000pt;}
._4{width:5.715627pt;}
._e{width:6.640000pt;}
._f{width:7.670613pt;}
._12{width:8.764800pt;}
._8{width:10.272000pt;}
._d{width:11.527040pt;}
._7{width:12.954240pt;}
._c{width:13.856000pt;}
._b{width:15.024000pt;}
._10{width:16.122240pt;}
._a{width:17.712000pt;}
._9{width:18.624000pt;}
._17{width:23.107200pt;}
._16{width:39.970560pt;}
._13{width:42.998400pt;}
._15{width:165.440000pt;}
._14{width:388.184747pt;}
._3{width:884.332373pt;}
.fs7{font-size:5.120000pt;}
.fsc{font-size:16.000000pt;}
.fs3{font-size:21.120000pt;}
.fsb{font-size:26.880000pt;}
.fsa{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.fs1{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:3.186667pt;}
.y5{bottom:3.360000pt;}
.y5b{bottom:4.453333pt;}
.y2{bottom:7.360000pt;}
.y4d{bottom:12.480000pt;}
.y59{bottom:15.200000pt;}
.y42{bottom:18.546667pt;}
.y4{bottom:18.720000pt;}
.y4c{bottom:19.360000pt;}
.y58{bottom:31.680000pt;}
.y41{bottom:33.906667pt;}
.y3{bottom:39.706667pt;}
.y4b{bottom:46.080000pt;}
.y57{bottom:48.320000pt;}
.y40{bottom:49.266667pt;}
.y7{bottom:51.200000pt;}
.y4a{bottom:56.320000pt;}
.y3f{bottom:64.626667pt;}
.y56{bottom:67.520000pt;}
.y49{bottom:68.000000pt;}
.y48{bottom:79.520000pt;}
.y3e{bottom:79.826667pt;}
.ye4{bottom:80.960000pt;}
.y55{bottom:84.480000pt;}
.y13e{bottom:84.640000pt;}
.y11c{bottom:86.240000pt;}
.y16c{bottom:87.840000pt;}
.y94{bottom:93.280000pt;}
.y3d{bottom:95.186667pt;}
.y185{bottom:96.000000pt;}
.ye3{bottom:96.320000pt;}
.ycc{bottom:97.280000pt;}
.y44{bottom:97.920000pt;}
.y54{bottom:98.266667pt;}
.y47{bottom:98.906667pt;}
.y13d{bottom:100.000000pt;}
.y11b{bottom:101.600000pt;}
.y16b{bottom:103.200000pt;}
.y53{bottom:106.586667pt;}
.y93{bottom:108.640000pt;}
.y1b9{bottom:109.920000pt;}
.y3c{bottom:110.586667pt;}
.y184{bottom:111.360000pt;}
.ye2{bottom:111.680000pt;}
.y13c{bottom:115.360000pt;}
.y11a{bottom:116.960000pt;}
.y16a{bottom:118.560000pt;}
.y52{bottom:123.386667pt;}
.y92{bottom:123.840000pt;}
.y1b8{bottom:125.280000pt;}
.y3b{bottom:125.946667pt;}
.y183{bottom:126.720000pt;}
.ye1{bottom:127.040000pt;}
.y13b{bottom:130.720000pt;}
.y119{bottom:131.840000pt;}
.y169{bottom:133.920000pt;}
.y51{bottom:137.306667pt;}
.y91{bottom:139.200000pt;}
.y1b7{bottom:140.480000pt;}
.y3a{bottom:141.306667pt;}
.y182{bottom:142.080000pt;}
.ye0{bottom:142.400000pt;}
.y13a{bottom:146.080000pt;}
.y168{bottom:149.280000pt;}
.y50{bottom:151.066667pt;}
.y46{bottom:154.266667pt;}
.y90{bottom:154.560000pt;}
.y118{bottom:155.520000pt;}
.y1b6{bottom:155.840000pt;}
.y39{bottom:156.346667pt;}
.y181{bottom:157.280000pt;}
.ydf{bottom:157.600000pt;}
.y139{bottom:161.280000pt;}
.y45{bottom:163.546667pt;}
.y167{bottom:164.480000pt;}
.y4f{bottom:164.826667pt;}
.y8f{bottom:169.920000pt;}
.y117{bottom:170.880000pt;}
.y1b5{bottom:171.200000pt;}
.y180{bottom:172.640000pt;}
.yde{bottom:172.960000pt;}
.y138{bottom:176.640000pt;}
.y4e{bottom:178.266667pt;}
.y38{bottom:179.546667pt;}
.y166{bottom:179.840000pt;}
.y8e{bottom:185.280000pt;}
.y116{bottom:186.240000pt;}
.y1b4{bottom:186.586667pt;}
.y17f{bottom:188.026667pt;}
.ydd{bottom:188.346667pt;}
.y137{bottom:192.026667pt;}
.y37{bottom:193.306667pt;}
.y165{bottom:195.226667pt;}
.y8d{bottom:200.666667pt;}
.y115{bottom:201.626667pt;}
.y1b3{bottom:201.946667pt;}
.y17e{bottom:203.386667pt;}
.ydc{bottom:203.706667pt;}
.y36{bottom:207.066667pt;}
.y136{bottom:207.386667pt;}
.y164{bottom:210.586667pt;}
.y8c{bottom:215.866667pt;}
.y114{bottom:216.826667pt;}
.y1b2{bottom:217.306667pt;}
.y17d{bottom:218.426667pt;}
.ydb{bottom:219.066667pt;}
.y35{bottom:220.986667pt;}
.y135{bottom:222.746667pt;}
.y163{bottom:225.946667pt;}
.y8b{bottom:231.226667pt;}
.y113{bottom:232.186667pt;}
.y1b1{bottom:232.506667pt;}
.yda{bottom:234.426667pt;}
.y34{bottom:234.746667pt;}
.y134{bottom:237.946667pt;}
.y162{bottom:241.306667pt;}
.y17c{bottom:241.946667pt;}
.y8a{bottom:246.586667pt;}
.y112{bottom:247.546667pt;}
.y1b0{bottom:247.866667pt;}
.y33{bottom:248.506667pt;}
.yd9{bottom:249.626667pt;}
.y133{bottom:253.306667pt;}
.y161{bottom:256.506667pt;}
.y17b{bottom:257.306667pt;}
.y89{bottom:261.946667pt;}
.y32{bottom:262.266667pt;}
.y111{bottom:262.906667pt;}
.y1af{bottom:263.226667pt;}
.yd8{bottom:264.986667pt;}
.y132{bottom:268.666667pt;}
.y160{bottom:271.866667pt;}
.y1d{bottom:275.386667pt;}
.y31{bottom:276.186667pt;}
.yb5{bottom:276.986667pt;}
.y88{bottom:277.306667pt;}
.y110{bottom:278.266667pt;}
.y1ae{bottom:278.586667pt;}
.yd7{bottom:280.346667pt;}
.ycb{bottom:282.426667pt;}
.y131{bottom:284.026667pt;}
.y15f{bottom:287.226667pt;}
.y17a{bottom:287.706667pt;}
.yf{bottom:288.200000pt;}
.yca{bottom:289.306667pt;}
.y30{bottom:289.946667pt;}
.yd6{bottom:292.506667pt;}
.y10f{bottom:293.626667pt;}
.y1ad{bottom:293.946667pt;}
.y130{bottom:296.026667pt;}
.y1c{bottom:296.986667pt;}
.yb4{bottom:300.506667pt;}
.y15e{bottom:302.586667pt;}
.y2f{bottom:303.706667pt;}
.yc9{bottom:304.666667pt;}
.y87{bottom:307.866667pt;}
.y10e{bottom:308.826667pt;}
.y1ac{bottom:308.986667pt;}
.y179{bottom:311.386667pt;}
.yb3{bottom:315.866667pt;}
.y2e{bottom:317.493333pt;}
.y15d{bottom:317.946667pt;}
.y1b{bottom:318.453333pt;}
.yc8{bottom:320.026667pt;}
.y86{bottom:323.226667pt;}
.y10d{bottom:324.186667pt;}
.y178{bottom:326.746667pt;}
.yb2{bottom:331.226667pt;}
.y2d{bottom:331.413333pt;}
.y1ab{bottom:332.506667pt;}
.y15c{bottom:333.306667pt;}
.yc7{bottom:335.226667pt;}
.y85{bottom:338.586667pt;}
.y10c{bottom:339.546667pt;}
.y1a{bottom:339.893333pt;}
.y177{bottom:341.946667pt;}
.y2c{bottom:345.173333pt;}
.yb1{bottom:346.266667pt;}
.y1aa{bottom:347.706667pt;}
.y15b{bottom:348.506667pt;}
.yc6{bottom:350.586667pt;}
.y84{bottom:353.946667pt;}
.y10b{bottom:354.906667pt;}
.y176{bottom:357.306667pt;}
.y2b{bottom:358.933333pt;}
.y19{bottom:361.333333pt;}
.y15a{bottom:363.866667pt;}
.y1a9{bottom:364.186667pt;}
.yc5{bottom:365.946667pt;}
.y83{bottom:369.306667pt;}
.yb0{bottom:369.946667pt;}
.y10a{bottom:370.266667pt;}
.y175{bottom:372.666667pt;}
.y2a{bottom:372.693333pt;}
.y159{bottom:379.226667pt;}
.y1a8{bottom:380.506667pt;}
.yc4{bottom:381.306667pt;}
.y18{bottom:382.773333pt;}
.y82{bottom:384.506667pt;}
.yaf{bottom:385.306667pt;}
.y109{bottom:385.626667pt;}
.y29{bottom:386.613333pt;}
.y174{bottom:388.026667pt;}
.y158{bottom:394.586667pt;}
.yc3{bottom:396.706667pt;}
.y1a7{bottom:396.866667pt;}
.y81{bottom:399.906667pt;}
.y28{bottom:400.373333pt;}
.yae{bottom:400.546667pt;}
.y108{bottom:400.866667pt;}
.y173{bottom:403.426667pt;}
.y17{bottom:404.213333pt;}
.yc2{bottom:408.706667pt;}
.y157{bottom:409.986667pt;}
.y1a6{bottom:412.226667pt;}
.y27{bottom:414.133333pt;}
.y80{bottom:415.266667pt;}
.yad{bottom:415.906667pt;}
.y107{bottom:416.226667pt;}
.y172{bottom:418.786667pt;}
.y156{bottom:425.186667pt;}
.y16{bottom:425.653333pt;}
.y26{bottom:427.893333pt;}
.y1a5{bottom:428.546667pt;}
.y7f{bottom:430.306667pt;}
.yac{bottom:431.266667pt;}
.y12f{bottom:431.426667pt;}
.y106{bottom:431.586667pt;}
.y171{bottom:433.986667pt;}
.y155{bottom:440.546667pt;}
.y25{bottom:441.653333pt;}
.y1a4{bottom:443.746667pt;}
.yab{bottom:446.626667pt;}
.y12e{bottom:446.786667pt;}
.y105{bottom:446.946667pt;}
.y15{bottom:447.253333pt;}
.y170{bottom:449.346667pt;}
.yd5{bottom:449.826667pt;}
.y7e{bottom:453.986667pt;}
.y24{bottom:455.573333pt;}
.y154{bottom:455.906667pt;}
.y1a3{bottom:460.226667pt;}
.yaa{bottom:461.986667pt;}
.y12d{bottom:462.146667pt;}
.y104{bottom:462.306667pt;}
.y16f{bottom:462.466667pt;}
.yd4{bottom:465.186667pt;}
.y16e{bottom:465.986667pt;}
.y14{bottom:468.693333pt;}
.y23{bottom:469.333333pt;}
.y7d{bottom:469.346667pt;}
.y153{bottom:471.266667pt;}
.y1a2{bottom:475.586667pt;}
.ya9{bottom:477.346667pt;}
.y12c{bottom:477.506667pt;}
.y103{bottom:477.666667pt;}
.yd3{bottom:480.386667pt;}
.y22{bottom:483.093333pt;}
.y7c{bottom:484.546667pt;}
.y152{bottom:486.626667pt;}
.y12b{bottom:489.666667pt;}
.y13{bottom:490.133333pt;}
.y1a1{bottom:490.946667pt;}
.ya8{bottom:492.546667pt;}
.yd2{bottom:495.746667pt;}
.y21{bottom:496.853333pt;}
.y7b{bottom:499.906667pt;}
.y151{bottom:501.986667pt;}
.y1a0{bottom:506.306667pt;}
.ya7{bottom:507.906667pt;}
.y20{bottom:510.773333pt;}
.yd1{bottom:511.106667pt;}
.y12{bottom:511.573333pt;}
.y7a{bottom:515.266667pt;}
.y102{bottom:516.226667pt;}
.y150{bottom:517.186667pt;}
.y19f{bottom:521.666667pt;}
.ya6{bottom:523.266667pt;}
.y1f{bottom:524.533333pt;}
.yd0{bottom:526.466667pt;}
.y79{bottom:530.626667pt;}
.y101{bottom:531.586667pt;}
.y14f{bottom:532.546667pt;}
.y11{bottom:533.053333pt;}
.y19e{bottom:536.866667pt;}
.ya5{bottom:538.626667pt;}
.ycf{bottom:541.826667pt;}
.y78{bottom:545.986667pt;}
.y100{bottom:546.946667pt;}
.y14e{bottom:547.906667pt;}
.y1e{bottom:551.773333pt;}
.y19d{bottom:552.226667pt;}
.ya4{bottom:553.986667pt;}
.y10{bottom:554.493333pt;}
.yce{bottom:557.186667pt;}
.y77{bottom:561.186667pt;}
.yff{bottom:562.306667pt;}
.y14d{bottom:563.106667pt;}
.y19c{bottom:567.586667pt;}
.ya3{bottom:569.186667pt;}
.ycd{bottom:572.386667pt;}
.y76{bottom:576.546667pt;}
.yfe{bottom:577.506667pt;}
.y14c{bottom:579.586667pt;}
.yc1{bottom:580.066667pt;}
.y19b{bottom:582.946667pt;}
.ya2{bottom:584.546667pt;}
.y75{bottom:591.906667pt;}
.yfd{bottom:592.866667pt;}
.y14b{bottom:594.786667pt;}
.yc0{bottom:595.266667pt;}
.y19a{bottom:598.306667pt;}
.ya1{bottom:599.906667pt;}
.y12a{bottom:605.213333pt;}
.y74{bottom:607.293333pt;}
.yfc{bottom:608.253333pt;}
.ybf{bottom:610.653333pt;}
.y14a{bottom:611.293333pt;}
.y199{bottom:613.693333pt;}
.ya0{bottom:615.293333pt;}
.y129{bottom:620.573333pt;}
.y73{bottom:622.653333pt;}
.yfb{bottom:623.613333pt;}
.ybe{bottom:626.013333pt;}
.y149{bottom:626.653333pt;}
.y198{bottom:628.893333pt;}
.y9f{bottom:630.653333pt;}
.y128{bottom:635.933333pt;}
.y72{bottom:638.013333pt;}
.yfa{bottom:638.973333pt;}
.ybd{bottom:641.373333pt;}
.y148{bottom:642.013333pt;}
.y197{bottom:644.253333pt;}
.y9e{bottom:646.013333pt;}
.y127{bottom:651.293333pt;}
.y71{bottom:653.213333pt;}
.yf9{bottom:654.333333pt;}
.ybc{bottom:656.733333pt;}
.y147{bottom:657.213333pt;}
.y196{bottom:659.613333pt;}
.y9d{bottom:661.213333pt;}
.y126{bottom:666.653333pt;}
.y70{bottom:668.573333pt;}
.yf8{bottom:669.533333pt;}
.ybb{bottom:672.093333pt;}
.y146{bottom:673.533333pt;}
.y195{bottom:674.813333pt;}
.y9c{bottom:676.573333pt;}
.y125{bottom:682.013333pt;}
.y6f{bottom:683.933333pt;}
.yf7{bottom:684.893333pt;}
.yba{bottom:687.293333pt;}
.y145{bottom:690.013333pt;}
.y194{bottom:691.293333pt;}
.y9b{bottom:691.933333pt;}
.y124{bottom:697.213333pt;}
.y6e{bottom:699.293333pt;}
.yf6{bottom:700.253333pt;}
.yb9{bottom:702.653333pt;}
.y144{bottom:705.213333pt;}
.y193{bottom:706.653333pt;}
.y9a{bottom:707.293333pt;}
.y123{bottom:712.573333pt;}
.y6d{bottom:714.653333pt;}
.yf5{bottom:715.613333pt;}
.yb8{bottom:717.693333pt;}
.y143{bottom:720.573333pt;}
.y192{bottom:722.013333pt;}
.y99{bottom:722.653333pt;}
.y122{bottom:727.933333pt;}
.y6c{bottom:730.013333pt;}
.yf4{bottom:730.973333pt;}
.yb7{bottom:731.133333pt;}
.y142{bottom:735.933333pt;}
.y191{bottom:737.213333pt;}
.y98{bottom:738.013333pt;}
.y121{bottom:743.293333pt;}
.y6b{bottom:745.213333pt;}
.yf3{bottom:746.333333pt;}
.y141{bottom:751.293333pt;}
.y190{bottom:752.573333pt;}
.y97{bottom:753.213333pt;}
.y120{bottom:758.493333pt;}
.y6a{bottom:760.573333pt;}
.yf2{bottom:761.533333pt;}
.y140{bottom:766.493333pt;}
.y18f{bottom:767.933333pt;}
.y96{bottom:768.573333pt;}
.y11f{bottom:774.813333pt;}
.y69{bottom:775.613333pt;}
.yf1{bottom:776.893333pt;}
.y13f{bottom:782.813333pt;}
.y18e{bottom:783.293333pt;}
.y95{bottom:783.933333pt;}
.y11e{bottom:791.293333pt;}
.yf0{bottom:792.253333pt;}
.y18d{bottom:798.653333pt;}
.y68{bottom:799.293333pt;}
.y11d{bottom:806.653333pt;}
.yef{bottom:807.613333pt;}
.y18c{bottom:814.013333pt;}
.y67{bottom:814.693333pt;}
.yee{bottom:823.013333pt;}
.y16d{bottom:823.173333pt;}
.y18b{bottom:828.933333pt;}
.y66{bottom:830.053333pt;}
.yed{bottom:838.213333pt;}
.y65{bottom:845.253333pt;}
.y18a{bottom:852.613333pt;}
.ye{bottom:853.573333pt;}
.yec{bottom:854.533333pt;}
.yd{bottom:858.373333pt;}
.y64{bottom:860.613333pt;}
.y189{bottom:867.973333pt;}
.yeb{bottom:870.853333pt;}
.y63{bottom:875.973333pt;}
.yc{bottom:878.373333pt;}
.y188{bottom:883.333333pt;}
.yea{bottom:887.173333pt;}
.y62{bottom:891.333333pt;}
.yb{bottom:893.733333pt;}
.y187{bottom:898.693333pt;}
.ye9{bottom:903.493333pt;}
.y61{bottom:906.693333pt;}
.y186{bottom:913.573333pt;}
.ye8{bottom:919.973333pt;}
.ya{bottom:920.613333pt;}
.y60{bottom:921.893333pt;}
.ye7{bottom:935.333333pt;}
.y5f{bottom:937.253333pt;}
.y9{bottom:942.053333pt;}
.ye6{bottom:950.533333pt;}
.y5e{bottom:952.613333pt;}
.ye5{bottom:966.853333pt;}
.y8{bottom:967.333333pt;}
.y5d{bottom:967.973333pt;}
.y5a{bottom:970.400000pt;}
.yb6{bottom:983.013333pt;}
.y5c{bottom:983.333333pt;}
.y6{bottom:996.773333pt;}
.y1{bottom:1001.733333pt;}
.hc{height:3.702500pt;}
.h15{height:5.022500pt;}
.h19{height:15.703125pt;}
.h7{height:21.006562pt;}
.h17{height:24.480000pt;}
.h13{height:26.381250pt;}
.h12{height:31.406250pt;}
.ha{height:33.918750pt;}
.hf{height:36.431250pt;}
.h1b{height:37.090625pt;}
.he{height:37.410000pt;}
.h10{height:47.085938pt;}
.h14{height:48.375000pt;}
.h8{height:50.955000pt;}
.h16{height:52.108438pt;}
.h5{height:52.134375pt;}
.h6{height:52.834688pt;}
.hb{height:53.535000pt;}
.h1a{height:54.598989pt;}
.h18{height:56.891250pt;}
.h3{height:58.563750pt;}
.h2{height:72.506667pt;}
.h9{height:75.465000pt;}
.h4{height:104.160000pt;}
.h11{height:189.466667pt;}
.hd{height:562.960000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:92.512000pt;}
.w4{width:117.912000pt;}
.w6{width:144.640000pt;}
.w5{width:530.200000pt;}
.w3{width:553.240000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.112000pt;}
.x18{left:7.186667pt;}
.x4{left:11.346667pt;}
.x15{left:15.032000pt;}
.x5{left:16.786667pt;}
.x16{left:20.792000pt;}
.x1b{left:25.912000pt;}
.x6{left:31.986667pt;}
.xf{left:38.872000pt;}
.x1a{left:42.392000pt;}
.x10{left:45.112000pt;}
.xe{left:48.952000pt;}
.x1d{left:50.712000pt;}
.x1c{left:58.866667pt;}
.x12{left:59.986667pt;}
.x1{left:69.600000pt;}
.x14{left:70.706667pt;}
.x7{left:76.832000pt;}
.x13{left:79.026667pt;}
.x2{left:85.146667pt;}
.x1e{left:91.346667pt;}
.x19{left:94.866667pt;}
.x26{left:100.832000pt;}
.x11{left:110.706667pt;}
.x20{left:124.832000pt;}
.x3{left:162.120000pt;}
.x17{left:194.760000pt;}
.xa{left:463.933333pt;}
.xb{left:472.253333pt;}
.xc{left:514.653333pt;}
.x24{left:539.933333pt;}
.x25{left:549.053333pt;}
.x28{left:560.453333pt;}
.x22{left:567.333333pt;}
.x27{left:570.373333pt;}
.x29{left:590.533333pt;}
.x23{left:606.373333pt;}
.x9{left:680.933333pt;}
.x21{left:703.973333pt;}
.x8{left:710.560000pt;}
.xd{left:717.280000pt;}
}




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