
    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_dc22e6de9382d505f22bd808.woff')format("woff");}.ff1{font-family:ff1;line-height:1.104000;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_9617bad7e46a810fb203b6fc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.716000;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_1f41068a04604efde31d0259.woff')format("woff");}.ff3{font-family:ff3;line-height:1.104000;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_a93dbe5202d26fd6bed4b446.woff')format("woff");}.ff4{font-family:ff4;line-height:1.159000;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_18a782788e1ca30e591fb4cd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.020000;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_4ac26e170c12b61b0ebb6de6.woff')format("woff");}.ff6{font-family:ff6;line-height:0.809082;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_f09783455b4c8eeed8fae75b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.087402;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_7d4ea7caba77e9e3e7a366ab.woff')format("woff");}.ff8{font-family:ff8;line-height:0.919434;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_ccd03ea7000e811c0349b3c7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.919434;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_d5aa4f6c587a1b252f20d877.woff')format("woff");}.ffa{font-family:ffa;line-height:0.682129;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_e91db3a487c39f60d96df142.woff')format("woff");}.ffb{font-family:ffb;line-height:0.953000;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:ffc;src:url('chunks/assets/font_9b8d8da743eddd6c235785fc.woff')format("woff");}.ffc{font-family:ffc;line-height:0.963000;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:ffd;src:url('chunks/assets/font_0b8eca587cbdebe01b18a70a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.884277;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:ffe;src:url('chunks/assets/font_37abacd3e3a688fd48d173ea.woff')format("woff");}.ffe{font-family:ffe;line-height:0.700000;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);}
.v3{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.800000px;}
.v2{vertical-align:31.800000px;}
.ls3{letter-spacing:-1.320000px;}
.ls2{letter-spacing:-0.660000px;}
.ls1{letter-spacing:-0.480000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.726000px;}
.lsa{letter-spacing:1.452000px;}
.lsb{letter-spacing:2.112000px;}
.ls7{letter-spacing:2.574000px;}
.ls9{letter-spacing:3.498000px;}
.ls6{letter-spacing:9.042000px;}
.ls4{letter-spacing:9.064800px;}
.ls5{letter-spacing:16.703400px;}
.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;}
}
.ws34{word-spacing:-23.562000px;}
.ws36{word-spacing:-17.094000px;}
.ws37{word-spacing:-16.632000px;}
.ws35{word-spacing:-15.972000px;}
.ws38{word-spacing:-15.246000px;}
.ws32{word-spacing:-14.520000px;}
.ws30{word-spacing:-13.860000px;}
.ws39{word-spacing:-3.498000px;}
.ws2a{word-spacing:-2.112000px;}
.ws31{word-spacing:-0.066000px;}
.ws17{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:0.576000px;}
.ws29{word-spacing:0.624000px;}
.ws2f{word-spacing:0.660000px;}
.ws10{word-spacing:1.056000px;}
.ws33{word-spacing:1.320000px;}
.ws2e{word-spacing:1.344000px;}
.ws23{word-spacing:1.776000px;}
.ws2d{word-spacing:1.920000px;}
.ws20{word-spacing:2.064000px;}
.ws18{word-spacing:2.112000px;}
.wsd{word-spacing:2.208000px;}
.ws8{word-spacing:2.496000px;}
.ws9{word-spacing:3.456000px;}
.ws2b{word-spacing:3.504000px;}
.ws12{word-spacing:3.600000px;}
.ws14{word-spacing:3.984000px;}
.ws1c{word-spacing:5.088000px;}
.ws27{word-spacing:5.760000px;}
.ws19{word-spacing:6.384000px;}
.ws1a{word-spacing:6.432000px;}
.ws1b{word-spacing:6.576000px;}
.wsc{word-spacing:6.816000px;}
.ws24{word-spacing:7.776000px;}
.ws22{word-spacing:8.592000px;}
.ws1f{word-spacing:8.688000px;}
.ws25{word-spacing:9.696000px;}
.ws11{word-spacing:9.936000px;}
.ws2c{word-spacing:10.128000px;}
.ws26{word-spacing:10.416000px;}
.ws3{word-spacing:10.464000px;}
.ws1e{word-spacing:10.512000px;}
.ws13{word-spacing:10.704000px;}
.ws1d{word-spacing:11.280000px;}
.ws15{word-spacing:15.456000px;}
.wsa{word-spacing:15.648000px;}
.wse{word-spacing:15.936000px;}
.wsb{word-spacing:18.624000px;}
.ws2{word-spacing:20.448000px;}
.ws28{word-spacing:20.592000px;}
.ws4{word-spacing:20.736000px;}
.ws6{word-spacing:21.744000px;}
.ws7{word-spacing:22.128000px;}
.ws21{word-spacing:24.288000px;}
.ws5{word-spacing:25.008000px;}
.ws1{word-spacing:31.296000px;}
.ws16{word-spacing:34.032000px;}
._1b{margin-left:-48.839400px;}
._6{margin-left:-5.049000px;}
._1{margin-left:-3.552000px;}
._e{margin-left:-2.520000px;}
._0{margin-left:-1.300800px;}
._4{width:1.447200px;}
._9{width:2.838000px;}
._7{width:4.758600px;}
._14{width:5.788200px;}
._c{width:6.791400px;}
._a{width:8.606400px;}
._f{width:9.655800px;}
._11{width:11.002200px;}
._2{width:12.467640px;}
._13{width:13.483800px;}
._8{width:15.859800px;}
._16{width:17.193000px;}
._d{width:18.216000px;}
._12{width:20.202600px;}
._3{width:22.128000px;}
._5{width:23.472000px;}
._b{width:25.377000px;}
._1f{width:26.756400px;}
._19{width:27.871800px;}
._15{width:29.739600px;}
._17{width:31.092600px;}
._1c{width:35.541000px;}
._1a{width:37.144800px;}
._10{width:38.992800px;}
._1e{width:41.401800px;}
._20{width:42.894000px;}
._18{width:44.220000px;}
._21{width:47.018400px;}
._1d{width:52.951800px;}
._23{width:63.531600px;}
._22{width:74.533800px;}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:27.840000px;}
.fs3{font-size:34.800000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:79.023450px;}
.yca{bottom:128.691450px;}
.ydc{bottom:130.191450px;}
.y87{bottom:130.433550px;}
.y4b{bottom:133.135350px;}
.yb4{bottom:133.433550px;}
.ye4{bottom:141.937350px;}
.y115{bottom:146.189400px;}
.yc9{bottom:147.441450px;}
.y4a{bottom:147.535350px;}
.y86{bottom:149.183550px;}
.ydb{bottom:150.441450px;}
.yb3{bottom:162.187350px;}
.y49{bottom:165.895350px;}
.yc8{bottom:166.191450px;}
.y114{bottom:166.439400px;}
.y85{bottom:167.933550px;}
.yda{bottom:170.691450px;}
.ye3{bottom:182.437350px;}
.yc7{bottom:184.941450px;}
.y84{bottom:186.683550px;}
.y113{bottom:186.689400px;}
.y48{bottom:189.091200px;}
.yd9{bottom:190.941450px;}
.yb2{bottom:202.687350px;}
.yc6{bottom:203.691450px;}
.y83{bottom:205.433550px;}
.y112{bottom:206.939400px;}
.y47{bottom:207.451200px;}
.yd8{bottom:211.191450px;}
.yc5{bottom:222.441450px;}
.yb1{bottom:222.937350px;}
.y82{bottom:224.183550px;}
.y111{bottom:227.189400px;}
.y46{bottom:230.647200px;}
.yd7{bottom:231.441450px;}
.yc4{bottom:241.191450px;}
.yb0{bottom:243.187350px;}
.y45{bottom:245.047200px;}
.y110{bottom:247.439400px;}
.y81{bottom:251.437350px;}
.yd6{bottom:251.691450px;}
.y44{bottom:259.447200px;}
.yc3{bottom:259.941450px;}
.yaf{bottom:263.437350px;}
.y10f{bottom:267.689400px;}
.yd5{bottom:271.941450px;}
.y43{bottom:277.807200px;}
.yc2{bottom:278.691450px;}
.yae{bottom:283.687350px;}
.y10e{bottom:287.939400px;}
.y80{bottom:288.937350px;}
.yd4{bottom:292.191450px;}
.yc1{bottom:297.441450px;}
.yad{bottom:303.937350px;}
.y7f{bottom:307.687350px;}
.y10d{bottom:308.189400px;}
.yd3{bottom:312.441450px;}
.yc0{bottom:316.191450px;}
.yac{bottom:324.187350px;}
.y7e{bottom:326.437350px;}
.y10c{bottom:328.439400px;}
.y52{bottom:330.352800px;}
.yd2{bottom:332.691450px;}
.y4f{bottom:334.852800px;}
.ybf{bottom:334.941450px;}
.yab{bottom:344.437350px;}
.y7d{bottom:345.187350px;}
.y10b{bottom:348.689400px;}
.y51{bottom:350.602800px;}
.yd1{bottom:352.941450px;}
.y4e{bottom:353.602800px;}
.ybe{bottom:353.691450px;}
.y7c{bottom:363.937350px;}
.yaa{bottom:364.687350px;}
.y10a{bottom:368.939400px;}
.y50{bottom:370.852800px;}
.y4d{bottom:372.352800px;}
.ybd{bottom:372.441450px;}
.yd0{bottom:373.191450px;}
.y7b{bottom:382.687500px;}
.ya9{bottom:384.937500px;}
.y109{bottom:389.189400px;}
.ybc{bottom:391.191450px;}
.ycf{bottom:393.441450px;}
.y4c{bottom:399.606750px;}
.y7a{bottom:401.437500px;}
.ya8{bottom:405.187500px;}
.y108{bottom:409.439400px;}
.ybb{bottom:409.941450px;}
.yce{bottom:413.691450px;}
.y79{bottom:420.187500px;}
.ya7{bottom:425.437500px;}
.yba{bottom:428.691450px;}
.y107{bottom:429.689400px;}
.ycd{bottom:433.941450px;}
.y78{bottom:438.937500px;}
.ya6{bottom:445.687500px;}
.yb9{bottom:447.441450px;}
.y106{bottom:449.939400px;}
.ycc{bottom:454.191450px;}
.y77{bottom:457.687500px;}
.y23{bottom:461.271750px;}
.ye2{bottom:465.937500px;}
.yb8{bottom:466.191450px;}
.y105{bottom:470.189400px;}
.ya5{bottom:474.441450px;}
.y42{bottom:476.271600px;}
.y22{bottom:476.271750px;}
.y76{bottom:476.437500px;}
.yb7{bottom:484.941450px;}
.ye1{bottom:486.187500px;}
.y135{bottom:488.639550px;}
.y149{bottom:488.639700px;}
.y104{bottom:490.439400px;}
.y41{bottom:491.271600px;}
.y21{bottom:491.271750px;}
.ycb{bottom:494.691450px;}
.y75{bottom:495.187500px;}
.yb6{bottom:503.691450px;}
.y40{bottom:506.271600px;}
.y20{bottom:506.271750px;}
.ye0{bottom:506.437500px;}
.y134{bottom:508.439550px;}
.y148{bottom:508.439700px;}
.y103{bottom:510.689400px;}
.ya4{bottom:514.941450px;}
.y74{bottom:522.441450px;}
.ydf{bottom:526.687500px;}
.y133{bottom:528.239550px;}
.y147{bottom:528.239700px;}
.y3f{bottom:529.775550px;}
.y1f{bottom:529.775700px;}
.y102{bottom:530.939400px;}
.ya3{bottom:535.191450px;}
.yb5{bottom:541.191450px;}
.y3e{bottom:544.775550px;}
.y1e{bottom:544.775700px;}
.yde{bottom:546.937500px;}
.y132{bottom:548.039550px;}
.y146{bottom:548.039700px;}
.y101{bottom:551.189400px;}
.ya2{bottom:555.441450px;}
.y3d{bottom:559.775550px;}
.y1d{bottom:559.775700px;}
.y73{bottom:559.941450px;}
.ydd{bottom:567.187500px;}
.y131{bottom:567.839550px;}
.y145{bottom:567.839700px;}
.y100{bottom:571.439400px;}
.y3c{bottom:574.775550px;}
.y1c{bottom:574.775700px;}
.ya1{bottom:575.691450px;}
.y72{bottom:578.691450px;}
.y117{bottom:587.437500px;}
.y130{bottom:587.639550px;}
.y144{bottom:587.639700px;}
.y3b{bottom:589.775550px;}
.y1b{bottom:589.775700px;}
.yff{bottom:591.689400px;}
.ya0{bottom:595.941450px;}
.y71{bottom:597.441450px;}
.y3a{bottom:604.775550px;}
.y1a{bottom:604.775700px;}
.y12f{bottom:607.439550px;}
.y143{bottom:607.439700px;}
.y116{bottom:607.687500px;}
.yfe{bottom:611.939400px;}
.y70{bottom:616.191450px;}
.y39{bottom:619.775550px;}
.y19{bottom:619.775700px;}
.y12e{bottom:627.239550px;}
.y142{bottom:627.239700px;}
.yfd{bottom:632.189400px;}
.y38{bottom:634.775550px;}
.y18{bottom:634.775700px;}
.y6f{bottom:634.941450px;}
.y9f{bottom:636.441450px;}
.y12d{bottom:647.039550px;}
.y141{bottom:647.039700px;}
.y37{bottom:649.775550px;}
.y17{bottom:649.775700px;}
.yfc{bottom:652.439400px;}
.y6e{bottom:653.691450px;}
.y9e{bottom:656.691450px;}
.y36{bottom:664.775550px;}
.y16{bottom:664.775700px;}
.y12c{bottom:666.839550px;}
.y140{bottom:666.839700px;}
.y6d{bottom:672.441450px;}
.yfb{bottom:672.689400px;}
.y9d{bottom:676.941450px;}
.y35{bottom:679.775550px;}
.y15{bottom:679.775700px;}
.y12b{bottom:686.639550px;}
.y13f{bottom:686.639700px;}
.y6c{bottom:691.191450px;}
.yfa{bottom:692.939400px;}
.y34{bottom:694.775550px;}
.y14{bottom:694.775700px;}
.y9c{bottom:697.191450px;}
.y12a{bottom:706.439550px;}
.y13e{bottom:706.439700px;}
.y33{bottom:709.775550px;}
.y13{bottom:709.775700px;}
.y6b{bottom:709.941450px;}
.yf9{bottom:713.189400px;}
.y9b{bottom:717.441450px;}
.y32{bottom:724.775550px;}
.y12{bottom:724.775700px;}
.y129{bottom:726.239550px;}
.y13d{bottom:726.239700px;}
.y6a{bottom:728.691450px;}
.yf8{bottom:733.439400px;}
.y9a{bottom:737.691450px;}
.y31{bottom:739.775550px;}
.y11{bottom:739.775700px;}
.y128{bottom:746.039550px;}
.y13c{bottom:746.039700px;}
.y69{bottom:747.441450px;}
.yf7{bottom:753.689400px;}
.y30{bottom:754.775550px;}
.y10{bottom:754.775700px;}
.y99{bottom:757.941450px;}
.y127{bottom:765.839550px;}
.y13b{bottom:765.839700px;}
.y68{bottom:766.191450px;}
.y2f{bottom:769.775550px;}
.yf{bottom:769.775700px;}
.yf6{bottom:773.939400px;}
.y98{bottom:778.191450px;}
.y2e{bottom:784.775550px;}
.ye{bottom:784.775700px;}
.y67{bottom:784.941450px;}
.y126{bottom:785.639400px;}
.y13a{bottom:785.639700px;}
.yf5{bottom:794.189400px;}
.y97{bottom:798.441450px;}
.y2d{bottom:799.775550px;}
.yd{bottom:799.775700px;}
.y66{bottom:803.691450px;}
.y125{bottom:805.439550px;}
.yf4{bottom:814.439400px;}
.y2c{bottom:814.775550px;}
.yc{bottom:814.775700px;}
.y96{bottom:818.691450px;}
.y65{bottom:822.441450px;}
.y124{bottom:825.239550px;}
.y2b{bottom:829.775550px;}
.yb{bottom:829.775700px;}
.yf3{bottom:834.689400px;}
.y95{bottom:838.941450px;}
.y64{bottom:841.191450px;}
.y123{bottom:845.039550px;}
.yf2{bottom:854.939400px;}
.y94{bottom:859.191450px;}
.y63{bottom:859.941450px;}
.y122{bottom:864.839550px;}
.y139{bottom:864.839700px;}
.yf1{bottom:875.189400px;}
.y62{bottom:878.691450px;}
.y93{bottom:879.441450px;}
.y121{bottom:884.639400px;}
.y138{bottom:884.639550px;}
.ya{bottom:892.957200px;}
.y2a{bottom:893.557500px;}
.yf0{bottom:895.439400px;}
.y61{bottom:897.441450px;}
.y92{bottom:899.691450px;}
.y120{bottom:904.439550px;}
.yef{bottom:915.689400px;}
.y60{bottom:916.191450px;}
.y9{bottom:919.461150px;}
.y91{bottom:919.941450px;}
.y29{bottom:920.061300px;}
.y11f{bottom:924.239550px;}
.y5f{bottom:934.941450px;}
.yee{bottom:935.939400px;}
.y90{bottom:940.191450px;}
.y11e{bottom:944.039550px;}
.y28{bottom:946.565250px;}
.y8{bottom:948.965100px;}
.y5e{bottom:953.691450px;}
.yed{bottom:956.189400px;}
.y8f{bottom:960.441450px;}
.y11d{bottom:963.839550px;}
.y137{bottom:963.839700px;}
.y5d{bottom:972.441450px;}
.yec{bottom:976.439400px;}
.y8e{bottom:980.691450px;}
.y11c{bottom:983.639400px;}
.y136{bottom:983.639550px;}
.y5c{bottom:991.191450px;}
.yeb{bottom:996.689400px;}
.y8d{bottom:1000.941450px;}
.y11b{bottom:1003.439550px;}
.y7{bottom:1003.565100px;}
.y27{bottom:1003.565250px;}
.y5b{bottom:1009.941450px;}
.yea{bottom:1016.939400px;}
.y8c{bottom:1021.191450px;}
.y11a{bottom:1023.239550px;}
.y6{bottom:1023.365100px;}
.y26{bottom:1023.365250px;}
.y5a{bottom:1028.691450px;}
.ye9{bottom:1037.189400px;}
.y8b{bottom:1041.441450px;}
.y5{bottom:1043.165100px;}
.y25{bottom:1043.165250px;}
.y59{bottom:1047.441450px;}
.y118{bottom:1055.505300px;}
.ye8{bottom:1057.439400px;}
.y8a{bottom:1061.691450px;}
.y4{bottom:1062.965100px;}
.y24{bottom:1062.965400px;}
.y58{bottom:1066.191450px;}
.ye7{bottom:1077.689400px;}
.y119{bottom:1080.621450px;}
.y89{bottom:1081.941450px;}
.y57{bottom:1084.941450px;}
.ye6{bottom:1097.939400px;}
.y88{bottom:1102.191450px;}
.y56{bottom:1103.691450px;}
.ye5{bottom:1118.189400px;}
.y3{bottom:1120.755750px;}
.y55{bottom:1122.441450px;}
.y54{bottom:1167.058200px;}
.y1{bottom:1174.874550px;}
.y53{bottom:1181.458200px;}
.ha{height:25.878750px;}
.hc{height:33.656250px;}
.h10{height:35.520000px;}
.h8{height:36.336000px;}
.hf{height:39.960000px;}
.h2{height:40.416000px;}
.h12{height:40.458984px;}
.hb{height:41.718750px;}
.h3{height:42.480000px;}
.hd{height:44.504883px;}
.h11{height:46.277344px;}
.h4{height:50.520000px;}
.h6{height:53.640000px;}
.he{height:57.363281px;}
.h5{height:59.004000px;}
.h9{height:62.910600px;}
.h7{height:62.911200px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:106.299150px;}
.x16{left:114.803100px;}
.x5{left:118.233750px;}
.x6{left:128.084250px;}
.x1f{left:131.700300px;}
.x4{left:135.649200px;}
.xb{left:139.752450px;}
.x17{left:148.256400px;}
.x9{left:156.123000px;}
.x1c{left:157.398750px;}
.x7{left:190.964700px;}
.xa{left:215.170050px;}
.x8{left:227.406600px;}
.x1{left:323.616900px;}
.x1e{left:436.974450px;}
.x1a{left:437.994450px;}
.x2{left:439.376700px;}
.x18{left:457.086600px;}
.xc{left:466.487400px;}
.x14{left:469.842450px;}
.xe{left:474.720600px;}
.x1b{left:478.346400px;}
.x20{left:482.598450px;}
.xd{left:489.083700px;}
.x13{left:491.102400px;}
.x19{left:499.606350px;}
.x11{left:507.131850px;}
.x1d{left:508.186050px;}
.xf{left:534.655650px;}
.x12{left:566.178750px;}
.x15{left:574.994250px;}
.x10{left:578.415300px;}
@media print{
.v3{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.600000pt;}
.v2{vertical-align:28.266667pt;}
.ls3{letter-spacing:-1.173333pt;}
.ls2{letter-spacing:-0.586667pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.645333pt;}
.lsa{letter-spacing:1.290667pt;}
.lsb{letter-spacing:1.877333pt;}
.ls7{letter-spacing:2.288000pt;}
.ls9{letter-spacing:3.109333pt;}
.ls6{letter-spacing:8.037333pt;}
.ls4{letter-spacing:8.057600pt;}
.ls5{letter-spacing:14.847467pt;}
.ws34{word-spacing:-20.944000pt;}
.ws36{word-spacing:-15.194667pt;}
.ws37{word-spacing:-14.784000pt;}
.ws35{word-spacing:-14.197333pt;}
.ws38{word-spacing:-13.552000pt;}
.ws32{word-spacing:-12.906667pt;}
.ws30{word-spacing:-12.320000pt;}
.ws39{word-spacing:-3.109333pt;}
.ws2a{word-spacing:-1.877333pt;}
.ws31{word-spacing:-0.058667pt;}
.ws17{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:0.512000pt;}
.ws29{word-spacing:0.554667pt;}
.ws2f{word-spacing:0.586667pt;}
.ws10{word-spacing:0.938667pt;}
.ws33{word-spacing:1.173333pt;}
.ws2e{word-spacing:1.194667pt;}
.ws23{word-spacing:1.578667pt;}
.ws2d{word-spacing:1.706667pt;}
.ws20{word-spacing:1.834667pt;}
.ws18{word-spacing:1.877333pt;}
.wsd{word-spacing:1.962667pt;}
.ws8{word-spacing:2.218667pt;}
.ws9{word-spacing:3.072000pt;}
.ws2b{word-spacing:3.114667pt;}
.ws12{word-spacing:3.200000pt;}
.ws14{word-spacing:3.541333pt;}
.ws1c{word-spacing:4.522667pt;}
.ws27{word-spacing:5.120000pt;}
.ws19{word-spacing:5.674667pt;}
.ws1a{word-spacing:5.717333pt;}
.ws1b{word-spacing:5.845333pt;}
.wsc{word-spacing:6.058667pt;}
.ws24{word-spacing:6.912000pt;}
.ws22{word-spacing:7.637333pt;}
.ws1f{word-spacing:7.722667pt;}
.ws25{word-spacing:8.618667pt;}
.ws11{word-spacing:8.832000pt;}
.ws2c{word-spacing:9.002667pt;}
.ws26{word-spacing:9.258667pt;}
.ws3{word-spacing:9.301333pt;}
.ws1e{word-spacing:9.344000pt;}
.ws13{word-spacing:9.514667pt;}
.ws1d{word-spacing:10.026667pt;}
.ws15{word-spacing:13.738667pt;}
.wsa{word-spacing:13.909333pt;}
.wse{word-spacing:14.165333pt;}
.wsb{word-spacing:16.554667pt;}
.ws2{word-spacing:18.176000pt;}
.ws28{word-spacing:18.304000pt;}
.ws4{word-spacing:18.432000pt;}
.ws6{word-spacing:19.328000pt;}
.ws7{word-spacing:19.669333pt;}
.ws21{word-spacing:21.589333pt;}
.ws5{word-spacing:22.229333pt;}
.ws1{word-spacing:27.818667pt;}
.ws16{word-spacing:30.250667pt;}
._1b{margin-left:-43.412800pt;}
._6{margin-left:-4.488000pt;}
._1{margin-left:-3.157333pt;}
._e{margin-left:-2.240000pt;}
._0{margin-left:-1.156267pt;}
._4{width:1.286400pt;}
._9{width:2.522667pt;}
._7{width:4.229867pt;}
._14{width:5.145067pt;}
._c{width:6.036800pt;}
._a{width:7.650133pt;}
._f{width:8.582933pt;}
._11{width:9.779733pt;}
._2{width:11.082347pt;}
._13{width:11.985600pt;}
._8{width:14.097600pt;}
._16{width:15.282667pt;}
._d{width:16.192000pt;}
._12{width:17.957867pt;}
._3{width:19.669333pt;}
._5{width:20.864000pt;}
._b{width:22.557333pt;}
._1f{width:23.783467pt;}
._19{width:24.774933pt;}
._15{width:26.435200pt;}
._17{width:27.637867pt;}
._1c{width:31.592000pt;}
._1a{width:33.017600pt;}
._10{width:34.660267pt;}
._1e{width:36.801600pt;}
._20{width:38.128000pt;}
._18{width:39.306667pt;}
._21{width:41.794133pt;}
._1d{width:47.068267pt;}
._23{width:56.472533pt;}
._22{width:66.252267pt;}
.fs4{font-size:24.746667pt;}
.fs3{font-size:30.933333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:70.243067pt;}
.yca{bottom:114.392400pt;}
.ydc{bottom:115.725733pt;}
.y87{bottom:115.940933pt;}
.y4b{bottom:118.342533pt;}
.yb4{bottom:118.607600pt;}
.ye4{bottom:126.166533pt;}
.y115{bottom:129.946133pt;}
.yc9{bottom:131.059067pt;}
.y4a{bottom:131.142533pt;}
.y86{bottom:132.607600pt;}
.ydb{bottom:133.725733pt;}
.yb3{bottom:144.166533pt;}
.y49{bottom:147.462533pt;}
.yc8{bottom:147.725733pt;}
.y114{bottom:147.946133pt;}
.y85{bottom:149.274267pt;}
.yda{bottom:151.725733pt;}
.ye3{bottom:162.166533pt;}
.yc7{bottom:164.392400pt;}
.y84{bottom:165.940933pt;}
.y113{bottom:165.946133pt;}
.y48{bottom:168.081067pt;}
.yd9{bottom:169.725733pt;}
.yb2{bottom:180.166533pt;}
.yc6{bottom:181.059067pt;}
.y83{bottom:182.607600pt;}
.y112{bottom:183.946133pt;}
.y47{bottom:184.401067pt;}
.yd8{bottom:187.725733pt;}
.yc5{bottom:197.725733pt;}
.yb1{bottom:198.166533pt;}
.y82{bottom:199.274267pt;}
.y111{bottom:201.946133pt;}
.y46{bottom:205.019733pt;}
.yd7{bottom:205.725733pt;}
.yc4{bottom:214.392400pt;}
.yb0{bottom:216.166533pt;}
.y45{bottom:217.819733pt;}
.y110{bottom:219.946133pt;}
.y81{bottom:223.499867pt;}
.yd6{bottom:223.725733pt;}
.y44{bottom:230.619733pt;}
.yc3{bottom:231.059067pt;}
.yaf{bottom:234.166533pt;}
.y10f{bottom:237.946133pt;}
.yd5{bottom:241.725733pt;}
.y43{bottom:246.939733pt;}
.yc2{bottom:247.725733pt;}
.yae{bottom:252.166533pt;}
.y10e{bottom:255.946133pt;}
.y80{bottom:256.833200pt;}
.yd4{bottom:259.725733pt;}
.yc1{bottom:264.392400pt;}
.yad{bottom:270.166533pt;}
.y7f{bottom:273.499867pt;}
.y10d{bottom:273.946133pt;}
.yd3{bottom:277.725733pt;}
.yc0{bottom:281.059067pt;}
.yac{bottom:288.166533pt;}
.y7e{bottom:290.166533pt;}
.y10c{bottom:291.946133pt;}
.y52{bottom:293.646933pt;}
.yd2{bottom:295.725733pt;}
.y4f{bottom:297.646933pt;}
.ybf{bottom:297.725733pt;}
.yab{bottom:306.166533pt;}
.y7d{bottom:306.833200pt;}
.y10b{bottom:309.946133pt;}
.y51{bottom:311.646933pt;}
.yd1{bottom:313.725733pt;}
.y4e{bottom:314.313600pt;}
.ybe{bottom:314.392400pt;}
.y7c{bottom:323.499867pt;}
.yaa{bottom:324.166533pt;}
.y10a{bottom:327.946133pt;}
.y50{bottom:329.646933pt;}
.y4d{bottom:330.980267pt;}
.ybd{bottom:331.059067pt;}
.yd0{bottom:331.725733pt;}
.y7b{bottom:340.166667pt;}
.ya9{bottom:342.166667pt;}
.y109{bottom:345.946133pt;}
.ybc{bottom:347.725733pt;}
.ycf{bottom:349.725733pt;}
.y4c{bottom:355.206000pt;}
.y7a{bottom:356.833333pt;}
.ya8{bottom:360.166667pt;}
.y108{bottom:363.946133pt;}
.ybb{bottom:364.392400pt;}
.yce{bottom:367.725733pt;}
.y79{bottom:373.500000pt;}
.ya7{bottom:378.166667pt;}
.yba{bottom:381.059067pt;}
.y107{bottom:381.946133pt;}
.ycd{bottom:385.725733pt;}
.y78{bottom:390.166667pt;}
.ya6{bottom:396.166667pt;}
.yb9{bottom:397.725733pt;}
.y106{bottom:399.946133pt;}
.ycc{bottom:403.725733pt;}
.y77{bottom:406.833333pt;}
.y23{bottom:410.019333pt;}
.ye2{bottom:414.166667pt;}
.yb8{bottom:414.392400pt;}
.y105{bottom:417.946133pt;}
.ya5{bottom:421.725733pt;}
.y42{bottom:423.352533pt;}
.y22{bottom:423.352667pt;}
.y76{bottom:423.500000pt;}
.yb7{bottom:431.059067pt;}
.ye1{bottom:432.166667pt;}
.y135{bottom:434.346267pt;}
.y149{bottom:434.346400pt;}
.y104{bottom:435.946133pt;}
.y41{bottom:436.685867pt;}
.y21{bottom:436.686000pt;}
.ycb{bottom:439.725733pt;}
.y75{bottom:440.166667pt;}
.yb6{bottom:447.725733pt;}
.y40{bottom:450.019200pt;}
.y20{bottom:450.019333pt;}
.ye0{bottom:450.166667pt;}
.y134{bottom:451.946267pt;}
.y148{bottom:451.946400pt;}
.y103{bottom:453.946133pt;}
.ya4{bottom:457.725733pt;}
.y74{bottom:464.392400pt;}
.ydf{bottom:468.166667pt;}
.y133{bottom:469.546267pt;}
.y147{bottom:469.546400pt;}
.y3f{bottom:470.911600pt;}
.y1f{bottom:470.911733pt;}
.y102{bottom:471.946133pt;}
.ya3{bottom:475.725733pt;}
.yb5{bottom:481.059067pt;}
.y3e{bottom:484.244933pt;}
.y1e{bottom:484.245067pt;}
.yde{bottom:486.166667pt;}
.y132{bottom:487.146267pt;}
.y146{bottom:487.146400pt;}
.y101{bottom:489.946133pt;}
.ya2{bottom:493.725733pt;}
.y3d{bottom:497.578267pt;}
.y1d{bottom:497.578400pt;}
.y73{bottom:497.725733pt;}
.ydd{bottom:504.166667pt;}
.y131{bottom:504.746267pt;}
.y145{bottom:504.746400pt;}
.y100{bottom:507.946133pt;}
.y3c{bottom:510.911600pt;}
.y1c{bottom:510.911733pt;}
.ya1{bottom:511.725733pt;}
.y72{bottom:514.392400pt;}
.y117{bottom:522.166667pt;}
.y130{bottom:522.346267pt;}
.y144{bottom:522.346400pt;}
.y3b{bottom:524.244933pt;}
.y1b{bottom:524.245067pt;}
.yff{bottom:525.946133pt;}
.ya0{bottom:529.725733pt;}
.y71{bottom:531.059067pt;}
.y3a{bottom:537.578267pt;}
.y1a{bottom:537.578400pt;}
.y12f{bottom:539.946267pt;}
.y143{bottom:539.946400pt;}
.y116{bottom:540.166667pt;}
.yfe{bottom:543.946133pt;}
.y70{bottom:547.725733pt;}
.y39{bottom:550.911600pt;}
.y19{bottom:550.911733pt;}
.y12e{bottom:557.546267pt;}
.y142{bottom:557.546400pt;}
.yfd{bottom:561.946133pt;}
.y38{bottom:564.244933pt;}
.y18{bottom:564.245067pt;}
.y6f{bottom:564.392400pt;}
.y9f{bottom:565.725733pt;}
.y12d{bottom:575.146267pt;}
.y141{bottom:575.146400pt;}
.y37{bottom:577.578267pt;}
.y17{bottom:577.578400pt;}
.yfc{bottom:579.946133pt;}
.y6e{bottom:581.059067pt;}
.y9e{bottom:583.725733pt;}
.y36{bottom:590.911600pt;}
.y16{bottom:590.911733pt;}
.y12c{bottom:592.746267pt;}
.y140{bottom:592.746400pt;}
.y6d{bottom:597.725733pt;}
.yfb{bottom:597.946133pt;}
.y9d{bottom:601.725733pt;}
.y35{bottom:604.244933pt;}
.y15{bottom:604.245067pt;}
.y12b{bottom:610.346267pt;}
.y13f{bottom:610.346400pt;}
.y6c{bottom:614.392400pt;}
.yfa{bottom:615.946133pt;}
.y34{bottom:617.578267pt;}
.y14{bottom:617.578400pt;}
.y9c{bottom:619.725733pt;}
.y12a{bottom:627.946267pt;}
.y13e{bottom:627.946400pt;}
.y33{bottom:630.911600pt;}
.y13{bottom:630.911733pt;}
.y6b{bottom:631.059067pt;}
.yf9{bottom:633.946133pt;}
.y9b{bottom:637.725733pt;}
.y32{bottom:644.244933pt;}
.y12{bottom:644.245067pt;}
.y129{bottom:645.546267pt;}
.y13d{bottom:645.546400pt;}
.y6a{bottom:647.725733pt;}
.yf8{bottom:651.946133pt;}
.y9a{bottom:655.725733pt;}
.y31{bottom:657.578267pt;}
.y11{bottom:657.578400pt;}
.y128{bottom:663.146267pt;}
.y13c{bottom:663.146400pt;}
.y69{bottom:664.392400pt;}
.yf7{bottom:669.946133pt;}
.y30{bottom:670.911600pt;}
.y10{bottom:670.911733pt;}
.y99{bottom:673.725733pt;}
.y127{bottom:680.746267pt;}
.y13b{bottom:680.746400pt;}
.y68{bottom:681.059067pt;}
.y2f{bottom:684.244933pt;}
.yf{bottom:684.245067pt;}
.yf6{bottom:687.946133pt;}
.y98{bottom:691.725733pt;}
.y2e{bottom:697.578267pt;}
.ye{bottom:697.578400pt;}
.y67{bottom:697.725733pt;}
.y126{bottom:698.346133pt;}
.y13a{bottom:698.346400pt;}
.yf5{bottom:705.946133pt;}
.y97{bottom:709.725733pt;}
.y2d{bottom:710.911600pt;}
.yd{bottom:710.911733pt;}
.y66{bottom:714.392400pt;}
.y125{bottom:715.946267pt;}
.yf4{bottom:723.946133pt;}
.y2c{bottom:724.244933pt;}
.yc{bottom:724.245067pt;}
.y96{bottom:727.725733pt;}
.y65{bottom:731.059067pt;}
.y124{bottom:733.546267pt;}
.y2b{bottom:737.578267pt;}
.yb{bottom:737.578400pt;}
.yf3{bottom:741.946133pt;}
.y95{bottom:745.725733pt;}
.y64{bottom:747.725733pt;}
.y123{bottom:751.146267pt;}
.yf2{bottom:759.946133pt;}
.y94{bottom:763.725733pt;}
.y63{bottom:764.392400pt;}
.y122{bottom:768.746267pt;}
.y139{bottom:768.746400pt;}
.yf1{bottom:777.946133pt;}
.y62{bottom:781.059067pt;}
.y93{bottom:781.725733pt;}
.y121{bottom:786.346133pt;}
.y138{bottom:786.346267pt;}
.ya{bottom:793.739733pt;}
.y2a{bottom:794.273333pt;}
.yf0{bottom:795.946133pt;}
.y61{bottom:797.725733pt;}
.y92{bottom:799.725733pt;}
.y120{bottom:803.946267pt;}
.yef{bottom:813.946133pt;}
.y60{bottom:814.392400pt;}
.y9{bottom:817.298800pt;}
.y91{bottom:817.725733pt;}
.y29{bottom:817.832267pt;}
.y11f{bottom:821.546267pt;}
.y5f{bottom:831.059067pt;}
.yee{bottom:831.946133pt;}
.y90{bottom:835.725733pt;}
.y11e{bottom:839.146267pt;}
.y28{bottom:841.391333pt;}
.y8{bottom:843.524533pt;}
.y5e{bottom:847.725733pt;}
.yed{bottom:849.946133pt;}
.y8f{bottom:853.725733pt;}
.y11d{bottom:856.746267pt;}
.y137{bottom:856.746400pt;}
.y5d{bottom:864.392400pt;}
.yec{bottom:867.946133pt;}
.y8e{bottom:871.725733pt;}
.y11c{bottom:874.346133pt;}
.y136{bottom:874.346267pt;}
.y5c{bottom:881.059067pt;}
.yeb{bottom:885.946133pt;}
.y8d{bottom:889.725733pt;}
.y11b{bottom:891.946267pt;}
.y7{bottom:892.057867pt;}
.y27{bottom:892.058000pt;}
.y5b{bottom:897.725733pt;}
.yea{bottom:903.946133pt;}
.y8c{bottom:907.725733pt;}
.y11a{bottom:909.546267pt;}
.y6{bottom:909.657867pt;}
.y26{bottom:909.658000pt;}
.y5a{bottom:914.392400pt;}
.ye9{bottom:921.946133pt;}
.y8b{bottom:925.725733pt;}
.y5{bottom:927.257867pt;}
.y25{bottom:927.258000pt;}
.y59{bottom:931.059067pt;}
.y118{bottom:938.226933pt;}
.ye8{bottom:939.946133pt;}
.y8a{bottom:943.725733pt;}
.y4{bottom:944.857867pt;}
.y24{bottom:944.858133pt;}
.y58{bottom:947.725733pt;}
.ye7{bottom:957.946133pt;}
.y119{bottom:960.552400pt;}
.y89{bottom:961.725733pt;}
.y57{bottom:964.392400pt;}
.ye6{bottom:975.946133pt;}
.y88{bottom:979.725733pt;}
.y56{bottom:981.059067pt;}
.ye5{bottom:993.946133pt;}
.y3{bottom:996.227333pt;}
.y55{bottom:997.725733pt;}
.y54{bottom:1037.385067pt;}
.y1{bottom:1044.332933pt;}
.y53{bottom:1050.185067pt;}
.ha{height:23.003333pt;}
.hc{height:29.916667pt;}
.h10{height:31.573333pt;}
.h8{height:32.298667pt;}
.hf{height:35.520000pt;}
.h2{height:35.925333pt;}
.h12{height:35.963542pt;}
.hb{height:37.083333pt;}
.h3{height:37.760000pt;}
.hd{height:39.559896pt;}
.h11{height:41.135417pt;}
.h4{height:44.906667pt;}
.h6{height:47.680000pt;}
.he{height:50.989583pt;}
.h5{height:52.448000pt;}
.h9{height:55.920533pt;}
.h7{height:55.921067pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:94.488133pt;}
.x16{left:102.047200pt;}
.x5{left:105.096667pt;}
.x6{left:113.852667pt;}
.x1f{left:117.066933pt;}
.x4{left:120.577067pt;}
.xb{left:124.224400pt;}
.x17{left:131.783467pt;}
.x9{left:138.776000pt;}
.x1c{left:139.910000pt;}
.x7{left:169.746400pt;}
.xa{left:191.262267pt;}
.x8{left:202.139200pt;}
.x1{left:287.659467pt;}
.x1e{left:388.421733pt;}
.x1a{left:389.328400pt;}
.x2{left:390.557067pt;}
.x18{left:406.299200pt;}
.xc{left:414.655467pt;}
.x14{left:417.637733pt;}
.xe{left:421.973867pt;}
.x1b{left:425.196800pt;}
.x20{left:428.976400pt;}
.xd{left:434.741067pt;}
.x13{left:436.535467pt;}
.x19{left:444.094533pt;}
.x11{left:450.783867pt;}
.x1d{left:451.720933pt;}
.xf{left:475.249467pt;}
.x12{left:503.270000pt;}
.x15{left:511.106000pt;}
.x10{left:514.146933pt;}
}




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