
    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_f7b6d6c68e2a8bbb67b5b6a3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dc591e476ef2b0f37719a66f.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_3aa12aa83023d2f07c3d58e3.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_80cd7e495cbd03ab9310f55c.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_a326a289f323790ffba87214.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0b0f9a5bf02a48b92e14cb4a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910645;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_89294d9c84174e5ed480dcbd.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_f78aabb5f03cb3db5620f85c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;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_f4d83eefbdc6aaf6463b3835.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v2{vertical-align:-68.400000px;}
.v6{vertical-align:-65.520000px;}
.v9{vertical-align:-64.080000px;}
.v1{vertical-align:-62.640000px;}
.va{vertical-align:-60.660000px;}
.v4{vertical-align:-23.760000px;}
.v7{vertical-align:-20.124000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:4.503000px;}
.v5{vertical-align:23.760000px;}
.v3{vertical-align:30.240000px;}
.ls1a{letter-spacing:-0.828000px;}
.ls20{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.ls12{letter-spacing:-0.342000px;}
.lsd{letter-spacing:-0.252000px;}
.lsc{letter-spacing:-0.220800px;}
.ls16{letter-spacing:-0.108000px;}
.lsb{letter-spacing:-0.027360px;}
.ls19{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.018000px;}
.ls1b{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls13{letter-spacing:0.234000px;}
.ls21{letter-spacing:0.252000px;}
.ls11{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.612000px;}
.ls8{letter-spacing:2.340000px;}
.ls1f{letter-spacing:2.988000px;}
.ls4{letter-spacing:5.940000px;}
.ls14{letter-spacing:23.940000px;}
.ls5{letter-spacing:25.380000px;}
.ls1e{letter-spacing:30.348000px;}
.ls6{letter-spacing:52.560000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls15{letter-spacing:523.200000px;}
.lsf{letter-spacing:626.100000px;}
.lse{letter-spacing:843.240000px;}
.ls10{letter-spacing:1262.100000px;}
.ls1d{letter-spacing:1290.900000px;}
.ls7{letter-spacing:1367.340000px;}
.ls1c{letter-spacing:1410.900000px;}
.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:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wse{word-spacing:-16.822200px;}
.ws5{word-spacing:-14.580000px;}
.ws3{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws11{word-spacing:-14.112000px;}
.ws4{word-spacing:-13.999200px;}
.wsb{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.518000px;}
.ws8{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.482000px;}
.wsf{word-spacing:-13.392000px;}
.wsc{word-spacing:-13.248000px;}
.ws9{word-spacing:-13.140000px;}
.ws13{word-spacing:-12.672000px;}
.ws6{word-spacing:-10.440000px;}
.ws14{word-spacing:-9.252000px;}
.ws7{word-spacing:-9.000000px;}
.wsd{word-spacing:0.000000px;}
._18{margin-left:-76.560000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._7{width:3.186000px;}
._b{width:4.518480px;}
._8{width:5.633760px;}
._9{width:6.702240px;}
._a{width:7.917120px;}
._11{width:8.937600px;}
._d{width:10.206000px;}
._c{width:11.718000px;}
._17{width:15.012000px;}
._e{width:16.308000px;}
._f{width:17.591760px;}
._6{width:24.257520px;}
._4{width:25.272000px;}
._5{width:26.328000px;}
._12{width:77.256000px;}
._13{width:157.176000px;}
._1a{width:367.409760px;}
._16{width:431.357520px;}
._19{width:465.276000px;}
._15{width:723.647520px;}
._1b{width:874.026000px;}
._14{width:1213.272000px;}
._10{width:1353.647760px;}
._3{width:1574.460000px;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y53{bottom:2.850000px;}
.y5c{bottom:3.150000px;}
.y55{bottom:3.300000px;}
.y57{bottom:3.450000px;}
.y59{bottom:18.750000px;}
.y5b{bottom:18.900000px;}
.yf5{bottom:19.575000px;}
.yd2{bottom:21.825000px;}
.y166{bottom:22.770750px;}
.y167{bottom:25.902750px;}
.y1{bottom:27.360000px;}
.y122{bottom:27.450000px;}
.yaf{bottom:33.090000px;}
.y85{bottom:36.420000px;}
.yb2{bottom:54.058500px;}
.y3f{bottom:54.060000px;}
.y125{bottom:54.060750px;}
.yd6{bottom:54.064500px;}
.y89{bottom:54.067500px;}
.y3{bottom:57.960000px;}
.yf4{bottom:60.574500px;}
.y84{bottom:63.135000px;}
.yae{bottom:63.727500px;}
.y121{bottom:70.095000px;}
.yd1{bottom:72.658500px;}
.yf3{bottom:76.084500px;}
.y2{bottom:76.890000px;}
.y83{bottom:79.185000px;}
.yad{bottom:79.237500px;}
.y120{bottom:85.605000px;}
.yd0{bottom:88.318500px;}
.yf2{bottom:91.744500px;}
.y82{bottom:94.845000px;}
.yac{bottom:94.897500px;}
.y165{bottom:98.490750px;}
.y3c{bottom:100.290000px;}
.y11f{bottom:101.085000px;}
.ycf{bottom:103.798500px;}
.yf1{bottom:107.044500px;}
.y81{bottom:110.325000px;}
.yab{bottom:110.377500px;}
.y164{bottom:113.970750px;}
.y3b{bottom:115.950000px;}
.y11e{bottom:116.745000px;}
.yce{bottom:119.458500px;}
.yf0{bottom:119.644500px;}
.yaa{bottom:125.677500px;}
.y80{bottom:125.985000px;}
.y163{bottom:129.630750px;}
.y3a{bottom:131.430000px;}
.y11d{bottom:132.225000px;}
.ycd{bottom:134.938500px;}
.ya9{bottom:141.337500px;}
.y7f{bottom:141.465000px;}
.y162{bottom:145.290750px;}
.y39{bottom:146.910000px;}
.ycc{bottom:147.358500px;}
.y11c{bottom:147.705000px;}
.y7e{bottom:157.125000px;}
.y161{bottom:160.770750px;}
.y38{bottom:162.390000px;}
.y11b{bottom:163.185000px;}
.y7d{bottom:172.785000px;}
.ya8{bottom:172.837500px;}
.y160{bottom:176.430750px;}
.y37{bottom:178.050000px;}
.y11a{bottom:178.845000px;}
.y7c{bottom:187.905000px;}
.ya7{bottom:188.317500px;}
.y15f{bottom:192.090750px;}
.y36{bottom:193.530000px;}
.y119{bottom:194.325000px;}
.y7b{bottom:203.565000px;}
.ya6{bottom:203.797500px;}
.y15e{bottom:207.570750px;}
.y35{bottom:209.010000px;}
.y118{bottom:209.805000px;}
.ya5{bottom:219.097500px;}
.y7a{bottom:219.585000px;}
.y15d{bottom:223.230750px;}
.y34{bottom:224.490000px;}
.y117{bottom:225.285000px;}
.ya4{bottom:234.757500px;}
.y79{bottom:235.065000px;}
.y15c{bottom:238.890750px;}
.y33{bottom:240.150000px;}
.y116{bottom:240.945000px;}
.ya3{bottom:250.237500px;}
.y78{bottom:250.545000px;}
.y15b{bottom:254.370750px;}
.y32{bottom:255.630000px;}
.y115{bottom:256.425000px;}
.y77{bottom:266.205000px;}
.ya2{bottom:266.257500px;}
.y15a{bottom:270.030750px;}
.y31{bottom:271.110000px;}
.y114{bottom:272.085000px;}
.y76{bottom:281.325000px;}
.ya1{bottom:281.917500px;}
.y159{bottom:285.690750px;}
.y30{bottom:286.590000px;}
.y113{bottom:287.565000px;}
.y75{bottom:296.985000px;}
.ya0{bottom:297.397500px;}
.y158{bottom:301.170750px;}
.y2f{bottom:302.070000px;}
.y112{bottom:303.045000px;}
.y9f{bottom:309.817500px;}
.y74{bottom:313.005000px;}
.y157{bottom:316.830750px;}
.y2e{bottom:317.730000px;}
.y111{bottom:318.525000px;}
.y73{bottom:328.485000px;}
.y156{bottom:332.490750px;}
.y2d{bottom:333.210000px;}
.y110{bottom:334.185000px;}
.y72{bottom:344.010000px;}
.y155{bottom:348.015750px;}
.y2c{bottom:348.735000px;}
.y10f{bottom:349.710000px;}
.y71{bottom:359.670000px;}
.y154{bottom:363.675750px;}
.y2b{bottom:364.215000px;}
.y10e{bottom:365.190000px;}
.y70{bottom:376.230000px;}
.y153{bottom:379.335750px;}
.y2a{bottom:379.875000px;}
.y10d{bottom:380.850000px;}
.y6f{bottom:391.350000px;}
.y152{bottom:394.815750px;}
.y29{bottom:395.355000px;}
.y10c{bottom:396.330000px;}
.y6e{bottom:407.010000px;}
.y151{bottom:410.475750px;}
.y28{bottom:410.835000px;}
.yef{bottom:411.094500px;}
.y10b{bottom:411.810000px;}
.y6d{bottom:423.030000px;}
.y150{bottom:426.135750px;}
.y27{bottom:426.495000px;}
.yee{bottom:426.574500px;}
.y10a{bottom:427.290000px;}
.y6c{bottom:438.510000px;}
.y26{bottom:441.615000px;}
.y14f{bottom:441.615750px;}
.yed{bottom:442.054500px;}
.y109{bottom:442.950000px;}
.y6b{bottom:454.170000px;}
.y14e{bottom:457.275750px;}
.yec{bottom:457.534500px;}
.y108{bottom:458.430000px;}
.y6a{bottom:469.290000px;}
.y25{bottom:472.755000px;}
.y14d{bottom:472.755750px;}
.yeb{bottom:473.194500px;}
.y107{bottom:473.730000px;}
.ycb{bottom:481.408500px;}
.y69{bottom:484.950000px;}
.y14c{bottom:488.415750px;}
.yea{bottom:488.674500px;}
.y106{bottom:490.290000px;}
.y24{bottom:490.935000px;}
.yca{bottom:496.888500px;}
.y68{bottom:500.610000px;}
.y14b{bottom:504.075750px;}
.ye9{bottom:504.154500px;}
.y105{bottom:510.090000px;}
.yc9{bottom:512.368500px;}
.y67{bottom:516.630000px;}
.y14a{bottom:519.555750px;}
.ye8{bottom:519.634500px;}
.y23{bottom:519.915000px;}
.y104{bottom:525.930000px;}
.yc8{bottom:527.848500px;}
.y9e{bottom:531.817500px;}
.y66{bottom:533.010000px;}
.y149{bottom:535.215750px;}
.ye7{bottom:535.294500px;}
.y22{bottom:538.095000px;}
.y103{bottom:541.590000px;}
.yc7{bottom:543.508500px;}
.y9d{bottom:547.297500px;}
.y65{bottom:548.490000px;}
.y148{bottom:550.875750px;}
.ye6{bottom:550.954500px;}
.y21{bottom:553.575000px;}
.y102{bottom:557.250000px;}
.yc6{bottom:558.988500px;}
.y9c{bottom:562.957500px;}
.y64{bottom:564.150000px;}
.y147{bottom:566.355750px;}
.ye5{bottom:566.434500px;}
.y20{bottom:569.055000px;}
.y101{bottom:572.370000px;}
.yc5{bottom:574.288500px;}
.y9b{bottom:578.437500px;}
.y63{bottom:579.450000px;}
.y146{bottom:582.015750px;}
.ye4{bottom:582.094500px;}
.y1f{bottom:584.715000px;}
.y100{bottom:585.150000px;}
.yc4{bottom:589.948500px;}
.ye3{bottom:597.574500px;}
.y145{bottom:597.675750px;}
.y1e{bottom:600.195000px;}
.y62{bottom:602.670000px;}
.yc3{bottom:605.458500px;}
.y9a{bottom:609.427500px;}
.ye2{bottom:612.904500px;}
.y144{bottom:613.185750px;}
.y1d{bottom:615.705000px;}
.y61{bottom:618.540000px;}
.yc2{bottom:621.478500px;}
.y99{bottom:624.907500px;}
.ye1{bottom:625.504500px;}
.y143{bottom:628.845750px;}
.y1c{bottom:631.185000px;}
.y60{bottom:634.200000px;}
.yc1{bottom:636.958500px;}
.y98{bottom:640.927500px;}
.y142{bottom:644.505750px;}
.y1b{bottom:646.845000px;}
.y5f{bottom:649.500000px;}
.y97{bottom:656.407500px;}
.y141{bottom:659.985750px;}
.y1a{bottom:662.325000px;}
.y5e{bottom:664.980000px;}
.yc0{bottom:667.738500px;}
.y140{bottom:675.645750px;}
.y19{bottom:677.805000px;}
.ybf{bottom:680.518500px;}
.y5d{bottom:681.000000px;}
.y96{bottom:687.547500px;}
.y13f{bottom:691.305750px;}
.y18{bottom:693.465000px;}
.y5a{bottom:694.050000px;}
.y95{bottom:699.967500px;}
.y13e{bottom:706.785750px;}
.y17{bottom:715.605000px;}
.y13d{bottom:722.085750px;}
.y58{bottom:725.850000px;}
.y13c{bottom:737.745750px;}
.y16{bottom:742.425000px;}
.y56{bottom:757.500000px;}
.y15{bottom:757.905000px;}
.y13b{bottom:769.245750px;}
.y14{bottom:773.385000px;}
.y54{bottom:780.900000px;}
.y13a{bottom:784.905750px;}
.y52{bottom:804.150000px;}
.y13{bottom:808.125000px;}
.y139{bottom:816.045750px;}
.y12{bottom:829.545000px;}
.y138{bottom:831.525750px;}
.y51{bottom:846.105000px;}
.y137{bottom:847.005750px;}
.y11{bottom:858.345000px;}
.y50{bottom:861.765000px;}
.y136{bottom:862.305750px;}
.y4f{bottom:877.290000px;}
.y10{bottom:893.310000px;}
.y4e{bottom:893.850000px;}
.y135{bottom:893.850750px;}
.y4d{bottom:909.330000px;}
.y134{bottom:909.510750px;}
.y4c{bottom:924.630000px;}
.y133{bottom:924.990750px;}
.yf{bottom:932.370000px;}
.y4b{bottom:940.290000px;}
.y132{bottom:940.650750px;}
.y131{bottom:955.770750px;}
.y4a{bottom:956.130000px;}
.ye{bottom:956.670000px;}
.y94{bottom:964.267500px;}
.y130{bottom:971.430750px;}
.y49{bottom:971.790000px;}
.y93{bottom:979.927500px;}
.y48{bottom:987.270000px;}
.y12f{bottom:987.450750px;}
.ybe{bottom:987.568500px;}
.y92{bottom:995.407500px;}
.y47{bottom:1002.570000px;}
.y12e{bottom:1002.930750px;}
.ybd{bottom:1003.048500px;}
.y91{bottom:1011.067500px;}
.yd{bottom:1016.070000px;}
.y46{bottom:1018.050000px;}
.y12d{bottom:1018.230750px;}
.ybc{bottom:1018.528500px;}
.ye0{bottom:1018.954500px;}
.y90{bottom:1026.187500px;}
.ybb{bottom:1033.828500px;}
.ya{bottom:1034.070000px;}
.ydf{bottom:1034.434500px;}
.yc{bottom:1039.290000px;}
.y8f{bottom:1041.847500px;}
.yba{bottom:1049.488500px;}
.y45{bottom:1049.550000px;}
.y12c{bottom:1049.730750px;}
.yde{bottom:1049.914500px;}
.y9{bottom:1057.290000px;}
.y8e{bottom:1065.067500px;}
.yff{bottom:1065.150000px;}
.y44{bottom:1065.210000px;}
.y12b{bottom:1065.210750px;}
.yb9{bottom:1065.328500px;}
.ydd{bottom:1065.394500px;}
.yb{bottom:1071.330000px;}
.y43{bottom:1080.690000px;}
.y12a{bottom:1080.690750px;}
.yb8{bottom:1080.988500px;}
.ydc{bottom:1081.054500px;}
.yfe{bottom:1081.170000px;}
.y8{bottom:1086.630000px;}
.y8d{bottom:1088.467500px;}
.y129{bottom:1096.350750px;}
.yb7{bottom:1096.468500px;}
.ydb{bottom:1096.534500px;}
.yfd{bottom:1096.650000px;}
.y8c{bottom:1104.307500px;}
.y7{bottom:1105.710000px;}
.y42{bottom:1111.650000px;}
.y128{bottom:1111.650750px;}
.yda{bottom:1112.014500px;}
.yb6{bottom:1112.128500px;}
.yfc{bottom:1112.130000px;}
.y8b{bottom:1119.967500px;}
.y6{bottom:1122.990000px;}
.y41{bottom:1127.130000px;}
.yb5{bottom:1127.248500px;}
.yf7{bottom:1127.280000px;}
.yd9{bottom:1127.494500px;}
.yfb{bottom:1127.610000px;}
.y5{bottom:1140.300000px;}
.yb4{bottom:1142.938500px;}
.y127{bottom:1143.180750px;}
.yd8{bottom:1143.184500px;}
.yfa{bottom:1143.300000px;}
.y4{bottom:1158.300000px;}
.y8a{bottom:1158.517500px;}
.y40{bottom:1158.660000px;}
.y126{bottom:1158.660750px;}
.yd7{bottom:1158.664500px;}
.yb3{bottom:1158.958500px;}
.yf9{bottom:1158.960000px;}
.yf8{bottom:1175.160000px;}
.y124{bottom:1175.160750px;}
.yd5{bottom:1175.164500px;}
.y88{bottom:1175.167500px;}
.y3e{bottom:1180.191000px;}
.yb1{bottom:1190.323500px;}
.y3d{bottom:1193.700000px;}
.yd3{bottom:1195.875000px;}
.y123{bottom:1200.300000px;}
.yd4{bottom:1200.454500px;}
.y86{bottom:1202.520000px;}
.y87{bottom:1204.957500px;}
.yf6{bottom:1206.075000px;}
.yb0{bottom:1213.890000px;}
.h15{height:22.500000px;}
.h16{height:30.960000px;}
.h17{height:31.140000px;}
.hc{height:35.314453px;}
.h10{height:38.158594px;}
.h11{height:47.344922px;}
.h6{height:48.616875px;}
.hb{height:52.971680px;}
.h12{height:52.998047px;}
.hd{height:54.421875px;}
.h1b{height:55.503491px;}
.h7{height:55.796836px;}
.h14{height:55.824609px;}
.h8{height:58.621992px;}
.hf{height:59.074453px;}
.h19{height:59.092031px;}
.h1a{height:59.272031px;}
.h3{height:60.226875px;}
.he{height:62.153438px;}
.h13{height:64.978594px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h18{height:69.513938px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h0{height:1263.000000px;}
.w4{width:68.430000px;}
.w1{width:158.985000px;}
.w3{width:202.950000px;}
.w2{width:286.800000px;}
.w0{width:894.000000px;}
.x10{left:-887.940000px;}
.x37{left:-858.540000px;}
.x1a{left:-851.790000px;}
.x2d{left:-814.740000px;}
.x24{left:-807.990000px;}
.x0{left:0.000000px;}
.x13{left:7.725000px;}
.x3{left:30.045000px;}
.xc{left:46.710000px;}
.x2a{left:48.960000px;}
.xe{left:50.295000px;}
.x19{left:52.161000px;}
.x34{left:53.784000px;}
.x36{left:56.850000px;}
.x23{left:60.150000px;}
.x9{left:62.670000px;}
.x3d{left:67.950000px;}
.x42{left:72.564000px;}
.x40{left:74.610000px;}
.x30{left:76.269000px;}
.x12{left:94.005000px;}
.xa{left:99.780000px;}
.x33{left:174.459000px;}
.xb{left:180.495000px;}
.x1f{left:191.685000px;}
.x39{left:211.095000px;}
.x20{left:214.050000px;}
.x21{left:221.700000px;}
.x27{left:228.015000px;}
.x1d{left:231.555000px;}
.x2f{left:237.039000px;}
.x29{left:240.765000px;}
.x6{left:244.170000px;}
.x31{left:248.859000px;}
.x14{left:253.350000px;}
.x4{left:270.300000px;}
.x26{left:279.465000px;}
.x2b{left:287.121000px;}
.x5{left:290.610000px;}
.x3a{left:296.160000px;}
.x3e{left:354.405000px;}
.x11{left:355.785000px;}
.x3b{left:394.290000px;}
.x3f{left:404.070000px;}
.xd{left:412.416000px;}
.x1b{left:429.465000px;}
.x41{left:431.664000px;}
.x2c{left:433.200000px;}
.x22{left:442.200000px;}
.x18{left:443.211000px;}
.x1{left:446.400000px;}
.xf{left:449.175000px;}
.x35{left:457.950000px;}
.x3c{left:459.000000px;}
.x17{left:460.215000px;}
.x2{left:465.645000px;}
.x7{left:478.965000px;}
.x8{left:506.580000px;}
.x15{left:540.450000px;}
.x28{left:618.915000px;}
.x38{left:642.795000px;}
.x25{left:670.815000px;}
.x2e{left:678.789000px;}
.x32{left:696.009000px;}
.x16{left:743.700000px;}
.x1e{left:769.035000px;}
.x1c{left:800.325000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v6{vertical-align:-58.240000pt;}
.v9{vertical-align:-56.960000pt;}
.v1{vertical-align:-55.680000pt;}
.va{vertical-align:-53.920000pt;}
.v4{vertical-align:-21.120000pt;}
.v7{vertical-align:-17.888000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:4.002667pt;}
.v5{vertical-align:21.120000pt;}
.v3{vertical-align:26.880000pt;}
.ls1a{letter-spacing:-0.736000pt;}
.ls20{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls12{letter-spacing:-0.304000pt;}
.lsd{letter-spacing:-0.224000pt;}
.lsc{letter-spacing:-0.196267pt;}
.ls16{letter-spacing:-0.096000pt;}
.lsb{letter-spacing:-0.024320pt;}
.ls19{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.016000pt;}
.ls1b{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls13{letter-spacing:0.208000pt;}
.ls21{letter-spacing:0.224000pt;}
.ls11{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.544000pt;}
.ls8{letter-spacing:2.080000pt;}
.ls1f{letter-spacing:2.656000pt;}
.ls4{letter-spacing:5.280000pt;}
.ls14{letter-spacing:21.280000pt;}
.ls5{letter-spacing:22.560000pt;}
.ls1e{letter-spacing:26.976000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls15{letter-spacing:465.066667pt;}
.lsf{letter-spacing:556.533333pt;}
.lse{letter-spacing:749.546667pt;}
.ls10{letter-spacing:1121.866667pt;}
.ls1d{letter-spacing:1147.466667pt;}
.ls7{letter-spacing:1215.413333pt;}
.ls1c{letter-spacing:1254.133333pt;}
.wsa{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wse{word-spacing:-14.953067pt;}
.ws5{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws11{word-spacing:-12.544000pt;}
.ws4{word-spacing:-12.443733pt;}
.wsb{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.016000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.984000pt;}
.wsf{word-spacing:-11.904000pt;}
.wsc{word-spacing:-11.776000pt;}
.ws9{word-spacing:-11.680000pt;}
.ws13{word-spacing:-11.264000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws14{word-spacing:-8.224000pt;}
.ws7{word-spacing:-8.000000pt;}
.wsd{word-spacing:0.000000pt;}
._18{margin-left:-68.053333pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._7{width:2.832000pt;}
._b{width:4.016427pt;}
._8{width:5.007787pt;}
._9{width:5.957547pt;}
._a{width:7.037440pt;}
._11{width:7.944533pt;}
._d{width:9.072000pt;}
._c{width:10.416000pt;}
._17{width:13.344000pt;}
._e{width:14.496000pt;}
._f{width:15.637120pt;}
._6{width:21.562240pt;}
._4{width:22.464000pt;}
._5{width:23.402667pt;}
._12{width:68.672000pt;}
._13{width:139.712000pt;}
._1a{width:326.586453pt;}
._16{width:383.428907pt;}
._19{width:413.578667pt;}
._15{width:643.242240pt;}
._1b{width:776.912000pt;}
._14{width:1078.464000pt;}
._10{width:1203.242453pt;}
._3{width:1399.520000pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y53{bottom:2.533333pt;}
.y5c{bottom:2.800000pt;}
.y55{bottom:2.933333pt;}
.y57{bottom:3.066667pt;}
.y59{bottom:16.666667pt;}
.y5b{bottom:16.800000pt;}
.yf5{bottom:17.400000pt;}
.yd2{bottom:19.400000pt;}
.y166{bottom:20.240667pt;}
.y167{bottom:23.024667pt;}
.y1{bottom:24.320000pt;}
.y122{bottom:24.400000pt;}
.yaf{bottom:29.413333pt;}
.y85{bottom:32.373333pt;}
.yb2{bottom:48.052000pt;}
.y3f{bottom:48.053333pt;}
.y125{bottom:48.054000pt;}
.yd6{bottom:48.057333pt;}
.y89{bottom:48.060000pt;}
.y3{bottom:51.520000pt;}
.yf4{bottom:53.844000pt;}
.y84{bottom:56.120000pt;}
.yae{bottom:56.646667pt;}
.y121{bottom:62.306667pt;}
.yd1{bottom:64.585333pt;}
.yf3{bottom:67.630667pt;}
.y2{bottom:68.346667pt;}
.y83{bottom:70.386667pt;}
.yad{bottom:70.433333pt;}
.y120{bottom:76.093333pt;}
.yd0{bottom:78.505333pt;}
.yf2{bottom:81.550667pt;}
.y82{bottom:84.306667pt;}
.yac{bottom:84.353333pt;}
.y165{bottom:87.547333pt;}
.y3c{bottom:89.146667pt;}
.y11f{bottom:89.853333pt;}
.ycf{bottom:92.265333pt;}
.yf1{bottom:95.150667pt;}
.y81{bottom:98.066667pt;}
.yab{bottom:98.113333pt;}
.y164{bottom:101.307333pt;}
.y3b{bottom:103.066667pt;}
.y11e{bottom:103.773333pt;}
.yce{bottom:106.185333pt;}
.yf0{bottom:106.350667pt;}
.yaa{bottom:111.713333pt;}
.y80{bottom:111.986667pt;}
.y163{bottom:115.227333pt;}
.y3a{bottom:116.826667pt;}
.y11d{bottom:117.533333pt;}
.ycd{bottom:119.945333pt;}
.ya9{bottom:125.633333pt;}
.y7f{bottom:125.746667pt;}
.y162{bottom:129.147333pt;}
.y39{bottom:130.586667pt;}
.ycc{bottom:130.985333pt;}
.y11c{bottom:131.293333pt;}
.y7e{bottom:139.666667pt;}
.y161{bottom:142.907333pt;}
.y38{bottom:144.346667pt;}
.y11b{bottom:145.053333pt;}
.y7d{bottom:153.586667pt;}
.ya8{bottom:153.633333pt;}
.y160{bottom:156.827333pt;}
.y37{bottom:158.266667pt;}
.y11a{bottom:158.973333pt;}
.y7c{bottom:167.026667pt;}
.ya7{bottom:167.393333pt;}
.y15f{bottom:170.747333pt;}
.y36{bottom:172.026667pt;}
.y119{bottom:172.733333pt;}
.y7b{bottom:180.946667pt;}
.ya6{bottom:181.153333pt;}
.y15e{bottom:184.507333pt;}
.y35{bottom:185.786667pt;}
.y118{bottom:186.493333pt;}
.ya5{bottom:194.753333pt;}
.y7a{bottom:195.186667pt;}
.y15d{bottom:198.427333pt;}
.y34{bottom:199.546667pt;}
.y117{bottom:200.253333pt;}
.ya4{bottom:208.673333pt;}
.y79{bottom:208.946667pt;}
.y15c{bottom:212.347333pt;}
.y33{bottom:213.466667pt;}
.y116{bottom:214.173333pt;}
.ya3{bottom:222.433333pt;}
.y78{bottom:222.706667pt;}
.y15b{bottom:226.107333pt;}
.y32{bottom:227.226667pt;}
.y115{bottom:227.933333pt;}
.y77{bottom:236.626667pt;}
.ya2{bottom:236.673333pt;}
.y15a{bottom:240.027333pt;}
.y31{bottom:240.986667pt;}
.y114{bottom:241.853333pt;}
.y76{bottom:250.066667pt;}
.ya1{bottom:250.593333pt;}
.y159{bottom:253.947333pt;}
.y30{bottom:254.746667pt;}
.y113{bottom:255.613333pt;}
.y75{bottom:263.986667pt;}
.ya0{bottom:264.353333pt;}
.y158{bottom:267.707333pt;}
.y2f{bottom:268.506667pt;}
.y112{bottom:269.373333pt;}
.y9f{bottom:275.393333pt;}
.y74{bottom:278.226667pt;}
.y157{bottom:281.627333pt;}
.y2e{bottom:282.426667pt;}
.y111{bottom:283.133333pt;}
.y73{bottom:291.986667pt;}
.y156{bottom:295.547333pt;}
.y2d{bottom:296.186667pt;}
.y110{bottom:297.053333pt;}
.y72{bottom:305.786667pt;}
.y155{bottom:309.347333pt;}
.y2c{bottom:309.986667pt;}
.y10f{bottom:310.853333pt;}
.y71{bottom:319.706667pt;}
.y154{bottom:323.267333pt;}
.y2b{bottom:323.746667pt;}
.y10e{bottom:324.613333pt;}
.y70{bottom:334.426667pt;}
.y153{bottom:337.187333pt;}
.y2a{bottom:337.666667pt;}
.y10d{bottom:338.533333pt;}
.y6f{bottom:347.866667pt;}
.y152{bottom:350.947333pt;}
.y29{bottom:351.426667pt;}
.y10c{bottom:352.293333pt;}
.y6e{bottom:361.786667pt;}
.y151{bottom:364.867333pt;}
.y28{bottom:365.186667pt;}
.yef{bottom:365.417333pt;}
.y10b{bottom:366.053333pt;}
.y6d{bottom:376.026667pt;}
.y150{bottom:378.787333pt;}
.y27{bottom:379.106667pt;}
.yee{bottom:379.177333pt;}
.y10a{bottom:379.813333pt;}
.y6c{bottom:389.786667pt;}
.y26{bottom:392.546667pt;}
.y14f{bottom:392.547333pt;}
.yed{bottom:392.937333pt;}
.y109{bottom:393.733333pt;}
.y6b{bottom:403.706667pt;}
.y14e{bottom:406.467333pt;}
.yec{bottom:406.697333pt;}
.y108{bottom:407.493333pt;}
.y6a{bottom:417.146667pt;}
.y25{bottom:420.226667pt;}
.y14d{bottom:420.227333pt;}
.yeb{bottom:420.617333pt;}
.y107{bottom:421.093333pt;}
.ycb{bottom:427.918667pt;}
.y69{bottom:431.066667pt;}
.y14c{bottom:434.147333pt;}
.yea{bottom:434.377333pt;}
.y106{bottom:435.813333pt;}
.y24{bottom:436.386667pt;}
.yca{bottom:441.678667pt;}
.y68{bottom:444.986667pt;}
.y14b{bottom:448.067333pt;}
.ye9{bottom:448.137333pt;}
.y105{bottom:453.413333pt;}
.yc9{bottom:455.438667pt;}
.y67{bottom:459.226667pt;}
.y14a{bottom:461.827333pt;}
.ye8{bottom:461.897333pt;}
.y23{bottom:462.146667pt;}
.y104{bottom:467.493333pt;}
.yc8{bottom:469.198667pt;}
.y9e{bottom:472.726667pt;}
.y66{bottom:473.786667pt;}
.y149{bottom:475.747333pt;}
.ye7{bottom:475.817333pt;}
.y22{bottom:478.306667pt;}
.y103{bottom:481.413333pt;}
.yc7{bottom:483.118667pt;}
.y9d{bottom:486.486667pt;}
.y65{bottom:487.546667pt;}
.y148{bottom:489.667333pt;}
.ye6{bottom:489.737333pt;}
.y21{bottom:492.066667pt;}
.y102{bottom:495.333333pt;}
.yc6{bottom:496.878667pt;}
.y9c{bottom:500.406667pt;}
.y64{bottom:501.466667pt;}
.y147{bottom:503.427333pt;}
.ye5{bottom:503.497333pt;}
.y20{bottom:505.826667pt;}
.y101{bottom:508.773333pt;}
.yc5{bottom:510.478667pt;}
.y9b{bottom:514.166667pt;}
.y63{bottom:515.066667pt;}
.y146{bottom:517.347333pt;}
.ye4{bottom:517.417333pt;}
.y1f{bottom:519.746667pt;}
.y100{bottom:520.133333pt;}
.yc4{bottom:524.398667pt;}
.ye3{bottom:531.177333pt;}
.y145{bottom:531.267333pt;}
.y1e{bottom:533.506667pt;}
.y62{bottom:535.706667pt;}
.yc3{bottom:538.185333pt;}
.y9a{bottom:541.713333pt;}
.ye2{bottom:544.804000pt;}
.y144{bottom:545.054000pt;}
.y1d{bottom:547.293333pt;}
.y61{bottom:549.813333pt;}
.yc2{bottom:552.425333pt;}
.y99{bottom:555.473333pt;}
.ye1{bottom:556.004000pt;}
.y143{bottom:558.974000pt;}
.y1c{bottom:561.053333pt;}
.y60{bottom:563.733333pt;}
.yc1{bottom:566.185333pt;}
.y98{bottom:569.713333pt;}
.y142{bottom:572.894000pt;}
.y1b{bottom:574.973333pt;}
.y5f{bottom:577.333333pt;}
.y97{bottom:583.473333pt;}
.y141{bottom:586.654000pt;}
.y1a{bottom:588.733333pt;}
.y5e{bottom:591.093333pt;}
.yc0{bottom:593.545333pt;}
.y140{bottom:600.574000pt;}
.y19{bottom:602.493333pt;}
.ybf{bottom:604.905333pt;}
.y5d{bottom:605.333333pt;}
.y96{bottom:611.153333pt;}
.y13f{bottom:614.494000pt;}
.y18{bottom:616.413333pt;}
.y5a{bottom:616.933333pt;}
.y95{bottom:622.193333pt;}
.y13e{bottom:628.254000pt;}
.y17{bottom:636.093333pt;}
.y13d{bottom:641.854000pt;}
.y58{bottom:645.200000pt;}
.y13c{bottom:655.774000pt;}
.y16{bottom:659.933333pt;}
.y56{bottom:673.333333pt;}
.y15{bottom:673.693333pt;}
.y13b{bottom:683.774000pt;}
.y14{bottom:687.453333pt;}
.y54{bottom:694.133333pt;}
.y13a{bottom:697.694000pt;}
.y52{bottom:714.800000pt;}
.y13{bottom:718.333333pt;}
.y139{bottom:725.374000pt;}
.y12{bottom:737.373333pt;}
.y138{bottom:739.134000pt;}
.y51{bottom:752.093333pt;}
.y137{bottom:752.894000pt;}
.y11{bottom:762.973333pt;}
.y50{bottom:766.013333pt;}
.y136{bottom:766.494000pt;}
.y4f{bottom:779.813333pt;}
.y10{bottom:794.053333pt;}
.y4e{bottom:794.533333pt;}
.y135{bottom:794.534000pt;}
.y4d{bottom:808.293333pt;}
.y134{bottom:808.454000pt;}
.y4c{bottom:821.893333pt;}
.y133{bottom:822.214000pt;}
.yf{bottom:828.773333pt;}
.y4b{bottom:835.813333pt;}
.y132{bottom:836.134000pt;}
.y131{bottom:849.574000pt;}
.y4a{bottom:849.893333pt;}
.ye{bottom:850.373333pt;}
.y94{bottom:857.126667pt;}
.y130{bottom:863.494000pt;}
.y49{bottom:863.813333pt;}
.y93{bottom:871.046667pt;}
.y48{bottom:877.573333pt;}
.y12f{bottom:877.734000pt;}
.ybe{bottom:877.838667pt;}
.y92{bottom:884.806667pt;}
.y47{bottom:891.173333pt;}
.y12e{bottom:891.494000pt;}
.ybd{bottom:891.598667pt;}
.y91{bottom:898.726667pt;}
.yd{bottom:903.173333pt;}
.y46{bottom:904.933333pt;}
.y12d{bottom:905.094000pt;}
.ybc{bottom:905.358667pt;}
.ye0{bottom:905.737333pt;}
.y90{bottom:912.166667pt;}
.ybb{bottom:918.958667pt;}
.ya{bottom:919.173333pt;}
.ydf{bottom:919.497333pt;}
.yc{bottom:923.813333pt;}
.y8f{bottom:926.086667pt;}
.yba{bottom:932.878667pt;}
.y45{bottom:932.933333pt;}
.y12c{bottom:933.094000pt;}
.yde{bottom:933.257333pt;}
.y9{bottom:939.813333pt;}
.y8e{bottom:946.726667pt;}
.yff{bottom:946.800000pt;}
.y44{bottom:946.853333pt;}
.y12b{bottom:946.854000pt;}
.yb9{bottom:946.958667pt;}
.ydd{bottom:947.017333pt;}
.yb{bottom:952.293333pt;}
.y43{bottom:960.613333pt;}
.y12a{bottom:960.614000pt;}
.yb8{bottom:960.878667pt;}
.ydc{bottom:960.937333pt;}
.yfe{bottom:961.040000pt;}
.y8{bottom:965.893333pt;}
.y8d{bottom:967.526667pt;}
.y129{bottom:974.534000pt;}
.yb7{bottom:974.638667pt;}
.ydb{bottom:974.697333pt;}
.yfd{bottom:974.800000pt;}
.y8c{bottom:981.606667pt;}
.y7{bottom:982.853333pt;}
.y42{bottom:988.133333pt;}
.y128{bottom:988.134000pt;}
.yda{bottom:988.457333pt;}
.yb6{bottom:988.558667pt;}
.yfc{bottom:988.560000pt;}
.y8b{bottom:995.526667pt;}
.y6{bottom:998.213333pt;}
.y41{bottom:1001.893333pt;}
.yb5{bottom:1001.998667pt;}
.yf7{bottom:1002.026667pt;}
.yd9{bottom:1002.217333pt;}
.yfb{bottom:1002.320000pt;}
.y5{bottom:1013.600000pt;}
.yb4{bottom:1015.945333pt;}
.y127{bottom:1016.160667pt;}
.yd8{bottom:1016.164000pt;}
.yfa{bottom:1016.266667pt;}
.y4{bottom:1029.600000pt;}
.y8a{bottom:1029.793333pt;}
.y40{bottom:1029.920000pt;}
.y126{bottom:1029.920667pt;}
.yd7{bottom:1029.924000pt;}
.yb3{bottom:1030.185333pt;}
.yf9{bottom:1030.186667pt;}
.yf8{bottom:1044.586667pt;}
.y124{bottom:1044.587333pt;}
.yd5{bottom:1044.590667pt;}
.y88{bottom:1044.593333pt;}
.y3e{bottom:1049.058667pt;}
.yb1{bottom:1058.065333pt;}
.y3d{bottom:1061.066667pt;}
.yd3{bottom:1063.000000pt;}
.y123{bottom:1066.933333pt;}
.yd4{bottom:1067.070667pt;}
.y86{bottom:1068.906667pt;}
.y87{bottom:1071.073333pt;}
.yf6{bottom:1072.066667pt;}
.yb0{bottom:1079.013333pt;}
.h15{height:20.000000pt;}
.h16{height:27.520000pt;}
.h17{height:27.680000pt;}
.hc{height:31.390625pt;}
.h10{height:33.918750pt;}
.h11{height:42.084375pt;}
.h6{height:43.215000pt;}
.hb{height:47.085938pt;}
.h12{height:47.109375pt;}
.hd{height:48.375000pt;}
.h1b{height:49.336436pt;}
.h7{height:49.597187pt;}
.h14{height:49.621875pt;}
.h8{height:52.108438pt;}
.hf{height:52.510625pt;}
.h19{height:52.526250pt;}
.h1a{height:52.686250pt;}
.h3{height:53.535000pt;}
.he{height:55.247500pt;}
.h13{height:57.758750pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h18{height:61.790167pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h0{height:1122.666667pt;}
.w4{width:60.826667pt;}
.w1{width:141.320000pt;}
.w3{width:180.400000pt;}
.w2{width:254.933333pt;}
.w0{width:794.666667pt;}
.x10{left:-789.280000pt;}
.x37{left:-763.146667pt;}
.x1a{left:-757.146667pt;}
.x2d{left:-724.213333pt;}
.x24{left:-718.213333pt;}
.x0{left:0.000000pt;}
.x13{left:6.866667pt;}
.x3{left:26.706667pt;}
.xc{left:41.520000pt;}
.x2a{left:43.520000pt;}
.xe{left:44.706667pt;}
.x19{left:46.365333pt;}
.x34{left:47.808000pt;}
.x36{left:50.533333pt;}
.x23{left:53.466667pt;}
.x9{left:55.706667pt;}
.x3d{left:60.400000pt;}
.x42{left:64.501333pt;}
.x40{left:66.320000pt;}
.x30{left:67.794667pt;}
.x12{left:83.560000pt;}
.xa{left:88.693333pt;}
.x33{left:155.074667pt;}
.xb{left:160.440000pt;}
.x1f{left:170.386667pt;}
.x39{left:187.640000pt;}
.x20{left:190.266667pt;}
.x21{left:197.066667pt;}
.x27{left:202.680000pt;}
.x1d{left:205.826667pt;}
.x2f{left:210.701333pt;}
.x29{left:214.013333pt;}
.x6{left:217.040000pt;}
.x31{left:221.208000pt;}
.x14{left:225.200000pt;}
.x4{left:240.266667pt;}
.x26{left:248.413333pt;}
.x2b{left:255.218667pt;}
.x5{left:258.320000pt;}
.x3a{left:263.253333pt;}
.x3e{left:315.026667pt;}
.x11{left:316.253333pt;}
.x3b{left:350.480000pt;}
.x3f{left:359.173333pt;}
.xd{left:366.592000pt;}
.x1b{left:381.746667pt;}
.x41{left:383.701333pt;}
.x2c{left:385.066667pt;}
.x22{left:393.066667pt;}
.x18{left:393.965333pt;}
.x1{left:396.800000pt;}
.xf{left:399.266667pt;}
.x35{left:407.066667pt;}
.x3c{left:408.000000pt;}
.x17{left:409.080000pt;}
.x2{left:413.906667pt;}
.x7{left:425.746667pt;}
.x8{left:450.293333pt;}
.x15{left:480.400000pt;}
.x28{left:550.146667pt;}
.x38{left:571.373333pt;}
.x25{left:596.280000pt;}
.x2e{left:603.368000pt;}
.x32{left:618.674667pt;}
.x16{left:661.066667pt;}
.x1e{left:683.586667pt;}
.x1c{left:711.400000pt;}
}




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