
    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_76bf45f9166488ccebb92c99.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.148000;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_2ad68d0448bf2f88670ac5a5.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.148000;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_0e94f64140d17ebcfce6adc8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.853516;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_39a900a1e98338db7613315b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.772000;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_242683187a0e3028637d31f7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.772000;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_3af5ddf90d7e73ec4bc83526.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.020020;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_715e856aaf03d61ee52babad.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.148000;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_b483efadb1c0053294bd6e90.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.148000;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_c3088a237321fbfd57033eb8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.020020;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_edc0689e1d51af762d240c6b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.136000;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_b8de665c07fcd37c7a7e20ac.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.136000;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_c3b92b2f505d3909a53a25a0.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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);}
.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);}
.v0{vertical-align:0.000000px;}
.ls15{letter-spacing:-0.636000px;}
.ls16{letter-spacing:-0.606000px;}
.ls1d{letter-spacing:-0.449400px;}
.lse{letter-spacing:-0.420600px;}
.ls2{letter-spacing:-0.302400px;}
.lsd{letter-spacing:-0.265200px;}
.ls1b{letter-spacing:-0.247800px;}
.ls19{letter-spacing:-0.241800px;}
.ls1a{letter-spacing:-0.233400px;}
.ls23{letter-spacing:-0.195600px;}
.ls17{letter-spacing:-0.172800px;}
.ls24{letter-spacing:-0.166800px;}
.ls1f{letter-spacing:-0.152400px;}
.ls9{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.090000px;}
.lsf{letter-spacing:-0.086400px;}
.ls1{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.000011px;}
.ls14{letter-spacing:0.062400px;}
.ls21{letter-spacing:0.069000px;}
.lsa{letter-spacing:0.086400px;}
.lsc{letter-spacing:0.121200px;}
.ls8{letter-spacing:0.144000px;}
.ls25{letter-spacing:0.166800px;}
.ls1c{letter-spacing:0.190200px;}
.ls12{letter-spacing:0.206400px;}
.ls20{letter-spacing:0.213000px;}
.ls1e{letter-spacing:0.270600px;}
.ls11{letter-spacing:0.275520px;}
.ls18{letter-spacing:0.299400px;}
.lsb{letter-spacing:0.299520px;}
.ls4{letter-spacing:0.336000px;}
.ls3{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.480000px;}
.ls6{letter-spacing:0.540000px;}
.ls13{letter-spacing:55.386720px;}
.ls10{letter-spacing:64.026720px;}
.ls0{letter-spacing:844.164000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-93.600000px;}
.wsb{word-spacing:-59.760000px;}
.ws6{word-spacing:-31.262400px;}
.ws4{word-spacing:-18.864000px;}
.ws3{word-spacing:-18.720000px;}
.ws5{word-spacing:-18.576000px;}
.ws12{word-spacing:-17.493000px;}
.ws11{word-spacing:-17.412600px;}
.ws10{word-spacing:-17.222400px;}
.ws13{word-spacing:-17.070000px;}
.ws14{word-spacing:-16.686600px;}
.ws16{word-spacing:-16.640400px;}
.ws8{word-spacing:-16.594800px;}
.ws7{word-spacing:-16.473600px;}
.wsa{word-spacing:-16.387200px;}
.wsd{word-spacing:-16.300800px;}
.ws15{word-spacing:-16.278000px;}
.wse{word-spacing:-16.231800px;}
.ws9{word-spacing:-16.208400px;}
.wsc{word-spacing:-15.867600px;}
.ws2{word-spacing:-14.040000px;}
.wsf{word-spacing:-12.309000px;}
.ws1{word-spacing:0.000000px;}
._4{margin-left:-24.480000px;}
._a{margin-left:-17.238000px;}
._e{margin-left:-15.624000px;}
._d{margin-left:-13.824000px;}
._b{margin-left:-11.640000px;}
._9{margin-left:-9.600000px;}
._8{margin-left:-8.496720px;}
._5{margin-left:-6.840000px;}
._44{margin-left:-5.832000px;}
._c{margin-left:-4.752000px;}
._6{margin-left:-3.570720px;}
._7{margin-left:-2.214000px;}
._2{margin-left:-1.061280px;}
._3{width:1.500000px;}
._15{width:2.534400px;}
._16{width:3.798000px;}
._1c{width:5.514720px;}
._2f{width:6.559440px;}
._1f{width:7.611600px;}
._20{width:8.820480px;}
._41{width:9.860640px;}
._1b{width:10.884720px;}
._1a{width:12.391680px;}
._14{width:13.812480px;}
._13{width:15.418080px;}
._1d{width:17.902800px;}
._11{width:19.750080px;}
._10{width:20.845440px;}
._34{width:21.978720px;}
._12{width:22.999680px;}
._24{width:24.516720px;}
._35{width:25.828320px;}
._33{width:27.751680px;}
._25{width:28.766640px;}
._26{width:30.697920px;}
._30{width:31.925760px;}
._23{width:33.311520px;}
._22{width:34.673520px;}
._2d{width:35.906400px;}
._2e{width:37.252080px;}
._1e{width:38.503440px;}
._36{width:40.543920px;}
._37{width:42.010560px;}
._42{width:44.031600px;}
._43{width:45.509520px;}
._3c{width:47.583360px;}
._3d{width:48.588240px;}
._2c{width:50.230800px;}
._2b{width:51.389760px;}
._45{width:53.032320px;}
._4a{width:55.126800px;}
._48{width:56.877120px;}
._49{width:57.970800px;}
._27{width:61.035600px;}
._28{width:62.959920px;}
._39{width:66.464640px;}
._38{width:67.733520px;}
._3b{width:69.147120px;}
._3a{width:70.326000px;}
._19{width:76.665600px;}
._4b{width:78.546960px;}
._32{width:82.321680px;}
._31{width:83.802240px;}
._40{width:85.888560px;}
._21{width:89.032320px;}
._29{width:108.706320px;}
._17{width:158.906880px;}
._18{width:160.016880px;}
._1{width:171.057600px;}
._47{width:331.667280px;}
._3f{width:789.420000px;}
._f{width:833.037600px;}
._2a{width:847.706400px;}
._3e{width:896.490000px;}
._0{width:923.616480px;}
._46{width:1351.283280px;}
.fc5{color:rgb(0,179,166);}
.fc4{color:rgb(70,120,134);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(173,173,173);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.fsa{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs7{font-size:120.240000px;}
.fs9{font-size:288.000000px;}
.fs2{font-size:360.000000px;}
.y0{bottom:0.000000px;}
.y12{bottom:0.900000px;}
.y146{bottom:4.500000px;}
.y111{bottom:56.520000px;}
.y3{bottom:56.700000px;}
.y16e{bottom:58.860000px;}
.y2{bottom:72.900000px;}
.y16d{bottom:83.700000px;}
.y1{bottom:89.280000px;}
.y16c{bottom:108.540000px;}
.ydd{bottom:111.240000px;}
.yb9{bottom:120.600000px;}
.y7c{bottom:122.400000px;}
.y106{bottom:123.480000px;}
.yb6{bottom:128.340000px;}
.y16b{bottom:133.380000px;}
.ya5{bottom:145.440000px;}
.y7b{bottom:147.240000px;}
.ydc{bottom:148.860000px;}
.y105{bottom:149.580000px;}
.y41{bottom:157.680000px;}
.y16a{bottom:158.220000px;}
.yb5{bottom:165.060000px;}
.ya4{bottom:170.280000px;}
.y7a{bottom:172.080000px;}
.y104{bottom:175.500000px;}
.y40{bottom:182.160000px;}
.y169{bottom:183.060000px;}
.ydb{bottom:185.760000px;}
.ya3{bottom:195.150000px;}
.y79{bottom:196.950000px;}
.y103{bottom:201.630000px;}
.yb4{bottom:201.990000px;}
.y3f{bottom:204.510000px;}
.y168{bottom:207.930000px;}
.ya2{bottom:219.990000px;}
.y78{bottom:221.790000px;}
.y11{bottom:221.970000px;}
.yda{bottom:222.690000px;}
.y3e{bottom:226.110000px;}
.y102{bottom:227.730000px;}
.y167{bottom:232.770000px;}
.yb3{bottom:238.890000px;}
.ya1{bottom:245.010000px;}
.y77{bottom:246.630000px;}
.y3d{bottom:247.530000px;}
.y101{bottom:253.650000px;}
.y166{bottom:257.610000px;}
.yd9{bottom:259.410000px;}
.y3c{bottom:268.770000px;}
.ya0{bottom:269.850000px;}
.y76{bottom:271.470000px;}
.yb2{bottom:275.790000px;}
.y100{bottom:279.750000px;}
.y12e{bottom:280.650000px;}
.y165{bottom:282.450000px;}
.yd8{bottom:284.250000px;}
.y3b{bottom:290.010000px;}
.y9f{bottom:294.690000px;}
.y75{bottom:296.310000px;}
.yff{bottom:305.670000px;}
.y164{bottom:307.290000px;}
.yd7{bottom:309.090000px;}
.y3a{bottom:311.430000px;}
.yb1{bottom:312.510000px;}
.y12d{bottom:318.810000px;}
.y9e{bottom:319.530000px;}
.y74{bottom:321.150000px;}
.yfe{bottom:331.770000px;}
.y163{bottom:332.130000px;}
.y39{bottom:332.670000px;}
.yd6{bottom:333.930000px;}
.y9d{bottom:344.370000px;}
.y73{bottom:346.170000px;}
.yb0{bottom:349.410000px;}
.y12c{bottom:353.730000px;}
.y38{bottom:353.910000px;}
.y162{bottom:356.970000px;}
.yfd{bottom:357.870000px;}
.yd5{bottom:358.950000px;}
.y110{bottom:368.490000px;}
.y9c{bottom:369.210000px;}
.y72{bottom:371.010000px;}
.y37{bottom:375.150000px;}
.y161{bottom:381.810000px;}
.yd4{bottom:383.790000px;}
.yaf{bottom:386.310000px;}
.y12b{bottom:391.710000px;}
.y9b{bottom:394.050000px;}
.y71{bottom:395.850000px;}
.y36{bottom:396.570000px;}
.y160{bottom:406.830000px;}
.yfc{bottom:409.890000px;}
.y35{bottom:417.810000px;}
.y9a{bottom:418.890000px;}
.yd3{bottom:420.510000px;}
.y70{bottom:420.690000px;}
.yae{bottom:423.030000px;}
.y11c{bottom:429.915000px;}
.y10{bottom:431.715000px;}
.yfb{bottom:436.035000px;}
.y34{bottom:439.095000px;}
.y99{bottom:443.775000px;}
.y6f{bottom:445.575000px;}
.y134{bottom:451.695000px;}
.y15f{bottom:456.555000px;}
.yd2{bottom:457.455000px;}
.yad{bottom:459.975000px;}
.y33{bottom:460.515000px;}
.yfa{bottom:461.955000px;}
.y11b{bottom:467.895000px;}
.y98{bottom:468.615000px;}
.yf{bottom:469.155000px;}
.y6e{bottom:470.415000px;}
.y53{bottom:477.795000px;}
.y15e{bottom:481.395000px;}
.y32{bottom:481.755000px;}
.yd1{bottom:482.295000px;}
.yf9{bottom:488.055000px;}
.y133{bottom:489.675000px;}
.ye{bottom:490.395000px;}
.y97{bottom:493.455000px;}
.y6d{bottom:495.255000px;}
.yac{bottom:496.875000px;}
.y31{bottom:502.995000px;}
.y15d{bottom:506.235000px;}
.yd0{bottom:507.135000px;}
.yd{bottom:509.655000px;}
.yf8{bottom:513.975000px;}
.y96{bottom:518.295000px;}
.y6c{bottom:520.095000px;}
.y30{bottom:524.415000px;}
.yc{bottom:526.935000px;}
.y132{bottom:527.655000px;}
.y52{bottom:530.355000px;}
.y15c{bottom:531.075000px;}
.ycf{bottom:531.975000px;}
.yab{bottom:533.775000px;}
.y11a{bottom:536.295000px;}
.yf7{bottom:540.075000px;}
.y95{bottom:543.135000px;}
.y6b{bottom:544.935000px;}
.y2f{bottom:545.655000px;}
.y15b{bottom:555.915000px;}
.yce{bottom:556.815000px;}
.yb{bottom:558.975000px;}
.yb8{bottom:561.855000px;}
.y51{bottom:564.015000px;}
.y131{bottom:565.815000px;}
.yf6{bottom:566.175000px;}
.y2e{bottom:566.895000px;}
.y94{bottom:567.975000px;}
.y12a{bottom:568.335000px;}
.y6a{bottom:569.775000px;}
.yaa{bottom:570.495000px;}
.y119{bottom:574.455000px;}
.y15a{bottom:580.755000px;}
.ycd{bottom:581.655000px;}
.y2d{bottom:588.315000px;}
.yf5{bottom:592.095000px;}
.y93{bottom:592.815000px;}
.y69{bottom:594.615000px;}
.y50{bottom:599.835000px;}
.y130{bottom:603.795000px;}
.y159{bottom:605.595000px;}
.y129{bottom:606.315000px;}
.ycc{bottom:606.495000px;}
.ya9{bottom:607.395000px;}
.y2c{bottom:609.555000px;}
.y118{bottom:612.435000px;}
.y92{bottom:617.655000px;}
.yf4{bottom:618.195000px;}
.y68{bottom:619.455000px;}
.y158{bottom:630.435000px;}
.y2b{bottom:630.795000px;}
.ycb{bottom:631.335000px;}
.y4f{bottom:635.655000px;}
.y13b{bottom:637.275000px;}
.y12f{bottom:641.775000px;}
.y91{bottom:642.495000px;}
.yf3{bottom:644.115000px;}
.y67{bottom:644.295000px;}
.ya{bottom:644.835000px;}
.y117{bottom:650.415000px;}
.y2a{bottom:652.215000px;}
.y157{bottom:655.275000px;}
.yca{bottom:656.175000px;}
.y10a{bottom:663.195000px;}
.y90{bottom:667.365000px;}
.y66{bottom:669.165000px;}
.yf2{bottom:670.245000px;}
.y4e{bottom:671.685000px;}
.y29{bottom:673.485000px;}
.y13a{bottom:675.285000px;}
.y156{bottom:680.145000px;}
.ya8{bottom:681.045000px;}
.y128{bottom:682.485000px;}
.y116{bottom:688.425000px;}
.y109{bottom:689.145000px;}
.y8f{bottom:692.205000px;}
.y65{bottom:694.005000px;}
.y28{bottom:694.725000px;}
.yf1{bottom:696.345000px;}
.y155{bottom:704.985000px;}
.yc9{bottom:705.885000px;}
.y4d{bottom:707.505000px;}
.y139{bottom:713.445000px;}
.y108{bottom:715.245000px;}
.y27{bottom:716.145000px;}
.y8e{bottom:717.045000px;}
.ya7{bottom:717.945000px;}
.y64{bottom:718.845000px;}
.y127{bottom:720.465000px;}
.yf0{bottom:722.265000px;}
.y115{bottom:726.585000px;}
.y154{bottom:729.825000px;}
.y9{bottom:730.545000px;}
.yc8{bottom:730.725000px;}
.y145{bottom:735.045000px;}
.y26{bottom:737.385000px;}
.y10e{bottom:738.825000px;}
.y107{bottom:741.165000px;}
.y8d{bottom:741.885000px;}
.y4c{bottom:743.505000px;}
.y63{bottom:743.685000px;}
.yef{bottom:748.365000px;}
.y138{bottom:751.425000px;}
.y153{bottom:754.665000px;}
.ya6{bottom:754.845000px;}
.yc7{bottom:755.745000px;}
.y126{bottom:758.445000px;}
.y25{bottom:758.625000px;}
.y114{bottom:764.565000px;}
.y10d{bottom:764.925000px;}
.y8c{bottom:766.725000px;}
.y62{bottom:768.525000px;}
.y144{bottom:772.485000px;}
.yee{bottom:774.465000px;}
.y4b{bottom:779.325000px;}
.y152{bottom:779.505000px;}
.y24{bottom:780.045000px;}
.yc6{bottom:780.585000px;}
.y137{bottom:789.405000px;}
.y10c{bottom:791.025000px;}
.y8b{bottom:791.745000px;}
.y61{bottom:793.365000px;}
.y125{bottom:796.605000px;}
.yed{bottom:800.385000px;}
.y23{bottom:801.285000px;}
.y113{bottom:802.545000px;}
.y151{bottom:804.345000px;}
.y143{bottom:809.385000px;}
.y4a{bottom:815.325000px;}
.y8{bottom:816.405000px;}
.y8a{bottom:816.585000px;}
.yc5{bottom:817.305000px;}
.y60{bottom:818.205000px;}
.y22{bottom:822.525000px;}
.yec{bottom:826.485000px;}
.y136{bottom:827.385000px;}
.y150{bottom:829.185000px;}
.y142{bottom:834.225000px;}
.y124{bottom:834.585000px;}
.y112{bottom:840.705000px;}
.y89{bottom:841.425000px;}
.y5f{bottom:843.045000px;}
.y21{bottom:843.945000px;}
.y49{bottom:851.145000px;}
.yeb{bottom:852.405000px;}
.y14f{bottom:854.025000px;}
.yc4{bottom:854.205000px;}
.y20{bottom:865.185000px;}
.y135{bottom:865.545000px;}
.y88{bottom:866.265000px;}
.y5e{bottom:867.885000px;}
.y141{bottom:871.125000px;}
.y123{bottom:872.565000px;}
.yea{bottom:878.505000px;}
.y14e{bottom:878.865000px;}
.yc3{bottom:879.045000px;}
.y1f{bottom:886.425000px;}
.y48{bottom:886.965000px;}
.y87{bottom:891.105000px;}
.y5d{bottom:892.905000px;}
.y7{bottom:902.265000px;}
.y14d{bottom:903.750000px;}
.yc2{bottom:903.885000px;}
.ye9{bottom:904.605000px;}
.y1e{bottom:907.890000px;}
.y140{bottom:908.070000px;}
.y122{bottom:910.590000px;}
.y86{bottom:915.990000px;}
.y5c{bottom:917.790000px;}
.y47{bottom:923.010000px;}
.y14c{bottom:928.590000px;}
.yc1{bottom:928.770000px;}
.y1d{bottom:929.130000px;}
.ye8{bottom:930.570000px;}
.ydf{bottom:931.470000px;}
.y85{bottom:940.830000px;}
.y5b{bottom:942.630000px;}
.y13f{bottom:944.790000px;}
.y121{bottom:948.750000px;}
.y1c{bottom:950.370000px;}
.y14b{bottom:953.430000px;}
.yc0{bottom:953.610000px;}
.ye7{bottom:956.670000px;}
.y46{bottom:958.830000px;}
.y84{bottom:965.670000px;}
.y5a{bottom:967.470000px;}
.y1b{bottom:971.790000px;}
.ybf{bottom:978.450000px;}
.y13e{bottom:981.690000px;}
.ye6{bottom:982.590000px;}
.y120{bottom:986.730000px;}
.y6{bottom:987.990000px;}
.y83{bottom:990.510000px;}
.y10b{bottom:990.870000px;}
.y59{bottom:992.310000px;}
.y1a{bottom:993.030000px;}
.y45{bottom:994.830000px;}
.ybe{bottom:1003.290000px;}
.ye5{bottom:1008.690000px;}
.y19{bottom:1014.270000px;}
.y82{bottom:1015.350000px;}
.y58{bottom:1017.150000px;}
.y13d{bottom:1018.590000px;}
.y11f{bottom:1024.710000px;}
.ybd{bottom:1028.130000px;}
.y44{bottom:1030.650000px;}
.ye4{bottom:1034.790000px;}
.y18{bottom:1035.690000px;}
.y81{bottom:1040.190000px;}
.y57{bottom:1041.990000px;}
.yb7{bottom:1045.410000px;}
.ybc{bottom:1052.970000px;}
.y13c{bottom:1055.490000px;}
.y17{bottom:1056.930000px;}
.y43{bottom:1059.450000px;}
.y10f{bottom:1060.350000px;}
.yde{bottom:1060.530000px;}
.ye3{bottom:1060.710000px;}
.y11e{bottom:1062.870000px;}
.y80{bottom:1065.030000px;}
.y56{bottom:1066.830000px;}
.y5{bottom:1073.850000px;}
.ybb{bottom:1077.810000px;}
.y16{bottom:1078.170000px;}
.ye2{bottom:1086.810000px;}
.y7f{bottom:1089.870000px;}
.y55{bottom:1092.210000px;}
.y15{bottom:1099.590000px;}
.y11d{bottom:1100.850000px;}
.yba{bottom:1102.650000px;}
.y42{bottom:1112.730000px;}
.ye1{bottom:1112.910000px;}
.y7e{bottom:1114.710000px;}
.y14{bottom:1120.830000px;}
.y54{bottom:1124.430000px;}
.y14a{bottom:1127.490000px;}
.ye0{bottom:1138.830000px;}
.y7d{bottom:1139.550000px;}
.y13{bottom:1142.070000px;}
.y4{bottom:1144.620000px;}
.y149{bottom:1152.360000px;}
.y148{bottom:1177.200000px;}
.y147{bottom:1202.040000px;}
.h7{height:13.680150px;}
.h15{height:40.773164px;}
.h2{height:43.753680px;}
.h8{height:43.801920px;}
.ha{height:48.978000px;}
.h9{height:49.032000px;}
.hb{height:53.552813px;}
.h5{height:54.720000px;}
.h12{height:56.770560px;}
.h10{height:57.467520px;}
.h11{height:57.530880px;}
.h14{height:60.079680px;}
.h3{height:60.855469px;}
.he{height:65.304000px;}
.h6{height:76.405680px;}
.hd{height:86.854320px;}
.hc{height:86.950080px;}
.hf{height:109.177920px;}
.h13{height:218.880000px;}
.h4{height:273.600000px;}
.h16{height:1257.300000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:305.175000px;}
.w4{width:891.179985px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.080015px;}
.x1{left:63.899987px;}
.x4{left:88.245000px;}
.x5{left:90.935987px;}
.x6{left:117.935987px;}
.x7{left:144.035987px;}
.xb{left:148.895987px;}
.xe{left:325.154985px;}
.x14{left:333.614985px;}
.x16{left:334.874985px;}
.x13{left:342.614985px;}
.x11{left:367.454985px;}
.xf{left:382.394985px;}
.x10{left:386.174985px;}
.x15{left:389.054985px;}
.x12{left:396.074985px;}
.xd{left:445.604985px;}
.x2{left:459.284987px;}
.x3{left:485.025000px;}
.x9{left:486.284987px;}
.x8{left:513.284987px;}
.xa{left:539.384987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls15{letter-spacing:-0.565333pt;}
.ls16{letter-spacing:-0.538667pt;}
.ls1d{letter-spacing:-0.399467pt;}
.lse{letter-spacing:-0.373867pt;}
.ls2{letter-spacing:-0.268800pt;}
.lsd{letter-spacing:-0.235733pt;}
.ls1b{letter-spacing:-0.220267pt;}
.ls19{letter-spacing:-0.214933pt;}
.ls1a{letter-spacing:-0.207467pt;}
.ls23{letter-spacing:-0.173867pt;}
.ls17{letter-spacing:-0.153600pt;}
.ls24{letter-spacing:-0.148267pt;}
.ls1f{letter-spacing:-0.135467pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.080000pt;}
.lsf{letter-spacing:-0.076800pt;}
.ls1{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.000010pt;}
.ls14{letter-spacing:0.055467pt;}
.ls21{letter-spacing:0.061333pt;}
.lsa{letter-spacing:0.076800pt;}
.lsc{letter-spacing:0.107733pt;}
.ls8{letter-spacing:0.128000pt;}
.ls25{letter-spacing:0.148267pt;}
.ls1c{letter-spacing:0.169067pt;}
.ls12{letter-spacing:0.183467pt;}
.ls20{letter-spacing:0.189333pt;}
.ls1e{letter-spacing:0.240533pt;}
.ls11{letter-spacing:0.244907pt;}
.ls18{letter-spacing:0.266133pt;}
.lsb{letter-spacing:0.266240pt;}
.ls4{letter-spacing:0.298667pt;}
.ls3{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.426667pt;}
.ls6{letter-spacing:0.480000pt;}
.ls13{letter-spacing:49.232640pt;}
.ls10{letter-spacing:56.912640pt;}
.ls0{letter-spacing:750.368000pt;}
.ws0{word-spacing:-83.200000pt;}
.wsb{word-spacing:-53.120000pt;}
.ws6{word-spacing:-27.788800pt;}
.ws4{word-spacing:-16.768000pt;}
.ws3{word-spacing:-16.640000pt;}
.ws5{word-spacing:-16.512000pt;}
.ws12{word-spacing:-15.549333pt;}
.ws11{word-spacing:-15.477867pt;}
.ws10{word-spacing:-15.308800pt;}
.ws13{word-spacing:-15.173333pt;}
.ws14{word-spacing:-14.832533pt;}
.ws16{word-spacing:-14.791467pt;}
.ws8{word-spacing:-14.750933pt;}
.ws7{word-spacing:-14.643200pt;}
.wsa{word-spacing:-14.566400pt;}
.wsd{word-spacing:-14.489600pt;}
.ws15{word-spacing:-14.469333pt;}
.wse{word-spacing:-14.428267pt;}
.ws9{word-spacing:-14.407467pt;}
.wsc{word-spacing:-14.104533pt;}
.ws2{word-spacing:-12.480000pt;}
.wsf{word-spacing:-10.941333pt;}
.ws1{word-spacing:0.000000pt;}
._4{margin-left:-21.760000pt;}
._a{margin-left:-15.322667pt;}
._e{margin-left:-13.888000pt;}
._d{margin-left:-12.288000pt;}
._b{margin-left:-10.346667pt;}
._9{margin-left:-8.533333pt;}
._8{margin-left:-7.552640pt;}
._5{margin-left:-6.080000pt;}
._44{margin-left:-5.184000pt;}
._c{margin-left:-4.224000pt;}
._6{margin-left:-3.173973pt;}
._7{margin-left:-1.968000pt;}
._2{margin-left:-0.943360pt;}
._3{width:1.333333pt;}
._15{width:2.252800pt;}
._16{width:3.376000pt;}
._1c{width:4.901973pt;}
._2f{width:5.830613pt;}
._1f{width:6.765867pt;}
._20{width:7.840427pt;}
._41{width:8.765013pt;}
._1b{width:9.675307pt;}
._1a{width:11.014827pt;}
._14{width:12.277760pt;}
._13{width:13.704960pt;}
._1d{width:15.913600pt;}
._11{width:17.555627pt;}
._10{width:18.529280pt;}
._34{width:19.536640pt;}
._12{width:20.444160pt;}
._24{width:21.792640pt;}
._35{width:22.958507pt;}
._33{width:24.668160pt;}
._25{width:25.570347pt;}
._26{width:27.287040pt;}
._30{width:28.378453pt;}
._23{width:29.610240pt;}
._22{width:30.820907pt;}
._2d{width:31.916800pt;}
._2e{width:33.112960pt;}
._1e{width:34.225280pt;}
._36{width:36.039040pt;}
._37{width:37.342720pt;}
._42{width:39.139200pt;}
._43{width:40.452907pt;}
._3c{width:42.296320pt;}
._3d{width:43.189547pt;}
._2c{width:44.649600pt;}
._2b{width:45.679787pt;}
._45{width:47.139840pt;}
._4a{width:49.001600pt;}
._48{width:50.557440pt;}
._49{width:51.529600pt;}
._27{width:54.253867pt;}
._28{width:55.964373pt;}
._39{width:59.079680pt;}
._38{width:60.207573pt;}
._3b{width:61.464107pt;}
._3a{width:62.512000pt;}
._19{width:68.147200pt;}
._4b{width:69.819520pt;}
._32{width:73.174827pt;}
._31{width:74.490880pt;}
._40{width:76.345387pt;}
._21{width:79.139840pt;}
._29{width:96.627840pt;}
._17{width:141.250560pt;}
._18{width:142.237227pt;}
._1{width:152.051200pt;}
._47{width:294.815360pt;}
._3f{width:701.706667pt;}
._f{width:740.477867pt;}
._2a{width:753.516800pt;}
._3e{width:796.880000pt;}
._0{width:820.992427pt;}
._46{width:1201.140693pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.fsa{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs7{font-size:106.880000pt;}
.fs9{font-size:256.000000pt;}
.fs2{font-size:320.000000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:0.800000pt;}
.y146{bottom:4.000000pt;}
.y111{bottom:50.240000pt;}
.y3{bottom:50.400000pt;}
.y16e{bottom:52.320000pt;}
.y2{bottom:64.800000pt;}
.y16d{bottom:74.400000pt;}
.y1{bottom:79.360000pt;}
.y16c{bottom:96.480000pt;}
.ydd{bottom:98.880000pt;}
.yb9{bottom:107.200000pt;}
.y7c{bottom:108.800000pt;}
.y106{bottom:109.760000pt;}
.yb6{bottom:114.080000pt;}
.y16b{bottom:118.560000pt;}
.ya5{bottom:129.280000pt;}
.y7b{bottom:130.880000pt;}
.ydc{bottom:132.320000pt;}
.y105{bottom:132.960000pt;}
.y41{bottom:140.160000pt;}
.y16a{bottom:140.640000pt;}
.yb5{bottom:146.720000pt;}
.ya4{bottom:151.360000pt;}
.y7a{bottom:152.960000pt;}
.y104{bottom:156.000000pt;}
.y40{bottom:161.920000pt;}
.y169{bottom:162.720000pt;}
.ydb{bottom:165.120000pt;}
.ya3{bottom:173.466667pt;}
.y79{bottom:175.066667pt;}
.y103{bottom:179.226667pt;}
.yb4{bottom:179.546667pt;}
.y3f{bottom:181.786667pt;}
.y168{bottom:184.826667pt;}
.ya2{bottom:195.546667pt;}
.y78{bottom:197.146667pt;}
.y11{bottom:197.306667pt;}
.yda{bottom:197.946667pt;}
.y3e{bottom:200.986667pt;}
.y102{bottom:202.426667pt;}
.y167{bottom:206.906667pt;}
.yb3{bottom:212.346667pt;}
.ya1{bottom:217.786667pt;}
.y77{bottom:219.226667pt;}
.y3d{bottom:220.026667pt;}
.y101{bottom:225.466667pt;}
.y166{bottom:228.986667pt;}
.yd9{bottom:230.586667pt;}
.y3c{bottom:238.906667pt;}
.ya0{bottom:239.866667pt;}
.y76{bottom:241.306667pt;}
.yb2{bottom:245.146667pt;}
.y100{bottom:248.666667pt;}
.y12e{bottom:249.466667pt;}
.y165{bottom:251.066667pt;}
.yd8{bottom:252.666667pt;}
.y3b{bottom:257.786667pt;}
.y9f{bottom:261.946667pt;}
.y75{bottom:263.386667pt;}
.yff{bottom:271.706667pt;}
.y164{bottom:273.146667pt;}
.yd7{bottom:274.746667pt;}
.y3a{bottom:276.826667pt;}
.yb1{bottom:277.786667pt;}
.y12d{bottom:283.386667pt;}
.y9e{bottom:284.026667pt;}
.y74{bottom:285.466667pt;}
.yfe{bottom:294.906667pt;}
.y163{bottom:295.226667pt;}
.y39{bottom:295.706667pt;}
.yd6{bottom:296.826667pt;}
.y9d{bottom:306.106667pt;}
.y73{bottom:307.706667pt;}
.yb0{bottom:310.586667pt;}
.y12c{bottom:314.426667pt;}
.y38{bottom:314.586667pt;}
.y162{bottom:317.306667pt;}
.yfd{bottom:318.106667pt;}
.yd5{bottom:319.066667pt;}
.y110{bottom:327.546667pt;}
.y9c{bottom:328.186667pt;}
.y72{bottom:329.786667pt;}
.y37{bottom:333.466667pt;}
.y161{bottom:339.386667pt;}
.yd4{bottom:341.146667pt;}
.yaf{bottom:343.386667pt;}
.y12b{bottom:348.186667pt;}
.y9b{bottom:350.266667pt;}
.y71{bottom:351.866667pt;}
.y36{bottom:352.506667pt;}
.y160{bottom:361.626667pt;}
.yfc{bottom:364.346667pt;}
.y35{bottom:371.386667pt;}
.y9a{bottom:372.346667pt;}
.yd3{bottom:373.786667pt;}
.y70{bottom:373.946667pt;}
.yae{bottom:376.026667pt;}
.y11c{bottom:382.146667pt;}
.y10{bottom:383.746667pt;}
.yfb{bottom:387.586667pt;}
.y34{bottom:390.306667pt;}
.y99{bottom:394.466667pt;}
.y6f{bottom:396.066667pt;}
.y134{bottom:401.506667pt;}
.y15f{bottom:405.826667pt;}
.yd2{bottom:406.626667pt;}
.yad{bottom:408.866667pt;}
.y33{bottom:409.346667pt;}
.yfa{bottom:410.626667pt;}
.y11b{bottom:415.906667pt;}
.y98{bottom:416.546667pt;}
.yf{bottom:417.026667pt;}
.y6e{bottom:418.146667pt;}
.y53{bottom:424.706667pt;}
.y15e{bottom:427.906667pt;}
.y32{bottom:428.226667pt;}
.yd1{bottom:428.706667pt;}
.yf9{bottom:433.826667pt;}
.y133{bottom:435.266667pt;}
.ye{bottom:435.906667pt;}
.y97{bottom:438.626667pt;}
.y6d{bottom:440.226667pt;}
.yac{bottom:441.666667pt;}
.y31{bottom:447.106667pt;}
.y15d{bottom:449.986667pt;}
.yd0{bottom:450.786667pt;}
.yd{bottom:453.026667pt;}
.yf8{bottom:456.866667pt;}
.y96{bottom:460.706667pt;}
.y6c{bottom:462.306667pt;}
.y30{bottom:466.146667pt;}
.yc{bottom:468.386667pt;}
.y132{bottom:469.026667pt;}
.y52{bottom:471.426667pt;}
.y15c{bottom:472.066667pt;}
.ycf{bottom:472.866667pt;}
.yab{bottom:474.466667pt;}
.y11a{bottom:476.706667pt;}
.yf7{bottom:480.066667pt;}
.y95{bottom:482.786667pt;}
.y6b{bottom:484.386667pt;}
.y2f{bottom:485.026667pt;}
.y15b{bottom:494.146667pt;}
.yce{bottom:494.946667pt;}
.yb{bottom:496.866667pt;}
.yb8{bottom:499.426667pt;}
.y51{bottom:501.346667pt;}
.y131{bottom:502.946667pt;}
.yf6{bottom:503.266667pt;}
.y2e{bottom:503.906667pt;}
.y94{bottom:504.866667pt;}
.y12a{bottom:505.186667pt;}
.y6a{bottom:506.466667pt;}
.yaa{bottom:507.106667pt;}
.y119{bottom:510.626667pt;}
.y15a{bottom:516.226667pt;}
.ycd{bottom:517.026667pt;}
.y2d{bottom:522.946667pt;}
.yf5{bottom:526.306667pt;}
.y93{bottom:526.946667pt;}
.y69{bottom:528.546667pt;}
.y50{bottom:533.186667pt;}
.y130{bottom:536.706667pt;}
.y159{bottom:538.306667pt;}
.y129{bottom:538.946667pt;}
.ycc{bottom:539.106667pt;}
.ya9{bottom:539.906667pt;}
.y2c{bottom:541.826667pt;}
.y118{bottom:544.386667pt;}
.y92{bottom:549.026667pt;}
.yf4{bottom:549.506667pt;}
.y68{bottom:550.626667pt;}
.y158{bottom:560.386667pt;}
.y2b{bottom:560.706667pt;}
.ycb{bottom:561.186667pt;}
.y4f{bottom:565.026667pt;}
.y13b{bottom:566.466667pt;}
.y12f{bottom:570.466667pt;}
.y91{bottom:571.106667pt;}
.yf3{bottom:572.546667pt;}
.y67{bottom:572.706667pt;}
.ya{bottom:573.186667pt;}
.y117{bottom:578.146667pt;}
.y2a{bottom:579.746667pt;}
.y157{bottom:582.466667pt;}
.yca{bottom:583.266667pt;}
.y10a{bottom:589.506667pt;}
.y90{bottom:593.213333pt;}
.y66{bottom:594.813333pt;}
.yf2{bottom:595.773333pt;}
.y4e{bottom:597.053333pt;}
.y29{bottom:598.653333pt;}
.y13a{bottom:600.253333pt;}
.y156{bottom:604.573333pt;}
.ya8{bottom:605.373333pt;}
.y128{bottom:606.653333pt;}
.y116{bottom:611.933333pt;}
.y109{bottom:612.573333pt;}
.y8f{bottom:615.293333pt;}
.y65{bottom:616.893333pt;}
.y28{bottom:617.533333pt;}
.yf1{bottom:618.973333pt;}
.y155{bottom:626.653333pt;}
.yc9{bottom:627.453333pt;}
.y4d{bottom:628.893333pt;}
.y139{bottom:634.173333pt;}
.y108{bottom:635.773333pt;}
.y27{bottom:636.573333pt;}
.y8e{bottom:637.373333pt;}
.ya7{bottom:638.173333pt;}
.y64{bottom:638.973333pt;}
.y127{bottom:640.413333pt;}
.yf0{bottom:642.013333pt;}
.y115{bottom:645.853333pt;}
.y154{bottom:648.733333pt;}
.y9{bottom:649.373333pt;}
.yc8{bottom:649.533333pt;}
.y145{bottom:653.373333pt;}
.y26{bottom:655.453333pt;}
.y10e{bottom:656.733333pt;}
.y107{bottom:658.813333pt;}
.y8d{bottom:659.453333pt;}
.y4c{bottom:660.893333pt;}
.y63{bottom:661.053333pt;}
.yef{bottom:665.213333pt;}
.y138{bottom:667.933333pt;}
.y153{bottom:670.813333pt;}
.ya6{bottom:670.973333pt;}
.yc7{bottom:671.773333pt;}
.y126{bottom:674.173333pt;}
.y25{bottom:674.333333pt;}
.y114{bottom:679.613333pt;}
.y10d{bottom:679.933333pt;}
.y8c{bottom:681.533333pt;}
.y62{bottom:683.133333pt;}
.y144{bottom:686.653333pt;}
.yee{bottom:688.413333pt;}
.y4b{bottom:692.733333pt;}
.y152{bottom:692.893333pt;}
.y24{bottom:693.373333pt;}
.yc6{bottom:693.853333pt;}
.y137{bottom:701.693333pt;}
.y10c{bottom:703.133333pt;}
.y8b{bottom:703.773333pt;}
.y61{bottom:705.213333pt;}
.y125{bottom:708.093333pt;}
.yed{bottom:711.453333pt;}
.y23{bottom:712.253333pt;}
.y113{bottom:713.373333pt;}
.y151{bottom:714.973333pt;}
.y143{bottom:719.453333pt;}
.y4a{bottom:724.733333pt;}
.y8{bottom:725.693333pt;}
.y8a{bottom:725.853333pt;}
.yc5{bottom:726.493333pt;}
.y60{bottom:727.293333pt;}
.y22{bottom:731.133333pt;}
.yec{bottom:734.653333pt;}
.y136{bottom:735.453333pt;}
.y150{bottom:737.053333pt;}
.y142{bottom:741.533333pt;}
.y124{bottom:741.853333pt;}
.y112{bottom:747.293333pt;}
.y89{bottom:747.933333pt;}
.y5f{bottom:749.373333pt;}
.y21{bottom:750.173333pt;}
.y49{bottom:756.573333pt;}
.yeb{bottom:757.693333pt;}
.y14f{bottom:759.133333pt;}
.yc4{bottom:759.293333pt;}
.y20{bottom:769.053333pt;}
.y135{bottom:769.373333pt;}
.y88{bottom:770.013333pt;}
.y5e{bottom:771.453333pt;}
.y141{bottom:774.333333pt;}
.y123{bottom:775.613333pt;}
.yea{bottom:780.893333pt;}
.y14e{bottom:781.213333pt;}
.yc3{bottom:781.373333pt;}
.y1f{bottom:787.933333pt;}
.y48{bottom:788.413333pt;}
.y87{bottom:792.093333pt;}
.y5d{bottom:793.693333pt;}
.y7{bottom:802.013333pt;}
.y14d{bottom:803.333333pt;}
.yc2{bottom:803.453333pt;}
.ye9{bottom:804.093333pt;}
.y1e{bottom:807.013333pt;}
.y140{bottom:807.173333pt;}
.y122{bottom:809.413333pt;}
.y86{bottom:814.213333pt;}
.y5c{bottom:815.813333pt;}
.y47{bottom:820.453333pt;}
.y14c{bottom:825.413333pt;}
.yc1{bottom:825.573333pt;}
.y1d{bottom:825.893333pt;}
.ye8{bottom:827.173333pt;}
.ydf{bottom:827.973333pt;}
.y85{bottom:836.293333pt;}
.y5b{bottom:837.893333pt;}
.y13f{bottom:839.813333pt;}
.y121{bottom:843.333333pt;}
.y1c{bottom:844.773333pt;}
.y14b{bottom:847.493333pt;}
.yc0{bottom:847.653333pt;}
.ye7{bottom:850.373333pt;}
.y46{bottom:852.293333pt;}
.y84{bottom:858.373333pt;}
.y5a{bottom:859.973333pt;}
.y1b{bottom:863.813333pt;}
.ybf{bottom:869.733333pt;}
.y13e{bottom:872.613333pt;}
.ye6{bottom:873.413333pt;}
.y120{bottom:877.093333pt;}
.y6{bottom:878.213333pt;}
.y83{bottom:880.453333pt;}
.y10b{bottom:880.773333pt;}
.y59{bottom:882.053333pt;}
.y1a{bottom:882.693333pt;}
.y45{bottom:884.293333pt;}
.ybe{bottom:891.813333pt;}
.ye5{bottom:896.613333pt;}
.y19{bottom:901.573333pt;}
.y82{bottom:902.533333pt;}
.y58{bottom:904.133333pt;}
.y13d{bottom:905.413333pt;}
.y11f{bottom:910.853333pt;}
.ybd{bottom:913.893333pt;}
.y44{bottom:916.133333pt;}
.ye4{bottom:919.813333pt;}
.y18{bottom:920.613333pt;}
.y81{bottom:924.613333pt;}
.y57{bottom:926.213333pt;}
.yb7{bottom:929.253333pt;}
.ybc{bottom:935.973333pt;}
.y13c{bottom:938.213333pt;}
.y17{bottom:939.493333pt;}
.y43{bottom:941.733333pt;}
.y10f{bottom:942.533333pt;}
.yde{bottom:942.693333pt;}
.ye3{bottom:942.853333pt;}
.y11e{bottom:944.773333pt;}
.y80{bottom:946.693333pt;}
.y56{bottom:948.293333pt;}
.y5{bottom:954.533333pt;}
.ybb{bottom:958.053333pt;}
.y16{bottom:958.373333pt;}
.ye2{bottom:966.053333pt;}
.y7f{bottom:968.773333pt;}
.y55{bottom:970.853333pt;}
.y15{bottom:977.413333pt;}
.y11d{bottom:978.533333pt;}
.yba{bottom:980.133333pt;}
.y42{bottom:989.093333pt;}
.ye1{bottom:989.253333pt;}
.y7e{bottom:990.853333pt;}
.y14{bottom:996.293333pt;}
.y54{bottom:999.493333pt;}
.y14a{bottom:1002.213333pt;}
.ye0{bottom:1012.293333pt;}
.y7d{bottom:1012.933333pt;}
.y13{bottom:1015.173333pt;}
.y4{bottom:1017.440000pt;}
.y149{bottom:1024.320000pt;}
.y148{bottom:1046.400000pt;}
.y147{bottom:1068.480000pt;}
.h7{height:12.160133pt;}
.h15{height:36.242812pt;}
.h2{height:38.892160pt;}
.h8{height:38.935040pt;}
.ha{height:43.536000pt;}
.h9{height:43.584000pt;}
.hb{height:47.602500pt;}
.h5{height:48.640000pt;}
.h12{height:50.462720pt;}
.h10{height:51.082240pt;}
.h11{height:51.138560pt;}
.h14{height:53.404160pt;}
.h3{height:54.093750pt;}
.he{height:58.048000pt;}
.h6{height:67.916160pt;}
.hd{height:77.203840pt;}
.hc{height:77.288960pt;}
.hf{height:97.047040pt;}
.h13{height:194.560000pt;}
.h4{height:243.200000pt;}
.h16{height:1117.600000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:271.266667pt;}
.w4{width:792.159987pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:0.960013pt;}
.x1{left:56.799988pt;}
.x4{left:78.440000pt;}
.x5{left:80.831988pt;}
.x6{left:104.831988pt;}
.x7{left:128.031988pt;}
.xb{left:132.351988pt;}
.xe{left:289.026653pt;}
.x14{left:296.546653pt;}
.x16{left:297.666653pt;}
.x13{left:304.546653pt;}
.x11{left:326.626653pt;}
.xf{left:339.906653pt;}
.x10{left:343.266653pt;}
.x15{left:345.826653pt;}
.x12{left:352.066653pt;}
.xd{left:396.093320pt;}
.x2{left:408.253322pt;}
.x3{left:431.133333pt;}
.x9{left:432.253322pt;}
.x8{left:456.253322pt;}
.xa{left:479.453322pt;}
}




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