
    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_8cd90c563572807949713ac9.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a619524e5f02d03cf359d51a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_60df467673fdf6ced07e2ff7.woff')format("woff");}.ff3{font-family:ff3;line-height:0.923340;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_a467f23b4bbddafa9edcf0b1.woff')format("woff");}.ff4{font-family:ff4;line-height:0.853027;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_0f73b60540780793731962af.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;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_d08c592a55e1755fb2bacdbf.woff')format("woff");}.ff6{font-family:ff6;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_09665b67706dfc2fba9551ae.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_1f039661180bc31085041b3a.woff')format("woff");}.ff9{font-family:ff9;line-height:0.970215;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_f0495c3eb95ef25217354757.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_b92d20be2a62372c7c9db67a.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_cd79af320c65070f49a2bdeb.woff')format("woff");}.ffc{font-family:ffc;line-height:0.942383;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:ffd;src:url('chunks/assets/font_dc14f5904a595d0b316c348e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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:ffe;src:url('chunks/assets/font_2b63c2ebe1747ca345275677.woff')format("woff");}.ffe{font-family:ffe;line-height:0.934082;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:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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:-15.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls12{letter-spacing:-2.520000px;}
.ls8{letter-spacing:-1.986000px;}
.ls9{letter-spacing:-1.584000px;}
.lse{letter-spacing:-1.548000px;}
.lsf{letter-spacing:-1.386000px;}
.lsd{letter-spacing:-1.080000px;}
.ls10{letter-spacing:-0.666000px;}
.lsc{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.053280px;}
.ls7{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.ls14{letter-spacing:0.106800px;}
.ls3{letter-spacing:0.132600px;}
.ls6{letter-spacing:0.174240px;}
.ls1{letter-spacing:0.180000px;}
.ls4{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.403200px;}
.ls5{letter-spacing:0.786240px;}
.ls0{letter-spacing:4.500000px;}
.ls11{letter-spacing:7.380000px;}
.ls16{letter-spacing:20.907360px;}
.ls15{letter-spacing:49.707360px;}
.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;}
}
.ws2{word-spacing:-16.626360px;}
.ws3{word-spacing:-16.493760px;}
.ws1{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.046800px;}
.ws7{word-spacing:-14.993280px;}
.ws9{word-spacing:-14.940000px;}
.ws12{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.722560px;}
.ws8{word-spacing:-14.580000px;}
.ws10{word-spacing:-14.274000px;}
.wsd{word-spacing:-13.860000px;}
.wsf{word-spacing:-13.554000px;}
.wsa{word-spacing:-13.505760px;}
.ws0{word-spacing:-13.500000px;}
.wse{word-spacing:-13.392000px;}
.ws11{word-spacing:-12.420000px;}
.wsb{word-spacing:-9.720000px;}
.ws5{word-spacing:-9.437760px;}
.ws6{word-spacing:-8.136000px;}
.wsc{word-spacing:0.000000px;}
._13{margin-left:-4.759920px;}
._4{margin-left:-2.944800px;}
._0{margin-left:-1.254960px;}
._2{width:1.140960px;}
._5{width:2.339520px;}
._3{width:3.356640px;}
._1{width:4.422240px;}
._f{width:6.142560px;}
._8{width:7.344960px;}
._10{width:9.078000px;}
._a{width:10.099440px;}
._9{width:11.175120px;}
._e{width:12.842880px;}
._11{width:13.869840px;}
._c{width:16.717680px;}
._b{width:17.966880px;}
._12{width:21.024000px;}
._7{width:22.111200px;}
._6{width:23.605200px;}
._d{width:25.631520px;}
.fc4{color:rgb(227,108,10);}
.fc3{color:rgb(23,54,93);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(36,64,97);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs2{font-size:62.991941px;}
.fs6{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y41{bottom:3.240000px;}
.ye6{bottom:3.285000px;}
.y46{bottom:3.960000px;}
.ye0{bottom:4.140000px;}
.yca{bottom:4.320000px;}
.ya1{bottom:5.400000px;}
.y96{bottom:5.580000px;}
.y9c{bottom:5.760000px;}
.y18{bottom:7.380000px;}
.ye2{bottom:8.280000px;}
.y44{bottom:10.620000px;}
.yd{bottom:10.800000px;}
.y4{bottom:12.240000px;}
.y1a{bottom:13.860000px;}
.y3{bottom:16.560000px;}
.yb{bottom:18.000000px;}
.yc8{bottom:20.340000px;}
.y40{bottom:20.520000px;}
.y45{bottom:22.320000px;}
.y17{bottom:23.985000px;}
.y43{bottom:25.200000px;}
.y1{bottom:33.300000px;}
.ya{bottom:34.200000px;}
.y2{bottom:35.100000px;}
.y3f{bottom:37.800000px;}
.y16{bottom:40.365000px;}
.y9{bottom:50.580000px;}
.y3e{bottom:55.080000px;}
.y15{bottom:56.925000px;}
.y3d{bottom:72.360000px;}
.y14{bottom:73.305000px;}
.y8{bottom:76.350000px;}
.y13{bottom:86.445000px;}
.y3c{bottom:89.460000px;}
.yd2{bottom:92.736000px;}
.y113{bottom:93.276000px;}
.y7{bottom:94.350000px;}
.y94{bottom:94.536000px;}
.y12{bottom:104.985000px;}
.y55{bottom:105.696000px;}
.y3b{bottom:106.740000px;}
.yd1{bottom:109.836000px;}
.y112{bottom:110.376000px;}
.y6{bottom:111.270000px;}
.y93{bottom:111.816000px;}
.y134{bottom:122.076000px;}
.y54{bottom:122.976000px;}
.y11{bottom:123.885000px;}
.y3a{bottom:124.020000px;}
.yd0{bottom:127.116000px;}
.y111{bottom:127.656000px;}
.y92{bottom:129.096000px;}
.y133{bottom:138.456000px;}
.y53{bottom:140.256000px;}
.y39{bottom:141.300000px;}
.y10{bottom:142.965000px;}
.ycf{bottom:144.396000px;}
.y110{bottom:144.936000px;}
.y91{bottom:146.376000px;}
.y132{bottom:154.830000px;}
.y52{bottom:157.530000px;}
.y38{bottom:158.580000px;}
.yce{bottom:161.670000px;}
.y10f{bottom:162.210000px;}
.y90{bottom:163.470000px;}
.yf{bottom:168.705000px;}
.y131{bottom:171.210000px;}
.y51{bottom:174.810000px;}
.y37{bottom:175.860000px;}
.ycd{bottom:178.950000px;}
.y10e{bottom:179.490000px;}
.y8f{bottom:180.750000px;}
.y130{bottom:187.590000px;}
.y50{bottom:192.090000px;}
.y36{bottom:192.960000px;}
.ycc{bottom:193.710000px;}
.y10d{bottom:196.770000px;}
.y8e{bottom:198.030000px;}
.y28{bottom:200.700000px;}
.y12f{bottom:203.970000px;}
.y4f{bottom:209.190000px;}
.y35{bottom:210.270000px;}
.ycb{bottom:211.710000px;}
.y10c{bottom:213.870000px;}
.y8d{bottom:215.310000px;}
.y27{bottom:216.030000px;}
.y12e{bottom:220.350000px;}
.y4e{bottom:226.470000px;}
.y34{bottom:227.550000px;}
.yc9{bottom:229.710000px;}
.y10b{bottom:231.150000px;}
.y8c{bottom:232.590000px;}
.y26{bottom:233.670000px;}
.y12d{bottom:236.730000px;}
.y4d{bottom:243.750000px;}
.y33{bottom:244.830000px;}
.y10a{bottom:248.430000px;}
.yc7{bottom:248.790000px;}
.y8b{bottom:249.870000px;}
.y25{bottom:250.950000px;}
.y12c{bottom:253.110000px;}
.y4c{bottom:261.030000px;}
.y32{bottom:262.110000px;}
.y109{bottom:265.710000px;}
.y8a{bottom:266.970000px;}
.y24{bottom:268.230000px;}
.y12b{bottom:269.490000px;}
.y4b{bottom:278.310000px;}
.y31{bottom:279.210000px;}
.y108{bottom:282.990000px;}
.y89{bottom:284.250000px;}
.y12a{bottom:285.870000px;}
.y23{bottom:286.050000px;}
.yc6{bottom:287.130000px;}
.y4a{bottom:295.590000px;}
.y30{bottom:296.490000px;}
.y107{bottom:300.270000px;}
.y88{bottom:301.530000px;}
.y129{bottom:302.250000px;}
.y22{bottom:303.330000px;}
.yc5{bottom:304.410000px;}
.y49{bottom:312.690000px;}
.y2f{bottom:313.770000px;}
.y106{bottom:317.370000px;}
.y128{bottom:318.630000px;}
.y87{bottom:318.810000px;}
.y21{bottom:320.970000px;}
.yc4{bottom:321.690000px;}
.y48{bottom:329.970000px;}
.y2e{bottom:331.050000px;}
.y105{bottom:334.650000px;}
.y127{bottom:335.010000px;}
.y86{bottom:336.090000px;}
.yc3{bottom:339.015000px;}
.y20{bottom:339.330000px;}
.y47{bottom:347.295000px;}
.y2d{bottom:348.330000px;}
.y126{bottom:351.435000px;}
.y104{bottom:351.975000px;}
.y85{bottom:353.415000px;}
.yc2{bottom:356.295000px;}
.y1f{bottom:357.510000px;}
.y42{bottom:361.335000px;}
.y2c{bottom:365.610000px;}
.y125{bottom:367.815000px;}
.y103{bottom:369.255000px;}
.y84{bottom:370.515000px;}
.yc1{bottom:371.055000px;}
.y1e{bottom:375.150000px;}
.y2b{bottom:382.710000px;}
.y124{bottom:384.195000px;}
.y102{bottom:386.535000px;}
.y83{bottom:387.795000px;}
.yc0{bottom:389.055000px;}
.y1b{bottom:397.875000px;}
.y2a{bottom:399.990000px;}
.y123{bottom:400.575000px;}
.y1d{bottom:402.330000px;}
.y101{bottom:403.815000px;}
.y82{bottom:405.075000px;}
.ybf{bottom:407.055000px;}
.y122{bottom:416.955000px;}
.y29{bottom:417.270000px;}
.y1c{bottom:419.970000px;}
.y100{bottom:420.915000px;}
.y81{bottom:422.355000px;}
.ybe{bottom:425.055000px;}
.y121{bottom:433.335000px;}
.yff{bottom:438.195000px;}
.y80{bottom:439.635000px;}
.ybd{bottom:443.055000px;}
.y120{bottom:449.715000px;}
.yfe{bottom:455.475000px;}
.y7f{bottom:456.915000px;}
.ybc{bottom:461.055000px;}
.y11f{bottom:466.095000px;}
.yfd{bottom:472.755000px;}
.y7e{bottom:474.015000px;}
.ybb{bottom:479.055000px;}
.y11e{bottom:482.475000px;}
.yfc{bottom:490.035000px;}
.y7d{bottom:491.295000px;}
.yba{bottom:497.055000px;}
.y11d{bottom:498.855000px;}
.yfb{bottom:507.135000px;}
.y7c{bottom:508.575000px;}
.yb9{bottom:515.055000px;}
.y11c{bottom:515.235000px;}
.yfa{bottom:524.415000px;}
.y7b{bottom:525.855000px;}
.y11b{bottom:531.615000px;}
.yb8{bottom:533.055000px;}
.yf9{bottom:541.695000px;}
.y7a{bottom:543.135000px;}
.y11a{bottom:547.995000px;}
.yb7{bottom:551.055000px;}
.yf8{bottom:558.975000px;}
.y79{bottom:560.235000px;}
.y119{bottom:564.375000px;}
.yb6{bottom:569.055000px;}
.yf7{bottom:576.255000px;}
.y78{bottom:577.515000px;}
.y118{bottom:580.755000px;}
.yb5{bottom:587.055000px;}
.yf6{bottom:593.535000px;}
.y77{bottom:594.795000px;}
.y117{bottom:597.315000px;}
.yb4{bottom:605.085000px;}
.yf5{bottom:610.665000px;}
.y76{bottom:612.105000px;}
.y116{bottom:613.725000px;}
.yb3{bottom:623.085000px;}
.yf4{bottom:627.945000px;}
.y75{bottom:629.385000px;}
.y115{bottom:630.105000px;}
.yb2{bottom:641.085000px;}
.yf3{bottom:645.225000px;}
.y74{bottom:646.665000px;}
.yb1{bottom:662.145000px;}
.yf2{bottom:662.505000px;}
.y73{bottom:663.765000px;}
.yb0{bottom:679.425000px;}
.yf1{bottom:679.785000px;}
.y72{bottom:681.045000px;}
.yaf{bottom:696.705000px;}
.yf0{bottom:697.065000px;}
.y71{bottom:698.325000px;}
.yae{bottom:713.985000px;}
.yef{bottom:714.165000px;}
.y70{bottom:715.605000px;}
.yad{bottom:731.265000px;}
.yee{bottom:731.445000px;}
.y6f{bottom:732.885000px;}
.yac{bottom:748.545000px;}
.yed{bottom:748.725000px;}
.y6e{bottom:750.165000px;}
.yab{bottom:765.645000px;}
.yec{bottom:766.005000px;}
.y6d{bottom:767.265000px;}
.yaa{bottom:782.925000px;}
.yeb{bottom:783.285000px;}
.y6c{bottom:784.545000px;}
.ya9{bottom:800.205000px;}
.yea{bottom:800.385000px;}
.y6b{bottom:801.825000px;}
.ya8{bottom:814.965000px;}
.ye9{bottom:817.665000px;}
.y6a{bottom:819.105000px;}
.y19{bottom:829.185000px;}
.ye8{bottom:832.425000px;}
.ya7{bottom:835.305000px;}
.y69{bottom:836.385000px;}
.ye7{bottom:850.425000px;}
.y114{bottom:853.485000px;}
.ya6{bottom:855.645000px;}
.ye{bottom:858.705000px;}
.ye5{bottom:868.425000px;}
.y68{bottom:870.810000px;}
.ya5{bottom:876.030000px;}
.ye4{bottom:886.470000px;}
.y67{bottom:888.090000px;}
.ya4{bottom:896.370000px;}
.ye3{bottom:904.470000px;}
.y66{bottom:905.370000px;}
.ya3{bottom:916.710000px;}
.ye1{bottom:922.470000px;}
.y65{bottom:922.650000px;}
.ya2{bottom:937.050000px;}
.y64{bottom:939.930000px;}
.ydf{bottom:945.510000px;}
.y63{bottom:957.030000px;}
.ya0{bottom:957.390000px;}
.yde{bottom:964.410000px;}
.y62{bottom:974.310000px;}
.y9f{bottom:977.550000px;}
.ydd{bottom:982.410000px;}
.y61{bottom:991.590000px;}
.y9e{bottom:997.890000px;}
.ydc{bottom:1003.650000px;}
.y60{bottom:1008.870000px;}
.y9d{bottom:1018.230000px;}
.ydb{bottom:1020.930000px;}
.y5f{bottom:1026.150000px;}
.yda{bottom:1038.030000px;}
.y9b{bottom:1038.570000px;}
.y5e{bottom:1043.430000px;}
.yc{bottom:1048.470000px;}
.yd9{bottom:1055.310000px;}
.y9a{bottom:1059.090000px;}
.y5d{bottom:1060.530000px;}
.yd8{bottom:1070.070000px;}
.y5{bottom:1073.850000px;}
.y5c{bottom:1077.810000px;}
.y99{bottom:1079.430000px;}
.yd7{bottom:1088.070000px;}
.y5b{bottom:1095.090000px;}
.y98{bottom:1099.770000px;}
.yd6{bottom:1106.070000px;}
.y5a{bottom:1112.370000px;}
.y97{bottom:1120.110000px;}
.yd5{bottom:1124.070000px;}
.y59{bottom:1129.650000px;}
.y95{bottom:1140.480000px;}
.yd4{bottom:1142.100000px;}
.y58{bottom:1146.960000px;}
.yd3{bottom:1160.100000px;}
.y57{bottom:1164.060000px;}
.y56{bottom:1181.340000px;}
.h20{height:17.100000px;}
.h21{height:17.136000px;}
.h24{height:17.280000px;}
.h25{height:17.316000px;}
.h23{height:18.180000px;}
.h1f{height:19.440000px;}
.h1d{height:19.620000px;}
.h1e{height:19.656000px;}
.h26{height:22.320000px;}
.hb{height:25.020000px;}
.h1c{height:27.147656px;}
.h11{height:27.492188px;}
.h12{height:29.520000px;}
.h22{height:34.380000px;}
.h8{height:36.180000px;}
.h19{height:36.540000px;}
.h17{height:36.839531px;}
.h29{height:39.716016px;}
.h28{height:41.410195px;}
.h18{height:41.726953px;}
.h5{height:42.164648px;}
.h3{height:42.281367px;}
.h16{height:43.437656px;}
.ha{height:44.820000px;}
.h1a{height:45.637031px;}
.h15{height:47.980898px;}
.h27{height:48.003656px;}
.h1b{height:48.027656px;}
.h2{height:49.176000px;}
.h9{height:49.680000px;}
.h4{height:53.087935px;}
.he{height:59.439023px;}
.h10{height:61.189805px;}
.hd{height:63.180000px;}
.hf{height:64.875938px;}
.h6{height:65.884219px;}
.h13{height:67.824844px;}
.h7{height:121.536000px;}
.hc{height:189.750000px;}
.h14{height:431.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:73.080000px;}
.w5{width:151.950000px;}
.w10{width:176.250000px;}
.wb{width:191.370000px;}
.w13{width:207.570000px;}
.w19{width:210.090000px;}
.wf{width:210.810000px;}
.w15{width:215.535000px;}
.w16{width:221.970000px;}
.w8{width:223.455000px;}
.w18{width:242.895000px;}
.w12{width:248.475000px;}
.wc{width:251.130000px;}
.w14{width:272.190000px;}
.w1a{width:275.250000px;}
.wa{width:283.575000px;}
.w17{width:290.730000px;}
.we{width:340.995000px;}
.w9{width:507.675000px;}
.w6{width:579.165000px;}
.w2{width:658.050000px;}
.wd{width:727.530000px;}
.w11{width:729.690000px;}
.w7{width:731.130000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.676000px;}
.xe{left:12.816000px;}
.x13{left:20.520000px;}
.xb{left:33.336000px;}
.x1d{left:41.400000px;}
.x1{left:81.000000px;}
.x6{left:98.130000px;}
.x15{left:101.375987px;}
.x28{left:108.035987px;}
.xf{left:128.010000px;}
.x27{left:133.380000px;}
.x25{left:137.880000px;}
.x26{left:140.040000px;}
.x10{left:148.710000px;}
.x11{left:215.175000px;}
.x22{left:224.849987px;}
.x7{left:232.950000px;}
.x18{left:239.969987px;}
.xc{left:252.075000px;}
.x3{left:272.055000px;}
.x4{left:277.095000px;}
.x1b{left:281.954987px;}
.x1f{left:285.914987px;}
.x20{left:297.975000px;}
.x12{left:304.455000px;}
.x23{left:325.335000px;}
.x1c{left:330.915000px;}
.x16{left:349.274987px;}
.x8{left:351.795000px;}
.xd{left:365.475000px;}
.x9{left:369.615000px;}
.x19{left:423.435000px;}
.xa{left:439.500000px;}
.x14{left:446.474987px;}
.x21{left:520.665000px;}
.x24{left:536.145000px;}
.x1e{left:539.205000px;}
.x17{left:558.105000px;}
.x1a{left:635.145000px;}
.x5{left:739.050000px;}
@media print{
.v2{vertical-align:-13.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls12{letter-spacing:-2.240000pt;}
.ls8{letter-spacing:-1.765333pt;}
.ls9{letter-spacing:-1.408000pt;}
.lse{letter-spacing:-1.376000pt;}
.lsf{letter-spacing:-1.232000pt;}
.lsd{letter-spacing:-0.960000pt;}
.ls10{letter-spacing:-0.592000pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.047360pt;}
.ls7{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.ls14{letter-spacing:0.094933pt;}
.ls3{letter-spacing:0.117867pt;}
.ls6{letter-spacing:0.154880pt;}
.ls1{letter-spacing:0.160000pt;}
.ls4{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.358400pt;}
.ls5{letter-spacing:0.698880pt;}
.ls0{letter-spacing:4.000000pt;}
.ls11{letter-spacing:6.560000pt;}
.ls16{letter-spacing:18.584320pt;}
.ls15{letter-spacing:44.184320pt;}
.ws2{word-spacing:-14.778987pt;}
.ws3{word-spacing:-14.661120pt;}
.ws1{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.374933pt;}
.ws7{word-spacing:-13.327360pt;}
.ws9{word-spacing:-13.280000pt;}
.ws12{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.086720pt;}
.ws8{word-spacing:-12.960000pt;}
.ws10{word-spacing:-12.688000pt;}
.wsd{word-spacing:-12.320000pt;}
.wsf{word-spacing:-12.048000pt;}
.wsa{word-spacing:-12.005120pt;}
.ws0{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.904000pt;}
.ws11{word-spacing:-11.040000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws5{word-spacing:-8.389120pt;}
.ws6{word-spacing:-7.232000pt;}
.wsc{word-spacing:0.000000pt;}
._13{margin-left:-4.231040pt;}
._4{margin-left:-2.617600pt;}
._0{margin-left:-1.115520pt;}
._2{width:1.014187pt;}
._5{width:2.079573pt;}
._3{width:2.983680pt;}
._1{width:3.930880pt;}
._f{width:5.460053pt;}
._8{width:6.528853pt;}
._10{width:8.069333pt;}
._a{width:8.977280pt;}
._9{width:9.933440pt;}
._e{width:11.415893pt;}
._11{width:12.328747pt;}
._c{width:14.860160pt;}
._b{width:15.970560pt;}
._12{width:18.688000pt;}
._7{width:19.654400pt;}
._6{width:20.982400pt;}
._d{width:22.783573pt;}
.fs8{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs2{font-size:55.992837pt;}
.fs6{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y41{bottom:2.880000pt;}
.ye6{bottom:2.920000pt;}
.y46{bottom:3.520000pt;}
.ye0{bottom:3.680000pt;}
.yca{bottom:3.840000pt;}
.ya1{bottom:4.800000pt;}
.y96{bottom:4.960000pt;}
.y9c{bottom:5.120000pt;}
.y18{bottom:6.560000pt;}
.ye2{bottom:7.360000pt;}
.y44{bottom:9.440000pt;}
.yd{bottom:9.600000pt;}
.y4{bottom:10.880000pt;}
.y1a{bottom:12.320000pt;}
.y3{bottom:14.720000pt;}
.yb{bottom:16.000000pt;}
.yc8{bottom:18.080000pt;}
.y40{bottom:18.240000pt;}
.y45{bottom:19.840000pt;}
.y17{bottom:21.320000pt;}
.y43{bottom:22.400000pt;}
.y1{bottom:29.600000pt;}
.ya{bottom:30.400000pt;}
.y2{bottom:31.200000pt;}
.y3f{bottom:33.600000pt;}
.y16{bottom:35.880000pt;}
.y9{bottom:44.960000pt;}
.y3e{bottom:48.960000pt;}
.y15{bottom:50.600000pt;}
.y3d{bottom:64.320000pt;}
.y14{bottom:65.160000pt;}
.y8{bottom:67.866667pt;}
.y13{bottom:76.840000pt;}
.y3c{bottom:79.520000pt;}
.yd2{bottom:82.432000pt;}
.y113{bottom:82.912000pt;}
.y7{bottom:83.866667pt;}
.y94{bottom:84.032000pt;}
.y12{bottom:93.320000pt;}
.y55{bottom:93.952000pt;}
.y3b{bottom:94.880000pt;}
.yd1{bottom:97.632000pt;}
.y112{bottom:98.112000pt;}
.y6{bottom:98.906667pt;}
.y93{bottom:99.392000pt;}
.y134{bottom:108.512000pt;}
.y54{bottom:109.312000pt;}
.y11{bottom:110.120000pt;}
.y3a{bottom:110.240000pt;}
.yd0{bottom:112.992000pt;}
.y111{bottom:113.472000pt;}
.y92{bottom:114.752000pt;}
.y133{bottom:123.072000pt;}
.y53{bottom:124.672000pt;}
.y39{bottom:125.600000pt;}
.y10{bottom:127.080000pt;}
.ycf{bottom:128.352000pt;}
.y110{bottom:128.832000pt;}
.y91{bottom:130.112000pt;}
.y132{bottom:137.626667pt;}
.y52{bottom:140.026667pt;}
.y38{bottom:140.960000pt;}
.yce{bottom:143.706667pt;}
.y10f{bottom:144.186667pt;}
.y90{bottom:145.306667pt;}
.yf{bottom:149.960000pt;}
.y131{bottom:152.186667pt;}
.y51{bottom:155.386667pt;}
.y37{bottom:156.320000pt;}
.ycd{bottom:159.066667pt;}
.y10e{bottom:159.546667pt;}
.y8f{bottom:160.666667pt;}
.y130{bottom:166.746667pt;}
.y50{bottom:170.746667pt;}
.y36{bottom:171.520000pt;}
.ycc{bottom:172.186667pt;}
.y10d{bottom:174.906667pt;}
.y8e{bottom:176.026667pt;}
.y28{bottom:178.400000pt;}
.y12f{bottom:181.306667pt;}
.y4f{bottom:185.946667pt;}
.y35{bottom:186.906667pt;}
.ycb{bottom:188.186667pt;}
.y10c{bottom:190.106667pt;}
.y8d{bottom:191.386667pt;}
.y27{bottom:192.026667pt;}
.y12e{bottom:195.866667pt;}
.y4e{bottom:201.306667pt;}
.y34{bottom:202.266667pt;}
.yc9{bottom:204.186667pt;}
.y10b{bottom:205.466667pt;}
.y8c{bottom:206.746667pt;}
.y26{bottom:207.706667pt;}
.y12d{bottom:210.426667pt;}
.y4d{bottom:216.666667pt;}
.y33{bottom:217.626667pt;}
.y10a{bottom:220.826667pt;}
.yc7{bottom:221.146667pt;}
.y8b{bottom:222.106667pt;}
.y25{bottom:223.066667pt;}
.y12c{bottom:224.986667pt;}
.y4c{bottom:232.026667pt;}
.y32{bottom:232.986667pt;}
.y109{bottom:236.186667pt;}
.y8a{bottom:237.306667pt;}
.y24{bottom:238.426667pt;}
.y12b{bottom:239.546667pt;}
.y4b{bottom:247.386667pt;}
.y31{bottom:248.186667pt;}
.y108{bottom:251.546667pt;}
.y89{bottom:252.666667pt;}
.y12a{bottom:254.106667pt;}
.y23{bottom:254.266667pt;}
.yc6{bottom:255.226667pt;}
.y4a{bottom:262.746667pt;}
.y30{bottom:263.546667pt;}
.y107{bottom:266.906667pt;}
.y88{bottom:268.026667pt;}
.y129{bottom:268.666667pt;}
.y22{bottom:269.626667pt;}
.yc5{bottom:270.586667pt;}
.y49{bottom:277.946667pt;}
.y2f{bottom:278.906667pt;}
.y106{bottom:282.106667pt;}
.y128{bottom:283.226667pt;}
.y87{bottom:283.386667pt;}
.y21{bottom:285.306667pt;}
.yc4{bottom:285.946667pt;}
.y48{bottom:293.306667pt;}
.y2e{bottom:294.266667pt;}
.y105{bottom:297.466667pt;}
.y127{bottom:297.786667pt;}
.y86{bottom:298.746667pt;}
.yc3{bottom:301.346667pt;}
.y20{bottom:301.626667pt;}
.y47{bottom:308.706667pt;}
.y2d{bottom:309.626667pt;}
.y126{bottom:312.386667pt;}
.y104{bottom:312.866667pt;}
.y85{bottom:314.146667pt;}
.yc2{bottom:316.706667pt;}
.y1f{bottom:317.786667pt;}
.y42{bottom:321.186667pt;}
.y2c{bottom:324.986667pt;}
.y125{bottom:326.946667pt;}
.y103{bottom:328.226667pt;}
.y84{bottom:329.346667pt;}
.yc1{bottom:329.826667pt;}
.y1e{bottom:333.466667pt;}
.y2b{bottom:340.186667pt;}
.y124{bottom:341.506667pt;}
.y102{bottom:343.586667pt;}
.y83{bottom:344.706667pt;}
.yc0{bottom:345.826667pt;}
.y1b{bottom:353.666667pt;}
.y2a{bottom:355.546667pt;}
.y123{bottom:356.066667pt;}
.y1d{bottom:357.626667pt;}
.y101{bottom:358.946667pt;}
.y82{bottom:360.066667pt;}
.ybf{bottom:361.826667pt;}
.y122{bottom:370.626667pt;}
.y29{bottom:370.906667pt;}
.y1c{bottom:373.306667pt;}
.y100{bottom:374.146667pt;}
.y81{bottom:375.426667pt;}
.ybe{bottom:377.826667pt;}
.y121{bottom:385.186667pt;}
.yff{bottom:389.506667pt;}
.y80{bottom:390.786667pt;}
.ybd{bottom:393.826667pt;}
.y120{bottom:399.746667pt;}
.yfe{bottom:404.866667pt;}
.y7f{bottom:406.146667pt;}
.ybc{bottom:409.826667pt;}
.y11f{bottom:414.306667pt;}
.yfd{bottom:420.226667pt;}
.y7e{bottom:421.346667pt;}
.ybb{bottom:425.826667pt;}
.y11e{bottom:428.866667pt;}
.yfc{bottom:435.586667pt;}
.y7d{bottom:436.706667pt;}
.yba{bottom:441.826667pt;}
.y11d{bottom:443.426667pt;}
.yfb{bottom:450.786667pt;}
.y7c{bottom:452.066667pt;}
.yb9{bottom:457.826667pt;}
.y11c{bottom:457.986667pt;}
.yfa{bottom:466.146667pt;}
.y7b{bottom:467.426667pt;}
.y11b{bottom:472.546667pt;}
.yb8{bottom:473.826667pt;}
.yf9{bottom:481.506667pt;}
.y7a{bottom:482.786667pt;}
.y11a{bottom:487.106667pt;}
.yb7{bottom:489.826667pt;}
.yf8{bottom:496.866667pt;}
.y79{bottom:497.986667pt;}
.y119{bottom:501.666667pt;}
.yb6{bottom:505.826667pt;}
.yf7{bottom:512.226667pt;}
.y78{bottom:513.346667pt;}
.y118{bottom:516.226667pt;}
.yb5{bottom:521.826667pt;}
.yf6{bottom:527.586667pt;}
.y77{bottom:528.706667pt;}
.y117{bottom:530.946667pt;}
.yb4{bottom:537.853333pt;}
.yf5{bottom:542.813333pt;}
.y76{bottom:544.093333pt;}
.y116{bottom:545.533333pt;}
.yb3{bottom:553.853333pt;}
.yf4{bottom:558.173333pt;}
.y75{bottom:559.453333pt;}
.y115{bottom:560.093333pt;}
.yb2{bottom:569.853333pt;}
.yf3{bottom:573.533333pt;}
.y74{bottom:574.813333pt;}
.yb1{bottom:588.573333pt;}
.yf2{bottom:588.893333pt;}
.y73{bottom:590.013333pt;}
.yb0{bottom:603.933333pt;}
.yf1{bottom:604.253333pt;}
.y72{bottom:605.373333pt;}
.yaf{bottom:619.293333pt;}
.yf0{bottom:619.613333pt;}
.y71{bottom:620.733333pt;}
.yae{bottom:634.653333pt;}
.yef{bottom:634.813333pt;}
.y70{bottom:636.093333pt;}
.yad{bottom:650.013333pt;}
.yee{bottom:650.173333pt;}
.y6f{bottom:651.453333pt;}
.yac{bottom:665.373333pt;}
.yed{bottom:665.533333pt;}
.y6e{bottom:666.813333pt;}
.yab{bottom:680.573333pt;}
.yec{bottom:680.893333pt;}
.y6d{bottom:682.013333pt;}
.yaa{bottom:695.933333pt;}
.yeb{bottom:696.253333pt;}
.y6c{bottom:697.373333pt;}
.ya9{bottom:711.293333pt;}
.yea{bottom:711.453333pt;}
.y6b{bottom:712.733333pt;}
.ya8{bottom:724.413333pt;}
.ye9{bottom:726.813333pt;}
.y6a{bottom:728.093333pt;}
.y19{bottom:737.053333pt;}
.ye8{bottom:739.933333pt;}
.ya7{bottom:742.493333pt;}
.y69{bottom:743.453333pt;}
.ye7{bottom:755.933333pt;}
.y114{bottom:758.653333pt;}
.ya6{bottom:760.573333pt;}
.ye{bottom:763.293333pt;}
.ye5{bottom:771.933333pt;}
.y68{bottom:774.053333pt;}
.ya5{bottom:778.693333pt;}
.ye4{bottom:787.973333pt;}
.y67{bottom:789.413333pt;}
.ya4{bottom:796.773333pt;}
.ye3{bottom:803.973333pt;}
.y66{bottom:804.773333pt;}
.ya3{bottom:814.853333pt;}
.ye1{bottom:819.973333pt;}
.y65{bottom:820.133333pt;}
.ya2{bottom:832.933333pt;}
.y64{bottom:835.493333pt;}
.ydf{bottom:840.453333pt;}
.y63{bottom:850.693333pt;}
.ya0{bottom:851.013333pt;}
.yde{bottom:857.253333pt;}
.y62{bottom:866.053333pt;}
.y9f{bottom:868.933333pt;}
.ydd{bottom:873.253333pt;}
.y61{bottom:881.413333pt;}
.y9e{bottom:887.013333pt;}
.ydc{bottom:892.133333pt;}
.y60{bottom:896.773333pt;}
.y9d{bottom:905.093333pt;}
.ydb{bottom:907.493333pt;}
.y5f{bottom:912.133333pt;}
.yda{bottom:922.693333pt;}
.y9b{bottom:923.173333pt;}
.y5e{bottom:927.493333pt;}
.yc{bottom:931.973333pt;}
.yd9{bottom:938.053333pt;}
.y9a{bottom:941.413333pt;}
.y5d{bottom:942.693333pt;}
.yd8{bottom:951.173333pt;}
.y5{bottom:954.533333pt;}
.y5c{bottom:958.053333pt;}
.y99{bottom:959.493333pt;}
.yd7{bottom:967.173333pt;}
.y5b{bottom:973.413333pt;}
.y98{bottom:977.573333pt;}
.yd6{bottom:983.173333pt;}
.y5a{bottom:988.773333pt;}
.y97{bottom:995.653333pt;}
.yd5{bottom:999.173333pt;}
.y59{bottom:1004.133333pt;}
.y95{bottom:1013.760000pt;}
.yd4{bottom:1015.200000pt;}
.y58{bottom:1019.520000pt;}
.yd3{bottom:1031.200000pt;}
.y57{bottom:1034.720000pt;}
.y56{bottom:1050.080000pt;}
.h20{height:15.200000pt;}
.h21{height:15.232000pt;}
.h24{height:15.360000pt;}
.h25{height:15.392000pt;}
.h23{height:16.160000pt;}
.h1f{height:17.280000pt;}
.h1d{height:17.440000pt;}
.h1e{height:17.472000pt;}
.h26{height:19.840000pt;}
.hb{height:22.240000pt;}
.h1c{height:24.131250pt;}
.h11{height:24.437500pt;}
.h12{height:26.240000pt;}
.h22{height:30.560000pt;}
.h8{height:32.160000pt;}
.h19{height:32.480000pt;}
.h17{height:32.746250pt;}
.h29{height:35.303125pt;}
.h28{height:36.809062pt;}
.h18{height:37.090625pt;}
.h5{height:37.479688pt;}
.h3{height:37.583438pt;}
.h16{height:38.611250pt;}
.ha{height:39.840000pt;}
.h1a{height:40.566250pt;}
.h15{height:42.649687pt;}
.h27{height:42.669917pt;}
.h1b{height:42.691250pt;}
.h2{height:43.712000pt;}
.h9{height:44.160000pt;}
.h4{height:47.189275pt;}
.he{height:52.834688pt;}
.h10{height:54.390938pt;}
.hd{height:56.160000pt;}
.hf{height:57.667500pt;}
.h6{height:58.563750pt;}
.h13{height:60.288750pt;}
.h7{height:108.032000pt;}
.hc{height:168.666667pt;}
.h14{height:383.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:64.960000pt;}
.w5{width:135.066667pt;}
.w10{width:156.666667pt;}
.wb{width:170.106667pt;}
.w13{width:184.506667pt;}
.w19{width:186.746667pt;}
.wf{width:187.386667pt;}
.w15{width:191.586667pt;}
.w16{width:197.306667pt;}
.w8{width:198.626667pt;}
.w18{width:215.906667pt;}
.w12{width:220.866667pt;}
.wc{width:223.226667pt;}
.w14{width:241.946667pt;}
.w1a{width:244.666667pt;}
.wa{width:252.066667pt;}
.w17{width:258.426667pt;}
.we{width:303.106667pt;}
.w9{width:451.266667pt;}
.w6{width:514.813333pt;}
.w2{width:584.933333pt;}
.wd{width:646.693333pt;}
.w11{width:648.613333pt;}
.w7{width:649.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.712000pt;}
.xe{left:11.392000pt;}
.x13{left:18.240000pt;}
.xb{left:29.632000pt;}
.x1d{left:36.800000pt;}
.x1{left:72.000000pt;}
.x6{left:87.226667pt;}
.x15{left:90.111988pt;}
.x28{left:96.031988pt;}
.xf{left:113.786667pt;}
.x27{left:118.560000pt;}
.x25{left:122.560000pt;}
.x26{left:124.480000pt;}
.x10{left:132.186667pt;}
.x11{left:191.266667pt;}
.x22{left:199.866655pt;}
.x7{left:207.066667pt;}
.x18{left:213.306655pt;}
.xc{left:224.066667pt;}
.x3{left:241.826667pt;}
.x4{left:246.306667pt;}
.x1b{left:250.626655pt;}
.x1f{left:254.146655pt;}
.x20{left:264.866667pt;}
.x12{left:270.626667pt;}
.x23{left:289.186667pt;}
.x1c{left:294.146667pt;}
.x16{left:310.466655pt;}
.x8{left:312.706667pt;}
.xd{left:324.866667pt;}
.x9{left:328.546667pt;}
.x19{left:376.386667pt;}
.xa{left:390.666667pt;}
.x14{left:396.866655pt;}
.x21{left:462.813333pt;}
.x24{left:476.573333pt;}
.x1e{left:479.293333pt;}
.x17{left:496.093333pt;}
.x1a{left:564.573333pt;}
.x5{left:656.933333pt;}
}




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