
    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_6866649aa0ebda8c406a7264.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_cfe81880af0cfbe6dc729a41.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.715000;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_0591b7eb56f24ffd26a97b47.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_3d902c5b35c19d980aa21f25.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a4a68defb20f851eb07574ab.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_573314e5a418f8de0f3a7216.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_160a46b281fa654fbf6ab68a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.692871;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_9148d2d6a9911acb107cbf0d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6866649aa0ebda8c406a7264.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6d44a5a99e9ff6817027592e.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893066;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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:-1.680000px;}
.ls2{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.066000px;}
.ls6{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.528000px;}
.ls3{letter-spacing:1.716000px;}
.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;}
}
.ws82{word-spacing:-18.216000px;}
.ws1e{word-spacing:-18.000000px;}
.ws0{word-spacing:-17.250000px;}
.ws83{word-spacing:-17.028000px;}
.ws81{word-spacing:-16.830000px;}
.ws84{word-spacing:-16.566000px;}
.ws6f{word-spacing:-16.500000px;}
.ws3c{word-spacing:-8.640000px;}
.ws27{word-spacing:-7.848000px;}
.ws3{word-spacing:-6.900000px;}
.ws2e{word-spacing:-6.696000px;}
.ws40{word-spacing:-6.624000px;}
.ws5e{word-spacing:-6.048000px;}
.ws5f{word-spacing:-5.688000px;}
.ws9b{word-spacing:-5.544000px;}
.ws16{word-spacing:-5.472000px;}
.ws11{word-spacing:-5.112000px;}
.ws46{word-spacing:-5.040000px;}
.ws87{word-spacing:-4.686000px;}
.ws52{word-spacing:-4.680000px;}
.ws2{word-spacing:-4.620000px;}
.ws49{word-spacing:-4.392000px;}
.ws58{word-spacing:-4.248000px;}
.ws68{word-spacing:-4.104000px;}
.ws5c{word-spacing:-4.032000px;}
.ws1f{word-spacing:-3.960000px;}
.ws32{word-spacing:-3.888000px;}
.ws76{word-spacing:-3.384000px;}
.ws54{word-spacing:-3.096000px;}
.ws22{word-spacing:-2.880000px;}
.ws95{word-spacing:-2.838000px;}
.ws7a{word-spacing:-2.772000px;}
.ws47{word-spacing:-2.592000px;}
.ws94{word-spacing:-2.574000px;}
.ws7b{word-spacing:-2.442000px;}
.ws2c{word-spacing:-2.160000px;}
.ws7d{word-spacing:-2.112000px;}
.ws1b{word-spacing:-2.088000px;}
.ws15{word-spacing:-2.016000px;}
.ws9{word-spacing:-2.001000px;}
.ws25{word-spacing:-1.872000px;}
.ws1d{word-spacing:-1.800000px;}
.ws26{word-spacing:-1.512000px;}
.ws5{word-spacing:-1.449000px;}
.ws44{word-spacing:-1.152000px;}
.ws8e{word-spacing:-0.858000px;}
.ws73{word-spacing:-0.792000px;}
.ws92{word-spacing:-0.462000px;}
.ws3b{word-spacing:-0.288000px;}
.ws38{word-spacing:-0.144000px;}
.ws1{word-spacing:0.000000px;}
.ws8{word-spacing:0.069000px;}
.ws80{word-spacing:0.264000px;}
.ws36{word-spacing:0.288000px;}
.ws70{word-spacing:0.504000px;}
.ws63{word-spacing:0.720000px;}
.ws31{word-spacing:0.864000px;}
.ws85{word-spacing:0.990000px;}
.ws39{word-spacing:1.008000px;}
.ws4d{word-spacing:1.152000px;}
.ws29{word-spacing:1.368000px;}
.ws6b{word-spacing:1.440000px;}
.ws77{word-spacing:1.656000px;}
.ws75{word-spacing:1.728000px;}
.ws67{word-spacing:1.800000px;}
.ws30{word-spacing:1.944000px;}
.ws89{word-spacing:2.112000px;}
.wsf{word-spacing:2.232000px;}
.ws97{word-spacing:2.310000px;}
.ws88{word-spacing:2.376000px;}
.ws12{word-spacing:2.520000px;}
.ws33{word-spacing:2.664000px;}
.ws7c{word-spacing:2.838000px;}
.ws45{word-spacing:2.880000px;}
.ws35{word-spacing:2.952000px;}
.ws19{word-spacing:3.168000px;}
.ws1c{word-spacing:3.240000px;}
.ws6a{word-spacing:3.312000px;}
.ws98{word-spacing:3.498000px;}
.ws61{word-spacing:3.528000px;}
.ws3e{word-spacing:3.600000px;}
.wsa{word-spacing:3.726000px;}
.ws53{word-spacing:3.744000px;}
.ws5d{word-spacing:3.960000px;}
.ws41{word-spacing:4.104000px;}
.ws4{word-spacing:4.140000px;}
.wsd{word-spacing:4.176000px;}
.ws3a{word-spacing:4.320000px;}
.ws59{word-spacing:4.392000px;}
.ws42{word-spacing:4.680000px;}
.ws9a{word-spacing:4.884000px;}
.ws8a{word-spacing:4.950000px;}
.ws21{word-spacing:5.112000px;}
.ws28{word-spacing:5.400000px;}
.ws37{word-spacing:5.472000px;}
.ws18{word-spacing:5.616000px;}
.ws60{word-spacing:5.688000px;}
.ws69{word-spacing:5.760000px;}
.ws24{word-spacing:6.120000px;}
.ws7e{word-spacing:6.138000px;}
.ws2d{word-spacing:6.264000px;}
.ws14{word-spacing:6.768000px;}
.ws43{word-spacing:6.912000px;}
.ws79{word-spacing:6.930000px;}
.ws65{word-spacing:6.984000px;}
.ws72{word-spacing:7.056000px;}
.ws17{word-spacing:7.344000px;}
.ws71{word-spacing:7.416000px;}
.ws78{word-spacing:7.560000px;}
.ws5a{word-spacing:7.776000px;}
.ws4a{word-spacing:7.920000px;}
.ws66{word-spacing:7.992000px;}
.ws23{word-spacing:8.064000px;}
.ws34{word-spacing:8.352000px;}
.ws6e{word-spacing:8.496000px;}
.ws9c{word-spacing:9.108000px;}
.ws96{word-spacing:9.174000px;}
.ws3f{word-spacing:9.288000px;}
.ws62{word-spacing:9.648000px;}
.wse{word-spacing:9.720000px;}
.ws93{word-spacing:9.768000px;}
.ws50{word-spacing:9.864000px;}
.ws5b{word-spacing:10.152000px;}
.ws55{word-spacing:10.224000px;}
.ws7{word-spacing:10.281000px;}
.ws6d{word-spacing:10.296000px;}
.wsc{word-spacing:10.368000px;}
.ws48{word-spacing:10.800000px;}
.ws13{word-spacing:11.160000px;}
.ws2a{word-spacing:11.448000px;}
.ws56{word-spacing:11.736000px;}
.ws3d{word-spacing:12.528000px;}
.ws1a{word-spacing:12.888000px;}
.ws20{word-spacing:13.464000px;}
.ws57{word-spacing:13.968000px;}
.ws86{word-spacing:14.388000px;}
.ws2b{word-spacing:15.264000px;}
.ws8d{word-spacing:16.104000px;}
.ws6c{word-spacing:16.200000px;}
.wsb{word-spacing:16.776000px;}
.ws4b{word-spacing:17.136000px;}
.ws90{word-spacing:17.226000px;}
.ws8c{word-spacing:17.490000px;}
.ws74{word-spacing:17.640000px;}
.ws10{word-spacing:17.712000px;}
.ws8f{word-spacing:18.546000px;}
.ws2f{word-spacing:19.656000px;}
.ws4c{word-spacing:20.160000px;}
.ws51{word-spacing:20.448000px;}
.ws6{word-spacing:20.562000px;}
.ws7f{word-spacing:23.298000px;}
.ws4f{word-spacing:23.616000px;}
.ws4e{word-spacing:26.208000px;}
.ws91{word-spacing:26.400000px;}
.ws64{word-spacing:36.864000px;}
.ws8b{word-spacing:68.574000px;}
.ws99{word-spacing:90.222000px;}
._1a{margin-left:-13.054800px;}
._14{margin-left:-9.777600px;}
._c{margin-left:-8.487600px;}
._2{margin-left:-6.538800px;}
._0{margin-left:-5.352000px;}
._4{margin-left:-4.154400px;}
._1{margin-left:-3.108000px;}
._5{margin-left:-2.080800px;}
._8{margin-left:-1.008000px;}
._b{width:1.310400px;}
._6{width:3.249900px;}
._3{width:4.636800px;}
._7{width:6.534600px;}
._a{width:8.258400px;}
._11{width:9.280800px;}
._d{width:10.332000px;}
._10{width:12.240000px;}
._9{width:14.140800px;}
._12{width:15.343200px;}
._18{width:16.394400px;}
._19{width:18.184800px;}
._16{width:20.937600px;}
._e{width:22.957800px;}
._f{width:24.277200px;}
._15{width:25.554000px;}
._17{width:32.659200px;}
._13{width:177.840000px;}
.fc1{color:rgb(16,15,13);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:48.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs3{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.138100px;}
.y91{bottom:78.742650px;}
.ybb{bottom:87.204600px;}
.ydc{bottom:88.104450px;}
.y22{bottom:94.058850px;}
.yf1{bottom:96.354450px;}
.y90{bottom:99.742650px;}
.y69{bottom:105.654450px;}
.yb9{bottom:105.787050px;}
.y12f{bottom:107.456850px;}
.yba{bottom:108.204600px;}
.ydb{bottom:109.854450px;}
.y103{bottom:112.144650px;}
.y21{bottom:115.058850px;}
.yf0{bottom:118.104450px;}
.y8f{bottom:120.742650px;}
.y12e{bottom:125.456850px;}
.y68{bottom:126.654450px;}
.yb8{bottom:127.386900px;}
.y4a{bottom:129.204600px;}
.y102{bottom:130.144650px;}
.yda{bottom:131.604450px;}
.y20{bottom:136.058850px;}
.yef{bottom:139.854450px;}
.y8e{bottom:141.742650px;}
.y12d{bottom:143.456850px;}
.y67{bottom:147.654450px;}
.yb7{bottom:148.986900px;}
.y49{bottom:150.204600px;}
.y101{bottom:152.396700px;}
.yd9{bottom:153.354450px;}
.y1f{bottom:157.058850px;}
.y12c{bottom:161.456850px;}
.yee{bottom:161.604450px;}
.y8d{bottom:162.742650px;}
.y66{bottom:168.654450px;}
.y100{bottom:170.396700px;}
.yb6{bottom:170.586900px;}
.y48{bottom:171.204600px;}
.yd8{bottom:175.104600px;}
.y1e{bottom:178.058850px;}
.y12b{bottom:179.456850px;}
.yed{bottom:183.354600px;}
.y8c{bottom:183.742650px;}
.yff{bottom:188.396700px;}
.y65{bottom:189.654450px;}
.yb5{bottom:192.186900px;}
.y47{bottom:192.204600px;}
.yd7{bottom:196.854600px;}
.y1d{bottom:199.808850px;}
.y12a{bottom:201.708750px;}
.y8b{bottom:204.742650px;}
.yec{bottom:205.104600px;}
.yfe{bottom:210.648600px;}
.y64{bottom:210.654450px;}
.yb4{bottom:213.186900px;}
.y46{bottom:213.204600px;}
.yd6{bottom:218.604600px;}
.y129{bottom:219.708750px;}
.y1c{bottom:221.558850px;}
.y8a{bottom:225.742650px;}
.yeb{bottom:226.854600px;}
.y63{bottom:231.654450px;}
.yfd{bottom:232.900650px;}
.yb3{bottom:234.186900px;}
.y45{bottom:234.204600px;}
.y128{bottom:237.708750px;}
.yd5{bottom:240.354600px;}
.y1b{bottom:243.308850px;}
.y89{bottom:246.742650px;}
.yea{bottom:248.604600px;}
.yfc{bottom:250.900650px;}
.y62{bottom:252.654450px;}
.yb2{bottom:255.186900px;}
.y44{bottom:255.204600px;}
.y127{bottom:259.960800px;}
.yd4{bottom:262.104600px;}
.y1a{bottom:265.058850px;}
.y88{bottom:267.742650px;}
.ye9{bottom:270.354600px;}
.yfb{bottom:273.152550px;}
.y61{bottom:273.654450px;}
.yb1{bottom:276.186900px;}
.y43{bottom:276.204600px;}
.y126{bottom:277.960800px;}
.yd3{bottom:283.854600px;}
.y19{bottom:286.808850px;}
.y87{bottom:288.742650px;}
.yfa{bottom:291.152550px;}
.ye8{bottom:292.104600px;}
.y60{bottom:294.654450px;}
.yb0{bottom:297.186900px;}
.y42{bottom:297.204600px;}
.y125{bottom:300.212700px;}
.yd2{bottom:305.604600px;}
.y18{bottom:308.558850px;}
.yf9{bottom:309.152550px;}
.y86{bottom:309.742650px;}
.y5f{bottom:315.654450px;}
.yaf{bottom:318.186900px;}
.y41{bottom:318.204600px;}
.y124{bottom:318.212700px;}
.yf8{bottom:327.152550px;}
.yd1{bottom:327.354600px;}
.y85{bottom:330.742650px;}
.ye7{bottom:335.604600px;}
.y123{bottom:336.212700px;}
.y5e{bottom:336.654450px;}
.yae{bottom:339.186900px;}
.y40{bottom:339.204600px;}
.yf7{bottom:349.404450px;}
.y84{bottom:351.742650px;}
.y17{bottom:352.058850px;}
.y122{bottom:354.212700px;}
.y5d{bottom:357.654450px;}
.yad{bottom:360.186900px;}
.y3f{bottom:360.204600px;}
.yf6{bottom:367.404450px;}
.yd0{bottom:370.854600px;}
.y83{bottom:372.742650px;}
.y121{bottom:376.464600px;}
.ye6{bottom:378.204600px;}
.y5c{bottom:378.654450px;}
.yac{bottom:381.186900px;}
.y3e{bottom:381.204600px;}
.yf5{bottom:385.404450px;}
.y82{bottom:393.742650px;}
.y120{bottom:394.464600px;}
.y16{bottom:395.258850px;}
.ye5{bottom:399.204600px;}
.y5b{bottom:399.654450px;}
.yab{bottom:402.186900px;}
.y3d{bottom:402.204600px;}
.yf4{bottom:403.404450px;}
.ycf{bottom:414.054450px;}
.y81{bottom:414.742650px;}
.y11f{bottom:416.716650px;}
.y15{bottom:419.010900px;}
.ye4{bottom:420.204600px;}
.y5a{bottom:420.654450px;}
.yaa{bottom:423.186900px;}
.y3c{bottom:423.204600px;}
.y11e{bottom:434.716650px;}
.yce{bottom:435.654450px;}
.y80{bottom:435.742650px;}
.y14{bottom:438.510900px;}
.ye3{bottom:441.204600px;}
.y59{bottom:441.654450px;}
.yf3{bottom:443.004600px;}
.ya9{bottom:444.186900px;}
.y3b{bottom:444.204600px;}
.y11d{bottom:452.716650px;}
.y7f{bottom:456.742650px;}
.ycd{bottom:457.254600px;}
.ye2{bottom:462.204600px;}
.y13{bottom:462.262800px;}
.y58{bottom:462.654450px;}
.yf2{bottom:464.604600px;}
.ya8{bottom:465.186900px;}
.y3a{bottom:465.204600px;}
.y11c{bottom:470.716650px;}
.y7e{bottom:477.742650px;}
.ycc{bottom:479.004600px;}
.y12{bottom:481.762800px;}
.ye1{bottom:483.204600px;}
.y57{bottom:483.654450px;}
.ya7{bottom:486.186900px;}
.y39{bottom:486.204600px;}
.y11b{bottom:492.968700px;}
.y7d{bottom:498.742650px;}
.ycb{bottom:500.754600px;}
.y11{bottom:501.262800px;}
.y56{bottom:504.654450px;}
.ye0{bottom:504.804450px;}
.ya6{bottom:507.186900px;}
.y38{bottom:507.204600px;}
.y11a{bottom:510.968700px;}
.y7c{bottom:519.742650px;}
.y10{bottom:520.762800px;}
.yca{bottom:522.504600px;}
.y55{bottom:525.654450px;}
.ydf{bottom:526.404450px;}
.ya5{bottom:528.186900px;}
.y37{bottom:528.204600px;}
.y119{bottom:528.968700px;}
.yf{bottom:540.262800px;}
.y7b{bottom:540.742650px;}
.yc9{bottom:544.254600px;}
.y54{bottom:546.654450px;}
.y118{bottom:546.968700px;}
.yde{bottom:548.004600px;}
.ya4{bottom:549.186900px;}
.y36{bottom:549.204600px;}
.ye{bottom:559.762800px;}
.y7a{bottom:561.742650px;}
.yc8{bottom:566.004600px;}
.y53{bottom:567.654450px;}
.y117{bottom:569.220600px;}
.ydd{bottom:569.604600px;}
.ya3{bottom:570.186900px;}
.y35{bottom:570.204600px;}
.yd{bottom:579.262800px;}
.y79{bottom:582.742650px;}
.y116{bottom:587.220600px;}
.yc7{bottom:587.754600px;}
.y52{bottom:588.654450px;}
.ya2{bottom:591.186900px;}
.y34{bottom:591.204600px;}
.yc{bottom:598.762800px;}
.y78{bottom:603.742650px;}
.y115{bottom:609.472500px;}
.yc6{bottom:609.504600px;}
.y51{bottom:609.654450px;}
.ya1{bottom:612.186900px;}
.y33{bottom:612.204600px;}
.yb{bottom:618.262800px;}
.y77{bottom:624.742650px;}
.y114{bottom:627.472500px;}
.y50{bottom:630.654450px;}
.yc5{bottom:631.254600px;}
.ya0{bottom:633.186900px;}
.y32{bottom:633.204600px;}
.ya{bottom:637.762800px;}
.y113{bottom:645.472500px;}
.y76{bottom:645.742650px;}
.y4f{bottom:651.654450px;}
.yc4{bottom:653.004600px;}
.y9f{bottom:654.186900px;}
.y31{bottom:654.204600px;}
.y9{bottom:657.262800px;}
.y112{bottom:663.472500px;}
.y75{bottom:666.742650px;}
.y4e{bottom:672.654450px;}
.yc3{bottom:674.754600px;}
.y9e{bottom:675.186900px;}
.y30{bottom:675.204600px;}
.y8{bottom:676.762800px;}
.y111{bottom:685.724550px;}
.y74{bottom:687.742650px;}
.y4d{bottom:693.654450px;}
.y9d{bottom:696.186900px;}
.y2f{bottom:696.204600px;}
.yc2{bottom:696.504600px;}
.y110{bottom:703.724550px;}
.y73{bottom:708.742650px;}
.y9c{bottom:717.186900px;}
.y2e{bottom:717.204600px;}
.y7{bottom:717.862800px;}
.yc1{bottom:718.254600px;}
.y10f{bottom:721.724550px;}
.y72{bottom:729.742650px;}
.y4c{bottom:736.404450px;}
.y9b{bottom:738.186900px;}
.y2d{bottom:738.204600px;}
.yc0{bottom:740.004600px;}
.y6{bottom:743.062800px;}
.y10e{bottom:743.976450px;}
.y71{bottom:750.742650px;}
.y4b{bottom:758.004600px;}
.y9a{bottom:759.186900px;}
.y2c{bottom:759.204600px;}
.ybf{bottom:761.754600px;}
.y10d{bottom:761.976450px;}
.y5{bottom:767.062800px;}
.y70{bottom:771.742650px;}
.y10c{bottom:779.976450px;}
.y99{bottom:780.186900px;}
.y2b{bottom:780.204600px;}
.ybe{bottom:783.504600px;}
.y6f{bottom:792.742650px;}
.y10b{bottom:797.976450px;}
.y98{bottom:801.186900px;}
.y2a{bottom:801.204600px;}
.ybd{bottom:805.254600px;}
.y6e{bottom:814.492650px;}
.y10a{bottom:815.976450px;}
.y4{bottom:817.462800px;}
.y97{bottom:822.186900px;}
.y29{bottom:822.204600px;}
.y6d{bottom:836.242650px;}
.y109{bottom:838.228500px;}
.ybc{bottom:842.004600px;}
.y96{bottom:843.186900px;}
.y28{bottom:843.204600px;}
.y3{bottom:844.462800px;}
.y108{bottom:856.228500px;}
.y6c{bottom:857.992650px;}
.y95{bottom:864.186900px;}
.y27{bottom:864.204600px;}
.y107{bottom:874.228500px;}
.y6b{bottom:879.742650px;}
.y94{bottom:885.186900px;}
.y26{bottom:885.204600px;}
.y106{bottom:892.228500px;}
.y93{bottom:906.186900px;}
.y25{bottom:906.204600px;}
.y105{bottom:910.228500px;}
.y92{bottom:927.186900px;}
.y24{bottom:927.204600px;}
.y23{bottom:927.477600px;}
.y6a{bottom:927.494550px;}
.y104{bottom:928.228500px;}
.y1{bottom:965.377200px;}
.h2{height:33.328125px;}
.h8{height:41.689453px;}
.hb{height:45.826172px;}
.ha{height:45.858398px;}
.h6{height:47.909180px;}
.h9{height:48.761719px;}
.h7{height:48.796875px;}
.h5{height:50.027344px;}
.h3{height:50.400000px;}
.h4{height:56.929688px;}
.h0{height:1041.732000px;}
.h1{height:1041.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:81.573600px;}
.x1{left:84.330750px;}
.xb{left:123.307050px;}
.x9{left:127.559100px;}
.x3{left:133.755000px;}
.x7{left:134.787450px;}
.xa{left:140.314950px;}
.x4{left:231.623400px;}
.x8{left:265.622250px;}
.x6{left:268.912500px;}
.x2{left:352.068750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-1.493333pt;}
.ls2{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.058667pt;}
.ls6{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.469333pt;}
.ls3{letter-spacing:1.525333pt;}
.ws82{word-spacing:-16.192000pt;}
.ws1e{word-spacing:-16.000000pt;}
.ws0{word-spacing:-15.333333pt;}
.ws83{word-spacing:-15.136000pt;}
.ws81{word-spacing:-14.960000pt;}
.ws84{word-spacing:-14.725333pt;}
.ws6f{word-spacing:-14.666667pt;}
.ws3c{word-spacing:-7.680000pt;}
.ws27{word-spacing:-6.976000pt;}
.ws3{word-spacing:-6.133333pt;}
.ws2e{word-spacing:-5.952000pt;}
.ws40{word-spacing:-5.888000pt;}
.ws5e{word-spacing:-5.376000pt;}
.ws5f{word-spacing:-5.056000pt;}
.ws9b{word-spacing:-4.928000pt;}
.ws16{word-spacing:-4.864000pt;}
.ws11{word-spacing:-4.544000pt;}
.ws46{word-spacing:-4.480000pt;}
.ws87{word-spacing:-4.165333pt;}
.ws52{word-spacing:-4.160000pt;}
.ws2{word-spacing:-4.106667pt;}
.ws49{word-spacing:-3.904000pt;}
.ws58{word-spacing:-3.776000pt;}
.ws68{word-spacing:-3.648000pt;}
.ws5c{word-spacing:-3.584000pt;}
.ws1f{word-spacing:-3.520000pt;}
.ws32{word-spacing:-3.456000pt;}
.ws76{word-spacing:-3.008000pt;}
.ws54{word-spacing:-2.752000pt;}
.ws22{word-spacing:-2.560000pt;}
.ws95{word-spacing:-2.522667pt;}
.ws7a{word-spacing:-2.464000pt;}
.ws47{word-spacing:-2.304000pt;}
.ws94{word-spacing:-2.288000pt;}
.ws7b{word-spacing:-2.170667pt;}
.ws2c{word-spacing:-1.920000pt;}
.ws7d{word-spacing:-1.877333pt;}
.ws1b{word-spacing:-1.856000pt;}
.ws15{word-spacing:-1.792000pt;}
.ws9{word-spacing:-1.778667pt;}
.ws25{word-spacing:-1.664000pt;}
.ws1d{word-spacing:-1.600000pt;}
.ws26{word-spacing:-1.344000pt;}
.ws5{word-spacing:-1.288000pt;}
.ws44{word-spacing:-1.024000pt;}
.ws8e{word-spacing:-0.762667pt;}
.ws73{word-spacing:-0.704000pt;}
.ws92{word-spacing:-0.410667pt;}
.ws3b{word-spacing:-0.256000pt;}
.ws38{word-spacing:-0.128000pt;}
.ws1{word-spacing:0.000000pt;}
.ws8{word-spacing:0.061333pt;}
.ws80{word-spacing:0.234667pt;}
.ws36{word-spacing:0.256000pt;}
.ws70{word-spacing:0.448000pt;}
.ws63{word-spacing:0.640000pt;}
.ws31{word-spacing:0.768000pt;}
.ws85{word-spacing:0.880000pt;}
.ws39{word-spacing:0.896000pt;}
.ws4d{word-spacing:1.024000pt;}
.ws29{word-spacing:1.216000pt;}
.ws6b{word-spacing:1.280000pt;}
.ws77{word-spacing:1.472000pt;}
.ws75{word-spacing:1.536000pt;}
.ws67{word-spacing:1.600000pt;}
.ws30{word-spacing:1.728000pt;}
.ws89{word-spacing:1.877333pt;}
.wsf{word-spacing:1.984000pt;}
.ws97{word-spacing:2.053333pt;}
.ws88{word-spacing:2.112000pt;}
.ws12{word-spacing:2.240000pt;}
.ws33{word-spacing:2.368000pt;}
.ws7c{word-spacing:2.522667pt;}
.ws45{word-spacing:2.560000pt;}
.ws35{word-spacing:2.624000pt;}
.ws19{word-spacing:2.816000pt;}
.ws1c{word-spacing:2.880000pt;}
.ws6a{word-spacing:2.944000pt;}
.ws98{word-spacing:3.109333pt;}
.ws61{word-spacing:3.136000pt;}
.ws3e{word-spacing:3.200000pt;}
.wsa{word-spacing:3.312000pt;}
.ws53{word-spacing:3.328000pt;}
.ws5d{word-spacing:3.520000pt;}
.ws41{word-spacing:3.648000pt;}
.ws4{word-spacing:3.680000pt;}
.wsd{word-spacing:3.712000pt;}
.ws3a{word-spacing:3.840000pt;}
.ws59{word-spacing:3.904000pt;}
.ws42{word-spacing:4.160000pt;}
.ws9a{word-spacing:4.341333pt;}
.ws8a{word-spacing:4.400000pt;}
.ws21{word-spacing:4.544000pt;}
.ws28{word-spacing:4.800000pt;}
.ws37{word-spacing:4.864000pt;}
.ws18{word-spacing:4.992000pt;}
.ws60{word-spacing:5.056000pt;}
.ws69{word-spacing:5.120000pt;}
.ws24{word-spacing:5.440000pt;}
.ws7e{word-spacing:5.456000pt;}
.ws2d{word-spacing:5.568000pt;}
.ws14{word-spacing:6.016000pt;}
.ws43{word-spacing:6.144000pt;}
.ws79{word-spacing:6.160000pt;}
.ws65{word-spacing:6.208000pt;}
.ws72{word-spacing:6.272000pt;}
.ws17{word-spacing:6.528000pt;}
.ws71{word-spacing:6.592000pt;}
.ws78{word-spacing:6.720000pt;}
.ws5a{word-spacing:6.912000pt;}
.ws4a{word-spacing:7.040000pt;}
.ws66{word-spacing:7.104000pt;}
.ws23{word-spacing:7.168000pt;}
.ws34{word-spacing:7.424000pt;}
.ws6e{word-spacing:7.552000pt;}
.ws9c{word-spacing:8.096000pt;}
.ws96{word-spacing:8.154667pt;}
.ws3f{word-spacing:8.256000pt;}
.ws62{word-spacing:8.576000pt;}
.wse{word-spacing:8.640000pt;}
.ws93{word-spacing:8.682667pt;}
.ws50{word-spacing:8.768000pt;}
.ws5b{word-spacing:9.024000pt;}
.ws55{word-spacing:9.088000pt;}
.ws7{word-spacing:9.138667pt;}
.ws6d{word-spacing:9.152000pt;}
.wsc{word-spacing:9.216000pt;}
.ws48{word-spacing:9.600000pt;}
.ws13{word-spacing:9.920000pt;}
.ws2a{word-spacing:10.176000pt;}
.ws56{word-spacing:10.432000pt;}
.ws3d{word-spacing:11.136000pt;}
.ws1a{word-spacing:11.456000pt;}
.ws20{word-spacing:11.968000pt;}
.ws57{word-spacing:12.416000pt;}
.ws86{word-spacing:12.789333pt;}
.ws2b{word-spacing:13.568000pt;}
.ws8d{word-spacing:14.314667pt;}
.ws6c{word-spacing:14.400000pt;}
.wsb{word-spacing:14.912000pt;}
.ws4b{word-spacing:15.232000pt;}
.ws90{word-spacing:15.312000pt;}
.ws8c{word-spacing:15.546667pt;}
.ws74{word-spacing:15.680000pt;}
.ws10{word-spacing:15.744000pt;}
.ws8f{word-spacing:16.485333pt;}
.ws2f{word-spacing:17.472000pt;}
.ws4c{word-spacing:17.920000pt;}
.ws51{word-spacing:18.176000pt;}
.ws6{word-spacing:18.277333pt;}
.ws7f{word-spacing:20.709333pt;}
.ws4f{word-spacing:20.992000pt;}
.ws4e{word-spacing:23.296000pt;}
.ws91{word-spacing:23.466667pt;}
.ws64{word-spacing:32.768000pt;}
.ws8b{word-spacing:60.954667pt;}
.ws99{word-spacing:80.197333pt;}
._1a{margin-left:-11.604267pt;}
._14{margin-left:-8.691200pt;}
._c{margin-left:-7.544533pt;}
._2{margin-left:-5.812267pt;}
._0{margin-left:-4.757333pt;}
._4{margin-left:-3.692800pt;}
._1{margin-left:-2.762667pt;}
._5{margin-left:-1.849600pt;}
._8{margin-left:-0.896000pt;}
._b{width:1.164800pt;}
._6{width:2.888800pt;}
._3{width:4.121600pt;}
._7{width:5.808533pt;}
._a{width:7.340800pt;}
._11{width:8.249600pt;}
._d{width:9.184000pt;}
._10{width:10.880000pt;}
._9{width:12.569600pt;}
._12{width:13.638400pt;}
._18{width:14.572800pt;}
._19{width:16.164267pt;}
._16{width:18.611200pt;}
._e{width:20.406933pt;}
._f{width:21.579733pt;}
._15{width:22.714667pt;}
._17{width:29.030400pt;}
._13{width:158.080000pt;}
.fs0{font-size:42.666667pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs3{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:33.900533pt;}
.y91{bottom:69.993467pt;}
.ybb{bottom:77.515200pt;}
.ydc{bottom:78.315067pt;}
.y22{bottom:83.607867pt;}
.yf1{bottom:85.648400pt;}
.y90{bottom:88.660133pt;}
.y69{bottom:93.915067pt;}
.yb9{bottom:94.032933pt;}
.y12f{bottom:95.517200pt;}
.yba{bottom:96.181867pt;}
.ydb{bottom:97.648400pt;}
.y103{bottom:99.684133pt;}
.y21{bottom:102.274533pt;}
.yf0{bottom:104.981733pt;}
.y8f{bottom:107.326800pt;}
.y12e{bottom:111.517200pt;}
.y68{bottom:112.581733pt;}
.yb8{bottom:113.232800pt;}
.y4a{bottom:114.848533pt;}
.y102{bottom:115.684133pt;}
.yda{bottom:116.981733pt;}
.y20{bottom:120.941200pt;}
.yef{bottom:124.315067pt;}
.y8e{bottom:125.993467pt;}
.y12d{bottom:127.517200pt;}
.y67{bottom:131.248400pt;}
.yb7{bottom:132.432800pt;}
.y49{bottom:133.515200pt;}
.y101{bottom:135.463733pt;}
.yd9{bottom:136.315067pt;}
.y1f{bottom:139.607867pt;}
.y12c{bottom:143.517200pt;}
.yee{bottom:143.648400pt;}
.y8d{bottom:144.660133pt;}
.y66{bottom:149.915067pt;}
.y100{bottom:151.463733pt;}
.yb6{bottom:151.632800pt;}
.y48{bottom:152.181867pt;}
.yd8{bottom:155.648533pt;}
.y1e{bottom:158.274533pt;}
.y12b{bottom:159.517200pt;}
.yed{bottom:162.981867pt;}
.y8c{bottom:163.326800pt;}
.yff{bottom:167.463733pt;}
.y65{bottom:168.581733pt;}
.yb5{bottom:170.832800pt;}
.y47{bottom:170.848533pt;}
.yd7{bottom:174.981867pt;}
.y1d{bottom:177.607867pt;}
.y12a{bottom:179.296667pt;}
.y8b{bottom:181.993467pt;}
.yec{bottom:182.315200pt;}
.yfe{bottom:187.243200pt;}
.y64{bottom:187.248400pt;}
.yb4{bottom:189.499467pt;}
.y46{bottom:189.515200pt;}
.yd6{bottom:194.315200pt;}
.y129{bottom:195.296667pt;}
.y1c{bottom:196.941200pt;}
.y8a{bottom:200.660133pt;}
.yeb{bottom:201.648533pt;}
.y63{bottom:205.915067pt;}
.yfd{bottom:207.022800pt;}
.yb3{bottom:208.166133pt;}
.y45{bottom:208.181867pt;}
.y128{bottom:211.296667pt;}
.yd5{bottom:213.648533pt;}
.y1b{bottom:216.274533pt;}
.y89{bottom:219.326800pt;}
.yea{bottom:220.981867pt;}
.yfc{bottom:223.022800pt;}
.y62{bottom:224.581733pt;}
.yb2{bottom:226.832800pt;}
.y44{bottom:226.848533pt;}
.y127{bottom:231.076267pt;}
.yd4{bottom:232.981867pt;}
.y1a{bottom:235.607867pt;}
.y88{bottom:237.993467pt;}
.ye9{bottom:240.315200pt;}
.yfb{bottom:242.802267pt;}
.y61{bottom:243.248400pt;}
.yb1{bottom:245.499467pt;}
.y43{bottom:245.515200pt;}
.y126{bottom:247.076267pt;}
.yd3{bottom:252.315200pt;}
.y19{bottom:254.941200pt;}
.y87{bottom:256.660133pt;}
.yfa{bottom:258.802267pt;}
.ye8{bottom:259.648533pt;}
.y60{bottom:261.915067pt;}
.yb0{bottom:264.166133pt;}
.y42{bottom:264.181867pt;}
.y125{bottom:266.855733pt;}
.yd2{bottom:271.648533pt;}
.y18{bottom:274.274533pt;}
.yf9{bottom:274.802267pt;}
.y86{bottom:275.326800pt;}
.y5f{bottom:280.581733pt;}
.yaf{bottom:282.832800pt;}
.y41{bottom:282.848533pt;}
.y124{bottom:282.855733pt;}
.yf8{bottom:290.802267pt;}
.yd1{bottom:290.981867pt;}
.y85{bottom:293.993467pt;}
.ye7{bottom:298.315200pt;}
.y123{bottom:298.855733pt;}
.y5e{bottom:299.248400pt;}
.yae{bottom:301.499467pt;}
.y40{bottom:301.515200pt;}
.yf7{bottom:310.581733pt;}
.y84{bottom:312.660133pt;}
.y17{bottom:312.941200pt;}
.y122{bottom:314.855733pt;}
.y5d{bottom:317.915067pt;}
.yad{bottom:320.166133pt;}
.y3f{bottom:320.181867pt;}
.yf6{bottom:326.581733pt;}
.yd0{bottom:329.648533pt;}
.y83{bottom:331.326800pt;}
.y121{bottom:334.635200pt;}
.ye6{bottom:336.181867pt;}
.y5c{bottom:336.581733pt;}
.yac{bottom:338.832800pt;}
.y3e{bottom:338.848533pt;}
.yf5{bottom:342.581733pt;}
.y82{bottom:349.993467pt;}
.y120{bottom:350.635200pt;}
.y16{bottom:351.341200pt;}
.ye5{bottom:354.848533pt;}
.y5b{bottom:355.248400pt;}
.yab{bottom:357.499467pt;}
.y3d{bottom:357.515200pt;}
.yf4{bottom:358.581733pt;}
.ycf{bottom:368.048400pt;}
.y81{bottom:368.660133pt;}
.y11f{bottom:370.414800pt;}
.y15{bottom:372.454133pt;}
.ye4{bottom:373.515200pt;}
.y5a{bottom:373.915067pt;}
.yaa{bottom:376.166133pt;}
.y3c{bottom:376.181867pt;}
.y11e{bottom:386.414800pt;}
.yce{bottom:387.248400pt;}
.y80{bottom:387.326800pt;}
.y14{bottom:389.787467pt;}
.ye3{bottom:392.181867pt;}
.y59{bottom:392.581733pt;}
.yf3{bottom:393.781867pt;}
.ya9{bottom:394.832800pt;}
.y3b{bottom:394.848533pt;}
.y11d{bottom:402.414800pt;}
.y7f{bottom:405.993467pt;}
.ycd{bottom:406.448533pt;}
.ye2{bottom:410.848533pt;}
.y13{bottom:410.900267pt;}
.y58{bottom:411.248400pt;}
.yf2{bottom:412.981867pt;}
.ya8{bottom:413.499467pt;}
.y3a{bottom:413.515200pt;}
.y11c{bottom:418.414800pt;}
.y7e{bottom:424.660133pt;}
.ycc{bottom:425.781867pt;}
.y12{bottom:428.233600pt;}
.ye1{bottom:429.515200pt;}
.y57{bottom:429.915067pt;}
.ya7{bottom:432.166133pt;}
.y39{bottom:432.181867pt;}
.y11b{bottom:438.194400pt;}
.y7d{bottom:443.326800pt;}
.ycb{bottom:445.115200pt;}
.y11{bottom:445.566933pt;}
.y56{bottom:448.581733pt;}
.ye0{bottom:448.715067pt;}
.ya6{bottom:450.832800pt;}
.y38{bottom:450.848533pt;}
.y11a{bottom:454.194400pt;}
.y7c{bottom:461.993467pt;}
.y10{bottom:462.900267pt;}
.yca{bottom:464.448533pt;}
.y55{bottom:467.248400pt;}
.ydf{bottom:467.915067pt;}
.ya5{bottom:469.499467pt;}
.y37{bottom:469.515200pt;}
.y119{bottom:470.194400pt;}
.yf{bottom:480.233600pt;}
.y7b{bottom:480.660133pt;}
.yc9{bottom:483.781867pt;}
.y54{bottom:485.915067pt;}
.y118{bottom:486.194400pt;}
.yde{bottom:487.115200pt;}
.ya4{bottom:488.166133pt;}
.y36{bottom:488.181867pt;}
.ye{bottom:497.566933pt;}
.y7a{bottom:499.326800pt;}
.yc8{bottom:503.115200pt;}
.y53{bottom:504.581733pt;}
.y117{bottom:505.973867pt;}
.ydd{bottom:506.315200pt;}
.ya3{bottom:506.832800pt;}
.y35{bottom:506.848533pt;}
.yd{bottom:514.900267pt;}
.y79{bottom:517.993467pt;}
.y116{bottom:521.973867pt;}
.yc7{bottom:522.448533pt;}
.y52{bottom:523.248400pt;}
.ya2{bottom:525.499467pt;}
.y34{bottom:525.515200pt;}
.yc{bottom:532.233600pt;}
.y78{bottom:536.660133pt;}
.y115{bottom:541.753333pt;}
.yc6{bottom:541.781867pt;}
.y51{bottom:541.915067pt;}
.ya1{bottom:544.166133pt;}
.y33{bottom:544.181867pt;}
.yb{bottom:549.566933pt;}
.y77{bottom:555.326800pt;}
.y114{bottom:557.753333pt;}
.y50{bottom:560.581733pt;}
.yc5{bottom:561.115200pt;}
.ya0{bottom:562.832800pt;}
.y32{bottom:562.848533pt;}
.ya{bottom:566.900267pt;}
.y113{bottom:573.753333pt;}
.y76{bottom:573.993467pt;}
.y4f{bottom:579.248400pt;}
.yc4{bottom:580.448533pt;}
.y9f{bottom:581.499467pt;}
.y31{bottom:581.515200pt;}
.y9{bottom:584.233600pt;}
.y112{bottom:589.753333pt;}
.y75{bottom:592.660133pt;}
.y4e{bottom:597.915067pt;}
.yc3{bottom:599.781867pt;}
.y9e{bottom:600.166133pt;}
.y30{bottom:600.181867pt;}
.y8{bottom:601.566933pt;}
.y111{bottom:609.532933pt;}
.y74{bottom:611.326800pt;}
.y4d{bottom:616.581733pt;}
.y9d{bottom:618.832800pt;}
.y2f{bottom:618.848533pt;}
.yc2{bottom:619.115200pt;}
.y110{bottom:625.532933pt;}
.y73{bottom:629.993467pt;}
.y9c{bottom:637.499467pt;}
.y2e{bottom:637.515200pt;}
.y7{bottom:638.100267pt;}
.yc1{bottom:638.448533pt;}
.y10f{bottom:641.532933pt;}
.y72{bottom:648.660133pt;}
.y4c{bottom:654.581733pt;}
.y9b{bottom:656.166133pt;}
.y2d{bottom:656.181867pt;}
.yc0{bottom:657.781867pt;}
.y6{bottom:660.500267pt;}
.y10e{bottom:661.312400pt;}
.y71{bottom:667.326800pt;}
.y4b{bottom:673.781867pt;}
.y9a{bottom:674.832800pt;}
.y2c{bottom:674.848533pt;}
.ybf{bottom:677.115200pt;}
.y10d{bottom:677.312400pt;}
.y5{bottom:681.833600pt;}
.y70{bottom:685.993467pt;}
.y10c{bottom:693.312400pt;}
.y99{bottom:693.499467pt;}
.y2b{bottom:693.515200pt;}
.ybe{bottom:696.448533pt;}
.y6f{bottom:704.660133pt;}
.y10b{bottom:709.312400pt;}
.y98{bottom:712.166133pt;}
.y2a{bottom:712.181867pt;}
.ybd{bottom:715.781867pt;}
.y6e{bottom:723.993467pt;}
.y10a{bottom:725.312400pt;}
.y4{bottom:726.633600pt;}
.y97{bottom:730.832800pt;}
.y29{bottom:730.848533pt;}
.y6d{bottom:743.326800pt;}
.y109{bottom:745.092000pt;}
.ybc{bottom:748.448533pt;}
.y96{bottom:749.499467pt;}
.y28{bottom:749.515200pt;}
.y3{bottom:750.633600pt;}
.y108{bottom:761.092000pt;}
.y6c{bottom:762.660133pt;}
.y95{bottom:768.166133pt;}
.y27{bottom:768.181867pt;}
.y107{bottom:777.092000pt;}
.y6b{bottom:781.993467pt;}
.y94{bottom:786.832800pt;}
.y26{bottom:786.848533pt;}
.y106{bottom:793.092000pt;}
.y93{bottom:805.499467pt;}
.y25{bottom:805.515200pt;}
.y105{bottom:809.092000pt;}
.y92{bottom:824.166133pt;}
.y24{bottom:824.181867pt;}
.y23{bottom:824.424533pt;}
.y6a{bottom:824.439600pt;}
.y104{bottom:825.092000pt;}
.y1{bottom:858.113067pt;}
.h2{height:29.625000pt;}
.h8{height:37.057292pt;}
.hb{height:40.734375pt;}
.ha{height:40.763021pt;}
.h6{height:42.585938pt;}
.h9{height:43.343750pt;}
.h7{height:43.375000pt;}
.h5{height:44.468750pt;}
.h3{height:44.800000pt;}
.h4{height:50.604167pt;}
.h0{height:925.984000pt;}
.h1{height:926.000000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:72.509867pt;}
.x1{left:74.960667pt;}
.xb{left:109.606267pt;}
.x9{left:113.385867pt;}
.x3{left:118.893333pt;}
.x7{left:119.811067pt;}
.xa{left:124.724400pt;}
.x4{left:205.887467pt;}
.x8{left:236.108667pt;}
.x6{left:239.033333pt;}
.x2{left:312.950000pt;}
}




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