
    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_16d4e641b07624b88117c856.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011230;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_f81d28dfdc70b7a38ef233ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.854980;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_14c5f0cf3508ae7d1537926e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.707520;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_9ceeb00df43499e63c4ec84c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.706543;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_c383683d779da778778740da.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.088379;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_7cf8a5032c7cffdcb2ba384c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.100098;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_91de3e0f716714fa8707f322.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.102051;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_e561fc774bd50d613ce773b4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.956543;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_623743558203fcde49ba4dc1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.100098;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);}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.624000px;}
.ls3{letter-spacing:-0.594000px;}
.ls19{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.300000px;}
.ls6{letter-spacing:-0.168000px;}
.lsd{letter-spacing:-0.024000px;}
.ls4{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.024000px;}
.ls1{letter-spacing:0.060000px;}
.ls10{letter-spacing:0.120000px;}
.ls18{letter-spacing:0.240000px;}
.ls17{letter-spacing:0.300000px;}
.lsf{letter-spacing:0.312000px;}
.ls9{letter-spacing:0.480000px;}
.ls0{letter-spacing:0.528000px;}
.ls1b{letter-spacing:0.600000px;}
.ls1a{letter-spacing:0.768000px;}
.ls8{letter-spacing:1.200000px;}
.ls2{letter-spacing:1.320000px;}
.ls7{letter-spacing:4.800000px;}
.ls12{letter-spacing:6.384000px;}
.ls15{letter-spacing:12.000000px;}
.ls16{letter-spacing:37.584000px;}
.lse{letter-spacing:44.784000px;}
.ls14{letter-spacing:50.814000px;}
.lsa{letter-spacing:54.354000px;}
.ls11{letter-spacing:59.214000px;}
.ls13{letter-spacing:98.784000px;}
.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;}
}
.ws7{word-spacing:-43.200000px;}
.wse{word-spacing:-18.600000px;}
.ws6{word-spacing:-18.312000px;}
.ws2{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.976000px;}
.ws8{word-spacing:-17.832000px;}
.ws5{word-spacing:-17.376000px;}
.wsa{word-spacing:-15.300000px;}
.wsb{word-spacing:-15.240000px;}
.wsc{word-spacing:-15.060000px;}
.ws1{word-spacing:-15.048000px;}
.wsd{word-spacing:-14.640000px;}
.ws3{word-spacing:-14.400000px;}
.ws0{word-spacing:-12.906000px;}
.ws4{word-spacing:0.000000px;}
._1{margin-left:-1.470000px;}
._0{width:1.038000px;}
._2{width:2.040000px;}
._3{width:3.432000px;}
._4{width:4.542000px;}
._7{width:5.640000px;}
._5{width:6.660000px;}
._8{width:8.322000px;}
._14{width:9.378000px;}
._6{width:10.392000px;}
._b{width:11.430000px;}
._c{width:12.534000px;}
._15{width:13.602000px;}
._13{width:14.622000px;}
._9{width:16.272000px;}
._1d{width:17.874000px;}
._d{width:19.098000px;}
._f{width:20.340000px;}
._e{width:21.528000px;}
._11{width:22.974000px;}
._10{width:24.006000px;}
._12{width:25.056000px;}
._1a{width:26.856000px;}
._19{width:28.170000px;}
._18{width:30.096000px;}
._a{width:31.104000px;}
._1e{width:32.232000px;}
._17{width:33.408000px;}
._16{width:34.920000px;}
._1b{width:38.088000px;}
._1c{width:39.096000px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(255,102,0);}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:39.600000px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs5{font-size:57.600000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.fs3{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:3.582000px;}
.y6{bottom:3.600000px;}
.y140{bottom:3.882000px;}
.y10d{bottom:3.885000px;}
.y144{bottom:4.170000px;}
.y115{bottom:4.182000px;}
.y121{bottom:4.185000px;}
.y14d{bottom:11.715000px;}
.y8{bottom:11.982000px;}
.y135{bottom:11.985000px;}
.y12b{bottom:20.685000px;}
.y14f{bottom:20.715000px;}
.y113{bottom:20.982000px;}
.y127{bottom:20.985000px;}
.y13e{bottom:21.015000px;}
.y120{bottom:21.030000px;}
.y14c{bottom:28.515000px;}
.y13b{bottom:29.985000px;}
.y7{bottom:34.855500px;}
.y12a{bottom:37.470000px;}
.y14e{bottom:37.515000px;}
.y134{bottom:37.770000px;}
.y112{bottom:37.774500px;}
.y126{bottom:37.785000px;}
.y139{bottom:37.815000px;}
.y11f{bottom:37.830000px;}
.y14b{bottom:45.615000px;}
.y11b{bottom:45.630000px;}
.y114{bottom:46.774500px;}
.y143{bottom:46.785000px;}
.y5{bottom:53.137500px;}
.y125{bottom:54.585000px;}
.y138{bottom:54.615000px;}
.y11e{bottom:54.630000px;}
.y4{bottom:58.237500px;}
.y11a{bottom:62.715000px;}
.y12d{bottom:63.570000px;}
.y133{bottom:63.615000px;}
.y111{bottom:63.619500px;}
.y146{bottom:63.630000px;}
.y131{bottom:71.385000px;}
.y14a{bottom:71.415000px;}
.y124{bottom:71.685000px;}
.y11d{bottom:71.715000px;}
.y137{bottom:71.730000px;}
.y142{bottom:72.585000px;}
.y129{bottom:80.415000px;}
.y130{bottom:88.185000px;}
.y149{bottom:88.215000px;}
.y119{bottom:88.530000px;}
.y110{bottom:89.719500px;}
.y123{bottom:97.485000px;}
.y13d{bottom:97.515000px;}
.y11c{bottom:97.530000px;}
.y6f{bottom:111.937500px;}
.y148{bottom:114.015000px;}
.y12f{bottom:114.285000px;}
.y118{bottom:114.330000px;}
.y6e{bottom:115.837500px;}
.ye4{bottom:117.037500px;}
.y162{bottom:121.537500px;}
.y10f{bottom:123.355500px;}
.y99{bottom:123.937500px;}
.yc2{bottom:125.137500px;}
.y13f{bottom:125.455500px;}
.y3c{bottom:125.737500px;}
.y6d{bottom:129.037500px;}
.y17e{bottom:136.237500px;}
.ye3{bottom:137.437500px;}
.y117{bottom:140.130000px;}
.y161{bottom:141.637500px;}
.y98{bottom:144.037500px;}
.yc1{bottom:145.537500px;}
.y3b{bottom:146.137500px;}
.y13c{bottom:153.360000px;}
.y17d{bottom:156.330000px;}
.ye2{bottom:157.545000px;}
.y6c{bottom:159.630000px;}
.y160{bottom:162.045000px;}
.y97{bottom:164.430000px;}
.yc0{bottom:165.630000px;}
.y3a{bottom:166.245000px;}
.y17c{bottom:176.775000px;}
.y6b{bottom:180.075000px;}
.y15f{bottom:182.175000px;}
.y96{bottom:184.575000px;}
.ybf{bottom:186.075000px;}
.y39{bottom:186.675000px;}
.ye1{bottom:186.975000px;}
.y17b{bottom:196.875000px;}
.y6a{bottom:200.175000px;}
.y95{bottom:204.975000px;}
.y38{bottom:206.775000px;}
.ye0{bottom:207.075000px;}
.ybe{bottom:208.875000px;}
.y17a{bottom:217.275000px;}
.y69{bottom:222.975000px;}
.y94{bottom:225.075000px;}
.y15e{bottom:225.375000px;}
.y37{bottom:227.175000px;}
.ybd{bottom:228.975000px;}
.y10e{bottom:235.590000px;}
.ydf{bottom:236.475000px;}
.y179{bottom:237.375000px;}
.y93{bottom:245.475000px;}
.y68{bottom:245.775000px;}
.y36{bottom:247.275000px;}
.ybc{bottom:252.075000px;}
.y178{bottom:257.775000px;}
.y10c{bottom:263.790000px;}
.y92{bottom:265.575000px;}
.y67{bottom:265.875000px;}
.y35{bottom:267.675000px;}
.ybb{bottom:272.175000px;}
.y13a{bottom:274.890000px;}
.y177{bottom:277.875000px;}
.y91{bottom:285.975000px;}
.y34{bottom:287.775000px;}
.y66{bottom:288.975000px;}
.yba{bottom:292.575000px;}
.y10b{bottom:295.875000px;}
.y176{bottom:298.275000px;}
.y90{bottom:306.075000px;}
.y33{bottom:308.175000px;}
.y15d{bottom:308.775000px;}
.y65{bottom:309.075000px;}
.yb9{bottom:312.675000px;}
.y10a{bottom:313.575000px;}
.yde{bottom:326.475000px;}
.y175{bottom:327.375000px;}
.y32{bottom:328.275000px;}
.y15c{bottom:328.875000px;}
.y136{bottom:328.890000px;}
.y8f{bottom:329.175000px;}
.y64{bottom:329.475000px;}
.yb8{bottom:333.075000px;}
.y109{bottom:333.975000px;}
.ydd{bottom:346.620000px;}
.y174{bottom:347.820000px;}
.y31{bottom:348.705000px;}
.y8e{bottom:349.320000px;}
.y63{bottom:349.620000px;}
.y15b{bottom:351.120000px;}
.yb7{bottom:353.205000px;}
.y108{bottom:354.120000px;}
.ydc{bottom:367.005000px;}
.y173{bottom:367.920000px;}
.y30{bottom:368.820000px;}
.y8d{bottom:369.420000px;}
.y62{bottom:370.005000px;}
.yb6{bottom:373.620000px;}
.y107{bottom:374.505000px;}
.ydb{bottom:387.120000px;}
.y172{bottom:388.320000px;}
.y2f{bottom:389.205000px;}
.y61{bottom:390.120000px;}
.y8c{bottom:392.505000px;}
.yb5{bottom:393.705000px;}
.y106{bottom:394.620000px;}
.yda{bottom:407.505000px;}
.y171{bottom:408.420000px;}
.y2e{bottom:409.320000px;}
.y60{bottom:410.505000px;}
.y8b{bottom:412.620000px;}
.yb4{bottom:414.120000px;}
.y105{bottom:424.005000px;}
.y170{bottom:428.820000px;}
.y2d{bottom:429.705000px;}
.yd9{bottom:430.320000px;}
.y5f{bottom:430.620000px;}
.y18f{bottom:433.005000px;}
.yb3{bottom:434.205000px;}
.y8a{bottom:435.420000px;}
.y104{bottom:444.120000px;}
.y16f{bottom:448.920000px;}
.y2c{bottom:449.820000px;}
.y132{bottom:450.435000px;}
.y5e{bottom:451.005000px;}
.yd8{bottom:453.120000px;}
.yb2{bottom:454.620000px;}
.y89{bottom:455.820000px;}
.y103{bottom:464.505000px;}
.y16e{bottom:469.320000px;}
.y2b{bottom:470.205000px;}
.y5d{bottom:471.120000px;}
.y18e{bottom:473.505000px;}
.yb1{bottom:474.705000px;}
.y88{bottom:475.920000px;}
.y102{bottom:484.620000px;}
.y16d{bottom:489.420000px;}
.y2a{bottom:490.320000px;}
.y5c{bottom:491.505000px;}
.y18d{bottom:493.620000px;}
.yb0{bottom:495.120000px;}
.yd7{bottom:496.005000px;}
.y87{bottom:496.320000px;}
.y101{bottom:505.005000px;}
.y16c{bottom:508.950000px;}
.y29{bottom:510.750000px;}
.y5b{bottom:511.650000px;}
.y18c{bottom:514.050000px;}
.yaf{bottom:515.250000px;}
.y86{bottom:516.450000px;}
.yd6{bottom:519.150000px;}
.y100{bottom:525.150000px;}
.y28{bottom:530.850000px;}
.y5a{bottom:532.050000px;}
.y18b{bottom:534.150000px;}
.y16b{bottom:534.750000px;}
.yae{bottom:535.650000px;}
.y85{bottom:536.550000px;}
.y12e{bottom:538.365000px;}
.yd5{bottom:541.950000px;}
.yff{bottom:545.550000px;}
.y16a{bottom:547.650000px;}
.y27{bottom:551.250000px;}
.y59{bottom:552.150000px;}
.y18a{bottom:554.550000px;}
.yad{bottom:555.750000px;}
.y84{bottom:559.650000px;}
.yd4{bottom:562.050000px;}
.yfe{bottom:565.650000px;}
.y26{bottom:570.450000px;}
.y15a{bottom:571.350000px;}
.y58{bottom:572.550000px;}
.y189{bottom:574.650000px;}
.yac{bottom:576.150000px;}
.y83{bottom:582.450000px;}
.yd3{bottom:585.150000px;}
.yfd{bottom:586.050000px;}
.y57{bottom:592.650000px;}
.y188{bottom:595.050000px;}
.y25{bottom:596.250000px;}
.y159{bottom:600.750000px;}
.y82{bottom:602.850000px;}
.yd2{bottom:605.250000px;}
.yfc{bottom:606.150000px;}
.y24{bottom:613.050000px;}
.y187{bottom:615.150000px;}
.yab{bottom:616.650000px;}
.y158{bottom:620.850000px;}
.y81{bottom:622.950000px;}
.yd1{bottom:625.650000px;}
.yfb{bottom:626.550000px;}
.y23{bottom:630.150000px;}
.y56{bottom:633.150000px;}
.y186{bottom:635.550000px;}
.yaa{bottom:636.750000px;}
.y157{bottom:641.250000px;}
.y80{bottom:643.350000px;}
.yd0{bottom:645.750000px;}
.yfa{bottom:646.650000px;}
.y22{bottom:646.950000px;}
.y55{bottom:653.550000px;}
.y185{bottom:655.650000px;}
.ya9{bottom:657.150000px;}
.y156{bottom:661.350000px;}
.y7f{bottom:663.450000px;}
.y21{bottom:663.750000px;}
.ycf{bottom:666.150000px;}
.yf9{bottom:667.050000px;}
.y54{bottom:673.650000px;}
.y184{bottom:676.095000px;}
.y12c{bottom:676.710000px;}
.ya8{bottom:677.280000px;}
.y20{bottom:680.595000px;}
.y155{bottom:681.780000px;}
.y7e{bottom:683.880000px;}
.yce{bottom:686.280000px;}
.yf8{bottom:687.195000px;}
.y53{bottom:694.095000px;}
.y183{bottom:696.195000px;}
.ya7{bottom:697.695000px;}
.y1f{bottom:698.595000px;}
.y154{bottom:701.880000px;}
.y7d{bottom:703.995000px;}
.ycd{bottom:706.695000px;}
.yf7{bottom:707.595000px;}
.y51{bottom:714.195000px;}
.y182{bottom:716.595000px;}
.y1e{bottom:717.780000px;}
.y52{bottom:721.695000px;}
.y153{bottom:722.280000px;}
.y7c{bottom:724.380000px;}
.ycc{bottom:726.780000px;}
.yf6{bottom:727.695000px;}
.y1d{bottom:734.595000px;}
.y181{bottom:736.695000px;}
.ya6{bottom:738.195000px;}
.y152{bottom:742.380000px;}
.y7b{bottom:744.495000px;}
.ycb{bottom:747.195000px;}
.yf5{bottom:748.095000px;}
.y1c{bottom:751.695000px;}
.y50{bottom:754.695000px;}
.y180{bottom:757.095000px;}
.y151{bottom:762.780000px;}
.y128{bottom:764.610000px;}
.y7a{bottom:764.880000px;}
.ya5{bottom:767.280000px;}
.yf4{bottom:768.195000px;}
.y1b{bottom:768.495000px;}
.y4f{bottom:775.080000px;}
.y150{bottom:781.995000px;}
.y79{bottom:784.995000px;}
.y1a{bottom:785.295000px;}
.y17f{bottom:786.195000px;}
.ya4{bottom:787.695000px;}
.yf3{bottom:788.580000px;}
.y4e{bottom:795.195000px;}
.y19{bottom:802.080000px;}
.y78{bottom:805.080000px;}
.ya3{bottom:807.795000px;}
.yf2{bottom:808.695000px;}
.y4d{bottom:815.580000px;}
.y18{bottom:819.195000px;}
.y77{bottom:828.195000px;}
.y147{bottom:832.110000px;}
.y4c{bottom:835.695000px;}
.y17{bottom:835.995000px;}
.yf1{bottom:838.080000px;}
.y76{bottom:848.325000px;}
.y169{bottom:853.425000px;}
.y16{bottom:853.725000px;}
.y4b{bottom:856.125000px;}
.yf0{bottom:858.225000px;}
.y75{bottom:868.425000px;}
.ya2{bottom:868.725000px;}
.y122{bottom:869.040000px;}
.y168{bottom:871.125000px;}
.y15{bottom:874.125000px;}
.y4a{bottom:876.225000px;}
.yef{bottom:878.625000px;}
.ya1{bottom:888.825000px;}
.y74{bottom:891.525000px;}
.y14{bottom:894.225000px;}
.y49{bottom:896.625000px;}
.yee{bottom:898.725000px;}
.ya0{bottom:909.225000px;}
.y73{bottom:911.625000px;}
.y48{bottom:916.725000px;}
.yed{bottom:919.125000px;}
.y13{bottom:923.625000px;}
.y9f{bottom:929.325000px;}
.y72{bottom:931.725000px;}
.y167{bottom:932.025000px;}
.y47{bottom:937.125000px;}
.yec{bottom:939.225000px;}
.y12{bottom:943.725000px;}
.y9e{bottom:949.425000px;}
.yca{bottom:949.725000px;}
.y166{bottom:952.125000px;}
.y71{bottom:954.825000px;}
.y46{bottom:957.225000px;}
.yeb{bottom:959.625000px;}
.y11{bottom:964.125000px;}
.yc9{bottom:969.825000px;}
.y145{bottom:970.440000px;}
.y9d{bottom:972.225000px;}
.y70{bottom:974.925000px;}
.y45{bottom:977.625000px;}
.y10{bottom:984.225000px;}
.yea{bottom:988.725000px;}
.yc8{bottom:990.225000px;}
.y116{bottom:990.540000px;}
.y9c{bottom:995.325000px;}
.y44{bottom:997.725000px;}
.ye9{bottom:1009.125000px;}
.yc7{bottom:1010.325000px;}
.yf{bottom:1013.670000px;}
.y9b{bottom:1015.455000px;}
.y43{bottom:1018.170000px;}
.ye8{bottom:1029.255000px;}
.yc6{bottom:1033.170000px;}
.ye{bottom:1033.755000px;}
.y9a{bottom:1035.570000px;}
.y165{bottom:1035.870000px;}
.y42{bottom:1038.255000px;}
.ye7{bottom:1049.670000px;}
.yc5{bottom:1053.255000px;}
.yd{bottom:1054.170000px;}
.y164{bottom:1055.955000px;}
.y141{bottom:1058.085000px;}
.y41{bottom:1058.670000px;}
.ye6{bottom:1069.755000px;}
.yc{bottom:1074.255000px;}
.yc4{bottom:1076.370000px;}
.y40{bottom:1078.755000px;}
.ye5{bottom:1090.170000px;}
.yc3{bottom:1096.455000px;}
.y3f{bottom:1099.170000px;}
.yb{bottom:1113.255000px;}
.y163{bottom:1116.570000px;}
.y3e{bottom:1119.255000px;}
.ya{bottom:1136.955000px;}
.y3d{bottom:1139.670000px;}
.y3{bottom:1160.070000px;}
.y2{bottom:1176.570000px;}
.y1{bottom:1194.900000px;}
.h7{height:17.682000px;}
.h3{height:17.700000px;}
.h1d{height:25.782000px;}
.h11{height:25.785000px;}
.h10{height:33.141797px;}
.he{height:35.150391px;}
.h5{height:35.982000px;}
.h1{height:39.418945px;}
.h2{height:39.990234px;}
.h4{height:41.953125px;}
.h6{height:46.148438px;}
.hb{height:50.214844px;}
.h13{height:50.273438px;}
.h1b{height:51.885000px;}
.h9{height:60.257812px;}
.ha{height:60.328125px;}
.hc{height:60.890625px;}
.h8{height:70.382812px;}
.hf{height:75.093750px;}
.h17{height:85.485000px;}
.h19{height:85.507500px;}
.h1f{height:85.522500px;}
.h1e{height:94.485000px;}
.h16{height:102.307500px;}
.h12{height:111.619500px;}
.h15{height:119.385000px;}
.h1c{height:119.407500px;}
.h1a{height:119.422500px;}
.h20{height:135.907500px;}
.h18{height:136.185000px;}
.h14{height:162.030000px;}
.hd{height:1262.988660px;}
.h0{height:1263.000000px;}
.w3{width:69.337500px;}
.w2{width:312.075000px;}
.w4{width:312.120000px;}
.w6{width:338.202000px;}
.w7{width:346.005000px;}
.w5{width:893.081250px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:4.800000px;}
.x3{left:8.100000px;}
.x5{left:19.830000px;}
.x2{left:99.937500px;}
.x1b{left:103.237500px;}
.x1{left:108.037500px;}
.x15{left:112.237500px;}
.x11{left:125.137500px;}
.x8{left:129.337500px;}
.xd{left:132.337500px;}
.x16{left:135.037500px;}
.x17{left:162.030000px;}
.x1a{left:180.075000px;}
.x19{left:189.075000px;}
.x20{left:213.075000px;}
.xe{left:216.375000px;}
.x7{left:238.575000px;}
.x1e{left:252.675000px;}
.xb{left:295.875000px;}
.xf{left:320.820000px;}
.x18{left:324.120000px;}
.xc{left:330.720000px;}
.xa{left:347.220000px;}
.x10{left:410.505000px;}
.x4{left:412.020000px;}
.x12{left:413.220000px;}
.x1d{left:442.350000px;}
.x9{left:446.550000px;}
.x6{left:481.350000px;}
.x1f{left:693.825000px;}
.x13{left:713.306250px;}
.x14{left:718.125000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.554667pt;}
.ls3{letter-spacing:-0.528000pt;}
.ls19{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.266667pt;}
.ls6{letter-spacing:-0.149333pt;}
.lsd{letter-spacing:-0.021333pt;}
.ls4{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.021333pt;}
.ls1{letter-spacing:0.053333pt;}
.ls10{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.213333pt;}
.ls17{letter-spacing:0.266667pt;}
.lsf{letter-spacing:0.277333pt;}
.ls9{letter-spacing:0.426667pt;}
.ls0{letter-spacing:0.469333pt;}
.ls1b{letter-spacing:0.533333pt;}
.ls1a{letter-spacing:0.682667pt;}
.ls8{letter-spacing:1.066667pt;}
.ls2{letter-spacing:1.173333pt;}
.ls7{letter-spacing:4.266667pt;}
.ls12{letter-spacing:5.674667pt;}
.ls15{letter-spacing:10.666667pt;}
.ls16{letter-spacing:33.408000pt;}
.lse{letter-spacing:39.808000pt;}
.ls14{letter-spacing:45.168000pt;}
.lsa{letter-spacing:48.314667pt;}
.ls11{letter-spacing:52.634667pt;}
.ls13{letter-spacing:87.808000pt;}
.ws7{word-spacing:-38.400000pt;}
.wse{word-spacing:-16.533333pt;}
.ws6{word-spacing:-16.277333pt;}
.ws2{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.978667pt;}
.ws8{word-spacing:-15.850667pt;}
.ws5{word-spacing:-15.445333pt;}
.wsa{word-spacing:-13.600000pt;}
.wsb{word-spacing:-13.546667pt;}
.wsc{word-spacing:-13.386667pt;}
.ws1{word-spacing:-13.376000pt;}
.wsd{word-spacing:-13.013333pt;}
.ws3{word-spacing:-12.800000pt;}
.ws0{word-spacing:-11.472000pt;}
.ws4{word-spacing:0.000000pt;}
._1{margin-left:-1.306667pt;}
._0{width:0.922667pt;}
._2{width:1.813333pt;}
._3{width:3.050667pt;}
._4{width:4.037333pt;}
._7{width:5.013333pt;}
._5{width:5.920000pt;}
._8{width:7.397333pt;}
._14{width:8.336000pt;}
._6{width:9.237333pt;}
._b{width:10.160000pt;}
._c{width:11.141333pt;}
._15{width:12.090667pt;}
._13{width:12.997333pt;}
._9{width:14.464000pt;}
._1d{width:15.888000pt;}
._d{width:16.976000pt;}
._f{width:18.080000pt;}
._e{width:19.136000pt;}
._11{width:20.421333pt;}
._10{width:21.338667pt;}
._12{width:22.272000pt;}
._1a{width:23.872000pt;}
._19{width:25.040000pt;}
._18{width:26.752000pt;}
._a{width:27.648000pt;}
._1e{width:28.650667pt;}
._17{width:29.696000pt;}
._16{width:31.040000pt;}
._1b{width:33.856000pt;}
._1c{width:34.752000pt;}
.fs7{font-size:35.200000pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs5{font-size:51.200000pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.fs3{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:3.184000pt;}
.y6{bottom:3.200000pt;}
.y140{bottom:3.450667pt;}
.y10d{bottom:3.453333pt;}
.y144{bottom:3.706667pt;}
.y115{bottom:3.717333pt;}
.y121{bottom:3.720000pt;}
.y14d{bottom:10.413333pt;}
.y8{bottom:10.650667pt;}
.y135{bottom:10.653333pt;}
.y12b{bottom:18.386667pt;}
.y14f{bottom:18.413333pt;}
.y113{bottom:18.650667pt;}
.y127{bottom:18.653333pt;}
.y13e{bottom:18.680000pt;}
.y120{bottom:18.693333pt;}
.y14c{bottom:25.346667pt;}
.y13b{bottom:26.653333pt;}
.y7{bottom:30.982667pt;}
.y12a{bottom:33.306667pt;}
.y14e{bottom:33.346667pt;}
.y134{bottom:33.573333pt;}
.y112{bottom:33.577333pt;}
.y126{bottom:33.586667pt;}
.y139{bottom:33.613333pt;}
.y11f{bottom:33.626667pt;}
.y14b{bottom:40.546667pt;}
.y11b{bottom:40.560000pt;}
.y114{bottom:41.577333pt;}
.y143{bottom:41.586667pt;}
.y5{bottom:47.233333pt;}
.y125{bottom:48.520000pt;}
.y138{bottom:48.546667pt;}
.y11e{bottom:48.560000pt;}
.y4{bottom:51.766667pt;}
.y11a{bottom:55.746667pt;}
.y12d{bottom:56.506667pt;}
.y133{bottom:56.546667pt;}
.y111{bottom:56.550667pt;}
.y146{bottom:56.560000pt;}
.y131{bottom:63.453333pt;}
.y14a{bottom:63.480000pt;}
.y124{bottom:63.720000pt;}
.y11d{bottom:63.746667pt;}
.y137{bottom:63.760000pt;}
.y142{bottom:64.520000pt;}
.y129{bottom:71.480000pt;}
.y130{bottom:78.386667pt;}
.y149{bottom:78.413333pt;}
.y119{bottom:78.693333pt;}
.y110{bottom:79.750667pt;}
.y123{bottom:86.653333pt;}
.y13d{bottom:86.680000pt;}
.y11c{bottom:86.693333pt;}
.y6f{bottom:99.500000pt;}
.y148{bottom:101.346667pt;}
.y12f{bottom:101.586667pt;}
.y118{bottom:101.626667pt;}
.y6e{bottom:102.966667pt;}
.ye4{bottom:104.033333pt;}
.y162{bottom:108.033333pt;}
.y10f{bottom:109.649333pt;}
.y99{bottom:110.166667pt;}
.yc2{bottom:111.233333pt;}
.y13f{bottom:111.516000pt;}
.y3c{bottom:111.766667pt;}
.y6d{bottom:114.700000pt;}
.y17e{bottom:121.100000pt;}
.ye3{bottom:122.166667pt;}
.y117{bottom:124.560000pt;}
.y161{bottom:125.900000pt;}
.y98{bottom:128.033333pt;}
.yc1{bottom:129.366667pt;}
.y3b{bottom:129.900000pt;}
.y13c{bottom:136.320000pt;}
.y17d{bottom:138.960000pt;}
.ye2{bottom:140.040000pt;}
.y6c{bottom:141.893333pt;}
.y160{bottom:144.040000pt;}
.y97{bottom:146.160000pt;}
.yc0{bottom:147.226667pt;}
.y3a{bottom:147.773333pt;}
.y17c{bottom:157.133333pt;}
.y6b{bottom:160.066667pt;}
.y15f{bottom:161.933333pt;}
.y96{bottom:164.066667pt;}
.ybf{bottom:165.400000pt;}
.y39{bottom:165.933333pt;}
.ye1{bottom:166.200000pt;}
.y17b{bottom:175.000000pt;}
.y6a{bottom:177.933333pt;}
.y95{bottom:182.200000pt;}
.y38{bottom:183.800000pt;}
.ye0{bottom:184.066667pt;}
.ybe{bottom:185.666667pt;}
.y17a{bottom:193.133333pt;}
.y69{bottom:198.200000pt;}
.y94{bottom:200.066667pt;}
.y15e{bottom:200.333333pt;}
.y37{bottom:201.933333pt;}
.ybd{bottom:203.533333pt;}
.y10e{bottom:209.413333pt;}
.ydf{bottom:210.200000pt;}
.y179{bottom:211.000000pt;}
.y93{bottom:218.200000pt;}
.y68{bottom:218.466667pt;}
.y36{bottom:219.800000pt;}
.ybc{bottom:224.066667pt;}
.y178{bottom:229.133333pt;}
.y10c{bottom:234.480000pt;}
.y92{bottom:236.066667pt;}
.y67{bottom:236.333333pt;}
.y35{bottom:237.933333pt;}
.ybb{bottom:241.933333pt;}
.y13a{bottom:244.346667pt;}
.y177{bottom:247.000000pt;}
.y91{bottom:254.200000pt;}
.y34{bottom:255.800000pt;}
.y66{bottom:256.866667pt;}
.yba{bottom:260.066667pt;}
.y10b{bottom:263.000000pt;}
.y176{bottom:265.133333pt;}
.y90{bottom:272.066667pt;}
.y33{bottom:273.933333pt;}
.y15d{bottom:274.466667pt;}
.y65{bottom:274.733333pt;}
.yb9{bottom:277.933333pt;}
.y10a{bottom:278.733333pt;}
.yde{bottom:290.200000pt;}
.y175{bottom:291.000000pt;}
.y32{bottom:291.800000pt;}
.y15c{bottom:292.333333pt;}
.y136{bottom:292.346667pt;}
.y8f{bottom:292.600000pt;}
.y64{bottom:292.866667pt;}
.yb8{bottom:296.066667pt;}
.y109{bottom:296.866667pt;}
.ydd{bottom:308.106667pt;}
.y174{bottom:309.173333pt;}
.y31{bottom:309.960000pt;}
.y8e{bottom:310.506667pt;}
.y63{bottom:310.773333pt;}
.y15b{bottom:312.106667pt;}
.yb7{bottom:313.960000pt;}
.y108{bottom:314.773333pt;}
.ydc{bottom:326.226667pt;}
.y173{bottom:327.040000pt;}
.y30{bottom:327.840000pt;}
.y8d{bottom:328.373333pt;}
.y62{bottom:328.893333pt;}
.yb6{bottom:332.106667pt;}
.y107{bottom:332.893333pt;}
.ydb{bottom:344.106667pt;}
.y172{bottom:345.173333pt;}
.y2f{bottom:345.960000pt;}
.y61{bottom:346.773333pt;}
.y8c{bottom:348.893333pt;}
.yb5{bottom:349.960000pt;}
.y106{bottom:350.773333pt;}
.yda{bottom:362.226667pt;}
.y171{bottom:363.040000pt;}
.y2e{bottom:363.840000pt;}
.y60{bottom:364.893333pt;}
.y8b{bottom:366.773333pt;}
.yb4{bottom:368.106667pt;}
.y105{bottom:376.893333pt;}
.y170{bottom:381.173333pt;}
.y2d{bottom:381.960000pt;}
.yd9{bottom:382.506667pt;}
.y5f{bottom:382.773333pt;}
.y18f{bottom:384.893333pt;}
.yb3{bottom:385.960000pt;}
.y8a{bottom:387.040000pt;}
.y104{bottom:394.773333pt;}
.y16f{bottom:399.040000pt;}
.y2c{bottom:399.840000pt;}
.y132{bottom:400.386667pt;}
.y5e{bottom:400.893333pt;}
.yd8{bottom:402.773333pt;}
.yb2{bottom:404.106667pt;}
.y89{bottom:405.173333pt;}
.y103{bottom:412.893333pt;}
.y16e{bottom:417.173333pt;}
.y2b{bottom:417.960000pt;}
.y5d{bottom:418.773333pt;}
.y18e{bottom:420.893333pt;}
.yb1{bottom:421.960000pt;}
.y88{bottom:423.040000pt;}
.y102{bottom:430.773333pt;}
.y16d{bottom:435.040000pt;}
.y2a{bottom:435.840000pt;}
.y5c{bottom:436.893333pt;}
.y18d{bottom:438.773333pt;}
.yb0{bottom:440.106667pt;}
.yd7{bottom:440.893333pt;}
.y87{bottom:441.173333pt;}
.y101{bottom:448.893333pt;}
.y16c{bottom:452.400000pt;}
.y29{bottom:454.000000pt;}
.y5b{bottom:454.800000pt;}
.y18c{bottom:456.933333pt;}
.yaf{bottom:458.000000pt;}
.y86{bottom:459.066667pt;}
.yd6{bottom:461.466667pt;}
.y100{bottom:466.800000pt;}
.y28{bottom:471.866667pt;}
.y5a{bottom:472.933333pt;}
.y18b{bottom:474.800000pt;}
.y16b{bottom:475.333333pt;}
.yae{bottom:476.133333pt;}
.y85{bottom:476.933333pt;}
.y12e{bottom:478.546667pt;}
.yd5{bottom:481.733333pt;}
.yff{bottom:484.933333pt;}
.y16a{bottom:486.800000pt;}
.y27{bottom:490.000000pt;}
.y59{bottom:490.800000pt;}
.y18a{bottom:492.933333pt;}
.yad{bottom:494.000000pt;}
.y84{bottom:497.466667pt;}
.yd4{bottom:499.600000pt;}
.yfe{bottom:502.800000pt;}
.y26{bottom:507.066667pt;}
.y15a{bottom:507.866667pt;}
.y58{bottom:508.933333pt;}
.y189{bottom:510.800000pt;}
.yac{bottom:512.133333pt;}
.y83{bottom:517.733333pt;}
.yd3{bottom:520.133333pt;}
.yfd{bottom:520.933333pt;}
.y57{bottom:526.800000pt;}
.y188{bottom:528.933333pt;}
.y25{bottom:530.000000pt;}
.y159{bottom:534.000000pt;}
.y82{bottom:535.866667pt;}
.yd2{bottom:538.000000pt;}
.yfc{bottom:538.800000pt;}
.y24{bottom:544.933333pt;}
.y187{bottom:546.800000pt;}
.yab{bottom:548.133333pt;}
.y158{bottom:551.866667pt;}
.y81{bottom:553.733333pt;}
.yd1{bottom:556.133333pt;}
.yfb{bottom:556.933333pt;}
.y23{bottom:560.133333pt;}
.y56{bottom:562.800000pt;}
.y186{bottom:564.933333pt;}
.yaa{bottom:566.000000pt;}
.y157{bottom:570.000000pt;}
.y80{bottom:571.866667pt;}
.yd0{bottom:574.000000pt;}
.yfa{bottom:574.800000pt;}
.y22{bottom:575.066667pt;}
.y55{bottom:580.933333pt;}
.y185{bottom:582.800000pt;}
.ya9{bottom:584.133333pt;}
.y156{bottom:587.866667pt;}
.y7f{bottom:589.733333pt;}
.y21{bottom:590.000000pt;}
.ycf{bottom:592.133333pt;}
.yf9{bottom:592.933333pt;}
.y54{bottom:598.800000pt;}
.y184{bottom:600.973333pt;}
.y12c{bottom:601.520000pt;}
.ya8{bottom:602.026667pt;}
.y20{bottom:604.973333pt;}
.y155{bottom:606.026667pt;}
.y7e{bottom:607.893333pt;}
.yce{bottom:610.026667pt;}
.yf8{bottom:610.840000pt;}
.y53{bottom:616.973333pt;}
.y183{bottom:618.840000pt;}
.ya7{bottom:620.173333pt;}
.y1f{bottom:620.973333pt;}
.y154{bottom:623.893333pt;}
.y7d{bottom:625.773333pt;}
.ycd{bottom:628.173333pt;}
.yf7{bottom:628.973333pt;}
.y51{bottom:634.840000pt;}
.y182{bottom:636.973333pt;}
.y1e{bottom:638.026667pt;}
.y52{bottom:641.506667pt;}
.y153{bottom:642.026667pt;}
.y7c{bottom:643.893333pt;}
.ycc{bottom:646.026667pt;}
.yf6{bottom:646.840000pt;}
.y1d{bottom:652.973333pt;}
.y181{bottom:654.840000pt;}
.ya6{bottom:656.173333pt;}
.y152{bottom:659.893333pt;}
.y7b{bottom:661.773333pt;}
.ycb{bottom:664.173333pt;}
.yf5{bottom:664.973333pt;}
.y1c{bottom:668.173333pt;}
.y50{bottom:670.840000pt;}
.y180{bottom:672.973333pt;}
.y151{bottom:678.026667pt;}
.y128{bottom:679.653333pt;}
.y7a{bottom:679.893333pt;}
.ya5{bottom:682.026667pt;}
.yf4{bottom:682.840000pt;}
.y1b{bottom:683.106667pt;}
.y4f{bottom:688.960000pt;}
.y150{bottom:695.106667pt;}
.y79{bottom:697.773333pt;}
.y1a{bottom:698.040000pt;}
.y17f{bottom:698.840000pt;}
.ya4{bottom:700.173333pt;}
.yf3{bottom:700.960000pt;}
.y4e{bottom:706.840000pt;}
.y19{bottom:712.960000pt;}
.y78{bottom:715.626667pt;}
.ya3{bottom:718.040000pt;}
.yf2{bottom:718.840000pt;}
.y4d{bottom:724.960000pt;}
.y18{bottom:728.173333pt;}
.y77{bottom:736.173333pt;}
.y147{bottom:739.653333pt;}
.y4c{bottom:742.840000pt;}
.y17{bottom:743.106667pt;}
.yf1{bottom:744.960000pt;}
.y76{bottom:754.066667pt;}
.y169{bottom:758.600000pt;}
.y16{bottom:758.866667pt;}
.y4b{bottom:761.000000pt;}
.yf0{bottom:762.866667pt;}
.y75{bottom:771.933333pt;}
.ya2{bottom:772.200000pt;}
.y122{bottom:772.480000pt;}
.y168{bottom:774.333333pt;}
.y15{bottom:777.000000pt;}
.y4a{bottom:778.866667pt;}
.yef{bottom:781.000000pt;}
.ya1{bottom:790.066667pt;}
.y74{bottom:792.466667pt;}
.y14{bottom:794.866667pt;}
.y49{bottom:797.000000pt;}
.yee{bottom:798.866667pt;}
.ya0{bottom:808.200000pt;}
.y73{bottom:810.333333pt;}
.y48{bottom:814.866667pt;}
.yed{bottom:817.000000pt;}
.y13{bottom:821.000000pt;}
.y9f{bottom:826.066667pt;}
.y72{bottom:828.200000pt;}
.y167{bottom:828.466667pt;}
.y47{bottom:833.000000pt;}
.yec{bottom:834.866667pt;}
.y12{bottom:838.866667pt;}
.y9e{bottom:843.933333pt;}
.yca{bottom:844.200000pt;}
.y166{bottom:846.333333pt;}
.y71{bottom:848.733333pt;}
.y46{bottom:850.866667pt;}
.yeb{bottom:853.000000pt;}
.y11{bottom:857.000000pt;}
.yc9{bottom:862.066667pt;}
.y145{bottom:862.613333pt;}
.y9d{bottom:864.200000pt;}
.y70{bottom:866.600000pt;}
.y45{bottom:869.000000pt;}
.y10{bottom:874.866667pt;}
.yea{bottom:878.866667pt;}
.yc8{bottom:880.200000pt;}
.y116{bottom:880.480000pt;}
.y9c{bottom:884.733333pt;}
.y44{bottom:886.866667pt;}
.ye9{bottom:897.000000pt;}
.yc7{bottom:898.066667pt;}
.yf{bottom:901.040000pt;}
.y9b{bottom:902.626667pt;}
.y43{bottom:905.040000pt;}
.ye8{bottom:914.893333pt;}
.yc6{bottom:918.373333pt;}
.ye{bottom:918.893333pt;}
.y9a{bottom:920.506667pt;}
.y165{bottom:920.773333pt;}
.y42{bottom:922.893333pt;}
.ye7{bottom:933.040000pt;}
.yc5{bottom:936.226667pt;}
.yd{bottom:937.040000pt;}
.y164{bottom:938.626667pt;}
.y141{bottom:940.520000pt;}
.y41{bottom:941.040000pt;}
.ye6{bottom:950.893333pt;}
.yc{bottom:954.893333pt;}
.yc4{bottom:956.773333pt;}
.y40{bottom:958.893333pt;}
.ye5{bottom:969.040000pt;}
.yc3{bottom:974.626667pt;}
.y3f{bottom:977.040000pt;}
.yb{bottom:989.560000pt;}
.y163{bottom:992.506667pt;}
.y3e{bottom:994.893333pt;}
.ya{bottom:1010.626667pt;}
.y3d{bottom:1013.040000pt;}
.y3{bottom:1031.173333pt;}
.y2{bottom:1045.840000pt;}
.y1{bottom:1062.133333pt;}
.h7{height:15.717333pt;}
.h3{height:15.733333pt;}
.h1d{height:22.917333pt;}
.h11{height:22.920000pt;}
.h10{height:29.459375pt;}
.he{height:31.244792pt;}
.h5{height:31.984000pt;}
.h1{height:35.039062pt;}
.h2{height:35.546875pt;}
.h4{height:37.291667pt;}
.h6{height:41.020833pt;}
.hb{height:44.635417pt;}
.h13{height:44.687500pt;}
.h1b{height:46.120000pt;}
.h9{height:53.562500pt;}
.ha{height:53.625000pt;}
.hc{height:54.125000pt;}
.h8{height:62.562500pt;}
.hf{height:66.750000pt;}
.h17{height:75.986667pt;}
.h19{height:76.006667pt;}
.h1f{height:76.020000pt;}
.h1e{height:83.986667pt;}
.h16{height:90.940000pt;}
.h12{height:99.217333pt;}
.h15{height:106.120000pt;}
.h1c{height:106.140000pt;}
.h1a{height:106.153333pt;}
.h20{height:120.806667pt;}
.h18{height:121.053333pt;}
.h14{height:144.026667pt;}
.hd{height:1122.656587pt;}
.h0{height:1122.666667pt;}
.w3{width:61.633333pt;}
.w2{width:277.400000pt;}
.w4{width:277.440000pt;}
.w6{width:300.624000pt;}
.w7{width:307.560000pt;}
.w5{width:793.850000pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:4.266667pt;}
.x3{left:7.200000pt;}
.x5{left:17.626667pt;}
.x2{left:88.833333pt;}
.x1b{left:91.766667pt;}
.x1{left:96.033333pt;}
.x15{left:99.766667pt;}
.x11{left:111.233333pt;}
.x8{left:114.966667pt;}
.xd{left:117.633333pt;}
.x16{left:120.033333pt;}
.x17{left:144.026667pt;}
.x1a{left:160.066667pt;}
.x19{left:168.066667pt;}
.x20{left:189.400000pt;}
.xe{left:192.333333pt;}
.x7{left:212.066667pt;}
.x1e{left:224.600000pt;}
.xb{left:263.000000pt;}
.xf{left:285.173333pt;}
.x18{left:288.106667pt;}
.xc{left:293.973333pt;}
.xa{left:308.640000pt;}
.x10{left:364.893333pt;}
.x4{left:366.240000pt;}
.x12{left:367.306667pt;}
.x1d{left:393.200000pt;}
.x9{left:396.933333pt;}
.x6{left:427.866667pt;}
.x1f{left:616.733333pt;}
.x13{left:634.050000pt;}
.x14{left:638.333333pt;}
}




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