
    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_3bca07e172ec0a7ca662c69a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.957031;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_de7819d4584718bbd1fa74ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_b926e5280a25ff2c73a79ce5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040039;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_a2fafd0e76ce794cbedc595d.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e252bc848b1f94a2e3463c5f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.957031;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_c25b12dc897bd7d76278da73.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_6193fc93719873dbca485474.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d01c1975db009dae0c00d373.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.055176;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_77ed9785dd47a651a7639a05.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_7bd406c35fac191bb67e1b01.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_dd877d8b4fb73dbe8b1a7aec.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.096680;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;}
.ls1e{letter-spacing:-1.440000px;}
.ls6{letter-spacing:-1.422000px;}
.ls9{letter-spacing:-0.972000px;}
.ls1f{letter-spacing:-0.942000px;}
.lse{letter-spacing:-0.936000px;}
.ls5{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.507000px;}
.ls7{letter-spacing:-0.498000px;}
.lsd{letter-spacing:-0.486600px;}
.ls15{letter-spacing:-0.466800px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.020160px;}
.ls20{letter-spacing:0.184200px;}
.ls1a{letter-spacing:0.184320px;}
.lsf{letter-spacing:0.423360px;}
.ls1d{letter-spacing:0.426720px;}
.ls11{letter-spacing:0.466800px;}
.ls16{letter-spacing:0.486600px;}
.ls0{letter-spacing:0.498240px;}
.ls13{letter-spacing:0.507000px;}
.ls1c{letter-spacing:0.515520px;}
.ls8{letter-spacing:0.648000px;}
.lsa{letter-spacing:0.720000px;}
.ls2{letter-spacing:2.160000px;}
.ls12{letter-spacing:5.040000px;}
.lsc{letter-spacing:6.480000px;}
.ls17{letter-spacing:7.920000px;}
.ls1b{letter-spacing:44.957280px;}
.ls18{letter-spacing:71.038560px;}
.ls19{letter-spacing:78.077280px;}
.lsb{letter-spacing:81.250560px;}
.ls3{letter-spacing:82.690560px;}
.ls1{letter-spacing:196.560000px;}
.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;}
}
.ws10{word-spacing:-54.720000px;}
.ws3{word-spacing:-18.648000px;}
.wse{word-spacing:-16.560000px;}
.ws8{word-spacing:-15.627000px;}
.wsc{word-spacing:-15.606600px;}
.wsa{word-spacing:-15.586800px;}
.wsd{word-spacing:-15.140160px;}
.ws0{word-spacing:-15.120000px;}
.wsb{word-spacing:-14.653200px;}
.ws6{word-spacing:-14.633400px;}
.ws9{word-spacing:-14.613000px;}
.ws7{word-spacing:-14.184000px;}
.ws4{word-spacing:-14.148000px;}
.ws13{word-spacing:-13.864200px;}
.ws1{word-spacing:-13.698000px;}
.wsf{word-spacing:-13.680000px;}
.ws2{word-spacing:-13.182000px;}
.ws12{word-spacing:-13.068000px;}
.ws11{word-spacing:-12.738000px;}
.ws5{word-spacing:0.000000px;}
._8{margin-left:-4.147200px;}
._6{margin-left:-2.851200px;}
._1{margin-left:-1.512000px;}
._0{width:1.080000px;}
._2{width:2.176800px;}
._c{width:3.319680px;}
._7{width:4.350720px;}
._b{width:5.911680px;}
._10{width:7.145280px;}
._a{width:8.372160px;}
._9{width:10.281600px;}
._f{width:11.430720px;}
._e{width:12.519360px;}
._11{width:13.703040px;}
._23{width:14.898720px;}
._1d{width:16.148160px;}
._1e{width:17.305920px;}
._d{width:18.930240px;}
._1c{width:20.094720px;}
._17{width:21.961440px;}
._14{width:23.286240px;}
._12{width:24.330240px;}
._13{width:25.479360px;}
._19{width:27.004320px;}
._18{width:28.038720px;}
._1b{width:29.632320px;}
._1a{width:31.353600px;}
._16{width:37.626240px;}
._15{width:38.767680px;}
._20{width:92.914560px;}
._22{width:94.132800px;}
._21{width:95.273280px;}
._1f{width:176.540160px;}
._5{width:393.960000px;}
._4{width:833.340000px;}
._3{width:1591.176000px;}
.fc7{color:rgb(255,0,0);}
.fc6{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(128,128,128);}
.fc4{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(192,0,0);}
.fc0{color:rgb(0,32,96);}
.fs6{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:83.520000px;}
.fs4{font-size:96.480000px;}
.yc{bottom:-3.960000px;}
.y0{bottom:0.000000px;}
.ye{bottom:2.880000px;}
.y35{bottom:3.240000px;}
.y88{bottom:5.760000px;}
.y8c{bottom:5.790000px;}
.y9e{bottom:6.120000px;}
.y141{bottom:20.160000px;}
.y34{bottom:20.520000px;}
.y121{bottom:20.550000px;}
.yf1{bottom:20.565000px;}
.y8f{bottom:25.560000px;}
.y102{bottom:25.590000px;}
.y99{bottom:25.605000px;}
.y9d{bottom:25.920000px;}
.ye1{bottom:37.440000px;}
.y120{bottom:37.470000px;}
.y33{bottom:37.800000px;}
.ye9{bottom:37.845000px;}
.yf{bottom:43.560000px;}
.y8e{bottom:45.360000px;}
.y98{bottom:45.405000px;}
.y9c{bottom:45.720000px;}
.y32{bottom:55.080000px;}
.yff{bottom:65.160000px;}
.yf5{bottom:65.190000px;}
.yf3{bottom:65.520000px;}
.yd{bottom:68.400000px;}
.y31{bottom:72.390000px;}
.yf7{bottom:85.365000px;}
.y30{bottom:89.670000px;}
.yb{bottom:94.716000px;}
.y2f{bottom:106.950000px;}
.yfe{bottom:107.310000px;}
.y2e{bottom:124.230000px;}
.yfd{bottom:127.110000px;}
.y147{bottom:134.316000px;}
.y3a{bottom:136.836000px;}
.yf0{bottom:138.990000px;}
.y2d{bottom:141.510000px;}
.y95{bottom:143.676000px;}
.y76{bottom:144.756000px;}
.yfc{bottom:146.910000px;}
.ye6{bottom:146.916000px;}
.y169{bottom:148.716000px;}
.y195{bottom:150.510000px;}
.y146{bottom:151.590000px;}
.y39{bottom:154.110000px;}
.yc3{bottom:154.470000px;}
.y11c{bottom:155.190000px;}
.y2c{bottom:158.430000px;}
.yef{bottom:158.790000px;}
.y75{bottom:162.030000px;}
.y94{bottom:163.830000px;}
.ye5{bottom:164.190000px;}
.y168{bottom:165.990000px;}
.yfb{bottom:166.710000px;}
.y145{bottom:168.870000px;}
.y38{bottom:171.390000px;}
.y11b{bottom:172.470000px;}
.yc2{bottom:174.630000px;}
.y2b{bottom:175.710000px;}
.yee{bottom:178.590000px;}
.y74{bottom:179.310000px;}
.ye4{bottom:181.470000px;}
.y167{bottom:183.270000px;}
.y93{bottom:183.630000px;}
.y194{bottom:184.350000px;}
.y144{bottom:186.150000px;}
.yfa{bottom:186.510000px;}
.y11a{bottom:189.390000px;}
.yc1{bottom:191.910000px;}
.y2a{bottom:193.035000px;}
.y73{bottom:196.590000px;}
.yed{bottom:198.390000px;}
.y193{bottom:199.875000px;}
.y166{bottom:200.235000px;}
.y92{bottom:203.475000px;}
.ye3{bottom:205.275000px;}
.y37{bottom:205.995000px;}
.yf9{bottom:206.715000px;}
.yc0{bottom:208.875000px;}
.y29{bottom:210.315000px;}
.y72{bottom:213.915000px;}
.y165{bottom:217.515000px;}
.y192{bottom:218.235000px;}
.yec{bottom:218.550000px;}
.y143{bottom:220.755000px;}
.y91{bottom:223.275000px;}
.y119{bottom:223.995000px;}
.ybf{bottom:226.155000px;}
.y28{bottom:227.595000px;}
.y71{bottom:231.195000px;}
.y191{bottom:233.715000px;}
.y36{bottom:234.075000px;}
.y164{bottom:234.795000px;}
.y142{bottom:238.035000px;}
.yeb{bottom:238.395000px;}
.y118{bottom:241.275000px;}
.y90{bottom:243.075000px;}
.ybe{bottom:243.435000px;}
.y27{bottom:244.875000px;}
.y70{bottom:248.475000px;}
.y163{bottom:252.075000px;}
.y140{bottom:252.795000px;}
.y8d{bottom:257.835000px;}
.y117{bottom:258.555000px;}
.y18{bottom:258.915000px;}
.ybd{bottom:260.715000px;}
.y26{bottom:262.155000px;}
.y6f{bottom:265.755000px;}
.y190{bottom:267.555000px;}
.y162{bottom:269.355000px;}
.ye2{bottom:275.115000px;}
.y116{bottom:275.835000px;}
.ybc{bottom:277.995000px;}
.y25{bottom:279.435000px;}
.y6e{bottom:283.035000px;}
.y18f{bottom:285.915000px;}
.y161{bottom:286.635000px;}
.y13f{bottom:287.715000px;}
.y115{bottom:293.115000px;}
.ybb{bottom:295.275000px;}
.y6d{bottom:299.955000px;}
.y18e{bottom:301.395000px;}
.y160{bottom:303.915000px;}
.y24{bottom:305.715000px;}
.y114{bottom:310.395000px;}
.yba{bottom:312.555000px;}
.y1c3{bottom:313.275000px;}
.y6c{bottom:317.235000px;}
.y8b{bottom:317.955000px;}
.y18d{bottom:319.755000px;}
.y15f{bottom:321.195000px;}
.y23{bottom:323.025000px;}
.y13e{bottom:323.745000px;}
.ye0{bottom:327.705000px;}
.yb9{bottom:329.865000px;}
.y1c2{bottom:330.225000px;}
.y6b{bottom:334.545000px;}
.y18c{bottom:335.265000px;}
.y15e{bottom:338.505000px;}
.y8a{bottom:338.865000px;}
.y22{bottom:340.305000px;}
.y113{bottom:344.985000px;}
.yb8{bottom:347.145000px;}
.y1c1{bottom:348.585000px;}
.y6a{bottom:351.825000px;}
.y18b{bottom:353.625000px;}
.y15d{bottom:355.785000px;}
.y21{bottom:357.585000px;}
.y89{bottom:359.385000px;}
.y112{bottom:362.265000px;}
.y1c0{bottom:366.945000px;}
.yb7{bottom:368.745000px;}
.y69{bottom:369.105000px;}
.y18a{bottom:371.985000px;}
.y20{bottom:374.505000px;}
.y15c{bottom:377.385000px;}
.y111{bottom:379.185000px;}
.y13d{bottom:379.545000px;}
.y87{bottom:379.905000px;}
.y1bf{bottom:382.785000px;}
.y68{bottom:386.385000px;}
.y189{bottom:390.345000px;}
.y1f{bottom:391.785000px;}
.yb6{bottom:395.025000px;}
.y110{bottom:396.465000px;}
.y13c{bottom:396.825000px;}
.y1be{bottom:398.625000px;}
.y67{bottom:403.665000px;}
.y188{bottom:405.825000px;}
.y86{bottom:406.185000px;}
.y1e{bottom:409.065000px;}
.yb5{bottom:412.305000px;}
.y15b{bottom:412.665000px;}
.y10f{bottom:413.745000px;}
.y13b{bottom:414.105000px;}
.y1bd{bottom:416.985000px;}
.y66{bottom:420.945000px;}
.y187{bottom:421.305000px;}
.ydf{bottom:423.825000px;}
.y85{bottom:425.985000px;}
.y1d{bottom:426.345000px;}
.yb4{bottom:429.585000px;}
.y15a{bottom:429.945000px;}
.y10e{bottom:431.025000px;}
.y13a{bottom:431.385000px;}
.y1bc{bottom:432.465000px;}
.y65{bottom:438.225000px;}
.y186{bottom:439.665000px;}
.yde{bottom:441.105000px;}
.y84{bottom:443.265000px;}
.y1c{bottom:443.655000px;}
.yb3{bottom:446.865000px;}
.y159{bottom:447.225000px;}
.y1bb{bottom:447.945000px;}
.y10d{bottom:448.305000px;}
.y139{bottom:448.665000px;}
.y185{bottom:455.190000px;}
.y64{bottom:455.550000px;}
.ydd{bottom:458.430000px;}
.y83{bottom:460.590000px;}
.y1b{bottom:460.935000px;}
.yb2{bottom:464.190000px;}
.y158{bottom:464.550000px;}
.y10c{bottom:465.630000px;}
.y138{bottom:465.990000px;}
.y1ba{bottom:466.350000px;}
.y184{bottom:470.670000px;}
.y63{bottom:472.830000px;}
.y82{bottom:477.870000px;}
.y1a{bottom:478.215000px;}
.ydc{bottom:478.230000px;}
.yb1{bottom:481.470000px;}
.y157{bottom:481.830000px;}
.y10b{bottom:482.910000px;}
.y137{bottom:483.270000px;}
.y1b9{bottom:484.710000px;}
.y183{bottom:489.030000px;}
.y62{bottom:490.110000px;}
.y81{bottom:495.150000px;}
.y19{bottom:495.495000px;}
.ydb{bottom:498.030000px;}
.yb0{bottom:498.750000px;}
.y156{bottom:499.110000px;}
.y10a{bottom:500.190000px;}
.y136{bottom:500.550000px;}
.y1b8{bottom:503.070000px;}
.y182{bottom:504.510000px;}
.y61{bottom:507.030000px;}
.y80{bottom:512.430000px;}
.yaf{bottom:516.030000px;}
.y109{bottom:517.470000px;}
.yda{bottom:517.830000px;}
.y1b7{bottom:518.550000px;}
.y181{bottom:522.870000px;}
.y60{bottom:524.310000px;}
.y7f{bottom:529.710000px;}
.yae{bottom:532.950000px;}
.y155{bottom:533.310000px;}
.y1b6{bottom:534.030000px;}
.y108{bottom:534.750000px;}
.y135{bottom:535.110000px;}
.yd9{bottom:537.630000px;}
.y180{bottom:538.350000px;}
.y5f{bottom:541.590000px;}
.y7e{bottom:546.990000px;}
.yad{bottom:550.230000px;}
.y154{bottom:550.590000px;}
.y107{bottom:552.030000px;}
.y1b5{bottom:552.390000px;}
.y17f{bottom:556.710000px;}
.yd8{bottom:557.430000px;}
.y5e{bottom:558.870000px;}
.y7d{bottom:564.270000px;}
.yac{bottom:567.510000px;}
.y153{bottom:567.870000px;}
.y106{bottom:569.310000px;}
.y17e{bottom:572.550000px;}
.y5d{bottom:576.180000px;}
.yd7{bottom:577.260000px;}
.y7c{bottom:581.580000px;}
.yab{bottom:584.820000px;}
.y152{bottom:585.180000px;}
.y105{bottom:586.260000px;}
.y134{bottom:586.620000px;}
.y17d{bottom:588.060000px;}
.y5c{bottom:593.460000px;}
.y7b{bottom:598.860000px;}
.y1b4{bottom:601.740000px;}
.yaa{bottom:602.100000px;}
.y151{bottom:602.460000px;}
.y104{bottom:603.540000px;}
.y133{bottom:603.900000px;}
.y5b{bottom:610.740000px;}
.y7a{bottom:615.780000px;}
.y17c{bottom:618.300000px;}
.ya9{bottom:619.380000px;}
.y1b3{bottom:620.100000px;}
.y103{bottom:620.820000px;}
.y132{bottom:621.180000px;}
.y150{bottom:624.060000px;}
.y5a{bottom:628.020000px;}
.y79{bottom:629.820000px;}
.yd6{bottom:634.140000px;}
.yf8{bottom:635.580000px;}
.ya8{bottom:636.660000px;}
.y17b{bottom:638.100000px;}
.y131{bottom:638.460000px;}
.y59{bottom:645.300000px;}
.ya7{bottom:653.940000px;}
.y1b2{bottom:654.300000px;}
.y130{bottom:655.740000px;}
.yd5{bottom:656.100000px;}
.y17a{bottom:657.900000px;}
.y14f{bottom:659.340000px;}
.y58{bottom:662.580000px;}
.y1b1{bottom:669.780000px;}
.ya6{bottom:671.220000px;}
.y12f{bottom:673.020000px;}
.y101{bottom:676.260000px;}
.y14e{bottom:676.620000px;}
.y179{bottom:677.700000px;}
.y57{bottom:679.860000px;}
.y1b0{bottom:685.260000px;}
.ya5{bottom:688.500000px;}
.y12e{bottom:690.300000px;}
.yd4{bottom:691.380000px;}
.y14d{bottom:693.900000px;}
.y178{bottom:697.500000px;}
.y56{bottom:701.490000px;}
.y1af{bottom:703.650000px;}
.y12d{bottom:707.610000px;}
.yd3{bottom:708.690000px;}
.ya4{bottom:710.130000px;}
.y14c{bottom:711.210000px;}
.y100{bottom:716.610000px;}
.y177{bottom:717.330000px;}
.y1ae{bottom:719.490000px;}
.y12c{bottom:724.890000px;}
.yd2{bottom:725.970000px;}
.y55{bottom:727.770000px;}
.y14b{bottom:728.490000px;}
.y1ad{bottom:734.970000px;}
.y176{bottom:737.130000px;}
.ya3{bottom:738.930000px;}
.y12b{bottom:741.810000px;}
.yd1{bottom:743.250000px;}
.y54{bottom:745.050000px;}
.y14a{bottom:745.770000px;}
.y1ac{bottom:753.330000px;}
.ya2{bottom:753.690000px;}
.yf6{bottom:756.930000px;}
.y12a{bottom:759.090000px;}
.yd0{bottom:760.170000px;}
.y149{bottom:763.050000px;}
.y1ab{bottom:768.810000px;}
.y53{bottom:771.330000px;}
.y129{bottom:776.370000px;}
.y175{bottom:776.730000px;}
.ycf{bottom:777.450000px;}
.y148{bottom:780.330000px;}
.y17{bottom:782.850000px;}
.y1aa{bottom:787.170000px;}
.y128{bottom:793.650000px;}
.ya1{bottom:794.010000px;}
.yce{bottom:794.730000px;}
.y174{bottom:796.530000px;}
.y52{bottom:797.610000px;}
.y16{bottom:800.850000px;}
.y1a9{bottom:802.650000px;}
.y127{bottom:810.930000px;}
.ycd{bottom:812.010000px;}
.y51{bottom:814.890000px;}
.y173{bottom:816.690000px;}
.y1a8{bottom:821.010000px;}
.y15{bottom:821.730000px;}
.y126{bottom:828.255000px;}
.ycc{bottom:829.335000px;}
.y50{bottom:831.855000px;}
.ya0{bottom:834.735000px;}
.y78{bottom:835.815000px;}
.y172{bottom:836.535000px;}
.y1a7{bottom:839.415000px;}
.y14{bottom:842.295000px;}
.y125{bottom:845.535000px;}
.ycb{bottom:846.615000px;}
.y4f{bottom:849.135000px;}
.y1a6{bottom:854.895000px;}
.y171{bottom:856.335000px;}
.yea{bottom:857.055000px;}
.y77{bottom:857.415000px;}
.y124{bottom:862.815000px;}
.y13{bottom:863.175000px;}
.yca{bottom:863.895000px;}
.y4e{bottom:866.415000px;}
.y1a5{bottom:870.375000px;}
.y170{bottom:876.135000px;}
.yc9{bottom:877.935000px;}
.y123{bottom:880.095000px;}
.y12{bottom:883.695000px;}
.y1a4{bottom:888.735000px;}
.y9f{bottom:894.855000px;}
.y16f{bottom:895.935000px;}
.yf4{bottom:897.375000px;}
.y4d{bottom:900.975000px;}
.y11{bottom:903.495000px;}
.y1a3{bottom:904.215000px;}
.y122{bottom:912.135000px;}
.y16e{bottom:915.735000px;}
.y4c{bottom:918.255000px;}
.y1a2{bottom:919.695000px;}
.y10{bottom:922.215000px;}
.y4b{bottom:935.535000px;}
.y1a1{bottom:938.055000px;}
.ya{bottom:944.895000px;}
.y11f{bottom:947.415000px;}
.y4a{bottom:952.845000px;}
.y9b{bottom:955.005000px;}
.y16d{bottom:955.365000px;}
.y1a0{bottom:956.445000px;}
.y9{bottom:962.205000px;}
.y49{bottom:970.125000px;}
.y19f{bottom:971.925000px;}
.y16c{bottom:975.165000px;}
.yf2{bottom:977.325000px;}
.y8{bottom:979.485000px;}
.y48{bottom:987.405000px;}
.y19e{bottom:990.285000px;}
.y7{bottom:993.525000px;}
.y16b{bottom:994.965000px;}
.y11e{bottom:999.645000px;}
.y47{bottom:1004.685000px;}
.y19d{bottom:1005.765000px;}
.y9a{bottom:1015.485000px;}
.y46{bottom:1021.605000px;}
.y19c{bottom:1024.125000px;}
.y16a{bottom:1029.885000px;}
.yc8{bottom:1034.205000px;}
.y45{bottom:1038.885000px;}
.y6{bottom:1039.245000px;}
.y19b{bottom:1042.485000px;}
.yc7{bottom:1051.485000px;}
.y11d{bottom:1052.205000px;}
.y5{bottom:1055.085000px;}
.y97{bottom:1055.805000px;}
.y44{bottom:1056.165000px;}
.ye8{bottom:1057.605000px;}
.y19a{bottom:1057.965000px;}
.yc6{bottom:1068.765000px;}
.y4{bottom:1073.085000px;}
.y43{bottom:1073.445000px;}
.y199{bottom:1076.325000px;}
.yc5{bottom:1086.090000px;}
.y42{bottom:1090.770000px;}
.y198{bottom:1091.850000px;}
.y3{bottom:1094.010000px;}
.yc4{bottom:1107.690000px;}
.y41{bottom:1108.050000px;}
.ye7{bottom:1110.210000px;}
.y2{bottom:1114.530000px;}
.y96{bottom:1116.330000px;}
.y40{bottom:1125.330000px;}
.y197{bottom:1125.690000px;}
.y1{bottom:1131.450000px;}
.y196{bottom:1141.170000px;}
.y3f{bottom:1142.610000px;}
.y3e{bottom:1166.370000px;}
.y3d{bottom:1180.410000px;}
.y3c{bottom:1201.290000px;}
.y3b{bottom:1227.600000px;}
.h6{height:8.640000px;}
.h8{height:15.516000px;}
.h1e{height:17.280000px;}
.hd{height:19.800000px;}
.he{height:19.836000px;}
.h22{height:34.200000px;}
.h21{height:34.560000px;}
.h7{height:39.570469px;}
.h11{height:39.600000px;}
.h1d{height:39.636000px;}
.h14{height:39.960000px;}
.h13{height:39.996000px;}
.h25{height:40.559062px;}
.h27{height:41.092734px;}
.h4{height:43.735781px;}
.h23{height:44.031094px;}
.h2{height:44.828437px;}
.h5{height:45.101250px;}
.h26{height:46.116563px;}
.h24{height:48.224531px;}
.hc{height:49.848750px;}
.h15{height:51.480000px;}
.h20{height:51.516000px;}
.h1f{height:51.840000px;}
.h16{height:51.876000px;}
.ha{height:52.066406px;}
.h3{height:53.367188px;}
.hf{height:59.400000px;}
.h10{height:59.436000px;}
.h12{height:59.760000px;}
.h17{height:69.120000px;}
.h9{height:71.512031px;}
.h1a{height:79.236000px;}
.h19{height:79.560000px;}
.h1b{height:99.396000px;}
.h1c{height:220.755000px;}
.h18{height:252.435000px;}
.hb{height:518.550000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w10{width:29.916000px;}
.wd{width:30.996000px;}
.w13{width:96.156000px;}
.wa{width:115.992000px;}
.w14{width:116.316000px;}
.we{width:137.556000px;}
.w15{width:148.032000px;}
.w11{width:213.195000px;}
.w17{width:222.225000px;}
.wc{width:222.585000px;}
.w8{width:254.265000px;}
.w9{width:254.625000px;}
.w7{width:339.270000px;}
.w4{width:339.990000px;}
.w3{width:340.710000px;}
.w6{width:341.430000px;}
.wb{width:403.350000px;}
.w18{width:456.660000px;}
.w12{width:498.810000px;}
.w16{width:541.650000px;}
.wf{width:562.935000px;}
.w5{width:679.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x16{left:7.560000px;}
.x9{left:8.640000px;}
.x7{left:106.235987px;}
.x23{left:117.035987px;}
.x21{left:133.271987px;}
.x1c{left:137.592000px;}
.x1a{left:138.672000px;}
.x22{left:160.274987px;}
.x11{left:180.794987px;}
.xb{left:185.114987px;}
.x17{left:223.665000px;}
.x1e{left:234.465000px;}
.x2{left:254.264987px;}
.x1f{left:255.705000px;}
.xf{left:259.664987px;}
.x6{left:274.064987px;}
.x1b{left:276.945000px;}
.xa{left:304.350000px;}
.x14{left:318.749987px;}
.x20{left:329.910000px;}
.xc{left:332.069987px;}
.x10{left:339.984000px;}
.x1d{left:351.510000px;}
.x5{left:357.629987px;}
.x15{left:361.950000px;}
.xe{left:366.269987px;}
.xd{left:367.709987px;}
.x4{left:379.949987px;}
.x3{left:398.339987px;}
.x8{left:446.579987px;}
.x12{left:447.660000px;}
.x18{left:627.735000px;}
.x13{left:777.569987px;}
.x1{left:786.929987px;}
.x19{left:797.009987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1e{letter-spacing:-1.280000pt;}
.ls6{letter-spacing:-1.264000pt;}
.ls9{letter-spacing:-0.864000pt;}
.ls1f{letter-spacing:-0.837333pt;}
.lse{letter-spacing:-0.832000pt;}
.ls5{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.450667pt;}
.ls7{letter-spacing:-0.442667pt;}
.lsd{letter-spacing:-0.432533pt;}
.ls15{letter-spacing:-0.414933pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.017920pt;}
.ls20{letter-spacing:0.163733pt;}
.ls1a{letter-spacing:0.163840pt;}
.lsf{letter-spacing:0.376320pt;}
.ls1d{letter-spacing:0.379307pt;}
.ls11{letter-spacing:0.414933pt;}
.ls16{letter-spacing:0.432533pt;}
.ls0{letter-spacing:0.442880pt;}
.ls13{letter-spacing:0.450667pt;}
.ls1c{letter-spacing:0.458240pt;}
.ls8{letter-spacing:0.576000pt;}
.lsa{letter-spacing:0.640000pt;}
.ls2{letter-spacing:1.920000pt;}
.ls12{letter-spacing:4.480000pt;}
.lsc{letter-spacing:5.760000pt;}
.ls17{letter-spacing:7.040000pt;}
.ls1b{letter-spacing:39.962027pt;}
.ls18{letter-spacing:63.145387pt;}
.ls19{letter-spacing:69.402027pt;}
.lsb{letter-spacing:72.222720pt;}
.ls3{letter-spacing:73.502720pt;}
.ls1{letter-spacing:174.720000pt;}
.ws10{word-spacing:-48.640000pt;}
.ws3{word-spacing:-16.576000pt;}
.wse{word-spacing:-14.720000pt;}
.ws8{word-spacing:-13.890667pt;}
.wsc{word-spacing:-13.872533pt;}
.wsa{word-spacing:-13.854933pt;}
.wsd{word-spacing:-13.457920pt;}
.ws0{word-spacing:-13.440000pt;}
.wsb{word-spacing:-13.025067pt;}
.ws6{word-spacing:-13.007467pt;}
.ws9{word-spacing:-12.989333pt;}
.ws7{word-spacing:-12.608000pt;}
.ws4{word-spacing:-12.576000pt;}
.ws13{word-spacing:-12.323733pt;}
.ws1{word-spacing:-12.176000pt;}
.wsf{word-spacing:-12.160000pt;}
.ws2{word-spacing:-11.717333pt;}
.ws12{word-spacing:-11.616000pt;}
.ws11{word-spacing:-11.322667pt;}
.ws5{word-spacing:0.000000pt;}
._8{margin-left:-3.686400pt;}
._6{margin-left:-2.534400pt;}
._1{margin-left:-1.344000pt;}
._0{width:0.960000pt;}
._2{width:1.934933pt;}
._c{width:2.950827pt;}
._7{width:3.867307pt;}
._b{width:5.254827pt;}
._10{width:6.351360pt;}
._a{width:7.441920pt;}
._9{width:9.139200pt;}
._f{width:10.160640pt;}
._e{width:11.128320pt;}
._11{width:12.180480pt;}
._23{width:13.243307pt;}
._1d{width:14.353920pt;}
._1e{width:15.383040pt;}
._d{width:16.826880pt;}
._1c{width:17.861973pt;}
._17{width:19.521280pt;}
._14{width:20.698880pt;}
._12{width:21.626880pt;}
._13{width:22.648320pt;}
._19{width:24.003840pt;}
._18{width:24.923307pt;}
._1b{width:26.339840pt;}
._1a{width:27.869867pt;}
._16{width:33.445547pt;}
._15{width:34.460160pt;}
._20{width:82.590720pt;}
._22{width:83.673600pt;}
._21{width:84.687360pt;}
._1f{width:156.924587pt;}
._5{width:350.186667pt;}
._4{width:740.746667pt;}
._3{width:1414.378667pt;}
.fs6{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:74.240000pt;}
.fs4{font-size:85.760000pt;}
.yc{bottom:-3.520000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:2.560000pt;}
.y35{bottom:2.880000pt;}
.y88{bottom:5.120000pt;}
.y8c{bottom:5.146667pt;}
.y9e{bottom:5.440000pt;}
.y141{bottom:17.920000pt;}
.y34{bottom:18.240000pt;}
.y121{bottom:18.266667pt;}
.yf1{bottom:18.280000pt;}
.y8f{bottom:22.720000pt;}
.y102{bottom:22.746667pt;}
.y99{bottom:22.760000pt;}
.y9d{bottom:23.040000pt;}
.ye1{bottom:33.280000pt;}
.y120{bottom:33.306667pt;}
.y33{bottom:33.600000pt;}
.ye9{bottom:33.640000pt;}
.yf{bottom:38.720000pt;}
.y8e{bottom:40.320000pt;}
.y98{bottom:40.360000pt;}
.y9c{bottom:40.640000pt;}
.y32{bottom:48.960000pt;}
.yff{bottom:57.920000pt;}
.yf5{bottom:57.946667pt;}
.yf3{bottom:58.240000pt;}
.yd{bottom:60.800000pt;}
.y31{bottom:64.346667pt;}
.yf7{bottom:75.880000pt;}
.y30{bottom:79.706667pt;}
.yb{bottom:84.192000pt;}
.y2f{bottom:95.066667pt;}
.yfe{bottom:95.386667pt;}
.y2e{bottom:110.426667pt;}
.yfd{bottom:112.986667pt;}
.y147{bottom:119.392000pt;}
.y3a{bottom:121.632000pt;}
.yf0{bottom:123.546667pt;}
.y2d{bottom:125.786667pt;}
.y95{bottom:127.712000pt;}
.y76{bottom:128.672000pt;}
.yfc{bottom:130.586667pt;}
.ye6{bottom:130.592000pt;}
.y169{bottom:132.192000pt;}
.y195{bottom:133.786667pt;}
.y146{bottom:134.746667pt;}
.y39{bottom:136.986667pt;}
.yc3{bottom:137.306667pt;}
.y11c{bottom:137.946667pt;}
.y2c{bottom:140.826667pt;}
.yef{bottom:141.146667pt;}
.y75{bottom:144.026667pt;}
.y94{bottom:145.626667pt;}
.ye5{bottom:145.946667pt;}
.y168{bottom:147.546667pt;}
.yfb{bottom:148.186667pt;}
.y145{bottom:150.106667pt;}
.y38{bottom:152.346667pt;}
.y11b{bottom:153.306667pt;}
.yc2{bottom:155.226667pt;}
.y2b{bottom:156.186667pt;}
.yee{bottom:158.746667pt;}
.y74{bottom:159.386667pt;}
.ye4{bottom:161.306667pt;}
.y167{bottom:162.906667pt;}
.y93{bottom:163.226667pt;}
.y194{bottom:163.866667pt;}
.y144{bottom:165.466667pt;}
.yfa{bottom:165.786667pt;}
.y11a{bottom:168.346667pt;}
.yc1{bottom:170.586667pt;}
.y2a{bottom:171.586667pt;}
.y73{bottom:174.746667pt;}
.yed{bottom:176.346667pt;}
.y193{bottom:177.666667pt;}
.y166{bottom:177.986667pt;}
.y92{bottom:180.866667pt;}
.ye3{bottom:182.466667pt;}
.y37{bottom:183.106667pt;}
.yf9{bottom:183.746667pt;}
.yc0{bottom:185.666667pt;}
.y29{bottom:186.946667pt;}
.y72{bottom:190.146667pt;}
.y165{bottom:193.346667pt;}
.y192{bottom:193.986667pt;}
.yec{bottom:194.266667pt;}
.y143{bottom:196.226667pt;}
.y91{bottom:198.466667pt;}
.y119{bottom:199.106667pt;}
.ybf{bottom:201.026667pt;}
.y28{bottom:202.306667pt;}
.y71{bottom:205.506667pt;}
.y191{bottom:207.746667pt;}
.y36{bottom:208.066667pt;}
.y164{bottom:208.706667pt;}
.y142{bottom:211.586667pt;}
.yeb{bottom:211.906667pt;}
.y118{bottom:214.466667pt;}
.y90{bottom:216.066667pt;}
.ybe{bottom:216.386667pt;}
.y27{bottom:217.666667pt;}
.y70{bottom:220.866667pt;}
.y163{bottom:224.066667pt;}
.y140{bottom:224.706667pt;}
.y8d{bottom:229.186667pt;}
.y117{bottom:229.826667pt;}
.y18{bottom:230.146667pt;}
.ybd{bottom:231.746667pt;}
.y26{bottom:233.026667pt;}
.y6f{bottom:236.226667pt;}
.y190{bottom:237.826667pt;}
.y162{bottom:239.426667pt;}
.ye2{bottom:244.546667pt;}
.y116{bottom:245.186667pt;}
.ybc{bottom:247.106667pt;}
.y25{bottom:248.386667pt;}
.y6e{bottom:251.586667pt;}
.y18f{bottom:254.146667pt;}
.y161{bottom:254.786667pt;}
.y13f{bottom:255.746667pt;}
.y115{bottom:260.546667pt;}
.ybb{bottom:262.466667pt;}
.y6d{bottom:266.626667pt;}
.y18e{bottom:267.906667pt;}
.y160{bottom:270.146667pt;}
.y24{bottom:271.746667pt;}
.y114{bottom:275.906667pt;}
.yba{bottom:277.826667pt;}
.y1c3{bottom:278.466667pt;}
.y6c{bottom:281.986667pt;}
.y8b{bottom:282.626667pt;}
.y18d{bottom:284.226667pt;}
.y15f{bottom:285.506667pt;}
.y23{bottom:287.133333pt;}
.y13e{bottom:287.773333pt;}
.ye0{bottom:291.293333pt;}
.yb9{bottom:293.213333pt;}
.y1c2{bottom:293.533333pt;}
.y6b{bottom:297.373333pt;}
.y18c{bottom:298.013333pt;}
.y15e{bottom:300.893333pt;}
.y8a{bottom:301.213333pt;}
.y22{bottom:302.493333pt;}
.y113{bottom:306.653333pt;}
.yb8{bottom:308.573333pt;}
.y1c1{bottom:309.853333pt;}
.y6a{bottom:312.733333pt;}
.y18b{bottom:314.333333pt;}
.y15d{bottom:316.253333pt;}
.y21{bottom:317.853333pt;}
.y89{bottom:319.453333pt;}
.y112{bottom:322.013333pt;}
.y1c0{bottom:326.173333pt;}
.yb7{bottom:327.773333pt;}
.y69{bottom:328.093333pt;}
.y18a{bottom:330.653333pt;}
.y20{bottom:332.893333pt;}
.y15c{bottom:335.453333pt;}
.y111{bottom:337.053333pt;}
.y13d{bottom:337.373333pt;}
.y87{bottom:337.693333pt;}
.y1bf{bottom:340.253333pt;}
.y68{bottom:343.453333pt;}
.y189{bottom:346.973333pt;}
.y1f{bottom:348.253333pt;}
.yb6{bottom:351.133333pt;}
.y110{bottom:352.413333pt;}
.y13c{bottom:352.733333pt;}
.y1be{bottom:354.333333pt;}
.y67{bottom:358.813333pt;}
.y188{bottom:360.733333pt;}
.y86{bottom:361.053333pt;}
.y1e{bottom:363.613333pt;}
.yb5{bottom:366.493333pt;}
.y15b{bottom:366.813333pt;}
.y10f{bottom:367.773333pt;}
.y13b{bottom:368.093333pt;}
.y1bd{bottom:370.653333pt;}
.y66{bottom:374.173333pt;}
.y187{bottom:374.493333pt;}
.ydf{bottom:376.733333pt;}
.y85{bottom:378.653333pt;}
.y1d{bottom:378.973333pt;}
.yb4{bottom:381.853333pt;}
.y15a{bottom:382.173333pt;}
.y10e{bottom:383.133333pt;}
.y13a{bottom:383.453333pt;}
.y1bc{bottom:384.413333pt;}
.y65{bottom:389.533333pt;}
.y186{bottom:390.813333pt;}
.yde{bottom:392.093333pt;}
.y84{bottom:394.013333pt;}
.y1c{bottom:394.360000pt;}
.yb3{bottom:397.213333pt;}
.y159{bottom:397.533333pt;}
.y1bb{bottom:398.173333pt;}
.y10d{bottom:398.493333pt;}
.y139{bottom:398.813333pt;}
.y185{bottom:404.613333pt;}
.y64{bottom:404.933333pt;}
.ydd{bottom:407.493333pt;}
.y83{bottom:409.413333pt;}
.y1b{bottom:409.720000pt;}
.yb2{bottom:412.613333pt;}
.y158{bottom:412.933333pt;}
.y10c{bottom:413.893333pt;}
.y138{bottom:414.213333pt;}
.y1ba{bottom:414.533333pt;}
.y184{bottom:418.373333pt;}
.y63{bottom:420.293333pt;}
.y82{bottom:424.773333pt;}
.y1a{bottom:425.080000pt;}
.ydc{bottom:425.093333pt;}
.yb1{bottom:427.973333pt;}
.y157{bottom:428.293333pt;}
.y10b{bottom:429.253333pt;}
.y137{bottom:429.573333pt;}
.y1b9{bottom:430.853333pt;}
.y183{bottom:434.693333pt;}
.y62{bottom:435.653333pt;}
.y81{bottom:440.133333pt;}
.y19{bottom:440.440000pt;}
.ydb{bottom:442.693333pt;}
.yb0{bottom:443.333333pt;}
.y156{bottom:443.653333pt;}
.y10a{bottom:444.613333pt;}
.y136{bottom:444.933333pt;}
.y1b8{bottom:447.173333pt;}
.y182{bottom:448.453333pt;}
.y61{bottom:450.693333pt;}
.y80{bottom:455.493333pt;}
.yaf{bottom:458.693333pt;}
.y109{bottom:459.973333pt;}
.yda{bottom:460.293333pt;}
.y1b7{bottom:460.933333pt;}
.y181{bottom:464.773333pt;}
.y60{bottom:466.053333pt;}
.y7f{bottom:470.853333pt;}
.yae{bottom:473.733333pt;}
.y155{bottom:474.053333pt;}
.y1b6{bottom:474.693333pt;}
.y108{bottom:475.333333pt;}
.y135{bottom:475.653333pt;}
.yd9{bottom:477.893333pt;}
.y180{bottom:478.533333pt;}
.y5f{bottom:481.413333pt;}
.y7e{bottom:486.213333pt;}
.yad{bottom:489.093333pt;}
.y154{bottom:489.413333pt;}
.y107{bottom:490.693333pt;}
.y1b5{bottom:491.013333pt;}
.y17f{bottom:494.853333pt;}
.yd8{bottom:495.493333pt;}
.y5e{bottom:496.773333pt;}
.y7d{bottom:501.573333pt;}
.yac{bottom:504.453333pt;}
.y153{bottom:504.773333pt;}
.y106{bottom:506.053333pt;}
.y17e{bottom:508.933333pt;}
.y5d{bottom:512.160000pt;}
.yd7{bottom:513.120000pt;}
.y7c{bottom:516.960000pt;}
.yab{bottom:519.840000pt;}
.y152{bottom:520.160000pt;}
.y105{bottom:521.120000pt;}
.y134{bottom:521.440000pt;}
.y17d{bottom:522.720000pt;}
.y5c{bottom:527.520000pt;}
.y7b{bottom:532.320000pt;}
.y1b4{bottom:534.880000pt;}
.yaa{bottom:535.200000pt;}
.y151{bottom:535.520000pt;}
.y104{bottom:536.480000pt;}
.y133{bottom:536.800000pt;}
.y5b{bottom:542.880000pt;}
.y7a{bottom:547.360000pt;}
.y17c{bottom:549.600000pt;}
.ya9{bottom:550.560000pt;}
.y1b3{bottom:551.200000pt;}
.y103{bottom:551.840000pt;}
.y132{bottom:552.160000pt;}
.y150{bottom:554.720000pt;}
.y5a{bottom:558.240000pt;}
.y79{bottom:559.840000pt;}
.yd6{bottom:563.680000pt;}
.yf8{bottom:564.960000pt;}
.ya8{bottom:565.920000pt;}
.y17b{bottom:567.200000pt;}
.y131{bottom:567.520000pt;}
.y59{bottom:573.600000pt;}
.ya7{bottom:581.280000pt;}
.y1b2{bottom:581.600000pt;}
.y130{bottom:582.880000pt;}
.yd5{bottom:583.200000pt;}
.y17a{bottom:584.800000pt;}
.y14f{bottom:586.080000pt;}
.y58{bottom:588.960000pt;}
.y1b1{bottom:595.360000pt;}
.ya6{bottom:596.640000pt;}
.y12f{bottom:598.240000pt;}
.y101{bottom:601.120000pt;}
.y14e{bottom:601.440000pt;}
.y179{bottom:602.400000pt;}
.y57{bottom:604.320000pt;}
.y1b0{bottom:609.120000pt;}
.ya5{bottom:612.000000pt;}
.y12e{bottom:613.600000pt;}
.yd4{bottom:614.560000pt;}
.y14d{bottom:616.800000pt;}
.y178{bottom:620.000000pt;}
.y56{bottom:623.546667pt;}
.y1af{bottom:625.466667pt;}
.y12d{bottom:628.986667pt;}
.yd3{bottom:629.946667pt;}
.ya4{bottom:631.226667pt;}
.y14c{bottom:632.186667pt;}
.y100{bottom:636.986667pt;}
.y177{bottom:637.626667pt;}
.y1ae{bottom:639.546667pt;}
.y12c{bottom:644.346667pt;}
.yd2{bottom:645.306667pt;}
.y55{bottom:646.906667pt;}
.y14b{bottom:647.546667pt;}
.y1ad{bottom:653.306667pt;}
.y176{bottom:655.226667pt;}
.ya3{bottom:656.826667pt;}
.y12b{bottom:659.386667pt;}
.yd1{bottom:660.666667pt;}
.y54{bottom:662.266667pt;}
.y14a{bottom:662.906667pt;}
.y1ac{bottom:669.626667pt;}
.ya2{bottom:669.946667pt;}
.yf6{bottom:672.826667pt;}
.y12a{bottom:674.746667pt;}
.yd0{bottom:675.706667pt;}
.y149{bottom:678.266667pt;}
.y1ab{bottom:683.386667pt;}
.y53{bottom:685.626667pt;}
.y129{bottom:690.106667pt;}
.y175{bottom:690.426667pt;}
.ycf{bottom:691.066667pt;}
.y148{bottom:693.626667pt;}
.y17{bottom:695.866667pt;}
.y1aa{bottom:699.706667pt;}
.y128{bottom:705.466667pt;}
.ya1{bottom:705.786667pt;}
.yce{bottom:706.426667pt;}
.y174{bottom:708.026667pt;}
.y52{bottom:708.986667pt;}
.y16{bottom:711.866667pt;}
.y1a9{bottom:713.466667pt;}
.y127{bottom:720.826667pt;}
.ycd{bottom:721.786667pt;}
.y51{bottom:724.346667pt;}
.y173{bottom:725.946667pt;}
.y1a8{bottom:729.786667pt;}
.y15{bottom:730.426667pt;}
.y126{bottom:736.226667pt;}
.ycc{bottom:737.186667pt;}
.y50{bottom:739.426667pt;}
.ya0{bottom:741.986667pt;}
.y78{bottom:742.946667pt;}
.y172{bottom:743.586667pt;}
.y1a7{bottom:746.146667pt;}
.y14{bottom:748.706667pt;}
.y125{bottom:751.586667pt;}
.ycb{bottom:752.546667pt;}
.y4f{bottom:754.786667pt;}
.y1a6{bottom:759.906667pt;}
.y171{bottom:761.186667pt;}
.yea{bottom:761.826667pt;}
.y77{bottom:762.146667pt;}
.y124{bottom:766.946667pt;}
.y13{bottom:767.266667pt;}
.yca{bottom:767.906667pt;}
.y4e{bottom:770.146667pt;}
.y1a5{bottom:773.666667pt;}
.y170{bottom:778.786667pt;}
.yc9{bottom:780.386667pt;}
.y123{bottom:782.306667pt;}
.y12{bottom:785.506667pt;}
.y1a4{bottom:789.986667pt;}
.y9f{bottom:795.426667pt;}
.y16f{bottom:796.386667pt;}
.yf4{bottom:797.666667pt;}
.y4d{bottom:800.866667pt;}
.y11{bottom:803.106667pt;}
.y1a3{bottom:803.746667pt;}
.y122{bottom:810.786667pt;}
.y16e{bottom:813.986667pt;}
.y4c{bottom:816.226667pt;}
.y1a2{bottom:817.506667pt;}
.y10{bottom:819.746667pt;}
.y4b{bottom:831.586667pt;}
.y1a1{bottom:833.826667pt;}
.ya{bottom:839.906667pt;}
.y11f{bottom:842.146667pt;}
.y4a{bottom:846.973333pt;}
.y9b{bottom:848.893333pt;}
.y16d{bottom:849.213333pt;}
.y1a0{bottom:850.173333pt;}
.y9{bottom:855.293333pt;}
.y49{bottom:862.333333pt;}
.y19f{bottom:863.933333pt;}
.y16c{bottom:866.813333pt;}
.yf2{bottom:868.733333pt;}
.y8{bottom:870.653333pt;}
.y48{bottom:877.693333pt;}
.y19e{bottom:880.253333pt;}
.y7{bottom:883.133333pt;}
.y16b{bottom:884.413333pt;}
.y11e{bottom:888.573333pt;}
.y47{bottom:893.053333pt;}
.y19d{bottom:894.013333pt;}
.y9a{bottom:902.653333pt;}
.y46{bottom:908.093333pt;}
.y19c{bottom:910.333333pt;}
.y16a{bottom:915.453333pt;}
.yc8{bottom:919.293333pt;}
.y45{bottom:923.453333pt;}
.y6{bottom:923.773333pt;}
.y19b{bottom:926.653333pt;}
.yc7{bottom:934.653333pt;}
.y11d{bottom:935.293333pt;}
.y5{bottom:937.853333pt;}
.y97{bottom:938.493333pt;}
.y44{bottom:938.813333pt;}
.ye8{bottom:940.093333pt;}
.y19a{bottom:940.413333pt;}
.yc6{bottom:950.013333pt;}
.y4{bottom:953.853333pt;}
.y43{bottom:954.173333pt;}
.y199{bottom:956.733333pt;}
.yc5{bottom:965.413333pt;}
.y42{bottom:969.573333pt;}
.y198{bottom:970.533333pt;}
.y3{bottom:972.453333pt;}
.yc4{bottom:984.613333pt;}
.y41{bottom:984.933333pt;}
.ye7{bottom:986.853333pt;}
.y2{bottom:990.693333pt;}
.y96{bottom:992.293333pt;}
.y40{bottom:1000.293333pt;}
.y197{bottom:1000.613333pt;}
.y1{bottom:1005.733333pt;}
.y196{bottom:1014.373333pt;}
.y3f{bottom:1015.653333pt;}
.y3e{bottom:1036.773333pt;}
.y3d{bottom:1049.253333pt;}
.y3c{bottom:1067.813333pt;}
.y3b{bottom:1091.200000pt;}
.h6{height:7.680000pt;}
.h8{height:13.792000pt;}
.h1e{height:15.360000pt;}
.hd{height:17.600000pt;}
.he{height:17.632000pt;}
.h22{height:30.400000pt;}
.h21{height:30.720000pt;}
.h7{height:35.173750pt;}
.h11{height:35.200000pt;}
.h1d{height:35.232000pt;}
.h14{height:35.520000pt;}
.h13{height:35.552000pt;}
.h25{height:36.052500pt;}
.h27{height:36.526875pt;}
.h4{height:38.876250pt;}
.h23{height:39.138750pt;}
.h2{height:39.847500pt;}
.h5{height:40.090000pt;}
.h26{height:40.992500pt;}
.h24{height:42.866250pt;}
.hc{height:44.310000pt;}
.h15{height:45.760000pt;}
.h20{height:45.792000pt;}
.h1f{height:46.080000pt;}
.h16{height:46.112000pt;}
.ha{height:46.281250pt;}
.h3{height:47.437500pt;}
.hf{height:52.800000pt;}
.h10{height:52.832000pt;}
.h12{height:53.120000pt;}
.h17{height:61.440000pt;}
.h9{height:63.566250pt;}
.h1a{height:70.432000pt;}
.h19{height:70.720000pt;}
.h1b{height:88.352000pt;}
.h1c{height:196.226667pt;}
.h18{height:224.386667pt;}
.hb{height:460.933333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w10{width:26.592000pt;}
.wd{width:27.552000pt;}
.w13{width:85.472000pt;}
.wa{width:103.104000pt;}
.w14{width:103.392000pt;}
.we{width:122.272000pt;}
.w15{width:131.584000pt;}
.w11{width:189.506667pt;}
.w17{width:197.533333pt;}
.wc{width:197.853333pt;}
.w8{width:226.013333pt;}
.w9{width:226.333333pt;}
.w7{width:301.573333pt;}
.w4{width:302.213333pt;}
.w3{width:302.853333pt;}
.w6{width:303.493333pt;}
.wb{width:358.533333pt;}
.w18{width:405.920000pt;}
.w12{width:443.386667pt;}
.w16{width:481.466667pt;}
.wf{width:500.386667pt;}
.w5{width:604.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x16{left:6.720000pt;}
.x9{left:7.680000pt;}
.x7{left:94.431988pt;}
.x23{left:104.031988pt;}
.x21{left:118.463988pt;}
.x1c{left:122.304000pt;}
.x1a{left:123.264000pt;}
.x22{left:142.466655pt;}
.x11{left:160.706655pt;}
.xb{left:164.546655pt;}
.x17{left:198.813333pt;}
.x1e{left:208.413333pt;}
.x2{left:226.013322pt;}
.x1f{left:227.293333pt;}
.xf{left:230.813322pt;}
.x6{left:243.613322pt;}
.x1b{left:246.173333pt;}
.xa{left:270.533333pt;}
.x14{left:283.333322pt;}
.x20{left:293.253333pt;}
.xc{left:295.173322pt;}
.x10{left:302.208000pt;}
.x1d{left:312.453333pt;}
.x5{left:317.893322pt;}
.x15{left:321.733333pt;}
.xe{left:325.573322pt;}
.xd{left:326.853322pt;}
.x4{left:337.733322pt;}
.x3{left:354.079988pt;}
.x8{left:396.959988pt;}
.x12{left:397.920000pt;}
.x18{left:557.986667pt;}
.x13{left:691.173322pt;}
.x1{left:699.493322pt;}
.x19{left:708.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; }
  