
    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_3888e8fd18a10479c2f48eb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.120000;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_2d8f560d76a0a89af48dce98.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.822000;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_ca91b33602da3d9504fdb901.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.281250;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_68339df1d10c4ca22327a6ea.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_8a6d43e1e732617a069e67cd.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2099a8512795b46f84563ec3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.152000;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.170000px;}
.v0{vertical-align:0.000000px;}
.ls2b{letter-spacing:-2.574000px;}
.ls29{letter-spacing:-2.442000px;}
.ls28{letter-spacing:-2.376000px;}
.ls2c{letter-spacing:-1.782000px;}
.ls2a{letter-spacing:-1.716000px;}
.ls3b{letter-spacing:-1.650000px;}
.ls3d{letter-spacing:-1.584000px;}
.ls42{letter-spacing:-1.518000px;}
.ls2d{letter-spacing:-1.452000px;}
.ls45{letter-spacing:-1.386000px;}
.ls40{letter-spacing:-1.320000px;}
.ls31{letter-spacing:-1.254000px;}
.ls27{letter-spacing:-1.188000px;}
.ls22{letter-spacing:-1.122000px;}
.ls23{letter-spacing:-1.056000px;}
.lsf{letter-spacing:-0.990000px;}
.ls20{letter-spacing:-0.924000px;}
.ls21{letter-spacing:-0.858000px;}
.lsc{letter-spacing:-0.792000px;}
.ls1{letter-spacing:-0.768000px;}
.ls1f{letter-spacing:-0.726000px;}
.ls1e{letter-spacing:-0.660000px;}
.lsb{letter-spacing:-0.594000px;}
.ls12{letter-spacing:-0.528000px;}
.ls41{letter-spacing:-0.480000px;}
.ls17{letter-spacing:-0.462000px;}
.ls18{letter-spacing:-0.396000px;}
.ls24{letter-spacing:-0.336000px;}
.lsa{letter-spacing:-0.330000px;}
.lsd{letter-spacing:-0.264000px;}
.ls1a{letter-spacing:-0.198000px;}
.ls19{letter-spacing:-0.148500px;}
.ls10{letter-spacing:-0.132000px;}
.lse{letter-spacing:-0.066000px;}
.ls13{letter-spacing:-0.048000px;}
.ls0{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.048000px;}
.ls15{letter-spacing:0.066000px;}
.ls6{letter-spacing:0.132000px;}
.ls43{letter-spacing:0.144000px;}
.ls3c{letter-spacing:0.192000px;}
.ls3{letter-spacing:0.198000px;}
.ls5{letter-spacing:0.264000px;}
.ls1c{letter-spacing:0.330000px;}
.ls32{letter-spacing:0.384000px;}
.ls8{letter-spacing:0.396000px;}
.ls14{letter-spacing:0.462000px;}
.ls11{letter-spacing:0.495000px;}
.ls7{letter-spacing:0.528000px;}
.ls9{letter-spacing:0.544500px;}
.ls33{letter-spacing:0.594000px;}
.ls1b{letter-spacing:0.660000px;}
.ls16{letter-spacing:0.726000px;}
.ls4{letter-spacing:0.792000px;}
.ls2{letter-spacing:0.858000px;}
.ls44{letter-spacing:0.924000px;}
.ls38{letter-spacing:0.990000px;}
.ls3a{letter-spacing:1.056000px;}
.ls30{letter-spacing:1.122000px;}
.ls1d{letter-spacing:1.188000px;}
.ls46{letter-spacing:1.254000px;}
.ls2e{letter-spacing:1.320000px;}
.ls37{letter-spacing:1.386000px;}
.ls39{letter-spacing:1.452000px;}
.ls35{letter-spacing:1.518000px;}
.ls2f{letter-spacing:1.650000px;}
.ls36{letter-spacing:1.914000px;}
.ls34{letter-spacing:2.244000px;}
.ls3f{letter-spacing:15.906000px;}
.ls25{letter-spacing:16.302000px;}
.ls26{letter-spacing:16.764000px;}
.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;}
}
.ws4a{word-spacing:-21.000000px;}
.ws51{word-spacing:-18.282000px;}
.ws66{word-spacing:-18.150000px;}
.ws53{word-spacing:-18.018000px;}
.ws62{word-spacing:-17.952000px;}
.ws52{word-spacing:-17.886000px;}
.ws6a{word-spacing:-17.754000px;}
.ws59{word-spacing:-17.622000px;}
.ws63{word-spacing:-17.556000px;}
.ws5a{word-spacing:-17.490000px;}
.ws6b{word-spacing:-17.358000px;}
.ws5e{word-spacing:-17.292000px;}
.ws4e{word-spacing:-17.226000px;}
.ws28{word-spacing:-17.160000px;}
.ws54{word-spacing:-17.094000px;}
.wsd{word-spacing:-17.028000px;}
.ws24{word-spacing:-16.962000px;}
.ws64{word-spacing:-16.896000px;}
.ws4c{word-spacing:-16.830000px;}
.ws5{word-spacing:-16.764000px;}
.ws58{word-spacing:-16.698000px;}
.ws61{word-spacing:-16.632000px;}
.ws25{word-spacing:-16.566000px;}
.ws2{word-spacing:-16.500000px;}
.ws3{word-spacing:-16.434000px;}
.ws7{word-spacing:-16.368000px;}
.ws2f{word-spacing:-16.302000px;}
.ws5d{word-spacing:-16.236000px;}
.ws30{word-spacing:-16.170000px;}
.ws33{word-spacing:-16.104000px;}
.ws34{word-spacing:-16.038000px;}
.ws44{word-spacing:-15.972000px;}
.ws57{word-spacing:-15.906000px;}
.ws4f{word-spacing:-15.840000px;}
.ws31{word-spacing:-15.774000px;}
.ws3f{word-spacing:-15.708000px;}
.ws41{word-spacing:-15.642000px;}
.ws32{word-spacing:-15.576000px;}
.ws4{word-spacing:-15.510000px;}
.ws45{word-spacing:-15.444000px;}
.ws43{word-spacing:-15.378000px;}
.ws40{word-spacing:-14.784000px;}
.ws42{word-spacing:-14.718000px;}
.ws8{word-spacing:-12.919500px;}
.ws9{word-spacing:-12.771000px;}
.ws4b{word-spacing:-12.622500px;}
.ws50{word-spacing:-12.384000px;}
.ws26{word-spacing:-12.226500px;}
.wse{word-spacing:-12.192000px;}
.ws68{word-spacing:-12.144000px;}
.ws5b{word-spacing:-12.048000px;}
.ws5f{word-spacing:-12.000000px;}
.ws36{word-spacing:-11.664000px;}
.ws65{word-spacing:-11.520000px;}
.ws1{word-spacing:-7.872000px;}
.ws3e{word-spacing:-1.122000px;}
.ws1d{word-spacing:-0.858000px;}
.ws1f{word-spacing:-0.792000px;}
.ws1e{word-spacing:-0.726000px;}
.ws37{word-spacing:-0.660000px;}
.ws1b{word-spacing:-0.594000px;}
.ws3b{word-spacing:-0.528000px;}
.ws10{word-spacing:-0.462000px;}
.ws2b{word-spacing:-0.396000px;}
.ws15{word-spacing:-0.330000px;}
.ws39{word-spacing:-0.264000px;}
.ws14{word-spacing:-0.198000px;}
.ws46{word-spacing:-0.132000px;}
.ws16{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws56{word-spacing:0.066000px;}
.ws21{word-spacing:0.132000px;}
.ws49{word-spacing:0.198000px;}
.ws1c{word-spacing:0.264000px;}
.ws13{word-spacing:0.330000px;}
.ws6{word-spacing:0.396000px;}
.ws3c{word-spacing:0.462000px;}
.ws47{word-spacing:0.528000px;}
.ws2a{word-spacing:0.594000px;}
.ws38{word-spacing:0.660000px;}
.wsf{word-spacing:0.726000px;}
.ws11{word-spacing:0.792000px;}
.ws12{word-spacing:0.858000px;}
.ws2e{word-spacing:0.924000px;}
.ws3a{word-spacing:0.990000px;}
.ws1a{word-spacing:1.056000px;}
.ws23{word-spacing:1.122000px;}
.ws3d{word-spacing:1.188000px;}
.ws20{word-spacing:1.254000px;}
.ws17{word-spacing:1.320000px;}
.ws22{word-spacing:1.386000px;}
.ws18{word-spacing:1.452000px;}
.ws19{word-spacing:1.518000px;}
.ws2c{word-spacing:1.584000px;}
.ws2d{word-spacing:1.650000px;}
.ws67{word-spacing:1.716000px;}
.ws5c{word-spacing:1.914000px;}
.ws55{word-spacing:2.376000px;}
.ws60{word-spacing:3.432000px;}
.ws27{word-spacing:3.465000px;}
.ws35{word-spacing:3.804000px;}
.wsa{word-spacing:5.148000px;}
.wsc{word-spacing:5.197500px;}
.wsb{word-spacing:5.346000px;}
.ws4d{word-spacing:5.890500px;}
.ws69{word-spacing:7.656000px;}
.ws48{word-spacing:8.316000px;}
.ws29{word-spacing:35.904000px;}
._9{margin-left:-8.646000px;}
._a{margin-left:-6.906000px;}
._4{margin-left:-5.020500px;}
._1{margin-left:-3.456000px;}
._2{margin-left:-1.848000px;}
._0{width:1.056000px;}
._6{width:2.112000px;}
._3{width:3.828000px;}
._b{width:14.058000px;}
._c{width:17.028000px;}
._8{width:19.008000px;}
._5{width:47.952000px;}
._7{width:431.856000px;}
.fc3{color:transparent;}
.fc1{color:rgb(167,165,166);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs2{font-size:48.000000px;}
.fs4{font-size:49.500000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:54.907500px;}
.yeb{bottom:55.149000px;}
.ya6{bottom:55.161000px;}
.y149{bottom:55.165500px;}
.yc2{bottom:55.182000px;}
.y80{bottom:55.198500px;}
.y23{bottom:55.477500px;}
.y5d{bottom:72.150000px;}
.yea{bottom:72.391500px;}
.ya5{bottom:72.403500px;}
.y148{bottom:72.408000px;}
.yc1{bottom:72.424500px;}
.y153{bottom:72.441000px;}
.y22{bottom:72.915000px;}
.y5c{bottom:89.392500px;}
.ye9{bottom:89.634000px;}
.ya4{bottom:89.646000px;}
.y147{bottom:89.650500px;}
.yc0{bottom:89.667000px;}
.y152{bottom:89.683500px;}
.y7f{bottom:89.700000px;}
.y21{bottom:90.157500px;}
.yf4{bottom:98.296500px;}
.ye8{bottom:106.876500px;}
.ya3{bottom:106.888500px;}
.y146{bottom:106.893000px;}
.ybf{bottom:106.909500px;}
.y151{bottom:106.926000px;}
.y5b{bottom:106.927500px;}
.y7e{bottom:106.942500px;}
.y20{bottom:107.400000px;}
.yf3{bottom:115.539000px;}
.ye7{bottom:124.119000px;}
.ya2{bottom:124.131000px;}
.y145{bottom:124.135500px;}
.ybe{bottom:124.152000px;}
.y5a{bottom:124.170000px;}
.y7d{bottom:124.185000px;}
.y1f{bottom:124.642500px;}
.yf7{bottom:132.748500px;}
.yf2{bottom:132.781500px;}
.ye6{bottom:141.361500px;}
.ya1{bottom:141.373500px;}
.y144{bottom:141.378000px;}
.ybd{bottom:141.394500px;}
.y59{bottom:141.412500px;}
.y7c{bottom:141.427500px;}
.y1e{bottom:141.885000px;}
.yf6{bottom:149.991000px;}
.yf1{bottom:150.024000px;}
.ye5{bottom:158.604000px;}
.ya0{bottom:158.616000px;}
.y143{bottom:158.620500px;}
.ybc{bottom:158.637000px;}
.y58{bottom:158.655000px;}
.y7b{bottom:158.670000px;}
.y1d{bottom:159.127500px;}
.yf5{bottom:167.233500px;}
.yf0{bottom:167.266500px;}
.ye4{bottom:175.846500px;}
.y9f{bottom:175.858500px;}
.y142{bottom:175.863000px;}
.ybb{bottom:175.879500px;}
.y57{bottom:175.897500px;}
.y7a{bottom:175.912500px;}
.y1c{bottom:176.370000px;}
.y150{bottom:184.476000px;}
.yef{bottom:184.509000px;}
.ye3{bottom:193.089000px;}
.y9e{bottom:193.101000px;}
.y141{bottom:193.105500px;}
.yba{bottom:193.122000px;}
.y56{bottom:193.140000px;}
.y79{bottom:193.155000px;}
.y1b{bottom:193.612500px;}
.y14f{bottom:201.718500px;}
.y121{bottom:201.735000px;}
.yee{bottom:201.751500px;}
.ye2{bottom:210.331500px;}
.y9d{bottom:210.343500px;}
.y140{bottom:210.348000px;}
.yb9{bottom:210.364500px;}
.y55{bottom:210.382500px;}
.y78{bottom:210.397500px;}
.y1a{bottom:210.855000px;}
.y14e{bottom:218.961000px;}
.y120{bottom:218.977500px;}
.yed{bottom:218.994000px;}
.ye1{bottom:227.574000px;}
.y9c{bottom:227.586000px;}
.y13f{bottom:227.590500px;}
.yb8{bottom:227.607000px;}
.y54{bottom:227.625000px;}
.y77{bottom:227.640000px;}
.y19{bottom:228.097500px;}
.y11f{bottom:236.220000px;}
.yec{bottom:236.236500px;}
.ye0{bottom:244.816500px;}
.y9b{bottom:244.828500px;}
.y13e{bottom:244.833000px;}
.yb7{bottom:244.849500px;}
.y53{bottom:244.867500px;}
.y76{bottom:244.882500px;}
.y18{bottom:245.340000px;}
.y11e{bottom:253.462500px;}
.y172{bottom:253.495500px;}
.y106{bottom:262.059000px;}
.y9a{bottom:262.071000px;}
.y13d{bottom:262.075500px;}
.yb6{bottom:262.092000px;}
.y52{bottom:262.110000px;}
.y75{bottom:262.125000px;}
.y17{bottom:262.582500px;}
.y11d{bottom:270.705000px;}
.yf9{bottom:270.721500px;}
.y171{bottom:270.738000px;}
.ydf{bottom:275.011500px;}
.y105{bottom:279.301500px;}
.y99{bottom:279.313500px;}
.y13c{bottom:279.318000px;}
.yb5{bottom:279.334500px;}
.y51{bottom:279.352500px;}
.y74{bottom:279.367500px;}
.y16{bottom:279.825000px;}
.y11c{bottom:287.947500px;}
.yf8{bottom:287.964000px;}
.y170{bottom:287.980500px;}
.yde{bottom:292.254000px;}
.y98{bottom:296.556000px;}
.y13b{bottom:296.560500px;}
.yb4{bottom:296.577000px;}
.y50{bottom:296.595000px;}
.y73{bottom:296.610000px;}
.y15{bottom:297.067500px;}
.y104{bottom:305.173500px;}
.y11b{bottom:305.190000px;}
.ycb{bottom:305.206500px;}
.y16f{bottom:305.223000px;}
.y97{bottom:313.798500px;}
.y13a{bottom:313.803000px;}
.yb3{bottom:313.819500px;}
.y4f{bottom:313.837500px;}
.y72{bottom:313.852500px;}
.y14{bottom:314.310000px;}
.y103{bottom:322.416000px;}
.y11a{bottom:322.432500px;}
.yca{bottom:322.449000px;}
.y16e{bottom:322.465500px;}
.y96{bottom:331.041000px;}
.y139{bottom:331.045500px;}
.yb2{bottom:331.062000px;}
.y4e{bottom:331.080000px;}
.y71{bottom:331.095000px;}
.y13{bottom:331.552500px;}
.y102{bottom:339.658500px;}
.y119{bottom:339.675000px;}
.yc9{bottom:339.691500px;}
.y16d{bottom:339.708000px;}
.y95{bottom:348.283500px;}
.yb1{bottom:348.304500px;}
.y4d{bottom:348.322500px;}
.y70{bottom:348.337500px;}
.y12{bottom:348.795000px;}
.y101{bottom:356.901000px;}
.y118{bottom:356.917500px;}
.yc8{bottom:356.934000px;}
.y16c{bottom:356.950500px;}
.y138{bottom:361.240500px;}
.y94{bottom:365.526000px;}
.yb0{bottom:365.547000px;}
.y4c{bottom:365.565000px;}
.y6f{bottom:365.580000px;}
.y11{bottom:366.037500px;}
.y100{bottom:374.143500px;}
.y117{bottom:374.160000px;}
.yc7{bottom:374.176500px;}
.y16b{bottom:374.193000px;}
.y137{bottom:378.483000px;}
.y93{bottom:382.768500px;}
.yaf{bottom:382.789500px;}
.y4b{bottom:382.807500px;}
.y6e{bottom:382.822500px;}
.y10{bottom:383.280000px;}
.y116{bottom:391.402500px;}
.yc6{bottom:391.419000px;}
.y16a{bottom:391.435500px;}
.y136{bottom:395.725500px;}
.y92{bottom:400.011000px;}
.yae{bottom:400.032000px;}
.y4a{bottom:400.050000px;}
.y6d{bottom:400.065000px;}
.yf{bottom:400.522500px;}
.y115{bottom:408.645000px;}
.yc5{bottom:408.661500px;}
.y169{bottom:408.678000px;}
.y135{bottom:412.968000px;}
.y91{bottom:417.253500px;}
.yad{bottom:417.274500px;}
.y49{bottom:417.292500px;}
.y6c{bottom:417.307500px;}
.ye{bottom:417.765000px;}
.y114{bottom:425.887500px;}
.yc4{bottom:425.904000px;}
.y168{bottom:425.920500px;}
.y134{bottom:430.210500px;}
.yac{bottom:434.517000px;}
.y48{bottom:434.535000px;}
.y6b{bottom:434.550000px;}
.yd{bottom:435.007500px;}
.y113{bottom:443.130000px;}
.yc3{bottom:443.146500px;}
.y167{bottom:443.163000px;}
.y133{bottom:447.453000px;}
.y90{bottom:451.755000px;}
.ydd{bottom:451.759500px;}
.y47{bottom:451.777500px;}
.y6a{bottom:451.792500px;}
.yc{bottom:452.250000px;}
.y112{bottom:460.372500px;}
.yab{bottom:460.389000px;}
.y166{bottom:460.405500px;}
.y8f{bottom:468.997500px;}
.ydc{bottom:469.002000px;}
.y46{bottom:469.020000px;}
.y69{bottom:469.035000px;}
.yb{bottom:469.492500px;}
.y111{bottom:477.615000px;}
.yaa{bottom:477.631500px;}
.y165{bottom:477.648000px;}
.y8e{bottom:486.240000px;}
.ydb{bottom:486.244500px;}
.y45{bottom:486.262500px;}
.y68{bottom:486.277500px;}
.ya{bottom:486.735000px;}
.y132{bottom:490.584000px;}
.y110{bottom:494.857500px;}
.ya9{bottom:494.874000px;}
.y164{bottom:494.890500px;}
.y8d{bottom:503.482500px;}
.yda{bottom:503.487000px;}
.y44{bottom:503.505000px;}
.y67{bottom:503.520000px;}
.y9{bottom:503.977500px;}
.y131{bottom:507.826500px;}
.y10f{bottom:512.100000px;}
.ya8{bottom:512.116500px;}
.y163{bottom:512.133000px;}
.y8c{bottom:520.725000px;}
.yd9{bottom:520.729500px;}
.y43{bottom:520.747500px;}
.y66{bottom:520.762500px;}
.y8{bottom:521.242500px;}
.y130{bottom:525.069000px;}
.y10e{bottom:529.342500px;}
.ya7{bottom:529.359000px;}
.y162{bottom:529.375500px;}
.y8b{bottom:537.967500px;}
.yd8{bottom:537.972000px;}
.y42{bottom:537.990000px;}
.y65{bottom:538.005000px;}
.y7{bottom:538.485000px;}
.y12f{bottom:542.311500px;}
.y10d{bottom:546.585000px;}
.yff{bottom:546.601500px;}
.y161{bottom:546.618000px;}
.y8a{bottom:555.210000px;}
.yd7{bottom:555.214500px;}
.y41{bottom:555.232500px;}
.y64{bottom:555.247500px;}
.y6{bottom:555.727500px;}
.y12e{bottom:559.554000px;}
.y10c{bottom:563.827500px;}
.yfe{bottom:563.844000px;}
.y160{bottom:563.860500px;}
.y89{bottom:572.452500px;}
.yd6{bottom:572.457000px;}
.y40{bottom:572.475000px;}
.y63{bottom:572.490000px;}
.y5{bottom:572.970000px;}
.y12d{bottom:576.796500px;}
.yfd{bottom:581.086500px;}
.y15f{bottom:581.103000px;}
.y88{bottom:589.695000px;}
.yd5{bottom:589.699500px;}
.y3f{bottom:589.717500px;}
.y62{bottom:589.732500px;}
.y12c{bottom:594.039000px;}
.yfc{bottom:598.329000px;}
.y15e{bottom:598.345500px;}
.y33{bottom:606.907500px;}
.y87{bottom:606.937500px;}
.yd4{bottom:606.942000px;}
.y3e{bottom:606.960000px;}
.y61{bottom:606.975000px;}
.y12b{bottom:611.281500px;}
.yfb{bottom:615.571500px;}
.y15d{bottom:615.588000px;}
.y32{bottom:624.150000px;}
.y86{bottom:624.180000px;}
.y14d{bottom:624.184500px;}
.y3d{bottom:624.202500px;}
.y60{bottom:624.217500px;}
.y12a{bottom:628.524000px;}
.yfa{bottom:632.814000px;}
.y15c{bottom:632.830500px;}
.yd3{bottom:637.137000px;}
.y31{bottom:641.392500px;}
.y85{bottom:641.422500px;}
.y14c{bottom:641.427000px;}
.y3c{bottom:641.445000px;}
.y5f{bottom:641.460000px;}
.y129{bottom:645.766500px;}
.y10b{bottom:650.056500px;}
.y15b{bottom:650.073000px;}
.yd2{bottom:654.379500px;}
.y84{bottom:658.665000px;}
.y3b{bottom:658.687500px;}
.y30{bottom:658.702500px;}
.y128{bottom:663.009000px;}
.y10a{bottom:667.299000px;}
.y15a{bottom:667.315500px;}
.yd1{bottom:671.622000px;}
.y83{bottom:675.907500px;}
.y3a{bottom:675.930000px;}
.y2f{bottom:675.945000px;}
.y127{bottom:680.251500px;}
.y109{bottom:684.541500px;}
.y159{bottom:684.558000px;}
.yd0{bottom:688.864500px;}
.y82{bottom:693.150000px;}
.y39{bottom:693.172500px;}
.y2e{bottom:693.187500px;}
.y126{bottom:697.494000px;}
.y108{bottom:701.784000px;}
.y158{bottom:701.800500px;}
.ycf{bottom:706.107000px;}
.y81{bottom:710.392500px;}
.y38{bottom:710.415000px;}
.y2d{bottom:710.430000px;}
.y125{bottom:714.736500px;}
.y107{bottom:719.026500px;}
.y157{bottom:719.043000px;}
.yce{bottom:723.349500px;}
.y37{bottom:727.657500px;}
.y2c{bottom:727.672500px;}
.y124{bottom:731.979000px;}
.y14b{bottom:736.269000px;}
.y156{bottom:736.285500px;}
.y3{bottom:736.590000px;}
.ycd{bottom:740.592000px;}
.y36{bottom:744.900000px;}
.y2b{bottom:744.915000px;}
.y123{bottom:749.221500px;}
.y14a{bottom:753.511500px;}
.y155{bottom:753.528000px;}
.ycc{bottom:757.834500px;}
.y35{bottom:762.142500px;}
.y2a{bottom:762.157500px;}
.y122{bottom:766.464000px;}
.y2{bottom:769.590000px;}
.y154{bottom:770.770500px;}
.y34{bottom:779.385000px;}
.y29{bottom:779.400000px;}
.y26{bottom:786.105000px;}
.y28{bottom:796.642500px;}
.y1{bottom:802.590000px;}
.y25{bottom:810.105000px;}
.y27{bottom:813.885000px;}
.y24{bottom:861.105000px;}
.y4{bottom:924.000000px;}
.h5{height:41.568000px;}
.h3{height:47.085938px;}
.h4{height:56.166000px;}
.h7{height:57.156000px;}
.h2{height:67.200000px;}
.h6{height:71.484000px;}
.h1{height:81.696000px;}
.h0{height:892.500000px;}
.w0{width:636.000000px;}
.x0{left:0.000000px;}
.x4{left:4.500000px;}
.x5{left:74.700000px;}
.x8{left:75.915000px;}
.x6{left:97.182000px;}
.x9{left:98.388000px;}
.x3{left:148.170000px;}
.x1{left:159.480000px;}
.x2{left:300.480000px;}
.x7{left:430.275000px;}
.xa{left:461.470500px;}
@media print{
.v1{vertical-align:-1.040000pt;}
.v0{vertical-align:0.000000pt;}
.ls2b{letter-spacing:-2.288000pt;}
.ls29{letter-spacing:-2.170667pt;}
.ls28{letter-spacing:-2.112000pt;}
.ls2c{letter-spacing:-1.584000pt;}
.ls2a{letter-spacing:-1.525333pt;}
.ls3b{letter-spacing:-1.466667pt;}
.ls3d{letter-spacing:-1.408000pt;}
.ls42{letter-spacing:-1.349333pt;}
.ls2d{letter-spacing:-1.290667pt;}
.ls45{letter-spacing:-1.232000pt;}
.ls40{letter-spacing:-1.173333pt;}
.ls31{letter-spacing:-1.114667pt;}
.ls27{letter-spacing:-1.056000pt;}
.ls22{letter-spacing:-0.997333pt;}
.ls23{letter-spacing:-0.938667pt;}
.lsf{letter-spacing:-0.880000pt;}
.ls20{letter-spacing:-0.821333pt;}
.ls21{letter-spacing:-0.762667pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls1{letter-spacing:-0.682667pt;}
.ls1f{letter-spacing:-0.645333pt;}
.ls1e{letter-spacing:-0.586667pt;}
.lsb{letter-spacing:-0.528000pt;}
.ls12{letter-spacing:-0.469333pt;}
.ls41{letter-spacing:-0.426667pt;}
.ls17{letter-spacing:-0.410667pt;}
.ls18{letter-spacing:-0.352000pt;}
.ls24{letter-spacing:-0.298667pt;}
.lsa{letter-spacing:-0.293333pt;}
.lsd{letter-spacing:-0.234667pt;}
.ls1a{letter-spacing:-0.176000pt;}
.ls19{letter-spacing:-0.132000pt;}
.ls10{letter-spacing:-0.117333pt;}
.lse{letter-spacing:-0.058667pt;}
.ls13{letter-spacing:-0.042667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.042667pt;}
.ls15{letter-spacing:0.058667pt;}
.ls6{letter-spacing:0.117333pt;}
.ls43{letter-spacing:0.128000pt;}
.ls3c{letter-spacing:0.170667pt;}
.ls3{letter-spacing:0.176000pt;}
.ls5{letter-spacing:0.234667pt;}
.ls1c{letter-spacing:0.293333pt;}
.ls32{letter-spacing:0.341333pt;}
.ls8{letter-spacing:0.352000pt;}
.ls14{letter-spacing:0.410667pt;}
.ls11{letter-spacing:0.440000pt;}
.ls7{letter-spacing:0.469333pt;}
.ls9{letter-spacing:0.484000pt;}
.ls33{letter-spacing:0.528000pt;}
.ls1b{letter-spacing:0.586667pt;}
.ls16{letter-spacing:0.645333pt;}
.ls4{letter-spacing:0.704000pt;}
.ls2{letter-spacing:0.762667pt;}
.ls44{letter-spacing:0.821333pt;}
.ls38{letter-spacing:0.880000pt;}
.ls3a{letter-spacing:0.938667pt;}
.ls30{letter-spacing:0.997333pt;}
.ls1d{letter-spacing:1.056000pt;}
.ls46{letter-spacing:1.114667pt;}
.ls2e{letter-spacing:1.173333pt;}
.ls37{letter-spacing:1.232000pt;}
.ls39{letter-spacing:1.290667pt;}
.ls35{letter-spacing:1.349333pt;}
.ls2f{letter-spacing:1.466667pt;}
.ls36{letter-spacing:1.701333pt;}
.ls34{letter-spacing:1.994667pt;}
.ls3f{letter-spacing:14.138667pt;}
.ls25{letter-spacing:14.490667pt;}
.ls26{letter-spacing:14.901333pt;}
.ws4a{word-spacing:-18.666667pt;}
.ws51{word-spacing:-16.250667pt;}
.ws66{word-spacing:-16.133333pt;}
.ws53{word-spacing:-16.016000pt;}
.ws62{word-spacing:-15.957333pt;}
.ws52{word-spacing:-15.898667pt;}
.ws6a{word-spacing:-15.781333pt;}
.ws59{word-spacing:-15.664000pt;}
.ws63{word-spacing:-15.605333pt;}
.ws5a{word-spacing:-15.546667pt;}
.ws6b{word-spacing:-15.429333pt;}
.ws5e{word-spacing:-15.370667pt;}
.ws4e{word-spacing:-15.312000pt;}
.ws28{word-spacing:-15.253333pt;}
.ws54{word-spacing:-15.194667pt;}
.wsd{word-spacing:-15.136000pt;}
.ws24{word-spacing:-15.077333pt;}
.ws64{word-spacing:-15.018667pt;}
.ws4c{word-spacing:-14.960000pt;}
.ws5{word-spacing:-14.901333pt;}
.ws58{word-spacing:-14.842667pt;}
.ws61{word-spacing:-14.784000pt;}
.ws25{word-spacing:-14.725333pt;}
.ws2{word-spacing:-14.666667pt;}
.ws3{word-spacing:-14.608000pt;}
.ws7{word-spacing:-14.549333pt;}
.ws2f{word-spacing:-14.490667pt;}
.ws5d{word-spacing:-14.432000pt;}
.ws30{word-spacing:-14.373333pt;}
.ws33{word-spacing:-14.314667pt;}
.ws34{word-spacing:-14.256000pt;}
.ws44{word-spacing:-14.197333pt;}
.ws57{word-spacing:-14.138667pt;}
.ws4f{word-spacing:-14.080000pt;}
.ws31{word-spacing:-14.021333pt;}
.ws3f{word-spacing:-13.962667pt;}
.ws41{word-spacing:-13.904000pt;}
.ws32{word-spacing:-13.845333pt;}
.ws4{word-spacing:-13.786667pt;}
.ws45{word-spacing:-13.728000pt;}
.ws43{word-spacing:-13.669333pt;}
.ws40{word-spacing:-13.141333pt;}
.ws42{word-spacing:-13.082667pt;}
.ws8{word-spacing:-11.484000pt;}
.ws9{word-spacing:-11.352000pt;}
.ws4b{word-spacing:-11.220000pt;}
.ws50{word-spacing:-11.008000pt;}
.ws26{word-spacing:-10.868000pt;}
.wse{word-spacing:-10.837333pt;}
.ws68{word-spacing:-10.794667pt;}
.ws5b{word-spacing:-10.709333pt;}
.ws5f{word-spacing:-10.666667pt;}
.ws36{word-spacing:-10.368000pt;}
.ws65{word-spacing:-10.240000pt;}
.ws1{word-spacing:-6.997333pt;}
.ws3e{word-spacing:-0.997333pt;}
.ws1d{word-spacing:-0.762667pt;}
.ws1f{word-spacing:-0.704000pt;}
.ws1e{word-spacing:-0.645333pt;}
.ws37{word-spacing:-0.586667pt;}
.ws1b{word-spacing:-0.528000pt;}
.ws3b{word-spacing:-0.469333pt;}
.ws10{word-spacing:-0.410667pt;}
.ws2b{word-spacing:-0.352000pt;}
.ws15{word-spacing:-0.293333pt;}
.ws39{word-spacing:-0.234667pt;}
.ws14{word-spacing:-0.176000pt;}
.ws46{word-spacing:-0.117333pt;}
.ws16{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws56{word-spacing:0.058667pt;}
.ws21{word-spacing:0.117333pt;}
.ws49{word-spacing:0.176000pt;}
.ws1c{word-spacing:0.234667pt;}
.ws13{word-spacing:0.293333pt;}
.ws6{word-spacing:0.352000pt;}
.ws3c{word-spacing:0.410667pt;}
.ws47{word-spacing:0.469333pt;}
.ws2a{word-spacing:0.528000pt;}
.ws38{word-spacing:0.586667pt;}
.wsf{word-spacing:0.645333pt;}
.ws11{word-spacing:0.704000pt;}
.ws12{word-spacing:0.762667pt;}
.ws2e{word-spacing:0.821333pt;}
.ws3a{word-spacing:0.880000pt;}
.ws1a{word-spacing:0.938667pt;}
.ws23{word-spacing:0.997333pt;}
.ws3d{word-spacing:1.056000pt;}
.ws20{word-spacing:1.114667pt;}
.ws17{word-spacing:1.173333pt;}
.ws22{word-spacing:1.232000pt;}
.ws18{word-spacing:1.290667pt;}
.ws19{word-spacing:1.349333pt;}
.ws2c{word-spacing:1.408000pt;}
.ws2d{word-spacing:1.466667pt;}
.ws67{word-spacing:1.525333pt;}
.ws5c{word-spacing:1.701333pt;}
.ws55{word-spacing:2.112000pt;}
.ws60{word-spacing:3.050667pt;}
.ws27{word-spacing:3.080000pt;}
.ws35{word-spacing:3.381333pt;}
.wsa{word-spacing:4.576000pt;}
.wsc{word-spacing:4.620000pt;}
.wsb{word-spacing:4.752000pt;}
.ws4d{word-spacing:5.236000pt;}
.ws69{word-spacing:6.805333pt;}
.ws48{word-spacing:7.392000pt;}
.ws29{word-spacing:31.914667pt;}
._9{margin-left:-7.685333pt;}
._a{margin-left:-6.138667pt;}
._4{margin-left:-4.462667pt;}
._1{margin-left:-3.072000pt;}
._2{margin-left:-1.642667pt;}
._0{width:0.938667pt;}
._6{width:1.877333pt;}
._3{width:3.402667pt;}
._b{width:12.496000pt;}
._c{width:15.136000pt;}
._8{width:16.896000pt;}
._5{width:42.624000pt;}
._7{width:383.872000pt;}
.fs2{font-size:42.666667pt;}
.fs4{font-size:44.000000pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:48.806667pt;}
.yeb{bottom:49.021333pt;}
.ya6{bottom:49.032000pt;}
.y149{bottom:49.036000pt;}
.yc2{bottom:49.050667pt;}
.y80{bottom:49.065333pt;}
.y23{bottom:49.313333pt;}
.y5d{bottom:64.133333pt;}
.yea{bottom:64.348000pt;}
.ya5{bottom:64.358667pt;}
.y148{bottom:64.362667pt;}
.yc1{bottom:64.377333pt;}
.y153{bottom:64.392000pt;}
.y22{bottom:64.813333pt;}
.y5c{bottom:79.460000pt;}
.ye9{bottom:79.674667pt;}
.ya4{bottom:79.685333pt;}
.y147{bottom:79.689333pt;}
.yc0{bottom:79.704000pt;}
.y152{bottom:79.718667pt;}
.y7f{bottom:79.733333pt;}
.y21{bottom:80.140000pt;}
.yf4{bottom:87.374667pt;}
.ye8{bottom:95.001333pt;}
.ya3{bottom:95.012000pt;}
.y146{bottom:95.016000pt;}
.ybf{bottom:95.030667pt;}
.y151{bottom:95.045333pt;}
.y5b{bottom:95.046667pt;}
.y7e{bottom:95.060000pt;}
.y20{bottom:95.466667pt;}
.yf3{bottom:102.701333pt;}
.ye7{bottom:110.328000pt;}
.ya2{bottom:110.338667pt;}
.y145{bottom:110.342667pt;}
.ybe{bottom:110.357333pt;}
.y5a{bottom:110.373333pt;}
.y7d{bottom:110.386667pt;}
.y1f{bottom:110.793333pt;}
.yf7{bottom:117.998667pt;}
.yf2{bottom:118.028000pt;}
.ye6{bottom:125.654667pt;}
.ya1{bottom:125.665333pt;}
.y144{bottom:125.669333pt;}
.ybd{bottom:125.684000pt;}
.y59{bottom:125.700000pt;}
.y7c{bottom:125.713333pt;}
.y1e{bottom:126.120000pt;}
.yf6{bottom:133.325333pt;}
.yf1{bottom:133.354667pt;}
.ye5{bottom:140.981333pt;}
.ya0{bottom:140.992000pt;}
.y143{bottom:140.996000pt;}
.ybc{bottom:141.010667pt;}
.y58{bottom:141.026667pt;}
.y7b{bottom:141.040000pt;}
.y1d{bottom:141.446667pt;}
.yf5{bottom:148.652000pt;}
.yf0{bottom:148.681333pt;}
.ye4{bottom:156.308000pt;}
.y9f{bottom:156.318667pt;}
.y142{bottom:156.322667pt;}
.ybb{bottom:156.337333pt;}
.y57{bottom:156.353333pt;}
.y7a{bottom:156.366667pt;}
.y1c{bottom:156.773333pt;}
.y150{bottom:163.978667pt;}
.yef{bottom:164.008000pt;}
.ye3{bottom:171.634667pt;}
.y9e{bottom:171.645333pt;}
.y141{bottom:171.649333pt;}
.yba{bottom:171.664000pt;}
.y56{bottom:171.680000pt;}
.y79{bottom:171.693333pt;}
.y1b{bottom:172.100000pt;}
.y14f{bottom:179.305333pt;}
.y121{bottom:179.320000pt;}
.yee{bottom:179.334667pt;}
.ye2{bottom:186.961333pt;}
.y9d{bottom:186.972000pt;}
.y140{bottom:186.976000pt;}
.yb9{bottom:186.990667pt;}
.y55{bottom:187.006667pt;}
.y78{bottom:187.020000pt;}
.y1a{bottom:187.426667pt;}
.y14e{bottom:194.632000pt;}
.y120{bottom:194.646667pt;}
.yed{bottom:194.661333pt;}
.ye1{bottom:202.288000pt;}
.y9c{bottom:202.298667pt;}
.y13f{bottom:202.302667pt;}
.yb8{bottom:202.317333pt;}
.y54{bottom:202.333333pt;}
.y77{bottom:202.346667pt;}
.y19{bottom:202.753333pt;}
.y11f{bottom:209.973333pt;}
.yec{bottom:209.988000pt;}
.ye0{bottom:217.614667pt;}
.y9b{bottom:217.625333pt;}
.y13e{bottom:217.629333pt;}
.yb7{bottom:217.644000pt;}
.y53{bottom:217.660000pt;}
.y76{bottom:217.673333pt;}
.y18{bottom:218.080000pt;}
.y11e{bottom:225.300000pt;}
.y172{bottom:225.329333pt;}
.y106{bottom:232.941333pt;}
.y9a{bottom:232.952000pt;}
.y13d{bottom:232.956000pt;}
.yb6{bottom:232.970667pt;}
.y52{bottom:232.986667pt;}
.y75{bottom:233.000000pt;}
.y17{bottom:233.406667pt;}
.y11d{bottom:240.626667pt;}
.yf9{bottom:240.641333pt;}
.y171{bottom:240.656000pt;}
.ydf{bottom:244.454667pt;}
.y105{bottom:248.268000pt;}
.y99{bottom:248.278667pt;}
.y13c{bottom:248.282667pt;}
.yb5{bottom:248.297333pt;}
.y51{bottom:248.313333pt;}
.y74{bottom:248.326667pt;}
.y16{bottom:248.733333pt;}
.y11c{bottom:255.953333pt;}
.yf8{bottom:255.968000pt;}
.y170{bottom:255.982667pt;}
.yde{bottom:259.781333pt;}
.y98{bottom:263.605333pt;}
.y13b{bottom:263.609333pt;}
.yb4{bottom:263.624000pt;}
.y50{bottom:263.640000pt;}
.y73{bottom:263.653333pt;}
.y15{bottom:264.060000pt;}
.y104{bottom:271.265333pt;}
.y11b{bottom:271.280000pt;}
.ycb{bottom:271.294667pt;}
.y16f{bottom:271.309333pt;}
.y97{bottom:278.932000pt;}
.y13a{bottom:278.936000pt;}
.yb3{bottom:278.950667pt;}
.y4f{bottom:278.966667pt;}
.y72{bottom:278.980000pt;}
.y14{bottom:279.386667pt;}
.y103{bottom:286.592000pt;}
.y11a{bottom:286.606667pt;}
.yca{bottom:286.621333pt;}
.y16e{bottom:286.636000pt;}
.y96{bottom:294.258667pt;}
.y139{bottom:294.262667pt;}
.yb2{bottom:294.277333pt;}
.y4e{bottom:294.293333pt;}
.y71{bottom:294.306667pt;}
.y13{bottom:294.713333pt;}
.y102{bottom:301.918667pt;}
.y119{bottom:301.933333pt;}
.yc9{bottom:301.948000pt;}
.y16d{bottom:301.962667pt;}
.y95{bottom:309.585333pt;}
.yb1{bottom:309.604000pt;}
.y4d{bottom:309.620000pt;}
.y70{bottom:309.633333pt;}
.y12{bottom:310.040000pt;}
.y101{bottom:317.245333pt;}
.y118{bottom:317.260000pt;}
.yc8{bottom:317.274667pt;}
.y16c{bottom:317.289333pt;}
.y138{bottom:321.102667pt;}
.y94{bottom:324.912000pt;}
.yb0{bottom:324.930667pt;}
.y4c{bottom:324.946667pt;}
.y6f{bottom:324.960000pt;}
.y11{bottom:325.366667pt;}
.y100{bottom:332.572000pt;}
.y117{bottom:332.586667pt;}
.yc7{bottom:332.601333pt;}
.y16b{bottom:332.616000pt;}
.y137{bottom:336.429333pt;}
.y93{bottom:340.238667pt;}
.yaf{bottom:340.257333pt;}
.y4b{bottom:340.273333pt;}
.y6e{bottom:340.286667pt;}
.y10{bottom:340.693333pt;}
.y116{bottom:347.913333pt;}
.yc6{bottom:347.928000pt;}
.y16a{bottom:347.942667pt;}
.y136{bottom:351.756000pt;}
.y92{bottom:355.565333pt;}
.yae{bottom:355.584000pt;}
.y4a{bottom:355.600000pt;}
.y6d{bottom:355.613333pt;}
.yf{bottom:356.020000pt;}
.y115{bottom:363.240000pt;}
.yc5{bottom:363.254667pt;}
.y169{bottom:363.269333pt;}
.y135{bottom:367.082667pt;}
.y91{bottom:370.892000pt;}
.yad{bottom:370.910667pt;}
.y49{bottom:370.926667pt;}
.y6c{bottom:370.940000pt;}
.ye{bottom:371.346667pt;}
.y114{bottom:378.566667pt;}
.yc4{bottom:378.581333pt;}
.y168{bottom:378.596000pt;}
.y134{bottom:382.409333pt;}
.yac{bottom:386.237333pt;}
.y48{bottom:386.253333pt;}
.y6b{bottom:386.266667pt;}
.yd{bottom:386.673333pt;}
.y113{bottom:393.893333pt;}
.yc3{bottom:393.908000pt;}
.y167{bottom:393.922667pt;}
.y133{bottom:397.736000pt;}
.y90{bottom:401.560000pt;}
.ydd{bottom:401.564000pt;}
.y47{bottom:401.580000pt;}
.y6a{bottom:401.593333pt;}
.yc{bottom:402.000000pt;}
.y112{bottom:409.220000pt;}
.yab{bottom:409.234667pt;}
.y166{bottom:409.249333pt;}
.y8f{bottom:416.886667pt;}
.ydc{bottom:416.890667pt;}
.y46{bottom:416.906667pt;}
.y69{bottom:416.920000pt;}
.yb{bottom:417.326667pt;}
.y111{bottom:424.546667pt;}
.yaa{bottom:424.561333pt;}
.y165{bottom:424.576000pt;}
.y8e{bottom:432.213333pt;}
.ydb{bottom:432.217333pt;}
.y45{bottom:432.233333pt;}
.y68{bottom:432.246667pt;}
.ya{bottom:432.653333pt;}
.y132{bottom:436.074667pt;}
.y110{bottom:439.873333pt;}
.ya9{bottom:439.888000pt;}
.y164{bottom:439.902667pt;}
.y8d{bottom:447.540000pt;}
.yda{bottom:447.544000pt;}
.y44{bottom:447.560000pt;}
.y67{bottom:447.573333pt;}
.y9{bottom:447.980000pt;}
.y131{bottom:451.401333pt;}
.y10f{bottom:455.200000pt;}
.ya8{bottom:455.214667pt;}
.y163{bottom:455.229333pt;}
.y8c{bottom:462.866667pt;}
.yd9{bottom:462.870667pt;}
.y43{bottom:462.886667pt;}
.y66{bottom:462.900000pt;}
.y8{bottom:463.326667pt;}
.y130{bottom:466.728000pt;}
.y10e{bottom:470.526667pt;}
.ya7{bottom:470.541333pt;}
.y162{bottom:470.556000pt;}
.y8b{bottom:478.193333pt;}
.yd8{bottom:478.197333pt;}
.y42{bottom:478.213333pt;}
.y65{bottom:478.226667pt;}
.y7{bottom:478.653333pt;}
.y12f{bottom:482.054667pt;}
.y10d{bottom:485.853333pt;}
.yff{bottom:485.868000pt;}
.y161{bottom:485.882667pt;}
.y8a{bottom:493.520000pt;}
.yd7{bottom:493.524000pt;}
.y41{bottom:493.540000pt;}
.y64{bottom:493.553333pt;}
.y6{bottom:493.980000pt;}
.y12e{bottom:497.381333pt;}
.y10c{bottom:501.180000pt;}
.yfe{bottom:501.194667pt;}
.y160{bottom:501.209333pt;}
.y89{bottom:508.846667pt;}
.yd6{bottom:508.850667pt;}
.y40{bottom:508.866667pt;}
.y63{bottom:508.880000pt;}
.y5{bottom:509.306667pt;}
.y12d{bottom:512.708000pt;}
.yfd{bottom:516.521333pt;}
.y15f{bottom:516.536000pt;}
.y88{bottom:524.173333pt;}
.yd5{bottom:524.177333pt;}
.y3f{bottom:524.193333pt;}
.y62{bottom:524.206667pt;}
.y12c{bottom:528.034667pt;}
.yfc{bottom:531.848000pt;}
.y15e{bottom:531.862667pt;}
.y33{bottom:539.473333pt;}
.y87{bottom:539.500000pt;}
.yd4{bottom:539.504000pt;}
.y3e{bottom:539.520000pt;}
.y61{bottom:539.533333pt;}
.y12b{bottom:543.361333pt;}
.yfb{bottom:547.174667pt;}
.y15d{bottom:547.189333pt;}
.y32{bottom:554.800000pt;}
.y86{bottom:554.826667pt;}
.y14d{bottom:554.830667pt;}
.y3d{bottom:554.846667pt;}
.y60{bottom:554.860000pt;}
.y12a{bottom:558.688000pt;}
.yfa{bottom:562.501333pt;}
.y15c{bottom:562.516000pt;}
.yd3{bottom:566.344000pt;}
.y31{bottom:570.126667pt;}
.y85{bottom:570.153333pt;}
.y14c{bottom:570.157333pt;}
.y3c{bottom:570.173333pt;}
.y5f{bottom:570.186667pt;}
.y129{bottom:574.014667pt;}
.y10b{bottom:577.828000pt;}
.y15b{bottom:577.842667pt;}
.yd2{bottom:581.670667pt;}
.y84{bottom:585.480000pt;}
.y3b{bottom:585.500000pt;}
.y30{bottom:585.513333pt;}
.y128{bottom:589.341333pt;}
.y10a{bottom:593.154667pt;}
.y15a{bottom:593.169333pt;}
.yd1{bottom:596.997333pt;}
.y83{bottom:600.806667pt;}
.y3a{bottom:600.826667pt;}
.y2f{bottom:600.840000pt;}
.y127{bottom:604.668000pt;}
.y109{bottom:608.481333pt;}
.y159{bottom:608.496000pt;}
.yd0{bottom:612.324000pt;}
.y82{bottom:616.133333pt;}
.y39{bottom:616.153333pt;}
.y2e{bottom:616.166667pt;}
.y126{bottom:619.994667pt;}
.y108{bottom:623.808000pt;}
.y158{bottom:623.822667pt;}
.ycf{bottom:627.650667pt;}
.y81{bottom:631.460000pt;}
.y38{bottom:631.480000pt;}
.y2d{bottom:631.493333pt;}
.y125{bottom:635.321333pt;}
.y107{bottom:639.134667pt;}
.y157{bottom:639.149333pt;}
.yce{bottom:642.977333pt;}
.y37{bottom:646.806667pt;}
.y2c{bottom:646.820000pt;}
.y124{bottom:650.648000pt;}
.y14b{bottom:654.461333pt;}
.y156{bottom:654.476000pt;}
.y3{bottom:654.746667pt;}
.ycd{bottom:658.304000pt;}
.y36{bottom:662.133333pt;}
.y2b{bottom:662.146667pt;}
.y123{bottom:665.974667pt;}
.y14a{bottom:669.788000pt;}
.y155{bottom:669.802667pt;}
.ycc{bottom:673.630667pt;}
.y35{bottom:677.460000pt;}
.y2a{bottom:677.473333pt;}
.y122{bottom:681.301333pt;}
.y2{bottom:684.080000pt;}
.y154{bottom:685.129333pt;}
.y34{bottom:692.786667pt;}
.y29{bottom:692.800000pt;}
.y26{bottom:698.760000pt;}
.y28{bottom:708.126667pt;}
.y1{bottom:713.413333pt;}
.y25{bottom:720.093333pt;}
.y27{bottom:723.453333pt;}
.y24{bottom:765.426667pt;}
.y4{bottom:821.333333pt;}
.h5{height:36.949333pt;}
.h3{height:41.854167pt;}
.h4{height:49.925333pt;}
.h7{height:50.805333pt;}
.h2{height:59.733333pt;}
.h6{height:63.541333pt;}
.h1{height:72.618667pt;}
.h0{height:793.333333pt;}
.w0{width:565.333333pt;}
.x0{left:0.000000pt;}
.x4{left:4.000000pt;}
.x5{left:66.400000pt;}
.x8{left:67.480000pt;}
.x6{left:86.384000pt;}
.x9{left:87.456000pt;}
.x3{left:131.706667pt;}
.x1{left:141.760000pt;}
.x2{left:267.093333pt;}
.x7{left:382.466667pt;}
.xa{left:410.196000pt;}
}




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