
    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_1d5ab9d8098ee946a1ddb923.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.846000;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_9b477889aee58f0697d9b81c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.943000;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_61dab64df660dcc009acc1b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.047000;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_1610baadd0a56de551a9c093.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.860352;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_b448becb663804899a1ac933.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.943000;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);}
.v3{vertical-align:-17.820000px;}
.v2{vertical-align:-15.840000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.820000px;}
.ls8{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.048000px;}
.ls1f{letter-spacing:0.054000px;}
.ls1d{letter-spacing:0.096000px;}
.ls5{letter-spacing:0.108000px;}
.ls15{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.162000px;}
.ls3{letter-spacing:0.192000px;}
.lse{letter-spacing:0.216000px;}
.ls1{letter-spacing:0.240000px;}
.ls1c{letter-spacing:0.270000px;}
.ls27{letter-spacing:0.288000px;}
.ls10{letter-spacing:0.324000px;}
.lsb{letter-spacing:0.378000px;}
.ls1e{letter-spacing:0.384000px;}
.lsf{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.480000px;}
.lsa{letter-spacing:0.486000px;}
.ls4{letter-spacing:0.540000px;}
.ls2c{letter-spacing:0.594000px;}
.ls22{letter-spacing:0.648000px;}
.ls23{letter-spacing:0.702000px;}
.ls6{letter-spacing:0.720000px;}
.ls2b{letter-spacing:0.756000px;}
.ls18{letter-spacing:0.810000px;}
.ls21{letter-spacing:0.864000px;}
.ls1b{letter-spacing:0.918000px;}
.ls25{letter-spacing:0.960000px;}
.ls19{letter-spacing:0.972000px;}
.ls2a{letter-spacing:1.026000px;}
.ls1a{letter-spacing:1.080000px;}
.ls28{letter-spacing:1.134000px;}
.ls29{letter-spacing:1.188000px;}
.ls20{letter-spacing:1.242000px;}
.ls2d{letter-spacing:1.296000px;}
.ls17{letter-spacing:1.350000px;}
.ls24{letter-spacing:9.342000px;}
.ls13{letter-spacing:9.372000px;}
.ls12{letter-spacing:9.519000px;}
.ls14{letter-spacing:9.850800px;}
.ls11{letter-spacing:9.856200px;}
.lsd{letter-spacing:10.579200px;}
.ls16{letter-spacing:12.779400px;}
.lsc{letter-spacing:14.774400px;}
.ls26{letter-spacing:15.456000px;}
.ls7{letter-spacing:70.264800px;}
.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;}
}
.ws28{word-spacing:-25.632000px;}
.ws1d{word-spacing:-20.790000px;}
.ws37{word-spacing:-12.582000px;}
.wsf{word-spacing:-12.258000px;}
.wsb{word-spacing:-11.988000px;}
.ws4{word-spacing:-11.448000px;}
.ws2e{word-spacing:-10.476000px;}
.ws2b{word-spacing:-10.368000px;}
.ws22{word-spacing:-10.206000px;}
.ws7{word-spacing:-10.176000px;}
.ws3{word-spacing:-9.828000px;}
.ws38{word-spacing:-8.880000px;}
.ws5{word-spacing:-8.736000px;}
.ws1b{word-spacing:-6.868800px;}
.ws0{word-spacing:-0.720000px;}
.wsd{word-spacing:-0.240000px;}
.ws2{word-spacing:0.000000px;}
.ws23{word-spacing:0.640200px;}
.ws1{word-spacing:1.440000px;}
.ws1c{word-spacing:2.627400px;}
.ws9{word-spacing:2.820000px;}
.ws16{word-spacing:3.139200px;}
.ws11{word-spacing:3.221400px;}
.ws8{word-spacing:3.635400px;}
.ws2f{word-spacing:3.711000px;}
.ws13{word-spacing:3.871200px;}
.ws33{word-spacing:4.468200px;}
.ws2d{word-spacing:4.579800px;}
.ws25{word-spacing:4.851000px;}
.ws26{word-spacing:4.854600px;}
.ws27{word-spacing:5.175600px;}
.ws21{word-spacing:5.244600px;}
.ws24{word-spacing:6.412200px;}
.ws19{word-spacing:7.330200px;}
.ws20{word-spacing:7.612800px;}
.ws10{word-spacing:8.732400px;}
.wsa{word-spacing:8.910000px;}
.ws1a{word-spacing:9.222000px;}
.ws31{word-spacing:9.288000px;}
.ws30{word-spacing:9.307800px;}
.ws18{word-spacing:9.526200px;}
.ws15{word-spacing:9.562800px;}
.ws17{word-spacing:9.616800px;}
.ws1f{word-spacing:10.123800px;}
.ws35{word-spacing:10.980600px;}
.ws32{word-spacing:11.703000px;}
.wsc{word-spacing:11.836200px;}
.ws14{word-spacing:13.501800px;}
.ws2a{word-spacing:16.919400px;}
.ws12{word-spacing:17.392200px;}
.wse{word-spacing:49.384800px;}
.ws1e{word-spacing:1053.809400px;}
.ws2c{word-spacing:1053.857400px;}
.ws36{word-spacing:1053.903000px;}
.ws6{word-spacing:1053.905400px;}
.ws29{word-spacing:1053.953400px;}
.ws34{word-spacing:1054.049400px;}
._19{margin-left:-14.976000px;}
._17{margin-left:-9.720000px;}
._a{margin-left:-8.592000px;}
._7{margin-left:-7.104000px;}
._11{margin-left:-5.418000px;}
._3{margin-left:-4.128000px;}
._2{margin-left:-3.072000px;}
._0{margin-left:-1.440000px;}
._1{width:1.920000px;}
._4{width:3.120000px;}
._9{width:4.416000px;}
._b{width:5.760000px;}
._13{width:6.762000px;}
._6{width:8.016000px;}
._d{width:9.792000px;}
._8{width:11.568000px;}
._5{width:13.056000px;}
._f{width:14.850000px;}
._c{width:16.560000px;}
._12{width:18.570000px;}
._18{width:20.142000px;}
._1a{width:21.708000px;}
._10{width:22.794000px;}
._16{width:23.820000px;}
._15{width:24.996000px;}
._14{width:29.640000px;}
._e{width:1064.283600px;}
.fc2{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs4{font-size:28.800000px;}
.fs3{font-size:32.400000px;}
.fs5{font-size:36.000000px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y8d{bottom:42.468000px;}
.y13d{bottom:42.468450px;}
.y18b{bottom:42.468600px;}
.y1a1{bottom:42.468750px;}
.y51{bottom:42.469050px;}
.y23{bottom:42.474150px;}
.y67{bottom:42.475200px;}
.y10a{bottom:42.479550px;}
.ydd{bottom:89.075400px;}
.y109{bottom:89.075550px;}
.y8c{bottom:89.076000px;}
.y122{bottom:89.076300px;}
.y13c{bottom:89.076450px;}
.y22{bottom:89.076750px;}
.yea{bottom:89.077050px;}
.y19b{bottom:93.036300px;}
.yad{bottom:93.036600px;}
.y66{bottom:93.036750px;}
.y50{bottom:93.037050px;}
.y17f{bottom:93.037500px;}
.yf3{bottom:93.038100px;}
.y1cf{bottom:93.064200px;}
.y1f6{bottom:93.292200px;}
.ydc{bottom:104.075400px;}
.y108{bottom:104.075550px;}
.y121{bottom:104.076300px;}
.y167{bottom:104.076450px;}
.y1a0{bottom:104.076750px;}
.y4f{bottom:104.077050px;}
.y8b{bottom:108.036000px;}
.y19a{bottom:108.036300px;}
.y13b{bottom:108.036450px;}
.yac{bottom:108.036600px;}
.y21{bottom:108.036750px;}
.yc6{bottom:108.037050px;}
.y17e{bottom:108.037500px;}
.yf2{bottom:108.038100px;}
.y1f5{bottom:109.792200px;}
.y1ce{bottom:114.070200px;}
.ydb{bottom:119.075400px;}
.y107{bottom:119.075550px;}
.y8a{bottom:119.076000px;}
.y120{bottom:119.076300px;}
.y20{bottom:119.076750px;}
.y4e{bottom:119.077050px;}
.y199{bottom:123.036300px;}
.y13a{bottom:123.036450px;}
.yab{bottom:123.036600px;}
.yc5{bottom:123.037050px;}
.y17d{bottom:123.037500px;}
.yf1{bottom:123.038100px;}
.y1f4{bottom:126.292200px;}
.yda{bottom:134.075400px;}
.y1f{bottom:134.076750px;}
.y4d{bottom:134.077050px;}
.y17c{bottom:134.077500px;}
.yf0{bottom:134.078100px;}
.y1cd{bottom:135.076200px;}
.y1c0{bottom:135.113700px;}
.y65{bottom:135.262200px;}
.y106{bottom:138.035550px;}
.y89{bottom:138.036000px;}
.y11f{bottom:138.036300px;}
.y139{bottom:138.036450px;}
.yaa{bottom:138.036600px;}
.yc4{bottom:138.037050px;}
.y1f3{bottom:142.792200px;}
.y105{bottom:149.075550px;}
.y88{bottom:149.076000px;}
.y1e{bottom:149.076750px;}
.y4c{bottom:149.077050px;}
.y17b{bottom:149.077500px;}
.yd9{bottom:153.035400px;}
.y11e{bottom:153.036300px;}
.ya9{bottom:153.036600px;}
.yef{bottom:153.038100px;}
.y1cc{bottom:156.082200px;}
.y14e{bottom:156.095700px;}
.y1bf{bottom:156.119700px;}
.y64{bottom:156.268200px;}
.y198{bottom:156.274200px;}
.y1f2{bottom:159.292200px;}
.y104{bottom:164.075550px;}
.ya8{bottom:164.076450px;}
.y1d{bottom:164.076750px;}
.y4b{bottom:164.077050px;}
.y17a{bottom:164.077500px;}
.yd8{bottom:168.035400px;}
.y87{bottom:168.036000px;}
.y11d{bottom:168.036300px;}
.y19f{bottom:168.036750px;}
.y1f1{bottom:175.792200px;}
.y1cb{bottom:177.088200px;}
.y14d{bottom:177.101700px;}
.y1be{bottom:177.125700px;}
.y166{bottom:177.148200px;}
.y138{bottom:177.214200px;}
.yc3{bottom:177.232200px;}
.ye9{bottom:177.256200px;}
.y63{bottom:177.274200px;}
.y197{bottom:177.280200px;}
.y18a{bottom:177.292200px;}
.yd7{bottom:179.075400px;}
.y103{bottom:179.075550px;}
.ya7{bottom:179.076450px;}
.y19e{bottom:179.076750px;}
.y4a{bottom:179.077050px;}
.y11c{bottom:183.036300px;}
.y179{bottom:183.037500px;}
.y1f0{bottom:192.292200px;}
.yd6{bottom:194.075400px;}
.y102{bottom:194.075550px;}
.y19d{bottom:194.076750px;}
.y49{bottom:194.077050px;}
.y11b{bottom:198.036300px;}
.ya6{bottom:198.036600px;}
.y1ca{bottom:198.094200px;}
.y14c{bottom:198.107700px;}
.y1bd{bottom:198.131700px;}
.y165{bottom:198.154200px;}
.y86{bottom:198.214200px;}
.y137{bottom:198.220200px;}
.y189{bottom:198.232200px;}
.yc2{bottom:198.238200px;}
.ye8{bottom:198.262200px;}
.y62{bottom:198.280200px;}
.yee{bottom:198.286200px;}
.y1ef{bottom:208.792200px;}
.yd5{bottom:209.075400px;}
.y101{bottom:209.075550px;}
.y11a{bottom:209.076300px;}
.y48{bottom:209.077050px;}
.y1c{bottom:209.997450px;}
.y19c{bottom:213.036750px;}
.y1c9{bottom:219.100200px;}
.y14b{bottom:219.113700px;}
.y1bc{bottom:219.137700px;}
.y164{bottom:219.160200px;}
.y85{bottom:219.220200px;}
.y136{bottom:219.226200px;}
.y188{bottom:219.238200px;}
.yc1{bottom:219.244200px;}
.y196{bottom:219.256200px;}
.ye7{bottom:219.268200px;}
.y61{bottom:219.286200px;}
.yed{bottom:219.292200px;}
.y178{bottom:220.756200px;}
.yd4{bottom:224.075400px;}
.y100{bottom:224.075550px;}
.y119{bottom:224.076300px;}
.y47{bottom:224.077050px;}
.y1ee{bottom:225.292200px;}
.y1b{bottom:231.003450px;}
.ya5{bottom:237.292200px;}
.yff{bottom:239.075550px;}
.y46{bottom:239.077050px;}
.y1c8{bottom:240.106200px;}
.y14a{bottom:240.119700px;}
.y1bb{bottom:240.143700px;}
.y163{bottom:240.166200px;}
.y84{bottom:240.226200px;}
.y135{bottom:240.232200px;}
.y187{bottom:240.244200px;}
.yc0{bottom:240.250200px;}
.y195{bottom:240.262200px;}
.ye6{bottom:240.274200px;}
.y60{bottom:240.292200px;}
.y177{bottom:241.762200px;}
.y1ed{bottom:241.792200px;}
.yd3{bottom:243.035400px;}
.y118{bottom:243.036300px;}
.ya4{bottom:253.792200px;}
.yd2{bottom:254.075400px;}
.yfe{bottom:254.075550px;}
.y45{bottom:254.077050px;}
.y1ec{bottom:258.292200px;}
.y1c7{bottom:261.112200px;}
.y149{bottom:261.125700px;}
.y1ba{bottom:261.149700px;}
.y162{bottom:261.172200px;}
.y83{bottom:261.232200px;}
.y134{bottom:261.238200px;}
.y5f{bottom:261.244200px;}
.y186{bottom:261.250200px;}
.ybf{bottom:261.256200px;}
.y194{bottom:261.268200px;}
.ye5{bottom:261.280200px;}
.y176{bottom:262.768200px;}
.yd1{bottom:269.075400px;}
.yfd{bottom:269.075550px;}
.y44{bottom:269.077050px;}
.ya3{bottom:270.292200px;}
.y1a{bottom:273.003450px;}
.y1eb{bottom:274.792200px;}
.y1c6{bottom:282.118200px;}
.y148{bottom:282.131700px;}
.y1b9{bottom:282.155700px;}
.y161{bottom:282.178200px;}
.y82{bottom:282.238200px;}
.y133{bottom:282.244200px;}
.y5e{bottom:282.250200px;}
.y185{bottom:282.256200px;}
.ybe{bottom:282.262200px;}
.y117{bottom:282.274200px;}
.ye4{bottom:282.286200px;}
.y175{bottom:283.774200px;}
.yfc{bottom:284.075550px;}
.ya2{bottom:286.792200px;}
.yd0{bottom:288.035400px;}
.y43{bottom:288.037050px;}
.y19{bottom:289.503450px;}
.y1ea{bottom:291.292200px;}
.yfb{bottom:299.075550px;}
.y1c5{bottom:303.124200px;}
.y147{bottom:303.137700px;}
.y1b8{bottom:303.161700px;}
.y160{bottom:303.184200px;}
.y81{bottom:303.244200px;}
.y132{bottom:303.250200px;}
.y5d{bottom:303.256200px;}
.y184{bottom:303.262200px;}
.ybd{bottom:303.268200px;}
.y116{bottom:303.280200px;}
.yec{bottom:303.292200px;}
.y174{bottom:304.780200px;}
.y18{bottom:306.003450px;}
.y1e9{bottom:307.792200px;}
.yfa{bottom:314.075550px;}
.y17{bottom:322.503450px;}
.y1c4{bottom:324.130200px;}
.y146{bottom:324.143700px;}
.y1b7{bottom:324.167700px;}
.y15f{bottom:324.190200px;}
.y41{bottom:324.226200px;}
.y80{bottom:324.250200px;}
.ycf{bottom:324.256200px;}
.y5c{bottom:324.262200px;}
.ya1{bottom:324.268200px;}
.ybc{bottom:324.274200px;}
.yeb{bottom:324.286200px;}
.y1e8{bottom:324.292200px;}
.y173{bottom:325.786200px;}
.yf9{bottom:333.035550px;}
.y1e7{bottom:340.792200px;}
.y1c3{bottom:345.136200px;}
.y145{bottom:345.149700px;}
.y1b6{bottom:345.173700px;}
.y15e{bottom:345.196200px;}
.y115{bottom:345.226200px;}
.y40{bottom:345.232200px;}
.y193{bottom:345.250200px;}
.y7f{bottom:345.256200px;}
.yce{bottom:345.262200px;}
.y5b{bottom:345.268200px;}
.ya0{bottom:345.274200px;}
.ybb{bottom:345.280200px;}
.y172{bottom:346.792200px;}
.y1e6{bottom:357.292200px;}
.y16{bottom:359.973450px;}
.y1c2{bottom:366.142200px;}
.y144{bottom:366.155700px;}
.y1b5{bottom:366.179700px;}
.y15d{bottom:366.202200px;}
.y114{bottom:366.232200px;}
.y3f{bottom:366.238200px;}
.y192{bottom:366.256200px;}
.y7e{bottom:366.262200px;}
.ycd{bottom:366.268200px;}
.y5a{bottom:366.274200px;}
.y9f{bottom:366.280200px;}
.yba{bottom:366.286200px;}
.y1e5{bottom:373.792200px;}
.y15{bottom:380.979450px;}
.y1c1{bottom:387.148200px;}
.y1b4{bottom:387.185700px;}
.y15c{bottom:387.208200px;}
.yf8{bottom:387.220200px;}
.y113{bottom:387.238200px;}
.y3e{bottom:387.244200px;}
.y191{bottom:387.262200px;}
.y7d{bottom:387.268200px;}
.ycc{bottom:387.274200px;}
.y59{bottom:387.280200px;}
.y9e{bottom:387.286200px;}
.yb9{bottom:387.292200px;}
.y171{bottom:388.792200px;}
.y1e4{bottom:390.292200px;}
.y14{bottom:401.985450px;}
.y170{bottom:405.292200px;}
.y1e3{bottom:406.792200px;}
.y143{bottom:408.154200px;}
.y1b3{bottom:408.191700px;}
.y15b{bottom:408.214200px;}
.y183{bottom:408.220200px;}
.yf7{bottom:408.226200px;}
.y112{bottom:408.244200px;}
.y3d{bottom:408.250200px;}
.y190{bottom:408.268200px;}
.y7c{bottom:408.274200px;}
.y9d{bottom:408.280200px;}
.y58{bottom:408.286200px;}
.y16f{bottom:421.792200px;}
.y13{bottom:422.991450px;}
.y1e2{bottom:423.292200px;}
.y142{bottom:429.160200px;}
.y57{bottom:429.173700px;}
.y1b2{bottom:429.197700px;}
.y15a{bottom:429.220200px;}
.y182{bottom:429.226200px;}
.yf6{bottom:429.232200px;}
.y111{bottom:429.250200px;}
.y3c{bottom:429.256200px;}
.y18f{bottom:429.274200px;}
.y7b{bottom:429.280200px;}
.y9c{bottom:429.286200px;}
.y16e{bottom:438.292200px;}
.y1e1{bottom:439.792200px;}
.y12{bottom:443.997450px;}
.y141{bottom:450.166200px;}
.y56{bottom:450.179700px;}
.y131{bottom:450.202200px;}
.y1b1{bottom:450.203700px;}
.y159{bottom:450.226200px;}
.y181{bottom:450.232200px;}
.yf5{bottom:450.238200px;}
.y110{bottom:450.256200px;}
.y3b{bottom:450.262200px;}
.yb8{bottom:450.274200px;}
.y18e{bottom:450.280200px;}
.y7a{bottom:450.286200px;}
.y9b{bottom:450.292200px;}
.y16d{bottom:454.792200px;}
.y1e0{bottom:456.292200px;}
.y11{bottom:465.003450px;}
.y140{bottom:471.172200px;}
.y55{bottom:471.185700px;}
.y130{bottom:471.208200px;}
.y1b0{bottom:471.209700px;}
.y158{bottom:471.232200px;}
.ye3{bottom:471.238200px;}
.y79{bottom:471.244200px;}
.y9a{bottom:471.256200px;}
.y10f{bottom:471.262200px;}
.y3a{bottom:471.268200px;}
.yb7{bottom:471.280200px;}
.y18d{bottom:471.286200px;}
.y1df{bottom:472.792200px;}
.y1de{bottom:489.292200px;}
.y13f{bottom:492.178200px;}
.y54{bottom:492.191700px;}
.y12f{bottom:492.214200px;}
.y1af{bottom:492.215700px;}
.y157{bottom:492.238200px;}
.ye2{bottom:492.244200px;}
.y78{bottom:492.250200px;}
.y99{bottom:492.262200px;}
.y10e{bottom:492.268200px;}
.y39{bottom:492.274200px;}
.yb6{bottom:492.286200px;}
.y18c{bottom:492.292200px;}
.y1dd{bottom:505.792200px;}
.y10{bottom:507.003450px;}
.y13e{bottom:513.184200px;}
.y12e{bottom:513.220200px;}
.y1ae{bottom:513.221700px;}
.y156{bottom:513.244200px;}
.ye1{bottom:513.250200px;}
.y77{bottom:513.256200px;}
.y98{bottom:513.268200px;}
.y10d{bottom:513.274200px;}
.y38{bottom:513.280200px;}
.y1dc{bottom:522.292200px;}
.yf{bottom:523.503450px;}
.y53{bottom:534.190200px;}
.y12d{bottom:534.226200px;}
.y1ad{bottom:534.227700px;}
.y155{bottom:534.250200px;}
.ye0{bottom:534.256200px;}
.y76{bottom:534.262200px;}
.y97{bottom:534.274200px;}
.y10c{bottom:534.280200px;}
.y37{bottom:534.286200px;}
.y1db{bottom:538.792200px;}
.ye{bottom:540.003450px;}
.y52{bottom:555.196200px;}
.yb5{bottom:555.209700px;}
.y12c{bottom:555.232200px;}
.y1ac{bottom:555.233700px;}
.y154{bottom:555.256200px;}
.ydf{bottom:555.262200px;}
.y75{bottom:555.268200px;}
.y96{bottom:555.280200px;}
.y36{bottom:555.286200px;}
.ycb{bottom:555.292200px;}
.yd{bottom:556.503450px;}
.y1da{bottom:571.792200px;}
.yc{bottom:573.003450px;}
.y35{bottom:576.202200px;}
.yb4{bottom:576.215700px;}
.y12b{bottom:576.238200px;}
.y1ab{bottom:576.239700px;}
.y153{bottom:576.262200px;}
.yde{bottom:576.268200px;}
.y74{bottom:576.274200px;}
.yca{bottom:576.280200px;}
.y95{bottom:576.286200px;}
.y10b{bottom:576.292200px;}
.y1d9{bottom:588.292200px;}
.yb{bottom:589.503450px;}
.y34{bottom:597.208200px;}
.yb3{bottom:597.221700px;}
.y12a{bottom:597.244200px;}
.y1aa{bottom:597.245700px;}
.y152{bottom:597.268200px;}
.y94{bottom:597.274200px;}
.y73{bottom:597.280200px;}
.yc9{bottom:597.286200px;}
.y1d8{bottom:604.792200px;}
.ya{bottom:606.003450px;}
.y33{bottom:618.214200px;}
.yb2{bottom:618.227700px;}
.y129{bottom:618.250200px;}
.y1a9{bottom:618.251700px;}
.yc8{bottom:618.256200px;}
.y151{bottom:618.274200px;}
.y93{bottom:618.280200px;}
.y72{bottom:618.286200px;}
.y1d7{bottom:621.292200px;}
.y9{bottom:622.503450px;}
.y1d6{bottom:637.792200px;}
.y8{bottom:639.003450px;}
.y32{bottom:639.220200px;}
.y71{bottom:639.232200px;}
.yb1{bottom:639.233700px;}
.y128{bottom:639.256200px;}
.y1a8{bottom:639.257700px;}
.yc7{bottom:639.262200px;}
.y150{bottom:639.280200px;}
.y92{bottom:639.286200px;}
.yf4{bottom:639.292200px;}
.y1d5{bottom:654.292200px;}
.y7{bottom:655.503450px;}
.y31{bottom:660.226200px;}
.y70{bottom:660.238200px;}
.yb0{bottom:660.239700px;}
.y127{bottom:660.262200px;}
.y1a7{bottom:660.263700px;}
.y91{bottom:660.268200px;}
.y14f{bottom:660.286200px;}
.y180{bottom:660.292200px;}
.y6{bottom:672.003450px;}
.y30{bottom:681.232200px;}
.y6f{bottom:681.244200px;}
.yaf{bottom:681.245700px;}
.y126{bottom:681.268200px;}
.y1a6{bottom:681.269700px;}
.y90{bottom:681.274200px;}
.y1d4{bottom:687.292200px;}
.y5{bottom:688.503450px;}
.y2f{bottom:702.238200px;}
.y6e{bottom:702.250200px;}
.yae{bottom:702.251700px;}
.y125{bottom:702.274200px;}
.y1a5{bottom:702.275700px;}
.y8f{bottom:702.280200px;}
.y4{bottom:705.003450px;}
.y3{bottom:721.503450px;}
.y2e{bottom:723.244200px;}
.y6d{bottom:723.256200px;}
.y124{bottom:723.280200px;}
.y8e{bottom:723.286200px;}
.y1d3{bottom:736.792200px;}
.y2d{bottom:744.250200px;}
.y6c{bottom:744.262200px;}
.y1a4{bottom:744.274200px;}
.y123{bottom:744.286200px;}
.y1d2{bottom:753.292200px;}
.y2c{bottom:765.256200px;}
.y16c{bottom:765.262200px;}
.y6b{bottom:765.268200px;}
.y1a3{bottom:765.280200px;}
.y1d1{bottom:769.792200px;}
.y2{bottom:780.003450px;}
.y2b{bottom:786.262200px;}
.y16b{bottom:786.268200px;}
.y6a{bottom:786.274200px;}
.y1d0{bottom:786.275700px;}
.y1a2{bottom:786.286200px;}
.y2a{bottom:807.268200px;}
.y16a{bottom:807.274200px;}
.y69{bottom:807.280200px;}
.y1{bottom:822.003450px;}
.y1fb{bottom:826.417200px;}
.y29{bottom:828.274200px;}
.y169{bottom:828.280200px;}
.y68{bottom:828.286200px;}
.y1fa{bottom:842.917200px;}
.y28{bottom:849.280200px;}
.y168{bottom:849.286200px;}
.y1f9{bottom:859.417200px;}
.y27{bottom:870.286200px;}
.y1f8{bottom:875.917200px;}
.y24{bottom:885.091350px;}
.y26{bottom:891.292200px;}
.y1f7{bottom:892.417200px;}
.y42{bottom:944.500200px;}
.y25{bottom:1015.475550px;}
.h16{height:23.855400px;}
.h7{height:23.856000px;}
.hb{height:25.956000px;}
.h8{height:35.296875px;}
.h3{height:38.934000px;}
.he{height:39.691800px;}
.h4{height:39.696000px;}
.h6{height:44.614800px;}
.h5{height:44.658000px;}
.h18{height:44.662800px;}
.ha{height:44.682000px;}
.h1e{height:44.686800px;}
.hf{height:44.706000px;}
.h14{height:44.730000px;}
.h21{height:44.734800px;}
.h13{height:44.754000px;}
.h15{height:44.758800px;}
.h1a{height:44.778000px;}
.h19{height:44.802000px;}
.hd{height:44.806800px;}
.h12{height:44.826000px;}
.h11{height:44.850000px;}
.h22{height:44.854800px;}
.h1c{height:44.874000px;}
.h1f{height:44.878800px;}
.h10{height:44.898000px;}
.h1b{height:44.922000px;}
.h23{height:44.946000px;}
.h17{height:44.988000px;}
.h9{height:45.018000px;}
.h1d{height:45.042000px;}
.h24{height:45.046800px;}
.h25{height:45.094800px;}
.hc{height:45.132000px;}
.h26{height:45.144000px;}
.h20{height:45.400800px;}
.h2{height:75.240000px;}
.h1{height:986.250000px;}
.h0{height:986.456250px;}
.w1{width:663.000000px;}
.w0{width:663.306750px;}
.x0{left:0.000000px;}
.x6{left:1.448100px;}
.x7{left:4.499550px;}
.xa{left:42.519000px;}
.x5{left:63.778350px;}
.x1{left:106.298100px;}
.x8{left:110.550450px;}
.x14{left:119.198100px;}
.x3{left:120.322200px;}
.x15{left:123.462450px;}
.x9{left:125.076450px;}
.x4{left:127.557900px;}
.xb{left:131.822250px;}
.xf{left:324.147600px;}
.xc{left:326.297700px;}
.x2{left:327.913050px;}
.xe{left:328.939950px;}
.x12{left:362.458650px;}
.x11{left:387.562650px;}
.x13{left:456.322650px;}
.x10{left:475.496100px;}
.xd{left:570.566250px;}
@media print{
.v3{vertical-align:-15.840000pt;}
.v2{vertical-align:-14.080000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.840000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.042667pt;}
.ls1f{letter-spacing:0.048000pt;}
.ls1d{letter-spacing:0.085333pt;}
.ls5{letter-spacing:0.096000pt;}
.ls15{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.144000pt;}
.ls3{letter-spacing:0.170667pt;}
.lse{letter-spacing:0.192000pt;}
.ls1{letter-spacing:0.213333pt;}
.ls1c{letter-spacing:0.240000pt;}
.ls27{letter-spacing:0.256000pt;}
.ls10{letter-spacing:0.288000pt;}
.lsb{letter-spacing:0.336000pt;}
.ls1e{letter-spacing:0.341333pt;}
.lsf{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.426667pt;}
.lsa{letter-spacing:0.432000pt;}
.ls4{letter-spacing:0.480000pt;}
.ls2c{letter-spacing:0.528000pt;}
.ls22{letter-spacing:0.576000pt;}
.ls23{letter-spacing:0.624000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls2b{letter-spacing:0.672000pt;}
.ls18{letter-spacing:0.720000pt;}
.ls21{letter-spacing:0.768000pt;}
.ls1b{letter-spacing:0.816000pt;}
.ls25{letter-spacing:0.853333pt;}
.ls19{letter-spacing:0.864000pt;}
.ls2a{letter-spacing:0.912000pt;}
.ls1a{letter-spacing:0.960000pt;}
.ls28{letter-spacing:1.008000pt;}
.ls29{letter-spacing:1.056000pt;}
.ls20{letter-spacing:1.104000pt;}
.ls2d{letter-spacing:1.152000pt;}
.ls17{letter-spacing:1.200000pt;}
.ls24{letter-spacing:8.304000pt;}
.ls13{letter-spacing:8.330667pt;}
.ls12{letter-spacing:8.461333pt;}
.ls14{letter-spacing:8.756267pt;}
.ls11{letter-spacing:8.761067pt;}
.lsd{letter-spacing:9.403733pt;}
.ls16{letter-spacing:11.359467pt;}
.lsc{letter-spacing:13.132800pt;}
.ls26{letter-spacing:13.738667pt;}
.ls7{letter-spacing:62.457600pt;}
.ws28{word-spacing:-22.784000pt;}
.ws1d{word-spacing:-18.480000pt;}
.ws37{word-spacing:-11.184000pt;}
.wsf{word-spacing:-10.896000pt;}
.wsb{word-spacing:-10.656000pt;}
.ws4{word-spacing:-10.176000pt;}
.ws2e{word-spacing:-9.312000pt;}
.ws2b{word-spacing:-9.216000pt;}
.ws22{word-spacing:-9.072000pt;}
.ws7{word-spacing:-9.045333pt;}
.ws3{word-spacing:-8.736000pt;}
.ws38{word-spacing:-7.893333pt;}
.ws5{word-spacing:-7.765333pt;}
.ws1b{word-spacing:-6.105600pt;}
.ws0{word-spacing:-0.640000pt;}
.wsd{word-spacing:-0.213333pt;}
.ws2{word-spacing:0.000000pt;}
.ws23{word-spacing:0.569067pt;}
.ws1{word-spacing:1.280000pt;}
.ws1c{word-spacing:2.335467pt;}
.ws9{word-spacing:2.506667pt;}
.ws16{word-spacing:2.790400pt;}
.ws11{word-spacing:2.863467pt;}
.ws8{word-spacing:3.231467pt;}
.ws2f{word-spacing:3.298667pt;}
.ws13{word-spacing:3.441067pt;}
.ws33{word-spacing:3.971733pt;}
.ws2d{word-spacing:4.070933pt;}
.ws25{word-spacing:4.312000pt;}
.ws26{word-spacing:4.315200pt;}
.ws27{word-spacing:4.600533pt;}
.ws21{word-spacing:4.661867pt;}
.ws24{word-spacing:5.699733pt;}
.ws19{word-spacing:6.515733pt;}
.ws20{word-spacing:6.766933pt;}
.ws10{word-spacing:7.762133pt;}
.wsa{word-spacing:7.920000pt;}
.ws1a{word-spacing:8.197333pt;}
.ws31{word-spacing:8.256000pt;}
.ws30{word-spacing:8.273600pt;}
.ws18{word-spacing:8.467733pt;}
.ws15{word-spacing:8.500267pt;}
.ws17{word-spacing:8.548267pt;}
.ws1f{word-spacing:8.998933pt;}
.ws35{word-spacing:9.760533pt;}
.ws32{word-spacing:10.402667pt;}
.wsc{word-spacing:10.521067pt;}
.ws14{word-spacing:12.001600pt;}
.ws2a{word-spacing:15.039467pt;}
.ws12{word-spacing:15.459733pt;}
.wse{word-spacing:43.897600pt;}
.ws1e{word-spacing:936.719467pt;}
.ws2c{word-spacing:936.762133pt;}
.ws36{word-spacing:936.802667pt;}
.ws6{word-spacing:936.804800pt;}
.ws29{word-spacing:936.847467pt;}
.ws34{word-spacing:936.932800pt;}
._19{margin-left:-13.312000pt;}
._17{margin-left:-8.640000pt;}
._a{margin-left:-7.637333pt;}
._7{margin-left:-6.314667pt;}
._11{margin-left:-4.816000pt;}
._3{margin-left:-3.669333pt;}
._2{margin-left:-2.730667pt;}
._0{margin-left:-1.280000pt;}
._1{width:1.706667pt;}
._4{width:2.773333pt;}
._9{width:3.925333pt;}
._b{width:5.120000pt;}
._13{width:6.010667pt;}
._6{width:7.125333pt;}
._d{width:8.704000pt;}
._8{width:10.282667pt;}
._5{width:11.605333pt;}
._f{width:13.200000pt;}
._c{width:14.720000pt;}
._12{width:16.506667pt;}
._18{width:17.904000pt;}
._1a{width:19.296000pt;}
._10{width:20.261333pt;}
._16{width:21.173333pt;}
._15{width:22.218667pt;}
._14{width:26.346667pt;}
._e{width:946.029867pt;}
.fs4{font-size:25.600000pt;}
.fs3{font-size:28.800000pt;}
.fs5{font-size:32.000000pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y8d{bottom:37.749333pt;}
.y13d{bottom:37.749733pt;}
.y18b{bottom:37.749867pt;}
.y1a1{bottom:37.750000pt;}
.y51{bottom:37.750267pt;}
.y23{bottom:37.754800pt;}
.y67{bottom:37.755733pt;}
.y10a{bottom:37.759600pt;}
.ydd{bottom:79.178133pt;}
.y109{bottom:79.178267pt;}
.y8c{bottom:79.178667pt;}
.y122{bottom:79.178933pt;}
.y13c{bottom:79.179067pt;}
.y22{bottom:79.179333pt;}
.yea{bottom:79.179600pt;}
.y19b{bottom:82.698933pt;}
.yad{bottom:82.699200pt;}
.y66{bottom:82.699333pt;}
.y50{bottom:82.699600pt;}
.y17f{bottom:82.700000pt;}
.yf3{bottom:82.700533pt;}
.y1cf{bottom:82.723733pt;}
.y1f6{bottom:82.926400pt;}
.ydc{bottom:92.511467pt;}
.y108{bottom:92.511600pt;}
.y121{bottom:92.512267pt;}
.y167{bottom:92.512400pt;}
.y1a0{bottom:92.512667pt;}
.y4f{bottom:92.512933pt;}
.y8b{bottom:96.032000pt;}
.y19a{bottom:96.032267pt;}
.y13b{bottom:96.032400pt;}
.yac{bottom:96.032533pt;}
.y21{bottom:96.032667pt;}
.yc6{bottom:96.032933pt;}
.y17e{bottom:96.033333pt;}
.yf2{bottom:96.033867pt;}
.y1f5{bottom:97.593067pt;}
.y1ce{bottom:101.395733pt;}
.ydb{bottom:105.844800pt;}
.y107{bottom:105.844933pt;}
.y8a{bottom:105.845333pt;}
.y120{bottom:105.845600pt;}
.y20{bottom:105.846000pt;}
.y4e{bottom:105.846267pt;}
.y199{bottom:109.365600pt;}
.y13a{bottom:109.365733pt;}
.yab{bottom:109.365867pt;}
.yc5{bottom:109.366267pt;}
.y17d{bottom:109.366667pt;}
.yf1{bottom:109.367200pt;}
.y1f4{bottom:112.259733pt;}
.yda{bottom:119.178133pt;}
.y1f{bottom:119.179333pt;}
.y4d{bottom:119.179600pt;}
.y17c{bottom:119.180000pt;}
.yf0{bottom:119.180533pt;}
.y1cd{bottom:120.067733pt;}
.y1c0{bottom:120.101067pt;}
.y65{bottom:120.233067pt;}
.y106{bottom:122.698267pt;}
.y89{bottom:122.698667pt;}
.y11f{bottom:122.698933pt;}
.y139{bottom:122.699067pt;}
.yaa{bottom:122.699200pt;}
.yc4{bottom:122.699600pt;}
.y1f3{bottom:126.926400pt;}
.y105{bottom:132.511600pt;}
.y88{bottom:132.512000pt;}
.y1e{bottom:132.512667pt;}
.y4c{bottom:132.512933pt;}
.y17b{bottom:132.513333pt;}
.yd9{bottom:136.031467pt;}
.y11e{bottom:136.032267pt;}
.ya9{bottom:136.032533pt;}
.yef{bottom:136.033867pt;}
.y1cc{bottom:138.739733pt;}
.y14e{bottom:138.751733pt;}
.y1bf{bottom:138.773067pt;}
.y64{bottom:138.905067pt;}
.y198{bottom:138.910400pt;}
.y1f2{bottom:141.593067pt;}
.y104{bottom:145.844933pt;}
.ya8{bottom:145.845733pt;}
.y1d{bottom:145.846000pt;}
.y4b{bottom:145.846267pt;}
.y17a{bottom:145.846667pt;}
.yd8{bottom:149.364800pt;}
.y87{bottom:149.365333pt;}
.y11d{bottom:149.365600pt;}
.y19f{bottom:149.366000pt;}
.y1f1{bottom:156.259733pt;}
.y1cb{bottom:157.411733pt;}
.y14d{bottom:157.423733pt;}
.y1be{bottom:157.445067pt;}
.y166{bottom:157.465067pt;}
.y138{bottom:157.523733pt;}
.yc3{bottom:157.539733pt;}
.ye9{bottom:157.561067pt;}
.y63{bottom:157.577067pt;}
.y197{bottom:157.582400pt;}
.y18a{bottom:157.593067pt;}
.yd7{bottom:159.178133pt;}
.y103{bottom:159.178267pt;}
.ya7{bottom:159.179067pt;}
.y19e{bottom:159.179333pt;}
.y4a{bottom:159.179600pt;}
.y11c{bottom:162.698933pt;}
.y179{bottom:162.700000pt;}
.y1f0{bottom:170.926400pt;}
.yd6{bottom:172.511467pt;}
.y102{bottom:172.511600pt;}
.y19d{bottom:172.512667pt;}
.y49{bottom:172.512933pt;}
.y11b{bottom:176.032267pt;}
.ya6{bottom:176.032533pt;}
.y1ca{bottom:176.083733pt;}
.y14c{bottom:176.095733pt;}
.y1bd{bottom:176.117067pt;}
.y165{bottom:176.137067pt;}
.y86{bottom:176.190400pt;}
.y137{bottom:176.195733pt;}
.y189{bottom:176.206400pt;}
.yc2{bottom:176.211733pt;}
.ye8{bottom:176.233067pt;}
.y62{bottom:176.249067pt;}
.yee{bottom:176.254400pt;}
.y1ef{bottom:185.593067pt;}
.yd5{bottom:185.844800pt;}
.y101{bottom:185.844933pt;}
.y11a{bottom:185.845600pt;}
.y48{bottom:185.846267pt;}
.y1c{bottom:186.664400pt;}
.y19c{bottom:189.366000pt;}
.y1c9{bottom:194.755733pt;}
.y14b{bottom:194.767733pt;}
.y1bc{bottom:194.789067pt;}
.y164{bottom:194.809067pt;}
.y85{bottom:194.862400pt;}
.y136{bottom:194.867733pt;}
.y188{bottom:194.878400pt;}
.yc1{bottom:194.883733pt;}
.y196{bottom:194.894400pt;}
.ye7{bottom:194.905067pt;}
.y61{bottom:194.921067pt;}
.yed{bottom:194.926400pt;}
.y178{bottom:196.227733pt;}
.yd4{bottom:199.178133pt;}
.y100{bottom:199.178267pt;}
.y119{bottom:199.178933pt;}
.y47{bottom:199.179600pt;}
.y1ee{bottom:200.259733pt;}
.y1b{bottom:205.336400pt;}
.ya5{bottom:210.926400pt;}
.yff{bottom:212.511600pt;}
.y46{bottom:212.512933pt;}
.y1c8{bottom:213.427733pt;}
.y14a{bottom:213.439733pt;}
.y1bb{bottom:213.461067pt;}
.y163{bottom:213.481067pt;}
.y84{bottom:213.534400pt;}
.y135{bottom:213.539733pt;}
.y187{bottom:213.550400pt;}
.yc0{bottom:213.555733pt;}
.y195{bottom:213.566400pt;}
.ye6{bottom:213.577067pt;}
.y60{bottom:213.593067pt;}
.y177{bottom:214.899733pt;}
.y1ed{bottom:214.926400pt;}
.yd3{bottom:216.031467pt;}
.y118{bottom:216.032267pt;}
.ya4{bottom:225.593067pt;}
.yd2{bottom:225.844800pt;}
.yfe{bottom:225.844933pt;}
.y45{bottom:225.846267pt;}
.y1ec{bottom:229.593067pt;}
.y1c7{bottom:232.099733pt;}
.y149{bottom:232.111733pt;}
.y1ba{bottom:232.133067pt;}
.y162{bottom:232.153067pt;}
.y83{bottom:232.206400pt;}
.y134{bottom:232.211733pt;}
.y5f{bottom:232.217067pt;}
.y186{bottom:232.222400pt;}
.ybf{bottom:232.227733pt;}
.y194{bottom:232.238400pt;}
.ye5{bottom:232.249067pt;}
.y176{bottom:233.571733pt;}
.yd1{bottom:239.178133pt;}
.yfd{bottom:239.178267pt;}
.y44{bottom:239.179600pt;}
.ya3{bottom:240.259733pt;}
.y1a{bottom:242.669733pt;}
.y1eb{bottom:244.259733pt;}
.y1c6{bottom:250.771733pt;}
.y148{bottom:250.783733pt;}
.y1b9{bottom:250.805067pt;}
.y161{bottom:250.825067pt;}
.y82{bottom:250.878400pt;}
.y133{bottom:250.883733pt;}
.y5e{bottom:250.889067pt;}
.y185{bottom:250.894400pt;}
.ybe{bottom:250.899733pt;}
.y117{bottom:250.910400pt;}
.ye4{bottom:250.921067pt;}
.y175{bottom:252.243733pt;}
.yfc{bottom:252.511600pt;}
.ya2{bottom:254.926400pt;}
.yd0{bottom:256.031467pt;}
.y43{bottom:256.032933pt;}
.y19{bottom:257.336400pt;}
.y1ea{bottom:258.926400pt;}
.yfb{bottom:265.844933pt;}
.y1c5{bottom:269.443733pt;}
.y147{bottom:269.455733pt;}
.y1b8{bottom:269.477067pt;}
.y160{bottom:269.497067pt;}
.y81{bottom:269.550400pt;}
.y132{bottom:269.555733pt;}
.y5d{bottom:269.561067pt;}
.y184{bottom:269.566400pt;}
.ybd{bottom:269.571733pt;}
.y116{bottom:269.582400pt;}
.yec{bottom:269.593067pt;}
.y174{bottom:270.915733pt;}
.y18{bottom:272.003067pt;}
.y1e9{bottom:273.593067pt;}
.yfa{bottom:279.178267pt;}
.y17{bottom:286.669733pt;}
.y1c4{bottom:288.115733pt;}
.y146{bottom:288.127733pt;}
.y1b7{bottom:288.149067pt;}
.y15f{bottom:288.169067pt;}
.y41{bottom:288.201067pt;}
.y80{bottom:288.222400pt;}
.ycf{bottom:288.227733pt;}
.y5c{bottom:288.233067pt;}
.ya1{bottom:288.238400pt;}
.ybc{bottom:288.243733pt;}
.yeb{bottom:288.254400pt;}
.y1e8{bottom:288.259733pt;}
.y173{bottom:289.587733pt;}
.yf9{bottom:296.031600pt;}
.y1e7{bottom:302.926400pt;}
.y1c3{bottom:306.787733pt;}
.y145{bottom:306.799733pt;}
.y1b6{bottom:306.821067pt;}
.y15e{bottom:306.841067pt;}
.y115{bottom:306.867733pt;}
.y40{bottom:306.873067pt;}
.y193{bottom:306.889067pt;}
.y7f{bottom:306.894400pt;}
.yce{bottom:306.899733pt;}
.y5b{bottom:306.905067pt;}
.ya0{bottom:306.910400pt;}
.ybb{bottom:306.915733pt;}
.y172{bottom:308.259733pt;}
.y1e6{bottom:317.593067pt;}
.y16{bottom:319.976400pt;}
.y1c2{bottom:325.459733pt;}
.y144{bottom:325.471733pt;}
.y1b5{bottom:325.493067pt;}
.y15d{bottom:325.513067pt;}
.y114{bottom:325.539733pt;}
.y3f{bottom:325.545067pt;}
.y192{bottom:325.561067pt;}
.y7e{bottom:325.566400pt;}
.ycd{bottom:325.571733pt;}
.y5a{bottom:325.577067pt;}
.y9f{bottom:325.582400pt;}
.yba{bottom:325.587733pt;}
.y1e5{bottom:332.259733pt;}
.y15{bottom:338.648400pt;}
.y1c1{bottom:344.131733pt;}
.y1b4{bottom:344.165067pt;}
.y15c{bottom:344.185067pt;}
.yf8{bottom:344.195733pt;}
.y113{bottom:344.211733pt;}
.y3e{bottom:344.217067pt;}
.y191{bottom:344.233067pt;}
.y7d{bottom:344.238400pt;}
.ycc{bottom:344.243733pt;}
.y59{bottom:344.249067pt;}
.y9e{bottom:344.254400pt;}
.yb9{bottom:344.259733pt;}
.y171{bottom:345.593067pt;}
.y1e4{bottom:346.926400pt;}
.y14{bottom:357.320400pt;}
.y170{bottom:360.259733pt;}
.y1e3{bottom:361.593067pt;}
.y143{bottom:362.803733pt;}
.y1b3{bottom:362.837067pt;}
.y15b{bottom:362.857067pt;}
.y183{bottom:362.862400pt;}
.yf7{bottom:362.867733pt;}
.y112{bottom:362.883733pt;}
.y3d{bottom:362.889067pt;}
.y190{bottom:362.905067pt;}
.y7c{bottom:362.910400pt;}
.y9d{bottom:362.915733pt;}
.y58{bottom:362.921067pt;}
.y16f{bottom:374.926400pt;}
.y13{bottom:375.992400pt;}
.y1e2{bottom:376.259733pt;}
.y142{bottom:381.475733pt;}
.y57{bottom:381.487733pt;}
.y1b2{bottom:381.509067pt;}
.y15a{bottom:381.529067pt;}
.y182{bottom:381.534400pt;}
.yf6{bottom:381.539733pt;}
.y111{bottom:381.555733pt;}
.y3c{bottom:381.561067pt;}
.y18f{bottom:381.577067pt;}
.y7b{bottom:381.582400pt;}
.y9c{bottom:381.587733pt;}
.y16e{bottom:389.593067pt;}
.y1e1{bottom:390.926400pt;}
.y12{bottom:394.664400pt;}
.y141{bottom:400.147733pt;}
.y56{bottom:400.159733pt;}
.y131{bottom:400.179733pt;}
.y1b1{bottom:400.181067pt;}
.y159{bottom:400.201067pt;}
.y181{bottom:400.206400pt;}
.yf5{bottom:400.211733pt;}
.y110{bottom:400.227733pt;}
.y3b{bottom:400.233067pt;}
.yb8{bottom:400.243733pt;}
.y18e{bottom:400.249067pt;}
.y7a{bottom:400.254400pt;}
.y9b{bottom:400.259733pt;}
.y16d{bottom:404.259733pt;}
.y1e0{bottom:405.593067pt;}
.y11{bottom:413.336400pt;}
.y140{bottom:418.819733pt;}
.y55{bottom:418.831733pt;}
.y130{bottom:418.851733pt;}
.y1b0{bottom:418.853067pt;}
.y158{bottom:418.873067pt;}
.ye3{bottom:418.878400pt;}
.y79{bottom:418.883733pt;}
.y9a{bottom:418.894400pt;}
.y10f{bottom:418.899733pt;}
.y3a{bottom:418.905067pt;}
.yb7{bottom:418.915733pt;}
.y18d{bottom:418.921067pt;}
.y1df{bottom:420.259733pt;}
.y1de{bottom:434.926400pt;}
.y13f{bottom:437.491733pt;}
.y54{bottom:437.503733pt;}
.y12f{bottom:437.523733pt;}
.y1af{bottom:437.525067pt;}
.y157{bottom:437.545067pt;}
.ye2{bottom:437.550400pt;}
.y78{bottom:437.555733pt;}
.y99{bottom:437.566400pt;}
.y10e{bottom:437.571733pt;}
.y39{bottom:437.577067pt;}
.yb6{bottom:437.587733pt;}
.y18c{bottom:437.593067pt;}
.y1dd{bottom:449.593067pt;}
.y10{bottom:450.669733pt;}
.y13e{bottom:456.163733pt;}
.y12e{bottom:456.195733pt;}
.y1ae{bottom:456.197067pt;}
.y156{bottom:456.217067pt;}
.ye1{bottom:456.222400pt;}
.y77{bottom:456.227733pt;}
.y98{bottom:456.238400pt;}
.y10d{bottom:456.243733pt;}
.y38{bottom:456.249067pt;}
.y1dc{bottom:464.259733pt;}
.yf{bottom:465.336400pt;}
.y53{bottom:474.835733pt;}
.y12d{bottom:474.867733pt;}
.y1ad{bottom:474.869067pt;}
.y155{bottom:474.889067pt;}
.ye0{bottom:474.894400pt;}
.y76{bottom:474.899733pt;}
.y97{bottom:474.910400pt;}
.y10c{bottom:474.915733pt;}
.y37{bottom:474.921067pt;}
.y1db{bottom:478.926400pt;}
.ye{bottom:480.003067pt;}
.y52{bottom:493.507733pt;}
.yb5{bottom:493.519733pt;}
.y12c{bottom:493.539733pt;}
.y1ac{bottom:493.541067pt;}
.y154{bottom:493.561067pt;}
.ydf{bottom:493.566400pt;}
.y75{bottom:493.571733pt;}
.y96{bottom:493.582400pt;}
.y36{bottom:493.587733pt;}
.ycb{bottom:493.593067pt;}
.yd{bottom:494.669733pt;}
.y1da{bottom:508.259733pt;}
.yc{bottom:509.336400pt;}
.y35{bottom:512.179733pt;}
.yb4{bottom:512.191733pt;}
.y12b{bottom:512.211733pt;}
.y1ab{bottom:512.213067pt;}
.y153{bottom:512.233067pt;}
.yde{bottom:512.238400pt;}
.y74{bottom:512.243733pt;}
.yca{bottom:512.249067pt;}
.y95{bottom:512.254400pt;}
.y10b{bottom:512.259733pt;}
.y1d9{bottom:522.926400pt;}
.yb{bottom:524.003067pt;}
.y34{bottom:530.851733pt;}
.yb3{bottom:530.863733pt;}
.y12a{bottom:530.883733pt;}
.y1aa{bottom:530.885067pt;}
.y152{bottom:530.905067pt;}
.y94{bottom:530.910400pt;}
.y73{bottom:530.915733pt;}
.yc9{bottom:530.921067pt;}
.y1d8{bottom:537.593067pt;}
.ya{bottom:538.669733pt;}
.y33{bottom:549.523733pt;}
.yb2{bottom:549.535733pt;}
.y129{bottom:549.555733pt;}
.y1a9{bottom:549.557067pt;}
.yc8{bottom:549.561067pt;}
.y151{bottom:549.577067pt;}
.y93{bottom:549.582400pt;}
.y72{bottom:549.587733pt;}
.y1d7{bottom:552.259733pt;}
.y9{bottom:553.336400pt;}
.y1d6{bottom:566.926400pt;}
.y8{bottom:568.003067pt;}
.y32{bottom:568.195733pt;}
.y71{bottom:568.206400pt;}
.yb1{bottom:568.207733pt;}
.y128{bottom:568.227733pt;}
.y1a8{bottom:568.229067pt;}
.yc7{bottom:568.233067pt;}
.y150{bottom:568.249067pt;}
.y92{bottom:568.254400pt;}
.yf4{bottom:568.259733pt;}
.y1d5{bottom:581.593067pt;}
.y7{bottom:582.669733pt;}
.y31{bottom:586.867733pt;}
.y70{bottom:586.878400pt;}
.yb0{bottom:586.879733pt;}
.y127{bottom:586.899733pt;}
.y1a7{bottom:586.901067pt;}
.y91{bottom:586.905067pt;}
.y14f{bottom:586.921067pt;}
.y180{bottom:586.926400pt;}
.y6{bottom:597.336400pt;}
.y30{bottom:605.539733pt;}
.y6f{bottom:605.550400pt;}
.yaf{bottom:605.551733pt;}
.y126{bottom:605.571733pt;}
.y1a6{bottom:605.573067pt;}
.y90{bottom:605.577067pt;}
.y1d4{bottom:610.926400pt;}
.y5{bottom:612.003067pt;}
.y2f{bottom:624.211733pt;}
.y6e{bottom:624.222400pt;}
.yae{bottom:624.223733pt;}
.y125{bottom:624.243733pt;}
.y1a5{bottom:624.245067pt;}
.y8f{bottom:624.249067pt;}
.y4{bottom:626.669733pt;}
.y3{bottom:641.336400pt;}
.y2e{bottom:642.883733pt;}
.y6d{bottom:642.894400pt;}
.y124{bottom:642.915733pt;}
.y8e{bottom:642.921067pt;}
.y1d3{bottom:654.926400pt;}
.y2d{bottom:661.555733pt;}
.y6c{bottom:661.566400pt;}
.y1a4{bottom:661.577067pt;}
.y123{bottom:661.587733pt;}
.y1d2{bottom:669.593067pt;}
.y2c{bottom:680.227733pt;}
.y16c{bottom:680.233067pt;}
.y6b{bottom:680.238400pt;}
.y1a3{bottom:680.249067pt;}
.y1d1{bottom:684.259733pt;}
.y2{bottom:693.336400pt;}
.y2b{bottom:698.899733pt;}
.y16b{bottom:698.905067pt;}
.y6a{bottom:698.910400pt;}
.y1d0{bottom:698.911733pt;}
.y1a2{bottom:698.921067pt;}
.y2a{bottom:717.571733pt;}
.y16a{bottom:717.577067pt;}
.y69{bottom:717.582400pt;}
.y1{bottom:730.669733pt;}
.y1fb{bottom:734.593067pt;}
.y29{bottom:736.243733pt;}
.y169{bottom:736.249067pt;}
.y68{bottom:736.254400pt;}
.y1fa{bottom:749.259733pt;}
.y28{bottom:754.915733pt;}
.y168{bottom:754.921067pt;}
.y1f9{bottom:763.926400pt;}
.y27{bottom:773.587733pt;}
.y1f8{bottom:778.593067pt;}
.y24{bottom:786.747867pt;}
.y26{bottom:792.259733pt;}
.y1f7{bottom:793.259733pt;}
.y42{bottom:839.555733pt;}
.y25{bottom:902.644933pt;}
.h16{height:21.204800pt;}
.h7{height:21.205333pt;}
.hb{height:23.072000pt;}
.h8{height:31.375000pt;}
.h3{height:34.608000pt;}
.he{height:35.281600pt;}
.h4{height:35.285333pt;}
.h6{height:39.657600pt;}
.h5{height:39.696000pt;}
.h18{height:39.700267pt;}
.ha{height:39.717333pt;}
.h1e{height:39.721600pt;}
.hf{height:39.738667pt;}
.h14{height:39.760000pt;}
.h21{height:39.764267pt;}
.h13{height:39.781333pt;}
.h15{height:39.785600pt;}
.h1a{height:39.802667pt;}
.h19{height:39.824000pt;}
.hd{height:39.828267pt;}
.h12{height:39.845333pt;}
.h11{height:39.866667pt;}
.h22{height:39.870933pt;}
.h1c{height:39.888000pt;}
.h1f{height:39.892267pt;}
.h10{height:39.909333pt;}
.h1b{height:39.930667pt;}
.h23{height:39.952000pt;}
.h17{height:39.989333pt;}
.h9{height:40.016000pt;}
.h1d{height:40.037333pt;}
.h24{height:40.041600pt;}
.h25{height:40.084267pt;}
.hc{height:40.117333pt;}
.h26{height:40.128000pt;}
.h20{height:40.356267pt;}
.h2{height:66.880000pt;}
.h1{height:876.666667pt;}
.h0{height:876.850000pt;}
.w1{width:589.333333pt;}
.w0{width:589.606000pt;}
.x0{left:0.000000pt;}
.x6{left:1.287200pt;}
.x7{left:3.999600pt;}
.xa{left:37.794667pt;}
.x5{left:56.691867pt;}
.x1{left:94.487200pt;}
.x8{left:98.267067pt;}
.x14{left:105.953867pt;}
.x3{left:106.953067pt;}
.x15{left:109.744400pt;}
.x9{left:111.179067pt;}
.x4{left:113.384800pt;}
.xb{left:117.175333pt;}
.xf{left:288.131200pt;}
.xc{left:290.042400pt;}
.x2{left:291.478267pt;}
.xe{left:292.391067pt;}
.x12{left:322.185467pt;}
.x11{left:344.500133pt;}
.x13{left:405.620133pt;}
.x10{left:422.663200pt;}
.xd{left:507.170000pt;}
}




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