
    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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.767578;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_2a1d0a59591af7cc502bbe49.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_c43d0c2cc82ee30134a86de6.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_66b39e46eb4734945023b00c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.986328;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_a3355d2debb384abf76527f5.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_3c1cdb9c565bdfeb48435b99.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2c87d70034de48282d0a8740.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_efa3d805b82c2be12c462b55.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.112305;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_d147bf06ed653f9ef2762038.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.061035;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_58985701b4c755d552b4c977.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_db71a9d02ade1ad6ff934f4f.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-66.960000px;}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:23.760000px;}
.ls13{letter-spacing:-1.440000px;}
.ls7{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.414600px;}
.ls6{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.274800px;}
.ls5{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.109200px;}
.ls3{letter-spacing:0.109440px;}
.ls16{letter-spacing:0.152400px;}
.ls2{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.262080px;}
.ls1{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.414600px;}
.lse{letter-spacing:1.440000px;}
.ls9{letter-spacing:13.680000px;}
.lsf{letter-spacing:22.320000px;}
.ls15{letter-spacing:33.984000px;}
.ls10{letter-spacing:43.920000px;}
.ls11{letter-spacing:44.640000px;}
.lsa{letter-spacing:64.026720px;}
.ls12{letter-spacing:87.120000px;}
.ls0{letter-spacing:207.416640px;}
.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;}
}
.wsa{word-spacing:-59.760000px;}
.ws9{word-spacing:-28.712400px;}
.ws2{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.974600px;}
.wse{word-spacing:-16.712400px;}
.ws4{word-spacing:-16.560000px;}
.wsc{word-spacing:-16.254600px;}
.ws5{word-spacing:-15.840000px;}
.ws0{word-spacing:-15.300000px;}
.ws1{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.939200px;}
.ws7{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.wsd{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._3{margin-left:-2.241600px;}
._0{margin-left:-1.008000px;}
._1{width:1.560000px;}
._16{width:2.867520px;}
._5{width:3.944640px;}
._4{width:5.497920px;}
._6{width:6.786240px;}
._10{width:8.781120px;}
._e{width:10.092480px;}
._d{width:11.937600px;}
._11{width:13.262400px;}
._12{width:14.411520px;}
._17{width:15.494400px;}
._1b{width:18.547200px;}
._7{width:19.607040px;}
._8{width:21.186240px;}
._f{width:22.612800px;}
._9{width:24.177600px;}
._a{width:25.185600px;}
._b{width:26.297280px;}
._c{width:28.085760px;}
._1c{width:29.410560px;}
._1d{width:30.602880px;}
._28{width:32.457600px;}
._21{width:33.599040px;}
._20{width:34.842240px;}
._15{width:36.645120px;}
._14{width:37.756800px;}
._2e{width:39.611520px;}
._1e{width:41.068800px;}
._1f{width:42.648000px;}
._23{width:44.407680px;}
._22{width:45.587520px;}
._26{width:46.713600px;}
._2b{width:48.620160px;}
._2a{width:50.474880px;}
._29{width:51.549120px;}
._3a{width:52.572000px;}
._13{width:53.654400px;}
._27{width:55.920960px;}
._19{width:57.165120px;}
._1a{width:58.512960px;}
._36{width:60.145920px;}
._3f{width:61.532160px;}
._41{width:62.578560px;}
._24{width:63.656640px;}
._25{width:65.037120px;}
._42{width:66.542400px;}
._3d{width:67.782720px;}
._2d{width:68.837760px;}
._18{width:71.936640px;}
._31{width:72.985920px;}
._2f{width:74.070720px;}
._30{width:75.503040px;}
._39{width:77.585280px;}
._3b{width:84.362880px;}
._3c{width:86.271840px;}
._3e{width:89.047680px;}
._2c{width:90.278400px;}
._37{width:99.426240px;}
._38{width:100.476960px;}
._40{width:101.897280px;}
._34{width:116.184960px;}
._35{width:117.452160px;}
._32{width:133.466880px;}
._33{width:135.384000px;}
._2{width:961.680000px;}
.fca{color:rgb(83,129,53);}
.fc8{color:transparent;}
.fc6{color:rgb(255,255,0);}
.fc3{color:rgb(112,48,160);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,0,0);}
.fc9{color:rgb(34,34,34);}
.fc7{color:rgb(27,27,27);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(37,37,37);}
.fc0{color:rgb(0,176,80);}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:131.760000px;}
.yf{bottom:-107.850000px;}
.ye{bottom:-69.690000px;}
.yd{bottom:-29.880000px;}
.yc{bottom:-10.260000px;}
.y0{bottom:0.000000px;}
.yb{bottom:5.400000px;}
.y8{bottom:10.800000px;}
.y36{bottom:20.520000px;}
.ya{bottom:20.880000px;}
.y35{bottom:37.080000px;}
.y37{bottom:48.420000px;}
.y38{bottom:48.600000px;}
.y6{bottom:51.660000px;}
.y34{bottom:53.100000px;}
.y7{bottom:53.280000px;}
.y5{bottom:68.976000px;}
.y152{bottom:87.156000px;}
.yc5{bottom:88.596000px;}
.y137{bottom:90.036000px;}
.yfc{bottom:91.476000px;}
.y7c{bottom:95.256000px;}
.y30{bottom:97.596000px;}
.yc9{bottom:99.756000px;}
.yd6{bottom:100.296000px;}
.y99{bottom:104.256000px;}
.y55{bottom:106.416000px;}
.ya6{bottom:113.976000px;}
.y151{bottom:115.596000px;}
.yc4{bottom:117.036000px;}
.y146{bottom:118.476000px;}
.y136{bottom:118.656000px;}
.yfb{bottom:119.916000px;}
.y7b{bottom:123.696000px;}
.y2f{bottom:126.036000px;}
.yc8{bottom:128.196000px;}
.yd5{bottom:128.736000px;}
.y98{bottom:132.696000px;}
.y54{bottom:134.856000px;}
.ya5{bottom:142.416000px;}
.y150{bottom:144.216000px;}
.yc3{bottom:145.476000px;}
.y145{bottom:146.916000px;}
.y135{bottom:148.356000px;}
.yfa{bottom:148.536000px;}
.y7a{bottom:152.130000px;}
.y2e{bottom:154.470000px;}
.y9c{bottom:156.630000px;}
.yd4{bottom:157.170000px;}
.y97{bottom:161.130000px;}
.y53{bottom:163.470000px;}
.ya4{bottom:170.850000px;}
.yc2{bottom:173.550000px;}
.y11a{bottom:173.910000px;}
.y144{bottom:175.530000px;}
.y134{bottom:176.790000px;}
.yf9{bottom:178.230000px;}
.y79{bottom:180.570000px;}
.y2d{bottom:182.910000px;}
.y5f{bottom:185.250000px;}
.y96{bottom:189.570000px;}
.y52{bottom:191.550000px;}
.ya3{bottom:199.290000px;}
.yc1{bottom:202.350000px;}
.y133{bottom:205.230000px;}
.yf8{bottom:206.670000px;}
.y78{bottom:209.010000px;}
.y2c{bottom:211.350000px;}
.y5e{bottom:213.690000px;}
.yd3{bottom:214.050000px;}
.y51{bottom:216.390000px;}
.y95{bottom:218.010000px;}
.ya2{bottom:227.730000px;}
.yc0{bottom:230.790000px;}
.y119{bottom:230.970000px;}
.y132{bottom:233.670000px;}
.yf7{bottom:235.110000px;}
.y77{bottom:237.450000px;}
.y2b{bottom:239.790000px;}
.yda{bottom:241.770000px;}
.y5d{bottom:242.130000px;}
.yd2{bottom:242.490000px;}
.y94{bottom:246.090000px;}
.ya1{bottom:256.170000px;}
.ybf{bottom:259.230000px;}
.y14f{bottom:259.410000px;}
.y118{bottom:260.670000px;}
.y131{bottom:262.110000px;}
.yf6{bottom:263.550000px;}
.y76{bottom:266.070000px;}
.y2a{bottom:268.230000px;}
.yd9{bottom:270.210000px;}
.y5c{bottom:270.570000px;}
.yd1{bottom:271.110000px;}
.y93{bottom:275.070000px;}
.ya0{bottom:284.250000px;}
.ybe{bottom:287.670000px;}
.y117{bottom:289.290000px;}
.y143{bottom:290.550000px;}
.y130{bottom:290.730000px;}
.yf5{bottom:291.990000px;}
.y75{bottom:294.510000px;}
.y29{bottom:296.850000px;}
.yc7{bottom:298.650000px;}
.y5b{bottom:299.010000px;}
.yd0{bottom:299.550000px;}
.y92{bottom:303.510000px;}
.y9f{bottom:309.270000px;}
.ybd{bottom:316.110000px;}
.y116{bottom:317.775000px;}
.y142{bottom:319.215000px;}
.y12f{bottom:320.475000px;}
.yf4{bottom:320.655000px;}
.y74{bottom:322.995000px;}
.y28{bottom:325.335000px;}
.yde{bottom:327.135000px;}
.y5a{bottom:327.495000px;}
.ycf{bottom:328.035000px;}
.y91{bottom:331.995000px;}
.ybc{bottom:344.775000px;}
.y115{bottom:346.395000px;}
.y12e{bottom:348.915000px;}
.yf3{bottom:350.355000px;}
.y73{bottom:351.435000px;}
.y27{bottom:353.775000px;}
.y59{bottom:355.935000px;}
.yce{bottom:356.475000px;}
.y90{bottom:360.435000px;}
.ybb{bottom:373.215000px;}
.y114{bottom:376.095000px;}
.y12d{bottom:377.355000px;}
.yf2{bottom:378.795000px;}
.y72{bottom:379.875000px;}
.y26{bottom:382.215000px;}
.y58{bottom:384.375000px;}
.ycd{bottom:384.915000px;}
.y8f{bottom:388.875000px;}
.yba{bottom:401.655000px;}
.y113{bottom:404.535000px;}
.y12c{bottom:405.975000px;}
.yf1{bottom:407.235000px;}
.y71{bottom:408.315000px;}
.y25{bottom:410.655000px;}
.yd8{bottom:412.455000px;}
.y57{bottom:412.815000px;}
.ycc{bottom:412.995000px;}
.y8e{bottom:417.315000px;}
.yb9{bottom:430.095000px;}
.y112{bottom:432.975000px;}
.y12b{bottom:434.415000px;}
.yf0{bottom:435.855000px;}
.y70{bottom:436.755000px;}
.ycb{bottom:438.015000px;}
.y24{bottom:439.095000px;}
.y50{bottom:441.435000px;}
.y8d{bottom:445.755000px;}
.yb8{bottom:458.535000px;}
.y111{bottom:461.415000px;}
.y14e{bottom:461.595000px;}
.y12a{bottom:463.035000px;}
.y141{bottom:464.295000px;}
.y6f{bottom:465.195000px;}
.yef{bottom:465.555000px;}
.y23{bottom:467.535000px;}
.ydd{bottom:469.515000px;}
.y4f{bottom:469.875000px;}
.y8c{bottom:474.195000px;}
.yb7{bottom:486.615000px;}
.y110{bottom:489.855000px;}
.y14d{bottom:491.295000px;}
.y129{bottom:492.735000px;}
.y6e{bottom:493.635000px;}
.yee{bottom:493.995000px;}
.y22{bottom:495.975000px;}
.y9b{bottom:497.955000px;}
.y4e{bottom:498.315000px;}
.y8b{bottom:502.635000px;}
.yb6{bottom:515.415000px;}
.y10f{bottom:518.475000px;}
.y14c{bottom:519.735000px;}
.y128{bottom:521.175000px;}
.y6d{bottom:522.255000px;}
.yed{bottom:522.615000px;}
.y21{bottom:524.415000px;}
.y4d{bottom:526.755000px;}
.y8a{bottom:531.255000px;}
.yb5{bottom:543.855000px;}
.y10e{bottom:548.175000px;}
.y127{bottom:549.615000px;}
.y140{bottom:549.795000px;}
.y6c{bottom:550.695000px;}
.yec{bottom:551.055000px;}
.y20{bottom:553.035000px;}
.y4c{bottom:555.195000px;}
.y89{bottom:559.695000px;}
.yb4{bottom:572.505000px;}
.y10d{bottom:576.645000px;}
.y14b{bottom:576.825000px;}
.y126{bottom:578.085000px;}
.y6b{bottom:579.165000px;}
.yeb{bottom:579.525000px;}
.y1f{bottom:581.505000px;}
.ya7{bottom:583.305000px;}
.y4b{bottom:583.665000px;}
.y88{bottom:588.165000px;}
.yb3{bottom:600.945000px;}
.y10c{bottom:605.085000px;}
.y14a{bottom:606.525000px;}
.y125{bottom:606.705000px;}
.y6a{bottom:607.605000px;}
.y13f{bottom:607.965000px;}
.yea{bottom:608.145000px;}
.y1e{bottom:609.585000px;}
.y31{bottom:609.945000px;}
.ydc{bottom:611.745000px;}
.y4a{bottom:612.105000px;}
.y87{bottom:616.605000px;}
.yb2{bottom:629.385000px;}
.y10b{bottom:633.705000px;}
.y149{bottom:634.965000px;}
.y69{bottom:636.045000px;}
.y124{bottom:636.405000px;}
.ye9{bottom:637.845000px;}
.y49{bottom:640.545000px;}
.y1d{bottom:642.165000px;}
.y86{bottom:645.045000px;}
.yb1{bottom:657.825000px;}
.y10a{bottom:663.405000px;}
.y68{bottom:664.485000px;}
.y123{bottom:664.845000px;}
.ye8{bottom:666.285000px;}
.ydf{bottom:668.625000px;}
.y48{bottom:668.985000px;}
.y1c{bottom:670.605000px;}
.y85{bottom:673.485000px;}
.yb0{bottom:686.265000px;}
.y109{bottom:691.845000px;}
.y148{bottom:692.025000px;}
.y67{bottom:692.925000px;}
.y122{bottom:693.285000px;}
.y13e{bottom:693.465000px;}
.ye7{bottom:694.725000px;}
.y47{bottom:697.605000px;}
.y1b{bottom:699.045000px;}
.y84{bottom:701.925000px;}
.yaf{bottom:714.705000px;}
.y108{bottom:720.465000px;}
.y66{bottom:721.365000px;}
.y121{bottom:721.725000px;}
.ye6{bottom:723.165000px;}
.y46{bottom:726.045000px;}
.y1a{bottom:727.485000px;}
.y83{bottom:730.005000px;}
.yae{bottom:743.145000px;}
.y107{bottom:748.905000px;}
.y65{bottom:749.805000px;}
.y120{bottom:750.165000px;}
.y13d{bottom:751.605000px;}
.ye5{bottom:751.785000px;}
.ydb{bottom:754.125000px;}
.y45{bottom:754.485000px;}
.y19{bottom:755.925000px;}
.y82{bottom:758.805000px;}
.yad{bottom:771.585000px;}
.y64{bottom:778.425000px;}
.y106{bottom:778.785000px;}
.y13c{bottom:780.045000px;}
.ye4{bottom:781.485000px;}
.yd7{bottom:782.565000px;}
.y44{bottom:782.925000px;}
.y18{bottom:784.365000px;}
.y81{bottom:787.425000px;}
.yac{bottom:799.665000px;}
.y63{bottom:806.865000px;}
.y105{bottom:807.225000px;}
.y13b{bottom:808.485000px;}
.ye3{bottom:809.925000px;}
.y43{bottom:811.365000px;}
.y17{bottom:812.805000px;}
.y80{bottom:815.865000px;}
.yab{bottom:828.330000px;}
.y62{bottom:835.350000px;}
.y104{bottom:835.710000px;}
.y147{bottom:835.890000px;}
.y11f{bottom:837.150000px;}
.ye2{bottom:838.410000px;}
.y42{bottom:839.850000px;}
.y16{bottom:841.290000px;}
.y7f{bottom:844.350000px;}
.yaa{bottom:856.770000px;}
.y61{bottom:863.430000px;}
.y156{bottom:864.150000px;}
.y103{bottom:864.330000px;}
.y11e{bottom:865.590000px;}
.ye1{bottom:866.850000px;}
.y9e{bottom:867.930000px;}
.y41{bottom:868.290000px;}
.y15{bottom:869.910000px;}
.y7e{bottom:872.790000px;}
.ya9{bottom:885.210000px;}
.y60{bottom:888.270000px;}
.y155{bottom:892.770000px;}
.y102{bottom:894.030000px;}
.ye0{bottom:895.470000px;}
.y56{bottom:896.370000px;}
.y40{bottom:896.730000px;}
.y7d{bottom:897.270000px;}
.y14{bottom:904.290000px;}
.ya8{bottom:910.050000px;}
.y101{bottom:922.470000px;}
.y13a{bottom:923.910000px;}
.yc6{bottom:924.810000px;}
.y3f{bottom:925.170000px;}
.y13{bottom:932.730000px;}
.y154{bottom:950.910000px;}
.y100{bottom:951.090000px;}
.y139{bottom:952.350000px;}
.y3e{bottom:953.790000px;}
.y12{bottom:961.170000px;}
.y153{bottom:979.530000px;}
.yff{bottom:980.790000px;}
.y9a{bottom:981.870000px;}
.y3d{bottom:982.230000px;}
.y11{bottom:989.610000px;}
.yfe{bottom:1009.230000px;}
.y138{bottom:1009.410000px;}
.y3c{bottom:1010.670000px;}
.y10{bottom:1011.750000px;}
.y4{bottom:1032.810000px;}
.y11d{bottom:1037.670000px;}
.yfd{bottom:1037.850000px;}
.yca{bottom:1038.750000px;}
.y3b{bottom:1039.110000px;}
.y3{bottom:1052.790000px;}
.y11c{bottom:1066.110000px;}
.y3a{bottom:1067.550000px;}
.y2{bottom:1072.620000px;}
.y11b{bottom:1094.760000px;}
.y9d{bottom:1095.660000px;}
.y39{bottom:1096.020000px;}
.y1{bottom:1107.360000px;}
.y33{bottom:1114.380000px;}
.y9{bottom:1131.300000px;}
.y32{bottom:1131.660000px;}
.h6{height:33.480000px;}
.hb{height:41.250938px;}
.h1{height:48.045938px;}
.he{height:52.971680px;}
.hd{height:53.709961px;}
.h7{height:54.421875px;}
.h2{height:58.621992px;}
.hc{height:59.383125px;}
.h11{height:60.679688px;}
.h9{height:63.019687px;}
.h3{height:65.010937px;}
.ha{height:66.757500px;}
.h8{height:72.562500px;}
.h5{height:72.562511px;}
.h13{height:74.004654px;}
.h12{height:111.043838px;}
.h10{height:111.043849px;}
.h4{height:167.250000px;}
.hf{height:268.635000px;}
.h0{height:1188.000000px;}
.w7{width:21.600000px;}
.w2{width:23.940000px;}
.w6{width:38.520000px;}
.w5{width:39.600000px;}
.w4{width:39.780000px;}
.w3{width:361.335000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x7{left:10.800000px;}
.xb{left:15.120000px;}
.x4{left:18.180000px;}
.xa{left:31.680000px;}
.x2{left:53.999986px;}
.xe{left:80.999986px;}
.x1{left:122.435986px;}
.x6{left:130.860000px;}
.xc{left:432.074986px;}
.x8{left:486.104986px;}
.xd{left:513.104986px;}
.x5{left:521.025000px;}
.xf{left:864.149986px;}
.x9{left:871.200000px;}
.x3{left:876.060000px;}
@media print{
.v1{vertical-align:-59.520000pt;}
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:21.120000pt;}
.ls13{letter-spacing:-1.280000pt;}
.ls7{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.368533pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.244267pt;}
.ls5{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.097067pt;}
.ls3{letter-spacing:0.097280pt;}
.ls16{letter-spacing:0.135467pt;}
.ls2{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.232960pt;}
.ls1{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.368533pt;}
.lse{letter-spacing:1.280000pt;}
.ls9{letter-spacing:12.160000pt;}
.lsf{letter-spacing:19.840000pt;}
.ls15{letter-spacing:30.208000pt;}
.ls10{letter-spacing:39.040000pt;}
.ls11{letter-spacing:39.680000pt;}
.lsa{letter-spacing:56.912640pt;}
.ls12{letter-spacing:77.440000pt;}
.ls0{letter-spacing:184.370347pt;}
.wsa{word-spacing:-53.120000pt;}
.ws9{word-spacing:-25.522133pt;}
.ws2{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.088533pt;}
.wse{word-spacing:-14.855467pt;}
.ws4{word-spacing:-14.720000pt;}
.wsc{word-spacing:-14.448533pt;}
.ws5{word-spacing:-14.080000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws1{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.390400pt;}
.ws7{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.wsd{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._3{margin-left:-1.992533pt;}
._0{margin-left:-0.896000pt;}
._1{width:1.386667pt;}
._16{width:2.548907pt;}
._5{width:3.506347pt;}
._4{width:4.887040pt;}
._6{width:6.032213pt;}
._10{width:7.805440pt;}
._e{width:8.971093pt;}
._d{width:10.611200pt;}
._11{width:11.788800pt;}
._12{width:12.810240pt;}
._17{width:13.772800pt;}
._1b{width:16.486400pt;}
._7{width:17.428480pt;}
._8{width:18.832213pt;}
._f{width:20.100267pt;}
._9{width:21.491200pt;}
._a{width:22.387200pt;}
._b{width:23.375360pt;}
._c{width:24.965120pt;}
._1c{width:26.142720pt;}
._1d{width:27.202560pt;}
._28{width:28.851200pt;}
._21{width:29.865813pt;}
._20{width:30.970880pt;}
._15{width:32.573440pt;}
._14{width:33.561600pt;}
._2e{width:35.210240pt;}
._1e{width:36.505600pt;}
._1f{width:37.909333pt;}
._23{width:39.473493pt;}
._22{width:40.522240pt;}
._26{width:41.523200pt;}
._2b{width:43.217920pt;}
._2a{width:44.866560pt;}
._29{width:45.821440pt;}
._3a{width:46.730667pt;}
._13{width:47.692800pt;}
._27{width:49.707520pt;}
._19{width:50.813440pt;}
._1a{width:52.011520pt;}
._36{width:53.463040pt;}
._3f{width:54.695253pt;}
._41{width:55.625387pt;}
._24{width:56.583680pt;}
._25{width:57.810773pt;}
._42{width:59.148800pt;}
._3d{width:60.251307pt;}
._2d{width:61.189120pt;}
._18{width:63.943680pt;}
._31{width:64.876373pt;}
._2f{width:65.840640pt;}
._30{width:67.113813pt;}
._39{width:68.964693pt;}
._3b{width:74.989227pt;}
._3c{width:76.686080pt;}
._3e{width:79.153493pt;}
._2c{width:80.247467pt;}
._37{width:88.378880pt;}
._38{width:89.312853pt;}
._40{width:90.575360pt;}
._34{width:103.275520pt;}
._35{width:104.401920pt;}
._32{width:118.637227pt;}
._33{width:120.341333pt;}
._2{width:854.826667pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:117.120000pt;}
.yf{bottom:-95.866667pt;}
.ye{bottom:-61.946667pt;}
.yd{bottom:-26.560000pt;}
.yc{bottom:-9.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:4.800000pt;}
.y8{bottom:9.600000pt;}
.y36{bottom:18.240000pt;}
.ya{bottom:18.560000pt;}
.y35{bottom:32.960000pt;}
.y37{bottom:43.040000pt;}
.y38{bottom:43.200000pt;}
.y6{bottom:45.920000pt;}
.y34{bottom:47.200000pt;}
.y7{bottom:47.360000pt;}
.y5{bottom:61.312000pt;}
.y152{bottom:77.472000pt;}
.yc5{bottom:78.752000pt;}
.y137{bottom:80.032000pt;}
.yfc{bottom:81.312000pt;}
.y7c{bottom:84.672000pt;}
.y30{bottom:86.752000pt;}
.yc9{bottom:88.672000pt;}
.yd6{bottom:89.152000pt;}
.y99{bottom:92.672000pt;}
.y55{bottom:94.592000pt;}
.ya6{bottom:101.312000pt;}
.y151{bottom:102.752000pt;}
.yc4{bottom:104.032000pt;}
.y146{bottom:105.312000pt;}
.y136{bottom:105.472000pt;}
.yfb{bottom:106.592000pt;}
.y7b{bottom:109.952000pt;}
.y2f{bottom:112.032000pt;}
.yc8{bottom:113.952000pt;}
.yd5{bottom:114.432000pt;}
.y98{bottom:117.952000pt;}
.y54{bottom:119.872000pt;}
.ya5{bottom:126.592000pt;}
.y150{bottom:128.192000pt;}
.yc3{bottom:129.312000pt;}
.y145{bottom:130.592000pt;}
.y135{bottom:131.872000pt;}
.yfa{bottom:132.032000pt;}
.y7a{bottom:135.226667pt;}
.y2e{bottom:137.306667pt;}
.y9c{bottom:139.226667pt;}
.yd4{bottom:139.706667pt;}
.y97{bottom:143.226667pt;}
.y53{bottom:145.306667pt;}
.ya4{bottom:151.866667pt;}
.yc2{bottom:154.266667pt;}
.y11a{bottom:154.586667pt;}
.y144{bottom:156.026667pt;}
.y134{bottom:157.146667pt;}
.yf9{bottom:158.426667pt;}
.y79{bottom:160.506667pt;}
.y2d{bottom:162.586667pt;}
.y5f{bottom:164.666667pt;}
.y96{bottom:168.506667pt;}
.y52{bottom:170.266667pt;}
.ya3{bottom:177.146667pt;}
.yc1{bottom:179.866667pt;}
.y133{bottom:182.426667pt;}
.yf8{bottom:183.706667pt;}
.y78{bottom:185.786667pt;}
.y2c{bottom:187.866667pt;}
.y5e{bottom:189.946667pt;}
.yd3{bottom:190.266667pt;}
.y51{bottom:192.346667pt;}
.y95{bottom:193.786667pt;}
.ya2{bottom:202.426667pt;}
.yc0{bottom:205.146667pt;}
.y119{bottom:205.306667pt;}
.y132{bottom:207.706667pt;}
.yf7{bottom:208.986667pt;}
.y77{bottom:211.066667pt;}
.y2b{bottom:213.146667pt;}
.yda{bottom:214.906667pt;}
.y5d{bottom:215.226667pt;}
.yd2{bottom:215.546667pt;}
.y94{bottom:218.746667pt;}
.ya1{bottom:227.706667pt;}
.ybf{bottom:230.426667pt;}
.y14f{bottom:230.586667pt;}
.y118{bottom:231.706667pt;}
.y131{bottom:232.986667pt;}
.yf6{bottom:234.266667pt;}
.y76{bottom:236.506667pt;}
.y2a{bottom:238.426667pt;}
.yd9{bottom:240.186667pt;}
.y5c{bottom:240.506667pt;}
.yd1{bottom:240.986667pt;}
.y93{bottom:244.506667pt;}
.ya0{bottom:252.666667pt;}
.ybe{bottom:255.706667pt;}
.y117{bottom:257.146667pt;}
.y143{bottom:258.266667pt;}
.y130{bottom:258.426667pt;}
.yf5{bottom:259.546667pt;}
.y75{bottom:261.786667pt;}
.y29{bottom:263.866667pt;}
.yc7{bottom:265.466667pt;}
.y5b{bottom:265.786667pt;}
.yd0{bottom:266.266667pt;}
.y92{bottom:269.786667pt;}
.y9f{bottom:274.906667pt;}
.ybd{bottom:280.986667pt;}
.y116{bottom:282.466667pt;}
.y142{bottom:283.746667pt;}
.y12f{bottom:284.866667pt;}
.yf4{bottom:285.026667pt;}
.y74{bottom:287.106667pt;}
.y28{bottom:289.186667pt;}
.yde{bottom:290.786667pt;}
.y5a{bottom:291.106667pt;}
.ycf{bottom:291.586667pt;}
.y91{bottom:295.106667pt;}
.ybc{bottom:306.466667pt;}
.y115{bottom:307.906667pt;}
.y12e{bottom:310.146667pt;}
.yf3{bottom:311.426667pt;}
.y73{bottom:312.386667pt;}
.y27{bottom:314.466667pt;}
.y59{bottom:316.386667pt;}
.yce{bottom:316.866667pt;}
.y90{bottom:320.386667pt;}
.ybb{bottom:331.746667pt;}
.y114{bottom:334.306667pt;}
.y12d{bottom:335.426667pt;}
.yf2{bottom:336.706667pt;}
.y72{bottom:337.666667pt;}
.y26{bottom:339.746667pt;}
.y58{bottom:341.666667pt;}
.ycd{bottom:342.146667pt;}
.y8f{bottom:345.666667pt;}
.yba{bottom:357.026667pt;}
.y113{bottom:359.586667pt;}
.y12c{bottom:360.866667pt;}
.yf1{bottom:361.986667pt;}
.y71{bottom:362.946667pt;}
.y25{bottom:365.026667pt;}
.yd8{bottom:366.626667pt;}
.y57{bottom:366.946667pt;}
.ycc{bottom:367.106667pt;}
.y8e{bottom:370.946667pt;}
.yb9{bottom:382.306667pt;}
.y112{bottom:384.866667pt;}
.y12b{bottom:386.146667pt;}
.yf0{bottom:387.426667pt;}
.y70{bottom:388.226667pt;}
.ycb{bottom:389.346667pt;}
.y24{bottom:390.306667pt;}
.y50{bottom:392.386667pt;}
.y8d{bottom:396.226667pt;}
.yb8{bottom:407.586667pt;}
.y111{bottom:410.146667pt;}
.y14e{bottom:410.306667pt;}
.y12a{bottom:411.586667pt;}
.y141{bottom:412.706667pt;}
.y6f{bottom:413.506667pt;}
.yef{bottom:413.826667pt;}
.y23{bottom:415.586667pt;}
.ydd{bottom:417.346667pt;}
.y4f{bottom:417.666667pt;}
.y8c{bottom:421.506667pt;}
.yb7{bottom:432.546667pt;}
.y110{bottom:435.426667pt;}
.y14d{bottom:436.706667pt;}
.y129{bottom:437.986667pt;}
.y6e{bottom:438.786667pt;}
.yee{bottom:439.106667pt;}
.y22{bottom:440.866667pt;}
.y9b{bottom:442.626667pt;}
.y4e{bottom:442.946667pt;}
.y8b{bottom:446.786667pt;}
.yb6{bottom:458.146667pt;}
.y10f{bottom:460.866667pt;}
.y14c{bottom:461.986667pt;}
.y128{bottom:463.266667pt;}
.y6d{bottom:464.226667pt;}
.yed{bottom:464.546667pt;}
.y21{bottom:466.146667pt;}
.y4d{bottom:468.226667pt;}
.y8a{bottom:472.226667pt;}
.yb5{bottom:483.426667pt;}
.y10e{bottom:487.266667pt;}
.y127{bottom:488.546667pt;}
.y140{bottom:488.706667pt;}
.y6c{bottom:489.506667pt;}
.yec{bottom:489.826667pt;}
.y20{bottom:491.586667pt;}
.y4c{bottom:493.506667pt;}
.y89{bottom:497.506667pt;}
.yb4{bottom:508.893333pt;}
.y10d{bottom:512.573333pt;}
.y14b{bottom:512.733333pt;}
.y126{bottom:513.853333pt;}
.y6b{bottom:514.813333pt;}
.yeb{bottom:515.133333pt;}
.y1f{bottom:516.893333pt;}
.ya7{bottom:518.493333pt;}
.y4b{bottom:518.813333pt;}
.y88{bottom:522.813333pt;}
.yb3{bottom:534.173333pt;}
.y10c{bottom:537.853333pt;}
.y14a{bottom:539.133333pt;}
.y125{bottom:539.293333pt;}
.y6a{bottom:540.093333pt;}
.y13f{bottom:540.413333pt;}
.yea{bottom:540.573333pt;}
.y1e{bottom:541.853333pt;}
.y31{bottom:542.173333pt;}
.ydc{bottom:543.773333pt;}
.y4a{bottom:544.093333pt;}
.y87{bottom:548.093333pt;}
.yb2{bottom:559.453333pt;}
.y10b{bottom:563.293333pt;}
.y149{bottom:564.413333pt;}
.y69{bottom:565.373333pt;}
.y124{bottom:565.693333pt;}
.ye9{bottom:566.973333pt;}
.y49{bottom:569.373333pt;}
.y1d{bottom:570.813333pt;}
.y86{bottom:573.373333pt;}
.yb1{bottom:584.733333pt;}
.y10a{bottom:589.693333pt;}
.y68{bottom:590.653333pt;}
.y123{bottom:590.973333pt;}
.ye8{bottom:592.253333pt;}
.ydf{bottom:594.333333pt;}
.y48{bottom:594.653333pt;}
.y1c{bottom:596.093333pt;}
.y85{bottom:598.653333pt;}
.yb0{bottom:610.013333pt;}
.y109{bottom:614.973333pt;}
.y148{bottom:615.133333pt;}
.y67{bottom:615.933333pt;}
.y122{bottom:616.253333pt;}
.y13e{bottom:616.413333pt;}
.ye7{bottom:617.533333pt;}
.y47{bottom:620.093333pt;}
.y1b{bottom:621.373333pt;}
.y84{bottom:623.933333pt;}
.yaf{bottom:635.293333pt;}
.y108{bottom:640.413333pt;}
.y66{bottom:641.213333pt;}
.y121{bottom:641.533333pt;}
.ye6{bottom:642.813333pt;}
.y46{bottom:645.373333pt;}
.y1a{bottom:646.653333pt;}
.y83{bottom:648.893333pt;}
.yae{bottom:660.573333pt;}
.y107{bottom:665.693333pt;}
.y65{bottom:666.493333pt;}
.y120{bottom:666.813333pt;}
.y13d{bottom:668.093333pt;}
.ye5{bottom:668.253333pt;}
.ydb{bottom:670.333333pt;}
.y45{bottom:670.653333pt;}
.y19{bottom:671.933333pt;}
.y82{bottom:674.493333pt;}
.yad{bottom:685.853333pt;}
.y64{bottom:691.933333pt;}
.y106{bottom:692.253333pt;}
.y13c{bottom:693.373333pt;}
.ye4{bottom:694.653333pt;}
.yd7{bottom:695.613333pt;}
.y44{bottom:695.933333pt;}
.y18{bottom:697.213333pt;}
.y81{bottom:699.933333pt;}
.yac{bottom:710.813333pt;}
.y63{bottom:717.213333pt;}
.y105{bottom:717.533333pt;}
.y13b{bottom:718.653333pt;}
.ye3{bottom:719.933333pt;}
.y43{bottom:721.213333pt;}
.y17{bottom:722.493333pt;}
.y80{bottom:725.213333pt;}
.yab{bottom:736.293333pt;}
.y62{bottom:742.533333pt;}
.y104{bottom:742.853333pt;}
.y147{bottom:743.013333pt;}
.y11f{bottom:744.133333pt;}
.ye2{bottom:745.253333pt;}
.y42{bottom:746.533333pt;}
.y16{bottom:747.813333pt;}
.y7f{bottom:750.533333pt;}
.yaa{bottom:761.573333pt;}
.y61{bottom:767.493333pt;}
.y156{bottom:768.133333pt;}
.y103{bottom:768.293333pt;}
.y11e{bottom:769.413333pt;}
.ye1{bottom:770.533333pt;}
.y9e{bottom:771.493333pt;}
.y41{bottom:771.813333pt;}
.y15{bottom:773.253333pt;}
.y7e{bottom:775.813333pt;}
.ya9{bottom:786.853333pt;}
.y60{bottom:789.573333pt;}
.y155{bottom:793.573333pt;}
.y102{bottom:794.693333pt;}
.ye0{bottom:795.973333pt;}
.y56{bottom:796.773333pt;}
.y40{bottom:797.093333pt;}
.y7d{bottom:797.573333pt;}
.y14{bottom:803.813333pt;}
.ya8{bottom:808.933333pt;}
.y101{bottom:819.973333pt;}
.y13a{bottom:821.253333pt;}
.yc6{bottom:822.053333pt;}
.y3f{bottom:822.373333pt;}
.y13{bottom:829.093333pt;}
.y154{bottom:845.253333pt;}
.y100{bottom:845.413333pt;}
.y139{bottom:846.533333pt;}
.y3e{bottom:847.813333pt;}
.y12{bottom:854.373333pt;}
.y153{bottom:870.693333pt;}
.yff{bottom:871.813333pt;}
.y9a{bottom:872.773333pt;}
.y3d{bottom:873.093333pt;}
.y11{bottom:879.653333pt;}
.yfe{bottom:897.093333pt;}
.y138{bottom:897.253333pt;}
.y3c{bottom:898.373333pt;}
.y10{bottom:899.333333pt;}
.y4{bottom:918.053333pt;}
.y11d{bottom:922.373333pt;}
.yfd{bottom:922.533333pt;}
.yca{bottom:923.333333pt;}
.y3b{bottom:923.653333pt;}
.y3{bottom:935.813333pt;}
.y11c{bottom:947.653333pt;}
.y3a{bottom:948.933333pt;}
.y2{bottom:953.440000pt;}
.y11b{bottom:973.120000pt;}
.y9d{bottom:973.920000pt;}
.y39{bottom:974.240000pt;}
.y1{bottom:984.320000pt;}
.y33{bottom:990.560000pt;}
.y9{bottom:1005.600000pt;}
.y32{bottom:1005.920000pt;}
.h6{height:29.760000pt;}
.hb{height:36.667500pt;}
.h1{height:42.707500pt;}
.he{height:47.085938pt;}
.hd{height:47.742188pt;}
.h7{height:48.375000pt;}
.h2{height:52.108438pt;}
.hc{height:52.785000pt;}
.h11{height:53.937500pt;}
.h9{height:56.017500pt;}
.h3{height:57.787500pt;}
.ha{height:59.340000pt;}
.h8{height:64.500000pt;}
.h5{height:64.500010pt;}
.h13{height:65.781915pt;}
.h12{height:98.705634pt;}
.h10{height:98.705643pt;}
.h4{height:148.666667pt;}
.hf{height:238.786667pt;}
.h0{height:1056.000000pt;}
.w7{width:19.200000pt;}
.w2{width:21.280000pt;}
.w6{width:34.240000pt;}
.w5{width:35.200000pt;}
.w4{width:35.360000pt;}
.w3{width:321.186667pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x7{left:9.600000pt;}
.xb{left:13.440000pt;}
.x4{left:16.160000pt;}
.xa{left:28.160000pt;}
.x2{left:47.999988pt;}
.xe{left:71.999988pt;}
.x1{left:108.831988pt;}
.x6{left:116.320000pt;}
.xc{left:384.066655pt;}
.x8{left:432.093321pt;}
.xd{left:456.093321pt;}
.x5{left:463.133333pt;}
.xf{left:768.133321pt;}
.x9{left:774.400000pt;}
.x3{left:778.720000pt;}
}




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