
    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_1e1a6311595ccc1d1d3235ce.woff')format("woff");}.ff1{font-family:ff1;line-height:0.922852;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_20fb354b48deaa6b9316bfc3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_8ea35252ee8eb8e18ac55ee5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.016602;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_5ba4f624503197c490e010d8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.090332;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_ed4d1cffb31b9855fd95e9ad.woff')format("woff");}.ff5{font-family:ff5;line-height:0.683594;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_415325d421f08bbecad9fced.woff')format("woff");}.ff6{font-family:ff6;line-height:0.678711;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,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);}
.v3{vertical-align:-14.999400px;}
.v5{vertical-align:-12.600000px;}
.v2{vertical-align:-2.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v4{vertical-align:19.980000px;}
.v6{vertical-align:26.639400px;}
.ls50{letter-spacing:-6.534000px;}
.ls38{letter-spacing:-2.808000px;}
.ls37{letter-spacing:-2.736000px;}
.ls43{letter-spacing:-2.574000px;}
.ls52{letter-spacing:-1.254000px;}
.ls3e{letter-spacing:-1.008000px;}
.ls3d{letter-spacing:-0.936000px;}
.ls3f{letter-spacing:-0.864000px;}
.ls5d{letter-spacing:-0.858000px;}
.ls7{letter-spacing:-0.792000px;}
.ls5f{letter-spacing:-0.726000px;}
.ls8{letter-spacing:-0.720000px;}
.ls60{letter-spacing:-0.660000px;}
.ls3c{letter-spacing:-0.648000px;}
.ls36{letter-spacing:-0.576000px;}
.ls5c{letter-spacing:-0.528000px;}
.ls35{letter-spacing:-0.504000px;}
.ls5b{letter-spacing:-0.462000px;}
.ls68{letter-spacing:-0.396000px;}
.ls15{letter-spacing:-0.360000px;}
.ls61{letter-spacing:-0.330000px;}
.ls34{letter-spacing:-0.288000px;}
.ls44{letter-spacing:-0.264000px;}
.ls42{letter-spacing:-0.216000px;}
.ls23{letter-spacing:-0.144000px;}
.ls5e{letter-spacing:-0.132000px;}
.ls24{letter-spacing:-0.086400px;}
.ls40{letter-spacing:-0.072000px;}
.ls51{letter-spacing:-0.066000px;}
.ls6{letter-spacing:0.000000px;}
.ls2a{letter-spacing:0.000600px;}
.lsd{letter-spacing:0.011400px;}
.lsc{letter-spacing:0.012000px;}
.ls28{letter-spacing:0.018000px;}
.ls1e{letter-spacing:0.036600px;}
.ls27{letter-spacing:0.054000px;}
.ls45{letter-spacing:0.061800px;}
.ls26{letter-spacing:0.063000px;}
.ls46{letter-spacing:0.066000px;}
.ls9{letter-spacing:0.072000px;}
.ls4f{letter-spacing:0.132000px;}
.ls31{letter-spacing:0.144000px;}
.ls4e{letter-spacing:0.198000px;}
.ls21{letter-spacing:0.216000px;}
.ls22{letter-spacing:0.252000px;}
.ls53{letter-spacing:0.264000px;}
.lse{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.330000px;}
.lsa{letter-spacing:0.360000px;}
.ls4b{letter-spacing:0.396000px;}
.ls48{letter-spacing:0.462000px;}
.ls1a{letter-spacing:0.504000px;}
.ls4a{letter-spacing:0.528000px;}
.ls18{letter-spacing:0.576000px;}
.ls3a{letter-spacing:0.648000px;}
.ls2e{letter-spacing:0.667200px;}
.ls17{letter-spacing:0.720000px;}
.ls65{letter-spacing:0.726000px;}
.ls55{letter-spacing:0.792000px;}
.ls19{letter-spacing:0.864000px;}
.ls64{letter-spacing:0.924000px;}
.ls25{letter-spacing:0.936000px;}
.ls58{letter-spacing:0.990000px;}
.ls59{letter-spacing:1.056000px;}
.lsb{letter-spacing:1.080000px;}
.ls16{letter-spacing:1.224000px;}
.ls5a{letter-spacing:1.320000px;}
.ls29{letter-spacing:1.386000px;}
.ls57{letter-spacing:1.584000px;}
.ls63{letter-spacing:1.848000px;}
.ls32{letter-spacing:2.448000px;}
.ls12{letter-spacing:2.592000px;}
.ls1c{letter-spacing:2.807400px;}
.ls39{letter-spacing:2.880000px;}
.ls33{letter-spacing:2.952000px;}
.ls2f{letter-spacing:3.744000px;}
.ls2d{letter-spacing:4.163400px;}
.ls0{letter-spacing:4.200000px;}
.ls66{letter-spacing:4.380000px;}
.ls13{letter-spacing:4.392000px;}
.ls3{letter-spacing:4.599000px;}
.ls11{letter-spacing:4.968000px;}
.ls10{letter-spacing:5.040000px;}
.ls14{letter-spacing:5.400000px;}
.ls1d{letter-spacing:5.715600px;}
.ls41{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls2c{letter-spacing:6.741000px;}
.ls3b{letter-spacing:6.840000px;}
.ls5{letter-spacing:7.200000px;}
.ls1b{letter-spacing:7.350600px;}
.ls62{letter-spacing:8.184000px;}
.ls2b{letter-spacing:8.666400px;}
.ls56{letter-spacing:10.098000px;}
.ls2{letter-spacing:10.200000px;}
.lsf{letter-spacing:10.440000px;}
.ls49{letter-spacing:10.956000px;}
.ls4d{letter-spacing:11.286000px;}
.ls4c{letter-spacing:11.352000px;}
.ls47{letter-spacing:11.418000px;}
.ls1f{letter-spacing:11.474400px;}
.ls54{letter-spacing:11.748000px;}
.ls20{letter-spacing:11.763600px;}
.ls30{letter-spacing:14.472000px;}
.ls67{letter-spacing:19.800000px;}
.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;}
}
.ws1{word-spacing:-38.862000px;}
.ws24{word-spacing:-30.294000px;}
.ws1f{word-spacing:-29.964000px;}
.ws22{word-spacing:-29.898000px;}
.ws23{word-spacing:-29.832000px;}
.ws20{word-spacing:-29.502000px;}
.ws26{word-spacing:-28.644000px;}
.ws1a{word-spacing:-27.432000px;}
.ws1c{word-spacing:-22.860000px;}
.wsd{word-spacing:-20.952000px;}
.wsc{word-spacing:-20.592000px;}
.ws5{word-spacing:-20.232000px;}
.wsa{word-spacing:-20.088000px;}
.ws18{word-spacing:-19.872000px;}
.ws16{word-spacing:-18.864000px;}
.ws1e{word-spacing:-18.678000px;}
.ws1d{word-spacing:-18.546000px;}
.ws19{word-spacing:-18.360000px;}
.ws7{word-spacing:-18.072000px;}
.ws15{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.784000px;}
.wse{word-spacing:-17.703000px;}
.ws17{word-spacing:-17.424000px;}
.ws6{word-spacing:-17.064000px;}
.ws0{word-spacing:-16.860000px;}
.ws29{word-spacing:-16.632000px;}
.ws8{word-spacing:-16.302000px;}
.ws21{word-spacing:-16.236000px;}
.ws28{word-spacing:-15.972000px;}
.ws25{word-spacing:-15.840000px;}
.ws27{word-spacing:-15.642000px;}
.ws14{word-spacing:-15.561000px;}
.ws12{word-spacing:-15.390000px;}
.ws11{word-spacing:-15.228000px;}
.wsf{word-spacing:-15.174000px;}
.ws4{word-spacing:-13.488000px;}
.ws9{word-spacing:-12.139200px;}
.wsb{word-spacing:-12.052800px;}
.ws2a{word-spacing:-10.731600px;}
.ws13{word-spacing:-10.621800px;}
.ws10{word-spacing:-9.104400px;}
.ws1b{word-spacing:-0.072000px;}
.ws3{word-spacing:0.000000px;}
._13{margin-left:-19.734000px;}
._14{margin-left:-15.108000px;}
._18{margin-left:-13.110000px;}
._16{margin-left:-11.616000px;}
._4{margin-left:-10.200000px;}
._3{margin-left:-8.976000px;}
._6{margin-left:-7.650000px;}
._7{margin-left:-6.630000px;}
._1{margin-left:-5.334000px;}
._0{margin-left:-3.906000px;}
._a{margin-left:-2.244000px;}
._e{margin-left:-1.080000px;}
._b{width:1.368000px;}
._9{width:2.520000px;}
._f{width:3.600000px;}
._2{width:4.686000px;}
._5{width:6.222000px;}
._10{width:7.488000px;}
._8{width:9.306000px;}
._d{width:10.452000px;}
._c{width:11.520000px;}
._15{width:13.464000px;}
._12{width:14.466000px;}
._17{width:15.892200px;}
._19{width:16.962000px;}
._11{width:38.952000px;}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:32.400000px;}
.fsc{font-size:37.800000px;}
.fsd{font-size:39.600000px;}
.fs2{font-size:42.000000px;}
.fs7{font-size:43.200000px;}
.fs5{font-size:43.800000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs9{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fsa{font-size:81.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.343400px;}
.ydb{bottom:140.504400px;}
.y16c{bottom:142.814400px;}
.yfc{bottom:143.079000px;}
.y43{bottom:143.524350px;}
.y7e{bottom:143.669250px;}
.y122{bottom:144.047400px;}
.ya3{bottom:144.054600px;}
.yb3{bottom:144.380250px;}
.y147{bottom:144.515850px;}
.y1d{bottom:144.878550px;}
.y5b{bottom:146.546550px;}
.y16b{bottom:160.214400px;}
.yfb{bottom:161.971500px;}
.y7d{bottom:162.119100px;}
.yda{bottom:162.554400px;}
.y42{bottom:164.368350px;}
.y121{bottom:165.051900px;}
.ya2{bottom:165.960600px;}
.yb2{bottom:166.286250px;}
.y1c{bottom:166.334550px;}
.y5a{bottom:167.996550px;}
.y16a{bottom:177.614400px;}
.y146{bottom:177.899850px;}
.y7c{bottom:180.562350px;}
.yfa{bottom:180.864000px;}
.yd9{bottom:184.010400px;}
.y41{bottom:185.236500px;}
.y120{bottom:186.056400px;}
.y1b{bottom:187.790550px;}
.ya1{bottom:187.866600px;}
.yb1{bottom:188.192250px;}
.y59{bottom:189.452550px;}
.y169{bottom:195.014400px;}
.y145{bottom:198.755850px;}
.y7b{bottom:199.019100px;}
.yf9{bottom:199.750500px;}
.yd8{bottom:205.016400px;}
.y40{bottom:206.080500px;}
.y11f{bottom:207.060900px;}
.y1a{bottom:209.246550px;}
.ya0{bottom:209.772600px;}
.yb0{bottom:210.098250px;}
.y7a{bottom:217.469100px;}
.yf8{bottom:218.643000px;}
.y58{bottom:219.400500px;}
.y144{bottom:219.611850px;}
.yd7{bottom:226.022400px;}
.y3f{bottom:226.924500px;}
.y11e{bottom:228.065400px;}
.y19{bottom:230.702550px;}
.y9f{bottom:231.678600px;}
.yaf{bottom:232.004250px;}
.y168{bottom:233.408400px;}
.y79{bottom:235.919250px;}
.yf7{bottom:237.997500px;}
.y143{bottom:240.467850px;}
.y57{bottom:240.856500px;}
.yd6{bottom:247.028400px;}
.y3e{bottom:247.768500px;}
.y11d{bottom:249.069900px;}
.y18{bottom:252.158550px;}
.y167{bottom:252.614400px;}
.y9e{bottom:253.584600px;}
.yae{bottom:253.910250px;}
.y78{bottom:254.362500px;}
.yf6{bottom:257.352000px;}
.y142{bottom:261.323850px;}
.yd5{bottom:268.034400px;}
.y3d{bottom:268.642500px;}
.y11c{bottom:270.074400px;}
.y17{bottom:273.614550px;}
.y9d{bottom:275.490600px;}
.yad{bottom:275.816250px;}
.yf5{bottom:276.697500px;}
.y141{bottom:282.179850px;}
.yd4{bottom:289.040400px;}
.y3c{bottom:289.486500px;}
.y77{bottom:290.764350px;}
.y11b{bottom:291.078900px;}
.y166{bottom:292.697400px;}
.y16{bottom:295.070550px;}
.yf4{bottom:296.052000px;}
.y9c{bottom:297.396600px;}
.yac{bottom:297.722250px;}
.y140{bottom:303.035850px;}
.yd3{bottom:310.046400px;}
.y3b{bottom:310.330500px;}
.y165{bottom:311.903400px;}
.y11a{bottom:312.083400px;}
.y76{bottom:313.120350px;}
.yf3{bottom:315.406500px;}
.y15{bottom:316.526550px;}
.y9b{bottom:319.302600px;}
.yab{bottom:319.628250px;}
.y13f{bottom:323.891850px;}
.y56{bottom:326.638500px;}
.yd2{bottom:331.052400px;}
.y164{bottom:331.109400px;}
.y3a{bottom:331.174500px;}
.y119{bottom:333.087900px;}
.y75{bottom:335.476350px;}
.y14{bottom:337.982550px;}
.y9a{bottom:341.208600px;}
.yaa{bottom:341.534250px;}
.yf2{bottom:343.260450px;}
.y13e{bottom:344.747850px;}
.y55{bottom:348.094500px;}
.y163{bottom:350.315400px;}
.y39{bottom:352.018500px;}
.yd1{bottom:352.058400px;}
.y118{bottom:354.092400px;}
.y74{bottom:357.832350px;}
.y13{bottom:359.438550px;}
.y99{bottom:363.114600px;}
.ya9{bottom:363.440250px;}
.y13d{bottom:365.603850px;}
.y162{bottom:369.521400px;}
.y54{bottom:369.550500px;}
.y38{bottom:373.012350px;}
.yd0{bottom:373.064400px;}
.y117{bottom:375.096900px;}
.y73{bottom:380.188350px;}
.y12{bottom:380.894550px;}
.y98{bottom:385.164750px;}
.ya8{bottom:385.346250px;}
.y13c{bottom:386.459850px;}
.y161{bottom:388.727400px;}
.yf1{bottom:390.464400px;}
.y53{bottom:391.006500px;}
.y37{bottom:393.856350px;}
.ycf{bottom:394.070400px;}
.y116{bottom:396.101400px;}
.y11{bottom:402.350550px;}
.y72{bottom:402.544350px;}
.y97{bottom:407.214750px;}
.ya7{bottom:407.252250px;}
.y13b{bottom:407.315850px;}
.y160{bottom:407.933400px;}
.yf0{bottom:411.614400px;}
.y36{bottom:414.700350px;}
.yce{bottom:415.076400px;}
.y115{bottom:417.105900px;}
.y71{bottom:424.900350px;}
.y15f{bottom:427.139400px;}
.y13a{bottom:428.171850px;}
.ya6{bottom:429.158250px;}
.y96{bottom:429.264750px;}
.y10{bottom:432.298500px;}
.yef{bottom:432.764400px;}
.y35{bottom:435.544350px;}
.ycd{bottom:436.082400px;}
.y114{bottom:438.110400px;}
.y52{bottom:442.408950px;}
.y15e{bottom:446.345400px;}
.y70{bottom:447.256350px;}
.y139{bottom:449.027850px;}
.ya5{bottom:451.064250px;}
.y95{bottom:451.314750px;}
.yf{bottom:453.754500px;}
.yee{bottom:453.914400px;}
.y34{bottom:456.388350px;}
.ycc{bottom:457.088400px;}
.y113{bottom:459.114900px;}
.y51{bottom:462.060450px;}
.y15d{bottom:465.551400px;}
.y6f{bottom:469.612350px;}
.y138{bottom:469.883850px;}
.ya4{bottom:472.970250px;}
.y94{bottom:473.364750px;}
.yed{bottom:475.064400px;}
.y33{bottom:477.232350px;}
.ycb{bottom:478.094400px;}
.y112{bottom:480.119400px;}
.y15c{bottom:484.757400px;}
.y137{bottom:490.739850px;}
.y6e{bottom:491.968350px;}
.y93{bottom:495.414750px;}
.yec{bottom:496.214400px;}
.y32{bottom:498.076350px;}
.yca{bottom:499.100400px;}
.y111{bottom:501.123900px;}
.y15b{bottom:503.963400px;}
.y136{bottom:511.595850px;}
.y6d{bottom:514.324350px;}
.yeb{bottom:517.364400px;}
.y92{bottom:517.464750px;}
.y31{bottom:518.920350px;}
.yc9{bottom:520.106400px;}
.y110{bottom:522.128400px;}
.y15a{bottom:523.169400px;}
.y135{bottom:532.451850px;}
.yb6{bottom:533.998800px;}
.y6c{bottom:536.680350px;}
.yea{bottom:538.514400px;}
.y91{bottom:539.514750px;}
.ye{bottom:539.524500px;}
.yc8{bottom:541.112400px;}
.y159{bottom:542.523900px;}
.y10f{bottom:543.132900px;}
.y30{bottom:552.526350px;}
.y134{bottom:553.307850px;}
.yb5{bottom:553.798800px;}
.y6b{bottom:559.036350px;}
.ye9{bottom:559.664400px;}
.yd{bottom:560.980500px;}
.y90{bottom:561.564750px;}
.y158{bottom:561.878400px;}
.yc7{bottom:562.118400px;}
.y10e{bottom:564.137400px;}
.y2f{bottom:573.370350px;}
.yb4{bottom:573.598800px;}
.y133{bottom:574.163850px;}
.ye8{bottom:580.814400px;}
.y157{bottom:581.232900px;}
.yc{bottom:582.436500px;}
.yc6{bottom:583.124400px;}
.y8f{bottom:583.614750px;}
.y10d{bottom:585.141900px;}
.y6a{bottom:594.136350px;}
.y2e{bottom:594.214350px;}
.y132{bottom:595.019850px;}
.y156{bottom:600.587400px;}
.yb{bottom:603.892500px;}
.yc5{bottom:604.130400px;}
.y8e{bottom:605.664750px;}
.y10c{bottom:606.146400px;}
.ye7{bottom:610.468350px;}
.y2d{bottom:615.058350px;}
.y131{bottom:615.875850px;}
.y69{bottom:616.492350px;}
.y155{bottom:619.941900px;}
.yc4{bottom:625.136400px;}
.ya{bottom:625.348500px;}
.y10b{bottom:627.150900px;}
.y8d{bottom:627.714750px;}
.y2c{bottom:635.902350px;}
.y130{bottom:636.731850px;}
.y68{bottom:638.848350px;}
.y154{bottom:639.296400px;}
.y50{bottom:640.322400px;}
.yc3{bottom:646.142400px;}
.y9{bottom:646.804500px;}
.y10a{bottom:648.155400px;}
.y8c{bottom:649.764750px;}
.y2b{bottom:656.746350px;}
.y12f{bottom:657.587850px;}
.y153{bottom:658.650900px;}
.y67{bottom:661.204350px;}
.y4f{bottom:661.778400px;}
.yc2{bottom:667.148400px;}
.y109{bottom:669.159900px;}
.y8b{bottom:671.814750px;}
.y2a{bottom:677.590350px;}
.y152{bottom:678.005400px;}
.y12e{bottom:678.443850px;}
.y4e{bottom:683.234400px;}
.y66{bottom:683.560350px;}
.yc1{bottom:688.154400px;}
.y108{bottom:690.164400px;}
.y8a{bottom:693.864750px;}
.ye6{bottom:695.068350px;}
.y151{bottom:697.359900px;}
.y29{bottom:698.434350px;}
.y12d{bottom:699.299850px;}
.y4d{bottom:704.690400px;}
.y65{bottom:705.754350px;}
.yc0{bottom:709.160400px;}
.y107{bottom:711.168900px;}
.y89{bottom:715.914750px;}
.ye5{bottom:716.218350px;}
.y150{bottom:716.691900px;}
.y28{bottom:719.278350px;}
.y12c{bottom:720.155850px;}
.y4c{bottom:726.146400px;}
.y64{bottom:727.948350px;}
.ybf{bottom:730.166400px;}
.y106{bottom:732.173400px;}
.y8{bottom:733.054500px;}
.y14f{bottom:736.046400px;}
.ye4{bottom:737.368350px;}
.y88{bottom:737.964750px;}
.y27{bottom:740.122350px;}
.y12b{bottom:741.011850px;}
.y4b{bottom:747.602400px;}
.y63{bottom:750.142350px;}
.ybe{bottom:751.172400px;}
.y7{bottom:752.854500px;}
.y105{bottom:753.177900px;}
.y14e{bottom:755.400900px;}
.ye3{bottom:758.518350px;}
.y87{bottom:760.014750px;}
.y26{bottom:760.966350px;}
.y12a{bottom:761.867850px;}
.y4a{bottom:769.058400px;}
.ybd{bottom:772.178400px;}
.y62{bottom:772.336350px;}
.y104{bottom:774.182400px;}
.y14d{bottom:774.755400px;}
.ye2{bottom:779.668350px;}
.y25{bottom:781.810350px;}
.y129{bottom:782.723850px;}
.y49{bottom:790.490400px;}
.ybc{bottom:793.184400px;}
.y14c{bottom:794.109900px;}
.y6{bottom:794.254500px;}
.y61{bottom:794.530350px;}
.y103{bottom:795.186900px;}
.y86{bottom:800.071500px;}
.ye1{bottom:800.818350px;}
.y24{bottom:802.654350px;}
.y128{bottom:803.579850px;}
.y48{bottom:811.946400px;}
.y14b{bottom:813.464400px;}
.ybb{bottom:814.190400px;}
.y102{bottom:816.191400px;}
.y60{bottom:816.724350px;}
.y85{bottom:818.521350px;}
.ye0{bottom:821.968350px;}
.y23{bottom:823.498350px;}
.y127{bottom:824.435850px;}
.y5{bottom:824.854500px;}
.y47{bottom:833.402400px;}
.yba{bottom:835.196400px;}
.y84{bottom:836.971350px;}
.y101{bottom:837.195900px;}
.y5f{bottom:838.942350px;}
.ydf{bottom:843.118350px;}
.y22{bottom:844.342350px;}
.y126{bottom:845.291850px;}
.y46{bottom:854.858400px;}
.y14a{bottom:854.864400px;}
.y83{bottom:855.414600px;}
.y4{bottom:855.454500px;}
.yb9{bottom:856.202400px;}
.y100{bottom:858.200400px;}
.y5e{bottom:861.136350px;}
.yde{bottom:864.268350px;}
.y21{bottom:865.186350px;}
.y125{bottom:866.147850px;}
.y82{bottom:873.871500px;}
.y45{bottom:876.314400px;}
.yb8{bottom:877.208400px;}
.yff{bottom:879.204900px;}
.y5d{bottom:883.330350px;}
.y149{bottom:883.618350px;}
.ydd{bottom:885.418350px;}
.y20{bottom:886.030350px;}
.y124{bottom:887.003850px;}
.y81{bottom:892.321500px;}
.yb7{bottom:898.214400px;}
.yfe{bottom:900.209400px;}
.y5c{bottom:905.524350px;}
.y148{bottom:905.668350px;}
.y44{bottom:906.262350px;}
.ydc{bottom:906.568350px;}
.y1f{bottom:906.874350px;}
.y123{bottom:907.859850px;}
.y3{bottom:910.715850px;}
.y80{bottom:910.771350px;}
.y1e{bottom:927.718350px;}
.y2{bottom:928.715850px;}
.y7f{bottom:929.214600px;}
.yfd{bottom:929.713500px;}
.h3{height:35.663086px;}
.h7{height:37.191504px;}
.h9{height:40.757812px;}
.h2{height:41.396484px;}
.h13{height:48.399902px;}
.h5{height:50.947266px;}
.he{height:53.494629px;}
.hd{height:55.857654px;}
.hf{height:55.858854px;}
.hc{height:55.885254px;}
.h4{height:56.041992px;}
.h12{height:56.065992px;}
.h11{height:56.077992px;}
.h14{height:56.131992px;}
.h8{height:61.136719px;}
.hb{height:61.160719px;}
.ha{height:61.232719px;}
.h10{height:68.751809px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x8{left:76.555200px;}
.x1{left:97.795350px;}
.x4{left:119.035350px;}
.xa{left:127.559100px;}
.x5{left:140.293350px;}
.x2{left:143.170350px;}
.x9{left:148.818900px;}
.xb{left:150.670350px;}
.xf{left:172.704000px;}
.x3{left:219.226650px;}
.xc{left:287.163600px;}
.x6{left:294.663600px;}
.xe{left:518.943600px;}
.xd{left:572.164350px;}
.x7{left:579.664350px;}
@media print{
.v3{vertical-align:-13.332800pt;}
.v5{vertical-align:-11.200000pt;}
.v2{vertical-align:-2.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v4{vertical-align:17.760000pt;}
.v6{vertical-align:23.679467pt;}
.ls50{letter-spacing:-5.808000pt;}
.ls38{letter-spacing:-2.496000pt;}
.ls37{letter-spacing:-2.432000pt;}
.ls43{letter-spacing:-2.288000pt;}
.ls52{letter-spacing:-1.114667pt;}
.ls3e{letter-spacing:-0.896000pt;}
.ls3d{letter-spacing:-0.832000pt;}
.ls3f{letter-spacing:-0.768000pt;}
.ls5d{letter-spacing:-0.762667pt;}
.ls7{letter-spacing:-0.704000pt;}
.ls5f{letter-spacing:-0.645333pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls60{letter-spacing:-0.586667pt;}
.ls3c{letter-spacing:-0.576000pt;}
.ls36{letter-spacing:-0.512000pt;}
.ls5c{letter-spacing:-0.469333pt;}
.ls35{letter-spacing:-0.448000pt;}
.ls5b{letter-spacing:-0.410667pt;}
.ls68{letter-spacing:-0.352000pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls61{letter-spacing:-0.293333pt;}
.ls34{letter-spacing:-0.256000pt;}
.ls44{letter-spacing:-0.234667pt;}
.ls42{letter-spacing:-0.192000pt;}
.ls23{letter-spacing:-0.128000pt;}
.ls5e{letter-spacing:-0.117333pt;}
.ls24{letter-spacing:-0.076800pt;}
.ls40{letter-spacing:-0.064000pt;}
.ls51{letter-spacing:-0.058667pt;}
.ls6{letter-spacing:0.000000pt;}
.ls2a{letter-spacing:0.000533pt;}
.lsd{letter-spacing:0.010133pt;}
.lsc{letter-spacing:0.010667pt;}
.ls28{letter-spacing:0.016000pt;}
.ls1e{letter-spacing:0.032533pt;}
.ls27{letter-spacing:0.048000pt;}
.ls45{letter-spacing:0.054933pt;}
.ls26{letter-spacing:0.056000pt;}
.ls46{letter-spacing:0.058667pt;}
.ls9{letter-spacing:0.064000pt;}
.ls4f{letter-spacing:0.117333pt;}
.ls31{letter-spacing:0.128000pt;}
.ls4e{letter-spacing:0.176000pt;}
.ls21{letter-spacing:0.192000pt;}
.ls22{letter-spacing:0.224000pt;}
.ls53{letter-spacing:0.234667pt;}
.lse{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.293333pt;}
.lsa{letter-spacing:0.320000pt;}
.ls4b{letter-spacing:0.352000pt;}
.ls48{letter-spacing:0.410667pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls4a{letter-spacing:0.469333pt;}
.ls18{letter-spacing:0.512000pt;}
.ls3a{letter-spacing:0.576000pt;}
.ls2e{letter-spacing:0.593067pt;}
.ls17{letter-spacing:0.640000pt;}
.ls65{letter-spacing:0.645333pt;}
.ls55{letter-spacing:0.704000pt;}
.ls19{letter-spacing:0.768000pt;}
.ls64{letter-spacing:0.821333pt;}
.ls25{letter-spacing:0.832000pt;}
.ls58{letter-spacing:0.880000pt;}
.ls59{letter-spacing:0.938667pt;}
.lsb{letter-spacing:0.960000pt;}
.ls16{letter-spacing:1.088000pt;}
.ls5a{letter-spacing:1.173333pt;}
.ls29{letter-spacing:1.232000pt;}
.ls57{letter-spacing:1.408000pt;}
.ls63{letter-spacing:1.642667pt;}
.ls32{letter-spacing:2.176000pt;}
.ls12{letter-spacing:2.304000pt;}
.ls1c{letter-spacing:2.495467pt;}
.ls39{letter-spacing:2.560000pt;}
.ls33{letter-spacing:2.624000pt;}
.ls2f{letter-spacing:3.328000pt;}
.ls2d{letter-spacing:3.700800pt;}
.ls0{letter-spacing:3.733333pt;}
.ls66{letter-spacing:3.893333pt;}
.ls13{letter-spacing:3.904000pt;}
.ls3{letter-spacing:4.088000pt;}
.ls11{letter-spacing:4.416000pt;}
.ls10{letter-spacing:4.480000pt;}
.ls14{letter-spacing:4.800000pt;}
.ls1d{letter-spacing:5.080533pt;}
.ls41{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls2c{letter-spacing:5.992000pt;}
.ls3b{letter-spacing:6.080000pt;}
.ls5{letter-spacing:6.400000pt;}
.ls1b{letter-spacing:6.533867pt;}
.ls62{letter-spacing:7.274667pt;}
.ls2b{letter-spacing:7.703467pt;}
.ls56{letter-spacing:8.976000pt;}
.ls2{letter-spacing:9.066667pt;}
.lsf{letter-spacing:9.280000pt;}
.ls49{letter-spacing:9.738667pt;}
.ls4d{letter-spacing:10.032000pt;}
.ls4c{letter-spacing:10.090667pt;}
.ls47{letter-spacing:10.149333pt;}
.ls1f{letter-spacing:10.199467pt;}
.ls54{letter-spacing:10.442667pt;}
.ls20{letter-spacing:10.456533pt;}
.ls30{letter-spacing:12.864000pt;}
.ls67{letter-spacing:17.600000pt;}
.ws1{word-spacing:-34.544000pt;}
.ws24{word-spacing:-26.928000pt;}
.ws1f{word-spacing:-26.634667pt;}
.ws22{word-spacing:-26.576000pt;}
.ws23{word-spacing:-26.517333pt;}
.ws20{word-spacing:-26.224000pt;}
.ws26{word-spacing:-25.461333pt;}
.ws1a{word-spacing:-24.384000pt;}
.ws1c{word-spacing:-20.320000pt;}
.wsd{word-spacing:-18.624000pt;}
.wsc{word-spacing:-18.304000pt;}
.ws5{word-spacing:-17.984000pt;}
.wsa{word-spacing:-17.856000pt;}
.ws18{word-spacing:-17.664000pt;}
.ws16{word-spacing:-16.768000pt;}
.ws1e{word-spacing:-16.602667pt;}
.ws1d{word-spacing:-16.485333pt;}
.ws19{word-spacing:-16.320000pt;}
.ws7{word-spacing:-16.064000pt;}
.ws15{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.808000pt;}
.wse{word-spacing:-15.736000pt;}
.ws17{word-spacing:-15.488000pt;}
.ws6{word-spacing:-15.168000pt;}
.ws0{word-spacing:-14.986667pt;}
.ws29{word-spacing:-14.784000pt;}
.ws8{word-spacing:-14.490667pt;}
.ws21{word-spacing:-14.432000pt;}
.ws28{word-spacing:-14.197333pt;}
.ws25{word-spacing:-14.080000pt;}
.ws27{word-spacing:-13.904000pt;}
.ws14{word-spacing:-13.832000pt;}
.ws12{word-spacing:-13.680000pt;}
.ws11{word-spacing:-13.536000pt;}
.wsf{word-spacing:-13.488000pt;}
.ws4{word-spacing:-11.989333pt;}
.ws9{word-spacing:-10.790400pt;}
.wsb{word-spacing:-10.713600pt;}
.ws2a{word-spacing:-9.539200pt;}
.ws13{word-spacing:-9.441600pt;}
.ws10{word-spacing:-8.092800pt;}
.ws1b{word-spacing:-0.064000pt;}
.ws3{word-spacing:0.000000pt;}
._13{margin-left:-17.541333pt;}
._14{margin-left:-13.429333pt;}
._18{margin-left:-11.653333pt;}
._16{margin-left:-10.325333pt;}
._4{margin-left:-9.066667pt;}
._3{margin-left:-7.978667pt;}
._6{margin-left:-6.800000pt;}
._7{margin-left:-5.893333pt;}
._1{margin-left:-4.741333pt;}
._0{margin-left:-3.472000pt;}
._a{margin-left:-1.994667pt;}
._e{margin-left:-0.960000pt;}
._b{width:1.216000pt;}
._9{width:2.240000pt;}
._f{width:3.200000pt;}
._2{width:4.165333pt;}
._5{width:5.530667pt;}
._10{width:6.656000pt;}
._8{width:8.272000pt;}
._d{width:9.290667pt;}
._c{width:10.240000pt;}
._15{width:11.968000pt;}
._12{width:12.858667pt;}
._17{width:14.126400pt;}
._19{width:15.077333pt;}
._11{width:34.624000pt;}
.fsb{font-size:28.800000pt;}
.fsc{font-size:33.600000pt;}
.fsd{font-size:35.200000pt;}
.fs2{font-size:37.333333pt;}
.fs7{font-size:38.400000pt;}
.fs5{font-size:38.933333pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs9{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fsa{font-size:72.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.860800pt;}
.ydb{bottom:124.892800pt;}
.y16c{bottom:126.946133pt;}
.yfc{bottom:127.181333pt;}
.y43{bottom:127.577200pt;}
.y7e{bottom:127.706000pt;}
.y122{bottom:128.042133pt;}
.ya3{bottom:128.048533pt;}
.yb3{bottom:128.338000pt;}
.y147{bottom:128.458533pt;}
.y1d{bottom:128.780933pt;}
.y5b{bottom:130.263600pt;}
.y16b{bottom:142.412800pt;}
.yfb{bottom:143.974667pt;}
.y7d{bottom:144.105867pt;}
.yda{bottom:144.492800pt;}
.y42{bottom:146.105200pt;}
.y121{bottom:146.712800pt;}
.ya2{bottom:147.520533pt;}
.yb2{bottom:147.810000pt;}
.y1c{bottom:147.852933pt;}
.y5a{bottom:149.330267pt;}
.y16a{bottom:157.879467pt;}
.y146{bottom:158.133200pt;}
.y7c{bottom:160.499867pt;}
.yfa{bottom:160.768000pt;}
.yd9{bottom:163.564800pt;}
.y41{bottom:164.654667pt;}
.y120{bottom:165.383467pt;}
.y1b{bottom:166.924933pt;}
.ya1{bottom:166.992533pt;}
.yb1{bottom:167.282000pt;}
.y59{bottom:168.402267pt;}
.y169{bottom:173.346133pt;}
.y145{bottom:176.671867pt;}
.y7b{bottom:176.905867pt;}
.yf9{bottom:177.556000pt;}
.yd8{bottom:182.236800pt;}
.y40{bottom:183.182667pt;}
.y11f{bottom:184.054133pt;}
.y1a{bottom:185.996933pt;}
.ya0{bottom:186.464533pt;}
.yb0{bottom:186.754000pt;}
.y7a{bottom:193.305867pt;}
.yf8{bottom:194.349333pt;}
.y58{bottom:195.022667pt;}
.y144{bottom:195.210533pt;}
.yd7{bottom:200.908800pt;}
.y3f{bottom:201.710667pt;}
.y11e{bottom:202.724800pt;}
.y19{bottom:205.068933pt;}
.y9f{bottom:205.936533pt;}
.yaf{bottom:206.226000pt;}
.y168{bottom:207.474133pt;}
.y79{bottom:209.706000pt;}
.yf7{bottom:211.553333pt;}
.y143{bottom:213.749200pt;}
.y57{bottom:214.094667pt;}
.yd6{bottom:219.580800pt;}
.y3e{bottom:220.238667pt;}
.y11d{bottom:221.395467pt;}
.y18{bottom:224.140933pt;}
.y167{bottom:224.546133pt;}
.y9e{bottom:225.408533pt;}
.yae{bottom:225.698000pt;}
.y78{bottom:226.100000pt;}
.yf6{bottom:228.757333pt;}
.y142{bottom:232.287867pt;}
.yd5{bottom:238.252800pt;}
.y3d{bottom:238.793333pt;}
.y11c{bottom:240.066133pt;}
.y17{bottom:243.212933pt;}
.y9d{bottom:244.880533pt;}
.yad{bottom:245.170000pt;}
.yf5{bottom:245.953333pt;}
.y141{bottom:250.826533pt;}
.yd4{bottom:256.924800pt;}
.y3c{bottom:257.321333pt;}
.y77{bottom:258.457200pt;}
.y11b{bottom:258.736800pt;}
.y166{bottom:260.175467pt;}
.y16{bottom:262.284933pt;}
.yf4{bottom:263.157333pt;}
.y9c{bottom:264.352533pt;}
.yac{bottom:264.642000pt;}
.y140{bottom:269.365200pt;}
.yd3{bottom:275.596800pt;}
.y3b{bottom:275.849333pt;}
.y165{bottom:277.247467pt;}
.y11a{bottom:277.407467pt;}
.y76{bottom:278.329200pt;}
.yf3{bottom:280.361333pt;}
.y15{bottom:281.356933pt;}
.y9b{bottom:283.824533pt;}
.yab{bottom:284.114000pt;}
.y13f{bottom:287.903867pt;}
.y56{bottom:290.345333pt;}
.yd2{bottom:294.268800pt;}
.y164{bottom:294.319467pt;}
.y3a{bottom:294.377333pt;}
.y119{bottom:296.078133pt;}
.y75{bottom:298.201200pt;}
.y14{bottom:300.428933pt;}
.y9a{bottom:303.296533pt;}
.yaa{bottom:303.586000pt;}
.yf2{bottom:305.120400pt;}
.y13e{bottom:306.442533pt;}
.y55{bottom:309.417333pt;}
.y163{bottom:311.391467pt;}
.y39{bottom:312.905333pt;}
.yd1{bottom:312.940800pt;}
.y118{bottom:314.748800pt;}
.y74{bottom:318.073200pt;}
.y13{bottom:319.500933pt;}
.y99{bottom:322.768533pt;}
.ya9{bottom:323.058000pt;}
.y13d{bottom:324.981200pt;}
.y162{bottom:328.463467pt;}
.y54{bottom:328.489333pt;}
.y38{bottom:331.566533pt;}
.yd0{bottom:331.612800pt;}
.y117{bottom:333.419467pt;}
.y73{bottom:337.945200pt;}
.y12{bottom:338.572933pt;}
.y98{bottom:342.368667pt;}
.ya8{bottom:342.530000pt;}
.y13c{bottom:343.519867pt;}
.y161{bottom:345.535467pt;}
.yf1{bottom:347.079467pt;}
.y53{bottom:347.561333pt;}
.y37{bottom:350.094533pt;}
.ycf{bottom:350.284800pt;}
.y116{bottom:352.090133pt;}
.y11{bottom:357.644933pt;}
.y72{bottom:357.817200pt;}
.y97{bottom:361.968667pt;}
.ya7{bottom:362.002000pt;}
.y13b{bottom:362.058533pt;}
.y160{bottom:362.607467pt;}
.yf0{bottom:365.879467pt;}
.y36{bottom:368.622533pt;}
.yce{bottom:368.956800pt;}
.y115{bottom:370.760800pt;}
.y71{bottom:377.689200pt;}
.y15f{bottom:379.679467pt;}
.y13a{bottom:380.597200pt;}
.ya6{bottom:381.474000pt;}
.y96{bottom:381.568667pt;}
.y10{bottom:384.265333pt;}
.yef{bottom:384.679467pt;}
.y35{bottom:387.150533pt;}
.ycd{bottom:387.628800pt;}
.y114{bottom:389.431467pt;}
.y52{bottom:393.252400pt;}
.y15e{bottom:396.751467pt;}
.y70{bottom:397.561200pt;}
.y139{bottom:399.135867pt;}
.ya5{bottom:400.946000pt;}
.y95{bottom:401.168667pt;}
.yf{bottom:403.337333pt;}
.yee{bottom:403.479467pt;}
.y34{bottom:405.678533pt;}
.ycc{bottom:406.300800pt;}
.y113{bottom:408.102133pt;}
.y51{bottom:410.720400pt;}
.y15d{bottom:413.823467pt;}
.y6f{bottom:417.433200pt;}
.y138{bottom:417.674533pt;}
.ya4{bottom:420.418000pt;}
.y94{bottom:420.768667pt;}
.yed{bottom:422.279467pt;}
.y33{bottom:424.206533pt;}
.ycb{bottom:424.972800pt;}
.y112{bottom:426.772800pt;}
.y15c{bottom:430.895467pt;}
.y137{bottom:436.213200pt;}
.y6e{bottom:437.305200pt;}
.y93{bottom:440.368667pt;}
.yec{bottom:441.079467pt;}
.y32{bottom:442.734533pt;}
.yca{bottom:443.644800pt;}
.y111{bottom:445.443467pt;}
.y15b{bottom:447.967467pt;}
.y136{bottom:454.751867pt;}
.y6d{bottom:457.177200pt;}
.yeb{bottom:459.879467pt;}
.y92{bottom:459.968667pt;}
.y31{bottom:461.262533pt;}
.yc9{bottom:462.316800pt;}
.y110{bottom:464.114133pt;}
.y15a{bottom:465.039467pt;}
.y135{bottom:473.290533pt;}
.yb6{bottom:474.665600pt;}
.y6c{bottom:477.049200pt;}
.yea{bottom:478.679467pt;}
.y91{bottom:479.568667pt;}
.ye{bottom:479.577333pt;}
.yc8{bottom:480.988800pt;}
.y159{bottom:482.243467pt;}
.y10f{bottom:482.784800pt;}
.y30{bottom:491.134533pt;}
.y134{bottom:491.829200pt;}
.yb5{bottom:492.265600pt;}
.y6b{bottom:496.921200pt;}
.ye9{bottom:497.479467pt;}
.yd{bottom:498.649333pt;}
.y90{bottom:499.168667pt;}
.y158{bottom:499.447467pt;}
.yc7{bottom:499.660800pt;}
.y10e{bottom:501.455467pt;}
.y2f{bottom:509.662533pt;}
.yb4{bottom:509.865600pt;}
.y133{bottom:510.367867pt;}
.ye8{bottom:516.279467pt;}
.y157{bottom:516.651467pt;}
.yc{bottom:517.721333pt;}
.yc6{bottom:518.332800pt;}
.y8f{bottom:518.768667pt;}
.y10d{bottom:520.126133pt;}
.y6a{bottom:528.121200pt;}
.y2e{bottom:528.190533pt;}
.y132{bottom:528.906533pt;}
.y156{bottom:533.855467pt;}
.yb{bottom:536.793333pt;}
.yc5{bottom:537.004800pt;}
.y8e{bottom:538.368667pt;}
.y10c{bottom:538.796800pt;}
.ye7{bottom:542.638533pt;}
.y2d{bottom:546.718533pt;}
.y131{bottom:547.445200pt;}
.y69{bottom:547.993200pt;}
.y155{bottom:551.059467pt;}
.yc4{bottom:555.676800pt;}
.ya{bottom:555.865333pt;}
.y10b{bottom:557.467467pt;}
.y8d{bottom:557.968667pt;}
.y2c{bottom:565.246533pt;}
.y130{bottom:565.983867pt;}
.y68{bottom:567.865200pt;}
.y154{bottom:568.263467pt;}
.y50{bottom:569.175467pt;}
.yc3{bottom:574.348800pt;}
.y9{bottom:574.937333pt;}
.y10a{bottom:576.138133pt;}
.y8c{bottom:577.568667pt;}
.y2b{bottom:583.774533pt;}
.y12f{bottom:584.522533pt;}
.y153{bottom:585.467467pt;}
.y67{bottom:587.737200pt;}
.y4f{bottom:588.247467pt;}
.yc2{bottom:593.020800pt;}
.y109{bottom:594.808800pt;}
.y8b{bottom:597.168667pt;}
.y2a{bottom:602.302533pt;}
.y152{bottom:602.671467pt;}
.y12e{bottom:603.061200pt;}
.y4e{bottom:607.319467pt;}
.y66{bottom:607.609200pt;}
.yc1{bottom:611.692800pt;}
.y108{bottom:613.479467pt;}
.y8a{bottom:616.768667pt;}
.ye6{bottom:617.838533pt;}
.y151{bottom:619.875467pt;}
.y29{bottom:620.830533pt;}
.y12d{bottom:621.599867pt;}
.y4d{bottom:626.391467pt;}
.y65{bottom:627.337200pt;}
.yc0{bottom:630.364800pt;}
.y107{bottom:632.150133pt;}
.y89{bottom:636.368667pt;}
.ye5{bottom:636.638533pt;}
.y150{bottom:637.059467pt;}
.y28{bottom:639.358533pt;}
.y12c{bottom:640.138533pt;}
.y4c{bottom:645.463467pt;}
.y64{bottom:647.065200pt;}
.ybf{bottom:649.036800pt;}
.y106{bottom:650.820800pt;}
.y8{bottom:651.604000pt;}
.y14f{bottom:654.263467pt;}
.ye4{bottom:655.438533pt;}
.y88{bottom:655.968667pt;}
.y27{bottom:657.886533pt;}
.y12b{bottom:658.677200pt;}
.y4b{bottom:664.535467pt;}
.y63{bottom:666.793200pt;}
.ybe{bottom:667.708800pt;}
.y7{bottom:669.204000pt;}
.y105{bottom:669.491467pt;}
.y14e{bottom:671.467467pt;}
.ye3{bottom:674.238533pt;}
.y87{bottom:675.568667pt;}
.y26{bottom:676.414533pt;}
.y12a{bottom:677.215867pt;}
.y4a{bottom:683.607467pt;}
.ybd{bottom:686.380800pt;}
.y62{bottom:686.521200pt;}
.y104{bottom:688.162133pt;}
.y14d{bottom:688.671467pt;}
.ye2{bottom:693.038533pt;}
.y25{bottom:694.942533pt;}
.y129{bottom:695.754533pt;}
.y49{bottom:702.658133pt;}
.ybc{bottom:705.052800pt;}
.y14c{bottom:705.875467pt;}
.y6{bottom:706.004000pt;}
.y61{bottom:706.249200pt;}
.y103{bottom:706.832800pt;}
.y86{bottom:711.174667pt;}
.ye1{bottom:711.838533pt;}
.y24{bottom:713.470533pt;}
.y128{bottom:714.293200pt;}
.y48{bottom:721.730133pt;}
.y14b{bottom:723.079467pt;}
.ybb{bottom:723.724800pt;}
.y102{bottom:725.503467pt;}
.y60{bottom:725.977200pt;}
.y85{bottom:727.574533pt;}
.ye0{bottom:730.638533pt;}
.y23{bottom:731.998533pt;}
.y127{bottom:732.831867pt;}
.y5{bottom:733.204000pt;}
.y47{bottom:740.802133pt;}
.yba{bottom:742.396800pt;}
.y84{bottom:743.974533pt;}
.y101{bottom:744.174133pt;}
.y5f{bottom:745.726533pt;}
.ydf{bottom:749.438533pt;}
.y22{bottom:750.526533pt;}
.y126{bottom:751.370533pt;}
.y46{bottom:759.874133pt;}
.y14a{bottom:759.879467pt;}
.y83{bottom:760.368533pt;}
.y4{bottom:760.404000pt;}
.yb9{bottom:761.068800pt;}
.y100{bottom:762.844800pt;}
.y5e{bottom:765.454533pt;}
.yde{bottom:768.238533pt;}
.y21{bottom:769.054533pt;}
.y125{bottom:769.909200pt;}
.y82{bottom:776.774667pt;}
.y45{bottom:778.946133pt;}
.yb8{bottom:779.740800pt;}
.yff{bottom:781.515467pt;}
.y5d{bottom:785.182533pt;}
.y149{bottom:785.438533pt;}
.ydd{bottom:787.038533pt;}
.y20{bottom:787.582533pt;}
.y124{bottom:788.447867pt;}
.y81{bottom:793.174667pt;}
.yb7{bottom:798.412800pt;}
.yfe{bottom:800.186133pt;}
.y5c{bottom:804.910533pt;}
.y148{bottom:805.038533pt;}
.y44{bottom:805.566533pt;}
.ydc{bottom:805.838533pt;}
.y1f{bottom:806.110533pt;}
.y123{bottom:806.986533pt;}
.y3{bottom:809.525200pt;}
.y80{bottom:809.574533pt;}
.y1e{bottom:824.638533pt;}
.y2{bottom:825.525200pt;}
.y7f{bottom:825.968533pt;}
.yfd{bottom:826.412000pt;}
.h3{height:31.700521pt;}
.h7{height:33.059115pt;}
.h9{height:36.229167pt;}
.h2{height:36.796875pt;}
.h13{height:43.022135pt;}
.h5{height:45.286458pt;}
.he{height:47.550781pt;}
.hd{height:49.651248pt;}
.hf{height:49.652315pt;}
.hc{height:49.675781pt;}
.h4{height:49.815104pt;}
.h12{height:49.836437pt;}
.h11{height:49.847104pt;}
.h14{height:49.895104pt;}
.h8{height:54.343750pt;}
.hb{height:54.365083pt;}
.ha{height:54.429083pt;}
.h10{height:61.112719pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x8{left:68.049067pt;}
.x1{left:86.929200pt;}
.x4{left:105.809200pt;}
.xa{left:113.385867pt;}
.x5{left:124.705200pt;}
.x2{left:127.262533pt;}
.x9{left:132.283467pt;}
.xb{left:133.929200pt;}
.xf{left:153.514667pt;}
.x3{left:194.868133pt;}
.xc{left:255.256533pt;}
.x6{left:261.923200pt;}
.xe{left:461.283200pt;}
.xd{left:508.590533pt;}
.x7{left:515.257200pt;}
}




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