
    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_cb831bfc45030f6d94299355.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_d9a235825d1a07d3021ee8e2.woff')format("woff");}.ff2{font-family:ff2;line-height:1.000977;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_dc365670c7a37b7ba42e8ad7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;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_25e97fa9589536edbfbfd9d8.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_e4f1c860bf204aa5e3595b0d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.966309;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_82aa7add26d3e72a4a28ac5b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.736816;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_307fcb6228ef2664d8c0896b.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_c26e46cccf5658b676d27872.woff')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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:ff9;src:url('chunks/assets/font_886972cfdf9c487e6c2dae3d.woff')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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:ffa;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910156;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:ffb;src:url('chunks/assets/font_429fc344b88060286e2dcc59.woff')format("woff");}.ffb{font-family:ffb;line-height:1.402354;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:ffc;src:url('chunks/assets/font_40ea987c10c19b54fe62e90e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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:ffd;src:url('chunks/assets/font_6ffbd46bafb5ca2c9d2e2a9f.woff')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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:ffe;src:url('chunks/assets/font_529b13e49ef8a41e26f1b8b1.woff')format("woff");}.ffe{font-family:ffe;line-height:0.914062;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:fff;src:url('chunks/assets/font_89de59c486ea17377ff80a51.woff')format("woff");}.fff{font-family:fff;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-77.760000px;}
.v6{vertical-align:-69.240000px;}
.v4{vertical-align:-61.920000px;}
.v3{vertical-align:-27.360000px;}
.v5{vertical-align:-8.640000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.lsd{letter-spacing:-1.440000px;}
.ls19{letter-spacing:-1.422000px;}
.ls9{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.630000px;}
.ls1b{letter-spacing:-0.507000px;}
.ls18{letter-spacing:-0.486600px;}
.ls1a{letter-spacing:-0.466800px;}
.lsb{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.313800px;}
.lsa{letter-spacing:-0.089400px;}
.lse{letter-spacing:-0.072000px;}
.ls1c{letter-spacing:-0.020160px;}
.ls8{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.020160px;}
.ls7{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.313920px;}
.ls17{letter-spacing:0.466800px;}
.ls13{letter-spacing:0.507000px;}
.lsc{letter-spacing:0.630000px;}
.ls0{letter-spacing:0.720000px;}
.ls1{letter-spacing:0.732000px;}
.ls2{letter-spacing:1.080000px;}
.ls16{letter-spacing:3.600000px;}
.ls14{letter-spacing:6.480000px;}
.ls15{letter-spacing:7.920000px;}
.ls6{letter-spacing:8.280000px;}
.ls1d{letter-spacing:16.306560px;}
.ls11{letter-spacing:46.546560px;}
.ls4{letter-spacing:63.826560px;}
.ls5{letter-spacing:171.144000px;}
.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;}
}
.ws8{word-spacing:-60.480000px;}
.ws6{word-spacing:-54.720000px;}
.ws0{word-spacing:-16.560000px;}
.ws14{word-spacing:-15.840000px;}
.ws11{word-spacing:-15.627000px;}
.wsd{word-spacing:-15.586800px;}
.wsc{word-spacing:-15.140160px;}
.ws2{word-spacing:-15.120000px;}
.ws13{word-spacing:-15.099840px;}
.ws10{word-spacing:-14.653200px;}
.wse{word-spacing:-14.633400px;}
.ws12{word-spacing:-14.613000px;}
.ws5{word-spacing:-14.310000px;}
.wsf{word-spacing:-13.698000px;}
.ws7{word-spacing:-13.680000px;}
.wsa{word-spacing:-13.050000px;}
.ws3{word-spacing:-11.160000px;}
.ws4{word-spacing:-10.440000px;}
.ws1{word-spacing:-9.720000px;}
.ws9{word-spacing:-8.928000px;}
.wsb{word-spacing:0.000000px;}
._6{margin-left:-3.180480px;}
._3{margin-left:-2.119680px;}
._4{margin-left:-1.097280px;}
._1{width:1.244160px;}
._0{width:2.332800px;}
._2{width:3.404640px;}
._9{width:5.310720px;}
._a{width:6.606720px;}
._e{width:7.672320px;}
._d{width:8.686080px;}
._c{width:9.725760px;}
._18{width:10.877760px;}
._19{width:11.915040px;}
._13{width:13.726080px;}
._b{width:15.266880px;}
._7{width:17.026560px;}
._8{width:18.925440px;}
._1b{width:20.344320px;}
._1a{width:22.282560px;}
._11{width:23.469120px;}
._12{width:24.632640px;}
._f{width:25.652160px;}
._10{width:27.163200px;}
._14{width:30.035520px;}
._15{width:31.360320px;}
._17{width:39.288960px;}
._16{width:40.432320px;}
._1c{width:438.636000px;}
._5{width:672.955200px;}
._1d{width:1469.529600px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fsb{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs8{font-size:54.720000px;}
.fs3{font-size:57.600000px;}
.fs2{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs4{font-size:83.520000px;}
.fsc{font-size:83.664000px;}
.fs1{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y4a{bottom:1.075500px;}
.y106{bottom:3.225000px;}
.y103{bottom:3.585000px;}
.ye4{bottom:3.600000px;}
.y118{bottom:3.630000px;}
.y101{bottom:3.945000px;}
.y41{bottom:3.960000px;}
.y119{bottom:3.990000px;}
.y5{bottom:4.320000px;}
.y59{bottom:5.370000px;}
.y2{bottom:10.080000px;}
.y56{bottom:10.795500px;}
.y40{bottom:20.880000px;}
.y4{bottom:23.400000px;}
.y55{bottom:26.275500px;}
.y49{bottom:30.631500px;}
.y3f{bottom:39.240000px;}
.y48{bottom:42.514500px;}
.y54{bottom:43.954500px;}
.y3{bottom:47.880000px;}
.y47{bottom:55.474500px;}
.y3e{bottom:56.520000px;}
.y7{bottom:57.636000px;}
.y53{bottom:59.794500px;}
.y46{bottom:68.434500px;}
.y3d{bottom:74.880000px;}
.y52{bottom:75.274500px;}
.y51{bottom:88.234500px;}
.y45{bottom:90.034500px;}
.y3c{bottom:92.160000px;}
.y50{bottom:94.354500px;}
.yf7{bottom:99.036000px;}
.y90{bottom:99.756000px;}
.y57{bottom:100.476000px;}
.yc4{bottom:108.756000px;}
.y4f{bottom:110.194500px;}
.y3b{bottom:110.565000px;}
.y130{bottom:111.996000px;}
.y42{bottom:114.520500px;}
.yf6{bottom:116.316000px;}
.y8f{bottom:117.036000px;}
.y15f{bottom:123.156000px;}
.y4e{bottom:125.674500px;}
.yc3{bottom:126.036000px;}
.y3a{bottom:127.845000px;}
.y12f{bottom:129.276000px;}
.yf5{bottom:133.596000px;}
.y8e{bottom:134.316000px;}
.y15e{bottom:140.436000px;}
.y4d{bottom:141.154500px;}
.yc2{bottom:143.352000px;}
.y39{bottom:145.125000px;}
.y12e{bottom:146.592000px;}
.yf4{bottom:150.915000px;}
.y8d{bottom:151.635000px;}
.y44{bottom:152.674500px;}
.y4c{bottom:156.634500px;}
.y15d{bottom:157.755000px;}
.yc1{bottom:160.635000px;}
.y38{bottom:162.405000px;}
.y43{bottom:163.504500px;}
.y12d{bottom:163.515000px;}
.yf3{bottom:168.195000px;}
.y8c{bottom:168.915000px;}
.y4b{bottom:172.144500px;}
.y15c{bottom:175.035000px;}
.yc0{bottom:177.915000px;}
.y37{bottom:179.685000px;}
.y12c{bottom:180.795000px;}
.yf2{bottom:185.475000px;}
.y8b{bottom:186.195000px;}
.y15b{bottom:192.315000px;}
.ybf{bottom:195.195000px;}
.y36{bottom:196.965000px;}
.y12b{bottom:198.075000px;}
.yf1{bottom:202.755000px;}
.y15a{bottom:209.595000px;}
.y8a{bottom:212.475000px;}
.y35{bottom:214.245000px;}
.y12a{bottom:215.355000px;}
.yf0{bottom:219.675000px;}
.y159{bottom:226.515000px;}
.ybe{bottom:229.035000px;}
.y89{bottom:229.395000px;}
.y34{bottom:231.195000px;}
.y129{bottom:232.635000px;}
.y158{bottom:243.795000px;}
.yef{bottom:246.315000px;}
.y88{bottom:246.675000px;}
.y33{bottom:248.475000px;}
.y128{bottom:249.915000px;}
.y1f{bottom:253.155000px;}
.y157{bottom:261.075000px;}
.yee{bottom:263.595000px;}
.y87{bottom:263.955000px;}
.y32{bottom:265.755000px;}
.y127{bottom:266.835000px;}
.ybd{bottom:267.915000px;}
.y1e{bottom:277.275000px;}
.y156{bottom:278.385000px;}
.yed{bottom:280.545000px;}
.y86{bottom:280.905000px;}
.y31{bottom:283.035000px;}
.ybc{bottom:285.225000px;}
.y126{bottom:293.505000px;}
.y155{bottom:295.665000px;}
.yec{bottom:297.825000px;}
.y30{bottom:300.315000px;}
.y1d{bottom:301.755000px;}
.ybb{bottom:302.505000px;}
.y10{bottom:307.545000px;}
.y125{bottom:310.785000px;}
.y154{bottom:312.945000px;}
.yeb{bottom:314.745000px;}
.y2f{bottom:317.595000px;}
.yba{bottom:319.785000px;}
.y85{bottom:324.825000px;}
.y1c{bottom:325.875000px;}
.y124{bottom:328.065000px;}
.y153{bottom:330.225000px;}
.y2e{bottom:334.875000px;}
.yb9{bottom:336.705000px;}
.yea{bottom:341.025000px;}
.y84{bottom:342.105000px;}
.y123{bottom:345.345000px;}
.y152{bottom:347.505000px;}
.y1b{bottom:349.995000px;}
.y2d{bottom:351.795000px;}
.ye9{bottom:355.425000px;}
.y83{bottom:359.385000px;}
.y122{bottom:362.625000px;}
.yb8{bottom:363.345000px;}
.y151{bottom:364.785000px;}
.ye8{bottom:373.425000px;}
.y1a{bottom:374.145000px;}
.y82{bottom:376.665000px;}
.y2c{bottom:377.745000px;}
.y121{bottom:379.545000px;}
.yb7{bottom:380.625000px;}
.y150{bottom:382.065000px;}
.ye7{bottom:391.425000px;}
.y2b{bottom:393.225000px;}
.y81{bottom:393.945000px;}
.y120{bottom:396.465000px;}
.yb6{bottom:397.545000px;}
.y19{bottom:398.265000px;}
.y14f{bottom:399.345000px;}
.y2a{bottom:408.705000px;}
.ye6{bottom:409.470000px;}
.y11f{bottom:410.910000px;}
.y80{bottom:411.270000px;}
.yb5{bottom:414.870000px;}
.y14e{bottom:416.670000px;}
.y18{bottom:422.385000px;}
.y29{bottom:424.185000px;}
.ye5{bottom:427.470000px;}
.y7f{bottom:428.190000px;}
.y11e{bottom:428.910000px;}
.yb4{bottom:432.150000px;}
.y14d{bottom:433.590000px;}
.y28{bottom:439.665000px;}
.y7e{bottom:445.470000px;}
.y17{bottom:446.505000px;}
.y11d{bottom:446.910000px;}
.yb3{bottom:449.430000px;}
.y14c{bottom:450.870000px;}
.y27{bottom:455.505000px;}
.y7d{bottom:462.750000px;}
.ye3{bottom:463.470000px;}
.y11c{bottom:464.910000px;}
.y14b{bottom:468.150000px;}
.y16{bottom:470.625000px;}
.y26{bottom:470.985000px;}
.yb2{bottom:475.710000px;}
.y7c{bottom:480.030000px;}
.y11b{bottom:482.910000px;}
.ye2{bottom:485.070000px;}
.y14a{bottom:485.430000px;}
.y25{bottom:486.465000px;}
.yb1{bottom:492.990000px;}
.y15{bottom:494.790000px;}
.y7b{bottom:497.310000px;}
.y11a{bottom:500.910000px;}
.y24{bottom:501.990000px;}
.ye1{bottom:502.350000px;}
.y149{bottom:502.710000px;}
.yb0{bottom:510.270000px;}
.y7a{bottom:514.590000px;}
.y23{bottom:517.470000px;}
.y14{bottom:518.910000px;}
.y148{bottom:519.990000px;}
.yaf{bottom:527.550000px;}
.ye0{bottom:528.990000px;}
.y79{bottom:531.870000px;}
.y22{bottom:532.950000px;}
.y117{bottom:536.910000px;}
.y147{bottom:537.300000px;}
.y13{bottom:543.030000px;}
.yae{bottom:544.860000px;}
.ydf{bottom:546.300000px;}
.y21{bottom:548.430000px;}
.y78{bottom:549.180000px;}
.y146{bottom:554.580000px;}
.y116{bottom:554.940000px;}
.yad{bottom:562.140000px;}
.yde{bottom:563.580000px;}
.y77{bottom:566.460000px;}
.y12{bottom:567.150000px;}
.y145{bottom:571.860000px;}
.y115{bottom:572.940000px;}
.y20{bottom:579.390000px;}
.ydd{bottom:580.860000px;}
.y76{bottom:583.740000px;}
.yac{bottom:588.420000px;}
.y144{bottom:589.140000px;}
.y114{bottom:590.940000px;}
.y11{bottom:591.630000px;}
.ydc{bottom:597.780000px;}
.y75{bottom:602.100000px;}
.yab{bottom:605.340000px;}
.y143{bottom:606.420000px;}
.y113{bottom:608.940000px;}
.ydb{bottom:615.060000px;}
.y74{bottom:620.100000px;}
.yaa{bottom:622.620000px;}
.y142{bottom:623.340000px;}
.y73{bottom:638.460000px;}
.ya9{bottom:639.900000px;}
.y141{bottom:640.620000px;}
.yda{bottom:641.340000px;}
.y112{bottom:647.820000px;}
.y72{bottom:656.820000px;}
.ya8{bottom:657.180000px;}
.y140{bottom:657.900000px;}
.yd9{bottom:658.620000px;}
.y111{bottom:665.100000px;}
.y71{bottom:674.130000px;}
.ya7{bottom:674.490000px;}
.y13f{bottom:675.210000px;}
.yd8{bottom:675.930000px;}
.y70{bottom:691.410000px;}
.y110{bottom:691.770000px;}
.y13e{bottom:692.490000px;}
.yd7{bottom:693.210000px;}
.ya6{bottom:700.770000px;}
.y6f{bottom:708.690000px;}
.y10f{bottom:709.050000px;}
.y13d{bottom:709.770000px;}
.yd6{bottom:710.490000px;}
.ya5{bottom:718.050000px;}
.y6e{bottom:725.970000px;}
.y10e{bottom:726.330000px;}
.y13c{bottom:727.050000px;}
.yd5{bottom:727.770000px;}
.ya4{bottom:735.330000px;}
.y6d{bottom:743.250000px;}
.y10d{bottom:743.610000px;}
.y13b{bottom:744.330000px;}
.yd4{bottom:745.050000px;}
.ya3{bottom:752.610000px;}
.y6c{bottom:760.530000px;}
.y10c{bottom:760.890000px;}
.y13a{bottom:761.610000px;}
.yd3{bottom:762.330000px;}
.ya2{bottom:769.890000px;}
.y10b{bottom:778.170000px;}
.y139{bottom:778.890000px;}
.yd2{bottom:779.610000px;}
.y6b{bottom:786.810000px;}
.y10a{bottom:795.090000px;}
.ya1{bottom:796.170000px;}
.yd1{bottom:796.890000px;}
.y6a{bottom:804.135000px;}
.y138{bottom:813.135000px;}
.ya0{bottom:813.495000px;}
.yd0{bottom:814.215000px;}
.y109{bottom:821.055000px;}
.y69{bottom:821.415000px;}
.y9f{bottom:830.415000px;}
.ycf{bottom:831.495000px;}
.y108{bottom:835.830000px;}
.y68{bottom:838.335000px;}
.y137{bottom:839.415000px;}
.y9e{bottom:847.695000px;}
.yce{bottom:848.415000px;}
.y107{bottom:853.830000px;}
.y67{bottom:855.615000px;}
.y136{bottom:856.695000px;}
.y9d{bottom:864.975000px;}
.ycd{bottom:865.695000px;}
.y105{bottom:871.830000px;}
.y66{bottom:872.895000px;}
.y135{bottom:873.975000px;}
.y9c{bottom:882.255000px;}
.ycc{bottom:882.975000px;}
.y104{bottom:889.470000px;}
.y65{bottom:890.175000px;}
.y134{bottom:891.255000px;}
.ycb{bottom:900.255000px;}
.y64{bottom:907.455000px;}
.y102{bottom:907.470000px;}
.y9b{bottom:908.535000px;}
.yf{bottom:914.295000px;}
.yca{bottom:917.535000px;}
.y63{bottom:924.735000px;}
.y100{bottom:925.470000px;}
.y9a{bottom:925.815000px;}
.yc9{bottom:934.845000px;}
.ye{bottom:938.805000px;}
.y62{bottom:942.045000px;}
.y99{bottom:943.125000px;}
.yff{bottom:943.485000px;}
.yc8{bottom:952.125000px;}
.yd{bottom:955.725000px;}
.y61{bottom:959.325000px;}
.y98{bottom:960.405000px;}
.yfe{bottom:961.485000px;}
.yc{bottom:966.165000px;}
.yc7{bottom:969.405000px;}
.y60{bottom:976.605000px;}
.y97{bottom:977.685000px;}
.yfd{bottom:979.485000px;}
.yc6{bottom:986.685000px;}
.yb{bottom:990.285000px;}
.y5f{bottom:993.885000px;}
.y96{bottom:994.965000px;}
.yfc{bottom:997.485000px;}
.yc5{bottom:1003.965000px;}
.y5e{bottom:1011.165000px;}
.y133{bottom:1012.245000px;}
.yfb{bottom:1015.485000px;}
.ya{bottom:1019.805000px;}
.y95{bottom:1021.245000px;}
.y5d{bottom:1028.085000px;}
.y132{bottom:1029.165000px;}
.yfa{bottom:1033.485000px;}
.y94{bottom:1038.165000px;}
.y9{bottom:1044.285000px;}
.y5c{bottom:1045.005000px;}
.y131{bottom:1046.085000px;}
.y93{bottom:1055.445000px;}
.y5b{bottom:1071.690000px;}
.y8{bottom:1072.050000px;}
.yf9{bottom:1072.410000px;}
.y92{bottom:1072.770000px;}
.y58{bottom:1075.320000px;}
.y5a{bottom:1088.970000px;}
.yf8{bottom:1089.690000px;}
.y91{bottom:1090.050000px;}
.y6{bottom:1108.050000px;}
.y1{bottom:1123.530000px;}
.h15{height:5.650313px;}
.h1e{height:16.905000px;}
.h1a{height:17.265000px;}
.h1d{height:17.280000px;}
.h1b{height:17.310000px;}
.h16{height:27.720000px;}
.h13{height:29.678906px;}
.h20{height:34.560000px;}
.h1c{height:34.590000px;}
.hb{height:38.158594px;}
.h9{height:39.183750px;}
.he{height:40.985156px;}
.hd{height:42.086250px;}
.h19{height:42.229688px;}
.hf{height:53.677969px;}
.h14{height:55.147500px;}
.h7{height:58.050000px;}
.h6{height:59.357813px;}
.ha{height:60.952500px;}
.h10{height:62.163910px;}
.h18{height:62.960625px;}
.h17{height:63.565031px;}
.h8{height:63.577969px;}
.h5{height:65.010937px;}
.h1f{height:65.518594px;}
.h3{height:65.884219px;}
.h12{height:70.664062px;}
.h2{height:84.990000px;}
.h4{height:116.640000px;}
.h11{height:192.285000px;}
.hc{height:600.990000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wa{width:49.356000px;}
.w9{width:53.280000px;}
.w8{width:59.790000px;}
.wc{width:60.105000px;}
.w23{width:62.280000px;}
.wb{width:64.101000px;}
.w19{width:65.520000px;}
.w26{width:66.945000px;}
.w16{width:73.476000px;}
.w1f{width:74.160000px;}
.w12{width:74.865000px;}
.w11{width:81.000000px;}
.w1e{width:82.821000px;}
.w1d{width:91.116000px;}
.w10{width:91.461000px;}
.w1b{width:99.750000px;}
.w1c{width:101.190000px;}
.w2{width:105.142500px;}
.w17{width:106.941000px;}
.w24{width:106.992000px;}
.we{width:108.390000px;}
.wf{width:112.392000px;}
.w22{width:113.472000px;}
.w1a{width:114.120000px;}
.w15{width:119.592000px;}
.wd{width:123.480000px;}
.w4{width:132.502500px;}
.w21{width:139.680000px;}
.w18{width:141.120000px;}
.w25{width:141.840000px;}
.w14{width:151.200000px;}
.w6{width:163.080000px;}
.w7{width:189.765000px;}
.w20{width:567.180000px;}
.w13{width:595.260000px;}
.w5{width:596.745000px;}
.w3{width:631.305000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:6.876000px;}
.x1b{left:8.295000px;}
.x16{left:14.386500px;}
.x19{left:16.186500px;}
.x4{left:17.625000px;}
.x18{left:19.426500px;}
.x17{left:26.266500px;}
.x20{left:29.146500px;}
.x6{left:33.105000px;}
.x1d{left:35.295000px;}
.x10{left:43.906500px;}
.x1f{left:47.542500px;}
.x11{left:50.782500px;}
.x15{left:53.302500px;}
.xf{left:55.102500px;}
.x1c{left:62.295000px;}
.x21{left:66.265500px;}
.x14{left:75.985500px;}
.x1{left:78.529500px;}
.x7{left:86.436000px;}
.xa{left:89.316000px;}
.x43{left:91.836000px;}
.x13{left:92.905500px;}
.x2{left:96.145500px;}
.x2e{left:99.396000px;}
.x26{left:101.196000px;}
.x22{left:102.985500px;}
.x1e{left:106.945500px;}
.x25{left:113.436000px;}
.x39{left:117.396000px;}
.x44{left:118.836000px;}
.x12{left:124.585500px;}
.x5{left:145.860000px;}
.xc{left:148.032000px;}
.x30{left:149.134500px;}
.x3b{left:163.170000px;}
.xd{left:175.395000px;}
.x28{left:179.730000px;}
.x3{left:183.690000px;}
.x1a{left:218.970000px;}
.x27{left:268.665000px;}
.x31{left:273.345000px;}
.x3c{left:278.385000px;}
.x36{left:301.065000px;}
.x41{left:303.585000px;}
.x29{left:370.230000px;}
.x3a{left:375.270000px;}
.x3d{left:378.870000px;}
.x32{left:382.470000px;}
.x2f{left:414.540000px;}
.x42{left:417.780000px;}
.x37{left:421.380000px;}
.x2a{left:430.740000px;}
.x3e{left:480.780000px;}
.x2b{left:484.740000px;}
.x33{left:495.585000px;}
.x2c{left:534.825000px;}
.x3f{left:572.625000px;}
.x34{left:587.790000px;}
.xe{left:599.655000px;}
.x38{left:603.270000px;}
.x40{left:656.190000px;}
.x2d{left:660.510000px;}
.x35{left:669.525000px;}
.xb{left:764.970000px;}
.x9{left:766.050000px;}
.x8{left:784.770000px;}
.x23{left:807.090000px;}
@media print{
.v1{vertical-align:-69.120000pt;}
.v6{vertical-align:-61.546667pt;}
.v4{vertical-align:-55.040000pt;}
.v3{vertical-align:-24.320000pt;}
.v5{vertical-align:-7.680000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.lsd{letter-spacing:-1.280000pt;}
.ls19{letter-spacing:-1.264000pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.560000pt;}
.ls1b{letter-spacing:-0.450667pt;}
.ls18{letter-spacing:-0.432533pt;}
.ls1a{letter-spacing:-0.414933pt;}
.lsb{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.278933pt;}
.lsa{letter-spacing:-0.079467pt;}
.lse{letter-spacing:-0.064000pt;}
.ls1c{letter-spacing:-0.017920pt;}
.ls8{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.017920pt;}
.ls7{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.279040pt;}
.ls17{letter-spacing:0.414933pt;}
.ls13{letter-spacing:0.450667pt;}
.lsc{letter-spacing:0.560000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1{letter-spacing:0.650667pt;}
.ls2{letter-spacing:0.960000pt;}
.ls16{letter-spacing:3.200000pt;}
.ls14{letter-spacing:5.760000pt;}
.ls15{letter-spacing:7.040000pt;}
.ls6{letter-spacing:7.360000pt;}
.ls1d{letter-spacing:14.494720pt;}
.ls11{letter-spacing:41.374720pt;}
.ls4{letter-spacing:56.734720pt;}
.ls5{letter-spacing:152.128000pt;}
.ws8{word-spacing:-53.760000pt;}
.ws6{word-spacing:-48.640000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.080000pt;}
.ws11{word-spacing:-13.890667pt;}
.wsd{word-spacing:-13.854933pt;}
.wsc{word-spacing:-13.457920pt;}
.ws2{word-spacing:-13.440000pt;}
.ws13{word-spacing:-13.422080pt;}
.ws10{word-spacing:-13.025067pt;}
.wse{word-spacing:-13.007467pt;}
.ws12{word-spacing:-12.989333pt;}
.ws5{word-spacing:-12.720000pt;}
.wsf{word-spacing:-12.176000pt;}
.ws7{word-spacing:-12.160000pt;}
.wsa{word-spacing:-11.600000pt;}
.ws3{word-spacing:-9.920000pt;}
.ws4{word-spacing:-9.280000pt;}
.ws1{word-spacing:-8.640000pt;}
.ws9{word-spacing:-7.936000pt;}
.wsb{word-spacing:0.000000pt;}
._6{margin-left:-2.827093pt;}
._3{margin-left:-1.884160pt;}
._4{margin-left:-0.975360pt;}
._1{width:1.105920pt;}
._0{width:2.073600pt;}
._2{width:3.026347pt;}
._9{width:4.720640pt;}
._a{width:5.872640pt;}
._e{width:6.819840pt;}
._d{width:7.720960pt;}
._c{width:8.645120pt;}
._18{width:9.669120pt;}
._19{width:10.591147pt;}
._13{width:12.200960pt;}
._b{width:13.570560pt;}
._7{width:15.134720pt;}
._8{width:16.822613pt;}
._1b{width:18.083840pt;}
._1a{width:19.806720pt;}
._11{width:20.861440pt;}
._12{width:21.895680pt;}
._f{width:22.801920pt;}
._10{width:24.145067pt;}
._14{width:26.698240pt;}
._15{width:27.875840pt;}
._17{width:34.923520pt;}
._16{width:35.939840pt;}
._1c{width:389.898667pt;}
._5{width:598.182400pt;}
._1d{width:1306.248533pt;}
.fs6{font-size:5.120000pt;}
.fsb{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs8{font-size:48.640000pt;}
.fs3{font-size:51.200000pt;}
.fs2{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs4{font-size:74.240000pt;}
.fsc{font-size:74.368000pt;}
.fs1{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y4a{bottom:0.956000pt;}
.y106{bottom:2.866667pt;}
.y103{bottom:3.186667pt;}
.ye4{bottom:3.200000pt;}
.y118{bottom:3.226667pt;}
.y101{bottom:3.506667pt;}
.y41{bottom:3.520000pt;}
.y119{bottom:3.546667pt;}
.y5{bottom:3.840000pt;}
.y59{bottom:4.773333pt;}
.y2{bottom:8.960000pt;}
.y56{bottom:9.596000pt;}
.y40{bottom:18.560000pt;}
.y4{bottom:20.800000pt;}
.y55{bottom:23.356000pt;}
.y49{bottom:27.228000pt;}
.y3f{bottom:34.880000pt;}
.y48{bottom:37.790667pt;}
.y54{bottom:39.070667pt;}
.y3{bottom:42.560000pt;}
.y47{bottom:49.310667pt;}
.y3e{bottom:50.240000pt;}
.y7{bottom:51.232000pt;}
.y53{bottom:53.150667pt;}
.y46{bottom:60.830667pt;}
.y3d{bottom:66.560000pt;}
.y52{bottom:66.910667pt;}
.y51{bottom:78.430667pt;}
.y45{bottom:80.030667pt;}
.y3c{bottom:81.920000pt;}
.y50{bottom:83.870667pt;}
.yf7{bottom:88.032000pt;}
.y90{bottom:88.672000pt;}
.y57{bottom:89.312000pt;}
.yc4{bottom:96.672000pt;}
.y4f{bottom:97.950667pt;}
.y3b{bottom:98.280000pt;}
.y130{bottom:99.552000pt;}
.y42{bottom:101.796000pt;}
.yf6{bottom:103.392000pt;}
.y8f{bottom:104.032000pt;}
.y15f{bottom:109.472000pt;}
.y4e{bottom:111.710667pt;}
.yc3{bottom:112.032000pt;}
.y3a{bottom:113.640000pt;}
.y12f{bottom:114.912000pt;}
.yf5{bottom:118.752000pt;}
.y8e{bottom:119.392000pt;}
.y15e{bottom:124.832000pt;}
.y4d{bottom:125.470667pt;}
.yc2{bottom:127.424000pt;}
.y39{bottom:129.000000pt;}
.y12e{bottom:130.304000pt;}
.yf4{bottom:134.146667pt;}
.y8d{bottom:134.786667pt;}
.y44{bottom:135.710667pt;}
.y4c{bottom:139.230667pt;}
.y15d{bottom:140.226667pt;}
.yc1{bottom:142.786667pt;}
.y38{bottom:144.360000pt;}
.y43{bottom:145.337333pt;}
.y12d{bottom:145.346667pt;}
.yf3{bottom:149.506667pt;}
.y8c{bottom:150.146667pt;}
.y4b{bottom:153.017333pt;}
.y15c{bottom:155.586667pt;}
.yc0{bottom:158.146667pt;}
.y37{bottom:159.720000pt;}
.y12c{bottom:160.706667pt;}
.yf2{bottom:164.866667pt;}
.y8b{bottom:165.506667pt;}
.y15b{bottom:170.946667pt;}
.ybf{bottom:173.506667pt;}
.y36{bottom:175.080000pt;}
.y12b{bottom:176.066667pt;}
.yf1{bottom:180.226667pt;}
.y15a{bottom:186.306667pt;}
.y8a{bottom:188.866667pt;}
.y35{bottom:190.440000pt;}
.y12a{bottom:191.426667pt;}
.yf0{bottom:195.266667pt;}
.y159{bottom:201.346667pt;}
.ybe{bottom:203.586667pt;}
.y89{bottom:203.906667pt;}
.y34{bottom:205.506667pt;}
.y129{bottom:206.786667pt;}
.y158{bottom:216.706667pt;}
.yef{bottom:218.946667pt;}
.y88{bottom:219.266667pt;}
.y33{bottom:220.866667pt;}
.y128{bottom:222.146667pt;}
.y1f{bottom:225.026667pt;}
.y157{bottom:232.066667pt;}
.yee{bottom:234.306667pt;}
.y87{bottom:234.626667pt;}
.y32{bottom:236.226667pt;}
.y127{bottom:237.186667pt;}
.ybd{bottom:238.146667pt;}
.y1e{bottom:246.466667pt;}
.y156{bottom:247.453333pt;}
.yed{bottom:249.373333pt;}
.y86{bottom:249.693333pt;}
.y31{bottom:251.586667pt;}
.ybc{bottom:253.533333pt;}
.y126{bottom:260.893333pt;}
.y155{bottom:262.813333pt;}
.yec{bottom:264.733333pt;}
.y30{bottom:266.946667pt;}
.y1d{bottom:268.226667pt;}
.ybb{bottom:268.893333pt;}
.y10{bottom:273.373333pt;}
.y125{bottom:276.253333pt;}
.y154{bottom:278.173333pt;}
.yeb{bottom:279.773333pt;}
.y2f{bottom:282.306667pt;}
.yba{bottom:284.253333pt;}
.y85{bottom:288.733333pt;}
.y1c{bottom:289.666667pt;}
.y124{bottom:291.613333pt;}
.y153{bottom:293.533333pt;}
.y2e{bottom:297.666667pt;}
.yb9{bottom:299.293333pt;}
.yea{bottom:303.133333pt;}
.y84{bottom:304.093333pt;}
.y123{bottom:306.973333pt;}
.y152{bottom:308.893333pt;}
.y1b{bottom:311.106667pt;}
.y2d{bottom:312.706667pt;}
.ye9{bottom:315.933333pt;}
.y83{bottom:319.453333pt;}
.y122{bottom:322.333333pt;}
.yb8{bottom:322.973333pt;}
.y151{bottom:324.253333pt;}
.ye8{bottom:331.933333pt;}
.y1a{bottom:332.573333pt;}
.y82{bottom:334.813333pt;}
.y2c{bottom:335.773333pt;}
.y121{bottom:337.373333pt;}
.yb7{bottom:338.333333pt;}
.y150{bottom:339.613333pt;}
.ye7{bottom:347.933333pt;}
.y2b{bottom:349.533333pt;}
.y81{bottom:350.173333pt;}
.y120{bottom:352.413333pt;}
.yb6{bottom:353.373333pt;}
.y19{bottom:354.013333pt;}
.y14f{bottom:354.973333pt;}
.y2a{bottom:363.293333pt;}
.ye6{bottom:363.973333pt;}
.y11f{bottom:365.253333pt;}
.y80{bottom:365.573333pt;}
.yb5{bottom:368.773333pt;}
.y14e{bottom:370.373333pt;}
.y18{bottom:375.453333pt;}
.y29{bottom:377.053333pt;}
.ye5{bottom:379.973333pt;}
.y7f{bottom:380.613333pt;}
.y11e{bottom:381.253333pt;}
.yb4{bottom:384.133333pt;}
.y14d{bottom:385.413333pt;}
.y28{bottom:390.813333pt;}
.y7e{bottom:395.973333pt;}
.y17{bottom:396.893333pt;}
.y11d{bottom:397.253333pt;}
.yb3{bottom:399.493333pt;}
.y14c{bottom:400.773333pt;}
.y27{bottom:404.893333pt;}
.y7d{bottom:411.333333pt;}
.ye3{bottom:411.973333pt;}
.y11c{bottom:413.253333pt;}
.y14b{bottom:416.133333pt;}
.y16{bottom:418.333333pt;}
.y26{bottom:418.653333pt;}
.yb2{bottom:422.853333pt;}
.y7c{bottom:426.693333pt;}
.y11b{bottom:429.253333pt;}
.ye2{bottom:431.173333pt;}
.y14a{bottom:431.493333pt;}
.y25{bottom:432.413333pt;}
.yb1{bottom:438.213333pt;}
.y15{bottom:439.813333pt;}
.y7b{bottom:442.053333pt;}
.y11a{bottom:445.253333pt;}
.y24{bottom:446.213333pt;}
.ye1{bottom:446.533333pt;}
.y149{bottom:446.853333pt;}
.yb0{bottom:453.573333pt;}
.y7a{bottom:457.413333pt;}
.y23{bottom:459.973333pt;}
.y14{bottom:461.253333pt;}
.y148{bottom:462.213333pt;}
.yaf{bottom:468.933333pt;}
.ye0{bottom:470.213333pt;}
.y79{bottom:472.773333pt;}
.y22{bottom:473.733333pt;}
.y117{bottom:477.253333pt;}
.y147{bottom:477.600000pt;}
.y13{bottom:482.693333pt;}
.yae{bottom:484.320000pt;}
.ydf{bottom:485.600000pt;}
.y21{bottom:487.493333pt;}
.y78{bottom:488.160000pt;}
.y146{bottom:492.960000pt;}
.y116{bottom:493.280000pt;}
.yad{bottom:499.680000pt;}
.yde{bottom:500.960000pt;}
.y77{bottom:503.520000pt;}
.y12{bottom:504.133333pt;}
.y145{bottom:508.320000pt;}
.y115{bottom:509.280000pt;}
.y20{bottom:515.013333pt;}
.ydd{bottom:516.320000pt;}
.y76{bottom:518.880000pt;}
.yac{bottom:523.040000pt;}
.y144{bottom:523.680000pt;}
.y114{bottom:525.280000pt;}
.y11{bottom:525.893333pt;}
.ydc{bottom:531.360000pt;}
.y75{bottom:535.200000pt;}
.yab{bottom:538.080000pt;}
.y143{bottom:539.040000pt;}
.y113{bottom:541.280000pt;}
.ydb{bottom:546.720000pt;}
.y74{bottom:551.200000pt;}
.yaa{bottom:553.440000pt;}
.y142{bottom:554.080000pt;}
.y73{bottom:567.520000pt;}
.ya9{bottom:568.800000pt;}
.y141{bottom:569.440000pt;}
.yda{bottom:570.080000pt;}
.y112{bottom:575.840000pt;}
.y72{bottom:583.840000pt;}
.ya8{bottom:584.160000pt;}
.y140{bottom:584.800000pt;}
.yd9{bottom:585.440000pt;}
.y111{bottom:591.200000pt;}
.y71{bottom:599.226667pt;}
.ya7{bottom:599.546667pt;}
.y13f{bottom:600.186667pt;}
.yd8{bottom:600.826667pt;}
.y70{bottom:614.586667pt;}
.y110{bottom:614.906667pt;}
.y13e{bottom:615.546667pt;}
.yd7{bottom:616.186667pt;}
.ya6{bottom:622.906667pt;}
.y6f{bottom:629.946667pt;}
.y10f{bottom:630.266667pt;}
.y13d{bottom:630.906667pt;}
.yd6{bottom:631.546667pt;}
.ya5{bottom:638.266667pt;}
.y6e{bottom:645.306667pt;}
.y10e{bottom:645.626667pt;}
.y13c{bottom:646.266667pt;}
.yd5{bottom:646.906667pt;}
.ya4{bottom:653.626667pt;}
.y6d{bottom:660.666667pt;}
.y10d{bottom:660.986667pt;}
.y13b{bottom:661.626667pt;}
.yd4{bottom:662.266667pt;}
.ya3{bottom:668.986667pt;}
.y6c{bottom:676.026667pt;}
.y10c{bottom:676.346667pt;}
.y13a{bottom:676.986667pt;}
.yd3{bottom:677.626667pt;}
.ya2{bottom:684.346667pt;}
.y10b{bottom:691.706667pt;}
.y139{bottom:692.346667pt;}
.yd2{bottom:692.986667pt;}
.y6b{bottom:699.386667pt;}
.y10a{bottom:706.746667pt;}
.ya1{bottom:707.706667pt;}
.yd1{bottom:708.346667pt;}
.y6a{bottom:714.786667pt;}
.y138{bottom:722.786667pt;}
.ya0{bottom:723.106667pt;}
.yd0{bottom:723.746667pt;}
.y109{bottom:729.826667pt;}
.y69{bottom:730.146667pt;}
.y9f{bottom:738.146667pt;}
.ycf{bottom:739.106667pt;}
.y108{bottom:742.960000pt;}
.y68{bottom:745.186667pt;}
.y137{bottom:746.146667pt;}
.y9e{bottom:753.506667pt;}
.yce{bottom:754.146667pt;}
.y107{bottom:758.960000pt;}
.y67{bottom:760.546667pt;}
.y136{bottom:761.506667pt;}
.y9d{bottom:768.866667pt;}
.ycd{bottom:769.506667pt;}
.y105{bottom:774.960000pt;}
.y66{bottom:775.906667pt;}
.y135{bottom:776.866667pt;}
.y9c{bottom:784.226667pt;}
.ycc{bottom:784.866667pt;}
.y104{bottom:790.640000pt;}
.y65{bottom:791.266667pt;}
.y134{bottom:792.226667pt;}
.ycb{bottom:800.226667pt;}
.y64{bottom:806.626667pt;}
.y102{bottom:806.640000pt;}
.y9b{bottom:807.586667pt;}
.yf{bottom:812.706667pt;}
.yca{bottom:815.586667pt;}
.y63{bottom:821.986667pt;}
.y100{bottom:822.640000pt;}
.y9a{bottom:822.946667pt;}
.yc9{bottom:830.973333pt;}
.ye{bottom:834.493333pt;}
.y62{bottom:837.373333pt;}
.y99{bottom:838.333333pt;}
.yff{bottom:838.653333pt;}
.yc8{bottom:846.333333pt;}
.yd{bottom:849.533333pt;}
.y61{bottom:852.733333pt;}
.y98{bottom:853.693333pt;}
.yfe{bottom:854.653333pt;}
.yc{bottom:858.813333pt;}
.yc7{bottom:861.693333pt;}
.y60{bottom:868.093333pt;}
.y97{bottom:869.053333pt;}
.yfd{bottom:870.653333pt;}
.yc6{bottom:877.053333pt;}
.yb{bottom:880.253333pt;}
.y5f{bottom:883.453333pt;}
.y96{bottom:884.413333pt;}
.yfc{bottom:886.653333pt;}
.yc5{bottom:892.413333pt;}
.y5e{bottom:898.813333pt;}
.y133{bottom:899.773333pt;}
.yfb{bottom:902.653333pt;}
.ya{bottom:906.493333pt;}
.y95{bottom:907.773333pt;}
.y5d{bottom:913.853333pt;}
.y132{bottom:914.813333pt;}
.yfa{bottom:918.653333pt;}
.y94{bottom:922.813333pt;}
.y9{bottom:928.253333pt;}
.y5c{bottom:928.893333pt;}
.y131{bottom:929.853333pt;}
.y93{bottom:938.173333pt;}
.y5b{bottom:952.613333pt;}
.y8{bottom:952.933333pt;}
.yf9{bottom:953.253333pt;}
.y92{bottom:953.573333pt;}
.y58{bottom:955.840000pt;}
.y5a{bottom:967.973333pt;}
.yf8{bottom:968.613333pt;}
.y91{bottom:968.933333pt;}
.y6{bottom:984.933333pt;}
.y1{bottom:998.693333pt;}
.h15{height:5.022500pt;}
.h1e{height:15.026667pt;}
.h1a{height:15.346667pt;}
.h1d{height:15.360000pt;}
.h1b{height:15.386667pt;}
.h16{height:24.640000pt;}
.h13{height:26.381250pt;}
.h20{height:30.720000pt;}
.h1c{height:30.746667pt;}
.hb{height:33.918750pt;}
.h9{height:34.830000pt;}
.he{height:36.431250pt;}
.hd{height:37.410000pt;}
.h19{height:37.537500pt;}
.hf{height:47.713750pt;}
.h14{height:49.020000pt;}
.h7{height:51.600000pt;}
.h6{height:52.762500pt;}
.ha{height:54.180000pt;}
.h10{height:55.256809pt;}
.h18{height:55.965000pt;}
.h17{height:56.502250pt;}
.h8{height:56.513750pt;}
.h5{height:57.787500pt;}
.h1f{height:58.238750pt;}
.h3{height:58.563750pt;}
.h12{height:62.812500pt;}
.h2{height:75.546667pt;}
.h4{height:103.680000pt;}
.h11{height:170.920000pt;}
.hc{height:534.213333pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wa{width:43.872000pt;}
.w9{width:47.360000pt;}
.w8{width:53.146667pt;}
.wc{width:53.426667pt;}
.w23{width:55.360000pt;}
.wb{width:56.978667pt;}
.w19{width:58.240000pt;}
.w26{width:59.506667pt;}
.w16{width:65.312000pt;}
.w1f{width:65.920000pt;}
.w12{width:66.546667pt;}
.w11{width:72.000000pt;}
.w1e{width:73.618667pt;}
.w1d{width:80.992000pt;}
.w10{width:81.298667pt;}
.w1b{width:88.666667pt;}
.w1c{width:89.946667pt;}
.w2{width:93.460000pt;}
.w17{width:95.058667pt;}
.w24{width:95.104000pt;}
.we{width:96.346667pt;}
.wf{width:99.904000pt;}
.w22{width:100.864000pt;}
.w1a{width:101.440000pt;}
.w15{width:106.304000pt;}
.wd{width:109.760000pt;}
.w4{width:117.780000pt;}
.w21{width:124.160000pt;}
.w18{width:125.440000pt;}
.w25{width:126.080000pt;}
.w14{width:134.400000pt;}
.w6{width:144.960000pt;}
.w7{width:168.680000pt;}
.w20{width:504.160000pt;}
.w13{width:529.120000pt;}
.w5{width:530.440000pt;}
.w3{width:561.160000pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.112000pt;}
.x1b{left:7.373333pt;}
.x16{left:12.788000pt;}
.x19{left:14.388000pt;}
.x4{left:15.666667pt;}
.x18{left:17.268000pt;}
.x17{left:23.348000pt;}
.x20{left:25.908000pt;}
.x6{left:29.426667pt;}
.x1d{left:31.373333pt;}
.x10{left:39.028000pt;}
.x1f{left:42.260000pt;}
.x11{left:45.140000pt;}
.x15{left:47.380000pt;}
.xf{left:48.980000pt;}
.x1c{left:55.373333pt;}
.x21{left:58.902667pt;}
.x14{left:67.542667pt;}
.x1{left:69.804000pt;}
.x7{left:76.832000pt;}
.xa{left:79.392000pt;}
.x43{left:81.632000pt;}
.x13{left:82.582667pt;}
.x2{left:85.462667pt;}
.x2e{left:88.352000pt;}
.x26{left:89.952000pt;}
.x22{left:91.542667pt;}
.x1e{left:95.062667pt;}
.x25{left:100.832000pt;}
.x39{left:104.352000pt;}
.x44{left:105.632000pt;}
.x12{left:110.742667pt;}
.x5{left:129.653333pt;}
.xc{left:131.584000pt;}
.x30{left:132.564000pt;}
.x3b{left:145.040000pt;}
.xd{left:155.906667pt;}
.x28{left:159.760000pt;}
.x3{left:163.280000pt;}
.x1a{left:194.640000pt;}
.x27{left:238.813333pt;}
.x31{left:242.973333pt;}
.x3c{left:247.453333pt;}
.x36{left:267.613333pt;}
.x41{left:269.853333pt;}
.x29{left:329.093333pt;}
.x3a{left:333.573333pt;}
.x3d{left:336.773333pt;}
.x32{left:339.973333pt;}
.x2f{left:368.480000pt;}
.x42{left:371.360000pt;}
.x37{left:374.560000pt;}
.x2a{left:382.880000pt;}
.x3e{left:427.360000pt;}
.x2b{left:430.880000pt;}
.x33{left:440.520000pt;}
.x2c{left:475.400000pt;}
.x3f{left:509.000000pt;}
.x34{left:522.480000pt;}
.xe{left:533.026667pt;}
.x38{left:536.240000pt;}
.x40{left:583.280000pt;}
.x2d{left:587.120000pt;}
.x35{left:595.133333pt;}
.xb{left:679.973333pt;}
.x9{left:680.933333pt;}
.x8{left:697.573333pt;}
.x23{left:717.413333pt;}
}




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