
    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_381ea1593b8ef39701990229.woff')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f45745fc56bbccf3c7afd24d.woff')format("woff");}.ff2{font-family:ff2;line-height:1.003906;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_4dd3a141c932a59b59832a77.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_e67dbacb37fae3d2ed527eb9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_85a79930a329ae00bd8f7e2d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.854004;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_ee9ecd851f9f28d458edb23a.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_bc29fb2c5de6ddd02e23e942.woff')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_708c3c0b808dc9916f4f93bd.woff')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_2cd2bbab7fe11222e7396f3a.woff')format("woff");}.ff9{font-family:ff9;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls18{letter-spacing:-0.666000px;}
.lsd{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.360000px;}
.ls17{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.106800px;}
.ls16{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.262200px;}
.lsf{letter-spacing:0.298800px;}
.ls4{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.540000px;}
.ls7{letter-spacing:0.666000px;}
.ls13{letter-spacing:0.900000px;}
.ls19{letter-spacing:0.926640px;}
.lsc{letter-spacing:1.080000px;}
.ls11{letter-spacing:10.746720px;}
.ls14{letter-spacing:10.890720px;}
.ls10{letter-spacing:40.266720px;}
.lse{letter-spacing:40.410720px;}
.lsb{letter-spacing:46.026720px;}
.ls9{letter-spacing:55.386720px;}
.ls6{letter-spacing:55.506720px;}
.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:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.020000px;}
.ws8{word-spacing:-15.606000px;}
.ws7{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.238800px;}
.wse{word-spacing:-15.093600px;}
.ws5{word-spacing:-15.046800px;}
.wsd{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.733600px;}
.ws10{word-spacing:-14.680200px;}
.ws12{word-spacing:-14.580000px;}
.wsb{word-spacing:-14.479800px;}
.ws11{word-spacing:-14.274000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1917.060480px;}
._3{margin-left:-1588.921920px;}
._4{margin-left:-1170.942000px;}
._5{margin-left:-1094.359680px;}
._20{margin-left:-1093.214880px;}
._6{margin-left:-49.680000px;}
._56{margin-left:-14.489280px;}
._10{margin-left:-3.294000px;}
._d{margin-left:-2.270880px;}
._2{margin-left:-1.126080px;}
._0{width:1.321920px;}
._7{width:3.169920px;}
._b{width:4.665120px;}
._c{width:6.058560px;}
._12{width:7.111440px;}
._11{width:8.426160px;}
._9{width:9.681120px;}
._a{width:10.981440px;}
._f{width:12.687120px;}
._8{width:13.768920px;}
._16{width:16.553520px;}
._e{width:18.346320px;}
._1f{width:19.586880px;}
._27{width:20.839680px;}
._23{width:22.290480px;}
._17{width:24.143040px;}
._15{width:25.278480px;}
._13{width:26.652960px;}
._21{width:27.721440px;}
._22{width:28.804320px;}
._2b{width:30.044880px;}
._1b{width:31.075200px;}
._1a{width:32.449680px;}
._19{width:33.883920px;}
._32{width:34.892640px;}
._24{width:36.095040px;}
._25{width:37.156320px;}
._26{width:38.306160px;}
._2a{width:40.142160px;}
._18{width:41.652720px;}
._2c{width:42.907680px;}
._29{width:44.379840px;}
._2d{width:45.537120px;}
._38{width:46.672560px;}
._2e{width:48.226320px;}
._35{width:49.237920px;}
._34{width:50.482800px;}
._33{width:51.513120px;}
._37{width:53.177040px;}
._31{width:54.640560px;}
._36{width:55.908240px;}
._2f{width:56.951280px;}
._52{width:58.617360px;}
._3c{width:60.118560px;}
._3a{width:61.978320px;}
._1d{width:63.696960px;}
._1c{width:64.720080px;}
._3e{width:66.453120px;}
._39{width:69.716640px;}
._30{width:70.857120px;}
._28{width:71.869680px;}
._1e{width:72.914400px;}
._14{width:73.915920px;}
._43{width:74.928720px;}
._41{width:77.628240px;}
._57{width:85.150800px;}
._3b{width:86.942880px;}
._40{width:94.891680px;}
._3f{width:96.042720px;}
._54{width:97.767360px;}
._42{width:103.086000px;}
._4f{width:106.246080px;}
._4b{width:107.747280px;}
._4a{width:136.176480px;}
._46{width:157.929120px;}
._45{width:177.009120px;}
._48{width:197.028720px;}
._4e{width:201.687120px;}
._53{width:230.833920px;}
._4c{width:239.491440px;}
._44{width:260.426880px;}
._55{width:261.616080px;}
._4d{width:273.402480px;}
._49{width:317.676960px;}
._50{width:362.202480px;}
._51{width:363.639600px;}
._47{width:577.991520px;}
._3d{width:786.262320px;}
.fc1{color:rgb(0,112,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.880000px;}
.fs2{font-size:41.760000px;}
.fs6{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y8{bottom:6.480000px;}
.y7{bottom:6.840000px;}
.ya{bottom:11.700000px;}
.y9{bottom:12.420000px;}
.yb{bottom:37.296000px;}
.y6{bottom:54.216000px;}
.yba{bottom:82.116000px;}
.yac{bottom:83.556000px;}
.ydc{bottom:83.916000px;}
.y162{bottom:88.236000px;}
.y72{bottom:91.116000px;}
.y96{bottom:92.916000px;}
.yf3{bottom:94.716000px;}
.y12f{bottom:95.076000px;}
.y39{bottom:99.936000px;}
.yb9{bottom:101.916000px;}
.yab{bottom:103.356000px;}
.ydb{bottom:103.716000px;}
.y184{bottom:105.516000px;}
.y161{bottom:108.216000px;}
.y71{bottom:110.916000px;}
.y95{bottom:112.716000px;}
.yf2{bottom:114.696000px;}
.y12e{bottom:114.876000px;}
.y14c{bottom:115.776000px;}
.y38{bottom:119.736000px;}
.yb8{bottom:121.716000px;}
.yda{bottom:123.696000px;}
.yfe{bottom:124.416000px;}
.y70{bottom:130.716000px;}
.y94{bottom:132.696000px;}
.yf1{bottom:134.496000px;}
.y12d{bottom:134.676000px;}
.y14b{bottom:135.576000px;}
.y160{bottom:136.116000px;}
.y37{bottom:139.716000px;}
.yb7{bottom:141.696000px;}
.yd9{bottom:143.496000px;}
.yfd{bottom:144.216000px;}
.y6f{bottom:150.690000px;}
.y93{bottom:152.490000px;}
.yf0{bottom:154.290000px;}
.y12c{bottom:154.650000px;}
.y14a{bottom:155.370000px;}
.y15f{bottom:155.910000px;}
.y36{bottom:159.510000px;}
.yb6{bottom:161.490000px;}
.yd8{bottom:163.290000px;}
.yfc{bottom:164.010000px;}
.y6e{bottom:170.490000px;}
.y92{bottom:172.290000px;}
.yef{bottom:174.090000px;}
.y12b{bottom:174.450000px;}
.y149{bottom:175.170000px;}
.y15e{bottom:175.710000px;}
.y35{bottom:179.310000px;}
.yb5{bottom:181.290000px;}
.yd7{bottom:183.090000px;}
.yfb{bottom:183.990000px;}
.y6d{bottom:190.290000px;}
.y91{bottom:192.090000px;}
.yee{bottom:193.890000px;}
.y183{bottom:194.250000px;}
.y12a{bottom:194.430000px;}
.y148{bottom:195.150000px;}
.y15d{bottom:195.510000px;}
.y34{bottom:199.110000px;}
.y187{bottom:200.730000px;}
.yb4{bottom:201.090000px;}
.yd6{bottom:202.890000px;}
.yfa{bottom:203.790000px;}
.y6c{bottom:210.090000px;}
.y90{bottom:211.890000px;}
.yed{bottom:213.510000px;}
.yf7{bottom:213.870000px;}
.y182{bottom:214.230000px;}
.y147{bottom:214.950000px;}
.y15c{bottom:215.490000px;}
.y33{bottom:218.910000px;}
.yb3{bottom:220.890000px;}
.y129{bottom:222.330000px;}
.yd5{bottom:222.870000px;}
.y6b{bottom:229.890000px;}
.y8f{bottom:231.870000px;}
.yf6{bottom:233.310000px;}
.y146{bottom:234.750000px;}
.y15b{bottom:235.290000px;}
.y32{bottom:238.890000px;}
.yb2{bottom:240.510000px;}
.y186{bottom:240.870000px;}
.y128{bottom:242.130000px;}
.yd4{bottom:242.670000px;}
.y6a{bottom:249.870000px;}
.y8e{bottom:251.670000px;}
.y145{bottom:254.550000px;}
.y31{bottom:258.690000px;}
.yb1{bottom:260.670000px;}
.y127{bottom:261.930000px;}
.yd3{bottom:262.470000px;}
.y15a{bottom:263.190000px;}
.y69{bottom:269.670000px;}
.y8d{bottom:271.470000px;}
.y144{bottom:274.575000px;}
.y30{bottom:278.535000px;}
.yb0{bottom:280.515000px;}
.y126{bottom:281.415000px;}
.y181{bottom:281.775000px;}
.yd2{bottom:282.315000px;}
.y159{bottom:283.215000px;}
.y68{bottom:289.515000px;}
.y8c{bottom:291.315000px;}
.y2f{bottom:298.335000px;}
.yaf{bottom:300.315000px;}
.y180{bottom:301.755000px;}
.yd1{bottom:302.115000px;}
.y143{bottom:302.475000px;}
.y158{bottom:303.015000px;}
.y67{bottom:309.315000px;}
.y8b{bottom:310.755000px;}
.yaa{bottom:311.115000px;}
.y2e{bottom:318.135000px;}
.yae{bottom:320.115000px;}
.y17f{bottom:321.555000px;}
.yd0{bottom:322.095000px;}
.y142{bottom:322.275000px;}
.y157{bottom:322.815000px;}
.y66{bottom:329.115000px;}
.y125{bottom:330.555000px;}
.yf9{bottom:330.735000px;}
.ya9{bottom:331.095000px;}
.y2d{bottom:338.115000px;}
.y8a{bottom:340.095000px;}
.ycf{bottom:341.895000px;}
.y141{bottom:342.255000px;}
.y156{bottom:342.615000px;}
.y65{bottom:349.095000px;}
.y17e{bottom:349.635000px;}
.y124{bottom:350.355000px;}
.ya8{bottom:350.895000px;}
.y2c{bottom:357.915000px;}
.y89{bottom:359.895000px;}
.yce{bottom:361.335000px;}
.yec{bottom:361.695000px;}
.y155{bottom:362.415000px;}
.y188{bottom:368.535000px;}
.y64{bottom:368.895000px;}
.y17d{bottom:369.435000px;}
.y123{bottom:370.155000px;}
.ya7{bottom:370.695000px;}
.y2b{bottom:377.715000px;}
.y88{bottom:379.695000px;}
.yeb{bottom:381.495000px;}
.y154{bottom:382.395000px;}
.y63{bottom:388.695000px;}
.y17c{bottom:389.235000px;}
.y122{bottom:389.955000px;}
.ya6{bottom:390.495000px;}
.y2a{bottom:397.515000px;}
.y87{bottom:399.495000px;}
.yea{bottom:401.295000px;}
.y62{bottom:408.495000px;}
.y17b{bottom:409.215000px;}
.y121{bottom:409.935000px;}
.ya5{bottom:410.295000px;}
.y29{bottom:417.315000px;}
.y86{bottom:419.295000px;}
.ye9{bottom:421.275000px;}
.y61{bottom:428.295000px;}
.y120{bottom:429.735000px;}
.y153{bottom:429.915000px;}
.ya4{bottom:430.275000px;}
.y17a{bottom:437.115000px;}
.y28{bottom:437.295000px;}
.y85{bottom:439.275000px;}
.ye8{bottom:441.075000px;}
.y60{bottom:448.275000px;}
.y11f{bottom:449.715000px;}
.ya3{bottom:450.075000px;}
.y179{bottom:456.555000px;}
.y27{bottom:457.095000px;}
.y140{bottom:457.815000px;}
.y84{bottom:459.075000px;}
.ye7{bottom:460.875000px;}
.y5f{bottom:468.075000px;}
.ya2{bottom:469.515000px;}
.ycd{bottom:469.875000px;}
.y26{bottom:476.895000px;}
.y11e{bottom:477.615000px;}
.y83{bottom:478.875000px;}
.ye6{bottom:480.675000px;}
.y178{bottom:485.715000px;}
.y5e{bottom:487.875000px;}
.y152{bottom:489.315000px;}
.ycc{bottom:489.675000px;}
.y25{bottom:496.695000px;}
.y11d{bottom:497.415000px;}
.y82{bottom:498.675000px;}
.yf5{bottom:500.115000px;}
.ye5{bottom:500.475000px;}
.y177{bottom:505.515000px;}
.y5d{bottom:507.675000px;}
.ycb{bottom:509.475000px;}
.y24{bottom:516.135000px;}
.y3a{bottom:516.495000px;}
.y11c{bottom:517.215000px;}
.y13f{bottom:517.395000px;}
.y81{bottom:518.475000px;}
.ye4{bottom:520.455000px;}
.y176{bottom:525.495000px;}
.y5c{bottom:527.475000px;}
.yca{bottom:529.455000px;}
.y23{bottom:536.115000px;}
.y11b{bottom:537.195000px;}
.y80{bottom:538.455000px;}
.ye3{bottom:539.895000px;}
.y13e{bottom:545.295000px;}
.y5b{bottom:547.455000px;}
.y150{bottom:548.895000px;}
.yc9{bottom:549.255000px;}
.y22{bottom:556.305000px;}
.y7f{bottom:558.285000px;}
.y11a{bottom:565.125000px;}
.y175{bottom:565.305000px;}
.y5a{bottom:567.285000px;}
.yc8{bottom:569.085000px;}
.y21{bottom:576.105000px;}
.y7e{bottom:578.085000px;}
.y119{bottom:584.925000px;}
.y59{bottom:587.085000px;}
.yc7{bottom:588.885000px;}
.y174{bottom:593.205000px;}
.y7d{bottom:597.885000px;}
.y118{bottom:604.905000px;}
.y58{bottom:606.885000px;}
.y20{bottom:607.245000px;}
.yc6{bottom:608.685000px;}
.y173{bottom:613.005000px;}
.y7c{bottom:617.685000px;}
.y57{bottom:626.685000px;}
.y1f{bottom:627.045000px;}
.yc5{bottom:628.665000px;}
.y117{bottom:632.805000px;}
.y7b{bottom:637.665000px;}
.y56{bottom:646.665000px;}
.y1e{bottom:646.845000px;}
.yc4{bottom:648.465000px;}
.y116{bottom:652.605000px;}
.y7a{bottom:657.465000px;}
.y55{bottom:666.465000px;}
.y1d{bottom:666.645000px;}
.yc3{bottom:668.265000px;}
.y115{bottom:672.585000px;}
.y185{bottom:676.905000px;}
.y79{bottom:677.265000px;}
.y54{bottom:686.265000px;}
.y1c{bottom:686.445000px;}
.yc2{bottom:688.065000px;}
.y114{bottom:692.385000px;}
.y78{bottom:697.065000px;}
.y172{bottom:700.485000px;}
.y53{bottom:706.065000px;}
.y1b{bottom:706.425000px;}
.yc1{bottom:707.865000px;}
.y113{bottom:711.825000px;}
.y13d{bottom:712.185000px;}
.y14f{bottom:716.505000px;}
.y77{bottom:716.865000px;}
.y171{bottom:720.465000px;}
.y52{bottom:725.865000px;}
.y1a{bottom:726.225000px;}
.yc0{bottom:727.485000px;}
.ye2{bottom:727.845000px;}
.y13c{bottom:732.165000px;}
.yad{bottom:736.485000px;}
.y76{bottom:736.845000px;}
.y170{bottom:740.265000px;}
.y112{bottom:740.985000px;}
.y51{bottom:745.845000px;}
.y19{bottom:746.025000px;}
.ye1{bottom:747.645000px;}
.y75{bottom:756.285000px;}
.ya1{bottom:756.645000px;}
.y13b{bottom:760.065000px;}
.y111{bottom:760.785000px;}
.y50{bottom:765.645000px;}
.y18{bottom:765.825000px;}
.ye0{bottom:767.445000px;}
.y74{bottom:776.085000px;}
.ya0{bottom:776.445000px;}
.y13a{bottom:779.865000px;}
.y16f{bottom:780.045000px;}
.y110{bottom:780.765000px;}
.y4f{bottom:785.445000px;}
.y17{bottom:785.625000px;}
.ydf{bottom:786.885000px;}
.y9f{bottom:796.245000px;}
.y139{bottom:799.665000px;}
.y10f{bottom:800.565000px;}
.y4e{bottom:805.245000px;}
.y16{bottom:805.605000px;}
.y16e{bottom:807.945000px;}
.y9e{bottom:816.045000px;}
.y138{bottom:819.285000px;}
.y10e{bottom:820.365000px;}
.y4d{bottom:825.045000px;}
.y15{bottom:827.205000px;}
.y16d{bottom:827.745000px;}
.y9d{bottom:836.025000px;}
.y10d{bottom:840.210000px;}
.y4c{bottom:845.070000px;}
.y16c{bottom:847.590000px;}
.y137{bottom:848.490000px;}
.y14{bottom:852.630000px;}
.yf8{bottom:855.510000px;}
.y9c{bottom:855.870000px;}
.y10c{bottom:860.010000px;}
.y4b{bottom:864.870000px;}
.y16b{bottom:867.390000px;}
.y136{bottom:868.290000px;}
.y13{bottom:872.610000px;}
.y9b{bottom:875.670000px;}
.y10b{bottom:879.990000px;}
.y4a{bottom:884.670000px;}
.y16a{bottom:887.370000px;}
.y135{bottom:888.090000px;}
.y12{bottom:892.410000px;}
.y9a{bottom:895.470000px;}
.y10a{bottom:899.790000px;}
.y49{bottom:904.470000px;}
.y169{bottom:907.170000px;}
.y134{bottom:907.890000px;}
.y11{bottom:912.210000px;}
.y99{bottom:915.270000px;}
.y109{bottom:919.590000px;}
.y48{bottom:924.270000px;}
.y168{bottom:926.610000px;}
.y10{bottom:927.150000px;}
.y133{bottom:927.870000px;}
.y98{bottom:935.250000px;}
.y108{bottom:939.570000px;}
.y47{bottom:944.250000px;}
.y132{bottom:947.670000px;}
.yf{bottom:949.110000px;}
.y97{bottom:954.690000px;}
.ybf{bottom:955.050000px;}
.y167{bottom:955.770000px;}
.y46{bottom:964.050000px;}
.y107{bottom:967.470000px;}
.ye{bottom:970.170000px;}
.y151{bottom:974.490000px;}
.ybe{bottom:974.850000px;}
.y166{bottom:975.570000px;}
.y45{bottom:983.850000px;}
.y106{bottom:987.270000px;}
.yd{bottom:993.570000px;}
.yf4{bottom:994.290000px;}
.ybd{bottom:994.650000px;}
.y165{bottom:995.550000px;}
.y44{bottom:1003.650000px;}
.y105{bottom:1007.070000px;}
.y131{bottom:1007.250000px;}
.ybc{bottom:1014.450000px;}
.y164{bottom:1015.350000px;}
.y43{bottom:1023.450000px;}
.yc{bottom:1025.250000px;}
.y104{bottom:1027.050000px;}
.ybb{bottom:1034.070000px;}
.yde{bottom:1034.430000px;}
.y130{bottom:1035.150000px;}
.y163{bottom:1035.330000px;}
.y42{bottom:1043.430000px;}
.ydd{bottom:1053.870000px;}
.y5{bottom:1054.230000px;}
.y103{bottom:1054.950000px;}
.y41{bottom:1063.230000px;}
.y14e{bottom:1074.030000px;}
.y102{bottom:1074.750000px;}
.y73{bottom:1082.670000px;}
.y40{bottom:1083.030000px;}
.y4{bottom:1088.070000px;}
.y14d{bottom:1093.470000px;}
.y101{bottom:1094.730000px;}
.y3f{bottom:1102.830000px;}
.y100{bottom:1114.530000px;}
.y3{bottom:1119.030000px;}
.y3e{bottom:1122.660000px;}
.yff{bottom:1134.540000px;}
.y3d{bottom:1142.640000px;}
.y2{bottom:1149.840000px;}
.y3c{bottom:1171.800000px;}
.y1{bottom:1181.700000px;}
.y3b{bottom:1193.580000px;}
.h4{height:21.780000px;}
.ha{height:38.158594px;}
.h6{height:39.183750px;}
.h5{height:42.086250px;}
.hc{height:43.215117px;}
.hb{height:58.651172px;}
.h9{height:60.226875px;}
.h7{height:60.855469px;}
.hd{height:61.423863px;}
.h3{height:66.757500px;}
.h2{height:78.367500px;}
.h8{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w4{width:719.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x13{left:71.999987px;}
.x17{left:75.239987px;}
.xc{left:77.219987px;}
.x16{left:80.999987px;}
.x18{left:102.275987px;}
.x9{left:111.815987px;}
.x4{left:118.296000px;}
.xa{left:195.509987px;}
.x8{left:255.639000px;}
.x7{left:260.679000px;}
.x10{left:292.349987px;}
.xe{left:329.834987px;}
.x11{left:344.954987px;}
.xf{left:365.474987px;}
.x14{left:407.594987px;}
.xd{left:418.214987px;}
.x6{left:424.869000px;}
.x5{left:442.329000px;}
.xb{left:446.474987px;}
.x12{left:473.474987px;}
.x19{left:494.714987px;}
.x15{left:500.504987px;}
.x1a{left:521.744987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls18{letter-spacing:-0.592000pt;}
.lsd{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls17{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.094933pt;}
.ls16{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.233067pt;}
.lsf{letter-spacing:0.265600pt;}
.ls4{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.480000pt;}
.ls7{letter-spacing:0.592000pt;}
.ls13{letter-spacing:0.800000pt;}
.ls19{letter-spacing:0.823680pt;}
.lsc{letter-spacing:0.960000pt;}
.ls11{letter-spacing:9.552640pt;}
.ls14{letter-spacing:9.680640pt;}
.ls10{letter-spacing:35.792640pt;}
.lse{letter-spacing:35.920640pt;}
.lsb{letter-spacing:40.912640pt;}
.ls9{letter-spacing:49.232640pt;}
.ls6{letter-spacing:49.339307pt;}
.ws9{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.240000pt;}
.ws8{word-spacing:-13.872000pt;}
.ws7{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.545600pt;}
.wse{word-spacing:-13.416533pt;}
.ws5{word-spacing:-13.374933pt;}
.wsd{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.wsc{word-spacing:-13.096533pt;}
.ws10{word-spacing:-13.049067pt;}
.ws12{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.870933pt;}
.ws11{word-spacing:-12.688000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1704.053760pt;}
._3{margin-left:-1412.375040pt;}
._4{margin-left:-1040.837333pt;}
._5{margin-left:-972.764160pt;}
._20{margin-left:-971.746560pt;}
._6{margin-left:-44.160000pt;}
._56{margin-left:-12.879360pt;}
._10{margin-left:-2.928000pt;}
._d{margin-left:-2.018560pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.175040pt;}
._7{width:2.817707pt;}
._b{width:4.146773pt;}
._c{width:5.385387pt;}
._12{width:6.321280pt;}
._11{width:7.489920pt;}
._9{width:8.605440pt;}
._a{width:9.761280pt;}
._f{width:11.277440pt;}
._8{width:12.239040pt;}
._16{width:14.714240pt;}
._e{width:16.307840pt;}
._1f{width:17.410560pt;}
._27{width:18.524160pt;}
._23{width:19.813760pt;}
._17{width:21.460480pt;}
._15{width:22.469760pt;}
._13{width:23.691520pt;}
._21{width:24.641280pt;}
._22{width:25.603840pt;}
._2b{width:26.706560pt;}
._1b{width:27.622400pt;}
._1a{width:28.844160pt;}
._19{width:30.119040pt;}
._32{width:31.015680pt;}
._24{width:32.084480pt;}
._25{width:33.027840pt;}
._26{width:34.049920pt;}
._2a{width:35.681920pt;}
._18{width:37.024640pt;}
._2c{width:38.140160pt;}
._29{width:39.448747pt;}
._2d{width:40.477440pt;}
._38{width:41.486720pt;}
._2e{width:42.867840pt;}
._35{width:43.767040pt;}
._34{width:44.873600pt;}
._33{width:45.789440pt;}
._37{width:47.268480pt;}
._31{width:48.569387pt;}
._36{width:49.696213pt;}
._2f{width:50.623360pt;}
._52{width:52.104320pt;}
._3c{width:53.438720pt;}
._3a{width:55.091840pt;}
._1d{width:56.619520pt;}
._1c{width:57.528960pt;}
._3e{width:59.069440pt;}
._39{width:61.970347pt;}
._30{width:62.984107pt;}
._28{width:63.884160pt;}
._1e{width:64.812800pt;}
._14{width:65.703040pt;}
._43{width:66.603307pt;}
._41{width:69.002880pt;}
._57{width:75.689600pt;}
._3b{width:77.282560pt;}
._40{width:84.348160pt;}
._3f{width:85.371307pt;}
._54{width:86.904320pt;}
._42{width:91.632000pt;}
._4f{width:94.440960pt;}
._4b{width:95.775360pt;}
._4a{width:121.045760pt;}
._46{width:140.381440pt;}
._45{width:157.341440pt;}
._48{width:175.136640pt;}
._4e{width:179.277440pt;}
._53{width:205.185707pt;}
._4c{width:212.881280pt;}
._44{width:231.490560pt;}
._55{width:232.547627pt;}
._4d{width:243.024427pt;}
._49{width:282.379520pt;}
._50{width:321.957760pt;}
._51{width:323.235200pt;}
._47{width:513.770240pt;}
._3d{width:698.899840pt;}
.fs3{font-size:34.560000pt;}
.fs2{font-size:37.120000pt;}
.fs6{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y8{bottom:5.760000pt;}
.y7{bottom:6.080000pt;}
.ya{bottom:10.400000pt;}
.y9{bottom:11.040000pt;}
.yb{bottom:33.152000pt;}
.y6{bottom:48.192000pt;}
.yba{bottom:72.992000pt;}
.yac{bottom:74.272000pt;}
.ydc{bottom:74.592000pt;}
.y162{bottom:78.432000pt;}
.y72{bottom:80.992000pt;}
.y96{bottom:82.592000pt;}
.yf3{bottom:84.192000pt;}
.y12f{bottom:84.512000pt;}
.y39{bottom:88.832000pt;}
.yb9{bottom:90.592000pt;}
.yab{bottom:91.872000pt;}
.ydb{bottom:92.192000pt;}
.y184{bottom:93.792000pt;}
.y161{bottom:96.192000pt;}
.y71{bottom:98.592000pt;}
.y95{bottom:100.192000pt;}
.yf2{bottom:101.952000pt;}
.y12e{bottom:102.112000pt;}
.y14c{bottom:102.912000pt;}
.y38{bottom:106.432000pt;}
.yb8{bottom:108.192000pt;}
.yda{bottom:109.952000pt;}
.yfe{bottom:110.592000pt;}
.y70{bottom:116.192000pt;}
.y94{bottom:117.952000pt;}
.yf1{bottom:119.552000pt;}
.y12d{bottom:119.712000pt;}
.y14b{bottom:120.512000pt;}
.y160{bottom:120.992000pt;}
.y37{bottom:124.192000pt;}
.yb7{bottom:125.952000pt;}
.yd9{bottom:127.552000pt;}
.yfd{bottom:128.192000pt;}
.y6f{bottom:133.946667pt;}
.y93{bottom:135.546667pt;}
.yf0{bottom:137.146667pt;}
.y12c{bottom:137.466667pt;}
.y14a{bottom:138.106667pt;}
.y15f{bottom:138.586667pt;}
.y36{bottom:141.786667pt;}
.yb6{bottom:143.546667pt;}
.yd8{bottom:145.146667pt;}
.yfc{bottom:145.786667pt;}
.y6e{bottom:151.546667pt;}
.y92{bottom:153.146667pt;}
.yef{bottom:154.746667pt;}
.y12b{bottom:155.066667pt;}
.y149{bottom:155.706667pt;}
.y15e{bottom:156.186667pt;}
.y35{bottom:159.386667pt;}
.yb5{bottom:161.146667pt;}
.yd7{bottom:162.746667pt;}
.yfb{bottom:163.546667pt;}
.y6d{bottom:169.146667pt;}
.y91{bottom:170.746667pt;}
.yee{bottom:172.346667pt;}
.y183{bottom:172.666667pt;}
.y12a{bottom:172.826667pt;}
.y148{bottom:173.466667pt;}
.y15d{bottom:173.786667pt;}
.y34{bottom:176.986667pt;}
.y187{bottom:178.426667pt;}
.yb4{bottom:178.746667pt;}
.yd6{bottom:180.346667pt;}
.yfa{bottom:181.146667pt;}
.y6c{bottom:186.746667pt;}
.y90{bottom:188.346667pt;}
.yed{bottom:189.786667pt;}
.yf7{bottom:190.106667pt;}
.y182{bottom:190.426667pt;}
.y147{bottom:191.066667pt;}
.y15c{bottom:191.546667pt;}
.y33{bottom:194.586667pt;}
.yb3{bottom:196.346667pt;}
.y129{bottom:197.626667pt;}
.yd5{bottom:198.106667pt;}
.y6b{bottom:204.346667pt;}
.y8f{bottom:206.106667pt;}
.yf6{bottom:207.386667pt;}
.y146{bottom:208.666667pt;}
.y15b{bottom:209.146667pt;}
.y32{bottom:212.346667pt;}
.yb2{bottom:213.786667pt;}
.y186{bottom:214.106667pt;}
.y128{bottom:215.226667pt;}
.yd4{bottom:215.706667pt;}
.y6a{bottom:222.106667pt;}
.y8e{bottom:223.706667pt;}
.y145{bottom:226.266667pt;}
.y31{bottom:229.946667pt;}
.yb1{bottom:231.706667pt;}
.y127{bottom:232.826667pt;}
.yd3{bottom:233.306667pt;}
.y15a{bottom:233.946667pt;}
.y69{bottom:239.706667pt;}
.y8d{bottom:241.306667pt;}
.y144{bottom:244.066667pt;}
.y30{bottom:247.586667pt;}
.yb0{bottom:249.346667pt;}
.y126{bottom:250.146667pt;}
.y181{bottom:250.466667pt;}
.yd2{bottom:250.946667pt;}
.y159{bottom:251.746667pt;}
.y68{bottom:257.346667pt;}
.y8c{bottom:258.946667pt;}
.y2f{bottom:265.186667pt;}
.yaf{bottom:266.946667pt;}
.y180{bottom:268.226667pt;}
.yd1{bottom:268.546667pt;}
.y143{bottom:268.866667pt;}
.y158{bottom:269.346667pt;}
.y67{bottom:274.946667pt;}
.y8b{bottom:276.226667pt;}
.yaa{bottom:276.546667pt;}
.y2e{bottom:282.786667pt;}
.yae{bottom:284.546667pt;}
.y17f{bottom:285.826667pt;}
.yd0{bottom:286.306667pt;}
.y142{bottom:286.466667pt;}
.y157{bottom:286.946667pt;}
.y66{bottom:292.546667pt;}
.y125{bottom:293.826667pt;}
.yf9{bottom:293.986667pt;}
.ya9{bottom:294.306667pt;}
.y2d{bottom:300.546667pt;}
.y8a{bottom:302.306667pt;}
.ycf{bottom:303.906667pt;}
.y141{bottom:304.226667pt;}
.y156{bottom:304.546667pt;}
.y65{bottom:310.306667pt;}
.y17e{bottom:310.786667pt;}
.y124{bottom:311.426667pt;}
.ya8{bottom:311.906667pt;}
.y2c{bottom:318.146667pt;}
.y89{bottom:319.906667pt;}
.yce{bottom:321.186667pt;}
.yec{bottom:321.506667pt;}
.y155{bottom:322.146667pt;}
.y188{bottom:327.586667pt;}
.y64{bottom:327.906667pt;}
.y17d{bottom:328.386667pt;}
.y123{bottom:329.026667pt;}
.ya7{bottom:329.506667pt;}
.y2b{bottom:335.746667pt;}
.y88{bottom:337.506667pt;}
.yeb{bottom:339.106667pt;}
.y154{bottom:339.906667pt;}
.y63{bottom:345.506667pt;}
.y17c{bottom:345.986667pt;}
.y122{bottom:346.626667pt;}
.ya6{bottom:347.106667pt;}
.y2a{bottom:353.346667pt;}
.y87{bottom:355.106667pt;}
.yea{bottom:356.706667pt;}
.y62{bottom:363.106667pt;}
.y17b{bottom:363.746667pt;}
.y121{bottom:364.386667pt;}
.ya5{bottom:364.706667pt;}
.y29{bottom:370.946667pt;}
.y86{bottom:372.706667pt;}
.ye9{bottom:374.466667pt;}
.y61{bottom:380.706667pt;}
.y120{bottom:381.986667pt;}
.y153{bottom:382.146667pt;}
.ya4{bottom:382.466667pt;}
.y17a{bottom:388.546667pt;}
.y28{bottom:388.706667pt;}
.y85{bottom:390.466667pt;}
.ye8{bottom:392.066667pt;}
.y60{bottom:398.466667pt;}
.y11f{bottom:399.746667pt;}
.ya3{bottom:400.066667pt;}
.y179{bottom:405.826667pt;}
.y27{bottom:406.306667pt;}
.y140{bottom:406.946667pt;}
.y84{bottom:408.066667pt;}
.ye7{bottom:409.666667pt;}
.y5f{bottom:416.066667pt;}
.ya2{bottom:417.346667pt;}
.ycd{bottom:417.666667pt;}
.y26{bottom:423.906667pt;}
.y11e{bottom:424.546667pt;}
.y83{bottom:425.666667pt;}
.ye6{bottom:427.266667pt;}
.y178{bottom:431.746667pt;}
.y5e{bottom:433.666667pt;}
.y152{bottom:434.946667pt;}
.ycc{bottom:435.266667pt;}
.y25{bottom:441.506667pt;}
.y11d{bottom:442.146667pt;}
.y82{bottom:443.266667pt;}
.yf5{bottom:444.546667pt;}
.ye5{bottom:444.866667pt;}
.y177{bottom:449.346667pt;}
.y5d{bottom:451.266667pt;}
.ycb{bottom:452.866667pt;}
.y24{bottom:458.786667pt;}
.y3a{bottom:459.106667pt;}
.y11c{bottom:459.746667pt;}
.y13f{bottom:459.906667pt;}
.y81{bottom:460.866667pt;}
.ye4{bottom:462.626667pt;}
.y176{bottom:467.106667pt;}
.y5c{bottom:468.866667pt;}
.yca{bottom:470.626667pt;}
.y23{bottom:476.546667pt;}
.y11b{bottom:477.506667pt;}
.y80{bottom:478.626667pt;}
.ye3{bottom:479.906667pt;}
.y13e{bottom:484.706667pt;}
.y5b{bottom:486.626667pt;}
.y150{bottom:487.906667pt;}
.yc9{bottom:488.226667pt;}
.y22{bottom:494.493333pt;}
.y7f{bottom:496.253333pt;}
.y11a{bottom:502.333333pt;}
.y175{bottom:502.493333pt;}
.y5a{bottom:504.253333pt;}
.yc8{bottom:505.853333pt;}
.y21{bottom:512.093333pt;}
.y7e{bottom:513.853333pt;}
.y119{bottom:519.933333pt;}
.y59{bottom:521.853333pt;}
.yc7{bottom:523.453333pt;}
.y174{bottom:527.293333pt;}
.y7d{bottom:531.453333pt;}
.y118{bottom:537.693333pt;}
.y58{bottom:539.453333pt;}
.y20{bottom:539.773333pt;}
.yc6{bottom:541.053333pt;}
.y173{bottom:544.893333pt;}
.y7c{bottom:549.053333pt;}
.y57{bottom:557.053333pt;}
.y1f{bottom:557.373333pt;}
.yc5{bottom:558.813333pt;}
.y117{bottom:562.493333pt;}
.y7b{bottom:566.813333pt;}
.y56{bottom:574.813333pt;}
.y1e{bottom:574.973333pt;}
.yc4{bottom:576.413333pt;}
.y116{bottom:580.093333pt;}
.y7a{bottom:584.413333pt;}
.y55{bottom:592.413333pt;}
.y1d{bottom:592.573333pt;}
.yc3{bottom:594.013333pt;}
.y115{bottom:597.853333pt;}
.y185{bottom:601.693333pt;}
.y79{bottom:602.013333pt;}
.y54{bottom:610.013333pt;}
.y1c{bottom:610.173333pt;}
.yc2{bottom:611.613333pt;}
.y114{bottom:615.453333pt;}
.y78{bottom:619.613333pt;}
.y172{bottom:622.653333pt;}
.y53{bottom:627.613333pt;}
.y1b{bottom:627.933333pt;}
.yc1{bottom:629.213333pt;}
.y113{bottom:632.733333pt;}
.y13d{bottom:633.053333pt;}
.y14f{bottom:636.893333pt;}
.y77{bottom:637.213333pt;}
.y171{bottom:640.413333pt;}
.y52{bottom:645.213333pt;}
.y1a{bottom:645.533333pt;}
.yc0{bottom:646.653333pt;}
.ye2{bottom:646.973333pt;}
.y13c{bottom:650.813333pt;}
.yad{bottom:654.653333pt;}
.y76{bottom:654.973333pt;}
.y170{bottom:658.013333pt;}
.y112{bottom:658.653333pt;}
.y51{bottom:662.973333pt;}
.y19{bottom:663.133333pt;}
.ye1{bottom:664.573333pt;}
.y75{bottom:672.253333pt;}
.ya1{bottom:672.573333pt;}
.y13b{bottom:675.613333pt;}
.y111{bottom:676.253333pt;}
.y50{bottom:680.573333pt;}
.y18{bottom:680.733333pt;}
.ye0{bottom:682.173333pt;}
.y74{bottom:689.853333pt;}
.ya0{bottom:690.173333pt;}
.y13a{bottom:693.213333pt;}
.y16f{bottom:693.373333pt;}
.y110{bottom:694.013333pt;}
.y4f{bottom:698.173333pt;}
.y17{bottom:698.333333pt;}
.ydf{bottom:699.453333pt;}
.y9f{bottom:707.773333pt;}
.y139{bottom:710.813333pt;}
.y10f{bottom:711.613333pt;}
.y4e{bottom:715.773333pt;}
.y16{bottom:716.093333pt;}
.y16e{bottom:718.173333pt;}
.y9e{bottom:725.373333pt;}
.y138{bottom:728.253333pt;}
.y10e{bottom:729.213333pt;}
.y4d{bottom:733.373333pt;}
.y15{bottom:735.293333pt;}
.y16d{bottom:735.773333pt;}
.y9d{bottom:743.133333pt;}
.y10d{bottom:746.853333pt;}
.y4c{bottom:751.173333pt;}
.y16c{bottom:753.413333pt;}
.y137{bottom:754.213333pt;}
.y14{bottom:757.893333pt;}
.yf8{bottom:760.453333pt;}
.y9c{bottom:760.773333pt;}
.y10c{bottom:764.453333pt;}
.y4b{bottom:768.773333pt;}
.y16b{bottom:771.013333pt;}
.y136{bottom:771.813333pt;}
.y13{bottom:775.653333pt;}
.y9b{bottom:778.373333pt;}
.y10b{bottom:782.213333pt;}
.y4a{bottom:786.373333pt;}
.y16a{bottom:788.773333pt;}
.y135{bottom:789.413333pt;}
.y12{bottom:793.253333pt;}
.y9a{bottom:795.973333pt;}
.y10a{bottom:799.813333pt;}
.y49{bottom:803.973333pt;}
.y169{bottom:806.373333pt;}
.y134{bottom:807.013333pt;}
.y11{bottom:810.853333pt;}
.y99{bottom:813.573333pt;}
.y109{bottom:817.413333pt;}
.y48{bottom:821.573333pt;}
.y168{bottom:823.653333pt;}
.y10{bottom:824.133333pt;}
.y133{bottom:824.773333pt;}
.y98{bottom:831.333333pt;}
.y108{bottom:835.173333pt;}
.y47{bottom:839.333333pt;}
.y132{bottom:842.373333pt;}
.yf{bottom:843.653333pt;}
.y97{bottom:848.613333pt;}
.ybf{bottom:848.933333pt;}
.y167{bottom:849.573333pt;}
.y46{bottom:856.933333pt;}
.y107{bottom:859.973333pt;}
.ye{bottom:862.373333pt;}
.y151{bottom:866.213333pt;}
.ybe{bottom:866.533333pt;}
.y166{bottom:867.173333pt;}
.y45{bottom:874.533333pt;}
.y106{bottom:877.573333pt;}
.yd{bottom:883.173333pt;}
.yf4{bottom:883.813333pt;}
.ybd{bottom:884.133333pt;}
.y165{bottom:884.933333pt;}
.y44{bottom:892.133333pt;}
.y105{bottom:895.173333pt;}
.y131{bottom:895.333333pt;}
.ybc{bottom:901.733333pt;}
.y164{bottom:902.533333pt;}
.y43{bottom:909.733333pt;}
.yc{bottom:911.333333pt;}
.y104{bottom:912.933333pt;}
.ybb{bottom:919.173333pt;}
.yde{bottom:919.493333pt;}
.y130{bottom:920.133333pt;}
.y163{bottom:920.293333pt;}
.y42{bottom:927.493333pt;}
.ydd{bottom:936.773333pt;}
.y5{bottom:937.093333pt;}
.y103{bottom:937.733333pt;}
.y41{bottom:945.093333pt;}
.y14e{bottom:954.693333pt;}
.y102{bottom:955.333333pt;}
.y73{bottom:962.373333pt;}
.y40{bottom:962.693333pt;}
.y4{bottom:967.173333pt;}
.y14d{bottom:971.973333pt;}
.y101{bottom:973.093333pt;}
.y3f{bottom:980.293333pt;}
.y100{bottom:990.693333pt;}
.y3{bottom:994.693333pt;}
.y3e{bottom:997.920000pt;}
.yff{bottom:1008.480000pt;}
.y3d{bottom:1015.680000pt;}
.y2{bottom:1022.080000pt;}
.y3c{bottom:1041.600000pt;}
.y1{bottom:1050.400000pt;}
.y3b{bottom:1060.960000pt;}
.h4{height:19.360000pt;}
.ha{height:33.918750pt;}
.h6{height:34.830000pt;}
.h5{height:37.410000pt;}
.hc{height:38.413438pt;}
.hb{height:52.134375pt;}
.h9{height:53.535000pt;}
.h7{height:54.093750pt;}
.hd{height:54.598989pt;}
.h3{height:59.340000pt;}
.h2{height:69.660000pt;}
.h8{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w4{width:639.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x13{left:63.999988pt;}
.x17{left:66.879988pt;}
.xc{left:68.639988pt;}
.x16{left:71.999988pt;}
.x18{left:90.911988pt;}
.x9{left:99.391988pt;}
.x4{left:105.152000pt;}
.xa{left:173.786655pt;}
.x8{left:227.234667pt;}
.x7{left:231.714667pt;}
.x10{left:259.866655pt;}
.xe{left:293.186655pt;}
.x11{left:306.626655pt;}
.xf{left:324.866655pt;}
.x14{left:362.306655pt;}
.xd{left:371.746655pt;}
.x6{left:377.661333pt;}
.x5{left:393.181333pt;}
.xb{left:396.866655pt;}
.x12{left:420.866655pt;}
.x19{left:439.746655pt;}
.x15{left:444.893322pt;}
.x1a{left:463.773322pt;}
}




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