
    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_af58404a4e6d161ed51c7e3f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2ed7abe1d7dddf69636d2893.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_4f604e25e45f691898a73a28.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_b936bb4aebf5b51aa50df1d2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4ce3e8651c6296aa76860f23.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0c7ba53f4d48b11696ea8867.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2a481acc81c04393164e7d8a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_0b45fbf02bc6a61075064447.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_efa3bdc060cf7cb33fbffc96.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.691406;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_eec876a48d353439c2b7c654.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.104004;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);}
.v1{vertical-align:-76.320000px;}
.v3{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.ls1c{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.457800px;}
.ls8{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.288000px;}
.ls1d{letter-spacing:-0.223800px;}
.lsa{letter-spacing:-0.216000px;}
.ls12{letter-spacing:-0.144000px;}
.ls5{letter-spacing:-0.109200px;}
.ls1b{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.018000px;}
.ls13{letter-spacing:0.072000px;}
.ls11{letter-spacing:0.119520px;}
.lsb{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.259800px;}
.ls3{letter-spacing:0.259920px;}
.lsd{letter-spacing:0.305400px;}
.ls1{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.480000px;}
.ls19{letter-spacing:3.600000px;}
.ls1a{letter-spacing:11.520000px;}
.ls16{letter-spacing:21.744000px;}
.ls17{letter-spacing:62.784000px;}
.ls14{letter-spacing:64.200000px;}
.ls15{letter-spacing:71.226720px;}
.lse{letter-spacing:846.120000px;}
.ls0{letter-spacing:2956.505280px;}
.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;}
}
.ws0{word-spacing:-18.305520px;}
.wsa{word-spacing:-18.216000px;}
.wsf{word-spacing:-18.072000px;}
.ws6{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.928000px;}
.wsd{word-spacing:-17.856000px;}
.wsc{word-spacing:-17.784000px;}
.wsb{word-spacing:-17.712000px;}
.ws7{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws3{word-spacing:-15.199800px;}
.ws2{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.479800px;}
.wse{word-spacing:-13.518000px;}
.ws11{word-spacing:-11.836200px;}
.ws8{word-spacing:-9.720000px;}
.ws9{word-spacing:0.000000px;}
._1d{margin-left:-2.622720px;}
._0{margin-left:-1.363200px;}
._1{width:1.200000px;}
._a{width:2.715840px;}
._8{width:4.040640px;}
._9{width:5.299200px;}
._5{width:6.690240px;}
._6{width:7.813440px;}
._d{width:9.227520px;}
._13{width:10.581120px;}
._7{width:11.749440px;}
._3{width:13.366800px;}
._c{width:14.917920px;}
._2{width:15.953400px;}
._e{width:17.670720px;}
._b{width:18.745920px;}
._18{width:19.780320px;}
._1c{width:20.796000px;}
._12{width:22.082160px;}
._11{width:23.110800px;}
._f{width:24.111360px;}
._10{width:25.655520px;}
._19{width:27.144000px;}
._1b{width:28.224000px;}
._1e{width:30.243840px;}
._15{width:31.966080px;}
._14{width:33.025920px;}
._1a{width:34.027200px;}
._17{width:40.280640px;}
._16{width:41.411520px;}
._20{width:138.942000px;}
._1f{width:182.865600px;}
._4{width:2060.772000px;}
.fc3{color:rgb(255,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(12,12,12);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:38.880000px;}
.fs4{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:108.000000px;}
.y9{bottom:-12.960000px;}
.y0{bottom:0.000000px;}
.y117{bottom:3.240000px;}
.yf3{bottom:3.405000px;}
.y8c{bottom:3.420000px;}
.y9a{bottom:3.600000px;}
.yf8{bottom:3.765000px;}
.y91{bottom:3.780000px;}
.yec{bottom:4.320000px;}
.y8{bottom:5.760000px;}
.ydb{bottom:6.120000px;}
.ye1{bottom:10.080000px;}
.y130{bottom:12.240000px;}
.y12c{bottom:12.420000px;}
.yed{bottom:15.645000px;}
.ye5{bottom:18.540000px;}
.y139{bottom:18.765000px;}
.ya4{bottom:18.900000px;}
.y116{bottom:20.520000px;}
.yf2{bottom:20.685000px;}
.y99{bottom:20.880000px;}
.yf6{bottom:21.045000px;}
.y94{bottom:21.060000px;}
.yeb{bottom:21.600000px;}
.yff{bottom:23.760000px;}
.yda{bottom:25.950000px;}
.ye0{bottom:30.060000px;}
.y4{bottom:30.960000px;}
.ye4{bottom:35.820000px;}
.y115{bottom:37.830000px;}
.yf1{bottom:37.965000px;}
.y9c{bottom:38.160000px;}
.y11a{bottom:38.190000px;}
.yf5{bottom:38.325000px;}
.y98{bottom:39.090000px;}
.y129{bottom:39.240000px;}
.y8f{bottom:39.420000px;}
.yfe{bottom:41.040000px;}
.y105{bottom:43.740000px;}
.y101{bottom:46.440000px;}
.ydf{bottom:47.340000px;}
.ye3{bottom:52.920000px;}
.y7{bottom:54.360000px;}
.y114{bottom:55.110000px;}
.yf0{bottom:55.245000px;}
.ye9{bottom:55.440000px;}
.y119{bottom:55.470000px;}
.yf4{bottom:55.605000px;}
.y97{bottom:56.370000px;}
.y128{bottom:56.520000px;}
.y8e{bottom:56.700000px;}
.y5{bottom:57.960000px;}
.yfd{bottom:58.140000px;}
.y3{bottom:60.300000px;}
.y104{bottom:61.020000px;}
.y133{bottom:65.700000px;}
.yde{bottom:67.320000px;}
.ye2{bottom:70.200000px;}
.y6{bottom:71.640000px;}
.yef{bottom:72.345000px;}
.y113{bottom:72.390000px;}
.y110{bottom:72.720000px;}
.y118{bottom:72.750000px;}
.y96{bottom:73.470000px;}
.y9f{bottom:73.800000px;}
.y103{bottom:77.940000px;}
.yfc{bottom:77.970000px;}
.y132{bottom:82.980000px;}
.ydd{bottom:87.120000px;}
.y10f{bottom:90.000000px;}
.y9e{bottom:91.080000px;}
.y10e{bottom:107.100000px;}
.y127{bottom:114.300000px;}
.yaf{bottom:117.000000px;}
.yfb{bottom:117.720000px;}
.y152{bottom:118.260000px;}
.y8a{bottom:119.880000px;}
.y6b{bottom:122.580000px;}
.y37{bottom:123.840000px;}
.y10d{bottom:124.380000px;}
.y16b{bottom:126.900000px;}
.y12d{bottom:132.120000px;}
.ye7{bottom:132.870000px;}
.yba{bottom:133.020000px;}
.yd7{bottom:134.100000px;}
.y10c{bottom:141.705000px;}
.y36{bottom:145.620000px;}
.yae{bottom:148.140000px;}
.y151{bottom:149.400000px;}
.y89{bottom:151.020000px;}
.y6a{bottom:153.900000px;}
.y16a{bottom:158.040000px;}
.y10b{bottom:158.985000px;}
.yb9{bottom:163.980000px;}
.yd6{bottom:165.060000px;}
.y12b{bottom:167.400000px;}
.y35{bottom:169.740000px;}
.y188{bottom:171.000000px;}
.y10a{bottom:176.265000px;}
.yad{bottom:179.100000px;}
.y150{bottom:180.360000px;}
.y88{bottom:181.980000px;}
.y34{bottom:183.060000px;}
.y69{bottom:185.040000px;}
.y169{bottom:189.000000px;}
.y109{bottom:193.545000px;}
.y18b{bottom:194.070000px;}
.yb8{bottom:195.150000px;}
.yd5{bottom:196.230000px;}
.y187{bottom:202.170000px;}
.y12a{bottom:202.725000px;}
.y33{bottom:207.210000px;}
.yac{bottom:210.270000px;}
.yfa{bottom:210.285000px;}
.y14f{bottom:211.530000px;}
.y87{bottom:213.150000px;}
.y68{bottom:216.030000px;}
.y168{bottom:220.170000px;}
.y32{bottom:220.710000px;}
.y126{bottom:220.725000px;}
.y18a{bottom:225.030000px;}
.yd4{bottom:227.190000px;}
.y186{bottom:233.130000px;}
.yab{bottom:241.230000px;}
.y14e{bottom:242.490000px;}
.yb7{bottom:243.750000px;}
.y86{bottom:244.110000px;}
.y31{bottom:244.650000px;}
.y107{bottom:246.465000px;}
.y67{bottom:247.170000px;}
.y167{bottom:251.130000px;}
.y189{bottom:256.170000px;}
.y30{bottom:258.150000px;}
.yd3{bottom:258.330000px;}
.yf9{bottom:260.490000px;}
.y185{bottom:264.270000px;}
.y125{bottom:270.570000px;}
.yaa{bottom:272.010000px;}
.y14d{bottom:273.630000px;}
.y85{bottom:275.250000px;}
.yf7{bottom:277.245000px;}
.y66{bottom:278.130000px;}
.y2f{bottom:282.270000px;}
.yb6{bottom:287.130000px;}
.yd2{bottom:289.290000px;}
.y2e{bottom:292.890000px;}
.y184{bottom:295.230000px;}
.y124{bottom:301.710000px;}
.ya9{bottom:303.330000px;}
.y14c{bottom:304.590000px;}
.y84{bottom:306.210000px;}
.y65{bottom:309.270000px;}
.yee{bottom:312.525000px;}
.y166{bottom:313.230000px;}
.y2d{bottom:315.210000px;}
.yb5{bottom:318.270000px;}
.yd1{bottom:320.430000px;}
.y183{bottom:326.370000px;}
.y123{bottom:332.670000px;}
.ya8{bottom:334.470000px;}
.y14b{bottom:335.730000px;}
.y83{bottom:337.350000px;}
.y64{bottom:340.230000px;}
.y2c{bottom:342.030000px;}
.y165{bottom:344.370000px;}
.yb4{bottom:349.230000px;}
.yd0{bottom:351.390000px;}
.y182{bottom:357.330000px;}
.y122{bottom:363.810000px;}
.ya7{bottom:365.430000px;}
.y14a{bottom:366.690000px;}
.y82{bottom:368.310000px;}
.y2b{bottom:370.470000px;}
.y63{bottom:371.370000px;}
.y164{bottom:375.330000px;}
.yb3{bottom:380.370000px;}
.ycf{bottom:382.530000px;}
.y181{bottom:388.470000px;}
.y2a{bottom:389.370000px;}
.y121{bottom:394.770000px;}
.ya6{bottom:396.570000px;}
.y149{bottom:397.830000px;}
.y81{bottom:399.450000px;}
.ye6{bottom:399.645000px;}
.y62{bottom:402.330000px;}
.y163{bottom:406.470000px;}
.yb2{bottom:411.330000px;}
.y29{bottom:411.510000px;}
.yce{bottom:413.490000px;}
.y180{bottom:419.430000px;}
.y120{bottom:425.910000px;}
.ya5{bottom:427.530000px;}
.y148{bottom:428.835000px;}
.y28{bottom:430.455000px;}
.y61{bottom:433.515000px;}
.y162{bottom:437.475000px;}
.yea{bottom:441.615000px;}
.yb1{bottom:442.515000px;}
.ya3{bottom:443.955000px;}
.ycd{bottom:444.495000px;}
.y27{bottom:449.535000px;}
.y17f{bottom:450.615000px;}
.y11f{bottom:456.915000px;}
.y147{bottom:459.795000px;}
.y80{bottom:461.235000px;}
.y60{bottom:464.475000px;}
.y26{bottom:468.435000px;}
.y161{bottom:468.615000px;}
.yb0{bottom:473.475000px;}
.ycc{bottom:475.635000px;}
.y9d{bottom:475.815000px;}
.ye8{bottom:477.435000px;}
.y17e{bottom:481.575000px;}
.y25{bottom:487.335000px;}
.y11e{bottom:488.055000px;}
.y146{bottom:490.935000px;}
.y5f{bottom:495.615000px;}
.y160{bottom:499.575000px;}
.y7f{bottom:504.615000px;}
.y24{bottom:506.415000px;}
.ycb{bottom:506.595000px;}
.ya2{bottom:511.095000px;}
.y17d{bottom:512.715000px;}
.y145{bottom:521.895000px;}
.y23{bottom:525.315000px;}
.y5e{bottom:526.575000px;}
.y15f{bottom:530.715000px;}
.y7e{bottom:535.575000px;}
.y11d{bottom:536.655000px;}
.yca{bottom:537.735000px;}
.y17c{bottom:543.675000px;}
.y22{bottom:544.395000px;}
.ya1{bottom:546.375000px;}
.ydc{bottom:547.095000px;}
.y144{bottom:553.035000px;}
.y5d{bottom:557.715000px;}
.y15e{bottom:561.675000px;}
.y21{bottom:563.295000px;}
.y7d{bottom:566.715000px;}
.y18c{bottom:567.795000px;}
.yc9{bottom:568.695000px;}
.y17b{bottom:574.815000px;}
.y20{bottom:582.375000px;}
.y143{bottom:583.995000px;}
.y11c{bottom:585.795000px;}
.y5c{bottom:588.675000px;}
.y15d{bottom:592.815000px;}
.y7c{bottom:597.675000px;}
.ya0{bottom:598.755000px;}
.yc8{bottom:599.835000px;}
.y1f{bottom:601.275000px;}
.y11b{bottom:602.535000px;}
.y17a{bottom:605.775000px;}
.y142{bottom:615.135000px;}
.y5b{bottom:619.815000px;}
.y15c{bottom:623.775000px;}
.y1e{bottom:625.575000px;}
.y7b{bottom:628.815000px;}
.yc7{bottom:630.795000px;}
.y95{bottom:634.035000px;}
.y179{bottom:636.915000px;}
.y112{bottom:637.815000px;}
.y141{bottom:646.095000px;}
.yd9{bottom:648.795000px;}
.y5a{bottom:650.775000px;}
.y15b{bottom:654.915000px;}
.y1d{bottom:657.435000px;}
.y7a{bottom:659.775000px;}
.yc6{bottom:661.935000px;}
.y178{bottom:667.905000px;}
.y9b{bottom:669.345000px;}
.y1c{bottom:676.365000px;}
.y140{bottom:677.265000px;}
.y59{bottom:681.945000px;}
.y15a{bottom:685.905000px;}
.yd8{bottom:689.325000px;}
.y79{bottom:690.945000px;}
.yc5{bottom:692.925000px;}
.y1b{bottom:698.325000px;}
.y177{bottom:699.045000px;}
.y13f{bottom:708.225000px;}
.y58{bottom:712.905000px;}
.y159{bottom:717.045000px;}
.y1a{bottom:717.405000px;}
.y78{bottom:721.905000px;}
.y4a{bottom:722.805000px;}
.yc4{bottom:724.065000px;}
.y106{bottom:724.785000px;}
.y176{bottom:730.005000px;}
.y19{bottom:736.305000px;}
.y13e{bottom:739.365000px;}
.y111{bottom:742.785000px;}
.y57{bottom:744.045000px;}
.y158{bottom:748.005000px;}
.y77{bottom:753.045000px;}
.yc3{bottom:755.025000px;}
.y18{bottom:755.385000px;}
.y8d{bottom:757.005000px;}
.y175{bottom:761.145000px;}
.y13d{bottom:770.325000px;}
.y49{bottom:772.125000px;}
.y17{bottom:774.285000px;}
.y56{bottom:775.005000px;}
.y108{bottom:778.065000px;}
.y157{bottom:779.145000px;}
.y76{bottom:784.005000px;}
.yc2{bottom:786.165000px;}
.y174{bottom:792.105000px;}
.y93{bottom:792.285000px;}
.y16{bottom:793.365000px;}
.y48{bottom:794.805000px;}
.y13c{bottom:801.465000px;}
.y55{bottom:806.145000px;}
.y156{bottom:810.105000px;}
.y15{bottom:812.265000px;}
.y47{bottom:813.705000px;}
.y75{bottom:815.145000px;}
.y173{bottom:823.245000px;}
.y92{bottom:827.565000px;}
.y14{bottom:831.165000px;}
.y13b{bottom:832.425000px;}
.yc1{bottom:834.765000px;}
.y46{bottom:835.665000px;}
.y54{bottom:837.105000px;}
.y155{bottom:841.245000px;}
.y90{bottom:845.565000px;}
.y74{bottom:846.105000px;}
.y13{bottom:850.245000px;}
.y172{bottom:854.205000px;}
.y45{bottom:854.745000px;}
.y8b{bottom:863.565000px;}
.yc0{bottom:866.265000px;}
.y53{bottom:868.245000px;}
.y12{bottom:869.145000px;}
.y154{bottom:872.205000px;}
.y44{bottom:873.645000px;}
.y73{bottom:877.245000px;}
.y13a{bottom:881.565000px;}
.y171{bottom:885.345000px;}
.y11{bottom:888.225000px;}
.y43{bottom:892.725000px;}
.ybf{bottom:897.225000px;}
.y138{bottom:897.945000px;}
.y52{bottom:899.205000px;}
.y10{bottom:907.170000px;}
.y72{bottom:908.250000px;}
.y42{bottom:911.670000px;}
.y153{bottom:912.030000px;}
.y170{bottom:916.350000px;}
.ybe{bottom:928.410000px;}
.y131{bottom:929.670000px;}
.y51{bottom:930.390000px;}
.y41{bottom:930.570000px;}
.yf{bottom:931.470000px;}
.y71{bottom:939.390000px;}
.y16f{bottom:947.490000px;}
.y40{bottom:949.650000px;}
.ybd{bottom:959.370000px;}
.y50{bottom:961.350000px;}
.ye{bottom:964.590000px;}
.y137{bottom:964.950000px;}
.y3f{bottom:968.550000px;}
.y70{bottom:970.350000px;}
.y102{bottom:985.830000px;}
.y16e{bottom:987.090000px;}
.y3e{bottom:987.630000px;}
.y4f{bottom:992.490000px;}
.yd{bottom:998.070000px;}
.y136{bottom:1000.230000px;}
.y6f{bottom:1001.490000px;}
.y3d{bottom:1006.530000px;}
.ybc{bottom:1008.150000px;}
.y4e{bottom:1023.450000px;}
.y3c{bottom:1025.430000px;}
.yc{bottom:1029.030000px;}
.y6e{bottom:1032.450000px;}
.y135{bottom:1035.510000px;}
.y3b{bottom:1044.510000px;}
.y16d{bottom:1045.590000px;}
.ybb{bottom:1048.290000px;}
.y4d{bottom:1054.590000px;}
.y6d{bottom:1063.590000px;}
.y3a{bottom:1068.810000px;}
.yb{bottom:1070.430000px;}
.y134{bottom:1070.790000px;}
.y100{bottom:1078.350000px;}
.y4c{bottom:1085.550000px;}
.y12f{bottom:1088.790000px;}
.y16c{bottom:1094.190000px;}
.y6c{bottom:1094.550000px;}
.y39{bottom:1101.750000px;}
.ya{bottom:1117.050000px;}
.y12e{bottom:1124.070000px;}
.y4b{bottom:1125.330000px;}
.y38{bottom:1125.690000px;}
.y2{bottom:1145.700000px;}
.y1{bottom:1247.760000px;}
.h35{height:17.085000px;}
.h34{height:17.098500px;}
.h29{height:17.265000px;}
.h11{height:17.280000px;}
.h37{height:30.982500px;}
.h1c{height:31.125000px;}
.h1b{height:34.365000px;}
.h15{height:34.380000px;}
.h19{height:34.545000px;}
.h33{height:34.558500px;}
.h13{height:34.560000px;}
.h17{height:34.590000px;}
.h32{height:34.596000px;}
.h25{height:35.085000px;}
.hd{height:38.139609px;}
.h1f{height:39.810000px;}
.h26{height:41.241000px;}
.hf{height:43.304062px;}
.h1a{height:51.645000px;}
.h16{height:51.660000px;}
.h28{height:53.077852px;}
.h30{height:53.573906px;}
.h1d{height:54.421875px;}
.he{height:58.621992px;}
.h6{height:58.651172px;}
.h5{height:60.226875px;}
.h22{height:62.327813px;}
.h2b{height:62.805000px;}
.h1e{height:64.546875px;}
.h7{height:65.010937px;}
.hc{height:66.757500px;}
.h24{height:68.925000px;}
.h2{height:68.956875px;}
.h3{height:69.086250px;}
.h9{height:70.628906px;}
.h10{height:70.664062px;}
.h4{height:71.640000px;}
.hb{height:72.562500px;}
.h20{height:74.953125px;}
.ha{height:80.464922px;}
.h27{height:86.205000px;}
.h2f{height:86.250000px;}
.h2c{height:91.785000px;}
.h2a{height:91.836000px;}
.h21{height:100.965000px;}
.h31{height:105.696000px;}
.h12{height:105.840000px;}
.h8{height:108.843750px;}
.h14{height:122.250000px;}
.h23{height:146.721000px;}
.h18{height:157.485000px;}
.h36{height:158.385000px;}
.h2e{height:207.030000px;}
.h2d{height:260.310000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w14{width:104.745000px;}
.w12{width:104.925000px;}
.w13{width:104.961000px;}
.wd{width:114.469500px;}
.w9{width:125.449500px;}
.w3{width:131.745000px;}
.wf{width:149.074500px;}
.w8{width:278.475000px;}
.wc{width:292.935000px;}
.w10{width:314.520000px;}
.w11{width:314.655000px;}
.wb{width:345.079500px;}
.w7{width:359.524500px;}
.w4{width:453.150000px;}
.wa{width:512.550000px;}
.we{width:523.530000px;}
.w5{width:584.910000px;}
.w6{width:638.010000px;}
.w2{width:777.420000px;}
.w15{width:778.275000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:2.329500px;}
.xb{left:8.085000px;}
.x4{left:13.140000px;}
.xe{left:15.289500px;}
.x11{left:17.625000px;}
.x16{left:18.709500px;}
.x1b{left:21.598500px;}
.x8{left:29.145000px;}
.x17{left:34.903500px;}
.x1f{left:38.325000px;}
.xf{left:42.283500px;}
.x12{left:44.625000px;}
.x1a{left:57.421500px;}
.x18{left:61.543500px;}
.x3{left:63.720000px;}
.x1{left:65.520000px;}
.x5{left:76.860000px;}
.x22{left:86.760000px;}
.x6{left:97.596000px;}
.x2{left:113.076000px;}
.xa{left:116.130000px;}
.xc{left:127.486500px;}
.x1e{left:136.065000px;}
.x7{left:150.525000px;}
.x1c{left:206.505000px;}
.x14{left:208.468500px;}
.xd{left:241.048500px;}
.x13{left:252.945000px;}
.x9{left:282.285000px;}
.x19{left:472.575000px;}
.x10{left:487.020000px;}
.x1d{left:521.040000px;}
.x20{left:625.980000px;}
.x21{left:730.950000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v3{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.ls1c{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.406933pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.256000pt;}
.ls1d{letter-spacing:-0.198933pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:-0.097067pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.016000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls11{letter-spacing:0.106240pt;}
.lsb{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.230933pt;}
.ls3{letter-spacing:0.231040pt;}
.lsd{letter-spacing:0.271467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.426667pt;}
.ls19{letter-spacing:3.200000pt;}
.ls1a{letter-spacing:10.240000pt;}
.ls16{letter-spacing:19.328000pt;}
.ls17{letter-spacing:55.808000pt;}
.ls14{letter-spacing:57.066667pt;}
.ls15{letter-spacing:63.312640pt;}
.lse{letter-spacing:752.106667pt;}
.ls0{letter-spacing:2628.004693pt;}
.ws0{word-spacing:-16.271573pt;}
.wsa{word-spacing:-16.192000pt;}
.wsf{word-spacing:-16.064000pt;}
.ws6{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.936000pt;}
.wsd{word-spacing:-15.872000pt;}
.wsc{word-spacing:-15.808000pt;}
.wsb{word-spacing:-15.744000pt;}
.ws7{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws3{word-spacing:-13.510933pt;}
.ws2{word-spacing:-13.280000pt;}
.ws4{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.870933pt;}
.wse{word-spacing:-12.016000pt;}
.ws11{word-spacing:-10.521067pt;}
.ws8{word-spacing:-8.640000pt;}
.ws9{word-spacing:0.000000pt;}
._1d{margin-left:-2.331307pt;}
._0{margin-left:-1.211733pt;}
._1{width:1.066667pt;}
._a{width:2.414080pt;}
._8{width:3.591680pt;}
._9{width:4.710400pt;}
._5{width:5.946880pt;}
._6{width:6.945280pt;}
._d{width:8.202240pt;}
._13{width:9.405440pt;}
._7{width:10.443947pt;}
._3{width:11.881600pt;}
._c{width:13.260373pt;}
._2{width:14.180800pt;}
._e{width:15.707307pt;}
._b{width:16.663040pt;}
._18{width:17.582507pt;}
._1c{width:18.485333pt;}
._12{width:19.628587pt;}
._11{width:20.542933pt;}
._f{width:21.432320pt;}
._10{width:22.804907pt;}
._19{width:24.128000pt;}
._1b{width:25.088000pt;}
._1e{width:26.883413pt;}
._15{width:28.414293pt;}
._14{width:29.356373pt;}
._1a{width:30.246400pt;}
._17{width:35.805013pt;}
._16{width:36.810240pt;}
._20{width:123.504000pt;}
._1f{width:162.547200pt;}
._4{width:1831.797333pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:96.000000pt;}
.y9{bottom:-11.520000pt;}
.y0{bottom:0.000000pt;}
.y117{bottom:2.880000pt;}
.yf3{bottom:3.026667pt;}
.y8c{bottom:3.040000pt;}
.y9a{bottom:3.200000pt;}
.yf8{bottom:3.346667pt;}
.y91{bottom:3.360000pt;}
.yec{bottom:3.840000pt;}
.y8{bottom:5.120000pt;}
.ydb{bottom:5.440000pt;}
.ye1{bottom:8.960000pt;}
.y130{bottom:10.880000pt;}
.y12c{bottom:11.040000pt;}
.yed{bottom:13.906667pt;}
.ye5{bottom:16.480000pt;}
.y139{bottom:16.680000pt;}
.ya4{bottom:16.800000pt;}
.y116{bottom:18.240000pt;}
.yf2{bottom:18.386667pt;}
.y99{bottom:18.560000pt;}
.yf6{bottom:18.706667pt;}
.y94{bottom:18.720000pt;}
.yeb{bottom:19.200000pt;}
.yff{bottom:21.120000pt;}
.yda{bottom:23.066667pt;}
.ye0{bottom:26.720000pt;}
.y4{bottom:27.520000pt;}
.ye4{bottom:31.840000pt;}
.y115{bottom:33.626667pt;}
.yf1{bottom:33.746667pt;}
.y9c{bottom:33.920000pt;}
.y11a{bottom:33.946667pt;}
.yf5{bottom:34.066667pt;}
.y98{bottom:34.746667pt;}
.y129{bottom:34.880000pt;}
.y8f{bottom:35.040000pt;}
.yfe{bottom:36.480000pt;}
.y105{bottom:38.880000pt;}
.y101{bottom:41.280000pt;}
.ydf{bottom:42.080000pt;}
.ye3{bottom:47.040000pt;}
.y7{bottom:48.320000pt;}
.y114{bottom:48.986667pt;}
.yf0{bottom:49.106667pt;}
.ye9{bottom:49.280000pt;}
.y119{bottom:49.306667pt;}
.yf4{bottom:49.426667pt;}
.y97{bottom:50.106667pt;}
.y128{bottom:50.240000pt;}
.y8e{bottom:50.400000pt;}
.y5{bottom:51.520000pt;}
.yfd{bottom:51.680000pt;}
.y3{bottom:53.600000pt;}
.y104{bottom:54.240000pt;}
.y133{bottom:58.400000pt;}
.yde{bottom:59.840000pt;}
.ye2{bottom:62.400000pt;}
.y6{bottom:63.680000pt;}
.yef{bottom:64.306667pt;}
.y113{bottom:64.346667pt;}
.y110{bottom:64.640000pt;}
.y118{bottom:64.666667pt;}
.y96{bottom:65.306667pt;}
.y9f{bottom:65.600000pt;}
.y103{bottom:69.280000pt;}
.yfc{bottom:69.306667pt;}
.y132{bottom:73.760000pt;}
.ydd{bottom:77.440000pt;}
.y10f{bottom:80.000000pt;}
.y9e{bottom:80.960000pt;}
.y10e{bottom:95.200000pt;}
.y127{bottom:101.600000pt;}
.yaf{bottom:104.000000pt;}
.yfb{bottom:104.640000pt;}
.y152{bottom:105.120000pt;}
.y8a{bottom:106.560000pt;}
.y6b{bottom:108.960000pt;}
.y37{bottom:110.080000pt;}
.y10d{bottom:110.560000pt;}
.y16b{bottom:112.800000pt;}
.y12d{bottom:117.440000pt;}
.ye7{bottom:118.106667pt;}
.yba{bottom:118.240000pt;}
.yd7{bottom:119.200000pt;}
.y10c{bottom:125.960000pt;}
.y36{bottom:129.440000pt;}
.yae{bottom:131.680000pt;}
.y151{bottom:132.800000pt;}
.y89{bottom:134.240000pt;}
.y6a{bottom:136.800000pt;}
.y16a{bottom:140.480000pt;}
.y10b{bottom:141.320000pt;}
.yb9{bottom:145.760000pt;}
.yd6{bottom:146.720000pt;}
.y12b{bottom:148.800000pt;}
.y35{bottom:150.880000pt;}
.y188{bottom:152.000000pt;}
.y10a{bottom:156.680000pt;}
.yad{bottom:159.200000pt;}
.y150{bottom:160.320000pt;}
.y88{bottom:161.760000pt;}
.y34{bottom:162.720000pt;}
.y69{bottom:164.480000pt;}
.y169{bottom:168.000000pt;}
.y109{bottom:172.040000pt;}
.y18b{bottom:172.506667pt;}
.yb8{bottom:173.466667pt;}
.yd5{bottom:174.426667pt;}
.y187{bottom:179.706667pt;}
.y12a{bottom:180.200000pt;}
.y33{bottom:184.186667pt;}
.yac{bottom:186.906667pt;}
.yfa{bottom:186.920000pt;}
.y14f{bottom:188.026667pt;}
.y87{bottom:189.466667pt;}
.y68{bottom:192.026667pt;}
.y168{bottom:195.706667pt;}
.y32{bottom:196.186667pt;}
.y126{bottom:196.200000pt;}
.y18a{bottom:200.026667pt;}
.yd4{bottom:201.946667pt;}
.y186{bottom:207.226667pt;}
.yab{bottom:214.426667pt;}
.y14e{bottom:215.546667pt;}
.yb7{bottom:216.666667pt;}
.y86{bottom:216.986667pt;}
.y31{bottom:217.466667pt;}
.y107{bottom:219.080000pt;}
.y67{bottom:219.706667pt;}
.y167{bottom:223.226667pt;}
.y189{bottom:227.706667pt;}
.y30{bottom:229.466667pt;}
.yd3{bottom:229.626667pt;}
.yf9{bottom:231.546667pt;}
.y185{bottom:234.906667pt;}
.y125{bottom:240.506667pt;}
.yaa{bottom:241.786667pt;}
.y14d{bottom:243.226667pt;}
.y85{bottom:244.666667pt;}
.yf7{bottom:246.440000pt;}
.y66{bottom:247.226667pt;}
.y2f{bottom:250.906667pt;}
.yb6{bottom:255.226667pt;}
.yd2{bottom:257.146667pt;}
.y2e{bottom:260.346667pt;}
.y184{bottom:262.426667pt;}
.y124{bottom:268.186667pt;}
.ya9{bottom:269.626667pt;}
.y14c{bottom:270.746667pt;}
.y84{bottom:272.186667pt;}
.y65{bottom:274.906667pt;}
.yee{bottom:277.800000pt;}
.y166{bottom:278.426667pt;}
.y2d{bottom:280.186667pt;}
.yb5{bottom:282.906667pt;}
.yd1{bottom:284.826667pt;}
.y183{bottom:290.106667pt;}
.y123{bottom:295.706667pt;}
.ya8{bottom:297.306667pt;}
.y14b{bottom:298.426667pt;}
.y83{bottom:299.866667pt;}
.y64{bottom:302.426667pt;}
.y2c{bottom:304.026667pt;}
.y165{bottom:306.106667pt;}
.yb4{bottom:310.426667pt;}
.yd0{bottom:312.346667pt;}
.y182{bottom:317.626667pt;}
.y122{bottom:323.386667pt;}
.ya7{bottom:324.826667pt;}
.y14a{bottom:325.946667pt;}
.y82{bottom:327.386667pt;}
.y2b{bottom:329.306667pt;}
.y63{bottom:330.106667pt;}
.y164{bottom:333.626667pt;}
.yb3{bottom:338.106667pt;}
.ycf{bottom:340.026667pt;}
.y181{bottom:345.306667pt;}
.y2a{bottom:346.106667pt;}
.y121{bottom:350.906667pt;}
.ya6{bottom:352.506667pt;}
.y149{bottom:353.626667pt;}
.y81{bottom:355.066667pt;}
.ye6{bottom:355.240000pt;}
.y62{bottom:357.626667pt;}
.y163{bottom:361.306667pt;}
.yb2{bottom:365.626667pt;}
.y29{bottom:365.786667pt;}
.yce{bottom:367.546667pt;}
.y180{bottom:372.826667pt;}
.y120{bottom:378.586667pt;}
.ya5{bottom:380.026667pt;}
.y148{bottom:381.186667pt;}
.y28{bottom:382.626667pt;}
.y61{bottom:385.346667pt;}
.y162{bottom:388.866667pt;}
.yea{bottom:392.546667pt;}
.yb1{bottom:393.346667pt;}
.ya3{bottom:394.626667pt;}
.ycd{bottom:395.106667pt;}
.y27{bottom:399.586667pt;}
.y17f{bottom:400.546667pt;}
.y11f{bottom:406.146667pt;}
.y147{bottom:408.706667pt;}
.y80{bottom:409.986667pt;}
.y60{bottom:412.866667pt;}
.y26{bottom:416.386667pt;}
.y161{bottom:416.546667pt;}
.yb0{bottom:420.866667pt;}
.ycc{bottom:422.786667pt;}
.y9d{bottom:422.946667pt;}
.ye8{bottom:424.386667pt;}
.y17e{bottom:428.066667pt;}
.y25{bottom:433.186667pt;}
.y11e{bottom:433.826667pt;}
.y146{bottom:436.386667pt;}
.y5f{bottom:440.546667pt;}
.y160{bottom:444.066667pt;}
.y7f{bottom:448.546667pt;}
.y24{bottom:450.146667pt;}
.ycb{bottom:450.306667pt;}
.ya2{bottom:454.306667pt;}
.y17d{bottom:455.746667pt;}
.y145{bottom:463.906667pt;}
.y23{bottom:466.946667pt;}
.y5e{bottom:468.066667pt;}
.y15f{bottom:471.746667pt;}
.y7e{bottom:476.066667pt;}
.y11d{bottom:477.026667pt;}
.yca{bottom:477.986667pt;}
.y17c{bottom:483.266667pt;}
.y22{bottom:483.906667pt;}
.ya1{bottom:485.666667pt;}
.ydc{bottom:486.306667pt;}
.y144{bottom:491.586667pt;}
.y5d{bottom:495.746667pt;}
.y15e{bottom:499.266667pt;}
.y21{bottom:500.706667pt;}
.y7d{bottom:503.746667pt;}
.y18c{bottom:504.706667pt;}
.yc9{bottom:505.506667pt;}
.y17b{bottom:510.946667pt;}
.y20{bottom:517.666667pt;}
.y143{bottom:519.106667pt;}
.y11c{bottom:520.706667pt;}
.y5c{bottom:523.266667pt;}
.y15d{bottom:526.946667pt;}
.y7c{bottom:531.266667pt;}
.ya0{bottom:532.226667pt;}
.yc8{bottom:533.186667pt;}
.y1f{bottom:534.466667pt;}
.y11b{bottom:535.586667pt;}
.y17a{bottom:538.466667pt;}
.y142{bottom:546.786667pt;}
.y5b{bottom:550.946667pt;}
.y15c{bottom:554.466667pt;}
.y1e{bottom:556.066667pt;}
.y7b{bottom:558.946667pt;}
.yc7{bottom:560.706667pt;}
.y95{bottom:563.586667pt;}
.y179{bottom:566.146667pt;}
.y112{bottom:566.946667pt;}
.y141{bottom:574.306667pt;}
.yd9{bottom:576.706667pt;}
.y5a{bottom:578.466667pt;}
.y15b{bottom:582.146667pt;}
.y1d{bottom:584.386667pt;}
.y7a{bottom:586.466667pt;}
.yc6{bottom:588.386667pt;}
.y178{bottom:593.693333pt;}
.y9b{bottom:594.973333pt;}
.y1c{bottom:601.213333pt;}
.y140{bottom:602.013333pt;}
.y59{bottom:606.173333pt;}
.y15a{bottom:609.693333pt;}
.yd8{bottom:612.733333pt;}
.y79{bottom:614.173333pt;}
.yc5{bottom:615.933333pt;}
.y1b{bottom:620.733333pt;}
.y177{bottom:621.373333pt;}
.y13f{bottom:629.533333pt;}
.y58{bottom:633.693333pt;}
.y159{bottom:637.373333pt;}
.y1a{bottom:637.693333pt;}
.y78{bottom:641.693333pt;}
.y4a{bottom:642.493333pt;}
.yc4{bottom:643.613333pt;}
.y106{bottom:644.253333pt;}
.y176{bottom:648.893333pt;}
.y19{bottom:654.493333pt;}
.y13e{bottom:657.213333pt;}
.y111{bottom:660.253333pt;}
.y57{bottom:661.373333pt;}
.y158{bottom:664.893333pt;}
.y77{bottom:669.373333pt;}
.yc3{bottom:671.133333pt;}
.y18{bottom:671.453333pt;}
.y8d{bottom:672.893333pt;}
.y175{bottom:676.573333pt;}
.y13d{bottom:684.733333pt;}
.y49{bottom:686.333333pt;}
.y17{bottom:688.253333pt;}
.y56{bottom:688.893333pt;}
.y108{bottom:691.613333pt;}
.y157{bottom:692.573333pt;}
.y76{bottom:696.893333pt;}
.yc2{bottom:698.813333pt;}
.y174{bottom:704.093333pt;}
.y93{bottom:704.253333pt;}
.y16{bottom:705.213333pt;}
.y48{bottom:706.493333pt;}
.y13c{bottom:712.413333pt;}
.y55{bottom:716.573333pt;}
.y156{bottom:720.093333pt;}
.y15{bottom:722.013333pt;}
.y47{bottom:723.293333pt;}
.y75{bottom:724.573333pt;}
.y173{bottom:731.773333pt;}
.y92{bottom:735.613333pt;}
.y14{bottom:738.813333pt;}
.y13b{bottom:739.933333pt;}
.yc1{bottom:742.013333pt;}
.y46{bottom:742.813333pt;}
.y54{bottom:744.093333pt;}
.y155{bottom:747.773333pt;}
.y90{bottom:751.613333pt;}
.y74{bottom:752.093333pt;}
.y13{bottom:755.773333pt;}
.y172{bottom:759.293333pt;}
.y45{bottom:759.773333pt;}
.y8b{bottom:767.613333pt;}
.yc0{bottom:770.013333pt;}
.y53{bottom:771.773333pt;}
.y12{bottom:772.573333pt;}
.y154{bottom:775.293333pt;}
.y44{bottom:776.573333pt;}
.y73{bottom:779.773333pt;}
.y13a{bottom:783.613333pt;}
.y171{bottom:786.973333pt;}
.y11{bottom:789.533333pt;}
.y43{bottom:793.533333pt;}
.ybf{bottom:797.533333pt;}
.y138{bottom:798.173333pt;}
.y52{bottom:799.293333pt;}
.y10{bottom:806.373333pt;}
.y72{bottom:807.333333pt;}
.y42{bottom:810.373333pt;}
.y153{bottom:810.693333pt;}
.y170{bottom:814.533333pt;}
.ybe{bottom:825.253333pt;}
.y131{bottom:826.373333pt;}
.y51{bottom:827.013333pt;}
.y41{bottom:827.173333pt;}
.yf{bottom:827.973333pt;}
.y71{bottom:835.013333pt;}
.y16f{bottom:842.213333pt;}
.y40{bottom:844.133333pt;}
.ybd{bottom:852.773333pt;}
.y50{bottom:854.533333pt;}
.ye{bottom:857.413333pt;}
.y137{bottom:857.733333pt;}
.y3f{bottom:860.933333pt;}
.y70{bottom:862.533333pt;}
.y102{bottom:876.293333pt;}
.y16e{bottom:877.413333pt;}
.y3e{bottom:877.893333pt;}
.y4f{bottom:882.213333pt;}
.yd{bottom:887.173333pt;}
.y136{bottom:889.093333pt;}
.y6f{bottom:890.213333pt;}
.y3d{bottom:894.693333pt;}
.ybc{bottom:896.133333pt;}
.y4e{bottom:909.733333pt;}
.y3c{bottom:911.493333pt;}
.yc{bottom:914.693333pt;}
.y6e{bottom:917.733333pt;}
.y135{bottom:920.453333pt;}
.y3b{bottom:928.453333pt;}
.y16d{bottom:929.413333pt;}
.ybb{bottom:931.813333pt;}
.y4d{bottom:937.413333pt;}
.y6d{bottom:945.413333pt;}
.y3a{bottom:950.053333pt;}
.yb{bottom:951.493333pt;}
.y134{bottom:951.813333pt;}
.y100{bottom:958.533333pt;}
.y4c{bottom:964.933333pt;}
.y12f{bottom:967.813333pt;}
.y16c{bottom:972.613333pt;}
.y6c{bottom:972.933333pt;}
.y39{bottom:979.333333pt;}
.ya{bottom:992.933333pt;}
.y12e{bottom:999.173333pt;}
.y4b{bottom:1000.293333pt;}
.y38{bottom:1000.613333pt;}
.y2{bottom:1018.400000pt;}
.y1{bottom:1109.120000pt;}
.h35{height:15.186667pt;}
.h34{height:15.198667pt;}
.h29{height:15.346667pt;}
.h11{height:15.360000pt;}
.h37{height:27.540000pt;}
.h1c{height:27.666667pt;}
.h1b{height:30.546667pt;}
.h15{height:30.560000pt;}
.h19{height:30.706667pt;}
.h33{height:30.718667pt;}
.h13{height:30.720000pt;}
.h17{height:30.746667pt;}
.h32{height:30.752000pt;}
.h25{height:31.186667pt;}
.hd{height:33.901875pt;}
.h1f{height:35.386667pt;}
.h26{height:36.658667pt;}
.hf{height:38.492500pt;}
.h1a{height:45.906667pt;}
.h16{height:45.920000pt;}
.h28{height:47.180312pt;}
.h30{height:47.621250pt;}
.h1d{height:48.375000pt;}
.he{height:52.108438pt;}
.h6{height:52.134375pt;}
.h5{height:53.535000pt;}
.h22{height:55.402500pt;}
.h2b{height:55.826667pt;}
.h1e{height:57.375000pt;}
.h7{height:57.787500pt;}
.hc{height:59.340000pt;}
.h24{height:61.266667pt;}
.h2{height:61.295000pt;}
.h3{height:61.410000pt;}
.h9{height:62.781250pt;}
.h10{height:62.812500pt;}
.h4{height:63.680000pt;}
.hb{height:64.500000pt;}
.h20{height:66.625000pt;}
.ha{height:71.524375pt;}
.h27{height:76.626667pt;}
.h2f{height:76.666667pt;}
.h2c{height:81.586667pt;}
.h2a{height:81.632000pt;}
.h21{height:89.746667pt;}
.h31{height:93.952000pt;}
.h12{height:94.080000pt;}
.h8{height:96.750000pt;}
.h14{height:108.666667pt;}
.h23{height:130.418667pt;}
.h18{height:139.986667pt;}
.h36{height:140.786667pt;}
.h2e{height:184.026667pt;}
.h2d{height:231.386667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w14{width:93.106667pt;}
.w12{width:93.266667pt;}
.w13{width:93.298667pt;}
.wd{width:101.750667pt;}
.w9{width:111.510667pt;}
.w3{width:117.106667pt;}
.wf{width:132.510667pt;}
.w8{width:247.533333pt;}
.wc{width:260.386667pt;}
.w10{width:279.573333pt;}
.w11{width:279.693333pt;}
.wb{width:306.737333pt;}
.w7{width:319.577333pt;}
.w4{width:402.800000pt;}
.wa{width:455.600000pt;}
.we{width:465.360000pt;}
.w5{width:519.920000pt;}
.w6{width:567.120000pt;}
.w2{width:691.040000pt;}
.w15{width:691.800000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:2.070667pt;}
.xb{left:7.186667pt;}
.x4{left:11.680000pt;}
.xe{left:13.590667pt;}
.x11{left:15.666667pt;}
.x16{left:16.630667pt;}
.x1b{left:19.198667pt;}
.x8{left:25.906667pt;}
.x17{left:31.025333pt;}
.x1f{left:34.066667pt;}
.xf{left:37.585333pt;}
.x12{left:39.666667pt;}
.x1a{left:51.041333pt;}
.x18{left:54.705333pt;}
.x3{left:56.640000pt;}
.x1{left:58.240000pt;}
.x5{left:68.320000pt;}
.x22{left:77.120000pt;}
.x6{left:86.752000pt;}
.x2{left:100.512000pt;}
.xa{left:103.226667pt;}
.xc{left:113.321333pt;}
.x1e{left:120.946667pt;}
.x7{left:133.800000pt;}
.x1c{left:183.560000pt;}
.x14{left:185.305333pt;}
.xd{left:214.265333pt;}
.x13{left:224.840000pt;}
.x9{left:250.920000pt;}
.x19{left:420.066667pt;}
.x10{left:432.906667pt;}
.x1d{left:463.146667pt;}
.x20{left:556.426667pt;}
.x21{left:649.733333pt;}
}




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