
    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_d785009f12f268a89ea03e21.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_6f488f6c6a5ec8a76aa2a5dd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_d35a8d00f099729933cf5e31.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.677734;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_b1b7b122fe976a1967bba87c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5740c58e69e66d9fa986e948.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.024902;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_ebe0ef7530ff78e43baddc71.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.900391;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_58faad854ad9fff71add3f30.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_795375d5f60d51d0399b6238.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_064f604c85961db6da78da0f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_75714b5e409d58759e1919a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093750;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls2e{letter-spacing:-0.758160px;}
.ls30{letter-spacing:-0.720000px;}
.ls2f{letter-spacing:-0.576000px;}
.ls2a{letter-spacing:-0.570240px;}
.ls26{letter-spacing:-0.506880px;}
.ls1c{letter-spacing:-0.336960px;}
.ls14{letter-spacing:-0.298800px;}
.ls15{letter-spacing:-0.288000px;}
.lsb{letter-spacing:-0.270000px;}
.ls9{letter-spacing:-0.264960px;}
.lse{letter-spacing:-0.252720px;}
.lsc{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.084240px;}
.ls10{letter-spacing:-0.077760px;}
.ls31{letter-spacing:-0.072000px;}
.ls13{letter-spacing:-0.059760px;}
.ls7{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.036000px;}
.ls8{letter-spacing:0.054000px;}
.ls27{letter-spacing:0.063360px;}
.ls23{letter-spacing:0.072000px;}
.lsf{letter-spacing:0.077760px;}
.ls3{letter-spacing:0.101088px;}
.ls1d{letter-spacing:0.119520px;}
.ls29{letter-spacing:0.126720px;}
.ls0{letter-spacing:0.132480px;}
.ls12{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.155520px;}
.lsa{letter-spacing:0.179280px;}
.ls25{letter-spacing:0.190080px;}
.ls4{letter-spacing:0.233280px;}
.ls2{letter-spacing:0.336960px;}
.ls1e{letter-spacing:0.358560px;}
.ls17{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.421200px;}
.ls28{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.720000px;}
.ls1a{letter-spacing:1.159344px;}
.ls1b{letter-spacing:1.374480px;}
.ls21{letter-spacing:1.440000px;}
.ls24{letter-spacing:2.901600px;}
.ls6{letter-spacing:3.600000px;}
.ls16{letter-spacing:4.320000px;}
.ls19{letter-spacing:4.482000px;}
.ls2c{letter-spacing:5.040000px;}
.ls20{letter-spacing:5.760000px;}
.ls2d{letter-spacing:6.462720px;}
.ls22{letter-spacing:6.480000px;}
.ls2b{letter-spacing:7.920000px;}
.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;}
}
.ws4{word-spacing:-28.810080px;}
.ws5{word-spacing:-24.768000px;}
.ws37{word-spacing:-23.839920px;}
.ws3f{word-spacing:-23.418720px;}
.ws1f{word-spacing:-23.081760px;}
.ws6{word-spacing:-20.139120px;}
.ws9{word-spacing:-18.144000px;}
.ws58{word-spacing:-18.072000px;}
.ws8{word-spacing:-18.000000px;}
.ws40{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws5d{word-spacing:-15.903360px;}
.ws1{word-spacing:-13.505760px;}
.ws0{word-spacing:-12.204000px;}
.ws2{word-spacing:-11.934000px;}
.ws20{word-spacing:-9.720000px;}
.ws41{word-spacing:-4.320000px;}
.ws4c{word-spacing:-3.801600px;}
.ws17{word-spacing:-3.600000px;}
.ws18{word-spacing:-3.312000px;}
.ws4d{word-spacing:-3.041280px;}
.ws4f{word-spacing:-3.024000px;}
.ws19{word-spacing:-2.880000px;}
.ws2c{word-spacing:-2.592000px;}
.ws5b{word-spacing:-2.344320px;}
.ws48{word-spacing:-2.232000px;}
.ws27{word-spacing:-2.160000px;}
.ws2b{word-spacing:-1.872000px;}
.ws61{word-spacing:-1.647360px;}
.ws1a{word-spacing:-1.440000px;}
.ws32{word-spacing:-1.374480px;}
.ws2a{word-spacing:-1.152000px;}
.ws53{word-spacing:-0.887040px;}
.ws3c{word-spacing:-0.720000px;}
.ws38{word-spacing:-0.432000px;}
.ws10{word-spacing:-0.288000px;}
.ws42{word-spacing:-0.252720px;}
.ws56{word-spacing:-0.190080px;}
.ws11{word-spacing:-0.179280px;}
.ws3a{word-spacing:-0.144000px;}
.ws52{word-spacing:-0.126720px;}
.ws45{word-spacing:-0.072000px;}
.ws4e{word-spacing:-0.063360px;}
.wsa{word-spacing:0.000000px;}
.ws36{word-spacing:0.059760px;}
.ws6a{word-spacing:0.072000px;}
.wsd{word-spacing:0.084240px;}
.wsf{word-spacing:0.155520px;}
.ws3{word-spacing:0.162000px;}
.ws44{word-spacing:0.216000px;}
.wse{word-spacing:0.252720px;}
.wsb{word-spacing:0.264960px;}
.ws12{word-spacing:0.288000px;}
.wsc{word-spacing:0.324000px;}
.ws54{word-spacing:0.506880px;}
.ws57{word-spacing:0.570240px;}
.ws68{word-spacing:0.576000px;}
.ws39{word-spacing:0.673920px;}
.ws13{word-spacing:0.720000px;}
.ws66{word-spacing:0.758160px;}
.ws14{word-spacing:1.008000px;}
.ws30{word-spacing:1.254960px;}
.ws4a{word-spacing:1.267200px;}
.ws55{word-spacing:1.330560px;}
.ws21{word-spacing:1.440000px;}
.ws2f{word-spacing:1.494000px;}
.ws31{word-spacing:1.673280px;}
.ws29{word-spacing:1.728000px;}
.ws59{word-spacing:1.964160px;}
.ws60{word-spacing:2.027520px;}
.ws16{word-spacing:2.160000px;}
.ws23{word-spacing:2.448000px;}
.ws4b{word-spacing:2.661120px;}
.ws35{word-spacing:2.689200px;}
.ws1d{word-spacing:2.880000px;}
.ws34{word-spacing:2.928240px;}
.ws22{word-spacing:3.168000px;}
.ws33{word-spacing:3.406320px;}
.ws63{word-spacing:3.421440px;}
.ws65{word-spacing:3.456000px;}
.ws1e{word-spacing:3.600000px;}
.ws1b{word-spacing:3.888000px;}
.ws51{word-spacing:4.118400px;}
.ws5a{word-spacing:4.176000px;}
.ws1c{word-spacing:4.320000px;}
.ws2e{word-spacing:4.362480px;}
.ws24{word-spacing:4.608000px;}
.ws64{word-spacing:4.878720px;}
.ws49{word-spacing:5.040000px;}
.ws15{word-spacing:5.328000px;}
.ws3d{word-spacing:5.616000px;}
.ws62{word-spacing:5.639040px;}
.ws28{word-spacing:5.760000px;}
.ws3b{word-spacing:6.048000px;}
.ws5e{word-spacing:6.272640px;}
.ws2d{word-spacing:6.480000px;}
.ws43{word-spacing:6.768000px;}
.ws50{word-spacing:7.032960px;}
.ws5f{word-spacing:7.096320px;}
.ws3e{word-spacing:7.200000px;}
.ws5c{word-spacing:7.488000px;}
.ws25{word-spacing:7.920000px;}
.ws26{word-spacing:8.208000px;}
.ws69{word-spacing:8.640000px;}
.ws46{word-spacing:8.928000px;}
.ws67{word-spacing:12.240000px;}
.ws47{word-spacing:16.848000px;}
._4{margin-left:-3.904200px;}
._7{margin-left:-2.448000px;}
._2{margin-left:-1.063800px;}
._3{width:1.050480px;}
._6{width:2.071440px;}
._5{width:3.659040px;}
._9{width:7.390080px;}
._1{width:94.338000px;}
._0{width:731.538000px;}
._8{width:846.000000px;}
.fc4{color:transparent;}
.fc2{color:rgb(196,89,17);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,128,128);}
.fs9{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs6{font-size:77.760000px;}
.fs7{font-size:81.360000px;}
.fs5{font-size:84.240000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:16.020000px;}
.ycc{bottom:72.720000px;}
.y5{bottom:79.920000px;}
.y4{bottom:112.680000px;}
.y6{bottom:113.760000px;}
.y3{bottom:145.440000px;}
.y55{bottom:165.392100px;}
.yfa{bottom:170.100000px;}
.y2d{bottom:173.520000px;}
.y11d{bottom:174.060000px;}
.y18d{bottom:174.780000px;}
.y1a5{bottom:174.960000px;}
.y54{bottom:182.677680px;}
.y153{bottom:189.360000px;}
.yf9{bottom:193.860000px;}
.ybd{bottom:194.940000px;}
.y13b{bottom:195.300000px;}
.y9f{bottom:196.740000px;}
.y53{bottom:199.963260px;}
.ydd{bottom:201.960000px;}
.y176{bottom:205.920000px;}
.y2c{bottom:206.280000px;}
.y11c{bottom:207.000000px;}
.y18c{bottom:207.720000px;}
.y152{bottom:213.120000px;}
.y52{bottom:217.248840px;}
.y13a{bottom:219.060000px;}
.y7a{bottom:219.419850px;}
.y9e{bottom:220.500000px;}
.ydc{bottom:225.720000px;}
.yf8{bottom:226.800000px;}
.y175{bottom:229.680000px;}
.y2b{bottom:230.040000px;}
.y18b{bottom:231.480000px;}
.y51{bottom:234.534420px;}
.y11b{bottom:239.760000px;}
.y1a4{bottom:240.660000px;}
.y139{bottom:242.820000px;}
.y9d{bottom:244.440000px;}
.y151{bottom:246.060000px;}
.ydb{bottom:249.660000px;}
.yf7{bottom:250.560000px;}
.yc5{bottom:251.460000px;}
.y79{bottom:252.359850px;}
.y174{bottom:253.440000px;}
.y50{bottom:257.040000px;}
.y2a{bottom:262.980000px;}
.y18a{bottom:264.240000px;}
.y138{bottom:266.580000px;}
.y9c{bottom:268.200000px;}
.y150{bottom:269.820000px;}
.y11a{bottom:272.520000px;}
.y1a3{bottom:273.420000px;}
.yf6{bottom:274.320000px;}
.y78{bottom:276.119850px;}
.y173{bottom:277.200000px;}
.yda{bottom:281.160000px;}
.y4f{bottom:281.880000px;}
.y29{bottom:286.740000px;}
.y189{bottom:288.000000px;}
.y9b{bottom:291.960000px;}
.y14f{bottom:293.580000px;}
.ycf{bottom:295.560000px;}
.y119{bottom:296.280000px;}
.y1a2{bottom:297.180000px;}
.y137{bottom:299.520000px;}
.y77{bottom:299.879850px;}
.y172{bottom:301.140000px;}
.y4e{bottom:302.580000px;}
.yf5{bottom:307.080000px;}
.y28{bottom:310.500000px;}
.yd9{bottom:311.580000px;}
.y9a{bottom:315.720000px;}
.y14e{bottom:317.340000px;}
.y118{bottom:320.220000px;}
.y188{bottom:320.940000px;}
.y76{bottom:323.639850px;}
.yb8{bottom:324.000000px;}
.y1a1{bottom:329.940000px;}
.yf4{bottom:331.020000px;}
.y136{bottom:331.741440px;}
.y171{bottom:333.900000px;}
.y27{bottom:334.260000px;}
.y99{bottom:339.660000px;}
.y117{bottom:343.980000px;}
.yd8{bottom:344.340000px;}
.y187{bottom:344.700000px;}
.y75{bottom:347.579850px;}
.y14d{bottom:350.280000px;}
.y135{bottom:352.254240px;}
.y1a0{bottom:353.880000px;}
.yf3{bottom:354.780000px;}
.yb7{bottom:356.940000px;}
.y26{bottom:358.200000px;}
.y98{bottom:363.420000px;}
.y170{bottom:366.660000px;}
.y116{bottom:367.740000px;}
.yd7{bottom:368.280000px;}
.y186{bottom:368.460000px;}
.y134{bottom:372.957120px;}
.y19f{bottom:377.640000px;}
.y4d{bottom:377.820000px;}
.yf2{bottom:378.540000px;}
.y74{bottom:380.339850px;}
.y25{bottom:381.960000px;}
.y14c{bottom:382.305600px;}
.y97{bottom:387.180000px;}
.yb6{bottom:389.700000px;}
.y16f{bottom:390.420000px;}
.y133{bottom:393.660000px;}
.y115{bottom:399.961440px;}
.yd6{bottom:401.040000px;}
.y185{bottom:401.220000px;}
.y19e{bottom:401.400000px;}
.y4c{bottom:401.580000px;}
.yf1{bottom:402.300000px;}
.y14b{bottom:403.008480px;}
.y73{bottom:404.099850px;}
.y24{bottom:405.720000px;}
.y96{bottom:410.940000px;}
.yb5{bottom:413.460000px;}
.y16e{bottom:414.180000px;}
.yd3{bottom:415.800000px;}
.y114{bottom:420.664320px;}
.y14a{bottom:423.711360px;}
.y132{bottom:423.900000px;}
.yd5{bottom:424.800000px;}
.y184{bottom:424.980000px;}
.y19d{bottom:425.160000px;}
.y4b{bottom:425.520000px;}
.yf0{bottom:426.060000px;}
.y72{bottom:427.859850px;}
.y23{bottom:429.480000px;}
.y95{bottom:434.880000px;}
.yb4{bottom:437.220000px;}
.y16d{bottom:438.120000px;}
.y113{bottom:441.177120px;}
.y149{bottom:444.414240px;}
.y131{bottom:447.660000px;}
.yd2{bottom:448.560000px;}
.y4a{bottom:449.280000px;}
.yef{bottom:450.000000px;}
.y71{bottom:451.799850px;}
.yd4{bottom:457.560000px;}
.y183{bottom:457.920000px;}
.y19c{bottom:458.100000px;}
.y112{bottom:461.880000px;}
.y22{bottom:462.420000px;}
.y148{bottom:465.117120px;}
.y94{bottom:467.640000px;}
.yb3{bottom:469.980000px;}
.y130{bottom:471.600000px;}
.y49{bottom:473.040000px;}
.y70{bottom:475.559850px;}
.yd1{bottom:481.500000px;}
.y182{bottom:481.680000px;}
.y19b{bottom:481.860000px;}
.yee{bottom:482.760000px;}
.y16c{bottom:485.640000px;}
.y147{bottom:485.820000px;}
.y93{bottom:491.400000px;}
.y111{bottom:492.300000px;}
.yb2{bottom:493.920000px;}
.y21{bottom:495.180000px;}
.y12f{bottom:495.360000px;}
.y48{bottom:496.800000px;}
.y6f{bottom:499.319850px;}
.y16b{bottom:509.400000px;}
.yd0{bottom:514.260000px;}
.y181{bottom:514.440000px;}
.y19a{bottom:514.620000px;}
.yed{bottom:514.981440px;}
.y92{bottom:515.160000px;}
.y110{bottom:516.060000px;}
.yb1{bottom:517.680000px;}
.y47{bottom:520.740000px;}
.y20{bottom:527.940000px;}
.y12e{bottom:528.120000px;}
.y6e{bottom:532.079850px;}
.y16a{bottom:533.340000px;}
.yec{bottom:535.684320px;}
.y180{bottom:538.200000px;}
.y91{bottom:539.100000px;}
.y10f{bottom:539.820000px;}
.yb0{bottom:541.440000px;}
.y199{bottom:547.380000px;}
.y1f{bottom:551.700000px;}
.y12d{bottom:551.880000px;}
.y46{bottom:553.500000px;}
.y6d{bottom:556.019850px;}
.yeb{bottom:556.197120px;}
.y90{bottom:562.860000px;}
.y10e{bottom:563.580000px;}
.yc4{bottom:564.120000px;}
.yaf{bottom:565.200000px;}
.y169{bottom:566.100000px;}
.y17f{bottom:571.140000px;}
.y12c{bottom:575.820000px;}
.yea{bottom:576.900000px;}
.y45{bottom:577.260000px;}
.y6c{bottom:579.779850px;}
.yce{bottom:580.140000px;}
.y1e{bottom:584.640000px;}
.y8f{bottom:586.620000px;}
.y10d{bottom:587.340000px;}
.yae{bottom:589.140000px;}
.y168{bottom:589.860000px;}
.y12b{bottom:599.580000px;}
.y44{bottom:601.020000px;}
.y6b{bottom:603.539850px;}
.y17e{bottom:603.900000px;}
.y198{bottom:604.080000px;}
.ye9{bottom:607.140000px;}
.y1d{bottom:608.400000px;}
.y8e{bottom:610.380000px;}
.y10c{bottom:611.280000px;}
.yad{bottom:612.900000px;}
.ycd{bottom:613.080000px;}
.y167{bottom:613.620000px;}
.y12a{bottom:623.340000px;}
.y43{bottom:624.960000px;}
.y6a{bottom:627.299850px;}
.y17d{bottom:627.660000px;}
.ye8{bottom:631.080000px;}
.y1c{bottom:632.160000px;}
.y8d{bottom:634.140000px;}
.y146{bottom:635.040000px;}
.ycb{bottom:636.840000px;}
.y166{bottom:637.560000px;}
.y10b{bottom:643.504320px;}
.yac{bottom:645.660000px;}
.y129{bottom:647.100000px;}
.y42{bottom:648.720000px;}
.y69{bottom:651.059850px;}
.ye7{bottom:654.840000px;}
.y1b{bottom:655.920000px;}
.y8c{bottom:658.080000px;}
.y17c{bottom:660.420000px;}
.y197{bottom:660.600000px;}
.y165{bottom:661.320000px;}
.y10a{bottom:664.017120px;}
.y145{bottom:667.255680px;}
.yab{bottom:669.420000px;}
.yca{bottom:669.600000px;}
.y128{bottom:671.040000px;}
.y68{bottom:674.999850px;}
.ye6{bottom:678.600000px;}
.y1a{bottom:679.860000px;}
.y41{bottom:681.480000px;}
.y8b{bottom:681.840000px;}
.y17b{bottom:684.360000px;}
.y109{bottom:684.720000px;}
.y164{bottom:685.080000px;}
.y144{bottom:687.958560px;}
.yaa{bottom:693.360000px;}
.y67{bottom:698.759850px;}
.y127{bottom:703.071360px;}
.y19{bottom:703.620000px;}
.y40{bottom:705.240000px;}
.y8a{bottom:705.600000px;}
.y17a{bottom:708.120000px;}
.y143{bottom:708.471360px;}
.y163{bottom:708.840000px;}
.ye5{bottom:711.360000px;}
.y108{bottom:714.960000px;}
.ya9{bottom:717.120000px;}
.y196{bottom:717.300000px;}
.y66{bottom:722.519850px;}
.y126{bottom:723.774240px;}
.yc9{bottom:726.300000px;}
.y18{bottom:727.380000px;}
.y142{bottom:729.174240px;}
.y3f{bottom:729.180000px;}
.y89{bottom:738.360000px;}
.y107{bottom:738.900000px;}
.y162{bottom:739.080000px;}
.y179{bottom:740.880000px;}
.y195{bottom:741.060000px;}
.ye4{bottom:744.300000px;}
.y125{bottom:744.477120px;}
.y141{bottom:749.877120px;}
.ya8{bottom:749.880000px;}
.yc7{bottom:750.060000px;}
.y17{bottom:751.140000px;}
.y3e{bottom:752.940000px;}
.y65{bottom:755.279850px;}
.yc8{bottom:759.060000px;}
.y88{bottom:762.300000px;}
.y106{bottom:762.660000px;}
.y124{bottom:765.180000px;}
.y140{bottom:770.580000px;}
.y178{bottom:771.120000px;}
.ya7{bottom:773.640000px;}
.y194{bottom:773.820000px;}
.y3d{bottom:776.700000px;}
.ye3{bottom:777.060000px;}
.y64{bottom:779.219850px;}
.yc6{bottom:782.820000px;}
.y16{bottom:783.900000px;}
.y87{bottom:786.060000px;}
.y105{bottom:786.420000px;}
.y161{bottom:786.780000px;}
.y123{bottom:795.420000px;}
.ya6{bottom:797.580000px;}
.y3c{bottom:800.460000px;}
.ye2{bottom:800.820000px;}
.y63{bottom:802.979850px;}
.y15{bottom:805.140000px;}
.y104{bottom:810.180000px;}
.y160{bottom:810.720000px;}
.y86{bottom:818.820000px;}
.y122{bottom:819.180000px;}
.ya5{bottom:821.340000px;}
.y3b{bottom:824.220000px;}
.ye1{bottom:824.580000px;}
.y14{bottom:828.000000px;}
.y193{bottom:830.520000px;}
.ybc{bottom:832.680000px;}
.y62{bottom:833.226300px;}
.y103{bottom:834.120000px;}
.y15f{bottom:834.480000px;}
.y85{bottom:842.580000px;}
.y121{bottom:843.120000px;}
.ya4{bottom:845.100000px;}
.ye0{bottom:848.520000px;}
.y13{bottom:848.700000px;}
.yc3{bottom:848.880000px;}
.y192{bottom:854.280000px;}
.y3a{bottom:857.160000px;}
.y61{bottom:857.340000px;}
.y15e{bottom:858.240000px;}
.y84{bottom:866.520000px;}
.y102{bottom:866.880000px;}
.ya3{bottom:868.860000px;}
.y12{bottom:869.400000px;}
.y13f{bottom:872.280000px;}
.yc2{bottom:872.640000px;}
.y39{bottom:880.920000px;}
.ydf{bottom:881.280000px;}
.y15d{bottom:882.000000px;}
.y191{bottom:887.040000px;}
.y83{bottom:890.280000px;}
.y101{bottom:890.640000px;}
.y11{bottom:891.900000px;}
.ya2{bottom:892.800000px;}
.y13e{bottom:896.040000px;}
.y38{bottom:904.680000px;}
.y60{bottom:905.040000px;}
.yc1{bottom:905.400000px;}
.y190{bottom:910.800000px;}
.y10{bottom:914.040000px;}
.y15c{bottom:914.217120px;}
.y100{bottom:914.400000px;}
.ya1{bottom:916.560000px;}
.y37{bottom:928.440000px;}
.y5f{bottom:928.800000px;}
.y15b{bottom:934.920000px;}
.y82{bottom:937.800000px;}
.yc0{bottom:938.160000px;}
.yff{bottom:938.340000px;}
.yf{bottom:939.240000px;}
.y18f{bottom:943.740000px;}
.ya0{bottom:946.800000px;}
.y36{bottom:952.380000px;}
.y5e{bottom:952.740000px;}
.y81{bottom:961.740000px;}
.ybf{bottom:962.100000px;}
.ye{bottom:964.440000px;}
.y15a{bottom:965.160000px;}
.y18e{bottom:967.500000px;}
.y35{bottom:976.140000px;}
.y5d{bottom:976.500000px;}
.y177{bottom:985.500000px;}
.yfe{bottom:985.860000px;}
.y159{bottom:988.920000px;}
.y120{bottom:994.324320px;}
.y80{bottom:994.500000px;}
.ybe{bottom:994.860000px;}
.y5c{bottom:1000.260000px;}
.yd{bottom:1007.283600px;}
.y34{bottom:1008.900000px;}
.yde{bottom:1009.260000px;}
.y158{bottom:1012.860000px;}
.y11f{bottom:1014.837120px;}
.yfd{bottom:1018.074240px;}
.y7f{bottom:1018.260000px;}
.y13d{bottom:1024.020000px;}
.yc{bottom:1031.039280px;}
.y33{bottom:1032.660000px;}
.y5b{bottom:1033.020000px;}
.y11e{bottom:1035.540000px;}
.yfc{bottom:1038.777120px;}
.y7e{bottom:1042.020000px;}
.y157{bottom:1045.081440px;}
.ybb{bottom:1046.700000px;}
.y13c{bottom:1047.960000px;}
.yb{bottom:1054.620000px;}
.y32{bottom:1056.600000px;}
.y5a{bottom:1056.960000px;}
.yfb{bottom:1059.480000px;}
.y156{bottom:1065.594240px;}
.y7d{bottom:1065.960000px;}
.y31{bottom:1080.360000px;}
.y59{bottom:1080.720000px;}
.y155{bottom:1086.297120px;}
.y7c{bottom:1089.720000px;}
.yba{bottom:1095.480000px;}
.y30{bottom:1104.120000px;}
.y58{bottom:1104.480000px;}
.ya{bottom:1105.546320px;}
.y154{bottom:1107.000000px;}
.y7b{bottom:1113.480000px;}
.y2f{bottom:1127.880000px;}
.yb9{bottom:1128.240000px;}
.y9{bottom:1131.113160px;}
.y57{bottom:1137.240000px;}
.y8{bottom:1156.680000px;}
.y2e{bottom:1158.120000px;}
.y56{bottom:1161.180000px;}
.y2{bottom:1208.524500px;}
.y1{bottom:1225.980000px;}
.he{height:27.014766px;}
.h5{height:32.758500px;}
.h12{height:32.760000px;}
.hf{height:41.522695px;}
.h10{height:42.894141px;}
.h3{height:47.527312px;}
.h9{height:48.905156px;}
.hb{height:49.289062px;}
.h11{height:49.992188px;}
.h4{height:50.027344px;}
.h16{height:54.295313px;}
.ha{height:56.530898px;}
.h8{height:58.921875px;}
.hd{height:60.878320px;}
.hc{height:61.329023px;}
.h7{height:63.635625px;}
.h6{height:68.938594px;}
.h2{height:75.600000px;}
.h13{height:211.680000px;}
.h14{height:268.198500px;}
.h15{height:268.200000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:29.881500px;}
.w5{width:116.460000px;}
.w3{width:116.640000px;}
.w6{width:520.200000px;}
.w4{width:520.380000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:8.100000px;}
.x18{left:13.860000px;}
.x4{left:127.620000px;}
.x16{left:135.720000px;}
.x1{left:139.140000px;}
.x6{left:164.340000px;}
.x19{left:180.720000px;}
.x15{left:206.100000px;}
.x14{left:244.260000px;}
.x17{left:252.360000px;}
.xa{left:262.434960px;}
.x9{left:295.191360px;}
.x3{left:297.180000px;}
.x12{left:343.620000px;}
.x8{left:403.200000px;}
.x7{left:413.816760px;}
.x5{left:466.740000px;}
.x10{left:499.140000px;}
.x2{left:532.611000px;}
.x11{left:556.020000px;}
.xb{left:583.920000px;}
.xc{left:602.640000px;}
.xe{left:615.060000px;}
.xd{left:618.120000px;}
.xf{left:829.080000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls2e{letter-spacing:-0.673920pt;}
.ls30{letter-spacing:-0.640000pt;}
.ls2f{letter-spacing:-0.512000pt;}
.ls2a{letter-spacing:-0.506880pt;}
.ls26{letter-spacing:-0.450560pt;}
.ls1c{letter-spacing:-0.299520pt;}
.ls14{letter-spacing:-0.265600pt;}
.ls15{letter-spacing:-0.256000pt;}
.lsb{letter-spacing:-0.240000pt;}
.ls9{letter-spacing:-0.235520pt;}
.lse{letter-spacing:-0.224640pt;}
.lsc{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.074880pt;}
.ls10{letter-spacing:-0.069120pt;}
.ls31{letter-spacing:-0.064000pt;}
.ls13{letter-spacing:-0.053120pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.032000pt;}
.ls8{letter-spacing:0.048000pt;}
.ls27{letter-spacing:0.056320pt;}
.ls23{letter-spacing:0.064000pt;}
.lsf{letter-spacing:0.069120pt;}
.ls3{letter-spacing:0.089856pt;}
.ls1d{letter-spacing:0.106240pt;}
.ls29{letter-spacing:0.112640pt;}
.ls0{letter-spacing:0.117760pt;}
.ls12{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.138240pt;}
.lsa{letter-spacing:0.159360pt;}
.ls25{letter-spacing:0.168960pt;}
.ls4{letter-spacing:0.207360pt;}
.ls2{letter-spacing:0.299520pt;}
.ls1e{letter-spacing:0.318720pt;}
.ls17{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.374400pt;}
.ls28{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:1.030528pt;}
.ls1b{letter-spacing:1.221760pt;}
.ls21{letter-spacing:1.280000pt;}
.ls24{letter-spacing:2.579200pt;}
.ls6{letter-spacing:3.200000pt;}
.ls16{letter-spacing:3.840000pt;}
.ls19{letter-spacing:3.984000pt;}
.ls2c{letter-spacing:4.480000pt;}
.ls20{letter-spacing:5.120000pt;}
.ls2d{letter-spacing:5.744640pt;}
.ls22{letter-spacing:5.760000pt;}
.ls2b{letter-spacing:7.040000pt;}
.ws4{word-spacing:-25.608960pt;}
.ws5{word-spacing:-22.016000pt;}
.ws37{word-spacing:-21.191040pt;}
.ws3f{word-spacing:-20.816640pt;}
.ws1f{word-spacing:-20.517120pt;}
.ws6{word-spacing:-17.901440pt;}
.ws9{word-spacing:-16.128000pt;}
.ws58{word-spacing:-16.064000pt;}
.ws8{word-spacing:-16.000000pt;}
.ws40{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws5d{word-spacing:-14.136320pt;}
.ws1{word-spacing:-12.005120pt;}
.ws0{word-spacing:-10.848000pt;}
.ws2{word-spacing:-10.608000pt;}
.ws20{word-spacing:-8.640000pt;}
.ws41{word-spacing:-3.840000pt;}
.ws4c{word-spacing:-3.379200pt;}
.ws17{word-spacing:-3.200000pt;}
.ws18{word-spacing:-2.944000pt;}
.ws4d{word-spacing:-2.703360pt;}
.ws4f{word-spacing:-2.688000pt;}
.ws19{word-spacing:-2.560000pt;}
.ws2c{word-spacing:-2.304000pt;}
.ws5b{word-spacing:-2.083840pt;}
.ws48{word-spacing:-1.984000pt;}
.ws27{word-spacing:-1.920000pt;}
.ws2b{word-spacing:-1.664000pt;}
.ws61{word-spacing:-1.464320pt;}
.ws1a{word-spacing:-1.280000pt;}
.ws32{word-spacing:-1.221760pt;}
.ws2a{word-spacing:-1.024000pt;}
.ws53{word-spacing:-0.788480pt;}
.ws3c{word-spacing:-0.640000pt;}
.ws38{word-spacing:-0.384000pt;}
.ws10{word-spacing:-0.256000pt;}
.ws42{word-spacing:-0.224640pt;}
.ws56{word-spacing:-0.168960pt;}
.ws11{word-spacing:-0.159360pt;}
.ws3a{word-spacing:-0.128000pt;}
.ws52{word-spacing:-0.112640pt;}
.ws45{word-spacing:-0.064000pt;}
.ws4e{word-spacing:-0.056320pt;}
.wsa{word-spacing:0.000000pt;}
.ws36{word-spacing:0.053120pt;}
.ws6a{word-spacing:0.064000pt;}
.wsd{word-spacing:0.074880pt;}
.wsf{word-spacing:0.138240pt;}
.ws3{word-spacing:0.144000pt;}
.ws44{word-spacing:0.192000pt;}
.wse{word-spacing:0.224640pt;}
.wsb{word-spacing:0.235520pt;}
.ws12{word-spacing:0.256000pt;}
.wsc{word-spacing:0.288000pt;}
.ws54{word-spacing:0.450560pt;}
.ws57{word-spacing:0.506880pt;}
.ws68{word-spacing:0.512000pt;}
.ws39{word-spacing:0.599040pt;}
.ws13{word-spacing:0.640000pt;}
.ws66{word-spacing:0.673920pt;}
.ws14{word-spacing:0.896000pt;}
.ws30{word-spacing:1.115520pt;}
.ws4a{word-spacing:1.126400pt;}
.ws55{word-spacing:1.182720pt;}
.ws21{word-spacing:1.280000pt;}
.ws2f{word-spacing:1.328000pt;}
.ws31{word-spacing:1.487360pt;}
.ws29{word-spacing:1.536000pt;}
.ws59{word-spacing:1.745920pt;}
.ws60{word-spacing:1.802240pt;}
.ws16{word-spacing:1.920000pt;}
.ws23{word-spacing:2.176000pt;}
.ws4b{word-spacing:2.365440pt;}
.ws35{word-spacing:2.390400pt;}
.ws1d{word-spacing:2.560000pt;}
.ws34{word-spacing:2.602880pt;}
.ws22{word-spacing:2.816000pt;}
.ws33{word-spacing:3.027840pt;}
.ws63{word-spacing:3.041280pt;}
.ws65{word-spacing:3.072000pt;}
.ws1e{word-spacing:3.200000pt;}
.ws1b{word-spacing:3.456000pt;}
.ws51{word-spacing:3.660800pt;}
.ws5a{word-spacing:3.712000pt;}
.ws1c{word-spacing:3.840000pt;}
.ws2e{word-spacing:3.877760pt;}
.ws24{word-spacing:4.096000pt;}
.ws64{word-spacing:4.336640pt;}
.ws49{word-spacing:4.480000pt;}
.ws15{word-spacing:4.736000pt;}
.ws3d{word-spacing:4.992000pt;}
.ws62{word-spacing:5.012480pt;}
.ws28{word-spacing:5.120000pt;}
.ws3b{word-spacing:5.376000pt;}
.ws5e{word-spacing:5.575680pt;}
.ws2d{word-spacing:5.760000pt;}
.ws43{word-spacing:6.016000pt;}
.ws50{word-spacing:6.251520pt;}
.ws5f{word-spacing:6.307840pt;}
.ws3e{word-spacing:6.400000pt;}
.ws5c{word-spacing:6.656000pt;}
.ws25{word-spacing:7.040000pt;}
.ws26{word-spacing:7.296000pt;}
.ws69{word-spacing:7.680000pt;}
.ws46{word-spacing:7.936000pt;}
.ws67{word-spacing:10.880000pt;}
.ws47{word-spacing:14.976000pt;}
._4{margin-left:-3.470400pt;}
._7{margin-left:-2.176000pt;}
._2{margin-left:-0.945600pt;}
._3{width:0.933760pt;}
._6{width:1.841280pt;}
._5{width:3.252480pt;}
._9{width:6.568960pt;}
._1{width:83.856000pt;}
._0{width:650.256000pt;}
._8{width:752.000000pt;}
.fs9{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs6{font-size:69.120000pt;}
.fs7{font-size:72.320000pt;}
.fs5{font-size:74.880000pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:14.240000pt;}
.ycc{bottom:64.640000pt;}
.y5{bottom:71.040000pt;}
.y4{bottom:100.160000pt;}
.y6{bottom:101.120000pt;}
.y3{bottom:129.280000pt;}
.y55{bottom:147.015200pt;}
.yfa{bottom:151.200000pt;}
.y2d{bottom:154.240000pt;}
.y11d{bottom:154.720000pt;}
.y18d{bottom:155.360000pt;}
.y1a5{bottom:155.520000pt;}
.y54{bottom:162.380160pt;}
.y153{bottom:168.320000pt;}
.yf9{bottom:172.320000pt;}
.ybd{bottom:173.280000pt;}
.y13b{bottom:173.600000pt;}
.y9f{bottom:174.880000pt;}
.y53{bottom:177.745120pt;}
.ydd{bottom:179.520000pt;}
.y176{bottom:183.040000pt;}
.y2c{bottom:183.360000pt;}
.y11c{bottom:184.000000pt;}
.y18c{bottom:184.640000pt;}
.y152{bottom:189.440000pt;}
.y52{bottom:193.110080pt;}
.y13a{bottom:194.720000pt;}
.y7a{bottom:195.039867pt;}
.y9e{bottom:196.000000pt;}
.ydc{bottom:200.640000pt;}
.yf8{bottom:201.600000pt;}
.y175{bottom:204.160000pt;}
.y2b{bottom:204.480000pt;}
.y18b{bottom:205.760000pt;}
.y51{bottom:208.475040pt;}
.y11b{bottom:213.120000pt;}
.y1a4{bottom:213.920000pt;}
.y139{bottom:215.840000pt;}
.y9d{bottom:217.280000pt;}
.y151{bottom:218.720000pt;}
.ydb{bottom:221.920000pt;}
.yf7{bottom:222.720000pt;}
.yc5{bottom:223.520000pt;}
.y79{bottom:224.319867pt;}
.y174{bottom:225.280000pt;}
.y50{bottom:228.480000pt;}
.y2a{bottom:233.760000pt;}
.y18a{bottom:234.880000pt;}
.y138{bottom:236.960000pt;}
.y9c{bottom:238.400000pt;}
.y150{bottom:239.840000pt;}
.y11a{bottom:242.240000pt;}
.y1a3{bottom:243.040000pt;}
.yf6{bottom:243.840000pt;}
.y78{bottom:245.439867pt;}
.y173{bottom:246.400000pt;}
.yda{bottom:249.920000pt;}
.y4f{bottom:250.560000pt;}
.y29{bottom:254.880000pt;}
.y189{bottom:256.000000pt;}
.y9b{bottom:259.520000pt;}
.y14f{bottom:260.960000pt;}
.ycf{bottom:262.720000pt;}
.y119{bottom:263.360000pt;}
.y1a2{bottom:264.160000pt;}
.y137{bottom:266.240000pt;}
.y77{bottom:266.559867pt;}
.y172{bottom:267.680000pt;}
.y4e{bottom:268.960000pt;}
.yf5{bottom:272.960000pt;}
.y28{bottom:276.000000pt;}
.yd9{bottom:276.960000pt;}
.y9a{bottom:280.640000pt;}
.y14e{bottom:282.080000pt;}
.y118{bottom:284.640000pt;}
.y188{bottom:285.280000pt;}
.y76{bottom:287.679867pt;}
.yb8{bottom:288.000000pt;}
.y1a1{bottom:293.280000pt;}
.yf4{bottom:294.240000pt;}
.y136{bottom:294.881280pt;}
.y171{bottom:296.800000pt;}
.y27{bottom:297.120000pt;}
.y99{bottom:301.920000pt;}
.y117{bottom:305.760000pt;}
.yd8{bottom:306.080000pt;}
.y187{bottom:306.400000pt;}
.y75{bottom:308.959867pt;}
.y14d{bottom:311.360000pt;}
.y135{bottom:313.114880pt;}
.y1a0{bottom:314.560000pt;}
.yf3{bottom:315.360000pt;}
.yb7{bottom:317.280000pt;}
.y26{bottom:318.400000pt;}
.y98{bottom:323.040000pt;}
.y170{bottom:325.920000pt;}
.y116{bottom:326.880000pt;}
.yd7{bottom:327.360000pt;}
.y186{bottom:327.520000pt;}
.y134{bottom:331.517440pt;}
.y19f{bottom:335.680000pt;}
.y4d{bottom:335.840000pt;}
.yf2{bottom:336.480000pt;}
.y74{bottom:338.079867pt;}
.y25{bottom:339.520000pt;}
.y14c{bottom:339.827200pt;}
.y97{bottom:344.160000pt;}
.yb6{bottom:346.400000pt;}
.y16f{bottom:347.040000pt;}
.y133{bottom:349.920000pt;}
.y115{bottom:355.521280pt;}
.yd6{bottom:356.480000pt;}
.y185{bottom:356.640000pt;}
.y19e{bottom:356.800000pt;}
.y4c{bottom:356.960000pt;}
.yf1{bottom:357.600000pt;}
.y14b{bottom:358.229760pt;}
.y73{bottom:359.199867pt;}
.y24{bottom:360.640000pt;}
.y96{bottom:365.280000pt;}
.yb5{bottom:367.520000pt;}
.y16e{bottom:368.160000pt;}
.yd3{bottom:369.600000pt;}
.y114{bottom:373.923840pt;}
.y14a{bottom:376.632320pt;}
.y132{bottom:376.800000pt;}
.yd5{bottom:377.600000pt;}
.y184{bottom:377.760000pt;}
.y19d{bottom:377.920000pt;}
.y4b{bottom:378.240000pt;}
.yf0{bottom:378.720000pt;}
.y72{bottom:380.319867pt;}
.y23{bottom:381.760000pt;}
.y95{bottom:386.560000pt;}
.yb4{bottom:388.640000pt;}
.y16d{bottom:389.440000pt;}
.y113{bottom:392.157440pt;}
.y149{bottom:395.034880pt;}
.y131{bottom:397.920000pt;}
.yd2{bottom:398.720000pt;}
.y4a{bottom:399.360000pt;}
.yef{bottom:400.000000pt;}
.y71{bottom:401.599867pt;}
.yd4{bottom:406.720000pt;}
.y183{bottom:407.040000pt;}
.y19c{bottom:407.200000pt;}
.y112{bottom:410.560000pt;}
.y22{bottom:411.040000pt;}
.y148{bottom:413.437440pt;}
.y94{bottom:415.680000pt;}
.yb3{bottom:417.760000pt;}
.y130{bottom:419.200000pt;}
.y49{bottom:420.480000pt;}
.y70{bottom:422.719867pt;}
.yd1{bottom:428.000000pt;}
.y182{bottom:428.160000pt;}
.y19b{bottom:428.320000pt;}
.yee{bottom:429.120000pt;}
.y16c{bottom:431.680000pt;}
.y147{bottom:431.840000pt;}
.y93{bottom:436.800000pt;}
.y111{bottom:437.600000pt;}
.yb2{bottom:439.040000pt;}
.y21{bottom:440.160000pt;}
.y12f{bottom:440.320000pt;}
.y48{bottom:441.600000pt;}
.y6f{bottom:443.839867pt;}
.y16b{bottom:452.800000pt;}
.yd0{bottom:457.120000pt;}
.y181{bottom:457.280000pt;}
.y19a{bottom:457.440000pt;}
.yed{bottom:457.761280pt;}
.y92{bottom:457.920000pt;}
.y110{bottom:458.720000pt;}
.yb1{bottom:460.160000pt;}
.y47{bottom:462.880000pt;}
.y20{bottom:469.280000pt;}
.y12e{bottom:469.440000pt;}
.y6e{bottom:472.959867pt;}
.y16a{bottom:474.080000pt;}
.yec{bottom:476.163840pt;}
.y180{bottom:478.400000pt;}
.y91{bottom:479.200000pt;}
.y10f{bottom:479.840000pt;}
.yb0{bottom:481.280000pt;}
.y199{bottom:486.560000pt;}
.y1f{bottom:490.400000pt;}
.y12d{bottom:490.560000pt;}
.y46{bottom:492.000000pt;}
.y6d{bottom:494.239867pt;}
.yeb{bottom:494.397440pt;}
.y90{bottom:500.320000pt;}
.y10e{bottom:500.960000pt;}
.yc4{bottom:501.440000pt;}
.yaf{bottom:502.400000pt;}
.y169{bottom:503.200000pt;}
.y17f{bottom:507.680000pt;}
.y12c{bottom:511.840000pt;}
.yea{bottom:512.800000pt;}
.y45{bottom:513.120000pt;}
.y6c{bottom:515.359867pt;}
.yce{bottom:515.680000pt;}
.y1e{bottom:519.680000pt;}
.y8f{bottom:521.440000pt;}
.y10d{bottom:522.080000pt;}
.yae{bottom:523.680000pt;}
.y168{bottom:524.320000pt;}
.y12b{bottom:532.960000pt;}
.y44{bottom:534.240000pt;}
.y6b{bottom:536.479867pt;}
.y17e{bottom:536.800000pt;}
.y198{bottom:536.960000pt;}
.ye9{bottom:539.680000pt;}
.y1d{bottom:540.800000pt;}
.y8e{bottom:542.560000pt;}
.y10c{bottom:543.360000pt;}
.yad{bottom:544.800000pt;}
.ycd{bottom:544.960000pt;}
.y167{bottom:545.440000pt;}
.y12a{bottom:554.080000pt;}
.y43{bottom:555.520000pt;}
.y6a{bottom:557.599867pt;}
.y17d{bottom:557.920000pt;}
.ye8{bottom:560.960000pt;}
.y1c{bottom:561.920000pt;}
.y8d{bottom:563.680000pt;}
.y146{bottom:564.480000pt;}
.ycb{bottom:566.080000pt;}
.y166{bottom:566.720000pt;}
.y10b{bottom:572.003840pt;}
.yac{bottom:573.920000pt;}
.y129{bottom:575.200000pt;}
.y42{bottom:576.640000pt;}
.y69{bottom:578.719867pt;}
.ye7{bottom:582.080000pt;}
.y1b{bottom:583.040000pt;}
.y8c{bottom:584.960000pt;}
.y17c{bottom:587.040000pt;}
.y197{bottom:587.200000pt;}
.y165{bottom:587.840000pt;}
.y10a{bottom:590.237440pt;}
.y145{bottom:593.116160pt;}
.yab{bottom:595.040000pt;}
.yca{bottom:595.200000pt;}
.y128{bottom:596.480000pt;}
.y68{bottom:599.999867pt;}
.ye6{bottom:603.200000pt;}
.y1a{bottom:604.320000pt;}
.y41{bottom:605.760000pt;}
.y8b{bottom:606.080000pt;}
.y17b{bottom:608.320000pt;}
.y109{bottom:608.640000pt;}
.y164{bottom:608.960000pt;}
.y144{bottom:611.518720pt;}
.yaa{bottom:616.320000pt;}
.y67{bottom:621.119867pt;}
.y127{bottom:624.952320pt;}
.y19{bottom:625.440000pt;}
.y40{bottom:626.880000pt;}
.y8a{bottom:627.200000pt;}
.y17a{bottom:629.440000pt;}
.y143{bottom:629.752320pt;}
.y163{bottom:630.080000pt;}
.ye5{bottom:632.320000pt;}
.y108{bottom:635.520000pt;}
.ya9{bottom:637.440000pt;}
.y196{bottom:637.600000pt;}
.y66{bottom:642.239867pt;}
.y126{bottom:643.354880pt;}
.yc9{bottom:645.600000pt;}
.y18{bottom:646.560000pt;}
.y142{bottom:648.154880pt;}
.y3f{bottom:648.160000pt;}
.y89{bottom:656.320000pt;}
.y107{bottom:656.800000pt;}
.y162{bottom:656.960000pt;}
.y179{bottom:658.560000pt;}
.y195{bottom:658.720000pt;}
.ye4{bottom:661.600000pt;}
.y125{bottom:661.757440pt;}
.y141{bottom:666.557440pt;}
.ya8{bottom:666.560000pt;}
.yc7{bottom:666.720000pt;}
.y17{bottom:667.680000pt;}
.y3e{bottom:669.280000pt;}
.y65{bottom:671.359867pt;}
.yc8{bottom:674.720000pt;}
.y88{bottom:677.600000pt;}
.y106{bottom:677.920000pt;}
.y124{bottom:680.160000pt;}
.y140{bottom:684.960000pt;}
.y178{bottom:685.440000pt;}
.ya7{bottom:687.680000pt;}
.y194{bottom:687.840000pt;}
.y3d{bottom:690.400000pt;}
.ye3{bottom:690.720000pt;}
.y64{bottom:692.639867pt;}
.yc6{bottom:695.840000pt;}
.y16{bottom:696.800000pt;}
.y87{bottom:698.720000pt;}
.y105{bottom:699.040000pt;}
.y161{bottom:699.360000pt;}
.y123{bottom:707.040000pt;}
.ya6{bottom:708.960000pt;}
.y3c{bottom:711.520000pt;}
.ye2{bottom:711.840000pt;}
.y63{bottom:713.759867pt;}
.y15{bottom:715.680000pt;}
.y104{bottom:720.160000pt;}
.y160{bottom:720.640000pt;}
.y86{bottom:727.840000pt;}
.y122{bottom:728.160000pt;}
.ya5{bottom:730.080000pt;}
.y3b{bottom:732.640000pt;}
.ye1{bottom:732.960000pt;}
.y14{bottom:736.000000pt;}
.y193{bottom:738.240000pt;}
.ybc{bottom:740.160000pt;}
.y62{bottom:740.645600pt;}
.y103{bottom:741.440000pt;}
.y15f{bottom:741.760000pt;}
.y85{bottom:748.960000pt;}
.y121{bottom:749.440000pt;}
.ya4{bottom:751.200000pt;}
.ye0{bottom:754.240000pt;}
.y13{bottom:754.400000pt;}
.yc3{bottom:754.560000pt;}
.y192{bottom:759.360000pt;}
.y3a{bottom:761.920000pt;}
.y61{bottom:762.080000pt;}
.y15e{bottom:762.880000pt;}
.y84{bottom:770.240000pt;}
.y102{bottom:770.560000pt;}
.ya3{bottom:772.320000pt;}
.y12{bottom:772.800000pt;}
.y13f{bottom:775.360000pt;}
.yc2{bottom:775.680000pt;}
.y39{bottom:783.040000pt;}
.ydf{bottom:783.360000pt;}
.y15d{bottom:784.000000pt;}
.y191{bottom:788.480000pt;}
.y83{bottom:791.360000pt;}
.y101{bottom:791.680000pt;}
.y11{bottom:792.800000pt;}
.ya2{bottom:793.600000pt;}
.y13e{bottom:796.480000pt;}
.y38{bottom:804.160000pt;}
.y60{bottom:804.480000pt;}
.yc1{bottom:804.800000pt;}
.y190{bottom:809.600000pt;}
.y10{bottom:812.480000pt;}
.y15c{bottom:812.637440pt;}
.y100{bottom:812.800000pt;}
.ya1{bottom:814.720000pt;}
.y37{bottom:825.280000pt;}
.y5f{bottom:825.600000pt;}
.y15b{bottom:831.040000pt;}
.y82{bottom:833.600000pt;}
.yc0{bottom:833.920000pt;}
.yff{bottom:834.080000pt;}
.yf{bottom:834.880000pt;}
.y18f{bottom:838.880000pt;}
.ya0{bottom:841.600000pt;}
.y36{bottom:846.560000pt;}
.y5e{bottom:846.880000pt;}
.y81{bottom:854.880000pt;}
.ybf{bottom:855.200000pt;}
.ye{bottom:857.280000pt;}
.y15a{bottom:857.920000pt;}
.y18e{bottom:860.000000pt;}
.y35{bottom:867.680000pt;}
.y5d{bottom:868.000000pt;}
.y177{bottom:876.000000pt;}
.yfe{bottom:876.320000pt;}
.y159{bottom:879.040000pt;}
.y120{bottom:883.843840pt;}
.y80{bottom:884.000000pt;}
.ybe{bottom:884.320000pt;}
.y5c{bottom:889.120000pt;}
.yd{bottom:895.363200pt;}
.y34{bottom:896.800000pt;}
.yde{bottom:897.120000pt;}
.y158{bottom:900.320000pt;}
.y11f{bottom:902.077440pt;}
.yfd{bottom:904.954880pt;}
.y7f{bottom:905.120000pt;}
.y13d{bottom:910.240000pt;}
.yc{bottom:916.479360pt;}
.y33{bottom:917.920000pt;}
.y5b{bottom:918.240000pt;}
.y11e{bottom:920.480000pt;}
.yfc{bottom:923.357440pt;}
.y7e{bottom:926.240000pt;}
.y157{bottom:928.961280pt;}
.ybb{bottom:930.400000pt;}
.y13c{bottom:931.520000pt;}
.yb{bottom:937.440000pt;}
.y32{bottom:939.200000pt;}
.y5a{bottom:939.520000pt;}
.yfb{bottom:941.760000pt;}
.y156{bottom:947.194880pt;}
.y7d{bottom:947.520000pt;}
.y31{bottom:960.320000pt;}
.y59{bottom:960.640000pt;}
.y155{bottom:965.597440pt;}
.y7c{bottom:968.640000pt;}
.yba{bottom:973.760000pt;}
.y30{bottom:981.440000pt;}
.y58{bottom:981.760000pt;}
.ya{bottom:982.707840pt;}
.y154{bottom:984.000000pt;}
.y7b{bottom:989.760000pt;}
.y2f{bottom:1002.560000pt;}
.yb9{bottom:1002.880000pt;}
.y9{bottom:1005.433920pt;}
.y57{bottom:1010.880000pt;}
.y8{bottom:1028.160000pt;}
.y2e{bottom:1029.440000pt;}
.y56{bottom:1032.160000pt;}
.y2{bottom:1074.244000pt;}
.y1{bottom:1089.760000pt;}
.he{height:24.013125pt;}
.h5{height:29.118667pt;}
.h12{height:29.120000pt;}
.hf{height:36.909063pt;}
.h10{height:38.128125pt;}
.h3{height:42.246500pt;}
.h9{height:43.471250pt;}
.hb{height:43.812500pt;}
.h11{height:44.437500pt;}
.h4{height:44.468750pt;}
.h16{height:48.262500pt;}
.ha{height:50.249687pt;}
.h8{height:52.375000pt;}
.hd{height:54.114063pt;}
.hc{height:54.514687pt;}
.h7{height:56.565000pt;}
.h6{height:61.278750pt;}
.h2{height:67.200000pt;}
.h13{height:188.160000pt;}
.h14{height:238.398667pt;}
.h15{height:238.400000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:26.561333pt;}
.w5{width:103.520000pt;}
.w3{width:103.680000pt;}
.w6{width:462.400000pt;}
.w4{width:462.560000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:7.200000pt;}
.x18{left:12.320000pt;}
.x4{left:113.440000pt;}
.x16{left:120.640000pt;}
.x1{left:123.680000pt;}
.x6{left:146.080000pt;}
.x19{left:160.640000pt;}
.x15{left:183.200000pt;}
.x14{left:217.120000pt;}
.x17{left:224.320000pt;}
.xa{left:233.275520pt;}
.x9{left:262.392320pt;}
.x3{left:264.160000pt;}
.x12{left:305.440000pt;}
.x8{left:358.400000pt;}
.x7{left:367.837120pt;}
.x5{left:414.880000pt;}
.x10{left:443.680000pt;}
.x2{left:473.432000pt;}
.x11{left:494.240000pt;}
.xb{left:519.040000pt;}
.xc{left:535.680000pt;}
.xe{left:546.720000pt;}
.xd{left:549.440000pt;}
.xf{left:736.960000pt;}
}




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