
    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_5208866b15e8d0c1b492595b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_af273a67ab54651568a2a16c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.971191;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_e8be62d9d2ded58295ae4a87.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.126953;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_60a6a981ab82e5703d765319.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.971191;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_a314b2fd5a2b7351da079293.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100098;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_30bc8a5ef275ad86ff320ca9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e420e68d3d5dc242bd1b03cc.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_c9b0758909775bf4c0cd9d57.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.939941;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_e55b06c9b603fa3f4bff70ea.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_5466f3833f20c53e3f3d3aa7.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c3db8ce4c21bab769963c0f0.woff2')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;}
.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);}
.m3{transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261625,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-84.960000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v2{vertical-align:20.880000px;}
.v3{vertical-align:23.760000px;}
.ls11{letter-spacing:-5.760000px;}
.ls1a{letter-spacing:-1.656000px;}
.ls18{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.219000px;}
.lsf{letter-spacing:-0.216000px;}
.ls15{letter-spacing:-0.166800px;}
.ls10{letter-spacing:-0.144000px;}
.ls16{letter-spacing:-0.112200px;}
.ls6{letter-spacing:-0.058320px;}
.lsd{letter-spacing:-0.049680px;}
.ls9{letter-spacing:-0.005040px;}
.ls5{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.020880px;}
.ls4{letter-spacing:0.072000px;}
.lse{letter-spacing:0.072600px;}
.ls13{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.200400px;}
.ls3{letter-spacing:0.231000px;}
.ls2{letter-spacing:0.231120px;}
.ls0{letter-spacing:0.252000px;}
.ls22{letter-spacing:0.288000px;}
.lsa{letter-spacing:0.306000px;}
.ls8{letter-spacing:0.324000px;}
.ls7{letter-spacing:0.360000px;}
.ls1e{letter-spacing:0.396000px;}
.ls1c{letter-spacing:0.432000px;}
.ls27{letter-spacing:0.504000px;}
.ls1b{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.672000px;}
.ls17{letter-spacing:0.720000px;}
.ls20{letter-spacing:1.440000px;}
.ls26{letter-spacing:4.320000px;}
.ls14{letter-spacing:5.040000px;}
.ls23{letter-spacing:6.480000px;}
.ls28{letter-spacing:23.760000px;}
.ls12{letter-spacing:48.240000px;}
.ls24{letter-spacing:54.000000px;}
.ls1f{letter-spacing:101.213280px;}
.ls21{letter-spacing:120.240000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(13,13,13),0 0.015em rgb(13,13,13),0.015em 0 rgb(13,13,13),0 -0.015em  rgb(13,13,13);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(13,13,13);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsb{word-spacing:-21.096000px;}
.wsc{word-spacing:-20.952000px;}
.wsf{word-spacing:-20.566320px;}
.ws1a{word-spacing:-19.440000px;}
.ws8{word-spacing:-19.376880px;}
.ws6{word-spacing:-19.010880px;}
.ws7{word-spacing:-18.905280px;}
.wsa{word-spacing:-18.777480px;}
.ws10{word-spacing:-18.720000px;}
.ws4{word-spacing:-18.704880px;}
.ws5{word-spacing:-18.699840px;}
.ws9{word-spacing:-18.655200px;}
.ws17{word-spacing:-18.576000px;}
.wsd{word-spacing:-18.360000px;}
.ws1b{word-spacing:-18.288000px;}
.ws13{word-spacing:-18.144000px;}
.ws11{word-spacing:-18.072000px;}
.ws14{word-spacing:-18.000000px;}
.ws19{word-spacing:-17.856000px;}
.ws18{word-spacing:-17.784000px;}
.ws15{word-spacing:-17.712000px;}
.ws12{word-spacing:-17.280000px;}
.ws16{word-spacing:-16.344000px;}
.ws3{word-spacing:-16.074000px;}
.ws2{word-spacing:-15.822000px;}
.ws1{word-spacing:-15.300000px;}
.ws0{word-spacing:-13.447440px;}
.wse{word-spacing:0.000000px;}
._19{margin-left:-18.144720px;}
._18{margin-left:-16.396560px;}
._1a{margin-left:-6.712800px;}
._1b{margin-left:-5.472960px;}
._a{margin-left:-4.206960px;}
._b{margin-left:-3.135600px;}
._2{margin-left:-2.054400px;}
._1{margin-left:-1.002240px;}
._0{width:1.127520px;}
._5{width:2.706480px;}
._17{width:4.675440px;}
._1f{width:5.903760px;}
._11{width:7.111440px;}
._6{width:8.154000px;}
._3{width:9.852000px;}
._8{width:10.854000px;}
._7{width:12.096000px;}
._9{width:13.434960px;}
._16{width:14.652240px;}
._21{width:16.163760px;}
._c{width:17.629200px;}
._20{width:19.378320px;}
._f{width:20.437920px;}
._12{width:21.872160px;}
._10{width:23.067360px;}
._d{width:28.983600px;}
._e{width:30.306720px;}
._15{width:32.031360px;}
._14{width:33.047280px;}
._22{width:36.288000px;}
._13{width:39.561120px;}
._26{width:52.202880px;}
._25{width:53.568000px;}
._24{width:64.152000px;}
._29{width:70.488000px;}
._27{width:71.496000px;}
._28{width:73.250400px;}
._23{width:89.568000px;}
._1e{width:123.266880px;}
._4{width:199.620000px;}
._1d{width:595.766880px;}
._1c{width:767.066880px;}
.fc6{color:rgb(14,16,26);}
.fc5{color:rgb(84,141,212);}
.fc4{color:transparent;}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(37,37,37);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:27.360000px;}
.fs6{font-size:30.240000px;}
.fs9{font-size:36.000000px;}
.fs2{font-size:38.880000px;}
.fs5{font-size:45.360000px;}
.fsb{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:63.360000px;}
.fsd{font-size:63.504000px;}
.fs1{font-size:66.240000px;}
.fsa{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs4{font-size:120.240000px;}
.y3{bottom:-17.784000px;}
.y0{bottom:0.000000px;}
.y2{bottom:2.556000px;}
.ya{bottom:3.591000px;}
.y8{bottom:4.896000px;}
.y6a{bottom:5.076000px;}
.y5e{bottom:5.955000px;}
.yeb{bottom:7.776000px;}
.yc{bottom:10.971000px;}
.y61{bottom:15.660000px;}
.y5d{bottom:15.675000px;}
.y104{bottom:18.756000px;}
.y12a{bottom:18.795000px;}
.ye9{bottom:18.825000px;}
.yc5{bottom:22.755000px;}
.y5c{bottom:37.275000px;}
.y6b{bottom:47.745000px;}
.y9{bottom:55.665000px;}
.y66{bottom:59.796000px;}
.y65{bottom:64.116000px;}
.yea{bottom:69.840000px;}
.y6{bottom:72.036000px;}
.yb{bottom:74.385000px;}
.y1{bottom:75.060000px;}
.y7{bottom:76.860000px;}
.y62{bottom:81.360000px;}
.y6c{bottom:82.125000px;}
.y64{bottom:83.916000px;}
.y5{bottom:92.016000px;}
.y69{bottom:92.700000px;}
.y4{bottom:111.816000px;}
.y103{bottom:111.960000px;}
.ye7{bottom:115.056000px;}
.y99{bottom:116.136000px;}
.y171{bottom:117.036000px;}
.y128{bottom:121.176000px;}
.yc3{bottom:123.336000px;}
.y101{bottom:124.056000px;}
.ye6{bottom:135.756000px;}
.y98{bottom:136.836000px;}
.y170{bottom:137.736000px;}
.y14d{bottom:141.696000px;}
.yc2{bottom:143.316000px;}
.y38{bottom:148.536000px;}
.y5a{bottom:153.570000px;}
.ye5{bottom:156.810000px;}
.y97{bottom:157.530000px;}
.y16f{bottom:158.430000px;}
.y100{bottom:159.690000px;}
.y14c{bottom:162.930000px;}
.y127{bottom:163.830000px;}
.y59{bottom:165.090000px;}
.y189{bottom:165.450000px;}
.y37{bottom:166.710000px;}
.ye4{bottom:177.870000px;}
.y96{bottom:178.230000px;}
.yc1{bottom:179.130000px;}
.y188{bottom:182.550000px;}
.y58{bottom:183.090000px;}
.y14b{bottom:184.170000px;}
.y36{bottom:184.710000px;}
.y126{bottom:184.890000px;}
.yff{bottom:195.330000px;}
.y95{bottom:198.930000px;}
.ye3{bottom:199.110000px;}
.y16e{bottom:199.830000px;}
.yc0{bottom:200.190000px;}
.y57{bottom:201.270000px;}
.y35{bottom:202.890000px;}
.y14a{bottom:204.870000px;}
.y125{bottom:206.130000px;}
.y56{bottom:219.450000px;}
.y94{bottom:219.630000px;}
.ye2{bottom:220.170000px;}
.y34{bottom:220.530000px;}
.ybf{bottom:221.430000px;}
.y187{bottom:224.490000px;}
.y149{bottom:225.570000px;}
.y124{bottom:227.190000px;}
.yfe{bottom:231.150000px;}
.y33{bottom:236.910000px;}
.y55{bottom:237.450000px;}
.y93{bottom:240.330000px;}
.y16d{bottom:241.230000px;}
.ye1{bottom:241.410000px;}
.ybe{bottom:242.130000px;}
.y186{bottom:245.190000px;}
.y148{bottom:246.270000px;}
.y123{bottom:248.430000px;}
.yfd{bottom:252.390000px;}
.y32{bottom:253.290000px;}
.y54{bottom:255.630000px;}
.y92{bottom:261.030000px;}
.y16c{bottom:261.930000px;}
.ye0{bottom:262.470000px;}
.ybd{bottom:262.830000px;}
.y185{bottom:265.890000px;}
.y147{bottom:266.970000px;}
.y31{bottom:269.490000px;}
.y122{bottom:269.670000px;}
.yfc{bottom:273.090000px;}
.y53{bottom:273.630000px;}
.y91{bottom:281.730000px;}
.y16b{bottom:282.630000px;}
.ydf{bottom:283.710000px;}
.y30{bottom:285.870000px;}
.y184{bottom:286.590000px;}
.y146{bottom:287.715000px;}
.y121{bottom:290.415000px;}
.y52{bottom:291.855000px;}
.y2f{bottom:302.115000px;}
.y90{bottom:302.475000px;}
.y16a{bottom:303.375000px;}
.ybc{bottom:304.635000px;}
.yde{bottom:304.815000px;}
.y183{bottom:307.335000px;}
.y145{bottom:308.415000px;}
.yfb{bottom:308.595000px;}
.y51{bottom:309.855000px;}
.y120{bottom:311.115000px;}
.y2e{bottom:318.495000px;}
.y8f{bottom:323.175000px;}
.y169{bottom:324.075000px;}
.ybb{bottom:325.335000px;}
.ydd{bottom:326.055000px;}
.y50{bottom:328.035000px;}
.y144{bottom:329.115000px;}
.y11f{bottom:331.815000px;}
.y2d{bottom:334.695000px;}
.y8e{bottom:343.695000px;}
.yfa{bottom:344.415000px;}
.y168{bottom:344.775000px;}
.yba{bottom:346.035000px;}
.y4f{bottom:346.215000px;}
.ydc{bottom:347.115000px;}
.y182{bottom:348.735000px;}
.y143{bottom:349.815000px;}
.y2c{bottom:351.075000px;}
.y11e{bottom:352.335000px;}
.y4e{bottom:364.215000px;}
.y8d{bottom:364.935000px;}
.yf9{bottom:365.655000px;}
.yb9{bottom:366.735000px;}
.y2b{bottom:367.275000px;}
.ydb{bottom:368.355000px;}
.y181{bottom:369.435000px;}
.y142{bottom:370.515000px;}
.y11d{bottom:373.575000px;}
.y4d{bottom:382.395000px;}
.y2a{bottom:383.655000px;}
.y8c{bottom:385.635000px;}
.yf8{bottom:386.715000px;}
.yb8{bottom:387.435000px;}
.y129{bottom:388.620000px;}
.yda{bottom:389.415000px;}
.y180{bottom:390.135000px;}
.y141{bottom:391.035000px;}
.y29{bottom:399.855000px;}
.y4c{bottom:400.395000px;}
.y8b{bottom:406.335000px;}
.yf7{bottom:407.955000px;}
.yb7{bottom:408.135000px;}
.y167{bottom:408.315000px;}
.y11c{bottom:409.215000px;}
.yd9{bottom:410.655000px;}
.y17f{bottom:410.835000px;}
.y140{bottom:412.275000px;}
.y28{bottom:416.235000px;}
.y4b{bottom:418.575000px;}
.y8a{bottom:427.035000px;}
.yb6{bottom:428.835000px;}
.y166{bottom:429.015000px;}
.yf6{bottom:429.195000px;}
.y11b{bottom:430.095000px;}
.y17e{bottom:431.535000px;}
.yd8{bottom:431.715000px;}
.y27{bottom:432.435000px;}
.y13f{bottom:433.515000px;}
.y4a{bottom:436.755000px;}
.y89{bottom:447.735000px;}
.y26{bottom:448.815000px;}
.yb5{bottom:449.535000px;}
.y165{bottom:449.715000px;}
.yf5{bottom:449.895000px;}
.y11a{bottom:451.155000px;}
.y17d{bottom:452.235000px;}
.yd7{bottom:452.955000px;}
.y13e{bottom:454.215000px;}
.y49{bottom:454.755000px;}
.y25{bottom:465.015000px;}
.y88{bottom:468.255000px;}
.yb4{bottom:469.875000px;}
.y164{bottom:470.415000px;}
.yf4{bottom:470.595000px;}
.y119{bottom:472.395000px;}
.y48{bottom:472.935000px;}
.yd6{bottom:474.015000px;}
.y13d{bottom:474.915000px;}
.y24{bottom:481.395000px;}
.y87{bottom:489.495000px;}
.yb3{bottom:490.575000px;}
.y47{bottom:490.935000px;}
.y163{bottom:491.115000px;}
.yf3{bottom:491.295000px;}
.y118{bottom:493.455000px;}
.y17c{bottom:493.635000px;}
.yd5{bottom:495.255000px;}
.y13c{bottom:495.615000px;}
.y23{bottom:497.595000px;}
.yc4{bottom:505.080000px;}
.y46{bottom:509.115000px;}
.y86{bottom:510.735000px;}
.yb2{bottom:511.275000px;}
.yf2{bottom:511.455000px;}
.y162{bottom:511.815000px;}
.y22{bottom:513.975000px;}
.y17b{bottom:514.335000px;}
.y117{bottom:514.695000px;}
.y13b{bottom:516.135000px;}
.yd4{bottom:516.315000px;}
.y45{bottom:527.295000px;}
.y21{bottom:530.355000px;}
.y85{bottom:531.435000px;}
.yb1{bottom:531.975000px;}
.y161{bottom:532.515000px;}
.yf1{bottom:533.055000px;}
.y17a{bottom:535.035000px;}
.y116{bottom:535.755000px;}
.y13a{bottom:537.375000px;}
.yd3{bottom:537.555000px;}
.y102{bottom:542.160000px;}
.y44{bottom:545.295000px;}
.y20{bottom:546.555000px;}
.y84{bottom:552.165000px;}
.yb0{bottom:552.705000px;}
.y160{bottom:552.885000px;}
.y179{bottom:555.765000px;}
.y115{bottom:557.385000px;}
.yd2{bottom:558.645000px;}
.y1f{bottom:562.965000px;}
.y43{bottom:563.505000px;}
.yf0{bottom:568.545000px;}
.y83{bottom:572.865000px;}
.yaf{bottom:573.405000px;}
.y178{bottom:576.465000px;}
.y114{bottom:578.445000px;}
.y1e{bottom:579.165000px;}
.y139{bottom:579.345000px;}
.yd1{bottom:579.885000px;}
.y42{bottom:581.505000px;}
.y82{bottom:593.565000px;}
.yae{bottom:594.105000px;}
.y15f{bottom:594.825000px;}
.y1d{bottom:595.545000px;}
.y177{bottom:597.165000px;}
.y41{bottom:599.685000px;}
.y138{bottom:600.045000px;}
.yd0{bottom:600.945000px;}
.yef{bottom:604.365000px;}
.y1c{bottom:611.745000px;}
.y81{bottom:614.265000px;}
.yad{bottom:614.805000px;}
.y15e{bottom:615.525000px;}
.y40{bottom:617.685000px;}
.y176{bottom:617.865000px;}
.y137{bottom:620.565000px;}
.y113{bottom:620.745000px;}
.ycf{bottom:622.185000px;}
.y1b{bottom:628.125000px;}
.y80{bottom:634.785000px;}
.yac{bottom:635.505000px;}
.y3f{bottom:635.865000px;}
.y15d{bottom:636.225000px;}
.y175{bottom:638.565000px;}
.yee{bottom:640.005000px;}
.y136{bottom:641.805000px;}
.y112{bottom:641.985000px;}
.y1a{bottom:644.325000px;}
.y3e{bottom:654.045000px;}
.y7f{bottom:656.025000px;}
.yab{bottom:656.205000px;}
.y15c{bottom:656.925000px;}
.yce{bottom:657.825000px;}
.y174{bottom:659.265000px;}
.y19{bottom:660.705000px;}
.y111{bottom:663.045000px;}
.y3d{bottom:672.045000px;}
.yed{bottom:675.645000px;}
.y18{bottom:676.905000px;}
.y7e{bottom:677.265000px;}
.y15b{bottom:677.625000px;}
.ycd{bottom:678.885000px;}
.y173{bottom:679.965000px;}
.y135{bottom:683.745000px;}
.y110{bottom:684.285000px;}
.y3c{bottom:690.225000px;}
.ye8{bottom:690.480000px;}
.yaa{bottom:697.785000px;}
.y7d{bottom:697.965000px;}
.y15a{bottom:698.325000px;}
.y17{bottom:699.405000px;}
.y172{bottom:700.665000px;}
.y134{bottom:704.445000px;}
.y10f{bottom:704.985000px;}
.y3b{bottom:708.225000px;}
.y16{bottom:711.465000px;}
.y7c{bottom:718.665000px;}
.ya9{bottom:719.025000px;}
.ycc{bottom:721.365000px;}
.y133{bottom:725.145000px;}
.y10e{bottom:725.685000px;}
.y3a{bottom:726.405000px;}
.y15{bottom:728.745000px;}
.y7b{bottom:739.365000px;}
.y159{bottom:739.725000px;}
.ya8{bottom:740.265000px;}
.ycb{bottom:742.065000px;}
.y39{bottom:744.585000px;}
.y132{bottom:745.665000px;}
.y14{bottom:746.025000px;}
.y10d{bottom:746.385000px;}
.yec{bottom:747.105000px;}
.y14e{bottom:760.320000px;}
.y158{bottom:760.425000px;}
.ya7{bottom:760.965000px;}
.yca{bottom:762.765000px;}
.y10c{bottom:766.905000px;}
.y7a{bottom:781.125000px;}
.ya6{bottom:781.665000px;}
.yc9{bottom:783.465000px;}
.y13{bottom:784.365000px;}
.y10b{bottom:788.145000px;}
.ya5{bottom:802.185000px;}
.y79{bottom:802.365000px;}
.y12{bottom:804.165000px;}
.y10a{bottom:808.890000px;}
.y78{bottom:823.110000px;}
.yc8{bottom:824.910000px;}
.y5b{bottom:826.155000px;}
.y109{bottom:829.590000px;}
.y131{bottom:838.230000px;}
.y157{bottom:843.630000px;}
.y77{bottom:843.810000px;}
.ya4{bottom:844.170000px;}
.yc7{bottom:845.610000px;}
.y108{bottom:850.290000px;}
.y76{bottom:864.330000px;}
.y156{bottom:864.510000px;}
.ya3{bottom:865.770000px;}
.yc6{bottom:866.310000px;}
.y107{bottom:870.990000px;}
.y130{bottom:873.870000px;}
.y75{bottom:885.570000px;}
.y155{bottom:885.930000px;}
.ya2{bottom:887.010000px;}
.y106{bottom:892.590000px;}
.y74{bottom:906.810000px;}
.y154{bottom:907.170000px;}
.ya1{bottom:907.710000px;}
.y12f{bottom:909.510000px;}
.y11{bottom:911.130000px;}
.y73{bottom:927.510000px;}
.y153{bottom:927.870000px;}
.y105{bottom:928.230000px;}
.ya0{bottom:928.410000px;}
.y10{bottom:936.330000px;}
.y12e{bottom:945.330000px;}
.y72{bottom:948.210000px;}
.y152{bottom:948.570000px;}
.y9f{bottom:949.110000px;}
.y71{bottom:968.910000px;}
.y151{bottom:969.270000px;}
.y9e{bottom:969.810000px;}
.yf{bottom:970.530000px;}
.y12d{bottom:980.970000px;}
.y70{bottom:989.610000px;}
.y150{bottom:989.970000px;}
.y9d{bottom:990.510000px;}
.y6f{bottom:1010.310000px;}
.y14f{bottom:1010.670000px;}
.y9c{bottom:1011.210000px;}
.y12c{bottom:1016.610000px;}
.y6e{bottom:1030.830000px;}
.y60{bottom:1031.370000px;}
.y9b{bottom:1031.910000px;}
.y6d{bottom:1051.710000px;}
.y5f{bottom:1052.070000px;}
.y12b{bottom:1052.430000px;}
.y9a{bottom:1052.610000px;}
.y63{bottom:1072.260000px;}
.ye{bottom:1108.080000px;}
.y68{bottom:1117.080000px;}
.yd{bottom:1122.840000px;}
.y67{bottom:1137.780000px;}
.h1a{height:16.020000px;}
.h4{height:16.200000px;}
.h1{height:18.900000px;}
.h6{height:19.980000px;}
.h21{height:22.140000px;}
.h16{height:26.852344px;}
.ha{height:29.678906px;}
.h19{height:29.700000px;}
.h5{height:32.729063px;}
.h20{height:33.120000px;}
.h7{height:34.920000px;}
.h1e{height:37.620000px;}
.hf{height:38.158594px;}
.h11{height:41.291016px;}
.h17{height:42.602344px;}
.h9{height:44.518359px;}
.h10{height:45.527344px;}
.h12{height:45.695391px;}
.h23{height:50.273438px;}
.h3{height:50.650312px;}
.h18{height:51.328125px;}
.h14{height:55.080000px;}
.he{height:58.651172px;}
.h13{height:59.038594px;}
.hd{height:60.226875px;}
.h15{height:60.646641px;}
.h2{height:61.189805px;}
.h1f{height:62.153438px;}
.h22{height:62.294695px;}
.hb{height:64.413984px;}
.hc{height:66.757500px;}
.h1d{height:70.628906px;}
.h1c{height:70.664062px;}
.h1b{height:72.562500px;}
.h8{height:91.941328px;}
.h0{height:1188.000000px;}
.w3{width:77.445000px;}
.w4{width:176.430000px;}
.w1{width:254.160000px;}
.w2{width:268.380000px;}
.wd{width:274.320000px;}
.wa{width:290.700000px;}
.wc{width:297.900000px;}
.w9{width:318.960000px;}
.w8{width:320.760000px;}
.wb{width:339.840000px;}
.w7{width:354.420000px;}
.w6{width:404.100000px;}
.w5{width:783.495000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x2b{left:1.830000px;}
.x6{left:10.875000px;}
.x20{left:15.225000px;}
.x1a{left:16.380000px;}
.x31{left:37.440000px;}
.x28{left:40.710000px;}
.x16{left:45.000000px;}
.x32{left:48.060000px;}
.x2e{left:50.070000px;}
.x4{left:58.500000px;}
.x30{left:65.190000px;}
.x24{left:66.960000px;}
.x9{left:70.200000px;}
.x1{left:72.540000px;}
.x23{left:75.060000px;}
.x29{left:92.775000px;}
.x33{left:95.940000px;}
.x17{left:99.036000px;}
.x25{left:112.536000px;}
.x3{left:126.930000px;}
.xa{left:187.230000px;}
.xc{left:190.830000px;}
.x1d{left:193.350000px;}
.x21{left:194.430000px;}
.x2f{left:201.600000px;}
.x2c{left:215.460000px;}
.x2d{left:225.900000px;}
.x22{left:228.450000px;}
.x2{left:232.635000px;}
.x27{left:237.420000px;}
.x26{left:243.000000px;}
.x1b{left:276.735000px;}
.x2a{left:288.720000px;}
.x5{left:340.200000px;}
.x1c{left:391.755000px;}
.x7{left:434.235000px;}
.xb{left:459.075000px;}
.x19{left:460.875000px;}
.x1e{left:472.215000px;}
.x18{left:501.375000px;}
.x1f{left:513.900000px;}
.xd{left:622.905000px;}
.xe{left:636.585000px;}
.xf{left:649.365000px;}
.x10{left:659.985000px;}
.x11{left:672.765000px;}
.x8{left:677.820000px;}
.x12{left:686.445000px;}
.x13{left:700.305000px;}
.x14{left:714.165000px;}
.x15{left:727.170000px;}
@media print{
.v4{vertical-align:-75.520000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v2{vertical-align:18.560000pt;}
.v3{vertical-align:21.120000pt;}
.ls11{letter-spacing:-5.120000pt;}
.ls1a{letter-spacing:-1.472000pt;}
.ls18{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.194667pt;}
.lsf{letter-spacing:-0.192000pt;}
.ls15{letter-spacing:-0.148267pt;}
.ls10{letter-spacing:-0.128000pt;}
.ls16{letter-spacing:-0.099733pt;}
.ls6{letter-spacing:-0.051840pt;}
.lsd{letter-spacing:-0.044160pt;}
.ls9{letter-spacing:-0.004480pt;}
.ls5{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.018560pt;}
.ls4{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.064533pt;}
.ls13{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.178133pt;}
.ls3{letter-spacing:0.205333pt;}
.ls2{letter-spacing:0.205440pt;}
.ls0{letter-spacing:0.224000pt;}
.ls22{letter-spacing:0.256000pt;}
.lsa{letter-spacing:0.272000pt;}
.ls8{letter-spacing:0.288000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls1e{letter-spacing:0.352000pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls27{letter-spacing:0.448000pt;}
.ls1b{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.597333pt;}
.ls17{letter-spacing:0.640000pt;}
.ls20{letter-spacing:1.280000pt;}
.ls26{letter-spacing:3.840000pt;}
.ls14{letter-spacing:4.480000pt;}
.ls23{letter-spacing:5.760000pt;}
.ls28{letter-spacing:21.120000pt;}
.ls12{letter-spacing:42.880000pt;}
.ls24{letter-spacing:48.000000pt;}
.ls1f{letter-spacing:89.967360pt;}
.ls21{letter-spacing:106.880000pt;}
.wsb{word-spacing:-18.752000pt;}
.wsc{word-spacing:-18.624000pt;}
.wsf{word-spacing:-18.281173pt;}
.ws1a{word-spacing:-17.280000pt;}
.ws8{word-spacing:-17.223893pt;}
.ws6{word-spacing:-16.898560pt;}
.ws7{word-spacing:-16.804693pt;}
.wsa{word-spacing:-16.691093pt;}
.ws10{word-spacing:-16.640000pt;}
.ws4{word-spacing:-16.626560pt;}
.ws5{word-spacing:-16.622080pt;}
.ws9{word-spacing:-16.582400pt;}
.ws17{word-spacing:-16.512000pt;}
.wsd{word-spacing:-16.320000pt;}
.ws1b{word-spacing:-16.256000pt;}
.ws13{word-spacing:-16.128000pt;}
.ws11{word-spacing:-16.064000pt;}
.ws14{word-spacing:-16.000000pt;}
.ws19{word-spacing:-15.872000pt;}
.ws18{word-spacing:-15.808000pt;}
.ws15{word-spacing:-15.744000pt;}
.ws12{word-spacing:-15.360000pt;}
.ws16{word-spacing:-14.528000pt;}
.ws3{word-spacing:-14.288000pt;}
.ws2{word-spacing:-14.064000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws0{word-spacing:-11.953280pt;}
.wse{word-spacing:0.000000pt;}
._19{margin-left:-16.128640pt;}
._18{margin-left:-14.574720pt;}
._1a{margin-left:-5.966933pt;}
._1b{margin-left:-4.864853pt;}
._a{margin-left:-3.739520pt;}
._b{margin-left:-2.787200pt;}
._2{margin-left:-1.826133pt;}
._1{margin-left:-0.890880pt;}
._0{width:1.002240pt;}
._5{width:2.405760pt;}
._17{width:4.155947pt;}
._1f{width:5.247787pt;}
._11{width:6.321280pt;}
._6{width:7.248000pt;}
._3{width:8.757333pt;}
._8{width:9.648000pt;}
._7{width:10.752000pt;}
._9{width:11.942187pt;}
._16{width:13.024213pt;}
._21{width:14.367787pt;}
._c{width:15.670400pt;}
._20{width:17.225173pt;}
._f{width:18.167040pt;}
._12{width:19.441920pt;}
._10{width:20.504320pt;}
._d{width:25.763200pt;}
._e{width:26.939307pt;}
._15{width:28.472320pt;}
._14{width:29.375360pt;}
._22{width:32.256000pt;}
._13{width:35.165440pt;}
._26{width:46.402560pt;}
._25{width:47.616000pt;}
._24{width:57.024000pt;}
._29{width:62.656000pt;}
._27{width:63.552000pt;}
._28{width:65.111467pt;}
._23{width:79.616000pt;}
._1e{width:109.570560pt;}
._4{width:177.440000pt;}
._1d{width:529.570560pt;}
._1c{width:681.837227pt;}
.fsc{font-size:24.320000pt;}
.fs6{font-size:26.880000pt;}
.fs9{font-size:32.000000pt;}
.fs2{font-size:34.560000pt;}
.fs5{font-size:40.320000pt;}
.fsb{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:56.320000pt;}
.fsd{font-size:56.448000pt;}
.fs1{font-size:58.880000pt;}
.fsa{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs4{font-size:106.880000pt;}
.y3{bottom:-15.808000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:2.272000pt;}
.ya{bottom:3.192000pt;}
.y8{bottom:4.352000pt;}
.y6a{bottom:4.512000pt;}
.y5e{bottom:5.293333pt;}
.yeb{bottom:6.912000pt;}
.yc{bottom:9.752000pt;}
.y61{bottom:13.920000pt;}
.y5d{bottom:13.933333pt;}
.y104{bottom:16.672000pt;}
.y12a{bottom:16.706667pt;}
.ye9{bottom:16.733333pt;}
.yc5{bottom:20.226667pt;}
.y5c{bottom:33.133333pt;}
.y6b{bottom:42.440000pt;}
.y9{bottom:49.480000pt;}
.y66{bottom:53.152000pt;}
.y65{bottom:56.992000pt;}
.yea{bottom:62.080000pt;}
.y6{bottom:64.032000pt;}
.yb{bottom:66.120000pt;}
.y1{bottom:66.720000pt;}
.y7{bottom:68.320000pt;}
.y62{bottom:72.320000pt;}
.y6c{bottom:73.000000pt;}
.y64{bottom:74.592000pt;}
.y5{bottom:81.792000pt;}
.y69{bottom:82.400000pt;}
.y4{bottom:99.392000pt;}
.y103{bottom:99.520000pt;}
.ye7{bottom:102.272000pt;}
.y99{bottom:103.232000pt;}
.y171{bottom:104.032000pt;}
.y128{bottom:107.712000pt;}
.yc3{bottom:109.632000pt;}
.y101{bottom:110.272000pt;}
.ye6{bottom:120.672000pt;}
.y98{bottom:121.632000pt;}
.y170{bottom:122.432000pt;}
.y14d{bottom:125.952000pt;}
.yc2{bottom:127.392000pt;}
.y38{bottom:132.032000pt;}
.y5a{bottom:136.506667pt;}
.ye5{bottom:139.386667pt;}
.y97{bottom:140.026667pt;}
.y16f{bottom:140.826667pt;}
.y100{bottom:141.946667pt;}
.y14c{bottom:144.826667pt;}
.y127{bottom:145.626667pt;}
.y59{bottom:146.746667pt;}
.y189{bottom:147.066667pt;}
.y37{bottom:148.186667pt;}
.ye4{bottom:158.106667pt;}
.y96{bottom:158.426667pt;}
.yc1{bottom:159.226667pt;}
.y188{bottom:162.266667pt;}
.y58{bottom:162.746667pt;}
.y14b{bottom:163.706667pt;}
.y36{bottom:164.186667pt;}
.y126{bottom:164.346667pt;}
.yff{bottom:173.626667pt;}
.y95{bottom:176.826667pt;}
.ye3{bottom:176.986667pt;}
.y16e{bottom:177.626667pt;}
.yc0{bottom:177.946667pt;}
.y57{bottom:178.906667pt;}
.y35{bottom:180.346667pt;}
.y14a{bottom:182.106667pt;}
.y125{bottom:183.226667pt;}
.y56{bottom:195.066667pt;}
.y94{bottom:195.226667pt;}
.ye2{bottom:195.706667pt;}
.y34{bottom:196.026667pt;}
.ybf{bottom:196.826667pt;}
.y187{bottom:199.546667pt;}
.y149{bottom:200.506667pt;}
.y124{bottom:201.946667pt;}
.yfe{bottom:205.466667pt;}
.y33{bottom:210.586667pt;}
.y55{bottom:211.066667pt;}
.y93{bottom:213.626667pt;}
.y16d{bottom:214.426667pt;}
.ye1{bottom:214.586667pt;}
.ybe{bottom:215.226667pt;}
.y186{bottom:217.946667pt;}
.y148{bottom:218.906667pt;}
.y123{bottom:220.826667pt;}
.yfd{bottom:224.346667pt;}
.y32{bottom:225.146667pt;}
.y54{bottom:227.226667pt;}
.y92{bottom:232.026667pt;}
.y16c{bottom:232.826667pt;}
.ye0{bottom:233.306667pt;}
.ybd{bottom:233.626667pt;}
.y185{bottom:236.346667pt;}
.y147{bottom:237.306667pt;}
.y31{bottom:239.546667pt;}
.y122{bottom:239.706667pt;}
.yfc{bottom:242.746667pt;}
.y53{bottom:243.226667pt;}
.y91{bottom:250.426667pt;}
.y16b{bottom:251.226667pt;}
.ydf{bottom:252.186667pt;}
.y30{bottom:254.106667pt;}
.y184{bottom:254.746667pt;}
.y146{bottom:255.746667pt;}
.y121{bottom:258.146667pt;}
.y52{bottom:259.426667pt;}
.y2f{bottom:268.546667pt;}
.y90{bottom:268.866667pt;}
.y16a{bottom:269.666667pt;}
.ybc{bottom:270.786667pt;}
.yde{bottom:270.946667pt;}
.y183{bottom:273.186667pt;}
.y145{bottom:274.146667pt;}
.yfb{bottom:274.306667pt;}
.y51{bottom:275.426667pt;}
.y120{bottom:276.546667pt;}
.y2e{bottom:283.106667pt;}
.y8f{bottom:287.266667pt;}
.y169{bottom:288.066667pt;}
.ybb{bottom:289.186667pt;}
.ydd{bottom:289.826667pt;}
.y50{bottom:291.586667pt;}
.y144{bottom:292.546667pt;}
.y11f{bottom:294.946667pt;}
.y2d{bottom:297.506667pt;}
.y8e{bottom:305.506667pt;}
.yfa{bottom:306.146667pt;}
.y168{bottom:306.466667pt;}
.yba{bottom:307.586667pt;}
.y4f{bottom:307.746667pt;}
.ydc{bottom:308.546667pt;}
.y182{bottom:309.986667pt;}
.y143{bottom:310.946667pt;}
.y2c{bottom:312.066667pt;}
.y11e{bottom:313.186667pt;}
.y4e{bottom:323.746667pt;}
.y8d{bottom:324.386667pt;}
.yf9{bottom:325.026667pt;}
.yb9{bottom:325.986667pt;}
.y2b{bottom:326.466667pt;}
.ydb{bottom:327.426667pt;}
.y181{bottom:328.386667pt;}
.y142{bottom:329.346667pt;}
.y11d{bottom:332.066667pt;}
.y4d{bottom:339.906667pt;}
.y2a{bottom:341.026667pt;}
.y8c{bottom:342.786667pt;}
.yf8{bottom:343.746667pt;}
.yb8{bottom:344.386667pt;}
.y129{bottom:345.440000pt;}
.yda{bottom:346.146667pt;}
.y180{bottom:346.786667pt;}
.y141{bottom:347.586667pt;}
.y29{bottom:355.426667pt;}
.y4c{bottom:355.906667pt;}
.y8b{bottom:361.186667pt;}
.yf7{bottom:362.626667pt;}
.yb7{bottom:362.786667pt;}
.y167{bottom:362.946667pt;}
.y11c{bottom:363.746667pt;}
.yd9{bottom:365.026667pt;}
.y17f{bottom:365.186667pt;}
.y140{bottom:366.466667pt;}
.y28{bottom:369.986667pt;}
.y4b{bottom:372.066667pt;}
.y8a{bottom:379.586667pt;}
.yb6{bottom:381.186667pt;}
.y166{bottom:381.346667pt;}
.yf6{bottom:381.506667pt;}
.y11b{bottom:382.306667pt;}
.y17e{bottom:383.586667pt;}
.yd8{bottom:383.746667pt;}
.y27{bottom:384.386667pt;}
.y13f{bottom:385.346667pt;}
.y4a{bottom:388.226667pt;}
.y89{bottom:397.986667pt;}
.y26{bottom:398.946667pt;}
.yb5{bottom:399.586667pt;}
.y165{bottom:399.746667pt;}
.yf5{bottom:399.906667pt;}
.y11a{bottom:401.026667pt;}
.y17d{bottom:401.986667pt;}
.yd7{bottom:402.626667pt;}
.y13e{bottom:403.746667pt;}
.y49{bottom:404.226667pt;}
.y25{bottom:413.346667pt;}
.y88{bottom:416.226667pt;}
.yb4{bottom:417.666667pt;}
.y164{bottom:418.146667pt;}
.yf4{bottom:418.306667pt;}
.y119{bottom:419.906667pt;}
.y48{bottom:420.386667pt;}
.yd6{bottom:421.346667pt;}
.y13d{bottom:422.146667pt;}
.y24{bottom:427.906667pt;}
.y87{bottom:435.106667pt;}
.yb3{bottom:436.066667pt;}
.y47{bottom:436.386667pt;}
.y163{bottom:436.546667pt;}
.yf3{bottom:436.706667pt;}
.y118{bottom:438.626667pt;}
.y17c{bottom:438.786667pt;}
.yd5{bottom:440.226667pt;}
.y13c{bottom:440.546667pt;}
.y23{bottom:442.306667pt;}
.yc4{bottom:448.960000pt;}
.y46{bottom:452.546667pt;}
.y86{bottom:453.986667pt;}
.yb2{bottom:454.466667pt;}
.yf2{bottom:454.626667pt;}
.y162{bottom:454.946667pt;}
.y22{bottom:456.866667pt;}
.y17b{bottom:457.186667pt;}
.y117{bottom:457.506667pt;}
.y13b{bottom:458.786667pt;}
.yd4{bottom:458.946667pt;}
.y45{bottom:468.706667pt;}
.y21{bottom:471.426667pt;}
.y85{bottom:472.386667pt;}
.yb1{bottom:472.866667pt;}
.y161{bottom:473.346667pt;}
.yf1{bottom:473.826667pt;}
.y17a{bottom:475.586667pt;}
.y116{bottom:476.226667pt;}
.y13a{bottom:477.666667pt;}
.yd3{bottom:477.826667pt;}
.y102{bottom:481.920000pt;}
.y44{bottom:484.706667pt;}
.y20{bottom:485.826667pt;}
.y84{bottom:490.813333pt;}
.yb0{bottom:491.293333pt;}
.y160{bottom:491.453333pt;}
.y179{bottom:494.013333pt;}
.y115{bottom:495.453333pt;}
.yd2{bottom:496.573333pt;}
.y1f{bottom:500.413333pt;}
.y43{bottom:500.893333pt;}
.yf0{bottom:505.373333pt;}
.y83{bottom:509.213333pt;}
.yaf{bottom:509.693333pt;}
.y178{bottom:512.413333pt;}
.y114{bottom:514.173333pt;}
.y1e{bottom:514.813333pt;}
.y139{bottom:514.973333pt;}
.yd1{bottom:515.453333pt;}
.y42{bottom:516.893333pt;}
.y82{bottom:527.613333pt;}
.yae{bottom:528.093333pt;}
.y15f{bottom:528.733333pt;}
.y1d{bottom:529.373333pt;}
.y177{bottom:530.813333pt;}
.y41{bottom:533.053333pt;}
.y138{bottom:533.373333pt;}
.yd0{bottom:534.173333pt;}
.yef{bottom:537.213333pt;}
.y1c{bottom:543.773333pt;}
.y81{bottom:546.013333pt;}
.yad{bottom:546.493333pt;}
.y15e{bottom:547.133333pt;}
.y40{bottom:549.053333pt;}
.y176{bottom:549.213333pt;}
.y137{bottom:551.613333pt;}
.y113{bottom:551.773333pt;}
.ycf{bottom:553.053333pt;}
.y1b{bottom:558.333333pt;}
.y80{bottom:564.253333pt;}
.yac{bottom:564.893333pt;}
.y3f{bottom:565.213333pt;}
.y15d{bottom:565.533333pt;}
.y175{bottom:567.613333pt;}
.yee{bottom:568.893333pt;}
.y136{bottom:570.493333pt;}
.y112{bottom:570.653333pt;}
.y1a{bottom:572.733333pt;}
.y3e{bottom:581.373333pt;}
.y7f{bottom:583.133333pt;}
.yab{bottom:583.293333pt;}
.y15c{bottom:583.933333pt;}
.yce{bottom:584.733333pt;}
.y174{bottom:586.013333pt;}
.y19{bottom:587.293333pt;}
.y111{bottom:589.373333pt;}
.y3d{bottom:597.373333pt;}
.yed{bottom:600.573333pt;}
.y18{bottom:601.693333pt;}
.y7e{bottom:602.013333pt;}
.y15b{bottom:602.333333pt;}
.ycd{bottom:603.453333pt;}
.y173{bottom:604.413333pt;}
.y135{bottom:607.773333pt;}
.y110{bottom:608.253333pt;}
.y3c{bottom:613.533333pt;}
.ye8{bottom:613.760000pt;}
.yaa{bottom:620.253333pt;}
.y7d{bottom:620.413333pt;}
.y15a{bottom:620.733333pt;}
.y17{bottom:621.693333pt;}
.y172{bottom:622.813333pt;}
.y134{bottom:626.173333pt;}
.y10f{bottom:626.653333pt;}
.y3b{bottom:629.533333pt;}
.y16{bottom:632.413333pt;}
.y7c{bottom:638.813333pt;}
.ya9{bottom:639.133333pt;}
.ycc{bottom:641.213333pt;}
.y133{bottom:644.573333pt;}
.y10e{bottom:645.053333pt;}
.y3a{bottom:645.693333pt;}
.y15{bottom:647.773333pt;}
.y7b{bottom:657.213333pt;}
.y159{bottom:657.533333pt;}
.ya8{bottom:658.013333pt;}
.ycb{bottom:659.613333pt;}
.y39{bottom:661.853333pt;}
.y132{bottom:662.813333pt;}
.y14{bottom:663.133333pt;}
.y10d{bottom:663.453333pt;}
.yec{bottom:664.093333pt;}
.y14e{bottom:675.840000pt;}
.y158{bottom:675.933333pt;}
.ya7{bottom:676.413333pt;}
.yca{bottom:678.013333pt;}
.y10c{bottom:681.693333pt;}
.y7a{bottom:694.333333pt;}
.ya6{bottom:694.813333pt;}
.yc9{bottom:696.413333pt;}
.y13{bottom:697.213333pt;}
.y10b{bottom:700.573333pt;}
.ya5{bottom:713.053333pt;}
.y79{bottom:713.213333pt;}
.y12{bottom:714.813333pt;}
.y10a{bottom:719.013333pt;}
.y78{bottom:731.653333pt;}
.yc8{bottom:733.253333pt;}
.y5b{bottom:734.360000pt;}
.y109{bottom:737.413333pt;}
.y131{bottom:745.093333pt;}
.y157{bottom:749.893333pt;}
.y77{bottom:750.053333pt;}
.ya4{bottom:750.373333pt;}
.yc7{bottom:751.653333pt;}
.y108{bottom:755.813333pt;}
.y76{bottom:768.293333pt;}
.y156{bottom:768.453333pt;}
.ya3{bottom:769.573333pt;}
.yc6{bottom:770.053333pt;}
.y107{bottom:774.213333pt;}
.y130{bottom:776.773333pt;}
.y75{bottom:787.173333pt;}
.y155{bottom:787.493333pt;}
.ya2{bottom:788.453333pt;}
.y106{bottom:793.413333pt;}
.y74{bottom:806.053333pt;}
.y154{bottom:806.373333pt;}
.ya1{bottom:806.853333pt;}
.y12f{bottom:808.453333pt;}
.y11{bottom:809.893333pt;}
.y73{bottom:824.453333pt;}
.y153{bottom:824.773333pt;}
.y105{bottom:825.093333pt;}
.ya0{bottom:825.253333pt;}
.y10{bottom:832.293333pt;}
.y12e{bottom:840.293333pt;}
.y72{bottom:842.853333pt;}
.y152{bottom:843.173333pt;}
.y9f{bottom:843.653333pt;}
.y71{bottom:861.253333pt;}
.y151{bottom:861.573333pt;}
.y9e{bottom:862.053333pt;}
.yf{bottom:862.693333pt;}
.y12d{bottom:871.973333pt;}
.y70{bottom:879.653333pt;}
.y150{bottom:879.973333pt;}
.y9d{bottom:880.453333pt;}
.y6f{bottom:898.053333pt;}
.y14f{bottom:898.373333pt;}
.y9c{bottom:898.853333pt;}
.y12c{bottom:903.653333pt;}
.y6e{bottom:916.293333pt;}
.y60{bottom:916.773333pt;}
.y9b{bottom:917.253333pt;}
.y6d{bottom:934.853333pt;}
.y5f{bottom:935.173333pt;}
.y12b{bottom:935.493333pt;}
.y9a{bottom:935.653333pt;}
.y63{bottom:953.120000pt;}
.ye{bottom:984.960000pt;}
.y68{bottom:992.960000pt;}
.yd{bottom:998.080000pt;}
.y67{bottom:1011.360000pt;}
.h1a{height:14.240000pt;}
.h4{height:14.400000pt;}
.h1{height:16.800000pt;}
.h6{height:17.760000pt;}
.h21{height:19.680000pt;}
.h16{height:23.868750pt;}
.ha{height:26.381250pt;}
.h19{height:26.400000pt;}
.h5{height:29.092500pt;}
.h20{height:29.440000pt;}
.h7{height:31.040000pt;}
.h1e{height:33.440000pt;}
.hf{height:33.918750pt;}
.h11{height:36.703125pt;}
.h17{height:37.868750pt;}
.h9{height:39.571875pt;}
.h10{height:40.468750pt;}
.h12{height:40.618125pt;}
.h23{height:44.687500pt;}
.h3{height:45.022500pt;}
.h18{height:45.625000pt;}
.h14{height:48.960000pt;}
.he{height:52.134375pt;}
.h13{height:52.478750pt;}
.hd{height:53.535000pt;}
.h15{height:53.908125pt;}
.h2{height:54.390938pt;}
.h1f{height:55.247500pt;}
.h22{height:55.373062pt;}
.hb{height:57.256875pt;}
.hc{height:59.340000pt;}
.h1d{height:62.781250pt;}
.h1c{height:62.812500pt;}
.h1b{height:64.500000pt;}
.h8{height:81.725625pt;}
.h0{height:1056.000000pt;}
.w3{width:68.840000pt;}
.w4{width:156.826667pt;}
.w1{width:225.920000pt;}
.w2{width:238.560000pt;}
.wd{width:243.840000pt;}
.wa{width:258.400000pt;}
.wc{width:264.800000pt;}
.w9{width:283.520000pt;}
.w8{width:285.120000pt;}
.wb{width:302.080000pt;}
.w7{width:315.040000pt;}
.w6{width:359.200000pt;}
.w5{width:696.440000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x2b{left:1.626667pt;}
.x6{left:9.666667pt;}
.x20{left:13.533333pt;}
.x1a{left:14.560000pt;}
.x31{left:33.280000pt;}
.x28{left:36.186667pt;}
.x16{left:40.000000pt;}
.x32{left:42.720000pt;}
.x2e{left:44.506667pt;}
.x4{left:52.000000pt;}
.x30{left:57.946667pt;}
.x24{left:59.520000pt;}
.x9{left:62.400000pt;}
.x1{left:64.480000pt;}
.x23{left:66.720000pt;}
.x29{left:82.466667pt;}
.x33{left:85.280000pt;}
.x17{left:88.032000pt;}
.x25{left:100.032000pt;}
.x3{left:112.826667pt;}
.xa{left:166.426667pt;}
.xc{left:169.626667pt;}
.x1d{left:171.866667pt;}
.x21{left:172.826667pt;}
.x2f{left:179.200000pt;}
.x2c{left:191.520000pt;}
.x2d{left:200.800000pt;}
.x22{left:203.066667pt;}
.x2{left:206.786667pt;}
.x27{left:211.040000pt;}
.x26{left:216.000000pt;}
.x1b{left:245.986667pt;}
.x2a{left:256.640000pt;}
.x5{left:302.400000pt;}
.x1c{left:348.226667pt;}
.x7{left:385.986667pt;}
.xb{left:408.066667pt;}
.x19{left:409.666667pt;}
.x1e{left:419.746667pt;}
.x18{left:445.666667pt;}
.x1f{left:456.800000pt;}
.xd{left:553.693333pt;}
.xe{left:565.853333pt;}
.xf{left:577.213333pt;}
.x10{left:586.653333pt;}
.x11{left:598.013333pt;}
.x8{left:602.506667pt;}
.x12{left:610.173333pt;}
.x13{left:622.493333pt;}
.x14{left:634.813333pt;}
.x15{left:646.373333pt;}
}




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