
    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_f02f38c1cb348a228e8148c3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_c28f247156575c0dc4d12191.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_34828241c2ce0c035b9651ad.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_13cd0478645d46258a924de2.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:68.135741px;}
.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;}
}
.ws9f{word-spacing:-49.054686px;}
.ws4{word-spacing:-38.542970px;}
.ws3f{word-spacing:-34.920869px;}
.ws7e{word-spacing:-34.920851px;}
.ws3{word-spacing:-34.920847px;}
.ws49{word-spacing:-33.000001px;}
.ws70{word-spacing:-28.031251px;}
.wsaa{word-spacing:-25.768994px;}
.wsa1{word-spacing:-25.755889px;}
.ws9{word-spacing:-25.755887px;}
.wsa{word-spacing:-25.755884px;}
.wsa9{word-spacing:-25.755867px;}
.wsa0{word-spacing:-25.753257px;}
.ws0{word-spacing:-22.042970px;}
.ws1{word-spacing:-22.042968px;}
.ws88{word-spacing:-20.263472px;}
.ws7d{word-spacing:-20.258202px;}
.ws43{word-spacing:-20.258199px;}
.ws16{word-spacing:-20.258189px;}
.ws87{word-spacing:-20.258157px;}
.ws93{word-spacing:-20.258155px;}
.ws9a{word-spacing:-20.258145px;}
.wsb0{word-spacing:-20.258140px;}
.wsaf{word-spacing:-20.258129px;}
.ws2f{word-spacing:-20.258127px;}
.ws48{word-spacing:-20.258125px;}
.wsb2{word-spacing:-20.258120px;}
.ws95{word-spacing:-20.258109px;}
.wsc6{word-spacing:-20.258090px;}
.ws94{word-spacing:-20.258064px;}
.wsc2{word-spacing:-20.258057px;}
.ws8e{word-spacing:-20.255543px;}
.ws74{word-spacing:-20.253047px;}
.ws44{word-spacing:-20.253035px;}
.ws10{word-spacing:-20.253029px;}
.ws27{word-spacing:-20.252977px;}
.ws84{word-spacing:-20.252935px;}
.wse{word-spacing:-20.252933px;}
.ws66{word-spacing:-20.252932px;}
.ws8c{word-spacing:-20.252930px;}
.ws6a{word-spacing:-20.252924px;}
.ws98{word-spacing:-20.252918px;}
.ws90{word-spacing:-20.252916px;}
.wsb7{word-spacing:-20.252911px;}
.ws86{word-spacing:-20.252906px;}
.wsa3{word-spacing:-20.252902px;}
.ws8b{word-spacing:-20.252867px;}
.ws11{word-spacing:-20.252849px;}
.ws30{word-spacing:-20.250403px;}
.ws2e{word-spacing:-20.250365px;}
.ws31{word-spacing:-20.250358px;}
.ws2d{word-spacing:-20.250345px;}
.ws80{word-spacing:-20.250331px;}
.ws9c{word-spacing:-20.250300px;}
.ws4f{word-spacing:-20.250255px;}
.ws91{word-spacing:-20.250185px;}
.ws7f{word-spacing:-20.247810px;}
.ws6b{word-spacing:-20.247790px;}
.ws40{word-spacing:-20.247713px;}
.ws4e{word-spacing:-20.247711px;}
.ws53{word-spacing:-20.245380px;}
.ws75{word-spacing:-20.245358px;}
.ws14{word-spacing:-20.245351px;}
.ws82{word-spacing:-20.245342px;}
.ws3a{word-spacing:-20.245335px;}
.wsbf{word-spacing:-20.245325px;}
.ws22{word-spacing:-20.245324px;}
.ws83{word-spacing:-20.245310px;}
.ws96{word-spacing:-20.245306px;}
.ws65{word-spacing:-20.245303px;}
.ws33{word-spacing:-20.245297px;}
.ws89{word-spacing:-20.245294px;}
.ws25{word-spacing:-20.245280px;}
.ws1e{word-spacing:-20.245279px;}
.ws28{word-spacing:-20.245277px;}
.ws29{word-spacing:-20.245261px;}
.wsbd{word-spacing:-20.245254px;}
.ws5c{word-spacing:-20.245252px;}
.ws85{word-spacing:-20.245251px;}
.wsa2{word-spacing:-20.245245px;}
.ws1b{word-spacing:-20.245239px;}
.ws12{word-spacing:-20.245235px;}
.ws3d{word-spacing:-20.245232px;}
.ws6c{word-spacing:-20.245230px;}
.ws18{word-spacing:-20.245226px;}
.wsc1{word-spacing:-20.245225px;}
.ws1c{word-spacing:-20.245223px;}
.ws2b{word-spacing:-20.245219px;}
.ws2c{word-spacing:-20.245216px;}
.ws1a{word-spacing:-20.245212px;}
.ws1f{word-spacing:-20.245210px;}
.ws72{word-spacing:-20.245207px;}
.ws62{word-spacing:-20.245204px;}
.ws26{word-spacing:-20.245199px;}
.wsb6{word-spacing:-20.245196px;}
.ws4c{word-spacing:-20.245194px;}
.ws4b{word-spacing:-20.245191px;}
.wsa6{word-spacing:-20.245187px;}
.ws3e{word-spacing:-20.245184px;}
.ws35{word-spacing:-20.245181px;}
.wsbe{word-spacing:-20.245177px;}
.ws7c{word-spacing:-20.245171px;}
.ws2a{word-spacing:-20.245168px;}
.wsc4{word-spacing:-20.245167px;}
.ws41{word-spacing:-20.245165px;}
.ws4d{word-spacing:-20.245163px;}
.ws21{word-spacing:-20.245162px;}
.ws6f{word-spacing:-20.245160px;}
.ws9e{word-spacing:-20.245158px;}
.ws13{word-spacing:-20.245157px;}
.ws3c{word-spacing:-20.245155px;}
.wsd{word-spacing:-20.245152px;}
.ws38{word-spacing:-20.245151px;}
.ws6{word-spacing:-20.245149px;}
.ws5{word-spacing:-20.245148px;}
.ws23{word-spacing:-20.245146px;}
.wsc3{word-spacing:-20.245144px;}
.ws24{word-spacing:-20.245141px;}
.wsb1{word-spacing:-20.245139px;}
.ws32{word-spacing:-20.245138px;}
.ws1d{word-spacing:-20.245136px;}
.wsbb{word-spacing:-20.245133px;}
.ws99{word-spacing:-20.245131px;}
.wsc7{word-spacing:-20.245130px;}
.ws68{word-spacing:-20.245128px;}
.ws60{word-spacing:-20.245126px;}
.ws46{word-spacing:-20.245120px;}
.wsb8{word-spacing:-20.245117px;}
.ws8a{word-spacing:-20.245095px;}
.ws59{word-spacing:-20.245091px;}
.wsc8{word-spacing:-20.245088px;}
.ws57{word-spacing:-20.245075px;}
.wsb5{word-spacing:-20.245071px;}
.ws97{word-spacing:-20.245046px;}
.wsae{word-spacing:-20.242710px;}
.ws73{word-spacing:-20.242580px;}
.ws20{word-spacing:-20.242533px;}
.wsa7{word-spacing:-20.242530px;}
.ws81{word-spacing:-20.242523px;}
.ws19{word-spacing:-20.242519px;}
.ws55{word-spacing:-20.242518px;}
.wsbc{word-spacing:-20.242516px;}
.wsc0{word-spacing:-20.234694px;}
.ws15{word-spacing:-20.234691px;}
.ws71{word-spacing:-20.234689px;}
.ws8d{word-spacing:-20.234686px;}
.wsc5{word-spacing:-20.234682px;}
.ws8f{word-spacing:-20.234667px;}
.ws76{word-spacing:-20.232244px;}
.ws92{word-spacing:-20.232189px;}
.ws36{word-spacing:-20.232144px;}
.ws9b{word-spacing:-20.232135px;}
.wsb4{word-spacing:-20.232128px;}
.wsab{word-spacing:-20.232126px;}
.ws78{word-spacing:-20.232119px;}
.wsa4{word-spacing:-20.232115px;}
.ws7b{word-spacing:-20.232109px;}
.ws45{word-spacing:-20.232107px;}
.ws77{word-spacing:-20.232105px;}
.ws34{word-spacing:-20.232104px;}
.wsf{word-spacing:-20.232101px;}
.ws67{word-spacing:-20.232099px;}
.wsa5{word-spacing:-20.232098px;}
.wsb3{word-spacing:-20.232095px;}
.ws79{word-spacing:-20.232092px;}
.ws69{word-spacing:-20.232090px;}
.wsa8{word-spacing:-20.232086px;}
.ws7a{word-spacing:-20.232019px;}
.ws7{word-spacing:-20.229492px;}
.ws4a{word-spacing:-14.689133px;}
.ws8{word-spacing:-11.083303px;}
.wsac{word-spacing:-6.758199px;}
.wsad{word-spacing:-6.745136px;}
.ws17{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.ws50{word-spacing:18.216232px;}
.ws58{word-spacing:18.229245px;}
.ws39{word-spacing:18.229280px;}
.ws56{word-spacing:18.231802px;}
.ws5a{word-spacing:18.231806px;}
.ws37{word-spacing:18.231809px;}
.ws51{word-spacing:18.231815px;}
.wsba{word-spacing:18.231817px;}
.ws42{word-spacing:18.231819px;}
.ws54{word-spacing:18.231820px;}
.ws3b{word-spacing:18.231822px;}
.ws64{word-spacing:18.231827px;}
.ws6e{word-spacing:18.231837px;}
.ws52{word-spacing:18.231846px;}
.ws47{word-spacing:18.231851px;}
.ws5f{word-spacing:18.231878px;}
.ws5b{word-spacing:18.231956px;}
.ws6d{word-spacing:18.242216px;}
.ws5e{word-spacing:18.242261px;}
.ws5d{word-spacing:18.242279px;}
.ws61{word-spacing:18.244870px;}
.ws9d{word-spacing:18.919301px;}
.ws63{word-spacing:29.592771px;}
.wsb{word-spacing:58.932291px;}
.wsc{word-spacing:63.919301px;}
.wsb9{word-spacing:81.432291px;}
._2{margin-left:-12.650003px;}
._1{margin-left:-8.610395px;}
._b{margin-left:-7.344087px;}
._5{margin-left:-6.330819px;}
._a{margin-left:-5.213707px;}
._0{margin-left:-3.972652px;}
._7{margin-left:-2.028794px;}
._6{margin-left:-1.008344px;}
._f{width:2.069065px;}
._c{width:17.300265px;}
._11{width:22.743118px;}
._d{width:36.090186px;}
._3{width:37.945315px;}
._8{width:52.957030px;}
._9{width:68.135741px;}
._10{width:85.461040px;}
._4{width:107.921820px;}
._e{width:130.480520px;}
.fc2{color:rgb(36,39,41);}
.fc1{color:rgb(17,85,204);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:48.000002px;}
.fs3{font-size:66.000002px;}
.fs6{font-size:68.999999px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:83.999997px;}
.fs2{font-size:114.000003px;}
.fs0{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.ya8{bottom:2.542969px;}
.y98{bottom:3.496582px;}
.y7b{bottom:11.371577px;}
.y8{bottom:11.371583px;}
.yad{bottom:22.469972px;}
.ya{bottom:30.344972px;}
.y81{bottom:46.844967px;}
.y80{bottom:65.818347px;}
.y7f{bottom:84.791742px;}
.y7e{bottom:103.765137px;}
.y16a{bottom:114.958739px;}
.y118{bottom:114.960209px;}
.y12b{bottom:118.501460px;}
.y4d{bottom:120.134759px;}
.y93{bottom:120.274664px;}
.yfc{bottom:125.309324px;}
.y172{bottom:128.757569px;}
.y140{bottom:128.759039px;}
.y117{bottom:133.934324px;}
.yd8{bottom:136.858154px;}
.y4c{bottom:139.108154px;}
.y92{bottom:139.248044px;}
.y18f{bottom:140.833739px;}
.y13f{bottom:147.733154px;}
.y11d{bottom:152.906984px;}
.yd7{bottom:155.831549px;}
.y4b{bottom:158.081549px;}
.y12a{bottom:160.669184px;}
.ya9{bottom:162.758796px;}
.yfb{bottom:163.256099px;}
.y13e{bottom:166.705814px;}
.ya7{bottom:167.933357px;}
.y116{bottom:171.879644px;}
.yd6{bottom:174.804929px;}
.y4a{bottom:177.054929px;}
.y91{bottom:177.194819px;}
.y18e{bottom:178.779059px;}
.y129{bottom:179.641844px;}
.yfa{bottom:182.230229px;}
.y13d{bottom:185.678474px;}
.ya6{bottom:186.353759px;}
.y115{bottom:190.853759px;}
.y169{bottom:190.855229px;}
.yd5{bottom:193.778324px;}
.y49{bottom:196.028324px;}
.y90{bottom:196.168214px;}
.y18d{bottom:197.751704px;}
.y128{bottom:199.568840px;}
.yf9{bottom:201.202874px;}
.y13c{bottom:204.652589px;}
.y171{bottom:204.654059px;}
.ya5{bottom:205.327154px;}
.y114{bottom:209.827874px;}
.yd4{bottom:212.751704px;}
.y48{bottom:215.001704px;}
.y8f{bottom:215.141609px;}
.y18c{bottom:216.727289px;}
.yf8{bottom:220.175534px;}
.y13b{bottom:223.626704px;}
.ya4{bottom:224.300534px;}
.y113{bottom:228.800534px;}
.yd3{bottom:231.725099px;}
.y47{bottom:233.975099px;}
.y8e{bottom:234.114989px;}
.y18b{bottom:235.699949px;}
.yf7{bottom:239.149664px;}
.y13a{bottom:242.599364px;}
.ya3{bottom:243.273929px;}
.y127{bottom:246.911864px;}
.y112{bottom:247.773194px;}
.yd2{bottom:250.698494px;}
.y46{bottom:252.948494px;}
.y18a{bottom:254.672609px;}
.yf6{bottom:258.123779px;}
.y139{bottom:261.572024px;}
.ya2{bottom:262.247309px;}
.y126{bottom:265.884524px;}
.y168{bottom:266.745854px;}
.y111{bottom:266.747309px;}
.yd1{bottom:269.671874px;}
.y45{bottom:271.921874px;}
.y8d{bottom:272.061764px;}
.y189{bottom:273.648194px;}
.y170{bottom:280.544684px;}
.y138{bottom:280.546139px;}
.ya1{bottom:281.220704px;}
.y125{bottom:284.858639px;}
.y110{bottom:285.721439px;}
.yd0{bottom:288.645269px;}
.y44{bottom:290.895269px;}
.y8c{bottom:291.035159px;}
.y188{bottom:292.620854px;}
.y74{bottom:293.438239px;}
.yf5{bottom:296.069099px;}
.y137{bottom:299.520269px;}
.y124{bottom:303.831299px;}
.y10f{bottom:304.694099px;}
.ycf{bottom:307.618649px;}
.y43{bottom:309.868649px;}
.y8b{bottom:310.008539px;}
.yf4{bottom:315.043214px;}
.y136{bottom:318.492914px;}
.ya0{bottom:319.167479px;}
.y11c{bottom:323.666744px;}
.yce{bottom:326.592044px;}
.y42{bottom:328.842044px;}
.y8a{bottom:328.981934px;}
.y187{bottom:330.566159px;}
.yf3{bottom:334.017329px;}
.y135{bottom:337.465574px;}
.y9f{bottom:338.140874px;}
.y123{bottom:341.778074px;}
.y73{bottom:342.640874px;}
.y167{bottom:342.642329px;}
.ycd{bottom:345.565424px;}
.y41{bottom:347.815424px;}
.y89{bottom:347.955329px;}
.y186{bottom:349.538819px;}
.yf2{bottom:352.989989px;}
.y15f{bottom:356.439704px;}
.y16f{bottom:356.441159px;}
.y9e{bottom:357.114254px;}
.y134{bottom:357.394040px;}
.y122{bottom:360.752204px;}
.y72{bottom:361.614254px;}
.y10e{bottom:361.614989px;}
.ycc{bottom:364.538819px;}
.y40{bottom:366.788819px;}
.y88{bottom:366.928709px;}
.y185{bottom:371.057374px;}
.y15e{bottom:375.413819px;}
.y9d{bottom:376.087649px;}
.y16e{bottom:376.366700px;}
.y121{bottom:379.724849px;}
.y10d{bottom:380.587649px;}
.ycb{bottom:383.512214px;}
.y3f{bottom:385.762214px;}
.y87{bottom:388.445074px;}
.yf1{bottom:390.936764px;}
.y15d{bottom:394.386479px;}
.y9c{bottom:395.061029px;}
.y10c{bottom:399.560309px;}
.y71{bottom:399.561029px;}
.y120{bottom:401.241949px;}
.yca{bottom:402.485594px;}
.y3e{bottom:404.735594px;}
.yf0{bottom:409.910894px;}
.y15c{bottom:413.359124px;}
.y9b{bottom:414.034424px;}
.y166{bottom:418.532954px;}
.y70{bottom:418.534424px;}
.y184{bottom:420.258539px;}
.yc9{bottom:421.458989px;}
.y3d{bottom:423.708989px;}
.y96{bottom:426.251959px;}
.yef{bottom:428.883539px;}
.y9a{bottom:430.636236px;}
.y15b{bottom:432.333254px;}
.y6f{bottom:437.507819px;}
.y11b{bottom:437.508539px;}
.y86{bottom:437.647709px;}
.yc8{bottom:440.432369px;}
.y183{bottom:441.777094px;}
.y3c{bottom:442.682369px;}
.yee{bottom:447.856934px;}
.y15a{bottom:451.307369px;}
.y99{bottom:454.231199px;}
.y11f{bottom:455.777707px;}
.y6e{bottom:456.481199px;}
.yc7{bottom:459.405764px;}
.y3b{bottom:461.655764px;}
.y159{bottom:470.280029px;}
.y97{bottom:470.833011px;}
.y85{bottom:473.222907px;}
.y10b{bottom:475.453859px;}
.y6d{bottom:475.454594px;}
.yc6{bottom:478.379144px;}
.y3a{bottom:480.629144px;}
.yed{bottom:485.803709px;}
.y158{bottom:489.252689px;}
.y182{bottom:490.978274px;}
.y84{bottom:492.196296px;}
.y6c{bottom:494.427974px;}
.y165{bottom:494.429444px;}
.yc5{bottom:497.352539px;}
.y39{bottom:499.602539px;}
.yec{bottom:504.777104px;}
.y157{bottom:508.226804px;}
.y181{bottom:512.493889px;}
.y11a{bottom:513.402104px;}
.yc4{bottom:516.325934px;}
.y38{bottom:518.575934px;}
.yeb{bottom:523.750484px;}
.y156{bottom:527.200934px;}
.y83{bottom:528.044682px;}
.y6b{bottom:532.374749px;}
.yc3{bottom:535.299314px;}
.y37{bottom:537.549314px;}
.y1a{bottom:539.458746px;}
.y155{bottom:546.173579px;}
.y82{bottom:547.018071px;}
.y10a{bottom:551.347409px;}
.y6a{bottom:551.348144px;}
.yc2{bottom:554.272709px;}
.y36{bottom:556.522709px;}
.yea{bottom:561.697259px;}
.y180{bottom:561.697994px;}
.y154{bottom:565.146239px;}
.y164{bottom:570.320069px;}
.y69{bottom:570.321539px;}
.yc1{bottom:573.246089px;}
.y35{bottom:575.496089px;}
.y19{bottom:578.606691px;}
.ye9{bottom:580.670654px;}
.y7d{bottom:582.866462px;}
.y153{bottom:584.120369px;}
.y68{bottom:589.294919px;}
.y109{bottom:589.295654px;}
.yc0{bottom:592.219484px;}
.y34{bottom:594.469484px;}
.ye8{bottom:599.644049px;}
.y17f{bottom:602.186284px;}
.y152{bottom:603.094484px;}
.y67{bottom:608.268314px;}
.ybf{bottom:611.192879px;}
.y33{bottom:613.442879px;}
.y18{bottom:617.754636px;}
.y151{bottom:622.067144px;}
.y108{bottom:627.240974px;}
.y66{bottom:627.241694px;}
.ybe{bottom:630.166259px;}
.y32{bottom:632.416259px;}
.ye7{bottom:637.590824px;}
.y150{bottom:641.039789px;}
.y65{bottom:646.215089px;}
.y163{bottom:646.216559px;}
.ybd{bottom:649.139654px;}
.y31{bottom:651.389654px;}
.y17e{bottom:651.390374px;}
.ye6{bottom:656.564204px;}
.y17{bottom:656.902581px;}
.y14f{bottom:660.013919px;}
.y95{bottom:665.188484px;}
.y107{bottom:665.189204px;}
.ybc{bottom:668.113034px;}
.y30{bottom:670.363034px;}
.y7c{bottom:675.260016px;}
.ye5{bottom:675.537599px;}
.y14e{bottom:678.988034px;}
.y64{bottom:684.161864px;}
.ybb{bottom:687.086429px;}
.y17d{bottom:689.335694px;}
.y2f{bottom:689.336429px;}
.y16{bottom:696.050541px;}
.y14d{bottom:697.960694px;}
.y106{bottom:703.134524px;}
.y63{bottom:703.135259px;}
.yba{bottom:706.059809px;}
.y2e{bottom:708.309809px;}
.y7a{bottom:711.108402px;}
.ye4{bottom:713.484374px;}
.y14c{bottom:716.933354px;}
.y162{bottom:722.107184px;}
.y62{bottom:722.108639px;}
.yb9{bottom:725.033204px;}
.y2d{bottom:727.283204px;}
.y17c{bottom:727.283939px;}
.y79{bottom:730.081791px;}
.ye3{bottom:732.457769px;}
.y15{bottom:735.198486px;}
.y14b{bottom:735.907469px;}
.y61{bottom:741.082034px;}
.y105{bottom:741.082769px;}
.yb8{bottom:744.006599px;}
.y2c{bottom:746.256599px;}
.ye2{bottom:751.431149px;}
.y14a{bottom:754.881599px;}
.y60{bottom:760.055414px;}
.yb7{bottom:762.979979px;}
.y17b{bottom:765.229244px;}
.y2b{bottom:765.229979px;}
.y78{bottom:765.930171px;}
.ye1{bottom:770.404544px;}
.y149{bottom:773.854244px;}
.y14{bottom:774.346431px;}
.y104{bottom:779.028074px;}
.y5f{bottom:779.028809px;}
.yb6{bottom:781.953374px;}
.y2a{bottom:784.203374px;}
.y17a{bottom:784.204829px;}
.ye0{bottom:789.377924px;}
.y148{bottom:792.826904px;}
.y94{bottom:798.002204px;}
.y161{bottom:798.003659px;}
.yb5{bottom:800.926754px;}
.y77{bottom:801.778566px;}
.y29{bottom:803.176754px;}
.y179{bottom:803.177489px;}
.ydf{bottom:808.351319px;}
.y147{bottom:811.801019px;}
.y13{bottom:813.494391px;}
.y5e{bottom:816.975584px;}
.y103{bottom:816.976319px;}
.y28{bottom:822.150149px;}
.yde{bottom:827.324714px;}
.y146{bottom:830.775149px;}
.y5d{bottom:835.948979px;}
.y133{bottom:838.491949px;}
.yb4{bottom:838.873529px;}
.y178{bottom:841.122809px;}
.ydd{bottom:846.298094px;}
.y145{bottom:849.747809px;}
.y12{bottom:852.642336px;}
.y119{bottom:854.921624px;}
.y5c{bottom:854.922359px;}
.yb3{bottom:857.846924px;}
.y177{bottom:860.095454px;}
.y27{bottom:860.096924px;}
.ydc{bottom:865.271489px;}
.y144{bottom:868.720454px;}
.y160{bottom:873.894284px;}
.y5b{bottom:873.895754px;}
.y26{bottom:879.070319px;}
.y176{bottom:879.071039px;}
.ydb{bottom:884.244869px;}
.y132{bottom:887.694584px;}
.y11{bottom:891.790281px;}
.y5a{bottom:892.869134px;}
.y102{bottom:892.869869px;}
.yb2{bottom:895.793699px;}
.y25{bottom:898.043699px;}
.y76{bottom:900.586669px;}
.yda{bottom:905.761234px;}
.y131{bottom:906.668699px;}
.y59{bottom:911.842529px;}
.yb1{bottom:914.767094px;}
.y175{bottom:917.016359px;}
.y24{bottom:917.017094px;}
.y130{bottom:925.641359px;}
.y101{bottom:930.815189px;}
.y58{bottom:930.815924px;}
.y10{bottom:930.938226px;}
.yb0{bottom:933.740474px;}
.y23{bottom:935.990474px;}
.y12f{bottom:944.614019px;}
.y57{bottom:949.789304px;}
.y16d{bottom:949.790774px;}
.y5{bottom:951.832036px;}
.yaf{bottom:952.713869px;}
.y22{bottom:954.963869px;}
.y174{bottom:954.964604px;}
.y12e{bottom:963.588134px;}
.y56{bottom:968.762699px;}
.y11e{bottom:968.763434px;}
.yf{bottom:970.086186px;}
.y4{bottom:972.530266px;}
.y21{bottom:973.937249px;}
.yae{bottom:974.230219px;}
.y12d{bottom:982.562249px;}
.y55{bottom:987.736079px;}
.y20{bottom:992.910644px;}
.y3{bottom:993.228511px;}
.y173{bottom:995.452881px;}
.y143{bottom:1001.534912px;}
.yac{bottom:1002.087890px;}
.y12c{bottom:1002.487791px;}
.y100{bottom:1006.708740px;}
.y54{bottom:1006.709474px;}
.ye{bottom:1009.234131px;}
.y1f{bottom:1011.884034px;}
.y9{bottom:1012.584228px;}
.y2{bottom:1013.926757px;}
.y142{bottom:1020.507569px;}
.yab{bottom:1021.061279px;}
.y16c{bottom:1025.681397px;}
.y53{bottom:1025.682861px;}
.yaa{bottom:1026.235839px;}
.yb{bottom:1031.557617px;}
.yd9{bottom:1033.400391px;}
.y141{bottom:1040.436033px;}
.y52{bottom:1044.656250px;}
.yff{bottom:1044.656982px;}
.yd{bottom:1048.382081px;}
.y1e{bottom:1049.830811px;}
.y51{bottom:1063.629639px;}
.y7{bottom:1067.406006px;}
.y1d{bottom:1068.804200px;}
.yfe{bottom:1082.602295px;}
.y50{bottom:1082.603028px;}
.yc{bottom:1087.530029px;}
.y1c{bottom:1087.777589px;}
.y75{bottom:1101.576416px;}
.y16b{bottom:1101.577881px;}
.y1b{bottom:1106.750976px;}
.y4f{bottom:1120.549805px;}
.yfd{bottom:1120.550537px;}
.y1{bottom:1121.232422px;}
.y6{bottom:1128.267334px;}
.y4e{bottom:1139.523194px;}
.hb{height:13.798828px;}
.ha{height:18.973389px;}
.h4{height:34.723389px;}
.hc{height:34.992189px;}
.hd{height:37.946778px;}
.h8{height:48.049806px;}
.h5{height:48.114259px;}
.he{height:50.301268px;}
.h2{height:52.488281px;}
.h6{height:53.696778px;}
.h7{height:61.236326px;}
.h3{height:83.106447px;}
.h1{height:104.835938px;}
.h9{height:127.116943px;}
.h0{height:1263.000000px;}
.w8{width:31.499953px;}
.w6{width:31.500000px;}
.w7{width:31.500012px;}
.w3{width:134.999953px;}
.w2{width:135.000000px;}
.w1{width:135.000012px;}
.w5{width:224.999908px;}
.w4{width:225.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x4{left:6.750000px;}
.x29{left:101.521843px;}
.xb{left:103.910528px;}
.x2{left:106.299213px;}
.x3{left:107.424213px;}
.x2b{left:110.170314px;}
.x11{left:119.548244px;}
.x2a{left:127.674213px;}
.x9{left:133.299213px;}
.x15{left:140.049213px;}
.x2c{left:149.049213px;}
.xa{left:152.291416px;}
.x28{left:159.174213px;}
.xc{left:160.299213px;}
.x16{left:172.674213px;}
.xd{left:187.299213px;}
.x2d{left:191.799213px;}
.x17{left:205.299225px;}
.x14{left:212.049213px;}
.xe{left:214.299213px;}
.x18{left:237.924225px;}
.xf{left:241.299213px;}
.x5{left:243.549225px;}
.x10{left:268.299213px;}
.x19{left:270.549225px;}
.x1a{left:303.174225px;}
.x12{left:333.549225px;}
.x1b{left:335.799225px;}
.x1c{left:368.424225px;}
.x6{left:379.674225px;}
.x1{left:393.449849px;}
.x1d{left:401.049225px;}
.x1e{left:433.674225px;}
.x1f{left:466.299225px;}
.x20{left:498.924225px;}
.x7{left:515.799225px;}
.x21{left:531.549225px;}
.x13{left:559.674225px;}
.x22{left:564.174225px;}
.x23{left:596.799180px;}
.x24{left:629.424180px;}
.x8{left:651.924180px;}
.x25{left:662.049180px;}
.x26{left:694.674180px;}
.x27{left:727.299180px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:60.565103pt;}
.ws9f{word-spacing:-43.604165pt;}
.ws4{word-spacing:-34.260418pt;}
.ws3f{word-spacing:-31.040773pt;}
.ws7e{word-spacing:-31.040757pt;}
.ws3{word-spacing:-31.040753pt;}
.ws49{word-spacing:-29.333334pt;}
.ws70{word-spacing:-24.916668pt;}
.wsaa{word-spacing:-22.905773pt;}
.wsa1{word-spacing:-22.894124pt;}
.ws9{word-spacing:-22.894122pt;}
.wsa{word-spacing:-22.894119pt;}
.wsa9{word-spacing:-22.894104pt;}
.wsa0{word-spacing:-22.891784pt;}
.ws0{word-spacing:-19.593751pt;}
.ws1{word-spacing:-19.593749pt;}
.ws88{word-spacing:-18.011975pt;}
.ws7d{word-spacing:-18.007290pt;}
.ws43{word-spacing:-18.007288pt;}
.ws16{word-spacing:-18.007279pt;}
.ws87{word-spacing:-18.007250pt;}
.ws93{word-spacing:-18.007249pt;}
.ws9a{word-spacing:-18.007240pt;}
.wsb0{word-spacing:-18.007236pt;}
.wsaf{word-spacing:-18.007226pt;}
.ws2f{word-spacing:-18.007224pt;}
.ws48{word-spacing:-18.007222pt;}
.wsb2{word-spacing:-18.007218pt;}
.ws95{word-spacing:-18.007208pt;}
.wsc6{word-spacing:-18.007191pt;}
.ws94{word-spacing:-18.007168pt;}
.wsc2{word-spacing:-18.007162pt;}
.ws8e{word-spacing:-18.004927pt;}
.ws74{word-spacing:-18.002709pt;}
.ws44{word-spacing:-18.002697pt;}
.ws10{word-spacing:-18.002692pt;}
.ws27{word-spacing:-18.002646pt;}
.ws84{word-spacing:-18.002609pt;}
.wse{word-spacing:-18.002607pt;}
.ws66{word-spacing:-18.002606pt;}
.ws8c{word-spacing:-18.002605pt;}
.ws6a{word-spacing:-18.002599pt;}
.ws98{word-spacing:-18.002594pt;}
.ws90{word-spacing:-18.002592pt;}
.wsb7{word-spacing:-18.002587pt;}
.ws86{word-spacing:-18.002583pt;}
.wsa3{word-spacing:-18.002580pt;}
.ws8b{word-spacing:-18.002549pt;}
.ws11{word-spacing:-18.002532pt;}
.ws30{word-spacing:-18.000358pt;}
.ws2e{word-spacing:-18.000324pt;}
.ws31{word-spacing:-18.000318pt;}
.ws2d{word-spacing:-18.000306pt;}
.ws80{word-spacing:-18.000294pt;}
.ws9c{word-spacing:-18.000267pt;}
.ws4f{word-spacing:-18.000227pt;}
.ws91{word-spacing:-18.000164pt;}
.ws7f{word-spacing:-17.998053pt;}
.ws6b{word-spacing:-17.998035pt;}
.ws40{word-spacing:-17.997967pt;}
.ws4e{word-spacing:-17.997965pt;}
.ws53{word-spacing:-17.995894pt;}
.ws75{word-spacing:-17.995874pt;}
.ws14{word-spacing:-17.995868pt;}
.ws82{word-spacing:-17.995860pt;}
.ws3a{word-spacing:-17.995854pt;}
.wsbf{word-spacing:-17.995845pt;}
.ws22{word-spacing:-17.995844pt;}
.ws83{word-spacing:-17.995831pt;}
.ws96{word-spacing:-17.995827pt;}
.ws65{word-spacing:-17.995825pt;}
.ws33{word-spacing:-17.995820pt;}
.ws89{word-spacing:-17.995817pt;}
.ws25{word-spacing:-17.995805pt;}
.ws1e{word-spacing:-17.995804pt;}
.ws28{word-spacing:-17.995802pt;}
.ws29{word-spacing:-17.995788pt;}
.wsbd{word-spacing:-17.995781pt;}
.ws5c{word-spacing:-17.995780pt;}
.ws85{word-spacing:-17.995778pt;}
.wsa2{word-spacing:-17.995773pt;}
.ws1b{word-spacing:-17.995768pt;}
.ws12{word-spacing:-17.995765pt;}
.ws3d{word-spacing:-17.995762pt;}
.ws6c{word-spacing:-17.995760pt;}
.ws18{word-spacing:-17.995757pt;}
.wsc1{word-spacing:-17.995756pt;}
.ws1c{word-spacing:-17.995754pt;}
.ws2b{word-spacing:-17.995750pt;}
.ws2c{word-spacing:-17.995747pt;}
.ws1a{word-spacing:-17.995744pt;}
.ws1f{word-spacing:-17.995742pt;}
.ws72{word-spacing:-17.995740pt;}
.ws62{word-spacing:-17.995737pt;}
.ws26{word-spacing:-17.995733pt;}
.wsb6{word-spacing:-17.995730pt;}
.ws4c{word-spacing:-17.995728pt;}
.ws4b{word-spacing:-17.995725pt;}
.wsa6{word-spacing:-17.995722pt;}
.ws3e{word-spacing:-17.995719pt;}
.ws35{word-spacing:-17.995717pt;}
.wsbe{word-spacing:-17.995713pt;}
.ws7c{word-spacing:-17.995708pt;}
.ws2a{word-spacing:-17.995705pt;}
.wsc4{word-spacing:-17.995704pt;}
.ws41{word-spacing:-17.995702pt;}
.ws4d{word-spacing:-17.995701pt;}
.ws21{word-spacing:-17.995700pt;}
.ws6f{word-spacing:-17.995698pt;}
.ws9e{word-spacing:-17.995696pt;}
.ws13{word-spacing:-17.995695pt;}
.ws3c{word-spacing:-17.995694pt;}
.wsd{word-spacing:-17.995691pt;}
.ws38{word-spacing:-17.995690pt;}
.ws6{word-spacing:-17.995688pt;}
.ws5{word-spacing:-17.995687pt;}
.ws23{word-spacing:-17.995685pt;}
.wsc3{word-spacing:-17.995683pt;}
.ws24{word-spacing:-17.995681pt;}
.wsb1{word-spacing:-17.995679pt;}
.ws32{word-spacing:-17.995678pt;}
.ws1d{word-spacing:-17.995676pt;}
.wsbb{word-spacing:-17.995674pt;}
.ws99{word-spacing:-17.995672pt;}
.wsc7{word-spacing:-17.995671pt;}
.ws68{word-spacing:-17.995670pt;}
.ws60{word-spacing:-17.995668pt;}
.ws46{word-spacing:-17.995662pt;}
.wsb8{word-spacing:-17.995660pt;}
.ws8a{word-spacing:-17.995640pt;}
.ws59{word-spacing:-17.995637pt;}
.wsc8{word-spacing:-17.995634pt;}
.ws57{word-spacing:-17.995622pt;}
.wsb5{word-spacing:-17.995619pt;}
.ws97{word-spacing:-17.995596pt;}
.wsae{word-spacing:-17.993520pt;}
.ws73{word-spacing:-17.993404pt;}
.ws20{word-spacing:-17.993363pt;}
.wsa7{word-spacing:-17.993360pt;}
.ws81{word-spacing:-17.993353pt;}
.ws19{word-spacing:-17.993350pt;}
.ws55{word-spacing:-17.993349pt;}
.wsbc{word-spacing:-17.993347pt;}
.wsc0{word-spacing:-17.986394pt;}
.ws15{word-spacing:-17.986392pt;}
.ws71{word-spacing:-17.986390pt;}
.ws8d{word-spacing:-17.986388pt;}
.wsc5{word-spacing:-17.986384pt;}
.ws8f{word-spacing:-17.986370pt;}
.ws76{word-spacing:-17.984217pt;}
.ws92{word-spacing:-17.984168pt;}
.ws36{word-spacing:-17.984128pt;}
.ws9b{word-spacing:-17.984120pt;}
.wsb4{word-spacing:-17.984114pt;}
.wsab{word-spacing:-17.984112pt;}
.ws78{word-spacing:-17.984106pt;}
.wsa4{word-spacing:-17.984102pt;}
.ws7b{word-spacing:-17.984097pt;}
.ws45{word-spacing:-17.984095pt;}
.ws77{word-spacing:-17.984094pt;}
.ws34{word-spacing:-17.984092pt;}
.wsf{word-spacing:-17.984090pt;}
.ws67{word-spacing:-17.984088pt;}
.wsa5{word-spacing:-17.984087pt;}
.wsb3{word-spacing:-17.984085pt;}
.ws79{word-spacing:-17.984082pt;}
.ws69{word-spacing:-17.984080pt;}
.wsa8{word-spacing:-17.984076pt;}
.ws7a{word-spacing:-17.984017pt;}
.ws7{word-spacing:-17.981771pt;}
.ws4a{word-spacing:-13.057007pt;}
.ws8{word-spacing:-9.851825pt;}
.wsac{word-spacing:-6.007288pt;}
.wsad{word-spacing:-5.995676pt;}
.ws17{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.ws50{word-spacing:16.192206pt;}
.ws58{word-spacing:16.203773pt;}
.ws39{word-spacing:16.203804pt;}
.ws56{word-spacing:16.206047pt;}
.ws5a{word-spacing:16.206049pt;}
.ws37{word-spacing:16.206052pt;}
.ws51{word-spacing:16.206057pt;}
.wsba{word-spacing:16.206059pt;}
.ws42{word-spacing:16.206061pt;}
.ws54{word-spacing:16.206063pt;}
.ws3b{word-spacing:16.206064pt;}
.ws64{word-spacing:16.206068pt;}
.ws6e{word-spacing:16.206077pt;}
.ws52{word-spacing:16.206085pt;}
.ws47{word-spacing:16.206089pt;}
.ws5f{word-spacing:16.206113pt;}
.ws5b{word-spacing:16.206183pt;}
.ws6d{word-spacing:16.215303pt;}
.ws5e{word-spacing:16.215344pt;}
.ws5d{word-spacing:16.215360pt;}
.ws61{word-spacing:16.217662pt;}
.ws9d{word-spacing:16.817157pt;}
.ws63{word-spacing:26.304685pt;}
.wsb{word-spacing:52.384259pt;}
.wsc{word-spacing:56.817157pt;}
.wsb9{word-spacing:72.384259pt;}
._2{margin-left:-11.244447pt;}
._1{margin-left:-7.653684pt;}
._b{margin-left:-6.528077pt;}
._5{margin-left:-5.627395pt;}
._a{margin-left:-4.634406pt;}
._0{margin-left:-3.531246pt;}
._7{margin-left:-1.803373pt;}
._6{margin-left:-0.896306pt;}
._f{width:1.839169pt;}
._c{width:15.378014pt;}
._11{width:20.216105pt;}
._d{width:32.080165pt;}
._3{width:33.729169pt;}
._8{width:47.072916pt;}
._9{width:60.565103pt;}
._10{width:75.965369pt;}
._4{width:95.930507pt;}
._e{width:115.982685pt;}
.fs5{font-size:42.666668pt;}
.fs3{font-size:58.666668pt;}
.fs6{font-size:61.333332pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.666664pt;}
.fs2{font-size:101.333336pt;}
.fs0{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.ya8{bottom:2.260417pt;}
.y98{bottom:3.108073pt;}
.y7b{bottom:10.108068pt;}
.y8{bottom:10.108073pt;}
.yad{bottom:19.973308pt;}
.ya{bottom:26.973308pt;}
.y81{bottom:41.639971pt;}
.y80{bottom:58.505197pt;}
.y7f{bottom:75.370437pt;}
.y7e{bottom:92.235677pt;}
.y16a{bottom:102.185545pt;}
.y118{bottom:102.186852pt;}
.y12b{bottom:105.334631pt;}
.y4d{bottom:106.786452pt;}
.y93{bottom:106.910812pt;}
.yfc{bottom:111.386065pt;}
.y172{bottom:114.451172pt;}
.y140{bottom:114.452479pt;}
.y117{bottom:119.052732pt;}
.yd8{bottom:121.651692pt;}
.y4c{bottom:123.651692pt;}
.y92{bottom:123.776039pt;}
.y18f{bottom:125.185545pt;}
.y13f{bottom:131.318359pt;}
.y11d{bottom:135.917319pt;}
.yd7{bottom:138.516932pt;}
.y4b{bottom:140.516932pt;}
.y12a{bottom:142.817052pt;}
.ya9{bottom:144.674486pt;}
.yfb{bottom:145.116532pt;}
.y13e{bottom:148.182945pt;}
.ya7{bottom:149.274095pt;}
.y116{bottom:152.781905pt;}
.yd6{bottom:155.382159pt;}
.y4a{bottom:157.382159pt;}
.y91{bottom:157.506505pt;}
.y18e{bottom:158.914719pt;}
.y129{bottom:159.681639pt;}
.yfa{bottom:161.982425pt;}
.y13d{bottom:165.047532pt;}
.ya6{bottom:165.647785pt;}
.y115{bottom:169.647785pt;}
.y169{bottom:169.649092pt;}
.yd5{bottom:172.247399pt;}
.y49{bottom:174.247399pt;}
.y90{bottom:174.371745pt;}
.y18d{bottom:175.779292pt;}
.y128{bottom:177.394524pt;}
.yf9{bottom:178.846999pt;}
.y13c{bottom:181.913412pt;}
.y171{bottom:181.914719pt;}
.ya5{bottom:182.513025pt;}
.y114{bottom:186.513665pt;}
.yd4{bottom:189.112625pt;}
.y48{bottom:191.112625pt;}
.y8f{bottom:191.236985pt;}
.y18c{bottom:192.646479pt;}
.yf8{bottom:195.711585pt;}
.y13b{bottom:198.779292pt;}
.ya4{bottom:199.378252pt;}
.y113{bottom:203.378252pt;}
.yd3{bottom:205.977865pt;}
.y47{bottom:207.977865pt;}
.y8e{bottom:208.102212pt;}
.y18b{bottom:209.511065pt;}
.yf7{bottom:212.577479pt;}
.y13a{bottom:215.643879pt;}
.ya3{bottom:216.243492pt;}
.y127{bottom:219.477212pt;}
.y112{bottom:220.242839pt;}
.yd2{bottom:222.843105pt;}
.y46{bottom:224.843105pt;}
.y18a{bottom:226.375652pt;}
.yf6{bottom:229.443359pt;}
.y139{bottom:232.508465pt;}
.ya2{bottom:233.108719pt;}
.y126{bottom:236.341799pt;}
.y168{bottom:237.107425pt;}
.y111{bottom:237.108719pt;}
.yd1{bottom:239.708332pt;}
.y45{bottom:241.708332pt;}
.y8d{bottom:241.832679pt;}
.y189{bottom:243.242839pt;}
.y170{bottom:249.373052pt;}
.y138{bottom:249.374345pt;}
.ya1{bottom:249.973959pt;}
.y125{bottom:253.207679pt;}
.y110{bottom:253.974612pt;}
.yd0{bottom:256.573572pt;}
.y44{bottom:258.573572pt;}
.y8c{bottom:258.697919pt;}
.y188{bottom:260.107425pt;}
.y74{bottom:260.833991pt;}
.yf5{bottom:263.172532pt;}
.y137{bottom:266.240239pt;}
.y124{bottom:270.072265pt;}
.y10f{bottom:270.839199pt;}
.ycf{bottom:273.438799pt;}
.y43{bottom:275.438799pt;}
.y8b{bottom:275.563145pt;}
.yf4{bottom:280.038412pt;}
.y136{bottom:283.104812pt;}
.ya0{bottom:283.704425pt;}
.y11c{bottom:287.703772pt;}
.yce{bottom:290.304039pt;}
.y42{bottom:292.304039pt;}
.y8a{bottom:292.428385pt;}
.y187{bottom:293.836585pt;}
.yf3{bottom:296.904292pt;}
.y135{bottom:299.969399pt;}
.y9f{bottom:300.569665pt;}
.y123{bottom:303.802732pt;}
.y73{bottom:304.569665pt;}
.y167{bottom:304.570959pt;}
.ycd{bottom:307.169265pt;}
.y41{bottom:309.169265pt;}
.y89{bottom:309.293625pt;}
.y186{bottom:310.701172pt;}
.yf2{bottom:313.768879pt;}
.y15f{bottom:316.835292pt;}
.y16f{bottom:316.836585pt;}
.y9e{bottom:317.434892pt;}
.y134{bottom:317.683591pt;}
.y122{bottom:320.668625pt;}
.y72{bottom:321.434892pt;}
.y10e{bottom:321.435545pt;}
.ycc{bottom:324.034505pt;}
.y40{bottom:326.034505pt;}
.y88{bottom:326.158852pt;}
.y185{bottom:329.828777pt;}
.y15e{bottom:333.701172pt;}
.y9d{bottom:334.300132pt;}
.y16e{bottom:334.548178pt;}
.y121{bottom:337.533199pt;}
.y10d{bottom:338.300132pt;}
.ycb{bottom:340.899745pt;}
.y3f{bottom:342.899745pt;}
.y87{bottom:345.284511pt;}
.yf1{bottom:347.499345pt;}
.y15d{bottom:350.565759pt;}
.y9c{bottom:351.165359pt;}
.y10c{bottom:355.164719pt;}
.y71{bottom:355.165359pt;}
.y120{bottom:356.659511pt;}
.yca{bottom:357.764972pt;}
.y3e{bottom:359.764972pt;}
.yf0{bottom:364.365239pt;}
.y15c{bottom:367.430332pt;}
.y9b{bottom:368.030599pt;}
.y166{bottom:372.029292pt;}
.y70{bottom:372.030599pt;}
.y184{bottom:373.563145pt;}
.yc9{bottom:374.630212pt;}
.y3d{bottom:376.630212pt;}
.y96{bottom:378.890631pt;}
.yef{bottom:381.229812pt;}
.y9a{bottom:382.787766pt;}
.y15b{bottom:384.296225pt;}
.y6f{bottom:388.895839pt;}
.y11b{bottom:388.896479pt;}
.y86{bottom:389.020185pt;}
.yc8{bottom:391.495439pt;}
.y183{bottom:392.690751pt;}
.y3c{bottom:393.495439pt;}
.yee{bottom:398.095052pt;}
.y15a{bottom:401.162105pt;}
.y99{bottom:403.761065pt;}
.y11f{bottom:405.135739pt;}
.y6e{bottom:405.761065pt;}
.yc7{bottom:408.360679pt;}
.y3b{bottom:410.360679pt;}
.y159{bottom:418.026692pt;}
.y97{bottom:418.518232pt;}
.y85{bottom:420.642584pt;}
.y10b{bottom:422.625652pt;}
.y6d{bottom:422.626305pt;}
.yc6{bottom:425.225905pt;}
.y3a{bottom:427.225905pt;}
.yed{bottom:431.825519pt;}
.y158{bottom:434.891279pt;}
.y182{bottom:436.425132pt;}
.y84{bottom:437.507819pt;}
.y6c{bottom:439.491532pt;}
.y165{bottom:439.492839pt;}
.yc5{bottom:442.091145pt;}
.y39{bottom:444.091145pt;}
.yec{bottom:448.690759pt;}
.y157{bottom:451.757159pt;}
.y181{bottom:455.550124pt;}
.y11a{bottom:456.357425pt;}
.yc4{bottom:458.956385pt;}
.y38{bottom:460.956385pt;}
.yeb{bottom:465.555985pt;}
.y156{bottom:468.623052pt;}
.y83{bottom:469.373051pt;}
.y6b{bottom:473.221999pt;}
.yc3{bottom:475.821612pt;}
.y37{bottom:477.821612pt;}
.y1a{bottom:479.518886pt;}
.y155{bottom:485.487625pt;}
.y82{bottom:486.238285pt;}
.y10a{bottom:490.086585pt;}
.y6a{bottom:490.087239pt;}
.yc2{bottom:492.686852pt;}
.y36{bottom:494.686852pt;}
.yea{bottom:499.286452pt;}
.y180{bottom:499.287105pt;}
.y154{bottom:502.352212pt;}
.y164{bottom:506.951172pt;}
.y69{bottom:506.952479pt;}
.yc1{bottom:509.552079pt;}
.y35{bottom:511.552079pt;}
.y19{bottom:514.317059pt;}
.ye9{bottom:516.151692pt;}
.y7d{bottom:518.103521pt;}
.y153{bottom:519.218105pt;}
.y68{bottom:523.817705pt;}
.y109{bottom:523.818359pt;}
.yc0{bottom:526.417319pt;}
.y34{bottom:528.417319pt;}
.ye8{bottom:533.016932pt;}
.y17f{bottom:535.276697pt;}
.y152{bottom:536.083985pt;}
.y67{bottom:540.682945pt;}
.ybf{bottom:543.282559pt;}
.y33{bottom:545.282559pt;}
.y18{bottom:549.115232pt;}
.y151{bottom:552.948572pt;}
.y108{bottom:557.547532pt;}
.y66{bottom:557.548172pt;}
.ybe{bottom:560.147785pt;}
.y32{bottom:562.147785pt;}
.ye7{bottom:566.747399pt;}
.y150{bottom:569.813145pt;}
.y65{bottom:574.413412pt;}
.y163{bottom:574.414719pt;}
.ybd{bottom:577.013025pt;}
.y31{bottom:579.013025pt;}
.y17e{bottom:579.013665pt;}
.ye6{bottom:583.612625pt;}
.y17{bottom:583.913406pt;}
.y14f{bottom:586.679039pt;}
.y95{bottom:591.278652pt;}
.y107{bottom:591.279292pt;}
.ybc{bottom:593.878252pt;}
.y30{bottom:595.878252pt;}
.y7c{bottom:600.231125pt;}
.ye5{bottom:600.477865pt;}
.y14e{bottom:603.544919pt;}
.y64{bottom:608.143879pt;}
.ybb{bottom:610.743492pt;}
.y17d{bottom:612.742839pt;}
.y2f{bottom:612.743492pt;}
.y16{bottom:618.711592pt;}
.y14d{bottom:620.409505pt;}
.y106{bottom:625.008465pt;}
.y63{bottom:625.009119pt;}
.yba{bottom:627.608719pt;}
.y2e{bottom:629.608719pt;}
.y7a{bottom:632.096357pt;}
.ye4{bottom:634.208332pt;}
.y14c{bottom:637.274092pt;}
.y162{bottom:641.873052pt;}
.y62{bottom:641.874345pt;}
.yb9{bottom:644.473959pt;}
.y2d{bottom:646.473959pt;}
.y17c{bottom:646.474612pt;}
.y79{bottom:648.961592pt;}
.ye3{bottom:651.073572pt;}
.y15{bottom:653.509766pt;}
.y14b{bottom:654.139972pt;}
.y61{bottom:658.739585pt;}
.y105{bottom:658.740239pt;}
.yb8{bottom:661.339199pt;}
.y2c{bottom:663.339199pt;}
.ye2{bottom:667.938799pt;}
.y14a{bottom:671.005865pt;}
.y60{bottom:675.604812pt;}
.yb7{bottom:678.204425pt;}
.y17b{bottom:680.203772pt;}
.y2b{bottom:680.204425pt;}
.y78{bottom:680.826819pt;}
.ye1{bottom:684.804039pt;}
.y149{bottom:687.870439pt;}
.y14{bottom:688.307939pt;}
.y104{bottom:692.469399pt;}
.y5f{bottom:692.470052pt;}
.yb6{bottom:695.069665pt;}
.y2a{bottom:697.069665pt;}
.y17a{bottom:697.070959pt;}
.ye0{bottom:701.669265pt;}
.y148{bottom:704.735025pt;}
.y94{bottom:709.335292pt;}
.y161{bottom:709.336585pt;}
.yb5{bottom:711.934892pt;}
.y77{bottom:712.692059pt;}
.y29{bottom:713.934892pt;}
.y179{bottom:713.935545pt;}
.ydf{bottom:718.534505pt;}
.y147{bottom:721.600905pt;}
.y13{bottom:723.106126pt;}
.y5e{bottom:726.200519pt;}
.y103{bottom:726.201172pt;}
.y28{bottom:730.800132pt;}
.yde{bottom:735.399745pt;}
.y146{bottom:738.466799pt;}
.y5d{bottom:743.065759pt;}
.y133{bottom:745.326177pt;}
.yb4{bottom:745.665359pt;}
.y178{bottom:747.664719pt;}
.ydd{bottom:752.264972pt;}
.y145{bottom:755.331385pt;}
.y12{bottom:757.904299pt;}
.y119{bottom:759.930332pt;}
.y5c{bottom:759.930985pt;}
.yb3{bottom:762.530599pt;}
.y177{bottom:764.529292pt;}
.y27{bottom:764.530599pt;}
.ydc{bottom:769.130212pt;}
.y144{bottom:772.195959pt;}
.y160{bottom:776.794919pt;}
.y5b{bottom:776.796225pt;}
.y26{bottom:781.395839pt;}
.y176{bottom:781.396479pt;}
.ydb{bottom:785.995439pt;}
.y132{bottom:789.061852pt;}
.y11{bottom:792.702472pt;}
.y5a{bottom:793.661452pt;}
.y102{bottom:793.662105pt;}
.yb2{bottom:796.261065pt;}
.y25{bottom:798.261065pt;}
.y76{bottom:800.521484pt;}
.yda{bottom:805.121097pt;}
.y131{bottom:805.927732pt;}
.y59{bottom:810.526692pt;}
.yb1{bottom:813.126305pt;}
.y175{bottom:815.125652pt;}
.y24{bottom:815.126305pt;}
.y130{bottom:822.792319pt;}
.y101{bottom:827.391279pt;}
.y58{bottom:827.391932pt;}
.y10{bottom:827.500646pt;}
.yb0{bottom:829.991532pt;}
.y23{bottom:831.991532pt;}
.y12f{bottom:839.656905pt;}
.y57{bottom:844.257159pt;}
.y16d{bottom:844.258465pt;}
.y5{bottom:846.072921pt;}
.yaf{bottom:846.856772pt;}
.y22{bottom:848.856772pt;}
.y174{bottom:848.857425pt;}
.y12e{bottom:856.522785pt;}
.y56{bottom:861.122399pt;}
.y11e{bottom:861.123052pt;}
.yf{bottom:862.298832pt;}
.y4{bottom:864.471347pt;}
.y21{bottom:865.721999pt;}
.yae{bottom:865.982417pt;}
.y12d{bottom:873.388665pt;}
.y55{bottom:877.987625pt;}
.y20{bottom:882.587239pt;}
.y3{bottom:882.869787pt;}
.y173{bottom:884.847005pt;}
.y143{bottom:890.253255pt;}
.yac{bottom:890.744791pt;}
.y12c{bottom:891.100259pt;}
.y100{bottom:894.852213pt;}
.y54{bottom:894.852865pt;}
.ye{bottom:897.097006pt;}
.y1f{bottom:899.452475pt;}
.y9{bottom:900.074869pt;}
.y2{bottom:901.268229pt;}
.y142{bottom:907.117839pt;}
.yab{bottom:907.610026pt;}
.y16c{bottom:911.716797pt;}
.y53{bottom:911.718099pt;}
.yaa{bottom:912.209635pt;}
.yb{bottom:916.940104pt;}
.yd9{bottom:918.578125pt;}
.y141{bottom:924.832030pt;}
.y52{bottom:928.583333pt;}
.yff{bottom:928.583984pt;}
.yd{bottom:931.895183pt;}
.y1e{bottom:933.182943pt;}
.y51{bottom:945.448568pt;}
.y7{bottom:948.805339pt;}
.y1d{bottom:950.048177pt;}
.yfe{bottom:962.313151pt;}
.y50{bottom:962.313803pt;}
.yc{bottom:966.693359pt;}
.y1c{bottom:966.913412pt;}
.y75{bottom:979.179036pt;}
.y16b{bottom:979.180339pt;}
.y1b{bottom:983.778645pt;}
.y4f{bottom:996.044271pt;}
.yfd{bottom:996.044921pt;}
.y1{bottom:996.651042pt;}
.y6{bottom:1002.904297pt;}
.y4e{bottom:1012.909505pt;}
.hb{height:12.265625pt;}
.ha{height:16.865234pt;}
.h4{height:30.865235pt;}
.hc{height:31.104168pt;}
.hd{height:33.730469pt;}
.h8{height:42.710938pt;}
.h5{height:42.768230pt;}
.he{height:44.712239pt;}
.h2{height:46.656250pt;}
.h6{height:47.730469pt;}
.h7{height:54.432290pt;}
.h3{height:73.872398pt;}
.h1{height:93.187500pt;}
.h9{height:112.992839pt;}
.h0{height:1122.666667pt;}
.w8{width:27.999959pt;}
.w6{width:28.000000pt;}
.w7{width:28.000011pt;}
.w3{width:119.999959pt;}
.w2{width:120.000000pt;}
.w1{width:120.000011pt;}
.w5{width:199.999919pt;}
.w4{width:200.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x4{left:6.000000pt;}
.x29{left:90.241638pt;}
.xb{left:92.364914pt;}
.x2{left:94.488189pt;}
.x3{left:95.488189pt;}
.x2b{left:97.929168pt;}
.x11{left:106.265106pt;}
.x2a{left:113.488189pt;}
.x9{left:118.488189pt;}
.x15{left:124.488189pt;}
.x2c{left:132.488189pt;}
.xa{left:135.370147pt;}
.x28{left:141.488189pt;}
.xc{left:142.488189pt;}
.x16{left:153.488189pt;}
.xd{left:166.488189pt;}
.x2d{left:170.488189pt;}
.x17{left:182.488200pt;}
.x14{left:188.488189pt;}
.xe{left:190.488189pt;}
.x18{left:211.488200pt;}
.xf{left:214.488189pt;}
.x5{left:216.488200pt;}
.x10{left:238.488189pt;}
.x19{left:240.488200pt;}
.x1a{left:269.488200pt;}
.x12{left:296.488200pt;}
.x1b{left:298.488200pt;}
.x1c{left:327.488200pt;}
.x6{left:337.488200pt;}
.x1{left:349.733199pt;}
.x1d{left:356.488200pt;}
.x1e{left:385.488200pt;}
.x1f{left:414.488200pt;}
.x20{left:443.488200pt;}
.x7{left:458.488200pt;}
.x21{left:472.488200pt;}
.x13{left:497.488200pt;}
.x22{left:501.488200pt;}
.x23{left:530.488160pt;}
.x24{left:559.488160pt;}
.x8{left:579.488160pt;}
.x25{left:588.488160pt;}
.x26{left:617.488160pt;}
.x27{left:646.488160pt;}
}




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