
    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_94f01eb1dc998daf6553c31e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8ec45e05b1bbe68b24d229cf.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_716d4c3771dfed49f2abfafb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_8c8007bc119129ba30fcd85b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_f8df7ac848440b586e7da2c7.woff')format("woff");}.ff5{font-family:ff5;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fbab2284d412aa3394367ba4.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a3cdd2a999a6ab82dd186917.woff')format("woff");}.ff8{font-family:ff8;line-height:0.740723;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_f974570fcb0d5a5f449f871c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.962402;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;}
.m2{transform:matrix(0.216168,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.216168,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.216168,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249644,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249644,0.000000,0.000000,0.250000,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);}
.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls9{letter-spacing:-1.780813px;}
.ls3{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.298800px;}
.ls7{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.391680px;}
.ls8{letter-spacing:1.850966px;}
.lsb{letter-spacing:6.660000px;}
.lse{letter-spacing:46.026720px;}
.ls6{letter-spacing:64.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;}
}
.ws7{word-spacing:-66.240000px;}
.ws8{word-spacing:-59.760000px;}
.wsd{word-spacing:-18.039906px;}
.wsc{word-spacing:-18.002401px;}
.ws0{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.840000px;}
.wse{word-spacing:-15.300000px;}
.ws4{word-spacing:-15.199800px;}
.wsb{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.940000px;}
.ws5{word-spacing:-14.886720px;}
.ws2{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.731525px;}
.ws6{word-spacing:0.000000px;}
.wsa{word-spacing:209.853032px;}
._1{margin-left:-1916.438400px;}
._3{margin-left:-1588.608000px;}
._4{margin-left:-1171.543680px;}
._5{margin-left:-1111.639680px;}
._21{margin-left:-3.848400px;}
._12{margin-left:-2.540880px;}
._2{margin-left:-1.126080px;}
._0{width:1.166400px;}
._6{width:2.528880px;}
._9{width:3.693120px;}
._a{width:4.954800px;}
._8{width:6.122640px;}
._7{width:7.311120px;}
._1d{width:8.485920px;}
._1e{width:10.159200px;}
._b{width:11.175120px;}
._11{width:13.147200px;}
._d{width:16.582320px;}
._28{width:17.813520px;}
._17{width:18.862560px;}
._1a{width:20.953920px;}
._10{width:22.051440px;}
._f{width:23.664960px;}
._e{width:25.307280px;}
._26{width:26.533440px;}
._20{width:28.505520px;}
._1f{width:29.581200px;}
._29{width:31.237200px;}
._2c{width:32.896800px;}
._34{width:33.992640px;}
._2f{width:35.009280px;}
._15{width:36.422640px;}
._16{width:37.469520px;}
._1c{width:38.636160px;}
._1b{width:39.880080px;}
._32{width:41.212080px;}
._24{width:43.184160px;}
._23{width:44.961840px;}
._13{width:46.820880px;}
._14{width:47.927520px;}
._2b{width:51.292800px;}
._39{width:54.979200px;}
._37{width:56.203200px;}
._25{width:58.045680px;}
._19{width:60.527520px;}
._18{width:61.552800px;}
._36{width:63.691680px;}
._35{width:65.078640px;}
._38{width:66.960000px;}
._2d{width:68.454000px;}
._2e{width:69.500880px;}
._31{width:70.904160px;}
._27{width:73.203120px;}
._30{width:80.373600px;}
._2a{width:81.684000px;}
._c{width:126.504000px;}
._3a{width:135.803520px;}
._22{width:171.324000px;}
._33{width:200.649360px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,78,154);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:35.005486px;}
.fs4{font-size:38.880000px;}
.fs7{font-size:40.837984px;}
.fs2{font-size:41.760000px;}
.fsb{font-size:48.567628px;}
.fsa{font-size:48.702538px;}
.fs5{font-size:59.760000px;}
.fs8{font-size:64.756838px;}
.fs9{font-size:64.891748px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:77.760000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:6.300000px;}
.y8{bottom:12.240000px;}
.y9f{bottom:14.281500px;}
.y6a{bottom:48.990657px;}
.y9{bottom:58.320000px;}
.y69{bottom:61.242332px;}
.y79{bottom:65.509999px;}
.y68{bottom:73.495466px;}
.y6{bottom:73.980000px;}
.y78{bottom:76.011435px;}
.yac{bottom:91.686158px;}
.y77{bottom:97.014307px;}
.y89{bottom:102.960000px;}
.y178{bottom:108.180000px;}
.y103{bottom:110.880000px;}
.y164{bottom:111.060000px;}
.yab{bottom:111.113209px;}
.y36{bottom:112.320000px;}
.y97{bottom:114.120000px;}
.y88{bottom:122.760000px;}
.y177{bottom:127.980000px;}
.y143{bottom:129.060000px;}
.y102{bottom:130.680000px;}
.y163{bottom:130.860000px;}
.y8d{bottom:131.760000px;}
.y35{bottom:132.300000px;}
.y96{bottom:133.920000px;}
.yd0{bottom:135.720000px;}
.y87{bottom:142.560000px;}
.y176{bottom:147.960000px;}
.y142{bottom:148.860000px;}
.y101{bottom:150.480000px;}
.y162{bottom:150.660000px;}
.y8c{bottom:151.560000px;}
.y34{bottom:152.130000px;}
.y95{bottom:153.750000px;}
.ycf{bottom:156.630000px;}
.yae{bottom:161.771944px;}
.y86{bottom:162.390000px;}
.y76{bottom:167.133269px;}
.y175{bottom:167.790000px;}
.y141{bottom:168.690000px;}
.y100{bottom:170.310000px;}
.y161{bottom:170.490000px;}
.y8b{bottom:171.390000px;}
.y33{bottom:171.930000px;}
.y94{bottom:173.730000px;}
.yce{bottom:176.430000px;}
.y11d{bottom:177.510000px;}
.y75{bottom:177.634705px;}
.y85{bottom:182.190000px;}
.y174{bottom:187.590000px;}
.y140{bottom:188.490000px;}
.yff{bottom:190.110000px;}
.y160{bottom:190.470000px;}
.y8a{bottom:191.190000px;}
.y32{bottom:191.730000px;}
.y93{bottom:193.530000px;}
.ycd{bottom:196.230000px;}
.y11c{bottom:197.490000px;}
.yaa{bottom:200.558591px;}
.y74{bottom:206.229240px;}
.y173{bottom:207.390000px;}
.y13f{bottom:208.470000px;}
.yfe{bottom:210.090000px;}
.y15f{bottom:210.270000px;}
.y84{bottom:211.170000px;}
.y31{bottom:211.530000px;}
.y92{bottom:213.330000px;}
.ya9{bottom:215.668520px;}
.ycc{bottom:217.110000px;}
.y11b{bottom:217.290000px;}
.y62{bottom:221.602175px;}
.y172{bottom:227.190000px;}
.y13e{bottom:228.270000px;}
.y15e{bottom:230.070000px;}
.ya8{bottom:230.818922px;}
.y83{bottom:230.970000px;}
.y30{bottom:231.510000px;}
.y61{bottom:232.103611px;}
.y91{bottom:233.130000px;}
.y67{bottom:235.290505px;}
.y11a{bottom:237.090000px;}
.ycb{bottom:237.990000px;}
.yad{bottom:238.333413px;}
.y171{bottom:246.990000px;}
.y13d{bottom:248.070000px;}
.y90{bottom:249.870000px;}
.y98{bottom:250.415917px;}
.y82{bottom:250.770000px;}
.y2f{bottom:251.310000px;}
.y66{bottom:256.293377px;}
.y119{bottom:256.890000px;}
.yca{bottom:257.970000px;}
.y65{bottom:266.794813px;}
.y170{bottom:266.970000px;}
.y13c{bottom:267.870000px;}
.y15d{bottom:269.670000px;}
.y81{bottom:270.570000px;}
.y2e{bottom:271.110000px;}
.yfd{bottom:271.650000px;}
.y6e{bottom:276.165886px;}
.y118{bottom:276.690000px;}
.yc9{bottom:277.770000px;}
.y6d{bottom:286.667322px;}
.y16f{bottom:286.770000px;}
.y13b{bottom:287.670000px;}
.y15c{bottom:289.650000px;}
.y80{bottom:290.370000px;}
.y2d{bottom:290.910000px;}
.yfc{bottom:291.450000px;}
.y117{bottom:293.250000px;}
.yc8{bottom:297.570000px;}
.y16e{bottom:306.570000px;}
.y7f{bottom:306.930000px;}
.y60{bottom:306.990000px;}
.y73{bottom:307.108659px;}
.y13a{bottom:307.650000px;}
.y15b{bottom:309.450000px;}
.y2c{bottom:310.710000px;}
.yfb{bottom:311.430000px;}
.yc7{bottom:317.370000px;}
.y72{bottom:317.610095px;}
.y7b{bottom:321.139744px;}
.y16d{bottom:326.370000px;}
.y139{bottom:327.450000px;}
.y15a{bottom:329.250000px;}
.y2b{bottom:330.690000px;}
.yfa{bottom:331.230000px;}
.y7d{bottom:331.385937px;}
.y7a{bottom:331.641180px;}
.ya7{bottom:336.318603px;}
.yc6{bottom:337.170000px;}
.y64{bottom:341.807153px;}
.y16c{bottom:346.170000px;}
.y138{bottom:347.250000px;}
.y159{bottom:349.050000px;}
.y2a{bottom:350.490000px;}
.yf9{bottom:351.030000px;}
.y63{bottom:352.308589px;}
.yc5{bottom:357.150000px;}
.y71{bottom:363.356975px;}
.y16b{bottom:366.150000px;}
.y137{bottom:367.050000px;}
.y29{bottom:370.290000px;}
.yf8{bottom:370.830000px;}
.y70{bottom:372.640536px;}
.y6c{bottom:373.858411px;}
.yc4{bottom:376.950000px;}
.y158{bottom:377.850000px;}
.y6f{bottom:383.141972px;}
.y7c{bottom:384.192115px;}
.y6b{bottom:384.359847px;}
.y16a{bottom:385.950000px;}
.y136{bottom:386.850000px;}
.y28{bottom:390.090000px;}
.yf7{bottom:390.630000px;}
.y7e{bottom:394.693551px;}
.yc3{bottom:396.750000px;}
.y157{bottom:397.830000px;}
.y169{bottom:405.795000px;}
.y135{bottom:406.875000px;}
.y27{bottom:409.935000px;}
.yf6{bottom:410.655000px;}
.yc2{bottom:416.595000px;}
.y156{bottom:417.675000px;}
.ya6{bottom:421.338935px;}
.y168{bottom:425.595000px;}
.y134{bottom:426.675000px;}
.y26{bottom:429.915000px;}
.yf5{bottom:431.535000px;}
.yc1{bottom:436.395000px;}
.y155{bottom:437.475000px;}
.ya5{bottom:440.806459px;}
.y167{bottom:445.395000px;}
.y133{bottom:446.475000px;}
.y25{bottom:449.715000px;}
.yf4{bottom:451.335000px;}
.yc0{bottom:456.375000px;}
.y154{bottom:457.275000px;}
.y166{bottom:465.375000px;}
.y132{bottom:466.275000px;}
.y24{bottom:469.515000px;}
.yf3{bottom:471.135000px;}
.ybf{bottom:476.175000px;}
.y153{bottom:477.075000px;}
.y165{bottom:485.175000px;}
.y8f{bottom:488.955000px;}
.y23{bottom:489.315000px;}
.yf2{bottom:492.015000px;}
.y131{bottom:495.075000px;}
.y152{bottom:497.055000px;}
.ybe{bottom:504.975000px;}
.y8e{bottom:505.515000px;}
.y22{bottom:509.115000px;}
.yf1{bottom:511.995000px;}
.y130{bottom:515.055000px;}
.y9d{bottom:515.141913px;}
.y151{bottom:516.855000px;}
.y116{bottom:517.755000px;}
.y112{bottom:519.915000px;}
.ybd{bottom:524.775000px;}
.y21{bottom:529.095000px;}
.yf0{bottom:531.795000px;}
.y9c{bottom:534.595946px;}
.y12f{bottom:534.855000px;}
.y150{bottom:536.655000px;}
.y115{bottom:537.555000px;}
.y111{bottom:539.715000px;}
.ybc{bottom:544.575000px;}
.y20{bottom:548.895000px;}
.yef{bottom:551.595000px;}
.y12e{bottom:554.655000px;}
.y14f{bottom:556.455000px;}
.y114{bottom:558.615000px;}
.y110{bottom:559.515000px;}
.ybb{bottom:564.555000px;}
.y1f{bottom:568.695000px;}
.yee{bottom:572.475000px;}
.y12d{bottom:574.455000px;}
.y14e{bottom:576.255000px;}
.y113{bottom:578.415000px;}
.y10f{bottom:579.495000px;}
.yba{bottom:584.355000px;}
.y1e{bottom:588.495000px;}
.yed{bottom:592.275000px;}
.y12c{bottom:594.255000px;}
.y14d{bottom:596.235000px;}
.y10e{bottom:599.295000px;}
.yb9{bottom:604.155000px;}
.y1d{bottom:608.295000px;}
.yec{bottom:612.075000px;}
.y9b{bottom:612.951720px;}
.y12b{bottom:614.235000px;}
.y14c{bottom:616.035000px;}
.y10d{bottom:619.095000px;}
.yb8{bottom:623.955000px;}
.y1c{bottom:628.275000px;}
.yeb{bottom:632.055000px;}
.y12a{bottom:634.035000px;}
.y14b{bottom:635.835000px;}
.y10c{bottom:638.895000px;}
.yb7{bottom:643.755000px;}
.y1b{bottom:648.075000px;}
.yea{bottom:651.885000px;}
.y129{bottom:653.865000px;}
.y14a{bottom:655.665000px;}
.y10b{bottom:658.725000px;}
.yb6{bottom:663.765000px;}
.y1a{bottom:667.905000px;}
.ya1{bottom:668.871948px;}
.ye9{bottom:671.685000px;}
.y128{bottom:673.665000px;}
.y149{bottom:675.465000px;}
.y10a{bottom:678.705000px;}
.yb5{bottom:683.565000px;}
.y19{bottom:687.705000px;}
.ya4{bottom:689.850465px;}
.ye8{bottom:691.485000px;}
.y127{bottom:693.465000px;}
.y109{bottom:695.265000px;}
.y148{bottom:695.445000px;}
.yb4{bottom:703.365000px;}
.y18{bottom:707.505000px;}
.ya3{bottom:709.304498px;}
.ye7{bottom:711.285000px;}
.y126{bottom:713.445000px;}
.y147{bottom:715.245000px;}
.y5f{bottom:722.085000px;}
.yb3{bottom:723.165000px;}
.ya0{bottom:728.569657px;}
.ya2{bottom:728.772023px;}
.y17{bottom:729.645000px;}
.ye6{bottom:731.265000px;}
.y125{bottom:733.245000px;}
.y146{bottom:735.045000px;}
.y4d{bottom:741.885000px;}
.yb2{bottom:742.965000px;}
.y16{bottom:749.445000px;}
.ye5{bottom:751.065000px;}
.y124{bottom:753.045000px;}
.y145{bottom:754.845000px;}
.y4c{bottom:761.865000px;}
.yb1{bottom:762.945000px;}
.y15{bottom:769.245000px;}
.ye4{bottom:770.865000px;}
.y123{bottom:772.845000px;}
.y144{bottom:774.645000px;}
.y5e{bottom:776.265000px;}
.y4b{bottom:781.665000px;}
.yb0{bottom:782.745000px;}
.y14{bottom:789.225000px;}
.ye3{bottom:790.665000px;}
.y122{bottom:792.645000px;}
.y5d{bottom:796.065000px;}
.y4a{bottom:801.465000px;}
.yaf{bottom:802.545000px;}
.y13{bottom:809.025000px;}
.ye2{bottom:810.465000px;}
.y121{bottom:812.625000px;}
.y9a{bottom:813.765372px;}
.y5c{bottom:816.945000px;}
.y49{bottom:822.345000px;}
.y12{bottom:828.825000px;}
.ye1{bottom:830.445000px;}
.y120{bottom:832.425000px;}
.y99{bottom:833.219406px;}
.y5b{bottom:838.005000px;}
.y48{bottom:842.145000px;}
.y11{bottom:848.625000px;}
.ye0{bottom:850.245000px;}
.y11f{bottom:852.225000px;}
.y5a{bottom:857.805000px;}
.y47{bottom:862.125000px;}
.y10{bottom:868.425000px;}
.y11e{bottom:868.785000px;}
.ydf{bottom:870.045000px;}
.y59{bottom:877.605000px;}
.y46{bottom:881.925000px;}
.yf{bottom:888.225000px;}
.yde{bottom:890.925000px;}
.y58{bottom:897.405000px;}
.y9e{bottom:897.679441px;}
.y45{bottom:901.770000px;}
.ye{bottom:910.410000px;}
.ydd{bottom:910.770000px;}
.y57{bottom:917.250000px;}
.y44{bottom:921.570000px;}
.ydc{bottom:931.830000px;}
.yd{bottom:935.610000px;}
.y56{bottom:938.310000px;}
.y43{bottom:941.370000px;}
.yc{bottom:950.730000px;}
.ydb{bottom:952.710000px;}
.y55{bottom:958.110000px;}
.y42{bottom:961.350000px;}
.y108{bottom:972.150000px;}
.yda{bottom:973.590000px;}
.y54{bottom:977.910000px;}
.y41{bottom:981.150000px;}
.y107{bottom:991.950000px;}
.yb{bottom:993.570000px;}
.yd9{bottom:994.470000px;}
.y53{bottom:998.790000px;}
.y40{bottom:1000.950000px;}
.y106{bottom:1011.750000px;}
.yd8{bottom:1015.350000px;}
.y52{bottom:1018.590000px;}
.y3f{bottom:1020.750000px;}
.ya{bottom:1025.250000px;}
.y105{bottom:1031.550000px;}
.yd7{bottom:1036.410000px;}
.y51{bottom:1038.390000px;}
.y3e{bottom:1040.550000px;}
.y104{bottom:1051.530000px;}
.y5{bottom:1054.050000px;}
.yd6{bottom:1056.210000px;}
.y50{bottom:1059.450000px;}
.y3d{bottom:1060.530000px;}
.yd5{bottom:1077.090000px;}
.y4f{bottom:1079.250000px;}
.y3c{bottom:1080.330000px;}
.y4{bottom:1087.890000px;}
.yd4{bottom:1096.890000px;}
.y4e{bottom:1099.050000px;}
.y3b{bottom:1100.130000px;}
.yd3{bottom:1117.770000px;}
.y3{bottom:1118.850000px;}
.y3a{bottom:1119.930000px;}
.yd2{bottom:1138.650000px;}
.y39{bottom:1139.730000px;}
.y2{bottom:1149.660000px;}
.yd1{bottom:1158.660000px;}
.y38{bottom:1159.740000px;}
.y1{bottom:1181.700000px;}
.y37{bottom:1193.220000px;}
.h5{height:21.780000px;}
.he{height:26.322485px;}
.h9{height:27.147656px;}
.h6{height:29.464453px;}
.hf{height:30.708250px;}
.h16{height:34.267687px;}
.h15{height:34.362875px;}
.hb{height:41.726953px;}
.ha{height:42.164648px;}
.hc{height:43.536094px;}
.h11{height:45.690249px;}
.h12{height:45.785437px;}
.h4{height:46.736719px;}
.h14{height:47.274652px;}
.h13{height:48.694107px;}
.h17{height:48.795553px;}
.h8{height:53.224453px;}
.h2{height:54.864844px;}
.h3{height:65.884219px;}
.h7{height:67.565039px;}
.hd{height:409.125733px;}
.h10{height:922.784939px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:55.296000px;}
.w6{width:375.862551px;}
.w5{width:562.870781px;}
.w4{width:719.790000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.100000px;}
.x22{left:20.506322px;}
.x21{left:32.496088px;}
.x20{left:34.594644px;}
.x1{left:54.179987px;}
.x2{left:62.100000px;}
.x41{left:65.860599px;}
.x43{left:70.104213px;}
.x40{left:71.249307px;}
.x39{left:78.254628px;}
.x36{left:79.601799px;}
.x4d{left:80.999987px;}
.x9{left:88.595987px;}
.x1b{left:89.762449px;}
.x1a{left:92.921633px;}
.x38{left:95.128025px;}
.xd{left:100.475987px;}
.xe{left:108.035987px;}
.x37{left:110.216408px;}
.x4{left:118.296000px;}
.x3d{left:121.229587px;}
.x32{left:124.055987px;}
.x42{left:126.618308px;}
.x23{left:129.293243px;}
.xf{left:135.035987px;}
.x1d{left:138.707736px;}
.x2b{left:142.686668px;}
.x3a{left:148.099039px;}
.x1c{left:149.219432px;}
.x1f{left:154.037029px;}
.x1e{left:156.565637px;}
.x2a{left:162.240819px;}
.x3e{left:165.585407px;}
.x45{left:171.378283px;}
.x3f{left:173.264320px;}
.x3c{left:176.322413px;}
.xb{left:200.369987px;}
.x19{left:222.032012px;}
.x12{left:224.339915px;}
.x18{left:227.436045px;}
.x14{left:228.690884px;}
.x8{left:233.499000px;}
.x7{left:238.899000px;}
.x13{left:242.002340px;}
.x34{left:243.029987px;}
.x3b{left:252.680434px;}
.x44{left:255.846312px;}
.x35{left:258.551566px;}
.xa{left:282.854987px;}
.x2e{left:305.791372px;}
.x2d{left:325.345523px;}
.x24{left:327.123752px;}
.x25{left:331.941351px;}
.x15{left:343.165595px;}
.x16{left:346.116690px;}
.x17{left:348.222813px;}
.x4a{left:349.814987px;}
.x4c{left:369.794987px;}
.x47{left:377.714987px;}
.x6{left:428.829000px;}
.x26{left:430.361605px;}
.x27{left:438.357305px;}
.x5{left:442.329000px;}
.x30{left:446.504987px;}
.x29{left:449.991424px;}
.x28{left:457.766422px;}
.x2c{left:471.853479px;}
.xc{left:473.504987px;}
.x48{left:500.504987px;}
.x11{left:527.504987px;}
.x10{left:554.504987px;}
.x4b{left:604.004987px;}
.x33{left:635.009987px;}
.x49{left:648.509987px;}
.x46{left:660.569987px;}
.x2f{left:698.009987px;}
.x31{left:822.419987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls9{letter-spacing:-1.582945pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.265600pt;}
.ls7{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.348160pt;}
.ls8{letter-spacing:1.645303pt;}
.lsb{letter-spacing:5.920000pt;}
.lse{letter-spacing:40.912640pt;}
.ls6{letter-spacing:56.912640pt;}
.ws7{word-spacing:-58.880000pt;}
.ws8{word-spacing:-53.120000pt;}
.wsd{word-spacing:-16.035472pt;}
.wsc{word-spacing:-16.002134pt;}
.ws0{word-spacing:-14.720000pt;}
.ws1{word-spacing:-14.080000pt;}
.wse{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.510933pt;}
.wsb{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.280000pt;}
.ws5{word-spacing:-13.232640pt;}
.ws2{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.650245pt;}
.ws6{word-spacing:0.000000pt;}
.wsa{word-spacing:186.536029pt;}
._1{margin-left:-1703.500800pt;}
._3{margin-left:-1412.096000pt;}
._4{margin-left:-1041.372160pt;}
._5{margin-left:-988.124160pt;}
._21{margin-left:-3.420800pt;}
._12{margin-left:-2.258560pt;}
._2{margin-left:-1.000960pt;}
._0{width:1.036800pt;}
._6{width:2.247893pt;}
._9{width:3.282773pt;}
._a{width:4.404267pt;}
._8{width:5.442347pt;}
._7{width:6.498773pt;}
._1d{width:7.543040pt;}
._1e{width:9.030400pt;}
._b{width:9.933440pt;}
._11{width:11.686400pt;}
._d{width:14.739840pt;}
._28{width:15.834240pt;}
._17{width:16.766720pt;}
._1a{width:18.625707pt;}
._10{width:19.601280pt;}
._f{width:21.035520pt;}
._e{width:22.495360pt;}
._26{width:23.585280pt;}
._20{width:25.338240pt;}
._1f{width:26.294400pt;}
._29{width:27.766400pt;}
._2c{width:29.241600pt;}
._34{width:30.215680pt;}
._2f{width:31.119360pt;}
._15{width:32.375680pt;}
._16{width:33.306240pt;}
._1c{width:34.343253pt;}
._1b{width:35.448960pt;}
._32{width:36.632960pt;}
._24{width:38.385920pt;}
._23{width:39.966080pt;}
._13{width:41.618560pt;}
._14{width:42.602240pt;}
._2b{width:45.593600pt;}
._39{width:48.870400pt;}
._37{width:49.958400pt;}
._25{width:51.596160pt;}
._19{width:53.802240pt;}
._18{width:54.713600pt;}
._36{width:56.614827pt;}
._35{width:57.847680pt;}
._38{width:59.520000pt;}
._2d{width:60.848000pt;}
._2e{width:61.778560pt;}
._31{width:63.025920pt;}
._27{width:65.069440pt;}
._30{width:71.443200pt;}
._2a{width:72.608000pt;}
._c{width:112.448000pt;}
._3a{width:120.714240pt;}
._22{width:152.288000pt;}
._33{width:178.354987pt;}
.fs6{font-size:31.115988pt;}
.fs4{font-size:34.560000pt;}
.fs7{font-size:36.300430pt;}
.fs2{font-size:37.120000pt;}
.fsb{font-size:43.171225pt;}
.fsa{font-size:43.291145pt;}
.fs5{font-size:53.120000pt;}
.fs8{font-size:57.561634pt;}
.fs9{font-size:57.681554pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:69.120000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:5.600000pt;}
.y8{bottom:10.880000pt;}
.y9f{bottom:12.694667pt;}
.y6a{bottom:43.547251pt;}
.y9{bottom:51.840000pt;}
.y69{bottom:54.437629pt;}
.y79{bottom:58.231110pt;}
.y68{bottom:65.329303pt;}
.y6{bottom:65.760000pt;}
.y78{bottom:67.565720pt;}
.yac{bottom:81.498807pt;}
.y77{bottom:86.234939pt;}
.y89{bottom:91.520000pt;}
.y178{bottom:96.160000pt;}
.y103{bottom:98.560000pt;}
.y164{bottom:98.720000pt;}
.yab{bottom:98.767297pt;}
.y36{bottom:99.840000pt;}
.y97{bottom:101.440000pt;}
.y88{bottom:109.120000pt;}
.y177{bottom:113.760000pt;}
.y143{bottom:114.720000pt;}
.y102{bottom:116.160000pt;}
.y163{bottom:116.320000pt;}
.y8d{bottom:117.120000pt;}
.y35{bottom:117.600000pt;}
.y96{bottom:119.040000pt;}
.yd0{bottom:120.640000pt;}
.y87{bottom:126.720000pt;}
.y176{bottom:131.520000pt;}
.y142{bottom:132.320000pt;}
.y101{bottom:133.760000pt;}
.y162{bottom:133.920000pt;}
.y8c{bottom:134.720000pt;}
.y34{bottom:135.226667pt;}
.y95{bottom:136.666667pt;}
.ycf{bottom:139.226667pt;}
.yae{bottom:143.797283pt;}
.y86{bottom:144.346667pt;}
.y76{bottom:148.562906pt;}
.y175{bottom:149.146667pt;}
.y141{bottom:149.946667pt;}
.y100{bottom:151.386667pt;}
.y161{bottom:151.546667pt;}
.y8b{bottom:152.346667pt;}
.y33{bottom:152.826667pt;}
.y94{bottom:154.426667pt;}
.yce{bottom:156.826667pt;}
.y11d{bottom:157.786667pt;}
.y75{bottom:157.897516pt;}
.y85{bottom:161.946667pt;}
.y174{bottom:166.746667pt;}
.y140{bottom:167.546667pt;}
.yff{bottom:168.986667pt;}
.y160{bottom:169.306667pt;}
.y8a{bottom:169.946667pt;}
.y32{bottom:170.426667pt;}
.y93{bottom:172.026667pt;}
.ycd{bottom:174.426667pt;}
.y11c{bottom:175.546667pt;}
.yaa{bottom:178.274303pt;}
.y74{bottom:183.314880pt;}
.y173{bottom:184.346667pt;}
.y13f{bottom:185.306667pt;}
.yfe{bottom:186.746667pt;}
.y15f{bottom:186.906667pt;}
.y84{bottom:187.706667pt;}
.y31{bottom:188.026667pt;}
.y92{bottom:189.626667pt;}
.ya9{bottom:191.705351pt;}
.ycc{bottom:192.986667pt;}
.y11b{bottom:193.146667pt;}
.y62{bottom:196.979712pt;}
.y172{bottom:201.946667pt;}
.y13e{bottom:202.906667pt;}
.y15e{bottom:204.506667pt;}
.ya8{bottom:205.172375pt;}
.y83{bottom:205.306667pt;}
.y30{bottom:205.786667pt;}
.y61{bottom:206.314321pt;}
.y91{bottom:207.226667pt;}
.y67{bottom:209.147116pt;}
.y11a{bottom:210.746667pt;}
.ycb{bottom:211.546667pt;}
.yad{bottom:211.851923pt;}
.y171{bottom:219.546667pt;}
.y13d{bottom:220.506667pt;}
.y90{bottom:222.106667pt;}
.y98{bottom:222.591926pt;}
.y82{bottom:222.906667pt;}
.y2f{bottom:223.386667pt;}
.y66{bottom:227.816335pt;}
.y119{bottom:228.346667pt;}
.yca{bottom:229.306667pt;}
.y65{bottom:237.150945pt;}
.y170{bottom:237.306667pt;}
.y13c{bottom:238.106667pt;}
.y15d{bottom:239.706667pt;}
.y81{bottom:240.506667pt;}
.y2e{bottom:240.986667pt;}
.yfd{bottom:241.466667pt;}
.y6e{bottom:245.480788pt;}
.y118{bottom:245.946667pt;}
.yc9{bottom:246.906667pt;}
.y6d{bottom:254.815397pt;}
.y16f{bottom:254.906667pt;}
.y13b{bottom:255.706667pt;}
.y15c{bottom:257.466667pt;}
.y80{bottom:258.106667pt;}
.y2d{bottom:258.586667pt;}
.yfc{bottom:259.066667pt;}
.y117{bottom:260.666667pt;}
.yc8{bottom:264.506667pt;}
.y16e{bottom:272.506667pt;}
.y7f{bottom:272.826667pt;}
.y60{bottom:272.880000pt;}
.y73{bottom:272.985474pt;}
.y13a{bottom:273.466667pt;}
.y15b{bottom:275.066667pt;}
.y2c{bottom:276.186667pt;}
.yfb{bottom:276.826667pt;}
.yc7{bottom:282.106667pt;}
.y72{bottom:282.320084pt;}
.y7b{bottom:285.457550pt;}
.y16d{bottom:290.106667pt;}
.y139{bottom:291.066667pt;}
.y15a{bottom:292.666667pt;}
.y2b{bottom:293.946667pt;}
.yfa{bottom:294.426667pt;}
.y7d{bottom:294.565277pt;}
.y7a{bottom:294.792160pt;}
.ya7{bottom:298.949870pt;}
.yc6{bottom:299.706667pt;}
.y64{bottom:303.828581pt;}
.y16c{bottom:307.706667pt;}
.y138{bottom:308.666667pt;}
.y159{bottom:310.266667pt;}
.y2a{bottom:311.546667pt;}
.yf9{bottom:312.026667pt;}
.y63{bottom:313.163190pt;}
.yc5{bottom:317.466667pt;}
.y71{bottom:322.983978pt;}
.y16b{bottom:325.466667pt;}
.y137{bottom:326.266667pt;}
.y29{bottom:329.146667pt;}
.yf8{bottom:329.626667pt;}
.y70{bottom:331.236032pt;}
.y6c{bottom:332.318587pt;}
.yc4{bottom:335.066667pt;}
.y158{bottom:335.866667pt;}
.y6f{bottom:340.570642pt;}
.y7c{bottom:341.504103pt;}
.y6b{bottom:341.653197pt;}
.y16a{bottom:343.066667pt;}
.y136{bottom:343.866667pt;}
.y28{bottom:346.746667pt;}
.yf7{bottom:347.226667pt;}
.y7e{bottom:350.838712pt;}
.yc3{bottom:352.666667pt;}
.y157{bottom:353.626667pt;}
.y169{bottom:360.706667pt;}
.y135{bottom:361.666667pt;}
.y27{bottom:364.386667pt;}
.yf6{bottom:365.026667pt;}
.yc2{bottom:370.306667pt;}
.y156{bottom:371.266667pt;}
.ya6{bottom:374.523498pt;}
.y168{bottom:378.306667pt;}
.y134{bottom:379.266667pt;}
.y26{bottom:382.146667pt;}
.yf5{bottom:383.586667pt;}
.yc1{bottom:387.906667pt;}
.y155{bottom:388.866667pt;}
.ya5{bottom:391.827964pt;}
.y167{bottom:395.906667pt;}
.y133{bottom:396.866667pt;}
.y25{bottom:399.746667pt;}
.yf4{bottom:401.186667pt;}
.yc0{bottom:405.666667pt;}
.y154{bottom:406.466667pt;}
.y166{bottom:413.666667pt;}
.y132{bottom:414.466667pt;}
.y24{bottom:417.346667pt;}
.yf3{bottom:418.786667pt;}
.ybf{bottom:423.266667pt;}
.y153{bottom:424.066667pt;}
.y165{bottom:431.266667pt;}
.y8f{bottom:434.626667pt;}
.y23{bottom:434.946667pt;}
.yf2{bottom:437.346667pt;}
.y131{bottom:440.066667pt;}
.y152{bottom:441.826667pt;}
.ybe{bottom:448.866667pt;}
.y8e{bottom:449.346667pt;}
.y22{bottom:452.546667pt;}
.yf1{bottom:455.106667pt;}
.y130{bottom:457.826667pt;}
.y9d{bottom:457.903923pt;}
.y151{bottom:459.426667pt;}
.y116{bottom:460.226667pt;}
.y112{bottom:462.146667pt;}
.ybd{bottom:466.466667pt;}
.y21{bottom:470.306667pt;}
.yf0{bottom:472.706667pt;}
.y9c{bottom:475.196397pt;}
.y12f{bottom:475.426667pt;}
.y150{bottom:477.026667pt;}
.y115{bottom:477.826667pt;}
.y111{bottom:479.746667pt;}
.ybc{bottom:484.066667pt;}
.y20{bottom:487.906667pt;}
.yef{bottom:490.306667pt;}
.y12e{bottom:493.026667pt;}
.y14f{bottom:494.626667pt;}
.y114{bottom:496.546667pt;}
.y110{bottom:497.346667pt;}
.ybb{bottom:501.826667pt;}
.y1f{bottom:505.506667pt;}
.yee{bottom:508.866667pt;}
.y12d{bottom:510.626667pt;}
.y14e{bottom:512.226667pt;}
.y113{bottom:514.146667pt;}
.y10f{bottom:515.106667pt;}
.yba{bottom:519.426667pt;}
.y1e{bottom:523.106667pt;}
.yed{bottom:526.466667pt;}
.y12c{bottom:528.226667pt;}
.y14d{bottom:529.986667pt;}
.y10e{bottom:532.706667pt;}
.yb9{bottom:537.026667pt;}
.y1d{bottom:540.706667pt;}
.yec{bottom:544.066667pt;}
.y9b{bottom:544.845973pt;}
.y12b{bottom:545.986667pt;}
.y14c{bottom:547.586667pt;}
.y10d{bottom:550.306667pt;}
.yb8{bottom:554.626667pt;}
.y1c{bottom:558.466667pt;}
.yeb{bottom:561.826667pt;}
.y12a{bottom:563.586667pt;}
.y14b{bottom:565.186667pt;}
.y10c{bottom:567.906667pt;}
.yb7{bottom:572.226667pt;}
.y1b{bottom:576.066667pt;}
.yea{bottom:579.453333pt;}
.y129{bottom:581.213333pt;}
.y14a{bottom:582.813333pt;}
.y10b{bottom:585.533333pt;}
.yb6{bottom:590.013333pt;}
.y1a{bottom:593.693333pt;}
.ya1{bottom:594.552842pt;}
.ye9{bottom:597.053333pt;}
.y128{bottom:598.813333pt;}
.y149{bottom:600.413333pt;}
.y10a{bottom:603.293333pt;}
.yb5{bottom:607.613333pt;}
.y19{bottom:611.293333pt;}
.ya4{bottom:613.200413pt;}
.ye8{bottom:614.653333pt;}
.y127{bottom:616.413333pt;}
.y109{bottom:618.013333pt;}
.y148{bottom:618.173333pt;}
.yb4{bottom:625.213333pt;}
.y18{bottom:628.893333pt;}
.ya3{bottom:630.492887pt;}
.ye7{bottom:632.253333pt;}
.y126{bottom:634.173333pt;}
.y147{bottom:635.773333pt;}
.y5f{bottom:641.853333pt;}
.yb3{bottom:642.813333pt;}
.ya0{bottom:647.617473pt;}
.ya2{bottom:647.797353pt;}
.y17{bottom:648.573333pt;}
.ye6{bottom:650.013333pt;}
.y125{bottom:651.773333pt;}
.y146{bottom:653.373333pt;}
.y4d{bottom:659.453333pt;}
.yb2{bottom:660.413333pt;}
.y16{bottom:666.173333pt;}
.ye5{bottom:667.613333pt;}
.y124{bottom:669.373333pt;}
.y145{bottom:670.973333pt;}
.y4c{bottom:677.213333pt;}
.yb1{bottom:678.173333pt;}
.y15{bottom:683.773333pt;}
.ye4{bottom:685.213333pt;}
.y123{bottom:686.973333pt;}
.y144{bottom:688.573333pt;}
.y5e{bottom:690.013333pt;}
.y4b{bottom:694.813333pt;}
.yb0{bottom:695.773333pt;}
.y14{bottom:701.533333pt;}
.ye3{bottom:702.813333pt;}
.y122{bottom:704.573333pt;}
.y5d{bottom:707.613333pt;}
.y4a{bottom:712.413333pt;}
.yaf{bottom:713.373333pt;}
.y13{bottom:719.133333pt;}
.ye2{bottom:720.413333pt;}
.y121{bottom:722.333333pt;}
.y9a{bottom:723.346997pt;}
.y5c{bottom:726.173333pt;}
.y49{bottom:730.973333pt;}
.y12{bottom:736.733333pt;}
.ye1{bottom:738.173333pt;}
.y120{bottom:739.933333pt;}
.y99{bottom:740.639472pt;}
.y5b{bottom:744.893333pt;}
.y48{bottom:748.573333pt;}
.y11{bottom:754.333333pt;}
.ye0{bottom:755.773333pt;}
.y11f{bottom:757.533333pt;}
.y5a{bottom:762.493333pt;}
.y47{bottom:766.333333pt;}
.y10{bottom:771.933333pt;}
.y11e{bottom:772.253333pt;}
.ydf{bottom:773.373333pt;}
.y59{bottom:780.093333pt;}
.y46{bottom:783.933333pt;}
.yf{bottom:789.533333pt;}
.yde{bottom:791.933333pt;}
.y58{bottom:797.693333pt;}
.y9e{bottom:797.937281pt;}
.y45{bottom:801.573333pt;}
.ye{bottom:809.253333pt;}
.ydd{bottom:809.573333pt;}
.y57{bottom:815.333333pt;}
.y44{bottom:819.173333pt;}
.ydc{bottom:828.293333pt;}
.yd{bottom:831.653333pt;}
.y56{bottom:834.053333pt;}
.y43{bottom:836.773333pt;}
.yc{bottom:845.093333pt;}
.ydb{bottom:846.853333pt;}
.y55{bottom:851.653333pt;}
.y42{bottom:854.533333pt;}
.y108{bottom:864.133333pt;}
.yda{bottom:865.413333pt;}
.y54{bottom:869.253333pt;}
.y41{bottom:872.133333pt;}
.y107{bottom:881.733333pt;}
.yb{bottom:883.173333pt;}
.yd9{bottom:883.973333pt;}
.y53{bottom:887.813333pt;}
.y40{bottom:889.733333pt;}
.y106{bottom:899.333333pt;}
.yd8{bottom:902.533333pt;}
.y52{bottom:905.413333pt;}
.y3f{bottom:907.333333pt;}
.ya{bottom:911.333333pt;}
.y105{bottom:916.933333pt;}
.yd7{bottom:921.253333pt;}
.y51{bottom:923.013333pt;}
.y3e{bottom:924.933333pt;}
.y104{bottom:934.693333pt;}
.y5{bottom:936.933333pt;}
.yd6{bottom:938.853333pt;}
.y50{bottom:941.733333pt;}
.y3d{bottom:942.693333pt;}
.yd5{bottom:957.413333pt;}
.y4f{bottom:959.333333pt;}
.y3c{bottom:960.293333pt;}
.y4{bottom:967.013333pt;}
.yd4{bottom:975.013333pt;}
.y4e{bottom:976.933333pt;}
.y3b{bottom:977.893333pt;}
.yd3{bottom:993.573333pt;}
.y3{bottom:994.533333pt;}
.y3a{bottom:995.493333pt;}
.yd2{bottom:1012.133333pt;}
.y39{bottom:1013.093333pt;}
.y2{bottom:1021.920000pt;}
.yd1{bottom:1029.920000pt;}
.y38{bottom:1030.880000pt;}
.y1{bottom:1050.400000pt;}
.y37{bottom:1060.640000pt;}
.h5{height:19.360000pt;}
.he{height:23.397764pt;}
.h9{height:24.131250pt;}
.h6{height:26.190625pt;}
.hf{height:27.296222pt;}
.h16{height:30.460166pt;}
.h15{height:30.544778pt;}
.hb{height:37.090625pt;}
.ha{height:37.479688pt;}
.hc{height:38.698750pt;}
.h11{height:40.613555pt;}
.h12{height:40.698167pt;}
.h4{height:41.543750pt;}
.h14{height:42.021913pt;}
.h13{height:43.283650pt;}
.h17{height:43.373825pt;}
.h8{height:47.310625pt;}
.h2{height:48.768750pt;}
.h3{height:58.563750pt;}
.h7{height:60.057813pt;}
.hd{height:363.667318pt;}
.h10{height:820.253279pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:49.152000pt;}
.w6{width:334.100045pt;}
.w5{width:500.329583pt;}
.w4{width:639.813333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.200000pt;}
.x22{left:18.227842pt;}
.x21{left:28.885412pt;}
.x20{left:30.750794pt;}
.x1{left:48.159988pt;}
.x2{left:55.200000pt;}
.x41{left:58.542755pt;}
.x43{left:62.314856pt;}
.x40{left:63.332717pt;}
.x39{left:69.559669pt;}
.x36{left:70.757154pt;}
.x4d{left:71.999988pt;}
.x9{left:78.751988pt;}
.x1b{left:79.788844pt;}
.x1a{left:82.597007pt;}
.x38{left:84.558244pt;}
.xd{left:89.311988pt;}
.xe{left:96.031988pt;}
.x37{left:97.970141pt;}
.x4{left:105.152000pt;}
.x3d{left:107.759633pt;}
.x32{left:110.271988pt;}
.x42{left:112.549607pt;}
.x23{left:114.927327pt;}
.xf{left:120.031988pt;}
.x1d{left:123.295765pt;}
.x2b{left:126.832593pt;}
.x3a{left:131.643590pt;}
.x1c{left:132.639495pt;}
.x1f{left:136.921803pt;}
.x1e{left:139.169455pt;}
.x2a{left:144.214061pt;}
.x3e{left:147.187029pt;}
.x45{left:152.336251pt;}
.x3f{left:154.012728pt;}
.x3c{left:156.731034pt;}
.xb{left:178.106655pt;}
.x19{left:197.361789pt;}
.x12{left:199.413258pt;}
.x18{left:202.165374pt;}
.x14{left:203.280786pt;}
.x8{left:207.554667pt;}
.x7{left:212.354667pt;}
.x13{left:215.113191pt;}
.x34{left:216.026655pt;}
.x3b{left:224.604830pt;}
.x44{left:227.418944pt;}
.x35{left:229.823615pt;}
.xa{left:251.426655pt;}
.x2e{left:271.814553pt;}
.x2d{left:289.196021pt;}
.x24{left:290.776669pt;}
.x25{left:295.058978pt;}
.x15{left:305.036085pt;}
.x16{left:307.659280pt;}
.x17{left:309.531389pt;}
.x4a{left:310.946655pt;}
.x4c{left:328.706655pt;}
.x47{left:335.746655pt;}
.x6{left:381.181333pt;}
.x26{left:382.543649pt;}
.x27{left:389.650938pt;}
.x5{left:393.181333pt;}
.x30{left:396.893322pt;}
.x29{left:399.992377pt;}
.x28{left:406.903486pt;}
.x2c{left:419.425315pt;}
.xc{left:420.893322pt;}
.x48{left:444.893322pt;}
.x11{left:468.893322pt;}
.x10{left:492.893322pt;}
.x4b{left:536.893322pt;}
.x33{left:564.453322pt;}
.x49{left:576.453322pt;}
.x46{left:587.173322pt;}
.x2f{left:620.453322pt;}
.x31{left:731.039988pt;}
}




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