
    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_30d01897a1feb7f809f27277.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.960449;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_d4f564eed138cecbfe91cc18.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_55091bc751f9ac2afbd6742c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_05945e84cd7eae8de226bea3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.149414;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_8f07ab27720e9ae262dfcf7d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_ce48efb4a1aaa86f11bc151f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_eea31cf628285c0a4153b2c4.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_daf333fb4f2b1ab0e58df6bd.woff2')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_29b8ea68253c39fdab30de0d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_4774556690bc42a3a8919acf.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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_15c24b3dc41b678d9673491a.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.003906;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-5.328000px;}
.ls13{letter-spacing:-1.008000px;}
.ls12{letter-spacing:-0.720000px;}
.ls11{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.256200px;}
.lse{letter-spacing:0.432000px;}
.lsb{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.720000px;}
.lsa{letter-spacing:0.792000px;}
.ls6{letter-spacing:4.860000px;}
.lsf{letter-spacing:6.480000px;}
.ls4{letter-spacing:27.360000px;}
.ls2{letter-spacing:33.984000px;}
.ls7{letter-spacing:44.784000px;}
.ls1{letter-spacing:64.224000px;}
.ls10{letter-spacing:131.760000px;}
.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;}
}
.ws4{word-spacing:-72.000000px;}
.ws2{word-spacing:-18.720000px;}
.ws8{word-spacing:-18.504000px;}
.wsb{word-spacing:-18.432000px;}
.ws3{word-spacing:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.784000px;}
.wsc{word-spacing:-17.712000px;}
.ws5{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.226440px;}
.ws9{word-spacing:-12.672000px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-5.277600px;}
._9{margin-left:-4.176000px;}
._a{margin-left:-2.592000px;}
._0{margin-left:-1.202400px;}
._1{width:1.053360px;}
._4{width:2.976720px;}
._e{width:4.128480px;}
._12{width:5.197440px;}
._c{width:6.336000px;}
._b{width:7.560000px;}
._d{width:8.928000px;}
._3{width:10.064400px;}
._2{width:11.201520px;}
._7{width:12.261840px;}
._f{width:13.996320px;}
._5{width:15.624000px;}
._6{width:16.920000px;}
._18{width:19.512000px;}
._19{width:21.312000px;}
._15{width:22.320000px;}
._16{width:23.400000px;}
._17{width:24.530400px;}
._1a{width:26.019360px;}
._10{width:27.252000px;}
._8{width:28.346400px;}
._1c{width:30.002400px;}
._1b{width:31.032000px;}
._2b{width:32.040000px;}
._13{width:33.048000px;}
._14{width:34.416000px;}
._1e{width:36.266400px;}
._1d{width:38.520000px;}
._28{width:41.256000px;}
._29{width:42.302640px;}
._21{width:51.516000px;}
._2a{width:53.928000px;}
._2e{width:62.064000px;}
._26{width:76.392000px;}
._27{width:77.580000px;}
._1f{width:95.328000px;}
._20{width:96.480000px;}
._2d{width:98.280000px;}
._24{width:109.152000px;}
._25{width:110.282400px;}
._2f{width:115.200000px;}
._35{width:134.352000px;}
._22{width:150.228000px;}
._23{width:151.406640px;}
._2c{width:166.104000px;}
._30{width:171.864000px;}
._31{width:173.664000px;}
._33{width:247.320000px;}
._32{width:248.522400px;}
._34{width:420.660000px;}
.fc3{color:rgb(17,85,204);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(27,27,27);}
.fs4{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs0{font-size:95.760000px;}
.fs1{font-size:120.240000px;}
.fs3{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.yd{bottom:57.420000px;}
.yc{bottom:77.580000px;}
.y1d0{bottom:112.356000px;}
.y1f0{bottom:114.336000px;}
.y1bf{bottom:117.216000px;}
.y14b{bottom:118.296000px;}
.yaa{bottom:119.196000px;}
.y1f4{bottom:119.376000px;}
.ybb{bottom:122.436000px;}
.y134{bottom:123.336000px;}
.y1a8{bottom:126.396000px;}
.y26{bottom:127.656000px;}
.ye7{bottom:131.436000px;}
.y160{bottom:134.496000px;}
.y6c{bottom:136.296000px;}
.y55{bottom:138.456000px;}
.y195{bottom:139.356000px;}
.y11f{bottom:140.436000px;}
.y89{bottom:141.696000px;}
.y3c{bottom:142.596000px;}
.y175{bottom:144.396000px;}
.y1ef{bottom:145.476000px;}
.y1be{bottom:148.356000px;}
.y14a{bottom:149.436000px;}
.y1f3{bottom:150.330000px;}
.yba{bottom:150.870000px;}
.yd9{bottom:151.050000px;}
.y133{bottom:154.290000px;}
.y1c7{bottom:155.370000px;}
.y1a7{bottom:157.350000px;}
.y102{bottom:160.770000px;}
.ya9{bottom:162.210000px;}
.ye6{bottom:162.390000px;}
.yb{bottom:162.570000px;}
.y1f9{bottom:163.470000px;}
.y6b{bottom:167.430000px;}
.y145{bottom:169.410000px;}
.y194{bottom:170.490000px;}
.y25{bottom:170.850000px;}
.y11e{bottom:171.390000px;}
.y174{bottom:175.350000px;}
.y18d{bottom:175.890000px;}
.yb9{bottom:179.310000px;}
.y149{bottom:180.390000px;}
.y54{bottom:181.470000px;}
.yd8{bottom:182.190000px;}
.y15f{bottom:183.450000px;}
.y88{bottom:184.710000px;}
.y132{bottom:185.430000px;}
.y3b{bottom:185.610000px;}
.y1c6{bottom:186.330000px;}
.y1a6{bottom:188.490000px;}
.y1bd{bottom:191.370000px;}
.y101{bottom:191.910000px;}
.ye5{bottom:193.350000px;}
.y1ee{bottom:194.430000px;}
.y6a{bottom:198.390000px;}
.y144{bottom:200.550000px;}
.y193{bottom:201.450000px;}
.y11d{bottom:202.350000px;}
.y24{bottom:204.510000px;}
.ya8{bottom:205.230000px;}
.y173{bottom:206.490000px;}
.yb8{bottom:207.750000px;}
.ya{bottom:210.270000px;}
.y148{bottom:211.350000px;}
.y1af{bottom:212.430000px;}
.y15e{bottom:214.590000px;}
.y131{bottom:216.390000px;}
.y1c5{bottom:217.470000px;}
.y1a3{bottom:219.450000px;}
.y1bc{bottom:222.330000px;}
.y100{bottom:222.870000px;}
.y53{bottom:224.490000px;}
.y18c{bottom:224.850000px;}
.yd7{bottom:225.210000px;}
.y1ed{bottom:225.570000px;}
.y87{bottom:227.730000px;}
.y3a{bottom:228.630000px;}
.y92{bottom:229.350000px;}
.y192{bottom:232.590000px;}
.y11c{bottom:233.490000px;}
.ya7{bottom:236.190000px;}
.ye4{bottom:236.550000px;}
.y23{bottom:236.910000px;}
.y172{bottom:237.450000px;}
.y69{bottom:241.410000px;}
.y19c{bottom:242.490000px;}
.y1ae{bottom:243.570000px;}
.y130{bottom:247.350000px;}
.yb7{bottom:249.510000px;}
.y1f7{bottom:250.410000px;}
.y1bb{bottom:253.470000px;}
.y52{bottom:255.450000px;}
.y18b{bottom:255.990000px;}
.yd6{bottom:256.170000px;}
.y1ec{bottom:256.530000px;}
.y9{bottom:257.970000px;}
.y86{bottom:258.870000px;}
.y91{bottom:260.490000px;}
.y15d{bottom:263.550000px;}
.ya6{bottom:267.330000px;}
.y1a2{bottom:268.590000px;}
.y39{bottom:271.650000px;}
.yff{bottom:272.010000px;}
.y68{bottom:272.550000px;}
.y19b{bottom:273.450000px;}
.y1ad{bottom:274.530000px;}
.y11b{bottom:277.950000px;}
.y12f{bottom:278.490000px;}
.y22{bottom:278.850000px;}
.ye3{bottom:279.570000px;}
.y143{bottom:280.650000px;}
.y1ba{bottom:284.430000px;}
.y171{bottom:286.590000px;}
.y18a{bottom:286.950000px;}
.yd5{bottom:287.310000px;}
.y85{bottom:289.830000px;}
.y90{bottom:291.450000px;}
.y1f2{bottom:292.530000px;}
.yb6{bottom:292.710000px;}
.y191{bottom:294.690000px;}
.ya5{bottom:298.290000px;}
.y51{bottom:298.650000px;}
.y1a1{bottom:299.550000px;}
.yfe{bottom:302.970000px;}
.y67{bottom:303.510000px;}
.y19a{bottom:304.590000px;}
.y1ac{bottom:305.670000px;}
.y8{bottom:305.850000px;}
.y11a{bottom:309.090000px;}
.ye2{bottom:310.530000px;}
.y142{bottom:311.610000px;}
.y15c{bottom:312.690000px;}
.y38{bottom:314.850000px;}
.y1b9{bottom:315.570000px;}
.y1a5{bottom:317.550000px;}
.yd4{bottom:318.270000px;}
.y84{bottom:320.970000px;}
.y21{bottom:321.870000px;}
.y8f{bottom:322.590000px;}
.yb5{bottom:323.670000px;}
.y12e{bottom:327.450000px;}
.ya4{bottom:329.430000px;}
.y1a0{bottom:330.690000px;}
.yfd{bottom:334.110000px;}
.y66{bottom:334.650000px;}
.y7{bottom:335.550000px;}
.y189{bottom:336.090000px;}
.y1ab{bottom:336.630000px;}
.y119{bottom:340.050000px;}
.y115{bottom:340.590000px;}
.y50{bottom:341.670000px;}
.y15b{bottom:343.650000px;}
.y1de{bottom:348.690000px;}
.yd3{bottom:349.410000px;}
.y8e{bottom:353.550000px;}
.y1f1{bottom:354.630000px;}
.yb4{bottom:354.810000px;}
.y37{bottom:357.870000px;}
.y12d{bottom:358.590000px;}
.ya3{bottom:360.390000px;}
.y141{bottom:360.750000px;}
.y19f{bottom:361.650000px;}
.y83{bottom:363.990000px;}
.y20{bottom:364.890000px;}
.yfc{bottom:365.070000px;}
.y65{bottom:365.610000px;}
.y170{bottom:366.735000px;}
.y188{bottom:367.095000px;}
.y1f8{bottom:367.635000px;}
.y1eb{bottom:367.815000px;}
.y118{bottom:371.235000px;}
.y114{bottom:371.595000px;}
.y4f{bottom:372.675000px;}
.y15a{bottom:374.835000px;}
.y1aa{bottom:379.695000px;}
.yd2{bottom:380.415000px;}
.ye1{bottom:384.735000px;}
.yb3{bottom:385.815000px;}
.y12c{bottom:389.595000px;}
.y140{bottom:391.755000px;}
.y6{bottom:392.655000px;}
.y190{bottom:392.835000px;}
.y82{bottom:394.995000px;}
.yfb{bottom:396.255000px;}
.y64{bottom:396.795000px;}
.y16f{bottom:397.695000px;}
.y187{bottom:398.235000px;}
.y36{bottom:400.935000px;}
.y113{bottom:402.735000px;}
.ya2{bottom:403.455000px;}
.y4e{bottom:403.815000px;}
.y1f{bottom:407.955000px;}
.y1dd{bottom:410.835000px;}
.ye0{bottom:415.695000px;}
.y1ea{bottom:416.775000px;}
.y12b{bottom:420.735000px;}
.y13f{bottom:422.895000px;}
.yd1{bottom:423.615000px;}
.y159{bottom:423.795000px;}
.y81{bottom:426.135000px;}
.yfa{bottom:427.215000px;}
.y63{bottom:427.755000px;}
.yb2{bottom:428.835000px;}
.y186{bottom:429.195000px;}
.y112{bottom:433.695000px;}
.ya1{bottom:434.595000px;}
.y4d{bottom:434.775000px;}
.y1c4{bottom:439.815000px;}
.y1f6{bottom:441.795000px;}
.y35{bottom:443.955000px;}
.ydf{bottom:446.835000px;}
.y1e9{bottom:447.915000px;}
.y1e{bottom:450.975000px;}
.y12a{bottom:451.695000px;}
.y1dc{bottom:453.855000px;}
.y158{bottom:454.935000px;}
.yf9{bottom:458.355000px;}
.y62{bottom:458.895000px;}
.y16e{bottom:459.795000px;}
.yb1{bottom:459.975000px;}
.y185{bottom:460.335000px;}
.y111{bottom:464.835000px;}
.ya0{bottom:465.555000px;}
.y4c{bottom:465.915000px;}
.yd0{bottom:466.635000px;}
.y5{bottom:467.355000px;}
.y80{bottom:469.155000px;}
.y1c3{bottom:470.775000px;}
.y13e{bottom:471.855000px;}
.y18f{bottom:472.935000px;}
.y1cf{bottom:476.895000px;}
.yde{bottom:477.795000px;}
.y1e8{bottom:478.875000px;}
.y129{bottom:482.835000px;}
.y1db{bottom:484.995000px;}
.y34{bottom:486.975000px;}
.yf8{bottom:489.315000px;}
.y8d{bottom:489.855000px;}
.y1a4{bottom:490.935000px;}
.y184{bottom:491.295000px;}
.yb0{bottom:491.475000px;}
.y1d{bottom:493.995000px;}
.y110{bottom:495.795000px;}
.y9f{bottom:496.695000px;}
.y4b{bottom:496.875000px;}
.ycf{bottom:497.595000px;}
.y7f{bottom:500.115000px;}
.y61{bottom:501.915000px;}
.y13d{bottom:502.995000px;}
.y157{bottom:503.895000px;}
.y1ce{bottom:507.855000px;}
.y16d{bottom:508.935000px;}
.y1e7{bottom:510.015000px;}
.y4{bottom:512.535000px;}
.y1b8{bottom:513.795000px;}
.y1da{bottom:515.955000px;}
.yf7{bottom:520.455000px;}
.y8c{bottom:520.995000px;}
.y1a9{bottom:521.895000px;}
.y183{bottom:522.435000px;}
.yaf{bottom:522.615000px;}
.y10f{bottom:526.935000px;}
.y4a{bottom:528.015000px;}
.yce{bottom:528.735000px;}
.y33{bottom:529.995000px;}
.y7e{bottom:531.255000px;}
.y128{bottom:531.795000px;}
.y60{bottom:532.875000px;}
.y13c{bottom:533.955000px;}
.y156{bottom:535.035000px;}
.y1c{bottom:537.015000px;}
.y9e{bottom:538.455000px;}
.y1cd{bottom:538.995000px;}
.y16c{bottom:539.895000px;}
.y147{bottom:544.935000px;}
.y1d9{bottom:546.915000px;}
.y8b{bottom:551.955000px;}
.y19e{bottom:553.035000px;}
.y182{bottom:553.395000px;}
.yae{bottom:553.575000px;}
.y10e{bottom:557.895000px;}
.y49{bottom:558.975000px;}
.ycd{bottom:559.695000px;}
.y3{bottom:562.035000px;}
.y7d{bottom:562.215000px;}
.y127{bottom:562.935000px;}
.y5f{bottom:564.015000px;}
.y13b{bottom:564.915000px;}
.y18e{bottom:565.995000px;}
.y9d{bottom:566.895000px;}
.yf6{bottom:569.235000px;}
.y1cc{bottom:569.955000px;}
.y16b{bottom:571.035000px;}
.y32{bottom:573.015000px;}
.y146{bottom:575.895000px;}
.y1d8{bottom:578.055000px;}
.y1b{bottom:580.215000px;}
.ydd{bottom:582.915000px;}
.y155{bottom:583.995000px;}
.y117{bottom:589.035000px;}
.y1e6{bottom:590.115000px;}
.y7c{bottom:593.355000px;}
.y126{bottom:593.895000px;}
.y5e{bottom:594.975000px;}
.y9c{bottom:595.335000px;}
.y1cb{bottom:600.915000px;}
.y48{bottom:601.995000px;}
.y181{bottom:602.535000px;}
.ycc{bottom:602.715000px;}
.y10d{bottom:607.035000px;}
.ydc{bottom:614.055000px;}
.y154{bottom:615.135000px;}
.y31{bottom:616.215000px;}
.y2{bottom:616.755000px;}
.yf5{bottom:618.375000px;}
.y199{bottom:619.995000px;}
.y1e5{bottom:620.895000px;}
.y1d7{bottom:621.075000px;}
.y1a{bottom:623.235000px;}
.y9b{bottom:623.775000px;}
.y125{bottom:625.065000px;}
.y5d{bottom:626.145000px;}
.y1ca{bottom:632.085000px;}
.y16a{bottom:633.165000px;}
.y180{bottom:633.525000px;}
.ycb{bottom:633.885000px;}
.y7b{bottom:636.405000px;}
.y10c{bottom:638.025000px;}
.y47{bottom:645.045000px;}
.y153{bottom:646.125000px;}
.yf4{bottom:649.545000px;}
.y1b7{bottom:650.085000px;}
.y198{bottom:651.165000px;}
.y9a{bottom:652.245000px;}
.y124{bottom:656.025000px;}
.y5c{bottom:657.105000px;}
.y30{bottom:659.265000px;}
.y1{bottom:660.165000px;}
.y1c9{bottom:663.045000px;}
.y169{bottom:664.125000px;}
.y17f{bottom:664.665000px;}
.yca{bottom:664.845000px;}
.y19{bottom:666.285000px;}
.y7a{bottom:667.545000px;}
.y10b{bottom:669.165000px;}
.y1e4{bottom:670.245000px;}
.y13a{bottom:676.185000px;}
.y19d{bottom:677.265000px;}
.yf3{bottom:680.505000px;}
.y99{bottom:680.685000px;}
.y197{bottom:682.125000px;}
.y1d6{bottom:683.205000px;}
.y123{bottom:687.165000px;}
.y46{bottom:688.245000px;}
.y1b6{bottom:693.105000px;}
.y152{bottom:695.265000px;}
.y17e{bottom:695.625000px;}
.y79{bottom:698.505000px;}
.y5b{bottom:700.125000px;}
.y1e3{bottom:701.205000px;}
.y2f{bottom:702.285000px;}
.y139{bottom:707.145000px;}
.yc9{bottom:707.865000px;}
.y98{bottom:709.125000px;}
.y18{bottom:709.305000px;}
.yf2{bottom:711.645000px;}
.y1c8{bottom:712.185000px;}
.y168{bottom:713.265000px;}
.y122{bottom:718.125000px;}
.y45{bottom:719.205000px;}
.y1b5{bottom:724.245000px;}
.y151{bottom:726.225000px;}
.y17d{bottom:726.765000px;}
.y78{bottom:729.465000px;}
.y5a{bottom:731.265000px;}
.y97{bottom:737.745000px;}
.y138{bottom:738.285000px;}
.yc8{bottom:739.005000px;}
.yf1{bottom:742.605000px;}
.y1c2{bottom:743.145000px;}
.y167{bottom:744.225000px;}
.y2e{bottom:745.305000px;}
.y10a{bottom:749.265000px;}
.ydb{bottom:750.345000px;}
.y17{bottom:752.325000px;}
.y1b4{bottom:755.205000px;}
.y150{bottom:757.365000px;}
.y17c{bottom:757.725000px;}
.y77{bottom:760.605000px;}
.y44{bottom:762.225000px;}
.y96{bottom:766.185000px;}
.y137{bottom:769.245000px;}
.y1c1{bottom:774.285000px;}
.y166{bottom:775.365000px;}
.y109{bottom:780.225000px;}
.yda{bottom:781.305000px;}
.yc7{bottom:782.025000px;}
.yf0{bottom:785.805000px;}
.y1b3{bottom:786.345000px;}
.y2d{bottom:788.325000px;}
.y59{bottom:793.365000px;}
.y95{bottom:794.625000px;}
.y16{bottom:795.345000px;}
.y17b{bottom:802.365000px;}
.y76{bottom:803.625000px;}
.y43{bottom:805.245000px;}
.y165{bottom:806.325000px;}
.y108{bottom:811.365000px;}
.y136{bottom:812.445000px;}
.yc6{bottom:813.165000px;}
.yef{bottom:816.765000px;}
.y1b2{bottom:817.305000px;}
.y2c{bottom:819.465000px;}
.y58{bottom:824.325000px;}
.y1e2{bottom:830.445000px;}
.y1d5{bottom:831.345000px;}
.y17a{bottom:833.325000px;}
.y75{bottom:834.765000px;}
.y42{bottom:836.385000px;}
.y164{bottom:837.465000px;}
.y15{bottom:838.545000px;}
.y107{bottom:842.325000px;}
.yc5{bottom:844.125000px;}
.yee{bottom:847.905000px;}
.y1b1{bottom:848.445000px;}
.y2b{bottom:850.425000px;}
.y57{bottom:855.465000px;}
.y1e1{bottom:861.405000px;}
.y1d4{bottom:862.485000px;}
.y179{bottom:864.465000px;}
.y74{bottom:865.725000px;}
.y41{bottom:867.345000px;}
.y14f{bottom:868.425000px;}
.y106{bottom:873.465000px;}
.yc4{bottom:875.085000px;}
.yed{bottom:878.865000px;}
.y1b0{bottom:879.405000px;}
.y14{bottom:881.565000px;}
.y56{bottom:886.470000px;}
.y1e0{bottom:892.590000px;}
.y2a{bottom:893.490000px;}
.y178{bottom:895.470000px;}
.y73{bottom:896.910000px;}
.y40{bottom:898.530000px;}
.y14e{bottom:899.610000px;}
.y105{bottom:904.470000px;}
.y1d3{bottom:905.550000px;}
.yc3{bottom:906.270000px;}
.yec{bottom:910.050000px;}
.y1c0{bottom:910.590000px;}
.y1f5{bottom:917.430000px;}
.y163{bottom:917.610000px;}
.y120{bottom:922.470000px;}
.y1df{bottom:923.370000px;}
.y13{bottom:924.630000px;}
.y177{bottom:926.610000px;}
.y3f{bottom:929.490000px;}
.y116{bottom:935.610000px;}
.y29{bottom:936.510000px;}
.yc2{bottom:937.230000px;}
.y72{bottom:939.930000px;}
.yeb{bottom:941.010000px;}
.yad{bottom:941.550000px;}
.y14d{bottom:948.570000px;}
.y104{bottom:953.610000px;}
.y176{bottom:957.570000px;}
.y3e{bottom:960.630000px;}
.y121{bottom:966.570000px;}
.y12{bottom:967.650000px;}
.y71{bottom:971.250000px;}
.yea{bottom:972.150000px;}
.yac{bottom:972.510000px;}
.y28{bottom:979.710000px;}
.yc1{bottom:980.430000px;}
.y103{bottom:984.570000px;}
.y3d{bottom:991.590000px;}
.y135{bottom:997.530000px;}
.y196{bottom:997.710000px;}
.y70{bottom:1002.570000px;}
.yab{bottom:1003.650000px;}
.y11{bottom:1010.670000px;}
.ye9{bottom:1015.710000px;}
.y1d2{bottom:1016.610000px;}
.y27{bottom:1022.730000px;}
.yc0{bottom:1023.450000px;}
.y14c{bottom:1028.670000px;}
.y6f{bottom:1034.070000px;}
.y94{bottom:1034.610000px;}
.ye8{bottom:1046.670000px;}
.y1d1{bottom:1047.570000px;}
.y10{bottom:1053.690000px;}
.ybf{bottom:1054.410000px;}
.y162{bottom:1059.810000px;}
.y6e{bottom:1065.390000px;}
.y8a{bottom:1065.750000px;}
.y93{bottom:1077.810000px;}
.ybe{bottom:1084.110000px;}
.y161{bottom:1090.770000px;}
.yf{bottom:1096.710000px;}
.y6d{bottom:1108.770000px;}
.ybd{bottom:1112.550000px;}
.ye{bottom:1139.910000px;}
.ybc{bottom:1141.170000px;}
.h11{height:59.383125px;}
.h13{height:63.351562px;}
.hf{height:64.546875px;}
.hc{height:64.978594px;}
.h10{height:65.010937px;}
.h9{height:65.884219px;}
.h8{height:67.824844px;}
.h12{height:70.628906px;}
.hb{height:70.664062px;}
.ha{height:72.562500px;}
.hd{height:74.004654px;}
.he{height:74.953125px;}
.h5{height:82.676953px;}
.h2{height:91.177734px;}
.h7{height:93.983203px;}
.h4{height:96.508125px;}
.h3{height:121.179375px;}
.h6{height:211.992188px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:127.655987px;}
.xd{left:154.649987px;}
.xe{left:159.149987px;}
.x10{left:180.209987px;}
.x3{left:181.829987px;}
.xb{left:208.649987px;}
.xc{left:235.649987px;}
.x4{left:332.894987px;}
.x5{left:373.394987px;}
.x8{left:425.804987px;}
.xf{left:438.224987px;}
.x7{left:442.364987px;}
.x2{left:446.504987px;}
.x9{left:459.284987px;}
.xa{left:604.949987px;}
.x1{left:765.359987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-4.736000pt;}
.ls13{letter-spacing:-0.896000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls11{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.227733pt;}
.lse{letter-spacing:0.384000pt;}
.lsb{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.640000pt;}
.lsa{letter-spacing:0.704000pt;}
.ls6{letter-spacing:4.320000pt;}
.lsf{letter-spacing:5.760000pt;}
.ls4{letter-spacing:24.320000pt;}
.ls2{letter-spacing:30.208000pt;}
.ls7{letter-spacing:39.808000pt;}
.ls1{letter-spacing:57.088000pt;}
.ls10{letter-spacing:117.120000pt;}
.ws4{word-spacing:-64.000000pt;}
.ws2{word-spacing:-16.640000pt;}
.ws8{word-spacing:-16.448000pt;}
.wsb{word-spacing:-16.384000pt;}
.ws3{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.808000pt;}
.wsc{word-spacing:-15.744000pt;}
.ws5{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.534613pt;}
.ws9{word-spacing:-11.264000pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-4.691200pt;}
._9{margin-left:-3.712000pt;}
._a{margin-left:-2.304000pt;}
._0{margin-left:-1.068800pt;}
._1{width:0.936320pt;}
._4{width:2.645973pt;}
._e{width:3.669760pt;}
._12{width:4.619947pt;}
._c{width:5.632000pt;}
._b{width:6.720000pt;}
._d{width:7.936000pt;}
._3{width:8.946133pt;}
._2{width:9.956907pt;}
._7{width:10.899413pt;}
._f{width:12.441173pt;}
._5{width:13.888000pt;}
._6{width:15.040000pt;}
._18{width:17.344000pt;}
._19{width:18.944000pt;}
._15{width:19.840000pt;}
._16{width:20.800000pt;}
._17{width:21.804800pt;}
._1a{width:23.128320pt;}
._10{width:24.224000pt;}
._8{width:25.196800pt;}
._1c{width:26.668800pt;}
._1b{width:27.584000pt;}
._2b{width:28.480000pt;}
._13{width:29.376000pt;}
._14{width:30.592000pt;}
._1e{width:32.236800pt;}
._1d{width:34.240000pt;}
._28{width:36.672000pt;}
._29{width:37.602347pt;}
._21{width:45.792000pt;}
._2a{width:47.936000pt;}
._2e{width:55.168000pt;}
._26{width:67.904000pt;}
._27{width:68.960000pt;}
._1f{width:84.736000pt;}
._20{width:85.760000pt;}
._2d{width:87.360000pt;}
._24{width:97.024000pt;}
._25{width:98.028800pt;}
._2f{width:102.400000pt;}
._35{width:119.424000pt;}
._22{width:133.536000pt;}
._23{width:134.583680pt;}
._2c{width:147.648000pt;}
._30{width:152.768000pt;}
._31{width:154.368000pt;}
._33{width:219.840000pt;}
._32{width:220.908800pt;}
._34{width:373.920000pt;}
.fs4{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs0{font-size:85.120000pt;}
.fs1{font-size:106.880000pt;}
.fs3{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:51.040000pt;}
.yc{bottom:68.960000pt;}
.y1d0{bottom:99.872000pt;}
.y1f0{bottom:101.632000pt;}
.y1bf{bottom:104.192000pt;}
.y14b{bottom:105.152000pt;}
.yaa{bottom:105.952000pt;}
.y1f4{bottom:106.112000pt;}
.ybb{bottom:108.832000pt;}
.y134{bottom:109.632000pt;}
.y1a8{bottom:112.352000pt;}
.y26{bottom:113.472000pt;}
.ye7{bottom:116.832000pt;}
.y160{bottom:119.552000pt;}
.y6c{bottom:121.152000pt;}
.y55{bottom:123.072000pt;}
.y195{bottom:123.872000pt;}
.y11f{bottom:124.832000pt;}
.y89{bottom:125.952000pt;}
.y3c{bottom:126.752000pt;}
.y175{bottom:128.352000pt;}
.y1ef{bottom:129.312000pt;}
.y1be{bottom:131.872000pt;}
.y14a{bottom:132.832000pt;}
.y1f3{bottom:133.626667pt;}
.yba{bottom:134.106667pt;}
.yd9{bottom:134.266667pt;}
.y133{bottom:137.146667pt;}
.y1c7{bottom:138.106667pt;}
.y1a7{bottom:139.866667pt;}
.y102{bottom:142.906667pt;}
.ya9{bottom:144.186667pt;}
.ye6{bottom:144.346667pt;}
.yb{bottom:144.506667pt;}
.y1f9{bottom:145.306667pt;}
.y6b{bottom:148.826667pt;}
.y145{bottom:150.586667pt;}
.y194{bottom:151.546667pt;}
.y25{bottom:151.866667pt;}
.y11e{bottom:152.346667pt;}
.y174{bottom:155.866667pt;}
.y18d{bottom:156.346667pt;}
.yb9{bottom:159.386667pt;}
.y149{bottom:160.346667pt;}
.y54{bottom:161.306667pt;}
.yd8{bottom:161.946667pt;}
.y15f{bottom:163.066667pt;}
.y88{bottom:164.186667pt;}
.y132{bottom:164.826667pt;}
.y3b{bottom:164.986667pt;}
.y1c6{bottom:165.626667pt;}
.y1a6{bottom:167.546667pt;}
.y1bd{bottom:170.106667pt;}
.y101{bottom:170.586667pt;}
.ye5{bottom:171.866667pt;}
.y1ee{bottom:172.826667pt;}
.y6a{bottom:176.346667pt;}
.y144{bottom:178.266667pt;}
.y193{bottom:179.066667pt;}
.y11d{bottom:179.866667pt;}
.y24{bottom:181.786667pt;}
.ya8{bottom:182.426667pt;}
.y173{bottom:183.546667pt;}
.yb8{bottom:184.666667pt;}
.ya{bottom:186.906667pt;}
.y148{bottom:187.866667pt;}
.y1af{bottom:188.826667pt;}
.y15e{bottom:190.746667pt;}
.y131{bottom:192.346667pt;}
.y1c5{bottom:193.306667pt;}
.y1a3{bottom:195.066667pt;}
.y1bc{bottom:197.626667pt;}
.y100{bottom:198.106667pt;}
.y53{bottom:199.546667pt;}
.y18c{bottom:199.866667pt;}
.yd7{bottom:200.186667pt;}
.y1ed{bottom:200.506667pt;}
.y87{bottom:202.426667pt;}
.y3a{bottom:203.226667pt;}
.y92{bottom:203.866667pt;}
.y192{bottom:206.746667pt;}
.y11c{bottom:207.546667pt;}
.ya7{bottom:209.946667pt;}
.ye4{bottom:210.266667pt;}
.y23{bottom:210.586667pt;}
.y172{bottom:211.066667pt;}
.y69{bottom:214.586667pt;}
.y19c{bottom:215.546667pt;}
.y1ae{bottom:216.506667pt;}
.y130{bottom:219.866667pt;}
.yb7{bottom:221.786667pt;}
.y1f7{bottom:222.586667pt;}
.y1bb{bottom:225.306667pt;}
.y52{bottom:227.066667pt;}
.y18b{bottom:227.546667pt;}
.yd6{bottom:227.706667pt;}
.y1ec{bottom:228.026667pt;}
.y9{bottom:229.306667pt;}
.y86{bottom:230.106667pt;}
.y91{bottom:231.546667pt;}
.y15d{bottom:234.266667pt;}
.ya6{bottom:237.626667pt;}
.y1a2{bottom:238.746667pt;}
.y39{bottom:241.466667pt;}
.yff{bottom:241.786667pt;}
.y68{bottom:242.266667pt;}
.y19b{bottom:243.066667pt;}
.y1ad{bottom:244.026667pt;}
.y11b{bottom:247.066667pt;}
.y12f{bottom:247.546667pt;}
.y22{bottom:247.866667pt;}
.ye3{bottom:248.506667pt;}
.y143{bottom:249.466667pt;}
.y1ba{bottom:252.826667pt;}
.y171{bottom:254.746667pt;}
.y18a{bottom:255.066667pt;}
.yd5{bottom:255.386667pt;}
.y85{bottom:257.626667pt;}
.y90{bottom:259.066667pt;}
.y1f2{bottom:260.026667pt;}
.yb6{bottom:260.186667pt;}
.y191{bottom:261.946667pt;}
.ya5{bottom:265.146667pt;}
.y51{bottom:265.466667pt;}
.y1a1{bottom:266.266667pt;}
.yfe{bottom:269.306667pt;}
.y67{bottom:269.786667pt;}
.y19a{bottom:270.746667pt;}
.y1ac{bottom:271.706667pt;}
.y8{bottom:271.866667pt;}
.y11a{bottom:274.746667pt;}
.ye2{bottom:276.026667pt;}
.y142{bottom:276.986667pt;}
.y15c{bottom:277.946667pt;}
.y38{bottom:279.866667pt;}
.y1b9{bottom:280.506667pt;}
.y1a5{bottom:282.266667pt;}
.yd4{bottom:282.906667pt;}
.y84{bottom:285.306667pt;}
.y21{bottom:286.106667pt;}
.y8f{bottom:286.746667pt;}
.yb5{bottom:287.706667pt;}
.y12e{bottom:291.066667pt;}
.ya4{bottom:292.826667pt;}
.y1a0{bottom:293.946667pt;}
.yfd{bottom:296.986667pt;}
.y66{bottom:297.466667pt;}
.y7{bottom:298.266667pt;}
.y189{bottom:298.746667pt;}
.y1ab{bottom:299.226667pt;}
.y119{bottom:302.266667pt;}
.y115{bottom:302.746667pt;}
.y50{bottom:303.706667pt;}
.y15b{bottom:305.466667pt;}
.y1de{bottom:309.946667pt;}
.yd3{bottom:310.586667pt;}
.y8e{bottom:314.266667pt;}
.y1f1{bottom:315.226667pt;}
.yb4{bottom:315.386667pt;}
.y37{bottom:318.106667pt;}
.y12d{bottom:318.746667pt;}
.ya3{bottom:320.346667pt;}
.y141{bottom:320.666667pt;}
.y19f{bottom:321.466667pt;}
.y83{bottom:323.546667pt;}
.y20{bottom:324.346667pt;}
.yfc{bottom:324.506667pt;}
.y65{bottom:324.986667pt;}
.y170{bottom:325.986667pt;}
.y188{bottom:326.306667pt;}
.y1f8{bottom:326.786667pt;}
.y1eb{bottom:326.946667pt;}
.y118{bottom:329.986667pt;}
.y114{bottom:330.306667pt;}
.y4f{bottom:331.266667pt;}
.y15a{bottom:333.186667pt;}
.y1aa{bottom:337.506667pt;}
.yd2{bottom:338.146667pt;}
.ye1{bottom:341.986667pt;}
.yb3{bottom:342.946667pt;}
.y12c{bottom:346.306667pt;}
.y140{bottom:348.226667pt;}
.y6{bottom:349.026667pt;}
.y190{bottom:349.186667pt;}
.y82{bottom:351.106667pt;}
.yfb{bottom:352.226667pt;}
.y64{bottom:352.706667pt;}
.y16f{bottom:353.506667pt;}
.y187{bottom:353.986667pt;}
.y36{bottom:356.386667pt;}
.y113{bottom:357.986667pt;}
.ya2{bottom:358.626667pt;}
.y4e{bottom:358.946667pt;}
.y1f{bottom:362.626667pt;}
.y1dd{bottom:365.186667pt;}
.ye0{bottom:369.506667pt;}
.y1ea{bottom:370.466667pt;}
.y12b{bottom:373.986667pt;}
.y13f{bottom:375.906667pt;}
.yd1{bottom:376.546667pt;}
.y159{bottom:376.706667pt;}
.y81{bottom:378.786667pt;}
.yfa{bottom:379.746667pt;}
.y63{bottom:380.226667pt;}
.yb2{bottom:381.186667pt;}
.y186{bottom:381.506667pt;}
.y112{bottom:385.506667pt;}
.ya1{bottom:386.306667pt;}
.y4d{bottom:386.466667pt;}
.y1c4{bottom:390.946667pt;}
.y1f6{bottom:392.706667pt;}
.y35{bottom:394.626667pt;}
.ydf{bottom:397.186667pt;}
.y1e9{bottom:398.146667pt;}
.y1e{bottom:400.866667pt;}
.y12a{bottom:401.506667pt;}
.y1dc{bottom:403.426667pt;}
.y158{bottom:404.386667pt;}
.yf9{bottom:407.426667pt;}
.y62{bottom:407.906667pt;}
.y16e{bottom:408.706667pt;}
.yb1{bottom:408.866667pt;}
.y185{bottom:409.186667pt;}
.y111{bottom:413.186667pt;}
.ya0{bottom:413.826667pt;}
.y4c{bottom:414.146667pt;}
.yd0{bottom:414.786667pt;}
.y5{bottom:415.426667pt;}
.y80{bottom:417.026667pt;}
.y1c3{bottom:418.466667pt;}
.y13e{bottom:419.426667pt;}
.y18f{bottom:420.386667pt;}
.y1cf{bottom:423.906667pt;}
.yde{bottom:424.706667pt;}
.y1e8{bottom:425.666667pt;}
.y129{bottom:429.186667pt;}
.y1db{bottom:431.106667pt;}
.y34{bottom:432.866667pt;}
.yf8{bottom:434.946667pt;}
.y8d{bottom:435.426667pt;}
.y1a4{bottom:436.386667pt;}
.y184{bottom:436.706667pt;}
.yb0{bottom:436.866667pt;}
.y1d{bottom:439.106667pt;}
.y110{bottom:440.706667pt;}
.y9f{bottom:441.506667pt;}
.y4b{bottom:441.666667pt;}
.ycf{bottom:442.306667pt;}
.y7f{bottom:444.546667pt;}
.y61{bottom:446.146667pt;}
.y13d{bottom:447.106667pt;}
.y157{bottom:447.906667pt;}
.y1ce{bottom:451.426667pt;}
.y16d{bottom:452.386667pt;}
.y1e7{bottom:453.346667pt;}
.y4{bottom:455.586667pt;}
.y1b8{bottom:456.706667pt;}
.y1da{bottom:458.626667pt;}
.yf7{bottom:462.626667pt;}
.y8c{bottom:463.106667pt;}
.y1a9{bottom:463.906667pt;}
.y183{bottom:464.386667pt;}
.yaf{bottom:464.546667pt;}
.y10f{bottom:468.386667pt;}
.y4a{bottom:469.346667pt;}
.yce{bottom:469.986667pt;}
.y33{bottom:471.106667pt;}
.y7e{bottom:472.226667pt;}
.y128{bottom:472.706667pt;}
.y60{bottom:473.666667pt;}
.y13c{bottom:474.626667pt;}
.y156{bottom:475.586667pt;}
.y1c{bottom:477.346667pt;}
.y9e{bottom:478.626667pt;}
.y1cd{bottom:479.106667pt;}
.y16c{bottom:479.906667pt;}
.y147{bottom:484.386667pt;}
.y1d9{bottom:486.146667pt;}
.y8b{bottom:490.626667pt;}
.y19e{bottom:491.586667pt;}
.y182{bottom:491.906667pt;}
.yae{bottom:492.066667pt;}
.y10e{bottom:495.906667pt;}
.y49{bottom:496.866667pt;}
.ycd{bottom:497.506667pt;}
.y3{bottom:499.586667pt;}
.y7d{bottom:499.746667pt;}
.y127{bottom:500.386667pt;}
.y5f{bottom:501.346667pt;}
.y13b{bottom:502.146667pt;}
.y18e{bottom:503.106667pt;}
.y9d{bottom:503.906667pt;}
.yf6{bottom:505.986667pt;}
.y1cc{bottom:506.626667pt;}
.y16b{bottom:507.586667pt;}
.y32{bottom:509.346667pt;}
.y146{bottom:511.906667pt;}
.y1d8{bottom:513.826667pt;}
.y1b{bottom:515.746667pt;}
.ydd{bottom:518.146667pt;}
.y155{bottom:519.106667pt;}
.y117{bottom:523.586667pt;}
.y1e6{bottom:524.546667pt;}
.y7c{bottom:527.426667pt;}
.y126{bottom:527.906667pt;}
.y5e{bottom:528.866667pt;}
.y9c{bottom:529.186667pt;}
.y1cb{bottom:534.146667pt;}
.y48{bottom:535.106667pt;}
.y181{bottom:535.586667pt;}
.ycc{bottom:535.746667pt;}
.y10d{bottom:539.586667pt;}
.ydc{bottom:545.826667pt;}
.y154{bottom:546.786667pt;}
.y31{bottom:547.746667pt;}
.y2{bottom:548.226667pt;}
.yf5{bottom:549.666667pt;}
.y199{bottom:551.106667pt;}
.y1e5{bottom:551.906667pt;}
.y1d7{bottom:552.066667pt;}
.y1a{bottom:553.986667pt;}
.y9b{bottom:554.466667pt;}
.y125{bottom:555.613333pt;}
.y5d{bottom:556.573333pt;}
.y1ca{bottom:561.853333pt;}
.y16a{bottom:562.813333pt;}
.y180{bottom:563.133333pt;}
.ycb{bottom:563.453333pt;}
.y7b{bottom:565.693333pt;}
.y10c{bottom:567.133333pt;}
.y47{bottom:573.373333pt;}
.y153{bottom:574.333333pt;}
.yf4{bottom:577.373333pt;}
.y1b7{bottom:577.853333pt;}
.y198{bottom:578.813333pt;}
.y9a{bottom:579.773333pt;}
.y124{bottom:583.133333pt;}
.y5c{bottom:584.093333pt;}
.y30{bottom:586.013333pt;}
.y1{bottom:586.813333pt;}
.y1c9{bottom:589.373333pt;}
.y169{bottom:590.333333pt;}
.y17f{bottom:590.813333pt;}
.yca{bottom:590.973333pt;}
.y19{bottom:592.253333pt;}
.y7a{bottom:593.373333pt;}
.y10b{bottom:594.813333pt;}
.y1e4{bottom:595.773333pt;}
.y13a{bottom:601.053333pt;}
.y19d{bottom:602.013333pt;}
.yf3{bottom:604.893333pt;}
.y99{bottom:605.053333pt;}
.y197{bottom:606.333333pt;}
.y1d6{bottom:607.293333pt;}
.y123{bottom:610.813333pt;}
.y46{bottom:611.773333pt;}
.y1b6{bottom:616.093333pt;}
.y152{bottom:618.013333pt;}
.y17e{bottom:618.333333pt;}
.y79{bottom:620.893333pt;}
.y5b{bottom:622.333333pt;}
.y1e3{bottom:623.293333pt;}
.y2f{bottom:624.253333pt;}
.y139{bottom:628.573333pt;}
.yc9{bottom:629.213333pt;}
.y98{bottom:630.333333pt;}
.y18{bottom:630.493333pt;}
.yf2{bottom:632.573333pt;}
.y1c8{bottom:633.053333pt;}
.y168{bottom:634.013333pt;}
.y122{bottom:638.333333pt;}
.y45{bottom:639.293333pt;}
.y1b5{bottom:643.773333pt;}
.y151{bottom:645.533333pt;}
.y17d{bottom:646.013333pt;}
.y78{bottom:648.413333pt;}
.y5a{bottom:650.013333pt;}
.y97{bottom:655.773333pt;}
.y138{bottom:656.253333pt;}
.yc8{bottom:656.893333pt;}
.yf1{bottom:660.093333pt;}
.y1c2{bottom:660.573333pt;}
.y167{bottom:661.533333pt;}
.y2e{bottom:662.493333pt;}
.y10a{bottom:666.013333pt;}
.ydb{bottom:666.973333pt;}
.y17{bottom:668.733333pt;}
.y1b4{bottom:671.293333pt;}
.y150{bottom:673.213333pt;}
.y17c{bottom:673.533333pt;}
.y77{bottom:676.093333pt;}
.y44{bottom:677.533333pt;}
.y96{bottom:681.053333pt;}
.y137{bottom:683.773333pt;}
.y1c1{bottom:688.253333pt;}
.y166{bottom:689.213333pt;}
.y109{bottom:693.533333pt;}
.yda{bottom:694.493333pt;}
.yc7{bottom:695.133333pt;}
.yf0{bottom:698.493333pt;}
.y1b3{bottom:698.973333pt;}
.y2d{bottom:700.733333pt;}
.y59{bottom:705.213333pt;}
.y95{bottom:706.333333pt;}
.y16{bottom:706.973333pt;}
.y17b{bottom:713.213333pt;}
.y76{bottom:714.333333pt;}
.y43{bottom:715.773333pt;}
.y165{bottom:716.733333pt;}
.y108{bottom:721.213333pt;}
.y136{bottom:722.173333pt;}
.yc6{bottom:722.813333pt;}
.yef{bottom:726.013333pt;}
.y1b2{bottom:726.493333pt;}
.y2c{bottom:728.413333pt;}
.y58{bottom:732.733333pt;}
.y1e2{bottom:738.173333pt;}
.y1d5{bottom:738.973333pt;}
.y17a{bottom:740.733333pt;}
.y75{bottom:742.013333pt;}
.y42{bottom:743.453333pt;}
.y164{bottom:744.413333pt;}
.y15{bottom:745.373333pt;}
.y107{bottom:748.733333pt;}
.yc5{bottom:750.333333pt;}
.yee{bottom:753.693333pt;}
.y1b1{bottom:754.173333pt;}
.y2b{bottom:755.933333pt;}
.y57{bottom:760.413333pt;}
.y1e1{bottom:765.693333pt;}
.y1d4{bottom:766.653333pt;}
.y179{bottom:768.413333pt;}
.y74{bottom:769.533333pt;}
.y41{bottom:770.973333pt;}
.y14f{bottom:771.933333pt;}
.y106{bottom:776.413333pt;}
.yc4{bottom:777.853333pt;}
.yed{bottom:781.213333pt;}
.y1b0{bottom:781.693333pt;}
.y14{bottom:783.613333pt;}
.y56{bottom:787.973333pt;}
.y1e0{bottom:793.413333pt;}
.y2a{bottom:794.213333pt;}
.y178{bottom:795.973333pt;}
.y73{bottom:797.253333pt;}
.y40{bottom:798.693333pt;}
.y14e{bottom:799.653333pt;}
.y105{bottom:803.973333pt;}
.y1d3{bottom:804.933333pt;}
.yc3{bottom:805.573333pt;}
.yec{bottom:808.933333pt;}
.y1c0{bottom:809.413333pt;}
.y1f5{bottom:815.493333pt;}
.y163{bottom:815.653333pt;}
.y120{bottom:819.973333pt;}
.y1df{bottom:820.773333pt;}
.y13{bottom:821.893333pt;}
.y177{bottom:823.653333pt;}
.y3f{bottom:826.213333pt;}
.y116{bottom:831.653333pt;}
.y29{bottom:832.453333pt;}
.yc2{bottom:833.093333pt;}
.y72{bottom:835.493333pt;}
.yeb{bottom:836.453333pt;}
.yad{bottom:836.933333pt;}
.y14d{bottom:843.173333pt;}
.y104{bottom:847.653333pt;}
.y176{bottom:851.173333pt;}
.y3e{bottom:853.893333pt;}
.y121{bottom:859.173333pt;}
.y12{bottom:860.133333pt;}
.y71{bottom:863.333333pt;}
.yea{bottom:864.133333pt;}
.yac{bottom:864.453333pt;}
.y28{bottom:870.853333pt;}
.yc1{bottom:871.493333pt;}
.y103{bottom:875.173333pt;}
.y3d{bottom:881.413333pt;}
.y135{bottom:886.693333pt;}
.y196{bottom:886.853333pt;}
.y70{bottom:891.173333pt;}
.yab{bottom:892.133333pt;}
.y11{bottom:898.373333pt;}
.ye9{bottom:902.853333pt;}
.y1d2{bottom:903.653333pt;}
.y27{bottom:909.093333pt;}
.yc0{bottom:909.733333pt;}
.y14c{bottom:914.373333pt;}
.y6f{bottom:919.173333pt;}
.y94{bottom:919.653333pt;}
.ye8{bottom:930.373333pt;}
.y1d1{bottom:931.173333pt;}
.y10{bottom:936.613333pt;}
.ybf{bottom:937.253333pt;}
.y162{bottom:942.053333pt;}
.y6e{bottom:947.013333pt;}
.y8a{bottom:947.333333pt;}
.y93{bottom:958.053333pt;}
.ybe{bottom:963.653333pt;}
.y161{bottom:969.573333pt;}
.yf{bottom:974.853333pt;}
.y6d{bottom:985.573333pt;}
.ybd{bottom:988.933333pt;}
.ye{bottom:1013.253333pt;}
.ybc{bottom:1014.373333pt;}
.h11{height:52.785000pt;}
.h13{height:56.312500pt;}
.hf{height:57.375000pt;}
.hc{height:57.758750pt;}
.h10{height:57.787500pt;}
.h9{height:58.563750pt;}
.h8{height:60.288750pt;}
.h12{height:62.781250pt;}
.hb{height:62.812500pt;}
.ha{height:64.500000pt;}
.hd{height:65.781915pt;}
.he{height:66.625000pt;}
.h5{height:73.490625pt;}
.h2{height:81.046875pt;}
.h7{height:83.540625pt;}
.h4{height:85.785000pt;}
.h3{height:107.715000pt;}
.h6{height:188.437500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:113.471988pt;}
.xd{left:137.466655pt;}
.xe{left:141.466655pt;}
.x10{left:160.186655pt;}
.x3{left:161.626655pt;}
.xb{left:185.466655pt;}
.xc{left:209.466655pt;}
.x4{left:295.906655pt;}
.x5{left:331.906655pt;}
.x8{left:378.493322pt;}
.xf{left:389.533322pt;}
.x7{left:393.213322pt;}
.x2{left:396.893322pt;}
.x9{left:408.253322pt;}
.xa{left:537.733322pt;}
.x1{left:680.319988pt;}
}




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