
    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_d7732be8d6eec3a622957b91.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3d3af581960d459dd1427530.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_862894cad4032855c54f9d6d.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5b57c67251c2cba5fc33d66d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.401855;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_267ef9c390dc443f22ce0a59.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.063477;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_540c2a3441210c0d62ea8c4d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_25afec01e2bbc30f7a18f12c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_374b4cb4235bf69da971abff.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.163086;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_ee076d4238ae1c57771cc246.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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:-20.880000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.v6{vertical-align:31.680000px;}
.v5{vertical-align:37.440000px;}
.ls16{letter-spacing:-0.774000px;}
.ls12{letter-spacing:-0.720000px;}
.ls13{letter-spacing:-0.463800px;}
.ls5{letter-spacing:-0.460200px;}
.ls6{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.334200px;}
.ls8{letter-spacing:-0.219000px;}
.ls4{letter-spacing:-0.206400px;}
.ls14{letter-spacing:-0.109200px;}
.ls11{letter-spacing:-0.106800px;}
.ls9{letter-spacing:-0.051840px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.053280px;}
.lse{letter-spacing:0.068400px;}
.lsa{letter-spacing:0.097920px;}
.ls15{letter-spacing:0.113760px;}
.lsb{letter-spacing:0.178560px;}
.lsc{letter-spacing:0.178800px;}
.ls3{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.265200px;}
.ls0{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.480000px;}
.ls7{letter-spacing:6.425280px;}
.ls10{letter-spacing:46.026720px;}
.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;}
}
.ws18{word-spacing:-56.880000px;}
.ws13{word-spacing:-18.454752px;}
.ws14{word-spacing:-18.414720px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-15.840000px;}
.ws11{word-spacing:-15.788160px;}
.ws8{word-spacing:-15.621000px;}
.wsc{word-spacing:-15.505800px;}
.ws5{word-spacing:-15.300000px;}
.ws2{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.wse{word-spacing:-14.833200px;}
.ws6{word-spacing:-14.580000px;}
.ws15{word-spacing:-14.220000px;}
.wsd{word-spacing:-14.118000px;}
.ws7{word-spacing:-10.440000px;}
.wsb{word-spacing:-10.047600px;}
.wsa{word-spacing:-9.979200px;}
.ws1{word-spacing:-9.720000px;}
.ws4{word-spacing:0.000000px;}
.ws16{word-spacing:33.148800px;}
.ws12{word-spacing:57.628800px;}
.ws10{word-spacing:94.550880px;}
.wsf{word-spacing:99.827520px;}
.ws17{word-spacing:111.916320px;}
._13{margin-left:-4.769280px;}
._b{margin-left:-3.097440px;}
._0{margin-left:-1.324800px;}
._1{width:1.180800px;}
._a{width:2.600640px;}
._4{width:4.197600px;}
._5{width:6.201120px;}
._9{width:7.948080px;}
._8{width:9.023760px;}
._12{width:10.759920px;}
._14{width:12.453120px;}
._d{width:14.241600px;}
._e{width:15.301440px;}
._15{width:17.550720px;}
._c{width:18.679680px;}
._11{width:20.468160px;}
._10{width:22.848960px;}
._f{width:23.912640px;}
._6{width:29.139840px;}
._2{width:34.601040px;}
._3{width:36.288720px;}
._7{width:41.368320px;}
._16{width:44.640000px;}
._28{width:92.371680px;}
._1a{width:105.840000px;}
._24{width:116.851680px;}
._25{width:126.348480px;}
._26{width:130.019040px;}
._27{width:133.701120px;}
._20{width:146.274240px;}
._21{width:150.828480px;}
._22{width:154.499040px;}
._23{width:158.181120px;}
._1d{width:175.202400px;}
._1e{width:176.630880px;}
._1f{width:177.725760px;}
._1c{width:196.128720px;}
._18{width:199.200000px;}
._17{width:200.340000px;}
._19{width:946.588800px;}
._1b{width:1062.138720px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.000000px;}
.fs4{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fsa{font-size:45.360000px;}
.fs3{font-size:48.240000px;}
.fsc{font-size:56.880000px;}
.fs5{font-size:59.760000px;}
.fs9{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fsb{font-size:66.384000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:95.760000px;}
.fs7{font-size:156.240000px;}
.y0{bottom:0.000000px;}
.y33{bottom:3.240000px;}
.yc8{bottom:3.780000px;}
.yf2{bottom:3.960000px;}
.yeb{bottom:4.500000px;}
.yed{bottom:4.680000px;}
.ye9{bottom:5.220000px;}
.yff{bottom:5.580000px;}
.y150{bottom:6.120000px;}
.yc6{bottom:13.140000px;}
.y17a{bottom:13.245000px;}
.y13{bottom:14.400000px;}
.ye7{bottom:14.580000px;}
.y127{bottom:15.915000px;}
.yfb{bottom:16.560000px;}
.y1a{bottom:21.240000px;}
.y32{bottom:29.340000px;}
.y178{bottom:36.750000px;}
.y19{bottom:38.520000px;}
.y125{bottom:40.530000px;}
.y14e{bottom:42.270000px;}
.y31{bottom:46.620000px;}
.y18{bottom:55.620000px;}
.y172{bottom:56.415000px;}
.y149{bottom:61.920000px;}
.y11e{bottom:62.025000px;}
.y30{bottom:63.900000px;}
.y17{bottom:72.930000px;}
.y2f{bottom:81.180000px;}
.y16{bottom:90.210000px;}
.y11f{bottom:92.910000px;}
.y173{bottom:94.680000px;}
.y1b{bottom:95.430000px;}
.y2e{bottom:98.460000px;}
.y179{bottom:99.615000px;}
.y14f{bottom:101.520000px;}
.y15{bottom:105.150000px;}
.y14a{bottom:107.460000px;}
.y2d{bottom:115.785000px;}
.y126{bottom:118.590000px;}
.y120{bottom:123.840000px;}
.y174{bottom:132.990000px;}
.y2c{bottom:133.065000px;}
.y2b{bottom:150.165000px;}
.y14b{bottom:152.970000px;}
.y121{bottom:154.770000px;}
.y2a{bottom:167.445000px;}
.y175{bottom:171.255000px;}
.y147{bottom:176.610000px;}
.y3a{bottom:176.625000px;}
.y11c{bottom:182.730000px;}
.yc3{bottom:184.710000px;}
.y29{bottom:184.725000px;}
.y122{bottom:185.685000px;}
.y9b{bottom:186.150000px;}
.y41{bottom:187.950000px;}
.y39{bottom:193.725000px;}
.y146{bottom:194.610000px;}
.yf9{bottom:197.490000px;}
.y14c{bottom:198.510000px;}
.y1aa{bottom:200.190000px;}
.y11b{bottom:200.910000px;}
.y28{bottom:202.005000px;}
.yc2{bottom:202.890000px;}
.y9a{bottom:204.330000px;}
.y40{bottom:206.850000px;}
.y71{bottom:207.390000px;}
.y170{bottom:208.110000px;}
.y176{bottom:209.550000px;}
.y152{bottom:209.910000px;}
.y38{bottom:211.005000px;}
.y145{bottom:212.790000px;}
.yf8{bottom:215.490000px;}
.y123{bottom:216.570000px;}
.y11a{bottom:218.910000px;}
.y27{bottom:219.285000px;}
.yc1{bottom:220.890000px;}
.y99{bottom:222.510000px;}
.y16f{bottom:224.490000px;}
.y3f{bottom:225.930000px;}
.y37{bottom:228.285000px;}
.y144{bottom:230.970000px;}
.yf7{bottom:233.670000px;}
.y151{bottom:234.000000px;}
.y128{bottom:236.055000px;}
.y26{bottom:236.385000px;}
.y119{bottom:237.090000px;}
.y1a9{bottom:237.450000px;}
.yc0{bottom:239.070000px;}
.y98{bottom:240.510000px;}
.y16e{bottom:240.870000px;}
.y70{bottom:243.570000px;}
.y14d{bottom:244.050000px;}
.y3e{bottom:244.830000px;}
.y36{bottom:245.565000px;}
.y124{bottom:247.500000px;}
.y177{bottom:247.860000px;}
.y143{bottom:248.970000px;}
.yf6{bottom:251.670000px;}
.y25{bottom:253.665000px;}
.y1a8{bottom:253.830000px;}
.y17b{bottom:253.875000px;}
.ybf{bottom:257.250000px;}
.y97{bottom:258.690000px;}
.y6f{bottom:261.570000px;}
.y16d{bottom:261.750000px;}
.y35{bottom:262.845000px;}
.y142{bottom:267.150000px;}
.y3b{bottom:267.885000px;}
.yf5{bottom:269.850000px;}
.y24{bottom:270.945000px;}
.y3d{bottom:272.550000px;}
.y118{bottom:272.910000px;}
.y1a7{bottom:274.710000px;}
.y96{bottom:276.690000px;}
.y34{bottom:277.785000px;}
.y16c{bottom:278.130000px;}
.y6e{bottom:279.750000px;}
.y141{bottom:285.150000px;}
.y117{bottom:286.950000px;}
.y11d{bottom:287.280000px;}
.yf4{bottom:288.030000px;}
.y23{bottom:288.225000px;}
.y1a6{bottom:291.090000px;}
.y3c{bottom:291.270000px;}
.ybe{bottom:293.250000px;}
.y6d{bottom:297.750000px;}
.y16b{bottom:299.010000px;}
.y140{bottom:303.330000px;}
.y22{bottom:305.505000px;}
.yf3{bottom:306.030000px;}
.y1c{bottom:307.650000px;}
.y1a5{bottom:311.970000px;}
.y95{bottom:312.870000px;}
.y16a{bottom:315.390000px;}
.y13f{bottom:321.510000px;}
.y21{bottom:322.785000px;}
.y1a4{bottom:328.350000px;}
.ybd{bottom:329.430000px;}
.y6c{bottom:333.930000px;}
.y169{bottom:336.270000px;}
.yf1{bottom:339.510000px;}
.y20{bottom:339.885000px;}
.ybc{bottom:347.610000px;}
.y94{bottom:348.330000px;}
.y1a3{bottom:349.230000px;}
.y6b{bottom:352.110000px;}
.y168{bottom:352.650000px;}
.y93{bottom:356.250000px;}
.y1f{bottom:357.195000px;}
.y13e{bottom:357.690000px;}
.yf0{bottom:358.230000px;}
.ybb{bottom:365.610000px;}
.y6a{bottom:370.110000px;}
.y1e{bottom:374.475000px;}
.yef{bottom:378.210000px;}
.y92{bottom:378.390000px;}
.yba{bottom:383.790000px;}
.y1a2{bottom:386.490000px;}
.y167{bottom:387.570000px;}
.y69{bottom:388.290000px;}
.y1d{bottom:389.415000px;}
.y13d{bottom:393.690000px;}
.y91{bottom:396.570000px;}
.yee{bottom:398.010000px;}
.yb9{bottom:401.790000px;}
.y1a1{bottom:402.870000px;}
.y13c{bottom:411.915000px;}
.y166{bottom:415.515000px;}
.yec{bottom:417.855000px;}
.yb8{bottom:420.015000px;}
.y1a0{bottom:423.795000px;}
.y68{bottom:424.515000px;}
.y13b{bottom:430.095000px;}
.y90{bottom:432.795000px;}
.yea{bottom:437.835000px;}
.yb7{bottom:438.195000px;}
.y19f{bottom:440.175000px;}
.y165{bottom:443.595000px;}
.y13a{bottom:448.095000px;}
.yb6{bottom:456.195000px;}
.y19e{bottom:456.555000px;}
.ye6{bottom:458.355000px;}
.y67{bottom:460.695000px;}
.y139{bottom:466.275000px;}
.y8f{bottom:468.795000px;}
.y164{bottom:471.315000px;}
.y19d{bottom:477.435000px;}
.ye8{bottom:481.035000px;}
.y138{bottom:484.455000px;}
.y8e{bottom:486.975000px;}
.y163{bottom:489.495000px;}
.yb5{bottom:492.375000px;}
.y19c{bottom:493.815000px;}
.y66{bottom:497.595000px;}
.y137{bottom:502.455000px;}
.ye5{bottom:502.995000px;}
.y8d{bottom:504.975000px;}
.y162{bottom:507.675000px;}
.y19b{bottom:510.195000px;}
.y65{bottom:516.675000px;}
.y136{bottom:520.635000px;}
.y161{bottom:525.855000px;}
.yb4{bottom:531.075000px;}
.y64{bottom:535.755000px;}
.ye4{bottom:538.455000px;}
.y135{bottom:538.635000px;}
.y8c{bottom:541.155000px;}
.y160{bottom:543.855000px;}
.y19a{bottom:547.455000px;}
.yb3{bottom:549.255000px;}
.y63{bottom:554.655000px;}
.ye3{bottom:556.455000px;}
.y15f{bottom:562.035000px;}
.y199{bottom:568.335000px;}
.y62{bottom:573.735000px;}
.y8b{bottom:574.635000px;}
.y116{bottom:578.415000px;}
.y15e{bottom:580.035000px;}
.y198{bottom:584.715000px;}
.yb2{bottom:585.795000px;}
.y134{bottom:588.675000px;}
.y148{bottom:588.780000px;}
.y14{bottom:591.915000px;}
.y61{bottom:592.635000px;}
.ye2{bottom:592.815000px;}
.y115{bottom:596.595000px;}
.y15d{bottom:598.215000px;}
.yb1{bottom:603.795000px;}
.y197{bottom:605.595000px;}
.y8a{bottom:609.015000px;}
.ye1{bottom:610.815000px;}
.y60{bottom:611.535000px;}
.y114{bottom:614.595000px;}
.y15c{bottom:616.395000px;}
.yb0{bottom:621.975000px;}
.y89{bottom:626.295000px;}
.ye0{bottom:628.995000px;}
.y5f{bottom:630.615000px;}
.y113{bottom:632.775000px;}
.y15b{bottom:634.395000px;}
.yaf{bottom:640.155000px;}
.y196{bottom:643.035000px;}
.y88{bottom:643.575000px;}
.ydf{bottom:647.175000px;}
.y5e{bottom:649.515000px;}
.y112{bottom:650.955000px;}
.y15a{bottom:652.575000px;}
.y195{bottom:659.445000px;}
.y87{bottom:660.885000px;}
.yde{bottom:665.205000px;}
.y111{bottom:668.985000px;}
.y159{bottom:670.605000px;}
.y5d{bottom:672.945000px;}
.yae{bottom:676.185000px;}
.y86{bottom:678.885000px;}
.y194{bottom:680.325000px;}
.ydd{bottom:683.385000px;}
.y110{bottom:687.165000px;}
.y5c{bottom:692.025000px;}
.y193{bottom:696.705000px;}
.y85{bottom:700.125000px;}
.y158{bottom:700.665000px;}
.ydc{bottom:701.385000px;}
.y12{bottom:703.545000px;}
.y10f{bottom:705.345000px;}
.y5b{bottom:710.925000px;}
.yad{bottom:712.365000px;}
.y192{bottom:717.585000px;}
.y157{bottom:719.385000px;}
.ydb{bottom:719.565000px;}
.y10e{bottom:723.345000px;}
.y5a{bottom:730.005000px;}
.yac{bottom:730.365000px;}
.y156{bottom:733.425000px;}
.y171{bottom:733.680000px;}
.y191{bottom:733.965000px;}
.y84{bottom:735.585000px;}
.yda{bottom:737.745000px;}
.y10d{bottom:741.525000px;}
.y11{bottom:748.005000px;}
.y59{bottom:748.905000px;}
.y190{bottom:750.345000px;}
.y83{bottom:753.585000px;}
.yd9{bottom:755.745000px;}
.y10c{bottom:759.525000px;}
.y10{bottom:765.285000px;}
.yab{bottom:765.645000px;}
.y58{bottom:767.985000px;}
.y18f{bottom:771.225000px;}
.y82{bottom:771.765000px;}
.yaa{bottom:773.565000px;}
.y10b{bottom:777.705000px;}
.yf{bottom:782.565000px;}
.y57{bottom:786.885000px;}
.y18e{bottom:787.605000px;}
.y81{bottom:789.945000px;}
.yd8{bottom:791.925000px;}
.ye{bottom:799.665000px;}
.y56{bottom:805.965000px;}
.y80{bottom:807.945000px;}
.y18d{bottom:808.485000px;}
.yd7{bottom:809.925000px;}
.y10a{bottom:813.885000px;}
.ya9{bottom:814.425000px;}
.yd{bottom:816.945000px;}
.y55{bottom:824.865000px;}
.y7f{bottom:826.125000px;}
.yd6{bottom:828.105000px;}
.y109{bottom:831.885000px;}
.ya8{bottom:832.605000px;}
.yc{bottom:839.445000px;}
.y54{bottom:843.765000px;}
.y7e{bottom:844.125000px;}
.y18c{bottom:845.745000px;}
.yd5{bottom:846.285000px;}
.y108{bottom:850.065000px;}
.ya7{bottom:850.605000px;}
.yb{bottom:851.505000px;}
.y18b{bottom:862.125000px;}
.y7d{bottom:862.305000px;}
.y53{bottom:862.845000px;}
.yd4{bottom:864.285000px;}
.y107{bottom:868.065000px;}
.ya6{bottom:868.785000px;}
.ya{bottom:874.005000px;}
.y133{bottom:880.125000px;}
.y7c{bottom:880.485000px;}
.y52{bottom:881.745000px;}
.yd3{bottom:882.465000px;}
.y18a{bottom:883.005000px;}
.y106{bottom:886.245000px;}
.y9{bottom:886.425000px;}
.ya5{bottom:886.965000px;}
.y132{bottom:898.125000px;}
.y189{bottom:899.385000px;}
.yd2{bottom:900.690000px;}
.y51{bottom:900.870000px;}
.y105{bottom:904.470000px;}
.y8{bottom:905.730000px;}
.y188{bottom:915.810000px;}
.y131{bottom:916.350000px;}
.y7b{bottom:916.530000px;}
.yd1{bottom:918.690000px;}
.y50{bottom:919.770000px;}
.y104{bottom:922.470000px;}
.ya4{bottom:923.010000px;}
.y130{bottom:934.530000px;}
.y187{bottom:936.690000px;}
.yd0{bottom:936.870000px;}
.y4f{bottom:938.670000px;}
.y7{bottom:944.430000px;}
.y12f{bottom:952.530000px;}
.y7a{bottom:952.710000px;}
.y186{bottom:953.070000px;}
.ycf{bottom:954.870000px;}
.y103{bottom:955.950000px;}
.y4e{bottom:957.750000px;}
.ya3{bottom:959.190000px;}
.y6{bottom:965.130000px;}
.y185{bottom:969.450000px;}
.y12e{bottom:970.710000px;}
.y79{bottom:970.890000px;}
.y4d{bottom:976.650000px;}
.ya2{bottom:977.190000px;}
.y102{bottom:977.910000px;}
.yce{bottom:988.350000px;}
.y78{bottom:988.890000px;}
.y184{bottom:990.330000px;}
.ya1{bottom:995.370000px;}
.y4c{bottom:995.730000px;}
.y101{bottom:999.150000px;}
.y5{bottom:1003.830000px;}
.ycd{bottom:1005.630000px;}
.y183{bottom:1006.710000px;}
.y12d{bottom:1006.890000px;}
.y77{bottom:1007.070000px;}
.y4b{bottom:1018.950000px;}
.y100{bottom:1020.390000px;}
.ycc{bottom:1022.910000px;}
.y155{bottom:1024.890000px;}
.y76{bottom:1025.070000px;}
.y182{bottom:1027.590000px;}
.ya0{bottom:1031.550000px;}
.y4a{bottom:1038.030000px;}
.y4{bottom:1038.570000px;}
.ycb{bottom:1040.190000px;}
.yfe{bottom:1041.630000px;}
.y12c{bottom:1043.070000px;}
.y75{bottom:1043.250000px;}
.y181{bottom:1043.970000px;}
.y1ac{bottom:1056.930000px;}
.y49{bottom:1057.110000px;}
.yca{bottom:1057.290000px;}
.y180{bottom:1060.350000px;}
.y154{bottom:1061.070000px;}
.y12b{bottom:1061.250000px;}
.y74{bottom:1061.430000px;}
.yfd{bottom:1063.590000px;}
.y9f{bottom:1067.550000px;}
.yc9{bottom:1074.570000px;}
.y48{bottom:1076.010000px;}
.y153{bottom:1079.250000px;}
.y12a{bottom:1079.430000px;}
.y17f{bottom:1081.230000px;}
.yfa{bottom:1085.550000px;}
.y9e{bottom:1085.730000px;}
.yc5{bottom:1092.570000px;}
.y47{bottom:1095.090000px;}
.y73{bottom:1097.430000px;}
.y1ab{bottom:1097.610000px;}
.y17e{bottom:1102.110000px;}
.yfc{bottom:1108.230000px;}
.yc7{bottom:1112.190000px;}
.y46{bottom:1113.990000px;}
.y129{bottom:1115.430000px;}
.y17d{bottom:1118.490000px;}
.y9d{bottom:1120.830000px;}
.y9c{bottom:1128.750000px;}
.y45{bottom:1132.890000px;}
.y72{bottom:1133.610000px;}
.yc4{bottom:1134.330000px;}
.y17c{bottom:1134.870000px;}
.y3{bottom:1168.200000px;}
.y44{bottom:1169.460000px;}
.y43{bottom:1186.740000px;}
.y2{bottom:1187.280000px;}
.y42{bottom:1204.740000px;}
.y1{bottom:1206.180000px;}
.h16{height:17.100000px;}
.h14{height:17.280000px;}
.h15{height:17.316000px;}
.hb{height:17.657227px;}
.h1a{height:18.180000px;}
.h21{height:18.720000px;}
.h1e{height:19.800000px;}
.h20{height:19.836000px;}
.h1f{height:19.980000px;}
.h1d{height:21.240000px;}
.h23{height:21.960000px;}
.h19{height:36.900000px;}
.h6{height:38.158594px;}
.h1c{height:39.960000px;}
.h9{height:40.500000px;}
.h22{height:43.920000px;}
.h29{height:55.824609px;}
.hc{height:58.621992px;}
.h7{height:58.651172px;}
.he{height:59.019609px;}
.h8{height:60.226875px;}
.h13{height:62.184375px;}
.h1b{height:62.327813px;}
.h12{height:63.855000px;}
.h2{height:65.010937px;}
.h26{height:65.884219px;}
.h25{height:66.027445px;}
.h5{height:66.757500px;}
.h27{height:69.086250px;}
.h28{height:69.236437px;}
.h10{height:70.664062px;}
.h4{height:72.562500px;}
.h17{height:75.668203px;}
.h18{height:93.864375px;}
.h3{height:96.508125px;}
.ha{height:109.476000px;}
.h11{height:153.341016px;}
.h24{height:270.000000px;}
.hf{height:281.910000px;}
.hd{height:393.735000px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w4{width:17.640000px;}
.wd{width:44.820000px;}
.w12{width:59.400000px;}
.w8{width:62.640000px;}
.wb{width:93.600000px;}
.w16{width:113.436000px;}
.w15{width:116.820000px;}
.w10{width:121.896000px;}
.w11{width:147.276000px;}
.w7{width:149.076000px;}
.wc{width:155.370000px;}
.w6{width:188.490000px;}
.w14{width:230.250000px;}
.w9{width:235.335000px;}
.w3{width:237.990000px;}
.wa{width:248.970000px;}
.we{width:265.350000px;}
.wf{width:269.175000px;}
.w13{width:269.355000px;}
.w5{width:406.875000px;}
.w17{width:507.600000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:8.100000px;}
.x27{left:10.620000px;}
.x2d{left:14.940000px;}
.x36{left:18.000000px;}
.x16{left:19.440000px;}
.x1d{left:21.060000px;}
.x18{left:25.380000px;}
.x23{left:30.420000px;}
.x39{left:31.680000px;}
.x1f{left:33.660000px;}
.x29{left:39.060000px;}
.x24{left:40.140000px;}
.x47{left:42.915000px;}
.x2f{left:44.130000px;}
.x33{left:45.360000px;}
.x3f{left:47.340000px;}
.x2c{left:50.580000px;}
.x43{left:51.915000px;}
.x1c{left:54.540000px;}
.x30{left:56.700000px;}
.x1e{left:59.805000px;}
.x20{left:64.440000px;}
.x21{left:69.345000px;}
.x22{left:73.485000px;}
.x2e{left:74.700000px;}
.x3b{left:76.725000px;}
.x32{left:78.885000px;}
.x3d{left:80.865000px;}
.x31{left:84.285000px;}
.x3c{left:86.265000px;}
.x1a{left:88.020000px;}
.x3e{left:90.405000px;}
.x4c{left:94.535987px;}
.x2a{left:98.130000px;}
.x5{left:108.035987px;}
.x4a{left:119.085000px;}
.x6{left:122.796000px;}
.x2{left:131.255987px;}
.x26{left:156.990000px;}
.x35{left:167.250000px;}
.x11{left:172.829987px;}
.xc{left:180.209987px;}
.x44{left:181.545000px;}
.xa{left:185.250000px;}
.x4b{left:186.270000px;}
.x42{left:192.240000px;}
.x12{left:198.749987px;}
.x28{left:201.810000px;}
.x14{left:211.529987px;}
.x37{left:226.650000px;}
.xe{left:230.429987px;}
.x17{left:235.830000px;}
.x13{left:241.589987px;}
.x41{left:259.049987px;}
.x34{left:263.729987px;}
.x46{left:266.249987px;}
.xf{left:277.950000px;}
.x25{left:285.374987px;}
.x49{left:292.214987px;}
.x45{left:310.605000px;}
.x3{left:314.354987px;}
.x15{left:327.314987px;}
.x8{left:360.795000px;}
.xd{left:375.374987px;}
.x9{left:378.435000px;}
.x48{left:402.195000px;}
.x10{left:466.455000px;}
.x19{left:471.165000px;}
.x38{left:496.005000px;}
.x1b{left:564.765000px;}
.x2b{left:589.065000px;}
.x3a{left:612.825000px;}
.x40{left:700.889987px;}
.xb{left:758.309987px;}
.x1{left:760.469987px;}
.x4{left:781.349987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.v6{vertical-align:28.160000pt;}
.v5{vertical-align:33.280000pt;}
.ls16{letter-spacing:-0.688000pt;}
.ls12{letter-spacing:-0.640000pt;}
.ls13{letter-spacing:-0.412267pt;}
.ls5{letter-spacing:-0.409067pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.297067pt;}
.ls8{letter-spacing:-0.194667pt;}
.ls4{letter-spacing:-0.183467pt;}
.ls14{letter-spacing:-0.097067pt;}
.ls11{letter-spacing:-0.094933pt;}
.ls9{letter-spacing:-0.046080pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.060800pt;}
.lsa{letter-spacing:0.087040pt;}
.ls15{letter-spacing:0.101120pt;}
.lsb{letter-spacing:0.158720pt;}
.lsc{letter-spacing:0.158933pt;}
.ls3{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.235733pt;}
.ls0{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.426667pt;}
.ls7{letter-spacing:5.711360pt;}
.ls10{letter-spacing:40.912640pt;}
.ws18{word-spacing:-50.560000pt;}
.ws13{word-spacing:-16.404224pt;}
.ws14{word-spacing:-16.368640pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-14.080000pt;}
.ws11{word-spacing:-14.033920pt;}
.ws8{word-spacing:-13.885333pt;}
.wsc{word-spacing:-13.782933pt;}
.ws5{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.wse{word-spacing:-13.185067pt;}
.ws6{word-spacing:-12.960000pt;}
.ws15{word-spacing:-12.640000pt;}
.wsd{word-spacing:-12.549333pt;}
.ws7{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.931200pt;}
.wsa{word-spacing:-8.870400pt;}
.ws1{word-spacing:-8.640000pt;}
.ws4{word-spacing:0.000000pt;}
.ws16{word-spacing:29.465600pt;}
.ws12{word-spacing:51.225600pt;}
.ws10{word-spacing:84.045227pt;}
.wsf{word-spacing:88.735573pt;}
.ws17{word-spacing:99.481173pt;}
._13{margin-left:-4.239360pt;}
._b{margin-left:-2.753280pt;}
._0{margin-left:-1.177600pt;}
._1{width:1.049600pt;}
._a{width:2.311680pt;}
._4{width:3.731200pt;}
._5{width:5.512107pt;}
._9{width:7.064960pt;}
._8{width:8.021120pt;}
._12{width:9.564373pt;}
._14{width:11.069440pt;}
._d{width:12.659200pt;}
._e{width:13.601280pt;}
._15{width:15.600640pt;}
._c{width:16.604160pt;}
._11{width:18.193920pt;}
._10{width:20.310187pt;}
._f{width:21.255680pt;}
._6{width:25.902080pt;}
._2{width:30.756480pt;}
._3{width:32.256640pt;}
._7{width:36.771840pt;}
._16{width:39.680000pt;}
._28{width:82.108160pt;}
._1a{width:94.080000pt;}
._24{width:103.868160pt;}
._25{width:112.309760pt;}
._26{width:115.572480pt;}
._27{width:118.845440pt;}
._20{width:130.021547pt;}
._21{width:134.069760pt;}
._22{width:137.332480pt;}
._23{width:140.605440pt;}
._1d{width:155.735467pt;}
._1e{width:157.005227pt;}
._1f{width:157.978453pt;}
._1c{width:174.336640pt;}
._18{width:177.066667pt;}
._17{width:178.080000pt;}
._19{width:841.412267pt;}
._1b{width:944.123307pt;}
.fs6{font-size:16.000000pt;}
.fs4{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fsa{font-size:40.320000pt;}
.fs3{font-size:42.880000pt;}
.fsc{font-size:50.560000pt;}
.fs5{font-size:53.120000pt;}
.fs9{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fsb{font-size:59.008000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:85.120000pt;}
.fs7{font-size:138.880000pt;}
.y0{bottom:0.000000pt;}
.y33{bottom:2.880000pt;}
.yc8{bottom:3.360000pt;}
.yf2{bottom:3.520000pt;}
.yeb{bottom:4.000000pt;}
.yed{bottom:4.160000pt;}
.ye9{bottom:4.640000pt;}
.yff{bottom:4.960000pt;}
.y150{bottom:5.440000pt;}
.yc6{bottom:11.680000pt;}
.y17a{bottom:11.773333pt;}
.y13{bottom:12.800000pt;}
.ye7{bottom:12.960000pt;}
.y127{bottom:14.146667pt;}
.yfb{bottom:14.720000pt;}
.y1a{bottom:18.880000pt;}
.y32{bottom:26.080000pt;}
.y178{bottom:32.666667pt;}
.y19{bottom:34.240000pt;}
.y125{bottom:36.026667pt;}
.y14e{bottom:37.573333pt;}
.y31{bottom:41.440000pt;}
.y18{bottom:49.440000pt;}
.y172{bottom:50.146667pt;}
.y149{bottom:55.040000pt;}
.y11e{bottom:55.133333pt;}
.y30{bottom:56.800000pt;}
.y17{bottom:64.826667pt;}
.y2f{bottom:72.160000pt;}
.y16{bottom:80.186667pt;}
.y11f{bottom:82.586667pt;}
.y173{bottom:84.160000pt;}
.y1b{bottom:84.826667pt;}
.y2e{bottom:87.520000pt;}
.y179{bottom:88.546667pt;}
.y14f{bottom:90.240000pt;}
.y15{bottom:93.466667pt;}
.y14a{bottom:95.520000pt;}
.y2d{bottom:102.920000pt;}
.y126{bottom:105.413333pt;}
.y120{bottom:110.080000pt;}
.y174{bottom:118.213333pt;}
.y2c{bottom:118.280000pt;}
.y2b{bottom:133.480000pt;}
.y14b{bottom:135.973333pt;}
.y121{bottom:137.573333pt;}
.y2a{bottom:148.840000pt;}
.y175{bottom:152.226667pt;}
.y147{bottom:156.986667pt;}
.y3a{bottom:157.000000pt;}
.y11c{bottom:162.426667pt;}
.yc3{bottom:164.186667pt;}
.y29{bottom:164.200000pt;}
.y122{bottom:165.053333pt;}
.y9b{bottom:165.466667pt;}
.y41{bottom:167.066667pt;}
.y39{bottom:172.200000pt;}
.y146{bottom:172.986667pt;}
.yf9{bottom:175.546667pt;}
.y14c{bottom:176.453333pt;}
.y1aa{bottom:177.946667pt;}
.y11b{bottom:178.586667pt;}
.y28{bottom:179.560000pt;}
.yc2{bottom:180.346667pt;}
.y9a{bottom:181.626667pt;}
.y40{bottom:183.866667pt;}
.y71{bottom:184.346667pt;}
.y170{bottom:184.986667pt;}
.y176{bottom:186.266667pt;}
.y152{bottom:186.586667pt;}
.y38{bottom:187.560000pt;}
.y145{bottom:189.146667pt;}
.yf8{bottom:191.546667pt;}
.y123{bottom:192.506667pt;}
.y11a{bottom:194.586667pt;}
.y27{bottom:194.920000pt;}
.yc1{bottom:196.346667pt;}
.y99{bottom:197.786667pt;}
.y16f{bottom:199.546667pt;}
.y3f{bottom:200.826667pt;}
.y37{bottom:202.920000pt;}
.y144{bottom:205.306667pt;}
.yf7{bottom:207.706667pt;}
.y151{bottom:208.000000pt;}
.y128{bottom:209.826667pt;}
.y26{bottom:210.120000pt;}
.y119{bottom:210.746667pt;}
.y1a9{bottom:211.066667pt;}
.yc0{bottom:212.506667pt;}
.y98{bottom:213.786667pt;}
.y16e{bottom:214.106667pt;}
.y70{bottom:216.506667pt;}
.y14d{bottom:216.933333pt;}
.y3e{bottom:217.626667pt;}
.y36{bottom:218.280000pt;}
.y124{bottom:220.000000pt;}
.y177{bottom:220.320000pt;}
.y143{bottom:221.306667pt;}
.yf6{bottom:223.706667pt;}
.y25{bottom:225.480000pt;}
.y1a8{bottom:225.626667pt;}
.y17b{bottom:225.666667pt;}
.ybf{bottom:228.666667pt;}
.y97{bottom:229.946667pt;}
.y6f{bottom:232.506667pt;}
.y16d{bottom:232.666667pt;}
.y35{bottom:233.640000pt;}
.y142{bottom:237.466667pt;}
.y3b{bottom:238.120000pt;}
.yf5{bottom:239.866667pt;}
.y24{bottom:240.840000pt;}
.y3d{bottom:242.266667pt;}
.y118{bottom:242.586667pt;}
.y1a7{bottom:244.186667pt;}
.y96{bottom:245.946667pt;}
.y34{bottom:246.920000pt;}
.y16c{bottom:247.226667pt;}
.y6e{bottom:248.666667pt;}
.y141{bottom:253.466667pt;}
.y117{bottom:255.066667pt;}
.y11d{bottom:255.360000pt;}
.yf4{bottom:256.026667pt;}
.y23{bottom:256.200000pt;}
.y1a6{bottom:258.746667pt;}
.y3c{bottom:258.906667pt;}
.ybe{bottom:260.666667pt;}
.y6d{bottom:264.666667pt;}
.y16b{bottom:265.786667pt;}
.y140{bottom:269.626667pt;}
.y22{bottom:271.560000pt;}
.yf3{bottom:272.026667pt;}
.y1c{bottom:273.466667pt;}
.y1a5{bottom:277.306667pt;}
.y95{bottom:278.106667pt;}
.y16a{bottom:280.346667pt;}
.y13f{bottom:285.786667pt;}
.y21{bottom:286.920000pt;}
.y1a4{bottom:291.866667pt;}
.ybd{bottom:292.826667pt;}
.y6c{bottom:296.826667pt;}
.y169{bottom:298.906667pt;}
.yf1{bottom:301.786667pt;}
.y20{bottom:302.120000pt;}
.ybc{bottom:308.986667pt;}
.y94{bottom:309.626667pt;}
.y1a3{bottom:310.426667pt;}
.y6b{bottom:312.986667pt;}
.y168{bottom:313.466667pt;}
.y93{bottom:316.666667pt;}
.y1f{bottom:317.506667pt;}
.y13e{bottom:317.946667pt;}
.yf0{bottom:318.426667pt;}
.ybb{bottom:324.986667pt;}
.y6a{bottom:328.986667pt;}
.y1e{bottom:332.866667pt;}
.yef{bottom:336.186667pt;}
.y92{bottom:336.346667pt;}
.yba{bottom:341.146667pt;}
.y1a2{bottom:343.546667pt;}
.y167{bottom:344.506667pt;}
.y69{bottom:345.146667pt;}
.y1d{bottom:346.146667pt;}
.y13d{bottom:349.946667pt;}
.y91{bottom:352.506667pt;}
.yee{bottom:353.786667pt;}
.yb9{bottom:357.146667pt;}
.y1a1{bottom:358.106667pt;}
.y13c{bottom:366.146667pt;}
.y166{bottom:369.346667pt;}
.yec{bottom:371.426667pt;}
.yb8{bottom:373.346667pt;}
.y1a0{bottom:376.706667pt;}
.y68{bottom:377.346667pt;}
.y13b{bottom:382.306667pt;}
.y90{bottom:384.706667pt;}
.yea{bottom:389.186667pt;}
.yb7{bottom:389.506667pt;}
.y19f{bottom:391.266667pt;}
.y165{bottom:394.306667pt;}
.y13a{bottom:398.306667pt;}
.yb6{bottom:405.506667pt;}
.y19e{bottom:405.826667pt;}
.ye6{bottom:407.426667pt;}
.y67{bottom:409.506667pt;}
.y139{bottom:414.466667pt;}
.y8f{bottom:416.706667pt;}
.y164{bottom:418.946667pt;}
.y19d{bottom:424.386667pt;}
.ye8{bottom:427.586667pt;}
.y138{bottom:430.626667pt;}
.y8e{bottom:432.866667pt;}
.y163{bottom:435.106667pt;}
.yb5{bottom:437.666667pt;}
.y19c{bottom:438.946667pt;}
.y66{bottom:442.306667pt;}
.y137{bottom:446.626667pt;}
.ye5{bottom:447.106667pt;}
.y8d{bottom:448.866667pt;}
.y162{bottom:451.266667pt;}
.y19b{bottom:453.506667pt;}
.y65{bottom:459.266667pt;}
.y136{bottom:462.786667pt;}
.y161{bottom:467.426667pt;}
.yb4{bottom:472.066667pt;}
.y64{bottom:476.226667pt;}
.ye4{bottom:478.626667pt;}
.y135{bottom:478.786667pt;}
.y8c{bottom:481.026667pt;}
.y160{bottom:483.426667pt;}
.y19a{bottom:486.626667pt;}
.yb3{bottom:488.226667pt;}
.y63{bottom:493.026667pt;}
.ye3{bottom:494.626667pt;}
.y15f{bottom:499.586667pt;}
.y199{bottom:505.186667pt;}
.y62{bottom:509.986667pt;}
.y8b{bottom:510.786667pt;}
.y116{bottom:514.146667pt;}
.y15e{bottom:515.586667pt;}
.y198{bottom:519.746667pt;}
.yb2{bottom:520.706667pt;}
.y134{bottom:523.266667pt;}
.y148{bottom:523.360000pt;}
.y14{bottom:526.146667pt;}
.y61{bottom:526.786667pt;}
.ye2{bottom:526.946667pt;}
.y115{bottom:530.306667pt;}
.y15d{bottom:531.746667pt;}
.yb1{bottom:536.706667pt;}
.y197{bottom:538.306667pt;}
.y8a{bottom:541.346667pt;}
.ye1{bottom:542.946667pt;}
.y60{bottom:543.586667pt;}
.y114{bottom:546.306667pt;}
.y15c{bottom:547.906667pt;}
.yb0{bottom:552.866667pt;}
.y89{bottom:556.706667pt;}
.ye0{bottom:559.106667pt;}
.y5f{bottom:560.546667pt;}
.y113{bottom:562.466667pt;}
.y15b{bottom:563.906667pt;}
.yaf{bottom:569.026667pt;}
.y196{bottom:571.586667pt;}
.y88{bottom:572.066667pt;}
.ydf{bottom:575.266667pt;}
.y5e{bottom:577.346667pt;}
.y112{bottom:578.626667pt;}
.y15a{bottom:580.066667pt;}
.y195{bottom:586.173333pt;}
.y87{bottom:587.453333pt;}
.yde{bottom:591.293333pt;}
.y111{bottom:594.653333pt;}
.y159{bottom:596.093333pt;}
.y5d{bottom:598.173333pt;}
.yae{bottom:601.053333pt;}
.y86{bottom:603.453333pt;}
.y194{bottom:604.733333pt;}
.ydd{bottom:607.453333pt;}
.y110{bottom:610.813333pt;}
.y5c{bottom:615.133333pt;}
.y193{bottom:619.293333pt;}
.y85{bottom:622.333333pt;}
.y158{bottom:622.813333pt;}
.ydc{bottom:623.453333pt;}
.y12{bottom:625.373333pt;}
.y10f{bottom:626.973333pt;}
.y5b{bottom:631.933333pt;}
.yad{bottom:633.213333pt;}
.y192{bottom:637.853333pt;}
.y157{bottom:639.453333pt;}
.ydb{bottom:639.613333pt;}
.y10e{bottom:642.973333pt;}
.y5a{bottom:648.893333pt;}
.yac{bottom:649.213333pt;}
.y156{bottom:651.933333pt;}
.y171{bottom:652.160000pt;}
.y191{bottom:652.413333pt;}
.y84{bottom:653.853333pt;}
.yda{bottom:655.773333pt;}
.y10d{bottom:659.133333pt;}
.y11{bottom:664.893333pt;}
.y59{bottom:665.693333pt;}
.y190{bottom:666.973333pt;}
.y83{bottom:669.853333pt;}
.yd9{bottom:671.773333pt;}
.y10c{bottom:675.133333pt;}
.y10{bottom:680.253333pt;}
.yab{bottom:680.573333pt;}
.y58{bottom:682.653333pt;}
.y18f{bottom:685.533333pt;}
.y82{bottom:686.013333pt;}
.yaa{bottom:687.613333pt;}
.y10b{bottom:691.293333pt;}
.yf{bottom:695.613333pt;}
.y57{bottom:699.453333pt;}
.y18e{bottom:700.093333pt;}
.y81{bottom:702.173333pt;}
.yd8{bottom:703.933333pt;}
.ye{bottom:710.813333pt;}
.y56{bottom:716.413333pt;}
.y80{bottom:718.173333pt;}
.y18d{bottom:718.653333pt;}
.yd7{bottom:719.933333pt;}
.y10a{bottom:723.453333pt;}
.ya9{bottom:723.933333pt;}
.yd{bottom:726.173333pt;}
.y55{bottom:733.213333pt;}
.y7f{bottom:734.333333pt;}
.yd6{bottom:736.093333pt;}
.y109{bottom:739.453333pt;}
.ya8{bottom:740.093333pt;}
.yc{bottom:746.173333pt;}
.y54{bottom:750.013333pt;}
.y7e{bottom:750.333333pt;}
.y18c{bottom:751.773333pt;}
.yd5{bottom:752.253333pt;}
.y108{bottom:755.613333pt;}
.ya7{bottom:756.093333pt;}
.yb{bottom:756.893333pt;}
.y18b{bottom:766.333333pt;}
.y7d{bottom:766.493333pt;}
.y53{bottom:766.973333pt;}
.yd4{bottom:768.253333pt;}
.y107{bottom:771.613333pt;}
.ya6{bottom:772.253333pt;}
.ya{bottom:776.893333pt;}
.y133{bottom:782.333333pt;}
.y7c{bottom:782.653333pt;}
.y52{bottom:783.773333pt;}
.yd3{bottom:784.413333pt;}
.y18a{bottom:784.893333pt;}
.y106{bottom:787.773333pt;}
.y9{bottom:787.933333pt;}
.ya5{bottom:788.413333pt;}
.y132{bottom:798.333333pt;}
.y189{bottom:799.453333pt;}
.yd2{bottom:800.613333pt;}
.y51{bottom:800.773333pt;}
.y105{bottom:803.973333pt;}
.y8{bottom:805.093333pt;}
.y188{bottom:814.053333pt;}
.y131{bottom:814.533333pt;}
.y7b{bottom:814.693333pt;}
.yd1{bottom:816.613333pt;}
.y50{bottom:817.573333pt;}
.y104{bottom:819.973333pt;}
.ya4{bottom:820.453333pt;}
.y130{bottom:830.693333pt;}
.y187{bottom:832.613333pt;}
.yd0{bottom:832.773333pt;}
.y4f{bottom:834.373333pt;}
.y7{bottom:839.493333pt;}
.y12f{bottom:846.693333pt;}
.y7a{bottom:846.853333pt;}
.y186{bottom:847.173333pt;}
.ycf{bottom:848.773333pt;}
.y103{bottom:849.733333pt;}
.y4e{bottom:851.333333pt;}
.ya3{bottom:852.613333pt;}
.y6{bottom:857.893333pt;}
.y185{bottom:861.733333pt;}
.y12e{bottom:862.853333pt;}
.y79{bottom:863.013333pt;}
.y4d{bottom:868.133333pt;}
.ya2{bottom:868.613333pt;}
.y102{bottom:869.253333pt;}
.yce{bottom:878.533333pt;}
.y78{bottom:879.013333pt;}
.y184{bottom:880.293333pt;}
.ya1{bottom:884.773333pt;}
.y4c{bottom:885.093333pt;}
.y101{bottom:888.133333pt;}
.y5{bottom:892.293333pt;}
.ycd{bottom:893.893333pt;}
.y183{bottom:894.853333pt;}
.y12d{bottom:895.013333pt;}
.y77{bottom:895.173333pt;}
.y4b{bottom:905.733333pt;}
.y100{bottom:907.013333pt;}
.ycc{bottom:909.253333pt;}
.y155{bottom:911.013333pt;}
.y76{bottom:911.173333pt;}
.y182{bottom:913.413333pt;}
.ya0{bottom:916.933333pt;}
.y4a{bottom:922.693333pt;}
.y4{bottom:923.173333pt;}
.ycb{bottom:924.613333pt;}
.yfe{bottom:925.893333pt;}
.y12c{bottom:927.173333pt;}
.y75{bottom:927.333333pt;}
.y181{bottom:927.973333pt;}
.y1ac{bottom:939.493333pt;}
.y49{bottom:939.653333pt;}
.yca{bottom:939.813333pt;}
.y180{bottom:942.533333pt;}
.y154{bottom:943.173333pt;}
.y12b{bottom:943.333333pt;}
.y74{bottom:943.493333pt;}
.yfd{bottom:945.413333pt;}
.y9f{bottom:948.933333pt;}
.yc9{bottom:955.173333pt;}
.y48{bottom:956.453333pt;}
.y153{bottom:959.333333pt;}
.y12a{bottom:959.493333pt;}
.y17f{bottom:961.093333pt;}
.yfa{bottom:964.933333pt;}
.y9e{bottom:965.093333pt;}
.yc5{bottom:971.173333pt;}
.y47{bottom:973.413333pt;}
.y73{bottom:975.493333pt;}
.y1ab{bottom:975.653333pt;}
.y17e{bottom:979.653333pt;}
.yfc{bottom:985.093333pt;}
.yc7{bottom:988.613333pt;}
.y46{bottom:990.213333pt;}
.y129{bottom:991.493333pt;}
.y17d{bottom:994.213333pt;}
.y9d{bottom:996.293333pt;}
.y9c{bottom:1003.333333pt;}
.y45{bottom:1007.013333pt;}
.y72{bottom:1007.653333pt;}
.yc4{bottom:1008.293333pt;}
.y17c{bottom:1008.773333pt;}
.y3{bottom:1038.400000pt;}
.y44{bottom:1039.520000pt;}
.y43{bottom:1054.880000pt;}
.y2{bottom:1055.360000pt;}
.y42{bottom:1070.880000pt;}
.y1{bottom:1072.160000pt;}
.h16{height:15.200000pt;}
.h14{height:15.360000pt;}
.h15{height:15.392000pt;}
.hb{height:15.695312pt;}
.h1a{height:16.160000pt;}
.h21{height:16.640000pt;}
.h1e{height:17.600000pt;}
.h20{height:17.632000pt;}
.h1f{height:17.760000pt;}
.h1d{height:18.880000pt;}
.h23{height:19.520000pt;}
.h19{height:32.800000pt;}
.h6{height:33.918750pt;}
.h1c{height:35.520000pt;}
.h9{height:36.000000pt;}
.h22{height:39.040000pt;}
.h29{height:49.621875pt;}
.hc{height:52.108438pt;}
.h7{height:52.134375pt;}
.he{height:52.461875pt;}
.h8{height:53.535000pt;}
.h13{height:55.275000pt;}
.h1b{height:55.402500pt;}
.h12{height:56.760000pt;}
.h2{height:57.787500pt;}
.h26{height:58.563750pt;}
.h25{height:58.691063pt;}
.h5{height:59.340000pt;}
.h27{height:61.410000pt;}
.h28{height:61.543500pt;}
.h10{height:62.812500pt;}
.h4{height:64.500000pt;}
.h17{height:67.260625pt;}
.h18{height:83.435000pt;}
.h3{height:85.785000pt;}
.ha{height:97.312000pt;}
.h11{height:136.303125pt;}
.h24{height:240.000000pt;}
.hf{height:250.586667pt;}
.hd{height:349.986667pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w4{width:15.680000pt;}
.wd{width:39.840000pt;}
.w12{width:52.800000pt;}
.w8{width:55.680000pt;}
.wb{width:83.200000pt;}
.w16{width:100.832000pt;}
.w15{width:103.840000pt;}
.w10{width:108.352000pt;}
.w11{width:130.912000pt;}
.w7{width:132.512000pt;}
.wc{width:138.106667pt;}
.w6{width:167.546667pt;}
.w14{width:204.666667pt;}
.w9{width:209.186667pt;}
.w3{width:211.546667pt;}
.wa{width:221.306667pt;}
.we{width:235.866667pt;}
.wf{width:239.266667pt;}
.w13{width:239.426667pt;}
.w5{width:361.666667pt;}
.w17{width:451.200000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:7.200000pt;}
.x27{left:9.440000pt;}
.x2d{left:13.280000pt;}
.x36{left:16.000000pt;}
.x16{left:17.280000pt;}
.x1d{left:18.720000pt;}
.x18{left:22.560000pt;}
.x23{left:27.040000pt;}
.x39{left:28.160000pt;}
.x1f{left:29.920000pt;}
.x29{left:34.720000pt;}
.x24{left:35.680000pt;}
.x47{left:38.146667pt;}
.x2f{left:39.226667pt;}
.x33{left:40.320000pt;}
.x3f{left:42.080000pt;}
.x2c{left:44.960000pt;}
.x43{left:46.146667pt;}
.x1c{left:48.480000pt;}
.x30{left:50.400000pt;}
.x1e{left:53.160000pt;}
.x20{left:57.280000pt;}
.x21{left:61.640000pt;}
.x22{left:65.320000pt;}
.x2e{left:66.400000pt;}
.x3b{left:68.200000pt;}
.x32{left:70.120000pt;}
.x3d{left:71.880000pt;}
.x31{left:74.920000pt;}
.x3c{left:76.680000pt;}
.x1a{left:78.240000pt;}
.x3e{left:80.360000pt;}
.x4c{left:84.031988pt;}
.x2a{left:87.226667pt;}
.x5{left:96.031988pt;}
.x4a{left:105.853333pt;}
.x6{left:109.152000pt;}
.x2{left:116.671988pt;}
.x26{left:139.546667pt;}
.x35{left:148.666667pt;}
.x11{left:153.626655pt;}
.xc{left:160.186655pt;}
.x44{left:161.373333pt;}
.xa{left:164.666667pt;}
.x4b{left:165.573333pt;}
.x42{left:170.880000pt;}
.x12{left:176.666655pt;}
.x28{left:179.386667pt;}
.x14{left:188.026655pt;}
.x37{left:201.466667pt;}
.xe{left:204.826655pt;}
.x17{left:209.626667pt;}
.x13{left:214.746655pt;}
.x41{left:230.266655pt;}
.x34{left:234.426655pt;}
.x46{left:236.666655pt;}
.xf{left:247.066667pt;}
.x25{left:253.666655pt;}
.x49{left:259.746655pt;}
.x45{left:276.093333pt;}
.x3{left:279.426655pt;}
.x15{left:290.946655pt;}
.x8{left:320.706667pt;}
.xd{left:333.666655pt;}
.x9{left:336.386667pt;}
.x48{left:357.506667pt;}
.x10{left:414.626667pt;}
.x19{left:418.813333pt;}
.x38{left:440.893333pt;}
.x1b{left:502.013333pt;}
.x2b{left:523.613333pt;}
.x3a{left:544.733333pt;}
.x40{left:623.013322pt;}
.xb{left:674.053322pt;}
.x1{left:675.973322pt;}
.x4{left:694.533322pt;}
}




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