
    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_1cfd0207719093862dc9cbbb.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_b3b806b3d9c1f5a246098a7e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.677246;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_74996a24730854cabb91ea55.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_c6018d59571b76d14dc43191.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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);}
.v1{vertical-align:-73.442760px;}
.v2{vertical-align:-69.120240px;}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-0.144288px;}
.ls1b{letter-spacing:-0.101603px;}
.ls18{letter-spacing:-0.054108px;}
.lsa{letter-spacing:-0.042084px;}
.ls11{letter-spacing:-0.030060px;}
.ls16{letter-spacing:-0.024048px;}
.ls14{letter-spacing:-0.018637px;}
.ls9{letter-spacing:-0.012024px;}
.ls17{letter-spacing:-0.006613px;}
.ls8{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.006613px;}
.ls6{letter-spacing:0.012024px;}
.ls0{letter-spacing:0.018637px;}
.ls7{letter-spacing:0.024048px;}
.ls3{letter-spacing:0.030060px;}
.ls2{letter-spacing:0.036072px;}
.ls4{letter-spacing:0.042084px;}
.ls1{letter-spacing:0.047495px;}
.ls5{letter-spacing:0.054108px;}
.lsc{letter-spacing:0.060721px;}
.lse{letter-spacing:0.066132px;}
.ls13{letter-spacing:0.114829px;}
.ls12{letter-spacing:0.132264px;}
.ls10{letter-spacing:0.144288px;}
.ls19{letter-spacing:0.158400px;}
.ls1a{letter-spacing:192.398400px;}
.ls15{letter-spacing:195.696612px;}
.lsf{letter-spacing:1087.408680px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-60.120000px;}
.ws29{word-spacing:-16.857648px;}
.ws3b{word-spacing:-16.845624px;}
.ws3c{word-spacing:-16.828189px;}
.ws39{word-spacing:-16.755444px;}
.ws3a{word-spacing:-16.737408px;}
.ws6a{word-spacing:-0.541080px;}
.ws9e{word-spacing:-0.198396px;}
.ws4{word-spacing:-0.192384px;}
.ws2f{word-spacing:-0.186372px;}
.ws2{word-spacing:-0.180961px;}
.ws14{word-spacing:-0.174348px;}
.ws1a{word-spacing:-0.168937px;}
.ws1{word-spacing:-0.162324px;}
.ws15{word-spacing:-0.155711px;}
.ws2a{word-spacing:-0.150300px;}
.ws11{word-spacing:-0.144288px;}
.ws62{word-spacing:-0.138276px;}
.ws3{word-spacing:-0.132264px;}
.ws54{word-spacing:-0.126853px;}
.ws58{word-spacing:-0.120240px;}
.ws5{word-spacing:-0.101603px;}
.ws9f{word-spacing:-0.042084px;}
.ws6{word-spacing:0.000000px;}
.ws5e{word-spacing:0.150300px;}
.ws19{word-spacing:0.162324px;}
.ws26{word-spacing:0.168937px;}
.ws25{word-spacing:0.180961px;}
.ws5f{word-spacing:0.192384px;}
.ws84{word-spacing:0.198396px;}
.ws20{word-spacing:0.523044px;}
.ws5a{word-spacing:0.529056px;}
.ws4d{word-spacing:0.535068px;}
.ws92{word-spacing:0.541080px;}
.wsac{word-spacing:0.546491px;}
.wsab{word-spacing:0.889776px;}
.ws94{word-spacing:0.908413px;}
.ws34{word-spacing:0.913824px;}
.wsbb{word-spacing:0.931860px;}
.ws82{word-spacing:1.245085px;}
.wsb7{word-spacing:1.250496px;}
.ws81{word-spacing:1.256508px;}
.ws93{word-spacing:1.262520px;}
.ws40{word-spacing:1.273943px;}
.ws3f{word-spacing:1.605204px;}
.ws18{word-spacing:1.617228px;}
.ws22{word-spacing:1.647288px;}
.ws85{word-spacing:1.953900px;}
.ws7d{word-spacing:1.965924px;}
.wsa9{word-spacing:1.977948px;}
.ws21{word-spacing:1.983960px;}
.wsaa{word-spacing:2.008008px;}
.ws4a{word-spacing:2.320632px;}
.ws7c{word-spacing:2.344680px;}
.ws38{word-spacing:2.363317px;}
.ws17{word-spacing:2.674739px;}
.ws49{word-spacing:2.686763px;}
.ws46{word-spacing:2.693376px;}
.ws37{word-spacing:2.699989px;}
.ws95{word-spacing:2.705400px;}
.ws45{word-spacing:2.711412px;}
.ws16{word-spacing:3.042072px;}
.wsb0{word-spacing:3.054096px;}
.wsb1{word-spacing:3.060108px;}
.ws9b{word-spacing:3.065519px;}
.wsb5{word-spacing:3.402191px;}
.ws73{word-spacing:3.408804px;}
.wsb4{word-spacing:3.414215px;}
.wsaf{word-spacing:3.427441px;}
.ws79{word-spacing:3.432852px;}
.ws72{word-spacing:3.439465px;}
.ws56{word-spacing:3.769524px;}
.ws7e{word-spacing:3.781548px;}
.ws60{word-spacing:3.793572px;}
.ws98{word-spacing:3.804995px;}
.ws65{word-spacing:4.136256px;}
.ws55{word-spacing:4.141667px;}
.wsa1{word-spacing:4.148280px;}
.ws4c{word-spacing:4.154893px;}
.ws4b{word-spacing:4.496976px;}
.ws99{word-spacing:4.509000px;}
.ws8{word-spacing:4.845672px;}
.ws42{word-spacing:4.857696px;}
.ws7a{word-spacing:4.863708px;}
.ws2b{word-spacing:5.200380px;}
.ws83{word-spacing:5.219017px;}
.ws41{word-spacing:5.224428px;}
.ws88{word-spacing:5.555689px;}
.ws61{word-spacing:5.573124px;}
.ws1d{word-spacing:5.609797px;}
.ws1b{word-spacing:5.927832px;}
.ws7f{word-spacing:5.933243px;}
.ws1c{word-spacing:5.951880px;}
.ws57{word-spacing:6.283141px;}
.wsa0{word-spacing:6.306588px;}
.ws69{word-spacing:6.312600px;}
.ws8d{word-spacing:6.655284px;}
.ws5c{word-spacing:6.660695px;}
.wsb8{word-spacing:7.022617px;}
.ws10{word-spacing:7.058088px;}
.ws64{word-spacing:7.364700px;}
.ws67{word-spacing:7.370712px;}
.wse{word-spacing:7.382736px;}
.wsf{word-spacing:7.388147px;}
.ws66{word-spacing:7.394760px;}
.ws5d{word-spacing:7.724819px;}
.ws31{word-spacing:7.731432px;}
.ws30{word-spacing:7.743456px;}
.ws63{word-spacing:7.750069px;}
.ws3d{word-spacing:7.755480px;}
.wsb3{word-spacing:8.092152px;}
.wsa4{word-spacing:8.104176px;}
.wsb2{word-spacing:8.458884px;}
.ws86{word-spacing:8.788943px;}
.ws5b{word-spacing:8.814193px;}
.ws75{word-spacing:8.831628px;}
.ws74{word-spacing:9.162288px;}
.ws70{word-spacing:9.528419px;}
.ws71{word-spacing:9.535032px;}
.ws8f{word-spacing:9.547056px;}
.ws90{word-spacing:9.565092px;}
.ws8e{word-spacing:9.570503px;}
.wsa{word-spacing:9.901764px;}
.wsb{word-spacing:9.932425px;}
.ws32{word-spacing:10.250460px;}
.ws6b{word-spacing:10.262484px;}
.ws33{word-spacing:10.269097px;}
.ws9{word-spacing:10.274508px;}
.ws44{word-spacing:10.599156px;}
.ws6f{word-spacing:10.635228px;}
.ws6e{word-spacing:10.977912px;}
.ws23{word-spacing:10.983323px;}
.ws43{word-spacing:10.996549px;}
.ws78{word-spacing:11.326608px;}
.wsba{word-spacing:11.333221px;}
.ws77{word-spacing:11.345245px;}
.ws50{word-spacing:11.693340px;}
.ws48{word-spacing:11.705364px;}
.ws47{word-spacing:11.717388px;}
.ws2d{word-spacing:12.060673px;}
.wsa6{word-spacing:12.066084px;}
.ws59{word-spacing:12.078108px;}
.ws68{word-spacing:12.426804px;}
.wsa5{word-spacing:12.432816px;}
.ws2e{word-spacing:12.781512px;}
.ws7b{word-spacing:12.788125px;}
.ws52{word-spacing:13.142232px;}
.ws1f{word-spacing:13.148244px;}
.ws1e{word-spacing:13.508964px;}
.ws6c{word-spacing:13.845636px;}
.wsb9{word-spacing:13.851047px;}
.ws6d{word-spacing:13.864273px;}
.ws91{word-spacing:14.566475px;}
.wsa3{word-spacing:14.585112px;}
.wsa2{word-spacing:14.939820px;}
.ws87{word-spacing:14.945832px;}
.ws51{word-spacing:15.655849px;}
.ws53{word-spacing:15.661260px;}
.wsa7{word-spacing:16.040016px;}
.wsa8{word-spacing:16.046629px;}
.ws28{word-spacing:16.352640px;}
.wsae{word-spacing:16.743420px;}
.ws2c{word-spacing:16.748831px;}
.ws27{word-spacing:16.760855px;}
.ws80{word-spacing:17.092116px;}
.wsad{word-spacing:17.097527px;}
.wsd{word-spacing:17.128188px;}
.wsc{word-spacing:17.476884px;}
.ws7{word-spacing:17.807544px;}
.ws76{word-spacing:18.161651px;}
.ws24{word-spacing:18.547020px;}
.ws4f{word-spacing:18.552431px;}
.ws8b{word-spacing:19.251025px;}
.ws9d{word-spacing:19.953227px;}
.wsb6{word-spacing:20.001924px;}
.ws9c{word-spacing:20.344007px;}
.ws89{word-spacing:21.396708px;}
.ws8a{word-spacing:21.408131px;}
.wsbc{word-spacing:23.567040px;}
.ws36{word-spacing:23.573653px;}
.ws4e{word-spacing:23.579064px;}
.ws35{word-spacing:23.933772px;}
.ws8c{word-spacing:24.294492px;}
.ws3e{word-spacing:25.003307px;}
.ws13{word-spacing:27.534359px;}
.ws12{word-spacing:27.889668px;}
.ws96{word-spacing:28.965816px;}
.ws97{word-spacing:28.971828px;}
.ws9a{word-spacing:40.508856px;}
._3{margin-left:-6.492960px;}
._4{margin-left:-4.689360px;}
._1{margin-left:-1.082160px;}
._0{width:1.082160px;}
._5{width:84.956576px;}
._6{width:571.273152px;}
._2{width:809.913720px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.880000px;}
.fs0{font-size:60.120000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y5a{bottom:112.620600px;}
.y7f{bottom:112.800240px;}
.ye2{bottom:118.110195px;}
.y179{bottom:119.729670px;}
.y3b{bottom:122.071035px;}
.y135{bottom:122.250795px;}
.yff{bottom:122.430585px;}
.ya6{bottom:125.670450px;}
.y59{bottom:126.480450px;}
.y152{bottom:126.749925px;}
.y7e{bottom:130.080300px;}
.ye1{bottom:135.390270px;}
.y178{bottom:137.099850px;}
.yfe{bottom:139.710645px;}
.y3a{bottom:142.770930px;}
.y134{bottom:142.950690px;}
.y151{bottom:144.029985px;}
.y7d{bottom:147.360345px;}
.ye0{bottom:152.760468px;}
.y177{bottom:154.379910px;}
.yfd{bottom:156.990720px;}
.y150{bottom:157.800450px;}
.y39{bottom:163.470825px;}
.y133{bottom:163.650585px;}
.y7c{bottom:164.640420px;}
.ydf{bottom:169.950429px;}
.y176{bottom:171.569850px;}
.yfc{bottom:174.090270px;}
.y7b{bottom:181.830345px;}
.y38{bottom:184.170705px;}
.y132{bottom:184.350465px;}
.yde{bottom:187.230420px;}
.y175{bottom:188.849895px;}
.yfb{bottom:191.460450px;}
.y7a{bottom:199.110390px;}
.ydd{bottom:204.510495px;}
.y37{bottom:204.870600px;}
.y131{bottom:205.140450px;}
.y174{bottom:206.129955px;}
.yfa{bottom:208.740525px;}
.y79{bottom:216.390465px;}
.ydc{bottom:221.610060px;}
.y173{bottom:223.319895px;}
.y36{bottom:224.849952px;}
.y130{bottom:225.210600px;}
.yf9{bottom:225.930450px;}
.y78{bottom:233.580390px;}
.ydb{bottom:238.980240px;}
.y172{bottom:240.599940px;}
.y35{bottom:242.129943px;}
.y12f{bottom:243.120600px;}
.yf8{bottom:243.840390px;}
.y77{bottom:250.860450px;}
.yda{bottom:256.260434px;}
.y171{bottom:257.880000px;}
.y34{bottom:259.319904px;}
.yf7{bottom:260.490435px;}
.y12e{bottom:263.100375px;}
.y76{bottom:268.140525px;}
.yd9{bottom:273.450396px;}
.y170{bottom:275.069940px;}
.y33{bottom:276.599895px;}
.y12d{bottom:280.380435px;}
.y75{bottom:285.330435px;}
.yd8{bottom:290.730387px;}
.y16f{bottom:292.349985px;}
.y32{bottom:293.879955px;}
.ya5{bottom:293.880540px;}
.y12c{bottom:297.570429px;}
.y74{bottom:302.610420px;}
.y16e{bottom:306.210600px;}
.yd7{bottom:307.920348px;}
.y31{bottom:311.070051px;}
.ya4{bottom:314.580435px;}
.y12b{bottom:314.850420px;}
.y73{bottom:319.890495px;}
.yd6{bottom:325.200339px;}
.y30{bottom:328.350042px;}
.y12a{bottom:332.130480px;}
.ya3{bottom:334.650300px;}
.y72{bottom:337.080420px;}
.yd5{bottom:342.480330px;}
.y2f{bottom:345.630033px;}
.y129{bottom:349.320543px;}
.ya2{bottom:351.930360px;}
.y71{bottom:354.360465px;}
.yd4{bottom:359.670270px;}
.y2e{bottom:362.819994px;}
.y128{bottom:366.600534px;}
.ya1{bottom:369.120300px;}
.y70{bottom:371.640540px;}
.yd3{bottom:376.860195px;}
.y2d{bottom:380.099985px;}
.y127{bottom:383.880525px;}
.ya0{bottom:386.400345px;}
.y6f{bottom:388.830435px;}
.yd2{bottom:394.230375px;}
.y2c{bottom:397.380045px;}
.y126{bottom:401.070465px;}
.y9f{bottom:403.680405px;}
.y6e{bottom:406.110495px;}
.yd1{bottom:411.420384px;}
.y2b{bottom:414.570126px;}
.y58{bottom:416.190450px;}
.y16d{bottom:416.820060px;}
.y125{bottom:418.350510px;}
.y9e{bottom:420.870345px;}
.y14f{bottom:423.389625px;}
.y6d{bottom:423.390540px;}
.yd0{bottom:428.700375px;}
.y2a{bottom:431.850117px;}
.y16c{bottom:434.100105px;}
.y124{bottom:435.540435px;}
.y57{bottom:435.540570px;}
.y9d{bottom:438.150405px;}
.y6c{bottom:440.580480px;}
.y14e{bottom:440.669685px;}
.ycf{bottom:445.980420px;}
.y29{bottom:449.130108px;}
.y16b{bottom:451.290030px;}
.y123{bottom:452.730375px;}
.y9c{bottom:455.340315px;}
.y14d{bottom:457.859595px;}
.y6b{bottom:457.860540px;}
.yce{bottom:463.080000px;}
.y28{bottom:466.320069px;}
.y56{bottom:468.390360px;}
.y16a{bottom:468.570105px;}
.y122{bottom:470.010435px;}
.yf6{bottom:471.630435px;}
.y9b{bottom:472.620375px;}
.y6a{bottom:475.050450px;}
.y14c{bottom:475.139670px;}
.ycd{bottom:480.450195px;}
.y27{bottom:483.600060px;}
.y169{bottom:485.669655px;}
.y55{bottom:485.670435px;}
.y121{bottom:487.380615px;}
.y9a{bottom:489.900450px;}
.yf5{bottom:491.700420px;}
.y69{bottom:492.330525px;}
.y14b{bottom:492.419730px;}
.ycc{bottom:497.730288px;}
.y26{bottom:500.880135px;}
.y54{bottom:502.950480px;}
.y168{bottom:503.039835px;}
.y120{bottom:504.570540px;}
.y99{bottom:507.180495px;}
.yf4{bottom:508.980465px;}
.y14a{bottom:509.609640px;}
.y68{bottom:509.610345px;}
.ycb{bottom:514.920249px;}
.y25{bottom:518.070060px;}
.y53{bottom:520.140405px;}
.y167{bottom:520.319910px;}
.y11f{bottom:521.850615px;}
.y98{bottom:524.370420px;}
.yf3{bottom:526.170390px;}
.y67{bottom:526.800300px;}
.y149{bottom:526.889715px;}
.yca{bottom:532.200240px;}
.y24{bottom:535.350105px;}
.y52{bottom:537.420480px;}
.y166{bottom:537.509835px;}
.y11e{bottom:539.130660px;}
.y97{bottom:541.650495px;}
.yf2{bottom:543.450465px;}
.y66{bottom:544.080345px;}
.y148{bottom:544.169775px;}
.yc9{bottom:549.480285px;}
.y165{bottom:551.370435px;}
.y23{bottom:552.540045px;}
.y51{bottom:554.700525px;}
.y11d{bottom:556.320585px;}
.y96{bottom:558.930540px;}
.yf1{bottom:560.730510px;}
.y147{bottom:561.359685px;}
.y65{bottom:561.360390px;}
.yc8{bottom:566.670348px;}
.y22{bottom:569.820105px;}
.y50{bottom:571.890450px;}
.y11c{bottom:573.600660px;}
.y95{bottom:576.120465px;}
.yf0{bottom:577.920435px;}
.y64{bottom:578.550315px;}
.y146{bottom:578.639745px;}
.yc7{bottom:583.950339px;}
.y21{bottom:587.100150px;}
.y4f{bottom:589.170525px;}
.y11b{bottom:590.880705px;}
.y94{bottom:593.400540px;}
.yef{bottom:595.200510px;}
.y145{bottom:595.829685px;}
.y63{bottom:595.830390px;}
.yc6{bottom:601.230330px;}
.y20{bottom:604.290159px;}
.y4e{bottom:606.360450px;}
.y11a{bottom:608.070630px;}
.y93{bottom:610.590450px;}
.yee{bottom:612.390420px;}
.y144{bottom:613.109730px;}
.y62{bottom:613.110510px;}
.yc5{bottom:618.420255px;}
.y1f{bottom:621.570150px;}
.y4d{bottom:623.010450px;}
.y92{bottom:624.540435px;}
.y119{bottom:625.350705px;}
.y61{bottom:630.300450px;}
.yed{bottom:630.300570px;}
.y143{bottom:630.389790px;}
.y4c{bottom:634.080420px;}
.yc4{bottom:635.700380px;}
.y1e{bottom:638.850195px;}
.y118{bottom:642.540615px;}
.yec{bottom:647.040435px;}
.y60{bottom:647.580510px;}
.y142{bottom:647.669865px;}
.yc3{bottom:652.890342px;}
.y1d{bottom:656.040135px;}
.y117{bottom:659.820675px;}
.y141{bottom:664.859775px;}
.y5f{bottom:664.860555px;}
.yc2{bottom:670.170333px;}
.y1c{bottom:673.320195px;}
.y116{bottom:677.100720px;}
.y5e{bottom:682.050495px;}
.y140{bottom:682.139835px;}
.yc1{bottom:687.450324px;}
.y1b{bottom:690.600240px;}
.y115{bottom:694.290660px;}
.y164{bottom:695.369745px;}
.y5d{bottom:699.240420px;}
.y13f{bottom:699.329775px;}
.yc0{bottom:704.640285px;}
.y1a{bottom:707.790165px;}
.y114{bottom:711.570720px;}
.y163{bottom:712.649820px;}
.y13e{bottom:716.609820px;}
.y5c{bottom:717.240375px;}
.ybf{bottom:721.920345px;}
.y19{bottom:725.070240px;}
.y113{bottom:728.760660px;}
.y162{bottom:729.839745px;}
.y13d{bottom:730.470435px;}
.y5b{bottom:733.890420px;}
.ybe{bottom:739.200492px;}
.y18{bottom:742.350249px;}
.y112{bottom:746.040705px;}
.y161{bottom:747.119790px;}
.ybd{bottom:756.390453px;}
.y17{bottom:759.540210px;}
.y111{bottom:763.320867px;}
.y160{bottom:764.309745px;}
.ybc{bottom:773.670444px;}
.y16{bottom:776.820285px;}
.y110{bottom:780.600858px;}
.y15f{bottom:781.499655px;}
.ybb{bottom:790.950435px;}
.y15{bottom:794.100330px;}
.y10f{bottom:797.790819px;}
.y15e{bottom:798.779715px;}
.yba{bottom:808.140375px;}
.y14{bottom:811.290458px;}
.y10e{bottom:815.070810px;}
.y15d{bottom:816.059790px;}
.yb9{bottom:825.420537px;}
.y13{bottom:828.570449px;}
.y10d{bottom:832.350855px;}
.y15c{bottom:833.339835px;}
.yb8{bottom:842.700528px;}
.y12{bottom:845.850440px;}
.y15b{bottom:847.200435px;}
.y10c{bottom:849.450435px;}
.y91{bottom:849.540795px;}
.yb7{bottom:859.890489px;}
.y11{bottom:863.040402px;}
.y10b{bottom:866.820630px;}
.y90{bottom:866.820855px;}
.yb6{bottom:877.170480px;}
.y10{bottom:880.320393px;}
.y4b{bottom:881.310420px;}
.y10a{bottom:884.100723px;}
.y8f{bottom:884.100900px;}
.yb5{bottom:894.450525px;}
.yeb{bottom:895.080510px;}
.yf{bottom:897.600384px;}
.y4a{bottom:901.290255px;}
.y109{bottom:901.290684px;}
.y8e{bottom:901.290855px;}
.yb4{bottom:911.640588px;}
.ye{bottom:914.790345px;}
.yea{bottom:915.780390px;}
.y49{bottom:918.570300px;}
.y108{bottom:918.570675px;}
.y8d{bottom:918.570900px;}
.yb3{bottom:928.920579px;}
.yd{bottom:932.070390px;}
.y48{bottom:935.850360px;}
.ye9{bottom:935.850495px;}
.y107{bottom:935.850720px;}
.y8c{bottom:935.850945px;}
.yb2{bottom:946.200570px;}
.yc{bottom:949.260345px;}
.y106{bottom:952.950300px;}
.y8b{bottom:952.950525px;}
.y47{bottom:953.040300px;}
.ye8{bottom:953.040420px;}
.y17d{bottom:953.040645px;}
.yb1{bottom:963.390495px;}
.yb{bottom:966.540390px;}
.y46{bottom:970.320345px;}
.ye7{bottom:970.320495px;}
.y8a{bottom:970.320720px;}
.yb0{bottom:980.580435px;}
.ya{bottom:983.820435px;}
.y45{bottom:987.510270px;}
.ye6{bottom:987.510405px;}
.y105{bottom:987.510558px;}
.y89{bottom:987.510630px;}
.yaf{bottom:997.860495px;}
.y9{bottom:1001.010390px;}
.y44{bottom:1004.790315px;}
.ye5{bottom:1004.790465px;}
.y104{bottom:1004.790549px;}
.y15a{bottom:1004.790570px;}
.y88{bottom:1004.790690px;}
.yae{bottom:1015.140588px;}
.y8{bottom:1018.290435px;}
.y13c{bottom:1018.560465px;}
.y43{bottom:1022.070390px;}
.ye4{bottom:1022.070540px;}
.y159{bottom:1022.070630px;}
.y87{bottom:1022.070765px;}
.yad{bottom:1032.420579px;}
.y13b{bottom:1035.840525px;}
.y7{bottom:1038.090450px;}
.y86{bottom:1039.170315px;}
.y42{bottom:1039.260315px;}
.ye3{bottom:1039.260450px;}
.y158{bottom:1039.260540px;}
.y17c{bottom:1039.260675px;}
.yac{bottom:1049.610540px;}
.y13a{bottom:1053.030465px;}
.y6{bottom:1055.460390px;}
.y103{bottom:1056.450375px;}
.y41{bottom:1056.540360px;}
.y85{bottom:1056.540510px;}
.y157{bottom:1056.540600px;}
.y17b{bottom:1056.540735px;}
.yab{bottom:1066.890585px;}
.y139{bottom:1070.220390px;}
.y5{bottom:1072.650855px;}
.y102{bottom:1073.730450px;}
.y40{bottom:1073.820435px;}
.y84{bottom:1073.820585px;}
.y156{bottom:1073.820675px;}
.y17a{bottom:1073.820810px;}
.yaa{bottom:1084.080525px;}
.y138{bottom:1087.500435px;}
.y4{bottom:1089.930915px;}
.y155{bottom:1090.920225px;}
.y101{bottom:1090.920360px;}
.y3f{bottom:1091.010360px;}
.y83{bottom:1091.010495px;}
.ya9{bottom:1101.270450px;}
.y137{bottom:1104.780510px;}
.y3{bottom:1107.210960px;}
.y154{bottom:1108.200285px;}
.y100{bottom:1108.200420px;}
.y3e{bottom:1108.290420px;}
.y82{bottom:1108.290555px;}
.ya8{bottom:1119.180540px;}
.y136{bottom:1121.970435px;}
.y2{bottom:1124.400885px;}
.y153{bottom:1125.480360px;}
.y81{bottom:1125.480495px;}
.y3d{bottom:1125.570495px;}
.ya7{bottom:1139.880435px;}
.y1{bottom:1141.500465px;}
.y80{bottom:1142.670405px;}
.y3c{bottom:1142.760405px;}
.h3{height:49.937344px;}
.h1{height:62.703281px;}
.h6{height:62.703401px;}
.h5{height:62.704241px;}
.h2{height:75.093750px;}
.h4{height:75.094230px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x7{left:127.620000px;}
.x1{left:278.639985px;}
.xd{left:370.620000px;}
.xe{left:446.490000px;}
.x11{left:503.369985px;}
.x12{left:505.619985px;}
.x10{left:519.660000px;}
.x8{left:543.240000px;}
.xa{left:556.289985px;}
.xc{left:568.529985px;}
.x6{left:579.779985px;}
.x4{left:601.111800px;}
.x3{left:603.271710px;}
.x2{left:615.241635px;}
.x5{left:633.331725px;}
.xb{left:658.170000px;}
.xf{left:682.740000px;}
.x9{left:700.379970px;}
@media print{
.v1{vertical-align:-65.282453pt;}
.v2{vertical-align:-61.440213pt;}
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-0.128256pt;}
.ls1b{letter-spacing:-0.090314pt;}
.ls18{letter-spacing:-0.048096pt;}
.lsa{letter-spacing:-0.037408pt;}
.ls11{letter-spacing:-0.026720pt;}
.ls16{letter-spacing:-0.021376pt;}
.ls14{letter-spacing:-0.016566pt;}
.ls9{letter-spacing:-0.010688pt;}
.ls17{letter-spacing:-0.005878pt;}
.ls8{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.005878pt;}
.ls6{letter-spacing:0.010688pt;}
.ls0{letter-spacing:0.016566pt;}
.ls7{letter-spacing:0.021376pt;}
.ls3{letter-spacing:0.026720pt;}
.ls2{letter-spacing:0.032064pt;}
.ls4{letter-spacing:0.037408pt;}
.ls1{letter-spacing:0.042218pt;}
.ls5{letter-spacing:0.048096pt;}
.lsc{letter-spacing:0.053974pt;}
.lse{letter-spacing:0.058784pt;}
.ls13{letter-spacing:0.102070pt;}
.ls12{letter-spacing:0.117568pt;}
.ls10{letter-spacing:0.128256pt;}
.ls19{letter-spacing:0.140800pt;}
.ls1a{letter-spacing:171.020800pt;}
.ls15{letter-spacing:173.952544pt;}
.lsf{letter-spacing:966.585493pt;}
.ws0{word-spacing:-53.440000pt;}
.ws29{word-spacing:-14.984576pt;}
.ws3b{word-spacing:-14.973888pt;}
.ws3c{word-spacing:-14.958390pt;}
.ws39{word-spacing:-14.893728pt;}
.ws3a{word-spacing:-14.877696pt;}
.ws6a{word-spacing:-0.480960pt;}
.ws9e{word-spacing:-0.176352pt;}
.ws4{word-spacing:-0.171008pt;}
.ws2f{word-spacing:-0.165664pt;}
.ws2{word-spacing:-0.160854pt;}
.ws14{word-spacing:-0.154976pt;}
.ws1a{word-spacing:-0.150166pt;}
.ws1{word-spacing:-0.144288pt;}
.ws15{word-spacing:-0.138410pt;}
.ws2a{word-spacing:-0.133600pt;}
.ws11{word-spacing:-0.128256pt;}
.ws62{word-spacing:-0.122912pt;}
.ws3{word-spacing:-0.117568pt;}
.ws54{word-spacing:-0.112758pt;}
.ws58{word-spacing:-0.106880pt;}
.ws5{word-spacing:-0.090314pt;}
.ws9f{word-spacing:-0.037408pt;}
.ws6{word-spacing:0.000000pt;}
.ws5e{word-spacing:0.133600pt;}
.ws19{word-spacing:0.144288pt;}
.ws26{word-spacing:0.150166pt;}
.ws25{word-spacing:0.160854pt;}
.ws5f{word-spacing:0.171008pt;}
.ws84{word-spacing:0.176352pt;}
.ws20{word-spacing:0.464928pt;}
.ws5a{word-spacing:0.470272pt;}
.ws4d{word-spacing:0.475616pt;}
.ws92{word-spacing:0.480960pt;}
.wsac{word-spacing:0.485770pt;}
.wsab{word-spacing:0.790912pt;}
.ws94{word-spacing:0.807478pt;}
.ws34{word-spacing:0.812288pt;}
.wsbb{word-spacing:0.828320pt;}
.ws82{word-spacing:1.106742pt;}
.wsb7{word-spacing:1.111552pt;}
.ws81{word-spacing:1.116896pt;}
.ws93{word-spacing:1.122240pt;}
.ws40{word-spacing:1.132394pt;}
.ws3f{word-spacing:1.426848pt;}
.ws18{word-spacing:1.437536pt;}
.ws22{word-spacing:1.464256pt;}
.ws85{word-spacing:1.736800pt;}
.ws7d{word-spacing:1.747488pt;}
.wsa9{word-spacing:1.758176pt;}
.ws21{word-spacing:1.763520pt;}
.wsaa{word-spacing:1.784896pt;}
.ws4a{word-spacing:2.062784pt;}
.ws7c{word-spacing:2.084160pt;}
.ws38{word-spacing:2.100726pt;}
.ws17{word-spacing:2.377546pt;}
.ws49{word-spacing:2.388234pt;}
.ws46{word-spacing:2.394112pt;}
.ws37{word-spacing:2.399990pt;}
.ws95{word-spacing:2.404800pt;}
.ws45{word-spacing:2.410144pt;}
.ws16{word-spacing:2.704064pt;}
.wsb0{word-spacing:2.714752pt;}
.wsb1{word-spacing:2.720096pt;}
.ws9b{word-spacing:2.724906pt;}
.wsb5{word-spacing:3.024170pt;}
.ws73{word-spacing:3.030048pt;}
.wsb4{word-spacing:3.034858pt;}
.wsaf{word-spacing:3.046614pt;}
.ws79{word-spacing:3.051424pt;}
.ws72{word-spacing:3.057302pt;}
.ws56{word-spacing:3.350688pt;}
.ws7e{word-spacing:3.361376pt;}
.ws60{word-spacing:3.372064pt;}
.ws98{word-spacing:3.382218pt;}
.ws65{word-spacing:3.676672pt;}
.ws55{word-spacing:3.681482pt;}
.wsa1{word-spacing:3.687360pt;}
.ws4c{word-spacing:3.693238pt;}
.ws4b{word-spacing:3.997312pt;}
.ws99{word-spacing:4.008000pt;}
.ws8{word-spacing:4.307264pt;}
.ws42{word-spacing:4.317952pt;}
.ws7a{word-spacing:4.323296pt;}
.ws2b{word-spacing:4.622560pt;}
.ws83{word-spacing:4.639126pt;}
.ws41{word-spacing:4.643936pt;}
.ws88{word-spacing:4.938390pt;}
.ws61{word-spacing:4.953888pt;}
.ws1d{word-spacing:4.986486pt;}
.ws1b{word-spacing:5.269184pt;}
.ws7f{word-spacing:5.273994pt;}
.ws1c{word-spacing:5.290560pt;}
.ws57{word-spacing:5.585014pt;}
.wsa0{word-spacing:5.605856pt;}
.ws69{word-spacing:5.611200pt;}
.ws8d{word-spacing:5.915808pt;}
.ws5c{word-spacing:5.920618pt;}
.wsb8{word-spacing:6.242326pt;}
.ws10{word-spacing:6.273856pt;}
.ws64{word-spacing:6.546400pt;}
.ws67{word-spacing:6.551744pt;}
.wse{word-spacing:6.562432pt;}
.wsf{word-spacing:6.567242pt;}
.ws66{word-spacing:6.573120pt;}
.ws5d{word-spacing:6.866506pt;}
.ws31{word-spacing:6.872384pt;}
.ws30{word-spacing:6.883072pt;}
.ws63{word-spacing:6.888950pt;}
.ws3d{word-spacing:6.893760pt;}
.wsb3{word-spacing:7.193024pt;}
.wsa4{word-spacing:7.203712pt;}
.wsb2{word-spacing:7.519008pt;}
.ws86{word-spacing:7.812394pt;}
.ws5b{word-spacing:7.834838pt;}
.ws75{word-spacing:7.850336pt;}
.ws74{word-spacing:8.144256pt;}
.ws70{word-spacing:8.469706pt;}
.ws71{word-spacing:8.475584pt;}
.ws8f{word-spacing:8.486272pt;}
.ws90{word-spacing:8.502304pt;}
.ws8e{word-spacing:8.507114pt;}
.wsa{word-spacing:8.801568pt;}
.wsb{word-spacing:8.828822pt;}
.ws32{word-spacing:9.111520pt;}
.ws6b{word-spacing:9.122208pt;}
.ws33{word-spacing:9.128086pt;}
.ws9{word-spacing:9.132896pt;}
.ws44{word-spacing:9.421472pt;}
.ws6f{word-spacing:9.453536pt;}
.ws6e{word-spacing:9.758144pt;}
.ws23{word-spacing:9.762954pt;}
.ws43{word-spacing:9.774710pt;}
.ws78{word-spacing:10.068096pt;}
.wsba{word-spacing:10.073974pt;}
.ws77{word-spacing:10.084662pt;}
.ws50{word-spacing:10.394080pt;}
.ws48{word-spacing:10.404768pt;}
.ws47{word-spacing:10.415456pt;}
.ws2d{word-spacing:10.720598pt;}
.wsa6{word-spacing:10.725408pt;}
.ws59{word-spacing:10.736096pt;}
.ws68{word-spacing:11.046048pt;}
.wsa5{word-spacing:11.051392pt;}
.ws2e{word-spacing:11.361344pt;}
.ws7b{word-spacing:11.367222pt;}
.ws52{word-spacing:11.681984pt;}
.ws1f{word-spacing:11.687328pt;}
.ws1e{word-spacing:12.007968pt;}
.ws6c{word-spacing:12.307232pt;}
.wsb9{word-spacing:12.312042pt;}
.ws6d{word-spacing:12.323798pt;}
.ws91{word-spacing:12.947978pt;}
.wsa3{word-spacing:12.964544pt;}
.wsa2{word-spacing:13.279840pt;}
.ws87{word-spacing:13.285184pt;}
.ws51{word-spacing:13.916310pt;}
.ws53{word-spacing:13.921120pt;}
.wsa7{word-spacing:14.257792pt;}
.wsa8{word-spacing:14.263670pt;}
.ws28{word-spacing:14.535680pt;}
.wsae{word-spacing:14.883040pt;}
.ws2c{word-spacing:14.887850pt;}
.ws27{word-spacing:14.898538pt;}
.ws80{word-spacing:15.192992pt;}
.wsad{word-spacing:15.197802pt;}
.wsd{word-spacing:15.225056pt;}
.wsc{word-spacing:15.535008pt;}
.ws7{word-spacing:15.828928pt;}
.ws76{word-spacing:16.143690pt;}
.ws24{word-spacing:16.486240pt;}
.ws4f{word-spacing:16.491050pt;}
.ws8b{word-spacing:17.112022pt;}
.ws9d{word-spacing:17.736202pt;}
.wsb6{word-spacing:17.779488pt;}
.ws9c{word-spacing:18.083562pt;}
.ws89{word-spacing:19.019296pt;}
.ws8a{word-spacing:19.029450pt;}
.wsbc{word-spacing:20.948480pt;}
.ws36{word-spacing:20.954358pt;}
.ws4e{word-spacing:20.959168pt;}
.ws35{word-spacing:21.274464pt;}
.ws8c{word-spacing:21.595104pt;}
.ws3e{word-spacing:22.225162pt;}
.ws13{word-spacing:24.474986pt;}
.ws12{word-spacing:24.790816pt;}
.ws96{word-spacing:25.747392pt;}
.ws97{word-spacing:25.752736pt;}
.ws9a{word-spacing:36.007872pt;}
._3{margin-left:-5.771520pt;}
._4{margin-left:-4.168320pt;}
._1{margin-left:-0.961920pt;}
._0{width:0.961920pt;}
._5{width:75.516957pt;}
._6{width:507.798357pt;}
._2{width:719.923307pt;}
.fs2{font-size:42.560000pt;}
.fs0{font-size:53.440000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y5a{bottom:100.107200pt;}
.y7f{bottom:100.266880pt;}
.ye2{bottom:104.986840pt;}
.y179{bottom:106.426373pt;}
.y3b{bottom:108.507587pt;}
.y135{bottom:108.667373pt;}
.yff{bottom:108.827187pt;}
.ya6{bottom:111.707067pt;}
.y59{bottom:112.427067pt;}
.y152{bottom:112.666600pt;}
.y7e{bottom:115.626933pt;}
.ye1{bottom:120.346907pt;}
.y178{bottom:121.866533pt;}
.yfe{bottom:124.187240pt;}
.y3a{bottom:126.907493pt;}
.y134{bottom:127.067280pt;}
.y151{bottom:128.026653pt;}
.y7d{bottom:130.986973pt;}
.ye0{bottom:135.787082pt;}
.y177{bottom:137.226587pt;}
.yfd{bottom:139.547307pt;}
.y150{bottom:140.267067pt;}
.y39{bottom:145.307400pt;}
.y133{bottom:145.467187pt;}
.y7c{bottom:146.347040pt;}
.ydf{bottom:151.067048pt;}
.y176{bottom:152.506533pt;}
.yfc{bottom:154.746907pt;}
.y7b{bottom:161.626973pt;}
.y38{bottom:163.707293pt;}
.y132{bottom:163.867080pt;}
.yde{bottom:166.427040pt;}
.y175{bottom:167.866573pt;}
.yfb{bottom:170.187067pt;}
.y7a{bottom:176.987013pt;}
.ydd{bottom:181.787107pt;}
.y37{bottom:182.107200pt;}
.y131{bottom:182.347067pt;}
.y174{bottom:183.226627pt;}
.yfa{bottom:185.547133pt;}
.y79{bottom:192.347080pt;}
.ydc{bottom:196.986720pt;}
.y173{bottom:198.506573pt;}
.y36{bottom:199.866624pt;}
.y130{bottom:200.187200pt;}
.yf9{bottom:200.827067pt;}
.y78{bottom:207.627013pt;}
.ydb{bottom:212.426880pt;}
.y172{bottom:213.866613pt;}
.y35{bottom:215.226616pt;}
.y12f{bottom:216.107200pt;}
.yf8{bottom:216.747013pt;}
.y77{bottom:222.987067pt;}
.yda{bottom:227.787053pt;}
.y171{bottom:229.226667pt;}
.y34{bottom:230.506581pt;}
.yf7{bottom:231.547053pt;}
.y12e{bottom:233.867000pt;}
.y76{bottom:238.347133pt;}
.yd9{bottom:243.067018pt;}
.y170{bottom:244.506613pt;}
.y33{bottom:245.866573pt;}
.y12d{bottom:249.227053pt;}
.y75{bottom:253.627053pt;}
.yd8{bottom:258.427010pt;}
.y16f{bottom:259.866653pt;}
.y32{bottom:261.226627pt;}
.ya5{bottom:261.227147pt;}
.y12c{bottom:264.507048pt;}
.y74{bottom:268.987040pt;}
.y16e{bottom:272.187200pt;}
.yd7{bottom:273.706976pt;}
.y31{bottom:276.506712pt;}
.ya4{bottom:279.627053pt;}
.y12b{bottom:279.867040pt;}
.y73{bottom:284.347107pt;}
.yd6{bottom:289.066968pt;}
.y30{bottom:291.866704pt;}
.y12a{bottom:295.227093pt;}
.ya3{bottom:297.466933pt;}
.y72{bottom:299.627040pt;}
.yd5{bottom:304.426960pt;}
.y2f{bottom:307.226696pt;}
.y129{bottom:310.507149pt;}
.ya2{bottom:312.826987pt;}
.y71{bottom:314.987080pt;}
.yd4{bottom:319.706907pt;}
.y2e{bottom:322.506661pt;}
.y128{bottom:325.867141pt;}
.ya1{bottom:328.106933pt;}
.y70{bottom:330.347147pt;}
.yd3{bottom:334.986840pt;}
.y2d{bottom:337.866653pt;}
.y127{bottom:341.227133pt;}
.ya0{bottom:343.466973pt;}
.y6f{bottom:345.627053pt;}
.yd2{bottom:350.427000pt;}
.y2c{bottom:353.226707pt;}
.y126{bottom:356.507080pt;}
.y9f{bottom:358.827027pt;}
.y6e{bottom:360.987107pt;}
.yd1{bottom:365.707008pt;}
.y2b{bottom:368.506778pt;}
.y58{bottom:369.947067pt;}
.y16d{bottom:370.506720pt;}
.y125{bottom:371.867120pt;}
.y9e{bottom:374.106973pt;}
.y14f{bottom:376.346333pt;}
.y6d{bottom:376.347147pt;}
.yd0{bottom:381.067000pt;}
.y2a{bottom:383.866770pt;}
.y16c{bottom:385.866760pt;}
.y124{bottom:387.147053pt;}
.y57{bottom:387.147173pt;}
.y9d{bottom:389.467027pt;}
.y6c{bottom:391.627093pt;}
.y14e{bottom:391.706387pt;}
.ycf{bottom:396.427040pt;}
.y29{bottom:399.226762pt;}
.y16b{bottom:401.146693pt;}
.y123{bottom:402.427000pt;}
.y9c{bottom:404.746947pt;}
.y14d{bottom:406.986307pt;}
.y6b{bottom:406.987147pt;}
.yce{bottom:411.626667pt;}
.y28{bottom:414.506728pt;}
.y56{bottom:416.346987pt;}
.y16a{bottom:416.506760pt;}
.y122{bottom:417.787053pt;}
.yf6{bottom:419.227053pt;}
.y9b{bottom:420.107000pt;}
.y6a{bottom:422.267067pt;}
.y14c{bottom:422.346373pt;}
.ycd{bottom:427.066840pt;}
.y27{bottom:429.866720pt;}
.y169{bottom:431.706360pt;}
.y55{bottom:431.707053pt;}
.y121{bottom:433.227213pt;}
.y9a{bottom:435.467067pt;}
.yf5{bottom:437.067040pt;}
.y69{bottom:437.627133pt;}
.y14b{bottom:437.706427pt;}
.ycc{bottom:442.426922pt;}
.y26{bottom:445.226787pt;}
.y54{bottom:447.067093pt;}
.y168{bottom:447.146520pt;}
.y120{bottom:448.507147pt;}
.y99{bottom:450.827107pt;}
.yf4{bottom:452.427080pt;}
.y14a{bottom:452.986347pt;}
.y68{bottom:452.986973pt;}
.ycb{bottom:457.706888pt;}
.y25{bottom:460.506720pt;}
.y53{bottom:462.347027pt;}
.y167{bottom:462.506587pt;}
.y11f{bottom:463.867213pt;}
.y98{bottom:466.107040pt;}
.yf3{bottom:467.707013pt;}
.y67{bottom:468.266933pt;}
.y149{bottom:468.346413pt;}
.yca{bottom:473.066880pt;}
.y24{bottom:475.866760pt;}
.y52{bottom:477.707093pt;}
.y166{bottom:477.786520pt;}
.y11e{bottom:479.227253pt;}
.y97{bottom:481.467107pt;}
.yf2{bottom:483.067080pt;}
.y66{bottom:483.626973pt;}
.y148{bottom:483.706467pt;}
.yc9{bottom:488.426920pt;}
.y165{bottom:490.107053pt;}
.y23{bottom:491.146707pt;}
.y51{bottom:493.067133pt;}
.y11d{bottom:494.507187pt;}
.y96{bottom:496.827147pt;}
.yf1{bottom:498.427120pt;}
.y147{bottom:498.986387pt;}
.y65{bottom:498.987013pt;}
.yc8{bottom:503.706976pt;}
.y22{bottom:506.506760pt;}
.y50{bottom:508.347067pt;}
.y11c{bottom:509.867253pt;}
.y95{bottom:512.107080pt;}
.yf0{bottom:513.707053pt;}
.y64{bottom:514.266947pt;}
.y146{bottom:514.346440pt;}
.yc7{bottom:519.066968pt;}
.y21{bottom:521.866800pt;}
.y4f{bottom:523.707133pt;}
.y11b{bottom:525.227293pt;}
.y94{bottom:527.467147pt;}
.yef{bottom:529.067120pt;}
.y145{bottom:529.626387pt;}
.y63{bottom:529.627013pt;}
.yc6{bottom:534.426960pt;}
.y20{bottom:537.146808pt;}
.y4e{bottom:538.987067pt;}
.y11a{bottom:540.507227pt;}
.y93{bottom:542.747067pt;}
.yee{bottom:544.347040pt;}
.y144{bottom:544.986427pt;}
.y62{bottom:544.987120pt;}
.yc5{bottom:549.706893pt;}
.y1f{bottom:552.506800pt;}
.y4d{bottom:553.787067pt;}
.y92{bottom:555.147053pt;}
.y119{bottom:555.867293pt;}
.y61{bottom:560.267067pt;}
.yed{bottom:560.267173pt;}
.y143{bottom:560.346480pt;}
.y4c{bottom:563.627040pt;}
.yc4{bottom:565.067005pt;}
.y1e{bottom:567.866840pt;}
.y118{bottom:571.147213pt;}
.yec{bottom:575.147053pt;}
.y60{bottom:575.627120pt;}
.y142{bottom:575.706547pt;}
.yc3{bottom:580.346970pt;}
.y1d{bottom:583.146787pt;}
.y117{bottom:586.507267pt;}
.y141{bottom:590.986467pt;}
.y5f{bottom:590.987160pt;}
.yc2{bottom:595.706962pt;}
.y1c{bottom:598.506840pt;}
.y116{bottom:601.867307pt;}
.y5e{bottom:606.267107pt;}
.y140{bottom:606.346520pt;}
.yc1{bottom:611.066954pt;}
.y1b{bottom:613.866880pt;}
.y115{bottom:617.147253pt;}
.y164{bottom:618.106440pt;}
.y5d{bottom:621.547040pt;}
.y13f{bottom:621.626467pt;}
.yc0{bottom:626.346920pt;}
.y1a{bottom:629.146813pt;}
.y114{bottom:632.507307pt;}
.y163{bottom:633.466507pt;}
.y13e{bottom:636.986507pt;}
.y5c{bottom:637.547000pt;}
.ybf{bottom:641.706973pt;}
.y19{bottom:644.506880pt;}
.y113{bottom:647.787253pt;}
.y162{bottom:648.746440pt;}
.y13d{bottom:649.307053pt;}
.y5b{bottom:652.347040pt;}
.ybe{bottom:657.067104pt;}
.y18{bottom:659.866888pt;}
.y112{bottom:663.147293pt;}
.y161{bottom:664.106480pt;}
.ybd{bottom:672.347069pt;}
.y17{bottom:675.146853pt;}
.y111{bottom:678.507437pt;}
.y160{bottom:679.386440pt;}
.ybc{bottom:687.707061pt;}
.y16{bottom:690.506920pt;}
.y110{bottom:693.867429pt;}
.y15f{bottom:694.666360pt;}
.ybb{bottom:703.067053pt;}
.y15{bottom:705.866960pt;}
.y10f{bottom:709.147395pt;}
.y15e{bottom:710.026413pt;}
.yba{bottom:718.347000pt;}
.y14{bottom:721.147074pt;}
.y10e{bottom:724.507387pt;}
.y15d{bottom:725.386480pt;}
.yb9{bottom:733.707144pt;}
.y13{bottom:736.507066pt;}
.y10d{bottom:739.867427pt;}
.y15c{bottom:740.746520pt;}
.yb8{bottom:749.067136pt;}
.y12{bottom:751.867058pt;}
.y15b{bottom:753.067053pt;}
.y10c{bottom:755.067053pt;}
.y91{bottom:755.147373pt;}
.yb7{bottom:764.347101pt;}
.y11{bottom:767.147024pt;}
.y10b{bottom:770.507227pt;}
.y90{bottom:770.507427pt;}
.yb6{bottom:779.707093pt;}
.y10{bottom:782.507016pt;}
.y4b{bottom:783.387040pt;}
.y10a{bottom:785.867309pt;}
.y8f{bottom:785.867467pt;}
.yb5{bottom:795.067133pt;}
.yeb{bottom:795.627120pt;}
.yf{bottom:797.867008pt;}
.y4a{bottom:801.146893pt;}
.y109{bottom:801.147275pt;}
.y8e{bottom:801.147427pt;}
.yb4{bottom:810.347189pt;}
.ye{bottom:813.146973pt;}
.yea{bottom:814.027013pt;}
.y49{bottom:816.506933pt;}
.y108{bottom:816.507267pt;}
.y8d{bottom:816.507467pt;}
.yb3{bottom:825.707181pt;}
.yd{bottom:828.507013pt;}
.y48{bottom:831.866987pt;}
.ye9{bottom:831.867107pt;}
.y107{bottom:831.867307pt;}
.y8c{bottom:831.867507pt;}
.yb2{bottom:841.067173pt;}
.yc{bottom:843.786973pt;}
.y106{bottom:847.066933pt;}
.y8b{bottom:847.067133pt;}
.y47{bottom:847.146933pt;}
.ye8{bottom:847.147040pt;}
.y17d{bottom:847.147240pt;}
.yb1{bottom:856.347107pt;}
.yb{bottom:859.147013pt;}
.y46{bottom:862.506973pt;}
.ye7{bottom:862.507107pt;}
.y8a{bottom:862.507307pt;}
.yb0{bottom:871.627053pt;}
.ya{bottom:874.507053pt;}
.y45{bottom:877.786907pt;}
.ye6{bottom:877.787027pt;}
.y105{bottom:877.787163pt;}
.y89{bottom:877.787227pt;}
.yaf{bottom:886.987107pt;}
.y9{bottom:889.787013pt;}
.y44{bottom:893.146947pt;}
.ye5{bottom:893.147080pt;}
.y104{bottom:893.147155pt;}
.y15a{bottom:893.147173pt;}
.y88{bottom:893.147280pt;}
.yae{bottom:902.347189pt;}
.y8{bottom:905.147053pt;}
.y13c{bottom:905.387080pt;}
.y43{bottom:908.507013pt;}
.ye4{bottom:908.507147pt;}
.y159{bottom:908.507227pt;}
.y87{bottom:908.507347pt;}
.yad{bottom:917.707181pt;}
.y13b{bottom:920.747133pt;}
.y7{bottom:922.747067pt;}
.y86{bottom:923.706947pt;}
.y42{bottom:923.786947pt;}
.ye3{bottom:923.787067pt;}
.y158{bottom:923.787147pt;}
.y17c{bottom:923.787267pt;}
.yac{bottom:932.987147pt;}
.y13a{bottom:936.027080pt;}
.y6{bottom:938.187013pt;}
.y103{bottom:939.067000pt;}
.y41{bottom:939.146987pt;}
.y85{bottom:939.147120pt;}
.y157{bottom:939.147200pt;}
.y17b{bottom:939.147320pt;}
.yab{bottom:948.347187pt;}
.y139{bottom:951.307013pt;}
.y5{bottom:953.467427pt;}
.y102{bottom:954.427067pt;}
.y40{bottom:954.507053pt;}
.y84{bottom:954.507187pt;}
.y156{bottom:954.507267pt;}
.y17a{bottom:954.507387pt;}
.yaa{bottom:963.627133pt;}
.y138{bottom:966.667053pt;}
.y4{bottom:968.827480pt;}
.y155{bottom:969.706867pt;}
.y101{bottom:969.706987pt;}
.y3f{bottom:969.786987pt;}
.y83{bottom:969.787107pt;}
.ya9{bottom:978.907067pt;}
.y137{bottom:982.027120pt;}
.y3{bottom:984.187520pt;}
.y154{bottom:985.066920pt;}
.y100{bottom:985.067040pt;}
.y3e{bottom:985.147040pt;}
.y82{bottom:985.147160pt;}
.ya8{bottom:994.827147pt;}
.y136{bottom:997.307053pt;}
.y2{bottom:999.467453pt;}
.y153{bottom:1000.426987pt;}
.y81{bottom:1000.427107pt;}
.y3d{bottom:1000.507107pt;}
.ya7{bottom:1013.227053pt;}
.y1{bottom:1014.667080pt;}
.y80{bottom:1015.707027pt;}
.y3c{bottom:1015.787027pt;}
.h3{height:44.388750pt;}
.h1{height:55.736250pt;}
.h6{height:55.736357pt;}
.h5{height:55.737103pt;}
.h2{height:66.750000pt;}
.h4{height:66.750427pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x7{left:113.440000pt;}
.x1{left:247.679987pt;}
.xd{left:329.440000pt;}
.xe{left:396.880000pt;}
.x11{left:447.439987pt;}
.x12{left:449.439987pt;}
.x10{left:461.920000pt;}
.x8{left:482.880000pt;}
.xa{left:494.479987pt;}
.xc{left:505.359987pt;}
.x6{left:515.359987pt;}
.x4{left:534.321600pt;}
.x3{left:536.241520pt;}
.x2{left:546.881453pt;}
.x5{left:562.961533pt;}
.xb{left:585.040000pt;}
.xf{left:606.880000pt;}
.x9{left:622.559973pt;}
}




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