
    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_cab2580dacf52ef06559de43.woff')format("woff");}.ff1{font-family:ff1;line-height:1.090332;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_9f1aeab209d7227d58683b8b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_65e602a29b5e61a1bf7bad23.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e347c056d5b081828954cd20.woff')format("woff");}.ff4{font-family:ff4;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3d2c8a9d3309e94a02989701.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_c9feb663f36587db17666f6c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.978027;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_8ebdb74bcae3591cdfb63d6a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_6833d7b916235a0442b41a84.woff')format("woff");}.ff8{font-family:ff8;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_1e5d9054359f390af60e1102.woff')format("woff");}.ff9{font-family:ff9;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_f42b2efac7cfbcc3c80c9f23.woff')format("woff");}.ffa{font-family:ffa;line-height:0.942383;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:ffb;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;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:ffc;src:url('chunks/assets/font_a8c28e508c517d737b1064ed.woff')format("woff");}.ffc{font-family:ffc;line-height:0.816406;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;}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.760000px;}
.v4{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.v3{vertical-align:27.360000px;}
.ls19{letter-spacing:-5.040000px;}
.ls8{letter-spacing:-2.880000px;}
.ls5{letter-spacing:-0.720000px;}
.lsf{letter-spacing:-0.450600px;}
.ls1{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls7{letter-spacing:-0.072000px;}
.ls2{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.072000px;}
.lsb{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.144000px;}
.ls12{letter-spacing:0.180000px;}
.lsd{letter-spacing:0.216000px;}
.lse{letter-spacing:0.269280px;}
.ls10{letter-spacing:0.269400px;}
.ls11{letter-spacing:0.288000px;}
.lsc{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.432000px;}
.ls0{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.864000px;}
.ls18{letter-spacing:7.200000px;}
.ls15{letter-spacing:87.984000px;}
.ls16{letter-spacing:92.304000px;}
.ls14{letter-spacing:108.144000px;}
.ls13{letter-spacing:128.304000px;}
.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;}
}
.wsf{word-spacing:-72.000000px;}
.ws0{word-spacing:-71.712000px;}
.ws5{word-spacing:-18.432000px;}
.wsa{word-spacing:-18.216000px;}
.ws3{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.928000px;}
.ws9{word-spacing:-17.856000px;}
.ws4{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws8{word-spacing:-15.120000px;}
.ws10{word-spacing:-12.960000px;}
.wsd{word-spacing:-12.329400px;}
.wsc{word-spacing:-12.060000px;}
.wsb{word-spacing:-11.609400px;}
.ws2{word-spacing:0.000000px;}
._5{margin-left:-10.092000px;}
._23{margin-left:-9.000000px;}
._16{margin-left:-7.848000px;}
._0{margin-left:-6.624000px;}
._1{margin-left:-5.616000px;}
._4{margin-left:-4.320000px;}
._2{margin-left:-3.168000px;}
._3{margin-left:-1.356000px;}
._6{width:1.008000px;}
._e{width:2.160000px;}
._9{width:3.240000px;}
._a{width:4.320000px;}
._1c{width:5.328000px;}
._b{width:6.336000px;}
._12{width:7.440000px;}
._7{width:8.544000px;}
._8{width:9.612000px;}
._10{width:11.064000px;}
._11{width:12.120000px;}
._f{width:13.824000px;}
._14{width:15.396000px;}
._13{width:16.416000px;}
._15{width:19.860000px;}
._17{width:20.964000px;}
._1d{width:22.896000px;}
._1b{width:24.684000px;}
._1a{width:26.496000px;}
._19{width:27.648000px;}
._c{width:29.088000px;}
._d{width:30.384000px;}
._1e{width:34.056000px;}
._18{width:35.712000px;}
._20{width:54.432000px;}
._21{width:86.544000px;}
._22{width:87.756000px;}
._1f{width:95.388000px;}
.fc3{color:transparent;}
.fc2{color:rgb(32,33,36);}
.fc1{color:rgb(48,48,48);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:48.240000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yed{bottom:0.720000px;}
.y6b{bottom:7.014000px;}
.y53{bottom:7.020000px;}
.y58{bottom:7.200000px;}
.y85{bottom:7.245000px;}
.y109{bottom:7.740000px;}
.yf5{bottom:11.880000px;}
.yc4{bottom:14.220000px;}
.ye2{bottom:14.265000px;}
.yc2{bottom:14.400000px;}
.yef{bottom:17.820000px;}
.yeb{bottom:18.900000px;}
.yee{bottom:19.080000px;}
.yf9{bottom:19.620000px;}
.yea{bottom:23.805000px;}
.y111{bottom:23.940000px;}
.y60{bottom:30.780000px;}
.y7c{bottom:30.810000px;}
.y55{bottom:30.825000px;}
.y6a{bottom:30.954000px;}
.y57{bottom:30.960000px;}
.yb5{bottom:30.990000px;}
.y84{bottom:31.005000px;}
.yf7{bottom:31.500000px;}
.y118{bottom:31.680000px;}
.y11a{bottom:32.040000px;}
.y114{bottom:32.220000px;}
.yf8{bottom:43.380000px;}
.yc7{bottom:45.354000px;}
.y106{bottom:47.520000px;}
.yac{bottom:54.540000px;}
.yb1{bottom:54.720000px;}
.yb4{bottom:54.750000px;}
.yba{bottom:54.765000px;}
.y113{bottom:55.980000px;}
.y2{bottom:58.860000px;}
.yc6{bottom:76.314000px;}
.yb0{bottom:78.480000px;}
.yb3{bottom:78.510000px;}
.yb9{bottom:78.525000px;}
.y1{bottom:80.856000px;}
.yaf{bottom:102.420000px;}
.yc5{bottom:112.356000px;}
.yc0{bottom:114.876000px;}
.y8a{bottom:117.576000px;}
.y168{bottom:119.736000px;}
.ye9{bottom:124.416000px;}
.y51{bottom:128.916000px;}
.yaa{bottom:131.076000px;}
.y103{bottom:132.156000px;}
.y2d{bottom:134.136000px;}
.y140{bottom:141.336000px;}
.y11f{bottom:142.956000px;}
.y167{bottom:143.496000px;}
.y69{bottom:145.836000px;}
.ybf{bottom:146.016000px;}
.ye8{bottom:155.370000px;}
.y2c{bottom:158.070000px;}
.y50{bottom:159.870000px;}
.ya9{bottom:162.030000px;}
.y102{bottom:163.110000px;}
.y13f{bottom:165.090000px;}
.y89{bottom:165.990000px;}
.y166{bottom:167.250000px;}
.y11e{bottom:174.090000px;}
.ybe{bottom:176.970000px;}
.y2b{bottom:181.830000px;}
.ye7{bottom:186.510000px;}
.y13e{bottom:188.850000px;}
.y88{bottom:190.470000px;}
.y4f{bottom:191.010000px;}
.ya8{bottom:193.170000px;}
.y68{bottom:194.250000px;}
.y11d{bottom:202.710000px;}
.ye6{bottom:203.250000px;}
.y2a{bottom:205.590000px;}
.yc3{bottom:206.310000px;}
.ybd{bottom:208.110000px;}
.y13d{bottom:212.790000px;}
.y165{bottom:214.770000px;}
.y11c{bottom:217.470000px;}
.y67{bottom:218.730000px;}
.y4e{bottom:221.970000px;}
.ya7{bottom:224.130000px;}
.y101{bottom:225.210000px;}
.y29{bottom:229.350000px;}
.ye5{bottom:234.210000px;}
.y13c{bottom:236.550000px;}
.yc1{bottom:237.990000px;}
.y164{bottom:238.710000px;}
.y87{bottom:238.890000px;}
.ybc{bottom:239.070000px;}
.y11b{bottom:241.950000px;}
.y4d{bottom:253.110000px;}
.y28{bottom:253.290000px;}
.ya6{bottom:255.270000px;}
.y100{bottom:256.350000px;}
.ybb{bottom:256.530000px;}
.y13b{bottom:260.310000px;}
.y163{bottom:262.470000px;}
.ye4{bottom:265.350000px;}
.y119{bottom:266.610000px;}
.y66{bottom:267.150000px;}
.y27{bottom:277.050000px;}
.y4c{bottom:284.070000px;}
.ya5{bottom:286.230000px;}
.y86{bottom:287.310000px;}
.y180{bottom:289.290000px;}
.ye3{bottom:296.310000px;}
.y26{bottom:300.810000px;}
.y13a{bottom:308.010000px;}
.y162{bottom:309.990000px;}
.y17f{bottom:313.050000px;}
.y4b{bottom:315.210000px;}
.y65{bottom:315.570000px;}
.yff{bottom:315.930000px;}
.ya4{bottom:317.370000px;}
.y25{bottom:324.570000px;}
.ye1{bottom:327.450000px;}
.yb8{bottom:328.710000px;}
.y139{bottom:331.770000px;}
.y161{bottom:333.930000px;}
.y83{bottom:335.550000px;}
.y17e{bottom:337.035000px;}
.y117{bottom:340.095000px;}
.yfe{bottom:344.235000px;}
.y4a{bottom:346.215000px;}
.ya3{bottom:348.375000px;}
.y24{bottom:348.555000px;}
.y138{bottom:355.575000px;}
.y160{bottom:357.735000px;}
.ye0{bottom:358.455000px;}
.y17d{bottom:360.795000px;}
.yfd{bottom:361.875000px;}
.y64{bottom:363.855000px;}
.y116{bottom:364.575000px;}
.y23{bottom:372.315000px;}
.y49{bottom:377.355000px;}
.y137{bottom:379.335000px;}
.ya2{bottom:379.515000px;}
.y15f{bottom:381.495000px;}
.y82{bottom:384.015000px;}
.y17c{bottom:384.555000px;}
.y115{bottom:389.235000px;}
.ydf{bottom:389.595000px;}
.y22{bottom:396.075000px;}
.y136{bottom:403.275000px;}
.y15e{bottom:405.255000px;}
.y48{bottom:408.315000px;}
.y81{bottom:408.495000px;}
.yfc{bottom:410.115000px;}
.ya1{bottom:410.475000px;}
.y63{bottom:412.275000px;}
.y112{bottom:413.715000px;}
.y21{bottom:419.835000px;}
.yde{bottom:420.555000px;}
.yb7{bottom:424.695000px;}
.y135{bottom:427.035000px;}
.y15d{bottom:429.195000px;}
.y17b{bottom:432.255000px;}
.y80{bottom:433.155000px;}
.y47{bottom:439.455000px;}
.ya0{bottom:441.615000px;}
.y20{bottom:443.595000px;}
.y134{bottom:450.795000px;}
.ydd{bottom:451.695000px;}
.y15c{bottom:452.955000px;}
.y17a{bottom:456.015000px;}
.yfb{bottom:458.535000px;}
.y62{bottom:460.695000px;}
.y1f{bottom:467.535000px;}
.y46{bottom:470.415000px;}
.y9f{bottom:472.575000px;}
.y133{bottom:474.555000px;}
.y15b{bottom:476.715000px;}
.y179{bottom:479.775000px;}
.y7f{bottom:481.575000px;}
.y110{bottom:487.155000px;}
.y1e{bottom:491.295000px;}
.yb6{bottom:496.875000px;}
.ydc{bottom:497.055000px;}
.y132{bottom:498.315000px;}
.y15a{bottom:500.475000px;}
.y45{bottom:501.555000px;}
.y178{bottom:503.535000px;}
.y9e{bottom:503.715000px;}
.y7e{bottom:506.055000px;}
.yfa{bottom:506.955000px;}
.y61{bottom:508.935000px;}
.y10f{bottom:511.815000px;}
.y1d{bottom:515.055000px;}
.y131{bottom:522.255000px;}
.y159{bottom:524.415000px;}
.y177{bottom:527.295000px;}
.ydb{bottom:528.015000px;}
.yf6{bottom:531.435000px;}
.y44{bottom:532.515000px;}
.y9d{bottom:534.675000px;}
.y10e{bottom:536.295000px;}
.y1c{bottom:538.815000px;}
.y130{bottom:546.015000px;}
.y158{bottom:548.175000px;}
.y176{bottom:551.235000px;}
.y7d{bottom:554.475000px;}
.y5f{bottom:557.355000px;}
.yda{bottom:559.155000px;}
.y10d{bottom:560.955000px;}
.y1b{bottom:562.755000px;}
.y43{bottom:563.655000px;}
.y9c{bottom:565.815000px;}
.y12f{bottom:569.775000px;}
.y157{bottom:571.935000px;}
.y175{bottom:574.995000px;}
.y7b{bottom:578.955000px;}
.y1a{bottom:586.515000px;}
.yd9{bottom:590.115000px;}
.yb2{bottom:592.815000px;}
.y12e{bottom:593.535000px;}
.y42{bottom:594.615000px;}
.y156{bottom:595.695000px;}
.y9b{bottom:596.775000px;}
.y174{bottom:598.755000px;}
.yf4{bottom:604.905000px;}
.y5e{bottom:605.625000px;}
.y10c{bottom:609.225000px;}
.y19{bottom:610.305000px;}
.y12d{bottom:617.505000px;}
.y155{bottom:619.665000px;}
.yd8{bottom:621.285000px;}
.y173{bottom:622.545000px;}
.y41{bottom:625.785000px;}
.y7a{bottom:627.405000px;}
.y9a{bottom:627.945000px;}
.yf3{bottom:629.565000px;}
.y5d{bottom:630.285000px;}
.y18{bottom:634.065000px;}
.y12c{bottom:641.265000px;}
.y154{bottom:643.425000px;}
.y172{bottom:646.485000px;}
.yd7{bottom:652.245000px;}
.yf2{bottom:654.045000px;}
.y5c{bottom:654.765000px;}
.y40{bottom:656.745000px;}
.y10b{bottom:657.645000px;}
.y17{bottom:658.005000px;}
.y99{bottom:658.905000px;}
.y12b{bottom:665.025000px;}
.y153{bottom:667.185000px;}
.y171{bottom:670.245000px;}
.y79{bottom:675.645000px;}
.yf1{bottom:678.705000px;}
.y16{bottom:681.765000px;}
.y10a{bottom:682.125000px;}
.yd6{bottom:683.385000px;}
.y3f{bottom:687.885000px;}
.yae{bottom:688.785000px;}
.y98{bottom:690.045000px;}
.y152{bottom:690.945000px;}
.y170{bottom:694.005000px;}
.y5b{bottom:703.185000px;}
.y108{bottom:706.785000px;}
.y15{bottom:712.725000px;}
.yd5{bottom:714.345000px;}
.y78{bottom:714.525000px;}
.y151{bottom:714.705000px;}
.y16f{bottom:717.765000px;}
.y3e{bottom:718.845000px;}
.y97{bottom:721.005000px;}
.y5a{bottom:727.665000px;}
.y107{bottom:731.265000px;}
.y12a{bottom:736.485000px;}
.y150{bottom:738.645000px;}
.y16e{bottom:741.705000px;}
.y14{bottom:743.865000px;}
.yd4{bottom:745.485000px;}
.y77{bottom:745.665000px;}
.y3d{bottom:749.985000px;}
.yf0{bottom:751.605000px;}
.y96{bottom:752.145000px;}
.y105{bottom:755.925000px;}
.y129{bottom:760.245000px;}
.y14f{bottom:762.405000px;}
.y16d{bottom:765.465000px;}
.y13{bottom:774.825000px;}
.y59{bottom:776.085000px;}
.yd3{bottom:776.445000px;}
.y76{bottom:776.625000px;}
.y3c{bottom:780.945000px;}
.y95{bottom:783.105000px;}
.y128{bottom:784.005000px;}
.y14e{bottom:786.165000px;}
.y16c{bottom:789.225000px;}
.y56{bottom:800.565000px;}
.y104{bottom:804.165000px;}
.y12{bottom:805.965000px;}
.yd2{bottom:807.585000px;}
.y75{bottom:807.765000px;}
.y127{bottom:807.945000px;}
.yad{bottom:808.665000px;}
.y14d{bottom:809.925000px;}
.y3b{bottom:812.085000px;}
.y16b{bottom:812.985000px;}
.y94{bottom:814.245000px;}
.y126{bottom:831.705000px;}
.y14c{bottom:833.865000px;}
.y11{bottom:836.925000px;}
.yd1{bottom:838.545000px;}
.y74{bottom:838.725000px;}
.y3a{bottom:843.045000px;}
.y93{bottom:845.205000px;}
.yec{bottom:846.825000px;}
.y54{bottom:848.985000px;}
.y125{bottom:855.465000px;}
.y14b{bottom:857.625000px;}
.y16a{bottom:860.685000px;}
.y10{bottom:868.065000px;}
.yd0{bottom:869.685000px;}
.y73{bottom:869.865000px;}
.y39{bottom:874.230000px;}
.y92{bottom:876.390000px;}
.y124{bottom:879.270000px;}
.yab{bottom:880.890000px;}
.y14a{bottom:883.050000px;}
.y169{bottom:884.490000px;}
.y52{bottom:897.450000px;}
.yf{bottom:899.070000px;}
.ycf{bottom:900.690000px;}
.y72{bottom:900.870000px;}
.y123{bottom:903.210000px;}
.y38{bottom:905.190000px;}
.y91{bottom:907.350000px;}
.y149{bottom:908.250000px;}
.y122{bottom:926.970000px;}
.ye{bottom:930.210000px;}
.yce{bottom:931.830000px;}
.y71{bottom:932.010000px;}
.y148{bottom:932.190000px;}
.y37{bottom:936.330000px;}
.y90{bottom:938.490000px;}
.y121{bottom:950.730000px;}
.y147{bottom:955.950000px;}
.yd{bottom:961.170000px;}
.ycd{bottom:962.790000px;}
.y70{bottom:962.970000px;}
.y36{bottom:967.290000px;}
.y8f{bottom:969.450000px;}
.y120{bottom:974.490000px;}
.y146{bottom:979.710000px;}
.ycc{bottom:980.250000px;}
.yc{bottom:992.310000px;}
.y6f{bottom:994.110000px;}
.y35{bottom:998.430000px;}
.y8e{bottom:1000.590000px;}
.y145{bottom:1003.470000px;}
.ycb{bottom:1012.110000px;}
.y8d{bottom:1018.050000px;}
.yb{bottom:1023.270000px;}
.y6e{bottom:1025.070000px;}
.y144{bottom:1027.230000px;}
.y34{bottom:1029.390000px;}
.y6d{bottom:1042.530000px;}
.yca{bottom:1043.790000px;}
.y143{bottom:1051.170000px;}
.ya{bottom:1054.410000px;}
.y33{bottom:1060.350000px;}
.y8c{bottom:1066.290000px;}
.y142{bottom:1074.930000px;}
.yc9{bottom:1075.650000px;}
.y9{bottom:1078.170000px;}
.y6c{bottom:1090.950000px;}
.y32{bottom:1091.490000px;}
.y141{bottom:1098.690000px;}
.y8{bottom:1101.930000px;}
.yc8{bottom:1107.510000px;}
.y8b{bottom:1114.710000px;}
.y31{bottom:1122.450000px;}
.y7{bottom:1125.690000px;}
.y30{bottom:1144.440000px;}
.y6{bottom:1149.660000px;}
.y2f{bottom:1168.380000px;}
.y5{bottom:1173.420000px;}
.y2e{bottom:1192.140000px;}
.y4{bottom:1204.380000px;}
.y3{bottom:1235.520000px;}
.h18{height:1.439985px;}
.h7{height:23.760000px;}
.hd{height:23.796000px;}
.ha{height:23.940000px;}
.h15{height:30.960000px;}
.h17{height:30.996000px;}
.h14{height:31.140000px;}
.h1d{height:41.726953px;}
.h19{height:45.360000px;}
.hb{height:47.520000px;}
.h8{height:47.556000px;}
.h9{height:47.700000px;}
.hc{height:47.736000px;}
.h1e{height:48.240000px;}
.h20{height:48.420000px;}
.h6{height:50.273438px;}
.h3{height:50.800781px;}
.h4{height:51.996094px;}
.h21{height:52.417969px;}
.h5{height:54.878906px;}
.h22{height:57.656250px;}
.h1c{height:61.043203px;}
.h2{height:62.402344px;}
.h1a{height:64.128867px;}
.he{height:71.280000px;}
.hf{height:71.316000px;}
.h13{height:71.460000px;}
.h1f{height:72.720000px;}
.h1b{height:72.756000px;}
.h16{height:93.060000px;}
.h12{height:95.220000px;}
.h11{height:95.256000px;}
.h10{height:119.160000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:45.720000px;}
.w24{width:56.016000px;}
.w2e{width:58.140000px;}
.w23{width:58.320000px;}
.w2c{width:58.356000px;}
.w21{width:58.536000px;}
.w1b{width:59.400000px;}
.w1a{width:59.436000px;}
.w27{width:61.200000px;}
.w2d{width:61.560000px;}
.w22{width:61.920000px;}
.w32{width:64.800000px;}
.w28{width:65.160000px;}
.w31{width:67.716000px;}
.w14{width:67.860000px;}
.w2f{width:68.040000px;}
.w17{width:68.076000px;}
.w25{width:68.580000px;}
.w13{width:69.660000px;}
.w19{width:69.840000px;}
.w30{width:72.720000px;}
.w26{width:73.656000px;}
.w18{width:74.340000px;}
.w16{width:76.320000px;}
.we{width:77.760000px;}
.w15{width:84.996000px;}
.w1c{width:87.480000px;}
.w11{width:90.396000px;}
.w10{width:93.600000px;}
.wd{width:120.816000px;}
.wf{width:128.376000px;}
.w9{width:147.420000px;}
.wb{width:147.816000px;}
.w29{width:162.180000px;}
.w1e{width:166.320000px;}
.wa{width:188.310000px;}
.wc{width:193.710000px;}
.w2a{width:236.595000px;}
.w1f{width:236.955000px;}
.w20{width:270.930000px;}
.w2b{width:275.430000px;}
.w7{width:281.190000px;}
.w5{width:295.950000px;}
.w6{width:336.675000px;}
.w8{width:351.255000px;}
.w1d{width:675.645000px;}
.w3{width:679.785000px;}
.w12{width:717.405000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:7.740000px;}
.x22{left:9.180000px;}
.x24{left:10.800000px;}
.x49{left:12.240000px;}
.x44{left:13.860000px;}
.x42{left:15.120000px;}
.x40{left:16.560000px;}
.x27{left:18.720000px;}
.x2c{left:20.520000px;}
.x29{left:23.580000px;}
.x2a{left:25.020000px;}
.x2b{left:26.460000px;}
.x2e{left:29.520000px;}
.x2d{left:30.960000px;}
.x51{left:32.220000px;}
.x5e{left:35.145000px;}
.x10{left:41.580000px;}
.x2f{left:43.920000px;}
.x5a{left:44.994000px;}
.x5c{left:46.074000px;}
.x28{left:48.420000px;}
.x5b{left:50.034000px;}
.x48{left:51.114000px;}
.x47{left:53.094000px;}
.x5d{left:56.334000px;}
.x50{left:58.500000px;}
.x4c{left:59.934000px;}
.x4a{left:65.694000px;}
.x4b{left:67.134000px;}
.x4f{left:68.445000px;}
.x3e{left:71.640000px;}
.x52{left:74.160000px;}
.x3b{left:83.154000px;}
.x4d{left:98.145000px;}
.x2{left:108.035987px;}
.x14{left:116.855987px;}
.x4e{left:135.360000px;}
.x16{left:136.475987px;}
.x5f{left:137.700000px;}
.x12{left:154.830000px;}
.x60{left:162.029987px;}
.x32{left:177.690000px;}
.xd{left:179.309987px;}
.x53{left:182.009987px;}
.x19{left:183.269987px;}
.x20{left:189.570000px;}
.x9{left:201.269987px;}
.xa{left:218.729987px;}
.xf{left:234.029987px;}
.x54{left:240.879000px;}
.x1c{left:242.489987px;}
.x33{left:245.550000px;}
.x1d{left:256.890000px;}
.x55{left:271.650000px;}
.x3c{left:275.790000px;}
.x30{left:286.274987px;}
.x1f{left:290.054987px;}
.xc{left:309.674987px;}
.x21{left:311.115000px;}
.x34{left:330.555000px;}
.xb{left:331.994987px;}
.x3f{left:335.055000px;}
.x31{left:338.294987px;}
.xe{left:347.834987px;}
.x4{left:364.394987px;}
.x18{left:382.934987px;}
.x23{left:389.595000px;}
.x15{left:391.214987px;}
.x57{left:393.375000px;}
.x41{left:397.695000px;}
.x35{left:406.875000px;}
.x1{left:432.074987px;}
.x17{left:436.935000px;}
.x3{left:446.474987px;}
.x13{left:451.515000px;}
.x43{left:456.735000px;}
.x36{left:474.945000px;}
.x56{left:508.965000px;}
.x3d{left:513.465000px;}
.x25{left:518.685000px;}
.x37{left:549.285000px;}
.x58{left:577.725000px;}
.x8{left:582.044987px;}
.x1e{left:594.465000px;}
.x7{left:608.504987px;}
.x26{left:613.185000px;}
.x38{left:619.125000px;}
.x6{left:624.524987px;}
.x59{left:651.165000px;}
.x5{left:652.604987px;}
.x45{left:657.150000px;}
.x39{left:678.570000px;}
.x46{left:719.250000px;}
.x1a{left:727.709987px;}
.x1b{left:732.749987px;}
.x3a{left:737.970000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v4{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.v3{vertical-align:24.320000pt;}
.ls19{letter-spacing:-4.480000pt;}
.ls8{letter-spacing:-2.560000pt;}
.ls5{letter-spacing:-0.640000pt;}
.lsf{letter-spacing:-0.400533pt;}
.ls1{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls7{letter-spacing:-0.064000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.064000pt;}
.lsb{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.128000pt;}
.ls12{letter-spacing:0.160000pt;}
.lsd{letter-spacing:0.192000pt;}
.lse{letter-spacing:0.239360pt;}
.ls10{letter-spacing:0.239467pt;}
.ls11{letter-spacing:0.256000pt;}
.lsc{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.384000pt;}
.ls0{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.768000pt;}
.ls18{letter-spacing:6.400000pt;}
.ls15{letter-spacing:78.208000pt;}
.ls16{letter-spacing:82.048000pt;}
.ls14{letter-spacing:96.128000pt;}
.ls13{letter-spacing:114.048000pt;}
.wsf{word-spacing:-64.000000pt;}
.ws0{word-spacing:-63.744000pt;}
.ws5{word-spacing:-16.384000pt;}
.wsa{word-spacing:-16.192000pt;}
.ws3{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.936000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws4{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws8{word-spacing:-13.440000pt;}
.ws10{word-spacing:-11.520000pt;}
.wsd{word-spacing:-10.959467pt;}
.wsc{word-spacing:-10.720000pt;}
.wsb{word-spacing:-10.319467pt;}
.ws2{word-spacing:0.000000pt;}
._5{margin-left:-8.970667pt;}
._23{margin-left:-8.000000pt;}
._16{margin-left:-6.976000pt;}
._0{margin-left:-5.888000pt;}
._1{margin-left:-4.992000pt;}
._4{margin-left:-3.840000pt;}
._2{margin-left:-2.816000pt;}
._3{margin-left:-1.205333pt;}
._6{width:0.896000pt;}
._e{width:1.920000pt;}
._9{width:2.880000pt;}
._a{width:3.840000pt;}
._1c{width:4.736000pt;}
._b{width:5.632000pt;}
._12{width:6.613333pt;}
._7{width:7.594667pt;}
._8{width:8.544000pt;}
._10{width:9.834667pt;}
._11{width:10.773333pt;}
._f{width:12.288000pt;}
._14{width:13.685333pt;}
._13{width:14.592000pt;}
._15{width:17.653333pt;}
._17{width:18.634667pt;}
._1d{width:20.352000pt;}
._1b{width:21.941333pt;}
._1a{width:23.552000pt;}
._19{width:24.576000pt;}
._c{width:25.856000pt;}
._d{width:27.008000pt;}
._1e{width:30.272000pt;}
._18{width:31.744000pt;}
._20{width:48.384000pt;}
._21{width:76.928000pt;}
._22{width:78.005333pt;}
._1f{width:84.789333pt;}
.fs1{font-size:42.880000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yed{bottom:0.640000pt;}
.y6b{bottom:6.234667pt;}
.y53{bottom:6.240000pt;}
.y58{bottom:6.400000pt;}
.y85{bottom:6.440000pt;}
.y109{bottom:6.880000pt;}
.yf5{bottom:10.560000pt;}
.yc4{bottom:12.640000pt;}
.ye2{bottom:12.680000pt;}
.yc2{bottom:12.800000pt;}
.yef{bottom:15.840000pt;}
.yeb{bottom:16.800000pt;}
.yee{bottom:16.960000pt;}
.yf9{bottom:17.440000pt;}
.yea{bottom:21.160000pt;}
.y111{bottom:21.280000pt;}
.y60{bottom:27.360000pt;}
.y7c{bottom:27.386667pt;}
.y55{bottom:27.400000pt;}
.y6a{bottom:27.514667pt;}
.y57{bottom:27.520000pt;}
.yb5{bottom:27.546667pt;}
.y84{bottom:27.560000pt;}
.yf7{bottom:28.000000pt;}
.y118{bottom:28.160000pt;}
.y11a{bottom:28.480000pt;}
.y114{bottom:28.640000pt;}
.yf8{bottom:38.560000pt;}
.yc7{bottom:40.314667pt;}
.y106{bottom:42.240000pt;}
.yac{bottom:48.480000pt;}
.yb1{bottom:48.640000pt;}
.yb4{bottom:48.666667pt;}
.yba{bottom:48.680000pt;}
.y113{bottom:49.760000pt;}
.y2{bottom:52.320000pt;}
.yc6{bottom:67.834667pt;}
.yb0{bottom:69.760000pt;}
.yb3{bottom:69.786667pt;}
.yb9{bottom:69.800000pt;}
.y1{bottom:71.872000pt;}
.yaf{bottom:91.040000pt;}
.yc5{bottom:99.872000pt;}
.yc0{bottom:102.112000pt;}
.y8a{bottom:104.512000pt;}
.y168{bottom:106.432000pt;}
.ye9{bottom:110.592000pt;}
.y51{bottom:114.592000pt;}
.yaa{bottom:116.512000pt;}
.y103{bottom:117.472000pt;}
.y2d{bottom:119.232000pt;}
.y140{bottom:125.632000pt;}
.y11f{bottom:127.072000pt;}
.y167{bottom:127.552000pt;}
.y69{bottom:129.632000pt;}
.ybf{bottom:129.792000pt;}
.ye8{bottom:138.106667pt;}
.y2c{bottom:140.506667pt;}
.y50{bottom:142.106667pt;}
.ya9{bottom:144.026667pt;}
.y102{bottom:144.986667pt;}
.y13f{bottom:146.746667pt;}
.y89{bottom:147.546667pt;}
.y166{bottom:148.666667pt;}
.y11e{bottom:154.746667pt;}
.ybe{bottom:157.306667pt;}
.y2b{bottom:161.626667pt;}
.ye7{bottom:165.786667pt;}
.y13e{bottom:167.866667pt;}
.y88{bottom:169.306667pt;}
.y4f{bottom:169.786667pt;}
.ya8{bottom:171.706667pt;}
.y68{bottom:172.666667pt;}
.y11d{bottom:180.186667pt;}
.ye6{bottom:180.666667pt;}
.y2a{bottom:182.746667pt;}
.yc3{bottom:183.386667pt;}
.ybd{bottom:184.986667pt;}
.y13d{bottom:189.146667pt;}
.y165{bottom:190.906667pt;}
.y11c{bottom:193.306667pt;}
.y67{bottom:194.426667pt;}
.y4e{bottom:197.306667pt;}
.ya7{bottom:199.226667pt;}
.y101{bottom:200.186667pt;}
.y29{bottom:203.866667pt;}
.ye5{bottom:208.186667pt;}
.y13c{bottom:210.266667pt;}
.yc1{bottom:211.546667pt;}
.y164{bottom:212.186667pt;}
.y87{bottom:212.346667pt;}
.ybc{bottom:212.506667pt;}
.y11b{bottom:215.066667pt;}
.y4d{bottom:224.986667pt;}
.y28{bottom:225.146667pt;}
.ya6{bottom:226.906667pt;}
.y100{bottom:227.866667pt;}
.ybb{bottom:228.026667pt;}
.y13b{bottom:231.386667pt;}
.y163{bottom:233.306667pt;}
.ye4{bottom:235.866667pt;}
.y119{bottom:236.986667pt;}
.y66{bottom:237.466667pt;}
.y27{bottom:246.266667pt;}
.y4c{bottom:252.506667pt;}
.ya5{bottom:254.426667pt;}
.y86{bottom:255.386667pt;}
.y180{bottom:257.146667pt;}
.ye3{bottom:263.386667pt;}
.y26{bottom:267.386667pt;}
.y13a{bottom:273.786667pt;}
.y162{bottom:275.546667pt;}
.y17f{bottom:278.266667pt;}
.y4b{bottom:280.186667pt;}
.y65{bottom:280.506667pt;}
.yff{bottom:280.826667pt;}
.ya4{bottom:282.106667pt;}
.y25{bottom:288.506667pt;}
.ye1{bottom:291.066667pt;}
.yb8{bottom:292.186667pt;}
.y139{bottom:294.906667pt;}
.y161{bottom:296.826667pt;}
.y83{bottom:298.266667pt;}
.y17e{bottom:299.586667pt;}
.y117{bottom:302.306667pt;}
.yfe{bottom:305.986667pt;}
.y4a{bottom:307.746667pt;}
.ya3{bottom:309.666667pt;}
.y24{bottom:309.826667pt;}
.y138{bottom:316.066667pt;}
.y160{bottom:317.986667pt;}
.ye0{bottom:318.626667pt;}
.y17d{bottom:320.706667pt;}
.yfd{bottom:321.666667pt;}
.y64{bottom:323.426667pt;}
.y116{bottom:324.066667pt;}
.y23{bottom:330.946667pt;}
.y49{bottom:335.426667pt;}
.y137{bottom:337.186667pt;}
.ya2{bottom:337.346667pt;}
.y15f{bottom:339.106667pt;}
.y82{bottom:341.346667pt;}
.y17c{bottom:341.826667pt;}
.y115{bottom:345.986667pt;}
.ydf{bottom:346.306667pt;}
.y22{bottom:352.066667pt;}
.y136{bottom:358.466667pt;}
.y15e{bottom:360.226667pt;}
.y48{bottom:362.946667pt;}
.y81{bottom:363.106667pt;}
.yfc{bottom:364.546667pt;}
.ya1{bottom:364.866667pt;}
.y63{bottom:366.466667pt;}
.y112{bottom:367.746667pt;}
.y21{bottom:373.186667pt;}
.yde{bottom:373.826667pt;}
.yb7{bottom:377.506667pt;}
.y135{bottom:379.586667pt;}
.y15d{bottom:381.506667pt;}
.y17b{bottom:384.226667pt;}
.y80{bottom:385.026667pt;}
.y47{bottom:390.626667pt;}
.ya0{bottom:392.546667pt;}
.y20{bottom:394.306667pt;}
.y134{bottom:400.706667pt;}
.ydd{bottom:401.506667pt;}
.y15c{bottom:402.626667pt;}
.y17a{bottom:405.346667pt;}
.yfb{bottom:407.586667pt;}
.y62{bottom:409.506667pt;}
.y1f{bottom:415.586667pt;}
.y46{bottom:418.146667pt;}
.y9f{bottom:420.066667pt;}
.y133{bottom:421.826667pt;}
.y15b{bottom:423.746667pt;}
.y179{bottom:426.466667pt;}
.y7f{bottom:428.066667pt;}
.y110{bottom:433.026667pt;}
.y1e{bottom:436.706667pt;}
.yb6{bottom:441.666667pt;}
.ydc{bottom:441.826667pt;}
.y132{bottom:442.946667pt;}
.y15a{bottom:444.866667pt;}
.y45{bottom:445.826667pt;}
.y178{bottom:447.586667pt;}
.y9e{bottom:447.746667pt;}
.y7e{bottom:449.826667pt;}
.yfa{bottom:450.626667pt;}
.y61{bottom:452.386667pt;}
.y10f{bottom:454.946667pt;}
.y1d{bottom:457.826667pt;}
.y131{bottom:464.226667pt;}
.y159{bottom:466.146667pt;}
.y177{bottom:468.706667pt;}
.ydb{bottom:469.346667pt;}
.yf6{bottom:472.386667pt;}
.y44{bottom:473.346667pt;}
.y9d{bottom:475.266667pt;}
.y10e{bottom:476.706667pt;}
.y1c{bottom:478.946667pt;}
.y130{bottom:485.346667pt;}
.y158{bottom:487.266667pt;}
.y176{bottom:489.986667pt;}
.y7d{bottom:492.866667pt;}
.y5f{bottom:495.426667pt;}
.yda{bottom:497.026667pt;}
.y10d{bottom:498.626667pt;}
.y1b{bottom:500.226667pt;}
.y43{bottom:501.026667pt;}
.y9c{bottom:502.946667pt;}
.y12f{bottom:506.466667pt;}
.y157{bottom:508.386667pt;}
.y175{bottom:511.106667pt;}
.y7b{bottom:514.626667pt;}
.y1a{bottom:521.346667pt;}
.yd9{bottom:524.546667pt;}
.yb2{bottom:526.946667pt;}
.y12e{bottom:527.586667pt;}
.y42{bottom:528.546667pt;}
.y156{bottom:529.506667pt;}
.y9b{bottom:530.466667pt;}
.y174{bottom:532.226667pt;}
.yf4{bottom:537.693333pt;}
.y5e{bottom:538.333333pt;}
.y10c{bottom:541.533333pt;}
.y19{bottom:542.493333pt;}
.y12d{bottom:548.893333pt;}
.y155{bottom:550.813333pt;}
.yd8{bottom:552.253333pt;}
.y173{bottom:553.373333pt;}
.y41{bottom:556.253333pt;}
.y7a{bottom:557.693333pt;}
.y9a{bottom:558.173333pt;}
.yf3{bottom:559.613333pt;}
.y5d{bottom:560.253333pt;}
.y18{bottom:563.613333pt;}
.y12c{bottom:570.013333pt;}
.y154{bottom:571.933333pt;}
.y172{bottom:574.653333pt;}
.yd7{bottom:579.773333pt;}
.yf2{bottom:581.373333pt;}
.y5c{bottom:582.013333pt;}
.y40{bottom:583.773333pt;}
.y10b{bottom:584.573333pt;}
.y17{bottom:584.893333pt;}
.y99{bottom:585.693333pt;}
.y12b{bottom:591.133333pt;}
.y153{bottom:593.053333pt;}
.y171{bottom:595.773333pt;}
.y79{bottom:600.573333pt;}
.yf1{bottom:603.293333pt;}
.y16{bottom:606.013333pt;}
.y10a{bottom:606.333333pt;}
.yd6{bottom:607.453333pt;}
.y3f{bottom:611.453333pt;}
.yae{bottom:612.253333pt;}
.y98{bottom:613.373333pt;}
.y152{bottom:614.173333pt;}
.y170{bottom:616.893333pt;}
.y5b{bottom:625.053333pt;}
.y108{bottom:628.253333pt;}
.y15{bottom:633.533333pt;}
.yd5{bottom:634.973333pt;}
.y78{bottom:635.133333pt;}
.y151{bottom:635.293333pt;}
.y16f{bottom:638.013333pt;}
.y3e{bottom:638.973333pt;}
.y97{bottom:640.893333pt;}
.y5a{bottom:646.813333pt;}
.y107{bottom:650.013333pt;}
.y12a{bottom:654.653333pt;}
.y150{bottom:656.573333pt;}
.y16e{bottom:659.293333pt;}
.y14{bottom:661.213333pt;}
.yd4{bottom:662.653333pt;}
.y77{bottom:662.813333pt;}
.y3d{bottom:666.653333pt;}
.yf0{bottom:668.093333pt;}
.y96{bottom:668.573333pt;}
.y105{bottom:671.933333pt;}
.y129{bottom:675.773333pt;}
.y14f{bottom:677.693333pt;}
.y16d{bottom:680.413333pt;}
.y13{bottom:688.733333pt;}
.y59{bottom:689.853333pt;}
.yd3{bottom:690.173333pt;}
.y76{bottom:690.333333pt;}
.y3c{bottom:694.173333pt;}
.y95{bottom:696.093333pt;}
.y128{bottom:696.893333pt;}
.y14e{bottom:698.813333pt;}
.y16c{bottom:701.533333pt;}
.y56{bottom:711.613333pt;}
.y104{bottom:714.813333pt;}
.y12{bottom:716.413333pt;}
.yd2{bottom:717.853333pt;}
.y75{bottom:718.013333pt;}
.y127{bottom:718.173333pt;}
.yad{bottom:718.813333pt;}
.y14d{bottom:719.933333pt;}
.y3b{bottom:721.853333pt;}
.y16b{bottom:722.653333pt;}
.y94{bottom:723.773333pt;}
.y126{bottom:739.293333pt;}
.y14c{bottom:741.213333pt;}
.y11{bottom:743.933333pt;}
.yd1{bottom:745.373333pt;}
.y74{bottom:745.533333pt;}
.y3a{bottom:749.373333pt;}
.y93{bottom:751.293333pt;}
.yec{bottom:752.733333pt;}
.y54{bottom:754.653333pt;}
.y125{bottom:760.413333pt;}
.y14b{bottom:762.333333pt;}
.y16a{bottom:765.053333pt;}
.y10{bottom:771.613333pt;}
.yd0{bottom:773.053333pt;}
.y73{bottom:773.213333pt;}
.y39{bottom:777.093333pt;}
.y92{bottom:779.013333pt;}
.y124{bottom:781.573333pt;}
.yab{bottom:783.013333pt;}
.y14a{bottom:784.933333pt;}
.y169{bottom:786.213333pt;}
.y52{bottom:797.733333pt;}
.yf{bottom:799.173333pt;}
.ycf{bottom:800.613333pt;}
.y72{bottom:800.773333pt;}
.y123{bottom:802.853333pt;}
.y38{bottom:804.613333pt;}
.y91{bottom:806.533333pt;}
.y149{bottom:807.333333pt;}
.y122{bottom:823.973333pt;}
.ye{bottom:826.853333pt;}
.yce{bottom:828.293333pt;}
.y71{bottom:828.453333pt;}
.y148{bottom:828.613333pt;}
.y37{bottom:832.293333pt;}
.y90{bottom:834.213333pt;}
.y121{bottom:845.093333pt;}
.y147{bottom:849.733333pt;}
.yd{bottom:854.373333pt;}
.ycd{bottom:855.813333pt;}
.y70{bottom:855.973333pt;}
.y36{bottom:859.813333pt;}
.y8f{bottom:861.733333pt;}
.y120{bottom:866.213333pt;}
.y146{bottom:870.853333pt;}
.ycc{bottom:871.333333pt;}
.yc{bottom:882.053333pt;}
.y6f{bottom:883.653333pt;}
.y35{bottom:887.493333pt;}
.y8e{bottom:889.413333pt;}
.y145{bottom:891.973333pt;}
.ycb{bottom:899.653333pt;}
.y8d{bottom:904.933333pt;}
.yb{bottom:909.573333pt;}
.y6e{bottom:911.173333pt;}
.y144{bottom:913.093333pt;}
.y34{bottom:915.013333pt;}
.y6d{bottom:926.693333pt;}
.yca{bottom:927.813333pt;}
.y143{bottom:934.373333pt;}
.ya{bottom:937.253333pt;}
.y33{bottom:942.533333pt;}
.y8c{bottom:947.813333pt;}
.y142{bottom:955.493333pt;}
.yc9{bottom:956.133333pt;}
.y9{bottom:958.373333pt;}
.y6c{bottom:969.733333pt;}
.y32{bottom:970.213333pt;}
.y141{bottom:976.613333pt;}
.y8{bottom:979.493333pt;}
.yc8{bottom:984.453333pt;}
.y8b{bottom:990.853333pt;}
.y31{bottom:997.733333pt;}
.y7{bottom:1000.613333pt;}
.y30{bottom:1017.280000pt;}
.y6{bottom:1021.920000pt;}
.y2f{bottom:1038.560000pt;}
.y5{bottom:1043.040000pt;}
.y2e{bottom:1059.680000pt;}
.y4{bottom:1070.560000pt;}
.y3{bottom:1098.240000pt;}
.h18{height:1.279987pt;}
.h7{height:21.120000pt;}
.hd{height:21.152000pt;}
.ha{height:21.280000pt;}
.h15{height:27.520000pt;}
.h17{height:27.552000pt;}
.h14{height:27.680000pt;}
.h1d{height:37.090625pt;}
.h19{height:40.320000pt;}
.hb{height:42.240000pt;}
.h8{height:42.272000pt;}
.h9{height:42.400000pt;}
.hc{height:42.432000pt;}
.h1e{height:42.880000pt;}
.h20{height:43.040000pt;}
.h6{height:44.687500pt;}
.h3{height:45.156250pt;}
.h4{height:46.218750pt;}
.h21{height:46.593750pt;}
.h5{height:48.781250pt;}
.h22{height:51.250000pt;}
.h1c{height:54.260625pt;}
.h2{height:55.468750pt;}
.h1a{height:57.003437pt;}
.he{height:63.360000pt;}
.hf{height:63.392000pt;}
.h13{height:63.520000pt;}
.h1f{height:64.640000pt;}
.h1b{height:64.672000pt;}
.h16{height:82.720000pt;}
.h12{height:84.640000pt;}
.h11{height:84.672000pt;}
.h10{height:105.920000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:40.640000pt;}
.w24{width:49.792000pt;}
.w2e{width:51.680000pt;}
.w23{width:51.840000pt;}
.w2c{width:51.872000pt;}
.w21{width:52.032000pt;}
.w1b{width:52.800000pt;}
.w1a{width:52.832000pt;}
.w27{width:54.400000pt;}
.w2d{width:54.720000pt;}
.w22{width:55.040000pt;}
.w32{width:57.600000pt;}
.w28{width:57.920000pt;}
.w31{width:60.192000pt;}
.w14{width:60.320000pt;}
.w2f{width:60.480000pt;}
.w17{width:60.512000pt;}
.w25{width:60.960000pt;}
.w13{width:61.920000pt;}
.w19{width:62.080000pt;}
.w30{width:64.640000pt;}
.w26{width:65.472000pt;}
.w18{width:66.080000pt;}
.w16{width:67.840000pt;}
.we{width:69.120000pt;}
.w15{width:75.552000pt;}
.w1c{width:77.760000pt;}
.w11{width:80.352000pt;}
.w10{width:83.200000pt;}
.wd{width:107.392000pt;}
.wf{width:114.112000pt;}
.w9{width:131.040000pt;}
.wb{width:131.392000pt;}
.w29{width:144.160000pt;}
.w1e{width:147.840000pt;}
.wa{width:167.386667pt;}
.wc{width:172.186667pt;}
.w2a{width:210.306667pt;}
.w1f{width:210.626667pt;}
.w20{width:240.826667pt;}
.w2b{width:244.826667pt;}
.w7{width:249.946667pt;}
.w5{width:263.066667pt;}
.w6{width:299.266667pt;}
.w8{width:312.226667pt;}
.w1d{width:600.573333pt;}
.w3{width:604.253333pt;}
.w12{width:637.693333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:6.880000pt;}
.x22{left:8.160000pt;}
.x24{left:9.600000pt;}
.x49{left:10.880000pt;}
.x44{left:12.320000pt;}
.x42{left:13.440000pt;}
.x40{left:14.720000pt;}
.x27{left:16.640000pt;}
.x2c{left:18.240000pt;}
.x29{left:20.960000pt;}
.x2a{left:22.240000pt;}
.x2b{left:23.520000pt;}
.x2e{left:26.240000pt;}
.x2d{left:27.520000pt;}
.x51{left:28.640000pt;}
.x5e{left:31.240000pt;}
.x10{left:36.960000pt;}
.x2f{left:39.040000pt;}
.x5a{left:39.994667pt;}
.x5c{left:40.954667pt;}
.x28{left:43.040000pt;}
.x5b{left:44.474667pt;}
.x48{left:45.434667pt;}
.x47{left:47.194667pt;}
.x5d{left:50.074667pt;}
.x50{left:52.000000pt;}
.x4c{left:53.274667pt;}
.x4a{left:58.394667pt;}
.x4b{left:59.674667pt;}
.x4f{left:60.840000pt;}
.x3e{left:63.680000pt;}
.x52{left:65.920000pt;}
.x3b{left:73.914667pt;}
.x4d{left:87.240000pt;}
.x2{left:96.031988pt;}
.x14{left:103.871988pt;}
.x4e{left:120.320000pt;}
.x16{left:121.311988pt;}
.x5f{left:122.400000pt;}
.x12{left:137.626667pt;}
.x60{left:144.026655pt;}
.x32{left:157.946667pt;}
.xd{left:159.386655pt;}
.x53{left:161.786655pt;}
.x19{left:162.906655pt;}
.x20{left:168.506667pt;}
.x9{left:178.906655pt;}
.xa{left:194.426655pt;}
.xf{left:208.026655pt;}
.x54{left:214.114667pt;}
.x1c{left:215.546655pt;}
.x33{left:218.266667pt;}
.x1d{left:228.346667pt;}
.x55{left:241.466667pt;}
.x3c{left:245.146667pt;}
.x30{left:254.466655pt;}
.x1f{left:257.826655pt;}
.xc{left:275.266655pt;}
.x21{left:276.546667pt;}
.x34{left:293.826667pt;}
.xb{left:295.106655pt;}
.x3f{left:297.826667pt;}
.x31{left:300.706655pt;}
.xe{left:309.186655pt;}
.x4{left:323.906655pt;}
.x18{left:340.386655pt;}
.x23{left:346.306667pt;}
.x15{left:347.746655pt;}
.x57{left:349.666667pt;}
.x41{left:353.506667pt;}
.x35{left:361.666667pt;}
.x1{left:384.066655pt;}
.x17{left:388.386667pt;}
.x3{left:396.866655pt;}
.x13{left:401.346667pt;}
.x43{left:405.986667pt;}
.x36{left:422.173333pt;}
.x56{left:452.413333pt;}
.x3d{left:456.413333pt;}
.x25{left:461.053333pt;}
.x37{left:488.253333pt;}
.x58{left:513.533333pt;}
.x8{left:517.373322pt;}
.x1e{left:528.413333pt;}
.x7{left:540.893322pt;}
.x26{left:545.053333pt;}
.x38{left:550.333333pt;}
.x6{left:555.133322pt;}
.x59{left:578.813333pt;}
.x5{left:580.093322pt;}
.x45{left:584.133333pt;}
.x39{left:603.173333pt;}
.x46{left:639.333333pt;}
.x1a{left:646.853322pt;}
.x1b{left:651.333322pt;}
.x3a{left:655.973333pt;}
}




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