
    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_1bbe758c8824813f84c1303a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938477;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_ee7244ea1e7e46614af2c1e0.woff')format("woff");}.ff2{font-family:ff2;line-height:1.137000;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_db77a403b5f61982085791e9.woff')format("woff");}.ff3{font-family:ff3;line-height:1.140137;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_44d2b271c9a18b022edf1f5d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.136230;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_f426d0168115fdbc2873d3f8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.019043;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_1bbe758c8824813f84c1303a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_f03b72ef85b5ca13e899401b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.141113;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_1a1909419b939d68eaf4c625.woff')format("woff");}.ff8{font-family:ff8;line-height:0.962000;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_1bbe758c8824813f84c1303a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.275000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.275000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.275000,-0.250000,0.000000,0,0);}
.m0{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);}
.m3{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);}
.m4{transform:matrix(0.000000,-0.275000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.275000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.275000,0.250000,0.000000,0,0);}
.m5{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.m7{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:-1.320000px;}
.ls3{letter-spacing:-1.254000px;}
.ls4{letter-spacing:-0.660000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.660000px;}
.ls6{letter-spacing:1.980000px;}
.ls0{letter-spacing:2.100000px;}
.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:-43.920000px;}
.ws2{word-spacing:-19.008000px;}
.ws27{word-spacing:-18.348000px;}
.ws7a{word-spacing:-6.534000px;}
.ws92{word-spacing:-5.808000px;}
.ws99{word-spacing:-4.818000px;}
.ws42{word-spacing:-4.752000px;}
.ws81{word-spacing:-4.356000px;}
.ws60{word-spacing:-4.158000px;}
.ws15{word-spacing:-3.696000px;}
.ws68{word-spacing:-3.630000px;}
.ws4e{word-spacing:-3.498000px;}
.ws98{word-spacing:-3.432000px;}
.ws35{word-spacing:-3.168000px;}
.ws41{word-spacing:-3.102000px;}
.ws4c{word-spacing:-3.036000px;}
.ws3d{word-spacing:-2.772000px;}
.ws7b{word-spacing:-2.706000px;}
.ws97{word-spacing:-2.640000px;}
.ws4b{word-spacing:-2.574000px;}
.wsa5{word-spacing:-2.508000px;}
.ws9a{word-spacing:-2.376000px;}
.ws82{word-spacing:-2.046000px;}
.ws1d{word-spacing:-1.716000px;}
.ws37{word-spacing:-1.584000px;}
.wsa7{word-spacing:-1.386000px;}
.ws5c{word-spacing:-1.320000px;}
.ws40{word-spacing:-1.254000px;}
.ws2e{word-spacing:-1.188000px;}
.ws1b{word-spacing:-1.122000px;}
.ws3c{word-spacing:-1.056000px;}
.ws3e{word-spacing:-0.990000px;}
.ws80{word-spacing:-0.924000px;}
.ws7d{word-spacing:-0.858000px;}
.ws13{word-spacing:-0.792000px;}
.ws12{word-spacing:-0.726000px;}
.ws3{word-spacing:-0.660000px;}
.ws17{word-spacing:-0.528000px;}
.ws90{word-spacing:-0.198000px;}
.ws67{word-spacing:-0.132000px;}
.ws20{word-spacing:-0.066000px;}
.ws1{word-spacing:0.000000px;}
.ws6d{word-spacing:0.066000px;}
.ws31{word-spacing:0.132000px;}
.ws14{word-spacing:0.264000px;}
.ws6{word-spacing:0.396000px;}
.ws2b{word-spacing:0.462000px;}
.ws8b{word-spacing:0.528000px;}
.wsa1{word-spacing:0.924000px;}
.ws39{word-spacing:0.990000px;}
.ws46{word-spacing:1.056000px;}
.ws29{word-spacing:1.188000px;}
.ws2f{word-spacing:1.254000px;}
.ws43{word-spacing:1.320000px;}
.ws4f{word-spacing:1.386000px;}
.ws66{word-spacing:1.518000px;}
.ws1c{word-spacing:1.584000px;}
.ws44{word-spacing:1.650000px;}
.ws16{word-spacing:1.782000px;}
.ws2d{word-spacing:1.914000px;}
.ws4a{word-spacing:1.980000px;}
.ws34{word-spacing:2.046000px;}
.ws85{word-spacing:2.112000px;}
.wsf{word-spacing:2.310000px;}
.ws21{word-spacing:2.376000px;}
.ws8c{word-spacing:2.574000px;}
.ws22{word-spacing:2.640000px;}
.ws3b{word-spacing:2.706000px;}
.ws62{word-spacing:2.772000px;}
.wsa4{word-spacing:2.904000px;}
.ws50{word-spacing:2.970000px;}
.wsa8{word-spacing:3.036000px;}
.ws49{word-spacing:3.102000px;}
.ws96{word-spacing:3.168000px;}
.ws33{word-spacing:3.300000px;}
.wsa6{word-spacing:3.432000px;}
.ws38{word-spacing:3.498000px;}
.ws32{word-spacing:3.564000px;}
.ws11{word-spacing:3.696000px;}
.ws8f{word-spacing:3.762000px;}
.wsa{word-spacing:3.894000px;}
.wse{word-spacing:4.026000px;}
.ws79{word-spacing:4.092000px;}
.ws88{word-spacing:4.158000px;}
.ws4d{word-spacing:4.224000px;}
.ws23{word-spacing:4.290000px;}
.ws18{word-spacing:4.356000px;}
.ws28{word-spacing:4.422000px;}
.ws8{word-spacing:4.554000px;}
.wsa9{word-spacing:4.620000px;}
.ws3a{word-spacing:4.686000px;}
.ws2c{word-spacing:4.884000px;}
.ws59{word-spacing:5.148000px;}
.ws3f{word-spacing:5.214000px;}
.ws51{word-spacing:5.280000px;}
.ws7{word-spacing:5.346000px;}
.ws76{word-spacing:5.478000px;}
.ws19{word-spacing:5.610000px;}
.ws64{word-spacing:5.742000px;}
.ws47{word-spacing:5.808000px;}
.ws7f{word-spacing:5.874000px;}
.ws77{word-spacing:5.940000px;}
.ws70{word-spacing:6.072000px;}
.ws69{word-spacing:6.138000px;}
.ws26{word-spacing:6.204000px;}
.ws1a{word-spacing:6.336000px;}
.ws71{word-spacing:6.402000px;}
.ws61{word-spacing:6.534000px;}
.ws9{word-spacing:6.666000px;}
.ws7c{word-spacing:6.798000px;}
.ws5a{word-spacing:6.930000px;}
.ws5e{word-spacing:7.128000px;}
.ws24{word-spacing:7.194000px;}
.wsa3{word-spacing:7.260000px;}
.ws4{word-spacing:7.326000px;}
.ws1f{word-spacing:7.392000px;}
.ws9e{word-spacing:7.524000px;}
.ws30{word-spacing:7.590000px;}
.ws36{word-spacing:7.854000px;}
.ws5f{word-spacing:8.118000px;}
.ws45{word-spacing:8.184000px;}
.ws72{word-spacing:8.250000px;}
.ws83{word-spacing:8.382000px;}
.ws86{word-spacing:8.514000px;}
.ws84{word-spacing:8.646000px;}
.wsa0{word-spacing:8.778000px;}
.ws2a{word-spacing:8.910000px;}
.ws48{word-spacing:8.976000px;}
.ws89{word-spacing:9.108000px;}
.ws25{word-spacing:9.306000px;}
.wsd{word-spacing:9.372000px;}
.ws9f{word-spacing:9.438000px;}
.ws91{word-spacing:9.702000px;}
.ws8a{word-spacing:9.966000px;}
.ws63{word-spacing:10.032000px;}
.ws6f{word-spacing:10.098000px;}
.wsb{word-spacing:10.230000px;}
.ws5b{word-spacing:10.362000px;}
.wsc{word-spacing:10.428000px;}
.ws56{word-spacing:10.494000px;}
.ws7e{word-spacing:10.560000px;}
.ws5{word-spacing:10.824000px;}
.ws65{word-spacing:10.956000px;}
.ws1e{word-spacing:11.022000px;}
.ws52{word-spacing:11.220000px;}
.ws57{word-spacing:11.286000px;}
.ws10{word-spacing:11.484000px;}
.ws5d{word-spacing:11.946000px;}
.ws75{word-spacing:12.408000px;}
.wsa2{word-spacing:13.662000px;}
.ws95{word-spacing:13.728000px;}
.ws53{word-spacing:14.124000px;}
.ws94{word-spacing:14.586000px;}
.ws6c{word-spacing:14.850000px;}
.ws74{word-spacing:14.916000px;}
.ws58{word-spacing:15.246000px;}
.ws6e{word-spacing:16.236000px;}
.ws93{word-spacing:16.500000px;}
.ws6a{word-spacing:16.632000px;}
.ws55{word-spacing:16.830000px;}
.ws9b{word-spacing:17.754000px;}
.ws87{word-spacing:18.678000px;}
.ws73{word-spacing:19.338000px;}
.ws78{word-spacing:19.602000px;}
.ws8e{word-spacing:21.978000px;}
.ws8d{word-spacing:22.902000px;}
.ws9d{word-spacing:23.166000px;}
.ws54{word-spacing:26.598000px;}
.ws6b{word-spacing:32.472000px;}
.ws9c{word-spacing:48.444000px;}
._c{margin-left:-7.655400px;}
._a{margin-left:-6.561000px;}
._2{margin-left:-5.328000px;}
._0{margin-left:-3.544800px;}
._3{margin-left:-2.442000px;}
._4{margin-left:-1.188000px;}
._1{width:1.134000px;}
._6{width:2.179200px;}
._8{width:3.399000px;}
._9{width:4.418400px;}
._5{width:5.616600px;}
._7{width:7.002600px;}
._10{width:8.085000px;}
._d{width:10.997400px;}
._e{width:16.621800px;}
._b{width:19.582200px;}
._f{width:20.994600px;}
.fc4{color:rgb(90,87,88);}
.fc3{color:rgb(236,0,140);}
.fc2{color:rgb(76,160,198);}
.fc1{color:rgb(0,120,173);}
.fc0{color:rgb(35,31,32);}
.fs0{font-size:42.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:35.707650px;}
.yb{bottom:36.229050px;}
.yb8{bottom:63.779400px;}
.y5{bottom:63.779550px;}
.ycb{bottom:64.160400px;}
.y10f{bottom:65.176050px;}
.y133{bottom:83.746350px;}
.y20{bottom:84.814500px;}
.yb7{bottom:84.937350px;}
.y34{bottom:85.017000px;}
.y8f{bottom:85.209900px;}
.y4f{bottom:85.210050px;}
.y60{bottom:85.234800px;}
.y10e{bottom:86.176050px;}
.y9d{bottom:86.676150px;}
.y145{bottom:88.414800px;}
.yca{bottom:89.412450px;}
.y9{bottom:96.425100px;}
.y36{bottom:99.212550px;}
.y132{bottom:103.713300px;}
.y35{bottom:105.944850px;}
.yb6{bottom:106.095300px;}
.y33{bottom:106.254450px;}
.y8e{bottom:106.640400px;}
.y4e{bottom:106.640550px;}
.y5f{bottom:106.690200px;}
.ye0{bottom:107.176050px;}
.y144{bottom:108.798150px;}
.y9c{bottom:109.572900px;}
.y1f{bottom:110.101500px;}
.yc9{bottom:110.412450px;}
.y8{bottom:121.677000px;}
.y131{bottom:123.680100px;}
.yb5{bottom:127.253250px;}
.y32{bottom:127.492050px;}
.y4d{bottom:128.070900px;}
.y5e{bottom:128.145450px;}
.ydf{bottom:128.176050px;}
.y143{bottom:129.181500px;}
.y1e{bottom:131.136450px;}
.yc8{bottom:131.412450px;}
.y9b{bottom:132.469650px;}
.y130{bottom:143.646900px;}
.y7{bottom:146.929050px;}
.yb4{bottom:148.411200px;}
.y31{bottom:148.729500px;}
.yde{bottom:149.176050px;}
.yfc{bottom:149.459550px;}
.y8d{bottom:149.501250px;}
.y4c{bottom:149.501400px;}
.y5d{bottom:149.600700px;}
.y1d{bottom:152.171550px;}
.yc7{bottom:152.412450px;}
.y73{bottom:152.650500px;}
.y142{bottom:153.816900px;}
.y9a{bottom:155.366400px;}
.y12f{bottom:163.613850px;}
.yb3{bottom:169.569150px;}
.y30{bottom:169.966950px;}
.ydd{bottom:170.176050px;}
.yfb{bottom:170.459550px;}
.y8c{bottom:170.931750px;}
.y4b{bottom:170.931900px;}
.y5c{bottom:171.056100px;}
.y6{bottom:172.180950px;}
.y1c{bottom:173.206500px;}
.yc6{bottom:173.412450px;}
.y72{bottom:173.915250px;}
.y141{bottom:174.200250px;}
.y10d{bottom:174.428100px;}
.y99{bottom:178.263150px;}
.y12e{bottom:183.580650px;}
.yb2{bottom:190.727100px;}
.ydc{bottom:191.176050px;}
.y2f{bottom:191.204400px;}
.yfa{bottom:191.459550px;}
.y4a{bottom:192.362250px;}
.y5b{bottom:192.511350px;}
.y1b{bottom:194.241600px;}
.yc5{bottom:194.412450px;}
.y140{bottom:194.583600px;}
.y71{bottom:195.180000px;}
.y10c{bottom:195.428100px;}
.y98{bottom:201.159900px;}
.y7e{bottom:201.971400px;}
.y12d{bottom:203.547600px;}
.yb1{bottom:211.885050px;}
.ydb{bottom:212.176200px;}
.yf9{bottom:212.459550px;}
.y49{bottom:213.792750px;}
.y5a{bottom:213.966750px;}
.y13f{bottom:214.966950px;}
.y1a{bottom:215.276550px;}
.yc4{bottom:215.412450px;}
.y10b{bottom:216.428100px;}
.y70{bottom:216.444600px;}
.y2e{bottom:216.693900px;}
.y7d{bottom:222.971400px;}
.y12c{bottom:223.514400px;}
.y97{bottom:224.056500px;}
.yb0{bottom:233.043000px;}
.y48{bottom:235.223250px;}
.y13e{bottom:235.350450px;}
.y59{bottom:235.422000px;}
.y19{bottom:236.311650px;}
.yc3{bottom:236.412450px;}
.yda{bottom:237.428100px;}
.y6f{bottom:237.709350px;}
.yf8{bottom:237.711600px;}
.y2d{bottom:237.931350px;}
.y8b{bottom:239.475150px;}
.y105{bottom:241.951800px;}
.y12b{bottom:243.481350px;}
.y7c{bottom:243.971400px;}
.y96{bottom:246.953250px;}
.yaf{bottom:254.200950px;}
.y13d{bottom:255.733800px;}
.y47{bottom:256.653750px;}
.y58{bottom:256.877400px;}
.y18{bottom:257.346600px;}
.yc2{bottom:257.412450px;}
.y116{bottom:257.802150px;}
.yd9{bottom:258.428100px;}
.yf7{bottom:258.711600px;}
.y2c{bottom:259.168950px;}
.y8a{bottom:260.905650px;}
.y104{bottom:262.951800px;}
.y6e{bottom:263.226150px;}
.y12a{bottom:263.448150px;}
.y7b{bottom:264.971400px;}
.y95{bottom:274.101900px;}
.yae{bottom:275.358900px;}
.y46{bottom:278.084250px;}
.y57{bottom:278.332650px;}
.y17{bottom:278.381550px;}
.yc1{bottom:278.412300px;}
.y115{bottom:278.802150px;}
.ye8{bottom:279.215550px;}
.yd8{bottom:279.428100px;}
.yf6{bottom:279.711600px;}
.y13c{bottom:280.369050px;}
.y2b{bottom:280.406400px;}
.y89{bottom:282.336000px;}
.y129{bottom:283.414950px;}
.y103{bottom:283.951800px;}
.y6d{bottom:284.490750px;}
.y7a{bottom:285.971400px;}
.yad{bottom:296.516850px;}
.y94{bottom:296.998650px;}
.yc0{bottom:299.412300px;}
.y16{bottom:299.416650px;}
.y45{bottom:299.514600px;}
.y56{bottom:299.787900px;}
.y114{bottom:299.802150px;}
.ye7{bottom:300.215550px;}
.yd7{bottom:300.428100px;}
.yf5{bottom:300.711600px;}
.y13b{bottom:300.752400px;}
.y2a{bottom:301.643850px;}
.y128{bottom:303.381900px;}
.y88{bottom:303.766500px;}
.y102{bottom:304.951800px;}
.y6c{bottom:305.755500px;}
.y79{bottom:306.971400px;}
.yac{bottom:317.674800px;}
.y93{bottom:319.895400px;}
.ybf{bottom:320.412300px;}
.y15{bottom:320.451600px;}
.y44{bottom:320.945100px;}
.y13a{bottom:321.135750px;}
.ye6{bottom:321.215550px;}
.y55{bottom:321.243300px;}
.yf4{bottom:321.711600px;}
.y29{bottom:322.881300px;}
.y127{bottom:323.348700px;}
.y113{bottom:325.054200px;}
.y87{bottom:325.197000px;}
.yd6{bottom:325.680000px;}
.y101{bottom:325.951800px;}
.y6b{bottom:327.020250px;}
.y78{bottom:327.971400px;}
.ybe{bottom:341.412300px;}
.y43{bottom:342.375600px;}
.y54{bottom:342.698550px;}
.y92{bottom:342.792150px;}
.yab{bottom:343.084650px;}
.y126{bottom:343.315650px;}
.y28{bottom:344.118750px;}
.y14{bottom:345.738600px;}
.y139{bottom:345.771150px;}
.y112{bottom:346.054200px;}
.ye5{bottom:346.467450px;}
.y86{bottom:346.627500px;}
.yd5{bottom:346.680000px;}
.y100{bottom:346.951800px;}
.yf3{bottom:346.963500px;}
.y6a{bottom:348.285000px;}
.y77{bottom:348.971400px;}
.ybd{bottom:362.412300px;}
.y125{bottom:363.282450px;}
.y42{bottom:363.805950px;}
.y53{bottom:364.153950px;}
.yaa{bottom:364.242600px;}
.y27{bottom:365.356350px;}
.y91{bottom:365.688900px;}
.y138{bottom:366.154500px;}
.y13{bottom:366.773550px;}
.y111{bottom:367.054200px;}
.ye4{bottom:367.467450px;}
.yd4{bottom:367.680000px;}
.yff{bottom:367.951800px;}
.yf2{bottom:367.963500px;}
.y85{bottom:368.057850px;}
.y69{bottom:369.549600px;}
.y76{bottom:369.971400px;}
.y37{bottom:382.832850px;}
.ybc{bottom:383.412450px;}
.y4{bottom:384.635550px;}
.y41{bottom:385.236450px;}
.ya9{bottom:385.400550px;}
.y52{bottom:385.609200px;}
.y137{bottom:386.537850px;}
.y26{bottom:386.593800px;}
.y124{bottom:387.501300px;}
.y12{bottom:387.808650px;}
.y110{bottom:388.054200px;}
.ye3{bottom:388.467450px;}
.y90{bottom:388.585650px;}
.yd3{bottom:388.680150px;}
.yfe{bottom:388.951800px;}
.yf1{bottom:388.963500px;}
.y84{bottom:389.488350px;}
.y68{bottom:390.814350px;}
.y75{bottom:390.971400px;}
.ybb{bottom:404.412300px;}
.y3{bottom:405.365700px;}
.ya8{bottom:406.558650px;}
.y136{bottom:406.921200px;}
.y123{bottom:407.468100px;}
.y25{bottom:407.831250px;}
.y11{bottom:408.843600px;}
.ye2{bottom:409.467450px;}
.yd2{bottom:409.680150px;}
.yfd{bottom:409.951800px;}
.yf0{bottom:409.963650px;}
.y40{bottom:410.918850px;}
.y74{bottom:411.971400px;}
.y67{bottom:412.079100px;}
.y10a{bottom:413.932050px;}
.y83{bottom:415.170750px;}
.y135{bottom:427.304700px;}
.y122{bottom:427.435050px;}
.ya7{bottom:427.716450px;}
.y24{bottom:429.068700px;}
.yba{bottom:429.664350px;}
.y10{bottom:429.878700px;}
.ye1{bottom:430.467450px;}
.yd1{bottom:430.680150px;}
.yef{bottom:435.215550px;}
.y3f{bottom:436.601400px;}
.y66{bottom:437.595750px;}
.y109{bottom:439.183950px;}
.y82{bottom:440.853150px;}
.y121{bottom:447.401850px;}
.y134{bottom:447.687900px;}
.ya6{bottom:448.874400px;}
.y23{bottom:450.306300px;}
.yb9{bottom:450.664350px;}
.yf{bottom:450.913650px;}
.yd0{bottom:455.932050px;}
.y3e{bottom:458.031750px;}
.yee{bottom:460.467450px;}
.y81{bottom:462.283650px;}
.y65{bottom:463.112400px;}
.y108{bottom:464.436000px;}
.y22{bottom:471.543750px;}
.y120{bottom:471.620700px;}
.ye{bottom:471.948600px;}
.ya5{bottom:474.284400px;}
.ycf{bottom:481.184100px;}
.yed{bottom:481.467450px;}
.y3d{bottom:483.714150px;}
.y80{bottom:487.966050px;}
.y64{bottom:488.629050px;}
.y107{bottom:489.687900px;}
.y21{bottom:492.781200px;}
.yd{bottom:492.983700px;}
.y11f{bottom:495.839550px;}
.ya4{bottom:499.694250px;}
.yce{bottom:506.436000px;}
.yec{bottom:506.719500px;}
.y7f{bottom:509.396550px;}
.y3c{bottom:509.396700px;}
.y63{bottom:509.893800px;}
.y106{bottom:510.687900px;}
.yc{bottom:514.018650px;}
.y11e{bottom:520.058400px;}
.ya3{bottom:525.104250px;}
.y3b{bottom:530.827050px;}
.y62{bottom:531.158550px;}
.ycd{bottom:531.687900px;}
.yeb{bottom:531.971400px;}
.ya{bottom:540.616500px;}
.y11d{bottom:544.277250px;}
.ya2{bottom:550.514100px;}
.y3a{bottom:552.257550px;}
.y61{bottom:552.423300px;}
.ycc{bottom:552.687900px;}
.yea{bottom:552.971400px;}
.y11c{bottom:564.244050px;}
.ya1{bottom:571.672050px;}
.y39{bottom:577.939950px;}
.ye9{bottom:578.223450px;}
.y11b{bottom:584.211000px;}
.ya0{bottom:592.830000px;}
.y11a{bottom:604.177800px;}
.y9f{bottom:613.987950px;}
.y119{bottom:628.396650px;}
.y9e{bottom:639.397950px;}
.y1{bottom:679.606350px;}
.y2{bottom:686.338650px;}
.y118{bottom:689.459700px;}
.y51{bottom:689.559450px;}
.y117{bottom:710.459700px;}
.y50{bottom:710.559450px;}
.h2{height:30.577148px;}
.h5{height:38.431641px;}
.h8{height:48.642000px;}
.h9{height:52.400391px;}
.h4{height:59.928000px;}
.h6{height:60.392578px;}
.h7{height:60.940430px;}
.h3{height:130.752000px;}
.h0{height:786.613500px;}
.h1{height:786.750000px;}
.w1{width:1190.250000px;}
.w0{width:1190.551500px;}
.x4{left:-984.330750px;}
.x0{left:0.000000px;}
.x3{left:51.023700px;}
.x8{left:54.737100px;}
.x9{left:72.595350px;}
.x6{left:148.818900px;}
.xa{left:535.748100px;}
.xb{left:557.007900px;}
.x7{left:654.803100px;}
.x2{left:1117.955850px;}
.x5{left:1127.848350px;}
.x1{left:1135.814100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:-1.173333pt;}
.ls3{letter-spacing:-1.114667pt;}
.ls4{letter-spacing:-0.586667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.586667pt;}
.ls6{letter-spacing:1.760000pt;}
.ls0{letter-spacing:1.866667pt;}
.ws0{word-spacing:-39.040000pt;}
.ws2{word-spacing:-16.896000pt;}
.ws27{word-spacing:-16.309333pt;}
.ws7a{word-spacing:-5.808000pt;}
.ws92{word-spacing:-5.162667pt;}
.ws99{word-spacing:-4.282667pt;}
.ws42{word-spacing:-4.224000pt;}
.ws81{word-spacing:-3.872000pt;}
.ws60{word-spacing:-3.696000pt;}
.ws15{word-spacing:-3.285333pt;}
.ws68{word-spacing:-3.226667pt;}
.ws4e{word-spacing:-3.109333pt;}
.ws98{word-spacing:-3.050667pt;}
.ws35{word-spacing:-2.816000pt;}
.ws41{word-spacing:-2.757333pt;}
.ws4c{word-spacing:-2.698667pt;}
.ws3d{word-spacing:-2.464000pt;}
.ws7b{word-spacing:-2.405333pt;}
.ws97{word-spacing:-2.346667pt;}
.ws4b{word-spacing:-2.288000pt;}
.wsa5{word-spacing:-2.229333pt;}
.ws9a{word-spacing:-2.112000pt;}
.ws82{word-spacing:-1.818667pt;}
.ws1d{word-spacing:-1.525333pt;}
.ws37{word-spacing:-1.408000pt;}
.wsa7{word-spacing:-1.232000pt;}
.ws5c{word-spacing:-1.173333pt;}
.ws40{word-spacing:-1.114667pt;}
.ws2e{word-spacing:-1.056000pt;}
.ws1b{word-spacing:-0.997333pt;}
.ws3c{word-spacing:-0.938667pt;}
.ws3e{word-spacing:-0.880000pt;}
.ws80{word-spacing:-0.821333pt;}
.ws7d{word-spacing:-0.762667pt;}
.ws13{word-spacing:-0.704000pt;}
.ws12{word-spacing:-0.645333pt;}
.ws3{word-spacing:-0.586667pt;}
.ws17{word-spacing:-0.469333pt;}
.ws90{word-spacing:-0.176000pt;}
.ws67{word-spacing:-0.117333pt;}
.ws20{word-spacing:-0.058667pt;}
.ws1{word-spacing:0.000000pt;}
.ws6d{word-spacing:0.058667pt;}
.ws31{word-spacing:0.117333pt;}
.ws14{word-spacing:0.234667pt;}
.ws6{word-spacing:0.352000pt;}
.ws2b{word-spacing:0.410667pt;}
.ws8b{word-spacing:0.469333pt;}
.wsa1{word-spacing:0.821333pt;}
.ws39{word-spacing:0.880000pt;}
.ws46{word-spacing:0.938667pt;}
.ws29{word-spacing:1.056000pt;}
.ws2f{word-spacing:1.114667pt;}
.ws43{word-spacing:1.173333pt;}
.ws4f{word-spacing:1.232000pt;}
.ws66{word-spacing:1.349333pt;}
.ws1c{word-spacing:1.408000pt;}
.ws44{word-spacing:1.466667pt;}
.ws16{word-spacing:1.584000pt;}
.ws2d{word-spacing:1.701333pt;}
.ws4a{word-spacing:1.760000pt;}
.ws34{word-spacing:1.818667pt;}
.ws85{word-spacing:1.877333pt;}
.wsf{word-spacing:2.053333pt;}
.ws21{word-spacing:2.112000pt;}
.ws8c{word-spacing:2.288000pt;}
.ws22{word-spacing:2.346667pt;}
.ws3b{word-spacing:2.405333pt;}
.ws62{word-spacing:2.464000pt;}
.wsa4{word-spacing:2.581333pt;}
.ws50{word-spacing:2.640000pt;}
.wsa8{word-spacing:2.698667pt;}
.ws49{word-spacing:2.757333pt;}
.ws96{word-spacing:2.816000pt;}
.ws33{word-spacing:2.933333pt;}
.wsa6{word-spacing:3.050667pt;}
.ws38{word-spacing:3.109333pt;}
.ws32{word-spacing:3.168000pt;}
.ws11{word-spacing:3.285333pt;}
.ws8f{word-spacing:3.344000pt;}
.wsa{word-spacing:3.461333pt;}
.wse{word-spacing:3.578667pt;}
.ws79{word-spacing:3.637333pt;}
.ws88{word-spacing:3.696000pt;}
.ws4d{word-spacing:3.754667pt;}
.ws23{word-spacing:3.813333pt;}
.ws18{word-spacing:3.872000pt;}
.ws28{word-spacing:3.930667pt;}
.ws8{word-spacing:4.048000pt;}
.wsa9{word-spacing:4.106667pt;}
.ws3a{word-spacing:4.165333pt;}
.ws2c{word-spacing:4.341333pt;}
.ws59{word-spacing:4.576000pt;}
.ws3f{word-spacing:4.634667pt;}
.ws51{word-spacing:4.693333pt;}
.ws7{word-spacing:4.752000pt;}
.ws76{word-spacing:4.869333pt;}
.ws19{word-spacing:4.986667pt;}
.ws64{word-spacing:5.104000pt;}
.ws47{word-spacing:5.162667pt;}
.ws7f{word-spacing:5.221333pt;}
.ws77{word-spacing:5.280000pt;}
.ws70{word-spacing:5.397333pt;}
.ws69{word-spacing:5.456000pt;}
.ws26{word-spacing:5.514667pt;}
.ws1a{word-spacing:5.632000pt;}
.ws71{word-spacing:5.690667pt;}
.ws61{word-spacing:5.808000pt;}
.ws9{word-spacing:5.925333pt;}
.ws7c{word-spacing:6.042667pt;}
.ws5a{word-spacing:6.160000pt;}
.ws5e{word-spacing:6.336000pt;}
.ws24{word-spacing:6.394667pt;}
.wsa3{word-spacing:6.453333pt;}
.ws4{word-spacing:6.512000pt;}
.ws1f{word-spacing:6.570667pt;}
.ws9e{word-spacing:6.688000pt;}
.ws30{word-spacing:6.746667pt;}
.ws36{word-spacing:6.981333pt;}
.ws5f{word-spacing:7.216000pt;}
.ws45{word-spacing:7.274667pt;}
.ws72{word-spacing:7.333333pt;}
.ws83{word-spacing:7.450667pt;}
.ws86{word-spacing:7.568000pt;}
.ws84{word-spacing:7.685333pt;}
.wsa0{word-spacing:7.802667pt;}
.ws2a{word-spacing:7.920000pt;}
.ws48{word-spacing:7.978667pt;}
.ws89{word-spacing:8.096000pt;}
.ws25{word-spacing:8.272000pt;}
.wsd{word-spacing:8.330667pt;}
.ws9f{word-spacing:8.389333pt;}
.ws91{word-spacing:8.624000pt;}
.ws8a{word-spacing:8.858667pt;}
.ws63{word-spacing:8.917333pt;}
.ws6f{word-spacing:8.976000pt;}
.wsb{word-spacing:9.093333pt;}
.ws5b{word-spacing:9.210667pt;}
.wsc{word-spacing:9.269333pt;}
.ws56{word-spacing:9.328000pt;}
.ws7e{word-spacing:9.386667pt;}
.ws5{word-spacing:9.621333pt;}
.ws65{word-spacing:9.738667pt;}
.ws1e{word-spacing:9.797333pt;}
.ws52{word-spacing:9.973333pt;}
.ws57{word-spacing:10.032000pt;}
.ws10{word-spacing:10.208000pt;}
.ws5d{word-spacing:10.618667pt;}
.ws75{word-spacing:11.029333pt;}
.wsa2{word-spacing:12.144000pt;}
.ws95{word-spacing:12.202667pt;}
.ws53{word-spacing:12.554667pt;}
.ws94{word-spacing:12.965333pt;}
.ws6c{word-spacing:13.200000pt;}
.ws74{word-spacing:13.258667pt;}
.ws58{word-spacing:13.552000pt;}
.ws6e{word-spacing:14.432000pt;}
.ws93{word-spacing:14.666667pt;}
.ws6a{word-spacing:14.784000pt;}
.ws55{word-spacing:14.960000pt;}
.ws9b{word-spacing:15.781333pt;}
.ws87{word-spacing:16.602667pt;}
.ws73{word-spacing:17.189333pt;}
.ws78{word-spacing:17.424000pt;}
.ws8e{word-spacing:19.536000pt;}
.ws8d{word-spacing:20.357333pt;}
.ws9d{word-spacing:20.592000pt;}
.ws54{word-spacing:23.642667pt;}
.ws6b{word-spacing:28.864000pt;}
.ws9c{word-spacing:43.061333pt;}
._c{margin-left:-6.804800pt;}
._a{margin-left:-5.832000pt;}
._2{margin-left:-4.736000pt;}
._0{margin-left:-3.150933pt;}
._3{margin-left:-2.170667pt;}
._4{margin-left:-1.056000pt;}
._1{width:1.008000pt;}
._6{width:1.937067pt;}
._8{width:3.021333pt;}
._9{width:3.927467pt;}
._5{width:4.992533pt;}
._7{width:6.224533pt;}
._10{width:7.186667pt;}
._d{width:9.775467pt;}
._e{width:14.774933pt;}
._b{width:17.406400pt;}
._f{width:18.661867pt;}
.fs0{font-size:37.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:31.740133pt;}
.yb{bottom:32.203600pt;}
.yb8{bottom:56.692800pt;}
.y5{bottom:56.692933pt;}
.ycb{bottom:57.031467pt;}
.y10f{bottom:57.934267pt;}
.y133{bottom:74.441200pt;}
.y20{bottom:75.390667pt;}
.yb7{bottom:75.499867pt;}
.y34{bottom:75.570667pt;}
.y8f{bottom:75.742133pt;}
.y4f{bottom:75.742267pt;}
.y60{bottom:75.764267pt;}
.y10e{bottom:76.600933pt;}
.y9d{bottom:77.045467pt;}
.y145{bottom:78.590933pt;}
.yca{bottom:79.477733pt;}
.y9{bottom:85.711200pt;}
.y36{bottom:88.188933pt;}
.y132{bottom:92.189600pt;}
.y35{bottom:94.173200pt;}
.yb6{bottom:94.306933pt;}
.y33{bottom:94.448400pt;}
.y8e{bottom:94.791467pt;}
.y4e{bottom:94.791600pt;}
.y5f{bottom:94.835733pt;}
.ye0{bottom:95.267600pt;}
.y144{bottom:96.709467pt;}
.y9c{bottom:97.398133pt;}
.y1f{bottom:97.868000pt;}
.yc9{bottom:98.144400pt;}
.y8{bottom:108.157333pt;}
.y131{bottom:109.937867pt;}
.yb5{bottom:113.114000pt;}
.y32{bottom:113.326267pt;}
.y4d{bottom:113.840800pt;}
.y5e{bottom:113.907067pt;}
.ydf{bottom:113.934267pt;}
.y143{bottom:114.828000pt;}
.y1e{bottom:116.565733pt;}
.yc8{bottom:116.811067pt;}
.y9b{bottom:117.750800pt;}
.y130{bottom:127.686133pt;}
.y7{bottom:130.603600pt;}
.yb4{bottom:131.921067pt;}
.y31{bottom:132.204000pt;}
.yde{bottom:132.600933pt;}
.yfc{bottom:132.852933pt;}
.y8d{bottom:132.890000pt;}
.y4c{bottom:132.890133pt;}
.y5d{bottom:132.978400pt;}
.y1d{bottom:135.263600pt;}
.yc7{bottom:135.477733pt;}
.y73{bottom:135.689333pt;}
.y142{bottom:136.726133pt;}
.y9a{bottom:138.103467pt;}
.y12f{bottom:145.434533pt;}
.yb3{bottom:150.728133pt;}
.y30{bottom:151.081733pt;}
.ydd{bottom:151.267600pt;}
.yfb{bottom:151.519600pt;}
.y8c{bottom:151.939333pt;}
.y4b{bottom:151.939467pt;}
.y5c{bottom:152.049867pt;}
.y6{bottom:153.049733pt;}
.y1c{bottom:153.961333pt;}
.yc6{bottom:154.144400pt;}
.y72{bottom:154.591333pt;}
.y141{bottom:154.844667pt;}
.y10d{bottom:155.047200pt;}
.y99{bottom:158.456133pt;}
.y12e{bottom:163.182800pt;}
.yb2{bottom:169.535200pt;}
.ydc{bottom:169.934267pt;}
.y2f{bottom:169.959467pt;}
.yfa{bottom:170.186267pt;}
.y4a{bottom:170.988667pt;}
.y5b{bottom:171.121200pt;}
.y1b{bottom:172.659200pt;}
.yc5{bottom:172.811067pt;}
.y140{bottom:172.963200pt;}
.y71{bottom:173.493333pt;}
.y10c{bottom:173.713867pt;}
.y98{bottom:178.808800pt;}
.y7e{bottom:179.530133pt;}
.y12d{bottom:180.931200pt;}
.yb1{bottom:188.342267pt;}
.ydb{bottom:188.601067pt;}
.yf9{bottom:188.852933pt;}
.y49{bottom:190.038000pt;}
.y5a{bottom:190.192667pt;}
.y13f{bottom:191.081733pt;}
.y1a{bottom:191.356933pt;}
.yc4{bottom:191.477733pt;}
.y10b{bottom:192.380533pt;}
.y70{bottom:192.395200pt;}
.y2e{bottom:192.616800pt;}
.y7d{bottom:198.196800pt;}
.y12c{bottom:198.679467pt;}
.y97{bottom:199.161333pt;}
.yb0{bottom:207.149333pt;}
.y48{bottom:209.087333pt;}
.y13e{bottom:209.200400pt;}
.y59{bottom:209.264000pt;}
.y19{bottom:210.054800pt;}
.yc3{bottom:210.144400pt;}
.yda{bottom:211.047200pt;}
.y6f{bottom:211.297200pt;}
.yf8{bottom:211.299200pt;}
.y2d{bottom:211.494533pt;}
.y8b{bottom:212.866800pt;}
.y105{bottom:215.068267pt;}
.y12b{bottom:216.427867pt;}
.y7c{bottom:216.863467pt;}
.y96{bottom:219.514000pt;}
.yaf{bottom:225.956400pt;}
.y13d{bottom:227.318933pt;}
.y47{bottom:228.136667pt;}
.y58{bottom:228.335467pt;}
.y18{bottom:228.752533pt;}
.yc2{bottom:228.811067pt;}
.y116{bottom:229.157467pt;}
.yd9{bottom:229.713867pt;}
.yf7{bottom:229.965867pt;}
.y2c{bottom:230.372400pt;}
.y8a{bottom:231.916133pt;}
.y104{bottom:233.734933pt;}
.y6e{bottom:233.978800pt;}
.y12a{bottom:234.176133pt;}
.y7b{bottom:235.530133pt;}
.y95{bottom:243.646133pt;}
.yae{bottom:244.763467pt;}
.y46{bottom:247.186000pt;}
.y57{bottom:247.406800pt;}
.y17{bottom:247.450267pt;}
.yc1{bottom:247.477600pt;}
.y115{bottom:247.824133pt;}
.ye8{bottom:248.191600pt;}
.yd8{bottom:248.380533pt;}
.yf6{bottom:248.632533pt;}
.y13c{bottom:249.216933pt;}
.y2b{bottom:249.250133pt;}
.y89{bottom:250.965333pt;}
.y129{bottom:251.924400pt;}
.y103{bottom:252.401600pt;}
.y6d{bottom:252.880667pt;}
.y7a{bottom:254.196800pt;}
.yad{bottom:263.570533pt;}
.y94{bottom:263.998800pt;}
.yc0{bottom:266.144267pt;}
.y16{bottom:266.148133pt;}
.y45{bottom:266.235200pt;}
.y56{bottom:266.478133pt;}
.y114{bottom:266.490800pt;}
.ye7{bottom:266.858267pt;}
.yd7{bottom:267.047200pt;}
.yf5{bottom:267.299200pt;}
.y13b{bottom:267.335467pt;}
.y2a{bottom:268.127867pt;}
.y128{bottom:269.672800pt;}
.y88{bottom:270.014667pt;}
.y102{bottom:271.068267pt;}
.y6c{bottom:271.782667pt;}
.y79{bottom:272.863467pt;}
.yac{bottom:282.377600pt;}
.y93{bottom:284.351467pt;}
.ybf{bottom:284.810933pt;}
.y15{bottom:284.845867pt;}
.y44{bottom:285.284533pt;}
.y13a{bottom:285.454000pt;}
.ye6{bottom:285.524933pt;}
.y55{bottom:285.549600pt;}
.yf4{bottom:285.965867pt;}
.y29{bottom:287.005600pt;}
.y127{bottom:287.421067pt;}
.y113{bottom:288.937067pt;}
.y87{bottom:289.064000pt;}
.yd6{bottom:289.493333pt;}
.y101{bottom:289.734933pt;}
.y6b{bottom:290.684667pt;}
.y78{bottom:291.530133pt;}
.ybe{bottom:303.477600pt;}
.y43{bottom:304.333867pt;}
.y54{bottom:304.620933pt;}
.y92{bottom:304.704133pt;}
.yab{bottom:304.964133pt;}
.y126{bottom:305.169467pt;}
.y28{bottom:305.883333pt;}
.y14{bottom:307.323200pt;}
.y139{bottom:307.352133pt;}
.y112{bottom:307.603733pt;}
.ye5{bottom:307.971067pt;}
.y86{bottom:308.113333pt;}
.yd5{bottom:308.160000pt;}
.y100{bottom:308.401600pt;}
.yf3{bottom:308.412000pt;}
.y6a{bottom:309.586667pt;}
.y77{bottom:310.196800pt;}
.ybd{bottom:322.144267pt;}
.y125{bottom:322.917733pt;}
.y42{bottom:323.383067pt;}
.y53{bottom:323.692400pt;}
.yaa{bottom:323.771200pt;}
.y27{bottom:324.761200pt;}
.y91{bottom:325.056800pt;}
.y138{bottom:325.470667pt;}
.y13{bottom:326.020933pt;}
.y111{bottom:326.270400pt;}
.ye4{bottom:326.637733pt;}
.yd4{bottom:326.826667pt;}
.yff{bottom:327.068267pt;}
.yf2{bottom:327.078667pt;}
.y85{bottom:327.162533pt;}
.y69{bottom:328.488533pt;}
.y76{bottom:328.863467pt;}
.y37{bottom:340.295867pt;}
.ybc{bottom:340.811067pt;}
.y4{bottom:341.898267pt;}
.y41{bottom:342.432400pt;}
.ya9{bottom:342.578267pt;}
.y52{bottom:342.763733pt;}
.y137{bottom:343.589200pt;}
.y26{bottom:343.638933pt;}
.y124{bottom:344.445600pt;}
.y12{bottom:344.718800pt;}
.y110{bottom:344.937067pt;}
.ye3{bottom:345.304400pt;}
.y90{bottom:345.409467pt;}
.yd3{bottom:345.493467pt;}
.yfe{bottom:345.734933pt;}
.yf1{bottom:345.745333pt;}
.y84{bottom:346.211867pt;}
.y68{bottom:347.390533pt;}
.y75{bottom:347.530133pt;}
.ybb{bottom:359.477600pt;}
.y3{bottom:360.325067pt;}
.ya8{bottom:361.385467pt;}
.y136{bottom:361.707733pt;}
.y123{bottom:362.193867pt;}
.y25{bottom:362.516667pt;}
.y11{bottom:363.416533pt;}
.ye2{bottom:363.971067pt;}
.yd2{bottom:364.160133pt;}
.yfd{bottom:364.401600pt;}
.yf0{bottom:364.412133pt;}
.y40{bottom:365.261200pt;}
.y74{bottom:366.196800pt;}
.y67{bottom:366.292533pt;}
.y10a{bottom:367.939600pt;}
.y83{bottom:369.040667pt;}
.y135{bottom:379.826400pt;}
.y122{bottom:379.942267pt;}
.ya7{bottom:380.192400pt;}
.y24{bottom:381.394400pt;}
.yba{bottom:381.923867pt;}
.y10{bottom:382.114400pt;}
.ye1{bottom:382.637733pt;}
.yd1{bottom:382.826800pt;}
.yef{bottom:386.858267pt;}
.y3f{bottom:388.090133pt;}
.y66{bottom:388.974000pt;}
.y109{bottom:390.385733pt;}
.y82{bottom:391.869467pt;}
.y121{bottom:397.690533pt;}
.y134{bottom:397.944800pt;}
.ya6{bottom:398.999467pt;}
.y23{bottom:400.272267pt;}
.yb9{bottom:400.590533pt;}
.yf{bottom:400.812133pt;}
.yd0{bottom:405.272933pt;}
.y3e{bottom:407.139333pt;}
.yee{bottom:409.304400pt;}
.y81{bottom:410.918800pt;}
.y65{bottom:411.655467pt;}
.y108{bottom:412.832000pt;}
.y22{bottom:419.150000pt;}
.y120{bottom:419.218400pt;}
.ye{bottom:419.509867pt;}
.ya5{bottom:421.586133pt;}
.ycf{bottom:427.719200pt;}
.yed{bottom:427.971067pt;}
.y3d{bottom:429.968133pt;}
.y80{bottom:433.747600pt;}
.y64{bottom:434.336933pt;}
.y107{bottom:435.278133pt;}
.y21{bottom:438.027733pt;}
.yd{bottom:438.207733pt;}
.y11f{bottom:440.746267pt;}
.ya4{bottom:444.172667pt;}
.yce{bottom:450.165333pt;}
.yec{bottom:450.417333pt;}
.y7f{bottom:452.796933pt;}
.y3c{bottom:452.797067pt;}
.y63{bottom:453.238933pt;}
.y106{bottom:453.944800pt;}
.yc{bottom:456.905467pt;}
.y11e{bottom:462.274133pt;}
.ya3{bottom:466.759333pt;}
.y3b{bottom:471.846267pt;}
.y62{bottom:472.140933pt;}
.ycd{bottom:472.611467pt;}
.yeb{bottom:472.863467pt;}
.ya{bottom:480.548000pt;}
.y11d{bottom:483.802000pt;}
.ya2{bottom:489.345867pt;}
.y3a{bottom:490.895600pt;}
.y61{bottom:491.042933pt;}
.ycc{bottom:491.278133pt;}
.yea{bottom:491.530133pt;}
.y11c{bottom:501.550267pt;}
.ya1{bottom:508.152933pt;}
.y39{bottom:513.724400pt;}
.ye9{bottom:513.976400pt;}
.y11b{bottom:519.298667pt;}
.ya0{bottom:526.960000pt;}
.y11a{bottom:537.046933pt;}
.y9f{bottom:545.767067pt;}
.y119{bottom:558.574800pt;}
.y9e{bottom:568.353733pt;}
.y1{bottom:604.094533pt;}
.y2{bottom:610.078800pt;}
.y118{bottom:612.853067pt;}
.y51{bottom:612.941733pt;}
.y117{bottom:631.519733pt;}
.y50{bottom:631.608400pt;}
.h2{height:27.179688pt;}
.h5{height:34.161458pt;}
.h8{height:43.237333pt;}
.h9{height:46.578125pt;}
.h4{height:53.269333pt;}
.h6{height:53.682292pt;}
.h7{height:54.169271pt;}
.h3{height:116.224000pt;}
.h0{height:699.212000pt;}
.h1{height:699.333333pt;}
.w1{width:1058.000000pt;}
.w0{width:1058.268000pt;}
.x4{left:-874.960667pt;}
.x0{left:0.000000pt;}
.x3{left:45.354400pt;}
.x8{left:48.655200pt;}
.x9{left:64.529200pt;}
.x6{left:132.283467pt;}
.xa{left:476.220533pt;}
.xb{left:495.118133pt;}
.x7{left:582.047200pt;}
.x2{left:993.738533pt;}
.x5{left:1002.531867pt;}
.x1{left:1009.612533pt;}
}




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