
    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_fe764f5a4485627905eb686e.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f4c7dcd7078eefd3e78e76d2.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_eabe88362994a993c6a575a8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.783691;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_eac7028027c107fd4ed83417.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4057afb38b044e9d0cfb476d.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_86e596669652ad37967da7d1.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_c2a26dfe9a218e9b320bdce5.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914551;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_e0c868ee9e96664b53314531.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f2c8ae2f53f41cbe6ff1cf0c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.773926;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:-69.120000px;}
.v0{vertical-align:0.000000px;}
.lsa{letter-spacing:-0.612000px;}
.ls19{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.269400px;}
.ls1a{letter-spacing:-0.223800px;}
.ls1b{letter-spacing:-0.181200px;}
.ls16{letter-spacing:-0.106800px;}
.ls8{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.008640px;}
.ls2{letter-spacing:0.033840px;}
.ls11{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.153360px;}
.ls1{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.181200px;}
.ls17{letter-spacing:0.206400px;}
.ls15{letter-spacing:0.206640px;}
.ls7{letter-spacing:0.216000px;}
.ls6{letter-spacing:0.259800px;}
.ls18{letter-spacing:0.269400px;}
.ls13{letter-spacing:0.306720px;}
.ls0{letter-spacing:0.360000px;}
.ls1d{letter-spacing:6.120000px;}
.ls12{letter-spacing:6.660000px;}
.ls14{letter-spacing:10.260000px;}
.ls3{letter-spacing:66.162720px;}
.lsb{letter-spacing:112.476000px;}
.lsf{letter-spacing:201.036000px;}
.lsd{letter-spacing:726.096000px;}
.lsc{letter-spacing:753.456000px;}
.lse{letter-spacing:977.376000px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws6{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.146400px;}
.ws7{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws8{word-spacing:-14.833200px;}
.ws0{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.860000px;}
.ws12{word-spacing:-13.500000px;}
.wsd{word-spacing:-12.420000px;}
.wsc{word-spacing:-12.329400px;}
.ws11{word-spacing:-12.241200px;}
.wsb{word-spacing:-12.060000px;}
.wsf{word-spacing:-11.878800px;}
.wse{word-spacing:-11.836200px;}
.ws10{word-spacing:-11.790600px;}
.ws5{word-spacing:0.000000px;}
._23{margin-left:-3.702480px;}
._22{margin-left:-2.588640px;}
._1{margin-left:-1.075680px;}
._0{width:1.314720px;}
._2{width:2.594400px;}
._f{width:4.104000px;}
._d{width:5.737680px;}
._4{width:6.840000px;}
._12{width:7.948080px;}
._13{width:9.319440px;}
._e{width:10.368000px;}
._10{width:11.455680px;}
._11{width:13.225200px;}
._c{width:15.066000px;}
._18{width:16.070400px;}
._9{width:17.275680px;}
._8{width:18.738000px;}
._b{width:20.898000px;}
._a{width:22.140000px;}
._1b{width:23.306400px;}
._15{width:25.218720px;}
._14{width:26.652960px;}
._19{width:28.206720px;}
._7{width:29.538000px;}
._6{width:30.618000px;}
._1a{width:31.705920px;}
._1e{width:33.704640px;}
._21{width:34.866720px;}
._25{width:36.793440px;}
._27{width:38.013120px;}
._1f{width:42.369840px;}
._20{width:43.445520px;}
._24{width:50.119920px;}
._28{width:54.180000px;}
._26{width:59.828160px;}
._5{width:155.700000px;}
._16{width:509.086560px;}
._1c{width:735.660000px;}
._17{width:865.686720px;}
._1d{width:1073.100000px;}
._3{width:1101.912000px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ybe{bottom:2.520000px;}
.y26{bottom:2.880000px;}
.yf{bottom:3.240000px;}
.ydd{bottom:3.780000px;}
.y15f{bottom:4.680000px;}
.y2e{bottom:9.000000px;}
.yc2{bottom:9.360000px;}
.y34{bottom:12.240000px;}
.ybd{bottom:16.380000px;}
.y25{bottom:18.360000px;}
.y14{bottom:20.520000px;}
.y33{bottom:29.520000px;}
.y24{bottom:33.840000px;}
.y13{bottom:37.800000px;}
.y32{bottom:46.800000px;}
.y23{bottom:49.500000px;}
.y12{bottom:55.080000px;}
.y31{bottom:63.900000px;}
.y22{bottom:64.980000px;}
.y2d{bottom:65.910000px;}
.ye1{bottom:72.210000px;}
.y21{bottom:80.460000px;}
.y11{bottom:81.225000px;}
.y5{bottom:88.200000px;}
.y30{bottom:90.180000px;}
.y165{bottom:95.220000px;}
.y20{bottom:95.940000px;}
.y2c{bottom:106.950000px;}
.y164{bottom:110.880000px;}
.y1f{bottom:111.600000px;}
.yda{bottom:122.580000px;}
.y2b{bottom:124.230000px;}
.y163{bottom:126.360000px;}
.y15d{bottom:126.390000px;}
.y1e{bottom:127.080000px;}
.ybb{bottom:128.160000px;}
.y80{bottom:128.880000px;}
.y143{bottom:137.736000px;}
.y48{bottom:139.716000px;}
.yd9{bottom:139.896000px;}
.y2a{bottom:141.510000px;}
.y162{bottom:141.840000px;}
.y15c{bottom:141.870000px;}
.y1d{bottom:142.560000px;}
.yba{bottom:145.476000px;}
.y7f{bottom:146.196000px;}
.yfa{bottom:146.736000px;}
.y142{bottom:151.590000px;}
.y47{bottom:156.990000px;}
.yd8{bottom:157.170000px;}
.y161{bottom:157.320000px;}
.y15b{bottom:157.350000px;}
.y1c{bottom:158.040000px;}
.y29{bottom:158.790000px;}
.yf9{bottom:160.410000px;}
.yb9{bottom:162.750000px;}
.y7e{bottom:163.470000px;}
.y141{bottom:165.450000px;}
.y1b{bottom:173.700000px;}
.y46{bottom:174.270000px;}
.yd7{bottom:174.450000px;}
.y28{bottom:175.890000px;}
.y140{bottom:179.130000px;}
.yb8{bottom:179.850000px;}
.y7d{bottom:180.750000px;}
.yf8{bottom:188.130000px;}
.y1a{bottom:189.180000px;}
.y45{bottom:191.550000px;}
.y13f{bottom:192.990000px;}
.yb7{bottom:197.130000px;}
.y7c{bottom:197.850000px;}
.yf7{bottom:201.810000px;}
.y27{bottom:202.170000px;}
.y19{bottom:204.660000px;}
.y13e{bottom:206.850000px;}
.y44{bottom:208.650000px;}
.yd6{bottom:208.830000px;}
.yb6{bottom:214.410000px;}
.y7b{bottom:215.130000px;}
.yf6{bottom:215.670000px;}
.y18{bottom:220.185000px;}
.y13d{bottom:220.530000px;}
.y43{bottom:225.930000px;}
.yd5{bottom:226.110000px;}
.yf5{bottom:229.530000px;}
.yb5{bottom:231.690000px;}
.y7a{bottom:232.410000px;}
.y13c{bottom:234.390000px;}
.y42{bottom:243.210000px;}
.yd4{bottom:243.390000px;}
.y13b{bottom:248.250000px;}
.yb4{bottom:248.970000px;}
.y79{bottom:249.690000px;}
.yf4{bottom:257.070000px;}
.y41{bottom:260.490000px;}
.yd3{bottom:260.670000px;}
.y13a{bottom:261.930000px;}
.yb3{bottom:266.250000px;}
.y78{bottom:266.970000px;}
.yf3{bottom:270.930000px;}
.y139{bottom:275.790000px;}
.y40{bottom:277.770000px;}
.yb2{bottom:283.350000px;}
.y77{bottom:284.250000px;}
.yf2{bottom:284.610000px;}
.y138{bottom:289.650000px;}
.y3f{bottom:295.050000px;}
.yf1{bottom:299.190000px;}
.yb1{bottom:300.630000px;}
.y76{bottom:301.350000px;}
.y137{bottom:303.330000px;}
.y16{bottom:307.155000px;}
.y3e{bottom:312.150000px;}
.yd2{bottom:312.330000px;}
.yf0{bottom:316.470000px;}
.y136{bottom:317.190000px;}
.yb0{bottom:317.910000px;}
.y75{bottom:318.630000px;}
.y3d{bottom:329.430000px;}
.yd1{bottom:329.610000px;}
.y135{bottom:331.050000px;}
.yef{bottom:333.750000px;}
.yaf{bottom:335.190000px;}
.y74{bottom:335.910000px;}
.y134{bottom:344.730000px;}
.y3c{bottom:346.710000px;}
.yd0{bottom:346.890000px;}
.yee{bottom:350.850000px;}
.yae{bottom:352.470000px;}
.y73{bottom:353.190000px;}
.y133{bottom:358.590000px;}
.y3b{bottom:363.990000px;}
.ycf{bottom:364.170000px;}
.yed{bottom:368.130000px;}
.yad{bottom:369.750000px;}
.y72{bottom:370.470000px;}
.y132{bottom:372.450000px;}
.y3a{bottom:381.270000px;}
.yec{bottom:385.410000px;}
.y131{bottom:386.130000px;}
.yac{bottom:386.850000px;}
.y71{bottom:387.795000px;}
.y39{bottom:398.415000px;}
.yce{bottom:398.595000px;}
.y130{bottom:400.035000px;}
.yeb{bottom:402.735000px;}
.yab{bottom:404.175000px;}
.y70{bottom:404.895000px;}
.y166{bottom:411.375000px;}
.y12f{bottom:413.895000px;}
.y38{bottom:415.695000px;}
.ycd{bottom:415.875000px;}
.yea{bottom:420.015000px;}
.yaa{bottom:421.455000px;}
.y6f{bottom:422.175000px;}
.y160{bottom:425.415000px;}
.y12e{bottom:427.575000px;}
.y37{bottom:432.975000px;}
.ye9{bottom:437.295000px;}
.ya9{bottom:438.735000px;}
.y6e{bottom:439.455000px;}
.y12d{bottom:441.435000px;}
.y36{bottom:449.895000px;}
.ycc{bottom:450.435000px;}
.ye8{bottom:454.395000px;}
.y12c{bottom:455.295000px;}
.ya8{bottom:456.015000px;}
.y6d{bottom:456.735000px;}
.ycb{bottom:464.475000px;}
.y35{bottom:465.375000px;}
.y12b{bottom:468.975000px;}
.ye7{bottom:471.675000px;}
.ya7{bottom:473.115000px;}
.y6c{bottom:474.015000px;}
.y2f{bottom:480.315000px;}
.y12a{bottom:482.835000px;}
.ye6{bottom:488.955000px;}
.ya6{bottom:490.395000px;}
.y6b{bottom:491.115000px;}
.y129{bottom:496.695000px;}
.ye5{bottom:506.235000px;}
.ya5{bottom:507.675000px;}
.y6a{bottom:508.395000px;}
.y128{bottom:510.375000px;}
.ye4{bottom:523.515000px;}
.y127{bottom:524.235000px;}
.ya4{bottom:524.955000px;}
.y69{bottom:525.675000px;}
.y126{bottom:538.095000px;}
.ye3{bottom:540.615000px;}
.ya3{bottom:542.235000px;}
.y68{bottom:542.955000px;}
.y125{bottom:551.775000px;}
.ye2{bottom:557.895000px;}
.ya2{bottom:559.515000px;}
.y67{bottom:560.235000px;}
.y124{bottom:565.635000px;}
.ye0{bottom:571.935000px;}
.ya1{bottom:576.615000px;}
.y66{bottom:577.515000px;}
.y123{bottom:579.495000px;}
.y122{bottom:593.175000px;}
.ya0{bottom:593.895000px;}
.y15{bottom:594.255000px;}
.y65{bottom:594.615000px;}
.y15e{bottom:596.415000px;}
.y121{bottom:607.035000px;}
.y9f{bottom:611.175000px;}
.y64{bottom:611.895000px;}
.y15a{bottom:613.695000px;}
.y120{bottom:620.895000px;}
.y9e{bottom:628.455000px;}
.y63{bottom:629.175000px;}
.y11f{bottom:634.575000px;}
.y9d{bottom:645.765000px;}
.y62{bottom:646.485000px;}
.y11e{bottom:648.465000px;}
.ydf{bottom:661.425000px;}
.y11d{bottom:662.325000px;}
.y9c{bottom:663.045000px;}
.y61{bottom:663.765000px;}
.y11c{bottom:676.005000px;}
.yde{bottom:676.185000px;}
.y9b{bottom:680.145000px;}
.y60{bottom:681.045000px;}
.y17{bottom:682.665000px;}
.y11b{bottom:689.865000px;}
.ydc{bottom:693.465000px;}
.y9a{bottom:697.425000px;}
.y5f{bottom:698.145000px;}
.y11a{bottom:703.725000px;}
.ydb{bottom:711.465000px;}
.y99{bottom:714.705000px;}
.y5e{bottom:715.425000px;}
.y119{bottom:717.405000px;}
.y118{bottom:731.265000px;}
.y98{bottom:731.985000px;}
.y5d{bottom:732.705000px;}
.y117{bottom:745.125000px;}
.yca{bottom:748.905000px;}
.y97{bottom:749.265000px;}
.y5c{bottom:749.985000px;}
.y116{bottom:758.805000px;}
.yc9{bottom:766.185000px;}
.y96{bottom:766.545000px;}
.y5b{bottom:767.265000px;}
.y115{bottom:772.665000px;}
.yc8{bottom:780.945000px;}
.y95{bottom:783.645000px;}
.y5a{bottom:784.545000px;}
.y114{bottom:786.525000px;}
.y159{bottom:787.965000px;}
.yc7{bottom:794.805000px;}
.y113{bottom:800.205000px;}
.y94{bottom:800.925000px;}
.y59{bottom:801.645000px;}
.y158{bottom:805.245000px;}
.yc6{bottom:808.485000px;}
.y112{bottom:814.065000px;}
.y93{bottom:818.205000px;}
.y58{bottom:818.925000px;}
.y10{bottom:820.185000px;}
.y157{bottom:822.345000px;}
.yc5{bottom:823.065000px;}
.y111{bottom:827.745000px;}
.y92{bottom:835.485000px;}
.y57{bottom:836.205000px;}
.y156{bottom:839.625000px;}
.y110{bottom:841.605000px;}
.y91{bottom:852.765000px;}
.y56{bottom:853.485000px;}
.y10f{bottom:855.465000px;}
.y155{bottom:856.185000px;}
.y10e{bottom:869.145000px;}
.y90{bottom:869.865000px;}
.y154{bottom:870.045000px;}
.y55{bottom:870.765000px;}
.yc4{bottom:871.845000px;}
.y10d{bottom:883.005000px;}
.y153{bottom:883.725000px;}
.y8f{bottom:887.145000px;}
.y54{bottom:887.865000px;}
.yc3{bottom:889.125000px;}
.y10c{bottom:896.910000px;}
.y152{bottom:897.630000px;}
.yc1{bottom:903.930000px;}
.y8e{bottom:904.470000px;}
.y53{bottom:905.190000px;}
.y10b{bottom:910.590000px;}
.y151{bottom:911.490000px;}
.y8d{bottom:921.750000px;}
.y52{bottom:922.470000px;}
.y10a{bottom:924.450000px;}
.ye{bottom:925.170000px;}
.yc0{bottom:931.470000px;}
.y109{bottom:938.310000px;}
.y8c{bottom:939.030000px;}
.y51{bottom:939.750000px;}
.ybf{bottom:945.330000px;}
.y108{bottom:951.990000px;}
.y150{bottom:952.890000px;}
.y8b{bottom:956.310000px;}
.yd{bottom:957.030000px;}
.ybc{bottom:959.910000px;}
.y107{bottom:965.850000px;}
.y14f{bottom:966.570000px;}
.y8a{bottom:973.410000px;}
.yc{bottom:974.310000px;}
.y106{bottom:979.710000px;}
.y14e{bottom:980.430000px;}
.yb{bottom:990.690000px;}
.y50{bottom:991.410000px;}
.y105{bottom:993.390000px;}
.y14d{bottom:994.290000px;}
.ya{bottom:1005.270000px;}
.y104{bottom:1007.250000px;}
.y89{bottom:1007.970000px;}
.y4f{bottom:1008.690000px;}
.y103{bottom:1021.110000px;}
.y14c{bottom:1021.830000px;}
.y9{bottom:1022.550000px;}
.y88{bottom:1025.250000px;}
.y4e{bottom:1025.970000px;}
.y102{bottom:1034.790000px;}
.y14b{bottom:1035.690000px;}
.y8{bottom:1039.830000px;}
.y87{bottom:1042.530000px;}
.y4d{bottom:1043.250000px;}
.y101{bottom:1048.650000px;}
.y14a{bottom:1049.370000px;}
.y7{bottom:1059.090000px;}
.y86{bottom:1059.810000px;}
.y4c{bottom:1060.530000px;}
.y100{bottom:1062.510000px;}
.y149{bottom:1063.230000px;}
.yff{bottom:1076.190000px;}
.y85{bottom:1076.910000px;}
.y148{bottom:1077.090000px;}
.y4b{bottom:1077.810000px;}
.y6{bottom:1086.630000px;}
.yfe{bottom:1090.050000px;}
.y147{bottom:1090.770000px;}
.y84{bottom:1094.190000px;}
.y4a{bottom:1094.910000px;}
.yfd{bottom:1103.910000px;}
.y146{bottom:1104.630000px;}
.y83{bottom:1111.470000px;}
.y4{bottom:1112.190000px;}
.yfc{bottom:1117.590000px;}
.y145{bottom:1118.490000px;}
.y82{bottom:1128.750000px;}
.y3{bottom:1129.470000px;}
.yfb{bottom:1131.450000px;}
.y144{bottom:1132.170000px;}
.y2{bottom:1146.780000px;}
.y49{bottom:1160.640000px;}
.y81{bottom:1161.000000px;}
.y1{bottom:1164.060000px;}
.h17{height:13.680000px;}
.h16{height:13.860000px;}
.h14{height:17.100000px;}
.h12{height:17.280000px;}
.h7{height:26.280000px;}
.h15{height:27.540000px;}
.h13{height:41.756133px;}
.h6{height:47.344922px;}
.hf{height:52.971680px;}
.hc{height:52.998047px;}
.h1a{height:54.421875px;}
.h4{height:58.621992px;}
.h3{height:58.651172px;}
.h2{height:60.226875px;}
.h11{height:62.211094px;}
.h8{height:70.664062px;}
.h18{height:86.256000px;}
.he{height:87.516000px;}
.h5{height:96.508125px;}
.h9{height:104.256000px;}
.h10{height:113.220000px;}
.h1b{height:171.000000px;}
.h19{height:171.030000px;}
.hd{height:225.210000px;}
.hb{height:241.770000px;}
.ha{height:330.195000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:21.060000px;}
.w7{width:29.880000px;}
.w8{width:30.060000px;}
.w15{width:35.100000px;}
.w10{width:35.280000px;}
.w14{width:35.316000px;}
.w11{width:35.640000px;}
.w16{width:36.036000px;}
.w12{width:36.180000px;}
.w17{width:36.360000px;}
.w18{width:36.540000px;}
.w13{width:36.720000px;}
.we{width:50.040000px;}
.wa{width:58.320000px;}
.wd{width:58.356000px;}
.wb{width:89.676000px;}
.wc{width:93.960000px;}
.w1c{width:148.860000px;}
.wf{width:158.070000px;}
.w1b{width:198.570000px;}
.w3{width:209.010000px;}
.w19{width:214.770000px;}
.w1a{width:244.290000px;}
.w9{width:278.895000px;}
.w5{width:433.335000px;}
.w1d{width:526.425000px;}
.w6{width:663.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.xa{left:10.620000px;}
.x1a{left:13.500000px;}
.x18{left:15.480000px;}
.x17{left:20.340000px;}
.x16{left:21.780000px;}
.x19{left:27.900000px;}
.x1b{left:31.320000px;}
.xc{left:106.740000px;}
.x13{left:118.845000px;}
.x7{left:125.496000px;}
.x1{left:127.655987px;}
.x2f{left:138.594000px;}
.x2{left:143.495987px;}
.x10{left:150.329987px;}
.xf{left:154.649987px;}
.x2e{left:159.689987px;}
.xe{left:180.749987px;}
.x3{left:210.629987px;}
.x12{left:243.750000px;}
.x30{left:268.410000px;}
.x6{left:277.634987px;}
.x1f{left:286.095000px;}
.x20{left:321.375000px;}
.x9{left:334.515000px;}
.x5{left:343.334987px;}
.xb{left:355.575000px;}
.x21{left:357.015000px;}
.x22{left:393.195000px;}
.xd{left:425.235000px;}
.x23{left:429.915000px;}
.x1c{left:450.075000px;}
.x4{left:457.274987px;}
.x24{left:466.095000px;}
.x25{left:501.405000px;}
.x1d{left:508.425000px;}
.x14{left:522.645000px;}
.x26{left:536.685000px;}
.x27{left:571.965000px;}
.x15{left:580.965000px;}
.x2d{left:587.445000px;}
.x28{left:607.065000px;}
.x29{left:642.345000px;}
.x1e{left:648.464987px;}
.x2a{left:678.390000px;}
.x2b{left:714.750000px;}
.x2c{left:749.850000px;}
.x11{left:756.870000px;}
@media print{
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.lsa{letter-spacing:-0.544000pt;}
.ls19{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.239467pt;}
.ls1a{letter-spacing:-0.198933pt;}
.ls1b{letter-spacing:-0.161067pt;}
.ls16{letter-spacing:-0.094933pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.007680pt;}
.ls2{letter-spacing:0.030080pt;}
.ls11{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.136320pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.161067pt;}
.ls17{letter-spacing:0.183467pt;}
.ls15{letter-spacing:0.183680pt;}
.ls7{letter-spacing:0.192000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls18{letter-spacing:0.239467pt;}
.ls13{letter-spacing:0.272640pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1d{letter-spacing:5.440000pt;}
.ls12{letter-spacing:5.920000pt;}
.ls14{letter-spacing:9.120000pt;}
.ls3{letter-spacing:58.811307pt;}
.lsb{letter-spacing:99.978667pt;}
.lsf{letter-spacing:178.698667pt;}
.lsd{letter-spacing:645.418667pt;}
.lsc{letter-spacing:669.738667pt;}
.lse{letter-spacing:868.778667pt;}
.wsa{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.463467pt;}
.ws7{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws8{word-spacing:-13.185067pt;}
.ws0{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws12{word-spacing:-12.000000pt;}
.wsd{word-spacing:-11.040000pt;}
.wsc{word-spacing:-10.959467pt;}
.ws11{word-spacing:-10.881067pt;}
.wsb{word-spacing:-10.720000pt;}
.wsf{word-spacing:-10.558933pt;}
.wse{word-spacing:-10.521067pt;}
.ws10{word-spacing:-10.480533pt;}
.ws5{word-spacing:0.000000pt;}
._23{margin-left:-3.291093pt;}
._22{margin-left:-2.301013pt;}
._1{margin-left:-0.956160pt;}
._0{width:1.168640pt;}
._2{width:2.306133pt;}
._f{width:3.648000pt;}
._d{width:5.100160pt;}
._4{width:6.080000pt;}
._12{width:7.064960pt;}
._13{width:8.283947pt;}
._e{width:9.216000pt;}
._10{width:10.182827pt;}
._11{width:11.755733pt;}
._c{width:13.392000pt;}
._18{width:14.284800pt;}
._9{width:15.356160pt;}
._8{width:16.656000pt;}
._b{width:18.576000pt;}
._a{width:19.680000pt;}
._1b{width:20.716800pt;}
._15{width:22.416640pt;}
._14{width:23.691520pt;}
._19{width:25.072640pt;}
._7{width:26.256000pt;}
._6{width:27.216000pt;}
._1a{width:28.183040pt;}
._1e{width:29.959680pt;}
._21{width:30.992640pt;}
._25{width:32.705280pt;}
._27{width:33.789440pt;}
._1f{width:37.662080pt;}
._20{width:38.618240pt;}
._24{width:44.551040pt;}
._28{width:48.160000pt;}
._26{width:53.180587pt;}
._5{width:138.400000pt;}
._16{width:452.521387pt;}
._1c{width:653.920000pt;}
._17{width:769.499307pt;}
._1d{width:953.866667pt;}
._3{width:979.477333pt;}
.fs2{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ybe{bottom:2.240000pt;}
.y26{bottom:2.560000pt;}
.yf{bottom:2.880000pt;}
.ydd{bottom:3.360000pt;}
.y15f{bottom:4.160000pt;}
.y2e{bottom:8.000000pt;}
.yc2{bottom:8.320000pt;}
.y34{bottom:10.880000pt;}
.ybd{bottom:14.560000pt;}
.y25{bottom:16.320000pt;}
.y14{bottom:18.240000pt;}
.y33{bottom:26.240000pt;}
.y24{bottom:30.080000pt;}
.y13{bottom:33.600000pt;}
.y32{bottom:41.600000pt;}
.y23{bottom:44.000000pt;}
.y12{bottom:48.960000pt;}
.y31{bottom:56.800000pt;}
.y22{bottom:57.760000pt;}
.y2d{bottom:58.586667pt;}
.ye1{bottom:64.186667pt;}
.y21{bottom:71.520000pt;}
.y11{bottom:72.200000pt;}
.y5{bottom:78.400000pt;}
.y30{bottom:80.160000pt;}
.y165{bottom:84.640000pt;}
.y20{bottom:85.280000pt;}
.y2c{bottom:95.066667pt;}
.y164{bottom:98.560000pt;}
.y1f{bottom:99.200000pt;}
.yda{bottom:108.960000pt;}
.y2b{bottom:110.426667pt;}
.y163{bottom:112.320000pt;}
.y15d{bottom:112.346667pt;}
.y1e{bottom:112.960000pt;}
.ybb{bottom:113.920000pt;}
.y80{bottom:114.560000pt;}
.y143{bottom:122.432000pt;}
.y48{bottom:124.192000pt;}
.yd9{bottom:124.352000pt;}
.y2a{bottom:125.786667pt;}
.y162{bottom:126.080000pt;}
.y15c{bottom:126.106667pt;}
.y1d{bottom:126.720000pt;}
.yba{bottom:129.312000pt;}
.y7f{bottom:129.952000pt;}
.yfa{bottom:130.432000pt;}
.y142{bottom:134.746667pt;}
.y47{bottom:139.546667pt;}
.yd8{bottom:139.706667pt;}
.y161{bottom:139.840000pt;}
.y15b{bottom:139.866667pt;}
.y1c{bottom:140.480000pt;}
.y29{bottom:141.146667pt;}
.yf9{bottom:142.586667pt;}
.yb9{bottom:144.666667pt;}
.y7e{bottom:145.306667pt;}
.y141{bottom:147.066667pt;}
.y1b{bottom:154.400000pt;}
.y46{bottom:154.906667pt;}
.yd7{bottom:155.066667pt;}
.y28{bottom:156.346667pt;}
.y140{bottom:159.226667pt;}
.yb8{bottom:159.866667pt;}
.y7d{bottom:160.666667pt;}
.yf8{bottom:167.226667pt;}
.y1a{bottom:168.160000pt;}
.y45{bottom:170.266667pt;}
.y13f{bottom:171.546667pt;}
.yb7{bottom:175.226667pt;}
.y7c{bottom:175.866667pt;}
.yf7{bottom:179.386667pt;}
.y27{bottom:179.706667pt;}
.y19{bottom:181.920000pt;}
.y13e{bottom:183.866667pt;}
.y44{bottom:185.466667pt;}
.yd6{bottom:185.626667pt;}
.yb6{bottom:190.586667pt;}
.y7b{bottom:191.226667pt;}
.yf6{bottom:191.706667pt;}
.y18{bottom:195.720000pt;}
.y13d{bottom:196.026667pt;}
.y43{bottom:200.826667pt;}
.yd5{bottom:200.986667pt;}
.yf5{bottom:204.026667pt;}
.yb5{bottom:205.946667pt;}
.y7a{bottom:206.586667pt;}
.y13c{bottom:208.346667pt;}
.y42{bottom:216.186667pt;}
.yd4{bottom:216.346667pt;}
.y13b{bottom:220.666667pt;}
.yb4{bottom:221.306667pt;}
.y79{bottom:221.946667pt;}
.yf4{bottom:228.506667pt;}
.y41{bottom:231.546667pt;}
.yd3{bottom:231.706667pt;}
.y13a{bottom:232.826667pt;}
.yb3{bottom:236.666667pt;}
.y78{bottom:237.306667pt;}
.yf3{bottom:240.826667pt;}
.y139{bottom:245.146667pt;}
.y40{bottom:246.906667pt;}
.yb2{bottom:251.866667pt;}
.y77{bottom:252.666667pt;}
.yf2{bottom:252.986667pt;}
.y138{bottom:257.466667pt;}
.y3f{bottom:262.266667pt;}
.yf1{bottom:265.946667pt;}
.yb1{bottom:267.226667pt;}
.y76{bottom:267.866667pt;}
.y137{bottom:269.626667pt;}
.y16{bottom:273.026667pt;}
.y3e{bottom:277.466667pt;}
.yd2{bottom:277.626667pt;}
.yf0{bottom:281.306667pt;}
.y136{bottom:281.946667pt;}
.yb0{bottom:282.586667pt;}
.y75{bottom:283.226667pt;}
.y3d{bottom:292.826667pt;}
.yd1{bottom:292.986667pt;}
.y135{bottom:294.266667pt;}
.yef{bottom:296.666667pt;}
.yaf{bottom:297.946667pt;}
.y74{bottom:298.586667pt;}
.y134{bottom:306.426667pt;}
.y3c{bottom:308.186667pt;}
.yd0{bottom:308.346667pt;}
.yee{bottom:311.866667pt;}
.yae{bottom:313.306667pt;}
.y73{bottom:313.946667pt;}
.y133{bottom:318.746667pt;}
.y3b{bottom:323.546667pt;}
.ycf{bottom:323.706667pt;}
.yed{bottom:327.226667pt;}
.yad{bottom:328.666667pt;}
.y72{bottom:329.306667pt;}
.y132{bottom:331.066667pt;}
.y3a{bottom:338.906667pt;}
.yec{bottom:342.586667pt;}
.y131{bottom:343.226667pt;}
.yac{bottom:343.866667pt;}
.y71{bottom:344.706667pt;}
.y39{bottom:354.146667pt;}
.yce{bottom:354.306667pt;}
.y130{bottom:355.586667pt;}
.yeb{bottom:357.986667pt;}
.yab{bottom:359.266667pt;}
.y70{bottom:359.906667pt;}
.y166{bottom:365.666667pt;}
.y12f{bottom:367.906667pt;}
.y38{bottom:369.506667pt;}
.ycd{bottom:369.666667pt;}
.yea{bottom:373.346667pt;}
.yaa{bottom:374.626667pt;}
.y6f{bottom:375.266667pt;}
.y160{bottom:378.146667pt;}
.y12e{bottom:380.066667pt;}
.y37{bottom:384.866667pt;}
.ye9{bottom:388.706667pt;}
.ya9{bottom:389.986667pt;}
.y6e{bottom:390.626667pt;}
.y12d{bottom:392.386667pt;}
.y36{bottom:399.906667pt;}
.ycc{bottom:400.386667pt;}
.ye8{bottom:403.906667pt;}
.y12c{bottom:404.706667pt;}
.ya8{bottom:405.346667pt;}
.y6d{bottom:405.986667pt;}
.ycb{bottom:412.866667pt;}
.y35{bottom:413.666667pt;}
.y12b{bottom:416.866667pt;}
.ye7{bottom:419.266667pt;}
.ya7{bottom:420.546667pt;}
.y6c{bottom:421.346667pt;}
.y2f{bottom:426.946667pt;}
.y12a{bottom:429.186667pt;}
.ye6{bottom:434.626667pt;}
.ya6{bottom:435.906667pt;}
.y6b{bottom:436.546667pt;}
.y129{bottom:441.506667pt;}
.ye5{bottom:449.986667pt;}
.ya5{bottom:451.266667pt;}
.y6a{bottom:451.906667pt;}
.y128{bottom:453.666667pt;}
.ye4{bottom:465.346667pt;}
.y127{bottom:465.986667pt;}
.ya4{bottom:466.626667pt;}
.y69{bottom:467.266667pt;}
.y126{bottom:478.306667pt;}
.ye3{bottom:480.546667pt;}
.ya3{bottom:481.986667pt;}
.y68{bottom:482.626667pt;}
.y125{bottom:490.466667pt;}
.ye2{bottom:495.906667pt;}
.ya2{bottom:497.346667pt;}
.y67{bottom:497.986667pt;}
.y124{bottom:502.786667pt;}
.ye0{bottom:508.386667pt;}
.ya1{bottom:512.546667pt;}
.y66{bottom:513.346667pt;}
.y123{bottom:515.106667pt;}
.y122{bottom:527.266667pt;}
.ya0{bottom:527.906667pt;}
.y15{bottom:528.226667pt;}
.y65{bottom:528.546667pt;}
.y15e{bottom:530.146667pt;}
.y121{bottom:539.586667pt;}
.y9f{bottom:543.266667pt;}
.y64{bottom:543.906667pt;}
.y15a{bottom:545.506667pt;}
.y120{bottom:551.906667pt;}
.y9e{bottom:558.626667pt;}
.y63{bottom:559.266667pt;}
.y11f{bottom:564.066667pt;}
.y9d{bottom:574.013333pt;}
.y62{bottom:574.653333pt;}
.y11e{bottom:576.413333pt;}
.ydf{bottom:587.933333pt;}
.y11d{bottom:588.733333pt;}
.y9c{bottom:589.373333pt;}
.y61{bottom:590.013333pt;}
.y11c{bottom:600.893333pt;}
.yde{bottom:601.053333pt;}
.y9b{bottom:604.573333pt;}
.y60{bottom:605.373333pt;}
.y17{bottom:606.813333pt;}
.y11b{bottom:613.213333pt;}
.ydc{bottom:616.413333pt;}
.y9a{bottom:619.933333pt;}
.y5f{bottom:620.573333pt;}
.y11a{bottom:625.533333pt;}
.ydb{bottom:632.413333pt;}
.y99{bottom:635.293333pt;}
.y5e{bottom:635.933333pt;}
.y119{bottom:637.693333pt;}
.y118{bottom:650.013333pt;}
.y98{bottom:650.653333pt;}
.y5d{bottom:651.293333pt;}
.y117{bottom:662.333333pt;}
.yca{bottom:665.693333pt;}
.y97{bottom:666.013333pt;}
.y5c{bottom:666.653333pt;}
.y116{bottom:674.493333pt;}
.yc9{bottom:681.053333pt;}
.y96{bottom:681.373333pt;}
.y5b{bottom:682.013333pt;}
.y115{bottom:686.813333pt;}
.yc8{bottom:694.173333pt;}
.y95{bottom:696.573333pt;}
.y5a{bottom:697.373333pt;}
.y114{bottom:699.133333pt;}
.y159{bottom:700.413333pt;}
.yc7{bottom:706.493333pt;}
.y113{bottom:711.293333pt;}
.y94{bottom:711.933333pt;}
.y59{bottom:712.573333pt;}
.y158{bottom:715.773333pt;}
.yc6{bottom:718.653333pt;}
.y112{bottom:723.613333pt;}
.y93{bottom:727.293333pt;}
.y58{bottom:727.933333pt;}
.y10{bottom:729.053333pt;}
.y157{bottom:730.973333pt;}
.yc5{bottom:731.613333pt;}
.y111{bottom:735.773333pt;}
.y92{bottom:742.653333pt;}
.y57{bottom:743.293333pt;}
.y156{bottom:746.333333pt;}
.y110{bottom:748.093333pt;}
.y91{bottom:758.013333pt;}
.y56{bottom:758.653333pt;}
.y10f{bottom:760.413333pt;}
.y155{bottom:761.053333pt;}
.y10e{bottom:772.573333pt;}
.y90{bottom:773.213333pt;}
.y154{bottom:773.373333pt;}
.y55{bottom:774.013333pt;}
.yc4{bottom:774.973333pt;}
.y10d{bottom:784.893333pt;}
.y153{bottom:785.533333pt;}
.y8f{bottom:788.573333pt;}
.y54{bottom:789.213333pt;}
.yc3{bottom:790.333333pt;}
.y10c{bottom:797.253333pt;}
.y152{bottom:797.893333pt;}
.yc1{bottom:803.493333pt;}
.y8e{bottom:803.973333pt;}
.y53{bottom:804.613333pt;}
.y10b{bottom:809.413333pt;}
.y151{bottom:810.213333pt;}
.y8d{bottom:819.333333pt;}
.y52{bottom:819.973333pt;}
.y10a{bottom:821.733333pt;}
.ye{bottom:822.373333pt;}
.yc0{bottom:827.973333pt;}
.y109{bottom:834.053333pt;}
.y8c{bottom:834.693333pt;}
.y51{bottom:835.333333pt;}
.ybf{bottom:840.293333pt;}
.y108{bottom:846.213333pt;}
.y150{bottom:847.013333pt;}
.y8b{bottom:850.053333pt;}
.yd{bottom:850.693333pt;}
.ybc{bottom:853.253333pt;}
.y107{bottom:858.533333pt;}
.y14f{bottom:859.173333pt;}
.y8a{bottom:865.253333pt;}
.yc{bottom:866.053333pt;}
.y106{bottom:870.853333pt;}
.y14e{bottom:871.493333pt;}
.yb{bottom:880.613333pt;}
.y50{bottom:881.253333pt;}
.y105{bottom:883.013333pt;}
.y14d{bottom:883.813333pt;}
.ya{bottom:893.573333pt;}
.y104{bottom:895.333333pt;}
.y89{bottom:895.973333pt;}
.y4f{bottom:896.613333pt;}
.y103{bottom:907.653333pt;}
.y14c{bottom:908.293333pt;}
.y9{bottom:908.933333pt;}
.y88{bottom:911.333333pt;}
.y4e{bottom:911.973333pt;}
.y102{bottom:919.813333pt;}
.y14b{bottom:920.613333pt;}
.y8{bottom:924.293333pt;}
.y87{bottom:926.693333pt;}
.y4d{bottom:927.333333pt;}
.y101{bottom:932.133333pt;}
.y14a{bottom:932.773333pt;}
.y7{bottom:941.413333pt;}
.y86{bottom:942.053333pt;}
.y4c{bottom:942.693333pt;}
.y100{bottom:944.453333pt;}
.y149{bottom:945.093333pt;}
.yff{bottom:956.613333pt;}
.y85{bottom:957.253333pt;}
.y148{bottom:957.413333pt;}
.y4b{bottom:958.053333pt;}
.y6{bottom:965.893333pt;}
.yfe{bottom:968.933333pt;}
.y147{bottom:969.573333pt;}
.y84{bottom:972.613333pt;}
.y4a{bottom:973.253333pt;}
.yfd{bottom:981.253333pt;}
.y146{bottom:981.893333pt;}
.y83{bottom:987.973333pt;}
.y4{bottom:988.613333pt;}
.yfc{bottom:993.413333pt;}
.y145{bottom:994.213333pt;}
.y82{bottom:1003.333333pt;}
.y3{bottom:1003.973333pt;}
.yfb{bottom:1005.733333pt;}
.y144{bottom:1006.373333pt;}
.y2{bottom:1019.360000pt;}
.y49{bottom:1031.680000pt;}
.y81{bottom:1032.000000pt;}
.y1{bottom:1034.720000pt;}
.h17{height:12.160000pt;}
.h16{height:12.320000pt;}
.h14{height:15.200000pt;}
.h12{height:15.360000pt;}
.h7{height:23.360000pt;}
.h15{height:24.480000pt;}
.h13{height:37.116563pt;}
.h6{height:42.084375pt;}
.hf{height:47.085938pt;}
.hc{height:47.109375pt;}
.h1a{height:48.375000pt;}
.h4{height:52.108438pt;}
.h3{height:52.134375pt;}
.h2{height:53.535000pt;}
.h11{height:55.298750pt;}
.h8{height:62.812500pt;}
.h18{height:76.672000pt;}
.he{height:77.792000pt;}
.h5{height:85.785000pt;}
.h9{height:92.672000pt;}
.h10{height:100.640000pt;}
.h1b{height:152.000000pt;}
.h19{height:152.026667pt;}
.hd{height:200.186667pt;}
.hb{height:214.906667pt;}
.ha{height:293.506667pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:18.720000pt;}
.w7{width:26.560000pt;}
.w8{width:26.720000pt;}
.w15{width:31.200000pt;}
.w10{width:31.360000pt;}
.w14{width:31.392000pt;}
.w11{width:31.680000pt;}
.w16{width:32.032000pt;}
.w12{width:32.160000pt;}
.w17{width:32.320000pt;}
.w18{width:32.480000pt;}
.w13{width:32.640000pt;}
.we{width:44.480000pt;}
.wa{width:51.840000pt;}
.wd{width:51.872000pt;}
.wb{width:79.712000pt;}
.wc{width:83.520000pt;}
.w1c{width:132.320000pt;}
.wf{width:140.506667pt;}
.w1b{width:176.506667pt;}
.w3{width:185.786667pt;}
.w19{width:190.906667pt;}
.w1a{width:217.146667pt;}
.w9{width:247.906667pt;}
.w5{width:385.186667pt;}
.w1d{width:467.933333pt;}
.w6{width:589.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.xa{left:9.440000pt;}
.x1a{left:12.000000pt;}
.x18{left:13.760000pt;}
.x17{left:18.080000pt;}
.x16{left:19.360000pt;}
.x19{left:24.800000pt;}
.x1b{left:27.840000pt;}
.xc{left:94.880000pt;}
.x13{left:105.640000pt;}
.x7{left:111.552000pt;}
.x1{left:113.471988pt;}
.x2f{left:123.194667pt;}
.x2{left:127.551988pt;}
.x10{left:133.626655pt;}
.xf{left:137.466655pt;}
.x2e{left:141.946655pt;}
.xe{left:160.666655pt;}
.x3{left:187.226655pt;}
.x12{left:216.666667pt;}
.x30{left:238.586667pt;}
.x6{left:246.786655pt;}
.x1f{left:254.306667pt;}
.x20{left:285.666667pt;}
.x9{left:297.346667pt;}
.x5{left:305.186655pt;}
.xb{left:316.066667pt;}
.x21{left:317.346667pt;}
.x22{left:349.506667pt;}
.xd{left:377.986667pt;}
.x23{left:382.146667pt;}
.x1c{left:400.066667pt;}
.x4{left:406.466655pt;}
.x24{left:414.306667pt;}
.x25{left:445.693333pt;}
.x1d{left:451.933333pt;}
.x14{left:464.573333pt;}
.x26{left:477.053333pt;}
.x27{left:508.413333pt;}
.x15{left:516.413333pt;}
.x2d{left:522.173333pt;}
.x28{left:539.613333pt;}
.x29{left:570.973333pt;}
.x1e{left:576.413322pt;}
.x2a{left:603.013333pt;}
.x2b{left:635.333333pt;}
.x2c{left:666.533333pt;}
.x11{left:672.773333pt;}
}




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