
    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_32adaeffdcaeb4cf23e79d61.woff')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_be61d4b6bcd64ebef8735e3b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_a55191daedcbc8af1d7f8493.woff')format("woff");}.ff3{font-family:ff3;line-height:0.983398;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_18ccb3201f6c9e012926c3d8.woff')format("woff");}.ff4{font-family:ff4;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff6{font-family:ff6;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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_6d8b41ee8667abf0581f5ed9.woff')format("woff");}.ff8{font-family:ff8;line-height:0.958008;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_85c506cdfc540d36824b1504.woff')format("woff");}.ff9{font-family:ff9;line-height:0.923340;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_dbe480fcc5409c264e3b113f.woff')format("woff");}.ffa{font-family:ffa;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;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e01be962420cda16cbf4e42a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ccf6b794b972eb5e25313aab.woff')format("woff");}.ffc{font-family:ffc;line-height:0.934082;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_d56ba6657c3170a5feaf8a1d.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3884a8efe903a66e7b34f7e8.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;line-height:0.739746;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:ff10;src:url('chunks/assets/font_4638587fac5b416e381617c1.woff')format("woff");}.ff10{font-family:ff10;line-height:0.738770;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v3{vertical-align:-18.000000px;}
.v2{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsb{letter-spacing:-2.724000px;}
.lsf{letter-spacing:-2.256000px;}
.ls13{letter-spacing:-1.740000px;}
.ls11{letter-spacing:-1.482000px;}
.ls1d{letter-spacing:-1.128000px;}
.lsc{letter-spacing:-0.792000px;}
.ls14{letter-spacing:-0.580200px;}
.lsa{letter-spacing:-0.378000px;}
.ls10{letter-spacing:-0.018000px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.279000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.476000px;}
.lse{letter-spacing:1.740000px;}
.ls16{letter-spacing:1.764000px;}
.ls18{letter-spacing:1.842000px;}
.ls2{letter-spacing:1.854000px;}
.ls5{letter-spacing:1.906500px;}
.ls17{letter-spacing:1.914000px;}
.ls3{letter-spacing:2.026500px;}
.ls4{letter-spacing:2.146500px;}
.ls12{letter-spacing:2.244000px;}
.ls6{letter-spacing:2.250000px;}
.ls1b{letter-spacing:2.310000px;}
.ls7{letter-spacing:2.322000px;}
.ls1a{letter-spacing:2.370000px;}
.lsd{letter-spacing:2.400000px;}
.ls1c{letter-spacing:2.430000px;}
.ls1e{letter-spacing:7.860000px;}
.ls1f{letter-spacing:16.860000px;}
.ls19{letter-spacing:46.887000px;}
.ls15{letter-spacing:353.364450px;}
.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;}
}
.ws6{word-spacing:-16.875000px;}
.ws9{word-spacing:-16.365000px;}
.wsf{word-spacing:-16.305900px;}
.ws10{word-spacing:-16.272000px;}
.ws3{word-spacing:-16.146000px;}
.ws2{word-spacing:-15.354000px;}
.ws5{word-spacing:-14.625000px;}
.ws14{word-spacing:-13.254900px;}
.ws7{word-spacing:-13.221000px;}
.wsc{word-spacing:-13.143000px;}
.wse{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.wsd{word-spacing:-12.369000px;}
.ws0{word-spacing:-11.826000px;}
.ws15{word-spacing:-10.125000px;}
.wsb{word-spacing:-10.107000px;}
.ws16{word-spacing:-8.997000px;}
.ws4{word-spacing:-8.136000px;}
.wsa{word-spacing:-7.869000px;}
.ws8{word-spacing:0.000000px;}
.ws12{word-spacing:319.932000px;}
.ws11{word-spacing:320.202000px;}
.ws13{word-spacing:320.382000px;}
._13{margin-left:-7.141500px;}
._6{margin-left:-6.127500px;}
._a{margin-left:-5.106000px;}
._8{margin-left:-3.627000px;}
._2{margin-left:-2.610000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._4{width:3.006000px;}
._7{width:4.177500px;}
._3{width:5.364000px;}
._b{width:7.146000px;}
._9{width:8.379000px;}
._5{width:10.122000px;}
._e{width:11.731500px;}
._c{width:12.846000px;}
._12{width:16.236000px;}
._d{width:17.731500px;}
._f{width:21.123000px;}
._10{width:22.261500px;}
._11{width:26.424000px;}
._1a{width:30.118500px;}
._14{width:34.749000px;}
._18{width:43.294500px;}
._16{width:56.808000px;}
._17{width:58.014000px;}
._15{width:62.383500px;}
._1b{width:223.497150px;}
._19{width:419.217000px;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs9{font-size:58.650000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs8{font-size:72.150000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y8c{bottom:3.382500px;}
.y95{bottom:3.390000px;}
.ya7{bottom:3.405000px;}
.ya1{bottom:3.420000px;}
.y1a{bottom:4.500000px;}
.y76{bottom:4.515000px;}
.y4b{bottom:4.545000px;}
.y106{bottom:5.325000px;}
.y94{bottom:6.765000px;}
.ye{bottom:11.250000px;}
.y1c{bottom:11.280000px;}
.yc{bottom:13.500000px;}
.y4d{bottom:14.625000px;}
.y4{bottom:18.000000px;}
.y2{bottom:20.250000px;}
.ya6{bottom:20.280000px;}
.y9b{bottom:20.295000px;}
.y9d{bottom:21.375000px;}
.y99{bottom:21.405000px;}
.y8b{bottom:21.412500px;}
.y4a{bottom:21.420000px;}
.yb7{bottom:21.780000px;}
.y91{bottom:25.875000px;}
.y19{bottom:28.170000px;}
.yb{bottom:30.375000px;}
.yc1{bottom:36.450000px;}
.y49{bottom:38.295000px;}
.y90{bottom:42.795000px;}
.y18{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.y48{bottom:56.340000px;}
.y5{bottom:57.412500px;}
.yb3{bottom:58.050000px;}
.y17{bottom:61.965000px;}
.yc3{bottom:67.050000px;}
.y9{bottom:73.155000px;}
.y47{bottom:73.215000px;}
.y1{bottom:77.700000px;}
.y16{bottom:77.715000px;}
.ye6{bottom:78.420000px;}
.yaa{bottom:80.550000px;}
.yc2{bottom:85.380000px;}
.yf5{bottom:89.775000px;}
.y46{bottom:90.120000px;}
.y8{bottom:93.435000px;}
.y15{bottom:94.590000px;}
.y14{bottom:104.745000px;}
.y45{bottom:108.120000px;}
.yc5{bottom:109.095000px;}
.yab{bottom:109.575000px;}
.y7{bottom:110.310000px;}
.ye7{bottom:120.450000px;}
.ya8{bottom:121.612500px;}
.y13{bottom:122.745000px;}
.y44{bottom:124.995000px;}
.yc4{bottom:127.425000px;}
.y8d{bottom:129.487500px;}
.y52{bottom:130.612500px;}
.yf6{bottom:131.820000px;}
.ybf{bottom:137.362500px;}
.yac{bottom:138.630000px;}
.y12{bottom:141.870000px;}
.y43{bottom:141.900000px;}
.y51{bottom:147.487500px;}
.ybe{bottom:150.870000px;}
.yc7{bottom:151.125000px;}
.yc0{bottom:153.000000px;}
.ya5{bottom:157.620000px;}
.y42{bottom:159.900000px;}
.ye8{bottom:162.495000px;}
.y50{bottom:165.525000px;}
.yad{bottom:167.670000px;}
.y11{bottom:167.790000px;}
.yc6{bottom:169.470000px;}
.yb6{bottom:171.975000px;}
.yf7{bottom:173.850000px;}
.y41{bottom:176.820000px;}
.y4f{bottom:182.400000px;}
.y89{bottom:183.525000px;}
.ya4{bottom:192.525000px;}
.y10{bottom:192.570000px;}
.yc9{bottom:193.170000px;}
.y40{bottom:193.695000px;}
.yae{bottom:196.695000px;}
.y4e{bottom:199.275000px;}
.y8a{bottom:201.570000px;}
.ye9{bottom:204.525000px;}
.ya3{bottom:210.570000px;}
.yc8{bottom:211.500000px;}
.y3f{bottom:211.740000px;}
.y4c{bottom:212.820000px;}
.yf8{bottom:215.895000px;}
.y88{bottom:222.945000px;}
.yaf{bottom:225.705000px;}
.y3e{bottom:228.615000px;}
.ycb{bottom:235.200000px;}
.y87{bottom:239.820000px;}
.y1d{bottom:242.055000px;}
.ya2{bottom:245.475000px;}
.y3d{bottom:245.490000px;}
.yea{bottom:246.570000px;}
.yca{bottom:253.545000px;}
.yb0{bottom:254.745000px;}
.y86{bottom:257.850000px;}
.yf9{bottom:257.925000px;}
.y3c{bottom:263.520000px;}
.y2c{bottom:273.645000px;}
.y85{bottom:274.725000px;}
.ycd{bottom:277.245000px;}
.ye3{bottom:277.275000px;}
.y3b{bottom:280.395000px;}
.ya0{bottom:281.475000px;}
.yb1{bottom:283.800000px;}
.yeb{bottom:288.630000px;}
.y2b{bottom:289.395000px;}
.y84{bottom:291.645000px;}
.ycc{bottom:295.575000px;}
.y3a{bottom:297.315000px;}
.y9f{bottom:299.505000px;}
.yfa{bottom:299.955000px;}
.yb5{bottom:302.130000px;}
.y2a{bottom:307.440000px;}
.y83{bottom:309.630000px;}
.yb2{bottom:312.825000px;}
.y39{bottom:315.315000px;}
.ycf{bottom:319.275000px;}
.ye4{bottom:319.320000px;}
.y119{bottom:319.755000px;}
.y29{bottom:324.315000px;}
.y82{bottom:326.550000px;}
.yec{bottom:330.675000px;}
.y38{bottom:332.190000px;}
.y9e{bottom:334.425000px;}
.yb4{bottom:334.830000px;}
.y118{bottom:336.675000px;}
.yce{bottom:337.620000px;}
.y81{bottom:341.175000px;}
.yfb{bottom:342.045000px;}
.y28{bottom:342.345000px;}
.y37{bottom:349.095000px;}
.y117{bottom:354.675000px;}
.y80{bottom:359.175000px;}
.y27{bottom:359.220000px;}
.yd1{bottom:361.350000px;}
.y36{bottom:367.095000px;}
.y9c{bottom:369.330000px;}
.y116{bottom:371.580000px;}
.yed{bottom:372.720000px;}
.y26{bottom:376.095000px;}
.y7f{bottom:377.205000px;}
.yd0{bottom:379.650000px;}
.y35{bottom:384.015000px;}
.yfc{bottom:384.075000px;}
.y115{bottom:388.455000px;}
.y25{bottom:393.015000px;}
.y7e{bottom:395.205000px;}
.y34{bottom:400.890000px;}
.yd3{bottom:403.380000px;}
.y9a{bottom:405.330000px;}
.y114{bottom:406.470000px;}
.y24{bottom:409.890000px;}
.y7d{bottom:413.250000px;}
.yee{bottom:414.750000px;}
.y33{bottom:418.920000px;}
.yd2{bottom:421.695000px;}
.y113{bottom:423.375000px;}
.yfd{bottom:426.120000px;}
.y23{bottom:426.795000px;}
.y7c{bottom:431.250000px;}
.y32{bottom:435.795000px;}
.y98{bottom:440.250000px;}
.y22{bottom:444.795000px;}
.yd5{bottom:445.425000px;}
.y31{bottom:452.670000px;}
.yef{bottom:456.795000px;}
.y112{bottom:458.280000px;}
.y21{bottom:461.700000px;}
.yd4{bottom:463.725000px;}
.yfe{bottom:468.150000px;}
.y7b{bottom:469.545000px;}
.y30{bottom:470.715000px;}
.y97{bottom:475.155000px;}
.y20{bottom:478.575000px;}
.ye5{bottom:487.470000px;}
.y7a{bottom:487.545000px;}
.y2f{bottom:487.590000px;}
.y111{bottom:492.030000px;}
.yd6{bottom:496.605000px;}
.yf0{bottom:498.825000px;}
.y79{bottom:504.450000px;}
.y2e{bottom:504.495000px;}
.y1f{bottom:506.745000px;}
.y110{bottom:510.075000px;}
.yff{bottom:510.195000px;}
.y96{bottom:511.200000px;}
.y78{bottom:521.325000px;}
.y2d{bottom:522.495000px;}
.y1e{bottom:524.745000px;}
.y10f{bottom:526.950000px;}
.yd8{bottom:529.500000px;}
.y77{bottom:539.370000px;}
.yf1{bottom:540.870000px;}
.y10e{bottom:543.870000px;}
.y8f{bottom:546.105000px;}
.yd7{bottom:547.845000px;}
.y100{bottom:552.225000px;}
.y75{bottom:552.855000px;}
.y10d{bottom:561.855000px;}
.y93{bottom:564.105000px;}
.y74{bottom:570.855000px;}
.yda{bottom:571.545000px;}
.y10c{bottom:578.775000px;}
.yf2{bottom:582.900000px;}
.y92{bottom:585.525000px;}
.y73{bottom:588.900000px;}
.yd9{bottom:589.875000px;}
.y101{bottom:594.255000px;}
.y10b{bottom:595.650000px;}
.y72{bottom:606.900000px;}
.ydc{bottom:613.575000px;}
.y10a{bottom:613.650000px;}
.y71{bottom:624.945000px;}
.y109{bottom:630.570000px;}
.ydb{bottom:631.920000px;}
.y102{bottom:636.300000px;}
.y8e{bottom:638.445000px;}
.ya9{bottom:641.250000px;}
.y70{bottom:642.945000px;}
.y108{bottom:647.445000px;}
.yde{bottom:655.620000px;}
.y6f{bottom:665.475000px;}
.yf3{bottom:666.975000px;}
.ydd{bottom:673.950000px;}
.y103{bottom:678.330000px;}
.y6e{bottom:682.350000px;}
.ye0{bottom:697.650000px;}
.y6d{bottom:699.225000px;}
.yf4{bottom:709.005000px;}
.ydf{bottom:715.995000px;}
.y6c{bottom:717.255000px;}
.y104{bottom:720.375000px;}
.y6b{bottom:734.130000px;}
.ye2{bottom:739.695000px;}
.y6a{bottom:751.050000px;}
.ye1{bottom:758.025000px;}
.y105{bottom:762.420000px;}
.y69{bottom:769.050000px;}
.y1b{bottom:778.050000px;}
.y68{bottom:785.955000px;}
.y67{bottom:802.830000px;}
.yf{bottom:807.330000px;}
.y107{bottom:814.200000px;}
.y66{bottom:820.830000px;}
.y65{bottom:837.750000px;}
.y64{bottom:854.625000px;}
.y63{bottom:872.670000px;}
.y62{bottom:889.545000px;}
.y61{bottom:906.420000px;}
.y60{bottom:924.450000px;}
.y5f{bottom:941.325000px;}
.y5e{bottom:958.245000px;}
.y5d{bottom:976.245000px;}
.ybd{bottom:989.745000px;}
.y5c{bottom:993.120000px;}
.ybc{bottom:1006.650000px;}
.y5b{bottom:1010.025000px;}
.yd{bottom:1014.525000px;}
.ybb{bottom:1021.275000px;}
.y5a{bottom:1028.025000px;}
.y6{bottom:1040.445000px;}
.y59{bottom:1044.945000px;}
.yba{bottom:1056.195000px;}
.y58{bottom:1061.820000px;}
.y57{bottom:1079.850000px;}
.yb9{bottom:1091.100000px;}
.y56{bottom:1096.725000px;}
.y55{bottom:1113.600000px;}
.yb8{bottom:1127.130000px;}
.y54{bottom:1131.630000px;}
.y53{bottom:1148.505000px;}
.h24{height:16.875000px;}
.h25{height:16.912500px;}
.h22{height:18.000000px;}
.h21{height:18.022500px;}
.h23{height:18.037500px;}
.h29{height:20.287500px;}
.hc{height:25.912500px;}
.h1e{height:29.250000px;}
.h15{height:29.287500px;}
.h14{height:29.773125px;}
.h13{height:29.953125px;}
.h2{height:33.750000px;}
.h2a{height:33.787500px;}
.h2b{height:34.875000px;}
.h2e{height:34.897500px;}
.h27{height:34.912500px;}
.h12{height:35.806641px;}
.h9{height:37.125000px;}
.h1b{height:39.832031px;}
.h1d{height:40.847168px;}
.h1c{height:41.275635px;}
.h19{height:41.389893px;}
.h33{height:42.589600px;}
.he{height:43.075195px;}
.hb{height:43.875000px;}
.h1f{height:46.278809px;}
.h32{height:46.398809px;}
.h20{height:46.575439px;}
.h26{height:46.695439px;}
.h1a{height:47.074219px;}
.h18{height:49.234131px;}
.h4{height:53.709961px;}
.ha{height:54.000000px;}
.h3{height:55.291992px;}
.h28{height:56.287500px;}
.h10{height:58.185791px;}
.h30{height:58.334985px;}
.h11{height:59.899658px;}
.h31{height:60.053247px;}
.hf{height:64.237500px;}
.h6{height:67.137451px;}
.h5{height:69.114990px;}
.h8{height:71.613281px;}
.h16{height:73.722656px;}
.h2d{height:73.876245px;}
.h7{height:121.612500px;}
.hd{height:207.180000px;}
.h2c{height:400.500000px;}
.h17{height:535.980000px;}
.h2f{height:832.500000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.we{width:46.162500px;}
.w14{width:49.575000px;}
.w13{width:59.700000px;}
.w15{width:60.825000px;}
.w2{width:74.362500px;}
.w11{width:110.400000px;}
.w12{width:120.525000px;}
.w4{width:152.055000px;}
.wb{width:185.850000px;}
.wd{width:186.975000px;}
.wc{width:187.020000px;}
.w7{width:223.020000px;}
.w9{width:248.925000px;}
.wa{width:248.970000px;}
.w10{width:343.575000px;}
.wf{width:357.075000px;}
.w8{width:524.925000px;}
.w5{width:595.875000px;}
.w16{width:606.375000px;}
.w1{width:674.745000px;}
.w17{width:716.625000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x42{left:6.412500px;}
.x8{left:7.875000px;}
.x2{left:9.037500px;}
.x3c{left:10.200000px;}
.x18{left:12.420000px;}
.x3a{left:20.175000px;}
.x3b{left:21.187500px;}
.x31{left:22.762500px;}
.x15{left:25.875000px;}
.x37{left:34.012500px;}
.x44{left:37.462500px;}
.x43{left:39.262500px;}
.xf{left:40.537500px;}
.x40{left:42.862500px;}
.x14{left:46.162500px;}
.x38{left:47.400000px;}
.x2d{left:49.350000px;}
.x12{left:54.037500px;}
.x13{left:56.287500px;}
.x10{left:70.950000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x3f{left:77.025000px;}
.x41{left:79.650000px;}
.x4{left:81.112487px;}
.x23{left:86.737487px;}
.x35{left:87.750000px;}
.x39{left:94.020000px;}
.x6{left:97.987500px;}
.x1e{left:100.237487px;}
.x3e{left:102.825000px;}
.x5d{left:108.149987px;}
.x19{left:110.399987px;}
.x3d{left:112.800000px;}
.x26{left:120.525000px;}
.x2e{left:129.120000px;}
.x11{left:134.032500px;}
.x33{left:175.724987px;}
.x2f{left:206.250000px;}
.x16{left:214.012500px;}
.x7{left:225.300000px;}
.x32{left:239.070000px;}
.x20{left:260.220000px;}
.x36{left:275.670000px;}
.xb{left:290.625000px;}
.x17{left:296.250000px;}
.x46{left:297.600000px;}
.x1f{left:300.749987px;}
.x45{left:304.575000px;}
.x47{left:317.505000px;}
.x1b{left:322.170000px;}
.x24{left:336.779987px;}
.x9{left:344.670000px;}
.x5b{left:350.025000px;}
.x5a{left:359.370000px;}
.xa{left:364.950000px;}
.xd{left:366.075000px;}
.xe{left:373.957500px;}
.x5c{left:397.649987px;}
.x1d{left:398.774987px;}
.x1a{left:401.024987px;}
.x30{left:412.425000px;}
.x59{left:437.445000px;}
.x21{left:447.195000px;}
.xc{left:453.945000px;}
.x58{left:457.350000px;}
.x56{left:470.625000px;}
.x27{left:477.600000px;}
.x54{left:484.245000px;}
.x55{left:504.150000px;}
.x53{left:510.450000px;}
.x4d{left:524.070000px;}
.x48{left:537.030000px;}
.x2a{left:538.425000px;}
.x52{left:544.005000px;}
.x57{left:550.275000px;}
.x49{left:556.950000px;}
.x4e{left:563.925000px;}
.x50{left:570.225000px;}
.x1c{left:572.220000px;}
.x4b{left:576.870000px;}
.x28{left:589.125000px;}
.x4a{left:596.775000px;}
.x4c{left:610.050000px;}
.x4f{left:623.670000px;}
.x22{left:634.200000px;}
.x51{left:643.575000px;}
.x2b{left:649.950000px;}
.x25{left:689.369987px;}
.x29{left:700.650000px;}
.x3{left:746.820000px;}
.x2c{left:760.350000px;}
.x34{left:805.379987px;}
@media print{
.v3{vertical-align:-16.000000pt;}
.v2{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsb{letter-spacing:-2.421333pt;}
.lsf{letter-spacing:-2.005333pt;}
.ls13{letter-spacing:-1.546667pt;}
.ls11{letter-spacing:-1.317333pt;}
.ls1d{letter-spacing:-1.002667pt;}
.lsc{letter-spacing:-0.704000pt;}
.ls14{letter-spacing:-0.515733pt;}
.lsa{letter-spacing:-0.336000pt;}
.ls10{letter-spacing:-0.016000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.248000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.312000pt;}
.lse{letter-spacing:1.546667pt;}
.ls16{letter-spacing:1.568000pt;}
.ls18{letter-spacing:1.637333pt;}
.ls2{letter-spacing:1.648000pt;}
.ls5{letter-spacing:1.694667pt;}
.ls17{letter-spacing:1.701333pt;}
.ls3{letter-spacing:1.801333pt;}
.ls4{letter-spacing:1.908000pt;}
.ls12{letter-spacing:1.994667pt;}
.ls6{letter-spacing:2.000000pt;}
.ls1b{letter-spacing:2.053333pt;}
.ls7{letter-spacing:2.064000pt;}
.ls1a{letter-spacing:2.106667pt;}
.lsd{letter-spacing:2.133333pt;}
.ls1c{letter-spacing:2.160000pt;}
.ls1e{letter-spacing:6.986667pt;}
.ls1f{letter-spacing:14.986667pt;}
.ls19{letter-spacing:41.677333pt;}
.ls15{letter-spacing:314.101733pt;}
.ws6{word-spacing:-15.000000pt;}
.ws9{word-spacing:-14.546667pt;}
.wsf{word-spacing:-14.494133pt;}
.ws10{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.352000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws5{word-spacing:-13.000000pt;}
.ws14{word-spacing:-11.782133pt;}
.ws7{word-spacing:-11.752000pt;}
.wsc{word-spacing:-11.682667pt;}
.wse{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.wsd{word-spacing:-10.994667pt;}
.ws0{word-spacing:-10.512000pt;}
.ws15{word-spacing:-9.000000pt;}
.wsb{word-spacing:-8.984000pt;}
.ws16{word-spacing:-7.997333pt;}
.ws4{word-spacing:-7.232000pt;}
.wsa{word-spacing:-6.994667pt;}
.ws8{word-spacing:0.000000pt;}
.ws12{word-spacing:284.384000pt;}
.ws11{word-spacing:284.624000pt;}
.ws13{word-spacing:284.784000pt;}
._13{margin-left:-6.348000pt;}
._6{margin-left:-5.446667pt;}
._a{margin-left:-4.538667pt;}
._8{margin-left:-3.224000pt;}
._2{margin-left:-2.320000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._4{width:2.672000pt;}
._7{width:3.713333pt;}
._3{width:4.768000pt;}
._b{width:6.352000pt;}
._9{width:7.448000pt;}
._5{width:8.997333pt;}
._e{width:10.428000pt;}
._c{width:11.418667pt;}
._12{width:14.432000pt;}
._d{width:15.761333pt;}
._f{width:18.776000pt;}
._10{width:19.788000pt;}
._11{width:23.488000pt;}
._1a{width:26.772000pt;}
._14{width:30.888000pt;}
._18{width:38.484000pt;}
._16{width:50.496000pt;}
._17{width:51.568000pt;}
._15{width:55.452000pt;}
._1b{width:198.664133pt;}
._19{width:372.637333pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs9{font-size:52.133333pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs8{font-size:64.133333pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y8c{bottom:3.006667pt;}
.y95{bottom:3.013333pt;}
.ya7{bottom:3.026667pt;}
.ya1{bottom:3.040000pt;}
.y1a{bottom:4.000000pt;}
.y76{bottom:4.013333pt;}
.y4b{bottom:4.040000pt;}
.y106{bottom:4.733333pt;}
.y94{bottom:6.013333pt;}
.ye{bottom:10.000000pt;}
.y1c{bottom:10.026667pt;}
.yc{bottom:12.000000pt;}
.y4d{bottom:13.000000pt;}
.y4{bottom:16.000000pt;}
.y2{bottom:18.000000pt;}
.ya6{bottom:18.026667pt;}
.y9b{bottom:18.040000pt;}
.y9d{bottom:19.000000pt;}
.y99{bottom:19.026667pt;}
.y8b{bottom:19.033333pt;}
.y4a{bottom:19.040000pt;}
.yb7{bottom:19.360000pt;}
.y91{bottom:23.000000pt;}
.y19{bottom:25.040000pt;}
.yb{bottom:27.000000pt;}
.yc1{bottom:32.400000pt;}
.y49{bottom:34.040000pt;}
.y90{bottom:38.040000pt;}
.y18{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.y48{bottom:50.080000pt;}
.y5{bottom:51.033333pt;}
.yb3{bottom:51.600000pt;}
.y17{bottom:55.080000pt;}
.yc3{bottom:59.600000pt;}
.y9{bottom:65.026667pt;}
.y47{bottom:65.080000pt;}
.y1{bottom:69.066667pt;}
.y16{bottom:69.080000pt;}
.ye6{bottom:69.706667pt;}
.yaa{bottom:71.600000pt;}
.yc2{bottom:75.893333pt;}
.yf5{bottom:79.800000pt;}
.y46{bottom:80.106667pt;}
.y8{bottom:83.053333pt;}
.y15{bottom:84.080000pt;}
.y14{bottom:93.106667pt;}
.y45{bottom:96.106667pt;}
.yc5{bottom:96.973333pt;}
.yab{bottom:97.400000pt;}
.y7{bottom:98.053333pt;}
.ye7{bottom:107.066667pt;}
.ya8{bottom:108.100000pt;}
.y13{bottom:109.106667pt;}
.y44{bottom:111.106667pt;}
.yc4{bottom:113.266667pt;}
.y8d{bottom:115.100000pt;}
.y52{bottom:116.100000pt;}
.yf6{bottom:117.173333pt;}
.ybf{bottom:122.100000pt;}
.yac{bottom:123.226667pt;}
.y12{bottom:126.106667pt;}
.y43{bottom:126.133333pt;}
.y51{bottom:131.100000pt;}
.ybe{bottom:134.106667pt;}
.yc7{bottom:134.333333pt;}
.yc0{bottom:136.000000pt;}
.ya5{bottom:140.106667pt;}
.y42{bottom:142.133333pt;}
.ye8{bottom:144.440000pt;}
.y50{bottom:147.133333pt;}
.yad{bottom:149.040000pt;}
.y11{bottom:149.146667pt;}
.yc6{bottom:150.640000pt;}
.yb6{bottom:152.866667pt;}
.yf7{bottom:154.533333pt;}
.y41{bottom:157.173333pt;}
.y4f{bottom:162.133333pt;}
.y89{bottom:163.133333pt;}
.ya4{bottom:171.133333pt;}
.y10{bottom:171.173333pt;}
.yc9{bottom:171.706667pt;}
.y40{bottom:172.173333pt;}
.yae{bottom:174.840000pt;}
.y4e{bottom:177.133333pt;}
.y8a{bottom:179.173333pt;}
.ye9{bottom:181.800000pt;}
.ya3{bottom:187.173333pt;}
.yc8{bottom:188.000000pt;}
.y3f{bottom:188.213333pt;}
.y4c{bottom:189.173333pt;}
.yf8{bottom:191.906667pt;}
.y88{bottom:198.173333pt;}
.yaf{bottom:200.626667pt;}
.y3e{bottom:203.213333pt;}
.ycb{bottom:209.066667pt;}
.y87{bottom:213.173333pt;}
.y1d{bottom:215.160000pt;}
.ya2{bottom:218.200000pt;}
.y3d{bottom:218.213333pt;}
.yea{bottom:219.173333pt;}
.yca{bottom:225.373333pt;}
.yb0{bottom:226.440000pt;}
.y86{bottom:229.200000pt;}
.yf9{bottom:229.266667pt;}
.y3c{bottom:234.240000pt;}
.y2c{bottom:243.240000pt;}
.y85{bottom:244.200000pt;}
.ycd{bottom:246.440000pt;}
.ye3{bottom:246.466667pt;}
.y3b{bottom:249.240000pt;}
.ya0{bottom:250.200000pt;}
.yb1{bottom:252.266667pt;}
.yeb{bottom:256.560000pt;}
.y2b{bottom:257.240000pt;}
.y84{bottom:259.240000pt;}
.ycc{bottom:262.733333pt;}
.y3a{bottom:264.280000pt;}
.y9f{bottom:266.226667pt;}
.yfa{bottom:266.626667pt;}
.yb5{bottom:268.560000pt;}
.y2a{bottom:273.280000pt;}
.y83{bottom:275.226667pt;}
.yb2{bottom:278.066667pt;}
.y39{bottom:280.280000pt;}
.ycf{bottom:283.800000pt;}
.ye4{bottom:283.840000pt;}
.y119{bottom:284.226667pt;}
.y29{bottom:288.280000pt;}
.y82{bottom:290.266667pt;}
.yec{bottom:293.933333pt;}
.y38{bottom:295.280000pt;}
.y9e{bottom:297.266667pt;}
.yb4{bottom:297.626667pt;}
.y118{bottom:299.266667pt;}
.yce{bottom:300.106667pt;}
.y81{bottom:303.266667pt;}
.yfb{bottom:304.040000pt;}
.y28{bottom:304.306667pt;}
.y37{bottom:310.306667pt;}
.y117{bottom:315.266667pt;}
.y80{bottom:319.266667pt;}
.y27{bottom:319.306667pt;}
.yd1{bottom:321.200000pt;}
.y36{bottom:326.306667pt;}
.y9c{bottom:328.293333pt;}
.y116{bottom:330.293333pt;}
.yed{bottom:331.306667pt;}
.y26{bottom:334.306667pt;}
.y7f{bottom:335.293333pt;}
.yd0{bottom:337.466667pt;}
.y35{bottom:341.346667pt;}
.yfc{bottom:341.400000pt;}
.y115{bottom:345.293333pt;}
.y25{bottom:349.346667pt;}
.y7e{bottom:351.293333pt;}
.y34{bottom:356.346667pt;}
.yd3{bottom:358.560000pt;}
.y9a{bottom:360.293333pt;}
.y114{bottom:361.306667pt;}
.y24{bottom:364.346667pt;}
.y7d{bottom:367.333333pt;}
.yee{bottom:368.666667pt;}
.y33{bottom:372.373333pt;}
.yd2{bottom:374.840000pt;}
.y113{bottom:376.333333pt;}
.yfd{bottom:378.773333pt;}
.y23{bottom:379.373333pt;}
.y7c{bottom:383.333333pt;}
.y32{bottom:387.373333pt;}
.y98{bottom:391.333333pt;}
.y22{bottom:395.373333pt;}
.yd5{bottom:395.933333pt;}
.y31{bottom:402.373333pt;}
.yef{bottom:406.040000pt;}
.y112{bottom:407.360000pt;}
.y21{bottom:410.400000pt;}
.yd4{bottom:412.200000pt;}
.yfe{bottom:416.133333pt;}
.y7b{bottom:417.373333pt;}
.y30{bottom:418.413333pt;}
.y97{bottom:422.360000pt;}
.y20{bottom:425.400000pt;}
.ye5{bottom:433.306667pt;}
.y7a{bottom:433.373333pt;}
.y2f{bottom:433.413333pt;}
.y111{bottom:437.360000pt;}
.yd6{bottom:441.426667pt;}
.yf0{bottom:443.400000pt;}
.y79{bottom:448.400000pt;}
.y2e{bottom:448.440000pt;}
.y1f{bottom:450.440000pt;}
.y110{bottom:453.400000pt;}
.yff{bottom:453.506667pt;}
.y96{bottom:454.400000pt;}
.y78{bottom:463.400000pt;}
.y2d{bottom:464.440000pt;}
.y1e{bottom:466.440000pt;}
.y10f{bottom:468.400000pt;}
.yd8{bottom:470.666667pt;}
.y77{bottom:479.440000pt;}
.yf1{bottom:480.773333pt;}
.y10e{bottom:483.440000pt;}
.y8f{bottom:485.426667pt;}
.yd7{bottom:486.973333pt;}
.y100{bottom:490.866667pt;}
.y75{bottom:491.426667pt;}
.y10d{bottom:499.426667pt;}
.y93{bottom:501.426667pt;}
.y74{bottom:507.426667pt;}
.yda{bottom:508.040000pt;}
.y10c{bottom:514.466667pt;}
.yf2{bottom:518.133333pt;}
.y92{bottom:520.466667pt;}
.y73{bottom:523.466667pt;}
.yd9{bottom:524.333333pt;}
.y101{bottom:528.226667pt;}
.y10b{bottom:529.466667pt;}
.y72{bottom:539.466667pt;}
.ydc{bottom:545.400000pt;}
.y10a{bottom:545.466667pt;}
.y71{bottom:555.506667pt;}
.y109{bottom:560.506667pt;}
.ydb{bottom:561.706667pt;}
.y102{bottom:565.600000pt;}
.y8e{bottom:567.506667pt;}
.ya9{bottom:570.000000pt;}
.y70{bottom:571.506667pt;}
.y108{bottom:575.506667pt;}
.yde{bottom:582.773333pt;}
.y6f{bottom:591.533333pt;}
.yf3{bottom:592.866667pt;}
.ydd{bottom:599.066667pt;}
.y103{bottom:602.960000pt;}
.y6e{bottom:606.533333pt;}
.ye0{bottom:620.133333pt;}
.y6d{bottom:621.533333pt;}
.yf4{bottom:630.226667pt;}
.ydf{bottom:636.440000pt;}
.y6c{bottom:637.560000pt;}
.y104{bottom:640.333333pt;}
.y6b{bottom:652.560000pt;}
.ye2{bottom:657.506667pt;}
.y6a{bottom:667.600000pt;}
.ye1{bottom:673.800000pt;}
.y105{bottom:677.706667pt;}
.y69{bottom:683.600000pt;}
.y1b{bottom:691.600000pt;}
.y68{bottom:698.626667pt;}
.y67{bottom:713.626667pt;}
.yf{bottom:717.626667pt;}
.y107{bottom:723.733333pt;}
.y66{bottom:729.626667pt;}
.y65{bottom:744.666667pt;}
.y64{bottom:759.666667pt;}
.y63{bottom:775.706667pt;}
.y62{bottom:790.706667pt;}
.y61{bottom:805.706667pt;}
.y60{bottom:821.733333pt;}
.y5f{bottom:836.733333pt;}
.y5e{bottom:851.773333pt;}
.y5d{bottom:867.773333pt;}
.ybd{bottom:879.773333pt;}
.y5c{bottom:882.773333pt;}
.ybc{bottom:894.800000pt;}
.y5b{bottom:897.800000pt;}
.yd{bottom:901.800000pt;}
.ybb{bottom:907.800000pt;}
.y5a{bottom:913.800000pt;}
.y6{bottom:924.840000pt;}
.y59{bottom:928.840000pt;}
.yba{bottom:938.840000pt;}
.y58{bottom:943.840000pt;}
.y57{bottom:959.866667pt;}
.yb9{bottom:969.866667pt;}
.y56{bottom:974.866667pt;}
.y55{bottom:989.866667pt;}
.yb8{bottom:1001.893333pt;}
.y54{bottom:1005.893333pt;}
.y53{bottom:1020.893333pt;}
.h24{height:15.000000pt;}
.h25{height:15.033333pt;}
.h22{height:16.000000pt;}
.h21{height:16.020000pt;}
.h23{height:16.033333pt;}
.h29{height:18.033333pt;}
.hc{height:23.033333pt;}
.h1e{height:26.000000pt;}
.h15{height:26.033333pt;}
.h14{height:26.465000pt;}
.h13{height:26.625000pt;}
.h2{height:30.000000pt;}
.h2a{height:30.033333pt;}
.h2b{height:31.000000pt;}
.h2e{height:31.020000pt;}
.h27{height:31.033333pt;}
.h12{height:31.828125pt;}
.h9{height:33.000000pt;}
.h1b{height:35.406250pt;}
.h1d{height:36.308594pt;}
.h1c{height:36.689453pt;}
.h19{height:36.791016pt;}
.h33{height:37.857422pt;}
.he{height:38.289062pt;}
.hb{height:39.000000pt;}
.h1f{height:41.136719pt;}
.h32{height:41.243385pt;}
.h20{height:41.400391pt;}
.h26{height:41.507057pt;}
.h1a{height:41.843750pt;}
.h18{height:43.763672pt;}
.h4{height:47.742188pt;}
.ha{height:48.000000pt;}
.h3{height:49.148438pt;}
.h28{height:50.033333pt;}
.h10{height:51.720703pt;}
.h30{height:51.853320pt;}
.h11{height:53.244141pt;}
.h31{height:53.380664pt;}
.hf{height:57.100000pt;}
.h6{height:59.677734pt;}
.h5{height:61.435547pt;}
.h8{height:63.656250pt;}
.h16{height:65.531250pt;}
.h2d{height:65.667773pt;}
.h7{height:108.100000pt;}
.hd{height:184.160000pt;}
.h2c{height:356.000000pt;}
.h17{height:476.426667pt;}
.h2f{height:740.000000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.we{width:41.033333pt;}
.w14{width:44.066667pt;}
.w13{width:53.066667pt;}
.w15{width:54.066667pt;}
.w2{width:66.100000pt;}
.w11{width:98.133333pt;}
.w12{width:107.133333pt;}
.w4{width:135.160000pt;}
.wb{width:165.200000pt;}
.wd{width:166.200000pt;}
.wc{width:166.240000pt;}
.w7{width:198.240000pt;}
.w9{width:221.266667pt;}
.wa{width:221.306667pt;}
.w10{width:305.400000pt;}
.wf{width:317.400000pt;}
.w8{width:466.600000pt;}
.w5{width:529.666667pt;}
.w16{width:539.000000pt;}
.w1{width:599.773333pt;}
.w17{width:637.000000pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x42{left:5.700000pt;}
.x8{left:7.000000pt;}
.x2{left:8.033333pt;}
.x3c{left:9.066667pt;}
.x18{left:11.040000pt;}
.x3a{left:17.933333pt;}
.x3b{left:18.833333pt;}
.x31{left:20.233333pt;}
.x15{left:23.000000pt;}
.x37{left:30.233333pt;}
.x44{left:33.300000pt;}
.x43{left:34.900000pt;}
.xf{left:36.033333pt;}
.x40{left:38.100000pt;}
.x14{left:41.033333pt;}
.x38{left:42.133333pt;}
.x2d{left:43.866667pt;}
.x12{left:48.033333pt;}
.x13{left:50.033333pt;}
.x10{left:63.066667pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x3f{left:68.466667pt;}
.x41{left:70.800000pt;}
.x4{left:72.099988pt;}
.x23{left:77.099988pt;}
.x35{left:78.000000pt;}
.x39{left:83.573333pt;}
.x6{left:87.100000pt;}
.x1e{left:89.099988pt;}
.x3e{left:91.400000pt;}
.x5d{left:96.133322pt;}
.x19{left:98.133322pt;}
.x3d{left:100.266667pt;}
.x26{left:107.133333pt;}
.x2e{left:114.773333pt;}
.x11{left:119.140000pt;}
.x33{left:156.199988pt;}
.x2f{left:183.333333pt;}
.x16{left:190.233333pt;}
.x7{left:200.266667pt;}
.x32{left:212.506667pt;}
.x20{left:231.306667pt;}
.x36{left:245.040000pt;}
.xb{left:258.333333pt;}
.x17{left:263.333333pt;}
.x46{left:264.533333pt;}
.x1f{left:267.333322pt;}
.x45{left:270.733333pt;}
.x47{left:282.226667pt;}
.x1b{left:286.373333pt;}
.x24{left:299.359988pt;}
.x9{left:306.373333pt;}
.x5b{left:311.133333pt;}
.x5a{left:319.440000pt;}
.xa{left:324.400000pt;}
.xd{left:325.400000pt;}
.xe{left:332.406667pt;}
.x5c{left:353.466655pt;}
.x1d{left:354.466655pt;}
.x1a{left:356.466655pt;}
.x30{left:366.600000pt;}
.x59{left:388.840000pt;}
.x21{left:397.506667pt;}
.xc{left:403.506667pt;}
.x58{left:406.533333pt;}
.x56{left:418.333333pt;}
.x27{left:424.533333pt;}
.x54{left:430.440000pt;}
.x55{left:448.133333pt;}
.x53{left:453.733333pt;}
.x4d{left:465.840000pt;}
.x48{left:477.360000pt;}
.x2a{left:478.600000pt;}
.x52{left:483.560000pt;}
.x57{left:489.133333pt;}
.x49{left:495.066667pt;}
.x4e{left:501.266667pt;}
.x50{left:506.866667pt;}
.x1c{left:508.640000pt;}
.x4b{left:512.773333pt;}
.x28{left:523.666667pt;}
.x4a{left:530.466667pt;}
.x4c{left:542.266667pt;}
.x4f{left:554.373333pt;}
.x22{left:563.733333pt;}
.x51{left:572.066667pt;}
.x2b{left:577.733333pt;}
.x25{left:612.773322pt;}
.x29{left:622.800000pt;}
.x3{left:663.840000pt;}
.x2c{left:675.866667pt;}
.x34{left:715.893322pt;}
}




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