
    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_f45b64c5ef42fb50a67165a1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_dbb1b190a9f2404bafe01643.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_1c9f7113c2e6036af4ea8e44.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_eee19912d79c1997dee8e21f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_c3bc36531915caf03fa96ae6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.966797;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_8b3818d15acd8de205af3ce2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.145000;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_2ebffdc1ea644a5464dfef85.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.145000;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;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls6{letter-spacing:-0.288000px;}
.ls9{letter-spacing:-0.208200px;}
.ls3{letter-spacing:-0.189600px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.018720px;}
.ls1{letter-spacing:0.037440px;}
.ls5{letter-spacing:0.125856px;}
.ls4{letter-spacing:0.182160px;}
.lsd{letter-spacing:0.511800px;}
.ls8{letter-spacing:0.702000px;}
.ls7{letter-spacing:0.738000px;}
.lsa{letter-spacing:1.800000px;}
.lsc{letter-spacing:2.112000px;}
.ls2{letter-spacing:30.258720px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 rgb(127,127,127),0 0.015em rgb(127,127,127),0.015em 0 rgb(127,127,127),0 -0.015em  rgb(127,127,127);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(127,127,127);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-53.442720px;}
.ws4{word-spacing:-32.544000px;}
.wsf{word-spacing:-30.064032px;}
.ws2{word-spacing:-30.024000px;}
.ws0{word-spacing:-27.174240px;}
.ws5{word-spacing:-26.621280px;}
.wsc{word-spacing:-24.218208px;}
.wsd{word-spacing:-24.176880px;}
.wse{word-spacing:-23.418720px;}
.wsb{word-spacing:-19.038240px;}
.ws1d{word-spacing:-4.320000px;}
.ws15{word-spacing:-2.068560px;}
.ws19{word-spacing:-0.608400px;}
.ws11{word-spacing:-0.205920px;}
.ws1{word-spacing:0.000000px;}
.ws17{word-spacing:0.397440px;}
.ws10{word-spacing:0.434880px;}
.ws18{word-spacing:0.474480px;}
.ws30{word-spacing:0.529440px;}
.ws8{word-spacing:0.651360px;}
.ws12{word-spacing:0.715680px;}
.ws14{word-spacing:0.757440px;}
.ws6{word-spacing:0.771600px;}
.ws33{word-spacing:0.965880px;}
.ws22{word-spacing:1.037520px;}
.ws16{word-spacing:1.109520px;}
.ws7{word-spacing:1.156080px;}
.ws31{word-spacing:1.211520px;}
.ws34{word-spacing:1.316160px;}
.ws1a{word-spacing:1.363440px;}
.ws9{word-spacing:1.538112px;}
.ws13{word-spacing:1.630080px;}
.ws1c{word-spacing:1.685880px;}
.ws2f{word-spacing:1.838400px;}
.ws32{word-spacing:1.876080px;}
.ws21{word-spacing:2.178720px;}
.ws24{word-spacing:2.188800px;}
.ws1b{word-spacing:2.361360px;}
.ws23{word-spacing:2.405880px;}
.ws20{word-spacing:2.608080px;}
.ws1f{word-spacing:2.651520px;}
.wsa{word-spacing:3.579600px;}
.ws1e{word-spacing:3.914160px;}
.ws2d{word-spacing:8.165880px;}
.ws2c{word-spacing:8.367120px;}
.ws2e{word-spacing:10.515600px;}
.ws2a{word-spacing:10.551120px;}
.ws2b{word-spacing:10.818720px;}
.ws29{word-spacing:32.921280px;}
.ws25{word-spacing:33.517440px;}
.ws27{word-spacing:34.527600px;}
.ws28{word-spacing:34.578720px;}
.ws26{word-spacing:34.995840px;}
._b{margin-left:-14.418000px;}
._7{margin-left:-10.965888px;}
._8{margin-left:-8.917200px;}
._5{margin-left:-7.668000px;}
._3{margin-left:-5.508000px;}
._9{margin-left:-4.272240px;}
._0{margin-left:-3.075840px;}
._1{margin-left:-1.537920px;}
._2{width:1.059120px;}
._6{width:2.202480px;}
._4{width:3.316032px;}
._a{width:4.674960px;}
._c{width:28.961088px;}
._e{width:31.704000px;}
._f{width:33.273120px;}
._12{width:36.455760px;}
._11{width:61.106880px;}
._10{width:62.108160px;}
._d{width:1519.547520px;}
.fc10{color:rgb(0,0,0);}
.fcf{color:rgb(46,117,182);}
.fcd{color:rgb(112,48,160);}
.fc0{color:rgb(255,255,255);}
.fc2{color:rgb(127,127,127);}
.fc3{color:rgb(166,166,166);}
.fce{color:rgb(234,26,180);}
.fc9{color:rgb(237,125,49);}
.fc1{color:rgb(192,0,0);}
.fc6{color:rgb(0,176,240);}
.fcc{color:rgb(0,112,192);}
.fc4{color:rgb(112,173,71);}
.fc5{color:rgb(35,209,180);}
.fc7{color:rgb(68,114,196);}
.fc8{color:rgb(84,130,53);}
.fc11{color:rgb(118,113,113);}
.fcb{color:rgb(72,72,72);}
.fca{color:rgb(207,109,217);}
.fs8{font-size:59.760000px;}
.fsb{font-size:59.904000px;}
.fs5{font-size:72.000000px;}
.fs12{font-size:72.144000px;}
.fs3{font-size:84.240000px;}
.fs10{font-size:84.384000px;}
.fs4{font-size:95.760000px;}
.fsa{font-size:95.904000px;}
.fs6{font-size:108.000000px;}
.fs7{font-size:108.144000px;}
.fs9{font-size:113.992645px;}
.fs2{font-size:120.240000px;}
.fs1{font-size:120.384000px;}
.fsd{font-size:144.000000px;}
.fse{font-size:144.144000px;}
.fs11{font-size:167.760000px;}
.fsf{font-size:167.904000px;}
.fs0{font-size:192.240000px;}
.fsc{font-size:192.384000px;}
.y0{bottom:0.000000px;}
.yd4{bottom:24.012000px;}
.y2c{bottom:30.024000px;}
.y7c{bottom:30.384000px;}
.y17{bottom:30.672000px;}
.y2a{bottom:33.156000px;}
.y5b{bottom:35.172000px;}
.y46{bottom:35.208000px;}
.yb5{bottom:35.784000px;}
.yc4{bottom:36.720000px;}
.y7f{bottom:39.276000px;}
.y3f{bottom:44.136000px;}
.y23{bottom:45.540000px;}
.ycf{bottom:47.664000px;}
.y58{bottom:47.772000px;}
.ye9{bottom:51.984000px;}
.y15{bottom:54.576000px;}
.y8{bottom:56.340000px;}
.y94{bottom:64.296000px;}
.ya8{bottom:64.728000px;}
.yf5{bottom:72.324000px;}
.y22{bottom:74.340000px;}
.y41{bottom:78.408000px;}
.y93{bottom:89.496000px;}
.ya7{bottom:89.964000px;}
.y67{bottom:97.380000px;}
.y57{bottom:97.848000px;}
.y21{bottom:103.140000px;}
.y14{bottom:103.212000px;}
.yc8{bottom:107.064000px;}
.y92{bottom:114.696000px;}
.y88{bottom:130.464000px;}
.ycb{bottom:131.112000px;}
.ya6{bottom:132.480000px;}
.y66{bottom:140.580000px;}
.y56{bottom:141.084000px;}
.y13{bottom:151.815000px;}
.y3b{bottom:152.490000px;}
.y87{bottom:155.670000px;}
.ya5{bottom:157.680000px;}
.y78{bottom:158.370000px;}
.y20{bottom:165.060000px;}
.y5{bottom:170.790000px;}
.yf3{bottom:172.470000px;}
.y65{bottom:179.100000px;}
.yca{bottom:179.715000px;}
.y77{bottom:183.570000px;}
.y55{bottom:184.290000px;}
.yc2{bottom:186.915000px;}
.y4b{bottom:192.810000px;}
.y7a{bottom:198.570000px;}
.y12{bottom:200.415000px;}
.y3a{bottom:201.135000px;}
.yc7{bottom:204.270000px;}
.ye2{bottom:206.850000px;}
.y3e{bottom:208.620000px;}
.y76{bottom:208.770000px;}
.ya4{bottom:211.965000px;}
.y7{bottom:216.360000px;}
.y89{bottom:218.730000px;}
.y79{bottom:223.770000px;}
.yc1{bottom:224.715000px;}
.y54{bottom:227.490000px;}
.y34{bottom:230.370000px;}
.ya3{bottom:237.165000px;}
.y4a{bottom:241.455000px;}
.yf2{bottom:243.330000px;}
.y11{bottom:249.015000px;}
.y39{bottom:249.735000px;}
.y3d{bottom:257.220000px;}
.y64{bottom:261.180000px;}
.yb4{bottom:261.435000px;}
.ya2{bottom:262.365000px;}
.yc0{bottom:262.515000px;}
.y53{bottom:270.690000px;}
.yce{bottom:276.330000px;}
.ye3{bottom:281.130000px;}
.y83{bottom:282.135000px;}
.yf1{bottom:286.560000px;}
.yb3{bottom:286.635000px;}
.y49{bottom:290.055000px;}
.y10{bottom:297.645000px;}
.ye4{bottom:297.720000px;}
.y38{bottom:298.335000px;}
.ybf{bottom:300.345000px;}
.y63{bottom:304.380000px;}
.ya1{bottom:305.250000px;}
.y3c{bottom:305.850000px;}
.yd3{bottom:311.655000px;}
.yb2{bottom:311.865000px;}
.y52{bottom:313.920000px;}
.ycd{bottom:324.930000px;}
.yf0{bottom:329.760000px;}
.ya0{bottom:330.450000px;}
.y8b{bottom:334.080000px;}
.ybe{bottom:338.145000px;}
.y48{bottom:338.655000px;}
.y35{bottom:342.690000px;}
.yf{bottom:346.245000px;}
.y37{bottom:346.965000px;}
.y62{bottom:347.580000px;}
.yb1{bottom:352.080000px;}
.y9f{bottom:355.755000px;}
.y51{bottom:357.120000px;}
.y8a{bottom:359.280000px;}
.yd2{bottom:360.255000px;}
.ydf{bottom:361.725000px;}
.y1f{bottom:369.255000px;}
.y28{bottom:369.285000px;}
.ye0{bottom:371.520000px;}
.yef{bottom:372.960000px;}
.ycc{bottom:373.575000px;}
.ybd{bottom:375.945000px;}
.yb0{bottom:377.310000px;}
.y9e{bottom:380.955000px;}
.y61{bottom:386.130000px;}
.y47{bottom:387.285000px;}
.y75{bottom:393.225000px;}
.y6d{bottom:393.375000px;}
.y86{bottom:393.690000px;}
.ye{bottom:394.845000px;}
.y4{bottom:395.490000px;}
.y1e{bottom:398.055000px;}
.y27{bottom:398.085000px;}
.y50{bottom:400.320000px;}
.yaf{bottom:402.510000px;}
.yd1{bottom:408.855000px;}
.ybc{bottom:413.745000px;}
.y9d{bottom:414.465000px;}
.yee{bottom:416.160000px;}
.y74{bottom:418.425000px;}
.y6c{bottom:418.575000px;}
.y85{bottom:418.890000px;}
.y1d{bottom:426.885000px;}
.y26{bottom:426.930000px;}
.y71{bottom:434.880000px;}
.y19{bottom:435.090000px;}
.y9c{bottom:439.665000px;}
.yaa{bottom:440.070000px;}
.ye5{bottom:443.160000px;}
.yd{bottom:443.490000px;}
.y4f{bottom:443.520000px;}
.y73{bottom:443.670000px;}
.y6b{bottom:443.775000px;}
.y84{bottom:444.135000px;}
.ye1{bottom:444.570000px;}
.y33{bottom:449.250000px;}
.ybb{bottom:451.590000px;}
.ydb{bottom:451.800000px;}
.y1c{bottom:455.685000px;}
.yd0{bottom:457.455000px;}
.y8c{bottom:463.395000px;}
.ya9{bottom:465.270000px;}
.y60{bottom:470.700000px;}
.y9b{bottom:485.670000px;}
.y45{bottom:486.750000px;}
.y25{bottom:488.850000px;}
.yba{bottom:489.390000px;}
.yc{bottom:492.090000px;}
.y32{bottom:497.850000px;}
.yda{bottom:500.400000px;}
.ye7{bottom:505.800000px;}
.yae{bottom:506.160000px;}
.y36{bottom:508.350000px;}
.y9a{bottom:510.870000px;}
.y5f{bottom:513.930000px;}
.y1b{bottom:517.605000px;}
.yed{bottom:520.020000px;}
.y24{bottom:521.250000px;}
.yb9{bottom:527.190000px;}
.y4e{bottom:529.950000px;}
.y82{bottom:531.360000px;}
.y44{bottom:535.350000px;}
.yb{bottom:540.690000px;}
.y31{bottom:546.450000px;}
.yd9{bottom:549.000000px;}
.y99{bottom:551.730000px;}
.y81{bottom:556.560000px;}
.y5e{bottom:557.130000px;}
.y3{bottom:559.005000px;}
.y90{bottom:562.215000px;}
.yec{bottom:563.220000px;}
.yb8{bottom:564.990000px;}
.yad{bottom:573.915000px;}
.ye6{bottom:576.180000px;}
.y98{bottom:576.930000px;}
.y59{bottom:578.130000px;}
.y8d{bottom:581.610000px;}
.y80{bottom:581.760000px;}
.yde{bottom:583.845000px;}
.y43{bottom:583.950000px;}
.y70{bottom:584.490000px;}
.y8f{bottom:587.445000px;}
.ya{bottom:589.320000px;}
.y72{bottom:594.075000px;}
.y30{bottom:595.080000px;}
.y5d{bottom:595.650000px;}
.yd8{bottom:597.600000px;}
.yac{bottom:599.115000px;}
.y2{bottom:599.685000px;}
.y29{bottom:605.310000px;}
.y6f{bottom:609.690000px;}
.y8e{bottom:612.645000px;}
.yc3{bottom:613.080000px;}
.y6a{bottom:619.275000px;}
.y97{bottom:620.640000px;}
.yc9{bottom:627.870000px;}
.ydd{bottom:632.490000px;}
.y6e{bottom:634.935000px;}
.y9{bottom:637.920000px;}
.y69{bottom:644.475000px;}
.yd7{bottom:646.230000px;}
.y96{bottom:649.440000px;}
.yab{bottom:653.145000px;}
.y1{bottom:657.285000px;}
.yeb{bottom:659.415000px;}
.y4d{bottom:674.670000px;}
.y2e{bottom:675.570000px;}
.y5c{bottom:677.550000px;}
.ydc{bottom:681.090000px;}
.yb7{bottom:683.640000px;}
.y7e{bottom:684.435000px;}
.y2f{bottom:686.055000px;}
.ye8{bottom:687.315000px;}
.y42{bottom:687.570000px;}
.yc6{bottom:694.365000px;}
.yd6{bottom:694.830000px;}
.y1a{bottom:694.980000px;}
.y18{bottom:699.300000px;}
.y7b{bottom:709.020000px;}
.y95{bottom:714.990000px;}
.y6{bottom:755.640000px;}
.y40{bottom:761.760000px;}
.y68{bottom:764.895000px;}
.y5a{bottom:767.055000px;}
.yf4{bottom:767.775000px;}
.y2b{bottom:768.630000px;}
.y2d{bottom:769.470000px;}
.y4c{bottom:769.785000px;}
.y16{bottom:771.300000px;}
.y7d{bottom:776.370000px;}
.yc5{bottom:776.880000px;}
.yea{bottom:777.090000px;}
.y91{bottom:777.450000px;}
.yd5{bottom:779.730000px;}
.yb6{bottom:782.070000px;}
.ha{height:62.327813px;}
.h10{height:62.478000px;}
.h1a{height:68.824080px;}
.h1b{height:68.941728px;}
.h1f{height:72.007031px;}
.h7{height:75.093750px;}
.h19{height:78.235920px;}
.h1c{height:78.353568px;}
.h14{height:81.210938px;}
.hc{height:81.319219px;}
.h5{height:83.787539px;}
.h16{height:86.255508px;}
.h17{height:86.402953px;}
.h1d{height:87.859687px;}
.h1e{height:88.009875px;}
.hd{height:93.131991px;}
.h6{height:98.051133px;}
.he{height:99.874688px;}
.hf{height:100.024875px;}
.h8{height:112.640625px;}
.h9{height:112.790813px;}
.h2{height:119.737406px;}
.h3{height:123.116836px;}
.h4{height:123.264281px;}
.h12{height:143.226562px;}
.h13{height:143.369789px;}
.h18{height:174.968437px;}
.h15{height:175.118625px;}
.h1{height:196.839492px;}
.hb{height:200.500313px;}
.h11{height:200.650500px;}
.h0{height:810.000000px;}
.w1{width:1439.999979px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x62{left:23.939979px;}
.xa{left:26.639979px;}
.x2f{left:28.187979px;}
.x34{left:29.915979px;}
.x40{left:31.175979px;}
.x21{left:34.379979px;}
.x3c{left:35.495979px;}
.x2b{left:36.899979px;}
.x3f{left:47.879979px;}
.x86{left:52.739979px;}
.x8b{left:56.771979px;}
.x38{left:59.003979px;}
.x99{left:61.019979px;}
.x33{left:64.907979px;}
.x8a{left:70.271979px;}
.x92{left:72.503979px;}
.x41{left:77.255979px;}
.x4d{left:79.559979px;}
.x9e{left:84.491979px;}
.x80{left:86.291979px;}
.x89{left:88.991979px;}
.x4e{left:91.259979px;}
.x31{left:102.671979px;}
.x6c{left:110.267979px;}
.x23{left:113.579979px;}
.x6e{left:114.623979px;}
.x29{left:118.151979px;}
.x6f{left:120.203979px;}
.x2d{left:132.191979px;}
.x12{left:144.935979px;}
.x6a{left:147.959979px;}
.x71{left:152.534979px;}
.x10{left:155.909979px;}
.x30{left:171.824979px;}
.x14{left:179.489979px;}
.x68{left:181.619979px;}
.x13{left:189.749979px;}
.x9{left:193.034979px;}
.x37{left:195.809979px;}
.x66{left:203.399979px;}
.x11{left:205.049979px;}
.x94{left:207.899979px;}
.x42{left:210.989979px;}
.x69{left:216.359979px;}
.x6{left:224.714979px;}
.x39{left:226.589979px;}
.x43{left:237.449979px;}
.x5e{left:248.579979px;}
.x44{left:252.929979px;}
.x63{left:254.729979px;}
.x70{left:259.709979px;}
.x64{left:273.089979px;}
.x5d{left:274.889979px;}
.x7f{left:285.659979px;}
.x9f{left:290.189979px;}
.x72{left:291.524979px;}
.x65{left:318.269979px;}
.x67{left:319.679979px;}
.x53{left:322.559979px;}
.x95{left:325.364979px;}
.x5f{left:336.524979px;}
.x6d{left:342.149979px;}
.x1e{left:350.309979px;}
.x22{left:351.569979px;}
.x1{left:353.624979px;}
.x3a{left:373.139979px;}
.x83{left:374.249979px;}
.x6b{left:385.049979px;}
.x55{left:417.599979px;}
.x5{left:426.494979px;}
.x4{left:453.704979px;}
.x36{left:456.584979px;}
.x97{left:469.109979px;}
.x96{left:483.764979px;}
.x85{left:488.264979px;}
.x2{left:489.929979px;}
.x3b{left:497.414979px;}
.x26{left:503.714979px;}
.x3{left:505.049979px;}
.xc{left:514.949979px;}
.x88{left:517.604979px;}
.x2c{left:541.409979px;}
.x45{left:550.724979px;}
.x7{left:553.424979px;}
.x3e{left:555.014979px;}
.x16{left:559.799979px;}
.x9d{left:563.654979px;}
.xf{left:572.474979px;}
.x18{left:578.729979px;}
.x3d{left:586.004979px;}
.x15{left:592.769979px;}
.x17{left:598.529979px;}
.x9a{left:603.929979px;}
.x60{left:641.594979px;}
.x98{left:649.409979px;}
.x61{left:659.594979px;}
.x46{left:669.704979px;}
.x27{left:679.349979px;}
.x25{left:688.679979px;}
.x4f{left:698.294979px;}
.x7a{left:720.614979px;}
.x73{left:728.099979px;}
.x50{left:737.354979px;}
.x79{left:740.414979px;}
.x77{left:748.439979px;}
.x7c{left:752.939979px;}
.x75{left:765.179979px;}
.x81{left:778.649979px;}
.x76{left:780.374979px;}
.x78{left:787.499979px;}
.x93{left:798.839979px;}
.x74{left:801.749979px;}
.x8{left:852.044979px;}
.xd{left:892.769979px;}
.x24{left:914.429979px;}
.xe{left:919.769979px;}
.x1b{left:932.114979px;}
.x1c{left:938.774979px;}
.x7d{left:952.559979px;}
.x7b{left:954.434979px;}
.x48{left:988.994979px;}
.x47{left:991.874979px;}
.x58{left:994.574979px;}
.x59{left:996.014979px;}
.x20{left:999.569979px;}
.x57{left:1001.054979px;}
.x1a{left:1004.834979px;}
.x19{left:1012.214979px;}
.x1d{left:1014.554979px;}
.x52{left:1016.609979px;}
.x28{left:1030.034979px;}
.x82{left:1035.509979px;}
.x51{left:1038.029979px;}
.x2a{left:1041.374979px;}
.x49{left:1043.534979px;}
.x1f{left:1057.244979px;}
.x7e{left:1058.909979px;}
.x5c{left:1073.189979px;}
.x54{left:1075.469979px;}
.x9b{left:1077.509979px;}
.x5a{left:1082.909979px;}
.x56{left:1084.529979px;}
.x2e{left:1087.274979px;}
.x5b{left:1090.289979px;}
.x35{left:1092.884979px;}
.x4b{left:1126.004979px;}
.x8c{left:1127.669979px;}
.x8d{left:1144.409979px;}
.x8e{left:1153.229979px;}
.x32{left:1160.564979px;}
.x4a{left:1164.704979px;}
.x87{left:1171.979979px;}
.x9c{left:1173.419979px;}
.x84{left:1176.269979px;}
.x90{left:1182.569979px;}
.x8f{left:1185.449979px;}
.x91{left:1187.969979px;}
.x4c{left:1195.304979px;}
.xb{left:1200.209979px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls9{letter-spacing:-0.185067pt;}
.ls3{letter-spacing:-0.168533pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.016640pt;}
.ls1{letter-spacing:0.033280pt;}
.ls5{letter-spacing:0.111872pt;}
.ls4{letter-spacing:0.161920pt;}
.lsd{letter-spacing:0.454933pt;}
.ls8{letter-spacing:0.624000pt;}
.ls7{letter-spacing:0.656000pt;}
.lsa{letter-spacing:1.600000pt;}
.lsc{letter-spacing:1.877333pt;}
.ls2{letter-spacing:26.896640pt;}
.ws3{word-spacing:-47.504640pt;}
.ws4{word-spacing:-28.928000pt;}
.wsf{word-spacing:-26.723584pt;}
.ws2{word-spacing:-26.688000pt;}
.ws0{word-spacing:-24.154880pt;}
.ws5{word-spacing:-23.663360pt;}
.wsc{word-spacing:-21.527296pt;}
.wsd{word-spacing:-21.490560pt;}
.wse{word-spacing:-20.816640pt;}
.wsb{word-spacing:-16.922880pt;}
.ws1d{word-spacing:-3.840000pt;}
.ws15{word-spacing:-1.838720pt;}
.ws19{word-spacing:-0.540800pt;}
.ws11{word-spacing:-0.183040pt;}
.ws1{word-spacing:0.000000pt;}
.ws17{word-spacing:0.353280pt;}
.ws10{word-spacing:0.386560pt;}
.ws18{word-spacing:0.421760pt;}
.ws30{word-spacing:0.470613pt;}
.ws8{word-spacing:0.578987pt;}
.ws12{word-spacing:0.636160pt;}
.ws14{word-spacing:0.673280pt;}
.ws6{word-spacing:0.685867pt;}
.ws33{word-spacing:0.858560pt;}
.ws22{word-spacing:0.922240pt;}
.ws16{word-spacing:0.986240pt;}
.ws7{word-spacing:1.027627pt;}
.ws31{word-spacing:1.076907pt;}
.ws34{word-spacing:1.169920pt;}
.ws1a{word-spacing:1.211947pt;}
.ws9{word-spacing:1.367211pt;}
.ws13{word-spacing:1.448960pt;}
.ws1c{word-spacing:1.498560pt;}
.ws2f{word-spacing:1.634133pt;}
.ws32{word-spacing:1.667627pt;}
.ws21{word-spacing:1.936640pt;}
.ws24{word-spacing:1.945600pt;}
.ws1b{word-spacing:2.098987pt;}
.ws23{word-spacing:2.138560pt;}
.ws20{word-spacing:2.318293pt;}
.ws1f{word-spacing:2.356907pt;}
.wsa{word-spacing:3.181867pt;}
.ws1e{word-spacing:3.479253pt;}
.ws2d{word-spacing:7.258560pt;}
.ws2c{word-spacing:7.437440pt;}
.ws2e{word-spacing:9.347200pt;}
.ws2a{word-spacing:9.378773pt;}
.ws2b{word-spacing:9.616640pt;}
.ws29{word-spacing:29.263360pt;}
.ws25{word-spacing:29.793280pt;}
.ws27{word-spacing:30.691200pt;}
.ws28{word-spacing:30.736640pt;}
.ws26{word-spacing:31.107413pt;}
._b{margin-left:-12.816000pt;}
._7{margin-left:-9.747456pt;}
._8{margin-left:-7.926400pt;}
._5{margin-left:-6.816000pt;}
._3{margin-left:-4.896000pt;}
._9{margin-left:-3.797547pt;}
._0{margin-left:-2.734080pt;}
._1{margin-left:-1.367040pt;}
._2{width:0.941440pt;}
._6{width:1.957760pt;}
._4{width:2.947584pt;}
._a{width:4.155520pt;}
._c{width:25.743189pt;}
._e{width:28.181333pt;}
._f{width:29.576107pt;}
._12{width:32.405120pt;}
._11{width:54.317227pt;}
._10{width:55.207253pt;}
._d{width:1350.708907pt;}
.fs8{font-size:53.120000pt;}
.fsb{font-size:53.248000pt;}
.fs5{font-size:64.000000pt;}
.fs12{font-size:64.128000pt;}
.fs3{font-size:74.880000pt;}
.fs10{font-size:75.008000pt;}
.fs4{font-size:85.120000pt;}
.fsa{font-size:85.248000pt;}
.fs6{font-size:96.000000pt;}
.fs7{font-size:96.128000pt;}
.fs9{font-size:101.326796pt;}
.fs2{font-size:106.880000pt;}
.fs1{font-size:107.008000pt;}
.fsd{font-size:128.000000pt;}
.fse{font-size:128.128000pt;}
.fs11{font-size:149.120000pt;}
.fsf{font-size:149.248000pt;}
.fs0{font-size:170.880000pt;}
.fsc{font-size:171.008000pt;}
.y0{bottom:0.000000pt;}
.yd4{bottom:21.344000pt;}
.y2c{bottom:26.688000pt;}
.y7c{bottom:27.008000pt;}
.y17{bottom:27.264000pt;}
.y2a{bottom:29.472000pt;}
.y5b{bottom:31.264000pt;}
.y46{bottom:31.296000pt;}
.yb5{bottom:31.808000pt;}
.yc4{bottom:32.640000pt;}
.y7f{bottom:34.912000pt;}
.y3f{bottom:39.232000pt;}
.y23{bottom:40.480000pt;}
.ycf{bottom:42.368000pt;}
.y58{bottom:42.464000pt;}
.ye9{bottom:46.208000pt;}
.y15{bottom:48.512000pt;}
.y8{bottom:50.080000pt;}
.y94{bottom:57.152000pt;}
.ya8{bottom:57.536000pt;}
.yf5{bottom:64.288000pt;}
.y22{bottom:66.080000pt;}
.y41{bottom:69.696000pt;}
.y93{bottom:79.552000pt;}
.ya7{bottom:79.968000pt;}
.y67{bottom:86.560000pt;}
.y57{bottom:86.976000pt;}
.y21{bottom:91.680000pt;}
.y14{bottom:91.744000pt;}
.yc8{bottom:95.168000pt;}
.y92{bottom:101.952000pt;}
.y88{bottom:115.968000pt;}
.ycb{bottom:116.544000pt;}
.ya6{bottom:117.760000pt;}
.y66{bottom:124.960000pt;}
.y56{bottom:125.408000pt;}
.y13{bottom:134.946667pt;}
.y3b{bottom:135.546667pt;}
.y87{bottom:138.373333pt;}
.ya5{bottom:140.160000pt;}
.y78{bottom:140.773333pt;}
.y20{bottom:146.720000pt;}
.y5{bottom:151.813333pt;}
.yf3{bottom:153.306667pt;}
.y65{bottom:159.200000pt;}
.yca{bottom:159.746667pt;}
.y77{bottom:163.173333pt;}
.y55{bottom:163.813333pt;}
.yc2{bottom:166.146667pt;}
.y4b{bottom:171.386667pt;}
.y7a{bottom:176.506667pt;}
.y12{bottom:178.146667pt;}
.y3a{bottom:178.786667pt;}
.yc7{bottom:181.573333pt;}
.ye2{bottom:183.866667pt;}
.y3e{bottom:185.440000pt;}
.y76{bottom:185.573333pt;}
.ya4{bottom:188.413333pt;}
.y7{bottom:192.320000pt;}
.y89{bottom:194.426667pt;}
.y79{bottom:198.906667pt;}
.yc1{bottom:199.746667pt;}
.y54{bottom:202.213333pt;}
.y34{bottom:204.773333pt;}
.ya3{bottom:210.813333pt;}
.y4a{bottom:214.626667pt;}
.yf2{bottom:216.293333pt;}
.y11{bottom:221.346667pt;}
.y39{bottom:221.986667pt;}
.y3d{bottom:228.640000pt;}
.y64{bottom:232.160000pt;}
.yb4{bottom:232.386667pt;}
.ya2{bottom:233.213333pt;}
.yc0{bottom:233.346667pt;}
.y53{bottom:240.613333pt;}
.yce{bottom:245.626667pt;}
.ye3{bottom:249.893333pt;}
.y83{bottom:250.786667pt;}
.yf1{bottom:254.720000pt;}
.yb3{bottom:254.786667pt;}
.y49{bottom:257.826667pt;}
.y10{bottom:264.573333pt;}
.ye4{bottom:264.640000pt;}
.y38{bottom:265.186667pt;}
.ybf{bottom:266.973333pt;}
.y63{bottom:270.560000pt;}
.ya1{bottom:271.333333pt;}
.y3c{bottom:271.866667pt;}
.yd3{bottom:277.026667pt;}
.yb2{bottom:277.213333pt;}
.y52{bottom:279.040000pt;}
.ycd{bottom:288.826667pt;}
.yf0{bottom:293.120000pt;}
.ya0{bottom:293.733333pt;}
.y8b{bottom:296.960000pt;}
.ybe{bottom:300.573333pt;}
.y48{bottom:301.026667pt;}
.y35{bottom:304.613333pt;}
.yf{bottom:307.773333pt;}
.y37{bottom:308.413333pt;}
.y62{bottom:308.960000pt;}
.yb1{bottom:312.960000pt;}
.y9f{bottom:316.226667pt;}
.y51{bottom:317.440000pt;}
.y8a{bottom:319.360000pt;}
.yd2{bottom:320.226667pt;}
.ydf{bottom:321.533333pt;}
.y1f{bottom:328.226667pt;}
.y28{bottom:328.253333pt;}
.ye0{bottom:330.240000pt;}
.yef{bottom:331.520000pt;}
.ycc{bottom:332.066667pt;}
.ybd{bottom:334.173333pt;}
.yb0{bottom:335.386667pt;}
.y9e{bottom:338.626667pt;}
.y61{bottom:343.226667pt;}
.y47{bottom:344.253333pt;}
.y75{bottom:349.533333pt;}
.y6d{bottom:349.666667pt;}
.y86{bottom:349.946667pt;}
.ye{bottom:350.973333pt;}
.y4{bottom:351.546667pt;}
.y1e{bottom:353.826667pt;}
.y27{bottom:353.853333pt;}
.y50{bottom:355.840000pt;}
.yaf{bottom:357.786667pt;}
.yd1{bottom:363.426667pt;}
.ybc{bottom:367.773333pt;}
.y9d{bottom:368.413333pt;}
.yee{bottom:369.920000pt;}
.y74{bottom:371.933333pt;}
.y6c{bottom:372.066667pt;}
.y85{bottom:372.346667pt;}
.y1d{bottom:379.453333pt;}
.y26{bottom:379.493333pt;}
.y71{bottom:386.560000pt;}
.y19{bottom:386.746667pt;}
.y9c{bottom:390.813333pt;}
.yaa{bottom:391.173333pt;}
.ye5{bottom:393.920000pt;}
.yd{bottom:394.213333pt;}
.y4f{bottom:394.240000pt;}
.y73{bottom:394.373333pt;}
.y6b{bottom:394.466667pt;}
.y84{bottom:394.786667pt;}
.ye1{bottom:395.173333pt;}
.y33{bottom:399.333333pt;}
.ybb{bottom:401.413333pt;}
.ydb{bottom:401.600000pt;}
.y1c{bottom:405.053333pt;}
.yd0{bottom:406.626667pt;}
.y8c{bottom:411.906667pt;}
.ya9{bottom:413.573333pt;}
.y60{bottom:418.400000pt;}
.y9b{bottom:431.706667pt;}
.y45{bottom:432.666667pt;}
.y25{bottom:434.533333pt;}
.yba{bottom:435.013333pt;}
.yc{bottom:437.413333pt;}
.y32{bottom:442.533333pt;}
.yda{bottom:444.800000pt;}
.ye7{bottom:449.600000pt;}
.yae{bottom:449.920000pt;}
.y36{bottom:451.866667pt;}
.y9a{bottom:454.106667pt;}
.y5f{bottom:456.826667pt;}
.y1b{bottom:460.093333pt;}
.yed{bottom:462.240000pt;}
.y24{bottom:463.333333pt;}
.yb9{bottom:468.613333pt;}
.y4e{bottom:471.066667pt;}
.y82{bottom:472.320000pt;}
.y44{bottom:475.866667pt;}
.yb{bottom:480.613333pt;}
.y31{bottom:485.733333pt;}
.yd9{bottom:488.000000pt;}
.y99{bottom:490.426667pt;}
.y81{bottom:494.720000pt;}
.y5e{bottom:495.226667pt;}
.y3{bottom:496.893333pt;}
.y90{bottom:499.746667pt;}
.yec{bottom:500.640000pt;}
.yb8{bottom:502.213333pt;}
.yad{bottom:510.146667pt;}
.ye6{bottom:512.160000pt;}
.y98{bottom:512.826667pt;}
.y59{bottom:513.893333pt;}
.y8d{bottom:516.986667pt;}
.y80{bottom:517.120000pt;}
.yde{bottom:518.973333pt;}
.y43{bottom:519.066667pt;}
.y70{bottom:519.546667pt;}
.y8f{bottom:522.173333pt;}
.ya{bottom:523.840000pt;}
.y72{bottom:528.066667pt;}
.y30{bottom:528.960000pt;}
.y5d{bottom:529.466667pt;}
.yd8{bottom:531.200000pt;}
.yac{bottom:532.546667pt;}
.y2{bottom:533.053333pt;}
.y29{bottom:538.053333pt;}
.y6f{bottom:541.946667pt;}
.y8e{bottom:544.573333pt;}
.yc3{bottom:544.960000pt;}
.y6a{bottom:550.466667pt;}
.y97{bottom:551.680000pt;}
.yc9{bottom:558.106667pt;}
.ydd{bottom:562.213333pt;}
.y6e{bottom:564.386667pt;}
.y9{bottom:567.040000pt;}
.y69{bottom:572.866667pt;}
.yd7{bottom:574.426667pt;}
.y96{bottom:577.280000pt;}
.yab{bottom:580.573333pt;}
.y1{bottom:584.253333pt;}
.yeb{bottom:586.146667pt;}
.y4d{bottom:599.706667pt;}
.y2e{bottom:600.506667pt;}
.y5c{bottom:602.266667pt;}
.ydc{bottom:605.413333pt;}
.yb7{bottom:607.680000pt;}
.y7e{bottom:608.386667pt;}
.y2f{bottom:609.826667pt;}
.ye8{bottom:610.946667pt;}
.y42{bottom:611.173333pt;}
.yc6{bottom:617.213333pt;}
.yd6{bottom:617.626667pt;}
.y1a{bottom:617.760000pt;}
.y18{bottom:621.600000pt;}
.y7b{bottom:630.240000pt;}
.y95{bottom:635.546667pt;}
.y6{bottom:671.680000pt;}
.y40{bottom:677.120000pt;}
.y68{bottom:679.906667pt;}
.y5a{bottom:681.826667pt;}
.yf4{bottom:682.466667pt;}
.y2b{bottom:683.226667pt;}
.y2d{bottom:683.973333pt;}
.y4c{bottom:684.253333pt;}
.y16{bottom:685.600000pt;}
.y7d{bottom:690.106667pt;}
.yc5{bottom:690.560000pt;}
.yea{bottom:690.746667pt;}
.y91{bottom:691.066667pt;}
.yd5{bottom:693.093333pt;}
.yb6{bottom:695.173333pt;}
.ha{height:55.402500pt;}
.h10{height:55.536000pt;}
.h1a{height:61.176960pt;}
.h1b{height:61.281536pt;}
.h1f{height:64.006250pt;}
.h7{height:66.750000pt;}
.h19{height:69.543040pt;}
.h1c{height:69.647616pt;}
.h14{height:72.187500pt;}
.hc{height:72.283750pt;}
.h5{height:74.477812pt;}
.h16{height:76.671562pt;}
.h17{height:76.802625pt;}
.h1d{height:78.097500pt;}
.h1e{height:78.231000pt;}
.hd{height:82.783992pt;}
.h6{height:87.156562pt;}
.he{height:88.777500pt;}
.hf{height:88.911000pt;}
.h8{height:100.125000pt;}
.h9{height:100.258500pt;}
.h2{height:106.433250pt;}
.h3{height:109.437187pt;}
.h4{height:109.568250pt;}
.h12{height:127.312500pt;}
.h13{height:127.439813pt;}
.h18{height:155.527500pt;}
.h15{height:155.661000pt;}
.h1{height:174.968437pt;}
.hb{height:178.222500pt;}
.h11{height:178.356000pt;}
.h0{height:720.000000pt;}
.w1{width:1279.999981pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x62{left:21.279981pt;}
.xa{left:23.679981pt;}
.x2f{left:25.055981pt;}
.x34{left:26.591981pt;}
.x40{left:27.711981pt;}
.x21{left:30.559981pt;}
.x3c{left:31.551981pt;}
.x2b{left:32.799981pt;}
.x3f{left:42.559981pt;}
.x86{left:46.879981pt;}
.x8b{left:50.463981pt;}
.x38{left:52.447981pt;}
.x99{left:54.239981pt;}
.x33{left:57.695981pt;}
.x8a{left:62.463981pt;}
.x92{left:64.447981pt;}
.x41{left:68.671981pt;}
.x4d{left:70.719981pt;}
.x9e{left:75.103981pt;}
.x80{left:76.703981pt;}
.x89{left:79.103981pt;}
.x4e{left:81.119981pt;}
.x31{left:91.263981pt;}
.x6c{left:98.015981pt;}
.x23{left:100.959981pt;}
.x6e{left:101.887981pt;}
.x29{left:105.023981pt;}
.x6f{left:106.847981pt;}
.x2d{left:117.503981pt;}
.x12{left:128.831981pt;}
.x6a{left:131.519981pt;}
.x71{left:135.586648pt;}
.x10{left:138.586648pt;}
.x30{left:152.733314pt;}
.x14{left:159.546648pt;}
.x68{left:161.439981pt;}
.x13{left:168.666648pt;}
.x9{left:171.586648pt;}
.x37{left:174.053314pt;}
.x66{left:180.799981pt;}
.x11{left:182.266648pt;}
.x94{left:184.799981pt;}
.x42{left:187.546648pt;}
.x69{left:192.319981pt;}
.x6{left:199.746648pt;}
.x39{left:201.413314pt;}
.x43{left:211.066648pt;}
.x5e{left:220.959981pt;}
.x44{left:224.826648pt;}
.x63{left:226.426648pt;}
.x70{left:230.853314pt;}
.x64{left:242.746648pt;}
.x5d{left:244.346648pt;}
.x7f{left:253.919981pt;}
.x9f{left:257.946648pt;}
.x72{left:259.133314pt;}
.x65{left:282.906648pt;}
.x67{left:284.159981pt;}
.x53{left:286.719981pt;}
.x95{left:289.213314pt;}
.x5f{left:299.133314pt;}
.x6d{left:304.133314pt;}
.x1e{left:311.386648pt;}
.x22{left:312.506648pt;}
.x1{left:314.333314pt;}
.x3a{left:331.679981pt;}
.x83{left:332.666648pt;}
.x6b{left:342.266648pt;}
.x55{left:371.199981pt;}
.x5{left:379.106648pt;}
.x4{left:403.293314pt;}
.x36{left:405.853314pt;}
.x97{left:416.986648pt;}
.x96{left:430.013314pt;}
.x85{left:434.013314pt;}
.x2{left:435.493314pt;}
.x3b{left:442.146648pt;}
.x26{left:447.746648pt;}
.x3{left:448.933314pt;}
.xc{left:457.733314pt;}
.x88{left:460.093314pt;}
.x2c{left:481.253314pt;}
.x45{left:489.533314pt;}
.x7{left:491.933314pt;}
.x3e{left:493.346648pt;}
.x16{left:497.599981pt;}
.x9d{left:501.026648pt;}
.xf{left:508.866648pt;}
.x18{left:514.426648pt;}
.x3d{left:520.893314pt;}
.x15{left:526.906648pt;}
.x17{left:532.026648pt;}
.x9a{left:536.826648pt;}
.x60{left:570.306648pt;}
.x98{left:577.253314pt;}
.x61{left:586.306648pt;}
.x46{left:595.293314pt;}
.x27{left:603.866648pt;}
.x25{left:612.159981pt;}
.x4f{left:620.706648pt;}
.x7a{left:640.546648pt;}
.x73{left:647.199981pt;}
.x50{left:655.426648pt;}
.x79{left:658.146648pt;}
.x77{left:665.279981pt;}
.x7c{left:669.279981pt;}
.x75{left:680.159981pt;}
.x81{left:692.133314pt;}
.x76{left:693.666648pt;}
.x78{left:699.999981pt;}
.x93{left:710.079981pt;}
.x74{left:712.666648pt;}
.x8{left:757.373314pt;}
.xd{left:793.573314pt;}
.x24{left:812.826648pt;}
.xe{left:817.573314pt;}
.x1b{left:828.546648pt;}
.x1c{left:834.466648pt;}
.x7d{left:846.719981pt;}
.x7b{left:848.386648pt;}
.x48{left:879.106648pt;}
.x47{left:881.666648pt;}
.x58{left:884.066648pt;}
.x59{left:885.346648pt;}
.x20{left:888.506648pt;}
.x57{left:889.826648pt;}
.x1a{left:893.186648pt;}
.x19{left:899.746648pt;}
.x1d{left:901.826648pt;}
.x52{left:903.653314pt;}
.x28{left:915.586648pt;}
.x82{left:920.453314pt;}
.x51{left:922.693314pt;}
.x2a{left:925.666648pt;}
.x49{left:927.586648pt;}
.x1f{left:939.773314pt;}
.x7e{left:941.253314pt;}
.x5c{left:953.946648pt;}
.x54{left:955.973314pt;}
.x9b{left:957.786648pt;}
.x5a{left:962.586648pt;}
.x56{left:964.026648pt;}
.x2e{left:966.466648pt;}
.x5b{left:969.146648pt;}
.x35{left:971.453314pt;}
.x4b{left:1000.893314pt;}
.x8c{left:1002.373314pt;}
.x8d{left:1017.253314pt;}
.x8e{left:1025.093314pt;}
.x32{left:1031.613314pt;}
.x4a{left:1035.293314pt;}
.x87{left:1041.759981pt;}
.x9c{left:1043.039981pt;}
.x84{left:1045.573314pt;}
.x90{left:1051.173314pt;}
.x8f{left:1053.733314pt;}
.x91{left:1055.973314pt;}
.x4c{left:1062.493314pt;}
.xb{left:1066.853314pt;}
}




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