
    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_3b08c11216dba832abcf9b59.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d06efff4399c20abc5fcc5ef.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5d8a968f0d17d45ee35354fc.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_103cbdc48786ed014ecabb04.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_360f7980ea3d86e5b0fd956f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.747559;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_1f07bcdc608576daec0dc397.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708008;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_1f07bcdc608576daec0dc397.woff')format("woff");}.ff7{font-family:ff7;line-height:0.708008;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_360f7980ea3d86e5b0fd956f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.747559;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_e606ea5711b0180e7caad176.woff')format("woff");}.ff9{font-family:ff9;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;}
@font-face{font-family:ffa;src:url('chunks/assets/font_0e4390b2a41fb81e0660f62a.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_fda0b0755bd9e09826e21c7c.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_8eb799fa98c0e7016dd48e43.woff')format("woff");}.ffc{font-family:ffc;line-height:0.850586;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_d18861fe735072766e52e0f0.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3e71e65985ef4219eff87ee0.woff')format("woff");}.ffe{font-family:ffe;line-height:0.982910;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_5d123772bb4c8abe91c34807.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff10{font-family:ff10;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;}
.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;}
.lsf{letter-spacing:-1.644000px;}
.ls13{letter-spacing:-1.296000px;}
.ls11{letter-spacing:-1.272000px;}
.lsc{letter-spacing:-0.636000px;}
.ls8{letter-spacing:-0.504000px;}
.ls2{letter-spacing:-0.462000px;}
.ls12{letter-spacing:-0.336000px;}
.ls10{letter-spacing:-0.300000px;}
.ls3{letter-spacing:-0.132000px;}
.ls1{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.012000px;}
.lsb{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.162000px;}
.lsd{letter-spacing:0.204000px;}
.ls0{letter-spacing:0.270000px;}
.ls5{letter-spacing:0.378000px;}
.lse{letter-spacing:0.684000px;}
.ls9{letter-spacing:0.744000px;}
.ls15{letter-spacing:3.228000px;}
.lsa{letter-spacing:54.984000px;}
.ls6{letter-spacing:74.310000px;}
.ls7{letter-spacing:840.042000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws7{word-spacing:-25.152000px;}
.wsb{word-spacing:-16.284000px;}
.wsa{word-spacing:-16.272000px;}
.ws6{word-spacing:-15.768000px;}
.ws8{word-spacing:-15.636000px;}
.ws3{word-spacing:-15.294000px;}
.ws1{word-spacing:-14.916000px;}
.ws2{word-spacing:-14.784000px;}
.ws0{word-spacing:-14.454000px;}
.ws5{word-spacing:-14.238000px;}
.ws4{word-spacing:0.000000px;}
._18{margin-left:-5.952000px;}
._23{margin-left:-4.716000px;}
._1b{margin-left:-3.636000px;}
._b{margin-left:-2.382000px;}
._1{margin-left:-1.152000px;}
._2{width:1.056000px;}
._a{width:2.262000px;}
._c{width:3.819000px;}
._e{width:4.929000px;}
._d{width:5.973000px;}
._3{width:7.872000px;}
._0{width:8.928000px;}
._27{width:9.960000px;}
._26{width:11.148000px;}
._1d{width:12.384000px;}
._25{width:14.214000px;}
._24{width:15.264000px;}
._6{width:17.088000px;}
._7{width:18.192000px;}
._21{width:19.200000px;}
._22{width:20.376000px;}
._19{width:22.104000px;}
._1a{width:23.460000px;}
._20{width:24.642000px;}
._1c{width:25.776000px;}
._2c{width:27.072000px;}
._1f{width:28.896000px;}
._29{width:30.456000px;}
._2a{width:31.614000px;}
._2d{width:32.700000px;}
._2e{width:34.152000px;}
._28{width:35.622000px;}
._1e{width:36.702000px;}
._5{width:37.920000px;}
._4{width:38.976000px;}
._32{width:40.146000px;}
._31{width:41.328000px;}
._2b{width:42.336000px;}
._30{width:110.736000px;}
._2f{width:111.744000px;}
._f{width:848.178000px;}
._12{width:1024.356000px;}
._9{width:1208.268000px;}
._8{width:1479.858000px;}
._14{width:1530.270000px;}
._13{width:1648.638000px;}
._16{width:2008.152000px;}
._15{width:2015.070000px;}
._11{width:2111.454000px;}
._10{width:2145.564000px;}
._17{width:2301.942000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(17,24,39);}
.fc1{color:rgb(7,55,99);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs8{font-size:108.000000px;}
.fs4{font-size:144.000000px;}
.fs3{font-size:150.000000px;}
.y0{bottom:0.000000px;}
.y2b{bottom:4.875000px;}
.y9{bottom:7.912500px;}
.ya{bottom:15.000000px;}
.y3b{bottom:16.500000px;}
.y31{bottom:19.485000px;}
.y2d{bottom:19.500000px;}
.y36{bottom:19.875000px;}
.y8{bottom:22.537500px;}
.y3d{bottom:27.000000px;}
.y38{bottom:30.750000px;}
.y7{bottom:37.537500px;}
.y4{bottom:41.250000px;}
.y2f{bottom:41.610000px;}
.y39{bottom:41.625000px;}
.y33{bottom:41.655000px;}
.y35{bottom:42.030000px;}
.y5{bottom:44.287500px;}
.y3e{bottom:48.750000px;}
.y6{bottom:52.162500px;}
.y30{bottom:63.780000px;}
.y34{bottom:63.795000px;}
.y3{bottom:138.037500px;}
.y128{bottom:163.545000px;}
.yf8{bottom:169.155000px;}
.y96{bottom:176.700000px;}
.ydf{bottom:180.825000px;}
.y146{bottom:181.950000px;}
.yb9{bottom:184.200000px;}
.y127{bottom:185.700000px;}
.y4b{bottom:187.200000px;}
.yf7{bottom:191.325000px;}
.y95{bottom:198.450000px;}
.yde{bottom:202.575000px;}
.y145{bottom:203.700000px;}
.y27{bottom:204.075000px;}
.y4a{bottom:206.325000px;}
.y126{bottom:207.450000px;}
.yf6{bottom:213.450000px;}
.ydd{bottom:224.700000px;}
.yb8{bottom:228.450000px;}
.y125{bottom:229.575000px;}
.yf5{bottom:235.200000px;}
.y94{bottom:235.575000px;}
.y26{bottom:235.950000px;}
.y49{bottom:241.200000px;}
.y144{bottom:241.575000px;}
.yb7{bottom:250.200000px;}
.y93{bottom:257.325000px;}
.ydc{bottom:261.450000px;}
.y124{bottom:266.700000px;}
.y25{bottom:268.200000px;}
.yb6{bottom:272.325000px;}
.yf4{bottom:274.575000px;}
.y143{bottom:278.700000px;}
.y92{bottom:280.575000px;}
.y48{bottom:281.325000px;}
.ydb{bottom:283.575000px;}
.y123{bottom:288.450000px;}
.yb5{bottom:294.075000px;}
.y24{bottom:300.450000px;}
.y142{bottom:300.825000px;}
.y91{bottom:303.495000px;}
.y166{bottom:304.995000px;}
.yda{bottom:305.745000px;}
.y122{bottom:310.605000px;}
.y47{bottom:315.120000px;}
.yb4{bottom:316.245000px;}
.y141{bottom:323.745000px;}
.y90{bottom:326.370000px;}
.y165{bottom:327.120000px;}
.yd9{bottom:327.480000px;}
.y121{bottom:332.370000px;}
.y23{bottom:332.745000px;}
.y46{bottom:334.230000px;}
.yf3{bottom:335.370000px;}
.y140{bottom:345.870000px;}
.y8f{bottom:348.105000px;}
.yd8{bottom:350.370000px;}
.y45{bottom:353.370000px;}
.y120{bottom:354.480000px;}
.yf2{bottom:357.120000px;}
.y164{bottom:364.245000px;}
.y22{bottom:364.605000px;}
.y13f{bottom:368.730000px;}
.yd7{bottom:372.495000px;}
.y11f{bottom:376.620000px;}
.yf1{bottom:379.245000px;}
.y8e{bottom:385.995000px;}
.y44{bottom:388.230000px;}
.yb3{bottom:390.120000px;}
.y13e{bottom:390.495000px;}
.yd6{bottom:394.620000px;}
.y21{bottom:396.870000px;}
.y11e{bottom:399.495000px;}
.yf0{bottom:400.995000px;}
.y8d{bottom:408.120000px;}
.yb2{bottom:412.245000px;}
.y13d{bottom:412.620000px;}
.y43{bottom:414.120000px;}
.yd5{bottom:416.370000px;}
.y11d{bottom:421.245000px;}
.yef{bottom:423.120000px;}
.y20{bottom:429.120000px;}
.yb1{bottom:434.025000px;}
.yd4{bottom:438.525000px;}
.y42{bottom:440.025000px;}
.y11c{bottom:443.400000px;}
.y163{bottom:444.900000px;}
.y8c{bottom:445.275000px;}
.y13c{bottom:450.525000px;}
.yb0{bottom:456.150000px;}
.yd3{bottom:460.650000px;}
.y1f{bottom:461.025000px;}
.y41{bottom:462.150000px;}
.y11b{bottom:465.150000px;}
.yee{bottom:467.025000px;}
.yaf{bottom:478.275000px;}
.y8b{bottom:482.025000px;}
.y40{bottom:483.900000px;}
.y10a{bottom:486.150000px;}
.y11a{bottom:487.275000px;}
.y162{bottom:489.150000px;}
.y1e{bottom:493.275000px;}
.yd2{bottom:498.525000px;}
.y8a{bottom:504.150000px;}
.y109{bottom:508.275000px;}
.y119{bottom:509.400000px;}
.y161{bottom:510.900000px;}
.yae{bottom:515.025000px;}
.y3f{bottom:516.150000px;}
.y1d{bottom:525.525000px;}
.y89{bottom:525.900000px;}
.y108{bottom:530.025000px;}
.y118{bottom:531.150000px;}
.y13b{bottom:532.275000px;}
.yd1{bottom:535.275000px;}
.yad{bottom:537.150000px;}
.y88{bottom:548.025000px;}
.y107{bottom:552.150000px;}
.y117{bottom:554.025000px;}
.y13a{bottom:554.400000px;}
.yd0{bottom:557.400000px;}
.yac{bottom:558.900000px;}
.y1c{bottom:561.570000px;}
.y160{bottom:569.820000px;}
.y87{bottom:570.195000px;}
.y106{bottom:573.945000px;}
.y3c{bottom:574.320000px;}
.y116{bottom:576.195000px;}
.y139{bottom:577.320000px;}
.ycf{bottom:579.195000px;}
.yab{bottom:581.070000px;}
.y86{bottom:591.945000px;}
.y105{bottom:596.070000px;}
.y115{bottom:598.320000px;}
.y138{bottom:599.445000px;}
.yce{bottom:601.320000px;}
.yaa{bottom:603.195000px;}
.y85{bottom:614.070000px;}
.y1b{bottom:616.695000px;}
.y104{bottom:618.195000px;}
.y114{bottom:620.070000px;}
.ycd{bottom:623.445000px;}
.y84{bottom:635.820000px;}
.y137{bottom:637.320000px;}
.ya9{bottom:639.945000px;}
.y113{bottom:642.195000px;}
.yed{bottom:650.820000px;}
.y3a{bottom:656.070000px;}
.y1a{bottom:659.820000px;}
.ycc{bottom:660.195000px;}
.ya8{bottom:662.070000px;}
.y112{bottom:663.945000px;}
.y59{bottom:671.070000px;}
.y83{bottom:672.945000px;}
.y136{bottom:674.070000px;}
.y103{bottom:677.070000px;}
.ycb{bottom:682.320000px;}
.ya7{bottom:683.820000px;}
.y111{bottom:686.070000px;}
.y58{bottom:693.225000px;}
.yec{bottom:695.100000px;}
.y135{bottom:696.225000px;}
.y102{bottom:698.850000px;}
.y19{bottom:702.975000px;}
.yca{bottom:705.225000px;}
.ya6{bottom:705.975000px;}
.y110{bottom:708.225000px;}
.y15f{bottom:709.725000px;}
.y82{bottom:710.100000px;}
.yeb{bottom:716.850000px;}
.y37{bottom:717.225000px;}
.y134{bottom:719.100000px;}
.y101{bottom:720.975000px;}
.yc9{bottom:727.350000px;}
.ya5{bottom:728.100000px;}
.y65{bottom:729.225000px;}
.y57{bottom:729.975000px;}
.y10f{bottom:731.100000px;}
.y81{bottom:731.850000px;}
.yea{bottom:738.975000px;}
.y133{bottom:741.225000px;}
.y18{bottom:741.600000px;}
.y100{bottom:743.100000px;}
.ya4{bottom:749.850000px;}
.yc8{bottom:750.225000px;}
.y10e{bottom:752.850000px;}
.y80{bottom:753.975000px;}
.ye9{bottom:760.725000px;}
.y132{bottom:764.100000px;}
.yff{bottom:764.850000px;}
.y64{bottom:765.600000px;}
.y56{bottom:767.100000px;}
.y15e{bottom:768.975000px;}
.ya3{bottom:771.975000px;}
.y17{bottom:774.975000px;}
.y7f{bottom:775.725000px;}
.y152{bottom:782.100000px;}
.ye8{bottom:782.850000px;}
.y131{bottom:786.225000px;}
.yfe{bottom:786.975000px;}
.y15d{bottom:790.725000px;}
.y32{bottom:791.850000px;}
.ya2{bottom:793.725000px;}
.yc7{bottom:794.850000px;}
.y10d{bottom:796.725000px;}
.y7e{bottom:797.850000px;}
.y63{bottom:802.725000px;}
.y55{bottom:803.850000px;}
.y151{bottom:804.225000px;}
.ye7{bottom:804.975000px;}
.y16{bottom:806.850000px;}
.yc6{bottom:817.020000px;}
.y10c{bottom:818.895000px;}
.y7d{bottom:820.005000px;}
.yfd{bottom:823.770000px;}
.y130{bottom:824.130000px;}
.y150{bottom:826.005000px;}
.y15c{bottom:827.880000px;}
.ya1{bottom:830.880000px;}
.y15{bottom:839.130000px;}
.y62{bottom:839.520000px;}
.yc5{bottom:839.880000px;}
.y54{bottom:841.005000px;}
.y7c{bottom:841.755000px;}
.yfc{bottom:845.880000px;}
.y14f{bottom:848.130000px;}
.y15b{bottom:849.645000px;}
.ya0{bottom:852.630000px;}
.y71{bottom:856.005000px;}
.y12f{bottom:860.880000px;}
.yc4{bottom:862.005000px;}
.y10b{bottom:862.755000px;}
.y7b{bottom:863.880000px;}
.yfb{bottom:867.630000px;}
.y14{bottom:871.380000px;}
.y15a{bottom:871.755000px;}
.y9f{bottom:874.755000px;}
.y61{bottom:876.645000px;}
.y70{bottom:877.755000px;}
.y53{bottom:878.130000px;}
.y12e{bottom:883.005000px;}
.yc3{bottom:884.880000px;}
.y7a{bottom:885.630000px;}
.y2e{bottom:888.645000px;}
.yc0{bottom:889.755000px;}
.y9e{bottom:896.880000px;}
.y6f{bottom:899.880000px;}
.y13{bottom:903.630000px;}
.y12d{bottom:905.880000px;}
.yc2{bottom:907.005000px;}
.ye6{bottom:907.755000px;}
.y159{bottom:908.880000px;}
.ybf{bottom:911.880000px;}
.y60{bottom:913.755000px;}
.y52{bottom:914.880000px;}
.y9d{bottom:918.630000px;}
.y6e{bottom:921.630000px;}
.y79{bottom:922.755000px;}
.y12c{bottom:928.005000px;}
.y14e{bottom:929.880000px;}
.y158{bottom:930.630000px;}
.ybe{bottom:933.630000px;}
.y12{bottom:935.505000px;}
.y6d{bottom:943.755000px;}
.yc1{bottom:944.880000px;}
.ye5{bottom:946.800000px;}
.y5f{bottom:950.550000px;}
.y12b{bottom:950.925000px;}
.y51{bottom:952.050000px;}
.y157{bottom:952.800000px;}
.y9c{bottom:955.800000px;}
.y78{bottom:959.925000px;}
.y6c{bottom:965.925000px;}
.y11{bottom:967.050000px;}
.yfa{bottom:970.800000px;}
.y12a{bottom:972.675000px;}
.y14d{bottom:974.925000px;}
.y9b{bottom:977.550000px;}
.y77{bottom:981.675000px;}
.y2c{bottom:985.425000px;}
.y5e{bottom:987.675000px;}
.y50{bottom:988.800000px;}
.y156{bottom:989.550000px;}
.yf9{bottom:992.550000px;}
.y14c{bottom:997.050000px;}
.y10{bottom:997.800000px;}
.y9a{bottom:999.675000px;}
.y76{bottom:1003.800000px;}
.ye4{bottom:1007.550000px;}
.y6b{bottom:1009.800000px;}
.y129{bottom:1010.550000px;}
.y155{bottom:1011.675000px;}
.ybd{bottom:1014.675000px;}
.y99{bottom:1021.800000px;}
.y5d{bottom:1024.425000px;}
.y75{bottom:1025.550000px;}
.y4f{bottom:1025.925000px;}
.yf{bottom:1028.925000px;}
.ye3{bottom:1029.675000px;}
.y6a{bottom:1031.550000px;}
.y154{bottom:1033.800000px;}
.y14b{bottom:1034.925000px;}
.ybc{bottom:1036.800000px;}
.y2a{bottom:1037.925000px;}
.y98{bottom:1043.550000px;}
.y74{bottom:1047.675000px;}
.ye2{bottom:1051.800000px;}
.y69{bottom:1053.675000px;}
.ybb{bottom:1058.550000px;}
.ye{bottom:1060.050000px;}
.y5c{bottom:1061.550000px;}
.y4e{bottom:1062.675000px;}
.y73{bottom:1069.800000px;}
.y14a{bottom:1071.675000px;}
.y153{bottom:1072.800000px;}
.ye1{bottom:1073.550000px;}
.y68{bottom:1075.830000px;}
.y29{bottom:1080.705000px;}
.y72{bottom:1091.580000px;}
.y149{bottom:1093.830000px;}
.ye0{bottom:1095.705000px;}
.yd{bottom:1097.205000px;}
.y67{bottom:1097.580000px;}
.y5b{bottom:1098.705000px;}
.y4d{bottom:1100.955000px;}
.yba{bottom:1102.455000px;}
.y148{bottom:1116.705000px;}
.y97{bottom:1117.455000px;}
.yc{bottom:1117.830000px;}
.y28{bottom:1122.705000px;}
.y66{bottom:1130.955000px;}
.y5a{bottom:1135.830000px;}
.y147{bottom:1138.830000px;}
.yb{bottom:1139.580000px;}
.y4c{bottom:1141.830000px;}
.y2{bottom:1170.705000px;}
.y1{bottom:1192.830000px;}
.hc{height:37.162500px;}
.h7{height:45.826172px;}
.h3{height:49.148438px;}
.h6{height:49.992188px;}
.hd{height:51.750000px;}
.h19{height:57.937500px;}
.h5{height:58.429688px;}
.h17{height:59.677734px;}
.h11{height:60.412500px;}
.h14{height:62.490234px;}
.h16{height:62.661621px;}
.h15{height:63.500977px;}
.ha{height:65.645508px;}
.h1{height:71.613281px;}
.h4{height:73.722656px;}
.h10{height:73.875000px;}
.h12{height:81.000000px;}
.h2{height:82.912500px;}
.h13{height:92.153320px;}
.he{height:96.022500px;}
.hf{height:96.037500px;}
.h8{height:104.150391px;}
.h18{height:110.583984px;}
.h9{height:121.728516px;}
.hb{height:147.445312px;}
.h0{height:1263.000000px;}
.w5{width:94.912500px;}
.w6{width:103.912500px;}
.w3{width:153.825000px;}
.w7{width:192.870000px;}
.w2{width:231.495000px;}
.w4{width:291.120000px;}
.w8{width:315.495000px;}
.w1{width:892.499987px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x8{left:6.750000px;}
.x15{left:7.875000px;}
.x16{left:10.875000px;}
.xd{left:19.125000px;}
.x1c{left:24.405000px;}
.x1e{left:25.530000px;}
.xf{left:34.170000px;}
.x14{left:36.037500px;}
.x18{left:39.405000px;}
.x17{left:42.030000px;}
.x1d{left:57.780000px;}
.x11{left:61.155000px;}
.x19{left:63.780000px;}
.x1a{left:76.155000px;}
.x2{left:106.162487px;}
.x3{left:107.662500px;}
.x13{left:117.405000px;}
.x20{left:124.162487px;}
.x1b{left:131.295000px;}
.x21{left:133.199987px;}
.x1f{left:140.655000px;}
.x4{left:144.082500px;}
.x6{left:147.045000px;}
.xb{left:150.824987px;}
.x22{left:160.199987px;}
.xe{left:202.575000px;}
.x10{left:307.245000px;}
.xa{left:329.399987px;}
.x5{left:340.650000px;}
.xc{left:388.274987px;}
.x9{left:446.069987px;}
.x7{left:495.975000px;}
.x12{left:500.850000px;}
.x23{left:767.969987px;}
.x1{left:777.329987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-1.461333pt;}
.ls13{letter-spacing:-1.152000pt;}
.ls11{letter-spacing:-1.130667pt;}
.lsc{letter-spacing:-0.565333pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls2{letter-spacing:-0.410667pt;}
.ls12{letter-spacing:-0.298667pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:-0.117333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.010667pt;}
.lsb{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.144000pt;}
.lsd{letter-spacing:0.181333pt;}
.ls0{letter-spacing:0.240000pt;}
.ls5{letter-spacing:0.336000pt;}
.lse{letter-spacing:0.608000pt;}
.ls9{letter-spacing:0.661333pt;}
.ls15{letter-spacing:2.869333pt;}
.lsa{letter-spacing:48.874667pt;}
.ls6{letter-spacing:66.053333pt;}
.ls7{letter-spacing:746.704000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws7{word-spacing:-22.357333pt;}
.wsb{word-spacing:-14.474667pt;}
.wsa{word-spacing:-14.464000pt;}
.ws6{word-spacing:-14.016000pt;}
.ws8{word-spacing:-13.898667pt;}
.ws3{word-spacing:-13.594667pt;}
.ws1{word-spacing:-13.258667pt;}
.ws2{word-spacing:-13.141333pt;}
.ws0{word-spacing:-12.848000pt;}
.ws5{word-spacing:-12.656000pt;}
.ws4{word-spacing:0.000000pt;}
._18{margin-left:-5.290667pt;}
._23{margin-left:-4.192000pt;}
._1b{margin-left:-3.232000pt;}
._b{margin-left:-2.117333pt;}
._1{margin-left:-1.024000pt;}
._2{width:0.938667pt;}
._a{width:2.010667pt;}
._c{width:3.394667pt;}
._e{width:4.381333pt;}
._d{width:5.309333pt;}
._3{width:6.997333pt;}
._0{width:7.936000pt;}
._27{width:8.853333pt;}
._26{width:9.909333pt;}
._1d{width:11.008000pt;}
._25{width:12.634667pt;}
._24{width:13.568000pt;}
._6{width:15.189333pt;}
._7{width:16.170667pt;}
._21{width:17.066667pt;}
._22{width:18.112000pt;}
._19{width:19.648000pt;}
._1a{width:20.853333pt;}
._20{width:21.904000pt;}
._1c{width:22.912000pt;}
._2c{width:24.064000pt;}
._1f{width:25.685333pt;}
._29{width:27.072000pt;}
._2a{width:28.101333pt;}
._2d{width:29.066667pt;}
._2e{width:30.357333pt;}
._28{width:31.664000pt;}
._1e{width:32.624000pt;}
._5{width:33.706667pt;}
._4{width:34.645333pt;}
._32{width:35.685333pt;}
._31{width:36.736000pt;}
._2b{width:37.632000pt;}
._30{width:98.432000pt;}
._2f{width:99.328000pt;}
._f{width:753.936000pt;}
._12{width:910.538667pt;}
._9{width:1074.016000pt;}
._8{width:1315.429333pt;}
._14{width:1360.240000pt;}
._13{width:1465.456000pt;}
._16{width:1785.024000pt;}
._15{width:1791.173333pt;}
._11{width:1876.848000pt;}
._10{width:1907.168000pt;}
._17{width:2046.170667pt;}
.fs1{font-size:42.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs8{font-size:96.000000pt;}
.fs4{font-size:128.000000pt;}
.fs3{font-size:133.333333pt;}
.y0{bottom:0.000000pt;}
.y2b{bottom:4.333333pt;}
.y9{bottom:7.033333pt;}
.ya{bottom:13.333333pt;}
.y3b{bottom:14.666667pt;}
.y31{bottom:17.320000pt;}
.y2d{bottom:17.333333pt;}
.y36{bottom:17.666667pt;}
.y8{bottom:20.033333pt;}
.y3d{bottom:24.000000pt;}
.y38{bottom:27.333333pt;}
.y7{bottom:33.366667pt;}
.y4{bottom:36.666667pt;}
.y2f{bottom:36.986667pt;}
.y39{bottom:37.000000pt;}
.y33{bottom:37.026667pt;}
.y35{bottom:37.360000pt;}
.y5{bottom:39.366667pt;}
.y3e{bottom:43.333333pt;}
.y6{bottom:46.366667pt;}
.y30{bottom:56.693333pt;}
.y34{bottom:56.706667pt;}
.y3{bottom:122.700000pt;}
.y128{bottom:145.373333pt;}
.yf8{bottom:150.360000pt;}
.y96{bottom:157.066667pt;}
.ydf{bottom:160.733333pt;}
.y146{bottom:161.733333pt;}
.yb9{bottom:163.733333pt;}
.y127{bottom:165.066667pt;}
.y4b{bottom:166.400000pt;}
.yf7{bottom:170.066667pt;}
.y95{bottom:176.400000pt;}
.yde{bottom:180.066667pt;}
.y145{bottom:181.066667pt;}
.y27{bottom:181.400000pt;}
.y4a{bottom:183.400000pt;}
.y126{bottom:184.400000pt;}
.yf6{bottom:189.733333pt;}
.ydd{bottom:199.733333pt;}
.yb8{bottom:203.066667pt;}
.y125{bottom:204.066667pt;}
.yf5{bottom:209.066667pt;}
.y94{bottom:209.400000pt;}
.y26{bottom:209.733333pt;}
.y49{bottom:214.400000pt;}
.y144{bottom:214.733333pt;}
.yb7{bottom:222.400000pt;}
.y93{bottom:228.733333pt;}
.ydc{bottom:232.400000pt;}
.y124{bottom:237.066667pt;}
.y25{bottom:238.400000pt;}
.yb6{bottom:242.066667pt;}
.yf4{bottom:244.066667pt;}
.y143{bottom:247.733333pt;}
.y92{bottom:249.400000pt;}
.y48{bottom:250.066667pt;}
.ydb{bottom:252.066667pt;}
.y123{bottom:256.400000pt;}
.yb5{bottom:261.400000pt;}
.y24{bottom:267.066667pt;}
.y142{bottom:267.400000pt;}
.y91{bottom:269.773333pt;}
.y166{bottom:271.106667pt;}
.yda{bottom:271.773333pt;}
.y122{bottom:276.093333pt;}
.y47{bottom:280.106667pt;}
.yb4{bottom:281.106667pt;}
.y141{bottom:287.773333pt;}
.y90{bottom:290.106667pt;}
.y165{bottom:290.773333pt;}
.yd9{bottom:291.093333pt;}
.y121{bottom:295.440000pt;}
.y23{bottom:295.773333pt;}
.y46{bottom:297.093333pt;}
.yf3{bottom:298.106667pt;}
.y140{bottom:307.440000pt;}
.y8f{bottom:309.426667pt;}
.yd8{bottom:311.440000pt;}
.y45{bottom:314.106667pt;}
.y120{bottom:315.093333pt;}
.yf2{bottom:317.440000pt;}
.y164{bottom:323.773333pt;}
.y22{bottom:324.093333pt;}
.y13f{bottom:327.760000pt;}
.yd7{bottom:331.106667pt;}
.y11f{bottom:334.773333pt;}
.yf1{bottom:337.106667pt;}
.y8e{bottom:343.106667pt;}
.y44{bottom:345.093333pt;}
.yb3{bottom:346.773333pt;}
.y13e{bottom:347.106667pt;}
.yd6{bottom:350.773333pt;}
.y21{bottom:352.773333pt;}
.y11e{bottom:355.106667pt;}
.yf0{bottom:356.440000pt;}
.y8d{bottom:362.773333pt;}
.yb2{bottom:366.440000pt;}
.y13d{bottom:366.773333pt;}
.y43{bottom:368.106667pt;}
.yd5{bottom:370.106667pt;}
.y11d{bottom:374.440000pt;}
.yef{bottom:376.106667pt;}
.y20{bottom:381.440000pt;}
.yb1{bottom:385.800000pt;}
.yd4{bottom:389.800000pt;}
.y42{bottom:391.133333pt;}
.y11c{bottom:394.133333pt;}
.y163{bottom:395.466667pt;}
.y8c{bottom:395.800000pt;}
.y13c{bottom:400.466667pt;}
.yb0{bottom:405.466667pt;}
.yd3{bottom:409.466667pt;}
.y1f{bottom:409.800000pt;}
.y41{bottom:410.800000pt;}
.y11b{bottom:413.466667pt;}
.yee{bottom:415.133333pt;}
.yaf{bottom:425.133333pt;}
.y8b{bottom:428.466667pt;}
.y40{bottom:430.133333pt;}
.y10a{bottom:432.133333pt;}
.y11a{bottom:433.133333pt;}
.y162{bottom:434.800000pt;}
.y1e{bottom:438.466667pt;}
.yd2{bottom:443.133333pt;}
.y8a{bottom:448.133333pt;}
.y109{bottom:451.800000pt;}
.y119{bottom:452.800000pt;}
.y161{bottom:454.133333pt;}
.yae{bottom:457.800000pt;}
.y3f{bottom:458.800000pt;}
.y1d{bottom:467.133333pt;}
.y89{bottom:467.466667pt;}
.y108{bottom:471.133333pt;}
.y118{bottom:472.133333pt;}
.y13b{bottom:473.133333pt;}
.yd1{bottom:475.800000pt;}
.yad{bottom:477.466667pt;}
.y88{bottom:487.133333pt;}
.y107{bottom:490.800000pt;}
.y117{bottom:492.466667pt;}
.y13a{bottom:492.800000pt;}
.yd0{bottom:495.466667pt;}
.yac{bottom:496.800000pt;}
.y1c{bottom:499.173333pt;}
.y160{bottom:506.506667pt;}
.y87{bottom:506.840000pt;}
.y106{bottom:510.173333pt;}
.y3c{bottom:510.506667pt;}
.y116{bottom:512.173333pt;}
.y139{bottom:513.173333pt;}
.ycf{bottom:514.840000pt;}
.yab{bottom:516.506667pt;}
.y86{bottom:526.173333pt;}
.y105{bottom:529.840000pt;}
.y115{bottom:531.840000pt;}
.y138{bottom:532.840000pt;}
.yce{bottom:534.506667pt;}
.yaa{bottom:536.173333pt;}
.y85{bottom:545.840000pt;}
.y1b{bottom:548.173333pt;}
.y104{bottom:549.506667pt;}
.y114{bottom:551.173333pt;}
.ycd{bottom:554.173333pt;}
.y84{bottom:565.173333pt;}
.y137{bottom:566.506667pt;}
.ya9{bottom:568.840000pt;}
.y113{bottom:570.840000pt;}
.yed{bottom:578.506667pt;}
.y3a{bottom:583.173333pt;}
.y1a{bottom:586.506667pt;}
.ycc{bottom:586.840000pt;}
.ya8{bottom:588.506667pt;}
.y112{bottom:590.173333pt;}
.y59{bottom:596.506667pt;}
.y83{bottom:598.173333pt;}
.y136{bottom:599.173333pt;}
.y103{bottom:601.840000pt;}
.ycb{bottom:606.506667pt;}
.ya7{bottom:607.840000pt;}
.y111{bottom:609.840000pt;}
.y58{bottom:616.200000pt;}
.yec{bottom:617.866667pt;}
.y135{bottom:618.866667pt;}
.y102{bottom:621.200000pt;}
.y19{bottom:624.866667pt;}
.yca{bottom:626.866667pt;}
.ya6{bottom:627.533333pt;}
.y110{bottom:629.533333pt;}
.y15f{bottom:630.866667pt;}
.y82{bottom:631.200000pt;}
.yeb{bottom:637.200000pt;}
.y37{bottom:637.533333pt;}
.y134{bottom:639.200000pt;}
.y101{bottom:640.866667pt;}
.yc9{bottom:646.533333pt;}
.ya5{bottom:647.200000pt;}
.y65{bottom:648.200000pt;}
.y57{bottom:648.866667pt;}
.y10f{bottom:649.866667pt;}
.y81{bottom:650.533333pt;}
.yea{bottom:656.866667pt;}
.y133{bottom:658.866667pt;}
.y18{bottom:659.200000pt;}
.y100{bottom:660.533333pt;}
.ya4{bottom:666.533333pt;}
.yc8{bottom:666.866667pt;}
.y10e{bottom:669.200000pt;}
.y80{bottom:670.200000pt;}
.ye9{bottom:676.200000pt;}
.y132{bottom:679.200000pt;}
.yff{bottom:679.866667pt;}
.y64{bottom:680.533333pt;}
.y56{bottom:681.866667pt;}
.y15e{bottom:683.533333pt;}
.ya3{bottom:686.200000pt;}
.y17{bottom:688.866667pt;}
.y7f{bottom:689.533333pt;}
.y152{bottom:695.200000pt;}
.ye8{bottom:695.866667pt;}
.y131{bottom:698.866667pt;}
.yfe{bottom:699.533333pt;}
.y15d{bottom:702.866667pt;}
.y32{bottom:703.866667pt;}
.ya2{bottom:705.533333pt;}
.yc7{bottom:706.533333pt;}
.y10d{bottom:708.200000pt;}
.y7e{bottom:709.200000pt;}
.y63{bottom:713.533333pt;}
.y55{bottom:714.533333pt;}
.y151{bottom:714.866667pt;}
.ye7{bottom:715.533333pt;}
.y16{bottom:717.200000pt;}
.yc6{bottom:726.240000pt;}
.y10c{bottom:727.906667pt;}
.y7d{bottom:728.893333pt;}
.yfd{bottom:732.240000pt;}
.y130{bottom:732.560000pt;}
.y150{bottom:734.226667pt;}
.y15c{bottom:735.893333pt;}
.ya1{bottom:738.560000pt;}
.y15{bottom:745.893333pt;}
.y62{bottom:746.240000pt;}
.yc5{bottom:746.560000pt;}
.y54{bottom:747.560000pt;}
.y7c{bottom:748.226667pt;}
.yfc{bottom:751.893333pt;}
.y14f{bottom:753.893333pt;}
.y15b{bottom:755.240000pt;}
.ya0{bottom:757.893333pt;}
.y71{bottom:760.893333pt;}
.y12f{bottom:765.226667pt;}
.yc4{bottom:766.226667pt;}
.y10b{bottom:766.893333pt;}
.y7b{bottom:767.893333pt;}
.yfb{bottom:771.226667pt;}
.y14{bottom:774.560000pt;}
.y15a{bottom:774.893333pt;}
.y9f{bottom:777.560000pt;}
.y61{bottom:779.240000pt;}
.y70{bottom:780.226667pt;}
.y53{bottom:780.560000pt;}
.y12e{bottom:784.893333pt;}
.yc3{bottom:786.560000pt;}
.y7a{bottom:787.226667pt;}
.y2e{bottom:789.906667pt;}
.yc0{bottom:790.893333pt;}
.y9e{bottom:797.226667pt;}
.y6f{bottom:799.893333pt;}
.y13{bottom:803.226667pt;}
.y12d{bottom:805.226667pt;}
.yc2{bottom:806.226667pt;}
.ye6{bottom:806.893333pt;}
.y159{bottom:807.893333pt;}
.ybf{bottom:810.560000pt;}
.y60{bottom:812.226667pt;}
.y52{bottom:813.226667pt;}
.y9d{bottom:816.560000pt;}
.y6e{bottom:819.226667pt;}
.y79{bottom:820.226667pt;}
.y12c{bottom:824.893333pt;}
.y14e{bottom:826.560000pt;}
.y158{bottom:827.226667pt;}
.ybe{bottom:829.893333pt;}
.y12{bottom:831.560000pt;}
.y6d{bottom:838.893333pt;}
.yc1{bottom:839.893333pt;}
.ye5{bottom:841.600000pt;}
.y5f{bottom:844.933333pt;}
.y12b{bottom:845.266667pt;}
.y51{bottom:846.266667pt;}
.y157{bottom:846.933333pt;}
.y9c{bottom:849.600000pt;}
.y78{bottom:853.266667pt;}
.y6c{bottom:858.600000pt;}
.y11{bottom:859.600000pt;}
.yfa{bottom:862.933333pt;}
.y12a{bottom:864.600000pt;}
.y14d{bottom:866.600000pt;}
.y9b{bottom:868.933333pt;}
.y77{bottom:872.600000pt;}
.y2c{bottom:875.933333pt;}
.y5e{bottom:877.933333pt;}
.y50{bottom:878.933333pt;}
.y156{bottom:879.600000pt;}
.yf9{bottom:882.266667pt;}
.y14c{bottom:886.266667pt;}
.y10{bottom:886.933333pt;}
.y9a{bottom:888.600000pt;}
.y76{bottom:892.266667pt;}
.ye4{bottom:895.600000pt;}
.y6b{bottom:897.600000pt;}
.y129{bottom:898.266667pt;}
.y155{bottom:899.266667pt;}
.ybd{bottom:901.933333pt;}
.y99{bottom:908.266667pt;}
.y5d{bottom:910.600000pt;}
.y75{bottom:911.600000pt;}
.y4f{bottom:911.933333pt;}
.yf{bottom:914.600000pt;}
.ye3{bottom:915.266667pt;}
.y6a{bottom:916.933333pt;}
.y154{bottom:918.933333pt;}
.y14b{bottom:919.933333pt;}
.ybc{bottom:921.600000pt;}
.y2a{bottom:922.600000pt;}
.y98{bottom:927.600000pt;}
.y74{bottom:931.266667pt;}
.ye2{bottom:934.933333pt;}
.y69{bottom:936.600000pt;}
.ybb{bottom:940.933333pt;}
.ye{bottom:942.266667pt;}
.y5c{bottom:943.600000pt;}
.y4e{bottom:944.600000pt;}
.y73{bottom:950.933333pt;}
.y14a{bottom:952.600000pt;}
.y153{bottom:953.600000pt;}
.ye1{bottom:954.266667pt;}
.y68{bottom:956.293333pt;}
.y29{bottom:960.626667pt;}
.y72{bottom:970.293333pt;}
.y149{bottom:972.293333pt;}
.ye0{bottom:973.960000pt;}
.yd{bottom:975.293333pt;}
.y67{bottom:975.626667pt;}
.y5b{bottom:976.626667pt;}
.y4d{bottom:978.626667pt;}
.yba{bottom:979.960000pt;}
.y148{bottom:992.626667pt;}
.y97{bottom:993.293333pt;}
.yc{bottom:993.626667pt;}
.y28{bottom:997.960000pt;}
.y66{bottom:1005.293333pt;}
.y5a{bottom:1009.626667pt;}
.y147{bottom:1012.293333pt;}
.yb{bottom:1012.960000pt;}
.y4c{bottom:1014.960000pt;}
.y2{bottom:1040.626667pt;}
.y1{bottom:1060.293333pt;}
.hc{height:33.033333pt;}
.h7{height:40.734375pt;}
.h3{height:43.687500pt;}
.h6{height:44.437500pt;}
.hd{height:46.000000pt;}
.h19{height:51.500000pt;}
.h5{height:51.937500pt;}
.h17{height:53.046875pt;}
.h11{height:53.700000pt;}
.h14{height:55.546875pt;}
.h16{height:55.699219pt;}
.h15{height:56.445312pt;}
.ha{height:58.351562pt;}
.h1{height:63.656250pt;}
.h4{height:65.531250pt;}
.h10{height:65.666667pt;}
.h12{height:72.000000pt;}
.h2{height:73.700000pt;}
.h13{height:81.914062pt;}
.he{height:85.353333pt;}
.hf{height:85.366667pt;}
.h8{height:92.578125pt;}
.h18{height:98.296875pt;}
.h9{height:108.203125pt;}
.hb{height:131.062500pt;}
.h0{height:1122.666667pt;}
.w5{width:84.366667pt;}
.w6{width:92.366667pt;}
.w3{width:136.733333pt;}
.w7{width:171.440000pt;}
.w2{width:205.773333pt;}
.w4{width:258.773333pt;}
.w8{width:280.440000pt;}
.w1{width:793.333322pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x8{left:6.000000pt;}
.x15{left:7.000000pt;}
.x16{left:9.666667pt;}
.xd{left:17.000000pt;}
.x1c{left:21.693333pt;}
.x1e{left:22.693333pt;}
.xf{left:30.373333pt;}
.x14{left:32.033333pt;}
.x18{left:35.026667pt;}
.x17{left:37.360000pt;}
.x1d{left:51.360000pt;}
.x11{left:54.360000pt;}
.x19{left:56.693333pt;}
.x1a{left:67.693333pt;}
.x2{left:94.366655pt;}
.x3{left:95.700000pt;}
.x13{left:104.360000pt;}
.x20{left:110.366655pt;}
.x1b{left:116.706667pt;}
.x21{left:118.399988pt;}
.x1f{left:125.026667pt;}
.x4{left:128.073333pt;}
.x6{left:130.706667pt;}
.xb{left:134.066655pt;}
.x22{left:142.399988pt;}
.xe{left:180.066667pt;}
.x10{left:273.106667pt;}
.xa{left:292.799988pt;}
.x5{left:302.800000pt;}
.xc{left:345.133322pt;}
.x9{left:396.506655pt;}
.x7{left:440.866667pt;}
.x12{left:445.200000pt;}
.x23{left:682.639988pt;}
.x1{left:690.959988pt;}
}




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