
    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_cce5a838840cb995586e5b67.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_230850650b798bdd57a107e6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.088379;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_2090c6102780a494bda7749d.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_96ea69e6b3d5d3136c1dd901.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_676fb428c9899755ed4ef7e5.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f507bb9f20ceae8bf7d9d18a.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d73b1094329f510f1d4949df.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_d0d54fc211f4f96566782fdf.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_87261adc89aab970e3f0a8b8.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_977de70f2b7c9611ec0723b0.woff')format("woff");}.ffb{font-family:ffb;line-height:1.125737;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_d20dc789feae328a1b070367.woff')format("woff");}.ffc{font-family:ffc;line-height:0.850586;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;}
.v3{vertical-align:-15.120000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls18{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.186600px;}
.ls26{letter-spacing:-0.159600px;}
.ls7{letter-spacing:-0.135000px;}
.lsa{letter-spacing:-0.121200px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls27{letter-spacing:-0.078000px;}
.ls20{letter-spacing:-0.063600px;}
.lsc{letter-spacing:-0.060600px;}
.ls1a{letter-spacing:-0.013320px;}
.ls19{letter-spacing:-0.007560px;}
.ls21{letter-spacing:-0.003240px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.011520px;}
.lse{letter-spacing:0.045360px;}
.ls15{letter-spacing:0.048960px;}
.ls1e{letter-spacing:0.051120px;}
.ls16{letter-spacing:0.060600px;}
.ls11{letter-spacing:0.064800px;}
.ls3{letter-spacing:0.072000px;}
.ls1b{letter-spacing:0.074160px;}
.ls13{letter-spacing:0.074400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls10{letter-spacing:0.116400px;}
.ls5{letter-spacing:0.144000px;}
.ls1c{letter-spacing:0.153000px;}
.lsb{letter-spacing:0.173400px;}
.ls24{letter-spacing:0.180000px;}
.ls9{letter-spacing:0.181200px;}
.ls17{letter-spacing:0.275400px;}
.ls0{letter-spacing:0.360000px;}
.ls25{letter-spacing:0.411120px;}
.ls1f{letter-spacing:0.806400px;}
.lsf{letter-spacing:7.293600px;}
.ls1d{letter-spacing:32.133600px;}
.ls23{letter-spacing:47.726640px;}
.ls12{letter-spacing:63.566640px;}
.ls22{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;}
}
.ws5{word-spacing:-14.493600px;}
.wsd{word-spacing:-14.372400px;}
.ws3{word-spacing:-13.407600px;}
.ws6{word-spacing:-13.399800px;}
.wsf{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.ws10{word-spacing:-13.218840px;}
.ws7{word-spacing:-13.165800px;}
.ws11{word-spacing:-13.162800px;}
.ws13{word-spacing:-13.148400px;}
.ws12{word-spacing:-13.066800px;}
.wsb{word-spacing:-13.039800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws8{word-spacing:-8.625600px;}
.wsc{word-spacing:-8.614200px;}
.ws9{word-spacing:-8.553600px;}
.wse{word-spacing:-8.265600px;}
.wsa{word-spacing:0.000000px;}
.ws4{word-spacing:4.304880px;}
._12{margin-left:-5.290560px;}
._11{margin-left:-3.612600px;}
._9{margin-left:-2.399400px;}
._0{margin-left:-1.110000px;}
._2{width:1.599039px;}
._6{width:2.649445px;}
._c{width:3.822597px;}
._8{width:5.106602px;}
._7{width:6.372600px;}
._b{width:7.515000px;}
._4{width:8.536800px;}
._5{width:9.690447px;}
._a{width:11.002200px;}
._10{width:12.139800px;}
._1{width:13.169412px;}
._13{width:15.048840px;}
._18{width:17.055240px;}
._f{width:18.216600px;}
._3{width:20.140200px;}
._25{width:21.342600px;}
._19{width:22.605120px;}
._1a{width:23.655000px;}
._2a{width:25.222560px;}
._17{width:27.623401px;}
._e{width:29.278200px;}
._d{width:31.167360px;}
._22{width:36.516600px;}
._23{width:37.851840px;}
._20{width:39.828240px;}
._1f{width:40.881600px;}
._29{width:42.015000px;}
._21{width:43.166160px;}
._26{width:48.600720px;}
._27{width:49.852080px;}
._1b{width:87.805080px;}
._1c{width:88.827480px;}
._24{width:151.261920px;}
._15{width:183.573960px;}
._16{width:202.773600px;}
._1d{width:224.451720px;}
._1e{width:225.462600px;}
._28{width:445.128480px;}
._14{width:1422.480000px;}
.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;}
.fs7{font-size:63.000000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y91{bottom:1.350000px;}
.y8f{bottom:3.330000px;}
.y72{bottom:4.500000px;}
.y76{bottom:4.590000px;}
.y94{bottom:7.740000px;}
.y74{bottom:7.830000px;}
.y8a{bottom:7.920000px;}
.y71{bottom:11.250000px;}
.y8e{bottom:20.970000px;}
.y89{bottom:25.470000px;}
.y81{bottom:25.500000px;}
.y8d{bottom:38.520000px;}
.y88{bottom:43.020000px;}
.y82{bottom:43.050000px;}
.y80{bottom:47.550000px;}
.y87{bottom:60.660000px;}
.y7f{bottom:65.100000px;}
.y2{bottom:73.380000px;}
.y27{bottom:74.190000px;}
.y86{bottom:78.210000px;}
.y7d{bottom:82.740000px;}
.y7c{bottom:100.290000px;}
.y1{bottom:101.640000px;}
.y7e{bottom:104.790000px;}
.yef{bottom:116.940000px;}
.y85{bottom:120.270000px;}
.y7b{bottom:122.430000px;}
.y9c{bottom:129.450000px;}
.yee{bottom:134.490000px;}
.y7a{bottom:139.980000px;}
.y46{bottom:141.600000px;}
.y11c{bottom:142.680000px;}
.y9b{bottom:147.090000px;}
.yed{bottom:152.130000px;}
.y45{bottom:159.150000px;}
.y11b{bottom:160.320000px;}
.y79{bottom:162.030000px;}
.y9a{bottom:164.640000px;}
.yc2{bottom:165.630000px;}
.y44{bottom:176.790000px;}
.y11a{bottom:177.870000px;}
.yec{bottom:178.680000px;}
.y78{bottom:179.670000px;}
.y99{bottom:182.190000px;}
.yc1{bottom:183.270000px;}
.y119{bottom:195.510000px;}
.yeb{bottom:196.320000px;}
.y98{bottom:199.830000px;}
.yc0{bottom:200.820000px;}
.y70{bottom:201.720000px;}
.y43{bottom:212.340000px;}
.yea{bottom:213.870000px;}
.y25{bottom:215.130000px;}
.y97{bottom:217.380000px;}
.y84{bottom:217.920000px;}
.ybf{bottom:218.370000px;}
.y118{bottom:222.060000px;}
.y24{bottom:232.680000px;}
.y42{bottom:233.760000px;}
.y96{bottom:234.930000px;}
.ybe{bottom:236.010000px;}
.y6f{bottom:237.360000px;}
.y117{bottom:239.610000px;}
.ye9{bottom:240.420000px;}
.y41{bottom:247.530000px;}
.ybd{bottom:253.560000px;}
.y23{bottom:254.100000px;}
.y116{bottom:257.250000px;}
.ye8{bottom:258.060000px;}
.y40{bottom:265.080000px;}
.y22{bottom:267.870000px;}
.y95{bottom:267.960000px;}
.y6e{bottom:272.910000px;}
.ybc{bottom:274.980000px;}
.y3f{bottom:282.720000px;}
.y115{bottom:283.800000px;}
.ye7{bottom:284.610000px;}
.y21{bottom:285.510000px;}
.ybb{bottom:288.750000px;}
.y6d{bottom:290.460000px;}
.y3e{bottom:300.270000px;}
.y114{bottom:301.440000px;}
.ye6{bottom:302.250000px;}
.y20{bottom:303.060000px;}
.yba{bottom:306.300000px;}
.y6c{bottom:308.100000px;}
.y1f{bottom:320.610000px;}
.yb9{bottom:323.940000px;}
.y113{bottom:327.990000px;}
.ye5{bottom:328.800000px;}
.y93{bottom:330.420000px;}
.y6b{bottom:334.650000px;}
.y3d{bottom:335.910000px;}
.y1e{bottom:338.250000px;}
.ye4{bottom:346.350000px;}
.y3c{bottom:353.460000px;}
.y112{bottom:354.540000px;}
.y1d{bottom:355.800000px;}
.yb8{bottom:359.490000px;}
.ye3{bottom:363.990000px;}
.y6a{bottom:370.290000px;}
.y3b{bottom:371.010000px;}
.y111{bottom:372.180000px;}
.yb7{bottom:377.130000px;}
.y1c{bottom:382.710000px;}
.y69{bottom:387.840000px;}
.y3a{bottom:388.650000px;}
.y110{bottom:389.730000px;}
.ye2{bottom:390.540000px;}
.yb6{bottom:394.680000px;}
.y68{bottom:405.390000px;}
.y39{bottom:406.200000px;}
.ye1{bottom:408.090000px;}
.yb5{bottom:412.230000px;}
.y10f{bottom:416.370000px;}
.y67{bottom:423.030000px;}
.yb4{bottom:429.870000px;}
.y1b{bottom:430.950000px;}
.y10e{bottom:433.920000px;}
.ye0{bottom:434.730000px;}
.y66{bottom:440.580000px;}
.y83{bottom:440.670000px;}
.y38{bottom:441.750000px;}
.yb3{bottom:447.420000px;}
.y1a{bottom:448.860000px;}
.ydf{bottom:452.280000px;}
.y77{bottom:455.610000px;}
.y10d{bottom:460.470000px;}
.y65{bottom:467.220000px;}
.yde{bottom:469.950000px;}
.y37{bottom:474.000000px;}
.y10c{bottom:478.140000px;}
.yb2{bottom:483.090000px;}
.y19{bottom:485.970000px;}
.ydd{bottom:496.500000px;}
.yb1{bottom:500.640000px;}
.y64{bottom:503.070000px;}
.y18{bottom:503.520000px;}
.y10b{bottom:504.690000px;}
.ydc{bottom:514.050000px;}
.yb0{bottom:518.190000px;}
.y17{bottom:521.160000px;}
.y10a{bottom:522.330000px;}
.yaf{bottom:535.830000px;}
.y16{bottom:538.710000px;}
.ydb{bottom:540.690000px;}
.y109{bottom:548.880000px;}
.y63{bottom:551.310000px;}
.yae{bottom:553.380000px;}
.y15{bottom:556.260000px;}
.yda{bottom:558.240000px;}
.y92{bottom:558.510000px;}
.y108{bottom:566.430000px;}
.y62{bottom:568.950000px;}
.yad{bottom:571.020000px;}
.y14{bottom:573.900000px;}
.y107{bottom:584.070000px;}
.yd9{bottom:584.880000px;}
.y61{bottom:586.590000px;}
.yac{bottom:588.570000px;}
.y13{bottom:591.450000px;}
.yd8{bottom:602.430000px;}
.y60{bottom:604.140000px;}
.y12{bottom:609.090000px;}
.y106{bottom:610.620000px;}
.y5f{bottom:621.690000px;}
.yab{bottom:624.120000px;}
.y11{bottom:626.640000px;}
.y105{bottom:628.260000px;}
.yd7{bottom:628.980000px;}
.y5e{bottom:639.330000px;}
.yaa{bottom:641.760000px;}
.y10{bottom:644.190000px;}
.y90{bottom:644.910000px;}
.yd6{bottom:646.620000px;}
.y75{bottom:654.720000px;}
.y104{bottom:654.810000px;}
.y5d{bottom:656.880000px;}
.ya9{bottom:659.310000px;}
.yf{bottom:661.830000px;}
.y103{bottom:672.360000px;}
.yd5{bottom:673.170000px;}
.y5c{bottom:675.330000px;}
.ya8{bottom:676.950000px;}
.ye{bottom:679.380000px;}
.y36{bottom:682.170000px;}
.yd4{bottom:690.810000px;}
.y5b{bottom:692.880000px;}
.ya7{bottom:694.500000px;}
.yd{bottom:697.020000px;}
.y102{bottom:699.000000px;}
.y35{bottom:699.720000px;}
.y5a{bottom:711.330000px;}
.ya6{bottom:712.050000px;}
.yc{bottom:714.570000px;}
.y101{bottom:716.550000px;}
.y34{bottom:717.360000px;}
.yd3{bottom:717.720000px;}
.y59{bottom:728.880000px;}
.ya5{bottom:729.690000px;}
.yb{bottom:732.120000px;}
.y100{bottom:734.190000px;}
.y33{bottom:734.910000px;}
.y58{bottom:746.520000px;}
.ya4{bottom:747.240000px;}
.y32{bottom:752.460000px;}
.ya{bottom:759.120000px;}
.yff{bottom:760.740000px;}
.y57{bottom:764.070000px;}
.ya3{bottom:764.790000px;}
.yd2{bottom:765.960000px;}
.y31{bottom:770.100000px;}
.yfe{bottom:778.290000px;}
.ya2{bottom:782.430000px;}
.y30{bottom:787.650000px;}
.yd1{bottom:792.870000px;}
.ya1{bottom:799.980000px;}
.y56{bottom:800.520000px;}
.yfd{bottom:804.930000px;}
.y9{bottom:805.830000px;}
.ya0{bottom:817.620000px;}
.y55{bottom:818.070000px;}
.yfc{bottom:822.480000px;}
.y2f{bottom:823.290000px;}
.yd0{bottom:829.860000px;}
.y54{bottom:835.620000px;}
.y2e{bottom:840.840000px;}
.y8{bottom:841.380000px;}
.y9f{bottom:844.530000px;}
.ycf{bottom:847.500000px;}
.yfb{bottom:849.030000px;}
.y53{bottom:853.260000px;}
.y2d{bottom:858.390000px;}
.y8c{bottom:859.470000px;}
.yce{bottom:865.050000px;}
.yfa{bottom:866.670000px;}
.y52{bottom:870.810000px;}
.y2c{bottom:876.030000px;}
.y7{bottom:877.200000px;}
.yf9{bottom:884.220000px;}
.ycd{bottom:891.960000px;}
.y9e{bottom:892.770000px;}
.y11f{bottom:893.220000px;}
.y2b{bottom:893.580000px;}
.y51{bottom:897.720000px;}
.yf8{bottom:910.860000px;}
.y2a{bottom:911.220000px;}
.y8b{bottom:912.930000px;}
.y6{bottom:913.200000px;}
.y73{bottom:919.410000px;}
.y9d{bottom:924.990000px;}
.yf7{bottom:928.410000px;}
.ycc{bottom:929.310000px;}
.y50{bottom:945.960000px;}
.y29{bottom:946.770000px;}
.y5{bottom:949.290000px;}
.yf6{bottom:954.960000px;}
.y4f{bottom:963.600000px;}
.yf5{bottom:972.600000px;}
.ycb{bottom:977.550000px;}
.y28{bottom:978.990000px;}
.y4e{bottom:981.150000px;}
.y4{bottom:987.630000px;}
.yca{bottom:995.190000px;}
.y4d{bottom:998.790000px;}
.yf4{bottom:999.150000px;}
.y3{bottom:1012.320000px;}
.yc9{bottom:1012.770000px;}
.yf3{bottom:1016.820000px;}
.yc8{bottom:1030.320000px;}
.y4c{bottom:1034.370000px;}
.y11e{bottom:1043.370000px;}
.yc7{bottom:1047.960000px;}
.y4b{bottom:1051.920000px;}
.yf2{bottom:1060.920000px;}
.yc6{bottom:1065.510000px;}
.y4a{bottom:1069.560000px;}
.yf1{bottom:1078.560000px;}
.yc5{bottom:1083.150000px;}
.y49{bottom:1087.110000px;}
.yf0{bottom:1096.110000px;}
.yc4{bottom:1100.700000px;}
.y11d{bottom:1105.110000px;}
.y48{bottom:1122.750000px;}
.yc3{bottom:1127.610000px;}
.y47{bottom:1140.300000px;}
.y26{bottom:1194.300000px;}
.hf{height:26.550000px;}
.h2{height:30.022383px;}
.h9{height:37.191445px;}
.h3{height:39.155273px;}
.h6{height:50.902383px;}
.h7{height:52.311445px;}
.h15{height:52.740000px;}
.h8{height:55.779258px;}
.h5{height:57.323320px;}
.hc{height:59.581421px;}
.h18{height:61.740000px;}
.hb{height:61.793886px;}
.hd{height:62.585859px;}
.ha{height:68.582109px;}
.h4{height:72.985430px;}
.h13{height:96.930000px;}
.h11{height:198.390000px;}
.h12{height:200.610000px;}
.h14{height:205.230000px;}
.he{height:207.030000px;}
.h16{height:213.750000px;}
.h17{height:214.950000px;}
.h10{height:263.970000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w5{width:187.500000px;}
.w6{width:187.650000px;}
.w8{width:189.180000px;}
.w7{width:189.210000px;}
.w9{width:249.150000px;}
.wa{width:252.300000px;}
.wb{width:252.810000px;}
.wc{width:371.190000px;}
.we{width:373.260000px;}
.w3{width:375.870000px;}
.w4{width:379.110000px;}
.wd{width:381.720000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:3.870000px;}
.x2e{left:5.220000px;}
.x1a{left:9.000000px;}
.x27{left:10.170000px;}
.x14{left:12.600000px;}
.x31{left:14.850000px;}
.x18{left:16.560000px;}
.x2d{left:17.910000px;}
.x16{left:19.260000px;}
.x34{left:22.230000px;}
.x20{left:24.300000px;}
.x29{left:26.100000px;}
.x12{left:28.980000px;}
.x25{left:31.770000px;}
.x28{left:32.850000px;}
.x1b{left:34.830000px;}
.x26{left:36.360000px;}
.x13{left:38.160000px;}
.x1d{left:40.680000px;}
.x17{left:43.470000px;}
.x1f{left:46.080000px;}
.x1c{left:48.510000px;}
.x15{left:56.790000px;}
.x1e{left:61.830000px;}
.x19{left:63.180000px;}
.x1{left:68.040000px;}
.xd{left:74.520000px;}
.xe{left:76.170000px;}
.x38{left:89.549987px;}
.x8{left:95.039987px;}
.x39{left:111.239987px;}
.x9{left:122.039987px;}
.x35{left:130.620000px;}
.x2f{left:151.050000px;}
.x36{left:153.930000px;}
.xf{left:178.770000px;}
.x2{left:192.719987px;}
.x7{left:196.679987px;}
.x21{left:220.260000px;}
.x23{left:221.700000px;}
.x10{left:256.980000px;}
.xa{left:283.530000px;}
.xc{left:288.570000px;}
.x5{left:298.379987px;}
.x22{left:318.630000px;}
.x33{left:348.690000px;}
.x30{left:354.990000px;}
.x2c{left:357.510000px;}
.xb{left:445.350000px;}
.x2b{left:446.970000px;}
.x32{left:451.200000px;}
.x6{left:554.639987px;}
.x24{left:571.650000px;}
.x4{left:577.139987px;}
.x11{left:635.280000px;}
.x37{left:649.139987px;}
.x3{left:800.339987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls18{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls26{letter-spacing:-0.141867pt;}
.ls7{letter-spacing:-0.120000pt;}
.lsa{letter-spacing:-0.107733pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls27{letter-spacing:-0.069333pt;}
.ls20{letter-spacing:-0.056533pt;}
.lsc{letter-spacing:-0.053867pt;}
.ls1a{letter-spacing:-0.011840pt;}
.ls19{letter-spacing:-0.006720pt;}
.ls21{letter-spacing:-0.002880pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.010240pt;}
.lse{letter-spacing:0.040320pt;}
.ls15{letter-spacing:0.043520pt;}
.ls1e{letter-spacing:0.045440pt;}
.ls16{letter-spacing:0.053867pt;}
.ls11{letter-spacing:0.057600pt;}
.ls3{letter-spacing:0.064000pt;}
.ls1b{letter-spacing:0.065920pt;}
.ls13{letter-spacing:0.066133pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls10{letter-spacing:0.103467pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1c{letter-spacing:0.136000pt;}
.lsb{letter-spacing:0.154133pt;}
.ls24{letter-spacing:0.160000pt;}
.ls9{letter-spacing:0.161067pt;}
.ls17{letter-spacing:0.244800pt;}
.ls0{letter-spacing:0.320000pt;}
.ls25{letter-spacing:0.365440pt;}
.ls1f{letter-spacing:0.716800pt;}
.lsf{letter-spacing:6.483200pt;}
.ls1d{letter-spacing:28.563200pt;}
.ls23{letter-spacing:42.423680pt;}
.ls12{letter-spacing:56.503680pt;}
.ls22{letter-spacing:71.863680pt;}
.ws5{word-spacing:-12.883200pt;}
.wsd{word-spacing:-12.775467pt;}
.ws3{word-spacing:-11.917867pt;}
.ws6{word-spacing:-11.910933pt;}
.wsf{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.ws10{word-spacing:-11.750080pt;}
.ws7{word-spacing:-11.702933pt;}
.ws11{word-spacing:-11.700267pt;}
.ws13{word-spacing:-11.687467pt;}
.ws12{word-spacing:-11.614933pt;}
.wsb{word-spacing:-11.590933pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws8{word-spacing:-7.667200pt;}
.wsc{word-spacing:-7.657067pt;}
.ws9{word-spacing:-7.603200pt;}
.wse{word-spacing:-7.347200pt;}
.wsa{word-spacing:0.000000pt;}
.ws4{word-spacing:3.826560pt;}
._12{margin-left:-4.702720pt;}
._11{margin-left:-3.211200pt;}
._9{margin-left:-2.132800pt;}
._0{margin-left:-0.986667pt;}
._2{width:1.421368pt;}
._6{width:2.355063pt;}
._c{width:3.397864pt;}
._8{width:4.539201pt;}
._7{width:5.664533pt;}
._b{width:6.680000pt;}
._4{width:7.588266pt;}
._5{width:8.613730pt;}
._a{width:9.779734pt;}
._10{width:10.790933pt;}
._1{width:11.706144pt;}
._13{width:13.376747pt;}
._18{width:15.160213pt;}
._f{width:16.192534pt;}
._3{width:17.902400pt;}
._25{width:18.971200pt;}
._19{width:20.093440pt;}
._1a{width:21.026667pt;}
._2a{width:22.420053pt;}
._17{width:24.554134pt;}
._e{width:26.025066pt;}
._d{width:27.704320pt;}
._22{width:32.459200pt;}
._23{width:33.646080pt;}
._20{width:35.402880pt;}
._1f{width:36.339200pt;}
._29{width:37.346667pt;}
._21{width:38.369920pt;}
._26{width:43.200640pt;}
._27{width:44.312960pt;}
._1b{width:78.048960pt;}
._1c{width:78.957760pt;}
._24{width:134.455040pt;}
._15{width:163.176853pt;}
._16{width:180.243200pt;}
._1d{width:199.512640pt;}
._1e{width:200.411200pt;}
._28{width:395.669760pt;}
._14{width:1264.426667pt;}
.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;}
.fs7{font-size:56.000000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:1.200000pt;}
.y8f{bottom:2.960000pt;}
.y72{bottom:4.000000pt;}
.y76{bottom:4.080000pt;}
.y94{bottom:6.880000pt;}
.y74{bottom:6.960000pt;}
.y8a{bottom:7.040000pt;}
.y71{bottom:10.000000pt;}
.y8e{bottom:18.640000pt;}
.y89{bottom:22.640000pt;}
.y81{bottom:22.666667pt;}
.y8d{bottom:34.240000pt;}
.y88{bottom:38.240000pt;}
.y82{bottom:38.266667pt;}
.y80{bottom:42.266667pt;}
.y87{bottom:53.920000pt;}
.y7f{bottom:57.866667pt;}
.y2{bottom:65.226667pt;}
.y27{bottom:65.946667pt;}
.y86{bottom:69.520000pt;}
.y7d{bottom:73.546667pt;}
.y7c{bottom:89.146667pt;}
.y1{bottom:90.346667pt;}
.y7e{bottom:93.146667pt;}
.yef{bottom:103.946667pt;}
.y85{bottom:106.906667pt;}
.y7b{bottom:108.826667pt;}
.y9c{bottom:115.066667pt;}
.yee{bottom:119.546667pt;}
.y7a{bottom:124.426667pt;}
.y46{bottom:125.866667pt;}
.y11c{bottom:126.826667pt;}
.y9b{bottom:130.746667pt;}
.yed{bottom:135.226667pt;}
.y45{bottom:141.466667pt;}
.y11b{bottom:142.506667pt;}
.y79{bottom:144.026667pt;}
.y9a{bottom:146.346667pt;}
.yc2{bottom:147.226667pt;}
.y44{bottom:157.146667pt;}
.y11a{bottom:158.106667pt;}
.yec{bottom:158.826667pt;}
.y78{bottom:159.706667pt;}
.y99{bottom:161.946667pt;}
.yc1{bottom:162.906667pt;}
.y119{bottom:173.786667pt;}
.yeb{bottom:174.506667pt;}
.y98{bottom:177.626667pt;}
.yc0{bottom:178.506667pt;}
.y70{bottom:179.306667pt;}
.y43{bottom:188.746667pt;}
.yea{bottom:190.106667pt;}
.y25{bottom:191.226667pt;}
.y97{bottom:193.226667pt;}
.y84{bottom:193.706667pt;}
.ybf{bottom:194.106667pt;}
.y118{bottom:197.386667pt;}
.y24{bottom:206.826667pt;}
.y42{bottom:207.786667pt;}
.y96{bottom:208.826667pt;}
.ybe{bottom:209.786667pt;}
.y6f{bottom:210.986667pt;}
.y117{bottom:212.986667pt;}
.ye9{bottom:213.706667pt;}
.y41{bottom:220.026667pt;}
.ybd{bottom:225.386667pt;}
.y23{bottom:225.866667pt;}
.y116{bottom:228.666667pt;}
.ye8{bottom:229.386667pt;}
.y40{bottom:235.626667pt;}
.y22{bottom:238.106667pt;}
.y95{bottom:238.186667pt;}
.y6e{bottom:242.586667pt;}
.ybc{bottom:244.426667pt;}
.y3f{bottom:251.306667pt;}
.y115{bottom:252.266667pt;}
.ye7{bottom:252.986667pt;}
.y21{bottom:253.786667pt;}
.ybb{bottom:256.666667pt;}
.y6d{bottom:258.186667pt;}
.y3e{bottom:266.906667pt;}
.y114{bottom:267.946667pt;}
.ye6{bottom:268.666667pt;}
.y20{bottom:269.386667pt;}
.yba{bottom:272.266667pt;}
.y6c{bottom:273.866667pt;}
.y1f{bottom:284.986667pt;}
.yb9{bottom:287.946667pt;}
.y113{bottom:291.546667pt;}
.ye5{bottom:292.266667pt;}
.y93{bottom:293.706667pt;}
.y6b{bottom:297.466667pt;}
.y3d{bottom:298.586667pt;}
.y1e{bottom:300.666667pt;}
.ye4{bottom:307.866667pt;}
.y3c{bottom:314.186667pt;}
.y112{bottom:315.146667pt;}
.y1d{bottom:316.266667pt;}
.yb8{bottom:319.546667pt;}
.ye3{bottom:323.546667pt;}
.y6a{bottom:329.146667pt;}
.y3b{bottom:329.786667pt;}
.y111{bottom:330.826667pt;}
.yb7{bottom:335.226667pt;}
.y1c{bottom:340.186667pt;}
.y69{bottom:344.746667pt;}
.y3a{bottom:345.466667pt;}
.y110{bottom:346.426667pt;}
.ye2{bottom:347.146667pt;}
.yb6{bottom:350.826667pt;}
.y68{bottom:360.346667pt;}
.y39{bottom:361.066667pt;}
.ye1{bottom:362.746667pt;}
.yb5{bottom:366.426667pt;}
.y10f{bottom:370.106667pt;}
.y67{bottom:376.026667pt;}
.yb4{bottom:382.106667pt;}
.y1b{bottom:383.066667pt;}
.y10e{bottom:385.706667pt;}
.ye0{bottom:386.426667pt;}
.y66{bottom:391.626667pt;}
.y83{bottom:391.706667pt;}
.y38{bottom:392.666667pt;}
.yb3{bottom:397.706667pt;}
.y1a{bottom:398.986667pt;}
.ydf{bottom:402.026667pt;}
.y77{bottom:404.986667pt;}
.y10d{bottom:409.306667pt;}
.y65{bottom:415.306667pt;}
.yde{bottom:417.733333pt;}
.y37{bottom:421.333333pt;}
.y10c{bottom:425.013333pt;}
.yb2{bottom:429.413333pt;}
.y19{bottom:431.973333pt;}
.ydd{bottom:441.333333pt;}
.yb1{bottom:445.013333pt;}
.y64{bottom:447.173333pt;}
.y18{bottom:447.573333pt;}
.y10b{bottom:448.613333pt;}
.ydc{bottom:456.933333pt;}
.yb0{bottom:460.613333pt;}
.y17{bottom:463.253333pt;}
.y10a{bottom:464.293333pt;}
.yaf{bottom:476.293333pt;}
.y16{bottom:478.853333pt;}
.ydb{bottom:480.613333pt;}
.y109{bottom:487.893333pt;}
.y63{bottom:490.053333pt;}
.yae{bottom:491.893333pt;}
.y15{bottom:494.453333pt;}
.yda{bottom:496.213333pt;}
.y92{bottom:496.453333pt;}
.y108{bottom:503.493333pt;}
.y62{bottom:505.733333pt;}
.yad{bottom:507.573333pt;}
.y14{bottom:510.133333pt;}
.y107{bottom:519.173333pt;}
.yd9{bottom:519.893333pt;}
.y61{bottom:521.413333pt;}
.yac{bottom:523.173333pt;}
.y13{bottom:525.733333pt;}
.yd8{bottom:535.493333pt;}
.y60{bottom:537.013333pt;}
.y12{bottom:541.413333pt;}
.y106{bottom:542.773333pt;}
.y5f{bottom:552.613333pt;}
.yab{bottom:554.773333pt;}
.y11{bottom:557.013333pt;}
.y105{bottom:558.453333pt;}
.yd7{bottom:559.093333pt;}
.y5e{bottom:568.293333pt;}
.yaa{bottom:570.453333pt;}
.y10{bottom:572.613333pt;}
.y90{bottom:573.253333pt;}
.yd6{bottom:574.773333pt;}
.y75{bottom:581.973333pt;}
.y104{bottom:582.053333pt;}
.y5d{bottom:583.893333pt;}
.ya9{bottom:586.053333pt;}
.yf{bottom:588.293333pt;}
.y103{bottom:597.653333pt;}
.yd5{bottom:598.373333pt;}
.y5c{bottom:600.293333pt;}
.ya8{bottom:601.733333pt;}
.ye{bottom:603.893333pt;}
.y36{bottom:606.373333pt;}
.yd4{bottom:614.053333pt;}
.y5b{bottom:615.893333pt;}
.ya7{bottom:617.333333pt;}
.yd{bottom:619.573333pt;}
.y102{bottom:621.333333pt;}
.y35{bottom:621.973333pt;}
.y5a{bottom:632.293333pt;}
.ya6{bottom:632.933333pt;}
.yc{bottom:635.173333pt;}
.y101{bottom:636.933333pt;}
.y34{bottom:637.653333pt;}
.yd3{bottom:637.973333pt;}
.y59{bottom:647.893333pt;}
.ya5{bottom:648.613333pt;}
.yb{bottom:650.773333pt;}
.y100{bottom:652.613333pt;}
.y33{bottom:653.253333pt;}
.y58{bottom:663.573333pt;}
.ya4{bottom:664.213333pt;}
.y32{bottom:668.853333pt;}
.ya{bottom:674.773333pt;}
.yff{bottom:676.213333pt;}
.y57{bottom:679.173333pt;}
.ya3{bottom:679.813333pt;}
.yd2{bottom:680.853333pt;}
.y31{bottom:684.533333pt;}
.yfe{bottom:691.813333pt;}
.ya2{bottom:695.493333pt;}
.y30{bottom:700.133333pt;}
.yd1{bottom:704.773333pt;}
.ya1{bottom:711.093333pt;}
.y56{bottom:711.573333pt;}
.yfd{bottom:715.493333pt;}
.y9{bottom:716.293333pt;}
.ya0{bottom:726.773333pt;}
.y55{bottom:727.173333pt;}
.yfc{bottom:731.093333pt;}
.y2f{bottom:731.813333pt;}
.yd0{bottom:737.653333pt;}
.y54{bottom:742.773333pt;}
.y2e{bottom:747.413333pt;}
.y8{bottom:747.893333pt;}
.y9f{bottom:750.693333pt;}
.ycf{bottom:753.333333pt;}
.yfb{bottom:754.693333pt;}
.y53{bottom:758.453333pt;}
.y2d{bottom:763.013333pt;}
.y8c{bottom:763.973333pt;}
.yce{bottom:768.933333pt;}
.yfa{bottom:770.373333pt;}
.y52{bottom:774.053333pt;}
.y2c{bottom:778.693333pt;}
.y7{bottom:779.733333pt;}
.yf9{bottom:785.973333pt;}
.ycd{bottom:792.853333pt;}
.y9e{bottom:793.573333pt;}
.y11f{bottom:793.973333pt;}
.y2b{bottom:794.293333pt;}
.y51{bottom:797.973333pt;}
.yf8{bottom:809.653333pt;}
.y2a{bottom:809.973333pt;}
.y8b{bottom:811.493333pt;}
.y6{bottom:811.733333pt;}
.y73{bottom:817.253333pt;}
.y9d{bottom:822.213333pt;}
.yf7{bottom:825.253333pt;}
.ycc{bottom:826.053333pt;}
.y50{bottom:840.853333pt;}
.y29{bottom:841.573333pt;}
.y5{bottom:843.813333pt;}
.yf6{bottom:848.853333pt;}
.y4f{bottom:856.533333pt;}
.yf5{bottom:864.533333pt;}
.ycb{bottom:868.933333pt;}
.y28{bottom:870.213333pt;}
.y4e{bottom:872.133333pt;}
.y4{bottom:877.893333pt;}
.yca{bottom:884.613333pt;}
.y4d{bottom:887.813333pt;}
.yf4{bottom:888.133333pt;}
.y3{bottom:899.840000pt;}
.yc9{bottom:900.240000pt;}
.yf3{bottom:903.840000pt;}
.yc8{bottom:915.840000pt;}
.y4c{bottom:919.440000pt;}
.y11e{bottom:927.440000pt;}
.yc7{bottom:931.520000pt;}
.y4b{bottom:935.040000pt;}
.yf2{bottom:943.040000pt;}
.yc6{bottom:947.120000pt;}
.y4a{bottom:950.720000pt;}
.yf1{bottom:958.720000pt;}
.yc5{bottom:962.800000pt;}
.y49{bottom:966.320000pt;}
.yf0{bottom:974.320000pt;}
.yc4{bottom:978.400000pt;}
.y11d{bottom:982.320000pt;}
.y48{bottom:998.000000pt;}
.yc3{bottom:1002.320000pt;}
.y47{bottom:1013.600000pt;}
.y26{bottom:1061.600000pt;}
.hf{height:23.600000pt;}
.h2{height:26.686562pt;}
.h9{height:33.059063pt;}
.h3{height:34.804688pt;}
.h6{height:45.246562pt;}
.h7{height:46.499062pt;}
.h15{height:46.880000pt;}
.h8{height:49.581562pt;}
.h5{height:50.954062pt;}
.hc{height:52.961263pt;}
.h18{height:54.880000pt;}
.hb{height:54.927899pt;}
.hd{height:55.631875pt;}
.ha{height:60.961875pt;}
.h4{height:64.875937pt;}
.h13{height:86.160000pt;}
.h11{height:176.346667pt;}
.h12{height:178.320000pt;}
.h14{height:182.426667pt;}
.he{height:184.026667pt;}
.h16{height:190.000000pt;}
.h17{height:191.066667pt;}
.h10{height:234.640000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w5{width:166.666667pt;}
.w6{width:166.800000pt;}
.w8{width:168.160000pt;}
.w7{width:168.186667pt;}
.w9{width:221.466667pt;}
.wa{width:224.266667pt;}
.wb{width:224.720000pt;}
.wc{width:329.946667pt;}
.we{width:331.786667pt;}
.w3{width:334.106667pt;}
.w4{width:336.986667pt;}
.wd{width:339.306667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:3.440000pt;}
.x2e{left:4.640000pt;}
.x1a{left:8.000000pt;}
.x27{left:9.040000pt;}
.x14{left:11.200000pt;}
.x31{left:13.200000pt;}
.x18{left:14.720000pt;}
.x2d{left:15.920000pt;}
.x16{left:17.120000pt;}
.x34{left:19.760000pt;}
.x20{left:21.600000pt;}
.x29{left:23.200000pt;}
.x12{left:25.760000pt;}
.x25{left:28.240000pt;}
.x28{left:29.200000pt;}
.x1b{left:30.960000pt;}
.x26{left:32.320000pt;}
.x13{left:33.920000pt;}
.x1d{left:36.160000pt;}
.x17{left:38.640000pt;}
.x1f{left:40.960000pt;}
.x1c{left:43.120000pt;}
.x15{left:50.480000pt;}
.x1e{left:54.960000pt;}
.x19{left:56.160000pt;}
.x1{left:60.480000pt;}
.xd{left:66.240000pt;}
.xe{left:67.706667pt;}
.x38{left:79.599988pt;}
.x8{left:84.479988pt;}
.x39{left:98.879988pt;}
.x9{left:108.479988pt;}
.x35{left:116.106667pt;}
.x2f{left:134.266667pt;}
.x36{left:136.826667pt;}
.xf{left:158.906667pt;}
.x2{left:171.306655pt;}
.x7{left:174.826655pt;}
.x21{left:195.786667pt;}
.x23{left:197.066667pt;}
.x10{left:228.426667pt;}
.xa{left:252.026667pt;}
.xc{left:256.506667pt;}
.x5{left:265.226655pt;}
.x22{left:283.226667pt;}
.x33{left:309.946667pt;}
.x30{left:315.546667pt;}
.x2c{left:317.786667pt;}
.xb{left:395.866667pt;}
.x2b{left:397.306667pt;}
.x32{left:401.066667pt;}
.x6{left:493.013322pt;}
.x24{left:508.133333pt;}
.x4{left:513.013322pt;}
.x11{left:564.693333pt;}
.x37{left:577.013322pt;}
.x3{left:711.413322pt;}
}




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