
    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_045618ce1da63f0a97dc6242.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_5a39f7b737943e2d9cf47a8a.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1d6c91ba259b2a45a4b60b5c.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_78845f5615890a98a723fb0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.051758;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_70410c5747c8e161e09c70b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.051758;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_c6757094794e633c07a6cd1d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.080566;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_a6c7790a852903ae1163de0d.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8a74694058727b28ebd602c3.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.064453;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_795d0b9d9cbf261f72a0255d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.172363;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_58f395872eb1ec3d507c6a28.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v5{vertical-align:-126.000000px;}
.v4{vertical-align:-69.120000px;}
.v3{vertical-align:-67.680000px;}
.v1{vertical-align:-65.520000px;}
.v2{vertical-align:-11.520000px;}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-2.160000px;}
.ls4a{letter-spacing:-1.956000px;}
.ls23{letter-spacing:-1.704000px;}
.ls3a{letter-spacing:-1.494000px;}
.ls1b{letter-spacing:-1.440000px;}
.ls3d{letter-spacing:-1.386000px;}
.ls3c{letter-spacing:-1.260000px;}
.ls3e{letter-spacing:-1.182000px;}
.ls40{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-1.026000px;}
.ls3f{letter-spacing:-0.774000px;}
.ls36{letter-spacing:-0.666000px;}
.ls38{letter-spacing:-0.540000px;}
.ls3b{letter-spacing:-0.460200px;}
.ls26{letter-spacing:-0.414600px;}
.ls34{letter-spacing:-0.360000px;}
.ls35{letter-spacing:-0.259800px;}
.ls10{letter-spacing:-0.103800px;}
.ls11{letter-spacing:-0.053280px;}
.ls41{letter-spacing:-0.000720px;}
.lsf{letter-spacing:0.000000px;}
.ls32{letter-spacing:0.053280px;}
.ls2d{letter-spacing:0.079920px;}
.ls1a{letter-spacing:0.138000px;}
.lse{letter-spacing:0.149760px;}
.ls37{letter-spacing:0.153600px;}
.ls2{letter-spacing:0.180000px;}
.ls39{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.ls2c{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.ls42{letter-spacing:0.816000px;}
.ls2e{letter-spacing:0.900000px;}
.ls7{letter-spacing:1.440000px;}
.ls18{letter-spacing:2.880000px;}
.ls12{letter-spacing:3.600000px;}
.ls1e{letter-spacing:4.320000px;}
.ls33{letter-spacing:4.500000px;}
.ls1f{letter-spacing:5.040000px;}
.ls2b{letter-spacing:5.220000px;}
.ls21{letter-spacing:5.760000px;}
.ls1c{letter-spacing:6.480000px;}
.ls2f{letter-spacing:6.660000px;}
.lsb{letter-spacing:7.200000px;}
.ls19{letter-spacing:7.920000px;}
.ls5{letter-spacing:8.100000px;}
.ls20{letter-spacing:8.640000px;}
.lsa{letter-spacing:9.360000px;}
.ls8{letter-spacing:11.520000px;}
.lsd{letter-spacing:12.240000px;}
.ls27{letter-spacing:12.389760px;}
.ls16{letter-spacing:12.960000px;}
.ls22{letter-spacing:13.680000px;}
.ls25{letter-spacing:14.400000px;}
.ls28{letter-spacing:15.269760px;}
.lsc{letter-spacing:16.560000px;}
.ls49{letter-spacing:17.280000px;}
.ls9{letter-spacing:18.000000px;}
.ls29{letter-spacing:18.720000px;}
.ls48{letter-spacing:19.440000px;}
.ls1d{letter-spacing:20.880000px;}
.ls46{letter-spacing:22.500000px;}
.ls14{letter-spacing:27.360000px;}
.ls13{letter-spacing:28.800000px;}
.ls45{letter-spacing:30.396000px;}
.ls30{letter-spacing:31.860000px;}
.ls47{letter-spacing:45.540000px;}
.ls17{letter-spacing:80.945280px;}
.ls15{letter-spacing:83.105280px;}
.ls4{letter-spacing:157.860000px;}
.ls44{letter-spacing:835.536000px;}
.ls31{letter-spacing:1293.456000px;}
.ls1{letter-spacing:1377.696000px;}
.ls43{letter-spacing:2149.656000px;}
.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;}
}
.ws1{word-spacing:-18.532800px;}
.ws4{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.534000px;}
.ws0{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.120000px;}
.ws11{word-spacing:-14.993280px;}
.ws7{word-spacing:-14.970240px;}
.ws3{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.wsc{word-spacing:-14.580000px;}
.ws13{word-spacing:-14.479800px;}
.ws16{word-spacing:-13.860000px;}
.ws15{word-spacing:-13.758000px;}
.ws17{word-spacing:-0.875760px;}
.ws10{word-spacing:-0.213360px;}
.ws8{word-spacing:-0.204240px;}
.wse{word-spacing:-0.113040px;}
.ws5{word-spacing:-0.066240px;}
.ws2{word-spacing:-0.059760px;}
.ws6{word-spacing:0.000000px;}
.wsd{word-spacing:0.200040px;}
.wsf{word-spacing:0.606240px;}
.ws14{word-spacing:1.326240px;}
.wsa{word-spacing:1.637760px;}
.ws18{word-spacing:1.889760px;}
._1f{margin-left:-45.650160px;}
._20{margin-left:-14.400000px;}
._21{margin-left:-8.659680px;}
._14{margin-left:-3.249360px;}
._a{margin-left:-2.140080px;}
._1{margin-left:-1.039440px;}
._0{width:1.254960px;}
._2{width:2.700480px;}
._13{width:3.778320px;}
._19{width:5.045520px;}
._b{width:6.399840px;}
._7{width:8.187120px;}
._8{width:9.761760px;}
._12{width:11.172480px;}
._11{width:12.208560px;}
._15{width:13.314240px;}
._c{width:14.924400px;}
._6{width:16.493760px;}
._5{width:17.629200px;}
._9{width:19.362240px;}
._3{width:20.856240px;}
._4{width:21.872160px;}
._22{width:23.114880px;}
._10{width:24.218400px;}
._18{width:25.778160px;}
._d{width:27.617040px;}
._e{width:28.722720px;}
._f{width:30.134160px;}
._1a{width:32.258880px;}
._1b{width:33.278880px;}
._1e{width:35.166000px;}
._1c{width:36.566640px;}
._1d{width:38.274960px;}
._28{width:39.740400px;}
._27{width:40.875840px;}
._2a{width:41.891760px;}
._29{width:42.946560px;}
._32{width:45.396240px;}
._17{width:46.653360px;}
._16{width:48.465840px;}
._2f{width:51.628080px;}
._2c{width:52.911360px;}
._2b{width:53.976000px;}
._26{width:67.170240px;}
._25{width:68.245920px;}
._23{width:109.659600px;}
._24{width:110.795040px;}
._2e{width:167.877600px;}
._2d{width:169.062240px;}
._30{width:287.691600px;}
._31{width:542.242080px;}
.fc4{color:rgb(128,0,0);}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6{bottom:3.600000px;}
.y4{bottom:56.700000px;}
.y99{bottom:95.616000px;}
.yd6{bottom:99.036000px;}
.y78{bottom:101.556000px;}
.y3f{bottom:102.096000px;}
.y94{bottom:102.816000px;}
.y12a{bottom:105.516000px;}
.y98{bottom:112.896000px;}
.yd5{bottom:116.316000px;}
.y3e{bottom:117.576000px;}
.y77{bottom:120.636000px;}
.y129{bottom:120.996000px;}
.y93{bottom:121.716000px;}
.yf4{bottom:124.956000px;}
.y97{bottom:130.176000px;}
.y3d{bottom:132.876000px;}
.yd4{bottom:133.596000px;}
.y128{bottom:136.476000px;}
.y76{bottom:139.536000px;}
.y92{bottom:140.796000px;}
.yf3{bottom:142.236000px;}
.y96{bottom:146.916000px;}
.y3c{bottom:148.356000px;}
.yd3{bottom:150.870000px;}
.y127{bottom:152.850000px;}
.y75{bottom:158.610000px;}
.yf2{bottom:159.330000px;}
.y91{bottom:159.690000px;}
.y95{bottom:163.830000px;}
.y3b{bottom:167.790000px;}
.yd2{bottom:167.970000px;}
.y126{bottom:171.750000px;}
.yf1{bottom:176.610000px;}
.y74{bottom:177.510000px;}
.y90{bottom:178.590000px;}
.yd1{bottom:185.250000px;}
.y3a{bottom:186.870000px;}
.y125{bottom:190.830000px;}
.yf0{bottom:193.890000px;}
.y73{bottom:196.410000px;}
.y8f{bottom:197.670000px;}
.yd0{bottom:202.530000px;}
.y39{bottom:205.770000px;}
.y124{bottom:209.730000px;}
.yef{bottom:211.170000px;}
.y72{bottom:215.490000px;}
.y8e{bottom:216.570000px;}
.ycf{bottom:219.810000px;}
.y38{bottom:224.850000px;}
.yee{bottom:228.450000px;}
.y123{bottom:228.630000px;}
.y71{bottom:234.390000px;}
.y8d{bottom:235.650000px;}
.yce{bottom:237.090000px;}
.y37{bottom:243.750000px;}
.yed{bottom:245.730000px;}
.y122{bottom:247.710000px;}
.y70{bottom:253.470000px;}
.ycd{bottom:254.370000px;}
.y8c{bottom:254.550000px;}
.y36{bottom:262.650000px;}
.yec{bottom:262.830000px;}
.y121{bottom:266.610000px;}
.ycc{bottom:271.470000px;}
.y6f{bottom:272.370000px;}
.y8b{bottom:273.630000px;}
.yeb{bottom:280.110000px;}
.y35{bottom:281.730000px;}
.y120{bottom:285.690000px;}
.ycb{bottom:288.750000px;}
.y6e{bottom:291.270000px;}
.y8a{bottom:292.530000px;}
.yea{bottom:297.390000px;}
.y34{bottom:300.630000px;}
.y11f{bottom:304.590000px;}
.yca{bottom:306.030000px;}
.y6d{bottom:310.350000px;}
.y89{bottom:311.430000px;}
.ye9{bottom:314.670000px;}
.y33{bottom:319.710000px;}
.yc9{bottom:323.310000px;}
.y11e{bottom:323.490000px;}
.y6c{bottom:329.295000px;}
.y88{bottom:330.555000px;}
.ye8{bottom:331.995000px;}
.y32{bottom:338.655000px;}
.yc8{bottom:340.635000px;}
.y11d{bottom:342.615000px;}
.y6b{bottom:348.375000px;}
.ye7{bottom:349.275000px;}
.y87{bottom:349.455000px;}
.y31{bottom:357.555000px;}
.yc7{bottom:357.735000px;}
.y11c{bottom:361.515000px;}
.ye6{bottom:366.375000px;}
.y6a{bottom:367.275000px;}
.y86{bottom:368.535000px;}
.yc6{bottom:375.015000px;}
.y30{bottom:376.635000px;}
.y11b{bottom:380.595000px;}
.ye5{bottom:383.655000px;}
.y69{bottom:386.175000px;}
.y85{bottom:387.435000px;}
.y2f{bottom:395.535000px;}
.y11a{bottom:399.495000px;}
.ye4{bottom:400.935000px;}
.y68{bottom:405.255000px;}
.y84{bottom:406.335000px;}
.yc5{bottom:408.855000px;}
.y2e{bottom:414.615000px;}
.ye3{bottom:418.215000px;}
.y119{bottom:418.395000px;}
.yc4{bottom:423.435000px;}
.y67{bottom:424.155000px;}
.y83{bottom:425.415000px;}
.y2d{bottom:433.515000px;}
.ye2{bottom:435.495000px;}
.y118{bottom:437.475000px;}
.yc3{bottom:440.535000px;}
.y66{bottom:443.235000px;}
.y82{bottom:444.315000px;}
.y2c{bottom:452.415000px;}
.ye1{bottom:452.775000px;}
.y117{bottom:456.375000px;}
.yc2{bottom:457.815000px;}
.y65{bottom:462.135000px;}
.y81{bottom:463.395000px;}
.ye0{bottom:469.875000px;}
.y2b{bottom:471.495000px;}
.yc1{bottom:475.095000px;}
.y116{bottom:475.455000px;}
.y64{bottom:481.215000px;}
.y80{bottom:482.295000px;}
.ydf{bottom:487.155000px;}
.y2a{bottom:490.395000px;}
.yc0{bottom:492.375000px;}
.y115{bottom:494.355000px;}
.y63{bottom:500.115000px;}
.y7f{bottom:501.195000px;}
.yde{bottom:504.435000px;}
.y29{bottom:509.475000px;}
.ybf{bottom:509.655000px;}
.y114{bottom:513.255000px;}
.y62{bottom:519.015000px;}
.y7e{bottom:520.275000px;}
.ydd{bottom:521.715000px;}
.ybe{bottom:526.935000px;}
.y28{bottom:528.375000px;}
.y113{bottom:532.335000px;}
.y61{bottom:538.095000px;}
.ydc{bottom:538.995000px;}
.y7d{bottom:539.175000px;}
.ybd{bottom:544.035000px;}
.y27{bottom:547.455000px;}
.y112{bottom:551.235000px;}
.ydb{bottom:555.195000px;}
.y60{bottom:556.995000px;}
.y7c{bottom:558.255000px;}
.ybc{bottom:561.315000px;}
.y26{bottom:566.355000px;}
.yda{bottom:569.955000px;}
.y111{bottom:570.315000px;}
.y5f{bottom:576.075000px;}
.y7b{bottom:577.155000px;}
.ybb{bottom:578.595000px;}
.y25{bottom:585.255000px;}
.yd9{bottom:587.235000px;}
.y110{bottom:589.215000px;}
.y5e{bottom:595.005000px;}
.yba{bottom:595.905000px;}
.y7a{bottom:596.085000px;}
.y24{bottom:604.365000px;}
.y10f{bottom:608.325000px;}
.yb9{bottom:613.185000px;}
.y5d{bottom:614.625000px;}
.y79{bottom:615.165000px;}
.y23{bottom:623.265000px;}
.y10e{bottom:627.225000px;}
.yb8{bottom:630.465000px;}
.y5c{bottom:634.065000px;}
.yd8{bottom:635.145000px;}
.y22{bottom:642.345000px;}
.y10d{bottom:646.125000px;}
.yb7{bottom:647.565000px;}
.yd7{bottom:651.525000px;}
.y5b{bottom:653.145000px;}
.y21{bottom:661.245000px;}
.y10c{bottom:664.125000px;}
.yb6{bottom:664.845000px;}
.y5a{bottom:672.045000px;}
.y10b{bottom:678.705000px;}
.y20{bottom:680.145000px;}
.yb5{bottom:682.125000px;}
.y59{bottom:690.945000px;}
.y10a{bottom:695.985000px;}
.y1f{bottom:699.225000px;}
.yb4{bottom:699.405000px;}
.y58{bottom:710.025000px;}
.y109{bottom:713.085000px;}
.yb3{bottom:716.685000px;}
.y1e{bottom:718.125000px;}
.y57{bottom:728.925000px;}
.y108{bottom:730.365000px;}
.yb2{bottom:733.785000px;}
.y1d{bottom:736.125000px;}
.y107{bottom:747.645000px;}
.y56{bottom:748.005000px;}
.y1c{bottom:750.705000px;}
.yb1{bottom:751.065000px;}
.y106{bottom:764.925000px;}
.y55{bottom:766.905000px;}
.y1b{bottom:767.805000px;}
.yb0{bottom:768.345000px;}
.y105{bottom:782.205000px;}
.y1a{bottom:785.085000px;}
.yaf{bottom:785.625000px;}
.y54{bottom:785.985000px;}
.y104{bottom:799.485000px;}
.y19{bottom:802.365000px;}
.yae{bottom:802.905000px;}
.y53{bottom:804.885000px;}
.y103{bottom:816.585000px;}
.y18{bottom:819.645000px;}
.yad{bottom:820.185000px;}
.y52{bottom:823.785000px;}
.y17{bottom:836.925000px;}
.yac{bottom:837.285000px;}
.y51{bottom:842.865000px;}
.y102{bottom:850.425000px;}
.y16{bottom:854.205000px;}
.yab{bottom:854.565000px;}
.y50{bottom:861.765000px;}
.y101{bottom:865.050000px;}
.y15{bottom:871.350000px;}
.yaa{bottom:871.890000px;}
.y4f{bottom:880.890000px;}
.y100{bottom:882.330000px;}
.y14{bottom:888.630000px;}
.ya9{bottom:889.170000px;}
.yff{bottom:899.430000px;}
.y4e{bottom:899.790000px;}
.ya8{bottom:906.450000px;}
.yfe{bottom:916.710000px;}
.y4d{bottom:918.690000px;}
.y13{bottom:922.470000px;}
.ya7{bottom:923.730000px;}
.yfd{bottom:933.990000px;}
.y12{bottom:937.050000px;}
.y4c{bottom:937.770000px;}
.ya6{bottom:940.830000px;}
.y11{bottom:954.150000px;}
.y4b{bottom:956.670000px;}
.ya5{bottom:958.110000px;}
.yfc{bottom:967.830000px;}
.y10{bottom:971.430000px;}
.ya4{bottom:975.390000px;}
.y4a{bottom:975.750000px;}
.yfb{bottom:981.870000px;}
.yf{bottom:988.710000px;}
.ya3{bottom:992.670000px;}
.y49{bottom:994.650000px;}
.yfa{bottom:999.150000px;}
.ye{bottom:1005.990000px;}
.ya2{bottom:1009.950000px;}
.y48{bottom:1013.550000px;}
.yf9{bottom:1016.430000px;}
.ya1{bottom:1027.050000px;}
.y47{bottom:1032.630000px;}
.yf8{bottom:1033.350000px;}
.yd{bottom:1039.650000px;}
.ya0{bottom:1044.330000px;}
.yf7{bottom:1047.750000px;}
.y46{bottom:1051.530000px;}
.yc{bottom:1053.870000px;}
.y9f{bottom:1061.610000px;}
.yf6{bottom:1065.030000px;}
.y45{bottom:1070.610000px;}
.yb{bottom:1071.150000px;}
.y9e{bottom:1078.890000px;}
.ya{bottom:1088.430000px;}
.y44{bottom:1089.510000px;}
.y9d{bottom:1096.170000px;}
.yf5{bottom:1098.870000px;}
.y9{bottom:1106.070000px;}
.y43{bottom:1108.410000px;}
.y9c{bottom:1113.450000px;}
.y8{bottom:1123.170000px;}
.y42{bottom:1127.490000px;}
.y9b{bottom:1130.580000px;}
.y7{bottom:1141.560000px;}
.y41{bottom:1146.420000px;}
.y9a{bottom:1147.860000px;}
.y3{bottom:1164.240000px;}
.y2{bottom:1179.000000px;}
.y5{bottom:1189.260000px;}
.y40{bottom:1192.320000px;}
.y1{bottom:1196.280000px;}
.h4{height:17.280000px;}
.h11{height:40.985156px;}
.h8{height:47.344922px;}
.h12{height:48.616875px;}
.h3{height:49.583118px;}
.h7{height:51.677227px;}
.h13{height:52.998047px;}
.h9{height:53.252930px;}
.h10{height:58.621992px;}
.h2{height:58.651172px;}
.hb{height:59.027344px;}
.h6{height:60.226875px;}
.he{height:61.423863px;}
.ha{height:65.010937px;}
.hd{height:65.884219px;}
.hc{height:66.757500px;}
.hf{height:68.084282px;}
.h5{height:73.751133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:22.500000px;}
.w3{width:24.300000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:63.900000px;}
.x12{left:90.719987px;}
.x1{left:106.415987px;}
.x4{left:108.935987px;}
.x14{left:115.955987px;}
.x18{left:130.715987px;}
.x13{left:133.235987px;}
.xb{left:148.895987px;}
.x15{left:166.169987px;}
.x5{left:211.529987px;}
.x3{left:234.029987px;}
.xc{left:262.109987px;}
.x11{left:313.094987px;}
.x19{left:317.774987px;}
.xd{left:441.254987px;}
.x1b{left:451.514987px;}
.x8{left:459.074987px;}
.x6{left:538.484987px;}
.x1a{left:549.284987px;}
.x9{left:590.504987px;}
.x1c{left:593.924987px;}
.x7{left:606.524987px;}
.x16{left:654.944987px;}
.x1e{left:660.884987px;}
.x17{left:665.429987px;}
.x10{left:669.929987px;}
.xa{left:723.389987px;}
.xe{left:786.749987px;}
.x1d{left:810.149987px;}
.x2{left:819.150000px;}
@media print{
.v5{vertical-align:-112.000000pt;}
.v4{vertical-align:-61.440000pt;}
.v3{vertical-align:-60.160000pt;}
.v1{vertical-align:-58.240000pt;}
.v2{vertical-align:-10.240000pt;}
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-1.920000pt;}
.ls4a{letter-spacing:-1.738667pt;}
.ls23{letter-spacing:-1.514667pt;}
.ls3a{letter-spacing:-1.328000pt;}
.ls1b{letter-spacing:-1.280000pt;}
.ls3d{letter-spacing:-1.232000pt;}
.ls3c{letter-spacing:-1.120000pt;}
.ls3e{letter-spacing:-1.050667pt;}
.ls40{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.912000pt;}
.ls3f{letter-spacing:-0.688000pt;}
.ls36{letter-spacing:-0.592000pt;}
.ls38{letter-spacing:-0.480000pt;}
.ls3b{letter-spacing:-0.409067pt;}
.ls26{letter-spacing:-0.368533pt;}
.ls34{letter-spacing:-0.320000pt;}
.ls35{letter-spacing:-0.230933pt;}
.ls10{letter-spacing:-0.092267pt;}
.ls11{letter-spacing:-0.047360pt;}
.ls41{letter-spacing:-0.000640pt;}
.lsf{letter-spacing:0.000000pt;}
.ls32{letter-spacing:0.047360pt;}
.ls2d{letter-spacing:0.071040pt;}
.ls1a{letter-spacing:0.122667pt;}
.lse{letter-spacing:0.133120pt;}
.ls37{letter-spacing:0.136533pt;}
.ls2{letter-spacing:0.160000pt;}
.ls39{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.ls2c{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls42{letter-spacing:0.725333pt;}
.ls2e{letter-spacing:0.800000pt;}
.ls7{letter-spacing:1.280000pt;}
.ls18{letter-spacing:2.560000pt;}
.ls12{letter-spacing:3.200000pt;}
.ls1e{letter-spacing:3.840000pt;}
.ls33{letter-spacing:4.000000pt;}
.ls1f{letter-spacing:4.480000pt;}
.ls2b{letter-spacing:4.640000pt;}
.ls21{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:5.760000pt;}
.ls2f{letter-spacing:5.920000pt;}
.lsb{letter-spacing:6.400000pt;}
.ls19{letter-spacing:7.040000pt;}
.ls5{letter-spacing:7.200000pt;}
.ls20{letter-spacing:7.680000pt;}
.lsa{letter-spacing:8.320000pt;}
.ls8{letter-spacing:10.240000pt;}
.lsd{letter-spacing:10.880000pt;}
.ls27{letter-spacing:11.013120pt;}
.ls16{letter-spacing:11.520000pt;}
.ls22{letter-spacing:12.160000pt;}
.ls25{letter-spacing:12.800000pt;}
.ls28{letter-spacing:13.573120pt;}
.lsc{letter-spacing:14.720000pt;}
.ls49{letter-spacing:15.360000pt;}
.ls9{letter-spacing:16.000000pt;}
.ls29{letter-spacing:16.640000pt;}
.ls48{letter-spacing:17.280000pt;}
.ls1d{letter-spacing:18.560000pt;}
.ls46{letter-spacing:20.000000pt;}
.ls14{letter-spacing:24.320000pt;}
.ls13{letter-spacing:25.600000pt;}
.ls45{letter-spacing:27.018667pt;}
.ls30{letter-spacing:28.320000pt;}
.ls47{letter-spacing:40.480000pt;}
.ls17{letter-spacing:71.951360pt;}
.ls15{letter-spacing:73.871360pt;}
.ls4{letter-spacing:140.320000pt;}
.ls44{letter-spacing:742.698667pt;}
.ls31{letter-spacing:1149.738667pt;}
.ls1{letter-spacing:1224.618667pt;}
.ls43{letter-spacing:1910.805333pt;}
.ws1{word-spacing:-16.473600pt;}
.ws4{word-spacing:-14.720000pt;}
.wsb{word-spacing:-13.808000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.440000pt;}
.ws11{word-spacing:-13.327360pt;}
.ws7{word-spacing:-13.306880pt;}
.ws3{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.wsc{word-spacing:-12.960000pt;}
.ws13{word-spacing:-12.870933pt;}
.ws16{word-spacing:-12.320000pt;}
.ws15{word-spacing:-12.229333pt;}
.ws17{word-spacing:-0.778453pt;}
.ws10{word-spacing:-0.189653pt;}
.ws8{word-spacing:-0.181547pt;}
.wse{word-spacing:-0.100480pt;}
.ws5{word-spacing:-0.058880pt;}
.ws2{word-spacing:-0.053120pt;}
.ws6{word-spacing:0.000000pt;}
.wsd{word-spacing:0.177813pt;}
.wsf{word-spacing:0.538880pt;}
.ws14{word-spacing:1.178880pt;}
.wsa{word-spacing:1.455787pt;}
.ws18{word-spacing:1.679787pt;}
._1f{margin-left:-40.577920pt;}
._20{margin-left:-12.800000pt;}
._21{margin-left:-7.697493pt;}
._14{margin-left:-2.888320pt;}
._a{margin-left:-1.902293pt;}
._1{margin-left:-0.923947pt;}
._0{width:1.115520pt;}
._2{width:2.400427pt;}
._13{width:3.358507pt;}
._19{width:4.484907pt;}
._b{width:5.688747pt;}
._7{width:7.277440pt;}
._8{width:8.677120pt;}
._12{width:9.931093pt;}
._11{width:10.852053pt;}
._15{width:11.834880pt;}
._c{width:13.266133pt;}
._6{width:14.661120pt;}
._5{width:15.670400pt;}
._9{width:17.210880pt;}
._3{width:18.538880pt;}
._4{width:19.441920pt;}
._22{width:20.546560pt;}
._10{width:21.527467pt;}
._18{width:22.913920pt;}
._d{width:24.548480pt;}
._e{width:25.531307pt;}
._f{width:26.785920pt;}
._1a{width:28.674560pt;}
._1b{width:29.581227pt;}
._1e{width:31.258667pt;}
._1c{width:32.503680pt;}
._1d{width:34.022187pt;}
._28{width:35.324800pt;}
._27{width:36.334080pt;}
._2a{width:37.237120pt;}
._29{width:38.174720pt;}
._32{width:40.352213pt;}
._17{width:41.469653pt;}
._16{width:43.080747pt;}
._2f{width:45.891627pt;}
._2c{width:47.032320pt;}
._2b{width:47.978667pt;}
._26{width:59.706880pt;}
._25{width:60.663040pt;}
._23{width:97.475200pt;}
._24{width:98.484480pt;}
._2e{width:149.224533pt;}
._2d{width:150.277547pt;}
._30{width:255.725867pt;}
._31{width:481.992960pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:3.200000pt;}
.y4{bottom:50.400000pt;}
.y99{bottom:84.992000pt;}
.yd6{bottom:88.032000pt;}
.y78{bottom:90.272000pt;}
.y3f{bottom:90.752000pt;}
.y94{bottom:91.392000pt;}
.y12a{bottom:93.792000pt;}
.y98{bottom:100.352000pt;}
.yd5{bottom:103.392000pt;}
.y3e{bottom:104.512000pt;}
.y77{bottom:107.232000pt;}
.y129{bottom:107.552000pt;}
.y93{bottom:108.192000pt;}
.yf4{bottom:111.072000pt;}
.y97{bottom:115.712000pt;}
.y3d{bottom:118.112000pt;}
.yd4{bottom:118.752000pt;}
.y128{bottom:121.312000pt;}
.y76{bottom:124.032000pt;}
.y92{bottom:125.152000pt;}
.yf3{bottom:126.432000pt;}
.y96{bottom:130.592000pt;}
.y3c{bottom:131.872000pt;}
.yd3{bottom:134.106667pt;}
.y127{bottom:135.866667pt;}
.y75{bottom:140.986667pt;}
.yf2{bottom:141.626667pt;}
.y91{bottom:141.946667pt;}
.y95{bottom:145.626667pt;}
.y3b{bottom:149.146667pt;}
.yd2{bottom:149.306667pt;}
.y126{bottom:152.666667pt;}
.yf1{bottom:156.986667pt;}
.y74{bottom:157.786667pt;}
.y90{bottom:158.746667pt;}
.yd1{bottom:164.666667pt;}
.y3a{bottom:166.106667pt;}
.y125{bottom:169.626667pt;}
.yf0{bottom:172.346667pt;}
.y73{bottom:174.586667pt;}
.y8f{bottom:175.706667pt;}
.yd0{bottom:180.026667pt;}
.y39{bottom:182.906667pt;}
.y124{bottom:186.426667pt;}
.yef{bottom:187.706667pt;}
.y72{bottom:191.546667pt;}
.y8e{bottom:192.506667pt;}
.ycf{bottom:195.386667pt;}
.y38{bottom:199.866667pt;}
.yee{bottom:203.066667pt;}
.y123{bottom:203.226667pt;}
.y71{bottom:208.346667pt;}
.y8d{bottom:209.466667pt;}
.yce{bottom:210.746667pt;}
.y37{bottom:216.666667pt;}
.yed{bottom:218.426667pt;}
.y122{bottom:220.186667pt;}
.y70{bottom:225.306667pt;}
.ycd{bottom:226.106667pt;}
.y8c{bottom:226.266667pt;}
.y36{bottom:233.466667pt;}
.yec{bottom:233.626667pt;}
.y121{bottom:236.986667pt;}
.ycc{bottom:241.306667pt;}
.y6f{bottom:242.106667pt;}
.y8b{bottom:243.226667pt;}
.yeb{bottom:248.986667pt;}
.y35{bottom:250.426667pt;}
.y120{bottom:253.946667pt;}
.ycb{bottom:256.666667pt;}
.y6e{bottom:258.906667pt;}
.y8a{bottom:260.026667pt;}
.yea{bottom:264.346667pt;}
.y34{bottom:267.226667pt;}
.y11f{bottom:270.746667pt;}
.yca{bottom:272.026667pt;}
.y6d{bottom:275.866667pt;}
.y89{bottom:276.826667pt;}
.ye9{bottom:279.706667pt;}
.y33{bottom:284.186667pt;}
.yc9{bottom:287.386667pt;}
.y11e{bottom:287.546667pt;}
.y6c{bottom:292.706667pt;}
.y88{bottom:293.826667pt;}
.ye8{bottom:295.106667pt;}
.y32{bottom:301.026667pt;}
.yc8{bottom:302.786667pt;}
.y11d{bottom:304.546667pt;}
.y6b{bottom:309.666667pt;}
.ye7{bottom:310.466667pt;}
.y87{bottom:310.626667pt;}
.y31{bottom:317.826667pt;}
.yc7{bottom:317.986667pt;}
.y11c{bottom:321.346667pt;}
.ye6{bottom:325.666667pt;}
.y6a{bottom:326.466667pt;}
.y86{bottom:327.586667pt;}
.yc6{bottom:333.346667pt;}
.y30{bottom:334.786667pt;}
.y11b{bottom:338.306667pt;}
.ye5{bottom:341.026667pt;}
.y69{bottom:343.266667pt;}
.y85{bottom:344.386667pt;}
.y2f{bottom:351.586667pt;}
.y11a{bottom:355.106667pt;}
.ye4{bottom:356.386667pt;}
.y68{bottom:360.226667pt;}
.y84{bottom:361.186667pt;}
.yc5{bottom:363.426667pt;}
.y2e{bottom:368.546667pt;}
.ye3{bottom:371.746667pt;}
.y119{bottom:371.906667pt;}
.yc4{bottom:376.386667pt;}
.y67{bottom:377.026667pt;}
.y83{bottom:378.146667pt;}
.y2d{bottom:385.346667pt;}
.ye2{bottom:387.106667pt;}
.y118{bottom:388.866667pt;}
.yc3{bottom:391.586667pt;}
.y66{bottom:393.986667pt;}
.y82{bottom:394.946667pt;}
.y2c{bottom:402.146667pt;}
.ye1{bottom:402.466667pt;}
.y117{bottom:405.666667pt;}
.yc2{bottom:406.946667pt;}
.y65{bottom:410.786667pt;}
.y81{bottom:411.906667pt;}
.ye0{bottom:417.666667pt;}
.y2b{bottom:419.106667pt;}
.yc1{bottom:422.306667pt;}
.y116{bottom:422.626667pt;}
.y64{bottom:427.746667pt;}
.y80{bottom:428.706667pt;}
.ydf{bottom:433.026667pt;}
.y2a{bottom:435.906667pt;}
.yc0{bottom:437.666667pt;}
.y115{bottom:439.426667pt;}
.y63{bottom:444.546667pt;}
.y7f{bottom:445.506667pt;}
.yde{bottom:448.386667pt;}
.y29{bottom:452.866667pt;}
.ybf{bottom:453.026667pt;}
.y114{bottom:456.226667pt;}
.y62{bottom:461.346667pt;}
.y7e{bottom:462.466667pt;}
.ydd{bottom:463.746667pt;}
.ybe{bottom:468.386667pt;}
.y28{bottom:469.666667pt;}
.y113{bottom:473.186667pt;}
.y61{bottom:478.306667pt;}
.ydc{bottom:479.106667pt;}
.y7d{bottom:479.266667pt;}
.ybd{bottom:483.586667pt;}
.y27{bottom:486.626667pt;}
.y112{bottom:489.986667pt;}
.ydb{bottom:493.506667pt;}
.y60{bottom:495.106667pt;}
.y7c{bottom:496.226667pt;}
.ybc{bottom:498.946667pt;}
.y26{bottom:503.426667pt;}
.yda{bottom:506.626667pt;}
.y111{bottom:506.946667pt;}
.y5f{bottom:512.066667pt;}
.y7b{bottom:513.026667pt;}
.ybb{bottom:514.306667pt;}
.y25{bottom:520.226667pt;}
.yd9{bottom:521.986667pt;}
.y110{bottom:523.746667pt;}
.y5e{bottom:528.893333pt;}
.yba{bottom:529.693333pt;}
.y7a{bottom:529.853333pt;}
.y24{bottom:537.213333pt;}
.y10f{bottom:540.733333pt;}
.yb9{bottom:545.053333pt;}
.y5d{bottom:546.333333pt;}
.y79{bottom:546.813333pt;}
.y23{bottom:554.013333pt;}
.y10e{bottom:557.533333pt;}
.yb8{bottom:560.413333pt;}
.y5c{bottom:563.613333pt;}
.yd8{bottom:564.573333pt;}
.y22{bottom:570.973333pt;}
.y10d{bottom:574.333333pt;}
.yb7{bottom:575.613333pt;}
.yd7{bottom:579.133333pt;}
.y5b{bottom:580.573333pt;}
.y21{bottom:587.773333pt;}
.y10c{bottom:590.333333pt;}
.yb6{bottom:590.973333pt;}
.y5a{bottom:597.373333pt;}
.y10b{bottom:603.293333pt;}
.y20{bottom:604.573333pt;}
.yb5{bottom:606.333333pt;}
.y59{bottom:614.173333pt;}
.y10a{bottom:618.653333pt;}
.y1f{bottom:621.533333pt;}
.yb4{bottom:621.693333pt;}
.y58{bottom:631.133333pt;}
.y109{bottom:633.853333pt;}
.yb3{bottom:637.053333pt;}
.y1e{bottom:638.333333pt;}
.y57{bottom:647.933333pt;}
.y108{bottom:649.213333pt;}
.yb2{bottom:652.253333pt;}
.y1d{bottom:654.333333pt;}
.y107{bottom:664.573333pt;}
.y56{bottom:664.893333pt;}
.y1c{bottom:667.293333pt;}
.yb1{bottom:667.613333pt;}
.y106{bottom:679.933333pt;}
.y55{bottom:681.693333pt;}
.y1b{bottom:682.493333pt;}
.yb0{bottom:682.973333pt;}
.y105{bottom:695.293333pt;}
.y1a{bottom:697.853333pt;}
.yaf{bottom:698.333333pt;}
.y54{bottom:698.653333pt;}
.y104{bottom:710.653333pt;}
.y19{bottom:713.213333pt;}
.yae{bottom:713.693333pt;}
.y53{bottom:715.453333pt;}
.y103{bottom:725.853333pt;}
.y18{bottom:728.573333pt;}
.yad{bottom:729.053333pt;}
.y52{bottom:732.253333pt;}
.y17{bottom:743.933333pt;}
.yac{bottom:744.253333pt;}
.y51{bottom:749.213333pt;}
.y102{bottom:755.933333pt;}
.y16{bottom:759.293333pt;}
.yab{bottom:759.613333pt;}
.y50{bottom:766.013333pt;}
.y101{bottom:768.933333pt;}
.y15{bottom:774.533333pt;}
.yaa{bottom:775.013333pt;}
.y4f{bottom:783.013333pt;}
.y100{bottom:784.293333pt;}
.y14{bottom:789.893333pt;}
.ya9{bottom:790.373333pt;}
.yff{bottom:799.493333pt;}
.y4e{bottom:799.813333pt;}
.ya8{bottom:805.733333pt;}
.yfe{bottom:814.853333pt;}
.y4d{bottom:816.613333pt;}
.y13{bottom:819.973333pt;}
.ya7{bottom:821.093333pt;}
.yfd{bottom:830.213333pt;}
.y12{bottom:832.933333pt;}
.y4c{bottom:833.573333pt;}
.ya6{bottom:836.293333pt;}
.y11{bottom:848.133333pt;}
.y4b{bottom:850.373333pt;}
.ya5{bottom:851.653333pt;}
.yfc{bottom:860.293333pt;}
.y10{bottom:863.493333pt;}
.ya4{bottom:867.013333pt;}
.y4a{bottom:867.333333pt;}
.yfb{bottom:872.773333pt;}
.yf{bottom:878.853333pt;}
.ya3{bottom:882.373333pt;}
.y49{bottom:884.133333pt;}
.yfa{bottom:888.133333pt;}
.ye{bottom:894.213333pt;}
.ya2{bottom:897.733333pt;}
.y48{bottom:900.933333pt;}
.yf9{bottom:903.493333pt;}
.ya1{bottom:912.933333pt;}
.y47{bottom:917.893333pt;}
.yf8{bottom:918.533333pt;}
.yd{bottom:924.133333pt;}
.ya0{bottom:928.293333pt;}
.yf7{bottom:931.333333pt;}
.y46{bottom:934.693333pt;}
.yc{bottom:936.773333pt;}
.y9f{bottom:943.653333pt;}
.yf6{bottom:946.693333pt;}
.y45{bottom:951.653333pt;}
.yb{bottom:952.133333pt;}
.y9e{bottom:959.013333pt;}
.ya{bottom:967.493333pt;}
.y44{bottom:968.453333pt;}
.y9d{bottom:974.373333pt;}
.yf5{bottom:976.773333pt;}
.y9{bottom:983.173333pt;}
.y43{bottom:985.253333pt;}
.y9c{bottom:989.733333pt;}
.y8{bottom:998.373333pt;}
.y42{bottom:1002.213333pt;}
.y9b{bottom:1004.960000pt;}
.y7{bottom:1014.720000pt;}
.y41{bottom:1019.040000pt;}
.y9a{bottom:1020.320000pt;}
.y3{bottom:1034.880000pt;}
.y2{bottom:1048.000000pt;}
.y5{bottom:1057.120000pt;}
.y40{bottom:1059.840000pt;}
.y1{bottom:1063.360000pt;}
.h4{height:15.360000pt;}
.h11{height:36.431250pt;}
.h8{height:42.084375pt;}
.h12{height:43.215000pt;}
.h3{height:44.073883pt;}
.h7{height:45.935313pt;}
.h13{height:47.109375pt;}
.h9{height:47.335938pt;}
.h10{height:52.108438pt;}
.h2{height:52.134375pt;}
.hb{height:52.468750pt;}
.h6{height:53.535000pt;}
.he{height:54.598989pt;}
.ha{height:57.787500pt;}
.hd{height:58.563750pt;}
.hc{height:59.340000pt;}
.hf{height:60.519362pt;}
.h5{height:65.556562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:20.000000pt;}
.w3{width:21.600000pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:56.800000pt;}
.x12{left:80.639988pt;}
.x1{left:94.591988pt;}
.x4{left:96.831988pt;}
.x14{left:103.071988pt;}
.x18{left:116.191988pt;}
.x13{left:118.431988pt;}
.xb{left:132.351988pt;}
.x15{left:147.706655pt;}
.x5{left:188.026655pt;}
.x3{left:208.026655pt;}
.xc{left:232.986655pt;}
.x11{left:278.306655pt;}
.x19{left:282.466655pt;}
.xd{left:392.226655pt;}
.x1b{left:401.346655pt;}
.x8{left:408.066655pt;}
.x6{left:478.653322pt;}
.x1a{left:488.253322pt;}
.x9{left:524.893322pt;}
.x1c{left:527.933322pt;}
.x7{left:539.133322pt;}
.x16{left:582.173322pt;}
.x1e{left:587.453322pt;}
.x17{left:591.493322pt;}
.x10{left:595.493322pt;}
.xa{left:643.013322pt;}
.xe{left:699.333322pt;}
.x1d{left:720.133322pt;}
.x2{left:728.133333pt;}
}




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