
    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_e4eee95b12933bbe58511ab5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.171000;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_4cc9714d40c1816df30e4319.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.008000;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_32d66d45d2c5c5734da2879a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.941000;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_b8bdb202fb3a2eafff89bf55.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.744000;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_5e02e88a1328b735fca67ce1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.056000;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_014a476d75b08c16382564cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914000;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_b064c0bdefc7ddb096689714.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.008000;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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-2.550000px;}
.ls2{letter-spacing:-2.016000px;}
.ls6{letter-spacing:-0.576000px;}
.ls4{letter-spacing:-0.288000px;}
.ls8{letter-spacing:-0.270000px;}
.lsa{letter-spacing:-0.255000px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.204000px;}
.ls9{letter-spacing:0.255000px;}
.ls5{letter-spacing:0.288000px;}
.lse{letter-spacing:0.561000px;}
.ls7{letter-spacing:0.594000px;}
.ls0{letter-spacing:0.864000px;}
.lsd{letter-spacing:0.867000px;}
.ls3{letter-spacing:0.918000px;}
.lsb{letter-spacing:2.958000px;}
.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;}
}
.ws0{word-spacing:-20.016000px;}
.wsd{word-spacing:-15.930000px;}
.ws52{word-spacing:-15.012000px;}
.ws66{word-spacing:-14.742000px;}
.wsb0{word-spacing:-14.433000px;}
.ws43{word-spacing:-14.208000px;}
.wsa0{word-spacing:-14.178000px;}
.ws1{word-spacing:-14.011200px;}
.ws9f{word-spacing:-13.923000px;}
.wse{word-spacing:-12.480000px;}
.wsb1{word-spacing:-11.628000px;}
.wsf{word-spacing:-8.736000px;}
.ws8f{word-spacing:-6.426000px;}
.ws95{word-spacing:-6.210000px;}
.ws6{word-spacing:-5.886000px;}
.ws1b{word-spacing:-3.780000px;}
.ws2e{word-spacing:-3.726000px;}
.wsa{word-spacing:-3.186000px;}
.ws5e{word-spacing:-3.132000px;}
.ws4a{word-spacing:-2.970000px;}
.wsaf{word-spacing:-2.958000px;}
.ws8b{word-spacing:-2.862000px;}
.ws32{word-spacing:-2.538000px;}
.ws37{word-spacing:-2.376000px;}
.ws78{word-spacing:-1.836000px;}
.ws1e{word-spacing:-1.512000px;}
.ws9c{word-spacing:-1.458000px;}
.ws18{word-spacing:-1.296000px;}
.wsa5{word-spacing:-1.188000px;}
.ws13{word-spacing:-1.026000px;}
.ws54{word-spacing:-0.972000px;}
.ws12{word-spacing:-0.918000px;}
.ws5{word-spacing:-0.864000px;}
.ws1c{word-spacing:-0.756000px;}
.ws4d{word-spacing:-0.672000px;}
.ws3b{word-spacing:-0.648000px;}
.ws62{word-spacing:-0.594000px;}
.ws6c{word-spacing:-0.486000px;}
.ws3e{word-spacing:-0.324000px;}
.ws4e{word-spacing:-0.288000px;}
.wsa2{word-spacing:-0.270000px;}
.wsb6{word-spacing:-0.255000px;}
.ws2{word-spacing:0.000000px;}
.wsc{word-spacing:0.162000px;}
.wsa7{word-spacing:0.255000px;}
.ws6d{word-spacing:0.270000px;}
.wsb{word-spacing:0.486000px;}
.wsaa{word-spacing:0.561000px;}
.ws50{word-spacing:0.576000px;}
.ws45{word-spacing:0.648000px;}
.wsa9{word-spacing:0.867000px;}
.ws8d{word-spacing:0.972000px;}
.ws87{word-spacing:1.080000px;}
.ws4b{word-spacing:1.104000px;}
.ws1a{word-spacing:1.134000px;}
.ws5a{word-spacing:1.620000px;}
.ws86{word-spacing:1.674000px;}
.ws88{word-spacing:1.728000px;}
.wsa8{word-spacing:1.734000px;}
.ws9a{word-spacing:1.776000px;}
.ws3c{word-spacing:1.890000px;}
.ws64{word-spacing:1.944000px;}
.ws7a{word-spacing:1.998000px;}
.ws1f{word-spacing:2.016000px;}
.wsab{word-spacing:2.040000px;}
.ws42{word-spacing:2.064000px;}
.ws38{word-spacing:2.214000px;}
.ws35{word-spacing:2.268000px;}
.ws9e{word-spacing:2.400000px;}
.wsac{word-spacing:2.652000px;}
.ws19{word-spacing:2.700000px;}
.ws63{word-spacing:3.024000px;}
.ws44{word-spacing:3.132000px;}
.ws76{word-spacing:3.294000px;}
.ws9{word-spacing:3.348000px;}
.ws10{word-spacing:3.510000px;}
.ws3a{word-spacing:3.564000px;}
.ws61{word-spacing:3.618000px;}
.wsa6{word-spacing:3.726000px;}
.ws7{word-spacing:3.780000px;}
.wsb9{word-spacing:3.825000px;}
.ws1d{word-spacing:3.942000px;}
.ws89{word-spacing:3.996000px;}
.ws2b{word-spacing:4.104000px;}
.ws55{word-spacing:4.158000px;}
.ws4f{word-spacing:4.416000px;}
.wsad{word-spacing:4.488000px;}
.ws5d{word-spacing:4.536000px;}
.ws58{word-spacing:4.590000px;}
.ws85{word-spacing:4.644000px;}
.ws6e{word-spacing:4.698000px;}
.ws8e{word-spacing:4.752000px;}
.ws3d{word-spacing:4.968000px;}
.ws4c{word-spacing:5.040000px;}
.ws6f{word-spacing:5.076000px;}
.ws99{word-spacing:5.088000px;}
.ws33{word-spacing:5.238000px;}
.ws69{word-spacing:5.400000px;}
.wsb7{word-spacing:5.610000px;}
.ws21{word-spacing:5.778000px;}
.ws15{word-spacing:6.048000px;}
.ws48{word-spacing:6.156000px;}
.wsb8{word-spacing:6.222000px;}
.ws3{word-spacing:6.240000px;}
.ws7e{word-spacing:6.264000px;}
.ws28{word-spacing:6.318000px;}
.ws8{word-spacing:6.588000px;}
.ws77{word-spacing:6.642000px;}
.ws79{word-spacing:6.750000px;}
.wsa4{word-spacing:6.804000px;}
.ws9b{word-spacing:6.912000px;}
.ws60{word-spacing:7.236000px;}
.ws16{word-spacing:7.452000px;}
.ws5c{word-spacing:7.668000px;}
.ws8a{word-spacing:7.776000px;}
.ws73{word-spacing:7.830000px;}
.ws2c{word-spacing:7.992000px;}
.ws98{word-spacing:8.100000px;}
.ws6a{word-spacing:8.154000px;}
.ws49{word-spacing:8.370000px;}
.ws83{word-spacing:8.478000px;}
.ws17{word-spacing:8.532000px;}
.ws36{word-spacing:8.802000px;}
.ws34{word-spacing:8.856000px;}
.wsa3{word-spacing:8.910000px;}
.ws57{word-spacing:9.018000px;}
.ws84{word-spacing:9.126000px;}
.ws14{word-spacing:9.180000px;}
.wsa1{word-spacing:9.234000px;}
.ws47{word-spacing:9.504000px;}
.ws56{word-spacing:9.558000px;}
.ws41{word-spacing:9.600000px;}
.ws30{word-spacing:9.612000px;}
.ws7b{word-spacing:9.666000px;}
.wsae{word-spacing:9.741000px;}
.ws6b{word-spacing:9.828000px;}
.ws39{word-spacing:10.044000px;}
.ws2f{word-spacing:10.098000px;}
.ws46{word-spacing:10.152000px;}
.ws3f{word-spacing:10.464000px;}
.ws26{word-spacing:10.476000px;}
.ws91{word-spacing:10.692000px;}
.ws82{word-spacing:10.962000px;}
.ws5b{word-spacing:11.016000px;}
.ws40{word-spacing:11.088000px;}
.ws59{word-spacing:11.394000px;}
.ws11{word-spacing:11.664000px;}
.ws4{word-spacing:12.042000px;}
.ws92{word-spacing:12.312000px;}
.ws90{word-spacing:12.474000px;}
.ws51{word-spacing:13.230000px;}
.ws8c{word-spacing:13.500000px;}
.ws65{word-spacing:13.554000px;}
.ws20{word-spacing:13.608000px;}
.ws81{word-spacing:13.824000px;}
.wsba{word-spacing:14.127000px;}
.ws67{word-spacing:14.904000px;}
.ws7c{word-spacing:15.066000px;}
.ws5f{word-spacing:15.552000px;}
.ws68{word-spacing:15.660000px;}
.ws7d{word-spacing:15.984000px;}
.wsb5{word-spacing:17.391000px;}
.ws2d{word-spacing:17.442000px;}
.wsb3{word-spacing:17.697000px;}
.wsb4{word-spacing:17.748000px;}
.wsb2{word-spacing:18.003000px;}
.ws80{word-spacing:20.196000px;}
.ws24{word-spacing:20.412000px;}
.ws75{word-spacing:21.492000px;}
.ws23{word-spacing:21.762000px;}
.ws27{word-spacing:23.436000px;}
.ws25{word-spacing:24.192000px;}
.ws72{word-spacing:24.732000px;}
.ws93{word-spacing:25.164000px;}
.ws22{word-spacing:28.350000px;}
.ws94{word-spacing:38.178000px;}
.ws97{word-spacing:39.150000px;}
.ws7f{word-spacing:39.528000px;}
.ws96{word-spacing:40.986000px;}
.ws74{word-spacing:44.172000px;}
.ws70{word-spacing:55.296000px;}
.ws2a{word-spacing:57.132000px;}
.ws29{word-spacing:57.294000px;}
.ws31{word-spacing:78.840000px;}
.ws53{word-spacing:81.600000px;}
.ws71{word-spacing:122.148000px;}
.ws9d{word-spacing:1232.544000px;}
._18{margin-left:-8.154000px;}
._0{margin-left:-6.192000px;}
._4{margin-left:-4.803600px;}
._1{margin-left:-3.264000px;}
._2{margin-left:-2.016000px;}
._c{margin-left:-1.008000px;}
._1d{width:1.008000px;}
._3{width:2.016000px;}
._5{width:3.420000px;}
._a{width:4.536000px;}
._7{width:5.562000px;}
._8{width:7.506000px;}
._9{width:8.550000px;}
._b{width:10.260000px;}
._13{width:11.412000px;}
._12{width:12.474000px;}
._6{width:13.932000px;}
._14{width:17.604000px;}
._15{width:18.918000px;}
._1f{width:19.980000px;}
._f{width:21.060000px;}
._10{width:22.086000px;}
._11{width:23.598000px;}
._1e{width:24.948000px;}
._19{width:32.616000px;}
._1b{width:55.026000px;}
._d{width:68.310000px;}
._1c{width:156.408000px;}
._e{width:187.380000px;}
._1a{width:193.104000px;}
._16{width:456.339600px;}
._17{width:542.832000px;}
._20{width:726.445200px;}
.fc7{color:rgb(0,0,128);}
.fc6{color:rgb(0,0,9);}
.fc2{color:rgb(64,64,66);}
.fc5{color:rgb(88,88,88);}
.fc4{color:rgb(152,152,152);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(108,108,108);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:33.600000px;}
.fs4{font-size:45.000000px;}
.fs7{font-size:47.280000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:50.400000px;}
.fs8{font-size:51.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:26.749650px;}
.y1{bottom:41.149650px;}
.y14a{bottom:74.515500px;}
.yb4{bottom:80.001900px;}
.ydb{bottom:82.264200px;}
.y1f{bottom:83.098350px;}
.y10d{bottom:84.187500px;}
.y76{bottom:86.031900px;}
.y149{bottom:89.815500px;}
.y95{bottom:94.461900px;}
.yb3{bottom:96.201900px;}
.yda{bottom:98.464200px;}
.y1e{bottom:99.298350px;}
.y10c{bottom:100.387500px;}
.y75{bottom:102.231900px;}
.y148{bottom:105.115500px;}
.y94{bottom:110.661900px;}
.yb2{bottom:112.401900px;}
.yd9{bottom:114.664200px;}
.y1d{bottom:115.498350px;}
.y10b{bottom:116.587500px;}
.y74{bottom:118.431900px;}
.y147{bottom:120.415500px;}
.y93{bottom:126.861900px;}
.yb1{bottom:128.601900px;}
.yd8{bottom:130.864200px;}
.y1c{bottom:131.698350px;}
.y11a{bottom:132.643650px;}
.y73{bottom:134.631900px;}
.y146{bottom:135.715500px;}
.y92{bottom:143.061900px;}
.yb0{bottom:144.801900px;}
.y10a{bottom:144.937500px;}
.y119{bottom:147.043650px;}
.yd7{bottom:147.064200px;}
.y1b{bottom:147.898350px;}
.y72{bottom:150.831900px;}
.y145{bottom:151.015500px;}
.y109{bottom:160.165500px;}
.yaf{bottom:161.001900px;}
.yd6{bottom:163.264200px;}
.y1a{bottom:164.098350px;}
.y144{bottom:166.315500px;}
.y71{bottom:167.031900px;}
.y108{bottom:176.365500px;}
.y118{bottom:176.593650px;}
.yae{bottom:177.201900px;}
.yd5{bottom:179.464200px;}
.y19{bottom:180.298350px;}
.y143{bottom:181.615500px;}
.y70{bottom:183.231900px;}
.ydd{bottom:186.992100px;}
.y107{bottom:192.565500px;}
.yd4{bottom:195.664200px;}
.y18{bottom:196.498350px;}
.y142{bottom:196.915500px;}
.y91{bottom:198.261900px;}
.y10e{bottom:198.472500px;}
.y6f{bottom:199.431900px;}
.y106{bottom:208.765500px;}
.yd3{bottom:211.864200px;}
.y141{bottom:212.215500px;}
.y90{bottom:212.661900px;}
.y17{bottom:212.698350px;}
.yad{bottom:213.276900px;}
.y6e{bottom:215.631900px;}
.y105{bottom:224.965500px;}
.y140{bottom:227.515500px;}
.yd2{bottom:228.064200px;}
.yac{bottom:228.276900px;}
.y16{bottom:228.898350px;}
.y6d{bottom:231.831900px;}
.y104{bottom:241.165500px;}
.y8f{bottom:242.061900px;}
.y13f{bottom:242.815500px;}
.yd1{bottom:244.264200px;}
.y15{bottom:245.098350px;}
.y6c{bottom:248.031900px;}
.y43{bottom:252.295350px;}
.y103{bottom:257.365500px;}
.y13e{bottom:258.115500px;}
.yd0{bottom:260.464200px;}
.y14{bottom:261.298350px;}
.y6b{bottom:264.231900px;}
.y102{bottom:273.565500px;}
.ycf{bottom:276.664200px;}
.y13{bottom:277.498350px;}
.y13d{bottom:279.414000px;}
.y6a{bottom:280.431900px;}
.y101{bottom:289.765500px;}
.y42{bottom:290.392350px;}
.yce{bottom:292.864200px;}
.y12{bottom:293.698350px;}
.y69{bottom:296.631900px;}
.y100{bottom:305.965500px;}
.y41{bottom:306.592350px;}
.ycd{bottom:309.064200px;}
.y11{bottom:309.898350px;}
.y13c{bottom:311.814000px;}
.y68{bottom:312.831900px;}
.yff{bottom:322.165500px;}
.y40{bottom:322.792350px;}
.ycc{bottom:324.292200px;}
.y10{bottom:326.098350px;}
.y13b{bottom:328.014000px;}
.y67{bottom:329.031900px;}
.yfe{bottom:338.365500px;}
.y3f{bottom:338.992350px;}
.ycb{bottom:339.520200px;}
.yf{bottom:342.298350px;}
.y13a{bottom:344.214000px;}
.y66{bottom:345.231900px;}
.yfd{bottom:354.565500px;}
.yca{bottom:354.748200px;}
.y3e{bottom:355.192350px;}
.ye{bottom:358.498350px;}
.y139{bottom:360.414000px;}
.y65{bottom:361.431900px;}
.yfc{bottom:370.765500px;}
.yc9{bottom:370.948200px;}
.y3d{bottom:371.392350px;}
.yd{bottom:374.698350px;}
.y138{bottom:376.614000px;}
.y64{bottom:377.631900px;}
.yfb{bottom:386.965500px;}
.yc8{bottom:387.148200px;}
.y3c{bottom:387.592350px;}
.yc{bottom:390.898350px;}
.y137{bottom:392.814000px;}
.y63{bottom:393.831900px;}
.yfa{bottom:403.165500px;}
.yc7{bottom:403.348200px;}
.y3b{bottom:403.792350px;}
.yb{bottom:407.098350px;}
.y136{bottom:409.014000px;}
.y62{bottom:410.031900px;}
.yf9{bottom:419.365500px;}
.yc6{bottom:419.548200px;}
.y3a{bottom:419.992350px;}
.ya{bottom:423.298350px;}
.y135{bottom:425.214000px;}
.y61{bottom:426.231900px;}
.yf8{bottom:435.565500px;}
.yc5{bottom:435.748200px;}
.y39{bottom:436.192350px;}
.ydc{bottom:436.337400px;}
.y134{bottom:441.414000px;}
.y60{bottom:442.431900px;}
.y8e{bottom:447.073350px;}
.y78{bottom:451.096050px;}
.yc4{bottom:451.948200px;}
.y38{bottom:452.392350px;}
.y133{bottom:457.614000px;}
.y5f{bottom:458.631900px;}
.y8d{bottom:463.273350px;}
.y77{bottom:465.496050px;}
.yf7{bottom:466.165500px;}
.yc3{bottom:468.148200px;}
.y37{bottom:468.592350px;}
.y132{bottom:473.814000px;}
.y5e{bottom:474.831900px;}
.y117{bottom:476.066400px;}
.y8c{bottom:479.473350px;}
.yf6{bottom:482.365500px;}
.yc2{bottom:484.348200px;}
.y36{bottom:484.792350px;}
.y131{bottom:490.014000px;}
.y5d{bottom:491.031900px;}
.y116{bottom:492.266400px;}
.y8b{bottom:495.673350px;}
.yf5{bottom:498.565500px;}
.yc1{bottom:500.548200px;}
.y35{bottom:500.992350px;}
.y130{bottom:506.214000px;}
.y5c{bottom:507.231900px;}
.y115{bottom:508.466400px;}
.y8a{bottom:511.873350px;}
.yf4{bottom:514.765500px;}
.yc0{bottom:516.748200px;}
.y34{bottom:517.192350px;}
.yab{bottom:518.440500px;}
.y12f{bottom:522.414000px;}
.y5b{bottom:523.431900px;}
.y114{bottom:524.666400px;}
.y89{bottom:528.073350px;}
.yf3{bottom:530.965500px;}
.ybf{bottom:532.948200px;}
.y33{bottom:533.392350px;}
.yaa{bottom:534.640500px;}
.y12e{bottom:538.614000px;}
.y5a{bottom:539.631900px;}
.y113{bottom:540.866400px;}
.y88{bottom:544.273350px;}
.yf2{bottom:547.165500px;}
.ybe{bottom:549.148200px;}
.y32{bottom:549.592350px;}
.ya9{bottom:550.840500px;}
.y12d{bottom:554.814000px;}
.y59{bottom:555.831900px;}
.y112{bottom:557.066400px;}
.y87{bottom:560.473350px;}
.y9{bottom:562.798350px;}
.yf1{bottom:563.365500px;}
.ybd{bottom:565.348200px;}
.y31{bottom:565.792350px;}
.ya8{bottom:567.040500px;}
.y12c{bottom:571.014000px;}
.y58{bottom:572.031900px;}
.y111{bottom:573.266400px;}
.y86{bottom:576.673350px;}
.y8{bottom:577.798350px;}
.yf0{bottom:579.565500px;}
.ybc{bottom:581.548200px;}
.y30{bottom:581.992350px;}
.ya7{bottom:583.240500px;}
.y12b{bottom:587.214000px;}
.y57{bottom:588.231900px;}
.y85{bottom:592.873350px;}
.yef{bottom:595.765500px;}
.ybb{bottom:597.748200px;}
.y2f{bottom:598.192350px;}
.ya6{bottom:599.440500px;}
.y12a{bottom:603.414000px;}
.y56{bottom:604.431900px;}
.y84{bottom:609.073350px;}
.yee{bottom:611.965500px;}
.yba{bottom:613.948200px;}
.y2e{bottom:614.392350px;}
.ya5{bottom:615.640500px;}
.y55{bottom:620.631900px;}
.y110{bottom:623.966400px;}
.y83{bottom:625.273350px;}
.yed{bottom:628.165500px;}
.y129{bottom:629.145000px;}
.yb9{bottom:630.148200px;}
.y2d{bottom:630.592350px;}
.ya4{bottom:631.840500px;}
.y54{bottom:636.831900px;}
.y82{bottom:641.473350px;}
.yec{bottom:644.365500px;}
.y128{bottom:645.345000px;}
.yb8{bottom:646.348200px;}
.y2c{bottom:646.792350px;}
.ya3{bottom:648.040500px;}
.y10f{bottom:650.291400px;}
.y53{bottom:653.031900px;}
.y81{bottom:657.673350px;}
.yeb{bottom:660.565500px;}
.y127{bottom:661.545000px;}
.yb7{bottom:662.548200px;}
.y2b{bottom:662.992350px;}
.ya2{bottom:664.240500px;}
.y7{bottom:668.098200px;}
.y52{bottom:669.231900px;}
.y80{bottom:673.873350px;}
.yea{bottom:676.765500px;}
.y126{bottom:677.745000px;}
.yb6{bottom:678.748200px;}
.y2a{bottom:679.192350px;}
.ya1{bottom:680.440500px;}
.y51{bottom:685.431900px;}
.y159{bottom:687.070350px;}
.y7f{bottom:690.073350px;}
.ye9{bottom:692.965500px;}
.y125{bottom:693.945000px;}
.y29{bottom:695.392350px;}
.ya0{bottom:696.640500px;}
.y6{bottom:696.898200px;}
.y50{bottom:701.631900px;}
.y158{bottom:702.523350px;}
.y7e{bottom:706.273350px;}
.yb5{bottom:707.245350px;}
.ye8{bottom:709.165500px;}
.y9f{bottom:712.840500px;}
.y157{bottom:717.823350px;}
.y4f{bottom:717.831900px;}
.y124{bottom:719.365500px;}
.y7d{bottom:722.473350px;}
.ye7{bottom:725.365500px;}
.y9e{bottom:729.040500px;}
.y156{bottom:733.123350px;}
.y4e{bottom:734.031900px;}
.y123{bottom:735.565500px;}
.y7c{bottom:738.673350px;}
.ye6{bottom:741.565500px;}
.y9d{bottom:745.240500px;}
.y28{bottom:746.395350px;}
.y155{bottom:748.423350px;}
.y4d{bottom:750.231900px;}
.y122{bottom:751.765500px;}
.y7b{bottom:754.873350px;}
.ye5{bottom:757.765500px;}
.y9c{bottom:761.440500px;}
.y154{bottom:763.723350px;}
.y4c{bottom:766.431900px;}
.y121{bottom:767.965500px;}
.y7a{bottom:771.073350px;}
.ye4{bottom:773.965500px;}
.y9b{bottom:777.640500px;}
.y153{bottom:779.023350px;}
.y4b{bottom:782.631900px;}
.y120{bottom:784.165500px;}
.y27{bottom:787.273350px;}
.ye3{bottom:790.165500px;}
.y9a{bottom:793.840500px;}
.y152{bottom:794.323350px;}
.y4a{bottom:798.831900px;}
.y11f{bottom:800.365500px;}
.y26{bottom:803.473350px;}
.ye2{bottom:806.365500px;}
.y151{bottom:809.623350px;}
.y99{bottom:810.040500px;}
.y49{bottom:815.031900px;}
.y11e{bottom:816.565500px;}
.y25{bottom:819.673350px;}
.ye1{bottom:822.565500px;}
.y150{bottom:824.923350px;}
.y98{bottom:826.240500px;}
.y48{bottom:831.231900px;}
.y11d{bottom:832.765500px;}
.y24{bottom:835.873350px;}
.ye0{bottom:838.765500px;}
.y14f{bottom:840.223350px;}
.y47{bottom:847.431900px;}
.y11c{bottom:848.965500px;}
.y23{bottom:852.073350px;}
.ydf{bottom:854.965500px;}
.y14e{bottom:855.523350px;}
.y46{bottom:863.631900px;}
.y11b{bottom:865.165500px;}
.y97{bottom:867.565500px;}
.y22{bottom:868.273350px;}
.y14d{bottom:870.823350px;}
.yde{bottom:871.165500px;}
.y21{bottom:884.473350px;}
.y14c{bottom:886.123350px;}
.y45{bottom:896.031900px;}
.y96{bottom:896.365500px;}
.y20{bottom:900.673350px;}
.y14b{bottom:901.423350px;}
.y5{bottom:922.609650px;}
.y4{bottom:935.509650px;}
.y79{bottom:946.818900px;}
.y44{bottom:947.244000px;}
.y3{bottom:948.409650px;}
.h3{height:36.864000px;}
.hc{height:39.168000px;}
.h6{height:39.735000px;}
.h8{height:41.472000px;}
.ha{height:41.748240px;}
.h2{height:42.384000px;}
.h9{height:43.008000px;}
.hb{height:45.033000px;}
.h7{height:47.682000px;}
.h5{height:52.272000px;}
.h4{height:88.800000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x1{left:51.000000px;}
.x6{left:74.407950px;}
.x10{left:76.535400px;}
.x15{left:121.185450px;}
.x5{left:127.559100px;}
.x12{left:129.710400px;}
.x16{left:138.195450px;}
.x9{left:198.146100px;}
.x14{left:240.119400px;}
.x11{left:257.268750px;}
.x13{left:287.107800px;}
.x7{left:294.620550px;}
.x3{left:303.492000px;}
.x2{left:343.212000px;}
.x4{left:353.388000px;}
.x8{left:374.173200px;}
.xc{left:384.526800px;}
.xd{left:385.655700px;}
.xf{left:403.209900px;}
.xa{left:411.027300px;}
.xe{left:438.832200px;}
.xb{left:455.321250px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-2.266667pt;}
.ls2{letter-spacing:-1.792000pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls8{letter-spacing:-0.240000pt;}
.lsa{letter-spacing:-0.226667pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.181333pt;}
.ls9{letter-spacing:0.226667pt;}
.ls5{letter-spacing:0.256000pt;}
.lse{letter-spacing:0.498667pt;}
.ls7{letter-spacing:0.528000pt;}
.ls0{letter-spacing:0.768000pt;}
.lsd{letter-spacing:0.770667pt;}
.ls3{letter-spacing:0.816000pt;}
.lsb{letter-spacing:2.629333pt;}
.ws0{word-spacing:-17.792000pt;}
.wsd{word-spacing:-14.160000pt;}
.ws52{word-spacing:-13.344000pt;}
.ws66{word-spacing:-13.104000pt;}
.wsb0{word-spacing:-12.829333pt;}
.ws43{word-spacing:-12.629333pt;}
.wsa0{word-spacing:-12.602667pt;}
.ws1{word-spacing:-12.454400pt;}
.ws9f{word-spacing:-12.376000pt;}
.wse{word-spacing:-11.093333pt;}
.wsb1{word-spacing:-10.336000pt;}
.wsf{word-spacing:-7.765333pt;}
.ws8f{word-spacing:-5.712000pt;}
.ws95{word-spacing:-5.520000pt;}
.ws6{word-spacing:-5.232000pt;}
.ws1b{word-spacing:-3.360000pt;}
.ws2e{word-spacing:-3.312000pt;}
.wsa{word-spacing:-2.832000pt;}
.ws5e{word-spacing:-2.784000pt;}
.ws4a{word-spacing:-2.640000pt;}
.wsaf{word-spacing:-2.629333pt;}
.ws8b{word-spacing:-2.544000pt;}
.ws32{word-spacing:-2.256000pt;}
.ws37{word-spacing:-2.112000pt;}
.ws78{word-spacing:-1.632000pt;}
.ws1e{word-spacing:-1.344000pt;}
.ws9c{word-spacing:-1.296000pt;}
.ws18{word-spacing:-1.152000pt;}
.wsa5{word-spacing:-1.056000pt;}
.ws13{word-spacing:-0.912000pt;}
.ws54{word-spacing:-0.864000pt;}
.ws12{word-spacing:-0.816000pt;}
.ws5{word-spacing:-0.768000pt;}
.ws1c{word-spacing:-0.672000pt;}
.ws4d{word-spacing:-0.597333pt;}
.ws3b{word-spacing:-0.576000pt;}
.ws62{word-spacing:-0.528000pt;}
.ws6c{word-spacing:-0.432000pt;}
.ws3e{word-spacing:-0.288000pt;}
.ws4e{word-spacing:-0.256000pt;}
.wsa2{word-spacing:-0.240000pt;}
.wsb6{word-spacing:-0.226667pt;}
.ws2{word-spacing:0.000000pt;}
.wsc{word-spacing:0.144000pt;}
.wsa7{word-spacing:0.226667pt;}
.ws6d{word-spacing:0.240000pt;}
.wsb{word-spacing:0.432000pt;}
.wsaa{word-spacing:0.498667pt;}
.ws50{word-spacing:0.512000pt;}
.ws45{word-spacing:0.576000pt;}
.wsa9{word-spacing:0.770667pt;}
.ws8d{word-spacing:0.864000pt;}
.ws87{word-spacing:0.960000pt;}
.ws4b{word-spacing:0.981333pt;}
.ws1a{word-spacing:1.008000pt;}
.ws5a{word-spacing:1.440000pt;}
.ws86{word-spacing:1.488000pt;}
.ws88{word-spacing:1.536000pt;}
.wsa8{word-spacing:1.541333pt;}
.ws9a{word-spacing:1.578667pt;}
.ws3c{word-spacing:1.680000pt;}
.ws64{word-spacing:1.728000pt;}
.ws7a{word-spacing:1.776000pt;}
.ws1f{word-spacing:1.792000pt;}
.wsab{word-spacing:1.813333pt;}
.ws42{word-spacing:1.834667pt;}
.ws38{word-spacing:1.968000pt;}
.ws35{word-spacing:2.016000pt;}
.ws9e{word-spacing:2.133333pt;}
.wsac{word-spacing:2.357333pt;}
.ws19{word-spacing:2.400000pt;}
.ws63{word-spacing:2.688000pt;}
.ws44{word-spacing:2.784000pt;}
.ws76{word-spacing:2.928000pt;}
.ws9{word-spacing:2.976000pt;}
.ws10{word-spacing:3.120000pt;}
.ws3a{word-spacing:3.168000pt;}
.ws61{word-spacing:3.216000pt;}
.wsa6{word-spacing:3.312000pt;}
.ws7{word-spacing:3.360000pt;}
.wsb9{word-spacing:3.400000pt;}
.ws1d{word-spacing:3.504000pt;}
.ws89{word-spacing:3.552000pt;}
.ws2b{word-spacing:3.648000pt;}
.ws55{word-spacing:3.696000pt;}
.ws4f{word-spacing:3.925333pt;}
.wsad{word-spacing:3.989333pt;}
.ws5d{word-spacing:4.032000pt;}
.ws58{word-spacing:4.080000pt;}
.ws85{word-spacing:4.128000pt;}
.ws6e{word-spacing:4.176000pt;}
.ws8e{word-spacing:4.224000pt;}
.ws3d{word-spacing:4.416000pt;}
.ws4c{word-spacing:4.480000pt;}
.ws6f{word-spacing:4.512000pt;}
.ws99{word-spacing:4.522667pt;}
.ws33{word-spacing:4.656000pt;}
.ws69{word-spacing:4.800000pt;}
.wsb7{word-spacing:4.986667pt;}
.ws21{word-spacing:5.136000pt;}
.ws15{word-spacing:5.376000pt;}
.ws48{word-spacing:5.472000pt;}
.wsb8{word-spacing:5.530667pt;}
.ws3{word-spacing:5.546667pt;}
.ws7e{word-spacing:5.568000pt;}
.ws28{word-spacing:5.616000pt;}
.ws8{word-spacing:5.856000pt;}
.ws77{word-spacing:5.904000pt;}
.ws79{word-spacing:6.000000pt;}
.wsa4{word-spacing:6.048000pt;}
.ws9b{word-spacing:6.144000pt;}
.ws60{word-spacing:6.432000pt;}
.ws16{word-spacing:6.624000pt;}
.ws5c{word-spacing:6.816000pt;}
.ws8a{word-spacing:6.912000pt;}
.ws73{word-spacing:6.960000pt;}
.ws2c{word-spacing:7.104000pt;}
.ws98{word-spacing:7.200000pt;}
.ws6a{word-spacing:7.248000pt;}
.ws49{word-spacing:7.440000pt;}
.ws83{word-spacing:7.536000pt;}
.ws17{word-spacing:7.584000pt;}
.ws36{word-spacing:7.824000pt;}
.ws34{word-spacing:7.872000pt;}
.wsa3{word-spacing:7.920000pt;}
.ws57{word-spacing:8.016000pt;}
.ws84{word-spacing:8.112000pt;}
.ws14{word-spacing:8.160000pt;}
.wsa1{word-spacing:8.208000pt;}
.ws47{word-spacing:8.448000pt;}
.ws56{word-spacing:8.496000pt;}
.ws41{word-spacing:8.533333pt;}
.ws30{word-spacing:8.544000pt;}
.ws7b{word-spacing:8.592000pt;}
.wsae{word-spacing:8.658667pt;}
.ws6b{word-spacing:8.736000pt;}
.ws39{word-spacing:8.928000pt;}
.ws2f{word-spacing:8.976000pt;}
.ws46{word-spacing:9.024000pt;}
.ws3f{word-spacing:9.301333pt;}
.ws26{word-spacing:9.312000pt;}
.ws91{word-spacing:9.504000pt;}
.ws82{word-spacing:9.744000pt;}
.ws5b{word-spacing:9.792000pt;}
.ws40{word-spacing:9.856000pt;}
.ws59{word-spacing:10.128000pt;}
.ws11{word-spacing:10.368000pt;}
.ws4{word-spacing:10.704000pt;}
.ws92{word-spacing:10.944000pt;}
.ws90{word-spacing:11.088000pt;}
.ws51{word-spacing:11.760000pt;}
.ws8c{word-spacing:12.000000pt;}
.ws65{word-spacing:12.048000pt;}
.ws20{word-spacing:12.096000pt;}
.ws81{word-spacing:12.288000pt;}
.wsba{word-spacing:12.557333pt;}
.ws67{word-spacing:13.248000pt;}
.ws7c{word-spacing:13.392000pt;}
.ws5f{word-spacing:13.824000pt;}
.ws68{word-spacing:13.920000pt;}
.ws7d{word-spacing:14.208000pt;}
.wsb5{word-spacing:15.458667pt;}
.ws2d{word-spacing:15.504000pt;}
.wsb3{word-spacing:15.730667pt;}
.wsb4{word-spacing:15.776000pt;}
.wsb2{word-spacing:16.002667pt;}
.ws80{word-spacing:17.952000pt;}
.ws24{word-spacing:18.144000pt;}
.ws75{word-spacing:19.104000pt;}
.ws23{word-spacing:19.344000pt;}
.ws27{word-spacing:20.832000pt;}
.ws25{word-spacing:21.504000pt;}
.ws72{word-spacing:21.984000pt;}
.ws93{word-spacing:22.368000pt;}
.ws22{word-spacing:25.200000pt;}
.ws94{word-spacing:33.936000pt;}
.ws97{word-spacing:34.800000pt;}
.ws7f{word-spacing:35.136000pt;}
.ws96{word-spacing:36.432000pt;}
.ws74{word-spacing:39.264000pt;}
.ws70{word-spacing:49.152000pt;}
.ws2a{word-spacing:50.784000pt;}
.ws29{word-spacing:50.928000pt;}
.ws31{word-spacing:70.080000pt;}
.ws53{word-spacing:72.533333pt;}
.ws71{word-spacing:108.576000pt;}
.ws9d{word-spacing:1095.594667pt;}
._18{margin-left:-7.248000pt;}
._0{margin-left:-5.504000pt;}
._4{margin-left:-4.269867pt;}
._1{margin-left:-2.901333pt;}
._2{margin-left:-1.792000pt;}
._c{margin-left:-0.896000pt;}
._1d{width:0.896000pt;}
._3{width:1.792000pt;}
._5{width:3.040000pt;}
._a{width:4.032000pt;}
._7{width:4.944000pt;}
._8{width:6.672000pt;}
._9{width:7.600000pt;}
._b{width:9.120000pt;}
._13{width:10.144000pt;}
._12{width:11.088000pt;}
._6{width:12.384000pt;}
._14{width:15.648000pt;}
._15{width:16.816000pt;}
._1f{width:17.760000pt;}
._f{width:18.720000pt;}
._10{width:19.632000pt;}
._11{width:20.976000pt;}
._1e{width:22.176000pt;}
._19{width:28.992000pt;}
._1b{width:48.912000pt;}
._d{width:60.720000pt;}
._1c{width:139.029333pt;}
._e{width:166.560000pt;}
._1a{width:171.648000pt;}
._16{width:405.635200pt;}
._17{width:482.517333pt;}
._20{width:645.729067pt;}
.fs6{font-size:29.866667pt;}
.fs4{font-size:40.000000pt;}
.fs7{font-size:42.026667pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:44.800000pt;}
.fs8{font-size:45.333333pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:23.777467pt;}
.y1{bottom:36.577467pt;}
.y14a{bottom:66.236000pt;}
.yb4{bottom:71.112800pt;}
.ydb{bottom:73.123733pt;}
.y1f{bottom:73.865200pt;}
.y10d{bottom:74.833333pt;}
.y76{bottom:76.472800pt;}
.y149{bottom:79.836000pt;}
.y95{bottom:83.966133pt;}
.yb3{bottom:85.512800pt;}
.yda{bottom:87.523733pt;}
.y1e{bottom:88.265200pt;}
.y10c{bottom:89.233333pt;}
.y75{bottom:90.872800pt;}
.y148{bottom:93.436000pt;}
.y94{bottom:98.366133pt;}
.yb2{bottom:99.912800pt;}
.yd9{bottom:101.923733pt;}
.y1d{bottom:102.665200pt;}
.y10b{bottom:103.633333pt;}
.y74{bottom:105.272800pt;}
.y147{bottom:107.036000pt;}
.y93{bottom:112.766133pt;}
.yb1{bottom:114.312800pt;}
.yd8{bottom:116.323733pt;}
.y1c{bottom:117.065200pt;}
.y11a{bottom:117.905467pt;}
.y73{bottom:119.672800pt;}
.y146{bottom:120.636000pt;}
.y92{bottom:127.166133pt;}
.yb0{bottom:128.712800pt;}
.y10a{bottom:128.833333pt;}
.y119{bottom:130.705467pt;}
.yd7{bottom:130.723733pt;}
.y1b{bottom:131.465200pt;}
.y72{bottom:134.072800pt;}
.y145{bottom:134.236000pt;}
.y109{bottom:142.369333pt;}
.yaf{bottom:143.112800pt;}
.yd6{bottom:145.123733pt;}
.y1a{bottom:145.865200pt;}
.y144{bottom:147.836000pt;}
.y71{bottom:148.472800pt;}
.y108{bottom:156.769333pt;}
.y118{bottom:156.972133pt;}
.yae{bottom:157.512800pt;}
.yd5{bottom:159.523733pt;}
.y19{bottom:160.265200pt;}
.y143{bottom:161.436000pt;}
.y70{bottom:162.872800pt;}
.ydd{bottom:166.215200pt;}
.y107{bottom:171.169333pt;}
.yd4{bottom:173.923733pt;}
.y18{bottom:174.665200pt;}
.y142{bottom:175.036000pt;}
.y91{bottom:176.232800pt;}
.y10e{bottom:176.420000pt;}
.y6f{bottom:177.272800pt;}
.y106{bottom:185.569333pt;}
.yd3{bottom:188.323733pt;}
.y141{bottom:188.636000pt;}
.y90{bottom:189.032800pt;}
.y17{bottom:189.065200pt;}
.yad{bottom:189.579467pt;}
.y6e{bottom:191.672800pt;}
.y105{bottom:199.969333pt;}
.y140{bottom:202.236000pt;}
.yd2{bottom:202.723733pt;}
.yac{bottom:202.912800pt;}
.y16{bottom:203.465200pt;}
.y6d{bottom:206.072800pt;}
.y104{bottom:214.369333pt;}
.y8f{bottom:215.166133pt;}
.y13f{bottom:215.836000pt;}
.yd1{bottom:217.123733pt;}
.y15{bottom:217.865200pt;}
.y6c{bottom:220.472800pt;}
.y43{bottom:224.262533pt;}
.y103{bottom:228.769333pt;}
.y13e{bottom:229.436000pt;}
.yd0{bottom:231.523733pt;}
.y14{bottom:232.265200pt;}
.y6b{bottom:234.872800pt;}
.y102{bottom:243.169333pt;}
.ycf{bottom:245.923733pt;}
.y13{bottom:246.665200pt;}
.y13d{bottom:248.368000pt;}
.y6a{bottom:249.272800pt;}
.y101{bottom:257.569333pt;}
.y42{bottom:258.126533pt;}
.yce{bottom:260.323733pt;}
.y12{bottom:261.065200pt;}
.y69{bottom:263.672800pt;}
.y100{bottom:271.969333pt;}
.y41{bottom:272.526533pt;}
.ycd{bottom:274.723733pt;}
.y11{bottom:275.465200pt;}
.y13c{bottom:277.168000pt;}
.y68{bottom:278.072800pt;}
.yff{bottom:286.369333pt;}
.y40{bottom:286.926533pt;}
.ycc{bottom:288.259733pt;}
.y10{bottom:289.865200pt;}
.y13b{bottom:291.568000pt;}
.y67{bottom:292.472800pt;}
.yfe{bottom:300.769333pt;}
.y3f{bottom:301.326533pt;}
.ycb{bottom:301.795733pt;}
.yf{bottom:304.265200pt;}
.y13a{bottom:305.968000pt;}
.y66{bottom:306.872800pt;}
.yfd{bottom:315.169333pt;}
.yca{bottom:315.331733pt;}
.y3e{bottom:315.726533pt;}
.ye{bottom:318.665200pt;}
.y139{bottom:320.368000pt;}
.y65{bottom:321.272800pt;}
.yfc{bottom:329.569333pt;}
.yc9{bottom:329.731733pt;}
.y3d{bottom:330.126533pt;}
.yd{bottom:333.065200pt;}
.y138{bottom:334.768000pt;}
.y64{bottom:335.672800pt;}
.yfb{bottom:343.969333pt;}
.yc8{bottom:344.131733pt;}
.y3c{bottom:344.526533pt;}
.yc{bottom:347.465200pt;}
.y137{bottom:349.168000pt;}
.y63{bottom:350.072800pt;}
.yfa{bottom:358.369333pt;}
.yc7{bottom:358.531733pt;}
.y3b{bottom:358.926533pt;}
.yb{bottom:361.865200pt;}
.y136{bottom:363.568000pt;}
.y62{bottom:364.472800pt;}
.yf9{bottom:372.769333pt;}
.yc6{bottom:372.931733pt;}
.y3a{bottom:373.326533pt;}
.ya{bottom:376.265200pt;}
.y135{bottom:377.968000pt;}
.y61{bottom:378.872800pt;}
.yf8{bottom:387.169333pt;}
.yc5{bottom:387.331733pt;}
.y39{bottom:387.726533pt;}
.ydc{bottom:387.855467pt;}
.y134{bottom:392.368000pt;}
.y60{bottom:393.272800pt;}
.y8e{bottom:397.398533pt;}
.y78{bottom:400.974267pt;}
.yc4{bottom:401.731733pt;}
.y38{bottom:402.126533pt;}
.y133{bottom:406.768000pt;}
.y5f{bottom:407.672800pt;}
.y8d{bottom:411.798533pt;}
.y77{bottom:413.774267pt;}
.yf7{bottom:414.369333pt;}
.yc3{bottom:416.131733pt;}
.y37{bottom:416.526533pt;}
.y132{bottom:421.168000pt;}
.y5e{bottom:422.072800pt;}
.y117{bottom:423.170133pt;}
.y8c{bottom:426.198533pt;}
.yf6{bottom:428.769333pt;}
.yc2{bottom:430.531733pt;}
.y36{bottom:430.926533pt;}
.y131{bottom:435.568000pt;}
.y5d{bottom:436.472800pt;}
.y116{bottom:437.570133pt;}
.y8b{bottom:440.598533pt;}
.yf5{bottom:443.169333pt;}
.yc1{bottom:444.931733pt;}
.y35{bottom:445.326533pt;}
.y130{bottom:449.968000pt;}
.y5c{bottom:450.872800pt;}
.y115{bottom:451.970133pt;}
.y8a{bottom:454.998533pt;}
.yf4{bottom:457.569333pt;}
.yc0{bottom:459.331733pt;}
.y34{bottom:459.726533pt;}
.yab{bottom:460.836000pt;}
.y12f{bottom:464.368000pt;}
.y5b{bottom:465.272800pt;}
.y114{bottom:466.370133pt;}
.y89{bottom:469.398533pt;}
.yf3{bottom:471.969333pt;}
.ybf{bottom:473.731733pt;}
.y33{bottom:474.126533pt;}
.yaa{bottom:475.236000pt;}
.y12e{bottom:478.768000pt;}
.y5a{bottom:479.672800pt;}
.y113{bottom:480.770133pt;}
.y88{bottom:483.798533pt;}
.yf2{bottom:486.369333pt;}
.ybe{bottom:488.131733pt;}
.y32{bottom:488.526533pt;}
.ya9{bottom:489.636000pt;}
.y12d{bottom:493.168000pt;}
.y59{bottom:494.072800pt;}
.y112{bottom:495.170133pt;}
.y87{bottom:498.198533pt;}
.y9{bottom:500.265200pt;}
.yf1{bottom:500.769333pt;}
.ybd{bottom:502.531733pt;}
.y31{bottom:502.926533pt;}
.ya8{bottom:504.036000pt;}
.y12c{bottom:507.568000pt;}
.y58{bottom:508.472800pt;}
.y111{bottom:509.570133pt;}
.y86{bottom:512.598533pt;}
.y8{bottom:513.598533pt;}
.yf0{bottom:515.169333pt;}
.ybc{bottom:516.931733pt;}
.y30{bottom:517.326533pt;}
.ya7{bottom:518.436000pt;}
.y12b{bottom:521.968000pt;}
.y57{bottom:522.872800pt;}
.y85{bottom:526.998533pt;}
.yef{bottom:529.569333pt;}
.ybb{bottom:531.331733pt;}
.y2f{bottom:531.726533pt;}
.ya6{bottom:532.836000pt;}
.y12a{bottom:536.368000pt;}
.y56{bottom:537.272800pt;}
.y84{bottom:541.398533pt;}
.yee{bottom:543.969333pt;}
.yba{bottom:545.731733pt;}
.y2e{bottom:546.126533pt;}
.ya5{bottom:547.236000pt;}
.y55{bottom:551.672800pt;}
.y110{bottom:554.636800pt;}
.y83{bottom:555.798533pt;}
.yed{bottom:558.369333pt;}
.y129{bottom:559.240000pt;}
.yb9{bottom:560.131733pt;}
.y2d{bottom:560.526533pt;}
.ya4{bottom:561.636000pt;}
.y54{bottom:566.072800pt;}
.y82{bottom:570.198533pt;}
.yec{bottom:572.769333pt;}
.y128{bottom:573.640000pt;}
.yb8{bottom:574.531733pt;}
.y2c{bottom:574.926533pt;}
.ya3{bottom:576.036000pt;}
.y10f{bottom:578.036800pt;}
.y53{bottom:580.472800pt;}
.y81{bottom:584.598533pt;}
.yeb{bottom:587.169333pt;}
.y127{bottom:588.040000pt;}
.yb7{bottom:588.931733pt;}
.y2b{bottom:589.326533pt;}
.ya2{bottom:590.436000pt;}
.y7{bottom:593.865067pt;}
.y52{bottom:594.872800pt;}
.y80{bottom:598.998533pt;}
.yea{bottom:601.569333pt;}
.y126{bottom:602.440000pt;}
.yb6{bottom:603.331733pt;}
.y2a{bottom:603.726533pt;}
.ya1{bottom:604.836000pt;}
.y51{bottom:609.272800pt;}
.y159{bottom:610.729200pt;}
.y7f{bottom:613.398533pt;}
.ye9{bottom:615.969333pt;}
.y125{bottom:616.840000pt;}
.y29{bottom:618.126533pt;}
.ya0{bottom:619.236000pt;}
.y6{bottom:619.465067pt;}
.y50{bottom:623.672800pt;}
.y158{bottom:624.465200pt;}
.y7e{bottom:627.798533pt;}
.yb5{bottom:628.662533pt;}
.ye8{bottom:630.369333pt;}
.y9f{bottom:633.636000pt;}
.y157{bottom:638.065200pt;}
.y4f{bottom:638.072800pt;}
.y124{bottom:639.436000pt;}
.y7d{bottom:642.198533pt;}
.ye7{bottom:644.769333pt;}
.y9e{bottom:648.036000pt;}
.y156{bottom:651.665200pt;}
.y4e{bottom:652.472800pt;}
.y123{bottom:653.836000pt;}
.y7c{bottom:656.598533pt;}
.ye6{bottom:659.169333pt;}
.y9d{bottom:662.436000pt;}
.y28{bottom:663.462533pt;}
.y155{bottom:665.265200pt;}
.y4d{bottom:666.872800pt;}
.y122{bottom:668.236000pt;}
.y7b{bottom:670.998533pt;}
.ye5{bottom:673.569333pt;}
.y9c{bottom:676.836000pt;}
.y154{bottom:678.865200pt;}
.y4c{bottom:681.272800pt;}
.y121{bottom:682.636000pt;}
.y7a{bottom:685.398533pt;}
.ye4{bottom:687.969333pt;}
.y9b{bottom:691.236000pt;}
.y153{bottom:692.465200pt;}
.y4b{bottom:695.672800pt;}
.y120{bottom:697.036000pt;}
.y27{bottom:699.798533pt;}
.ye3{bottom:702.369333pt;}
.y9a{bottom:705.636000pt;}
.y152{bottom:706.065200pt;}
.y4a{bottom:710.072800pt;}
.y11f{bottom:711.436000pt;}
.y26{bottom:714.198533pt;}
.ye2{bottom:716.769333pt;}
.y151{bottom:719.665200pt;}
.y99{bottom:720.036000pt;}
.y49{bottom:724.472800pt;}
.y11e{bottom:725.836000pt;}
.y25{bottom:728.598533pt;}
.ye1{bottom:731.169333pt;}
.y150{bottom:733.265200pt;}
.y98{bottom:734.436000pt;}
.y48{bottom:738.872800pt;}
.y11d{bottom:740.236000pt;}
.y24{bottom:742.998533pt;}
.ye0{bottom:745.569333pt;}
.y14f{bottom:746.865200pt;}
.y47{bottom:753.272800pt;}
.y11c{bottom:754.636000pt;}
.y23{bottom:757.398533pt;}
.ydf{bottom:759.969333pt;}
.y14e{bottom:760.465200pt;}
.y46{bottom:767.672800pt;}
.y11b{bottom:769.036000pt;}
.y97{bottom:771.169333pt;}
.y22{bottom:771.798533pt;}
.y14d{bottom:774.065200pt;}
.yde{bottom:774.369333pt;}
.y21{bottom:786.198533pt;}
.y14c{bottom:787.665200pt;}
.y45{bottom:796.472800pt;}
.y96{bottom:796.769333pt;}
.y20{bottom:800.598533pt;}
.y14b{bottom:801.265200pt;}
.y5{bottom:820.097467pt;}
.y4{bottom:831.564133pt;}
.y79{bottom:841.616800pt;}
.y44{bottom:841.994667pt;}
.y3{bottom:843.030800pt;}
.h3{height:32.768000pt;}
.hc{height:34.816000pt;}
.h6{height:35.320000pt;}
.h8{height:36.864000pt;}
.ha{height:37.109547pt;}
.h2{height:37.674667pt;}
.h9{height:38.229333pt;}
.hb{height:40.029333pt;}
.h7{height:42.384000pt;}
.h5{height:46.464000pt;}
.h4{height:78.933333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x1{left:45.333333pt;}
.x6{left:66.140400pt;}
.x10{left:68.031467pt;}
.x15{left:107.720400pt;}
.x5{left:113.385867pt;}
.x12{left:115.298133pt;}
.x16{left:122.840400pt;}
.x9{left:176.129867pt;}
.x14{left:213.439467pt;}
.x11{left:228.683333pt;}
.x13{left:255.206933pt;}
.x7{left:261.884933pt;}
.x3{left:269.770667pt;}
.x2{left:305.077333pt;}
.x4{left:314.122667pt;}
.x8{left:332.598400pt;}
.xc{left:341.801600pt;}
.xd{left:342.805067pt;}
.xf{left:358.408800pt;}
.xa{left:365.357600pt;}
.xe{left:390.073067pt;}
.xb{left:404.730000pt;}
}




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