
    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_49a7d9e761af22c7f7deebc0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171387;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_65ebd4c7234297cde11d6c7b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.766602;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_835f08a651d418560407a68f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.006348;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_b4446ca3139b08aa3fc13348.woff')format("woff");}.ff4{font-family:ff4;line-height:1.006348;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_1e202dc2266d2136c88a3572.woff')format("woff");}.ff5{font-family:ff5;line-height:1.171387;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_8f71bf3b1c41e0d846e7970b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.171387;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_75d91c43d7e6f6cfb5aaf48d.woff')format("woff");}.ff7{font-family:ff7;line-height:1.006348;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_079b807d678094177fd2319b.woff')format("woff");}.ff8{font-family:ff8;line-height:0.808000;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_95cc6f7ea99847f1d16ae1b6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.171387;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_95cc6f7ea99847f1d16ae1b6.woff')format("woff");}.ffa{font-family:ffa;line-height:1.171387;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:ffb;src:url('chunks/assets/font_c6ffa86de4f34dde50218d58.woff')format("woff");}.ffb{font-family:ffb;line-height:0.774902;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-11.988000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.976222px;}
.ls16{letter-spacing:-0.960000px;}
.lsd{letter-spacing:-0.480000px;}
.lse{letter-spacing:-0.192000px;}
.lsc{letter-spacing:-0.156000px;}
.lsf{letter-spacing:-0.144000px;}
.ls9{letter-spacing:-0.108000px;}
.ls5{letter-spacing:-0.078000px;}
.lsa{letter-spacing:-0.072000px;}
.ls6{letter-spacing:-0.054000px;}
.lsb{letter-spacing:-0.039000px;}
.ls8{letter-spacing:-0.036000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.006000px;}
.ls11{letter-spacing:0.006600px;}
.ls10{letter-spacing:0.007200px;}
.ls12{letter-spacing:0.010200px;}
.ls13{letter-spacing:0.010800px;}
.ls7{letter-spacing:0.036000px;}
.ls14{letter-spacing:0.480000px;}
.ls15{letter-spacing:5.896800px;}
.ls17{letter-spacing:6.596400px;}
.ls2{letter-spacing:14.004000px;}
.ls1{letter-spacing:53.988000px;}
.ls0{letter-spacing:68.028000px;}
.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:-15.600000px;}
.ws2{word-spacing:-14.040000px;}
.ws1c{word-spacing:-12.960000px;}
.ws8{word-spacing:-12.480000px;}
.ws37{word-spacing:-11.520000px;}
.ws4{word-spacing:-9.360000px;}
.ws1{word-spacing:-8.185320px;}
.ws40{word-spacing:-7.056000px;}
.ws3{word-spacing:-5.456880px;}
.ws1d{word-spacing:-3.429600px;}
.ws38{word-spacing:-3.417000px;}
.ws3e{word-spacing:-3.024000px;}
.ws34{word-spacing:-2.928000px;}
.ws19{word-spacing:-2.496000px;}
.ws49{word-spacing:-2.400000px;}
.wsd{word-spacing:-2.208000px;}
.ws3a{word-spacing:-1.824000px;}
.ws15{word-spacing:-1.776000px;}
.ws24{word-spacing:-1.536000px;}
.ws2b{word-spacing:-1.533000px;}
.ws1b{word-spacing:-1.531200px;}
.ws2e{word-spacing:-1.296000px;}
.ws43{word-spacing:-1.200000px;}
.ws27{word-spacing:-1.104000px;}
.ws36{word-spacing:-0.960000px;}
.ws7{word-spacing:-0.816000px;}
.ws12{word-spacing:-0.720000px;}
.wsa{word-spacing:-0.480000px;}
.ws3d{word-spacing:-0.336000px;}
.ws47{word-spacing:-0.048000px;}
.ws5{word-spacing:0.000000px;}
.ws3b{word-spacing:0.048000px;}
.ws10{word-spacing:0.123600px;}
.ws35{word-spacing:0.192000px;}
.ws30{word-spacing:0.432000px;}
.ws6{word-spacing:0.480000px;}
.ws44{word-spacing:0.768000px;}
.ws2d{word-spacing:0.816000px;}
.ws3c{word-spacing:0.912000px;}
.ws39{word-spacing:0.960000px;}
.ws1a{word-spacing:1.104000px;}
.ws4b{word-spacing:1.152000px;}
.wsc{word-spacing:1.344000px;}
.ws28{word-spacing:1.440000px;}
.ws22{word-spacing:1.488000px;}
.ws31{word-spacing:1.680000px;}
.ws13{word-spacing:1.776000px;}
.ws32{word-spacing:1.824000px;}
.ws45{word-spacing:1.968000px;}
.ws9{word-spacing:2.016000px;}
.wsb{word-spacing:2.112000px;}
.ws20{word-spacing:2.160000px;}
.ws14{word-spacing:2.208000px;}
.ws2c{word-spacing:2.400000px;}
.ws48{word-spacing:2.688000px;}
.wse{word-spacing:2.832000px;}
.ws4a{word-spacing:3.216000px;}
.ws23{word-spacing:4.176000px;}
.ws4d{word-spacing:4.224000px;}
.ws2a{word-spacing:4.416000px;}
.ws42{word-spacing:4.512000px;}
.ws46{word-spacing:4.608000px;}
.ws29{word-spacing:4.656000px;}
.ws16{word-spacing:5.568000px;}
.ws21{word-spacing:5.616000px;}
.wsf{word-spacing:5.760000px;}
.ws11{word-spacing:5.904000px;}
.ws1f{word-spacing:5.952000px;}
.ws33{word-spacing:6.144000px;}
.ws26{word-spacing:6.192000px;}
.ws4c{word-spacing:6.624000px;}
.ws25{word-spacing:7.968000px;}
.ws41{word-spacing:9.072000px;}
.ws17{word-spacing:9.408000px;}
.ws2f{word-spacing:10.944000px;}
.ws1e{word-spacing:11.424000px;}
.ws18{word-spacing:12.624000px;}
.ws3f{word-spacing:14.784000px;}
._12{margin-left:-7.075200px;}
._2{margin-left:-5.644800px;}
._f{margin-left:-4.512000px;}
._a{margin-left:-3.297600px;}
._7{margin-left:-2.246400px;}
._6{margin-left:-1.220400px;}
._3{width:1.958400px;}
._4{width:3.006000px;}
._5{width:4.946400px;}
._9{width:6.859200px;}
._8{width:8.376000px;}
._c{width:10.027200px;}
._e{width:11.121600px;}
._10{width:13.646400px;}
._d{width:15.369600px;}
._b{width:16.507200px;}
._1{width:67.899036px;}
._11{width:831.189600px;}
._0{width:862.416000px;}
.fc5{color:rgb(253,199,27);}
.fc3{color:rgb(128,130,133);}
.fc1{color:rgb(44,114,122);}
.fc4{color:rgb(0,0,0);}
.fc2{color:rgb(119,119,119);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:20.988000px;}
.fs5{font-size:31.482000px;}
.fs0{font-size:36.000000px;}
.fs8{font-size:39.000000px;}
.fs2{font-size:48.000000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:78.000000px;}
.fs9{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:74.625000px;}
.y37{bottom:74.625300px;}
.y34{bottom:106.476000px;}
.y112{bottom:115.190250px;}
.yae{bottom:115.219200px;}
.y31{bottom:115.261500px;}
.ye3{bottom:115.740150px;}
.y6d{bottom:116.818350px;}
.y140{bottom:117.527100px;}
.y195{bottom:117.810450px;}
.y168{bottom:122.062500px;}
.y89{bottom:125.095500px;}
.y111{bottom:133.190250px;}
.yad{bottom:133.219200px;}
.y30{bottom:133.261500px;}
.ye2{bottom:133.515150px;}
.y6c{bottom:134.818350px;}
.y13f{bottom:135.527100px;}
.y194{bottom:135.810450px;}
.y167{bottom:140.062500px;}
.y88{bottom:143.095500px;}
.y110{bottom:151.190250px;}
.y2f{bottom:151.261500px;}
.ye1{bottom:151.515150px;}
.y6b{bottom:152.818350px;}
.y13e{bottom:153.527100px;}
.y193{bottom:153.810450px;}
.y179{bottom:158.062500px;}
.y166{bottom:162.314550px;}
.y87{bottom:165.348000px;}
.y2e{bottom:169.261500px;}
.y6a{bottom:170.818350px;}
.y13d{bottom:171.527100px;}
.y10f{bottom:173.442150px;}
.y192{bottom:176.062500px;}
.ye0{bottom:178.019100px;}
.y165{bottom:180.314550px;}
.y2d{bottom:187.261500px;}
.y69{bottom:188.818350px;}
.y13c{bottom:193.779000px;}
.y191{bottom:194.062500px;}
.ydf{bottom:196.019100px;}
.y86{bottom:196.104000px;}
.y164{bottom:198.314550px;}
.y2c{bottom:205.261500px;}
.y68{bottom:206.818350px;}
.y13b{bottom:211.779000px;}
.yde{bottom:214.019100px;}
.y178{bottom:216.314550px;}
.y10e{bottom:216.954000px;}
.y163{bottom:220.566450px;}
.y2b{bottom:227.512500px;}
.y13a{bottom:229.779000px;}
.ydd{bottom:232.019100px;}
.y67{bottom:233.322300px;}
.y190{bottom:234.314550px;}
.y10d{bottom:234.954000px;}
.y162{bottom:238.566450px;}
.ydc{bottom:250.019100px;}
.y66{bottom:251.322300px;}
.y139{bottom:252.030900px;}
.y18f{bottom:252.314550px;}
.y177{bottom:256.566450px;}
.y10c{bottom:257.205900px;}
.y161{bottom:260.818350px;}
.ydb{bottom:268.019100px;}
.y65{bottom:269.322300px;}
.y138{bottom:270.030900px;}
.y176{bottom:274.566450px;}
.y160{bottom:278.818350px;}
.yda{bottom:286.019100px;}
.y64{bottom:287.322300px;}
.y137{bottom:288.030900px;}
.y18e{bottom:292.566450px;}
.y15f{bottom:296.818350px;}
.y2a{bottom:299.784000px;}
.y10b{bottom:300.717750px;}
.yd9{bottom:304.019100px;}
.y63{bottom:305.322300px;}
.y136{bottom:306.030900px;}
.y18d{bottom:310.566450px;}
.y29{bottom:311.784000px;}
.y175{bottom:314.818350px;}
.y10a{bottom:318.717750px;}
.y15e{bottom:319.070400px;}
.yd8{bottom:322.019100px;}
.y62{bottom:323.322300px;}
.y28{bottom:323.784000px;}
.y135{bottom:328.282950px;}
.y18c{bottom:328.566450px;}
.y174{bottom:332.818350px;}
.y27{bottom:335.784000px;}
.y15d{bottom:337.070400px;}
.yd7{bottom:340.019100px;}
.y109{bottom:340.969800px;}
.y61{bottom:341.322300px;}
.y18b{bottom:346.566450px;}
.y26{bottom:347.784000px;}
.y134{bottom:350.534850px;}
.yac{bottom:351.498750px;}
.y15c{bottom:355.070400px;}
.yd6{bottom:358.019100px;}
.y60{bottom:359.322300px;}
.y25{bottom:359.784000px;}
.yab{bottom:367.698600px;}
.y133{bottom:368.534850px;}
.y18a{bottom:368.818350px;}
.y24{bottom:371.784000px;}
.y173{bottom:373.070400px;}
.yd5{bottom:376.019100px;}
.y5f{bottom:377.322300px;}
.y23{bottom:383.784000px;}
.y108{bottom:384.481500px;}
.y189{bottom:386.818350px;}
.y132{bottom:390.786900px;}
.y172{bottom:391.070400px;}
.yaa{bottom:392.402550px;}
.yd4{bottom:394.019100px;}
.y5e{bottom:395.322300px;}
.y22{bottom:395.784000px;}
.y107{bottom:402.481500px;}
.y188{bottom:404.818350px;}
.y21{bottom:407.784000px;}
.y131{bottom:408.786900px;}
.y171{bottom:409.070400px;}
.yd3{bottom:412.019100px;}
.y5d{bottom:413.322300px;}
.y20{bottom:424.036500px;}
.y106{bottom:424.733550px;}
.y187{bottom:427.070400px;}
.yd2{bottom:430.019100px;}
.y130{bottom:431.038950px;}
.y5c{bottom:431.322300px;}
.y15b{bottom:435.574350px;}
.ya9{bottom:435.914400px;}
.y186{bottom:445.070400px;}
.y12f{bottom:449.038950px;}
.y5b{bottom:449.322300px;}
.y15a{bottom:453.574350px;}
.ya8{bottom:453.914400px;}
.y1f{bottom:454.792500px;}
.yd1{bottom:456.523050px;}
.y185{bottom:463.070400px;}
.y1e{bottom:466.792500px;}
.y12e{bottom:467.038950px;}
.y5a{bottom:467.322300px;}
.y105{bottom:468.245400px;}
.y159{bottom:471.574350px;}
.ya7{bottom:471.914400px;}
.yd0{bottom:474.523050px;}
.y1d{bottom:478.792500px;}
.y59{bottom:485.322300px;}
.y104{bottom:486.245400px;}
.y12d{bottom:489.290850px;}
.y158{bottom:489.574350px;}
.ya6{bottom:489.914400px;}
.y1c{bottom:490.792500px;}
.ycf{bottom:492.523050px;}
.y1b{bottom:502.792500px;}
.y58{bottom:503.322300px;}
.y103{bottom:504.245400px;}
.y12c{bottom:507.290850px;}
.ya5{bottom:507.914400px;}
.yce{bottom:510.523050px;}
.y157{bottom:511.826250px;}
.y1a{bottom:514.792500px;}
.y57{bottom:521.322300px;}
.ya4{bottom:525.914400px;}
.y19{bottom:526.792500px;}
.ycd{bottom:528.523050px;}
.y12b{bottom:529.542750px;}
.y156{bottom:529.826250px;}
.y102{bottom:530.749350px;}
.y18{bottom:538.792500px;}
.y56{bottom:539.322300px;}
.y184{bottom:543.574350px;}
.ycc{bottom:546.523050px;}
.y12a{bottom:547.542750px;}
.y155{bottom:547.826250px;}
.ya3{bottom:548.166450px;}
.y101{bottom:548.749350px;}
.y17{bottom:550.792500px;}
.y55{bottom:557.322300px;}
.y183{bottom:561.574350px;}
.ycb{bottom:564.523050px;}
.y129{bottom:565.542750px;}
.y154{bottom:565.826250px;}
.y100{bottom:566.749350px;}
.y16{bottom:567.045000px;}
.y170{bottom:570.078300px;}
.y54{bottom:575.322300px;}
.ya2{bottom:578.922300px;}
.yca{bottom:582.523050px;}
.y182{bottom:583.826250px;}
.yff{bottom:584.749350px;}
.y128{bottom:587.794800px;}
.y153{bottom:588.078300px;}
.y53{bottom:593.322300px;}
.ya1{bottom:596.922300px;}
.yc9{bottom:600.523050px;}
.y181{bottom:601.826250px;}
.yfe{bottom:602.749350px;}
.y127{bottom:605.794800px;}
.y152{bottom:606.078300px;}
.ya0{bottom:614.922300px;}
.y85{bottom:615.915000px;}
.yc8{bottom:618.523050px;}
.y52{bottom:619.826250px;}
.yfd{bottom:620.749350px;}
.y126{bottom:623.794800px;}
.y151{bottom:628.330200px;}
.y84{bottom:632.115000px;}
.y9f{bottom:632.922300px;}
.y32{bottom:633.781500px;}
.yc7{bottom:636.523050px;}
.y51{bottom:637.826250px;}
.y180{bottom:642.078300px;}
.yfc{bottom:643.001250px;}
.y125{bottom:646.046700px;}
.y150{bottom:646.330200px;}
.y9e{bottom:650.922300px;}
.yc6{bottom:654.523050px;}
.y50{bottom:655.826250px;}
.y17f{bottom:660.078300px;}
.y83{bottom:661.071000px;}
.y14f{bottom:664.330200px;}
.y124{bottom:668.298750px;}
.y9d{bottom:668.922300px;}
.yc5{bottom:672.523050px;}
.y4f{bottom:673.826250px;}
.y17e{bottom:678.078300px;}
.y82{bottom:679.071000px;}
.y15{bottom:681.811500px;}
.y16f{bottom:682.330200px;}
.y123{bottom:686.298750px;}
.yfb{bottom:686.513100px;}
.y14e{bottom:686.582100px;}
.yc4{bottom:690.523050px;}
.y9c{bottom:691.174350px;}
.y4e{bottom:691.826250px;}
.y81{bottom:697.071000px;}
.y17d{bottom:700.330200px;}
.y14{bottom:702.811500px;}
.y122{bottom:704.298750px;}
.yfa{bottom:704.513100px;}
.y14d{bottom:704.582100px;}
.yc3{bottom:708.523050px;}
.y13{bottom:713.311500px;}
.y80{bottom:715.071000px;}
.y4d{bottom:718.330200px;}
.y9b{bottom:720.130200px;}
.yf9{bottom:722.288100px;}
.y14c{bottom:722.582100px;}
.y12{bottom:723.811500px;}
.yc2{bottom:726.523050px;}
.y121{bottom:726.550650px;}
.y7f{bottom:733.071000px;}
.y4c{bottom:736.330200px;}
.y9a{bottom:738.130200px;}
.yf8{bottom:740.063100px;}
.y17c{bottom:740.582100px;}
.y11{bottom:743.311500px;}
.yc1{bottom:744.523050px;}
.y120{bottom:744.550650px;}
.y14b{bottom:744.834150px;}
.y7e{bottom:751.071000px;}
.y10{bottom:753.811500px;}
.y4b{bottom:754.330200px;}
.y99{bottom:756.130200px;}
.yf7{bottom:757.838100px;}
.y17b{bottom:758.582100px;}
.yc0{bottom:762.522900px;}
.y11f{bottom:762.550650px;}
.y14a{bottom:762.834150px;}
.yf{bottom:773.311500px;}
.y7d{bottom:773.322000px;}
.y98{bottom:774.130200px;}
.yf6{bottom:775.613100px;}
.y17a{bottom:776.582100px;}
.ybf{bottom:780.522900px;}
.y4a{bottom:780.834150px;}
.ye{bottom:783.811500px;}
.y11e{bottom:784.802700px;}
.y16e{bottom:785.086050px;}
.y97{bottom:792.130200px;}
.yf5{bottom:793.388100px;}
.y49{bottom:798.834150px;}
.y11d{bottom:802.802700px;}
.y149{bottom:803.086050px;}
.y7c{bottom:804.078000px;}
.ybe{bottom:807.026850px;}
.y96{bottom:810.130200px;}
.yf4{bottom:811.163100px;}
.y48{bottom:816.834150px;}
.yd{bottom:819.064500px;}
.y148{bottom:821.086050px;}
.y7b{bottom:822.078000px;}
.ybd{bottom:825.026850px;}
.y11c{bottom:825.054600px;}
.y95{bottom:828.130200px;}
.yf3{bottom:828.938100px;}
.y47{bottom:834.834150px;}
.yc{bottom:835.069500px;}
.y147{bottom:839.086050px;}
.y7a{bottom:840.078000px;}
.ybc{bottom:843.026850px;}
.y11b{bottom:843.054600px;}
.y94{bottom:846.130200px;}
.yb{bottom:851.073000px;}
.yf2{bottom:855.217050px;}
.y16d{bottom:857.086050px;}
.y79{bottom:858.078000px;}
.ybb{bottom:861.026850px;}
.y11a{bottom:861.054600px;}
.y46{bottom:861.338100px;}
.y93{bottom:864.130200px;}
.ya{bottom:867.076500px;}
.yf1{bottom:872.992050px;}
.y16c{bottom:875.086050px;}
.y78{bottom:876.078000px;}
.yba{bottom:879.026850px;}
.y119{bottom:879.054600px;}
.y45{bottom:879.338100px;}
.y92{bottom:882.130200px;}
.yf0{bottom:890.767050px;}
.y77{bottom:894.078000px;}
.y44{bottom:897.338100px;}
.y91{bottom:900.130200px;}
.yb9{bottom:901.278900px;}
.y118{bottom:901.306500px;}
.y9{bottom:901.344000px;}
.yef{bottom:908.542050px;}
.y76{bottom:912.078000px;}
.y43{bottom:915.338100px;}
.y90{bottom:918.130200px;}
.y146{bottom:919.590150px;}
.y8{bottom:923.844000px;}
.yee{bottom:926.317050px;}
.y75{bottom:930.078000px;}
.y42{bottom:933.338100px;}
.y145{bottom:937.590150px;}
.yed{bottom:944.092050px;}
.y8f{bottom:944.634150px;}
.yb8{bottom:944.790750px;}
.y117{bottom:944.818350px;}
.y74{bottom:948.078000px;}
.y144{bottom:955.590150px;}
.y7{bottom:959.100000px;}
.y41{bottom:959.842050px;}
.yec{bottom:961.867050px;}
.y8e{bottom:962.634150px;}
.yb7{bottom:962.790750px;}
.y116{bottom:962.818350px;}
.y73{bottom:966.078000px;}
.y16b{bottom:973.590150px;}
.y40{bottom:977.842050px;}
.yeb{bottom:979.642050px;}
.y8d{bottom:980.634150px;}
.yb6{bottom:980.790750px;}
.y6{bottom:981.600000px;}
.y115{bottom:985.070400px;}
.y72{bottom:988.330500px;}
.y3f{bottom:995.842050px;}
.yea{bottom:997.417050px;}
.y8c{bottom:998.634150px;}
.yb5{bottom:1003.042650px;}
.y5{bottom:1004.100000px;}
.y3e{bottom:1013.842050px;}
.y71{bottom:1014.834000px;}
.ye9{bottom:1015.192050px;}
.y143{bottom:1018.093950px;}
.y8b{bottom:1020.886200px;}
.y114{bottom:1028.582100px;}
.y3d{bottom:1031.842050px;}
.ye8{bottom:1032.967050px;}
.yb4{bottom:1033.798500px;}
.y4{bottom:1035.103500px;}
.y142{bottom:1036.093950px;}
.y8a{bottom:1045.590150px;}
.y3c{bottom:1049.842050px;}
.ye7{bottom:1050.742050px;}
.y113{bottom:1050.834150px;}
.yb3{bottom:1051.798500px;}
.y141{bottom:1054.093950px;}
.y70{bottom:1058.346000px;}
.y3{bottom:1062.103500px;}
.y3b{bottom:1067.842050px;}
.ye6{bottom:1068.517050px;}
.yb2{bottom:1069.798500px;}
.y16a{bottom:1072.093950px;}
.y6f{bottom:1076.346000px;}
.y3a{bottom:1085.842050px;}
.yb1{bottom:1087.798500px;}
.y2{bottom:1089.103500px;}
.y169{bottom:1090.093950px;}
.y6e{bottom:1094.346000px;}
.ye5{bottom:1094.796000px;}
.yb0{bottom:1105.798500px;}
.y39{bottom:1112.346000px;}
.ye4{bottom:1112.571000px;}
.yaf{bottom:1128.050550px;}
.y38{bottom:1130.346000px;}
.y36{bottom:1172.391300px;}
.y35{bottom:1186.641300px;}
.y33{bottom:1189.218000px;}
.h6{height:21.533484px;}
.hc{height:27.580078px;}
.h7{height:33.521484px;}
.ha{height:36.314941px;}
.hd{height:41.370117px;}
.h5{height:42.095000px;}
.h9{height:44.695312px;}
.h4{height:50.282227px;}
.he{height:50.499023px;}
.h2{height:55.869141px;}
.h8{height:61.456055px;}
.h3{height:72.629883px;}
.hb{height:74.340000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:44.091000px;}
.x11{left:85.039350px;}
.x12{left:97.795200px;}
.x21{left:102.047250px;}
.x1{left:127.558500px;}
.xb{left:140.203500px;}
.x20{left:144.567000px;}
.x7{left:162.339000px;}
.x8{left:168.886500px;}
.x3{left:173.776500px;}
.x2{left:175.447500px;}
.x5{left:183.478500px;}
.x14{left:219.362250px;}
.xe{left:240.838500px;}
.x9{left:258.910500px;}
.xa{left:298.407000px;}
.x1b{left:302.087550px;}
.x1a{left:306.800700px;}
.x1d{left:335.200350px;}
.x6{left:350.109000px;}
.x1e{left:353.711250px;}
.xc{left:366.046500px;}
.x16{left:372.547500px;}
.x19{left:375.890400px;}
.x1f{left:386.759700px;}
.x1c{left:391.915050px;}
.x17{left:395.065200px;}
.xd{left:415.525500px;}
.x4{left:421.267500px;}
.x18{left:423.989400px;}
.xf{left:611.598000px;}
.x15{left:691.589850px;}
.x13{left:853.453200px;}
@media print{
.v2{vertical-align:-10.656000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.978864pt;}
.ls16{letter-spacing:-0.853333pt;}
.lsd{letter-spacing:-0.426667pt;}
.lse{letter-spacing:-0.170667pt;}
.lsc{letter-spacing:-0.138667pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls9{letter-spacing:-0.096000pt;}
.ls5{letter-spacing:-0.069333pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:-0.048000pt;}
.lsb{letter-spacing:-0.034667pt;}
.ls8{letter-spacing:-0.032000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.005333pt;}
.ls11{letter-spacing:0.005867pt;}
.ls10{letter-spacing:0.006400pt;}
.ls12{letter-spacing:0.009067pt;}
.ls13{letter-spacing:0.009600pt;}
.ls7{letter-spacing:0.032000pt;}
.ls14{letter-spacing:0.426667pt;}
.ls15{letter-spacing:5.241600pt;}
.ls17{letter-spacing:5.863467pt;}
.ls2{letter-spacing:12.448000pt;}
.ls1{letter-spacing:47.989333pt;}
.ls0{letter-spacing:60.469333pt;}
.ws0{word-spacing:-13.866667pt;}
.ws2{word-spacing:-12.480000pt;}
.ws1c{word-spacing:-11.520000pt;}
.ws8{word-spacing:-11.093333pt;}
.ws37{word-spacing:-10.240000pt;}
.ws4{word-spacing:-8.320000pt;}
.ws1{word-spacing:-7.275840pt;}
.ws40{word-spacing:-6.272000pt;}
.ws3{word-spacing:-4.850560pt;}
.ws1d{word-spacing:-3.048533pt;}
.ws38{word-spacing:-3.037333pt;}
.ws3e{word-spacing:-2.688000pt;}
.ws34{word-spacing:-2.602667pt;}
.ws19{word-spacing:-2.218667pt;}
.ws49{word-spacing:-2.133333pt;}
.wsd{word-spacing:-1.962667pt;}
.ws3a{word-spacing:-1.621333pt;}
.ws15{word-spacing:-1.578667pt;}
.ws24{word-spacing:-1.365333pt;}
.ws2b{word-spacing:-1.362667pt;}
.ws1b{word-spacing:-1.361067pt;}
.ws2e{word-spacing:-1.152000pt;}
.ws43{word-spacing:-1.066667pt;}
.ws27{word-spacing:-0.981333pt;}
.ws36{word-spacing:-0.853333pt;}
.ws7{word-spacing:-0.725333pt;}
.ws12{word-spacing:-0.640000pt;}
.wsa{word-spacing:-0.426667pt;}
.ws3d{word-spacing:-0.298667pt;}
.ws47{word-spacing:-0.042667pt;}
.ws5{word-spacing:0.000000pt;}
.ws3b{word-spacing:0.042667pt;}
.ws10{word-spacing:0.109867pt;}
.ws35{word-spacing:0.170667pt;}
.ws30{word-spacing:0.384000pt;}
.ws6{word-spacing:0.426667pt;}
.ws44{word-spacing:0.682667pt;}
.ws2d{word-spacing:0.725333pt;}
.ws3c{word-spacing:0.810667pt;}
.ws39{word-spacing:0.853333pt;}
.ws1a{word-spacing:0.981333pt;}
.ws4b{word-spacing:1.024000pt;}
.wsc{word-spacing:1.194667pt;}
.ws28{word-spacing:1.280000pt;}
.ws22{word-spacing:1.322667pt;}
.ws31{word-spacing:1.493333pt;}
.ws13{word-spacing:1.578667pt;}
.ws32{word-spacing:1.621333pt;}
.ws45{word-spacing:1.749333pt;}
.ws9{word-spacing:1.792000pt;}
.wsb{word-spacing:1.877333pt;}
.ws20{word-spacing:1.920000pt;}
.ws14{word-spacing:1.962667pt;}
.ws2c{word-spacing:2.133333pt;}
.ws48{word-spacing:2.389333pt;}
.wse{word-spacing:2.517333pt;}
.ws4a{word-spacing:2.858667pt;}
.ws23{word-spacing:3.712000pt;}
.ws4d{word-spacing:3.754667pt;}
.ws2a{word-spacing:3.925333pt;}
.ws42{word-spacing:4.010667pt;}
.ws46{word-spacing:4.096000pt;}
.ws29{word-spacing:4.138667pt;}
.ws16{word-spacing:4.949333pt;}
.ws21{word-spacing:4.992000pt;}
.wsf{word-spacing:5.120000pt;}
.ws11{word-spacing:5.248000pt;}
.ws1f{word-spacing:5.290667pt;}
.ws33{word-spacing:5.461333pt;}
.ws26{word-spacing:5.504000pt;}
.ws4c{word-spacing:5.888000pt;}
.ws25{word-spacing:7.082667pt;}
.ws41{word-spacing:8.064000pt;}
.ws17{word-spacing:8.362667pt;}
.ws2f{word-spacing:9.728000pt;}
.ws1e{word-spacing:10.154667pt;}
.ws18{word-spacing:11.221333pt;}
.ws3f{word-spacing:13.141333pt;}
._12{margin-left:-6.289067pt;}
._2{margin-left:-5.017600pt;}
._f{margin-left:-4.010667pt;}
._a{margin-left:-2.931200pt;}
._7{margin-left:-1.996800pt;}
._6{margin-left:-1.084800pt;}
._3{width:1.740800pt;}
._4{width:2.672000pt;}
._5{width:4.396800pt;}
._9{width:6.097067pt;}
._8{width:7.445333pt;}
._c{width:8.913067pt;}
._e{width:9.885867pt;}
._10{width:12.130133pt;}
._d{width:13.661867pt;}
._b{width:14.673067pt;}
._1{width:60.354699pt;}
._11{width:738.835200pt;}
._0{width:766.592000pt;}
.fs6{font-size:18.656000pt;}
.fs5{font-size:27.984000pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:34.666667pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:69.333333pt;}
.fs9{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:66.333333pt;}
.y37{bottom:66.333600pt;}
.y34{bottom:94.645333pt;}
.y112{bottom:102.391333pt;}
.yae{bottom:102.417067pt;}
.y31{bottom:102.454667pt;}
.ye3{bottom:102.880133pt;}
.y6d{bottom:103.838533pt;}
.y140{bottom:104.468533pt;}
.y195{bottom:104.720400pt;}
.y168{bottom:108.500000pt;}
.y89{bottom:111.196000pt;}
.y111{bottom:118.391333pt;}
.yad{bottom:118.417067pt;}
.y30{bottom:118.454667pt;}
.ye2{bottom:118.680133pt;}
.y6c{bottom:119.838533pt;}
.y13f{bottom:120.468533pt;}
.y194{bottom:120.720400pt;}
.y167{bottom:124.500000pt;}
.y88{bottom:127.196000pt;}
.y110{bottom:134.391333pt;}
.y2f{bottom:134.454667pt;}
.ye1{bottom:134.680133pt;}
.y6b{bottom:135.838533pt;}
.y13e{bottom:136.468533pt;}
.y193{bottom:136.720400pt;}
.y179{bottom:140.500000pt;}
.y166{bottom:144.279600pt;}
.y87{bottom:146.976000pt;}
.y2e{bottom:150.454667pt;}
.y6a{bottom:151.838533pt;}
.y13d{bottom:152.468533pt;}
.y10f{bottom:154.170800pt;}
.y192{bottom:156.500000pt;}
.ye0{bottom:158.239200pt;}
.y165{bottom:160.279600pt;}
.y2d{bottom:166.454667pt;}
.y69{bottom:167.838533pt;}
.y13c{bottom:172.248000pt;}
.y191{bottom:172.500000pt;}
.ydf{bottom:174.239200pt;}
.y86{bottom:174.314667pt;}
.y164{bottom:176.279600pt;}
.y2c{bottom:182.454667pt;}
.y68{bottom:183.838533pt;}
.y13b{bottom:188.248000pt;}
.yde{bottom:190.239200pt;}
.y178{bottom:192.279600pt;}
.y10e{bottom:192.848000pt;}
.y163{bottom:196.059067pt;}
.y2b{bottom:202.233333pt;}
.y13a{bottom:204.248000pt;}
.ydd{bottom:206.239200pt;}
.y67{bottom:207.397600pt;}
.y190{bottom:208.279600pt;}
.y10d{bottom:208.848000pt;}
.y162{bottom:212.059067pt;}
.ydc{bottom:222.239200pt;}
.y66{bottom:223.397600pt;}
.y139{bottom:224.027467pt;}
.y18f{bottom:224.279600pt;}
.y177{bottom:228.059067pt;}
.y10c{bottom:228.627467pt;}
.y161{bottom:231.838533pt;}
.ydb{bottom:238.239200pt;}
.y65{bottom:239.397600pt;}
.y138{bottom:240.027467pt;}
.y176{bottom:244.059067pt;}
.y160{bottom:247.838533pt;}
.yda{bottom:254.239200pt;}
.y64{bottom:255.397600pt;}
.y137{bottom:256.027467pt;}
.y18e{bottom:260.059067pt;}
.y15f{bottom:263.838533pt;}
.y2a{bottom:266.474667pt;}
.y10b{bottom:267.304667pt;}
.yd9{bottom:270.239200pt;}
.y63{bottom:271.397600pt;}
.y136{bottom:272.027467pt;}
.y18d{bottom:276.059067pt;}
.y29{bottom:277.141333pt;}
.y175{bottom:279.838533pt;}
.y10a{bottom:283.304667pt;}
.y15e{bottom:283.618133pt;}
.yd8{bottom:286.239200pt;}
.y62{bottom:287.397600pt;}
.y28{bottom:287.808000pt;}
.y135{bottom:291.807067pt;}
.y18c{bottom:292.059067pt;}
.y174{bottom:295.838533pt;}
.y27{bottom:298.474667pt;}
.y15d{bottom:299.618133pt;}
.yd7{bottom:302.239200pt;}
.y109{bottom:303.084267pt;}
.y61{bottom:303.397600pt;}
.y18b{bottom:308.059067pt;}
.y26{bottom:309.141333pt;}
.y134{bottom:311.586533pt;}
.yac{bottom:312.443333pt;}
.y15c{bottom:315.618133pt;}
.yd6{bottom:318.239200pt;}
.y60{bottom:319.397600pt;}
.y25{bottom:319.808000pt;}
.yab{bottom:326.843200pt;}
.y133{bottom:327.586533pt;}
.y18a{bottom:327.838533pt;}
.y24{bottom:330.474667pt;}
.y173{bottom:331.618133pt;}
.yd5{bottom:334.239200pt;}
.y5f{bottom:335.397600pt;}
.y23{bottom:341.141333pt;}
.y108{bottom:341.761333pt;}
.y189{bottom:343.838533pt;}
.y132{bottom:347.366133pt;}
.y172{bottom:347.618133pt;}
.yaa{bottom:348.802267pt;}
.yd4{bottom:350.239200pt;}
.y5e{bottom:351.397600pt;}
.y22{bottom:351.808000pt;}
.y107{bottom:357.761333pt;}
.y188{bottom:359.838533pt;}
.y21{bottom:362.474667pt;}
.y131{bottom:363.366133pt;}
.y171{bottom:363.618133pt;}
.yd3{bottom:366.239200pt;}
.y5d{bottom:367.397600pt;}
.y20{bottom:376.921333pt;}
.y106{bottom:377.540933pt;}
.y187{bottom:379.618133pt;}
.yd2{bottom:382.239200pt;}
.y130{bottom:383.145733pt;}
.y5c{bottom:383.397600pt;}
.y15b{bottom:387.177200pt;}
.ya9{bottom:387.479467pt;}
.y186{bottom:395.618133pt;}
.y12f{bottom:399.145733pt;}
.y5b{bottom:399.397600pt;}
.y15a{bottom:403.177200pt;}
.ya8{bottom:403.479467pt;}
.y1f{bottom:404.260000pt;}
.yd1{bottom:405.798267pt;}
.y185{bottom:411.618133pt;}
.y1e{bottom:414.926667pt;}
.y12e{bottom:415.145733pt;}
.y5a{bottom:415.397600pt;}
.y105{bottom:416.218133pt;}
.y159{bottom:419.177200pt;}
.ya7{bottom:419.479467pt;}
.yd0{bottom:421.798267pt;}
.y1d{bottom:425.593333pt;}
.y59{bottom:431.397600pt;}
.y104{bottom:432.218133pt;}
.y12d{bottom:434.925200pt;}
.y158{bottom:435.177200pt;}
.ya6{bottom:435.479467pt;}
.y1c{bottom:436.260000pt;}
.ycf{bottom:437.798267pt;}
.y1b{bottom:446.926667pt;}
.y58{bottom:447.397600pt;}
.y103{bottom:448.218133pt;}
.y12c{bottom:450.925200pt;}
.ya5{bottom:451.479467pt;}
.yce{bottom:453.798267pt;}
.y157{bottom:454.956667pt;}
.y1a{bottom:457.593333pt;}
.y57{bottom:463.397600pt;}
.ya4{bottom:467.479467pt;}
.y19{bottom:468.260000pt;}
.ycd{bottom:469.798267pt;}
.y12b{bottom:470.704667pt;}
.y156{bottom:470.956667pt;}
.y102{bottom:471.777200pt;}
.y18{bottom:478.926667pt;}
.y56{bottom:479.397600pt;}
.y184{bottom:483.177200pt;}
.ycc{bottom:485.798267pt;}
.y12a{bottom:486.704667pt;}
.y155{bottom:486.956667pt;}
.ya3{bottom:487.259067pt;}
.y101{bottom:487.777200pt;}
.y17{bottom:489.593333pt;}
.y55{bottom:495.397600pt;}
.y183{bottom:499.177200pt;}
.ycb{bottom:501.798267pt;}
.y129{bottom:502.704667pt;}
.y154{bottom:502.956667pt;}
.y100{bottom:503.777200pt;}
.y16{bottom:504.040000pt;}
.y170{bottom:506.736267pt;}
.y54{bottom:511.397600pt;}
.ya2{bottom:514.597600pt;}
.yca{bottom:517.798267pt;}
.y182{bottom:518.956667pt;}
.yff{bottom:519.777200pt;}
.y128{bottom:522.484267pt;}
.y153{bottom:522.736267pt;}
.y53{bottom:527.397600pt;}
.ya1{bottom:530.597600pt;}
.yc9{bottom:533.798267pt;}
.y181{bottom:534.956667pt;}
.yfe{bottom:535.777200pt;}
.y127{bottom:538.484267pt;}
.y152{bottom:538.736267pt;}
.ya0{bottom:546.597600pt;}
.y85{bottom:547.480000pt;}
.yc8{bottom:549.798267pt;}
.y52{bottom:550.956667pt;}
.yfd{bottom:551.777200pt;}
.y126{bottom:554.484267pt;}
.y151{bottom:558.515733pt;}
.y84{bottom:561.880000pt;}
.y9f{bottom:562.597600pt;}
.y32{bottom:563.361333pt;}
.yc7{bottom:565.798267pt;}
.y51{bottom:566.956667pt;}
.y180{bottom:570.736267pt;}
.yfc{bottom:571.556667pt;}
.y125{bottom:574.263733pt;}
.y150{bottom:574.515733pt;}
.y9e{bottom:578.597600pt;}
.yc6{bottom:581.798267pt;}
.y50{bottom:582.956667pt;}
.y17f{bottom:586.736267pt;}
.y83{bottom:587.618667pt;}
.y14f{bottom:590.515733pt;}
.y124{bottom:594.043333pt;}
.y9d{bottom:594.597600pt;}
.yc5{bottom:597.798267pt;}
.y4f{bottom:598.956667pt;}
.y17e{bottom:602.736267pt;}
.y82{bottom:603.618667pt;}
.y15{bottom:606.054667pt;}
.y16f{bottom:606.515733pt;}
.y123{bottom:610.043333pt;}
.yfb{bottom:610.233867pt;}
.y14e{bottom:610.295200pt;}
.yc4{bottom:613.798267pt;}
.y9c{bottom:614.377200pt;}
.y4e{bottom:614.956667pt;}
.y81{bottom:619.618667pt;}
.y17d{bottom:622.515733pt;}
.y14{bottom:624.721333pt;}
.y122{bottom:626.043333pt;}
.yfa{bottom:626.233867pt;}
.y14d{bottom:626.295200pt;}
.yc3{bottom:629.798267pt;}
.y13{bottom:634.054667pt;}
.y80{bottom:635.618667pt;}
.y4d{bottom:638.515733pt;}
.y9b{bottom:640.115733pt;}
.yf9{bottom:642.033867pt;}
.y14c{bottom:642.295200pt;}
.y12{bottom:643.388000pt;}
.yc2{bottom:645.798267pt;}
.y121{bottom:645.822800pt;}
.y7f{bottom:651.618667pt;}
.y4c{bottom:654.515733pt;}
.y9a{bottom:656.115733pt;}
.yf8{bottom:657.833867pt;}
.y17c{bottom:658.295200pt;}
.y11{bottom:660.721333pt;}
.yc1{bottom:661.798267pt;}
.y120{bottom:661.822800pt;}
.y14b{bottom:662.074800pt;}
.y7e{bottom:667.618667pt;}
.y10{bottom:670.054667pt;}
.y4b{bottom:670.515733pt;}
.y99{bottom:672.115733pt;}
.yf7{bottom:673.633867pt;}
.y17b{bottom:674.295200pt;}
.yc0{bottom:677.798133pt;}
.y11f{bottom:677.822800pt;}
.y14a{bottom:678.074800pt;}
.yf{bottom:687.388000pt;}
.y7d{bottom:687.397333pt;}
.y98{bottom:688.115733pt;}
.yf6{bottom:689.433867pt;}
.y17a{bottom:690.295200pt;}
.ybf{bottom:693.798133pt;}
.y4a{bottom:694.074800pt;}
.ye{bottom:696.721333pt;}
.y11e{bottom:697.602400pt;}
.y16e{bottom:697.854267pt;}
.y97{bottom:704.115733pt;}
.yf5{bottom:705.233867pt;}
.y49{bottom:710.074800pt;}
.y11d{bottom:713.602400pt;}
.y149{bottom:713.854267pt;}
.y7c{bottom:714.736000pt;}
.ybe{bottom:717.357200pt;}
.y96{bottom:720.115733pt;}
.yf4{bottom:721.033867pt;}
.y48{bottom:726.074800pt;}
.yd{bottom:728.057333pt;}
.y148{bottom:729.854267pt;}
.y7b{bottom:730.736000pt;}
.ybd{bottom:733.357200pt;}
.y11c{bottom:733.381867pt;}
.y95{bottom:736.115733pt;}
.yf3{bottom:736.833867pt;}
.y47{bottom:742.074800pt;}
.yc{bottom:742.284000pt;}
.y147{bottom:745.854267pt;}
.y7a{bottom:746.736000pt;}
.ybc{bottom:749.357200pt;}
.y11b{bottom:749.381867pt;}
.y94{bottom:752.115733pt;}
.yb{bottom:756.509333pt;}
.yf2{bottom:760.192933pt;}
.y16d{bottom:761.854267pt;}
.y79{bottom:762.736000pt;}
.ybb{bottom:765.357200pt;}
.y11a{bottom:765.381867pt;}
.y46{bottom:765.633867pt;}
.y93{bottom:768.115733pt;}
.ya{bottom:770.734667pt;}
.yf1{bottom:775.992933pt;}
.y16c{bottom:777.854267pt;}
.y78{bottom:778.736000pt;}
.yba{bottom:781.357200pt;}
.y119{bottom:781.381867pt;}
.y45{bottom:781.633867pt;}
.y92{bottom:784.115733pt;}
.yf0{bottom:791.792933pt;}
.y77{bottom:794.736000pt;}
.y44{bottom:797.633867pt;}
.y91{bottom:800.115733pt;}
.yb9{bottom:801.136800pt;}
.y118{bottom:801.161333pt;}
.y9{bottom:801.194667pt;}
.yef{bottom:807.592933pt;}
.y76{bottom:810.736000pt;}
.y43{bottom:813.633867pt;}
.y90{bottom:816.115733pt;}
.y146{bottom:817.413467pt;}
.y8{bottom:821.194667pt;}
.yee{bottom:823.392933pt;}
.y75{bottom:826.736000pt;}
.y42{bottom:829.633867pt;}
.y145{bottom:833.413467pt;}
.yed{bottom:839.192933pt;}
.y8f{bottom:839.674800pt;}
.yb8{bottom:839.814000pt;}
.y117{bottom:839.838533pt;}
.y74{bottom:842.736000pt;}
.y144{bottom:849.413467pt;}
.y7{bottom:852.533333pt;}
.y41{bottom:853.192933pt;}
.yec{bottom:854.992933pt;}
.y8e{bottom:855.674800pt;}
.yb7{bottom:855.814000pt;}
.y116{bottom:855.838533pt;}
.y73{bottom:858.736000pt;}
.y16b{bottom:865.413467pt;}
.y40{bottom:869.192933pt;}
.yeb{bottom:870.792933pt;}
.y8d{bottom:871.674800pt;}
.yb6{bottom:871.814000pt;}
.y6{bottom:872.533333pt;}
.y115{bottom:875.618133pt;}
.y72{bottom:878.516000pt;}
.y3f{bottom:885.192933pt;}
.yea{bottom:886.592933pt;}
.y8c{bottom:887.674800pt;}
.yb5{bottom:891.593467pt;}
.y5{bottom:892.533333pt;}
.y3e{bottom:901.192933pt;}
.y71{bottom:902.074667pt;}
.ye9{bottom:902.392933pt;}
.y143{bottom:904.972400pt;}
.y8b{bottom:907.454400pt;}
.y114{bottom:914.295200pt;}
.y3d{bottom:917.192933pt;}
.ye8{bottom:918.192933pt;}
.yb4{bottom:918.932000pt;}
.y4{bottom:920.092000pt;}
.y142{bottom:920.972400pt;}
.y8a{bottom:929.413467pt;}
.y3c{bottom:933.192933pt;}
.ye7{bottom:933.992933pt;}
.y113{bottom:934.074800pt;}
.yb3{bottom:934.932000pt;}
.y141{bottom:936.972400pt;}
.y70{bottom:940.752000pt;}
.y3{bottom:944.092000pt;}
.y3b{bottom:949.192933pt;}
.ye6{bottom:949.792933pt;}
.yb2{bottom:950.932000pt;}
.y16a{bottom:952.972400pt;}
.y6f{bottom:956.752000pt;}
.y3a{bottom:965.192933pt;}
.yb1{bottom:966.932000pt;}
.y2{bottom:968.092000pt;}
.y169{bottom:968.972400pt;}
.y6e{bottom:972.752000pt;}
.ye5{bottom:973.152000pt;}
.yb0{bottom:982.932000pt;}
.y39{bottom:988.752000pt;}
.ye4{bottom:988.952000pt;}
.yaf{bottom:1002.711600pt;}
.y38{bottom:1004.752000pt;}
.y36{bottom:1042.125600pt;}
.y35{bottom:1054.792267pt;}
.y33{bottom:1057.082667pt;}
.h6{height:19.140875pt;}
.hc{height:24.515625pt;}
.h7{height:29.796875pt;}
.ha{height:32.279948pt;}
.hd{height:36.773438pt;}
.h5{height:37.417778pt;}
.h9{height:39.729167pt;}
.h4{height:44.695312pt;}
.he{height:44.888021pt;}
.h2{height:49.661458pt;}
.h8{height:54.627604pt;}
.h3{height:64.559896pt;}
.hb{height:66.080000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:39.192000pt;}
.x11{left:75.590533pt;}
.x12{left:86.929067pt;}
.x21{left:90.708667pt;}
.x1{left:113.385333pt;}
.xb{left:124.625333pt;}
.x20{left:128.504000pt;}
.x7{left:144.301333pt;}
.x8{left:150.121333pt;}
.x3{left:154.468000pt;}
.x2{left:155.953333pt;}
.x5{left:163.092000pt;}
.x14{left:194.988667pt;}
.xe{left:214.078667pt;}
.x9{left:230.142667pt;}
.xa{left:265.250667pt;}
.x1b{left:268.522267pt;}
.x1a{left:272.711733pt;}
.x1d{left:297.955867pt;}
.x6{left:311.208000pt;}
.x1e{left:314.410000pt;}
.xc{left:325.374667pt;}
.x16{left:331.153333pt;}
.x19{left:334.124800pt;}
.x1f{left:343.786400pt;}
.x1c{left:348.368933pt;}
.x17{left:351.169067pt;}
.xd{left:369.356000pt;}
.x4{left:374.460000pt;}
.x18{left:376.879467pt;}
.xf{left:543.642667pt;}
.x15{left:614.746533pt;}
.x13{left:758.625067pt;}
}




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