
    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_6602df16361aee9bbf8055e2.woff')format("woff");}.ff1{font-family:ff1;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ae41d33179c42c0e658e66da.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_219f4ffcd02d2b751e546973.woff')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_790ddb28fbb13c8d48c71509.woff')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_76def918770c2484a64fda9e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_2d28b6df927ed10c5428c594.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_25b730bc197291c426cb447f.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_bcb31583166cde7164248d4e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.859375;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_444113c73b094dc436cb2d81.woff')format("woff");}.ff9{font-family:ff9;line-height:0.752441;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_0648e27f5b20a979d0f04c28.woff')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_ad823a38f9bdff53cc23a2ef.woff')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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_770ffd3132ce13afa01ddd0c.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_f692b98827bedbf9391cf2fb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.962402;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.lsf{letter-spacing:-1.584000px;}
.lsc{letter-spacing:-1.296000px;}
.lsd{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.720000px;}
.ls17{letter-spacing:-0.648000px;}
.ls16{letter-spacing:-0.507000px;}
.lsa{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.144000px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.423360px;}
.ls8{letter-spacing:0.504000px;}
.ls1{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.768000px;}
.ls13{letter-spacing:1.080000px;}
.ls15{letter-spacing:3.600000px;}
.ls5{letter-spacing:10.800000px;}
.ls2{letter-spacing:33.264000px;}
.ls12{letter-spacing:54.864000px;}
.ls14{letter-spacing:59.345280px;}
.ls10{letter-spacing:63.826560px;}
.ls11{letter-spacing:63.970560px;}
.ls9{letter-spacing:830.182560px;}
.lse{letter-spacing:830.362560px;}
.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;}
}
.ws5{word-spacing:-72.000000px;}
.wse{word-spacing:-66.240000px;}
.ws8{word-spacing:-60.480000px;}
.ws0{word-spacing:-24.120000px;}
.ws6{word-spacing:-18.504000px;}
.ws4{word-spacing:-18.144000px;}
.ws2{word-spacing:-18.000000px;}
.ws3{word-spacing:-17.856000px;}
.ws9{word-spacing:-17.712000px;}
.wsd{word-spacing:-17.352000px;}
.wsa{word-spacing:-17.064000px;}
.ws10{word-spacing:-16.865400px;}
.wsf{word-spacing:-16.560000px;}
.wsb{word-spacing:-16.416000px;}
.wsc{word-spacing:-16.306440px;}
.ws1{word-spacing:-11.880000px;}
.ws7{word-spacing:0.000000px;}
._10{margin-left:-3.905280px;}
._3{margin-left:-2.520000px;}
._0{margin-left:-1.391040px;}
._2{width:1.352160px;}
._8{width:2.448000px;}
._9{width:3.672000px;}
._e{width:5.086080px;}
._6{width:6.192000px;}
._a{width:7.439040px;}
._b{width:8.496000px;}
._1{width:9.729120px;}
._7{width:11.041440px;}
._d{width:12.826560px;}
._c{width:13.968000px;}
._f{width:15.742080px;}
._12{width:16.895520px;}
._19{width:19.442880px;}
._18{width:20.494080px;}
._13{width:21.672000px;}
._14{width:23.112000px;}
._15{width:24.158880px;}
._1c{width:25.988160px;}
._5{width:27.244800px;}
._4{width:28.331040px;}
._23{width:30.139200px;}
._24{width:31.631040px;}
._17{width:32.807040px;}
._16{width:33.984000px;}
._1b{width:36.352800px;}
._1a{width:37.463040px;}
._25{width:38.664000px;}
._26{width:40.559040px;}
._1d{width:41.760000px;}
._1e{width:43.056000px;}
._20{width:45.743040px;}
._1f{width:46.800000px;}
._21{width:48.282720px;}
._22{width:52.860000px;}
._11{width:60.100320px;}
._27{width:190.638720px;}
._28{width:192.714720px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:47.520000px;}
.fs0{font-size:60.480000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:69.822393px;}
.fs2{font-size:72.000000px;}
.fs6{font-size:75.893905px;}
.fs7{font-size:83.520000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y2f{bottom:2.880000px;}
.y2e{bottom:3.240000px;}
.y8a{bottom:3.600000px;}
.y2d{bottom:16.920000px;}
.y89{bottom:106.236000px;}
.y11c{bottom:110.556000px;}
.yf9{bottom:113.796000px;}
.y2c{bottom:119.916000px;}
.y7e{bottom:125.676000px;}
.y5d{bottom:129.276000px;}
.y148{bottom:129.636000px;}
.y11b{bottom:132.516000px;}
.yf8{bottom:134.316000px;}
.yc2{bottom:137.916000px;}
.y2b{bottom:140.436000px;}
.yda{bottom:144.036000px;}
.y7d{bottom:146.196000px;}
.y147{bottom:148.716000px;}
.y5c{bottom:149.796000px;}
.yac{bottom:150.150000px;}
.y11a{bottom:154.470000px;}
.yf7{bottom:155.190000px;}
.yc1{bottom:158.790000px;}
.yd9{bottom:164.910000px;}
.y7c{bottom:167.070000px;}
.y2a{bottom:170.670000px;}
.yab{bottom:171.030000px;}
.y146{bottom:171.750000px;}
.yf6{bottom:175.710000px;}
.y119{bottom:176.430000px;}
.yc0{bottom:179.310000px;}
.y145{bottom:190.830000px;}
.y5b{bottom:191.190000px;}
.yaa{bottom:191.550000px;}
.yd8{bottom:194.430000px;}
.y7b{bottom:196.590000px;}
.y118{bottom:198.795000px;}
.ybf{bottom:200.235000px;}
.y144{bottom:209.955000px;}
.y5a{bottom:212.115000px;}
.ya9{bottom:212.475000px;}
.yd7{bottom:215.355000px;}
.yf5{bottom:217.155000px;}
.y7a{bottom:217.515000px;}
.y117{bottom:219.315000px;}
.y29{bottom:222.555000px;}
.ybe{bottom:229.755000px;}
.y59{bottom:232.635000px;}
.ya8{bottom:232.995000px;}
.y79{bottom:238.035000px;}
.y116{bottom:240.195000px;}
.yd6{bottom:244.875000px;}
.ybd{bottom:250.635000px;}
.y143{bottom:252.075000px;}
.y58{bottom:253.515000px;}
.ya7{bottom:253.875000px;}
.y28{bottom:255.675000px;}
.yf4{bottom:258.555000px;}
.y78{bottom:258.915000px;}
.y115{bottom:260.715000px;}
.ybc{bottom:271.155000px;}
.y57{bottom:274.035000px;}
.ya6{bottom:274.395000px;}
.yd5{bottom:274.755000px;}
.y27{bottom:277.995000px;}
.y77{bottom:279.435000px;}
.y114{bottom:281.595000px;}
.ybb{bottom:292.035000px;}
.y142{bottom:294.195000px;}
.y56{bottom:294.915000px;}
.yd4{bottom:295.275000px;}
.yf3{bottom:299.955000px;}
.y26{bottom:300.315000px;}
.y113{bottom:302.115000px;}
.ya5{bottom:304.275000px;}
.yba{bottom:312.555000px;}
.y141{bottom:312.915000px;}
.y55{bottom:315.435000px;}
.yd3{bottom:316.155000px;}
.y76{bottom:320.835000px;}
.y25{bottom:321.555000px;}
.y112{bottom:332.025000px;}
.yd2{bottom:336.705000px;}
.y75{bottom:341.745000px;}
.y24{bottom:342.465000px;}
.ya4{bottom:342.825000px;}
.y54{bottom:345.345000px;}
.yf2{bottom:350.385000px;}
.y140{bottom:351.105000px;}
.yd1{bottom:357.585000px;}
.ya3{bottom:363.705000px;}
.y111{bottom:370.545000px;}
.y74{bottom:371.265000px;}
.yb9{bottom:371.985000px;}
.y23{bottom:372.345000px;}
.y13f{bottom:374.145000px;}
.yd0{bottom:378.105000px;}
.ya2{bottom:384.225000px;}
.y53{bottom:387.465000px;}
.y110{bottom:391.425000px;}
.y22{bottom:392.865000px;}
.y13e{bottom:393.225000px;}
.yf1{bottom:400.785000px;}
.ya1{bottom:405.105000px;}
.y52{bottom:407.985000px;}
.y73{bottom:410.145000px;}
.y10f{bottom:411.945000px;}
.y13d{bottom:412.305000px;}
.yb8{bottom:413.385000px;}
.y21{bottom:413.745000px;}
.yf0{bottom:421.665000px;}
.ya0{bottom:425.625000px;}
.ycf{bottom:428.505000px;}
.y51{bottom:428.865000px;}
.yb7{bottom:434.265000px;}
.y13c{bottom:435.345000px;}
.y10e{bottom:441.825000px;}
.y9f{bottom:446.505000px;}
.y50{bottom:449.430000px;}
.yef{bottom:451.230000px;}
.y20{bottom:452.310000px;}
.y13b{bottom:454.110000px;}
.yb6{bottom:454.830000px;}
.y10d{bottom:462.390000px;}
.y4f{bottom:470.310000px;}
.yee{bottom:472.110000px;}
.y72{bottom:472.830000px;}
.y1f{bottom:473.190000px;}
.y13a{bottom:473.550000px;}
.yb5{bottom:475.710000px;}
.yce{bottom:478.950000px;}
.y10c{bottom:483.270000px;}
.y9e{bottom:487.950000px;}
.y4e{bottom:490.830000px;}
.yed{bottom:492.630000px;}
.y1e{bottom:493.710000px;}
.yb4{bottom:496.230000px;}
.y139{bottom:496.590000px;}
.ycd{bottom:499.830000px;}
.y9d{bottom:508.830000px;}
.y4d{bottom:511.710000px;}
.y10b{bottom:512.790000px;}
.yec{bottom:513.510000px;}
.y71{bottom:514.230000px;}
.y1d{bottom:514.590000px;}
.y138{bottom:515.310000px;}
.ycc{bottom:520.350000px;}
.yb3{bottom:526.110000px;}
.y9c{bottom:529.710000px;}
.y4c{bottom:532.230000px;}
.y10a{bottom:533.670000px;}
.yeb{bottom:534.030000px;}
.y137{bottom:534.390000px;}
.y1c{bottom:535.110000px;}
.ycb{bottom:541.230000px;}
.y70{bottom:544.110000px;}
.y9b{bottom:550.230000px;}
.y4b{bottom:553.110000px;}
.y109{bottom:554.190000px;}
.y88{bottom:555.630000px;}
.y1b{bottom:555.990000px;}
.y136{bottom:557.430000px;}
.yca{bottom:561.750000px;}
.yea{bottom:563.910000px;}
.y6f{bottom:564.630000px;}
.y9a{bottom:571.110000px;}
.y4a{bottom:573.630000px;}
.y108{bottom:575.100000px;}
.y1a{bottom:576.540000px;}
.y6e{bottom:585.540000px;}
.yc9{bottom:590.940000px;}
.y99{bottom:591.660000px;}
.ye9{bottom:593.460000px;}
.y49{bottom:594.540000px;}
.y107{bottom:595.620000px;}
.y87{bottom:597.060000px;}
.y135{bottom:599.580000px;}
.y6d{bottom:606.060000px;}
.y19{bottom:606.420000px;}
.y98{bottom:612.540000px;}
.yc8{bottom:615.420000px;}
.y106{bottom:616.500000px;}
.y86{bottom:617.940000px;}
.y134{bottom:618.660000px;}
.ye8{bottom:623.340000px;}
.y48{bottom:624.060000px;}
.y18{bottom:626.940000px;}
.y97{bottom:633.060000px;}
.y133{bottom:637.740000px;}
.y85{bottom:638.460000px;}
.y47{bottom:644.940000px;}
.y105{bottom:646.020000px;}
.y6c{bottom:647.460000px;}
.y17{bottom:647.820000px;}
.ye7{bottom:652.860000px;}
.y96{bottom:653.940000px;}
.y84{bottom:659.340000px;}
.y132{bottom:661.860000px;}
.y46{bottom:665.460000px;}
.y104{bottom:666.900000px;}
.y16{bottom:668.340000px;}
.ye6{bottom:673.740000px;}
.y95{bottom:674.460000px;}
.yb2{bottom:677.340000px;}
.y83{bottom:679.860000px;}
.y45{bottom:686.340000px;}
.y103{bottom:687.420000px;}
.y6b{bottom:688.860000px;}
.y15{bottom:689.220000px;}
.y94{bottom:695.340000px;}
.yb1{bottom:697.860000px;}
.y82{bottom:700.770000px;}
.ye5{bottom:703.290000px;}
.y131{bottom:703.650000px;}
.y44{bottom:706.890000px;}
.y102{bottom:708.330000px;}
.y14{bottom:709.770000px;}
.y93{bottom:715.890000px;}
.y6a{bottom:718.770000px;}
.y81{bottom:721.290000px;}
.y130{bottom:724.170000px;}
.y43{bottom:727.770000px;}
.y101{bottom:728.850000px;}
.y13{bottom:730.650000px;}
.ye4{bottom:733.170000px;}
.y92{bottom:736.770000px;}
.y69{bottom:739.290000px;}
.y80{bottom:742.170000px;}
.y12f{bottom:745.050000px;}
.y42{bottom:748.290000px;}
.y12{bottom:751.170000px;}
.ye3{bottom:753.690000px;}
.y91{bottom:757.290000px;}
.y100{bottom:758.370000px;}
.y68{bottom:760.170000px;}
.y7f{bottom:762.690000px;}
.y12e{bottom:765.570000px;}
.y41{bottom:769.170000px;}
.y11{bottom:772.050000px;}
.ye2{bottom:774.570000px;}
.y90{bottom:778.170000px;}
.yff{bottom:779.250000px;}
.y67{bottom:780.690000px;}
.y12d{bottom:786.450000px;}
.y40{bottom:789.690000px;}
.y10{bottom:792.570000px;}
.ye1{bottom:795.090000px;}
.y8f{bottom:798.690000px;}
.yfe{bottom:799.770000px;}
.y66{bottom:801.570000px;}
.y12c{bottom:806.970000px;}
.y3f{bottom:810.570000px;}
.ye0{bottom:815.970000px;}
.y8e{bottom:819.570000px;}
.yfd{bottom:820.650000px;}
.y65{bottom:822.090000px;}
.y12b{bottom:827.895000px;}
.y3e{bottom:831.135000px;}
.ydf{bottom:836.535000px;}
.y8d{bottom:840.135000px;}
.yf{bottom:840.495000px;}
.y64{bottom:843.015000px;}
.y12a{bottom:848.415000px;}
.yfc{bottom:850.215000px;}
.y3d{bottom:852.015000px;}
.yde{bottom:857.415000px;}
.y8c{bottom:861.015000px;}
.ye{bottom:863.895000px;}
.yc7{bottom:866.415000px;}
.y129{bottom:869.295000px;}
.y3c{bottom:872.535000px;}
.ydd{bottom:877.935000px;}
.y8b{bottom:881.535000px;}
.yd{bottom:887.655000px;}
.yfb{bottom:889.455000px;}
.y128{bottom:889.815000px;}
.y63{bottom:893.415000px;}
.yc6{bottom:895.935000px;}
.y3b{bottom:902.415000px;}
.ydc{bottom:907.815000px;}
.y127{bottom:910.695000px;}
.yc{bottom:911.415000px;}
.yfa{bottom:913.575000px;}
.y62{bottom:913.935000px;}
.y3a{bottom:922.935000px;}
.yc5{bottom:925.815000px;}
.y126{bottom:931.215000px;}
.y61{bottom:934.815000px;}
.yb{bottom:935.175000px;}
.y39{bottom:943.815000px;}
.yc4{bottom:946.335000px;}
.y125{bottom:952.095000px;}
.y60{bottom:955.365000px;}
.ya{bottom:958.965000px;}
.y38{bottom:964.365000px;}
.yc3{bottom:967.245000px;}
.y124{bottom:972.645000px;}
.y5f{bottom:976.245000px;}
.y9{bottom:983.085000px;}
.y37{bottom:985.245000px;}
.ydb{bottom:987.765000px;}
.y123{bottom:993.525000px;}
.y5e{bottom:996.765000px;}
.y8{bottom:1003.965000px;}
.y36{bottom:1005.765000px;}
.y122{bottom:1014.045000px;}
.yb0{bottom:1017.645000px;}
.y7{bottom:1024.845000px;}
.y35{bottom:1026.645000px;}
.y121{bottom:1034.925000px;}
.yaf{bottom:1038.165000px;}
.y34{bottom:1047.165000px;}
.y6{bottom:1051.125000px;}
.y120{bottom:1055.445000px;}
.yae{bottom:1059.045000px;}
.y33{bottom:1068.045000px;}
.y11f{bottom:1076.325000px;}
.y5{bottom:1078.530000px;}
.yad{bottom:1079.610000px;}
.y32{bottom:1088.610000px;}
.y11e{bottom:1096.890000px;}
.y4{bottom:1105.890000px;}
.y31{bottom:1109.490000px;}
.y11d{bottom:1126.770000px;}
.y30{bottom:1130.010000px;}
.y3{bottom:1153.410000px;}
.y2{bottom:1231.560000px;}
.y1{bottom:1248.840000px;}
.h10{height:16.920000px;}
.h13{height:28.080000px;}
.h14{height:50.273438px;}
.hc{height:51.684935px;}
.he{height:56.179277px;}
.ha{height:56.457950px;}
.h11{height:59.328281px;}
.hd{height:61.367337px;}
.h2{height:63.078750px;}
.hb{height:64.978594px;}
.h17{height:65.010937px;}
.h3{height:68.073047px;}
.h16{height:69.086250px;}
.h9{height:70.628906px;}
.h8{height:70.664062px;}
.h12{height:72.562500px;}
.h6{height:73.998281px;}
.h7{height:75.093750px;}
.h15{height:84.172500px;}
.hf{height:87.108750px;}
.h4{height:94.689844px;}
.h5{height:97.233750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:226.515000px;}
.w4{width:226.545000px;}
.w5{width:523.650000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.x2a{left:8.280000px;}
.x29{left:84.995987px;}
.x3a{left:90.035987px;}
.x39{left:104.805000px;}
.x2c{left:108.795000px;}
.x34{left:111.995987px;}
.x2e{left:113.085000px;}
.x3b{left:117.035987px;}
.xf{left:127.475987px;}
.x6{left:136.475987px;}
.x35{left:139.031987px;}
.x1c{left:144.071987px;}
.x3{left:151.274987px;}
.x32{left:154.514987px;}
.x38{left:159.914987px;}
.x8{left:163.154987px;}
.x31{left:168.915000px;}
.x33{left:181.514987px;}
.x7{left:195.194987px;}
.xb{left:229.754987px;}
.xe{left:299.264987px;}
.x2b{left:311.505000px;}
.xa{left:320.504987px;}
.x18{left:326.669987px;}
.x21{left:329.909987px;}
.x19{left:341.069987px;}
.x22{left:347.909987px;}
.x2f{left:354.030000px;}
.xc{left:367.709987px;}
.x37{left:378.869987px;}
.xd{left:383.909987px;}
.x1d{left:402.269987px;}
.x23{left:405.869987px;}
.x1e{left:418.859987px;}
.x24{left:423.539987px;}
.x4{left:430.379987px;}
.x12{left:457.019987px;}
.x5{left:467.459987px;}
.x9{left:468.899987px;}
.x13{left:473.219987px;}
.x25{left:488.339987px;}
.x26{left:503.819987px;}
.x2d{left:538.050000px;}
.x1a{left:550.649987px;}
.x1b{left:564.689987px;}
.x1f{left:569.729987px;}
.x10{left:575.129987px;}
.x30{left:580.530000px;}
.x20{left:583.769987px;}
.x11{left:591.689987px;}
.x27{left:605.369987px;}
.x28{left:623.054987px;}
.x1{left:667.694987px;}
.x14{left:670.934987px;}
.x15{left:687.134987px;}
.x2{left:751.604987px;}
.x36{left:765.284987px;}
.x16{left:791.564987px;}
.x17{left:807.809987px;}
@media print{
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.lsf{letter-spacing:-1.408000pt;}
.lsc{letter-spacing:-1.152000pt;}
.lsd{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls17{letter-spacing:-0.576000pt;}
.ls16{letter-spacing:-0.450667pt;}
.lsa{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.128000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.376320pt;}
.ls8{letter-spacing:0.448000pt;}
.ls1{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.682667pt;}
.ls13{letter-spacing:0.960000pt;}
.ls15{letter-spacing:3.200000pt;}
.ls5{letter-spacing:9.600000pt;}
.ls2{letter-spacing:29.568000pt;}
.ls12{letter-spacing:48.768000pt;}
.ls14{letter-spacing:52.751360pt;}
.ls10{letter-spacing:56.734720pt;}
.ls11{letter-spacing:56.862720pt;}
.ls9{letter-spacing:737.940053pt;}
.lse{letter-spacing:738.100053pt;}
.ws5{word-spacing:-64.000000pt;}
.wse{word-spacing:-58.880000pt;}
.ws8{word-spacing:-53.760000pt;}
.ws0{word-spacing:-21.440000pt;}
.ws6{word-spacing:-16.448000pt;}
.ws4{word-spacing:-16.128000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws3{word-spacing:-15.872000pt;}
.ws9{word-spacing:-15.744000pt;}
.wsd{word-spacing:-15.424000pt;}
.wsa{word-spacing:-15.168000pt;}
.ws10{word-spacing:-14.991467pt;}
.wsf{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.592000pt;}
.wsc{word-spacing:-14.494613pt;}
.ws1{word-spacing:-10.560000pt;}
.ws7{word-spacing:0.000000pt;}
._10{margin-left:-3.471360pt;}
._3{margin-left:-2.240000pt;}
._0{margin-left:-1.236480pt;}
._2{width:1.201920pt;}
._8{width:2.176000pt;}
._9{width:3.264000pt;}
._e{width:4.520960pt;}
._6{width:5.504000pt;}
._a{width:6.612480pt;}
._b{width:7.552000pt;}
._1{width:8.648107pt;}
._7{width:9.814613pt;}
._d{width:11.401387pt;}
._c{width:12.416000pt;}
._f{width:13.992960pt;}
._12{width:15.018240pt;}
._19{width:17.282560pt;}
._18{width:18.216960pt;}
._13{width:19.264000pt;}
._14{width:20.544000pt;}
._15{width:21.474560pt;}
._1c{width:23.100587pt;}
._5{width:24.217600pt;}
._4{width:25.183147pt;}
._23{width:26.790400pt;}
._24{width:28.116480pt;}
._17{width:29.161813pt;}
._16{width:30.208000pt;}
._1b{width:32.313600pt;}
._1a{width:33.300480pt;}
._25{width:34.368000pt;}
._26{width:36.052480pt;}
._1d{width:37.120000pt;}
._1e{width:38.272000pt;}
._20{width:40.660480pt;}
._1f{width:41.600000pt;}
._21{width:42.917973pt;}
._22{width:46.986667pt;}
._11{width:53.422507pt;}
._27{width:169.456640pt;}
._28{width:171.301973pt;}
.fs3{font-size:42.240000pt;}
.fs0{font-size:53.760000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:62.064349pt;}
.fs2{font-size:64.000000pt;}
.fs6{font-size:67.461249pt;}
.fs7{font-size:74.240000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y2f{bottom:2.560000pt;}
.y2e{bottom:2.880000pt;}
.y8a{bottom:3.200000pt;}
.y2d{bottom:15.040000pt;}
.y89{bottom:94.432000pt;}
.y11c{bottom:98.272000pt;}
.yf9{bottom:101.152000pt;}
.y2c{bottom:106.592000pt;}
.y7e{bottom:111.712000pt;}
.y5d{bottom:114.912000pt;}
.y148{bottom:115.232000pt;}
.y11b{bottom:117.792000pt;}
.yf8{bottom:119.392000pt;}
.yc2{bottom:122.592000pt;}
.y2b{bottom:124.832000pt;}
.yda{bottom:128.032000pt;}
.y7d{bottom:129.952000pt;}
.y147{bottom:132.192000pt;}
.y5c{bottom:133.152000pt;}
.yac{bottom:133.466667pt;}
.y11a{bottom:137.306667pt;}
.yf7{bottom:137.946667pt;}
.yc1{bottom:141.146667pt;}
.yd9{bottom:146.586667pt;}
.y7c{bottom:148.506667pt;}
.y2a{bottom:151.706667pt;}
.yab{bottom:152.026667pt;}
.y146{bottom:152.666667pt;}
.yf6{bottom:156.186667pt;}
.y119{bottom:156.826667pt;}
.yc0{bottom:159.386667pt;}
.y145{bottom:169.626667pt;}
.y5b{bottom:169.946667pt;}
.yaa{bottom:170.266667pt;}
.yd8{bottom:172.826667pt;}
.y7b{bottom:174.746667pt;}
.y118{bottom:176.706667pt;}
.ybf{bottom:177.986667pt;}
.y144{bottom:186.626667pt;}
.y5a{bottom:188.546667pt;}
.ya9{bottom:188.866667pt;}
.yd7{bottom:191.426667pt;}
.yf5{bottom:193.026667pt;}
.y7a{bottom:193.346667pt;}
.y117{bottom:194.946667pt;}
.y29{bottom:197.826667pt;}
.ybe{bottom:204.226667pt;}
.y59{bottom:206.786667pt;}
.ya8{bottom:207.106667pt;}
.y79{bottom:211.586667pt;}
.y116{bottom:213.506667pt;}
.yd6{bottom:217.666667pt;}
.ybd{bottom:222.786667pt;}
.y143{bottom:224.066667pt;}
.y58{bottom:225.346667pt;}
.ya7{bottom:225.666667pt;}
.y28{bottom:227.266667pt;}
.yf4{bottom:229.826667pt;}
.y78{bottom:230.146667pt;}
.y115{bottom:231.746667pt;}
.ybc{bottom:241.026667pt;}
.y57{bottom:243.586667pt;}
.ya6{bottom:243.906667pt;}
.yd5{bottom:244.226667pt;}
.y27{bottom:247.106667pt;}
.y77{bottom:248.386667pt;}
.y114{bottom:250.306667pt;}
.ybb{bottom:259.586667pt;}
.y142{bottom:261.506667pt;}
.y56{bottom:262.146667pt;}
.yd4{bottom:262.466667pt;}
.yf3{bottom:266.626667pt;}
.y26{bottom:266.946667pt;}
.y113{bottom:268.546667pt;}
.ya5{bottom:270.466667pt;}
.yba{bottom:277.826667pt;}
.y141{bottom:278.146667pt;}
.y55{bottom:280.386667pt;}
.yd3{bottom:281.026667pt;}
.y76{bottom:285.186667pt;}
.y25{bottom:285.826667pt;}
.y112{bottom:295.133333pt;}
.yd2{bottom:299.293333pt;}
.y75{bottom:303.773333pt;}
.y24{bottom:304.413333pt;}
.ya4{bottom:304.733333pt;}
.y54{bottom:306.973333pt;}
.yf2{bottom:311.453333pt;}
.y140{bottom:312.093333pt;}
.yd1{bottom:317.853333pt;}
.ya3{bottom:323.293333pt;}
.y111{bottom:329.373333pt;}
.y74{bottom:330.013333pt;}
.yb9{bottom:330.653333pt;}
.y23{bottom:330.973333pt;}
.y13f{bottom:332.573333pt;}
.yd0{bottom:336.093333pt;}
.ya2{bottom:341.533333pt;}
.y53{bottom:344.413333pt;}
.y110{bottom:347.933333pt;}
.y22{bottom:349.213333pt;}
.y13e{bottom:349.533333pt;}
.yf1{bottom:356.253333pt;}
.ya1{bottom:360.093333pt;}
.y52{bottom:362.653333pt;}
.y73{bottom:364.573333pt;}
.y10f{bottom:366.173333pt;}
.y13d{bottom:366.493333pt;}
.yb8{bottom:367.453333pt;}
.y21{bottom:367.773333pt;}
.yf0{bottom:374.813333pt;}
.ya0{bottom:378.333333pt;}
.ycf{bottom:380.893333pt;}
.y51{bottom:381.213333pt;}
.yb7{bottom:386.013333pt;}
.y13c{bottom:386.973333pt;}
.y10e{bottom:392.733333pt;}
.y9f{bottom:396.893333pt;}
.y50{bottom:399.493333pt;}
.yef{bottom:401.093333pt;}
.y20{bottom:402.053333pt;}
.y13b{bottom:403.653333pt;}
.yb6{bottom:404.293333pt;}
.y10d{bottom:411.013333pt;}
.y4f{bottom:418.053333pt;}
.yee{bottom:419.653333pt;}
.y72{bottom:420.293333pt;}
.y1f{bottom:420.613333pt;}
.y13a{bottom:420.933333pt;}
.yb5{bottom:422.853333pt;}
.yce{bottom:425.733333pt;}
.y10c{bottom:429.573333pt;}
.y9e{bottom:433.733333pt;}
.y4e{bottom:436.293333pt;}
.yed{bottom:437.893333pt;}
.y1e{bottom:438.853333pt;}
.yb4{bottom:441.093333pt;}
.y139{bottom:441.413333pt;}
.ycd{bottom:444.293333pt;}
.y9d{bottom:452.293333pt;}
.y4d{bottom:454.853333pt;}
.y10b{bottom:455.813333pt;}
.yec{bottom:456.453333pt;}
.y71{bottom:457.093333pt;}
.y1d{bottom:457.413333pt;}
.y138{bottom:458.053333pt;}
.ycc{bottom:462.533333pt;}
.yb3{bottom:467.653333pt;}
.y9c{bottom:470.853333pt;}
.y4c{bottom:473.093333pt;}
.y10a{bottom:474.373333pt;}
.yeb{bottom:474.693333pt;}
.y137{bottom:475.013333pt;}
.y1c{bottom:475.653333pt;}
.ycb{bottom:481.093333pt;}
.y70{bottom:483.653333pt;}
.y9b{bottom:489.093333pt;}
.y4b{bottom:491.653333pt;}
.y109{bottom:492.613333pt;}
.y88{bottom:493.893333pt;}
.y1b{bottom:494.213333pt;}
.y136{bottom:495.493333pt;}
.yca{bottom:499.333333pt;}
.yea{bottom:501.253333pt;}
.y6f{bottom:501.893333pt;}
.y9a{bottom:507.653333pt;}
.y4a{bottom:509.893333pt;}
.y108{bottom:511.200000pt;}
.y1a{bottom:512.480000pt;}
.y6e{bottom:520.480000pt;}
.yc9{bottom:525.280000pt;}
.y99{bottom:525.920000pt;}
.ye9{bottom:527.520000pt;}
.y49{bottom:528.480000pt;}
.y107{bottom:529.440000pt;}
.y87{bottom:530.720000pt;}
.y135{bottom:532.960000pt;}
.y6d{bottom:538.720000pt;}
.y19{bottom:539.040000pt;}
.y98{bottom:544.480000pt;}
.yc8{bottom:547.040000pt;}
.y106{bottom:548.000000pt;}
.y86{bottom:549.280000pt;}
.y134{bottom:549.920000pt;}
.ye8{bottom:554.080000pt;}
.y48{bottom:554.720000pt;}
.y18{bottom:557.280000pt;}
.y97{bottom:562.720000pt;}
.y133{bottom:566.880000pt;}
.y85{bottom:567.520000pt;}
.y47{bottom:573.280000pt;}
.y105{bottom:574.240000pt;}
.y6c{bottom:575.520000pt;}
.y17{bottom:575.840000pt;}
.ye7{bottom:580.320000pt;}
.y96{bottom:581.280000pt;}
.y84{bottom:586.080000pt;}
.y132{bottom:588.320000pt;}
.y46{bottom:591.520000pt;}
.y104{bottom:592.800000pt;}
.y16{bottom:594.080000pt;}
.ye6{bottom:598.880000pt;}
.y95{bottom:599.520000pt;}
.yb2{bottom:602.080000pt;}
.y83{bottom:604.320000pt;}
.y45{bottom:610.080000pt;}
.y103{bottom:611.040000pt;}
.y6b{bottom:612.320000pt;}
.y15{bottom:612.640000pt;}
.y94{bottom:618.080000pt;}
.yb1{bottom:620.320000pt;}
.y82{bottom:622.906667pt;}
.ye5{bottom:625.146667pt;}
.y131{bottom:625.466667pt;}
.y44{bottom:628.346667pt;}
.y102{bottom:629.626667pt;}
.y14{bottom:630.906667pt;}
.y93{bottom:636.346667pt;}
.y6a{bottom:638.906667pt;}
.y81{bottom:641.146667pt;}
.y130{bottom:643.706667pt;}
.y43{bottom:646.906667pt;}
.y101{bottom:647.866667pt;}
.y13{bottom:649.466667pt;}
.ye4{bottom:651.706667pt;}
.y92{bottom:654.906667pt;}
.y69{bottom:657.146667pt;}
.y80{bottom:659.706667pt;}
.y12f{bottom:662.266667pt;}
.y42{bottom:665.146667pt;}
.y12{bottom:667.706667pt;}
.ye3{bottom:669.946667pt;}
.y91{bottom:673.146667pt;}
.y100{bottom:674.106667pt;}
.y68{bottom:675.706667pt;}
.y7f{bottom:677.946667pt;}
.y12e{bottom:680.506667pt;}
.y41{bottom:683.706667pt;}
.y11{bottom:686.266667pt;}
.ye2{bottom:688.506667pt;}
.y90{bottom:691.706667pt;}
.yff{bottom:692.666667pt;}
.y67{bottom:693.946667pt;}
.y12d{bottom:699.066667pt;}
.y40{bottom:701.946667pt;}
.y10{bottom:704.506667pt;}
.ye1{bottom:706.746667pt;}
.y8f{bottom:709.946667pt;}
.yfe{bottom:710.906667pt;}
.y66{bottom:712.506667pt;}
.y12c{bottom:717.306667pt;}
.y3f{bottom:720.506667pt;}
.ye0{bottom:725.306667pt;}
.y8e{bottom:728.506667pt;}
.yfd{bottom:729.466667pt;}
.y65{bottom:730.746667pt;}
.y12b{bottom:735.906667pt;}
.y3e{bottom:738.786667pt;}
.ydf{bottom:743.586667pt;}
.y8d{bottom:746.786667pt;}
.yf{bottom:747.106667pt;}
.y64{bottom:749.346667pt;}
.y12a{bottom:754.146667pt;}
.yfc{bottom:755.746667pt;}
.y3d{bottom:757.346667pt;}
.yde{bottom:762.146667pt;}
.y8c{bottom:765.346667pt;}
.ye{bottom:767.906667pt;}
.yc7{bottom:770.146667pt;}
.y129{bottom:772.706667pt;}
.y3c{bottom:775.586667pt;}
.ydd{bottom:780.386667pt;}
.y8b{bottom:783.586667pt;}
.yd{bottom:789.026667pt;}
.yfb{bottom:790.626667pt;}
.y128{bottom:790.946667pt;}
.y63{bottom:794.146667pt;}
.yc6{bottom:796.386667pt;}
.y3b{bottom:802.146667pt;}
.ydc{bottom:806.946667pt;}
.y127{bottom:809.506667pt;}
.yc{bottom:810.146667pt;}
.yfa{bottom:812.066667pt;}
.y62{bottom:812.386667pt;}
.y3a{bottom:820.386667pt;}
.yc5{bottom:822.946667pt;}
.y126{bottom:827.746667pt;}
.y61{bottom:830.946667pt;}
.yb{bottom:831.266667pt;}
.y39{bottom:838.946667pt;}
.yc4{bottom:841.186667pt;}
.y125{bottom:846.306667pt;}
.y60{bottom:849.213333pt;}
.ya{bottom:852.413333pt;}
.y38{bottom:857.213333pt;}
.yc3{bottom:859.773333pt;}
.y124{bottom:864.573333pt;}
.y5f{bottom:867.773333pt;}
.y9{bottom:873.853333pt;}
.y37{bottom:875.773333pt;}
.ydb{bottom:878.013333pt;}
.y123{bottom:883.133333pt;}
.y5e{bottom:886.013333pt;}
.y8{bottom:892.413333pt;}
.y36{bottom:894.013333pt;}
.y122{bottom:901.373333pt;}
.yb0{bottom:904.573333pt;}
.y7{bottom:910.973333pt;}
.y35{bottom:912.573333pt;}
.y121{bottom:919.933333pt;}
.yaf{bottom:922.813333pt;}
.y34{bottom:930.813333pt;}
.y6{bottom:934.333333pt;}
.y120{bottom:938.173333pt;}
.yae{bottom:941.373333pt;}
.y33{bottom:949.373333pt;}
.y11f{bottom:956.733333pt;}
.y5{bottom:958.693333pt;}
.yad{bottom:959.653333pt;}
.y32{bottom:967.653333pt;}
.y11e{bottom:975.013333pt;}
.y4{bottom:983.013333pt;}
.y31{bottom:986.213333pt;}
.y11d{bottom:1001.573333pt;}
.y30{bottom:1004.453333pt;}
.y3{bottom:1025.253333pt;}
.y2{bottom:1094.720000pt;}
.y1{bottom:1110.080000pt;}
.h10{height:15.040000pt;}
.h13{height:24.960000pt;}
.h14{height:44.687500pt;}
.hc{height:45.942165pt;}
.he{height:49.937135pt;}
.ha{height:50.184845pt;}
.h11{height:52.736250pt;}
.hd{height:54.548744pt;}
.h2{height:56.070000pt;}
.hb{height:57.758750pt;}
.h17{height:57.787500pt;}
.h3{height:60.509375pt;}
.h16{height:61.410000pt;}
.h9{height:62.781250pt;}
.h8{height:62.812500pt;}
.h12{height:64.500000pt;}
.h6{height:65.776250pt;}
.h7{height:66.750000pt;}
.h15{height:74.820000pt;}
.hf{height:77.430000pt;}
.h4{height:84.168750pt;}
.h5{height:86.430000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:201.346667pt;}
.w4{width:201.373333pt;}
.w5{width:465.466667pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2a{left:7.360000pt;}
.x29{left:75.551988pt;}
.x3a{left:80.031988pt;}
.x39{left:93.160000pt;}
.x2c{left:96.706667pt;}
.x34{left:99.551988pt;}
.x2e{left:100.520000pt;}
.x3b{left:104.031988pt;}
.xf{left:113.311988pt;}
.x6{left:121.311988pt;}
.x35{left:123.583988pt;}
.x1c{left:128.063988pt;}
.x3{left:134.466655pt;}
.x32{left:137.346655pt;}
.x38{left:142.146655pt;}
.x8{left:145.026655pt;}
.x31{left:150.146667pt;}
.x33{left:161.346655pt;}
.x7{left:173.506655pt;}
.xb{left:204.226655pt;}
.xe{left:266.013322pt;}
.x2b{left:276.893333pt;}
.xa{left:284.893322pt;}
.x18{left:290.373322pt;}
.x21{left:293.253322pt;}
.x19{left:303.173322pt;}
.x22{left:309.253322pt;}
.x2f{left:314.693333pt;}
.xc{left:326.853322pt;}
.x37{left:336.773322pt;}
.xd{left:341.253322pt;}
.x1d{left:357.573322pt;}
.x23{left:360.773322pt;}
.x1e{left:372.319988pt;}
.x24{left:376.479988pt;}
.x4{left:382.559988pt;}
.x12{left:406.239988pt;}
.x5{left:415.519988pt;}
.x9{left:416.799988pt;}
.x13{left:420.639988pt;}
.x25{left:434.079988pt;}
.x26{left:447.839988pt;}
.x2d{left:478.266667pt;}
.x1a{left:489.466655pt;}
.x1b{left:501.946655pt;}
.x1f{left:506.426655pt;}
.x10{left:511.226655pt;}
.x30{left:516.026667pt;}
.x20{left:518.906655pt;}
.x11{left:525.946655pt;}
.x27{left:538.106655pt;}
.x28{left:553.826655pt;}
.x1{left:593.506655pt;}
.x14{left:596.386655pt;}
.x15{left:610.786655pt;}
.x2{left:668.093322pt;}
.x36{left:680.253322pt;}
.x16{left:703.613322pt;}
.x17{left:718.053322pt;}
}




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