
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d52a4c60626213f2b478657c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_6c4b43b5604aa16c1cab7013.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_b6d4d3a5f18daace4c8242f4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_66f850f0fc6e386c75b0c39e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_12b6ea1bbd5fcc7212aba67e.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ca4eb6216ec590d4e1bdcb1f.woff')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_86996a967c4fd3703a451804.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6804f3adcfe5ab6a734b5b1d.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_cee6a0100e1a5259d016a38a.woff')format("woff");}.ffa{font-family:ffa;line-height:1.065430;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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls10{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.141600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls17{letter-spacing:-0.063600px;}
.ls18{letter-spacing:-0.009000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.014760px;}
.ls12{letter-spacing:0.020160px;}
.ls15{letter-spacing:0.043920px;}
.lsd{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.ls1a{letter-spacing:0.051840px;}
.ls13{letter-spacing:0.060480px;}
.lsb{letter-spacing:0.064800px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls16{letter-spacing:0.098400px;}
.ls19{letter-spacing:0.143400px;}
.ls5{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.173400px;}
.ls11{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls1c{letter-spacing:47.726640px;}
.lsc{letter-spacing:63.566640px;}
.ls1b{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.ws6{word-spacing:-13.399800px;}
.ws10{word-spacing:-13.369800px;}
.wsd{word-spacing:-13.324800px;}
.ws11{word-spacing:-13.278240px;}
.ws9{word-spacing:-13.275360px;}
.wsc{word-spacing:-13.270320px;}
.ws2{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.217400px;}
.wse{word-spacing:-13.162800px;}
.wsa{word-spacing:-13.084800px;}
.ws7{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.wsb{word-spacing:-8.553600px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._8{margin-left:-3.284397px;}
._5{margin-left:-2.113200px;}
._0{margin-left:-1.110000px;}
._1{width:1.288080px;}
._3{width:3.247201px;}
._2{width:4.328400px;}
._7{width:5.471401px;}
._9{width:7.334400px;}
._6{width:8.717400px;}
._a{width:9.799560px;}
._b{width:10.800480px;}
._4{width:12.135600px;}
._13{width:14.248440px;}
._18{width:15.931800px;}
._c{width:19.118160px;}
._d{width:22.244400px;}
._12{width:24.649200px;}
._17{width:26.693280px;}
._f{width:30.661200px;}
._15{width:43.647120px;}
._14{width:55.069920px;}
._e{width:79.839360px;}
._16{width:105.210000px;}
._11{width:111.283560px;}
._10{width:141.282000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.yad{bottom:7.830000px;}
.yab{bottom:7.920000px;}
.yb1{bottom:25.380000px;}
.y118{bottom:25.410000px;}
.yaa{bottom:25.470000px;}
.yec{bottom:35.190000px;}
.y113{bottom:43.020000px;}
.yef{bottom:62.550000px;}
.y2{bottom:73.380000px;}
.y28{bottom:74.190000px;}
.yf3{bottom:89.820000px;}
.y1{bottom:101.640000px;}
.yb4{bottom:114.870000px;}
.y127{bottom:115.230000px;}
.y7f{bottom:123.780000px;}
.yb3{bottom:132.420000px;}
.yd8{bottom:132.690000px;}
.y126{bottom:132.870000px;}
.y56{bottom:134.580000px;}
.y100{bottom:136.200000px;}
.y26{bottom:141.600000px;}
.y125{bottom:150.420000px;}
.y143{bottom:154.470000px;}
.y25{bottom:159.240000px;}
.y7e{bottom:159.330000px;}
.yd7{bottom:160.050000px;}
.yb2{bottom:165.450000px;}
.y124{bottom:167.970000px;}
.yff{bottom:168.420000px;}
.y55{bottom:170.130000px;}
.y24{bottom:176.790000px;}
.y7d{bottom:176.970000px;}
.y142{bottom:181.380000px;}
.y123{bottom:185.610000px;}
.yd6{bottom:187.410000px;}
.y54{bottom:187.770000px;}
.y23{bottom:194.340000px;}
.y122{bottom:203.160000px;}
.y7c{bottom:203.520000px;}
.y53{bottom:205.320000px;}
.yb0{bottom:210.360000px;}
.y22{bottom:211.980000px;}
.yd5{bottom:214.680000px;}
.y141{bottom:218.730000px;}
.y52{bottom:222.960000px;}
.yfa{bottom:227.370000px;}
.y121{bottom:238.800000px;}
.y7b{bottom:239.160000px;}
.y97{bottom:240.240000px;}
.y51{bottom:240.510000px;}
.yd4{bottom:242.040000px;}
.y21{bottom:247.530000px;}
.yaf{bottom:255.270000px;}
.y120{bottom:256.350000px;}
.y7a{bottom:256.710000px;}
.y96{bottom:257.880000px;}
.yf9{bottom:259.410000px;}
.y20{bottom:265.170000px;}
.y140{bottom:266.970000px;}
.y50{bottom:267.060000px;}
.yd3{bottom:269.400000px;}
.y11f{bottom:273.900000px;}
.y79{bottom:274.260000px;}
.y95{bottom:275.430000px;}
.y1f{bottom:282.720000px;}
.y13f{bottom:284.610000px;}
.yd2{bottom:296.760000px;}
.yae{bottom:300.180000px;}
.y1e{bottom:300.270000px;}
.y78{bottom:300.900000px;}
.y94{bottom:301.980000px;}
.y13e{bottom:302.160000px;}
.y4f{bottom:302.700000px;}
.y11e{bottom:309.540000px;}
.y1d{bottom:317.910000px;}
.y13d{bottom:319.800000px;}
.y4e{bottom:320.250000px;}
.yd1{bottom:324.030000px;}
.y11d{bottom:327.090000px;}
.y1c{bottom:335.460000px;}
.y77{bottom:336.450000px;}
.y13c{bottom:337.350000px;}
.y93{bottom:337.620000px;}
.y11c{bottom:344.730000px;}
.yac{bottom:345.090000px;}
.y4d{bottom:347.160000px;}
.yd0{bottom:351.390000px;}
.y76{bottom:354.090000px;}
.y13b{bottom:354.900000px;}
.yfe{bottom:355.170000px;}
.y92{bottom:360.840000px;}
.y11b{bottom:362.280000px;}
.y1b{bottom:362.370000px;}
.y13a{bottom:372.540000px;}
.ycf{bottom:378.750000px;}
.y11a{bottom:379.830000px;}
.y75{bottom:389.550000px;}
.ya9{bottom:390.000000px;}
.y139{bottom:390.090000px;}
.y4c{bottom:395.400000px;}
.yce{bottom:406.020000px;}
.y119{bottom:406.740000px;}
.y138{bottom:407.730000px;}
.y74{bottom:408.000000px;}
.y1a{bottom:410.970000px;}
.y4b{bottom:413.040000px;}
.y73{bottom:426.450000px;}
.ycd{bottom:433.380000px;}
.y137{bottom:434.550000px;}
.yf8{bottom:440.580000px;}
.y72{bottom:444.810000px;}
.y19{bottom:448.050000px;}
.y4a{bottom:448.500000px;}
.y117{bottom:452.460000px;}
.ya8{bottom:456.330000px;}
.yf7{bottom:458.130000px;}
.ycc{bottom:460.740000px;}
.y18{bottom:465.600000px;}
.y49{bottom:466.950000px;}
.yf6{bottom:475.620000px;}
.y71{bottom:481.290000px;}
.ya7{bottom:482.910000px;}
.y17{bottom:483.180000px;}
.y48{bottom:485.430000px;}
.ycb{bottom:488.130000px;}
.yf2{bottom:490.380000px;}
.y116{bottom:497.400000px;}
.y70{bottom:498.930000px;}
.y136{bottom:500.460000px;}
.y47{bottom:503.880000px;}
.yca{bottom:515.400000px;}
.yf5{bottom:517.740000px;}
.y135{bottom:518.100000px;}
.ya6{bottom:518.460000px;}
.y16{bottom:518.820000px;}
.y115{bottom:524.760000px;}
.y6f{bottom:525.480000px;}
.y134{bottom:535.650000px;}
.ya5{bottom:536.100000px;}
.y15{bottom:536.370000px;}
.y46{bottom:540.330000px;}
.yc9{bottom:542.760000px;}
.yf4{bottom:545.010000px;}
.y133{bottom:553.200000px;}
.ya4{bottom:553.650000px;}
.y14{bottom:553.920000px;}
.y45{bottom:557.880000px;}
.y6e{bottom:561.120000px;}
.y114{bottom:569.670000px;}
.yc8{bottom:570.120000px;}
.ya3{bottom:571.290000px;}
.y13{bottom:571.560000px;}
.yf1{bottom:572.370000px;}
.yfd{bottom:576.240000px;}
.y6d{bottom:578.670000px;}
.y154{bottom:587.760000px;}
.y132{bottom:588.840000px;}
.y12{bottom:589.110000px;}
.y44{bottom:593.430000px;}
.ya2{bottom:597.840000px;}
.yee{bottom:599.730000px;}
.y6c{bottom:605.220000px;}
.y153{bottom:605.400000px;}
.y131{bottom:606.390000px;}
.y11{bottom:606.750000px;}
.y43{bottom:611.070000px;}
.y112{bottom:614.580000px;}
.yc7{bottom:618.810000px;}
.y130{bottom:624.030000px;}
.yf0{bottom:627.090000px;}
.y42{bottom:628.620000px;}
.y152{bottom:631.950000px;}
.ya1{bottom:633.390000px;}
.y6b{bottom:640.860000px;}
.y12f{bottom:641.580000px;}
.y10{bottom:642.300000px;}
.y41{bottom:646.260000px;}
.y151{bottom:649.590000px;}
.ya0{bottom:651.030000px;}
.yc6{bottom:654.360000px;}
.y6a{bottom:658.410000px;}
.y91{bottom:658.950000px;}
.y12e{bottom:659.130000px;}
.yf{bottom:659.850000px;}
.y40{bottom:663.810000px;}
.yc5{bottom:672.000000px;}
.y69{bottom:676.050000px;}
.y150{bottom:676.140000px;}
.y90{bottom:676.590000px;}
.y12d{bottom:676.770000px;}
.y111{bottom:677.040000px;}
.ye{bottom:677.490000px;}
.y9f{bottom:677.580000px;}
.yeb{bottom:681.720000px;}
.yc4{bottom:689.550000px;}
.y8f{bottom:694.140000px;}
.y12c{bottom:694.320000px;}
.yd{bottom:695.040000px;}
.y3f{bottom:699.360000px;}
.y68{bottom:702.600000px;}
.y14f{bottom:702.690000px;}
.y110{bottom:704.400000px;}
.yc3{bottom:707.190000px;}
.yed{bottom:709.080000px;}
.y8e{bottom:711.690000px;}
.y12b{bottom:711.960000px;}
.yc{bottom:712.680000px;}
.y9e{bottom:713.130000px;}
.y3e{bottom:717.000000px;}
.y14e{bottom:720.330000px;}
.y8d{bottom:729.330000px;}
.yb{bottom:730.230000px;}
.y9d{bottom:731.580000px;}
.yc2{bottom:733.740000px;}
.y3d{bottom:734.550000px;}
.y67{bottom:738.150000px;}
.y8c{bottom:746.880000px;}
.y12a{bottom:747.510000px;}
.y10f{bottom:749.310000px;}
.y3c{bottom:752.190000px;}
.y66{bottom:755.790000px;}
.ya{bottom:757.140000px;}
.yea{bottom:757.770000px;}
.y8b{bottom:764.520000px;}
.y9c{bottom:768.030000px;}
.yc1{bottom:769.290000px;}
.y3b{bottom:769.740000px;}
.y65{bottom:773.340000px;}
.y129{bottom:773.970000px;}
.y10e{bottom:776.670000px;}
.yfc{bottom:785.490000px;}
.y9b{bottom:785.580000px;}
.yc0{bottom:786.930000px;}
.y128{bottom:788.010000px;}
.y8a{bottom:791.070000px;}
.ye9{bottom:793.320000px;}
.y64{bottom:799.980000px;}
.ybf{bottom:804.480000px;}
.y3a{bottom:805.290000px;}
.y9{bottom:805.380000px;}
.ye8{bottom:810.960000px;}
.y9a{bottom:812.220000px;}
.y14d{bottom:817.620000px;}
.y10d{bottom:821.580000px;}
.ybe{bottom:822.030000px;}
.y39{bottom:822.930000px;}
.y89{bottom:826.620000px;}
.ye7{bottom:828.510000px;}
.y14c{bottom:835.260000px;}
.y63{bottom:835.530000px;}
.y38{bottom:840.480000px;}
.y8{bottom:841.200000px;}
.y88{bottom:844.260000px;}
.y99{bottom:847.770000px;}
.ybd{bottom:857.670000px;}
.y37{bottom:858.030000px;}
.y87{bottom:861.810000px;}
.ye6{bottom:864.060000px;}
.y10c{bottom:870.270000px;}
.y62{bottom:870.990000px;}
.ybc{bottom:875.220000px;}
.y36{bottom:875.670000px;}
.y7{bottom:877.200000px;}
.y86{bottom:879.450000px;}
.y98{bottom:879.990000px;}
.ye5{bottom:881.700000px;}
.y61{bottom:889.440000px;}
.ybb{bottom:892.860000px;}
.ye4{bottom:899.250000px;}
.y10b{bottom:905.820000px;}
.y14b{bottom:906.000000px;}
.y60{bottom:907.890000px;}
.yba{bottom:910.410000px;}
.y35{bottom:911.220000px;}
.y6{bottom:913.200000px;}
.y85{bottom:915.000000px;}
.ye3{bottom:917.700000px;}
.y10a{bottom:923.460000px;}
.y5f{bottom:926.340000px;}
.y34{bottom:928.860000px;}
.y84{bottom:932.550000px;}
.ye2{bottom:935.250000px;}
.yb9{bottom:936.960000px;}
.y109{bottom:941.010000px;}
.y5e{bottom:944.700000px;}
.y33{bottom:946.410000px;}
.y5{bottom:949.290000px;}
.y83{bottom:950.190000px;}
.ye1{bottom:953.700000px;}
.y108{bottom:958.650000px;}
.y32{bottom:963.960000px;}
.y82{bottom:967.740000px;}
.ye0{bottom:971.250000px;}
.yb8{bottom:972.600000px;}
.y14a{bottom:976.740000px;}
.y5d{bottom:981.150000px;}
.y31{bottom:981.600000px;}
.y107{bottom:985.200000px;}
.y4{bottom:987.630000px;}
.ydf{bottom:988.800000px;}
.yb7{bottom:990.150000px;}
.yfb{bottom:990.240000px;}
.y81{bottom:994.290000px;}
.y5c{bottom:998.790000px;}
.y30{bottom:999.150000px;}
.y149{bottom:1003.290000px;}
.yde{bottom:1007.250000px;}
.yb6{bottom:1007.790000px;}
.y3{bottom:1012.320000px;}
.y2f{bottom:1016.820000px;}
.y106{bottom:1020.780000px;}
.ydd{bottom:1024.920000px;}
.y5b{bottom:1025.370000px;}
.y148{bottom:1029.960000px;}
.y80{bottom:1030.230000px;}
.y105{bottom:1039.230000px;}
.ydc{bottom:1042.470000px;}
.yb5{bottom:1051.920000px;}
.y2e{bottom:1052.370000px;}
.y147{bottom:1056.510000px;}
.y104{bottom:1057.590000px;}
.y5a{bottom:1060.920000px;}
.ydb{bottom:1069.830000px;}
.y2d{bottom:1069.920000px;}
.y146{bottom:1074.150000px;}
.y103{bottom:1076.040000px;}
.y59{bottom:1078.560000px;}
.y2c{bottom:1087.560000px;}
.y102{bottom:1094.400000px;}
.y58{bottom:1096.110000px;}
.yda{bottom:1099.890000px;}
.y145{bottom:1100.700000px;}
.y2b{bottom:1105.110000px;}
.y101{bottom:1112.850000px;}
.y57{bottom:1113.750000px;}
.y2a{bottom:1122.750000px;}
.yd9{bottom:1127.160000px;}
.y144{bottom:1127.610000px;}
.y29{bottom:1140.300000px;}
.y27{bottom:1194.300000px;}
.hd{height:26.550000px;}
.hf{height:26.580000px;}
.he{height:26.640000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.hc{height:44.100000px;}
.h15{height:44.130000px;}
.hb{height:44.190000px;}
.h6{height:50.902383px;}
.h11{height:53.910000px;}
.h5{height:55.779258px;}
.h10{height:59.973223px;}
.h7{height:60.960938px;}
.h14{height:61.740000px;}
.h8{height:61.793886px;}
.ha{height:62.585859px;}
.h9{height:68.582109px;}
.h4{height:71.019492px;}
.h12{height:81.270000px;}
.h13{height:108.540000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w11{width:24.480000px;}
.w12{width:24.510000px;}
.wa{width:26.550000px;}
.w3{width:34.200000px;}
.wd{width:42.300000px;}
.wc{width:44.100000px;}
.w5{width:49.950000px;}
.w14{width:52.320000px;}
.w9{width:70.380000px;}
.w19{width:96.300000px;}
.w17{width:96.390000px;}
.w18{width:96.420000px;}
.w6{width:103.770000px;}
.we{width:110.610000px;}
.w1e{width:120.330000px;}
.w1c{width:123.030000px;}
.w1d{width:123.060000px;}
.w1b{width:128.160000px;}
.w1a{width:134.490000px;}
.w8{width:141.570000px;}
.wb{width:150.870000px;}
.w4{width:170.940000px;}
.w10{width:175.680000px;}
.wf{width:175.710000px;}
.w15{width:177.390000px;}
.w7{width:180.390000px;}
.w16{width:387.840000px;}
.w13{width:730.320000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:3.960000px;}
.x9{left:7.740000px;}
.x1{left:68.040000px;}
.xf{left:81.450000px;}
.x4{left:95.039987px;}
.xa{left:103.770000px;}
.x11{left:108.810000px;}
.x33{left:111.239987px;}
.x23{left:119.700000px;}
.x22{left:122.039987px;}
.x24{left:154.620000px;}
.x2{left:202.799987px;}
.x2e{left:203.970000px;}
.x25{left:207.660000px;}
.x12{left:260.400000px;}
.xb{left:275.430000px;}
.x13{left:305.220000px;}
.x2d{left:325.559987px;}
.x8{left:327.089987px;}
.x2f{left:332.850000px;}
.x14{left:348.330000px;}
.x6{left:363.809987px;}
.x26{left:385.770000px;}
.xc{left:430.590000px;}
.x30{left:456.600000px;}
.x15{left:459.660000px;}
.x27{left:482.880000px;}
.x17{left:484.860000px;}
.x18{left:510.090000px;}
.x19{left:535.290000px;}
.x1a{left:560.490000px;}
.x28{left:580.110000px;}
.x1b{left:585.690000px;}
.xd{left:611.700000px;}
.x16{left:636.090000px;}
.x1c{left:661.290000px;}
.x32{left:667.049987px;}
.x29{left:677.220000px;}
.x1d{left:686.490000px;}
.x31{left:704.130000px;}
.x1e{left:711.690000px;}
.x5{left:724.379987px;}
.x1f{left:736.890000px;}
.xe{left:754.080000px;}
.x20{left:762.090000px;}
.x21{left:787.290000px;}
.x3{left:792.059987px;}
.x7{left:797.639987px;}
.x2c{left:808.259987px;}
.x2a{left:810.059987px;}
.x2b{left:813.389987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.125867pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls17{letter-spacing:-0.056533pt;}
.ls18{letter-spacing:-0.008000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.013120pt;}
.ls12{letter-spacing:0.017920pt;}
.ls15{letter-spacing:0.039040pt;}
.lsd{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.ls1a{letter-spacing:0.046080pt;}
.ls13{letter-spacing:0.053760pt;}
.lsb{letter-spacing:0.057600pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls16{letter-spacing:0.087467pt;}
.ls19{letter-spacing:0.127467pt;}
.ls5{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.154133pt;}
.ls11{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1c{letter-spacing:42.423680pt;}
.lsc{letter-spacing:56.503680pt;}
.ls1b{letter-spacing:71.863680pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.ws6{word-spacing:-11.910933pt;}
.ws10{word-spacing:-11.884267pt;}
.wsd{word-spacing:-11.844267pt;}
.ws11{word-spacing:-11.802880pt;}
.ws9{word-spacing:-11.800320pt;}
.wsc{word-spacing:-11.795840pt;}
.ws2{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.748800pt;}
.wse{word-spacing:-11.700267pt;}
.wsa{word-spacing:-11.630933pt;}
.ws7{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.wsb{word-spacing:-7.603200pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._8{margin-left:-2.919464pt;}
._5{margin-left:-1.878400pt;}
._0{margin-left:-0.986667pt;}
._1{width:1.144960pt;}
._3{width:2.886401pt;}
._2{width:3.847466pt;}
._7{width:4.863468pt;}
._9{width:6.519466pt;}
._6{width:7.748800pt;}
._a{width:8.710720pt;}
._b{width:9.600427pt;}
._4{width:10.787200pt;}
._13{width:12.665280pt;}
._18{width:14.161600pt;}
._c{width:16.993920pt;}
._d{width:19.772800pt;}
._12{width:21.910400pt;}
._17{width:23.727360pt;}
._f{width:27.254400pt;}
._15{width:38.797440pt;}
._14{width:48.951040pt;}
._e{width:70.968320pt;}
._16{width:93.520000pt;}
._11{width:98.918720pt;}
._10{width:125.584000pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.yad{bottom:6.960000pt;}
.yab{bottom:7.040000pt;}
.yb1{bottom:22.560000pt;}
.y118{bottom:22.586667pt;}
.yaa{bottom:22.640000pt;}
.yec{bottom:31.280000pt;}
.y113{bottom:38.240000pt;}
.yef{bottom:55.600000pt;}
.y2{bottom:65.226667pt;}
.y28{bottom:65.946667pt;}
.yf3{bottom:79.840000pt;}
.y1{bottom:90.346667pt;}
.yb4{bottom:102.106667pt;}
.y127{bottom:102.426667pt;}
.y7f{bottom:110.026667pt;}
.yb3{bottom:117.706667pt;}
.yd8{bottom:117.946667pt;}
.y126{bottom:118.106667pt;}
.y56{bottom:119.626667pt;}
.y100{bottom:121.066667pt;}
.y26{bottom:125.866667pt;}
.y125{bottom:133.706667pt;}
.y143{bottom:137.306667pt;}
.y25{bottom:141.546667pt;}
.y7e{bottom:141.626667pt;}
.yd7{bottom:142.266667pt;}
.yb2{bottom:147.066667pt;}
.y124{bottom:149.306667pt;}
.yff{bottom:149.706667pt;}
.y55{bottom:151.226667pt;}
.y24{bottom:157.146667pt;}
.y7d{bottom:157.306667pt;}
.y142{bottom:161.226667pt;}
.y123{bottom:164.986667pt;}
.yd6{bottom:166.586667pt;}
.y54{bottom:166.906667pt;}
.y23{bottom:172.746667pt;}
.y122{bottom:180.586667pt;}
.y7c{bottom:180.906667pt;}
.y53{bottom:182.506667pt;}
.yb0{bottom:186.986667pt;}
.y22{bottom:188.426667pt;}
.yd5{bottom:190.826667pt;}
.y141{bottom:194.426667pt;}
.y52{bottom:198.186667pt;}
.yfa{bottom:202.106667pt;}
.y121{bottom:212.266667pt;}
.y7b{bottom:212.586667pt;}
.y97{bottom:213.546667pt;}
.y51{bottom:213.786667pt;}
.yd4{bottom:215.146667pt;}
.y21{bottom:220.026667pt;}
.yaf{bottom:226.906667pt;}
.y120{bottom:227.866667pt;}
.y7a{bottom:228.186667pt;}
.y96{bottom:229.226667pt;}
.yf9{bottom:230.586667pt;}
.y20{bottom:235.706667pt;}
.y140{bottom:237.306667pt;}
.y50{bottom:237.386667pt;}
.yd3{bottom:239.466667pt;}
.y11f{bottom:243.466667pt;}
.y79{bottom:243.786667pt;}
.y95{bottom:244.826667pt;}
.y1f{bottom:251.306667pt;}
.y13f{bottom:252.986667pt;}
.yd2{bottom:263.786667pt;}
.yae{bottom:266.826667pt;}
.y1e{bottom:266.906667pt;}
.y78{bottom:267.466667pt;}
.y94{bottom:268.426667pt;}
.y13e{bottom:268.586667pt;}
.y4f{bottom:269.066667pt;}
.y11e{bottom:275.146667pt;}
.y1d{bottom:282.586667pt;}
.y13d{bottom:284.266667pt;}
.y4e{bottom:284.666667pt;}
.yd1{bottom:288.026667pt;}
.y11d{bottom:290.746667pt;}
.y1c{bottom:298.186667pt;}
.y77{bottom:299.066667pt;}
.y13c{bottom:299.866667pt;}
.y93{bottom:300.106667pt;}
.y11c{bottom:306.426667pt;}
.yac{bottom:306.746667pt;}
.y4d{bottom:308.586667pt;}
.yd0{bottom:312.346667pt;}
.y76{bottom:314.746667pt;}
.y13b{bottom:315.466667pt;}
.yfe{bottom:315.706667pt;}
.y92{bottom:320.746667pt;}
.y11b{bottom:322.026667pt;}
.y1b{bottom:322.106667pt;}
.y13a{bottom:331.146667pt;}
.ycf{bottom:336.666667pt;}
.y11a{bottom:337.626667pt;}
.y75{bottom:346.266667pt;}
.ya9{bottom:346.666667pt;}
.y139{bottom:346.746667pt;}
.y4c{bottom:351.466667pt;}
.yce{bottom:360.906667pt;}
.y119{bottom:361.546667pt;}
.y138{bottom:362.426667pt;}
.y74{bottom:362.666667pt;}
.y1a{bottom:365.306667pt;}
.y4b{bottom:367.146667pt;}
.y73{bottom:379.066667pt;}
.ycd{bottom:385.226667pt;}
.y137{bottom:386.266667pt;}
.yf8{bottom:391.626667pt;}
.y72{bottom:395.386667pt;}
.y19{bottom:398.266667pt;}
.y4a{bottom:398.666667pt;}
.y117{bottom:402.186667pt;}
.ya8{bottom:405.626667pt;}
.yf7{bottom:407.226667pt;}
.ycc{bottom:409.546667pt;}
.y18{bottom:413.866667pt;}
.y49{bottom:415.066667pt;}
.yf6{bottom:422.773333pt;}
.y71{bottom:427.813333pt;}
.ya7{bottom:429.253333pt;}
.y17{bottom:429.493333pt;}
.y48{bottom:431.493333pt;}
.ycb{bottom:433.893333pt;}
.yf2{bottom:435.893333pt;}
.y116{bottom:442.133333pt;}
.y70{bottom:443.493333pt;}
.y136{bottom:444.853333pt;}
.y47{bottom:447.893333pt;}
.yca{bottom:458.133333pt;}
.yf5{bottom:460.213333pt;}
.y135{bottom:460.533333pt;}
.ya6{bottom:460.853333pt;}
.y16{bottom:461.173333pt;}
.y115{bottom:466.453333pt;}
.y6f{bottom:467.093333pt;}
.y134{bottom:476.133333pt;}
.ya5{bottom:476.533333pt;}
.y15{bottom:476.773333pt;}
.y46{bottom:480.293333pt;}
.yc9{bottom:482.453333pt;}
.yf4{bottom:484.453333pt;}
.y133{bottom:491.733333pt;}
.ya4{bottom:492.133333pt;}
.y14{bottom:492.373333pt;}
.y45{bottom:495.893333pt;}
.y6e{bottom:498.773333pt;}
.y114{bottom:506.373333pt;}
.yc8{bottom:506.773333pt;}
.ya3{bottom:507.813333pt;}
.y13{bottom:508.053333pt;}
.yf1{bottom:508.773333pt;}
.yfd{bottom:512.213333pt;}
.y6d{bottom:514.373333pt;}
.y154{bottom:522.453333pt;}
.y132{bottom:523.413333pt;}
.y12{bottom:523.653333pt;}
.y44{bottom:527.493333pt;}
.ya2{bottom:531.413333pt;}
.yee{bottom:533.093333pt;}
.y6c{bottom:537.973333pt;}
.y153{bottom:538.133333pt;}
.y131{bottom:539.013333pt;}
.y11{bottom:539.333333pt;}
.y43{bottom:543.173333pt;}
.y112{bottom:546.293333pt;}
.yc7{bottom:550.053333pt;}
.y130{bottom:554.693333pt;}
.yf0{bottom:557.413333pt;}
.y42{bottom:558.773333pt;}
.y152{bottom:561.733333pt;}
.ya1{bottom:563.013333pt;}
.y6b{bottom:569.653333pt;}
.y12f{bottom:570.293333pt;}
.y10{bottom:570.933333pt;}
.y41{bottom:574.453333pt;}
.y151{bottom:577.413333pt;}
.ya0{bottom:578.693333pt;}
.yc6{bottom:581.653333pt;}
.y6a{bottom:585.253333pt;}
.y91{bottom:585.733333pt;}
.y12e{bottom:585.893333pt;}
.yf{bottom:586.533333pt;}
.y40{bottom:590.053333pt;}
.yc5{bottom:597.333333pt;}
.y69{bottom:600.933333pt;}
.y150{bottom:601.013333pt;}
.y90{bottom:601.413333pt;}
.y12d{bottom:601.573333pt;}
.y111{bottom:601.813333pt;}
.ye{bottom:602.213333pt;}
.y9f{bottom:602.293333pt;}
.yeb{bottom:605.973333pt;}
.yc4{bottom:612.933333pt;}
.y8f{bottom:617.013333pt;}
.y12c{bottom:617.173333pt;}
.yd{bottom:617.813333pt;}
.y3f{bottom:621.653333pt;}
.y68{bottom:624.533333pt;}
.y14f{bottom:624.613333pt;}
.y110{bottom:626.133333pt;}
.yc3{bottom:628.613333pt;}
.yed{bottom:630.293333pt;}
.y8e{bottom:632.613333pt;}
.y12b{bottom:632.853333pt;}
.yc{bottom:633.493333pt;}
.y9e{bottom:633.893333pt;}
.y3e{bottom:637.333333pt;}
.y14e{bottom:640.293333pt;}
.y8d{bottom:648.293333pt;}
.yb{bottom:649.093333pt;}
.y9d{bottom:650.293333pt;}
.yc2{bottom:652.213333pt;}
.y3d{bottom:652.933333pt;}
.y67{bottom:656.133333pt;}
.y8c{bottom:663.893333pt;}
.y12a{bottom:664.453333pt;}
.y10f{bottom:666.053333pt;}
.y3c{bottom:668.613333pt;}
.y66{bottom:671.813333pt;}
.ya{bottom:673.013333pt;}
.yea{bottom:673.573333pt;}
.y8b{bottom:679.573333pt;}
.y9c{bottom:682.693333pt;}
.yc1{bottom:683.813333pt;}
.y3b{bottom:684.213333pt;}
.y65{bottom:687.413333pt;}
.y129{bottom:687.973333pt;}
.y10e{bottom:690.373333pt;}
.yfc{bottom:698.213333pt;}
.y9b{bottom:698.293333pt;}
.yc0{bottom:699.493333pt;}
.y128{bottom:700.453333pt;}
.y8a{bottom:703.173333pt;}
.ye9{bottom:705.173333pt;}
.y64{bottom:711.093333pt;}
.ybf{bottom:715.093333pt;}
.y3a{bottom:715.813333pt;}
.y9{bottom:715.893333pt;}
.ye8{bottom:720.853333pt;}
.y9a{bottom:721.973333pt;}
.y14d{bottom:726.773333pt;}
.y10d{bottom:730.293333pt;}
.ybe{bottom:730.693333pt;}
.y39{bottom:731.493333pt;}
.y89{bottom:734.773333pt;}
.ye7{bottom:736.453333pt;}
.y14c{bottom:742.453333pt;}
.y63{bottom:742.693333pt;}
.y38{bottom:747.093333pt;}
.y8{bottom:747.733333pt;}
.y88{bottom:750.453333pt;}
.y99{bottom:753.573333pt;}
.ybd{bottom:762.373333pt;}
.y37{bottom:762.693333pt;}
.y87{bottom:766.053333pt;}
.ye6{bottom:768.053333pt;}
.y10c{bottom:773.573333pt;}
.y62{bottom:774.213333pt;}
.ybc{bottom:777.973333pt;}
.y36{bottom:778.373333pt;}
.y7{bottom:779.733333pt;}
.y86{bottom:781.733333pt;}
.y98{bottom:782.213333pt;}
.ye5{bottom:783.733333pt;}
.y61{bottom:790.613333pt;}
.ybb{bottom:793.653333pt;}
.ye4{bottom:799.333333pt;}
.y10b{bottom:805.173333pt;}
.y14b{bottom:805.333333pt;}
.y60{bottom:807.013333pt;}
.yba{bottom:809.253333pt;}
.y35{bottom:809.973333pt;}
.y6{bottom:811.733333pt;}
.y85{bottom:813.333333pt;}
.ye3{bottom:815.733333pt;}
.y10a{bottom:820.853333pt;}
.y5f{bottom:823.413333pt;}
.y34{bottom:825.653333pt;}
.y84{bottom:828.933333pt;}
.ye2{bottom:831.333333pt;}
.yb9{bottom:832.853333pt;}
.y109{bottom:836.453333pt;}
.y5e{bottom:839.733333pt;}
.y33{bottom:841.253333pt;}
.y5{bottom:843.813333pt;}
.y83{bottom:844.613333pt;}
.ye1{bottom:847.733333pt;}
.y108{bottom:852.133333pt;}
.y32{bottom:856.853333pt;}
.y82{bottom:860.213333pt;}
.ye0{bottom:863.333333pt;}
.yb8{bottom:864.533333pt;}
.y14a{bottom:868.213333pt;}
.y5d{bottom:872.133333pt;}
.y31{bottom:872.533333pt;}
.y107{bottom:875.733333pt;}
.y4{bottom:877.893333pt;}
.ydf{bottom:878.933333pt;}
.yb7{bottom:880.133333pt;}
.yfb{bottom:880.213333pt;}
.y81{bottom:883.813333pt;}
.y5c{bottom:887.813333pt;}
.y30{bottom:888.133333pt;}
.y149{bottom:891.813333pt;}
.yde{bottom:895.333333pt;}
.yb6{bottom:895.813333pt;}
.y3{bottom:899.840000pt;}
.y2f{bottom:903.840000pt;}
.y106{bottom:907.360000pt;}
.ydd{bottom:911.040000pt;}
.y5b{bottom:911.440000pt;}
.y148{bottom:915.520000pt;}
.y80{bottom:915.760000pt;}
.y105{bottom:923.760000pt;}
.ydc{bottom:926.640000pt;}
.yb5{bottom:935.040000pt;}
.y2e{bottom:935.440000pt;}
.y147{bottom:939.120000pt;}
.y104{bottom:940.080000pt;}
.y5a{bottom:943.040000pt;}
.ydb{bottom:950.960000pt;}
.y2d{bottom:951.040000pt;}
.y146{bottom:954.800000pt;}
.y103{bottom:956.480000pt;}
.y59{bottom:958.720000pt;}
.y2c{bottom:966.720000pt;}
.y102{bottom:972.800000pt;}
.y58{bottom:974.320000pt;}
.yda{bottom:977.680000pt;}
.y145{bottom:978.400000pt;}
.y2b{bottom:982.320000pt;}
.y101{bottom:989.200000pt;}
.y57{bottom:990.000000pt;}
.y2a{bottom:998.000000pt;}
.yd9{bottom:1001.920000pt;}
.y144{bottom:1002.320000pt;}
.y29{bottom:1013.600000pt;}
.y27{bottom:1061.600000pt;}
.hd{height:23.600000pt;}
.hf{height:23.626667pt;}
.he{height:23.680000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.hc{height:39.200000pt;}
.h15{height:39.226667pt;}
.hb{height:39.280000pt;}
.h6{height:45.246562pt;}
.h11{height:47.920000pt;}
.h5{height:49.581562pt;}
.h10{height:53.309531pt;}
.h7{height:54.187500pt;}
.h14{height:54.880000pt;}
.h8{height:54.927899pt;}
.ha{height:55.631875pt;}
.h9{height:60.961875pt;}
.h4{height:63.128437pt;}
.h12{height:72.240000pt;}
.h13{height:96.480000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w11{width:21.760000pt;}
.w12{width:21.786667pt;}
.wa{width:23.600000pt;}
.w3{width:30.400000pt;}
.wd{width:37.600000pt;}
.wc{width:39.200000pt;}
.w5{width:44.400000pt;}
.w14{width:46.506667pt;}
.w9{width:62.560000pt;}
.w19{width:85.600000pt;}
.w17{width:85.680000pt;}
.w18{width:85.706667pt;}
.w6{width:92.240000pt;}
.we{width:98.320000pt;}
.w1e{width:106.960000pt;}
.w1c{width:109.360000pt;}
.w1d{width:109.386667pt;}
.w1b{width:113.920000pt;}
.w1a{width:119.546667pt;}
.w8{width:125.840000pt;}
.wb{width:134.106667pt;}
.w4{width:151.946667pt;}
.w10{width:156.160000pt;}
.wf{width:156.186667pt;}
.w15{width:157.680000pt;}
.w7{width:160.346667pt;}
.w16{width:344.746667pt;}
.w13{width:649.173333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:3.520000pt;}
.x9{left:6.880000pt;}
.x1{left:60.480000pt;}
.xf{left:72.400000pt;}
.x4{left:84.479988pt;}
.xa{left:92.240000pt;}
.x11{left:96.720000pt;}
.x33{left:98.879988pt;}
.x23{left:106.400000pt;}
.x22{left:108.479988pt;}
.x24{left:137.440000pt;}
.x2{left:180.266655pt;}
.x2e{left:181.306667pt;}
.x25{left:184.586667pt;}
.x12{left:231.466667pt;}
.xb{left:244.826667pt;}
.x13{left:271.306667pt;}
.x2d{left:289.386655pt;}
.x8{left:290.746655pt;}
.x2f{left:295.866667pt;}
.x14{left:309.626667pt;}
.x6{left:323.386655pt;}
.x26{left:342.906667pt;}
.xc{left:382.746667pt;}
.x30{left:405.866667pt;}
.x15{left:408.586667pt;}
.x27{left:429.226667pt;}
.x17{left:430.986667pt;}
.x18{left:453.413333pt;}
.x19{left:475.813333pt;}
.x1a{left:498.213333pt;}
.x28{left:515.653333pt;}
.x1b{left:520.613333pt;}
.xd{left:543.733333pt;}
.x16{left:565.413333pt;}
.x1c{left:587.813333pt;}
.x32{left:592.933322pt;}
.x29{left:601.973333pt;}
.x1d{left:610.213333pt;}
.x31{left:625.893333pt;}
.x1e{left:632.613333pt;}
.x5{left:643.893322pt;}
.x1f{left:655.013333pt;}
.xe{left:670.293333pt;}
.x20{left:677.413333pt;}
.x21{left:699.813333pt;}
.x3{left:704.053322pt;}
.x7{left:709.013322pt;}
.x2c{left:718.453322pt;}
.x2a{left:720.053322pt;}
.x2b{left:723.013322pt;}
}




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