
    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_b45f2ac76888442f750b087f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fec0e10147fd85ec03244d82.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_8293fbfe97a9927d23e77070.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_15d47c08cd10029911092b04.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_5821026317fda0624ceb6a0b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_0c36cea232f8a7d8843e3115.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_78a15fd44aa73418611fb28d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f4c7115fd9481fc8da47143b.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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_a523e1eb582bbb86efc6e96a.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.435059;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:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.lsf{letter-spacing:-0.606000px;}
.ls14{letter-spacing:-0.186600px;}
.ls6{letter-spacing:-0.135000px;}
.ls18{letter-spacing:-0.124200px;}
.lsd{letter-spacing:-0.121200px;}
.ls1b{letter-spacing:-0.120600px;}
.ls5{letter-spacing:-0.090000px;}
.lsc{letter-spacing:-0.084600px;}
.ls15{letter-spacing:-0.063600px;}
.ls16{letter-spacing:-0.048960px;}
.ls19{letter-spacing:-0.023040px;}
.lsa{letter-spacing:-0.008400px;}
.lsb{letter-spacing:-0.003000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.045360px;}
.ls11{letter-spacing:0.048960px;}
.ls12{letter-spacing:0.064800px;}
.ls17{letter-spacing:0.069600px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls1c{letter-spacing:0.098400px;}
.ls4{letter-spacing:0.144000px;}
.lse{letter-spacing:0.173400px;}
.ls7{letter-spacing:0.183000px;}
.ls9{letter-spacing:0.197400px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.535800px;}
.ls1d{letter-spacing:47.726640px;}
.ls13{letter-spacing:63.566640px;}
.ls1a{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws2{word-spacing:-18.651000px;}
.ws6{word-spacing:-14.493600px;}
.wsa{word-spacing:-14.372400px;}
.ws7{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.324800px;}
.wsb{word-spacing:-13.275360px;}
.ws4{word-spacing:-13.226400px;}
.ws3{word-spacing:-13.223400px;}
.wsd{word-spacing:-13.177440px;}
.wsc{word-spacing:-13.162800px;}
.ws9{word-spacing:-13.039800px;}
.wse{word-spacing:-10.603200px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsf{word-spacing:-8.530560px;}
.ws8{word-spacing:0.000000px;}
.ws5{word-spacing:4.304880px;}
._d{margin-left:-3.677517px;}
._b{margin-left:-2.454723px;}
._5{margin-left:-1.227840px;}
._1{width:1.302205px;}
._3{width:2.640407px;}
._4{width:4.083407px;}
._6{width:5.290800px;}
._7{width:6.375790px;}
._a{width:7.566030px;}
._c{width:8.991839px;}
._9{width:10.366440px;}
._8{width:11.843400px;}
._1f{width:15.390720px;}
._10{width:16.533000px;}
._11{width:17.915760px;}
._0{width:19.879812px;}
._2{width:20.915388px;}
._1c{width:23.438520px;}
._1e{width:25.370640px;}
._12{width:27.895680px;}
._e{width:30.240360px;}
._f{width:31.262400px;}
._1a{width:32.585040px;}
._1b{width:38.427480px;}
._14{width:39.979800px;}
._17{width:58.587480px;}
._19{width:95.951520px;}
._16{width:102.504600px;}
._15{width:103.526640px;}
._21{width:107.820600px;}
._20{width:108.877320px;}
._13{width:116.452440px;}
._1d{width:124.958520px;}
._18{width:142.958520px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs9{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:63.000000px;}
.fs7{font-size:65.880000px;}
.fs8{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.fsa{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:7.830000px;}
.y4c{bottom:7.920000px;}
.yff{bottom:10.170000px;}
.y62{bottom:12.330000px;}
.y10d{bottom:16.650000px;}
.yc8{bottom:16.740000px;}
.yfd{bottom:18.900000px;}
.y90{bottom:25.380000px;}
.y5d{bottom:25.470000px;}
.yfb{bottom:27.720000px;}
.y5a{bottom:29.880000px;}
.y51{bottom:29.970000px;}
.yc7{bottom:34.290000px;}
.yfc{bottom:36.540000px;}
.ye0{bottom:43.020000px;}
.yc9{bottom:43.110000px;}
.yfe{bottom:45.360000px;}
.y100{bottom:47.610000px;}
.y59{bottom:52.050000px;}
.y50{bottom:52.110000px;}
.y2{bottom:73.380000px;}
.y58{bottom:74.100000px;}
.y28{bottom:74.190000px;}
.y57{bottom:96.150000px;}
.y1{bottom:101.640000px;}
.y52{bottom:118.020000px;}
.y56{bottom:118.290000px;}
.y121{bottom:120.180000px;}
.y26{bottom:135.660000px;}
.y120{bottom:137.820000px;}
.ya6{bottom:138.630000px;}
.y55{bottom:140.340000px;}
.y25{bottom:153.300000px;}
.y11f{bottom:155.370000px;}
.ya5{bottom:156.180000px;}
.ycc{bottom:158.250000px;}
.yc5{bottom:160.230000px;}
.y54{bottom:162.480000px;}
.y4f{bottom:167.430000px;}
.yf8{bottom:176.880000px;}
.yc4{bottom:177.780000px;}
.y7a{bottom:178.860000px;}
.y11e{bottom:182.010000px;}
.y103{bottom:184.590000px;}
.y24{bottom:188.850000px;}
.ya4{bottom:191.820000px;}
.yf7{bottom:194.520000px;}
.y79{bottom:196.410000px;}
.y11d{bottom:199.560000px;}
.y23{bottom:206.400000px;}
.ya3{bottom:209.370000px;}
.yf6{bottom:212.070000px;}
.yc3{bottom:213.420000px;}
.y22{bottom:224.040000px;}
.y11c{bottom:226.470000px;}
.yf5{bottom:229.620000px;}
.yc2{bottom:230.970000px;}
.y78{bottom:231.960000px;}
.ya2{bottom:236.010000px;}
.y4e{bottom:238.980000px;}
.y21{bottom:241.590000px;}
.yf4{bottom:247.260000px;}
.y77{bottom:249.600000px;}
.yc1{bottom:257.880000px;}
.y4d{bottom:266.340000px;}
.ya1{bottom:271.560000px;}
.yf3{bottom:273.810000px;}
.y11b{bottom:274.710000px;}
.y20{bottom:277.230000px;}
.y76{bottom:285.150000px;}
.ya0{bottom:289.110000px;}
.y4b{bottom:293.610000px;}
.y1f{bottom:294.780000px;}
.y11a{bottom:301.620000px;}
.y75{bottom:302.790000px;}
.yc0{bottom:305.400000px;}
.yf2{bottom:309.450000px;}
.y1e{bottom:312.330000px;}
.yb1{bottom:315.840000px;}
.ycb{bottom:317.640000px;}
.y74{bottom:320.340000px;}
.y4a{bottom:320.970000px;}
.y9f{bottom:321.330000px;}
.yf1{bottom:327.000000px;}
.y1d{bottom:329.970000px;}
.y98{bottom:335.370000px;}
.y73{bottom:337.890000px;}
.y119{bottom:338.700000px;}
.yd6{bottom:344.910000px;}
.y48{bottom:348.330000px;}
.yb0{bottom:351.390000px;}
.yf0{bottom:362.550000px;}
.y72{bottom:364.530000px;}
.y1c{bottom:365.520000px;}
.y118{bottom:365.610000px;}
.yaf{bottom:369.030000px;}
.y97{bottom:370.920000px;}
.yd5{bottom:372.270000px;}
.yef{bottom:380.190000px;}
.y1b{bottom:383.160000px;}
.yba{bottom:387.120000px;}
.y96{bottom:388.470000px;}
.y47{bottom:397.020000px;}
.yee{bottom:397.740000px;}
.yd4{bottom:399.630000px;}
.y71{bottom:400.080000px;}
.y1a{bottom:400.710000px;}
.yae{bottom:401.250000px;}
.y117{bottom:402.960000px;}
.y46{bottom:414.570000px;}
.y70{bottom:417.720000px;}
.yb9{bottom:422.760000px;}
.y95{bottom:424.110000px;}
.yed{bottom:424.380000px;}
.yd3{bottom:426.990000px;}
.y19{bottom:427.620000px;}
.y45{bottom:441.210000px;}
.y94{bottom:441.660000px;}
.y116{bottom:451.200000px;}
.y6f{bottom:453.270000px;}
.yd2{bottom:454.260000px;}
.yb8{bottom:454.980000px;}
.yec{bottom:457.320000px;}
.y115{bottom:468.750000px;}
.y6e{bottom:470.850000px;}
.y93{bottom:474.630000px;}
.y18{bottom:476.250000px;}
.y44{bottom:476.790000px;}
.yd1{bottom:481.650000px;}
.yeb{bottom:484.710000px;}
.y114{bottom:486.420000px;}
.y6d{bottom:488.490000px;}
.y43{bottom:494.340000px;}
.y92{bottom:501.990000px;}
.yd0{bottom:509.010000px;}
.y42{bottom:511.980000px;}
.y17{bottom:513.240000px;}
.y113{bottom:521.970000px;}
.y6c{bottom:524.040000px;}
.y91{bottom:529.350000px;}
.y41{bottom:529.530000px;}
.y16{bottom:530.880000px;}
.ycf{bottom:536.370000px;}
.yea{bottom:539.340000px;}
.y112{bottom:539.520000px;}
.y6b{bottom:541.590000px;}
.y15{bottom:548.430000px;}
.y8f{bottom:556.710000px;}
.y111{bottom:557.160000px;}
.y40{bottom:559.050000px;}
.y6a{bottom:559.230000px;}
.y9e{bottom:563.280000px;}
.yce{bottom:563.640000px;}
.y14{bottom:565.980000px;}
.y3f{bottom:576.690000px;}
.y69{bottom:576.780000px;}
.y9d{bottom:580.830000px;}
.y13{bottom:583.620000px;}
.y110{bottom:584.070000px;}
.ycd{bottom:591.000000px;}
.y68{bottom:594.420000px;}
.y3e{bottom:595.140000px;}
.y12{bottom:601.170000px;}
.y3d{bottom:612.690000px;}
.y9c{bottom:613.050000px;}
.yca{bottom:618.360000px;}
.y11{bottom:618.810000px;}
.y67{bottom:620.970000px;}
.y8e{bottom:622.950000px;}
.ye9{bottom:623.220000px;}
.y10f{bottom:631.590000px;}
.y10{bottom:636.360000px;}
.y102{bottom:643.740000px;}
.yc6{bottom:645.630000px;}
.y3c{bottom:649.140000px;}
.y8d{bottom:649.590000px;}
.yf{bottom:653.910000px;}
.y66{bottom:656.520000px;}
.ye8{bottom:658.770000px;}
.yad{bottom:661.110000px;}
.y3b{bottom:666.690000px;}
.ye{bottom:671.550000px;}
.y65{bottom:674.160000px;}
.ye7{bottom:676.410000px;}
.y3a{bottom:684.330000px;}
.y8c{bottom:685.500000px;}
.y10e{bottom:688.740000px;}
.y64{bottom:691.710000px;}
.yac{bottom:693.330000px;}
.ye6{bottom:693.960000px;}
.yd{bottom:698.460000px;}
.y39{bottom:710.880000px;}
.ye5{bottom:711.600000px;}
.y63{bottom:718.350000px;}
.ybf{bottom:729.780000px;}
.y10c{bottom:733.650000px;}
.y8b{bottom:733.740000px;}
.ye4{bottom:738.150000px;}
.yc{bottom:745.170000px;}
.y38{bottom:746.520000px;}
.y61{bottom:751.290000px;}
.y37{bottom:764.070000px;}
.ybe{bottom:765.330000px;}
.yb7{bottom:768.840000px;}
.y8a{bottom:768.930000px;}
.ye3{bottom:771.090000px;}
.y12c{bottom:778.290000px;}
.y10b{bottom:778.560000px;}
.yb{bottom:780.990000px;}
.yb6{bottom:786.390000px;}
.y89{bottom:786.480000px;}
.ybd{bottom:791.970000px;}
.y12b{bottom:795.930000px;}
.ye2{bottom:798.450000px;}
.y36{bottom:799.620000px;}
.y60{bottom:800.700000px;}
.y88{bottom:804.030000px;}
.y10a{bottom:805.920000px;}
.y12a{bottom:813.480000px;}
.ya{bottom:816.990000px;}
.y35{bottom:817.260000px;}
.yb5{bottom:821.580000px;}
.ye1{bottom:825.810000px;}
.ybc{bottom:827.520000px;}
.y5f{bottom:828.060000px;}
.y129{bottom:831.030000px;}
.y109{bottom:833.190000px;}
.y87{bottom:839.670000px;}
.yb4{bottom:848.220000px;}
.y34{bottom:852.810000px;}
.ydf{bottom:853.170000px;}
.y5e{bottom:855.420000px;}
.y9{bottom:856.770000px;}
.y86{bottom:857.220000px;}
.y128{bottom:857.670000px;}
.ybb{bottom:859.740000px;}
.y108{bottom:860.550000px;}
.y33{bottom:870.450000px;}
.y8{bottom:874.770000px;}
.y85{bottom:874.860000px;}
.y9b{bottom:875.220000px;}
.y5c{bottom:882.690000px;}
.yb3{bottom:883.770000px;}
.y107{bottom:887.910000px;}
.y32{bottom:888.000000px;}
.y84{bottom:892.410000px;}
.y9a{bottom:892.770000px;}
.y127{bottom:901.860000px;}
.y7{bottom:906.990000px;}
.y106{bottom:915.180000px;}
.yb2{bottom:915.990000px;}
.y83{bottom:918.960000px;}
.y126{bottom:919.410000px;}
.y31{bottom:923.550000px;}
.y99{bottom:924.990000px;}
.y6{bottom:925.440000px;}
.y5b{bottom:927.600000px;}
.yde{bottom:936.960000px;}
.y30{bottom:941.190000px;}
.y105{bottom:942.540000px;}
.y82{bottom:954.600000px;}
.y5{bottom:962.970000px;}
.y125{bottom:963.600000px;}
.y104{bottom:969.900000px;}
.y81{bottom:972.150000px;}
.ydd{bottom:972.600000px;}
.yab{bottom:974.400000px;}
.y2f{bottom:976.740000px;}
.y53{bottom:977.100000px;}
.y124{bottom:981.150000px;}
.y4{bottom:987.630000px;}
.y80{bottom:989.790000px;}
.ydc{bottom:990.150000px;}
.yaa{bottom:991.950000px;}
.y2e{bottom:994.290000px;}
.y101{bottom:997.260000px;}
.y123{bottom:1007.790000px;}
.y2d{bottom:1011.960000px;}
.y3{bottom:1012.320000px;}
.ydb{bottom:1016.820000px;}
.ya9{bottom:1019.340000px;}
.yfa{bottom:1024.560000px;}
.y7f{bottom:1025.370000px;}
.y2c{bottom:1038.510000px;}
.y7e{bottom:1042.920000px;}
.ya8{bottom:1046.700000px;}
.y122{bottom:1051.920000px;}
.yda{bottom:1052.370000px;}
.yd9{bottom:1069.920000px;}
.ya7{bottom:1073.970000px;}
.y2b{bottom:1074.420000px;}
.y7d{bottom:1078.560000px;}
.yd8{bottom:1087.560000px;}
.yf9{bottom:1091.610000px;}
.y7c{bottom:1096.110000px;}
.yd7{bottom:1105.110000px;}
.y7b{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hc{height:26.550000px;}
.h1d{height:26.580000px;}
.he{height:26.640000px;}
.h15{height:26.670000px;}
.h2{height:30.022383px;}
.h6{height:35.782383px;}
.h3{height:39.155273px;}
.h17{height:41.661211px;}
.h14{height:44.100000px;}
.h12{height:44.190000px;}
.h10{height:48.690000px;}
.hd{height:50.902383px;}
.h7{height:52.311445px;}
.h5{height:54.817383px;}
.h8{height:55.779258px;}
.h13{height:59.973223px;}
.h1c{height:61.740000px;}
.hb{height:61.793886px;}
.h18{height:61.830000px;}
.ha{height:62.585859px;}
.h1e{height:66.330000px;}
.h9{height:68.582109px;}
.hf{height:70.830000px;}
.h19{height:71.019492px;}
.h4{height:72.985430px;}
.h16{height:74.953125px;}
.h1a{height:131.167969px;}
.h11{height:176.700000px;}
.h1b{height:327.270000px;}
.h1f{height:380.100000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:41.760000px;}
.w1f{width:41.790000px;}
.w20{width:52.380000px;}
.w19{width:52.410000px;}
.w25{width:58.410000px;}
.w24{width:60.750000px;}
.wb{width:63.000000px;}
.w1a{width:63.090000px;}
.w13{width:64.080000px;}
.w14{width:73.620000px;}
.w8{width:73.710000px;}
.w27{width:79.050000px;}
.w22{width:83.790000px;}
.w1c{width:83.880000px;}
.w16{width:84.240000px;}
.w7{width:84.330000px;}
.w2a{width:85.140000px;}
.w26{width:89.820000px;}
.w28{width:89.910000px;}
.we{width:90.810000px;}
.w17{width:93.240000px;}
.w15{width:94.980000px;}
.w29{width:98.640000px;}
.w18{width:103.050000px;}
.wf{width:104.220000px;}
.w1e{width:105.570000px;}
.w21{width:112.500000px;}
.w23{width:123.960000px;}
.w1d{width:124.680000px;}
.wd{width:130.980000px;}
.w9{width:137.460000px;}
.w10{width:138.000000px;}
.w6{width:140.700000px;}
.w1b{width:144.450000px;}
.w12{width:147.090000px;}
.w11{width:148.140000px;}
.wc{width:154.620000px;}
.w4{width:180.120000px;}
.w5{width:574.860000px;}
.w3{width:755.700000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:3.960000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x22{left:71.279987px;}
.x15{left:72.449987px;}
.x20{left:78.119987px;}
.x17{left:83.249987px;}
.x12{left:85.499987px;}
.x24{left:89.369987px;}
.x2f{left:91.260000px;}
.x4{left:95.039987px;}
.x9{left:96.570000px;}
.x37{left:109.890000px;}
.x46{left:111.239987px;}
.x5{left:122.039987px;}
.x2{left:192.719987px;}
.x18{left:217.740000px;}
.x28{left:230.070000px;}
.x30{left:232.680000px;}
.x38{left:235.290000px;}
.xb{left:237.990000px;}
.x8{left:249.600000px;}
.x3e{left:258.240000px;}
.x45{left:259.679987px;}
.x27{left:260.939987px;}
.x6{left:287.940000px;}
.x29{left:294.870000px;}
.x19{left:309.270000px;}
.x31{left:317.730000px;}
.x3f{left:319.800000px;}
.xc{left:323.040000px;}
.x26{left:343.919987px;}
.x2a{left:358.680000px;}
.x40{left:378.930000px;}
.x32{left:381.450000px;}
.x39{left:384.150000px;}
.xd{left:397.470000px;}
.x1a{left:414.210000px;}
.x13{left:428.879987px;}
.x2b{left:433.020000px;}
.x33{left:455.970000px;}
.x41{left:469.560000px;}
.x3a{left:490.440000px;}
.x34{left:509.100000px;}
.x2c{left:528.810000px;}
.x3b{left:533.040000px;}
.xe{left:535.740000px;}
.x42{left:549.330000px;}
.x1b{left:552.930000px;}
.x35{left:572.910000px;}
.xf{left:578.220000px;}
.x3c{left:586.230000px;}
.x1c{left:595.410000px;}
.x2d{left:613.860000px;}
.x43{left:639.960000px;}
.x10{left:642.030000px;}
.x1d{left:659.220000px;}
.x3d{left:699.540000px;}
.x2e{left:707.910000px;}
.x36{left:718.080000px;}
.x44{left:739.320000px;}
.x23{left:744.809987px;}
.x25{left:750.389987px;}
.x16{left:781.889987px;}
.x11{left:783.059987px;}
.x1f{left:797.639987px;}
.x3{left:800.339987px;}
.x21{left:803.309987px;}
.x14{left:807.809987px;}
.x1e{left:811.139987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.lsf{letter-spacing:-0.538667pt;}
.ls14{letter-spacing:-0.165867pt;}
.ls6{letter-spacing:-0.120000pt;}
.ls18{letter-spacing:-0.110400pt;}
.lsd{letter-spacing:-0.107733pt;}
.ls1b{letter-spacing:-0.107200pt;}
.ls5{letter-spacing:-0.080000pt;}
.lsc{letter-spacing:-0.075200pt;}
.ls15{letter-spacing:-0.056533pt;}
.ls16{letter-spacing:-0.043520pt;}
.ls19{letter-spacing:-0.020480pt;}
.lsa{letter-spacing:-0.007467pt;}
.lsb{letter-spacing:-0.002667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.040320pt;}
.ls11{letter-spacing:0.043520pt;}
.ls12{letter-spacing:0.057600pt;}
.ls17{letter-spacing:0.061867pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls1c{letter-spacing:0.087467pt;}
.ls4{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.154133pt;}
.ls7{letter-spacing:0.162667pt;}
.ls9{letter-spacing:0.175467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.476267pt;}
.ls1d{letter-spacing:42.423680pt;}
.ls13{letter-spacing:56.503680pt;}
.ls1a{letter-spacing:71.863680pt;}
.ws2{word-spacing:-16.578667pt;}
.ws6{word-spacing:-12.883200pt;}
.wsa{word-spacing:-12.775467pt;}
.ws7{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.844267pt;}
.wsb{word-spacing:-11.800320pt;}
.ws4{word-spacing:-11.756800pt;}
.ws3{word-spacing:-11.754133pt;}
.wsd{word-spacing:-11.713280pt;}
.wsc{word-spacing:-11.700267pt;}
.ws9{word-spacing:-11.590933pt;}
.wse{word-spacing:-9.425067pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsf{word-spacing:-7.582720pt;}
.ws8{word-spacing:0.000000pt;}
.ws5{word-spacing:3.826560pt;}
._d{margin-left:-3.268904pt;}
._b{margin-left:-2.181976pt;}
._5{margin-left:-1.091413pt;}
._1{width:1.157516pt;}
._3{width:2.347028pt;}
._4{width:3.629695pt;}
._6{width:4.702934pt;}
._7{width:5.667369pt;}
._a{width:6.725360pt;}
._c{width:7.992746pt;}
._9{width:9.214614pt;}
._8{width:10.527466pt;}
._1f{width:13.680640pt;}
._10{width:14.696000pt;}
._11{width:15.925120pt;}
._0{width:17.670944pt;}
._2{width:18.591456pt;}
._1c{width:20.834240pt;}
._1e{width:22.551680pt;}
._12{width:24.796160pt;}
._e{width:26.880320pt;}
._f{width:27.788800pt;}
._1a{width:28.964480pt;}
._1b{width:34.157760pt;}
._14{width:35.537600pt;}
._17{width:52.077760pt;}
._19{width:85.290240pt;}
._16{width:91.115200pt;}
._15{width:92.023680pt;}
._21{width:95.840533pt;}
._20{width:96.779840pt;}
._13{width:103.513280pt;}
._1d{width:111.074240pt;}
._18{width:127.074240pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs9{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:56.000000pt;}
.fs7{font-size:58.560000pt;}
.fs8{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.fsa{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:6.960000pt;}
.y4c{bottom:7.040000pt;}
.yff{bottom:9.040000pt;}
.y62{bottom:10.960000pt;}
.y10d{bottom:14.800000pt;}
.yc8{bottom:14.880000pt;}
.yfd{bottom:16.800000pt;}
.y90{bottom:22.560000pt;}
.y5d{bottom:22.640000pt;}
.yfb{bottom:24.640000pt;}
.y5a{bottom:26.560000pt;}
.y51{bottom:26.640000pt;}
.yc7{bottom:30.480000pt;}
.yfc{bottom:32.480000pt;}
.ye0{bottom:38.240000pt;}
.yc9{bottom:38.320000pt;}
.yfe{bottom:40.320000pt;}
.y100{bottom:42.320000pt;}
.y59{bottom:46.266667pt;}
.y50{bottom:46.320000pt;}
.y2{bottom:65.226667pt;}
.y58{bottom:65.866667pt;}
.y28{bottom:65.946667pt;}
.y57{bottom:85.466667pt;}
.y1{bottom:90.346667pt;}
.y52{bottom:104.906667pt;}
.y56{bottom:105.146667pt;}
.y121{bottom:106.826667pt;}
.y26{bottom:120.586667pt;}
.y120{bottom:122.506667pt;}
.ya6{bottom:123.226667pt;}
.y55{bottom:124.746667pt;}
.y25{bottom:136.266667pt;}
.y11f{bottom:138.106667pt;}
.ya5{bottom:138.826667pt;}
.ycc{bottom:140.666667pt;}
.yc5{bottom:142.426667pt;}
.y54{bottom:144.426667pt;}
.y4f{bottom:148.826667pt;}
.yf8{bottom:157.226667pt;}
.yc4{bottom:158.026667pt;}
.y7a{bottom:158.986667pt;}
.y11e{bottom:161.786667pt;}
.y103{bottom:164.080000pt;}
.y24{bottom:167.866667pt;}
.ya4{bottom:170.506667pt;}
.yf7{bottom:172.906667pt;}
.y79{bottom:174.586667pt;}
.y11d{bottom:177.386667pt;}
.y23{bottom:183.466667pt;}
.ya3{bottom:186.106667pt;}
.yf6{bottom:188.506667pt;}
.yc3{bottom:189.706667pt;}
.y22{bottom:199.146667pt;}
.y11c{bottom:201.306667pt;}
.yf5{bottom:204.106667pt;}
.yc2{bottom:205.306667pt;}
.y78{bottom:206.186667pt;}
.ya2{bottom:209.786667pt;}
.y4e{bottom:212.426667pt;}
.y21{bottom:214.746667pt;}
.yf4{bottom:219.786667pt;}
.y77{bottom:221.866667pt;}
.yc1{bottom:229.226667pt;}
.y4d{bottom:236.746667pt;}
.ya1{bottom:241.386667pt;}
.yf3{bottom:243.386667pt;}
.y11b{bottom:244.186667pt;}
.y20{bottom:246.426667pt;}
.y76{bottom:253.466667pt;}
.ya0{bottom:256.986667pt;}
.y4b{bottom:260.986667pt;}
.y1f{bottom:262.026667pt;}
.y11a{bottom:268.106667pt;}
.y75{bottom:269.146667pt;}
.yc0{bottom:271.466667pt;}
.yf2{bottom:275.066667pt;}
.y1e{bottom:277.626667pt;}
.yb1{bottom:280.746667pt;}
.ycb{bottom:282.346667pt;}
.y74{bottom:284.746667pt;}
.y4a{bottom:285.306667pt;}
.y9f{bottom:285.626667pt;}
.yf1{bottom:290.666667pt;}
.y1d{bottom:293.306667pt;}
.y98{bottom:298.106667pt;}
.y73{bottom:300.346667pt;}
.y119{bottom:301.066667pt;}
.yd6{bottom:306.586667pt;}
.y48{bottom:309.626667pt;}
.yb0{bottom:312.346667pt;}
.yf0{bottom:322.266667pt;}
.y72{bottom:324.026667pt;}
.y1c{bottom:324.906667pt;}
.y118{bottom:324.986667pt;}
.yaf{bottom:328.026667pt;}
.y97{bottom:329.706667pt;}
.yd5{bottom:330.906667pt;}
.yef{bottom:337.946667pt;}
.y1b{bottom:340.586667pt;}
.yba{bottom:344.106667pt;}
.y96{bottom:345.306667pt;}
.y47{bottom:352.906667pt;}
.yee{bottom:353.546667pt;}
.yd4{bottom:355.226667pt;}
.y71{bottom:355.626667pt;}
.y1a{bottom:356.186667pt;}
.yae{bottom:356.666667pt;}
.y117{bottom:358.186667pt;}
.y46{bottom:368.506667pt;}
.y70{bottom:371.306667pt;}
.yb9{bottom:375.786667pt;}
.y95{bottom:376.986667pt;}
.yed{bottom:377.226667pt;}
.yd3{bottom:379.546667pt;}
.y19{bottom:380.106667pt;}
.y45{bottom:392.186667pt;}
.y94{bottom:392.586667pt;}
.y116{bottom:401.066667pt;}
.y6f{bottom:402.906667pt;}
.yd2{bottom:403.786667pt;}
.yb8{bottom:404.426667pt;}
.yec{bottom:406.506667pt;}
.y115{bottom:416.666667pt;}
.y6e{bottom:418.533333pt;}
.y93{bottom:421.893333pt;}
.y18{bottom:423.333333pt;}
.y44{bottom:423.813333pt;}
.yd1{bottom:428.133333pt;}
.yeb{bottom:430.853333pt;}
.y114{bottom:432.373333pt;}
.y6d{bottom:434.213333pt;}
.y43{bottom:439.413333pt;}
.y92{bottom:446.213333pt;}
.yd0{bottom:452.453333pt;}
.y42{bottom:455.093333pt;}
.y17{bottom:456.213333pt;}
.y113{bottom:463.973333pt;}
.y6c{bottom:465.813333pt;}
.y91{bottom:470.533333pt;}
.y41{bottom:470.693333pt;}
.y16{bottom:471.893333pt;}
.ycf{bottom:476.773333pt;}
.yea{bottom:479.413333pt;}
.y112{bottom:479.573333pt;}
.y6b{bottom:481.413333pt;}
.y15{bottom:487.493333pt;}
.y8f{bottom:494.853333pt;}
.y111{bottom:495.253333pt;}
.y40{bottom:496.933333pt;}
.y6a{bottom:497.093333pt;}
.y9e{bottom:500.693333pt;}
.yce{bottom:501.013333pt;}
.y14{bottom:503.093333pt;}
.y3f{bottom:512.613333pt;}
.y69{bottom:512.693333pt;}
.y9d{bottom:516.293333pt;}
.y13{bottom:518.773333pt;}
.y110{bottom:519.173333pt;}
.ycd{bottom:525.333333pt;}
.y68{bottom:528.373333pt;}
.y3e{bottom:529.013333pt;}
.y12{bottom:534.373333pt;}
.y3d{bottom:544.613333pt;}
.y9c{bottom:544.933333pt;}
.yca{bottom:549.653333pt;}
.y11{bottom:550.053333pt;}
.y67{bottom:551.973333pt;}
.y8e{bottom:553.733333pt;}
.ye9{bottom:553.973333pt;}
.y10f{bottom:561.413333pt;}
.y10{bottom:565.653333pt;}
.y102{bottom:572.213333pt;}
.yc6{bottom:573.893333pt;}
.y3c{bottom:577.013333pt;}
.y8d{bottom:577.413333pt;}
.yf{bottom:581.253333pt;}
.y66{bottom:583.573333pt;}
.ye8{bottom:585.573333pt;}
.yad{bottom:587.653333pt;}
.y3b{bottom:592.613333pt;}
.ye{bottom:596.933333pt;}
.y65{bottom:599.253333pt;}
.ye7{bottom:601.253333pt;}
.y3a{bottom:608.293333pt;}
.y8c{bottom:609.333333pt;}
.y10e{bottom:612.213333pt;}
.y64{bottom:614.853333pt;}
.yac{bottom:616.293333pt;}
.ye6{bottom:616.853333pt;}
.yd{bottom:620.853333pt;}
.y39{bottom:631.893333pt;}
.ye5{bottom:632.533333pt;}
.y63{bottom:638.533333pt;}
.ybf{bottom:648.693333pt;}
.y10c{bottom:652.133333pt;}
.y8b{bottom:652.213333pt;}
.ye4{bottom:656.133333pt;}
.yc{bottom:662.373333pt;}
.y38{bottom:663.573333pt;}
.y61{bottom:667.813333pt;}
.y37{bottom:679.173333pt;}
.ybe{bottom:680.293333pt;}
.yb7{bottom:683.413333pt;}
.y8a{bottom:683.493333pt;}
.ye3{bottom:685.413333pt;}
.y12c{bottom:691.813333pt;}
.y10b{bottom:692.053333pt;}
.yb{bottom:694.213333pt;}
.yb6{bottom:699.013333pt;}
.y89{bottom:699.093333pt;}
.ybd{bottom:703.973333pt;}
.y12b{bottom:707.493333pt;}
.ye2{bottom:709.733333pt;}
.y36{bottom:710.773333pt;}
.y60{bottom:711.733333pt;}
.y88{bottom:714.693333pt;}
.y10a{bottom:716.373333pt;}
.y12a{bottom:723.093333pt;}
.ya{bottom:726.213333pt;}
.y35{bottom:726.453333pt;}
.yb5{bottom:730.293333pt;}
.ye1{bottom:734.053333pt;}
.ybc{bottom:735.573333pt;}
.y5f{bottom:736.053333pt;}
.y129{bottom:738.693333pt;}
.y109{bottom:740.613333pt;}
.y87{bottom:746.373333pt;}
.yb4{bottom:753.973333pt;}
.y34{bottom:758.053333pt;}
.ydf{bottom:758.373333pt;}
.y5e{bottom:760.373333pt;}
.y9{bottom:761.573333pt;}
.y86{bottom:761.973333pt;}
.y128{bottom:762.373333pt;}
.ybb{bottom:764.213333pt;}
.y108{bottom:764.933333pt;}
.y33{bottom:773.733333pt;}
.y8{bottom:777.573333pt;}
.y85{bottom:777.653333pt;}
.y9b{bottom:777.973333pt;}
.y5c{bottom:784.613333pt;}
.yb3{bottom:785.573333pt;}
.y107{bottom:789.253333pt;}
.y32{bottom:789.333333pt;}
.y84{bottom:793.253333pt;}
.y9a{bottom:793.573333pt;}
.y127{bottom:801.653333pt;}
.y7{bottom:806.213333pt;}
.y106{bottom:813.493333pt;}
.yb2{bottom:814.213333pt;}
.y83{bottom:816.853333pt;}
.y126{bottom:817.253333pt;}
.y31{bottom:820.933333pt;}
.y99{bottom:822.213333pt;}
.y6{bottom:822.613333pt;}
.y5b{bottom:824.533333pt;}
.yde{bottom:832.853333pt;}
.y30{bottom:836.613333pt;}
.y105{bottom:837.813333pt;}
.y82{bottom:848.533333pt;}
.y5{bottom:855.973333pt;}
.y125{bottom:856.533333pt;}
.y104{bottom:862.133333pt;}
.y81{bottom:864.133333pt;}
.ydd{bottom:864.533333pt;}
.yab{bottom:866.133333pt;}
.y2f{bottom:868.213333pt;}
.y53{bottom:868.533333pt;}
.y124{bottom:872.133333pt;}
.y4{bottom:877.893333pt;}
.y80{bottom:879.813333pt;}
.ydc{bottom:880.133333pt;}
.yaa{bottom:881.733333pt;}
.y2e{bottom:883.813333pt;}
.y101{bottom:886.453333pt;}
.y123{bottom:895.813333pt;}
.y2d{bottom:899.520000pt;}
.y3{bottom:899.840000pt;}
.ydb{bottom:903.840000pt;}
.ya9{bottom:906.080000pt;}
.yfa{bottom:910.720000pt;}
.y7f{bottom:911.440000pt;}
.y2c{bottom:923.120000pt;}
.y7e{bottom:927.040000pt;}
.ya8{bottom:930.400000pt;}
.y122{bottom:935.040000pt;}
.yda{bottom:935.440000pt;}
.yd9{bottom:951.040000pt;}
.ya7{bottom:954.640000pt;}
.y2b{bottom:955.040000pt;}
.y7d{bottom:958.720000pt;}
.yd8{bottom:966.720000pt;}
.yf9{bottom:970.320000pt;}
.y7c{bottom:974.320000pt;}
.yd7{bottom:982.320000pt;}
.y7b{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hc{height:23.600000pt;}
.h1d{height:23.626667pt;}
.he{height:23.680000pt;}
.h15{height:23.706667pt;}
.h2{height:26.686562pt;}
.h6{height:31.806562pt;}
.h3{height:34.804688pt;}
.h17{height:37.032187pt;}
.h14{height:39.200000pt;}
.h12{height:39.280000pt;}
.h10{height:43.280000pt;}
.hd{height:45.246562pt;}
.h7{height:46.499062pt;}
.h5{height:48.726562pt;}
.h8{height:49.581562pt;}
.h13{height:53.309531pt;}
.h1c{height:54.880000pt;}
.hb{height:54.927899pt;}
.h18{height:54.960000pt;}
.ha{height:55.631875pt;}
.h1e{height:58.960000pt;}
.h9{height:60.961875pt;}
.hf{height:62.960000pt;}
.h19{height:63.128437pt;}
.h4{height:64.875937pt;}
.h16{height:66.625000pt;}
.h1a{height:116.593750pt;}
.h11{height:157.066667pt;}
.h1b{height:290.906667pt;}
.h1f{height:337.866667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:37.120000pt;}
.w1f{width:37.146667pt;}
.w20{width:46.560000pt;}
.w19{width:46.586667pt;}
.w25{width:51.920000pt;}
.w24{width:54.000000pt;}
.wb{width:56.000000pt;}
.w1a{width:56.080000pt;}
.w13{width:56.960000pt;}
.w14{width:65.440000pt;}
.w8{width:65.520000pt;}
.w27{width:70.266667pt;}
.w22{width:74.480000pt;}
.w1c{width:74.560000pt;}
.w16{width:74.880000pt;}
.w7{width:74.960000pt;}
.w2a{width:75.680000pt;}
.w26{width:79.840000pt;}
.w28{width:79.920000pt;}
.we{width:80.720000pt;}
.w17{width:82.880000pt;}
.w15{width:84.426667pt;}
.w29{width:87.680000pt;}
.w18{width:91.600000pt;}
.wf{width:92.640000pt;}
.w1e{width:93.840000pt;}
.w21{width:100.000000pt;}
.w23{width:110.186667pt;}
.w1d{width:110.826667pt;}
.wd{width:116.426667pt;}
.w9{width:122.186667pt;}
.w10{width:122.666667pt;}
.w6{width:125.066667pt;}
.w1b{width:128.400000pt;}
.w12{width:130.746667pt;}
.w11{width:131.680000pt;}
.wc{width:137.440000pt;}
.w4{width:160.106667pt;}
.w5{width:510.986667pt;}
.w3{width:671.733333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:3.520000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x22{left:63.359988pt;}
.x15{left:64.399988pt;}
.x20{left:69.439988pt;}
.x17{left:73.999988pt;}
.x12{left:75.999988pt;}
.x24{left:79.439988pt;}
.x2f{left:81.120000pt;}
.x4{left:84.479988pt;}
.x9{left:85.840000pt;}
.x37{left:97.680000pt;}
.x46{left:98.879988pt;}
.x5{left:108.479988pt;}
.x2{left:171.306655pt;}
.x18{left:193.546667pt;}
.x28{left:204.506667pt;}
.x30{left:206.826667pt;}
.x38{left:209.146667pt;}
.xb{left:211.546667pt;}
.x8{left:221.866667pt;}
.x3e{left:229.546667pt;}
.x45{left:230.826655pt;}
.x27{left:231.946655pt;}
.x6{left:255.946667pt;}
.x29{left:262.106667pt;}
.x19{left:274.906667pt;}
.x31{left:282.426667pt;}
.x3f{left:284.266667pt;}
.xc{left:287.146667pt;}
.x26{left:305.706655pt;}
.x2a{left:318.826667pt;}
.x40{left:336.826667pt;}
.x32{left:339.066667pt;}
.x39{left:341.466667pt;}
.xd{left:353.306667pt;}
.x1a{left:368.186667pt;}
.x13{left:381.226655pt;}
.x2b{left:384.906667pt;}
.x33{left:405.306667pt;}
.x41{left:417.386667pt;}
.x3a{left:435.946667pt;}
.x34{left:452.533333pt;}
.x2c{left:470.053333pt;}
.x3b{left:473.813333pt;}
.xe{left:476.213333pt;}
.x42{left:488.293333pt;}
.x1b{left:491.493333pt;}
.x35{left:509.253333pt;}
.xf{left:513.973333pt;}
.x3c{left:521.093333pt;}
.x1c{left:529.253333pt;}
.x2d{left:545.653333pt;}
.x43{left:568.853333pt;}
.x10{left:570.693333pt;}
.x1d{left:585.973333pt;}
.x3d{left:621.813333pt;}
.x2e{left:629.253333pt;}
.x36{left:638.293333pt;}
.x44{left:657.173333pt;}
.x23{left:662.053322pt;}
.x25{left:667.013322pt;}
.x16{left:695.013322pt;}
.x11{left:696.053322pt;}
.x1f{left:709.013322pt;}
.x3{left:711.413322pt;}
.x21{left:714.053322pt;}
.x14{left:718.053322pt;}
.x1e{left:721.013322pt;}
}




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