
    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_ed9e2341fa5af41e4e5abc3e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_bdac52106527301f940e2425.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_22bde4bf1e5d523f95c74113.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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);}
.v1{vertical-align:-1.068000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.000000px;}
.ls44{letter-spacing:-1.716000px;}
.ls4e{letter-spacing:-1.500000px;}
.ls25{letter-spacing:-1.452000px;}
.ls2d{letter-spacing:-1.320000px;}
.ls3e{letter-spacing:-1.254000px;}
.ls18{letter-spacing:-1.188000px;}
.ls2e{letter-spacing:-1.122000px;}
.ls21{letter-spacing:-1.056000px;}
.ls19{letter-spacing:-1.026000px;}
.ls56{letter-spacing:-1.020000px;}
.ls2c{letter-spacing:-0.990000px;}
.ls43{letter-spacing:-0.924000px;}
.ls2f{letter-spacing:-0.858000px;}
.lsb{letter-spacing:-0.855000px;}
.ls1a{letter-spacing:-0.798000px;}
.ls28{letter-spacing:-0.792000px;}
.ls34{letter-spacing:-0.780000px;}
.ls36{letter-spacing:-0.726000px;}
.ls33{letter-spacing:-0.720000px;}
.ls26{letter-spacing:-0.660000px;}
.ls42{letter-spacing:-0.600000px;}
.ls15{letter-spacing:-0.594000px;}
.ls54{letter-spacing:-0.540000px;}
.ls23{letter-spacing:-0.528000px;}
.lsc{letter-spacing:-0.513000px;}
.ls35{letter-spacing:-0.480000px;}
.ls2b{letter-spacing:-0.462000px;}
.ls38{letter-spacing:-0.432000px;}
.ls50{letter-spacing:-0.420000px;}
.ls17{letter-spacing:-0.396000px;}
.ls5e{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.330000px;}
.ls3b{letter-spacing:-0.300000px;}
.ls5d{letter-spacing:-0.270000px;}
.ls22{letter-spacing:-0.264000px;}
.ls3a{letter-spacing:-0.240000px;}
.ls1b{letter-spacing:-0.228000px;}
.ls5c{letter-spacing:-0.225000px;}
.ls14{letter-spacing:-0.198000px;}
.ls45{letter-spacing:-0.180000px;}
.ls8{letter-spacing:-0.171000px;}
.ls24{letter-spacing:-0.132000px;}
.ls40{letter-spacing:-0.120000px;}
.lsa{letter-spacing:-0.114000px;}
.ls27{letter-spacing:-0.066000px;}
.ls41{letter-spacing:-0.060000px;}
.ls9{letter-spacing:-0.057000px;}
.ls13{letter-spacing:-0.048000px;}
.ls5f{letter-spacing:-0.045000px;}
.ls7{letter-spacing:0.000000px;}
.ls3f{letter-spacing:0.060000px;}
.ls29{letter-spacing:0.066000px;}
.ls6{letter-spacing:0.114000px;}
.ls53{letter-spacing:0.120000px;}
.ls11{letter-spacing:0.132000px;}
.ls12{letter-spacing:0.171000px;}
.ls51{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.198000px;}
.ls46{letter-spacing:0.240000px;}
.lsd{letter-spacing:0.264000px;}
.ls1{letter-spacing:0.285000px;}
.ls37{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.342000px;}
.ls1c{letter-spacing:0.396000px;}
.ls30{letter-spacing:0.420000px;}
.ls2a{letter-spacing:0.462000px;}
.ls39{letter-spacing:0.480000px;}
.ls5b{letter-spacing:0.495000px;}
.ls0{letter-spacing:0.513000px;}
.ls1f{letter-spacing:0.528000px;}
.ls55{letter-spacing:0.540000px;}
.ls2{letter-spacing:0.570000px;}
.ls3c{letter-spacing:0.594000px;}
.ls48{letter-spacing:0.600000px;}
.ls1d{letter-spacing:0.660000px;}
.ls4d{letter-spacing:0.780000px;}
.ls32{letter-spacing:0.792000px;}
.ls5{letter-spacing:0.798000px;}
.ls4b{letter-spacing:0.858000px;}
.ls47{letter-spacing:0.900000px;}
.ls31{letter-spacing:0.924000px;}
.ls3{letter-spacing:0.969000px;}
.lsf{letter-spacing:0.990000px;}
.ls59{letter-spacing:1.020000px;}
.ls57{letter-spacing:1.035000px;}
.ls3d{letter-spacing:1.056000px;}
.ls4a{letter-spacing:1.122000px;}
.ls5a{letter-spacing:1.260000px;}
.ls1e{letter-spacing:1.320000px;}
.ls4f{letter-spacing:1.452000px;}
.ls58{letter-spacing:1.500000px;}
.ls52{letter-spacing:1.584000px;}
.lse{letter-spacing:1.650000px;}
.ls49{letter-spacing:1.716000px;}
.ls20{letter-spacing:1.980000px;}
.ls4c{letter-spacing:2.112000px;}
.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;}
}
.ws5c{word-spacing:-17.292000px;}
.ws60{word-spacing:-17.094000px;}
.ws31{word-spacing:-17.028000px;}
.ws41{word-spacing:-16.962000px;}
.ws76{word-spacing:-16.896000px;}
.ws17{word-spacing:-16.830000px;}
.ws32{word-spacing:-16.764000px;}
.ws19{word-spacing:-16.632000px;}
.ws40{word-spacing:-16.566000px;}
.ws18{word-spacing:-16.500000px;}
.ws30{word-spacing:-16.434000px;}
.ws54{word-spacing:-16.368000px;}
.ws78{word-spacing:-16.302000px;}
.ws2f{word-spacing:-16.236000px;}
.ws55{word-spacing:-16.170000px;}
.ws3e{word-spacing:-16.104000px;}
.ws3f{word-spacing:-16.038000px;}
.ws83{word-spacing:-16.020000px;}
.ws5e{word-spacing:-15.972000px;}
.ws67{word-spacing:-15.906000px;}
.ws6e{word-spacing:-15.774000px;}
.ws5f{word-spacing:-15.708000px;}
.ws73{word-spacing:-15.510000px;}
.ws47{word-spacing:-15.420000px;}
.ws5b{word-spacing:-15.378000px;}
.ws46{word-spacing:-15.000000px;}
.ws5d{word-spacing:-14.880000px;}
.ws68{word-spacing:-14.820000px;}
.ws7d{word-spacing:-14.760000px;}
.ws53{word-spacing:-14.700000px;}
.ws82{word-spacing:-14.640000px;}
.ws75{word-spacing:-14.580000px;}
.ws1{word-spacing:-14.535000px;}
.ws66{word-spacing:-14.400000px;}
.ws1c{word-spacing:-14.250000px;}
.ws1b{word-spacing:-14.136000px;}
.ws0{word-spacing:-13.500000px;}
.ws1a{word-spacing:-13.224000px;}
.ws8c{word-spacing:-12.510000px;}
.ws85{word-spacing:-12.285000px;}
.ws16{word-spacing:-11.952000px;}
.ws7b{word-spacing:-11.790000px;}
.ws7c{word-spacing:-11.745000px;}
.ws8a{word-spacing:-11.430000px;}
.ws48{word-spacing:-11.250000px;}
.ws87{word-spacing:-11.205000px;}
.ws80{word-spacing:-11.025000px;}
.ws34{word-spacing:-0.858000px;}
.ws29{word-spacing:-0.792000px;}
.ws36{word-spacing:-0.726000px;}
.ws50{word-spacing:-0.720000px;}
.ws11{word-spacing:-0.684000px;}
.ws25{word-spacing:-0.660000px;}
.wsf{word-spacing:-0.627000px;}
.ws62{word-spacing:-0.600000px;}
.ws33{word-spacing:-0.594000px;}
.ws2e{word-spacing:-0.570000px;}
.ws69{word-spacing:-0.540000px;}
.ws2c{word-spacing:-0.528000px;}
.ws4{word-spacing:-0.513000px;}
.ws63{word-spacing:-0.480000px;}
.ws28{word-spacing:-0.462000px;}
.ws57{word-spacing:-0.420000px;}
.wsb{word-spacing:-0.399000px;}
.ws1f{word-spacing:-0.396000px;}
.ws2{word-spacing:-0.381000px;}
.ws70{word-spacing:-0.360000px;}
.ws10{word-spacing:-0.342000px;}
.ws35{word-spacing:-0.330000px;}
.ws6d{word-spacing:-0.300000px;}
.ws2b{word-spacing:-0.264000px;}
.ws51{word-spacing:-0.240000px;}
.ws7{word-spacing:-0.228000px;}
.ws52{word-spacing:-0.216000px;}
.ws3b{word-spacing:-0.198000px;}
.wsc{word-spacing:-0.171000px;}
.ws3a{word-spacing:-0.132000px;}
.ws4f{word-spacing:-0.120000px;}
.ws3c{word-spacing:-0.066000px;}
.ws4b{word-spacing:-0.060000px;}
.ws14{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.wse{word-spacing:0.057000px;}
.ws77{word-spacing:0.060000px;}
.ws72{word-spacing:0.066000px;}
.ws6{word-spacing:0.114000px;}
.ws2a{word-spacing:0.132000px;}
.ws8e{word-spacing:0.180000px;}
.ws1e{word-spacing:0.198000px;}
.ws12{word-spacing:0.228000px;}
.ws4a{word-spacing:0.240000px;}
.ws45{word-spacing:0.264000px;}
.ws79{word-spacing:0.300000px;}
.ws2d{word-spacing:0.330000px;}
.ws4c{word-spacing:0.360000px;}
.ws22{word-spacing:0.396000px;}
.ws37{word-spacing:0.462000px;}
.ws90{word-spacing:0.480000px;}
.ws5a{word-spacing:0.528000px;}
.ws6b{word-spacing:0.540000px;}
.ws58{word-spacing:0.594000px;}
.ws6c{word-spacing:0.600000px;}
.ws23{word-spacing:0.660000px;}
.wsa{word-spacing:0.684000px;}
.ws71{word-spacing:0.720000px;}
.ws1d{word-spacing:0.726000px;}
.ws21{word-spacing:0.792000px;}
.ws91{word-spacing:0.840000px;}
.wsd{word-spacing:0.855000px;}
.ws42{word-spacing:0.858000px;}
.ws4d{word-spacing:0.900000px;}
.ws65{word-spacing:0.924000px;}
.ws7a{word-spacing:0.960000px;}
.ws59{word-spacing:0.990000px;}
.ws56{word-spacing:1.020000px;}
.ws3d{word-spacing:1.056000px;}
.ws4e{word-spacing:1.080000px;}
.ws9{word-spacing:1.083000px;}
.ws43{word-spacing:1.122000px;}
.ws5{word-spacing:1.140000px;}
.ws39{word-spacing:1.188000px;}
.ws13{word-spacing:1.254000px;}
.ws6a{word-spacing:1.260000px;}
.ws8{word-spacing:1.311000px;}
.ws20{word-spacing:1.320000px;}
.ws74{word-spacing:1.380000px;}
.ws24{word-spacing:1.386000px;}
.ws61{word-spacing:1.440000px;}
.ws26{word-spacing:1.452000px;}
.ws6f{word-spacing:1.500000px;}
.ws27{word-spacing:1.518000px;}
.ws38{word-spacing:1.584000px;}
.ws44{word-spacing:1.650000px;}
.ws7f{word-spacing:3.075000px;}
.ws81{word-spacing:3.345000px;}
.ws7e{word-spacing:3.945000px;}
.ws8d{word-spacing:3.990000px;}
.ws8b{word-spacing:4.125000px;}
.ws84{word-spacing:4.155000px;}
.ws86{word-spacing:4.365000px;}
.ws8f{word-spacing:4.740000px;}
.ws89{word-spacing:5.130000px;}
.ws88{word-spacing:5.250000px;}
.ws64{word-spacing:5.808000px;}
.ws15{word-spacing:35.904000px;}
.ws49{word-spacing:36.018000px;}
._c{margin-left:-12.738000px;}
._e{margin-left:-9.138000px;}
._b{margin-left:-7.920000px;}
._5{margin-left:-6.897000px;}
._8{margin-left:-5.757000px;}
._4{margin-left:-4.617000px;}
._1{margin-left:-3.420000px;}
._0{margin-left:-2.304000px;}
._2{margin-left:-1.188000px;}
._3{width:1.140000px;}
._a{width:2.904000px;}
._d{width:13.428000px;}
._6{width:48.288000px;}
._9{width:496.692000px;}
._7{width:1130.928000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs7{font-size:45.000000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y26{bottom:42.471000px;}
.yb0{bottom:47.349000px;}
.y13b{bottom:47.775000px;}
.y1ff{bottom:48.154500px;}
.y3f{bottom:48.183000px;}
.y177{bottom:48.207000px;}
.y155{bottom:48.667500px;}
.y197{bottom:48.750000px;}
.y8f{bottom:49.305000px;}
.yd3{bottom:49.425000px;}
.yf8{bottom:49.440000px;}
.y82{bottom:49.605000px;}
.y1b2{bottom:50.232000px;}
.y119{bottom:50.298000px;}
.y1d9{bottom:51.232500px;}
.y25{bottom:57.476250px;}
.yaf{bottom:61.605000px;}
.y13a{bottom:63.525000px;}
.y1fe{bottom:65.397000px;}
.y3e{bottom:65.425500px;}
.y176{bottom:65.449500px;}
.y154{bottom:65.910000px;}
.y8e{bottom:66.547500px;}
.yd2{bottom:66.667500px;}
.yf7{bottom:66.682500px;}
.y81{bottom:66.847500px;}
.y1b1{bottom:67.474500px;}
.y118{bottom:67.540500px;}
.y1d8{bottom:68.475000px;}
.y24{bottom:72.481500px;}
.y139{bottom:79.275000px;}
.y196{bottom:79.515000px;}
.y1fd{bottom:82.639500px;}
.y3d{bottom:82.668000px;}
.y175{bottom:82.692000px;}
.y153{bottom:83.152500px;}
.y8d{bottom:83.790000px;}
.yd1{bottom:83.910000px;}
.yf6{bottom:83.925000px;}
.y80{bottom:84.090000px;}
.y1b0{bottom:84.717000px;}
.y117{bottom:84.783000px;}
.y23{bottom:87.486750px;}
.yae{bottom:94.275000px;}
.y195{bottom:96.757500px;}
.y1d7{bottom:98.490000px;}
.y1fc{bottom:99.882000px;}
.y3c{bottom:99.910500px;}
.y174{bottom:99.934500px;}
.y152{bottom:100.395000px;}
.y8c{bottom:101.032500px;}
.yd0{bottom:101.152500px;}
.yf5{bottom:101.167500px;}
.y7f{bottom:101.332500px;}
.y1af{bottom:101.959500px;}
.y116{bottom:102.025500px;}
.y22{bottom:102.492000px;}
.yad{bottom:110.025000px;}
.y138{bottom:110.055000px;}
.y194{bottom:114.000000px;}
.y1d6{bottom:114.240000px;}
.y1fb{bottom:117.124500px;}
.y3b{bottom:117.153000px;}
.y173{bottom:117.177000px;}
.y21{bottom:117.497250px;}
.y151{bottom:117.637500px;}
.ycf{bottom:118.395000px;}
.yf4{bottom:118.410000px;}
.y8b{bottom:118.542000px;}
.y7e{bottom:118.575000px;}
.y1ae{bottom:119.202000px;}
.y115{bottom:119.268000px;}
.y137{bottom:127.297500px;}
.y20{bottom:132.502500px;}
.y1fa{bottom:134.367000px;}
.y3a{bottom:134.395500px;}
.y172{bottom:134.419500px;}
.y150{bottom:134.880000px;}
.yce{bottom:135.637500px;}
.yf3{bottom:135.652500px;}
.y8a{bottom:135.784500px;}
.y7d{bottom:135.817500px;}
.y1ad{bottom:136.444500px;}
.y114{bottom:136.510500px;}
.y1d5{bottom:138.547500px;}
.yac{bottom:140.775000px;}
.y136{bottom:144.540000px;}
.y1f{bottom:147.507750px;}
.y193{bottom:148.500000px;}
.y1f9{bottom:151.609500px;}
.y39{bottom:151.638000px;}
.y171{bottom:151.662000px;}
.ycd{bottom:152.880000px;}
.yf2{bottom:152.895000px;}
.y89{bottom:153.027000px;}
.y7c{bottom:153.060000px;}
.y1ac{bottom:153.687000px;}
.y113{bottom:153.753000px;}
.y1d4{bottom:155.790000px;}
.y135{bottom:161.782500px;}
.y1e{bottom:162.513000px;}
.y192{bottom:164.250000px;}
.y1f8{bottom:168.852000px;}
.y38{bottom:168.880500px;}
.y170{bottom:168.904500px;}
.y14f{bottom:169.380000px;}
.ycc{bottom:170.122500px;}
.yf1{bottom:170.137500px;}
.y88{bottom:170.269500px;}
.y7b{bottom:170.302500px;}
.y1ab{bottom:170.929500px;}
.y112{bottom:170.995500px;}
.y1d3{bottom:173.032500px;}
.yab{bottom:175.275000px;}
.y1d{bottom:177.518250px;}
.y134{bottom:179.025000px;}
.y14e{bottom:185.130000px;}
.y1f7{bottom:186.094500px;}
.y37{bottom:186.123000px;}
.y16f{bottom:186.147000px;}
.y219{bottom:186.495000px;}
.ycb{bottom:187.365000px;}
.yf0{bottom:187.380000px;}
.y87{bottom:187.512000px;}
.y7a{bottom:187.545000px;}
.y1aa{bottom:188.172000px;}
.y111{bottom:188.238000px;}
.y1d2{bottom:190.275000px;}
.yaa{bottom:191.025000px;}
.y1c{bottom:192.523500px;}
.y191{bottom:195.015000px;}
.y218{bottom:202.245000px;}
.y1f6{bottom:203.337000px;}
.y36{bottom:203.365500px;}
.y16e{bottom:203.389500px;}
.yca{bottom:204.607500px;}
.yef{bottom:204.622500px;}
.y86{bottom:204.754500px;}
.y79{bottom:204.787500px;}
.y1a9{bottom:205.414500px;}
.y110{bottom:205.480500px;}
.y1d1{bottom:207.517500px;}
.y1b{bottom:207.528750px;}
.y190{bottom:212.257500px;}
.y133{bottom:213.525000px;}
.y14d{bottom:215.895000px;}
.y217{bottom:217.995000px;}
.y1f5{bottom:220.579500px;}
.y35{bottom:220.608000px;}
.y16d{bottom:220.632000px;}
.yc9{bottom:221.850000px;}
.yee{bottom:221.865000px;}
.ya9{bottom:221.887500px;}
.y85{bottom:221.997000px;}
.y78{bottom:222.030000px;}
.y10f{bottom:222.723000px;}
.y1d0{bottom:224.760000px;}
.y132{bottom:229.275000px;}
.y18f{bottom:229.500000px;}
.y1a8{bottom:231.286500px;}
.y14c{bottom:233.137500px;}
.y1a{bottom:237.525000px;}
.y1f4{bottom:237.822000px;}
.y34{bottom:237.850500px;}
.y16c{bottom:237.874500px;}
.y216{bottom:238.005000px;}
.yc8{bottom:239.092500px;}
.ya8{bottom:239.130000px;}
.y77{bottom:239.272500px;}
.y1cf{bottom:242.002500px;}
.y131{bottom:245.025000px;}
.y84{bottom:247.869000px;}
.y10e{bottom:248.595000px;}
.y14b{bottom:250.380000px;}
.yed{bottom:251.880000px;}
.y1f3{bottom:255.064500px;}
.y33{bottom:255.093000px;}
.y16b{bottom:255.117000px;}
.yc7{bottom:256.335000px;}
.ya7{bottom:256.372500px;}
.y76{bottom:256.515000px;}
.y215{bottom:258.000000px;}
.y1ce{bottom:259.245000px;}
.y130{bottom:260.775000px;}
.y18e{bottom:264.000000px;}
.y83{bottom:265.111500px;}
.y1f2{bottom:272.307000px;}
.y32{bottom:272.335500px;}
.yc6{bottom:273.577500px;}
.ya6{bottom:273.615000px;}
.y214{bottom:273.750000px;}
.y75{bottom:273.757500px;}
.y1a7{bottom:274.417500px;}
.y19{bottom:277.965750px;}
.yec{bottom:278.443500px;}
.y18d{bottom:279.750000px;}
.y16a{bottom:280.989000px;}
.y14a{bottom:282.510000px;}
.y10d{bottom:287.122500px;}
.y1cd{bottom:289.245000px;}
.y213{bottom:289.500000px;}
.y1f1{bottom:289.549500px;}
.y31{bottom:289.578000px;}
.yc5{bottom:290.820000px;}
.ya5{bottom:290.857500px;}
.y74{bottom:291.000000px;}
.y12f{bottom:291.532500px;}
.y1a6{bottom:291.660000px;}
.y18c{bottom:295.500000px;}
.yeb{bottom:295.686000px;}
.y169{bottom:298.231500px;}
.y18{bottom:303.159750px;}
.y10c{bottom:304.365000px;}
.y1cc{bottom:304.995000px;}
.y1f0{bottom:306.792000px;}
.y30{bottom:306.820500px;}
.yc4{bottom:308.062500px;}
.ya4{bottom:308.100000px;}
.y73{bottom:308.242500px;}
.y12e{bottom:308.775000px;}
.y1a5{bottom:308.902500px;}
.y212{bottom:309.510000px;}
.y149{bottom:311.032500px;}
.yea{bottom:312.928500px;}
.y17{bottom:318.165000px;}
.y10b{bottom:321.607500px;}
.y1ef{bottom:324.034500px;}
.y2f{bottom:324.063000px;}
.y211{bottom:325.260000px;}
.yc3{bottom:325.305000px;}
.ya3{bottom:325.342500px;}
.y72{bottom:325.485000px;}
.y1a4{bottom:326.145000px;}
.y18b{bottom:326.257500px;}
.y148{bottom:328.275000px;}
.y1cb{bottom:329.347500px;}
.ye9{bottom:330.171000px;}
.y16{bottom:333.170250px;}
.y168{bottom:336.742500px;}
.y10a{bottom:338.850000px;}
.y1ee{bottom:341.277000px;}
.y2e{bottom:341.305500px;}
.yc2{bottom:342.547500px;}
.ya2{bottom:342.585000px;}
.y71{bottom:342.727500px;}
.y12d{bottom:343.275000px;}
.y1a3{bottom:343.387500px;}
.y18a{bottom:343.500000px;}
.y210{bottom:345.255000px;}
.y1ca{bottom:346.590000px;}
.ye8{bottom:347.413500px;}
.y15{bottom:348.175500px;}
.y167{bottom:353.985000px;}
.y109{bottom:356.092500px;}
.y1ed{bottom:358.519500px;}
.y2d{bottom:358.548000px;}
.y12c{bottom:359.025000px;}
.yc1{bottom:359.790000px;}
.ya1{bottom:359.827500px;}
.y70{bottom:359.970000px;}
.y1a2{bottom:360.630000px;}
.y20f{bottom:361.005000px;}
.y147{bottom:362.775000px;}
.y14{bottom:363.180750px;}
.y1c9{bottom:363.832500px;}
.ye7{bottom:364.656000px;}
.y166{bottom:371.227500px;}
.y108{bottom:373.335000px;}
.y1ec{bottom:375.762000px;}
.y2c{bottom:375.790500px;}
.y20e{bottom:376.755000px;}
.yc0{bottom:377.032500px;}
.ya0{bottom:377.070000px;}
.y6f{bottom:377.212500px;}
.y13{bottom:378.186000px;}
.y146{bottom:378.525000px;}
.y1c8{bottom:381.075000px;}
.ye6{bottom:381.898500px;}
.y189{bottom:382.005000px;}
.y165{bottom:388.470000px;}
.y12b{bottom:389.782500px;}
.y107{bottom:390.577500px;}
.y2b{bottom:393.033000px;}
.y12{bottom:393.191250px;}
.ybf{bottom:394.275000px;}
.y9f{bottom:394.312500px;}
.y6e{bottom:394.455000px;}
.y1a1{bottom:395.130000px;}
.y20d{bottom:396.765000px;}
.y188{bottom:397.755000px;}
.y1c7{bottom:398.317500px;}
.ye5{bottom:399.141000px;}
.y1eb{bottom:401.634000px;}
.y164{bottom:405.712500px;}
.y12a{bottom:407.025000px;}
.y106{bottom:407.820000px;}
.y11{bottom:408.196500px;}
.y2a{bottom:410.275500px;}
.y1a0{bottom:410.880000px;}
.y9e{bottom:411.555000px;}
.y6d{bottom:411.697500px;}
.y20c{bottom:412.515000px;}
.y187{bottom:413.505000px;}
.y1c6{bottom:415.560000px;}
.ye4{bottom:416.383500px;}
.y163{bottom:422.955000px;}
.y10{bottom:423.201750px;}
.y145{bottom:425.040000px;}
.y105{bottom:425.062500px;}
.y19f{bottom:426.630000px;}
.y29{bottom:427.518000px;}
.y20b{bottom:428.265000px;}
.ybe{bottom:428.775000px;}
.y9d{bottom:428.797500px;}
.y6c{bottom:428.940000px;}
.y1c5{bottom:432.802500px;}
.ye3{bottom:433.626000px;}
.yf{bottom:438.207000px;}
.y162{bottom:440.197500px;}
.y129{bottom:441.525000px;}
.y144{bottom:442.282500px;}
.y104{bottom:442.305000px;}
.y19e{bottom:442.380000px;}
.y186{bottom:444.262500px;}
.ybd{bottom:444.525000px;}
.y1ea{bottom:444.765000px;}
.y9c{bottom:446.040000px;}
.y6b{bottom:446.182500px;}
.y20a{bottom:448.260000px;}
.y1c4{bottom:450.045000px;}
.ye2{bottom:450.868500px;}
.ye{bottom:453.212250px;}
.y28{bottom:453.390000px;}
.y128{bottom:457.275000px;}
.y161{bottom:457.440000px;}
.y143{bottom:459.525000px;}
.y103{bottom:459.547500px;}
.ybc{bottom:460.275000px;}
.y185{bottom:461.505000px;}
.y1e9{bottom:462.007500px;}
.y9b{bottom:463.282500px;}
.y6a{bottom:463.425000px;}
.y209{bottom:464.010000px;}
.y1c3{bottom:467.287500px;}
.ye1{bottom:468.111000px;}
.yd{bottom:468.217500px;}
.y127{bottom:473.025000px;}
.y19d{bottom:473.152500px;}
.y160{bottom:474.682500px;}
.y102{bottom:476.790000px;}
.y1e8{bottom:479.250000px;}
.y208{bottom:479.760000px;}
.y9a{bottom:480.525000px;}
.y69{bottom:480.667500px;}
.yc{bottom:483.222750px;}
.y1c2{bottom:484.530000px;}
.ye0{bottom:485.353500px;}
.y126{bottom:488.775000px;}
.y19c{bottom:490.395000px;}
.ybb{bottom:491.040000px;}
.y15f{bottom:491.925000px;}
.y142{bottom:494.025000px;}
.y101{bottom:494.032500px;}
.y207{bottom:495.510000px;}
.y1e7{bottom:496.492500px;}
.y68{bottom:497.910000px;}
.yb{bottom:498.228000px;}
.y184{bottom:500.025000px;}
.y1c1{bottom:501.772500px;}
.ydf{bottom:502.596000px;}
.y125{bottom:504.525000px;}
.y19b{bottom:507.637500px;}
.yba{bottom:508.282500px;}
.y15e{bottom:509.167500px;}
.y141{bottom:509.775000px;}
.y100{bottom:511.275000px;}
.y54{bottom:512.042250px;}
.y4d{bottom:512.070750px;}
.ya{bottom:513.233250px;}
.y1e6{bottom:513.735000px;}
.y99{bottom:515.025000px;}
.y67{bottom:515.152500px;}
.y206{bottom:515.520000px;}
.y183{bottom:515.775000px;}
.y1c0{bottom:519.015000px;}
.yde{bottom:519.838500px;}
.y124{bottom:520.275000px;}
.y19a{bottom:524.880000px;}
.yb9{bottom:525.525000px;}
.y15d{bottom:526.410000px;}
.y4c{bottom:527.076000px;}
.y9{bottom:528.238500px;}
.y98{bottom:530.775000px;}
.y182{bottom:531.525000px;}
.y66{bottom:532.395000px;}
.y53{bottom:533.046750px;}
.y205{bottom:535.515000px;}
.y1bf{bottom:536.257500px;}
.ydd{bottom:537.081000px;}
.y8{bottom:543.243750px;}
.y15c{bottom:543.652500px;}
.yff{bottom:545.775000px;}
.y1e5{bottom:545.865000px;}
.y97{bottom:546.525000px;}
.y181{bottom:547.275000px;}
.y4b{bottom:548.080500px;}
.y65{bottom:549.637500px;}
.y123{bottom:551.115000px;}
.y204{bottom:551.265000px;}
.y1be{bottom:553.500000px;}
.y52{bottom:554.051250px;}
.ydc{bottom:554.323500px;}
.y140{bottom:556.282500px;}
.y199{bottom:557.010000px;}
.yb8{bottom:560.025000px;}
.y15b{bottom:560.895000px;}
.yfe{bottom:561.525000px;}
.y1e4{bottom:561.615000px;}
.y96{bottom:562.275000px;}
.y180{bottom:563.025000px;}
.y4a{bottom:563.085750px;}
.y64{bottom:566.880000px;}
.y203{bottom:567.015000px;}
.y122{bottom:568.357500px;}
.y51{bottom:569.056500px;}
.ydb{bottom:571.566000px;}
.y198{bottom:572.760000px;}
.y7{bottom:573.240000px;}
.y13f{bottom:573.525000px;}
.yfd{bottom:577.275000px;}
.y1e3{bottom:577.365000px;}
.y95{bottom:578.025000px;}
.y15a{bottom:578.137500px;}
.y202{bottom:582.765000px;}
.y49{bottom:584.090250px;}
.y63{bottom:584.122500px;}
.y121{bottom:585.600000px;}
.y1bd{bottom:585.630000px;}
.yda{bottom:588.808500px;}
.y50{bottom:590.061000px;}
.yb7{bottom:590.797500px;}
.y94{bottom:593.775000px;}
.y17f{bottom:593.797500px;}
.y159{bottom:595.380000px;}
.y48{bottom:599.095500px;}
.y62{bottom:601.365000px;}
.y1bc{bottom:601.380000px;}
.y201{bottom:602.775000px;}
.y120{bottom:602.842500px;}
.y4f{bottom:605.066250px;}
.y1e2{bottom:605.887500px;}
.yd9{bottom:606.051000px;}
.y13e{bottom:608.025000px;}
.yb6{bottom:608.040000px;}
.y93{bottom:609.525000px;}
.y17e{bottom:611.040000px;}
.y1bb{bottom:617.130000px;}
.y61{bottom:618.607500px;}
.y4e{bottom:620.071500px;}
.y11f{bottom:620.085000px;}
.y47{bottom:620.100000px;}
.y1e1{bottom:623.130000px;}
.yd8{bottom:623.293500px;}
.y13d{bottom:623.775000px;}
.y92{bottom:625.275000px;}
.yb5{bottom:625.282500px;}
.y200{bottom:627.204000px;}
.y158{bottom:627.510000px;}
.y17d{bottom:628.282500px;}
.y1ba{bottom:632.880000px;}
.y60{bottom:635.850000px;}
.y11e{bottom:637.327500px;}
.y13c{bottom:639.525000px;}
.yd7{bottom:640.536000px;}
.y91{bottom:641.025000px;}
.yb4{bottom:642.525000px;}
.y157{bottom:643.260000px;}
.y55{bottom:644.100000px;}
.y17c{bottom:645.525000px;}
.y1b9{bottom:648.630000px;}
.y5f{bottom:653.092500px;}
.y11d{bottom:654.570000px;}
.y1e0{bottom:655.260000px;}
.y90{bottom:656.775000px;}
.yd6{bottom:657.778500px;}
.y156{bottom:659.010000px;}
.y1b8{bottom:668.625000px;}
.y5e{bottom:670.335000px;}
.y1df{bottom:671.010000px;}
.y11c{bottom:671.812500px;}
.yb3{bottom:677.025000px;}
.y17b{bottom:680.025000px;}
.y6{bottom:683.208000px;}
.yd5{bottom:683.535000px;}
.y1b7{bottom:684.375000px;}
.y1de{bottom:686.760000px;}
.y5d{bottom:687.577500px;}
.y11b{bottom:689.055000px;}
.yb2{bottom:692.775000px;}
.y17a{bottom:695.775000px;}
.y5{bottom:698.206500px;}
.yd4{bottom:700.777500px;}
.y1dd{bottom:702.510000px;}
.y5c{bottom:704.820000px;}
.y11a{bottom:706.297500px;}
.y46{bottom:707.265000px;}
.yb1{bottom:708.525000px;}
.y1b6{bottom:710.782500px;}
.y179{bottom:711.525000px;}
.y4{bottom:713.205000px;}
.y1dc{bottom:718.260000px;}
.y5b{bottom:722.062500px;}
.yfc{bottom:723.540000px;}
.y178{bottom:727.275000px;}
.y1b5{bottom:728.025000px;}
.y3{bottom:731.955000px;}
.y45{bottom:732.858750px;}
.y5a{bottom:739.305000px;}
.yfb{bottom:740.782500px;}
.y1b4{bottom:745.267500px;}
.y1db{bottom:746.760000px;}
.y44{bottom:747.864000px;}
.y59{bottom:756.547500px;}
.yfa{bottom:758.025000px;}
.y1b3{bottom:762.510000px;}
.y43{bottom:762.869250px;}
.y58{bottom:773.790000px;}
.y1da{bottom:776.775000px;}
.y2{bottom:776.955000px;}
.y42{bottom:777.874500px;}
.y57{bottom:791.032500px;}
.yf9{bottom:792.525000px;}
.y41{bottom:792.879750px;}
.y1{bottom:800.955000px;}
.y40{bottom:807.885000px;}
.y56{bottom:808.275000px;}
.y27{bottom:855.105000px;}
.h6{height:51.216000px;}
.h3{height:57.618000px;}
.h4{height:60.819000px;}
.h5{height:61.788000px;}
.ha{height:64.020000px;}
.hb{height:65.040000px;}
.h7{height:70.422000px;}
.h8{height:70.476000px;}
.h9{height:71.544000px;}
.h2{height:76.824000px;}
.h1{height:102.432000px;}
.h0{height:922.500000px;}
.w0{width:595.500000px;}
.x0{left:0.000000px;}
.x1{left:53.700000px;}
.x4{left:54.915000px;}
.x7{left:56.273250px;}
.xa{left:57.826500px;}
.x2{left:76.205250px;}
.x5{left:77.355000px;}
.x8{left:89.604000px;}
.xf{left:98.700000px;}
.x10{left:99.915000px;}
.xb{left:103.640250px;}
.x9{left:105.507000px;}
.xc{left:165.271500px;}
.x6{left:212.325000px;}
.xe{left:274.245000px;}
.xd{left:311.376750px;}
.x3{left:412.515000px;}
@media print{
.v1{vertical-align:-0.949333pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.333333pt;}
.ls44{letter-spacing:-1.525333pt;}
.ls4e{letter-spacing:-1.333333pt;}
.ls25{letter-spacing:-1.290667pt;}
.ls2d{letter-spacing:-1.173333pt;}
.ls3e{letter-spacing:-1.114667pt;}
.ls18{letter-spacing:-1.056000pt;}
.ls2e{letter-spacing:-0.997333pt;}
.ls21{letter-spacing:-0.938667pt;}
.ls19{letter-spacing:-0.912000pt;}
.ls56{letter-spacing:-0.906667pt;}
.ls2c{letter-spacing:-0.880000pt;}
.ls43{letter-spacing:-0.821333pt;}
.ls2f{letter-spacing:-0.762667pt;}
.lsb{letter-spacing:-0.760000pt;}
.ls1a{letter-spacing:-0.709333pt;}
.ls28{letter-spacing:-0.704000pt;}
.ls34{letter-spacing:-0.693333pt;}
.ls36{letter-spacing:-0.645333pt;}
.ls33{letter-spacing:-0.640000pt;}
.ls26{letter-spacing:-0.586667pt;}
.ls42{letter-spacing:-0.533333pt;}
.ls15{letter-spacing:-0.528000pt;}
.ls54{letter-spacing:-0.480000pt;}
.ls23{letter-spacing:-0.469333pt;}
.lsc{letter-spacing:-0.456000pt;}
.ls35{letter-spacing:-0.426667pt;}
.ls2b{letter-spacing:-0.410667pt;}
.ls38{letter-spacing:-0.384000pt;}
.ls50{letter-spacing:-0.373333pt;}
.ls17{letter-spacing:-0.352000pt;}
.ls5e{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.293333pt;}
.ls3b{letter-spacing:-0.266667pt;}
.ls5d{letter-spacing:-0.240000pt;}
.ls22{letter-spacing:-0.234667pt;}
.ls3a{letter-spacing:-0.213333pt;}
.ls1b{letter-spacing:-0.202667pt;}
.ls5c{letter-spacing:-0.200000pt;}
.ls14{letter-spacing:-0.176000pt;}
.ls45{letter-spacing:-0.160000pt;}
.ls8{letter-spacing:-0.152000pt;}
.ls24{letter-spacing:-0.117333pt;}
.ls40{letter-spacing:-0.106667pt;}
.lsa{letter-spacing:-0.101333pt;}
.ls27{letter-spacing:-0.058667pt;}
.ls41{letter-spacing:-0.053333pt;}
.ls9{letter-spacing:-0.050667pt;}
.ls13{letter-spacing:-0.042667pt;}
.ls5f{letter-spacing:-0.040000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3f{letter-spacing:0.053333pt;}
.ls29{letter-spacing:0.058667pt;}
.ls6{letter-spacing:0.101333pt;}
.ls53{letter-spacing:0.106667pt;}
.ls11{letter-spacing:0.117333pt;}
.ls12{letter-spacing:0.152000pt;}
.ls51{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.176000pt;}
.ls46{letter-spacing:0.213333pt;}
.lsd{letter-spacing:0.234667pt;}
.ls1{letter-spacing:0.253333pt;}
.ls37{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.304000pt;}
.ls1c{letter-spacing:0.352000pt;}
.ls30{letter-spacing:0.373333pt;}
.ls2a{letter-spacing:0.410667pt;}
.ls39{letter-spacing:0.426667pt;}
.ls5b{letter-spacing:0.440000pt;}
.ls0{letter-spacing:0.456000pt;}
.ls1f{letter-spacing:0.469333pt;}
.ls55{letter-spacing:0.480000pt;}
.ls2{letter-spacing:0.506667pt;}
.ls3c{letter-spacing:0.528000pt;}
.ls48{letter-spacing:0.533333pt;}
.ls1d{letter-spacing:0.586667pt;}
.ls4d{letter-spacing:0.693333pt;}
.ls32{letter-spacing:0.704000pt;}
.ls5{letter-spacing:0.709333pt;}
.ls4b{letter-spacing:0.762667pt;}
.ls47{letter-spacing:0.800000pt;}
.ls31{letter-spacing:0.821333pt;}
.ls3{letter-spacing:0.861333pt;}
.lsf{letter-spacing:0.880000pt;}
.ls59{letter-spacing:0.906667pt;}
.ls57{letter-spacing:0.920000pt;}
.ls3d{letter-spacing:0.938667pt;}
.ls4a{letter-spacing:0.997333pt;}
.ls5a{letter-spacing:1.120000pt;}
.ls1e{letter-spacing:1.173333pt;}
.ls4f{letter-spacing:1.290667pt;}
.ls58{letter-spacing:1.333333pt;}
.ls52{letter-spacing:1.408000pt;}
.lse{letter-spacing:1.466667pt;}
.ls49{letter-spacing:1.525333pt;}
.ls20{letter-spacing:1.760000pt;}
.ls4c{letter-spacing:1.877333pt;}
.ws5c{word-spacing:-15.370667pt;}
.ws60{word-spacing:-15.194667pt;}
.ws31{word-spacing:-15.136000pt;}
.ws41{word-spacing:-15.077333pt;}
.ws76{word-spacing:-15.018667pt;}
.ws17{word-spacing:-14.960000pt;}
.ws32{word-spacing:-14.901333pt;}
.ws19{word-spacing:-14.784000pt;}
.ws40{word-spacing:-14.725333pt;}
.ws18{word-spacing:-14.666667pt;}
.ws30{word-spacing:-14.608000pt;}
.ws54{word-spacing:-14.549333pt;}
.ws78{word-spacing:-14.490667pt;}
.ws2f{word-spacing:-14.432000pt;}
.ws55{word-spacing:-14.373333pt;}
.ws3e{word-spacing:-14.314667pt;}
.ws3f{word-spacing:-14.256000pt;}
.ws83{word-spacing:-14.240000pt;}
.ws5e{word-spacing:-14.197333pt;}
.ws67{word-spacing:-14.138667pt;}
.ws6e{word-spacing:-14.021333pt;}
.ws5f{word-spacing:-13.962667pt;}
.ws73{word-spacing:-13.786667pt;}
.ws47{word-spacing:-13.706667pt;}
.ws5b{word-spacing:-13.669333pt;}
.ws46{word-spacing:-13.333333pt;}
.ws5d{word-spacing:-13.226667pt;}
.ws68{word-spacing:-13.173333pt;}
.ws7d{word-spacing:-13.120000pt;}
.ws53{word-spacing:-13.066667pt;}
.ws82{word-spacing:-13.013333pt;}
.ws75{word-spacing:-12.960000pt;}
.ws1{word-spacing:-12.920000pt;}
.ws66{word-spacing:-12.800000pt;}
.ws1c{word-spacing:-12.666667pt;}
.ws1b{word-spacing:-12.565333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws1a{word-spacing:-11.754667pt;}
.ws8c{word-spacing:-11.120000pt;}
.ws85{word-spacing:-10.920000pt;}
.ws16{word-spacing:-10.624000pt;}
.ws7b{word-spacing:-10.480000pt;}
.ws7c{word-spacing:-10.440000pt;}
.ws8a{word-spacing:-10.160000pt;}
.ws48{word-spacing:-10.000000pt;}
.ws87{word-spacing:-9.960000pt;}
.ws80{word-spacing:-9.800000pt;}
.ws34{word-spacing:-0.762667pt;}
.ws29{word-spacing:-0.704000pt;}
.ws36{word-spacing:-0.645333pt;}
.ws50{word-spacing:-0.640000pt;}
.ws11{word-spacing:-0.608000pt;}
.ws25{word-spacing:-0.586667pt;}
.wsf{word-spacing:-0.557333pt;}
.ws62{word-spacing:-0.533333pt;}
.ws33{word-spacing:-0.528000pt;}
.ws2e{word-spacing:-0.506667pt;}
.ws69{word-spacing:-0.480000pt;}
.ws2c{word-spacing:-0.469333pt;}
.ws4{word-spacing:-0.456000pt;}
.ws63{word-spacing:-0.426667pt;}
.ws28{word-spacing:-0.410667pt;}
.ws57{word-spacing:-0.373333pt;}
.wsb{word-spacing:-0.354667pt;}
.ws1f{word-spacing:-0.352000pt;}
.ws2{word-spacing:-0.338667pt;}
.ws70{word-spacing:-0.320000pt;}
.ws10{word-spacing:-0.304000pt;}
.ws35{word-spacing:-0.293333pt;}
.ws6d{word-spacing:-0.266667pt;}
.ws2b{word-spacing:-0.234667pt;}
.ws51{word-spacing:-0.213333pt;}
.ws7{word-spacing:-0.202667pt;}
.ws52{word-spacing:-0.192000pt;}
.ws3b{word-spacing:-0.176000pt;}
.wsc{word-spacing:-0.152000pt;}
.ws3a{word-spacing:-0.117333pt;}
.ws4f{word-spacing:-0.106667pt;}
.ws3c{word-spacing:-0.058667pt;}
.ws4b{word-spacing:-0.053333pt;}
.ws14{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.wse{word-spacing:0.050667pt;}
.ws77{word-spacing:0.053333pt;}
.ws72{word-spacing:0.058667pt;}
.ws6{word-spacing:0.101333pt;}
.ws2a{word-spacing:0.117333pt;}
.ws8e{word-spacing:0.160000pt;}
.ws1e{word-spacing:0.176000pt;}
.ws12{word-spacing:0.202667pt;}
.ws4a{word-spacing:0.213333pt;}
.ws45{word-spacing:0.234667pt;}
.ws79{word-spacing:0.266667pt;}
.ws2d{word-spacing:0.293333pt;}
.ws4c{word-spacing:0.320000pt;}
.ws22{word-spacing:0.352000pt;}
.ws37{word-spacing:0.410667pt;}
.ws90{word-spacing:0.426667pt;}
.ws5a{word-spacing:0.469333pt;}
.ws6b{word-spacing:0.480000pt;}
.ws58{word-spacing:0.528000pt;}
.ws6c{word-spacing:0.533333pt;}
.ws23{word-spacing:0.586667pt;}
.wsa{word-spacing:0.608000pt;}
.ws71{word-spacing:0.640000pt;}
.ws1d{word-spacing:0.645333pt;}
.ws21{word-spacing:0.704000pt;}
.ws91{word-spacing:0.746667pt;}
.wsd{word-spacing:0.760000pt;}
.ws42{word-spacing:0.762667pt;}
.ws4d{word-spacing:0.800000pt;}
.ws65{word-spacing:0.821333pt;}
.ws7a{word-spacing:0.853333pt;}
.ws59{word-spacing:0.880000pt;}
.ws56{word-spacing:0.906667pt;}
.ws3d{word-spacing:0.938667pt;}
.ws4e{word-spacing:0.960000pt;}
.ws9{word-spacing:0.962667pt;}
.ws43{word-spacing:0.997333pt;}
.ws5{word-spacing:1.013333pt;}
.ws39{word-spacing:1.056000pt;}
.ws13{word-spacing:1.114667pt;}
.ws6a{word-spacing:1.120000pt;}
.ws8{word-spacing:1.165333pt;}
.ws20{word-spacing:1.173333pt;}
.ws74{word-spacing:1.226667pt;}
.ws24{word-spacing:1.232000pt;}
.ws61{word-spacing:1.280000pt;}
.ws26{word-spacing:1.290667pt;}
.ws6f{word-spacing:1.333333pt;}
.ws27{word-spacing:1.349333pt;}
.ws38{word-spacing:1.408000pt;}
.ws44{word-spacing:1.466667pt;}
.ws7f{word-spacing:2.733333pt;}
.ws81{word-spacing:2.973333pt;}
.ws7e{word-spacing:3.506667pt;}
.ws8d{word-spacing:3.546667pt;}
.ws8b{word-spacing:3.666667pt;}
.ws84{word-spacing:3.693333pt;}
.ws86{word-spacing:3.880000pt;}
.ws8f{word-spacing:4.213333pt;}
.ws89{word-spacing:4.560000pt;}
.ws88{word-spacing:4.666667pt;}
.ws64{word-spacing:5.162667pt;}
.ws15{word-spacing:31.914667pt;}
.ws49{word-spacing:32.016000pt;}
._c{margin-left:-11.322667pt;}
._e{margin-left:-8.122667pt;}
._b{margin-left:-7.040000pt;}
._5{margin-left:-6.130667pt;}
._8{margin-left:-5.117333pt;}
._4{margin-left:-4.104000pt;}
._1{margin-left:-3.040000pt;}
._0{margin-left:-2.048000pt;}
._2{margin-left:-1.056000pt;}
._3{width:1.013333pt;}
._a{width:2.581333pt;}
._d{width:11.936000pt;}
._6{width:42.922667pt;}
._9{width:441.504000pt;}
._7{width:1005.269333pt;}
.fs7{font-size:40.000000pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:37.752000pt;}
.yb0{bottom:42.088000pt;}
.y13b{bottom:42.466667pt;}
.y1ff{bottom:42.804000pt;}
.y3f{bottom:42.829333pt;}
.y177{bottom:42.850667pt;}
.y155{bottom:43.260000pt;}
.y197{bottom:43.333333pt;}
.y8f{bottom:43.826667pt;}
.yd3{bottom:43.933333pt;}
.yf8{bottom:43.946667pt;}
.y82{bottom:44.093333pt;}
.y1b2{bottom:44.650667pt;}
.y119{bottom:44.709333pt;}
.y1d9{bottom:45.540000pt;}
.y25{bottom:51.090000pt;}
.yaf{bottom:54.760000pt;}
.y13a{bottom:56.466667pt;}
.y1fe{bottom:58.130667pt;}
.y3e{bottom:58.156000pt;}
.y176{bottom:58.177333pt;}
.y154{bottom:58.586667pt;}
.y8e{bottom:59.153333pt;}
.yd2{bottom:59.260000pt;}
.yf7{bottom:59.273333pt;}
.y81{bottom:59.420000pt;}
.y1b1{bottom:59.977333pt;}
.y118{bottom:60.036000pt;}
.y1d8{bottom:60.866667pt;}
.y24{bottom:64.428000pt;}
.y139{bottom:70.466667pt;}
.y196{bottom:70.680000pt;}
.y1fd{bottom:73.457333pt;}
.y3d{bottom:73.482667pt;}
.y175{bottom:73.504000pt;}
.y153{bottom:73.913333pt;}
.y8d{bottom:74.480000pt;}
.yd1{bottom:74.586667pt;}
.yf6{bottom:74.600000pt;}
.y80{bottom:74.746667pt;}
.y1b0{bottom:75.304000pt;}
.y117{bottom:75.362667pt;}
.y23{bottom:77.766000pt;}
.yae{bottom:83.800000pt;}
.y195{bottom:86.006667pt;}
.y1d7{bottom:87.546667pt;}
.y1fc{bottom:88.784000pt;}
.y3c{bottom:88.809333pt;}
.y174{bottom:88.830667pt;}
.y152{bottom:89.240000pt;}
.y8c{bottom:89.806667pt;}
.yd0{bottom:89.913333pt;}
.yf5{bottom:89.926667pt;}
.y7f{bottom:90.073333pt;}
.y1af{bottom:90.630667pt;}
.y116{bottom:90.689333pt;}
.y22{bottom:91.104000pt;}
.yad{bottom:97.800000pt;}
.y138{bottom:97.826667pt;}
.y194{bottom:101.333333pt;}
.y1d6{bottom:101.546667pt;}
.y1fb{bottom:104.110667pt;}
.y3b{bottom:104.136000pt;}
.y173{bottom:104.157333pt;}
.y21{bottom:104.442000pt;}
.y151{bottom:104.566667pt;}
.ycf{bottom:105.240000pt;}
.yf4{bottom:105.253333pt;}
.y8b{bottom:105.370667pt;}
.y7e{bottom:105.400000pt;}
.y1ae{bottom:105.957333pt;}
.y115{bottom:106.016000pt;}
.y137{bottom:113.153333pt;}
.y20{bottom:117.780000pt;}
.y1fa{bottom:119.437333pt;}
.y3a{bottom:119.462667pt;}
.y172{bottom:119.484000pt;}
.y150{bottom:119.893333pt;}
.yce{bottom:120.566667pt;}
.yf3{bottom:120.580000pt;}
.y8a{bottom:120.697333pt;}
.y7d{bottom:120.726667pt;}
.y1ad{bottom:121.284000pt;}
.y114{bottom:121.342667pt;}
.y1d5{bottom:123.153333pt;}
.yac{bottom:125.133333pt;}
.y136{bottom:128.480000pt;}
.y1f{bottom:131.118000pt;}
.y193{bottom:132.000000pt;}
.y1f9{bottom:134.764000pt;}
.y39{bottom:134.789333pt;}
.y171{bottom:134.810667pt;}
.ycd{bottom:135.893333pt;}
.yf2{bottom:135.906667pt;}
.y89{bottom:136.024000pt;}
.y7c{bottom:136.053333pt;}
.y1ac{bottom:136.610667pt;}
.y113{bottom:136.669333pt;}
.y1d4{bottom:138.480000pt;}
.y135{bottom:143.806667pt;}
.y1e{bottom:144.456000pt;}
.y192{bottom:146.000000pt;}
.y1f8{bottom:150.090667pt;}
.y38{bottom:150.116000pt;}
.y170{bottom:150.137333pt;}
.y14f{bottom:150.560000pt;}
.ycc{bottom:151.220000pt;}
.yf1{bottom:151.233333pt;}
.y88{bottom:151.350667pt;}
.y7b{bottom:151.380000pt;}
.y1ab{bottom:151.937333pt;}
.y112{bottom:151.996000pt;}
.y1d3{bottom:153.806667pt;}
.yab{bottom:155.800000pt;}
.y1d{bottom:157.794000pt;}
.y134{bottom:159.133333pt;}
.y14e{bottom:164.560000pt;}
.y1f7{bottom:165.417333pt;}
.y37{bottom:165.442667pt;}
.y16f{bottom:165.464000pt;}
.y219{bottom:165.773333pt;}
.ycb{bottom:166.546667pt;}
.yf0{bottom:166.560000pt;}
.y87{bottom:166.677333pt;}
.y7a{bottom:166.706667pt;}
.y1aa{bottom:167.264000pt;}
.y111{bottom:167.322667pt;}
.y1d2{bottom:169.133333pt;}
.yaa{bottom:169.800000pt;}
.y1c{bottom:171.132000pt;}
.y191{bottom:173.346667pt;}
.y218{bottom:179.773333pt;}
.y1f6{bottom:180.744000pt;}
.y36{bottom:180.769333pt;}
.y16e{bottom:180.790667pt;}
.yca{bottom:181.873333pt;}
.yef{bottom:181.886667pt;}
.y86{bottom:182.004000pt;}
.y79{bottom:182.033333pt;}
.y1a9{bottom:182.590667pt;}
.y110{bottom:182.649333pt;}
.y1d1{bottom:184.460000pt;}
.y1b{bottom:184.470000pt;}
.y190{bottom:188.673333pt;}
.y133{bottom:189.800000pt;}
.y14d{bottom:191.906667pt;}
.y217{bottom:193.773333pt;}
.y1f5{bottom:196.070667pt;}
.y35{bottom:196.096000pt;}
.y16d{bottom:196.117333pt;}
.yc9{bottom:197.200000pt;}
.yee{bottom:197.213333pt;}
.ya9{bottom:197.233333pt;}
.y85{bottom:197.330667pt;}
.y78{bottom:197.360000pt;}
.y10f{bottom:197.976000pt;}
.y1d0{bottom:199.786667pt;}
.y132{bottom:203.800000pt;}
.y18f{bottom:204.000000pt;}
.y1a8{bottom:205.588000pt;}
.y14c{bottom:207.233333pt;}
.y1a{bottom:211.133333pt;}
.y1f4{bottom:211.397333pt;}
.y34{bottom:211.422667pt;}
.y16c{bottom:211.444000pt;}
.y216{bottom:211.560000pt;}
.yc8{bottom:212.526667pt;}
.ya8{bottom:212.560000pt;}
.y77{bottom:212.686667pt;}
.y1cf{bottom:215.113333pt;}
.y131{bottom:217.800000pt;}
.y84{bottom:220.328000pt;}
.y10e{bottom:220.973333pt;}
.y14b{bottom:222.560000pt;}
.yed{bottom:223.893333pt;}
.y1f3{bottom:226.724000pt;}
.y33{bottom:226.749333pt;}
.y16b{bottom:226.770667pt;}
.yc7{bottom:227.853333pt;}
.ya7{bottom:227.886667pt;}
.y76{bottom:228.013333pt;}
.y215{bottom:229.333333pt;}
.y1ce{bottom:230.440000pt;}
.y130{bottom:231.800000pt;}
.y18e{bottom:234.666667pt;}
.y83{bottom:235.654667pt;}
.y1f2{bottom:242.050667pt;}
.y32{bottom:242.076000pt;}
.yc6{bottom:243.180000pt;}
.ya6{bottom:243.213333pt;}
.y214{bottom:243.333333pt;}
.y75{bottom:243.340000pt;}
.y1a7{bottom:243.926667pt;}
.y19{bottom:247.080667pt;}
.yec{bottom:247.505333pt;}
.y18d{bottom:248.666667pt;}
.y16a{bottom:249.768000pt;}
.y14a{bottom:251.120000pt;}
.y10d{bottom:255.220000pt;}
.y1cd{bottom:257.106667pt;}
.y213{bottom:257.333333pt;}
.y1f1{bottom:257.377333pt;}
.y31{bottom:257.402667pt;}
.yc5{bottom:258.506667pt;}
.ya5{bottom:258.540000pt;}
.y74{bottom:258.666667pt;}
.y12f{bottom:259.140000pt;}
.y1a6{bottom:259.253333pt;}
.y18c{bottom:262.666667pt;}
.yeb{bottom:262.832000pt;}
.y169{bottom:265.094667pt;}
.y18{bottom:269.475333pt;}
.y10c{bottom:270.546667pt;}
.y1cc{bottom:271.106667pt;}
.y1f0{bottom:272.704000pt;}
.y30{bottom:272.729333pt;}
.yc4{bottom:273.833333pt;}
.ya4{bottom:273.866667pt;}
.y73{bottom:273.993333pt;}
.y12e{bottom:274.466667pt;}
.y1a5{bottom:274.580000pt;}
.y212{bottom:275.120000pt;}
.y149{bottom:276.473333pt;}
.yea{bottom:278.158667pt;}
.y17{bottom:282.813333pt;}
.y10b{bottom:285.873333pt;}
.y1ef{bottom:288.030667pt;}
.y2f{bottom:288.056000pt;}
.y211{bottom:289.120000pt;}
.yc3{bottom:289.160000pt;}
.ya3{bottom:289.193333pt;}
.y72{bottom:289.320000pt;}
.y1a4{bottom:289.906667pt;}
.y18b{bottom:290.006667pt;}
.y148{bottom:291.800000pt;}
.y1cb{bottom:292.753333pt;}
.ye9{bottom:293.485333pt;}
.y16{bottom:296.151333pt;}
.y168{bottom:299.326667pt;}
.y10a{bottom:301.200000pt;}
.y1ee{bottom:303.357333pt;}
.y2e{bottom:303.382667pt;}
.yc2{bottom:304.486667pt;}
.ya2{bottom:304.520000pt;}
.y71{bottom:304.646667pt;}
.y12d{bottom:305.133333pt;}
.y1a3{bottom:305.233333pt;}
.y18a{bottom:305.333333pt;}
.y210{bottom:306.893333pt;}
.y1ca{bottom:308.080000pt;}
.ye8{bottom:308.812000pt;}
.y15{bottom:309.489333pt;}
.y167{bottom:314.653333pt;}
.y109{bottom:316.526667pt;}
.y1ed{bottom:318.684000pt;}
.y2d{bottom:318.709333pt;}
.y12c{bottom:319.133333pt;}
.yc1{bottom:319.813333pt;}
.ya1{bottom:319.846667pt;}
.y70{bottom:319.973333pt;}
.y1a2{bottom:320.560000pt;}
.y20f{bottom:320.893333pt;}
.y147{bottom:322.466667pt;}
.y14{bottom:322.827333pt;}
.y1c9{bottom:323.406667pt;}
.ye7{bottom:324.138667pt;}
.y166{bottom:329.980000pt;}
.y108{bottom:331.853333pt;}
.y1ec{bottom:334.010667pt;}
.y2c{bottom:334.036000pt;}
.y20e{bottom:334.893333pt;}
.yc0{bottom:335.140000pt;}
.ya0{bottom:335.173333pt;}
.y6f{bottom:335.300000pt;}
.y13{bottom:336.165333pt;}
.y146{bottom:336.466667pt;}
.y1c8{bottom:338.733333pt;}
.ye6{bottom:339.465333pt;}
.y189{bottom:339.560000pt;}
.y165{bottom:345.306667pt;}
.y12b{bottom:346.473333pt;}
.y107{bottom:347.180000pt;}
.y2b{bottom:349.362667pt;}
.y12{bottom:349.503333pt;}
.ybf{bottom:350.466667pt;}
.y9f{bottom:350.500000pt;}
.y6e{bottom:350.626667pt;}
.y1a1{bottom:351.226667pt;}
.y20d{bottom:352.680000pt;}
.y188{bottom:353.560000pt;}
.y1c7{bottom:354.060000pt;}
.ye5{bottom:354.792000pt;}
.y1eb{bottom:357.008000pt;}
.y164{bottom:360.633333pt;}
.y12a{bottom:361.800000pt;}
.y106{bottom:362.506667pt;}
.y11{bottom:362.841333pt;}
.y2a{bottom:364.689333pt;}
.y1a0{bottom:365.226667pt;}
.y9e{bottom:365.826667pt;}
.y6d{bottom:365.953333pt;}
.y20c{bottom:366.680000pt;}
.y187{bottom:367.560000pt;}
.y1c6{bottom:369.386667pt;}
.ye4{bottom:370.118667pt;}
.y163{bottom:375.960000pt;}
.y10{bottom:376.179333pt;}
.y145{bottom:377.813333pt;}
.y105{bottom:377.833333pt;}
.y19f{bottom:379.226667pt;}
.y29{bottom:380.016000pt;}
.y20b{bottom:380.680000pt;}
.ybe{bottom:381.133333pt;}
.y9d{bottom:381.153333pt;}
.y6c{bottom:381.280000pt;}
.y1c5{bottom:384.713333pt;}
.ye3{bottom:385.445333pt;}
.yf{bottom:389.517333pt;}
.y162{bottom:391.286667pt;}
.y129{bottom:392.466667pt;}
.y144{bottom:393.140000pt;}
.y104{bottom:393.160000pt;}
.y19e{bottom:393.226667pt;}
.y186{bottom:394.900000pt;}
.ybd{bottom:395.133333pt;}
.y1ea{bottom:395.346667pt;}
.y9c{bottom:396.480000pt;}
.y6b{bottom:396.606667pt;}
.y20a{bottom:398.453333pt;}
.y1c4{bottom:400.040000pt;}
.ye2{bottom:400.772000pt;}
.ye{bottom:402.855333pt;}
.y28{bottom:403.013333pt;}
.y128{bottom:406.466667pt;}
.y161{bottom:406.613333pt;}
.y143{bottom:408.466667pt;}
.y103{bottom:408.486667pt;}
.ybc{bottom:409.133333pt;}
.y185{bottom:410.226667pt;}
.y1e9{bottom:410.673333pt;}
.y9b{bottom:411.806667pt;}
.y6a{bottom:411.933333pt;}
.y209{bottom:412.453333pt;}
.y1c3{bottom:415.366667pt;}
.ye1{bottom:416.098667pt;}
.yd{bottom:416.193333pt;}
.y127{bottom:420.466667pt;}
.y19d{bottom:420.580000pt;}
.y160{bottom:421.940000pt;}
.y102{bottom:423.813333pt;}
.y1e8{bottom:426.000000pt;}
.y208{bottom:426.453333pt;}
.y9a{bottom:427.133333pt;}
.y69{bottom:427.260000pt;}
.yc{bottom:429.531333pt;}
.y1c2{bottom:430.693333pt;}
.ye0{bottom:431.425333pt;}
.y126{bottom:434.466667pt;}
.y19c{bottom:435.906667pt;}
.ybb{bottom:436.480000pt;}
.y15f{bottom:437.266667pt;}
.y142{bottom:439.133333pt;}
.y101{bottom:439.140000pt;}
.y207{bottom:440.453333pt;}
.y1e7{bottom:441.326667pt;}
.y68{bottom:442.586667pt;}
.yb{bottom:442.869333pt;}
.y184{bottom:444.466667pt;}
.y1c1{bottom:446.020000pt;}
.ydf{bottom:446.752000pt;}
.y125{bottom:448.466667pt;}
.y19b{bottom:451.233333pt;}
.yba{bottom:451.806667pt;}
.y15e{bottom:452.593333pt;}
.y141{bottom:453.133333pt;}
.y100{bottom:454.466667pt;}
.y54{bottom:455.148667pt;}
.y4d{bottom:455.174000pt;}
.ya{bottom:456.207333pt;}
.y1e6{bottom:456.653333pt;}
.y99{bottom:457.800000pt;}
.y67{bottom:457.913333pt;}
.y206{bottom:458.240000pt;}
.y183{bottom:458.466667pt;}
.y1c0{bottom:461.346667pt;}
.yde{bottom:462.078667pt;}
.y124{bottom:462.466667pt;}
.y19a{bottom:466.560000pt;}
.yb9{bottom:467.133333pt;}
.y15d{bottom:467.920000pt;}
.y4c{bottom:468.512000pt;}
.y9{bottom:469.545333pt;}
.y98{bottom:471.800000pt;}
.y182{bottom:472.466667pt;}
.y66{bottom:473.240000pt;}
.y53{bottom:473.819333pt;}
.y205{bottom:476.013333pt;}
.y1bf{bottom:476.673333pt;}
.ydd{bottom:477.405333pt;}
.y8{bottom:482.883333pt;}
.y15c{bottom:483.246667pt;}
.yff{bottom:485.133333pt;}
.y1e5{bottom:485.213333pt;}
.y97{bottom:485.800000pt;}
.y181{bottom:486.466667pt;}
.y4b{bottom:487.182667pt;}
.y65{bottom:488.566667pt;}
.y123{bottom:489.880000pt;}
.y204{bottom:490.013333pt;}
.y1be{bottom:492.000000pt;}
.y52{bottom:492.490000pt;}
.ydc{bottom:492.732000pt;}
.y140{bottom:494.473333pt;}
.y199{bottom:495.120000pt;}
.yb8{bottom:497.800000pt;}
.y15b{bottom:498.573333pt;}
.yfe{bottom:499.133333pt;}
.y1e4{bottom:499.213333pt;}
.y96{bottom:499.800000pt;}
.y180{bottom:500.466667pt;}
.y4a{bottom:500.520667pt;}
.y64{bottom:503.893333pt;}
.y203{bottom:504.013333pt;}
.y122{bottom:505.206667pt;}
.y51{bottom:505.828000pt;}
.ydb{bottom:508.058667pt;}
.y198{bottom:509.120000pt;}
.y7{bottom:509.546667pt;}
.y13f{bottom:509.800000pt;}
.yfd{bottom:513.133333pt;}
.y1e3{bottom:513.213333pt;}
.y95{bottom:513.800000pt;}
.y15a{bottom:513.900000pt;}
.y202{bottom:518.013333pt;}
.y49{bottom:519.191333pt;}
.y63{bottom:519.220000pt;}
.y121{bottom:520.533333pt;}
.y1bd{bottom:520.560000pt;}
.yda{bottom:523.385333pt;}
.y50{bottom:524.498667pt;}
.yb7{bottom:525.153333pt;}
.y94{bottom:527.800000pt;}
.y17f{bottom:527.820000pt;}
.y159{bottom:529.226667pt;}
.y48{bottom:532.529333pt;}
.y62{bottom:534.546667pt;}
.y1bc{bottom:534.560000pt;}
.y201{bottom:535.800000pt;}
.y120{bottom:535.860000pt;}
.y4f{bottom:537.836667pt;}
.y1e2{bottom:538.566667pt;}
.yd9{bottom:538.712000pt;}
.y13e{bottom:540.466667pt;}
.yb6{bottom:540.480000pt;}
.y93{bottom:541.800000pt;}
.y17e{bottom:543.146667pt;}
.y1bb{bottom:548.560000pt;}
.y61{bottom:549.873333pt;}
.y4e{bottom:551.174667pt;}
.y11f{bottom:551.186667pt;}
.y47{bottom:551.200000pt;}
.y1e1{bottom:553.893333pt;}
.yd8{bottom:554.038667pt;}
.y13d{bottom:554.466667pt;}
.y92{bottom:555.800000pt;}
.yb5{bottom:555.806667pt;}
.y200{bottom:557.514667pt;}
.y158{bottom:557.786667pt;}
.y17d{bottom:558.473333pt;}
.y1ba{bottom:562.560000pt;}
.y60{bottom:565.200000pt;}
.y11e{bottom:566.513333pt;}
.y13c{bottom:568.466667pt;}
.yd7{bottom:569.365333pt;}
.y91{bottom:569.800000pt;}
.yb4{bottom:571.133333pt;}
.y157{bottom:571.786667pt;}
.y55{bottom:572.533333pt;}
.y17c{bottom:573.800000pt;}
.y1b9{bottom:576.560000pt;}
.y5f{bottom:580.526667pt;}
.y11d{bottom:581.840000pt;}
.y1e0{bottom:582.453333pt;}
.y90{bottom:583.800000pt;}
.yd6{bottom:584.692000pt;}
.y156{bottom:585.786667pt;}
.y1b8{bottom:594.333333pt;}
.y5e{bottom:595.853333pt;}
.y1df{bottom:596.453333pt;}
.y11c{bottom:597.166667pt;}
.yb3{bottom:601.800000pt;}
.y17b{bottom:604.466667pt;}
.y6{bottom:607.296000pt;}
.yd5{bottom:607.586667pt;}
.y1b7{bottom:608.333333pt;}
.y1de{bottom:610.453333pt;}
.y5d{bottom:611.180000pt;}
.y11b{bottom:612.493333pt;}
.yb2{bottom:615.800000pt;}
.y17a{bottom:618.466667pt;}
.y5{bottom:620.628000pt;}
.yd4{bottom:622.913333pt;}
.y1dd{bottom:624.453333pt;}
.y5c{bottom:626.506667pt;}
.y11a{bottom:627.820000pt;}
.y46{bottom:628.680000pt;}
.yb1{bottom:629.800000pt;}
.y1b6{bottom:631.806667pt;}
.y179{bottom:632.466667pt;}
.y4{bottom:633.960000pt;}
.y1dc{bottom:638.453333pt;}
.y5b{bottom:641.833333pt;}
.yfc{bottom:643.146667pt;}
.y178{bottom:646.466667pt;}
.y1b5{bottom:647.133333pt;}
.y3{bottom:650.626667pt;}
.y45{bottom:651.430000pt;}
.y5a{bottom:657.160000pt;}
.yfb{bottom:658.473333pt;}
.y1b4{bottom:662.460000pt;}
.y1db{bottom:663.786667pt;}
.y44{bottom:664.768000pt;}
.y59{bottom:672.486667pt;}
.yfa{bottom:673.800000pt;}
.y1b3{bottom:677.786667pt;}
.y43{bottom:678.106000pt;}
.y58{bottom:687.813333pt;}
.y1da{bottom:690.466667pt;}
.y2{bottom:690.626667pt;}
.y42{bottom:691.444000pt;}
.y57{bottom:703.140000pt;}
.yf9{bottom:704.466667pt;}
.y41{bottom:704.782000pt;}
.y1{bottom:711.960000pt;}
.y40{bottom:718.120000pt;}
.y56{bottom:718.466667pt;}
.y27{bottom:760.093333pt;}
.h6{height:45.525333pt;}
.h3{height:51.216000pt;}
.h4{height:54.061333pt;}
.h5{height:54.922667pt;}
.ha{height:56.906667pt;}
.hb{height:57.813333pt;}
.h7{height:62.597333pt;}
.h8{height:62.645333pt;}
.h9{height:63.594667pt;}
.h2{height:68.288000pt;}
.h1{height:91.050667pt;}
.h0{height:820.000000pt;}
.w0{width:529.333333pt;}
.x0{left:0.000000pt;}
.x1{left:47.733333pt;}
.x4{left:48.813333pt;}
.x7{left:50.020667pt;}
.xa{left:51.401333pt;}
.x2{left:67.738000pt;}
.x5{left:68.760000pt;}
.x8{left:79.648000pt;}
.xf{left:87.733333pt;}
.x10{left:88.813333pt;}
.xb{left:92.124667pt;}
.x9{left:93.784000pt;}
.xc{left:146.908000pt;}
.x6{left:188.733333pt;}
.xe{left:243.773333pt;}
.xd{left:276.779333pt;}
.x3{left:366.680000pt;}
}




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