
    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_0af1ad38836dfb7dcbc8c955.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_a934544a6673bf27b9dfdd5a.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_e6e0296ec78e253951a487b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.101562;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_86d662ed1e9b6c195dfc00ba.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_66a60862533a7cf2a7c1ebf7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_aa4c0d0cc1094994d56d90ff.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_baae14578d74124549120816.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_021435288d490ef53d9b316c.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f9dbc07827c10081c65b2397.woff2')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v3{vertical-align:-27.360000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:23.760000px;}
.v1{vertical-align:27.360000px;}
.ls15{letter-spacing:-1.008000px;}
.ls11{letter-spacing:-0.720000px;}
.ls14{letter-spacing:-0.576000px;}
.ls1a{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls17{letter-spacing:-0.216000px;}
.ls5{letter-spacing:-0.144000px;}
.lse{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.036000px;}
.ls1{letter-spacing:0.043920px;}
.ls1e{letter-spacing:0.072000px;}
.ls1c{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.134400px;}
.ls0{letter-spacing:0.144000px;}
.lsf{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.181200px;}
.lsd{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.540000px;}
.ls1d{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.720000px;}
.ls16{letter-spacing:9.354720px;}
.ls9{letter-spacing:9.378720px;}
.lsa{letter-spacing:20.160000px;}
.ls1b{letter-spacing:33.984000px;}
.ls12{letter-spacing:54.864000px;}
.ls7{letter-spacing:62.765760px;}
.ls8{letter-spacing:75.029760px;}
.ls13{letter-spacing:846.156000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws3{word-spacing:-54.144000px;}
.ws1{word-spacing:-39.888000px;}
.ws0{word-spacing:-36.810480px;}
.ws2{word-spacing:-29.736000px;}
.ws6{word-spacing:-24.300000px;}
.wsf{word-spacing:-18.720000px;}
.ws14{word-spacing:-18.576000px;}
.ws8{word-spacing:-18.288000px;}
.wse{word-spacing:-18.144000px;}
.ws15{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.928000px;}
.wsc{word-spacing:-17.856000px;}
.ws10{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws11{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.240000px;}
.wsb{word-spacing:-12.060000px;}
.ws12{word-spacing:-11.700000px;}
.ws13{word-spacing:-11.520000px;}
.ws16{word-spacing:-0.063360px;}
.ws4{word-spacing:0.000000px;}
._10{margin-left:-16.440000px;}
._14{margin-left:-14.532000px;}
._13{margin-left:-12.516000px;}
._12{margin-left:-9.972000px;}
._11{margin-left:-6.720000px;}
._15{margin-left:-4.608000px;}
._e{margin-left:-3.600000px;}
._a{margin-left:-2.172000px;}
._1{margin-left:-1.080000px;}
._0{width:1.449360px;}
._9{width:3.240000px;}
._4{width:4.680000px;}
._5{width:5.813280px;}
._6{width:7.122720px;}
._c{width:8.280000px;}
._d{width:9.377280px;}
._22{width:10.441440px;}
._1c{width:11.448000px;}
._b{width:12.744000px;}
._2{width:14.520000px;}
._3{width:15.756000px;}
._18{width:16.992000px;}
._17{width:19.080000px;}
._16{width:20.088000px;}
._1f{width:21.134640px;}
._19{width:22.320000px;}
._1a{width:23.678640px;}
._1b{width:25.162800px;}
._20{width:26.331600px;}
._21{width:27.552000px;}
._23{width:28.572000px;}
._1d{width:29.592000px;}
._1e{width:30.816000px;}
._28{width:31.896000px;}
._26{width:36.072000px;}
._27{width:37.548000px;}
._29{width:40.032000px;}
._7{width:47.136000px;}
._8{width:48.312000px;}
._24{width:71.136000px;}
._25{width:72.432000px;}
._2a{width:123.336000px;}
._2b{width:124.524000px;}
._f{width:846.156000px;}
.fc5{color:transparent;}
.fc6{color:rgb(5,99,193);}
.fc4{color:rgb(47,84,150);}
.fc8{color:rgb(68,84,106);}
.fc3{color:rgb(127,127,127);}
.fc2{color:rgb(191,191,191);}
.fc1{color:rgb(0,0,0);}
.fc7{color:rgb(128,0,64);}
.fc0{color:rgb(154,0,64);}
.fs8{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fsa{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs6{font-size:95.760000px;}
.fs3{font-size:108.000000px;}
.fs0{font-size:131.760000px;}
.fs2{font-size:144.000000px;}
.fs5{font-size:156.240000px;}
.fs4{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:57.060000px;}
.y27{bottom:77.796000px;}
.y142{bottom:112.176000px;}
.y5d{bottom:112.896000px;}
.y1a3{bottom:115.056000px;}
.y7d{bottom:117.216000px;}
.y1c5{bottom:120.456000px;}
.y1b4{bottom:121.716000px;}
.y10e{bottom:122.256000px;}
.y115{bottom:124.236000px;}
.y1b8{bottom:125.856000px;}
.yd4{bottom:127.116000px;}
.y9a{bottom:129.096000px;}
.yf1{bottom:130.176000px;}
.y15e{bottom:130.896000px;}
.y134{bottom:131.256000px;}
.y161{bottom:141.156000px;}
.y141{bottom:143.316000px;}
.y5c{bottom:143.856000px;}
.y1cc{bottom:145.476000px;}
.y10{bottom:146.016000px;}
.y1a2{bottom:146.196000px;}
.y7c{bottom:148.176000px;}
.y1b3{bottom:152.670000px;}
.y10d{bottom:153.390000px;}
.y114{bottom:155.190000px;}
.yd3{bottom:158.070000px;}
.y99{bottom:160.230000px;}
.yf0{bottom:161.130000px;}
.y15d{bottom:161.850000px;}
.y133{bottom:162.390000px;}
.y1c4{bottom:163.470000px;}
.y1b7{bottom:164.910000px;}
.y188{bottom:166.890000px;}
.y160{bottom:172.290000px;}
.y140{bottom:174.270000px;}
.y5b{bottom:174.990000px;}
.y1a1{bottom:177.150000px;}
.y7b{bottom:179.310000px;}
.y124{bottom:181.290000px;}
.y1b2{bottom:183.810000px;}
.y10c{bottom:184.350000px;}
.y1cb{bottom:188.490000px;}
.y98{bottom:191.190000px;}
.yef{bottom:192.270000px;}
.y187{bottom:197.850000px;}
.y113{bottom:198.390000px;}
.yf{bottom:200.550000px;}
.yd2{bottom:201.090000px;}
.ya9{bottom:203.250000px;}
.y15c{bottom:204.870000px;}
.y132{bottom:205.410000px;}
.y5a{bottom:205.950000px;}
.y1c3{bottom:206.490000px;}
.y1a0{bottom:208.290000px;}
.y7a{bottom:210.270000px;}
.y10b{bottom:215.490000px;}
.y13f{bottom:217.290000px;}
.y97{bottom:222.330000px;}
.yee{bottom:223.230000px;}
.y123{bottom:224.490000px;}
.y1b1{bottom:226.830000px;}
.y186{bottom:228.990000px;}
.y112{bottom:229.350000px;}
.y1ca{bottom:231.510000px;}
.yd1{bottom:233.310000px;}
.ya8{bottom:234.390000px;}
.y15b{bottom:236.010000px;}
.y131{bottom:236.370000px;}
.y59{bottom:237.090000px;}
.y19f{bottom:239.250000px;}
.y79{bottom:241.410000px;}
.y10a{bottom:246.450000px;}
.y13e{bottom:248.430000px;}
.y1c2{bottom:249.510000px;}
.y9e{bottom:253.290000px;}
.y122{bottom:255.450000px;}
.y185{bottom:259.950000px;}
.y111{bottom:260.490000px;}
.y96{bottom:265.350000px;}
.yd0{bottom:265.890000px;}
.yed{bottom:266.250000px;}
.y15a{bottom:266.970000px;}
.y130{bottom:267.510000px;}
.y58{bottom:268.050000px;}
.y19e{bottom:270.390000px;}
.y78{bottom:272.370000px;}
.ye{bottom:273.270000px;}
.y1c9{bottom:274.530000px;}
.y109{bottom:277.590000px;}
.y13d{bottom:279.390000px;}
.y3f{bottom:282.090000px;}
.y9d{bottom:284.430000px;}
.y184{bottom:291.090000px;}
.y1c1{bottom:292.530000px;}
.y95{bottom:296.490000px;}
.ycf{bottom:296.850000px;}
.yec{bottom:297.390000px;}
.y159{bottom:298.110000px;}
.y121{bottom:298.470000px;}
.y57{bottom:299.190000px;}
.y19d{bottom:301.350000px;}
.y110{bottom:303.510000px;}
.y108{bottom:308.550000px;}
.y12f{bottom:310.530000px;}
.y1ce{bottom:312.330000px;}
.y3e{bottom:313.050000px;}
.y77{bottom:315.390000px;}
.y1c8{bottom:317.730000px;}
.y183{bottom:322.050000px;}
.y94{bottom:327.495000px;}
.yeb{bottom:328.395000px;}
.y158{bottom:329.115000px;}
.y120{bottom:329.655000px;}
.y56{bottom:330.195000px;}
.y19c{bottom:332.535000px;}
.y10f{bottom:334.515000px;}
.y1c0{bottom:335.775000px;}
.y107{bottom:339.735000px;}
.yce{bottom:341.355000px;}
.y12e{bottom:341.535000px;}
.y3d{bottom:344.235000px;}
.y76{bottom:346.575000px;}
.yd{bottom:349.275000px;}
.y1cd{bottom:351.615000px;}
.y182{bottom:353.235000px;}
.y145{bottom:353.595000px;}
.y93{bottom:358.635000px;}
.y157{bottom:360.255000px;}
.y1c7{bottom:360.795000px;}
.y55{bottom:361.335000px;}
.y19b{bottom:363.495000px;}
.y1b0{bottom:367.455000px;}
.yea{bottom:371.415000px;}
.y11f{bottom:372.675000px;}
.y75{bottom:377.535000px;}
.y1bf{bottom:378.795000px;}
.y26{bottom:381.315000px;}
.y106{bottom:382.755000px;}
.y3c{bottom:382.935000px;}
.y181{bottom:384.195000px;}
.ycd{bottom:384.375000px;}
.y12d{bottom:384.555000px;}
.y92{bottom:389.595000px;}
.y156{bottom:391.215000px;}
.y54{bottom:392.295000px;}
.y19a{bottom:394.635000px;}
.y144{bottom:396.615000px;}
.y1af{bottom:398.415000px;}
.y1c6{bottom:399.855000px;}
.y11e{bottom:403.635000px;}
.y74{bottom:408.675000px;}
.y105{bottom:413.715000px;}
.ye9{bottom:414.615000px;}
.ycc{bottom:415.335000px;}
.y12c{bottom:415.695000px;}
.y3b{bottom:420.555000px;}
.y1be{bottom:421.815000px;}
.y155{bottom:422.355000px;}
.yc{bottom:422.535000px;}
.y53{bottom:423.255000px;}
.y25{bottom:424.335000px;}
.y199{bottom:425.595000px;}
.y1b6{bottom:427.395000px;}
.y13c{bottom:427.755000px;}
.y1ae{bottom:429.555000px;}
.ya7{bottom:432.615000px;}
.y11d{bottom:434.775000px;}
.y174{bottom:436.395000px;}
.y73{bottom:439.635000px;}
.y104{bottom:444.855000px;}
.ye8{bottom:445.575000px;}
.y180{bottom:446.295000px;}
.ycb{bottom:446.475000px;}
.y12b{bottom:446.655000px;}
.y91{bottom:451.695000px;}
.y154{bottom:453.315000px;}
.y52{bottom:454.395000px;}
.y198{bottom:456.555000px;}
.y13b{bottom:458.715000px;}
.y3a{bottom:459.075000px;}
.y1ad{bottom:460.515000px;}
.ya6{bottom:463.755000px;}
.y1bd{bottom:464.835000px;}
.y24{bottom:467.355000px;}
.y72{bottom:470.775000px;}
.y103{bottom:475.815000px;}
.ye7{bottom:476.715000px;}
.y17f{bottom:477.255000px;}
.y11c{bottom:477.795000px;}
.y173{bottom:479.415000px;}
.y90{bottom:482.655000px;}
.y197{bottom:487.695000px;}
.y13a{bottom:489.855000px;}
.y1ac{bottom:491.655000px;}
.ya5{bottom:494.715000px;}
.yca{bottom:495.435000px;}
.yb{bottom:495.795000px;}
.y153{bottom:496.335000px;}
.y51{bottom:497.415000px;}
.y39{bottom:497.595000px;}
.y71{bottom:501.735000px;}
.y102{bottom:506.955000px;}
.ye6{bottom:507.675000px;}
.y1bc{bottom:507.855000px;}
.y17e{bottom:508.395000px;}
.y23{bottom:510.555000px;}
.y8f{bottom:513.795000px;}
.y196{bottom:518.655000px;}
.y11b{bottom:520.815000px;}
.y172{bottom:522.435000px;}
.y1ab{bottom:522.615000px;}
.yb8{bottom:524.415000px;}
.ya4{bottom:525.855000px;}
.y152{bottom:527.475000px;}
.y50{bottom:528.555000px;}
.y38{bottom:536.115000px;}
.y101{bottom:537.915000px;}
.yc9{bottom:538.455000px;}
.ye5{bottom:538.815000px;}
.y17d{bottom:539.355000px;}
.y22{bottom:541.515000px;}
.y70{bottom:544.755000px;}
.y195{bottom:549.795000px;}
.y1bb{bottom:550.875000px;}
.y11a{bottom:551.955000px;}
.y1aa{bottom:553.755000px;}
.ya2{bottom:556.815000px;}
.y151{bottom:558.435000px;}
.y4f{bottom:559.515000px;}
.y171{bottom:565.455000px;}
.yb7{bottom:567.435000px;}
.y100{bottom:569.055000px;}
.yc8{bottom:569.595000px;}
.ye4{bottom:569.775000px;}
.y17c{bottom:570.495000px;}
.y37{bottom:574.635000px;}
.y6f{bottom:575.895000px;}
.y194{bottom:580.755000px;}
.y12a{bottom:582.915000px;}
.ya{bottom:583.095000px;}
.y21{bottom:584.535000px;}
.y1a9{bottom:584.715000px;}
.y8e{bottom:587.955000px;}
.y150{bottom:589.575000px;}
.y4e{bottom:590.655000px;}
.y1ba{bottom:594.075000px;}
.y119{bottom:595.005000px;}
.y170{bottom:596.625000px;}
.yb6{bottom:598.425000px;}
.yc7{bottom:600.585000px;}
.ye3{bottom:600.945000px;}
.y17b{bottom:601.485000px;}
.y6e{bottom:606.885000px;}
.y193{bottom:611.925000px;}
.yff{bottom:612.105000px;}
.y36{bottom:613.185000px;}
.y139{bottom:614.085000px;}
.y20{bottom:615.705000px;}
.ya1{bottom:618.945000px;}
.y14f{bottom:620.565000px;}
.y4d{bottom:621.645000px;}
.y118{bottom:625.965000px;}
.y16f{bottom:627.585000px;}
.yb5{bottom:630.825000px;}
.y8d{bottom:631.005000px;}
.y17a{bottom:632.625000px;}
.y1b9{bottom:637.125000px;}
.y6d{bottom:638.025000px;}
.y192{bottom:642.885000px;}
.yfe{bottom:643.065000px;}
.yc6{bottom:643.785000px;}
.y138{bottom:645.045000px;}
.y1f{bottom:646.665000px;}
.y1a8{bottom:646.845000px;}
.ya0{bottom:650.085000px;}
.y14e{bottom:651.705000px;}
.y35{bottom:651.885000px;}
.y4c{bottom:652.785000px;}
.y117{bottom:657.105000px;}
.y16e{bottom:658.725000px;}
.yb4{bottom:661.785000px;}
.y8c{bottom:661.965000px;}
.y179{bottom:663.585000px;}
.y6c{bottom:668.985000px;}
.y191{bottom:674.025000px;}
.yfd{bottom:674.205000px;}
.yc5{bottom:674.745000px;}
.y9{bottom:675.105000px;}
.ye2{bottom:676.185000px;}
.y1e{bottom:677.805000px;}
.y9f{bottom:681.045000px;}
.y14d{bottom:682.665000px;}
.y4b{bottom:683.745000px;}
.y129{bottom:688.065000px;}
.y34{bottom:690.405000px;}
.yb3{bottom:692.745000px;}
.y8b{bottom:693.105000px;}
.y178{bottom:694.725000px;}
.y9c{bottom:700.125000px;}
.y16d{bottom:701.745000px;}
.y190{bottom:704.985000px;}
.yfc{bottom:705.165000px;}
.yc4{bottom:705.885000px;}
.ye1{bottom:707.145000px;}
.y1d{bottom:708.765000px;}
.y1a7{bottom:708.945000px;}
.y6b{bottom:712.185000px;}
.y14c{bottom:713.805000px;}
.y128{bottom:719.205000px;}
.y8a{bottom:724.065000px;}
.yb2{bottom:725.325000px;}
.y177{bottom:725.685000px;}
.y4a{bottom:726.765000px;}
.y33{bottom:728.925000px;}
.y9b{bottom:731.085000px;}
.y16c{bottom:732.885000px;}
.y18f{bottom:736.125000px;}
.yfb{bottom:736.305000px;}
.yc3{bottom:736.845000px;}
.ye0{bottom:739.545000px;}
.y1c{bottom:739.905000px;}
.y6a{bottom:743.145000px;}
.y14b{bottom:744.765000px;}
.y127{bottom:750.165000px;}
.y89{bottom:755.205000px;}
.yb1{bottom:756.285000px;}
.y176{bottom:756.825000px;}
.y49{bottom:757.905000px;}
.y116{bottom:762.225000px;}
.y16b{bottom:763.845000px;}
.y1b5{bottom:766.185000px;}
.y8{bottom:766.905000px;}
.y18e{bottom:767.085000px;}
.y32{bottom:767.445000px;}
.yc2{bottom:767.805000px;}
.y1b{bottom:770.865000px;}
.y1a6{bottom:771.045000px;}
.ydf{bottom:771.765000px;}
.y69{bottom:774.105000px;}
.y14a{bottom:775.905000px;}
.yfa{bottom:779.325000px;}
.y126{bottom:781.305000px;}
.y88{bottom:786.165000px;}
.yb0{bottom:787.245000px;}
.y175{bottom:787.785000px;}
.y48{bottom:788.865000px;}
.y143{bottom:793.185000px;}
.y16a{bottom:794.805000px;}
.y18d{bottom:798.225000px;}
.yc1{bottom:798.945000px;}
.y1a{bottom:802.005000px;}
.yde{bottom:804.345000px;}
.y68{bottom:805.245000px;}
.y31{bottom:805.965000px;}
.yf9{bottom:810.465000px;}
.y137{bottom:812.265000px;}
.y87{bottom:817.305000px;}
.y149{bottom:818.925000px;}
.yaf{bottom:819.645000px;}
.y47{bottom:820.005000px;}
.y125{bottom:824.325000px;}
.y169{bottom:825.945000px;}
.y18c{bottom:829.185000px;}
.yc0{bottom:829.905000px;}
.y1a5{bottom:833.145000px;}
.ydd{bottom:835.125000px;}
.y67{bottom:836.205000px;}
.yf8{bottom:841.425000px;}
.y164{bottom:843.405000px;}
.y30{bottom:844.485000px;}
.y19{bottom:845.025000px;}
.y86{bottom:848.265000px;}
.y148{bottom:849.885000px;}
.yae{bottom:850.785000px;}
.y46{bottom:850.965000px;}
.y136{bottom:855.285000px;}
.y18b{bottom:860.325000px;}
.ybf{bottom:861.045000px;}
.y1a4{bottom:862.350000px;}
.y66{bottom:867.390000px;}
.ydc{bottom:867.750000px;}
.y168{bottom:869.010000px;}
.y7{bottom:870.810000px;}
.y18{bottom:876.030000px;}
.y85{bottom:879.450000px;}
.y147{bottom:881.070000px;}
.yad{bottom:881.610000px;}
.y2f{bottom:883.050000px;}
.yf7{bottom:884.490000px;}
.y135{bottom:886.470000px;}
.y18a{bottom:891.330000px;}
.ybe{bottom:892.050000px;}
.y45{bottom:894.030000px;}
.y65{bottom:898.350000px;}
.ydb{bottom:898.710000px;}
.y167{bottom:900.150000px;}
.y17{bottom:907.170000px;}
.y84{bottom:910.410000px;}
.y146{bottom:912.030000px;}
.yf6{bottom:915.630000px;}
.y2e{bottom:921.750000px;}
.y189{bottom:922.470000px;}
.ybd{bottom:923.190000px;}
.y44{bottom:925.170000px;}
.yac{bottom:926.250000px;}
.y64{bottom:929.490000px;}
.y166{bottom:931.110000px;}
.y6{bottom:939.210000px;}
.y83{bottom:941.550000px;}
.yda{bottom:943.170000px;}
.y16{bottom:950.190000px;}
.y15f{bottom:953.430000px;}
.y43{bottom:956.130000px;}
.yf5{bottom:958.650000px;}
.y2d{bottom:960.270000px;}
.y63{bottom:960.450000px;}
.y165{bottom:962.250000px;}
.yab{bottom:969.270000px;}
.ybc{bottom:972.150000px;}
.y82{bottom:972.510000px;}
.yd9{bottom:974.130000px;}
.y5{bottom:977.190000px;}
.y15{bottom:981.150000px;}
.ya3{bottom:984.570000px;}
.y42{bottom:987.270000px;}
.yf4{bottom:989.610000px;}
.y163{bottom:991.590000px;}
.y2c{bottom:998.790000px;}
.y62{bottom:1003.650000px;}
.yd8{bottom:1005.270000px;}
.y4{bottom:1015.170000px;}
.ybb{bottom:1015.350000px;}
.y81{bottom:1015.530000px;}
.y41{bottom:1018.230000px;}
.y162{bottom:1022.550000px;}
.y14{bottom:1024.350000px;}
.yf3{bottom:1032.630000px;}
.y61{bottom:1034.610000px;}
.yd7{bottom:1036.230000px;}
.y2b{bottom:1037.310000px;}
.yba{bottom:1046.310000px;}
.y80{bottom:1046.670000px;}
.y40{bottom:1049.370000px;}
.y3{bottom:1051.890000px;}
.y13{bottom:1055.310000px;}
.yf2{bottom:1065.390000px;}
.y60{bottom:1065.750000px;}
.yd6{bottom:1067.370000px;}
.y7f{bottom:1077.630000px;}
.y2a{bottom:1080.330000px;}
.y2{bottom:1084.650000px;}
.y12{bottom:1086.450000px;}
.yb9{bottom:1095.270000px;}
.y5f{bottom:1096.710000px;}
.yd5{bottom:1098.330000px;}
.y7e{bottom:1108.770000px;}
.y29{bottom:1116.150000px;}
.y1{bottom:1125.510000px;}
.y11{bottom:1134.000000px;}
.yaa{bottom:1134.360000px;}
.y5e{bottom:1139.760000px;}
.h13{height:52.971680px;}
.hf{height:64.546875px;}
.hb{height:65.884219px;}
.h9{height:70.664062px;}
.h11{height:71.613281px;}
.he{height:72.562500px;}
.hd{height:74.704922px;}
.h12{height:74.824922px;}
.h10{height:75.093750px;}
.ha{height:93.983203px;}
.hc{height:99.874688px;}
.h4{height:112.640625px;}
.h8{height:121.852266px;}
.h6{height:133.171875px;}
.h2{height:137.421562px;}
.h7{height:144.491484px;}
.h3{height:150.187500px;}
.h5{height:199.757812px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:127.655987px;}
.x7{left:134.315987px;}
.xf{left:144.215987px;}
.x11{left:154.649987px;}
.x18{left:158.069987px;}
.x9{left:165.449987px;}
.x12{left:181.649987px;}
.x3{left:191.189987px;}
.x8{left:200.909987px;}
.x13{left:208.649987px;}
.x1c{left:225.029987px;}
.x1{left:226.109987px;}
.x1b{left:227.729987px;}
.x2{left:248.969987px;}
.x5{left:258.509987px;}
.x19{left:262.469987px;}
.x4{left:289.694987px;}
.xc{left:351.974987px;}
.xb{left:416.054987px;}
.x14{left:437.474987px;}
.x10{left:441.974987px;}
.xe{left:443.594987px;}
.x6{left:446.474987px;}
.x16{left:609.044987px;}
.x17{left:611.924987px;}
.x15{left:613.004987px;}
.x1a{left:649.004987px;}
.xa{left:765.509987px;}
@media print{
.v3{vertical-align:-24.320000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:21.120000pt;}
.v1{vertical-align:24.320000pt;}
.ls15{letter-spacing:-0.896000pt;}
.ls11{letter-spacing:-0.640000pt;}
.ls14{letter-spacing:-0.512000pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls17{letter-spacing:-0.192000pt;}
.ls5{letter-spacing:-0.128000pt;}
.lse{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.032000pt;}
.ls1{letter-spacing:0.039040pt;}
.ls1e{letter-spacing:0.064000pt;}
.ls1c{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.119467pt;}
.ls0{letter-spacing:0.128000pt;}
.lsf{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.161067pt;}
.lsd{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.480000pt;}
.ls1d{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls16{letter-spacing:8.315307pt;}
.ls9{letter-spacing:8.336640pt;}
.lsa{letter-spacing:17.920000pt;}
.ls1b{letter-spacing:30.208000pt;}
.ls12{letter-spacing:48.768000pt;}
.ls7{letter-spacing:55.791787pt;}
.ls8{letter-spacing:66.693120pt;}
.ls13{letter-spacing:752.138667pt;}
.wsd{word-spacing:-64.000000pt;}
.ws3{word-spacing:-48.128000pt;}
.ws1{word-spacing:-35.456000pt;}
.ws0{word-spacing:-32.720427pt;}
.ws2{word-spacing:-26.432000pt;}
.ws6{word-spacing:-21.600000pt;}
.wsf{word-spacing:-16.640000pt;}
.ws14{word-spacing:-16.512000pt;}
.ws8{word-spacing:-16.256000pt;}
.wse{word-spacing:-16.128000pt;}
.ws15{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.936000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws10{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws11{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.880000pt;}
.wsb{word-spacing:-10.720000pt;}
.ws12{word-spacing:-10.400000pt;}
.ws13{word-spacing:-10.240000pt;}
.ws16{word-spacing:-0.056320pt;}
.ws4{word-spacing:0.000000pt;}
._10{margin-left:-14.613333pt;}
._14{margin-left:-12.917333pt;}
._13{margin-left:-11.125333pt;}
._12{margin-left:-8.864000pt;}
._11{margin-left:-5.973333pt;}
._15{margin-left:-4.096000pt;}
._e{margin-left:-3.200000pt;}
._a{margin-left:-1.930667pt;}
._1{margin-left:-0.960000pt;}
._0{width:1.288320pt;}
._9{width:2.880000pt;}
._4{width:4.160000pt;}
._5{width:5.167360pt;}
._6{width:6.331307pt;}
._c{width:7.360000pt;}
._d{width:8.335360pt;}
._22{width:9.281280pt;}
._1c{width:10.176000pt;}
._b{width:11.328000pt;}
._2{width:12.906667pt;}
._3{width:14.005333pt;}
._18{width:15.104000pt;}
._17{width:16.960000pt;}
._16{width:17.856000pt;}
._1f{width:18.786347pt;}
._19{width:19.840000pt;}
._1a{width:21.047680pt;}
._1b{width:22.366933pt;}
._20{width:23.405867pt;}
._21{width:24.490667pt;}
._23{width:25.397333pt;}
._1d{width:26.304000pt;}
._1e{width:27.392000pt;}
._28{width:28.352000pt;}
._26{width:32.064000pt;}
._27{width:33.376000pt;}
._29{width:35.584000pt;}
._7{width:41.898667pt;}
._8{width:42.944000pt;}
._24{width:63.232000pt;}
._25{width:64.384000pt;}
._2a{width:109.632000pt;}
._2b{width:110.688000pt;}
._f{width:752.138667pt;}
.fs8{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fsa{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs6{font-size:85.120000pt;}
.fs3{font-size:96.000000pt;}
.fs0{font-size:117.120000pt;}
.fs2{font-size:128.000000pt;}
.fs5{font-size:138.880000pt;}
.fs4{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:50.720000pt;}
.y27{bottom:69.152000pt;}
.y142{bottom:99.712000pt;}
.y5d{bottom:100.352000pt;}
.y1a3{bottom:102.272000pt;}
.y7d{bottom:104.192000pt;}
.y1c5{bottom:107.072000pt;}
.y1b4{bottom:108.192000pt;}
.y10e{bottom:108.672000pt;}
.y115{bottom:110.432000pt;}
.y1b8{bottom:111.872000pt;}
.yd4{bottom:112.992000pt;}
.y9a{bottom:114.752000pt;}
.yf1{bottom:115.712000pt;}
.y15e{bottom:116.352000pt;}
.y134{bottom:116.672000pt;}
.y161{bottom:125.472000pt;}
.y141{bottom:127.392000pt;}
.y5c{bottom:127.872000pt;}
.y1cc{bottom:129.312000pt;}
.y10{bottom:129.792000pt;}
.y1a2{bottom:129.952000pt;}
.y7c{bottom:131.712000pt;}
.y1b3{bottom:135.706667pt;}
.y10d{bottom:136.346667pt;}
.y114{bottom:137.946667pt;}
.yd3{bottom:140.506667pt;}
.y99{bottom:142.426667pt;}
.yf0{bottom:143.226667pt;}
.y15d{bottom:143.866667pt;}
.y133{bottom:144.346667pt;}
.y1c4{bottom:145.306667pt;}
.y1b7{bottom:146.586667pt;}
.y188{bottom:148.346667pt;}
.y160{bottom:153.146667pt;}
.y140{bottom:154.906667pt;}
.y5b{bottom:155.546667pt;}
.y1a1{bottom:157.466667pt;}
.y7b{bottom:159.386667pt;}
.y124{bottom:161.146667pt;}
.y1b2{bottom:163.386667pt;}
.y10c{bottom:163.866667pt;}
.y1cb{bottom:167.546667pt;}
.y98{bottom:169.946667pt;}
.yef{bottom:170.906667pt;}
.y187{bottom:175.866667pt;}
.y113{bottom:176.346667pt;}
.yf{bottom:178.266667pt;}
.yd2{bottom:178.746667pt;}
.ya9{bottom:180.666667pt;}
.y15c{bottom:182.106667pt;}
.y132{bottom:182.586667pt;}
.y5a{bottom:183.066667pt;}
.y1c3{bottom:183.546667pt;}
.y1a0{bottom:185.146667pt;}
.y7a{bottom:186.906667pt;}
.y10b{bottom:191.546667pt;}
.y13f{bottom:193.146667pt;}
.y97{bottom:197.626667pt;}
.yee{bottom:198.426667pt;}
.y123{bottom:199.546667pt;}
.y1b1{bottom:201.626667pt;}
.y186{bottom:203.546667pt;}
.y112{bottom:203.866667pt;}
.y1ca{bottom:205.786667pt;}
.yd1{bottom:207.386667pt;}
.ya8{bottom:208.346667pt;}
.y15b{bottom:209.786667pt;}
.y131{bottom:210.106667pt;}
.y59{bottom:210.746667pt;}
.y19f{bottom:212.666667pt;}
.y79{bottom:214.586667pt;}
.y10a{bottom:219.066667pt;}
.y13e{bottom:220.826667pt;}
.y1c2{bottom:221.786667pt;}
.y9e{bottom:225.146667pt;}
.y122{bottom:227.066667pt;}
.y185{bottom:231.066667pt;}
.y111{bottom:231.546667pt;}
.y96{bottom:235.866667pt;}
.yd0{bottom:236.346667pt;}
.yed{bottom:236.666667pt;}
.y15a{bottom:237.306667pt;}
.y130{bottom:237.786667pt;}
.y58{bottom:238.266667pt;}
.y19e{bottom:240.346667pt;}
.y78{bottom:242.106667pt;}
.ye{bottom:242.906667pt;}
.y1c9{bottom:244.026667pt;}
.y109{bottom:246.746667pt;}
.y13d{bottom:248.346667pt;}
.y3f{bottom:250.746667pt;}
.y9d{bottom:252.826667pt;}
.y184{bottom:258.746667pt;}
.y1c1{bottom:260.026667pt;}
.y95{bottom:263.546667pt;}
.ycf{bottom:263.866667pt;}
.yec{bottom:264.346667pt;}
.y159{bottom:264.986667pt;}
.y121{bottom:265.306667pt;}
.y57{bottom:265.946667pt;}
.y19d{bottom:267.866667pt;}
.y110{bottom:269.786667pt;}
.y108{bottom:274.266667pt;}
.y12f{bottom:276.026667pt;}
.y1ce{bottom:277.626667pt;}
.y3e{bottom:278.266667pt;}
.y77{bottom:280.346667pt;}
.y1c8{bottom:282.426667pt;}
.y183{bottom:286.266667pt;}
.y94{bottom:291.106667pt;}
.yeb{bottom:291.906667pt;}
.y158{bottom:292.546667pt;}
.y120{bottom:293.026667pt;}
.y56{bottom:293.506667pt;}
.y19c{bottom:295.586667pt;}
.y10f{bottom:297.346667pt;}
.y1c0{bottom:298.466667pt;}
.y107{bottom:301.986667pt;}
.yce{bottom:303.426667pt;}
.y12e{bottom:303.586667pt;}
.y3d{bottom:305.986667pt;}
.y76{bottom:308.066667pt;}
.yd{bottom:310.466667pt;}
.y1cd{bottom:312.546667pt;}
.y182{bottom:313.986667pt;}
.y145{bottom:314.306667pt;}
.y93{bottom:318.786667pt;}
.y157{bottom:320.226667pt;}
.y1c7{bottom:320.706667pt;}
.y55{bottom:321.186667pt;}
.y19b{bottom:323.106667pt;}
.y1b0{bottom:326.626667pt;}
.yea{bottom:330.146667pt;}
.y11f{bottom:331.266667pt;}
.y75{bottom:335.586667pt;}
.y1bf{bottom:336.706667pt;}
.y26{bottom:338.946667pt;}
.y106{bottom:340.226667pt;}
.y3c{bottom:340.386667pt;}
.y181{bottom:341.506667pt;}
.ycd{bottom:341.666667pt;}
.y12d{bottom:341.826667pt;}
.y92{bottom:346.306667pt;}
.y156{bottom:347.746667pt;}
.y54{bottom:348.706667pt;}
.y19a{bottom:350.786667pt;}
.y144{bottom:352.546667pt;}
.y1af{bottom:354.146667pt;}
.y1c6{bottom:355.426667pt;}
.y11e{bottom:358.786667pt;}
.y74{bottom:363.266667pt;}
.y105{bottom:367.746667pt;}
.ye9{bottom:368.546667pt;}
.ycc{bottom:369.186667pt;}
.y12c{bottom:369.506667pt;}
.y3b{bottom:373.826667pt;}
.y1be{bottom:374.946667pt;}
.y155{bottom:375.426667pt;}
.yc{bottom:375.586667pt;}
.y53{bottom:376.226667pt;}
.y25{bottom:377.186667pt;}
.y199{bottom:378.306667pt;}
.y1b6{bottom:379.906667pt;}
.y13c{bottom:380.226667pt;}
.y1ae{bottom:381.826667pt;}
.ya7{bottom:384.546667pt;}
.y11d{bottom:386.466667pt;}
.y174{bottom:387.906667pt;}
.y73{bottom:390.786667pt;}
.y104{bottom:395.426667pt;}
.ye8{bottom:396.066667pt;}
.y180{bottom:396.706667pt;}
.ycb{bottom:396.866667pt;}
.y12b{bottom:397.026667pt;}
.y91{bottom:401.506667pt;}
.y154{bottom:402.946667pt;}
.y52{bottom:403.906667pt;}
.y198{bottom:405.826667pt;}
.y13b{bottom:407.746667pt;}
.y3a{bottom:408.066667pt;}
.y1ad{bottom:409.346667pt;}
.ya6{bottom:412.226667pt;}
.y1bd{bottom:413.186667pt;}
.y24{bottom:415.426667pt;}
.y72{bottom:418.466667pt;}
.y103{bottom:422.946667pt;}
.ye7{bottom:423.746667pt;}
.y17f{bottom:424.226667pt;}
.y11c{bottom:424.706667pt;}
.y173{bottom:426.146667pt;}
.y90{bottom:429.026667pt;}
.y197{bottom:433.506667pt;}
.y13a{bottom:435.426667pt;}
.y1ac{bottom:437.026667pt;}
.ya5{bottom:439.746667pt;}
.yca{bottom:440.386667pt;}
.yb{bottom:440.706667pt;}
.y153{bottom:441.186667pt;}
.y51{bottom:442.146667pt;}
.y39{bottom:442.306667pt;}
.y71{bottom:445.986667pt;}
.y102{bottom:450.626667pt;}
.ye6{bottom:451.266667pt;}
.y1bc{bottom:451.426667pt;}
.y17e{bottom:451.906667pt;}
.y23{bottom:453.826667pt;}
.y8f{bottom:456.706667pt;}
.y196{bottom:461.026667pt;}
.y11b{bottom:462.946667pt;}
.y172{bottom:464.386667pt;}
.y1ab{bottom:464.546667pt;}
.yb8{bottom:466.146667pt;}
.ya4{bottom:467.426667pt;}
.y152{bottom:468.866667pt;}
.y50{bottom:469.826667pt;}
.y38{bottom:476.546667pt;}
.y101{bottom:478.146667pt;}
.yc9{bottom:478.626667pt;}
.ye5{bottom:478.946667pt;}
.y17d{bottom:479.426667pt;}
.y22{bottom:481.346667pt;}
.y70{bottom:484.226667pt;}
.y195{bottom:488.706667pt;}
.y1bb{bottom:489.666667pt;}
.y11a{bottom:490.626667pt;}
.y1aa{bottom:492.226667pt;}
.ya2{bottom:494.946667pt;}
.y151{bottom:496.386667pt;}
.y4f{bottom:497.346667pt;}
.y171{bottom:502.626667pt;}
.yb7{bottom:504.386667pt;}
.y100{bottom:505.826667pt;}
.yc8{bottom:506.306667pt;}
.ye4{bottom:506.466667pt;}
.y17c{bottom:507.106667pt;}
.y37{bottom:510.786667pt;}
.y6f{bottom:511.906667pt;}
.y194{bottom:516.226667pt;}
.y12a{bottom:518.146667pt;}
.ya{bottom:518.306667pt;}
.y21{bottom:519.586667pt;}
.y1a9{bottom:519.746667pt;}
.y8e{bottom:522.626667pt;}
.y150{bottom:524.066667pt;}
.y4e{bottom:525.026667pt;}
.y1ba{bottom:528.066667pt;}
.y119{bottom:528.893333pt;}
.y170{bottom:530.333333pt;}
.yb6{bottom:531.933333pt;}
.yc7{bottom:533.853333pt;}
.ye3{bottom:534.173333pt;}
.y17b{bottom:534.653333pt;}
.y6e{bottom:539.453333pt;}
.y193{bottom:543.933333pt;}
.yff{bottom:544.093333pt;}
.y36{bottom:545.053333pt;}
.y139{bottom:545.853333pt;}
.y20{bottom:547.293333pt;}
.ya1{bottom:550.173333pt;}
.y14f{bottom:551.613333pt;}
.y4d{bottom:552.573333pt;}
.y118{bottom:556.413333pt;}
.y16f{bottom:557.853333pt;}
.yb5{bottom:560.733333pt;}
.y8d{bottom:560.893333pt;}
.y17a{bottom:562.333333pt;}
.y1b9{bottom:566.333333pt;}
.y6d{bottom:567.133333pt;}
.y192{bottom:571.453333pt;}
.yfe{bottom:571.613333pt;}
.yc6{bottom:572.253333pt;}
.y138{bottom:573.373333pt;}
.y1f{bottom:574.813333pt;}
.y1a8{bottom:574.973333pt;}
.ya0{bottom:577.853333pt;}
.y14e{bottom:579.293333pt;}
.y35{bottom:579.453333pt;}
.y4c{bottom:580.253333pt;}
.y117{bottom:584.093333pt;}
.y16e{bottom:585.533333pt;}
.yb4{bottom:588.253333pt;}
.y8c{bottom:588.413333pt;}
.y179{bottom:589.853333pt;}
.y6c{bottom:594.653333pt;}
.y191{bottom:599.133333pt;}
.yfd{bottom:599.293333pt;}
.yc5{bottom:599.773333pt;}
.y9{bottom:600.093333pt;}
.ye2{bottom:601.053333pt;}
.y1e{bottom:602.493333pt;}
.y9f{bottom:605.373333pt;}
.y14d{bottom:606.813333pt;}
.y4b{bottom:607.773333pt;}
.y129{bottom:611.613333pt;}
.y34{bottom:613.693333pt;}
.yb3{bottom:615.773333pt;}
.y8b{bottom:616.093333pt;}
.y178{bottom:617.533333pt;}
.y9c{bottom:622.333333pt;}
.y16d{bottom:623.773333pt;}
.y190{bottom:626.653333pt;}
.yfc{bottom:626.813333pt;}
.yc4{bottom:627.453333pt;}
.ye1{bottom:628.573333pt;}
.y1d{bottom:630.013333pt;}
.y1a7{bottom:630.173333pt;}
.y6b{bottom:633.053333pt;}
.y14c{bottom:634.493333pt;}
.y128{bottom:639.293333pt;}
.y8a{bottom:643.613333pt;}
.yb2{bottom:644.733333pt;}
.y177{bottom:645.053333pt;}
.y4a{bottom:646.013333pt;}
.y33{bottom:647.933333pt;}
.y9b{bottom:649.853333pt;}
.y16c{bottom:651.453333pt;}
.y18f{bottom:654.333333pt;}
.yfb{bottom:654.493333pt;}
.yc3{bottom:654.973333pt;}
.ye0{bottom:657.373333pt;}
.y1c{bottom:657.693333pt;}
.y6a{bottom:660.573333pt;}
.y14b{bottom:662.013333pt;}
.y127{bottom:666.813333pt;}
.y89{bottom:671.293333pt;}
.yb1{bottom:672.253333pt;}
.y176{bottom:672.733333pt;}
.y49{bottom:673.693333pt;}
.y116{bottom:677.533333pt;}
.y16b{bottom:678.973333pt;}
.y1b5{bottom:681.053333pt;}
.y8{bottom:681.693333pt;}
.y18e{bottom:681.853333pt;}
.y32{bottom:682.173333pt;}
.yc2{bottom:682.493333pt;}
.y1b{bottom:685.213333pt;}
.y1a6{bottom:685.373333pt;}
.ydf{bottom:686.013333pt;}
.y69{bottom:688.093333pt;}
.y14a{bottom:689.693333pt;}
.yfa{bottom:692.733333pt;}
.y126{bottom:694.493333pt;}
.y88{bottom:698.813333pt;}
.yb0{bottom:699.773333pt;}
.y175{bottom:700.253333pt;}
.y48{bottom:701.213333pt;}
.y143{bottom:705.053333pt;}
.y16a{bottom:706.493333pt;}
.y18d{bottom:709.533333pt;}
.yc1{bottom:710.173333pt;}
.y1a{bottom:712.893333pt;}
.yde{bottom:714.973333pt;}
.y68{bottom:715.773333pt;}
.y31{bottom:716.413333pt;}
.yf9{bottom:720.413333pt;}
.y137{bottom:722.013333pt;}
.y87{bottom:726.493333pt;}
.y149{bottom:727.933333pt;}
.yaf{bottom:728.573333pt;}
.y47{bottom:728.893333pt;}
.y125{bottom:732.733333pt;}
.y169{bottom:734.173333pt;}
.y18c{bottom:737.053333pt;}
.yc0{bottom:737.693333pt;}
.y1a5{bottom:740.573333pt;}
.ydd{bottom:742.333333pt;}
.y67{bottom:743.293333pt;}
.yf8{bottom:747.933333pt;}
.y164{bottom:749.693333pt;}
.y30{bottom:750.653333pt;}
.y19{bottom:751.133333pt;}
.y86{bottom:754.013333pt;}
.y148{bottom:755.453333pt;}
.yae{bottom:756.253333pt;}
.y46{bottom:756.413333pt;}
.y136{bottom:760.253333pt;}
.y18b{bottom:764.733333pt;}
.ybf{bottom:765.373333pt;}
.y1a4{bottom:766.533333pt;}
.y66{bottom:771.013333pt;}
.ydc{bottom:771.333333pt;}
.y168{bottom:772.453333pt;}
.y7{bottom:774.053333pt;}
.y18{bottom:778.693333pt;}
.y85{bottom:781.733333pt;}
.y147{bottom:783.173333pt;}
.yad{bottom:783.653333pt;}
.y2f{bottom:784.933333pt;}
.yf7{bottom:786.213333pt;}
.y135{bottom:787.973333pt;}
.y18a{bottom:792.293333pt;}
.ybe{bottom:792.933333pt;}
.y45{bottom:794.693333pt;}
.y65{bottom:798.533333pt;}
.ydb{bottom:798.853333pt;}
.y167{bottom:800.133333pt;}
.y17{bottom:806.373333pt;}
.y84{bottom:809.253333pt;}
.y146{bottom:810.693333pt;}
.yf6{bottom:813.893333pt;}
.y2e{bottom:819.333333pt;}
.y189{bottom:819.973333pt;}
.ybd{bottom:820.613333pt;}
.y44{bottom:822.373333pt;}
.yac{bottom:823.333333pt;}
.y64{bottom:826.213333pt;}
.y166{bottom:827.653333pt;}
.y6{bottom:834.853333pt;}
.y83{bottom:836.933333pt;}
.yda{bottom:838.373333pt;}
.y16{bottom:844.613333pt;}
.y15f{bottom:847.493333pt;}
.y43{bottom:849.893333pt;}
.yf5{bottom:852.133333pt;}
.y2d{bottom:853.573333pt;}
.y63{bottom:853.733333pt;}
.y165{bottom:855.333333pt;}
.yab{bottom:861.573333pt;}
.ybc{bottom:864.133333pt;}
.y82{bottom:864.453333pt;}
.yd9{bottom:865.893333pt;}
.y5{bottom:868.613333pt;}
.y15{bottom:872.133333pt;}
.ya3{bottom:875.173333pt;}
.y42{bottom:877.573333pt;}
.yf4{bottom:879.653333pt;}
.y163{bottom:881.413333pt;}
.y2c{bottom:887.813333pt;}
.y62{bottom:892.133333pt;}
.yd8{bottom:893.573333pt;}
.y4{bottom:902.373333pt;}
.ybb{bottom:902.533333pt;}
.y81{bottom:902.693333pt;}
.y41{bottom:905.093333pt;}
.y162{bottom:908.933333pt;}
.y14{bottom:910.533333pt;}
.yf3{bottom:917.893333pt;}
.y61{bottom:919.653333pt;}
.yd7{bottom:921.093333pt;}
.y2b{bottom:922.053333pt;}
.yba{bottom:930.053333pt;}
.y80{bottom:930.373333pt;}
.y40{bottom:932.773333pt;}
.y3{bottom:935.013333pt;}
.y13{bottom:938.053333pt;}
.yf2{bottom:947.013333pt;}
.y60{bottom:947.333333pt;}
.yd6{bottom:948.773333pt;}
.y7f{bottom:957.893333pt;}
.y2a{bottom:960.293333pt;}
.y2{bottom:964.133333pt;}
.y12{bottom:965.733333pt;}
.yb9{bottom:973.573333pt;}
.y5f{bottom:974.853333pt;}
.yd5{bottom:976.293333pt;}
.y7e{bottom:985.573333pt;}
.y29{bottom:992.133333pt;}
.y1{bottom:1000.453333pt;}
.y11{bottom:1008.000000pt;}
.yaa{bottom:1008.320000pt;}
.y5e{bottom:1013.120000pt;}
.h13{height:47.085938pt;}
.hf{height:57.375000pt;}
.hb{height:58.563750pt;}
.h9{height:62.812500pt;}
.h11{height:63.656250pt;}
.he{height:64.500000pt;}
.hd{height:66.404375pt;}
.h12{height:66.511042pt;}
.h10{height:66.750000pt;}
.ha{height:83.540625pt;}
.hc{height:88.777500pt;}
.h4{height:100.125000pt;}
.h8{height:108.313125pt;}
.h6{height:118.375000pt;}
.h2{height:122.152500pt;}
.h7{height:128.436875pt;}
.h3{height:133.500000pt;}
.h5{height:177.562500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:113.471988pt;}
.x7{left:119.391988pt;}
.xf{left:128.191988pt;}
.x11{left:137.466655pt;}
.x18{left:140.506655pt;}
.x9{left:147.066655pt;}
.x12{left:161.466655pt;}
.x3{left:169.946655pt;}
.x8{left:178.586655pt;}
.x13{left:185.466655pt;}
.x1c{left:200.026655pt;}
.x1{left:200.986655pt;}
.x1b{left:202.426655pt;}
.x2{left:221.306655pt;}
.x5{left:229.786655pt;}
.x19{left:233.306655pt;}
.x4{left:257.506655pt;}
.xc{left:312.866655pt;}
.xb{left:369.826655pt;}
.x14{left:388.866655pt;}
.x10{left:392.866655pt;}
.xe{left:394.306655pt;}
.x6{left:396.866655pt;}
.x16{left:541.373322pt;}
.x17{left:543.933322pt;}
.x15{left:544.893322pt;}
.x1a{left:576.893322pt;}
.xa{left:680.453322pt;}
}




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