
    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_0038bb7b8861e55e87500d5a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.708008;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_4d856f0c9e0753bec1b42a81.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_eeb93a4edd6450162919ab33.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_574ab2b59b0d0ba11f71dea8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_39463a8e50a5ff6e4f633623.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_8d482497beafa2fdc8c6b1c0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.935547;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_7644ccd1cc160382475f86b1.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.968750;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_8254f051b9cc567765b61b38.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.731445;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_5352808b7998b41d67bb53b4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-13.068000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.368000px;}
.v5{vertical-align:13.068000px;}
.v3{vertical-align:17.820000px;}
.v2{vertical-align:21.780000px;}
.ls2c{letter-spacing:-2.064000px;}
.ls2b{letter-spacing:-1.416360px;}
.ls11{letter-spacing:-0.972000px;}
.ls3a{letter-spacing:-0.924000px;}
.ls3c{letter-spacing:-0.858000px;}
.ls15{letter-spacing:-0.792000px;}
.ls3d{letter-spacing:-0.660000px;}
.ls26{letter-spacing:-0.528000px;}
.ls24{letter-spacing:-0.462000px;}
.lsd{letter-spacing:-0.420000px;}
.ls17{letter-spacing:-0.396000px;}
.ls16{letter-spacing:-0.330000px;}
.lse{letter-spacing:-0.300000px;}
.ls21{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.264000px;}
.ls12{letter-spacing:-0.240000px;}
.ls1d{letter-spacing:-0.198000px;}
.ls32{letter-spacing:-0.192000px;}
.lsc{letter-spacing:-0.180000px;}
.ls30{letter-spacing:-0.153120px;}
.ls2d{letter-spacing:-0.144000px;}
.ls1e{letter-spacing:-0.132000px;}
.ls31{letter-spacing:-0.096000px;}
.ls14{letter-spacing:-0.066000px;}
.ls34{letter-spacing:-0.048000px;}
.lsb{letter-spacing:0.000000px;}
.ls28{letter-spacing:0.037800px;}
.ls2f{letter-spacing:0.038280px;}
.ls29{letter-spacing:0.048000px;}
.ls23{letter-spacing:0.066000px;}
.ls1a{letter-spacing:0.132000px;}
.ls2a{letter-spacing:0.153120px;}
.ls3{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.198000px;}
.ls19{letter-spacing:0.264000px;}
.ls0{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.324000px;}
.ls1f{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.360000px;}
.ls27{letter-spacing:0.396000px;}
.ls18{letter-spacing:0.462000px;}
.ls5{letter-spacing:0.480000px;}
.ls25{letter-spacing:0.528000px;}
.ls2{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.594000px;}
.ls20{letter-spacing:0.660000px;}
.ls6{letter-spacing:0.720000px;}
.ls39{letter-spacing:0.726000px;}
.ls1{letter-spacing:0.780000px;}
.ls1c{letter-spacing:0.792000px;}
.ls33{letter-spacing:0.858000px;}
.ls22{letter-spacing:0.924000px;}
.ls37{letter-spacing:0.990000px;}
.ls35{letter-spacing:1.056000px;}
.lsa{letter-spacing:2.550000px;}
.lsf{letter-spacing:2.555400px;}
.ls2e{letter-spacing:3.180000px;}
.ls9{letter-spacing:4.080000px;}
.ls38{letter-spacing:4.350000px;}
.ls36{letter-spacing:4.488000px;}
.ls8{letter-spacing:5.457000px;}
.ls3b{letter-spacing:5.739600px;}
.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;}
}
.ws17{word-spacing:-66.000000px;}
.ws39{word-spacing:-17.424000px;}
.ws5e{word-spacing:-16.764000px;}
.ws28{word-spacing:-16.500000px;}
.ws4b{word-spacing:-16.236000px;}
.ws18{word-spacing:-16.104000px;}
.ws1{word-spacing:-15.336000px;}
.ws15{word-spacing:-15.012000px;}
.ws3{word-spacing:-15.000000px;}
.ws16{word-spacing:-14.040000px;}
.ws54{word-spacing:-13.500000px;}
.ws2{word-spacing:-13.344000px;}
.ws33{word-spacing:-12.000000px;}
.ws46{word-spacing:-9.936000px;}
.ws44{word-spacing:-9.723120px;}
.ws4a{word-spacing:-9.608280px;}
.ws27{word-spacing:-9.570000px;}
.ws4c{word-spacing:-9.416880px;}
.ws45{word-spacing:-8.153640px;}
.ws55{word-spacing:-7.830000px;}
.ws0{word-spacing:-5.508000px;}
.ws4{word-spacing:-4.080000px;}
.ws5{word-spacing:-2.550000px;}
.ws58{word-spacing:-2.508000px;}
.ws40{word-spacing:-2.442000px;}
.ws1f{word-spacing:-2.310000px;}
.ws5d{word-spacing:-2.178000px;}
.ws1c{word-spacing:-1.980000px;}
.ws1a{word-spacing:-1.800000px;}
.ws42{word-spacing:-1.650000px;}
.wsd{word-spacing:-1.566000px;}
.ws69{word-spacing:-1.518000px;}
.ws61{word-spacing:-1.386000px;}
.ws22{word-spacing:-1.320000px;}
.ws6c{word-spacing:-1.188000px;}
.ws53{word-spacing:-1.122000px;}
.ws57{word-spacing:-1.056000px;}
.ws60{word-spacing:-0.990000px;}
.ws3c{word-spacing:-0.924000px;}
.ws14{word-spacing:-0.918000px;}
.ws50{word-spacing:-0.858000px;}
.ws31{word-spacing:-0.792000px;}
.ws9{word-spacing:-0.780000px;}
.ws5b{word-spacing:-0.726000px;}
.ws12{word-spacing:-0.720000px;}
.ws37{word-spacing:-0.660000px;}
.ws30{word-spacing:-0.594000px;}
.wsa{word-spacing:-0.540000px;}
.ws3e{word-spacing:-0.528000px;}
.ws11{word-spacing:-0.480000px;}
.ws26{word-spacing:-0.462000px;}
.ws41{word-spacing:-0.396000px;}
.wsc{word-spacing:-0.360000px;}
.ws34{word-spacing:-0.330000px;}
.ws8{word-spacing:-0.300000px;}
.ws2b{word-spacing:-0.264000px;}
.ws24{word-spacing:-0.198000px;}
.wsb{word-spacing:-0.180000px;}
.ws2d{word-spacing:-0.132000px;}
.ws3a{word-spacing:-0.066000px;}
.ws43{word-spacing:-0.048000px;}
.ws6{word-spacing:0.000000px;}
.ws52{word-spacing:0.048000px;}
.ws1e{word-spacing:0.066000px;}
.ws4e{word-spacing:0.096000px;}
.ws2c{word-spacing:0.132000px;}
.ws47{word-spacing:0.144000px;}
.ws7{word-spacing:0.180000px;}
.ws4f{word-spacing:0.192000px;}
.ws29{word-spacing:0.198000px;}
.ws19{word-spacing:0.240000px;}
.ws1b{word-spacing:0.264000px;}
.ws38{word-spacing:0.288000px;}
.ws10{word-spacing:0.300000px;}
.ws20{word-spacing:0.330000px;}
.ws21{word-spacing:0.396000px;}
.wsf{word-spacing:0.420000px;}
.ws3b{word-spacing:0.462000px;}
.ws3f{word-spacing:0.528000px;}
.ws6d{word-spacing:0.660000px;}
.ws36{word-spacing:0.726000px;}
.ws1d{word-spacing:0.858000px;}
.ws65{word-spacing:0.924000px;}
.ws56{word-spacing:0.972000px;}
.ws2f{word-spacing:1.056000px;}
.ws5a{word-spacing:1.650000px;}
.ws5f{word-spacing:1.716000px;}
.ws6b{word-spacing:1.782000px;}
.ws5c{word-spacing:1.848000px;}
.wse{word-spacing:2.106000px;}
.ws64{word-spacing:2.442000px;}
.ws4d{word-spacing:2.838000px;}
.ws48{word-spacing:3.036000px;}
.ws25{word-spacing:3.564000px;}
.ws51{word-spacing:3.630000px;}
.ws63{word-spacing:3.762000px;}
.ws59{word-spacing:3.960000px;}
.ws49{word-spacing:4.092000px;}
.ws6a{word-spacing:4.158000px;}
.ws23{word-spacing:4.224000px;}
.ws62{word-spacing:4.356000px;}
.ws67{word-spacing:4.422000px;}
.ws35{word-spacing:4.818000px;}
.ws13{word-spacing:4.968000px;}
.ws6e{word-spacing:5.346000px;}
.ws2a{word-spacing:5.412000px;}
.ws2e{word-spacing:5.478000px;}
.ws66{word-spacing:6.336000px;}
.ws32{word-spacing:6.996000px;}
.ws68{word-spacing:8.184000px;}
.ws3d{word-spacing:8.250000px;}
._b{margin-left:-2262.514800px;}
._19{margin-left:-28.536600px;}
._18{margin-left:-25.608000px;}
._11{margin-left:-17.556000px;}
._c{margin-left:-16.500000px;}
._f{margin-left:-15.489000px;}
._17{margin-left:-13.565400px;}
._e{margin-left:-12.541800px;}
._d{margin-left:-8.065200px;}
._14{margin-left:-6.982800px;}
._6{margin-left:-5.356800px;}
._7{margin-left:-3.504000px;}
._5{margin-left:-2.163000px;}
._0{margin-left:-1.113600px;}
._1{width:1.122000px;}
._3{width:2.733600px;}
._2{width:4.253400px;}
._8{width:6.180600px;}
._9{width:7.464000px;}
._12{width:8.482200px;}
._15{width:9.892200px;}
._16{width:11.142000px;}
._13{width:45.439800px;}
._4{width:84.243600px;}
._10{width:85.293000px;}
._a{width:338.721000px;}
.fc3{color:rgb(79,76,77);}
.fc1{color:rgb(80,194,223);}
.fc2{color:rgb(82,82,82);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.320000px;}
.fs8{font-size:38.280000px;}
.fs1{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs0{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs7{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y73{bottom:46.063200px;}
.y4b{bottom:46.687350px;}
.y102{bottom:57.401700px;}
.y4a{bottom:66.937350px;}
.y87{bottom:70.356750px;}
.y101{bottom:71.801700px;}
.y128{bottom:72.283650px;}
.y3{bottom:80.787450px;}
.y9f{bottom:80.787600px;}
.y118{bottom:81.797400px;}
.y100{bottom:86.201700px;}
.y127{bottom:86.683650px;}
.y49{bottom:87.187350px;}
.y83{bottom:90.606750px;}
.y85{bottom:91.417500px;}
.yf8{bottom:92.459550px;}
.y11d{bottom:93.043650px;}
.y72{bottom:93.849000px;}
.y81{bottom:95.187600px;}
.yff{bottom:100.601850px;}
.y126{bottom:101.083650px;}
.y12a{bottom:101.083800px;}
.y86{bottom:102.047400px;}
.y84{bottom:105.817500px;}
.y48{bottom:107.437350px;}
.y11c{bottom:109.587600px;}
.y9e{bottom:109.587750px;}
.y152{bottom:110.840700px;}
.y82{bottom:110.856750px;}
.yf7{bottom:112.709550px;}
.y71{bottom:114.099000px;}
.yb0{bottom:114.328350px;}
.yfe{bottom:115.001850px;}
.y125{bottom:115.483650px;}
.y129{bottom:115.483800px;}
.yb4{bottom:116.447400px;}
.y93{bottom:116.447550px;}
.ydf{bottom:116.639550px;}
.ydc{bottom:120.279900px;}
.y11b{bottom:123.987600px;}
.y9d{bottom:123.987750px;}
.y47{bottom:127.687350px;}
.yfd{bottom:129.401850px;}
.yb3{bottom:130.847400px;}
.y92{bottom:130.847550px;}
.y95{bottom:130.847700px;}
.y151{bottom:131.090700px;}
.y80{bottom:131.106750px;}
.yf6{bottom:132.959550px;}
.y70{bottom:134.349000px;}
.yaf{bottom:134.578350px;}
.y117{bottom:135.458700px;}
.y23{bottom:135.513000px;}
.y11a{bottom:138.387750px;}
.y9c{bottom:138.387900px;}
.ydb{bottom:140.529900px;}
.y91{bottom:145.247550px;}
.y94{bottom:145.247700px;}
.y46{bottom:147.937350px;}
.y150{bottom:151.340700px;}
.y7f{bottom:151.356750px;}
.y119{bottom:152.787750px;}
.y9b{bottom:152.787900px;}
.yf5{bottom:153.209550px;}
.y22{bottom:153.513000px;}
.y6f{bottom:154.598850px;}
.y124{bottom:154.615650px;}
.yae{bottom:154.828350px;}
.y116{bottom:155.708700px;}
.yfc{bottom:158.940150px;}
.y90{bottom:159.647700px;}
.yda{bottom:160.779900px;}
.y9a{bottom:167.187900px;}
.y45{bottom:168.187350px;}
.y14f{bottom:171.590700px;}
.y7e{bottom:171.606750px;}
.yfb{bottom:173.340150px;}
.yf4{bottom:173.459550px;}
.y8f{bottom:174.047700px;}
.yb2{bottom:174.047850px;}
.y6e{bottom:174.848850px;}
.y123{bottom:174.865650px;}
.yad{bottom:175.078350px;}
.y115{bottom:175.958700px;}
.yd9{bottom:181.029900px;}
.y99{bottom:181.587900px;}
.yfa{bottom:187.740150px;}
.y44{bottom:188.437350px;}
.y8e{bottom:188.447700px;}
.yb1{bottom:188.447850px;}
.yc8{bottom:188.556750px;}
.y14e{bottom:191.840700px;}
.y7d{bottom:191.856750px;}
.yf3{bottom:193.709550px;}
.y6d{bottom:195.098850px;}
.y122{bottom:195.115650px;}
.yac{bottom:195.328350px;}
.y98{bottom:195.988050px;}
.y114{bottom:196.208700px;}
.yd8{bottom:201.279900px;}
.y8d{bottom:202.847850px;}
.y20{bottom:208.383150px;}
.y43{bottom:208.687350px;}
.yc7{bottom:208.806750px;}
.y97{bottom:210.388050px;}
.y14d{bottom:212.090700px;}
.y7c{bottom:212.106750px;}
.yf2{bottom:213.959550px;}
.y6c{bottom:215.348850px;}
.y121{bottom:215.365650px;}
.yab{bottom:215.578350px;}
.y8c{bottom:217.248000px;}
.yd7{bottom:221.529900px;}
.y1f{bottom:224.583150px;}
.y96{bottom:224.788050px;}
.y42{bottom:228.937350px;}
.yc6{bottom:229.056750px;}
.y8b{bottom:231.648000px;}
.y14c{bottom:232.340700px;}
.y7b{bottom:232.356750px;}
.yf1{bottom:234.209550px;}
.y6b{bottom:235.598850px;}
.y120{bottom:235.615650px;}
.yaa{bottom:235.828350px;}
.y1e{bottom:240.783150px;}
.yd6{bottom:241.779900px;}
.y113{bottom:242.720550px;}
.y8a{bottom:246.048000px;}
.y41{bottom:249.187350px;}
.yc5{bottom:249.306750px;}
.y10f{bottom:250.820550px;}
.y14b{bottom:252.590700px;}
.y7a{bottom:252.606750px;}
.yf0{bottom:254.459550px;}
.y6a{bottom:255.848850px;}
.y11f{bottom:255.865650px;}
.ya9{bottom:256.078350px;}
.y112{bottom:258.920400px;}
.y89{bottom:260.448000px;}
.yd5{bottom:262.029900px;}
.y10e{bottom:267.020550px;}
.y40{bottom:269.437350px;}
.yc4{bottom:269.556750px;}
.y14a{bottom:272.840700px;}
.y79{bottom:272.856750px;}
.yef{bottom:274.709550px;}
.y88{bottom:274.848000px;}
.y111{bottom:275.120550px;}
.y69{bottom:276.098850px;}
.ya8{bottom:276.328350px;}
.y1d{bottom:278.242950px;}
.yd4{bottom:282.279900px;}
.y10d{bottom:283.220550px;}
.y3f{bottom:289.687350px;}
.yc3{bottom:289.806750px;}
.y110{bottom:291.320550px;}
.y149{bottom:293.090700px;}
.y78{bottom:293.106750px;}
.y11e{bottom:293.123550px;}
.yee{bottom:294.959550px;}
.y1c{bottom:296.242950px;}
.y68{bottom:296.348850px;}
.ya7{bottom:296.578350px;}
.yd3{bottom:302.529900px;}
.y3e{bottom:309.937350px;}
.yc2{bottom:310.056750px;}
.y148{bottom:313.340700px;}
.y77{bottom:313.356750px;}
.y1b{bottom:314.242950px;}
.yed{bottom:315.209550px;}
.y67{bottom:316.598850px;}
.ya6{bottom:316.828350px;}
.y10c{bottom:317.682750px;}
.yd2{bottom:322.779900px;}
.y3d{bottom:330.187350px;}
.yc1{bottom:330.306750px;}
.y1a{bottom:332.242950px;}
.y147{bottom:333.590700px;}
.y76{bottom:333.606750px;}
.yec{bottom:335.459550px;}
.y66{bottom:336.848850px;}
.ya5{bottom:337.078350px;}
.yd1{bottom:343.029900px;}
.y19{bottom:350.242950px;}
.y3c{bottom:350.437350px;}
.yc0{bottom:350.556750px;}
.y146{bottom:353.840700px;}
.y75{bottom:353.856750px;}
.yeb{bottom:355.709550px;}
.ya4{bottom:357.328350px;}
.yd0{bottom:363.279900px;}
.y10b{bottom:364.194600px;}
.y18{bottom:368.242950px;}
.y3b{bottom:370.687350px;}
.ybf{bottom:370.806750px;}
.y145{bottom:374.090700px;}
.y65{bottom:374.106750px;}
.yea{bottom:375.959550px;}
.ya3{bottom:377.578350px;}
.y10a{bottom:380.394600px;}
.ycf{bottom:383.529900px;}
.y17{bottom:386.242950px;}
.y3a{bottom:390.937350px;}
.ybe{bottom:391.056750px;}
.y144{bottom:394.340700px;}
.y74{bottom:394.356750px;}
.ye9{bottom:396.209550px;}
.y109{bottom:396.594600px;}
.yce{bottom:403.779900px;}
.y16{bottom:404.242950px;}
.y39{bottom:411.187350px;}
.ybd{bottom:411.306750px;}
.y108{bottom:412.794600px;}
.y143{bottom:414.590700px;}
.y64{bottom:414.606750px;}
.ye8{bottom:416.459550px;}
.ya2{bottom:418.078350px;}
.y15{bottom:422.242950px;}
.ycd{bottom:424.029900px;}
.y107{bottom:428.994600px;}
.y38{bottom:431.437350px;}
.ybc{bottom:431.556750px;}
.y142{bottom:434.840700px;}
.y63{bottom:434.856750px;}
.ye7{bottom:436.709550px;}
.y14{bottom:440.242950px;}
.ycc{bottom:444.279900px;}
.y106{bottom:445.194600px;}
.y37{bottom:451.687350px;}
.ybb{bottom:451.806750px;}
.y141{bottom:455.090700px;}
.y62{bottom:455.106750px;}
.ye6{bottom:456.959550px;}
.y13{bottom:458.242950px;}
.ycb{bottom:464.529900px;}
.y105{bottom:467.305050px;}
.y36{bottom:471.937350px;}
.yba{bottom:472.056750px;}
.y140{bottom:475.340700px;}
.y61{bottom:475.356750px;}
.ya1{bottom:475.586250px;}
.y12{bottom:476.242950px;}
.ye5{bottom:477.209550px;}
.yca{bottom:484.779900px;}
.y104{bottom:487.555050px;}
.y35{bottom:492.187350px;}
.yb9{bottom:492.306750px;}
.y11{bottom:494.242950px;}
.y13f{bottom:495.590700px;}
.y60{bottom:495.606750px;}
.ya0{bottom:495.836250px;}
.ye4{bottom:497.459550px;}
.y10{bottom:512.242950px;}
.y34{bottom:512.437350px;}
.yb8{bottom:512.556750px;}
.y13e{bottom:515.840700px;}
.y5f{bottom:515.856750px;}
.ye3{bottom:517.709550px;}
.yc9{bottom:522.037800px;}
.y103{bottom:524.812800px;}
.yf9{bottom:524.950650px;}
.yf{bottom:530.242950px;}
.y33{bottom:532.687350px;}
.yb7{bottom:532.806750px;}
.y13d{bottom:536.090700px;}
.y5e{bottom:536.106750px;}
.ye2{bottom:537.959550px;}
.ye{bottom:548.242950px;}
.yde{bottom:552.869250px;}
.y32{bottom:552.937350px;}
.yb6{bottom:553.056750px;}
.y13c{bottom:556.340700px;}
.y5d{bottom:556.356750px;}
.ydd{bottom:567.269250px;}
.y31{bottom:573.187350px;}
.ye1{bottom:575.217450px;}
.y13b{bottom:576.590700px;}
.y5c{bottom:576.606750px;}
.yd{bottom:578.242950px;}
.yb5{bottom:590.314650px;}
.y30{bottom:593.437350px;}
.y13a{bottom:596.840700px;}
.y5b{bottom:596.856750px;}
.y2f{bottom:613.687350px;}
.y139{bottom:617.090700px;}
.y5a{bottom:617.106750px;}
.y21{bottom:620.439600px;}
.y2e{bottom:633.937350px;}
.y138{bottom:637.340700px;}
.y59{bottom:637.356750px;}
.y2d{bottom:654.187350px;}
.y137{bottom:657.590700px;}
.y58{bottom:657.606750px;}
.yc{bottom:671.824800px;}
.y2c{bottom:674.437350px;}
.y136{bottom:677.840700px;}
.y57{bottom:677.856750px;}
.yb{bottom:686.074800px;}
.y2b{bottom:694.687350px;}
.y135{bottom:698.090700px;}
.y56{bottom:698.106750px;}
.ya{bottom:700.474800px;}
.y9{bottom:714.874800px;}
.y2a{bottom:714.937350px;}
.y134{bottom:718.340700px;}
.y55{bottom:718.356750px;}
.y29{bottom:735.187350px;}
.y133{bottom:738.590700px;}
.y54{bottom:738.606750px;}
.y8{bottom:755.374800px;}
.y132{bottom:758.840700px;}
.y53{bottom:758.856750px;}
.y28{bottom:772.445250px;}
.y131{bottom:779.090700px;}
.y52{bottom:779.106750px;}
.y7{bottom:780.874800px;}
.y130{bottom:799.340700px;}
.y51{bottom:799.356750px;}
.y12f{bottom:819.590700px;}
.y50{bottom:819.606750px;}
.y6{bottom:826.624800px;}
.y27{bottom:830.962950px;}
.y12e{bottom:839.840700px;}
.y4f{bottom:839.856750px;}
.y26{bottom:850.462950px;}
.y5{bottom:852.124800px;}
.y12d{bottom:860.090700px;}
.y4e{bottom:860.106750px;}
.y25{bottom:869.962950px;}
.y4{bottom:877.624800px;}
.y12c{bottom:880.340700px;}
.y4d{bottom:880.356750px;}
.ye0{bottom:900.034800px;}
.y12b{bottom:900.590700px;}
.y4c{bottom:900.606750px;}
.y24{bottom:902.218800px;}
.y2{bottom:950.314950px;}
.y1{bottom:965.614950px;}
.h4{height:30.618164px;}
.h8{height:34.992188px;}
.h13{height:36.398438px;}
.h7{height:39.313477px;}
.hb{height:39.366211px;}
.hc{height:40.948242px;}
.h11{height:42.117188px;}
.h12{height:42.234375px;}
.h9{height:43.681641px;}
.h2{height:44.749512px;}
.h3{height:44.874023px;}
.h14{height:47.381836px;}
.he{height:48.049805px;}
.h6{height:52.417969px;}
.ha{height:52.646484px;}
.hd{height:52.792969px;}
.hf{height:57.911133px;}
.h10{height:58.072266px;}
.h15{height:58.813477px;}
.h5{height:61.154297px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x4{left:76.535400px;}
.x16{left:82.935900px;}
.xb{left:84.892950px;}
.x6{left:87.165300px;}
.x7{left:89.291400px;}
.x9{left:90.935400px;}
.xf{left:93.134100px;}
.xa{left:97.795350px;}
.x8{left:100.535400px;}
.x13{left:107.261100px;}
.xc{left:125.952450px;}
.xe{left:128.398800px;}
.x11{left:136.177050px;}
.xd{left:140.314950px;}
.x10{left:172.637100px;}
.x15{left:184.098000px;}
.x12{left:219.679050px;}
.x3{left:221.423400px;}
.x5{left:372.047250px;}
.x2{left:393.721350px;}
.x14{left:409.937100px;}
.x1{left:442.064550px;}
@media print{
.v4{vertical-align:-11.616000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.882667pt;}
.v5{vertical-align:11.616000pt;}
.v3{vertical-align:15.840000pt;}
.v2{vertical-align:19.360000pt;}
.ls2c{letter-spacing:-1.834667pt;}
.ls2b{letter-spacing:-1.258987pt;}
.ls11{letter-spacing:-0.864000pt;}
.ls3a{letter-spacing:-0.821333pt;}
.ls3c{letter-spacing:-0.762667pt;}
.ls15{letter-spacing:-0.704000pt;}
.ls3d{letter-spacing:-0.586667pt;}
.ls26{letter-spacing:-0.469333pt;}
.ls24{letter-spacing:-0.410667pt;}
.lsd{letter-spacing:-0.373333pt;}
.ls17{letter-spacing:-0.352000pt;}
.ls16{letter-spacing:-0.293333pt;}
.lse{letter-spacing:-0.266667pt;}
.ls21{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.234667pt;}
.ls12{letter-spacing:-0.213333pt;}
.ls1d{letter-spacing:-0.176000pt;}
.ls32{letter-spacing:-0.170667pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls30{letter-spacing:-0.136107pt;}
.ls2d{letter-spacing:-0.128000pt;}
.ls1e{letter-spacing:-0.117333pt;}
.ls31{letter-spacing:-0.085333pt;}
.ls14{letter-spacing:-0.058667pt;}
.ls34{letter-spacing:-0.042667pt;}
.lsb{letter-spacing:0.000000pt;}
.ls28{letter-spacing:0.033600pt;}
.ls2f{letter-spacing:0.034027pt;}
.ls29{letter-spacing:0.042667pt;}
.ls23{letter-spacing:0.058667pt;}
.ls1a{letter-spacing:0.117333pt;}
.ls2a{letter-spacing:0.136107pt;}
.ls3{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.176000pt;}
.ls19{letter-spacing:0.234667pt;}
.ls0{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.288000pt;}
.ls1f{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls27{letter-spacing:0.352000pt;}
.ls18{letter-spacing:0.410667pt;}
.ls5{letter-spacing:0.426667pt;}
.ls25{letter-spacing:0.469333pt;}
.ls2{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.528000pt;}
.ls20{letter-spacing:0.586667pt;}
.ls6{letter-spacing:0.640000pt;}
.ls39{letter-spacing:0.645333pt;}
.ls1{letter-spacing:0.693333pt;}
.ls1c{letter-spacing:0.704000pt;}
.ls33{letter-spacing:0.762667pt;}
.ls22{letter-spacing:0.821333pt;}
.ls37{letter-spacing:0.880000pt;}
.ls35{letter-spacing:0.938667pt;}
.lsa{letter-spacing:2.266667pt;}
.lsf{letter-spacing:2.271467pt;}
.ls2e{letter-spacing:2.826667pt;}
.ls9{letter-spacing:3.626667pt;}
.ls38{letter-spacing:3.866667pt;}
.ls36{letter-spacing:3.989333pt;}
.ls8{letter-spacing:4.850667pt;}
.ls3b{letter-spacing:5.101867pt;}
.ws17{word-spacing:-58.666667pt;}
.ws39{word-spacing:-15.488000pt;}
.ws5e{word-spacing:-14.901333pt;}
.ws28{word-spacing:-14.666667pt;}
.ws4b{word-spacing:-14.432000pt;}
.ws18{word-spacing:-14.314667pt;}
.ws1{word-spacing:-13.632000pt;}
.ws15{word-spacing:-13.344000pt;}
.ws3{word-spacing:-13.333333pt;}
.ws16{word-spacing:-12.480000pt;}
.ws54{word-spacing:-12.000000pt;}
.ws2{word-spacing:-11.861333pt;}
.ws33{word-spacing:-10.666667pt;}
.ws46{word-spacing:-8.832000pt;}
.ws44{word-spacing:-8.642773pt;}
.ws4a{word-spacing:-8.540693pt;}
.ws27{word-spacing:-8.506667pt;}
.ws4c{word-spacing:-8.370560pt;}
.ws45{word-spacing:-7.247680pt;}
.ws55{word-spacing:-6.960000pt;}
.ws0{word-spacing:-4.896000pt;}
.ws4{word-spacing:-3.626667pt;}
.ws5{word-spacing:-2.266667pt;}
.ws58{word-spacing:-2.229333pt;}
.ws40{word-spacing:-2.170667pt;}
.ws1f{word-spacing:-2.053333pt;}
.ws5d{word-spacing:-1.936000pt;}
.ws1c{word-spacing:-1.760000pt;}
.ws1a{word-spacing:-1.600000pt;}
.ws42{word-spacing:-1.466667pt;}
.wsd{word-spacing:-1.392000pt;}
.ws69{word-spacing:-1.349333pt;}
.ws61{word-spacing:-1.232000pt;}
.ws22{word-spacing:-1.173333pt;}
.ws6c{word-spacing:-1.056000pt;}
.ws53{word-spacing:-0.997333pt;}
.ws57{word-spacing:-0.938667pt;}
.ws60{word-spacing:-0.880000pt;}
.ws3c{word-spacing:-0.821333pt;}
.ws14{word-spacing:-0.816000pt;}
.ws50{word-spacing:-0.762667pt;}
.ws31{word-spacing:-0.704000pt;}
.ws9{word-spacing:-0.693333pt;}
.ws5b{word-spacing:-0.645333pt;}
.ws12{word-spacing:-0.640000pt;}
.ws37{word-spacing:-0.586667pt;}
.ws30{word-spacing:-0.528000pt;}
.wsa{word-spacing:-0.480000pt;}
.ws3e{word-spacing:-0.469333pt;}
.ws11{word-spacing:-0.426667pt;}
.ws26{word-spacing:-0.410667pt;}
.ws41{word-spacing:-0.352000pt;}
.wsc{word-spacing:-0.320000pt;}
.ws34{word-spacing:-0.293333pt;}
.ws8{word-spacing:-0.266667pt;}
.ws2b{word-spacing:-0.234667pt;}
.ws24{word-spacing:-0.176000pt;}
.wsb{word-spacing:-0.160000pt;}
.ws2d{word-spacing:-0.117333pt;}
.ws3a{word-spacing:-0.058667pt;}
.ws43{word-spacing:-0.042667pt;}
.ws6{word-spacing:0.000000pt;}
.ws52{word-spacing:0.042667pt;}
.ws1e{word-spacing:0.058667pt;}
.ws4e{word-spacing:0.085333pt;}
.ws2c{word-spacing:0.117333pt;}
.ws47{word-spacing:0.128000pt;}
.ws7{word-spacing:0.160000pt;}
.ws4f{word-spacing:0.170667pt;}
.ws29{word-spacing:0.176000pt;}
.ws19{word-spacing:0.213333pt;}
.ws1b{word-spacing:0.234667pt;}
.ws38{word-spacing:0.256000pt;}
.ws10{word-spacing:0.266667pt;}
.ws20{word-spacing:0.293333pt;}
.ws21{word-spacing:0.352000pt;}
.wsf{word-spacing:0.373333pt;}
.ws3b{word-spacing:0.410667pt;}
.ws3f{word-spacing:0.469333pt;}
.ws6d{word-spacing:0.586667pt;}
.ws36{word-spacing:0.645333pt;}
.ws1d{word-spacing:0.762667pt;}
.ws65{word-spacing:0.821333pt;}
.ws56{word-spacing:0.864000pt;}
.ws2f{word-spacing:0.938667pt;}
.ws5a{word-spacing:1.466667pt;}
.ws5f{word-spacing:1.525333pt;}
.ws6b{word-spacing:1.584000pt;}
.ws5c{word-spacing:1.642667pt;}
.wse{word-spacing:1.872000pt;}
.ws64{word-spacing:2.170667pt;}
.ws4d{word-spacing:2.522667pt;}
.ws48{word-spacing:2.698667pt;}
.ws25{word-spacing:3.168000pt;}
.ws51{word-spacing:3.226667pt;}
.ws63{word-spacing:3.344000pt;}
.ws59{word-spacing:3.520000pt;}
.ws49{word-spacing:3.637333pt;}
.ws6a{word-spacing:3.696000pt;}
.ws23{word-spacing:3.754667pt;}
.ws62{word-spacing:3.872000pt;}
.ws67{word-spacing:3.930667pt;}
.ws35{word-spacing:4.282667pt;}
.ws13{word-spacing:4.416000pt;}
.ws6e{word-spacing:4.752000pt;}
.ws2a{word-spacing:4.810667pt;}
.ws2e{word-spacing:4.869333pt;}
.ws66{word-spacing:5.632000pt;}
.ws32{word-spacing:6.218667pt;}
.ws68{word-spacing:7.274667pt;}
.ws3d{word-spacing:7.333333pt;}
._b{margin-left:-2011.124267pt;}
._19{margin-left:-25.365867pt;}
._18{margin-left:-22.762667pt;}
._11{margin-left:-15.605333pt;}
._c{margin-left:-14.666667pt;}
._f{margin-left:-13.768000pt;}
._17{margin-left:-12.058133pt;}
._e{margin-left:-11.148267pt;}
._d{margin-left:-7.169067pt;}
._14{margin-left:-6.206933pt;}
._6{margin-left:-4.761600pt;}
._7{margin-left:-3.114667pt;}
._5{margin-left:-1.922667pt;}
._0{margin-left:-0.989867pt;}
._1{width:0.997333pt;}
._3{width:2.429867pt;}
._2{width:3.780800pt;}
._8{width:5.493867pt;}
._9{width:6.634667pt;}
._12{width:7.539733pt;}
._15{width:8.793067pt;}
._16{width:9.904000pt;}
._13{width:40.390933pt;}
._4{width:74.883200pt;}
._10{width:75.816000pt;}
._a{width:301.085333pt;}
.fs9{font-size:27.840000pt;}
.fs8{font-size:34.026667pt;}
.fs1{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs0{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs7{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y73{bottom:40.945067pt;}
.y4b{bottom:41.499867pt;}
.y102{bottom:51.023733pt;}
.y4a{bottom:59.499867pt;}
.y87{bottom:62.539333pt;}
.y101{bottom:63.823733pt;}
.y128{bottom:64.252133pt;}
.y3{bottom:71.811067pt;}
.y9f{bottom:71.811200pt;}
.y118{bottom:72.708800pt;}
.y100{bottom:76.623733pt;}
.y127{bottom:77.052133pt;}
.y49{bottom:77.499867pt;}
.y83{bottom:80.539333pt;}
.y85{bottom:81.260000pt;}
.yf8{bottom:82.186267pt;}
.y11d{bottom:82.705467pt;}
.y72{bottom:83.421333pt;}
.y81{bottom:84.611200pt;}
.yff{bottom:89.423867pt;}
.y126{bottom:89.852133pt;}
.y12a{bottom:89.852267pt;}
.y86{bottom:90.708800pt;}
.y84{bottom:94.060000pt;}
.y48{bottom:95.499867pt;}
.y11c{bottom:97.411200pt;}
.y9e{bottom:97.411333pt;}
.y152{bottom:98.525067pt;}
.y82{bottom:98.539333pt;}
.yf7{bottom:100.186267pt;}
.y71{bottom:101.421333pt;}
.yb0{bottom:101.625200pt;}
.yfe{bottom:102.223867pt;}
.y125{bottom:102.652133pt;}
.y129{bottom:102.652267pt;}
.yb4{bottom:103.508800pt;}
.y93{bottom:103.508933pt;}
.ydf{bottom:103.679600pt;}
.ydc{bottom:106.915467pt;}
.y11b{bottom:110.211200pt;}
.y9d{bottom:110.211333pt;}
.y47{bottom:113.499867pt;}
.yfd{bottom:115.023867pt;}
.yb3{bottom:116.308800pt;}
.y92{bottom:116.308933pt;}
.y95{bottom:116.309067pt;}
.y151{bottom:116.525067pt;}
.y80{bottom:116.539333pt;}
.yf6{bottom:118.186267pt;}
.y70{bottom:119.421333pt;}
.yaf{bottom:119.625200pt;}
.y117{bottom:120.407733pt;}
.y23{bottom:120.456000pt;}
.y11a{bottom:123.011333pt;}
.y9c{bottom:123.011467pt;}
.ydb{bottom:124.915467pt;}
.y91{bottom:129.108933pt;}
.y94{bottom:129.109067pt;}
.y46{bottom:131.499867pt;}
.y150{bottom:134.525067pt;}
.y7f{bottom:134.539333pt;}
.y119{bottom:135.811333pt;}
.y9b{bottom:135.811467pt;}
.yf5{bottom:136.186267pt;}
.y22{bottom:136.456000pt;}
.y6f{bottom:137.421200pt;}
.y124{bottom:137.436133pt;}
.yae{bottom:137.625200pt;}
.y116{bottom:138.407733pt;}
.yfc{bottom:141.280133pt;}
.y90{bottom:141.909067pt;}
.yda{bottom:142.915467pt;}
.y9a{bottom:148.611467pt;}
.y45{bottom:149.499867pt;}
.y14f{bottom:152.525067pt;}
.y7e{bottom:152.539333pt;}
.yfb{bottom:154.080133pt;}
.yf4{bottom:154.186267pt;}
.y8f{bottom:154.709067pt;}
.yb2{bottom:154.709200pt;}
.y6e{bottom:155.421200pt;}
.y123{bottom:155.436133pt;}
.yad{bottom:155.625200pt;}
.y115{bottom:156.407733pt;}
.yd9{bottom:160.915467pt;}
.y99{bottom:161.411467pt;}
.yfa{bottom:166.880133pt;}
.y44{bottom:167.499867pt;}
.y8e{bottom:167.509067pt;}
.yb1{bottom:167.509200pt;}
.yc8{bottom:167.606000pt;}
.y14e{bottom:170.525067pt;}
.y7d{bottom:170.539333pt;}
.yf3{bottom:172.186267pt;}
.y6d{bottom:173.421200pt;}
.y122{bottom:173.436133pt;}
.yac{bottom:173.625200pt;}
.y98{bottom:174.211600pt;}
.y114{bottom:174.407733pt;}
.yd8{bottom:178.915467pt;}
.y8d{bottom:180.309200pt;}
.y20{bottom:185.229467pt;}
.y43{bottom:185.499867pt;}
.yc7{bottom:185.606000pt;}
.y97{bottom:187.011600pt;}
.y14d{bottom:188.525067pt;}
.y7c{bottom:188.539333pt;}
.yf2{bottom:190.186267pt;}
.y6c{bottom:191.421200pt;}
.y121{bottom:191.436133pt;}
.yab{bottom:191.625200pt;}
.y8c{bottom:193.109333pt;}
.yd7{bottom:196.915467pt;}
.y1f{bottom:199.629467pt;}
.y96{bottom:199.811600pt;}
.y42{bottom:203.499867pt;}
.yc6{bottom:203.606000pt;}
.y8b{bottom:205.909333pt;}
.y14c{bottom:206.525067pt;}
.y7b{bottom:206.539333pt;}
.yf1{bottom:208.186267pt;}
.y6b{bottom:209.421200pt;}
.y120{bottom:209.436133pt;}
.yaa{bottom:209.625200pt;}
.y1e{bottom:214.029467pt;}
.yd6{bottom:214.915467pt;}
.y113{bottom:215.751600pt;}
.y8a{bottom:218.709333pt;}
.y41{bottom:221.499867pt;}
.yc5{bottom:221.606000pt;}
.y10f{bottom:222.951600pt;}
.y14b{bottom:224.525067pt;}
.y7a{bottom:224.539333pt;}
.yf0{bottom:226.186267pt;}
.y6a{bottom:227.421200pt;}
.y11f{bottom:227.436133pt;}
.ya9{bottom:227.625200pt;}
.y112{bottom:230.151467pt;}
.y89{bottom:231.509333pt;}
.yd5{bottom:232.915467pt;}
.y10e{bottom:237.351600pt;}
.y40{bottom:239.499867pt;}
.yc4{bottom:239.606000pt;}
.y14a{bottom:242.525067pt;}
.y79{bottom:242.539333pt;}
.yef{bottom:244.186267pt;}
.y88{bottom:244.309333pt;}
.y111{bottom:244.551600pt;}
.y69{bottom:245.421200pt;}
.ya8{bottom:245.625200pt;}
.y1d{bottom:247.327067pt;}
.yd4{bottom:250.915467pt;}
.y10d{bottom:251.751600pt;}
.y3f{bottom:257.499867pt;}
.yc3{bottom:257.606000pt;}
.y110{bottom:258.951600pt;}
.y149{bottom:260.525067pt;}
.y78{bottom:260.539333pt;}
.y11e{bottom:260.554267pt;}
.yee{bottom:262.186267pt;}
.y1c{bottom:263.327067pt;}
.y68{bottom:263.421200pt;}
.ya7{bottom:263.625200pt;}
.yd3{bottom:268.915467pt;}
.y3e{bottom:275.499867pt;}
.yc2{bottom:275.606000pt;}
.y148{bottom:278.525067pt;}
.y77{bottom:278.539333pt;}
.y1b{bottom:279.327067pt;}
.yed{bottom:280.186267pt;}
.y67{bottom:281.421200pt;}
.ya6{bottom:281.625200pt;}
.y10c{bottom:282.384667pt;}
.yd2{bottom:286.915467pt;}
.y3d{bottom:293.499867pt;}
.yc1{bottom:293.606000pt;}
.y1a{bottom:295.327067pt;}
.y147{bottom:296.525067pt;}
.y76{bottom:296.539333pt;}
.yec{bottom:298.186267pt;}
.y66{bottom:299.421200pt;}
.ya5{bottom:299.625200pt;}
.yd1{bottom:304.915467pt;}
.y19{bottom:311.327067pt;}
.y3c{bottom:311.499867pt;}
.yc0{bottom:311.606000pt;}
.y146{bottom:314.525067pt;}
.y75{bottom:314.539333pt;}
.yeb{bottom:316.186267pt;}
.ya4{bottom:317.625200pt;}
.yd0{bottom:322.915467pt;}
.y10b{bottom:323.728533pt;}
.y18{bottom:327.327067pt;}
.y3b{bottom:329.499867pt;}
.ybf{bottom:329.606000pt;}
.y145{bottom:332.525067pt;}
.y65{bottom:332.539333pt;}
.yea{bottom:334.186267pt;}
.ya3{bottom:335.625200pt;}
.y10a{bottom:338.128533pt;}
.ycf{bottom:340.915467pt;}
.y17{bottom:343.327067pt;}
.y3a{bottom:347.499867pt;}
.ybe{bottom:347.606000pt;}
.y144{bottom:350.525067pt;}
.y74{bottom:350.539333pt;}
.ye9{bottom:352.186267pt;}
.y109{bottom:352.528533pt;}
.yce{bottom:358.915467pt;}
.y16{bottom:359.327067pt;}
.y39{bottom:365.499867pt;}
.ybd{bottom:365.606000pt;}
.y108{bottom:366.928533pt;}
.y143{bottom:368.525067pt;}
.y64{bottom:368.539333pt;}
.ye8{bottom:370.186267pt;}
.ya2{bottom:371.625200pt;}
.y15{bottom:375.327067pt;}
.ycd{bottom:376.915467pt;}
.y107{bottom:381.328533pt;}
.y38{bottom:383.499867pt;}
.ybc{bottom:383.606000pt;}
.y142{bottom:386.525067pt;}
.y63{bottom:386.539333pt;}
.ye7{bottom:388.186267pt;}
.y14{bottom:391.327067pt;}
.ycc{bottom:394.915467pt;}
.y106{bottom:395.728533pt;}
.y37{bottom:401.499867pt;}
.ybb{bottom:401.606000pt;}
.y141{bottom:404.525067pt;}
.y62{bottom:404.539333pt;}
.ye6{bottom:406.186267pt;}
.y13{bottom:407.327067pt;}
.ycb{bottom:412.915467pt;}
.y105{bottom:415.382267pt;}
.y36{bottom:419.499867pt;}
.yba{bottom:419.606000pt;}
.y140{bottom:422.525067pt;}
.y61{bottom:422.539333pt;}
.ya1{bottom:422.743333pt;}
.y12{bottom:423.327067pt;}
.ye5{bottom:424.186267pt;}
.yca{bottom:430.915467pt;}
.y104{bottom:433.382267pt;}
.y35{bottom:437.499867pt;}
.yb9{bottom:437.606000pt;}
.y11{bottom:439.327067pt;}
.y13f{bottom:440.525067pt;}
.y60{bottom:440.539333pt;}
.ya0{bottom:440.743333pt;}
.ye4{bottom:442.186267pt;}
.y10{bottom:455.327067pt;}
.y34{bottom:455.499867pt;}
.yb8{bottom:455.606000pt;}
.y13e{bottom:458.525067pt;}
.y5f{bottom:458.539333pt;}
.ye3{bottom:460.186267pt;}
.yc9{bottom:464.033600pt;}
.y103{bottom:466.500267pt;}
.yf9{bottom:466.622800pt;}
.yf{bottom:471.327067pt;}
.y33{bottom:473.499867pt;}
.yb7{bottom:473.606000pt;}
.y13d{bottom:476.525067pt;}
.y5e{bottom:476.539333pt;}
.ye2{bottom:478.186267pt;}
.ye{bottom:487.327067pt;}
.yde{bottom:491.439333pt;}
.y32{bottom:491.499867pt;}
.yb6{bottom:491.606000pt;}
.y13c{bottom:494.525067pt;}
.y5d{bottom:494.539333pt;}
.ydd{bottom:504.239333pt;}
.y31{bottom:509.499867pt;}
.ye1{bottom:511.304400pt;}
.y13b{bottom:512.525067pt;}
.y5c{bottom:512.539333pt;}
.yd{bottom:513.993733pt;}
.yb5{bottom:524.724133pt;}
.y30{bottom:527.499867pt;}
.y13a{bottom:530.525067pt;}
.y5b{bottom:530.539333pt;}
.y2f{bottom:545.499867pt;}
.y139{bottom:548.525067pt;}
.y5a{bottom:548.539333pt;}
.y21{bottom:551.501867pt;}
.y2e{bottom:563.499867pt;}
.y138{bottom:566.525067pt;}
.y59{bottom:566.539333pt;}
.y2d{bottom:581.499867pt;}
.y137{bottom:584.525067pt;}
.y58{bottom:584.539333pt;}
.yc{bottom:597.177600pt;}
.y2c{bottom:599.499867pt;}
.y136{bottom:602.525067pt;}
.y57{bottom:602.539333pt;}
.yb{bottom:609.844267pt;}
.y2b{bottom:617.499867pt;}
.y135{bottom:620.525067pt;}
.y56{bottom:620.539333pt;}
.ya{bottom:622.644267pt;}
.y9{bottom:635.444267pt;}
.y2a{bottom:635.499867pt;}
.y134{bottom:638.525067pt;}
.y55{bottom:638.539333pt;}
.y29{bottom:653.499867pt;}
.y133{bottom:656.525067pt;}
.y54{bottom:656.539333pt;}
.y8{bottom:671.444267pt;}
.y132{bottom:674.525067pt;}
.y53{bottom:674.539333pt;}
.y28{bottom:686.618000pt;}
.y131{bottom:692.525067pt;}
.y52{bottom:692.539333pt;}
.y7{bottom:694.110933pt;}
.y130{bottom:710.525067pt;}
.y51{bottom:710.539333pt;}
.y12f{bottom:728.525067pt;}
.y50{bottom:728.539333pt;}
.y6{bottom:734.777600pt;}
.y27{bottom:738.633733pt;}
.y12e{bottom:746.525067pt;}
.y4f{bottom:746.539333pt;}
.y26{bottom:755.967067pt;}
.y5{bottom:757.444267pt;}
.y12d{bottom:764.525067pt;}
.y4e{bottom:764.539333pt;}
.y25{bottom:773.300400pt;}
.y4{bottom:780.110933pt;}
.y12c{bottom:782.525067pt;}
.y4d{bottom:782.539333pt;}
.ye0{bottom:800.030933pt;}
.y12b{bottom:800.525067pt;}
.y4c{bottom:800.539333pt;}
.y24{bottom:801.972267pt;}
.y2{bottom:844.724400pt;}
.y1{bottom:858.324400pt;}
.h4{height:27.216146pt;}
.h8{height:31.104167pt;}
.h13{height:32.354167pt;}
.h7{height:34.945312pt;}
.hb{height:34.992188pt;}
.hc{height:36.398438pt;}
.h11{height:37.437500pt;}
.h12{height:37.541667pt;}
.h9{height:38.828125pt;}
.h2{height:39.777344pt;}
.h3{height:39.888021pt;}
.h14{height:42.117188pt;}
.he{height:42.710938pt;}
.h6{height:46.593750pt;}
.ha{height:46.796875pt;}
.hd{height:46.927083pt;}
.hf{height:51.476562pt;}
.h10{height:51.619792pt;}
.h15{height:52.278646pt;}
.h5{height:54.359375pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x4{left:68.031467pt;}
.x16{left:73.720800pt;}
.xb{left:75.460400pt;}
.x6{left:77.480267pt;}
.x7{left:79.370133pt;}
.x9{left:80.831467pt;}
.xf{left:82.785867pt;}
.xa{left:86.929200pt;}
.x8{left:89.364800pt;}
.x13{left:95.343200pt;}
.xc{left:111.957733pt;}
.xe{left:114.132267pt;}
.x11{left:121.046267pt;}
.xd{left:124.724400pt;}
.x10{left:153.455200pt;}
.x15{left:163.642667pt;}
.x12{left:195.270267pt;}
.x3{left:196.820800pt;}
.x5{left:330.708667pt;}
.x2{left:349.974533pt;}
.x14{left:364.388533pt;}
.x1{left:392.946267pt;}
}




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