
    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_b9d7ad5be89b4986636acd57.woff')format("woff");}.ff1{font-family:ff1;line-height:1.133301;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_a6fcb295e4414ca308b191f2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.016113;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_a810f47cdf6e5a8138d01157.woff')format("woff");}.ff3{font-family:ff3;line-height:1.193848;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_4358d57e0dd66274f581819a.woff')format("woff");}.ff4{font-family:ff4;line-height:1.016113;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_05975c91899aed91272150fd.woff')format("woff");}.ff5{font-family:ff5;line-height:1.133789;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_bc09e35fcbe6ce731e8a43bf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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:ff7;src:url('chunks/assets/font_ceba4584721bf60c55840691.woff')format("woff");}.ff7{font-family:ff7;line-height:1.105957;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:ff8;src:url('chunks/assets/font_46d4650aad9d5078b69151f8.woff')format("woff");}.ff8{font-family:ff8;line-height:0.833984;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.432400px;}
.ls10{letter-spacing:-7.038000px;}
.lsb{letter-spacing:-5.460000px;}
.ls12{letter-spacing:-5.175000px;}
.lsc{letter-spacing:-1.215000px;}
.ls17{letter-spacing:-0.972000px;}
.lsd{letter-spacing:-0.855000px;}
.ls3{letter-spacing:-0.648000px;}
.lse{letter-spacing:-0.627000px;}
.ls16{letter-spacing:-0.570000px;}
.ls13{letter-spacing:-0.171000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:1.092000px;}
.ls2{letter-spacing:1.260000px;}
.ls6{letter-spacing:2.400000px;}
.ls1c{letter-spacing:3.213000px;}
.ls1b{letter-spacing:3.263400px;}
.ls9{letter-spacing:4.200000px;}
.lsf{letter-spacing:5.025000px;}
.lsa{letter-spacing:5.760000px;}
.ls5{letter-spacing:5.880000px;}
.ls1{letter-spacing:6.000000px;}
.ls8{letter-spacing:6.300000px;}
.ls7{letter-spacing:6.675000px;}
.ls18{letter-spacing:6.867000px;}
.ls20{letter-spacing:8.265600px;}
.ls1f{letter-spacing:8.442000px;}
.ls19{letter-spacing:14.238000px;}
.ls1a{letter-spacing:14.256900px;}
.ls15{letter-spacing:16.254000px;}
.ls11{letter-spacing:21.045000px;}
.ls1d{letter-spacing:28.980000px;}
.ls1e{letter-spacing:29.043000px;}
.ls14{letter-spacing:32.823000px;}
.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;}
}
.ws0{word-spacing:-29.700000px;}
.ws6{word-spacing:-27.750000px;}
.ws19{word-spacing:-26.100000px;}
.ws25{word-spacing:-24.570000px;}
.ws2a{word-spacing:-22.860000px;}
.ws1{word-spacing:-22.740000px;}
.wsa{word-spacing:-22.620000px;}
.ws24{word-spacing:-21.789000px;}
.wsf{word-spacing:-21.546000px;}
.ws11{word-spacing:-19.389000px;}
.ws12{word-spacing:-18.630000px;}
.ws7{word-spacing:-18.102000px;}
.ws29{word-spacing:-17.703000px;}
.ws14{word-spacing:-17.043000px;}
.ws8{word-spacing:-16.860000px;}
.ws26{word-spacing:-15.561000px;}
.ws9{word-spacing:-14.820000px;}
.ws1e{word-spacing:-11.868000px;}
.ws10{word-spacing:-11.303787px;}
.ws1a{word-spacing:-10.005000px;}
.ws28{word-spacing:-6.300000px;}
.ws3{word-spacing:-6.000000px;}
.wsd{word-spacing:-5.460000px;}
.wsc{word-spacing:-4.200000px;}
.wsb{word-spacing:-2.400000px;}
.ws4{word-spacing:-1.260000px;}
.ws5{word-spacing:-1.092000px;}
.ws2{word-spacing:0.000000px;}
.ws1f{word-spacing:0.171000px;}
.ws27{word-spacing:0.570000px;}
.ws15{word-spacing:0.627000px;}
.ws13{word-spacing:0.855000px;}
.ws20{word-spacing:1.518000px;}
.ws1d{word-spacing:2.208000px;}
.ws21{word-spacing:3.243000px;}
.ws22{word-spacing:3.657000px;}
.ws23{word-spacing:3.726000px;}
.ws17{word-spacing:4.209000px;}
.ws18{word-spacing:4.485000px;}
.ws1c{word-spacing:5.106000px;}
.wse{word-spacing:5.460000px;}
.ws16{word-spacing:11.385000px;}
.ws1b{word-spacing:14.283000px;}
._24{margin-left:-19.446000px;}
._1e{margin-left:-11.103600px;}
._1d{margin-left:-9.522600px;}
._1b{margin-left:-7.583100px;}
._a{margin-left:-6.566100px;}
._4{margin-left:-5.385900px;}
._5{margin-left:-3.834000px;}
._3{margin-left:-2.003400px;}
._20{margin-left:-1.000500px;}
._8{width:1.008000px;}
._1{width:2.400000px;}
._9{width:4.280700px;}
._6{width:5.394000px;}
._7{width:6.899400px;}
._c{width:8.880000px;}
._b{width:9.912000px;}
._e{width:11.130000px;}
._19{width:12.316500px;}
._12{width:13.422000px;}
._11{width:15.324000px;}
._18{width:16.384800px;}
._10{width:18.372000px;}
._13{width:20.376000px;}
._1c{width:21.845400px;}
._22{width:22.991100px;}
._21{width:24.753600px;}
._15{width:26.489400px;}
._2e{width:27.642000px;}
._26{width:29.262900px;}
._25{width:30.548700px;}
._2c{width:31.580700px;}
._32{width:32.799000px;}
._2b{width:34.258800px;}
._17{width:35.265900px;}
._1f{width:36.446400px;}
._29{width:37.742400px;}
._33{width:38.808900px;}
._2a{width:40.106400px;}
._2f{width:41.464200px;}
._36{width:49.631400px;}
._31{width:51.571800px;}
._35{width:62.275500px;}
._34{width:63.762300px;}
._16{width:85.554000px;}
._30{width:90.732600px;}
._f{width:260.610000px;}
._d{width:455.146200px;}
._1a{width:456.177000px;}
._2d{width:457.335000px;}
._28{width:459.712200px;}
._0{width:578.400000px;}
._2{width:955.711200px;}
._23{width:958.831200px;}
._27{width:962.881200px;}
._14{width:964.861200px;}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:40.227000px;}
.fs6{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fsa{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:63.000000px;}
.fs8{font-size:69.000000px;}
.fs1{font-size:75.000000px;}
.fs7{font-size:81.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y171{bottom:106.118850px;}
.y90{bottom:106.165350px;}
.y68{bottom:106.235250px;}
.yee{bottom:106.268850px;}
.y12e{bottom:106.271850px;}
.yc1{bottom:106.275600px;}
.y108{bottom:106.278450px;}
.yc8{bottom:106.292100px;}
.y44{bottom:106.292250px;}
.y1d{bottom:106.294650px;}
.yb3{bottom:106.296900px;}
.y14e{bottom:106.345650px;}
.y1c{bottom:125.959650px;}
.y43{bottom:126.587250px;}
.y8f{bottom:126.589350px;}
.y67{bottom:126.711000px;}
.y170{bottom:126.719850px;}
.y12d{bottom:126.971850px;}
.yc0{bottom:127.010100px;}
.yc7{bottom:127.026600px;}
.yb2{bottom:127.031400px;}
.yed{bottom:127.227600px;}
.y107{bottom:127.237200px;}
.y14d{bottom:127.497900px;}
.y42{bottom:146.882250px;}
.y8e{bottom:147.013350px;}
.y66{bottom:147.186750px;}
.y16f{bottom:147.320850px;}
.y12c{bottom:147.671850px;}
.ybf{bottom:147.744600px;}
.yc6{bottom:147.761100px;}
.yec{bottom:148.186350px;}
.y106{bottom:148.195950px;}
.y14c{bottom:157.155150px;}
.y1b{bottom:158.374650px;}
.y1c0{bottom:165.684750px;}
.y41{bottom:167.177250px;}
.y8d{bottom:167.437350px;}
.y65{bottom:167.662500px;}
.y12b{bottom:168.371850px;}
.ybe{bottom:168.479100px;}
.yc5{bottom:168.495600px;}
.yb1{bottom:169.023150px;}
.yeb{bottom:169.145100px;}
.y105{bottom:169.154700px;}
.y16e{bottom:176.426850px;}
.y14b{bottom:178.307400px;}
.y1bf{bottom:185.934750px;}
.y40{bottom:187.472250px;}
.y8c{bottom:187.861350px;}
.y64{bottom:188.138250px;}
.y12a{bottom:188.866950px;}
.ybd{bottom:189.213600px;}
.yea{bottom:190.103850px;}
.y104{bottom:190.113450px;}
.yb0{bottom:193.505400px;}
.y16d{bottom:197.027850px;}
.y14a{bottom:199.459650px;}
.y1be{bottom:206.184750px;}
.y3f{bottom:207.767250px;}
.y8b{bottom:208.285350px;}
.y63{bottom:208.614000px;}
.y129{bottom:209.566950px;}
.ybc{bottom:209.948100px;}
.yc4{bottom:210.487350px;}
.ye9{bottom:211.062600px;}
.y103{bottom:211.072200px;}
.y1a{bottom:216.308850px;}
.y16c{bottom:217.628850px;}
.yaf{bottom:217.987650px;}
.y1bd{bottom:226.434750px;}
.y3e{bottom:228.062250px;}
.y8a{bottom:228.709350px;}
.y62{bottom:229.089750px;}
.y149{bottom:229.116900px;}
.y128{bottom:230.266950px;}
.ybb{bottom:230.682600px;}
.ye8{bottom:232.021350px;}
.y102{bottom:232.030950px;}
.yc3{bottom:234.969600px;}
.y16b{bottom:238.229850px;}
.y19{bottom:243.461850px;}
.y1bc{bottom:246.684750px;}
.y3d{bottom:248.357250px;}
.y89{bottom:249.133350px;}
.y61{bottom:249.565500px;}
.y148{bottom:250.269150px;}
.y127{bottom:250.966950px;}
.yba{bottom:251.417100px;}
.ye7{bottom:252.980100px;}
.y101{bottom:252.989700px;}
.y16a{bottom:258.830850px;}
.yc2{bottom:259.451850px;}
.y3c{bottom:268.652250px;}
.y88{bottom:269.557350px;}
.y60{bottom:270.041250px;}
.y126{bottom:271.666950px;}
.yb9{bottom:272.151600px;}
.ye6{bottom:273.938850px;}
.y100{bottom:273.948450px;}
.y17f{bottom:279.431850px;}
.y1bb{bottom:279.684750px;}
.y147{bottom:279.926400px;}
.yae{bottom:280.666350px;}
.y169{bottom:287.936850px;}
.y3b{bottom:288.947250px;}
.y87{bottom:289.981350px;}
.y5f{bottom:290.403150px;}
.y18{bottom:291.858900px;}
.y125{bottom:292.366950px;}
.yb8{bottom:292.886100px;}
.ye5{bottom:294.897600px;}
.yff{bottom:294.907200px;}
.y1ba{bottom:299.934750px;}
.y17e{bottom:300.032850px;}
.yad{bottom:301.400850px;}
.y168{bottom:308.537850px;}
.y3a{bottom:309.242250px;}
.y86{bottom:310.405350px;}
.y5e{bottom:310.878900px;}
.y124{bottom:313.066950px;}
.yb7{bottom:313.620600px;}
.ye4{bottom:315.856350px;}
.yfe{bottom:315.865950px;}
.y1b9{bottom:320.184750px;}
.yac{bottom:322.135350px;}
.y17{bottom:323.529900px;}
.y1a0{bottom:326.051850px;}
.y167{bottom:329.138850px;}
.y39{bottom:329.537250px;}
.y85{bottom:330.829350px;}
.y5d{bottom:331.354650px;}
.y146{bottom:331.490700px;}
.y123{bottom:333.766950px;}
.ye3{bottom:336.815100px;}
.yfd{bottom:336.824700px;}
.y1b8{bottom:340.434750px;}
.yab{bottom:342.869850px;}
.y19f{bottom:346.306350px;}
.y17d{bottom:349.739850px;}
.y38{bottom:349.832250px;}
.y84{bottom:351.253350px;}
.y5c{bottom:351.830400px;}
.y145{bottom:352.656450px;}
.y122{bottom:354.466950px;}
.y16{bottom:355.200900px;}
.yb6{bottom:355.612350px;}
.ye2{bottom:357.773850px;}
.yfc{bottom:357.783450px;}
.y166{bottom:358.244850px;}
.y1b7{bottom:360.684750px;}
.yaa{bottom:363.604350px;}
.y19e{bottom:366.560850px;}
.y37{bottom:370.127250px;}
.y186{bottom:370.340850px;}
.y83{bottom:371.677350px;}
.y5b{bottom:372.306150px;}
.y144{bottom:373.822200px;}
.y121{bottom:375.166950px;}
.ye1{bottom:378.732600px;}
.yfb{bottom:378.742200px;}
.y165{bottom:378.845850px;}
.yb5{bottom:380.094600px;}
.ya9{bottom:384.338850px;}
.y19d{bottom:386.815350px;}
.y82{bottom:392.101350px;}
.y5a{bottom:392.781900px;}
.y1b6{bottom:393.684750px;}
.y143{bottom:394.987950px;}
.y120{bottom:395.866950px;}
.y164{bottom:399.446850px;}
.ye0{bottom:399.691350px;}
.yfa{bottom:399.700950px;}
.y36{bottom:403.172250px;}
.yb4{bottom:404.576850px;}
.ya8{bottom:405.073350px;}
.y19c{bottom:407.069850px;}
.y81{bottom:412.525350px;}
.y59{bottom:413.257650px;}
.y1b5{bottom:413.934750px;}
.y142{bottom:416.153700px;}
.y11f{bottom:416.566950px;}
.y15{bottom:416.601300px;}
.y17c{bottom:420.047850px;}
.ydf{bottom:420.650100px;}
.yf9{bottom:420.659700px;}
.ya7{bottom:425.807850px;}
.y163{bottom:428.552850px;}
.y80{bottom:432.949350px;}
.y58{bottom:433.733400px;}
.y1b4{bottom:434.184750px;}
.y19b{bottom:435.829350px;}
.y11e{bottom:437.266950px;}
.y141{bottom:437.319450px;}
.y185{bottom:440.648850px;}
.yde{bottom:441.608850px;}
.yf8{bottom:441.618450px;}
.y14{bottom:446.271300px;}
.ya6{bottom:446.542350px;}
.y162{bottom:449.153850px;}
.y35{bottom:453.227250px;}
.y7f{bottom:453.373350px;}
.y57{bottom:454.209150px;}
.y1b3{bottom:454.434750px;}
.y19a{bottom:456.083850px;}
.y11d{bottom:457.966950px;}
.y140{bottom:458.485200px;}
.ydd{bottom:462.567600px;}
.yf7{bottom:462.577200px;}
.ya5{bottom:467.276850px;}
.y13{bottom:467.436300px;}
.y161{bottom:469.754850px;}
.y7e{bottom:473.797350px;}
.y1b2{bottom:474.684750px;}
.y56{bottom:474.684900px;}
.y34{bottom:475.022250px;}
.y199{bottom:476.338350px;}
.y11c{bottom:478.666950px;}
.y13f{bottom:479.650950px;}
.ydc{bottom:483.526350px;}
.yf6{bottom:483.535950px;}
.ya4{bottom:488.011350px;}
.y17b{bottom:490.355850px;}
.y7d{bottom:494.221350px;}
.y55{bottom:495.160650px;}
.y198{bottom:496.592850px;}
.y33{bottom:496.817250px;}
.y12{bottom:497.106300px;}
.y160{bottom:498.860850px;}
.y11b{bottom:499.366950px;}
.y13e{bottom:500.816700px;}
.ydb{bottom:504.485100px;}
.yf5{bottom:504.494700px;}
.y1b1{bottom:507.684750px;}
.ya3{bottom:508.745850px;}
.y17a{bottom:510.956850px;}
.y7c{bottom:514.645350px;}
.y54{bottom:515.636400px;}
.y197{bottom:516.847350px;}
.y11{bottom:518.271300px;}
.y32{bottom:518.592750px;}
.y15f{bottom:519.461850px;}
.y11a{bottom:520.066950px;}
.y13d{bottom:521.982450px;}
.yda{bottom:525.443850px;}
.yf4{bottom:525.453450px;}
.ya2{bottom:529.480350px;}
.y179{bottom:531.557850px;}
.y7b{bottom:535.069350px;}
.y53{bottom:536.112150px;}
.y196{bottom:537.101850px;}
.y31{bottom:538.887750px;}
.y10{bottom:539.431050px;}
.y15e{bottom:540.062850px;}
.y119{bottom:540.766950px;}
.y13c{bottom:543.148200px;}
.yd9{bottom:546.402600px;}
.yf3{bottom:546.412200px;}
.y1b0{bottom:549.189750px;}
.ya1{bottom:550.214850px;}
.y7a{bottom:555.493350px;}
.y52{bottom:556.587900px;}
.y195{bottom:557.356350px;}
.y30{bottom:559.182750px;}
.y178{bottom:560.663850px;}
.y118{bottom:561.466950px;}
.y13b{bottom:564.313950px;}
.yd8{bottom:567.361350px;}
.yf2{bottom:567.370950px;}
.y1af{bottom:568.689750px;}
.y15d{bottom:569.168850px;}
.ya0{bottom:570.949350px;}
.y79{bottom:575.917350px;}
.y51{bottom:577.063650px;}
.y194{bottom:577.610850px;}
.y2f{bottom:579.477750px;}
.y177{bottom:581.264850px;}
.y117{bottom:582.166950px;}
.y13a{bottom:585.479700px;}
.yf{bottom:586.080450px;}
.y1ae{bottom:588.189750px;}
.yd7{bottom:588.320100px;}
.yf1{bottom:588.329700px;}
.y15c{bottom:589.769850px;}
.y9f{bottom:591.683850px;}
.y78{bottom:596.341350px;}
.y50{bottom:597.539400px;}
.y193{bottom:597.865350px;}
.y2e{bottom:599.772750px;}
.y176{bottom:601.865850px;}
.y116{bottom:602.866950px;}
.y139{bottom:606.645450px;}
.ye{bottom:607.245450px;}
.y1ad{bottom:607.689750px;}
.yd6{bottom:609.278850px;}
.yf0{bottom:609.288450px;}
.y15b{bottom:610.370850px;}
.y9e{bottom:612.418350px;}
.y77{bottom:616.765350px;}
.y4f{bottom:618.015150px;}
.y2d{bottom:620.067750px;}
.y184{bottom:622.466850px;}
.y115{bottom:623.566950px;}
.y192{bottom:626.624850px;}
.y1ac{bottom:627.189750px;}
.y138{bottom:627.811200px;}
.yd{bottom:628.410450px;}
.yd5{bottom:630.237600px;}
.yef{bottom:630.247200px;}
.y15a{bottom:630.971850px;}
.y9d{bottom:633.152850px;}
.y76{bottom:637.189350px;}
.y2c{bottom:640.362750px;}
.y183{bottom:643.067850px;}
.y114{bottom:644.266950px;}
.y1ab{bottom:646.689750px;}
.y191{bottom:646.879350px;}
.y137{bottom:648.976950px;}
.yd4{bottom:651.196350px;}
.y175{bottom:651.572850px;}
.y9c{bottom:653.887350px;}
.y75{bottom:657.613350px;}
.yc{bottom:658.080450px;}
.y4e{bottom:659.743650px;}
.y159{bottom:660.077850px;}
.y2b{bottom:660.657750px;}
.y113{bottom:664.966950px;}
.y1aa{bottom:666.189750px;}
.y136{bottom:670.142700px;}
.yd3{bottom:672.155100px;}
.y182{bottom:672.173850px;}
.y9b{bottom:674.621850px;}
.y190{bottom:675.638850px;}
.y74{bottom:678.037350px;}
.yb{bottom:679.245450px;}
.y158{bottom:680.678850px;}
.y2a{bottom:680.952750px;}
.y112{bottom:685.666950px;}
.y1a9{bottom:685.689750px;}
.y135{bottom:691.308450px;}
.y181{bottom:692.774850px;}
.yd2{bottom:693.113850px;}
.y9a{bottom:695.356350px;}
.y18f{bottom:695.893350px;}
.y73{bottom:698.461350px;}
.ya{bottom:700.405200px;}
.y29{bottom:701.247750px;}
.y157{bottom:701.279850px;}
.y1a8{bottom:705.189750px;}
.y111{bottom:706.366950px;}
.yd1{bottom:714.072600px;}
.y99{bottom:716.090850px;}
.y18e{bottom:716.147850px;}
.y72{bottom:718.885350px;}
.y28{bottom:721.542750px;}
.y156{bottom:721.880850px;}
.y4d{bottom:722.217300px;}
.y1a7{bottom:724.689750px;}
.y110{bottom:727.066950px;}
.y134{bottom:733.727550px;}
.yd0{bottom:735.031350px;}
.y98{bottom:736.825350px;}
.y71{bottom:739.309350px;}
.y27{bottom:741.837750px;}
.y174{bottom:742.481850px;}
.y4c{bottom:743.442300px;}
.y1a6{bottom:744.189750px;}
.y18d{bottom:744.907350px;}
.y9{bottom:747.044100px;}
.y10f{bottom:747.766950px;}
.y155{bottom:750.986850px;}
.ycf{bottom:755.990100px;}
.y97{bottom:757.559850px;}
.y70{bottom:759.733350px;}
.y26{bottom:762.132750px;}
.y173{bottom:763.082850px;}
.y1a5{bottom:763.689750px;}
.y4b{bottom:764.667300px;}
.y18c{bottom:765.161850px;}
.y8{bottom:768.209100px;}
.y10e{bottom:768.466950px;}
.y154{bottom:771.587850px;}
.yce{bottom:776.948850px;}
.y96{bottom:778.294350px;}
.y6f{bottom:780.157350px;}
.y25{bottom:782.427750px;}
.y1a4{bottom:783.189750px;}
.y172{bottom:783.683850px;}
.y18b{bottom:785.416350px;}
.y4a{bottom:785.847750px;}
.y10d{bottom:789.166950px;}
.y7{bottom:789.374100px;}
.y153{bottom:792.188850px;}
.y133{bottom:796.872600px;}
.ycd{bottom:797.907600px;}
.y95{bottom:799.028850px;}
.y6e{bottom:800.581350px;}
.y24{bottom:802.722750px;}
.y49{bottom:805.572750px;}
.y10c{bottom:809.866950px;}
.y6{bottom:810.539100px;}
.y152{bottom:812.789850px;}
.y18a{bottom:814.175850px;}
.y1a3{bottom:815.439750px;}
.y132{bottom:818.038350px;}
.ycc{bottom:818.866350px;}
.y94{bottom:819.763350px;}
.y6d{bottom:821.005350px;}
.y23{bottom:823.017750px;}
.y48{bottom:825.297750px;}
.y5{bottom:831.704100px;}
.y151{bottom:833.390850px;}
.y189{bottom:834.430350px;}
.y131{bottom:839.204100px;}
.ycb{bottom:839.825100px;}
.y93{bottom:840.497850px;}
.y6c{bottom:841.429350px;}
.y22{bottom:843.312750px;}
.y47{bottom:845.022750px;}
.y10b{bottom:851.822700px;}
.y150{bottom:853.991850px;}
.y188{bottom:854.684850px;}
.y130{bottom:860.369850px;}
.yca{bottom:860.783850px;}
.y92{bottom:861.232350px;}
.y4{bottom:861.374100px;}
.y6b{bottom:861.853350px;}
.y180{bottom:862.496850px;}
.y21{bottom:863.607750px;}
.y46{bottom:864.747750px;}
.y1a2{bottom:873.201450px;}
.y10a{bottom:876.264450px;}
.y12f{bottom:881.535600px;}
.yc9{bottom:881.742600px;}
.y91{bottom:881.966850px;}
.y6a{bottom:882.277350px;}
.y3{bottom:882.539100px;}
.y14f{bottom:883.097850px;}
.y187{bottom:883.444350px;}
.y20{bottom:883.902750px;}
.y45{bottom:884.472750px;}
.y1a1{bottom:900.207450px;}
.y109{bottom:900.706200px;}
.y69{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y1f{bottom:904.197750px;}
.y1e{bottom:948.189000px;}
.h8{height:42.070312px;}
.ha{height:46.992188px;}
.h5{height:49.341797px;}
.h4{height:52.587891px;}
.h3{height:55.217285px;}
.h9{height:56.191406px;}
.h12{height:59.000977px;}
.hc{height:60.476074px;}
.h10{height:60.514474px;}
.hf{height:60.880371px;}
.hd{height:60.931474px;}
.h11{height:61.295674px;}
.he{height:64.620117px;}
.h2{height:65.734863px;}
.hb{height:70.993652px;}
.h7{height:73.623047px;}
.h6{height:94.658203px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.936550px;}
.x6{left:82.214250px;}
.x8{left:83.879250px;}
.x1{left:85.039350px;}
.xa{left:102.690900px;}
.x5{left:105.030750px;}
.x7{left:106.361700px;}
.xb{left:212.663850px;}
.x4{left:230.624400px;}
.x3{left:232.447500px;}
.x2{left:233.581500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.495467pt;}
.ls10{letter-spacing:-6.256000pt;}
.lsb{letter-spacing:-4.853333pt;}
.ls12{letter-spacing:-4.600000pt;}
.lsc{letter-spacing:-1.080000pt;}
.ls17{letter-spacing:-0.864000pt;}
.lsd{letter-spacing:-0.760000pt;}
.ls3{letter-spacing:-0.576000pt;}
.lse{letter-spacing:-0.557333pt;}
.ls16{letter-spacing:-0.506667pt;}
.ls13{letter-spacing:-0.152000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.970667pt;}
.ls2{letter-spacing:1.120000pt;}
.ls6{letter-spacing:2.133333pt;}
.ls1c{letter-spacing:2.856000pt;}
.ls1b{letter-spacing:2.900800pt;}
.ls9{letter-spacing:3.733333pt;}
.lsf{letter-spacing:4.466667pt;}
.lsa{letter-spacing:5.120000pt;}
.ls5{letter-spacing:5.226667pt;}
.ls1{letter-spacing:5.333333pt;}
.ls8{letter-spacing:5.600000pt;}
.ls7{letter-spacing:5.933333pt;}
.ls18{letter-spacing:6.104000pt;}
.ls20{letter-spacing:7.347200pt;}
.ls1f{letter-spacing:7.504000pt;}
.ls19{letter-spacing:12.656000pt;}
.ls1a{letter-spacing:12.672800pt;}
.ls15{letter-spacing:14.448000pt;}
.ls11{letter-spacing:18.706667pt;}
.ls1d{letter-spacing:25.760000pt;}
.ls1e{letter-spacing:25.816000pt;}
.ls14{letter-spacing:29.176000pt;}
.ws0{word-spacing:-26.400000pt;}
.ws6{word-spacing:-24.666667pt;}
.ws19{word-spacing:-23.200000pt;}
.ws25{word-spacing:-21.840000pt;}
.ws2a{word-spacing:-20.320000pt;}
.ws1{word-spacing:-20.213333pt;}
.wsa{word-spacing:-20.106667pt;}
.ws24{word-spacing:-19.368000pt;}
.wsf{word-spacing:-19.152000pt;}
.ws11{word-spacing:-17.234667pt;}
.ws12{word-spacing:-16.560000pt;}
.ws7{word-spacing:-16.090667pt;}
.ws29{word-spacing:-15.736000pt;}
.ws14{word-spacing:-15.149333pt;}
.ws8{word-spacing:-14.986667pt;}
.ws26{word-spacing:-13.832000pt;}
.ws9{word-spacing:-13.173333pt;}
.ws1e{word-spacing:-10.549333pt;}
.ws10{word-spacing:-10.047811pt;}
.ws1a{word-spacing:-8.893333pt;}
.ws28{word-spacing:-5.600000pt;}
.ws3{word-spacing:-5.333333pt;}
.wsd{word-spacing:-4.853333pt;}
.wsc{word-spacing:-3.733333pt;}
.wsb{word-spacing:-2.133333pt;}
.ws4{word-spacing:-1.120000pt;}
.ws5{word-spacing:-0.970667pt;}
.ws2{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.152000pt;}
.ws27{word-spacing:0.506667pt;}
.ws15{word-spacing:0.557333pt;}
.ws13{word-spacing:0.760000pt;}
.ws20{word-spacing:1.349333pt;}
.ws1d{word-spacing:1.962667pt;}
.ws21{word-spacing:2.882667pt;}
.ws22{word-spacing:3.250667pt;}
.ws23{word-spacing:3.312000pt;}
.ws17{word-spacing:3.741333pt;}
.ws18{word-spacing:3.986667pt;}
.ws1c{word-spacing:4.538667pt;}
.wse{word-spacing:4.853333pt;}
.ws16{word-spacing:10.120000pt;}
.ws1b{word-spacing:12.696000pt;}
._24{margin-left:-17.285333pt;}
._1e{margin-left:-9.869867pt;}
._1d{margin-left:-8.464533pt;}
._1b{margin-left:-6.740533pt;}
._a{margin-left:-5.836533pt;}
._4{margin-left:-4.787467pt;}
._5{margin-left:-3.408000pt;}
._3{margin-left:-1.780800pt;}
._20{margin-left:-0.889333pt;}
._8{width:0.896000pt;}
._1{width:2.133333pt;}
._9{width:3.805067pt;}
._6{width:4.794667pt;}
._7{width:6.132800pt;}
._c{width:7.893333pt;}
._b{width:8.810667pt;}
._e{width:9.893333pt;}
._19{width:10.948000pt;}
._12{width:11.930667pt;}
._11{width:13.621333pt;}
._18{width:14.564267pt;}
._10{width:16.330667pt;}
._13{width:18.112000pt;}
._1c{width:19.418133pt;}
._22{width:20.436533pt;}
._21{width:22.003200pt;}
._15{width:23.546133pt;}
._2e{width:24.570667pt;}
._26{width:26.011467pt;}
._25{width:27.154400pt;}
._2c{width:28.071733pt;}
._32{width:29.154667pt;}
._2b{width:30.452267pt;}
._17{width:31.347467pt;}
._1f{width:32.396800pt;}
._29{width:33.548800pt;}
._33{width:34.496800pt;}
._2a{width:35.650133pt;}
._2f{width:36.857067pt;}
._36{width:44.116800pt;}
._31{width:45.841600pt;}
._35{width:55.356000pt;}
._34{width:56.677600pt;}
._16{width:76.048000pt;}
._30{width:80.651200pt;}
._f{width:231.653333pt;}
._d{width:404.574400pt;}
._1a{width:405.490667pt;}
._2d{width:406.520000pt;}
._28{width:408.633067pt;}
._0{width:514.133333pt;}
._2{width:849.521067pt;}
._23{width:852.294400pt;}
._27{width:855.894400pt;}
._14{width:857.654400pt;}
.fs9{font-size:35.757333pt;}
.fs6{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fsa{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:56.000000pt;}
.fs8{font-size:61.333333pt;}
.fs1{font-size:66.666667pt;}
.fs7{font-size:72.000000pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y171{bottom:94.327867pt;}
.y90{bottom:94.369200pt;}
.y68{bottom:94.431333pt;}
.yee{bottom:94.461200pt;}
.y12e{bottom:94.463867pt;}
.yc1{bottom:94.467200pt;}
.y108{bottom:94.469733pt;}
.yc8{bottom:94.481867pt;}
.y44{bottom:94.482000pt;}
.y1d{bottom:94.484133pt;}
.yb3{bottom:94.486133pt;}
.y14e{bottom:94.529467pt;}
.y1c{bottom:111.964133pt;}
.y43{bottom:112.522000pt;}
.y8f{bottom:112.523867pt;}
.y67{bottom:112.632000pt;}
.y170{bottom:112.639867pt;}
.y12d{bottom:112.863867pt;}
.yc0{bottom:112.897867pt;}
.yc7{bottom:112.912533pt;}
.yb2{bottom:112.916800pt;}
.yed{bottom:113.091200pt;}
.y107{bottom:113.099733pt;}
.y14d{bottom:113.331467pt;}
.y42{bottom:130.562000pt;}
.y8e{bottom:130.678533pt;}
.y66{bottom:130.832667pt;}
.y16f{bottom:130.951867pt;}
.y12c{bottom:131.263867pt;}
.ybf{bottom:131.328533pt;}
.yc6{bottom:131.343200pt;}
.yec{bottom:131.721200pt;}
.y106{bottom:131.729733pt;}
.y14c{bottom:139.693467pt;}
.y1b{bottom:140.777467pt;}
.y1c0{bottom:147.275333pt;}
.y41{bottom:148.602000pt;}
.y8d{bottom:148.833200pt;}
.y65{bottom:149.033333pt;}
.y12b{bottom:149.663867pt;}
.ybe{bottom:149.759200pt;}
.yc5{bottom:149.773867pt;}
.yb1{bottom:150.242800pt;}
.yeb{bottom:150.351200pt;}
.y105{bottom:150.359733pt;}
.y16e{bottom:156.823867pt;}
.y14b{bottom:158.495467pt;}
.y1bf{bottom:165.275333pt;}
.y40{bottom:166.642000pt;}
.y8c{bottom:166.987867pt;}
.y64{bottom:167.234000pt;}
.y12a{bottom:167.881733pt;}
.ybd{bottom:168.189867pt;}
.yea{bottom:168.981200pt;}
.y104{bottom:168.989733pt;}
.yb0{bottom:172.004800pt;}
.y16d{bottom:175.135867pt;}
.y14a{bottom:177.297467pt;}
.y1be{bottom:183.275333pt;}
.y3f{bottom:184.682000pt;}
.y8b{bottom:185.142533pt;}
.y63{bottom:185.434667pt;}
.y129{bottom:186.281733pt;}
.ybc{bottom:186.620533pt;}
.yc4{bottom:187.099867pt;}
.ye9{bottom:187.611200pt;}
.y103{bottom:187.619733pt;}
.y1a{bottom:192.274533pt;}
.y16c{bottom:193.447867pt;}
.yaf{bottom:193.766800pt;}
.y1bd{bottom:201.275333pt;}
.y3e{bottom:202.722000pt;}
.y8a{bottom:203.297200pt;}
.y62{bottom:203.635333pt;}
.y149{bottom:203.659467pt;}
.y128{bottom:204.681733pt;}
.ybb{bottom:205.051200pt;}
.ye8{bottom:206.241200pt;}
.y102{bottom:206.249733pt;}
.yc3{bottom:208.861867pt;}
.y16b{bottom:211.759867pt;}
.y19{bottom:216.410533pt;}
.y1bc{bottom:219.275333pt;}
.y3d{bottom:220.762000pt;}
.y89{bottom:221.451867pt;}
.y61{bottom:221.836000pt;}
.y148{bottom:222.461467pt;}
.y127{bottom:223.081733pt;}
.yba{bottom:223.481867pt;}
.ye7{bottom:224.871200pt;}
.y101{bottom:224.879733pt;}
.y16a{bottom:230.071867pt;}
.yc2{bottom:230.623867pt;}
.y3c{bottom:238.802000pt;}
.y88{bottom:239.606533pt;}
.y60{bottom:240.036667pt;}
.y126{bottom:241.481733pt;}
.yb9{bottom:241.912533pt;}
.ye6{bottom:243.501200pt;}
.y100{bottom:243.509733pt;}
.y17f{bottom:248.383867pt;}
.y1bb{bottom:248.608667pt;}
.y147{bottom:248.823467pt;}
.yae{bottom:249.481200pt;}
.y169{bottom:255.943867pt;}
.y3b{bottom:256.842000pt;}
.y87{bottom:257.761200pt;}
.y5f{bottom:258.136133pt;}
.y18{bottom:259.430133pt;}
.y125{bottom:259.881733pt;}
.yb8{bottom:260.343200pt;}
.ye5{bottom:262.131200pt;}
.yff{bottom:262.139733pt;}
.y1ba{bottom:266.608667pt;}
.y17e{bottom:266.695867pt;}
.yad{bottom:267.911867pt;}
.y168{bottom:274.255867pt;}
.y3a{bottom:274.882000pt;}
.y86{bottom:275.915867pt;}
.y5e{bottom:276.336800pt;}
.y124{bottom:278.281733pt;}
.yb7{bottom:278.773867pt;}
.ye4{bottom:280.761200pt;}
.yfe{bottom:280.769733pt;}
.y1b9{bottom:284.608667pt;}
.yac{bottom:286.342533pt;}
.y17{bottom:287.582133pt;}
.y1a0{bottom:289.823867pt;}
.y167{bottom:292.567867pt;}
.y39{bottom:292.922000pt;}
.y85{bottom:294.070533pt;}
.y5d{bottom:294.537467pt;}
.y146{bottom:294.658400pt;}
.y123{bottom:296.681733pt;}
.ye3{bottom:299.391200pt;}
.yfd{bottom:299.399733pt;}
.y1b8{bottom:302.608667pt;}
.yab{bottom:304.773200pt;}
.y19f{bottom:307.827867pt;}
.y17d{bottom:310.879867pt;}
.y38{bottom:310.962000pt;}
.y84{bottom:312.225200pt;}
.y5c{bottom:312.738133pt;}
.y145{bottom:313.472400pt;}
.y122{bottom:315.081733pt;}
.y16{bottom:315.734133pt;}
.yb6{bottom:316.099867pt;}
.ye2{bottom:318.021200pt;}
.yfc{bottom:318.029733pt;}
.y166{bottom:318.439867pt;}
.y1b7{bottom:320.608667pt;}
.yaa{bottom:323.203867pt;}
.y19e{bottom:325.831867pt;}
.y37{bottom:329.002000pt;}
.y186{bottom:329.191867pt;}
.y83{bottom:330.379867pt;}
.y5b{bottom:330.938800pt;}
.y144{bottom:332.286400pt;}
.y121{bottom:333.481733pt;}
.ye1{bottom:336.651200pt;}
.yfb{bottom:336.659733pt;}
.y165{bottom:336.751867pt;}
.yb5{bottom:337.861867pt;}
.ya9{bottom:341.634533pt;}
.y19d{bottom:343.835867pt;}
.y82{bottom:348.534533pt;}
.y5a{bottom:349.139467pt;}
.y1b6{bottom:349.942000pt;}
.y143{bottom:351.100400pt;}
.y120{bottom:351.881733pt;}
.y164{bottom:355.063867pt;}
.ye0{bottom:355.281200pt;}
.yfa{bottom:355.289733pt;}
.y36{bottom:358.375333pt;}
.yb4{bottom:359.623867pt;}
.ya8{bottom:360.065200pt;}
.y19c{bottom:361.839867pt;}
.y81{bottom:366.689200pt;}
.y59{bottom:367.340133pt;}
.y1b5{bottom:367.942000pt;}
.y142{bottom:369.914400pt;}
.y11f{bottom:370.281733pt;}
.y15{bottom:370.312267pt;}
.y17c{bottom:373.375867pt;}
.ydf{bottom:373.911200pt;}
.yf9{bottom:373.919733pt;}
.ya7{bottom:378.495867pt;}
.y163{bottom:380.935867pt;}
.y80{bottom:384.843867pt;}
.y58{bottom:385.540800pt;}
.y1b4{bottom:385.942000pt;}
.y19b{bottom:387.403867pt;}
.y11e{bottom:388.681733pt;}
.y141{bottom:388.728400pt;}
.y185{bottom:391.687867pt;}
.yde{bottom:392.541200pt;}
.yf8{bottom:392.549733pt;}
.y14{bottom:396.685600pt;}
.ya6{bottom:396.926533pt;}
.y162{bottom:399.247867pt;}
.y35{bottom:402.868667pt;}
.y7f{bottom:402.998533pt;}
.y57{bottom:403.741467pt;}
.y1b3{bottom:403.942000pt;}
.y19a{bottom:405.407867pt;}
.y11d{bottom:407.081733pt;}
.y140{bottom:407.542400pt;}
.ydd{bottom:411.171200pt;}
.yf7{bottom:411.179733pt;}
.ya5{bottom:415.357200pt;}
.y13{bottom:415.498933pt;}
.y161{bottom:417.559867pt;}
.y7e{bottom:421.153200pt;}
.y1b2{bottom:421.942000pt;}
.y56{bottom:421.942133pt;}
.y34{bottom:422.242000pt;}
.y199{bottom:423.411867pt;}
.y11c{bottom:425.481733pt;}
.y13f{bottom:426.356400pt;}
.ydc{bottom:429.801200pt;}
.yf6{bottom:429.809733pt;}
.ya4{bottom:433.787867pt;}
.y17b{bottom:435.871867pt;}
.y7d{bottom:439.307867pt;}
.y55{bottom:440.142800pt;}
.y198{bottom:441.415867pt;}
.y33{bottom:441.615333pt;}
.y12{bottom:441.872267pt;}
.y160{bottom:443.431867pt;}
.y11b{bottom:443.881733pt;}
.y13e{bottom:445.170400pt;}
.ydb{bottom:448.431200pt;}
.yf5{bottom:448.439733pt;}
.y1b1{bottom:451.275333pt;}
.ya3{bottom:452.218533pt;}
.y17a{bottom:454.183867pt;}
.y7c{bottom:457.462533pt;}
.y54{bottom:458.343467pt;}
.y197{bottom:459.419867pt;}
.y11{bottom:460.685600pt;}
.y32{bottom:460.971333pt;}
.y15f{bottom:461.743867pt;}
.y11a{bottom:462.281733pt;}
.y13d{bottom:463.984400pt;}
.yda{bottom:467.061200pt;}
.yf4{bottom:467.069733pt;}
.ya2{bottom:470.649200pt;}
.y179{bottom:472.495867pt;}
.y7b{bottom:475.617200pt;}
.y53{bottom:476.544133pt;}
.y196{bottom:477.423867pt;}
.y31{bottom:479.011333pt;}
.y10{bottom:479.494267pt;}
.y15e{bottom:480.055867pt;}
.y119{bottom:480.681733pt;}
.y13c{bottom:482.798400pt;}
.yd9{bottom:485.691200pt;}
.yf3{bottom:485.699733pt;}
.y1b0{bottom:488.168667pt;}
.ya1{bottom:489.079867pt;}
.y7a{bottom:493.771867pt;}
.y52{bottom:494.744800pt;}
.y195{bottom:495.427867pt;}
.y30{bottom:497.051333pt;}
.y178{bottom:498.367867pt;}
.y118{bottom:499.081733pt;}
.y13b{bottom:501.612400pt;}
.yd8{bottom:504.321200pt;}
.yf2{bottom:504.329733pt;}
.y1af{bottom:505.502000pt;}
.y15d{bottom:505.927867pt;}
.ya0{bottom:507.510533pt;}
.y79{bottom:511.926533pt;}
.y51{bottom:512.945467pt;}
.y194{bottom:513.431867pt;}
.y2f{bottom:515.091333pt;}
.y177{bottom:516.679867pt;}
.y117{bottom:517.481733pt;}
.y13a{bottom:520.426400pt;}
.yf{bottom:520.960400pt;}
.y1ae{bottom:522.835333pt;}
.yd7{bottom:522.951200pt;}
.yf1{bottom:522.959733pt;}
.y15c{bottom:524.239867pt;}
.y9f{bottom:525.941200pt;}
.y78{bottom:530.081200pt;}
.y50{bottom:531.146133pt;}
.y193{bottom:531.435867pt;}
.y2e{bottom:533.131333pt;}
.y176{bottom:534.991867pt;}
.y116{bottom:535.881733pt;}
.y139{bottom:539.240400pt;}
.ye{bottom:539.773733pt;}
.y1ad{bottom:540.168667pt;}
.yd6{bottom:541.581200pt;}
.yf0{bottom:541.589733pt;}
.y15b{bottom:542.551867pt;}
.y9e{bottom:544.371867pt;}
.y77{bottom:548.235867pt;}
.y4f{bottom:549.346800pt;}
.y2d{bottom:551.171333pt;}
.y184{bottom:553.303867pt;}
.y115{bottom:554.281733pt;}
.y192{bottom:556.999867pt;}
.y1ac{bottom:557.502000pt;}
.y138{bottom:558.054400pt;}
.yd{bottom:558.587067pt;}
.yd5{bottom:560.211200pt;}
.yef{bottom:560.219733pt;}
.y15a{bottom:560.863867pt;}
.y9d{bottom:562.802533pt;}
.y76{bottom:566.390533pt;}
.y2c{bottom:569.211333pt;}
.y183{bottom:571.615867pt;}
.y114{bottom:572.681733pt;}
.y1ab{bottom:574.835333pt;}
.y191{bottom:575.003867pt;}
.y137{bottom:576.868400pt;}
.yd4{bottom:578.841200pt;}
.y175{bottom:579.175867pt;}
.y9c{bottom:581.233200pt;}
.y75{bottom:584.545200pt;}
.yc{bottom:584.960400pt;}
.y4e{bottom:586.438800pt;}
.y159{bottom:586.735867pt;}
.y2b{bottom:587.251333pt;}
.y113{bottom:591.081733pt;}
.y1aa{bottom:592.168667pt;}
.y136{bottom:595.682400pt;}
.yd3{bottom:597.471200pt;}
.y182{bottom:597.487867pt;}
.y9b{bottom:599.663867pt;}
.y190{bottom:600.567867pt;}
.y74{bottom:602.699867pt;}
.yb{bottom:603.773733pt;}
.y158{bottom:605.047867pt;}
.y2a{bottom:605.291333pt;}
.y112{bottom:609.481733pt;}
.y1a9{bottom:609.502000pt;}
.y135{bottom:614.496400pt;}
.y181{bottom:615.799867pt;}
.yd2{bottom:616.101200pt;}
.y9a{bottom:618.094533pt;}
.y18f{bottom:618.571867pt;}
.y73{bottom:620.854533pt;}
.ya{bottom:622.582400pt;}
.y29{bottom:623.331333pt;}
.y157{bottom:623.359867pt;}
.y1a8{bottom:626.835333pt;}
.y111{bottom:627.881733pt;}
.yd1{bottom:634.731200pt;}
.y99{bottom:636.525200pt;}
.y18e{bottom:636.575867pt;}
.y72{bottom:639.009200pt;}
.y28{bottom:641.371333pt;}
.y156{bottom:641.671867pt;}
.y4d{bottom:641.970933pt;}
.y1a7{bottom:644.168667pt;}
.y110{bottom:646.281733pt;}
.y134{bottom:652.202267pt;}
.yd0{bottom:653.361200pt;}
.y98{bottom:654.955867pt;}
.y71{bottom:657.163867pt;}
.y27{bottom:659.411333pt;}
.y174{bottom:659.983867pt;}
.y4c{bottom:660.837600pt;}
.y1a6{bottom:661.502000pt;}
.y18d{bottom:662.139867pt;}
.y9{bottom:664.039200pt;}
.y10f{bottom:664.681733pt;}
.y155{bottom:667.543867pt;}
.ycf{bottom:671.991200pt;}
.y97{bottom:673.386533pt;}
.y70{bottom:675.318533pt;}
.y26{bottom:677.451333pt;}
.y173{bottom:678.295867pt;}
.y1a5{bottom:678.835333pt;}
.y4b{bottom:679.704267pt;}
.y18c{bottom:680.143867pt;}
.y8{bottom:682.852533pt;}
.y10e{bottom:683.081733pt;}
.y154{bottom:685.855867pt;}
.yce{bottom:690.621200pt;}
.y96{bottom:691.817200pt;}
.y6f{bottom:693.473200pt;}
.y25{bottom:695.491333pt;}
.y1a4{bottom:696.168667pt;}
.y172{bottom:696.607867pt;}
.y18b{bottom:698.147867pt;}
.y4a{bottom:698.531333pt;}
.y10d{bottom:701.481733pt;}
.y7{bottom:701.665867pt;}
.y153{bottom:704.167867pt;}
.y133{bottom:708.331200pt;}
.ycd{bottom:709.251200pt;}
.y95{bottom:710.247867pt;}
.y6e{bottom:711.627867pt;}
.y24{bottom:713.531333pt;}
.y49{bottom:716.064667pt;}
.y10c{bottom:719.881733pt;}
.y6{bottom:720.479200pt;}
.y152{bottom:722.479867pt;}
.y18a{bottom:723.711867pt;}
.y1a3{bottom:724.835333pt;}
.y132{bottom:727.145200pt;}
.ycc{bottom:727.881200pt;}
.y94{bottom:728.678533pt;}
.y6d{bottom:729.782533pt;}
.y23{bottom:731.571333pt;}
.y48{bottom:733.598000pt;}
.y5{bottom:739.292533pt;}
.y151{bottom:740.791867pt;}
.y189{bottom:741.715867pt;}
.y131{bottom:745.959200pt;}
.ycb{bottom:746.511200pt;}
.y93{bottom:747.109200pt;}
.y6c{bottom:747.937200pt;}
.y22{bottom:749.611333pt;}
.y47{bottom:751.131333pt;}
.y10b{bottom:757.175733pt;}
.y150{bottom:759.103867pt;}
.y188{bottom:759.719867pt;}
.y130{bottom:764.773200pt;}
.yca{bottom:765.141200pt;}
.y92{bottom:765.539867pt;}
.y4{bottom:765.665867pt;}
.y6b{bottom:766.091867pt;}
.y180{bottom:766.663867pt;}
.y21{bottom:767.651333pt;}
.y46{bottom:768.664667pt;}
.y1a2{bottom:776.179067pt;}
.y10a{bottom:778.901733pt;}
.y12f{bottom:783.587200pt;}
.yc9{bottom:783.771200pt;}
.y91{bottom:783.970533pt;}
.y6a{bottom:784.246533pt;}
.y3{bottom:784.479200pt;}
.y14f{bottom:784.975867pt;}
.y187{bottom:785.283867pt;}
.y20{bottom:785.691333pt;}
.y45{bottom:786.198000pt;}
.y1a1{bottom:800.184400pt;}
.y109{bottom:800.627733pt;}
.y69{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y1f{bottom:803.731333pt;}
.y1e{bottom:842.834667pt;}
.h8{height:37.395833pt;}
.ha{height:41.770833pt;}
.h5{height:43.859375pt;}
.h4{height:46.744792pt;}
.h3{height:49.082031pt;}
.h9{height:49.947917pt;}
.h12{height:52.445312pt;}
.hc{height:53.756510pt;}
.h10{height:53.790644pt;}
.hf{height:54.115885pt;}
.hd{height:54.161310pt;}
.h11{height:54.485044pt;}
.he{height:57.440104pt;}
.h2{height:58.430990pt;}
.hb{height:63.105469pt;}
.h7{height:65.442708pt;}
.h6{height:84.140625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.943600pt;}
.x6{left:73.079333pt;}
.x8{left:74.559333pt;}
.x1{left:75.590533pt;}
.xa{left:91.280800pt;}
.x5{left:93.360667pt;}
.x7{left:94.543733pt;}
.xb{left:189.034533pt;}
.x4{left:204.999467pt;}
.x3{left:206.620000pt;}
.x2{left:207.628000pt;}
}




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