
    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_b8c327195112a0643c21cae7.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d7709e75da12503432162b39.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e2d4df0f73ff3b695bafa5f7.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c565b000c80fb41dea3ebe6b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_33ebb02323858d62800a12aa.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_04112c0b282bfbb02e59ccf4.woff')format("woff");}.ff6{font-family:ff6;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_6799720b6f751e19c1e9fdf0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls11{letter-spacing:-0.243600px;}
.lsd{letter-spacing:-0.186600px;}
.ls14{letter-spacing:-0.178800px;}
.ls10{letter-spacing:-0.160800px;}
.ls17{letter-spacing:-0.153600px;}
.ls7{letter-spacing:-0.135000px;}
.ls9{letter-spacing:-0.121200px;}
.ls13{letter-spacing:-0.092400px;}
.ls6{letter-spacing:-0.090000px;}
.ls8{letter-spacing:-0.084600px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.045360px;}
.lse{letter-spacing:0.048960px;}
.lsa{letter-spacing:0.074160px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.ls5{letter-spacing:0.144000px;}
.lsc{letter-spacing:0.173400px;}
.ls12{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.199200px;}
.ls0{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.374760px;}
.ls16{letter-spacing:47.726640px;}
.ls15{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsb{word-spacing:-60.120000px;}
.ws4{word-spacing:-14.493600px;}
.ws8{word-spacing:-14.372400px;}
.wsa{word-spacing:-13.425600px;}
.ws6{word-spacing:-13.399800px;}
.ws9{word-spacing:-13.275360px;}
.ws2{word-spacing:-13.226400px;}
.wsf{word-spacing:-13.072800px;}
.wsc{word-spacing:-13.065600px;}
.wse{word-spacing:-13.047600px;}
.ws7{word-spacing:-13.039800px;}
.wsd{word-spacing:-12.982800px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws5{word-spacing:0.000000px;}
.ws3{word-spacing:4.304880px;}
._15{margin-left:-4.050001px;}
._e{margin-left:-2.309520px;}
._0{margin-left:-1.110000px;}
._3{width:1.111440px;}
._7{width:2.856360px;}
._1c{width:3.869403px;}
._b{width:4.869600px;}
._c{width:6.287640px;}
._5{width:7.815600px;}
._8{width:9.318600px;}
._a{width:10.606920px;}
._1{width:11.610360px;}
._2{width:13.687080px;}
._10{width:14.869920px;}
._11{width:16.026004px;}
._9{width:17.191800px;}
._4{width:18.517200px;}
._13{width:19.770600px;}
._12{width:20.801520px;}
._14{width:22.449718px;}
._f{width:23.569922px;}
._6{width:25.278000px;}
._19{width:26.485320px;}
._1b{width:28.256400px;}
._1a{width:29.338560px;}
._1d{width:30.540960px;}
._18{width:31.743360px;}
._d{width:33.126000px;}
._16{width:35.891640px;}
._17{width:37.154160px;}
._27{width:59.097960px;}
._28{width:60.781320px;}
._24{width:66.342240px;}
._25{width:67.362600px;}
._29{width:83.053560px;}
._1f{width:90.240120px;}
._1e{width:91.502640px;}
._26{width:235.346040px;}
._2a{width:364.026600px;}
._22{width:963.571080px;}
._23{width:1016.749440px;}
._21{width:1142.520480px;}
._20{width:2402.214840px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:42.120000px;}
.fs3{font-size:45.000000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:60.120000px;}
.fs5{font-size:65.880000px;}
.fs4{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y2{bottom:73.380000px;}
.y29{bottom:74.190000px;}
.y1{bottom:101.640000px;}
.y111{bottom:116.490000px;}
.yee{bottom:118.650000px;}
.y166{bottom:119.010000px;}
.yd7{bottom:121.440000px;}
.y75{bottom:123.690000px;}
.y13b{bottom:124.050000px;}
.y96{bottom:126.840000px;}
.y100{bottom:127.650000px;}
.y110{bottom:134.130000px;}
.yed{bottom:136.200000px;}
.y165{bottom:136.650000px;}
.yd6{bottom:138.990000px;}
.y74{bottom:141.240000px;}
.y13a{bottom:141.690000px;}
.y95{bottom:144.390000px;}
.yff{bottom:145.200000px;}
.y11d{bottom:145.650000px;}
.y5c{bottom:148.980000px;}
.y10f{bottom:151.680000px;}
.yec{bottom:153.840000px;}
.y164{bottom:154.200000px;}
.yd5{bottom:156.630000px;}
.y73{bottom:158.880000px;}
.y139{bottom:159.240000px;}
.y27{bottom:159.690000px;}
.yfe{bottom:162.840000px;}
.y11c{bottom:163.200000px;}
.y17c{bottom:164.100000px;}
.y5b{bottom:166.530000px;}
.y10e{bottom:169.230000px;}
.y1ac{bottom:170.670000px;}
.yeb{bottom:171.390000px;}
.y163{bottom:171.840000px;}
.yd4{bottom:174.180000px;}
.y72{bottom:176.430000px;}
.y138{bottom:176.880000px;}
.y26{bottom:177.330000px;}
.y94{bottom:179.940000px;}
.yfd{bottom:180.390000px;}
.y11b{bottom:180.840000px;}
.y17b{bottom:181.650000px;}
.y5a{bottom:184.170000px;}
.y10d{bottom:186.870000px;}
.y1ab{bottom:188.310000px;}
.yea{bottom:188.940000px;}
.y162{bottom:189.390000px;}
.yd3{bottom:191.730000px;}
.y71{bottom:193.980000px;}
.y137{bottom:194.430000px;}
.y25{bottom:194.880000px;}
.y93{bottom:197.580000px;}
.yfc{bottom:197.940000px;}
.y11a{bottom:198.390000px;}
.y17a{bottom:199.290000px;}
.y59{bottom:201.720000px;}
.y10c{bottom:204.420000px;}
.ye9{bottom:206.580000px;}
.y161{bottom:206.940000px;}
.yd2{bottom:209.370000px;}
.y70{bottom:211.620000px;}
.y136{bottom:211.980000px;}
.y24{bottom:212.430000px;}
.y1aa{bottom:214.860000px;}
.y92{bottom:215.130000px;}
.yfb{bottom:215.580000px;}
.y119{bottom:215.940000px;}
.y179{bottom:216.840000px;}
.y58{bottom:219.270000px;}
.y10b{bottom:222.060000px;}
.ye8{bottom:224.130000px;}
.y160{bottom:224.580000px;}
.yd1{bottom:226.920000px;}
.y135{bottom:229.620000px;}
.y23{bottom:230.070000px;}
.y1a9{bottom:232.500000px;}
.y91{bottom:232.680000px;}
.yba{bottom:233.130000px;}
.y118{bottom:233.580000px;}
.y178{bottom:234.480000px;}
.y57{bottom:236.910000px;}
.y6f{bottom:238.170000px;}
.y10a{bottom:239.610000px;}
.y15f{bottom:242.130000px;}
.yd0{bottom:244.560000px;}
.y22{bottom:247.620000px;}
.y1a8{bottom:250.050000px;}
.y90{bottom:250.320000px;}
.yb9{bottom:250.680000px;}
.y117{bottom:251.130000px;}
.y177{bottom:252.030000px;}
.y56{bottom:254.460000px;}
.y109{bottom:257.160000px;}
.y15e{bottom:259.680000px;}
.ycf{bottom:262.110000px;}
.y134{bottom:265.170000px;}
.y21{bottom:265.260000px;}
.y8f{bottom:267.870000px;}
.yb8{bottom:268.320000px;}
.yfa{bottom:268.680000px;}
.y176{bottom:269.580000px;}
.y55{bottom:272.100000px;}
.y6e{bottom:274.080000px;}
.y108{bottom:274.800000px;}
.y1a7{bottom:276.600000px;}
.y15d{bottom:277.320000px;}
.yce{bottom:279.660000px;}
.y133{bottom:282.810000px;}
.y8e{bottom:285.510000px;}
.yb7{bottom:285.870000px;}
.ye7{bottom:286.320000px;}
.y175{bottom:287.220000px;}
.y54{bottom:289.650000px;}
.y107{bottom:292.350000px;}
.y1a6{bottom:294.240000px;}
.y15c{bottom:294.870000px;}
.y132{bottom:300.360000px;}
.y20{bottom:300.810000px;}
.y8d{bottom:303.060000px;}
.yb6{bottom:303.510000px;}
.ye6{bottom:303.870000px;}
.y174{bottom:304.770000px;}
.y53{bottom:307.200000px;}
.y106{bottom:309.990000px;}
.y1a5{bottom:311.790000px;}
.y15b{bottom:312.510000px;}
.ycd{bottom:315.300000px;}
.y131{bottom:317.910000px;}
.y1f{bottom:318.360000px;}
.y8c{bottom:320.610000px;}
.yb5{bottom:321.060000px;}
.ye5{bottom:321.510000px;}
.y6d{bottom:322.410000px;}
.y105{bottom:327.540000px;}
.y1a4{bottom:329.430000px;}
.y15a{bottom:330.060000px;}
.ycc{bottom:332.850000px;}
.y130{bottom:335.550000px;}
.y1e{bottom:336.000000px;}
.y8b{bottom:338.250000px;}
.yb4{bottom:338.610000px;}
.ye4{bottom:339.060000px;}
.y173{bottom:339.960000px;}
.y52{bottom:342.840000px;}
.ycb{bottom:350.490000px;}
.y12f{bottom:353.100000px;}
.y1d{bottom:353.550000px;}
.y104{bottom:354.090000px;}
.y6c{bottom:354.630000px;}
.y8a{bottom:355.800000px;}
.y1a3{bottom:355.980000px;}
.yb3{bottom:356.250000px;}
.ye3{bottom:356.610000px;}
.y172{bottom:357.510000px;}
.y51{bottom:360.390000px;}
.yca{bottom:368.040000px;}
.y12e{bottom:370.740000px;}
.y1c{bottom:371.190000px;}
.y1a2{bottom:373.530000px;}
.yb2{bottom:373.800000px;}
.ye2{bottom:374.250000px;}
.y171{bottom:375.150000px;}
.y50{bottom:377.940000px;}
.yc9{bottom:385.590000px;}
.y12d{bottom:388.290000px;}
.y1b{bottom:388.740000px;}
.y103{bottom:390.000000px;}
.y89{bottom:391.440000px;}
.ye1{bottom:391.800000px;}
.y159{bottom:392.250000px;}
.y170{bottom:392.700000px;}
.y4f{bottom:395.580000px;}
.y1a1{bottom:400.170000px;}
.yc8{bottom:403.230000px;}
.y12c{bottom:405.840000px;}
.y1a{bottom:406.290000px;}
.y88{bottom:408.990000px;}
.ye0{bottom:409.440000px;}
.y158{bottom:409.800000px;}
.y16f{bottom:410.250000px;}
.y4e{bottom:413.130000px;}
.y1a0{bottom:417.720000px;}
.yc7{bottom:420.780000px;}
.y12b{bottom:423.480000px;}
.y87{bottom:426.540000px;}
.ydf{bottom:426.990000px;}
.y157{bottom:427.440000px;}
.y16e{bottom:427.890000px;}
.y4d{bottom:430.770000px;}
.y19{bottom:433.200000px;}
.y19f{bottom:435.360000px;}
.y102{bottom:438.330000px;}
.yc6{bottom:438.420000px;}
.y12a{bottom:441.030000px;}
.y86{bottom:444.180000px;}
.yde{bottom:444.540000px;}
.y156{bottom:444.990000px;}
.y16d{bottom:445.440000px;}
.y4c{bottom:448.320000px;}
.y19e{bottom:452.910000px;}
.yc5{bottom:455.970000px;}
.y129{bottom:458.670000px;}
.y85{bottom:461.730000px;}
.yb1{bottom:462.180000px;}
.y155{bottom:462.540000px;}
.y16c{bottom:463.080000px;}
.y4b{bottom:465.870000px;}
.y101{bottom:470.580000px;}
.yc4{bottom:473.550000px;}
.y128{bottom:476.250000px;}
.y84{bottom:479.400000px;}
.y19d{bottom:479.490000px;}
.yb0{bottom:479.760000px;}
.y154{bottom:480.210000px;}
.y16b{bottom:480.660000px;}
.y18{bottom:481.560000px;}
.y4a{bottom:483.540000px;}
.yc3{bottom:491.190000px;}
.y127{bottom:493.800000px;}
.y83{bottom:496.950000px;}
.y19c{bottom:497.130000px;}
.yaf{bottom:497.400000px;}
.y153{bottom:497.760000px;}
.y16a{bottom:498.210000px;}
.y17{bottom:499.470000px;}
.yc2{bottom:508.740000px;}
.y126{bottom:511.440000px;}
.y82{bottom:514.500000px;}
.y19b{bottom:514.680000px;}
.yae{bottom:514.950000px;}
.y13e{bottom:515.400000px;}
.y169{bottom:515.850000px;}
.y49{bottom:519.090000px;}
.yc1{bottom:526.290000px;}
.y125{bottom:528.990000px;}
.y81{bottom:532.140000px;}
.y19a{bottom:532.230000px;}
.yad{bottom:532.500000px;}
.y13d{bottom:532.950000px;}
.y16{bottom:536.460000px;}
.y48{bottom:536.730000px;}
.yc0{bottom:543.930000px;}
.y124{bottom:546.540000px;}
.y80{bottom:549.690000px;}
.yac{bottom:550.140000px;}
.y116{bottom:550.500000px;}
.y168{bottom:551.400000px;}
.y15{bottom:554.010000px;}
.y47{bottom:554.280000px;}
.y199{bottom:558.870000px;}
.ybf{bottom:561.480000px;}
.y123{bottom:564.180000px;}
.y7f{bottom:567.330000px;}
.yab{bottom:567.690000px;}
.y115{bottom:568.140000px;}
.y14{bottom:571.650000px;}
.y46{bottom:571.830000px;}
.y198{bottom:576.420000px;}
.y122{bottom:581.730000px;}
.y167{bottom:583.620000px;}
.y7e{bottom:584.880000px;}
.yaa{bottom:585.330000px;}
.y114{bottom:585.690000px;}
.ybe{bottom:588.120000px;}
.y13{bottom:589.200000px;}
.y45{bottom:589.470000px;}
.y197{bottom:594.060000px;}
.yf9{bottom:594.330000px;}
.ya9{bottom:602.880000px;}
.y113{bottom:603.330000px;}
.y12{bottom:606.840000px;}
.y44{bottom:607.020000px;}
.y121{bottom:608.370000px;}
.y7d{bottom:611.430000px;}
.ya8{bottom:620.430000px;}
.y196{bottom:620.610000px;}
.y112{bottom:620.880000px;}
.ybd{bottom:624.030000px;}
.y11{bottom:624.390000px;}
.y43{bottom:624.660000px;}
.yf8{bottom:629.880000px;}
.ya7{bottom:638.070000px;}
.y195{bottom:638.160000px;}
.ydd{bottom:638.430000px;}
.y10{bottom:641.940000px;}
.y42{bottom:642.210000px;}
.y120{bottom:644.280000px;}
.y7c{bottom:647.070000px;}
.yf7{bottom:647.430000px;}
.ya6{bottom:655.620000px;}
.y194{bottom:655.800000px;}
.ydc{bottom:656.070000px;}
.yf{bottom:659.580000px;}
.y41{bottom:659.760000px;}
.y7b{bottom:664.620000px;}
.yf6{bottom:665.070000px;}
.ybc{bottom:672.270000px;}
.y193{bottom:673.350000px;}
.ydb{bottom:673.620000px;}
.ye{bottom:677.130000px;}
.y40{bottom:677.400000px;}
.y7a{bottom:682.260000px;}
.yf5{bottom:682.620000px;}
.ya5{bottom:691.260000px;}
.y11f{bottom:692.520000px;}
.yd{bottom:694.770000px;}
.y3f{bottom:694.950000px;}
.y79{bottom:699.810000px;}
.y192{bottom:699.990000px;}
.yf4{bottom:700.260000px;}
.ybb{bottom:704.490000px;}
.ya4{bottom:708.810000px;}
.yc{bottom:712.320000px;}
.y78{bottom:717.360000px;}
.y191{bottom:717.540000px;}
.yf3{bottom:717.810000px;}
.y3e{bottom:721.860000px;}
.y11e{bottom:724.740000px;}
.ya3{bottom:726.360000px;}
.yb{bottom:729.870000px;}
.y77{bottom:735.000000px;}
.y190{bottom:735.090000px;}
.yf2{bottom:735.360000px;}
.ya2{bottom:744.000000px;}
.y76{bottom:752.550000px;}
.y18f{bottom:752.730000px;}
.yf1{bottom:753.000000px;}
.ya{bottom:756.870000px;}
.ya1{bottom:761.550000px;}
.y3d{bottom:770.190000px;}
.yf0{bottom:770.550000px;}
.ya0{bottom:779.190000px;}
.y18e{bottom:779.280000px;}
.y152{bottom:779.550000px;}
.y3c{bottom:787.740000px;}
.yef{bottom:788.190000px;}
.y9f{bottom:796.740000px;}
.y18d{bottom:796.920000px;}
.y151{bottom:797.190000px;}
.y9{bottom:803.580000px;}
.y3b{bottom:805.290000px;}
.y6b{bottom:805.740000px;}
.y9e{bottom:814.290000px;}
.y150{bottom:814.740000px;}
.y3a{bottom:822.930000px;}
.y6a{bottom:823.290000px;}
.y18c{bottom:823.830000px;}
.y9d{bottom:831.930000px;}
.y14f{bottom:832.290000px;}
.y8{bottom:839.130000px;}
.y39{bottom:840.480000px;}
.y69{bottom:840.930000px;}
.y9c{bottom:849.480000px;}
.y14e{bottom:849.930000px;}
.y38{bottom:858.030000px;}
.y68{bottom:858.480000px;}
.y9b{bottom:867.030000px;}
.y14d{bottom:867.480000px;}
.y18b{bottom:872.070000px;}
.y7{bottom:874.950000px;}
.y37{bottom:875.670000px;}
.y67{bottom:876.030000px;}
.y9a{bottom:884.670000px;}
.y14c{bottom:885.030000px;}
.y18a{bottom:889.620000px;}
.y36{bottom:893.220000px;}
.y66{bottom:893.670000px;}
.y99{bottom:902.220000px;}
.y14b{bottom:902.670000px;}
.y189{bottom:907.260000px;}
.y35{bottom:910.860000px;}
.y6{bottom:910.950000px;}
.y65{bottom:911.220000px;}
.yda{bottom:919.860000px;}
.y14a{bottom:920.220000px;}
.y188{bottom:924.810000px;}
.y64{bottom:928.860000px;}
.yd9{bottom:937.410000px;}
.y149{bottom:937.860000px;}
.y187{bottom:942.450000px;}
.y34{bottom:946.410000px;}
.y13c{bottom:946.860000px;}
.y5{bottom:947.040000px;}
.yd8{bottom:954.960000px;}
.y148{bottom:955.410000px;}
.y186{bottom:960.000000px;}
.y33{bottom:963.960000px;}
.y98{bottom:964.410000px;}
.y147{bottom:972.960000px;}
.y185{bottom:977.550000px;}
.y32{bottom:981.600000px;}
.y97{bottom:981.960000px;}
.y4{bottom:985.380000px;}
.y146{bottom:990.600000px;}
.y184{bottom:995.190000px;}
.y31{bottom:999.150000px;}
.y63{bottom:999.600000px;}
.y145{bottom:1008.150000px;}
.y3{bottom:1010.070000px;}
.y183{bottom:1012.770000px;}
.y30{bottom:1016.820000px;}
.y62{bottom:1017.180000px;}
.y144{bottom:1025.820000px;}
.y182{bottom:1030.320000px;}
.y2f{bottom:1034.370000px;}
.y61{bottom:1034.820000px;}
.y143{bottom:1043.370000px;}
.y181{bottom:1047.960000px;}
.y2e{bottom:1051.920000px;}
.y60{bottom:1052.370000px;}
.y142{bottom:1060.920000px;}
.y180{bottom:1065.510000px;}
.y2d{bottom:1069.560000px;}
.y5f{bottom:1069.920000px;}
.y141{bottom:1078.560000px;}
.y17f{bottom:1083.150000px;}
.y2c{bottom:1087.110000px;}
.y5e{bottom:1087.560000px;}
.y140{bottom:1096.110000px;}
.y17e{bottom:1100.700000px;}
.y5d{bottom:1105.110000px;}
.y13f{bottom:1113.750000px;}
.y2b{bottom:1122.750000px;}
.y17d{bottom:1127.610000px;}
.y2a{bottom:1140.300000px;}
.y28{bottom:1194.300000px;}
.h2{height:30.022383px;}
.h3{height:38.100586px;}
.h6{height:50.902383px;}
.h5{height:55.779258px;}
.h9{height:61.793886px;}
.h8{height:62.585859px;}
.h7{height:68.582109px;}
.h4{height:71.019492px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.040000px;}
.xd{left:83.789987px;}
.x7{left:98.639987px;}
.xb{left:99.719987px;}
.xe{left:111.239987px;}
.x5{left:125.369987px;}
.x2{left:202.799987px;}
.x9{left:222.239987px;}
.x4{left:778.559987px;}
.x8{left:780.809987px;}
.xa{left:781.889987px;}
.xc{left:785.309987px;}
.x3{left:792.059987px;}
.x6{left:793.139987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls11{letter-spacing:-0.216533pt;}
.lsd{letter-spacing:-0.165867pt;}
.ls14{letter-spacing:-0.158933pt;}
.ls10{letter-spacing:-0.142933pt;}
.ls17{letter-spacing:-0.136533pt;}
.ls7{letter-spacing:-0.120000pt;}
.ls9{letter-spacing:-0.107733pt;}
.ls13{letter-spacing:-0.082133pt;}
.ls6{letter-spacing:-0.080000pt;}
.ls8{letter-spacing:-0.075200pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.040320pt;}
.lse{letter-spacing:0.043520pt;}
.lsa{letter-spacing:0.065920pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.ls5{letter-spacing:0.128000pt;}
.lsc{letter-spacing:0.154133pt;}
.ls12{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.177067pt;}
.ls0{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.333120pt;}
.ls16{letter-spacing:42.423680pt;}
.ls15{letter-spacing:71.863680pt;}
.wsb{word-spacing:-53.440000pt;}
.ws4{word-spacing:-12.883200pt;}
.ws8{word-spacing:-12.775467pt;}
.wsa{word-spacing:-11.933867pt;}
.ws6{word-spacing:-11.910933pt;}
.ws9{word-spacing:-11.800320pt;}
.ws2{word-spacing:-11.756800pt;}
.wsf{word-spacing:-11.620267pt;}
.wsc{word-spacing:-11.613867pt;}
.wse{word-spacing:-11.597867pt;}
.ws7{word-spacing:-11.590933pt;}
.wsd{word-spacing:-11.540267pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws5{word-spacing:0.000000pt;}
.ws3{word-spacing:3.826560pt;}
._15{margin-left:-3.600001pt;}
._e{margin-left:-2.052906pt;}
._0{margin-left:-0.986667pt;}
._3{width:0.987947pt;}
._7{width:2.538986pt;}
._1c{width:3.439469pt;}
._b{width:4.328533pt;}
._c{width:5.589014pt;}
._5{width:6.947200pt;}
._8{width:8.283200pt;}
._a{width:9.428373pt;}
._1{width:10.320320pt;}
._2{width:12.166293pt;}
._10{width:13.217707pt;}
._11{width:14.245337pt;}
._9{width:15.281600pt;}
._4{width:16.459734pt;}
._13{width:17.573867pt;}
._12{width:18.490240pt;}
._14{width:19.955305pt;}
._f{width:20.951042pt;}
._6{width:22.469333pt;}
._19{width:23.542507pt;}
._1b{width:25.116800pt;}
._1a{width:26.078720pt;}
._1d{width:27.147520pt;}
._18{width:28.216320pt;}
._d{width:29.445333pt;}
._16{width:31.903680pt;}
._17{width:33.025920pt;}
._27{width:52.531520pt;}
._28{width:54.027840pt;}
._24{width:58.970880pt;}
._25{width:59.877867pt;}
._29{width:73.825387pt;}
._1f{width:80.213440pt;}
._1e{width:81.335680pt;}
._26{width:209.196480pt;}
._2a{width:323.579200pt;}
._22{width:856.507627pt;}
._23{width:903.777280pt;}
._21{width:1015.573760pt;}
._20{width:2135.302080pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.440000pt;}
.fs3{font-size:40.000000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.440000pt;}
.fs5{font-size:58.560000pt;}
.fs4{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:65.226667pt;}
.y29{bottom:65.946667pt;}
.y1{bottom:90.346667pt;}
.y111{bottom:103.546667pt;}
.yee{bottom:105.466667pt;}
.y166{bottom:105.786667pt;}
.yd7{bottom:107.946667pt;}
.y75{bottom:109.946667pt;}
.y13b{bottom:110.266667pt;}
.y96{bottom:112.746667pt;}
.y100{bottom:113.466667pt;}
.y110{bottom:119.226667pt;}
.yed{bottom:121.066667pt;}
.y165{bottom:121.466667pt;}
.yd6{bottom:123.546667pt;}
.y74{bottom:125.546667pt;}
.y13a{bottom:125.946667pt;}
.y95{bottom:128.346667pt;}
.yff{bottom:129.066667pt;}
.y11d{bottom:129.466667pt;}
.y5c{bottom:132.426667pt;}
.y10f{bottom:134.826667pt;}
.yec{bottom:136.746667pt;}
.y164{bottom:137.066667pt;}
.yd5{bottom:139.226667pt;}
.y73{bottom:141.226667pt;}
.y139{bottom:141.546667pt;}
.y27{bottom:141.946667pt;}
.yfe{bottom:144.746667pt;}
.y11c{bottom:145.066667pt;}
.y17c{bottom:145.866667pt;}
.y5b{bottom:148.026667pt;}
.y10e{bottom:150.426667pt;}
.y1ac{bottom:151.706667pt;}
.yeb{bottom:152.346667pt;}
.y163{bottom:152.746667pt;}
.yd4{bottom:154.826667pt;}
.y72{bottom:156.826667pt;}
.y138{bottom:157.226667pt;}
.y26{bottom:157.626667pt;}
.y94{bottom:159.946667pt;}
.yfd{bottom:160.346667pt;}
.y11b{bottom:160.746667pt;}
.y17b{bottom:161.466667pt;}
.y5a{bottom:163.706667pt;}
.y10d{bottom:166.106667pt;}
.y1ab{bottom:167.386667pt;}
.yea{bottom:167.946667pt;}
.y162{bottom:168.346667pt;}
.yd3{bottom:170.426667pt;}
.y71{bottom:172.426667pt;}
.y137{bottom:172.826667pt;}
.y25{bottom:173.226667pt;}
.y93{bottom:175.626667pt;}
.yfc{bottom:175.946667pt;}
.y11a{bottom:176.346667pt;}
.y17a{bottom:177.146667pt;}
.y59{bottom:179.306667pt;}
.y10c{bottom:181.706667pt;}
.ye9{bottom:183.626667pt;}
.y161{bottom:183.946667pt;}
.yd2{bottom:186.106667pt;}
.y70{bottom:188.106667pt;}
.y136{bottom:188.426667pt;}
.y24{bottom:188.826667pt;}
.y1aa{bottom:190.986667pt;}
.y92{bottom:191.226667pt;}
.yfb{bottom:191.626667pt;}
.y119{bottom:191.946667pt;}
.y179{bottom:192.746667pt;}
.y58{bottom:194.906667pt;}
.y10b{bottom:197.386667pt;}
.ye8{bottom:199.226667pt;}
.y160{bottom:199.626667pt;}
.yd1{bottom:201.706667pt;}
.y135{bottom:204.106667pt;}
.y23{bottom:204.506667pt;}
.y1a9{bottom:206.666667pt;}
.y91{bottom:206.826667pt;}
.yba{bottom:207.226667pt;}
.y118{bottom:207.626667pt;}
.y178{bottom:208.426667pt;}
.y57{bottom:210.586667pt;}
.y6f{bottom:211.706667pt;}
.y10a{bottom:212.986667pt;}
.y15f{bottom:215.226667pt;}
.yd0{bottom:217.386667pt;}
.y22{bottom:220.106667pt;}
.y1a8{bottom:222.266667pt;}
.y90{bottom:222.506667pt;}
.yb9{bottom:222.826667pt;}
.y117{bottom:223.226667pt;}
.y177{bottom:224.026667pt;}
.y56{bottom:226.186667pt;}
.y109{bottom:228.586667pt;}
.y15e{bottom:230.826667pt;}
.ycf{bottom:232.986667pt;}
.y134{bottom:235.706667pt;}
.y21{bottom:235.786667pt;}
.y8f{bottom:238.106667pt;}
.yb8{bottom:238.506667pt;}
.yfa{bottom:238.826667pt;}
.y176{bottom:239.626667pt;}
.y55{bottom:241.866667pt;}
.y6e{bottom:243.626667pt;}
.y108{bottom:244.266667pt;}
.y1a7{bottom:245.866667pt;}
.y15d{bottom:246.506667pt;}
.yce{bottom:248.586667pt;}
.y133{bottom:251.386667pt;}
.y8e{bottom:253.786667pt;}
.yb7{bottom:254.106667pt;}
.ye7{bottom:254.506667pt;}
.y175{bottom:255.306667pt;}
.y54{bottom:257.466667pt;}
.y107{bottom:259.866667pt;}
.y1a6{bottom:261.546667pt;}
.y15c{bottom:262.106667pt;}
.y132{bottom:266.986667pt;}
.y20{bottom:267.386667pt;}
.y8d{bottom:269.386667pt;}
.yb6{bottom:269.786667pt;}
.ye6{bottom:270.106667pt;}
.y174{bottom:270.906667pt;}
.y53{bottom:273.066667pt;}
.y106{bottom:275.546667pt;}
.y1a5{bottom:277.146667pt;}
.y15b{bottom:277.786667pt;}
.ycd{bottom:280.266667pt;}
.y131{bottom:282.586667pt;}
.y1f{bottom:282.986667pt;}
.y8c{bottom:284.986667pt;}
.yb5{bottom:285.386667pt;}
.ye5{bottom:285.786667pt;}
.y6d{bottom:286.586667pt;}
.y105{bottom:291.146667pt;}
.y1a4{bottom:292.826667pt;}
.y15a{bottom:293.386667pt;}
.ycc{bottom:295.866667pt;}
.y130{bottom:298.266667pt;}
.y1e{bottom:298.666667pt;}
.y8b{bottom:300.666667pt;}
.yb4{bottom:300.986667pt;}
.ye4{bottom:301.386667pt;}
.y173{bottom:302.186667pt;}
.y52{bottom:304.746667pt;}
.ycb{bottom:311.546667pt;}
.y12f{bottom:313.866667pt;}
.y1d{bottom:314.266667pt;}
.y104{bottom:314.746667pt;}
.y6c{bottom:315.226667pt;}
.y8a{bottom:316.266667pt;}
.y1a3{bottom:316.426667pt;}
.yb3{bottom:316.666667pt;}
.ye3{bottom:316.986667pt;}
.y172{bottom:317.786667pt;}
.y51{bottom:320.346667pt;}
.yca{bottom:327.146667pt;}
.y12e{bottom:329.546667pt;}
.y1c{bottom:329.946667pt;}
.y1a2{bottom:332.026667pt;}
.yb2{bottom:332.266667pt;}
.ye2{bottom:332.666667pt;}
.y171{bottom:333.466667pt;}
.y50{bottom:335.946667pt;}
.yc9{bottom:342.746667pt;}
.y12d{bottom:345.146667pt;}
.y1b{bottom:345.546667pt;}
.y103{bottom:346.666667pt;}
.y89{bottom:347.946667pt;}
.ye1{bottom:348.266667pt;}
.y159{bottom:348.666667pt;}
.y170{bottom:349.066667pt;}
.y4f{bottom:351.626667pt;}
.y1a1{bottom:355.706667pt;}
.yc8{bottom:358.426667pt;}
.y12c{bottom:360.746667pt;}
.y1a{bottom:361.146667pt;}
.y88{bottom:363.546667pt;}
.ye0{bottom:363.946667pt;}
.y158{bottom:364.266667pt;}
.y16f{bottom:364.666667pt;}
.y4e{bottom:367.226667pt;}
.y1a0{bottom:371.306667pt;}
.yc7{bottom:374.026667pt;}
.y12b{bottom:376.426667pt;}
.y87{bottom:379.146667pt;}
.ydf{bottom:379.546667pt;}
.y157{bottom:379.946667pt;}
.y16e{bottom:380.346667pt;}
.y4d{bottom:382.906667pt;}
.y19{bottom:385.066667pt;}
.y19f{bottom:386.986667pt;}
.y102{bottom:389.626667pt;}
.yc6{bottom:389.706667pt;}
.y12a{bottom:392.026667pt;}
.y86{bottom:394.826667pt;}
.yde{bottom:395.146667pt;}
.y156{bottom:395.546667pt;}
.y16d{bottom:395.946667pt;}
.y4c{bottom:398.506667pt;}
.y19e{bottom:402.586667pt;}
.yc5{bottom:405.306667pt;}
.y129{bottom:407.706667pt;}
.y85{bottom:410.426667pt;}
.yb1{bottom:410.826667pt;}
.y155{bottom:411.146667pt;}
.y16c{bottom:411.626667pt;}
.y4b{bottom:414.106667pt;}
.y101{bottom:418.293333pt;}
.yc4{bottom:420.933333pt;}
.y128{bottom:423.333333pt;}
.y84{bottom:426.133333pt;}
.y19d{bottom:426.213333pt;}
.yb0{bottom:426.453333pt;}
.y154{bottom:426.853333pt;}
.y16b{bottom:427.253333pt;}
.y18{bottom:428.053333pt;}
.y4a{bottom:429.813333pt;}
.yc3{bottom:436.613333pt;}
.y127{bottom:438.933333pt;}
.y83{bottom:441.733333pt;}
.y19c{bottom:441.893333pt;}
.yaf{bottom:442.133333pt;}
.y153{bottom:442.453333pt;}
.y16a{bottom:442.853333pt;}
.y17{bottom:443.973333pt;}
.yc2{bottom:452.213333pt;}
.y126{bottom:454.613333pt;}
.y82{bottom:457.333333pt;}
.y19b{bottom:457.493333pt;}
.yae{bottom:457.733333pt;}
.y13e{bottom:458.133333pt;}
.y169{bottom:458.533333pt;}
.y49{bottom:461.413333pt;}
.yc1{bottom:467.813333pt;}
.y125{bottom:470.213333pt;}
.y81{bottom:473.013333pt;}
.y19a{bottom:473.093333pt;}
.yad{bottom:473.333333pt;}
.y13d{bottom:473.733333pt;}
.y16{bottom:476.853333pt;}
.y48{bottom:477.093333pt;}
.yc0{bottom:483.493333pt;}
.y124{bottom:485.813333pt;}
.y80{bottom:488.613333pt;}
.yac{bottom:489.013333pt;}
.y116{bottom:489.333333pt;}
.y168{bottom:490.133333pt;}
.y15{bottom:492.453333pt;}
.y47{bottom:492.693333pt;}
.y199{bottom:496.773333pt;}
.ybf{bottom:499.093333pt;}
.y123{bottom:501.493333pt;}
.y7f{bottom:504.293333pt;}
.yab{bottom:504.613333pt;}
.y115{bottom:505.013333pt;}
.y14{bottom:508.133333pt;}
.y46{bottom:508.293333pt;}
.y198{bottom:512.373333pt;}
.y122{bottom:517.093333pt;}
.y167{bottom:518.773333pt;}
.y7e{bottom:519.893333pt;}
.yaa{bottom:520.293333pt;}
.y114{bottom:520.613333pt;}
.ybe{bottom:522.773333pt;}
.y13{bottom:523.733333pt;}
.y45{bottom:523.973333pt;}
.y197{bottom:528.053333pt;}
.yf9{bottom:528.293333pt;}
.ya9{bottom:535.893333pt;}
.y113{bottom:536.293333pt;}
.y12{bottom:539.413333pt;}
.y44{bottom:539.573333pt;}
.y121{bottom:540.773333pt;}
.y7d{bottom:543.493333pt;}
.ya8{bottom:551.493333pt;}
.y196{bottom:551.653333pt;}
.y112{bottom:551.893333pt;}
.ybd{bottom:554.693333pt;}
.y11{bottom:555.013333pt;}
.y43{bottom:555.253333pt;}
.yf8{bottom:559.893333pt;}
.ya7{bottom:567.173333pt;}
.y195{bottom:567.253333pt;}
.ydd{bottom:567.493333pt;}
.y10{bottom:570.613333pt;}
.y42{bottom:570.853333pt;}
.y120{bottom:572.693333pt;}
.y7c{bottom:575.173333pt;}
.yf7{bottom:575.493333pt;}
.ya6{bottom:582.773333pt;}
.y194{bottom:582.933333pt;}
.ydc{bottom:583.173333pt;}
.yf{bottom:586.293333pt;}
.y41{bottom:586.453333pt;}
.y7b{bottom:590.773333pt;}
.yf6{bottom:591.173333pt;}
.ybc{bottom:597.573333pt;}
.y193{bottom:598.533333pt;}
.ydb{bottom:598.773333pt;}
.ye{bottom:601.893333pt;}
.y40{bottom:602.133333pt;}
.y7a{bottom:606.453333pt;}
.yf5{bottom:606.773333pt;}
.ya5{bottom:614.453333pt;}
.y11f{bottom:615.573333pt;}
.yd{bottom:617.573333pt;}
.y3f{bottom:617.733333pt;}
.y79{bottom:622.053333pt;}
.y192{bottom:622.213333pt;}
.yf4{bottom:622.453333pt;}
.ybb{bottom:626.213333pt;}
.ya4{bottom:630.053333pt;}
.yc{bottom:633.173333pt;}
.y78{bottom:637.653333pt;}
.y191{bottom:637.813333pt;}
.yf3{bottom:638.053333pt;}
.y3e{bottom:641.653333pt;}
.y11e{bottom:644.213333pt;}
.ya3{bottom:645.653333pt;}
.yb{bottom:648.773333pt;}
.y77{bottom:653.333333pt;}
.y190{bottom:653.413333pt;}
.yf2{bottom:653.653333pt;}
.ya2{bottom:661.333333pt;}
.y76{bottom:668.933333pt;}
.y18f{bottom:669.093333pt;}
.yf1{bottom:669.333333pt;}
.ya{bottom:672.773333pt;}
.ya1{bottom:676.933333pt;}
.y3d{bottom:684.613333pt;}
.yf0{bottom:684.933333pt;}
.ya0{bottom:692.613333pt;}
.y18e{bottom:692.693333pt;}
.y152{bottom:692.933333pt;}
.y3c{bottom:700.213333pt;}
.yef{bottom:700.613333pt;}
.y9f{bottom:708.213333pt;}
.y18d{bottom:708.373333pt;}
.y151{bottom:708.613333pt;}
.y9{bottom:714.293333pt;}
.y3b{bottom:715.813333pt;}
.y6b{bottom:716.213333pt;}
.y9e{bottom:723.813333pt;}
.y150{bottom:724.213333pt;}
.y3a{bottom:731.493333pt;}
.y6a{bottom:731.813333pt;}
.y18c{bottom:732.293333pt;}
.y9d{bottom:739.493333pt;}
.y14f{bottom:739.813333pt;}
.y8{bottom:745.893333pt;}
.y39{bottom:747.093333pt;}
.y69{bottom:747.493333pt;}
.y9c{bottom:755.093333pt;}
.y14e{bottom:755.493333pt;}
.y38{bottom:762.693333pt;}
.y68{bottom:763.093333pt;}
.y9b{bottom:770.693333pt;}
.y14d{bottom:771.093333pt;}
.y18b{bottom:775.173333pt;}
.y7{bottom:777.733333pt;}
.y37{bottom:778.373333pt;}
.y67{bottom:778.693333pt;}
.y9a{bottom:786.373333pt;}
.y14c{bottom:786.693333pt;}
.y18a{bottom:790.773333pt;}
.y36{bottom:793.973333pt;}
.y66{bottom:794.373333pt;}
.y99{bottom:801.973333pt;}
.y14b{bottom:802.373333pt;}
.y189{bottom:806.453333pt;}
.y35{bottom:809.653333pt;}
.y6{bottom:809.733333pt;}
.y65{bottom:809.973333pt;}
.yda{bottom:817.653333pt;}
.y14a{bottom:817.973333pt;}
.y188{bottom:822.053333pt;}
.y64{bottom:825.653333pt;}
.yd9{bottom:833.253333pt;}
.y149{bottom:833.653333pt;}
.y187{bottom:837.733333pt;}
.y34{bottom:841.253333pt;}
.y13c{bottom:841.653333pt;}
.y5{bottom:841.813333pt;}
.yd8{bottom:848.853333pt;}
.y148{bottom:849.253333pt;}
.y186{bottom:853.333333pt;}
.y33{bottom:856.853333pt;}
.y98{bottom:857.253333pt;}
.y147{bottom:864.853333pt;}
.y185{bottom:868.933333pt;}
.y32{bottom:872.533333pt;}
.y97{bottom:872.853333pt;}
.y4{bottom:875.893333pt;}
.y146{bottom:880.533333pt;}
.y184{bottom:884.613333pt;}
.y31{bottom:888.133333pt;}
.y63{bottom:888.533333pt;}
.y145{bottom:896.133333pt;}
.y3{bottom:897.840000pt;}
.y183{bottom:900.240000pt;}
.y30{bottom:903.840000pt;}
.y62{bottom:904.160000pt;}
.y144{bottom:911.840000pt;}
.y182{bottom:915.840000pt;}
.y2f{bottom:919.440000pt;}
.y61{bottom:919.840000pt;}
.y143{bottom:927.440000pt;}
.y181{bottom:931.520000pt;}
.y2e{bottom:935.040000pt;}
.y60{bottom:935.440000pt;}
.y142{bottom:943.040000pt;}
.y180{bottom:947.120000pt;}
.y2d{bottom:950.720000pt;}
.y5f{bottom:951.040000pt;}
.y141{bottom:958.720000pt;}
.y17f{bottom:962.800000pt;}
.y2c{bottom:966.320000pt;}
.y5e{bottom:966.720000pt;}
.y140{bottom:974.320000pt;}
.y17e{bottom:978.400000pt;}
.y5d{bottom:982.320000pt;}
.y13f{bottom:990.000000pt;}
.y2b{bottom:998.000000pt;}
.y17d{bottom:1002.320000pt;}
.y2a{bottom:1013.600000pt;}
.y28{bottom:1061.600000pt;}
.h2{height:26.686562pt;}
.h3{height:33.867188pt;}
.h6{height:45.246562pt;}
.h5{height:49.581562pt;}
.h9{height:54.927899pt;}
.h8{height:55.631875pt;}
.h7{height:60.961875pt;}
.h4{height:63.128437pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.480000pt;}
.xd{left:74.479988pt;}
.x7{left:87.679988pt;}
.xb{left:88.639988pt;}
.xe{left:98.879988pt;}
.x5{left:111.439988pt;}
.x2{left:180.266655pt;}
.x9{left:197.546655pt;}
.x4{left:692.053322pt;}
.x8{left:694.053322pt;}
.xa{left:695.013322pt;}
.xc{left:698.053322pt;}
.x3{left:704.053322pt;}
.x6{left:705.013322pt;}
}




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