
    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_58831f84f46389c59057db47.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ca2713d964e3969c85e78d7e.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_73f7e7e596a3fc3e31f59e7f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_09acf8d2d6f1da42a4067f0c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107422;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_69fedd8970d09c212016778d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.960449;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_4760549d0b29faf523091b4b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_8505af5c244aeba2c340dd59.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls8{letter-spacing:-1.296000px;}
.ls10{letter-spacing:-0.936000px;}
.ls12{letter-spacing:-0.900000px;}
.ls7{letter-spacing:-0.864000px;}
.lsa{letter-spacing:-0.720000px;}
.ls6{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.504000px;}
.lsf{letter-spacing:-0.432000px;}
.ls17{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.181200px;}
.lsd{letter-spacing:-0.144000px;}
.ls14{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018720px;}
.ls4{letter-spacing:0.037440px;}
.ls1{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.216000px;}
.lse{letter-spacing:0.256200px;}
.ls2{letter-spacing:0.288000px;}
.ls18{letter-spacing:3.029760px;}
.ls19{letter-spacing:3.941280px;}
.lsb{letter-spacing:5.904000px;}
.ls16{letter-spacing:7.344000px;}
.ls13{letter-spacing:8.189280px;}
.ls11{letter-spacing:11.069280px;}
.ls15{letter-spacing:27.701280px;}
.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;}
}
.ws8{word-spacing:-72.000000px;}
.ws3{word-spacing:-26.658720px;}
.ws4{word-spacing:-26.640000px;}
.ws2{word-spacing:-20.304000px;}
.ws6{word-spacing:-20.232000px;}
.ws1{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.872000px;}
.ws10{word-spacing:-19.800000px;}
.wsf{word-spacing:-19.584000px;}
.ws9{word-spacing:-19.512000px;}
.ws11{word-spacing:-19.440000px;}
.wsc{word-spacing:-19.296000px;}
.wse{word-spacing:-19.152000px;}
.wsb{word-spacing:-15.226440px;}
.ws5{word-spacing:-13.410720px;}
.ws7{word-spacing:-13.229520px;}
.wsd{word-spacing:-12.510720px;}
.ws0{word-spacing:0.000000px;}
._16{margin-left:-23.011440px;}
._14{margin-left:-21.106320px;}
._17{margin-left:-18.720960px;}
._18{margin-left:-16.796400px;}
._19{margin-left:-14.043600px;}
._0{margin-left:-6.324000px;}
._15{margin-left:-4.541280px;}
._6{margin-left:-2.808000px;}
._3{margin-left:-1.080000px;}
._2{width:1.317600px;}
._1c{width:2.368800px;}
._5{width:3.408000px;}
._4{width:4.512000px;}
._9{width:6.264000px;}
._b{width:8.136000px;}
._a{width:9.144000px;}
._c{width:10.924800px;}
._23{width:12.384000px;}
._d{width:13.968000px;}
._29{width:15.004800px;}
._e{width:16.140000px;}
._1a{width:17.616000px;}
._12{width:18.660000px;}
._f{width:21.096000px;}
._27{width:22.320000px;}
._28{width:23.616000px;}
._1f{width:25.272000px;}
._8{width:26.856000px;}
._7{width:27.864000px;}
._1b{width:29.088000px;}
._30{width:30.108000px;}
._2d{width:31.392000px;}
._21{width:32.472000px;}
._20{width:33.480000px;}
._2f{width:34.488000px;}
._22{width:35.916000px;}
._26{width:37.300800px;}
._2e{width:38.304000px;}
._33{width:39.470400px;}
._11{width:40.980000px;}
._10{width:42.096000px;}
._1e{width:43.272000px;}
._1d{width:44.568000px;}
._2a{width:46.368000px;}
._25{width:51.336000px;}
._24{width:52.344000px;}
._2b{width:54.864000px;}
._2c{width:64.008000px;}
._32{width:67.440000px;}
._31{width:68.472000px;}
._1{width:79.488000px;}
._13{width:830.729280px;}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(153,0,51);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(191,191,191);}
.fc0{color:rgb(68,114,196);}
.fs7{font-size:48.240000px;}
.fs8{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:84.240000px;}
.fs6{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.fs4{font-size:120.240000px;}
.fs3{font-size:131.760000px;}
.fs1{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y49{bottom:6.300000px;}
.y16{bottom:10.800000px;}
.y116{bottom:14.040000px;}
.ydf{bottom:14.220000px;}
.y11b{bottom:14.265000px;}
.ye1{bottom:25.560000px;}
.ye3{bottom:25.740000px;}
.ycb{bottom:28.800000px;}
.ydc{bottom:29.700000px;}
.yde{bottom:29.745000px;}
.yda{bottom:29.880000px;}
.yd2{bottom:31.725000px;}
.y48{bottom:41.940000px;}
.y119{bottom:45.180000px;}
.y16b{bottom:45.225000px;}
.y15{bottom:56.340000px;}
.y16d{bottom:56.520000px;}
.y47{bottom:57.420000px;}
.y169{bottom:76.140000px;}
.y14{bottom:101.880000px;}
.y15e{bottom:112.140000px;}
.y67{bottom:114.480000px;}
.yf2{bottom:117.900000px;}
.y11{bottom:120.600000px;}
.y99{bottom:124.020000px;}
.y1c9{bottom:131.220000px;}
.y84{bottom:134.100000px;}
.y13{bottom:135.360000px;}
.y181{bottom:137.340000px;}
.y15d{bottom:143.100000px;}
.y113{bottom:144.720000px;}
.y66{bottom:145.440000px;}
.y1c4{bottom:150.120000px;}
.y1ba{bottom:151.380000px;}
.y98{bottom:155.160000px;}
.y10{bottom:157.680000px;}
.yf1{bottom:161.130000px;}
.y1c8{bottom:162.210000px;}
.y83{bottom:165.270000px;}
.y180{bottom:168.510000px;}
.y185{bottom:169.230000px;}
.y15c{bottom:174.270000px;}
.y112{bottom:175.890000px;}
.yfd{bottom:177.690000px;}
.y33{bottom:180.930000px;}
.y1c3{bottom:181.290000px;}
.y1b9{bottom:182.550000px;}
.ya5{bottom:185.250000px;}
.ybd{bottom:185.970000px;}
.y97{bottom:186.150000px;}
.y19e{bottom:186.330000px;}
.yd7{bottom:187.050000px;}
.y1c6{bottom:193.170000px;}
.y82{bottom:196.230000px;}
.y130{bottom:197.310000px;}
.y65{bottom:197.490000px;}
.y157{bottom:198.210000px;}
.y17f{bottom:199.470000px;}
.yf{bottom:204.150000px;}
.y15b{bottom:205.230000px;}
.y111{bottom:206.850000px;}
.y184{bottom:212.250000px;}
.y1b8{bottom:213.510000px;}
.yfc{bottom:217.110000px;}
.y96{bottom:217.290000px;}
.y19d{bottom:219.990000px;}
.ybc{bottom:220.350000px;}
.yd6{bottom:221.250000px;}
.y1c5{bottom:224.310000px;}
.y81{bottom:227.370000px;}
.y12f{bottom:228.450000px;}
.y64{bottom:228.630000px;}
.y156{bottom:229.170000px;}
.y17e{bottom:230.610000px;}
.y32{bottom:235.110000px;}
.y1c7{bottom:236.370000px;}
.ya4{bottom:237.270000px;}
.yd5{bottom:239.070000px;}
.yfb{bottom:244.830000px;}
.yf0{bottom:247.170000px;}
.y141{bottom:248.250000px;}
.y110{bottom:249.870000px;}
.ye{bottom:253.470000px;}
.y19c{bottom:253.830000px;}
.ybb{bottom:255.270000px;}
.y1b7{bottom:256.530000px;}
.y12e{bottom:259.410000px;}
.y63{bottom:259.590000px;}
.y155{bottom:260.310000px;}
.y17d{bottom:261.570000px;}
.y31{bottom:266.070000px;}
.y95{bottom:269.310000px;}
.y46{bottom:270.570000px;}
.yef{bottom:278.130000px;}
.y80{bottom:279.390000px;}
.yba{bottom:279.750000px;}
.y10f{bottom:281.010000px;}
.yd4{bottom:285.510000px;}
.y1c2{bottom:286.410000px;}
.y19b{bottom:287.490000px;}
.y1b6{bottom:287.670000px;}
.ya3{bottom:289.470000px;}
.y12d{bottom:290.550000px;}
.y62{bottom:290.730000px;}
.y159{bottom:291.270000px;}
.y17c{bottom:292.710000px;}
.y183{bottom:298.470000px;}
.y94{bottom:300.270000px;}
.yd{bottom:302.610000px;}
.y154{bottom:303.330000px;}
.y45{bottom:304.230000px;}
.y30{bottom:309.090000px;}
.yee{bottom:309.270000px;}
.y7f{bottom:310.350000px;}
.y10e{bottom:311.970000px;}
.y1b5{bottom:318.630000px;}
.y19a{bottom:321.330000px;}
.y140{bottom:322.410000px;}
.y1c1{bottom:329.430000px;}
.y93{bottom:331.410000px;}
.yd3{bottom:331.950000px;}
.y12c{bottom:333.570000px;}
.y153{bottom:334.470000px;}
.yb9{bottom:335.190000px;}
.y17b{bottom:335.730000px;}
.y44{bottom:337.890000px;}
.y2f{bottom:340.230000px;}
.y7e{bottom:341.490000px;}
.y61{bottom:342.750000px;}
.y10d{bottom:343.110000px;}
.yed{bottom:352.290000px;}
.yc{bottom:352.830000px;}
.y13f{bottom:353.370000px;}
.y199{bottom:354.990000px;}
.y1c0{bottom:360.570000px;}
.y43{bottom:360.750000px;}
.y1b4{bottom:361.830000px;}
.y92{bottom:362.370000px;}
.y12b{bottom:364.710000px;}
.y152{bottom:365.430000px;}
.y17a{bottom:366.690000px;}
.y2e{bottom:371.190000px;}
.ya2{bottom:372.450000px;}
.y60{bottom:373.710000px;}
.y10c{bottom:374.070000px;}
.yb8{bottom:377.310000px;}
.yd1{bottom:378.570000px;}
.yec{bottom:383.430000px;}
.y13e{bottom:384.510000px;}
.y198{bottom:388.650000px;}
.y1b3{bottom:392.790000px;}
.y7d{bottom:393.510000px;}
.y12a{bottom:395.670000px;}
.y151{bottom:396.570000px;}
.y179{bottom:397.830000px;}
.y2d{bottom:402.330000px;}
.ya1{bottom:403.590000px;}
.y5f{bottom:404.850000px;}
.yb{bottom:405.795000px;}
.y42{bottom:407.595000px;}
.yeb{bottom:414.435000px;}
.y13d{bottom:415.515000px;}
.y10b{bottom:417.315000px;}
.yb7{bottom:419.655000px;}
.y7c{bottom:424.515000px;}
.y129{bottom:426.675000px;}
.y150{bottom:427.575000px;}
.yd0{bottom:427.935000px;}
.y197{bottom:430.635000px;}
.ya0{bottom:434.595000px;}
.y1b2{bottom:435.855000px;}
.y164{bottom:439.635000px;}
.y178{bottom:440.895000px;}
.y2c{bottom:445.395000px;}
.y13c{bottom:446.655000px;}
.y10a{bottom:448.275000px;}
.y41{bottom:449.355000px;}
.y7b{bottom:455.655000px;}
.y5e{bottom:456.915000px;}
.ya{bottom:458.715000px;}
.y196{bottom:461.595000px;}
.yb6{bottom:461.775000px;}
.y9f{bottom:465.735000px;}
.y1b1{bottom:466.995000px;}
.y128{bottom:469.875000px;}
.y14f{bottom:470.595000px;}
.y177{bottom:471.855000px;}
.ycf{bottom:474.555000px;}
.y2b{bottom:476.535000px;}
.y1bf{bottom:477.615000px;}
.y109{bottom:479.415000px;}
.y7a{bottom:486.615000px;}
.y5d{bottom:487.875000px;}
.yea{bottom:488.595000px;}
.y13b{bottom:489.675000px;}
.y195{bottom:492.555000px;}
.y9e{bottom:496.695000px;}
.y40{bottom:498.315000px;}
.y127{bottom:500.835000px;}
.y14e{bottom:501.735000px;}
.y176{bottom:502.995000px;}
.yb5{bottom:504.075000px;}
.y9{bottom:507.135000px;}
.y2a{bottom:507.495000px;}
.y1be{bottom:508.755000px;}
.y1b0{bottom:510.015000px;}
.y163{bottom:513.615000px;}
.y79{bottom:517.755000px;}
.y5c{bottom:519.015000px;}
.y13a{bottom:520.815000px;}
.yce{bottom:520.995000px;}
.y108{bottom:522.435000px;}
.y194{bottom:523.695000px;}
.ye9{bottom:531.615000px;}
.y126{bottom:531.975000px;}
.y14d{bottom:532.695000px;}
.y175{bottom:533.955000px;}
.y29{bottom:538.635000px;}
.y91{bottom:538.815000px;}
.y1bd{bottom:539.715000px;}
.y1af{bottom:540.975000px;}
.y8{bottom:541.335000px;}
.y162{bottom:544.755000px;}
.yb4{bottom:546.195000px;}
.y3f{bottom:547.275000px;}
.y78{bottom:548.715000px;}
.y5b{bottom:549.975000px;}
.y139{bottom:551.775000px;}
.y107{bottom:553.395000px;}
.y193{bottom:555.915000px;}
.ye8{bottom:562.575000px;}
.y125{bottom:562.935000px;}
.y14c{bottom:563.835000px;}
.y174{bottom:565.095000px;}
.ycd{bottom:567.435000px;}
.y28{bottom:569.595000px;}
.y90{bottom:569.775000px;}
.y7{bottom:575.715000px;}
.y77{bottom:579.855000px;}
.y138{bottom:582.735000px;}
.y1ae{bottom:584.175000px;}
.y106{bottom:584.535000px;}
.y192{bottom:587.055000px;}
.yb3{bottom:588.495000px;}
.y3e{bottom:588.855000px;}
.y124{bottom:594.075000px;}
.y14b{bottom:594.795000px;}
.y173{bottom:596.055000px;}
.y27{bottom:600.555000px;}
.y8f{bottom:600.735000px;}
.y5a{bottom:602.175000px;}
.ye7{bottom:605.595000px;}
.y161{bottom:606.855000px;}
.y6{bottom:610.815000px;}
.y1bc{bottom:613.875000px;}
.ycc{bottom:614.055000px;}
.y1ad{bottom:615.135000px;}
.y191{bottom:618.015000px;}
.y137{bottom:625.935000px;}
.y105{bottom:627.555000px;}
.yb2{bottom:630.615000px;}
.y26{bottom:631.695000px;}
.y8e{bottom:631.875000px;}
.y59{bottom:633.135000px;}
.y123{bottom:637.095000px;}
.y3d{bottom:637.455000px;}
.y14a{bottom:637.815000px;}
.y172{bottom:639.075000px;}
.y9d{bottom:641.955000px;}
.y1bb{bottom:644.835000px;}
.y1ac{bottom:646.095000px;}
.ye6{bottom:648.795000px;}
.y190{bottom:649.155000px;}
.y5{bottom:652.065000px;}
.y136{bottom:656.925000px;}
.y104{bottom:658.545000px;}
.yca{bottom:660.525000px;}
.y76{bottom:662.865000px;}
.y58{bottom:664.125000px;}
.y122{bottom:668.085000px;}
.y149{bottom:668.985000px;}
.y171{bottom:670.245000px;}
.y9c{bottom:672.945000px;}
.y25{bottom:674.745000px;}
.y18f{bottom:680.145000px;}
.y160{bottom:680.865000px;}
.y3c{bottom:686.445000px;}
.y135{bottom:688.065000px;}
.y1ab{bottom:689.325000px;}
.y103{bottom:689.685000px;}
.ye5{bottom:691.845000px;}
.y4{bottom:693.465000px;}
.y75{bottom:694.005000px;}
.y57{bottom:695.265000px;}
.y121{bottom:699.225000px;}
.y148{bottom:699.945000px;}
.y170{bottom:701.205000px;}
.y9b{bottom:704.085000px;}
.y24{bottom:705.885000px;}
.ye4{bottom:709.485000px;}
.y18e{bottom:711.105000px;}
.y15f{bottom:712.005000px;}
.yb1{bottom:714.705000px;}
.y134{bottom:719.025000px;}
.y1aa{bottom:720.285000px;}
.yc9{bottom:723.525000px;}
.y74{bottom:724.965000px;}
.y56{bottom:726.225000px;}
.y3b{bottom:728.025000px;}
.y120{bottom:730.185000px;}
.y158{bottom:731.085000px;}
.y16f{bottom:732.345000px;}
.y102{bottom:732.705000px;}
.y3{bottom:734.865000px;}
.y23{bottom:736.845000px;}
.y147{bottom:742.965000px;}
.y18d{bottom:743.505000px;}
.y8d{bottom:746.025000px;}
.y1cb{bottom:750.165000px;}
.ye2{bottom:752.685000px;}
.y73{bottom:756.105000px;}
.y133{bottom:762.045000px;}
.y1a9{bottom:763.305000px;}
.yc8{bottom:763.665000px;}
.yb0{bottom:766.725000px;}
.y22{bottom:767.985000px;}
.y55{bottom:769.425000px;}
.y11f{bottom:773.205000px;}
.y146{bottom:774.105000px;}
.y18c{bottom:774.465000px;}
.y3a{bottom:776.805000px;}
.y8c{bottom:777.165000px;}
.y1ca{bottom:781.125000px;}
.y16e{bottom:781.305000px;}
.y72{bottom:787.065000px;}
.y11e{bottom:790.845000px;}
.y16c{bottom:793.005000px;}
.y132{bottom:793.185000px;}
.y1a8{bottom:794.445000px;}
.yc7{bottom:794.805000px;}
.ye0{bottom:796.065000px;}
.y21{bottom:798.945000px;}
.y54{bottom:800.385000px;}
.y145{bottom:805.065000px;}
.y18b{bottom:805.605000px;}
.y8b{bottom:808.125000px;}
.y71{bottom:818.205000px;}
.yaf{bottom:818.745000px;}
.y11d{bottom:822.705000px;}
.y131{bottom:824.145000px;}
.yfa{bottom:825.405000px;}
.y39{bottom:825.585000px;}
.yc6{bottom:825.765000px;}
.y53{bottom:831.525000px;}
.y144{bottom:836.205000px;}
.y18a{bottom:836.565000px;}
.y8a{bottom:839.265000px;}
.y20{bottom:841.965000px;}
.y70{bottom:849.165000px;}
.yae{bottom:849.885000px;}
.y11c{bottom:854.565000px;}
.y15a{bottom:855.285000px;}
.yc5{bottom:856.905000px;}
.y52{bottom:862.485000px;}
.yf9{bottom:867.165000px;}
.y16a{bottom:867.345000px;}
.y189{bottom:867.705000px;}
.y1a7{bottom:868.425000px;}
.y89{bottom:870.225000px;}
.ydd{bottom:871.125000px;}
.y1f{bottom:873.105000px;}
.y38{bottom:874.545000px;}
.y9a{bottom:880.305000px;}
.y11a{bottom:886.245000px;}
.y2{bottom:887.865000px;}
.yad{bottom:894.165000px;}
.yf8{bottom:898.350000px;}
.y188{bottom:898.710000px;}
.y1a6{bottom:899.610000px;}
.yc4{bottom:899.970000px;}
.y6f{bottom:901.410000px;}
.y1e{bottom:904.110000px;}
.y51{bottom:905.550000px;}
.y182{bottom:910.410000px;}
.y118{bottom:918.150000px;}
.ydb{bottom:918.690000px;}
.y101{bottom:919.050000px;}
.y37{bottom:923.370000px;}
.yac{bottom:925.170000px;}
.yf7{bottom:929.310000px;}
.y168{bottom:930.210000px;}
.yc3{bottom:931.110000px;}
.y6e{bottom:932.370000px;}
.y1d{bottom:935.250000px;}
.y50{bottom:936.690000px;}
.y143{bottom:941.370000px;}
.y1a5{bottom:942.630000px;}
.y187{bottom:942.990000px;}
.y100{bottom:950.010000px;}
.y88{bottom:953.430000px;}
.yf6{bottom:960.450000px;}
.yc2{bottom:962.070000px;}
.y6d{bottom:963.330000px;}
.yd9{bottom:966.030000px;}
.y1c{bottom:966.210000px;}
.y4f{bottom:967.650000px;}
.yab{bottom:969.450000px;}
.y36{bottom:972.330000px;}
.y1a4{bottom:973.770000px;}
.y186{bottom:974.130000px;}
.y117{bottom:980.970000px;}
.y87{bottom:984.390000px;}
.y12{bottom:989.970000px;}
.yff{bottom:993.030000px;}
.y6c{bottom:994.470000px;}
.y1b{bottom:997.350000px;}
.y4e{bottom:998.790000px;}
.yaa{bottom:1001.670000px;}
.yf5{bottom:1003.470000px;}
.y1a3{bottom:1004.730000px;}
.yc1{bottom:1005.090000px;}
.y115{bottom:1012.830000px;}
.y86{bottom:1015.530000px;}
.y35{bottom:1021.290000px;}
.y167{bottom:1023.990000px;}
.y1{bottom:1024.170000px;}
.y6b{bottom:1025.430000px;}
.y1a{bottom:1028.310000px;}
.y4d{bottom:1029.750000px;}
.yf4{bottom:1034.430000px;}
.yc0{bottom:1036.230000px;}
.yd8{bottom:1037.310000px;}
.ya9{bottom:1044.690000px;}
.y85{bottom:1046.490000px;}
.y1a2{bottom:1047.750000px;}
.yfe{bottom:1055.130000px;}
.y19{bottom:1059.450000px;}
.y4c{bottom:1060.890000px;}
.yf3{bottom:1065.570000px;}
.ybf{bottom:1067.190000px;}
.y114{bottom:1068.450000px;}
.y34{bottom:1070.070000px;}
.ya8{bottom:1075.830000px;}
.y6a{bottom:1077.630000px;}
.y1a1{bottom:1078.890000px;}
.y166{bottom:1086.990000px;}
.y4b{bottom:1091.850000px;}
.y142{bottom:1096.530000px;}
.ybe{bottom:1098.330000px;}
.y18{bottom:1102.470000px;}
.ya7{bottom:1106.790000px;}
.y69{bottom:1108.590000px;}
.y1a0{bottom:1109.850000px;}
.y4a{bottom:1116.150000px;}
.y17{bottom:1128.390000px;}
.y19f{bottom:1133.970000px;}
.ya6{bottom:1134.150000px;}
.y68{bottom:1139.730000px;}
.y165{bottom:1142.640000px;}
.ha{height:21.960000px;}
.h16{height:30.960000px;}
.h13{height:31.140000px;}
.h18{height:31.176000px;}
.h14{height:42.480000px;}
.h15{height:42.660000px;}
.hd{height:45.720000px;}
.he{height:45.756000px;}
.h11{height:46.620000px;}
.h12{height:46.656000px;}
.h10{height:46.800000px;}
.hf{height:48.636000px;}
.h1d{height:50.312812px;}
.h17{height:62.100000px;}
.h1b{height:62.136000px;}
.hc{height:62.327813px;}
.h4{height:65.884219px;}
.h1c{height:73.440000px;}
.h2{height:75.093750px;}
.h19{height:87.859687px;}
.hb{height:91.177734px;}
.h1a{height:93.060000px;}
.h9{height:99.874688px;}
.h7{height:112.640625px;}
.h6{height:125.406562px;}
.h5{height:137.421562px;}
.h3{height:150.187500px;}
.h8{height:160.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:52.920000px;}
.we{width:312.150000px;}
.wf{width:312.195000px;}
.w7{width:314.850000px;}
.w8{width:314.895000px;}
.w5{width:315.210000px;}
.w6{width:315.255000px;}
.wb{width:317.730000px;}
.wc{width:317.775000px;}
.w3{width:347.655000px;}
.w9{width:583.485000px;}
.wd{width:625.065000px;}
.wa{width:636.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x36{left:9.000000px;}
.x6{left:10.800000px;}
.x31{left:13.320000px;}
.x30{left:14.400000px;}
.x35{left:15.480000px;}
.x24{left:18.180000px;}
.xa{left:22.320000px;}
.x29{left:35.670000px;}
.x33{left:38.550000px;}
.x2a{left:50.610000px;}
.x19{left:54.894000px;}
.x1a{left:72.390000px;}
.x13{left:78.294000px;}
.x22{left:82.074000px;}
.x17{left:83.334000px;}
.x18{left:85.350000px;}
.x1b{left:88.374000px;}
.x2d{left:92.190000px;}
.x14{left:93.450000px;}
.x1c{left:95.430000px;}
.x2f{left:99.894000px;}
.x34{left:101.334000px;}
.x32{left:103.314000px;}
.x1d{left:105.870000px;}
.x12{left:108.390000px;}
.x11{left:110.874000px;}
.xf{left:116.274000px;}
.x1e{left:123.330000px;}
.x10{left:124.410000px;}
.x1{left:127.655987px;}
.x15{left:128.874000px;}
.xd{left:133.374000px;}
.x16{left:134.490000px;}
.x2c{left:138.054000px;}
.x28{left:140.394000px;}
.x26{left:142.554000px;}
.x7{left:144.215987px;}
.x2b{left:146.334000px;}
.x1f{left:149.034000px;}
.x2{left:151.049987px;}
.xb{left:154.649987px;}
.x8{left:160.589987px;}
.x21{left:162.039000px;}
.xc{left:181.649987px;}
.x20{left:200.199000px;}
.x25{left:228.639000px;}
.x3{left:253.649987px;}
.x4{left:314.354987px;}
.x5{left:417.315000px;}
.x9{left:420.015000px;}
.x2e{left:441.255000px;}
.xe{left:443.595000px;}
.x27{left:447.015000px;}
.x23{left:664.844987px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls8{letter-spacing:-1.152000pt;}
.ls10{letter-spacing:-0.832000pt;}
.ls12{letter-spacing:-0.800000pt;}
.ls7{letter-spacing:-0.768000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls6{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.448000pt;}
.lsf{letter-spacing:-0.384000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.161067pt;}
.lsd{letter-spacing:-0.128000pt;}
.ls14{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016640pt;}
.ls4{letter-spacing:0.033280pt;}
.ls1{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.227733pt;}
.ls2{letter-spacing:0.256000pt;}
.ls18{letter-spacing:2.693120pt;}
.ls19{letter-spacing:3.503360pt;}
.lsb{letter-spacing:5.248000pt;}
.ls16{letter-spacing:6.528000pt;}
.ls13{letter-spacing:7.279360pt;}
.ls11{letter-spacing:9.839360pt;}
.ls15{letter-spacing:24.623360pt;}
.ws8{word-spacing:-64.000000pt;}
.ws3{word-spacing:-23.696640pt;}
.ws4{word-spacing:-23.680000pt;}
.ws2{word-spacing:-18.048000pt;}
.ws6{word-spacing:-17.984000pt;}
.ws1{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.664000pt;}
.ws10{word-spacing:-17.600000pt;}
.wsf{word-spacing:-17.408000pt;}
.ws9{word-spacing:-17.344000pt;}
.ws11{word-spacing:-17.280000pt;}
.wsc{word-spacing:-17.152000pt;}
.wse{word-spacing:-17.024000pt;}
.wsb{word-spacing:-13.534613pt;}
.ws5{word-spacing:-11.920640pt;}
.ws7{word-spacing:-11.759573pt;}
.wsd{word-spacing:-11.120640pt;}
.ws0{word-spacing:0.000000pt;}
._16{margin-left:-20.454613pt;}
._14{margin-left:-18.761173pt;}
._17{margin-left:-16.640853pt;}
._18{margin-left:-14.930133pt;}
._19{margin-left:-12.483200pt;}
._0{margin-left:-5.621333pt;}
._15{margin-left:-4.036693pt;}
._6{margin-left:-2.496000pt;}
._3{margin-left:-0.960000pt;}
._2{width:1.171200pt;}
._1c{width:2.105600pt;}
._5{width:3.029333pt;}
._4{width:4.010667pt;}
._9{width:5.568000pt;}
._b{width:7.232000pt;}
._a{width:8.128000pt;}
._c{width:9.710933pt;}
._23{width:11.008000pt;}
._d{width:12.416000pt;}
._29{width:13.337600pt;}
._e{width:14.346667pt;}
._1a{width:15.658667pt;}
._12{width:16.586667pt;}
._f{width:18.752000pt;}
._27{width:19.840000pt;}
._28{width:20.992000pt;}
._1f{width:22.464000pt;}
._8{width:23.872000pt;}
._7{width:24.768000pt;}
._1b{width:25.856000pt;}
._30{width:26.762667pt;}
._2d{width:27.904000pt;}
._21{width:28.864000pt;}
._20{width:29.760000pt;}
._2f{width:30.656000pt;}
._22{width:31.925333pt;}
._26{width:33.156267pt;}
._2e{width:34.048000pt;}
._33{width:35.084800pt;}
._11{width:36.426667pt;}
._10{width:37.418667pt;}
._1e{width:38.464000pt;}
._1d{width:39.616000pt;}
._2a{width:41.216000pt;}
._25{width:45.632000pt;}
._24{width:46.528000pt;}
._2b{width:48.768000pt;}
._2c{width:56.896000pt;}
._32{width:59.946667pt;}
._31{width:60.864000pt;}
._1{width:70.656000pt;}
._13{width:738.426027pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:74.880000pt;}
.fs6{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.fs4{font-size:106.880000pt;}
.fs3{font-size:117.120000pt;}
.fs1{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y49{bottom:5.600000pt;}
.y16{bottom:9.600000pt;}
.y116{bottom:12.480000pt;}
.ydf{bottom:12.640000pt;}
.y11b{bottom:12.680000pt;}
.ye1{bottom:22.720000pt;}
.ye3{bottom:22.880000pt;}
.ycb{bottom:25.600000pt;}
.ydc{bottom:26.400000pt;}
.yde{bottom:26.440000pt;}
.yda{bottom:26.560000pt;}
.yd2{bottom:28.200000pt;}
.y48{bottom:37.280000pt;}
.y119{bottom:40.160000pt;}
.y16b{bottom:40.200000pt;}
.y15{bottom:50.080000pt;}
.y16d{bottom:50.240000pt;}
.y47{bottom:51.040000pt;}
.y169{bottom:67.680000pt;}
.y14{bottom:90.560000pt;}
.y15e{bottom:99.680000pt;}
.y67{bottom:101.760000pt;}
.yf2{bottom:104.800000pt;}
.y11{bottom:107.200000pt;}
.y99{bottom:110.240000pt;}
.y1c9{bottom:116.640000pt;}
.y84{bottom:119.200000pt;}
.y13{bottom:120.320000pt;}
.y181{bottom:122.080000pt;}
.y15d{bottom:127.200000pt;}
.y113{bottom:128.640000pt;}
.y66{bottom:129.280000pt;}
.y1c4{bottom:133.440000pt;}
.y1ba{bottom:134.560000pt;}
.y98{bottom:137.920000pt;}
.y10{bottom:140.160000pt;}
.yf1{bottom:143.226667pt;}
.y1c8{bottom:144.186667pt;}
.y83{bottom:146.906667pt;}
.y180{bottom:149.786667pt;}
.y185{bottom:150.426667pt;}
.y15c{bottom:154.906667pt;}
.y112{bottom:156.346667pt;}
.yfd{bottom:157.946667pt;}
.y33{bottom:160.826667pt;}
.y1c3{bottom:161.146667pt;}
.y1b9{bottom:162.266667pt;}
.ya5{bottom:164.666667pt;}
.ybd{bottom:165.306667pt;}
.y97{bottom:165.466667pt;}
.y19e{bottom:165.626667pt;}
.yd7{bottom:166.266667pt;}
.y1c6{bottom:171.706667pt;}
.y82{bottom:174.426667pt;}
.y130{bottom:175.386667pt;}
.y65{bottom:175.546667pt;}
.y157{bottom:176.186667pt;}
.y17f{bottom:177.306667pt;}
.yf{bottom:181.466667pt;}
.y15b{bottom:182.426667pt;}
.y111{bottom:183.866667pt;}
.y184{bottom:188.666667pt;}
.y1b8{bottom:189.786667pt;}
.yfc{bottom:192.986667pt;}
.y96{bottom:193.146667pt;}
.y19d{bottom:195.546667pt;}
.ybc{bottom:195.866667pt;}
.yd6{bottom:196.666667pt;}
.y1c5{bottom:199.386667pt;}
.y81{bottom:202.106667pt;}
.y12f{bottom:203.066667pt;}
.y64{bottom:203.226667pt;}
.y156{bottom:203.706667pt;}
.y17e{bottom:204.986667pt;}
.y32{bottom:208.986667pt;}
.y1c7{bottom:210.106667pt;}
.ya4{bottom:210.906667pt;}
.yd5{bottom:212.506667pt;}
.yfb{bottom:217.626667pt;}
.yf0{bottom:219.706667pt;}
.y141{bottom:220.666667pt;}
.y110{bottom:222.106667pt;}
.ye{bottom:225.306667pt;}
.y19c{bottom:225.626667pt;}
.ybb{bottom:226.906667pt;}
.y1b7{bottom:228.026667pt;}
.y12e{bottom:230.586667pt;}
.y63{bottom:230.746667pt;}
.y155{bottom:231.386667pt;}
.y17d{bottom:232.506667pt;}
.y31{bottom:236.506667pt;}
.y95{bottom:239.386667pt;}
.y46{bottom:240.506667pt;}
.yef{bottom:247.226667pt;}
.y80{bottom:248.346667pt;}
.yba{bottom:248.666667pt;}
.y10f{bottom:249.786667pt;}
.yd4{bottom:253.786667pt;}
.y1c2{bottom:254.586667pt;}
.y19b{bottom:255.546667pt;}
.y1b6{bottom:255.706667pt;}
.ya3{bottom:257.306667pt;}
.y12d{bottom:258.266667pt;}
.y62{bottom:258.426667pt;}
.y159{bottom:258.906667pt;}
.y17c{bottom:260.186667pt;}
.y183{bottom:265.306667pt;}
.y94{bottom:266.906667pt;}
.yd{bottom:268.986667pt;}
.y154{bottom:269.626667pt;}
.y45{bottom:270.426667pt;}
.y30{bottom:274.746667pt;}
.yee{bottom:274.906667pt;}
.y7f{bottom:275.866667pt;}
.y10e{bottom:277.306667pt;}
.y1b5{bottom:283.226667pt;}
.y19a{bottom:285.626667pt;}
.y140{bottom:286.586667pt;}
.y1c1{bottom:292.826667pt;}
.y93{bottom:294.586667pt;}
.yd3{bottom:295.066667pt;}
.y12c{bottom:296.506667pt;}
.y153{bottom:297.306667pt;}
.yb9{bottom:297.946667pt;}
.y17b{bottom:298.426667pt;}
.y44{bottom:300.346667pt;}
.y2f{bottom:302.426667pt;}
.y7e{bottom:303.546667pt;}
.y61{bottom:304.666667pt;}
.y10d{bottom:304.986667pt;}
.yed{bottom:313.146667pt;}
.yc{bottom:313.626667pt;}
.y13f{bottom:314.106667pt;}
.y199{bottom:315.546667pt;}
.y1c0{bottom:320.506667pt;}
.y43{bottom:320.666667pt;}
.y1b4{bottom:321.626667pt;}
.y92{bottom:322.106667pt;}
.y12b{bottom:324.186667pt;}
.y152{bottom:324.826667pt;}
.y17a{bottom:325.946667pt;}
.y2e{bottom:329.946667pt;}
.ya2{bottom:331.066667pt;}
.y60{bottom:332.186667pt;}
.y10c{bottom:332.506667pt;}
.yb8{bottom:335.386667pt;}
.yd1{bottom:336.506667pt;}
.yec{bottom:340.826667pt;}
.y13e{bottom:341.786667pt;}
.y198{bottom:345.466667pt;}
.y1b3{bottom:349.146667pt;}
.y7d{bottom:349.786667pt;}
.y12a{bottom:351.706667pt;}
.y151{bottom:352.506667pt;}
.y179{bottom:353.626667pt;}
.y2d{bottom:357.626667pt;}
.ya1{bottom:358.746667pt;}
.y5f{bottom:359.866667pt;}
.yb{bottom:360.706667pt;}
.y42{bottom:362.306667pt;}
.yeb{bottom:368.386667pt;}
.y13d{bottom:369.346667pt;}
.y10b{bottom:370.946667pt;}
.yb7{bottom:373.026667pt;}
.y7c{bottom:377.346667pt;}
.y129{bottom:379.266667pt;}
.y150{bottom:380.066667pt;}
.yd0{bottom:380.386667pt;}
.y197{bottom:382.786667pt;}
.ya0{bottom:386.306667pt;}
.y1b2{bottom:387.426667pt;}
.y164{bottom:390.786667pt;}
.y178{bottom:391.906667pt;}
.y2c{bottom:395.906667pt;}
.y13c{bottom:397.026667pt;}
.y10a{bottom:398.466667pt;}
.y41{bottom:399.426667pt;}
.y7b{bottom:405.026667pt;}
.y5e{bottom:406.146667pt;}
.ya{bottom:407.746667pt;}
.y196{bottom:410.306667pt;}
.yb6{bottom:410.466667pt;}
.y9f{bottom:413.986667pt;}
.y1b1{bottom:415.106667pt;}
.y128{bottom:417.666667pt;}
.y14f{bottom:418.306667pt;}
.y177{bottom:419.426667pt;}
.ycf{bottom:421.826667pt;}
.y2b{bottom:423.586667pt;}
.y1bf{bottom:424.546667pt;}
.y109{bottom:426.146667pt;}
.y7a{bottom:432.546667pt;}
.y5d{bottom:433.666667pt;}
.yea{bottom:434.306667pt;}
.y13b{bottom:435.266667pt;}
.y195{bottom:437.826667pt;}
.y9e{bottom:441.506667pt;}
.y40{bottom:442.946667pt;}
.y127{bottom:445.186667pt;}
.y14e{bottom:445.986667pt;}
.y176{bottom:447.106667pt;}
.yb5{bottom:448.066667pt;}
.y9{bottom:450.786667pt;}
.y2a{bottom:451.106667pt;}
.y1be{bottom:452.226667pt;}
.y1b0{bottom:453.346667pt;}
.y163{bottom:456.546667pt;}
.y79{bottom:460.226667pt;}
.y5c{bottom:461.346667pt;}
.y13a{bottom:462.946667pt;}
.yce{bottom:463.106667pt;}
.y108{bottom:464.386667pt;}
.y194{bottom:465.506667pt;}
.ye9{bottom:472.546667pt;}
.y126{bottom:472.866667pt;}
.y14d{bottom:473.506667pt;}
.y175{bottom:474.626667pt;}
.y29{bottom:478.786667pt;}
.y91{bottom:478.946667pt;}
.y1bd{bottom:479.746667pt;}
.y1af{bottom:480.866667pt;}
.y8{bottom:481.186667pt;}
.y162{bottom:484.226667pt;}
.yb4{bottom:485.506667pt;}
.y3f{bottom:486.466667pt;}
.y78{bottom:487.746667pt;}
.y5b{bottom:488.866667pt;}
.y139{bottom:490.466667pt;}
.y107{bottom:491.906667pt;}
.y193{bottom:494.146667pt;}
.ye8{bottom:500.066667pt;}
.y125{bottom:500.386667pt;}
.y14c{bottom:501.186667pt;}
.y174{bottom:502.306667pt;}
.ycd{bottom:504.386667pt;}
.y28{bottom:506.306667pt;}
.y90{bottom:506.466667pt;}
.y7{bottom:511.746667pt;}
.y77{bottom:515.426667pt;}
.y138{bottom:517.986667pt;}
.y1ae{bottom:519.266667pt;}
.y106{bottom:519.586667pt;}
.y192{bottom:521.826667pt;}
.yb3{bottom:523.106667pt;}
.y3e{bottom:523.426667pt;}
.y124{bottom:528.066667pt;}
.y14b{bottom:528.706667pt;}
.y173{bottom:529.826667pt;}
.y27{bottom:533.826667pt;}
.y8f{bottom:533.986667pt;}
.y5a{bottom:535.266667pt;}
.ye7{bottom:538.306667pt;}
.y161{bottom:539.426667pt;}
.y6{bottom:542.946667pt;}
.y1bc{bottom:545.666667pt;}
.ycc{bottom:545.826667pt;}
.y1ad{bottom:546.786667pt;}
.y191{bottom:549.346667pt;}
.y137{bottom:556.386667pt;}
.y105{bottom:557.826667pt;}
.yb2{bottom:560.546667pt;}
.y26{bottom:561.506667pt;}
.y8e{bottom:561.666667pt;}
.y59{bottom:562.786667pt;}
.y123{bottom:566.306667pt;}
.y3d{bottom:566.626667pt;}
.y14a{bottom:566.946667pt;}
.y172{bottom:568.066667pt;}
.y9d{bottom:570.626667pt;}
.y1bb{bottom:573.186667pt;}
.y1ac{bottom:574.306667pt;}
.ye6{bottom:576.706667pt;}
.y190{bottom:577.026667pt;}
.y5{bottom:579.613333pt;}
.y136{bottom:583.933333pt;}
.y104{bottom:585.373333pt;}
.yca{bottom:587.133333pt;}
.y76{bottom:589.213333pt;}
.y58{bottom:590.333333pt;}
.y122{bottom:593.853333pt;}
.y149{bottom:594.653333pt;}
.y171{bottom:595.773333pt;}
.y9c{bottom:598.173333pt;}
.y25{bottom:599.773333pt;}
.y18f{bottom:604.573333pt;}
.y160{bottom:605.213333pt;}
.y3c{bottom:610.173333pt;}
.y135{bottom:611.613333pt;}
.y1ab{bottom:612.733333pt;}
.y103{bottom:613.053333pt;}
.ye5{bottom:614.973333pt;}
.y4{bottom:616.413333pt;}
.y75{bottom:616.893333pt;}
.y57{bottom:618.013333pt;}
.y121{bottom:621.533333pt;}
.y148{bottom:622.173333pt;}
.y170{bottom:623.293333pt;}
.y9b{bottom:625.853333pt;}
.y24{bottom:627.453333pt;}
.ye4{bottom:630.653333pt;}
.y18e{bottom:632.093333pt;}
.y15f{bottom:632.893333pt;}
.yb1{bottom:635.293333pt;}
.y134{bottom:639.133333pt;}
.y1aa{bottom:640.253333pt;}
.yc9{bottom:643.133333pt;}
.y74{bottom:644.413333pt;}
.y56{bottom:645.533333pt;}
.y3b{bottom:647.133333pt;}
.y120{bottom:649.053333pt;}
.y158{bottom:649.853333pt;}
.y16f{bottom:650.973333pt;}
.y102{bottom:651.293333pt;}
.y3{bottom:653.213333pt;}
.y23{bottom:654.973333pt;}
.y147{bottom:660.413333pt;}
.y18d{bottom:660.893333pt;}
.y8d{bottom:663.133333pt;}
.y1cb{bottom:666.813333pt;}
.ye2{bottom:669.053333pt;}
.y73{bottom:672.093333pt;}
.y133{bottom:677.373333pt;}
.y1a9{bottom:678.493333pt;}
.yc8{bottom:678.813333pt;}
.yb0{bottom:681.533333pt;}
.y22{bottom:682.653333pt;}
.y55{bottom:683.933333pt;}
.y11f{bottom:687.293333pt;}
.y146{bottom:688.093333pt;}
.y18c{bottom:688.413333pt;}
.y3a{bottom:690.493333pt;}
.y8c{bottom:690.813333pt;}
.y1ca{bottom:694.333333pt;}
.y16e{bottom:694.493333pt;}
.y72{bottom:699.613333pt;}
.y11e{bottom:702.973333pt;}
.y16c{bottom:704.893333pt;}
.y132{bottom:705.053333pt;}
.y1a8{bottom:706.173333pt;}
.yc7{bottom:706.493333pt;}
.ye0{bottom:707.613333pt;}
.y21{bottom:710.173333pt;}
.y54{bottom:711.453333pt;}
.y145{bottom:715.613333pt;}
.y18b{bottom:716.093333pt;}
.y8b{bottom:718.333333pt;}
.y71{bottom:727.293333pt;}
.yaf{bottom:727.773333pt;}
.y11d{bottom:731.293333pt;}
.y131{bottom:732.573333pt;}
.yfa{bottom:733.693333pt;}
.y39{bottom:733.853333pt;}
.yc6{bottom:734.013333pt;}
.y53{bottom:739.133333pt;}
.y144{bottom:743.293333pt;}
.y18a{bottom:743.613333pt;}
.y8a{bottom:746.013333pt;}
.y20{bottom:748.413333pt;}
.y70{bottom:754.813333pt;}
.yae{bottom:755.453333pt;}
.y11c{bottom:759.613333pt;}
.y15a{bottom:760.253333pt;}
.yc5{bottom:761.693333pt;}
.y52{bottom:766.653333pt;}
.yf9{bottom:770.813333pt;}
.y16a{bottom:770.973333pt;}
.y189{bottom:771.293333pt;}
.y1a7{bottom:771.933333pt;}
.y89{bottom:773.533333pt;}
.ydd{bottom:774.333333pt;}
.y1f{bottom:776.093333pt;}
.y38{bottom:777.373333pt;}
.y9a{bottom:782.493333pt;}
.y11a{bottom:787.773333pt;}
.y2{bottom:789.213333pt;}
.yad{bottom:794.813333pt;}
.yf8{bottom:798.533333pt;}
.y188{bottom:798.853333pt;}
.y1a6{bottom:799.653333pt;}
.yc4{bottom:799.973333pt;}
.y6f{bottom:801.253333pt;}
.y1e{bottom:803.653333pt;}
.y51{bottom:804.933333pt;}
.y182{bottom:809.253333pt;}
.y118{bottom:816.133333pt;}
.ydb{bottom:816.613333pt;}
.y101{bottom:816.933333pt;}
.y37{bottom:820.773333pt;}
.yac{bottom:822.373333pt;}
.yf7{bottom:826.053333pt;}
.y168{bottom:826.853333pt;}
.yc3{bottom:827.653333pt;}
.y6e{bottom:828.773333pt;}
.y1d{bottom:831.333333pt;}
.y50{bottom:832.613333pt;}
.y143{bottom:836.773333pt;}
.y1a5{bottom:837.893333pt;}
.y187{bottom:838.213333pt;}
.y100{bottom:844.453333pt;}
.y88{bottom:847.493333pt;}
.yf6{bottom:853.733333pt;}
.yc2{bottom:855.173333pt;}
.y6d{bottom:856.293333pt;}
.yd9{bottom:858.693333pt;}
.y1c{bottom:858.853333pt;}
.y4f{bottom:860.133333pt;}
.yab{bottom:861.733333pt;}
.y36{bottom:864.293333pt;}
.y1a4{bottom:865.573333pt;}
.y186{bottom:865.893333pt;}
.y117{bottom:871.973333pt;}
.y87{bottom:875.013333pt;}
.y12{bottom:879.973333pt;}
.yff{bottom:882.693333pt;}
.y6c{bottom:883.973333pt;}
.y1b{bottom:886.533333pt;}
.y4e{bottom:887.813333pt;}
.yaa{bottom:890.373333pt;}
.yf5{bottom:891.973333pt;}
.y1a3{bottom:893.093333pt;}
.yc1{bottom:893.413333pt;}
.y115{bottom:900.293333pt;}
.y86{bottom:902.693333pt;}
.y35{bottom:907.813333pt;}
.y167{bottom:910.213333pt;}
.y1{bottom:910.373333pt;}
.y6b{bottom:911.493333pt;}
.y1a{bottom:914.053333pt;}
.y4d{bottom:915.333333pt;}
.yf4{bottom:919.493333pt;}
.yc0{bottom:921.093333pt;}
.yd8{bottom:922.053333pt;}
.ya9{bottom:928.613333pt;}
.y85{bottom:930.213333pt;}
.y1a2{bottom:931.333333pt;}
.yfe{bottom:937.893333pt;}
.y19{bottom:941.733333pt;}
.y4c{bottom:943.013333pt;}
.yf3{bottom:947.173333pt;}
.ybf{bottom:948.613333pt;}
.y114{bottom:949.733333pt;}
.y34{bottom:951.173333pt;}
.ya8{bottom:956.293333pt;}
.y6a{bottom:957.893333pt;}
.y1a1{bottom:959.013333pt;}
.y166{bottom:966.213333pt;}
.y4b{bottom:970.533333pt;}
.y142{bottom:974.693333pt;}
.ybe{bottom:976.293333pt;}
.y18{bottom:979.973333pt;}
.ya7{bottom:983.813333pt;}
.y69{bottom:985.413333pt;}
.y1a0{bottom:986.533333pt;}
.y4a{bottom:992.133333pt;}
.y17{bottom:1003.013333pt;}
.y19f{bottom:1007.973333pt;}
.ya6{bottom:1008.133333pt;}
.y68{bottom:1013.093333pt;}
.y165{bottom:1015.680000pt;}
.ha{height:19.520000pt;}
.h16{height:27.520000pt;}
.h13{height:27.680000pt;}
.h18{height:27.712000pt;}
.h14{height:37.760000pt;}
.h15{height:37.920000pt;}
.hd{height:40.640000pt;}
.he{height:40.672000pt;}
.h11{height:41.440000pt;}
.h12{height:41.472000pt;}
.h10{height:41.600000pt;}
.hf{height:43.232000pt;}
.h1d{height:44.722500pt;}
.h17{height:55.200000pt;}
.h1b{height:55.232000pt;}
.hc{height:55.402500pt;}
.h4{height:58.563750pt;}
.h1c{height:65.280000pt;}
.h2{height:66.750000pt;}
.h19{height:78.097500pt;}
.hb{height:81.046875pt;}
.h1a{height:82.720000pt;}
.h9{height:88.777500pt;}
.h7{height:100.125000pt;}
.h6{height:111.472500pt;}
.h5{height:122.152500pt;}
.h3{height:133.500000pt;}
.h8{height:142.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:47.040000pt;}
.we{width:277.466667pt;}
.wf{width:277.506667pt;}
.w7{width:279.866667pt;}
.w8{width:279.906667pt;}
.w5{width:280.186667pt;}
.w6{width:280.226667pt;}
.wb{width:282.426667pt;}
.wc{width:282.466667pt;}
.w3{width:309.026667pt;}
.w9{width:518.653333pt;}
.wd{width:555.613333pt;}
.wa{width:565.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x36{left:8.000000pt;}
.x6{left:9.600000pt;}
.x31{left:11.840000pt;}
.x30{left:12.800000pt;}
.x35{left:13.760000pt;}
.x24{left:16.160000pt;}
.xa{left:19.840000pt;}
.x29{left:31.706667pt;}
.x33{left:34.266667pt;}
.x2a{left:44.986667pt;}
.x19{left:48.794667pt;}
.x1a{left:64.346667pt;}
.x13{left:69.594667pt;}
.x22{left:72.954667pt;}
.x17{left:74.074667pt;}
.x18{left:75.866667pt;}
.x1b{left:78.554667pt;}
.x2d{left:81.946667pt;}
.x14{left:83.066667pt;}
.x1c{left:84.826667pt;}
.x2f{left:88.794667pt;}
.x34{left:90.074667pt;}
.x32{left:91.834667pt;}
.x1d{left:94.106667pt;}
.x12{left:96.346667pt;}
.x11{left:98.554667pt;}
.xf{left:103.354667pt;}
.x1e{left:109.626667pt;}
.x10{left:110.586667pt;}
.x1{left:113.471988pt;}
.x15{left:114.554667pt;}
.xd{left:118.554667pt;}
.x16{left:119.546667pt;}
.x2c{left:122.714667pt;}
.x28{left:124.794667pt;}
.x26{left:126.714667pt;}
.x7{left:128.191988pt;}
.x2b{left:130.074667pt;}
.x1f{left:132.474667pt;}
.x2{left:134.266655pt;}
.xb{left:137.466655pt;}
.x8{left:142.746655pt;}
.x21{left:144.034667pt;}
.xc{left:161.466655pt;}
.x20{left:177.954667pt;}
.x25{left:203.234667pt;}
.x3{left:225.466655pt;}
.x4{left:279.426655pt;}
.x5{left:370.946667pt;}
.x9{left:373.346667pt;}
.x2e{left:392.226667pt;}
.xe{left:394.306667pt;}
.x27{left:397.346667pt;}
.x23{left:590.973322pt;}
}




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