
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ef30c866b7dead351ad74f62.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_33c707230c7440c5c363a9b0.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_1f2e8848915ae98eebc5b7b5.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_008c043849a528c7774dd89d.woff2')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7339416d8bded83fed2421d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_c9feb7bc54c3b975a05d8f1f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_e1524d803e32ce0ee79aab0e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_47740d125cc183807805a46c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_714670c00dacc1b43f34407b.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.982910;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v5{vertical-align:-2.160000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.160000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lse{letter-spacing:-0.786000px;}
.ls6{letter-spacing:-0.463800px;}
.ls23{letter-spacing:-0.240600px;}
.ls29{letter-spacing:-0.186600px;}
.ls10{letter-spacing:-0.078000px;}
.ls8{letter-spacing:-0.064800px;}
.lsf{letter-spacing:-0.058320px;}
.ls1a{letter-spacing:-0.040320px;}
.ls5{letter-spacing:0.000000px;}
.ls25{letter-spacing:0.023760px;}
.ls26{letter-spacing:0.025200px;}
.ls2c{letter-spacing:0.060600px;}
.ls12{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.174000px;}
.ls3{letter-spacing:0.174240px;}
.ls7{letter-spacing:0.175200px;}
.ls9{letter-spacing:0.306000px;}
.ls28{letter-spacing:0.348600px;}
.ls1e{letter-spacing:0.399600px;}
.ls2b{letter-spacing:0.479520px;}
.lsb{letter-spacing:0.617760px;}
.ls27{letter-spacing:0.637200px;}
.ls24{letter-spacing:1.026000px;}
.ls20{letter-spacing:1.095600px;}
.ls1c{letter-spacing:1.119600px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls21{letter-spacing:1.299600px;}
.ls1b{letter-spacing:1.330560px;}
.ls1d{letter-spacing:1.697760px;}
.ls1f{letter-spacing:1.917360px;}
.ls1{letter-spacing:2.016000px;}
.ls17{letter-spacing:2.050560px;}
.ls16{letter-spacing:2.059200px;}
.ls22{letter-spacing:14.079600px;}
.ls19{letter-spacing:16.559280px;}
.ls18{letter-spacing:17.679600px;}
.lsa{letter-spacing:19.386720px;}
.ls15{letter-spacing:31.626720px;}
.ls2a{letter-spacing:42.426720px;}
.ls11{letter-spacing:45.306720px;}
.ls13{letter-spacing:55.362720px;}
.lsd{letter-spacing:64.026720px;}
.ls14{letter-spacing:64.170720px;}
.ls4{letter-spacing:121.854240px;}
.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;}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.ws10{word-spacing:-13.854360px;}
.ws5{word-spacing:-13.811760px;}
.wsf{word-spacing:-13.529520px;}
.ws6{word-spacing:-13.505760px;}
.ws8{word-spacing:-13.447440px;}
.ws12{word-spacing:-13.440960px;}
.ws9{word-spacing:-13.427760px;}
.ws11{word-spacing:-13.319160px;}
.wsb{word-spacing:-13.147200px;}
.wsc{word-spacing:-13.106880px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.wsd{word-spacing:-3.078000px;}
.ws7{word-spacing:0.000000px;}
.wse{word-spacing:0.532080px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-581.177760px;}
._11{margin-left:-4.783680px;}
._6{margin-left:-3.312000px;}
._10{margin-left:-2.262480px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._7{width:3.211440px;}
._9{width:4.384320px;}
._a{width:6.051120px;}
._c{width:8.007840px;}
._b{width:9.322560px;}
._e{width:10.700640px;}
._d{width:12.011760px;}
._8{width:14.541600px;}
._12{width:15.955920px;}
._17{width:17.369040px;}
._1b{width:19.163040px;}
._1a{width:20.272320px;}
._16{width:21.453840px;}
._15{width:22.469760px;}
._19{width:26.413920px;}
._14{width:33.156720px;}
._18{width:41.055120px;}
._13{width:67.854240px;}
._f{width:121.854240px;}
.fc3{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,255);}
.fc4{color:rgb(68,84,106);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs8{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs7{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.ye6{bottom:6.660000px;}
.yfc{bottom:6.840000px;}
.yfa{bottom:7.020000px;}
.y12a{bottom:7.200000px;}
.yea{bottom:8.820000px;}
.ye2{bottom:11.340000px;}
.yee{bottom:16.020000px;}
.ye4{bottom:17.280000px;}
.yba{bottom:18.540000px;}
.ybe{bottom:18.900000px;}
.ye8{bottom:19.260000px;}
.yec{bottom:26.685000px;}
.ye5{bottom:27.720000px;}
.y129{bottom:28.260000px;}
.ye9{bottom:29.880000px;}
.yb9{bottom:35.100000px;}
.y126{bottom:35.640000px;}
.yed{bottom:37.125000px;}
.ybd{bottom:37.260000px;}
.y128{bottom:49.680000px;}
.ybc{bottom:55.620000px;}
.y6{bottom:60.336000px;}
.y127{bottom:70.734000px;}
.yf6{bottom:93.276000px;}
.yb7{bottom:94.716000px;}
.y125{bottom:95.256000px;}
.y94{bottom:97.956000px;}
.y62{bottom:109.476000px;}
.yf5{bottom:114.336000px;}
.yb6{bottom:115.056000px;}
.y124{bottom:116.316000px;}
.y93{bottom:119.016000px;}
.y61{bottom:131.256000px;}
.yf4{bottom:135.396000px;}
.yb5{bottom:135.936000px;}
.y123{bottom:137.376000px;}
.y30{bottom:138.096000px;}
.y92{bottom:140.256000px;}
.y60{bottom:152.490000px;}
.yf3{bottom:156.450000px;}
.yb4{bottom:156.990000px;}
.y122{bottom:158.430000px;}
.y2f{bottom:159.150000px;}
.y91{bottom:162.030000px;}
.y5f{bottom:174.270000px;}
.yf2{bottom:177.510000px;}
.yb3{bottom:178.050000px;}
.y121{bottom:179.490000px;}
.y2e{bottom:180.210000px;}
.y90{bottom:183.990000px;}
.y5e{bottom:196.050000px;}
.yf1{bottom:198.570000px;}
.yb2{bottom:199.110000px;}
.y120{bottom:200.550000px;}
.y2d{bottom:201.270000px;}
.y8f{bottom:205.770000px;}
.y5d{bottom:218.010000px;}
.yf0{bottom:219.630000px;}
.yb1{bottom:220.170000px;}
.y11f{bottom:221.610000px;}
.y2c{bottom:222.330000px;}
.y8e{bottom:227.550000px;}
.y5c{bottom:239.790000px;}
.yef{bottom:240.690000px;}
.y11e{bottom:242.670000px;}
.y2b{bottom:243.390000px;}
.y8d{bottom:248.610000px;}
.yb0{bottom:250.230000px;}
.yeb{bottom:255.090000px;}
.y5b{bottom:260.850000px;}
.y11d{bottom:263.730000px;}
.y2a{bottom:264.450000px;}
.y8c{bottom:269.670000px;}
.yaf{bottom:271.290000px;}
.y11c{bottom:284.835000px;}
.y29{bottom:285.555000px;}
.y8b{bottom:290.775000px;}
.y5a{bottom:290.955000px;}
.yae{bottom:292.395000px;}
.y11b{bottom:305.895000px;}
.y28{bottom:306.615000px;}
.y59{bottom:312.015000px;}
.yad{bottom:313.455000px;}
.ye7{bottom:316.155000px;}
.y8a{bottom:320.835000px;}
.y11a{bottom:326.955000px;}
.y27{bottom:327.675000px;}
.y58{bottom:333.075000px;}
.yac{bottom:334.515000px;}
.y89{bottom:341.895000px;}
.y119{bottom:348.015000px;}
.y26{bottom:348.735000px;}
.y57{bottom:354.135000px;}
.yab{bottom:355.575000px;}
.ye3{bottom:362.415000px;}
.y88{bottom:362.955000px;}
.y118{bottom:369.075000px;}
.y25{bottom:369.795000px;}
.y56{bottom:375.195000px;}
.yaa{bottom:376.635000px;}
.y87{bottom:384.015000px;}
.y117{bottom:390.135000px;}
.y24{bottom:390.855000px;}
.ya9{bottom:397.695000px;}
.y86{bottom:405.075000px;}
.y55{bottom:405.255000px;}
.ye1{bottom:405.435000px;}
.y116{bottom:411.195000px;}
.y23{bottom:411.915000px;}
.ya8{bottom:418.755000px;}
.y54{bottom:426.315000px;}
.y115{bottom:432.075000px;}
.y22{bottom:432.795000px;}
.y85{bottom:435.135000px;}
.ya7{bottom:439.815000px;}
.ye0{bottom:442.515000px;}
.y53{bottom:447.375000px;}
.y114{bottom:453.135000px;}
.y21{bottom:453.855000px;}
.y84{bottom:456.195000px;}
.ya6{bottom:460.875000px;}
.ydf{bottom:463.575000px;}
.y52{bottom:468.435000px;}
.y113{bottom:474.195000px;}
.y20{bottom:474.915000px;}
.y83{bottom:477.255000px;}
.ya5{bottom:481.935000px;}
.yde{bottom:484.635000px;}
.y51{bottom:489.495000px;}
.y112{bottom:495.255000px;}
.y1f{bottom:495.975000px;}
.y82{bottom:498.315000px;}
.ya4{bottom:502.995000px;}
.ydd{bottom:505.695000px;}
.y50{bottom:510.555000px;}
.y111{bottom:511.995000px;}
.y1e{bottom:517.035000px;}
.y81{bottom:519.375000px;}
.ya3{bottom:524.055000px;}
.ydc{bottom:526.755000px;}
.y4f{bottom:531.615000px;}
.y110{bottom:533.955000px;}
.y80{bottom:540.435000px;}
.y1d{bottom:540.615000px;}
.ydb{bottom:547.815000px;}
.y4e{bottom:552.675000px;}
.ya2{bottom:554.115000px;}
.y10f{bottom:555.375000px;}
.y7f{bottom:561.495000px;}
.yda{bottom:568.905000px;}
.y1c{bottom:570.525000px;}
.y4d{bottom:573.765000px;}
.ya1{bottom:575.205000px;}
.y10e{bottom:576.645000px;}
.y7e{bottom:582.585000px;}
.yd9{bottom:589.965000px;}
.y1b{bottom:591.585000px;}
.y4c{bottom:594.825000px;}
.ya0{bottom:596.265000px;}
.y10d{bottom:597.885000px;}
.y7d{bottom:603.645000px;}
.yd8{bottom:611.025000px;}
.y1a{bottom:612.645000px;}
.y4b{bottom:615.885000px;}
.y9f{bottom:617.325000px;}
.y10c{bottom:619.305000px;}
.y7c{bottom:624.705000px;}
.yd7{bottom:632.085000px;}
.y19{bottom:633.705000px;}
.y4a{bottom:636.945000px;}
.y10b{bottom:641.085000px;}
.y7b{bottom:645.765000px;}
.y9e{bottom:647.385000px;}
.yd6{bottom:653.145000px;}
.y18{bottom:654.765000px;}
.y49{bottom:658.005000px;}
.y7a{bottom:666.825000px;}
.y9d{bottom:668.445000px;}
.y10a{bottom:670.965000px;}
.yd5{bottom:674.205000px;}
.y17{bottom:675.825000px;}
.y48{bottom:679.065000px;}
.y79{bottom:687.885000px;}
.y9c{bottom:690.225000px;}
.y109{bottom:692.025000px;}
.yd4{bottom:695.265000px;}
.y16{bottom:696.885000px;}
.y47{bottom:700.125000px;}
.y78{bottom:708.945000px;}
.y9b{bottom:711.465000px;}
.y108{bottom:713.085000px;}
.yd3{bottom:716.325000px;}
.y15{bottom:717.945000px;}
.y46{bottom:721.005000px;}
.y77{bottom:730.005000px;}
.y9a{bottom:733.245000px;}
.y107{bottom:734.145000px;}
.yd2{bottom:737.385000px;}
.y14{bottom:739.005000px;}
.y45{bottom:742.065000px;}
.y76{bottom:751.065000px;}
.y99{bottom:754.305000px;}
.y106{bottom:755.205000px;}
.yd1{bottom:758.445000px;}
.y13{bottom:760.065000px;}
.y44{bottom:763.125000px;}
.y75{bottom:772.125000px;}
.y105{bottom:776.265000px;}
.yd0{bottom:779.505000px;}
.y12{bottom:781.125000px;}
.y43{bottom:784.185000px;}
.y98{bottom:784.365000px;}
.y74{bottom:793.185000px;}
.y104{bottom:797.325000px;}
.ycf{bottom:800.565000px;}
.y11{bottom:802.185000px;}
.y42{bottom:805.245000px;}
.y97{bottom:805.425000px;}
.y73{bottom:814.245000px;}
.y103{bottom:818.385000px;}
.yce{bottom:821.625000px;}
.y10{bottom:823.245000px;}
.y41{bottom:826.305000px;}
.y96{bottom:826.485000px;}
.y102{bottom:835.125000px;}
.y72{bottom:835.305000px;}
.ycd{bottom:842.685000px;}
.yf{bottom:844.305000px;}
.y40{bottom:847.410000px;}
.y71{bottom:856.410000px;}
.y101{bottom:857.130000px;}
.ycc{bottom:863.790000px;}
.ye{bottom:865.410000px;}
.y3f{bottom:868.470000px;}
.y70{bottom:877.470000px;}
.y100{bottom:878.550000px;}
.ycb{bottom:884.850000px;}
.yd{bottom:886.470000px;}
.y3e{bottom:889.530000px;}
.ybb{bottom:895.290000px;}
.y6f{bottom:898.530000px;}
.yff{bottom:899.790000px;}
.yca{bottom:905.910000px;}
.yc{bottom:907.530000px;}
.y3d{bottom:910.590000px;}
.yb8{bottom:917.250000px;}
.y6e{bottom:919.590000px;}
.yfe{bottom:921.030000px;}
.yc9{bottom:926.970000px;}
.yb{bottom:930.930000px;}
.y3c{bottom:931.650000px;}
.y6d{bottom:940.650000px;}
.yfd{bottom:942.450000px;}
.yc8{bottom:948.030000px;}
.y3b{bottom:952.710000px;}
.ya{bottom:957.030000px;}
.y6c{bottom:961.710000px;}
.yfb{bottom:963.690000px;}
.yc7{bottom:969.090000px;}
.y95{bottom:969.810000px;}
.y9{bottom:973.770000px;}
.y6b{bottom:982.770000px;}
.yf9{bottom:984.930000px;}
.yc6{bottom:991.050000px;}
.y3a{bottom:994.830000px;}
.y8{bottom:996.090000px;}
.y6a{bottom:1003.830000px;}
.yf8{bottom:1006.350000px;}
.yc5{bottom:1012.830000px;}
.y39{bottom:1015.890000px;}
.y7{bottom:1021.290000px;}
.y69{bottom:1024.890000px;}
.yf7{bottom:1028.130000px;}
.yc4{bottom:1033.890000px;}
.y38{bottom:1036.950000px;}
.y68{bottom:1045.770000px;}
.yc3{bottom:1054.770000px;}
.y37{bottom:1058.010000px;}
.y5{bottom:1061.430000px;}
.y67{bottom:1066.830000px;}
.yc2{bottom:1076.010000px;}
.y36{bottom:1079.070000px;}
.y4{bottom:1093.470000px;}
.y66{bottom:1097.070000px;}
.yc1{bottom:1097.790000px;}
.y35{bottom:1100.130000px;}
.y65{bottom:1118.850000px;}
.yc0{bottom:1119.750000px;}
.y34{bottom:1121.190000px;}
.y3{bottom:1125.690000px;}
.y64{bottom:1140.840000px;}
.ybf{bottom:1141.560000px;}
.y33{bottom:1142.280000px;}
.y2{bottom:1157.940000px;}
.y63{bottom:1162.620000px;}
.y32{bottom:1163.340000px;}
.y1{bottom:1192.500000px;}
.y31{bottom:1194.300000px;}
.h19{height:2.864531px;}
.h14{height:21.060000px;}
.h16{height:21.240000px;}
.h17{height:21.276000px;}
.h15{height:21.420000px;}
.hf{height:30.420000px;}
.h7{height:38.671172px;}
.h10{height:42.120000px;}
.h12{height:46.260000px;}
.hc{height:47.880000px;}
.h11{height:48.088125px;}
.hd{height:55.291992px;}
.h2{height:56.146289px;}
.h9{height:59.439023px;}
.h8{height:59.551172px;}
.h13{height:61.056000px;}
.h5{height:61.189805px;}
.ha{height:61.423863px;}
.hb{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.he{height:69.840000px;}
.h18{height:85.140000px;}
.h4{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.we{width:72.180000px;}
.wf{width:87.696000px;}
.w8{width:101.340000px;}
.wa{width:120.996000px;}
.w5{width:121.536000px;}
.wc{width:127.476000px;}
.w6{width:128.196000px;}
.w10{width:157.350000px;}
.w7{width:175.530000px;}
.wb{width:176.250000px;}
.w4{width:191.370000px;}
.wd{width:202.530000px;}
.w3{width:214.950000px;}
.w9{width:217.830000px;}
.w11{width:582.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:5.220000px;}
.x13{left:7.920000px;}
.xd{left:18.900000px;}
.x11{left:23.580000px;}
.xe{left:46.620000px;}
.x1{left:53.999987px;}
.x8{left:65.159987px;}
.x3{left:75.239987px;}
.x2{left:80.999987px;}
.x12{left:87.839987px;}
.x1f{left:96.515987px;}
.xa{left:102.635987px;}
.x4{left:108.035987px;}
.x1d{left:128.375987px;}
.x5{left:135.035987px;}
.x9{left:143.675987px;}
.x6{left:162.029987px;}
.x1e{left:168.869987px;}
.x19{left:186.690000px;}
.x20{left:190.110000px;}
.x14{left:195.870000px;}
.x21{left:256.530000px;}
.x7{left:269.489987px;}
.xc{left:286.995000px;}
.x15{left:324.075000px;}
.xb{left:353.774987px;}
.x18{left:372.135000px;}
.x1a{left:389.235000px;}
.x1b{left:461.415000px;}
.x16{left:499.605000px;}
.xf{left:524.805000px;}
.x1c{left:549.105000px;}
.x17{left:600.945000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v5{vertical-align:-1.920000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.920000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lse{letter-spacing:-0.698667pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls23{letter-spacing:-0.213867pt;}
.ls29{letter-spacing:-0.165867pt;}
.ls10{letter-spacing:-0.069333pt;}
.ls8{letter-spacing:-0.057600pt;}
.lsf{letter-spacing:-0.051840pt;}
.ls1a{letter-spacing:-0.035840pt;}
.ls5{letter-spacing:0.000000pt;}
.ls25{letter-spacing:0.021120pt;}
.ls26{letter-spacing:0.022400pt;}
.ls2c{letter-spacing:0.053867pt;}
.ls12{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154667pt;}
.ls3{letter-spacing:0.154880pt;}
.ls7{letter-spacing:0.155733pt;}
.ls9{letter-spacing:0.272000pt;}
.ls28{letter-spacing:0.309867pt;}
.ls1e{letter-spacing:0.355200pt;}
.ls2b{letter-spacing:0.426240pt;}
.lsb{letter-spacing:0.549120pt;}
.ls27{letter-spacing:0.566400pt;}
.ls24{letter-spacing:0.912000pt;}
.ls20{letter-spacing:0.973867pt;}
.ls1c{letter-spacing:0.995200pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls21{letter-spacing:1.155200pt;}
.ls1b{letter-spacing:1.182720pt;}
.ls1d{letter-spacing:1.509120pt;}
.ls1f{letter-spacing:1.704320pt;}
.ls1{letter-spacing:1.792000pt;}
.ls17{letter-spacing:1.822720pt;}
.ls16{letter-spacing:1.830400pt;}
.ls22{letter-spacing:12.515200pt;}
.ls19{letter-spacing:14.719360pt;}
.ls18{letter-spacing:15.715200pt;}
.lsa{letter-spacing:17.232640pt;}
.ls15{letter-spacing:28.112640pt;}
.ls2a{letter-spacing:37.712640pt;}
.ls11{letter-spacing:40.272640pt;}
.ls13{letter-spacing:49.211307pt;}
.lsd{letter-spacing:56.912640pt;}
.ls14{letter-spacing:57.040640pt;}
.ls4{letter-spacing:108.314880pt;}
.wsa{word-spacing:-53.120000pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws10{word-spacing:-12.314987pt;}
.ws5{word-spacing:-12.277120pt;}
.wsf{word-spacing:-12.026240pt;}
.ws6{word-spacing:-12.005120pt;}
.ws8{word-spacing:-11.953280pt;}
.ws12{word-spacing:-11.947520pt;}
.ws9{word-spacing:-11.935787pt;}
.ws11{word-spacing:-11.839253pt;}
.wsb{word-spacing:-11.686400pt;}
.wsc{word-spacing:-11.650560pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.wsd{word-spacing:-2.736000pt;}
.ws7{word-spacing:0.000000pt;}
.wse{word-spacing:0.472960pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-516.602453pt;}
._11{margin-left:-4.252160pt;}
._6{margin-left:-2.944000pt;}
._10{margin-left:-2.011093pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._7{width:2.854613pt;}
._9{width:3.897173pt;}
._a{width:5.378773pt;}
._c{width:7.118080pt;}
._b{width:8.286720pt;}
._e{width:9.511680pt;}
._d{width:10.677120pt;}
._8{width:12.925867pt;}
._12{width:14.183040pt;}
._17{width:15.439147pt;}
._1b{width:17.033813pt;}
._1a{width:18.019840pt;}
._16{width:19.070080pt;}
._15{width:19.973120pt;}
._19{width:23.479040pt;}
._14{width:29.472640pt;}
._18{width:36.493440pt;}
._13{width:60.314880pt;}
._f{width:108.314880pt;}
.fs8{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs7{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.ye6{bottom:5.920000pt;}
.yfc{bottom:6.080000pt;}
.yfa{bottom:6.240000pt;}
.y12a{bottom:6.400000pt;}
.yea{bottom:7.840000pt;}
.ye2{bottom:10.080000pt;}
.yee{bottom:14.240000pt;}
.ye4{bottom:15.360000pt;}
.yba{bottom:16.480000pt;}
.ybe{bottom:16.800000pt;}
.ye8{bottom:17.120000pt;}
.yec{bottom:23.720000pt;}
.ye5{bottom:24.640000pt;}
.y129{bottom:25.120000pt;}
.ye9{bottom:26.560000pt;}
.yb9{bottom:31.200000pt;}
.y126{bottom:31.680000pt;}
.yed{bottom:33.000000pt;}
.ybd{bottom:33.120000pt;}
.y128{bottom:44.160000pt;}
.ybc{bottom:49.440000pt;}
.y6{bottom:53.632000pt;}
.y127{bottom:62.874667pt;}
.yf6{bottom:82.912000pt;}
.yb7{bottom:84.192000pt;}
.y125{bottom:84.672000pt;}
.y94{bottom:87.072000pt;}
.y62{bottom:97.312000pt;}
.yf5{bottom:101.632000pt;}
.yb6{bottom:102.272000pt;}
.y124{bottom:103.392000pt;}
.y93{bottom:105.792000pt;}
.y61{bottom:116.672000pt;}
.yf4{bottom:120.352000pt;}
.yb5{bottom:120.832000pt;}
.y123{bottom:122.112000pt;}
.y30{bottom:122.752000pt;}
.y92{bottom:124.672000pt;}
.y60{bottom:135.546667pt;}
.yf3{bottom:139.066667pt;}
.yb4{bottom:139.546667pt;}
.y122{bottom:140.826667pt;}
.y2f{bottom:141.466667pt;}
.y91{bottom:144.026667pt;}
.y5f{bottom:154.906667pt;}
.yf2{bottom:157.786667pt;}
.yb3{bottom:158.266667pt;}
.y121{bottom:159.546667pt;}
.y2e{bottom:160.186667pt;}
.y90{bottom:163.546667pt;}
.y5e{bottom:174.266667pt;}
.yf1{bottom:176.506667pt;}
.yb2{bottom:176.986667pt;}
.y120{bottom:178.266667pt;}
.y2d{bottom:178.906667pt;}
.y8f{bottom:182.906667pt;}
.y5d{bottom:193.786667pt;}
.yf0{bottom:195.226667pt;}
.yb1{bottom:195.706667pt;}
.y11f{bottom:196.986667pt;}
.y2c{bottom:197.626667pt;}
.y8e{bottom:202.266667pt;}
.y5c{bottom:213.146667pt;}
.yef{bottom:213.946667pt;}
.y11e{bottom:215.706667pt;}
.y2b{bottom:216.346667pt;}
.y8d{bottom:220.986667pt;}
.yb0{bottom:222.426667pt;}
.yeb{bottom:226.746667pt;}
.y5b{bottom:231.866667pt;}
.y11d{bottom:234.426667pt;}
.y2a{bottom:235.066667pt;}
.y8c{bottom:239.706667pt;}
.yaf{bottom:241.146667pt;}
.y11c{bottom:253.186667pt;}
.y29{bottom:253.826667pt;}
.y8b{bottom:258.466667pt;}
.y5a{bottom:258.626667pt;}
.yae{bottom:259.906667pt;}
.y11b{bottom:271.906667pt;}
.y28{bottom:272.546667pt;}
.y59{bottom:277.346667pt;}
.yad{bottom:278.626667pt;}
.ye7{bottom:281.026667pt;}
.y8a{bottom:285.186667pt;}
.y11a{bottom:290.626667pt;}
.y27{bottom:291.266667pt;}
.y58{bottom:296.066667pt;}
.yac{bottom:297.346667pt;}
.y89{bottom:303.906667pt;}
.y119{bottom:309.346667pt;}
.y26{bottom:309.986667pt;}
.y57{bottom:314.786667pt;}
.yab{bottom:316.066667pt;}
.ye3{bottom:322.146667pt;}
.y88{bottom:322.626667pt;}
.y118{bottom:328.066667pt;}
.y25{bottom:328.706667pt;}
.y56{bottom:333.506667pt;}
.yaa{bottom:334.786667pt;}
.y87{bottom:341.346667pt;}
.y117{bottom:346.786667pt;}
.y24{bottom:347.426667pt;}
.ya9{bottom:353.506667pt;}
.y86{bottom:360.066667pt;}
.y55{bottom:360.226667pt;}
.ye1{bottom:360.386667pt;}
.y116{bottom:365.506667pt;}
.y23{bottom:366.146667pt;}
.ya8{bottom:372.226667pt;}
.y54{bottom:378.946667pt;}
.y115{bottom:384.066667pt;}
.y22{bottom:384.706667pt;}
.y85{bottom:386.786667pt;}
.ya7{bottom:390.946667pt;}
.ye0{bottom:393.346667pt;}
.y53{bottom:397.666667pt;}
.y114{bottom:402.786667pt;}
.y21{bottom:403.426667pt;}
.y84{bottom:405.506667pt;}
.ya6{bottom:409.666667pt;}
.ydf{bottom:412.066667pt;}
.y52{bottom:416.386667pt;}
.y113{bottom:421.506667pt;}
.y20{bottom:422.146667pt;}
.y83{bottom:424.226667pt;}
.ya5{bottom:428.386667pt;}
.yde{bottom:430.786667pt;}
.y51{bottom:435.106667pt;}
.y112{bottom:440.226667pt;}
.y1f{bottom:440.866667pt;}
.y82{bottom:442.946667pt;}
.ya4{bottom:447.106667pt;}
.ydd{bottom:449.506667pt;}
.y50{bottom:453.826667pt;}
.y111{bottom:455.106667pt;}
.y1e{bottom:459.586667pt;}
.y81{bottom:461.666667pt;}
.ya3{bottom:465.826667pt;}
.ydc{bottom:468.226667pt;}
.y4f{bottom:472.546667pt;}
.y110{bottom:474.626667pt;}
.y80{bottom:480.386667pt;}
.y1d{bottom:480.546667pt;}
.ydb{bottom:486.946667pt;}
.y4e{bottom:491.266667pt;}
.ya2{bottom:492.546667pt;}
.y10f{bottom:493.666667pt;}
.y7f{bottom:499.106667pt;}
.yda{bottom:505.693333pt;}
.y1c{bottom:507.133333pt;}
.y4d{bottom:510.013333pt;}
.ya1{bottom:511.293333pt;}
.y10e{bottom:512.573333pt;}
.y7e{bottom:517.853333pt;}
.yd9{bottom:524.413333pt;}
.y1b{bottom:525.853333pt;}
.y4c{bottom:528.733333pt;}
.ya0{bottom:530.013333pt;}
.y10d{bottom:531.453333pt;}
.y7d{bottom:536.573333pt;}
.yd8{bottom:543.133333pt;}
.y1a{bottom:544.573333pt;}
.y4b{bottom:547.453333pt;}
.y9f{bottom:548.733333pt;}
.y10c{bottom:550.493333pt;}
.y7c{bottom:555.293333pt;}
.yd7{bottom:561.853333pt;}
.y19{bottom:563.293333pt;}
.y4a{bottom:566.173333pt;}
.y10b{bottom:569.853333pt;}
.y7b{bottom:574.013333pt;}
.y9e{bottom:575.453333pt;}
.yd6{bottom:580.573333pt;}
.y18{bottom:582.013333pt;}
.y49{bottom:584.893333pt;}
.y7a{bottom:592.733333pt;}
.y9d{bottom:594.173333pt;}
.y10a{bottom:596.413333pt;}
.yd5{bottom:599.293333pt;}
.y17{bottom:600.733333pt;}
.y48{bottom:603.613333pt;}
.y79{bottom:611.453333pt;}
.y9c{bottom:613.533333pt;}
.y109{bottom:615.133333pt;}
.yd4{bottom:618.013333pt;}
.y16{bottom:619.453333pt;}
.y47{bottom:622.333333pt;}
.y78{bottom:630.173333pt;}
.y9b{bottom:632.413333pt;}
.y108{bottom:633.853333pt;}
.yd3{bottom:636.733333pt;}
.y15{bottom:638.173333pt;}
.y46{bottom:640.893333pt;}
.y77{bottom:648.893333pt;}
.y9a{bottom:651.773333pt;}
.y107{bottom:652.573333pt;}
.yd2{bottom:655.453333pt;}
.y14{bottom:656.893333pt;}
.y45{bottom:659.613333pt;}
.y76{bottom:667.613333pt;}
.y99{bottom:670.493333pt;}
.y106{bottom:671.293333pt;}
.yd1{bottom:674.173333pt;}
.y13{bottom:675.613333pt;}
.y44{bottom:678.333333pt;}
.y75{bottom:686.333333pt;}
.y105{bottom:690.013333pt;}
.yd0{bottom:692.893333pt;}
.y12{bottom:694.333333pt;}
.y43{bottom:697.053333pt;}
.y98{bottom:697.213333pt;}
.y74{bottom:705.053333pt;}
.y104{bottom:708.733333pt;}
.ycf{bottom:711.613333pt;}
.y11{bottom:713.053333pt;}
.y42{bottom:715.773333pt;}
.y97{bottom:715.933333pt;}
.y73{bottom:723.773333pt;}
.y103{bottom:727.453333pt;}
.yce{bottom:730.333333pt;}
.y10{bottom:731.773333pt;}
.y41{bottom:734.493333pt;}
.y96{bottom:734.653333pt;}
.y102{bottom:742.333333pt;}
.y72{bottom:742.493333pt;}
.ycd{bottom:749.053333pt;}
.yf{bottom:750.493333pt;}
.y40{bottom:753.253333pt;}
.y71{bottom:761.253333pt;}
.y101{bottom:761.893333pt;}
.ycc{bottom:767.813333pt;}
.ye{bottom:769.253333pt;}
.y3f{bottom:771.973333pt;}
.y70{bottom:779.973333pt;}
.y100{bottom:780.933333pt;}
.ycb{bottom:786.533333pt;}
.yd{bottom:787.973333pt;}
.y3e{bottom:790.693333pt;}
.ybb{bottom:795.813333pt;}
.y6f{bottom:798.693333pt;}
.yff{bottom:799.813333pt;}
.yca{bottom:805.253333pt;}
.yc{bottom:806.693333pt;}
.y3d{bottom:809.413333pt;}
.yb8{bottom:815.333333pt;}
.y6e{bottom:817.413333pt;}
.yfe{bottom:818.693333pt;}
.yc9{bottom:823.973333pt;}
.yb{bottom:827.493333pt;}
.y3c{bottom:828.133333pt;}
.y6d{bottom:836.133333pt;}
.yfd{bottom:837.733333pt;}
.yc8{bottom:842.693333pt;}
.y3b{bottom:846.853333pt;}
.ya{bottom:850.693333pt;}
.y6c{bottom:854.853333pt;}
.yfb{bottom:856.613333pt;}
.yc7{bottom:861.413333pt;}
.y95{bottom:862.053333pt;}
.y9{bottom:865.573333pt;}
.y6b{bottom:873.573333pt;}
.yf9{bottom:875.493333pt;}
.yc6{bottom:880.933333pt;}
.y3a{bottom:884.293333pt;}
.y8{bottom:885.413333pt;}
.y6a{bottom:892.293333pt;}
.yf8{bottom:894.533333pt;}
.yc5{bottom:900.293333pt;}
.y39{bottom:903.013333pt;}
.y7{bottom:907.813333pt;}
.y69{bottom:911.013333pt;}
.yf7{bottom:913.893333pt;}
.yc4{bottom:919.013333pt;}
.y38{bottom:921.733333pt;}
.y68{bottom:929.573333pt;}
.yc3{bottom:937.573333pt;}
.y37{bottom:940.453333pt;}
.y5{bottom:943.493333pt;}
.y67{bottom:948.293333pt;}
.yc2{bottom:956.453333pt;}
.y36{bottom:959.173333pt;}
.y4{bottom:971.973333pt;}
.y66{bottom:975.173333pt;}
.yc1{bottom:975.813333pt;}
.y35{bottom:977.893333pt;}
.y65{bottom:994.533333pt;}
.yc0{bottom:995.333333pt;}
.y34{bottom:996.613333pt;}
.y3{bottom:1000.613333pt;}
.y64{bottom:1014.080000pt;}
.ybf{bottom:1014.720000pt;}
.y33{bottom:1015.360000pt;}
.y2{bottom:1029.280000pt;}
.y63{bottom:1033.440000pt;}
.y32{bottom:1034.080000pt;}
.y1{bottom:1060.000000pt;}
.y31{bottom:1061.600000pt;}
.h19{height:2.546250pt;}
.h14{height:18.720000pt;}
.h16{height:18.880000pt;}
.h17{height:18.912000pt;}
.h15{height:19.040000pt;}
.hf{height:27.040000pt;}
.h7{height:34.374375pt;}
.h10{height:37.440000pt;}
.h12{height:41.120000pt;}
.hc{height:42.560000pt;}
.h11{height:42.745000pt;}
.hd{height:49.148438pt;}
.h2{height:49.907812pt;}
.h9{height:52.834688pt;}
.h8{height:52.934375pt;}
.h13{height:54.272000pt;}
.h5{height:54.390938pt;}
.ha{height:54.598989pt;}
.hb{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.he{height:62.080000pt;}
.h18{height:75.680000pt;}
.h4{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.we{width:64.160000pt;}
.wf{width:77.952000pt;}
.w8{width:90.080000pt;}
.wa{width:107.552000pt;}
.w5{width:108.032000pt;}
.wc{width:113.312000pt;}
.w6{width:113.952000pt;}
.w10{width:139.866667pt;}
.w7{width:156.026667pt;}
.wb{width:156.666667pt;}
.w4{width:170.106667pt;}
.wd{width:180.026667pt;}
.w3{width:191.066667pt;}
.w9{width:193.626667pt;}
.w11{width:517.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:4.640000pt;}
.x13{left:7.040000pt;}
.xd{left:16.800000pt;}
.x11{left:20.960000pt;}
.xe{left:41.440000pt;}
.x1{left:47.999988pt;}
.x8{left:57.919988pt;}
.x3{left:66.879988pt;}
.x2{left:71.999988pt;}
.x12{left:78.079988pt;}
.x1f{left:85.791988pt;}
.xa{left:91.231988pt;}
.x4{left:96.031988pt;}
.x1d{left:114.111988pt;}
.x5{left:120.031988pt;}
.x9{left:127.711988pt;}
.x6{left:144.026655pt;}
.x1e{left:150.106655pt;}
.x19{left:165.946667pt;}
.x20{left:168.986667pt;}
.x14{left:174.106667pt;}
.x21{left:228.026667pt;}
.x7{left:239.546655pt;}
.xc{left:255.106667pt;}
.x15{left:288.066667pt;}
.xb{left:314.466655pt;}
.x18{left:330.786667pt;}
.x1a{left:345.986667pt;}
.x1b{left:410.146667pt;}
.x16{left:444.093333pt;}
.xf{left:466.493333pt;}
.x1c{left:488.093333pt;}
.x17{left:534.173333pt;}
}




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