
    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_9456f7772b1e5029e0569ec5.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_46c6464e89f8a15fbab3f32c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_b7bab7a64c5eb89b1db1d031.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.946777;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_b9f40637733319c20bd1e333.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c42e4cbb3d1b91b5ad087c3c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.690918;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_21f2615f8673b66814b52757.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_6193fc93719873dbca485474.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-28.800000px;}
.v2{vertical-align:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.v4{vertical-align:24.060000px;}
.ls26{letter-spacing:-1.548000px;}
.ls10{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-1.176000px;}
.ls27{letter-spacing:-0.876000px;}
.ls25{letter-spacing:-0.786000px;}
.lsf{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.540000px;}
.ls1c{letter-spacing:-0.420000px;}
.ls14{letter-spacing:-0.408000px;}
.ls21{letter-spacing:-0.348000px;}
.lse{letter-spacing:-0.120000px;}
.lsd{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.024000px;}
.ls1b{letter-spacing:0.240000px;}
.ls8{letter-spacing:0.300000px;}
.ls22{letter-spacing:0.324000px;}
.ls23{letter-spacing:0.348000px;}
.lsb{letter-spacing:0.384000px;}
.ls28{letter-spacing:0.414000px;}
.lsc{letter-spacing:0.432000px;}
.ls24{letter-spacing:0.528000px;}
.ls6{letter-spacing:0.540000px;}
.ls0{letter-spacing:0.600000px;}
.ls17{letter-spacing:0.660000px;}
.ls12{letter-spacing:1.200000px;}
.ls15{letter-spacing:2.400000px;}
.ls18{letter-spacing:6.000000px;}
.ls1f{letter-spacing:6.852000px;}
.ls19{letter-spacing:7.260000px;}
.ls16{letter-spacing:13.200000px;}
.ls20{letter-spacing:13.680000px;}
.ls13{letter-spacing:16.800000px;}
.ls1e{letter-spacing:40.452000px;}
.ls1{letter-spacing:71.400000px;}
.ls3{letter-spacing:71.580000px;}
.ls4{letter-spacing:92.040000px;}
.ls2{letter-spacing:92.100000px;}
.ls5{letter-spacing:93.420000px;}
.ls7{letter-spacing:93.480000px;}
.ls1a{letter-spacing:845.040000px;}
.ls9{letter-spacing:1297.950000px;}
.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:-18.432000px;}
.ws6{word-spacing:-18.384000px;}
.ws5{word-spacing:-18.024000px;}
.ws4{word-spacing:-18.000000px;}
.wsb{word-spacing:-17.592000px;}
.ws2{word-spacing:-17.100000px;}
.ws12{word-spacing:-16.848000px;}
.wsa{word-spacing:-16.824000px;}
.ws3{word-spacing:-16.500000px;}
.ws10{word-spacing:-15.900000px;}
.wsd{word-spacing:-15.540000px;}
.wsc{word-spacing:-15.240000px;}
.ws1{word-spacing:-15.000000px;}
.ws14{word-spacing:-14.952000px;}
.ws0{word-spacing:-14.880000px;}
.wse{word-spacing:-14.580000px;}
.wsf{word-spacing:-14.460000px;}
.ws16{word-spacing:-10.914000px;}
.ws11{word-spacing:-10.824000px;}
.ws8{word-spacing:-9.900000px;}
.ws13{word-spacing:-9.714000px;}
.ws15{word-spacing:-9.624000px;}
.ws9{word-spacing:0.000000px;}
._17{margin-left:-4.404000px;}
._f{margin-left:-3.378000px;}
._10{margin-left:-2.304000px;}
._1{margin-left:-1.200000px;}
._4{width:1.080000px;}
._7{width:2.100000px;}
._b{width:4.092000px;}
._e{width:5.640000px;}
._c{width:6.744000px;}
._11{width:7.848000px;}
._12{width:8.916000px;}
._13{width:10.104000px;}
._18{width:11.652000px;}
._9{width:12.762000px;}
._8{width:14.262000px;}
._a{width:16.014000px;}
._19{width:17.556000px;}
._d{width:19.158000px;}
._16{width:20.214000px;}
._15{width:21.240000px;}
._1a{width:23.886000px;}
._1b{width:25.032000px;}
._14{width:32.544000px;}
._6{width:71.040000px;}
._5{width:72.690000px;}
._2{width:155.580000px;}
._0{width:182.700000px;}
._3{width:201.000000px;}
.fcd{color:rgb(62,61,64);}
.fc0{color:rgb(0,176,240);}
.fca{color:rgb(33,33,33);}
.fc3{color:rgb(68,114,196);}
.fc7{color:rgb(54,52,55);}
.fc1{color:rgb(0,0,0);}
.fc9{color:rgb(34,32,35);}
.fc5{color:rgb(32,33,34);}
.fc6{color:rgb(16,13,16);}
.fc8{color:rgb(19,16,19);}
.fc2{color:rgb(0,112,192);}
.fcb{color:rgb(57,57,58);}
.fc4{color:transparent;}
.fcc{color:rgb(19,19,20);}
.fs4{font-size:30.000000px;}
.fs2{font-size:39.600000px;}
.fs6{font-size:42.000000px;}
.fs7{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.y155{bottom:-72.900000px;}
.y154{bottom:-50.700000px;}
.y39{bottom:-29.700000px;}
.y153{bottom:-28.500000px;}
.y38{bottom:-12.300000px;}
.y152{bottom:-9.300000px;}
.y0{bottom:0.000000px;}
.ya2{bottom:4.485000px;}
.yad{bottom:4.500000px;}
.y9e{bottom:4.785000px;}
.y37{bottom:4.800000px;}
.ya4{bottom:4.815000px;}
.ye1{bottom:5.100000px;}
.ye6{bottom:5.115000px;}
.ya0{bottom:5.400000px;}
.ya9{bottom:5.700000px;}
.ya6{bottom:5.715000px;}
.yc7{bottom:6.000000px;}
.yca{bottom:6.300000px;}
.yc3{bottom:6.315000px;}
.yc9{bottom:6.330000px;}
.y151{bottom:7.800000px;}
.y36{bottom:21.900000px;}
.y150{bottom:25.200000px;}
.y4{bottom:25.537500px;}
.y14f{bottom:42.300000px;}
.y121{bottom:57.337500px;}
.y14e{bottom:59.730000px;}
.y34{bottom:60.037500px;}
.y8e{bottom:60.637500px;}
.y66{bottom:69.637500px;}
.y143{bottom:73.537500px;}
.y120{bottom:76.237500px;}
.y14d{bottom:76.830000px;}
.y33{bottom:83.737500px;}
.y8d{bottom:84.337500px;}
.y65{bottom:93.337500px;}
.y14c{bottom:94.230000px;}
.y11f{bottom:95.137500px;}
.y32{bottom:107.437500px;}
.y8c{bottom:108.337500px;}
.y14b{bottom:111.330000px;}
.y11e{bottom:114.037500px;}
.y142{bottom:117.037500px;}
.y64{bottom:117.337500px;}
.y14a{bottom:128.745000px;}
.y31{bottom:131.437500px;}
.y8b{bottom:132.037500px;}
.y11d{bottom:133.237500px;}
.y63{bottom:141.037500px;}
.y149{bottom:145.830000px;}
.y11c{bottom:152.130000px;}
.y30{bottom:155.130000px;}
.y8a{bottom:155.745000px;}
.y141{bottom:161.730000px;}
.y148{bottom:163.245000px;}
.y62{bottom:164.730000px;}
.y11b{bottom:171.075000px;}
.y2f{bottom:178.875000px;}
.y89{bottom:179.775000px;}
.y147{bottom:180.330000px;}
.y11a{bottom:189.975000px;}
.y146{bottom:197.745000px;}
.y61{bottom:197.775000px;}
.yee{bottom:202.275000px;}
.y2e{bottom:202.875000px;}
.yc0{bottom:203.475000px;}
.y140{bottom:206.775000px;}
.y119{bottom:209.175000px;}
.y88{bottom:212.475000px;}
.y145{bottom:214.830000px;}
.y60{bottom:221.475000px;}
.yed{bottom:225.975000px;}
.y2d{bottom:226.575000px;}
.ybf{bottom:227.175000px;}
.y118{bottom:228.075000px;}
.y87{bottom:236.175000px;}
.y5f{bottom:245.175000px;}
.yec{bottom:245.775000px;}
.y117{bottom:246.975000px;}
.y2c{bottom:250.275000px;}
.ybe{bottom:251.175000px;}
.y13f{bottom:251.475000px;}
.y86{bottom:260.175000px;}
.yeb{bottom:265.575000px;}
.y116{bottom:265.875000px;}
.y5e{bottom:269.175000px;}
.y2b{bottom:274.275000px;}
.ybd{bottom:274.875000px;}
.y85{bottom:283.875000px;}
.yea{bottom:285.075000px;}
.y13e{bottom:296.175000px;}
.y2a{bottom:297.975000px;}
.ybc{bottom:298.575000px;}
.y5d{bottom:301.875000px;}
.y115{bottom:303.975000px;}
.ye9{bottom:304.875000px;}
.y84{bottom:307.575000px;}
.y29{bottom:321.675000px;}
.ybb{bottom:322.575000px;}
.y114{bottom:322.875000px;}
.ye8{bottom:324.675000px;}
.y5c{bottom:325.575000px;}
.y83{bottom:331.575000px;}
.y13d{bottom:341.220000px;}
.y113{bottom:341.820000px;}
.ye7{bottom:344.505000px;}
.y28{bottom:345.705000px;}
.yba{bottom:346.320000px;}
.y5b{bottom:349.620000px;}
.y82{bottom:355.320000px;}
.y112{bottom:361.005000px;}
.ye5{bottom:364.005000px;}
.y27{bottom:369.420000px;}
.yb9{bottom:370.005000px;}
.y81{bottom:379.005000px;}
.y111{bottom:379.905000px;}
.y5a{bottom:382.320000px;}
.ye4{bottom:383.820000px;}
.y13c{bottom:385.920000px;}
.y26{bottom:393.120000px;}
.yb8{bottom:394.005000px;}
.y110{bottom:398.820000px;}
.y80{bottom:403.005000px;}
.ye3{bottom:403.605000px;}
.y59{bottom:406.005000px;}
.y25{bottom:417.105000px;}
.yb7{bottom:417.705000px;}
.ye2{bottom:423.405000px;}
.y7f{bottom:426.705000px;}
.y13b{bottom:427.620000px;}
.y10f{bottom:436.905000px;}
.y58{bottom:439.005000px;}
.y24{bottom:440.820000px;}
.yb6{bottom:441.405000px;}
.ye0{bottom:442.905000px;}
.y13a{bottom:448.320000px;}
.y7e{bottom:450.405000px;}
.y10e{bottom:455.820000px;}
.y57{bottom:462.705000px;}
.yb5{bottom:465.405000px;}
.y139{bottom:469.005000px;}
.y23{bottom:473.505000px;}
.y7d{bottom:474.405000px;}
.y10d{bottom:474.705000px;}
.y56{bottom:486.405000px;}
.yb4{bottom:489.120000px;}
.y138{bottom:489.705000px;}
.y10c{bottom:493.620000px;}
.ydf{bottom:496.605000px;}
.y22{bottom:497.505000px;}
.y7c{bottom:498.105000px;}
.y55{bottom:510.450000px;}
.yb3{bottom:512.850000px;}
.yde{bottom:518.250000px;}
.y21{bottom:521.250000px;}
.y7b{bottom:521.850000px;}
.y137{bottom:531.150000px;}
.y10b{bottom:531.750000px;}
.yb2{bottom:536.850000px;}
.ydd{bottom:542.250000px;}
.y54{bottom:543.150000px;}
.y20{bottom:544.950000px;}
.y7a{bottom:545.850000px;}
.y10a{bottom:550.650000px;}
.y136{bottom:551.850000px;}
.yb1{bottom:560.550000px;}
.ydc{bottom:565.950000px;}
.y53{bottom:566.850000px;}
.y1f{bottom:568.950000px;}
.y79{bottom:569.550000px;}
.y135{bottom:572.550000px;}
.yb0{bottom:584.250000px;}
.y109{bottom:588.750000px;}
.ydb{bottom:589.650000px;}
.y52{bottom:590.850000px;}
.y1e{bottom:592.650000px;}
.y134{bottom:593.250000px;}
.y78{bottom:602.250000px;}
.yaf{bottom:607.350000px;}
.y108{bottom:607.650000px;}
.yda{bottom:613.650000px;}
.y133{bottom:613.950000px;}
.y51{bottom:614.550000px;}
.y1d{bottom:616.650000px;}
.yae{bottom:623.850000px;}
.y77{bottom:626.250000px;}
.y107{bottom:626.550000px;}
.y132{bottom:634.650000px;}
.yd9{bottom:637.350000px;}
.y50{bottom:638.250000px;}
.y1c{bottom:640.350000px;}
.yac{bottom:643.950000px;}
.y106{bottom:645.450000px;}
.y76{bottom:649.950000px;}
.y131{bottom:655.350000px;}
.yd8{bottom:661.050000px;}
.y4f{bottom:662.250000px;}
.yab{bottom:663.150000px;}
.y1b{bottom:664.050000px;}
.y105{bottom:664.650000px;}
.y75{bottom:673.650000px;}
.y130{bottom:676.080000px;}
.yaa{bottom:683.280000px;}
.y104{bottom:683.595000px;}
.yd7{bottom:685.095000px;}
.y4e{bottom:685.980000px;}
.y1a{bottom:688.080000px;}
.y12f{bottom:696.780000px;}
.ya8{bottom:702.480000px;}
.y74{bottom:706.695000px;}
.yd6{bottom:708.780000px;}
.y4d{bottom:709.680000px;}
.y19{bottom:711.780000px;}
.y12e{bottom:717.480000px;}
.y103{bottom:721.380000px;}
.ya7{bottom:722.580000px;}
.y73{bottom:730.380000px;}
.yd5{bottom:732.480000px;}
.y4c{bottom:733.695000px;}
.y18{bottom:735.495000px;}
.y12d{bottom:738.180000px;}
.y102{bottom:740.595000px;}
.ya5{bottom:741.780000px;}
.y72{bottom:754.095000px;}
.yd4{bottom:756.480000px;}
.y4b{bottom:757.380000px;}
.y12c{bottom:758.880000px;}
.y17{bottom:759.480000px;}
.ya3{bottom:761.880000px;}
.y101{bottom:778.380000px;}
.y12b{bottom:779.580000px;}
.yd3{bottom:780.195000px;}
.y4a{bottom:781.080000px;}
.ya1{bottom:781.395000px;}
.y16{bottom:783.195000px;}
.y71{bottom:787.080000px;}
.y100{bottom:797.295000px;}
.y12a{bottom:800.295000px;}
.y9f{bottom:800.580000px;}
.yd2{bottom:803.880000px;}
.y49{bottom:805.080000px;}
.y15{bottom:806.880000px;}
.y70{bottom:810.795000px;}
.yff{bottom:816.495000px;}
.y9d{bottom:820.695000px;}
.y129{bottom:820.980000px;}
.y14{bottom:827.295000px;}
.yd1{bottom:827.880000px;}
.y48{bottom:828.795000px;}
.yfe{bottom:835.380000px;}
.y128{bottom:841.695000px;}
.y6f{bottom:843.480000px;}
.y13{bottom:846.825000px;}
.yd0{bottom:851.625000px;}
.y47{bottom:852.525000px;}
.y9c{bottom:854.325000px;}
.y127{bottom:862.425000px;}
.y12{bottom:866.625000px;}
.y6e{bottom:867.525000px;}
.yfd{bottom:873.225000px;}
.ycf{bottom:875.325000px;}
.y46{bottom:876.525000px;}
.y9b{bottom:876.825000px;}
.y126{bottom:883.125000px;}
.y11{bottom:886.425000px;}
.yfc{bottom:892.425000px;}
.yce{bottom:899.325000px;}
.y45{bottom:900.225000px;}
.y9a{bottom:900.525000px;}
.y125{bottom:903.825000px;}
.y10{bottom:910.425000px;}
.yfb{bottom:911.325000px;}
.ycd{bottom:923.025000px;}
.y44{bottom:924.225000px;}
.y99{bottom:924.525000px;}
.y35{bottom:926.025000px;}
.yfa{bottom:930.225000px;}
.ycc{bottom:947.025000px;}
.y43{bottom:947.925000px;}
.y98{bottom:948.225000px;}
.yf9{bottom:949.125000px;}
.y144{bottom:955.125000px;}
.ycb{bottom:964.425000px;}
.yf8{bottom:968.025000px;}
.y42{bottom:971.625000px;}
.y97{bottom:971.925000px;}
.y6d{bottom:980.625000px;}
.yf{bottom:986.925000px;}
.yf7{bottom:987.225000px;}
.y41{bottom:995.625000px;}
.y96{bottom:995.925000px;}
.y6c{bottom:1004.625000px;}
.ye{bottom:1005.825000px;}
.yf6{bottom:1006.125000px;}
.yc8{bottom:1009.425000px;}
.y40{bottom:1019.370000px;}
.y95{bottom:1019.670000px;}
.yf5{bottom:1025.070000px;}
.yd{bottom:1028.355000px;}
.yc6{bottom:1032.255000px;}
.yc{bottom:1040.355000px;}
.y3f{bottom:1043.070000px;}
.y94{bottom:1043.355000px;}
.yf4{bottom:1043.955000px;}
.yc5{bottom:1054.755000px;}
.yb{bottom:1057.455000px;}
.y6b{bottom:1061.070000px;}
.yf3{bottom:1063.170000px;}
.y3e{bottom:1067.070000px;}
.y93{bottom:1067.355000px;}
.ya{bottom:1074.570000px;}
.yc4{bottom:1077.255000px;}
.yf2{bottom:1082.070000px;}
.y6a{bottom:1085.070000px;}
.y3d{bottom:1090.755000px;}
.y92{bottom:1091.070000px;}
.y9{bottom:1095.855000px;}
.yc2{bottom:1099.755000px;}
.yf1{bottom:1100.955000px;}
.y3c{bottom:1114.455000px;}
.y91{bottom:1114.755000px;}
.y8{bottom:1117.155000px;}
.y69{bottom:1117.755000px;}
.y124{bottom:1119.855000px;}
.yf0{bottom:1122.570000px;}
.y7{bottom:1135.755000px;}
.yc1{bottom:1137.570000px;}
.y3b{bottom:1138.455000px;}
.y90{bottom:1138.755000px;}
.y123{bottom:1139.070000px;}
.y68{bottom:1141.455000px;}
.yef{bottom:1145.070000px;}
.y122{bottom:1157.955000px;}
.y6{bottom:1158.570000px;}
.y3a{bottom:1162.155000px;}
.y8f{bottom:1162.455000px;}
.y67{bottom:1165.455000px;}
.y5{bottom:1175.955000px;}
.y3{bottom:1193.100000px;}
.y2{bottom:1210.500000px;}
.y1{bottom:1227.600000px;}
.h13{height:18.300000px;}
.h11{height:18.600000px;}
.h1a{height:18.900000px;}
.h1b{height:18.937500px;}
.h12{height:19.200000px;}
.h15{height:19.237500px;}
.h14{height:19.500000px;}
.h18{height:21.600000px;}
.h16{height:21.900000px;}
.h19{height:21.937500px;}
.h8{height:28.636523px;}
.he{height:35.700000px;}
.h10{height:40.634766px;}
.h2{height:42.333984px;}
.h4{height:43.388672px;}
.h3{height:43.857422px;}
.h17{height:46.567383px;}
.h9{height:47.727539px;}
.h1c{height:48.049805px;}
.ha{height:48.243164px;}
.h7{height:49.480430px;}
.h6{height:49.540430px;}
.hf{height:50.236523px;}
.hc{height:50.800781px;}
.h1f{height:51.912070px;}
.h1e{height:51.972070px;}
.h21{height:52.032070px;}
.hb{height:52.066406px;}
.h22{height:52.417969px;}
.hd{height:52.628906px;}
.h1d{height:53.693789px;}
.h5{height:60.662109px;}
.h20{height:65.645508px;}
.h23{height:228.675000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w8{width:106.837500px;}
.w7{width:226.875000px;}
.w6{width:261.375000px;}
.w9{width:264.075000px;}
.w5{width:289.275000px;}
.w4{width:296.505000px;}
.w3{width:703.425000px;}
.wa{width:782.070000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:10.800000px;}
.x2c{left:22.185000px;}
.x2a{left:26.700000px;}
.x16{left:30.000000px;}
.x2e{left:43.245000px;}
.x2d{left:45.645000px;}
.x2f{left:48.045000px;}
.x1{left:53.999987px;}
.x21{left:58.800000px;}
.x14{left:72.330000px;}
.x22{left:74.400000px;}
.x31{left:81.037487px;}
.x27{left:82.500000px;}
.x4{left:85.237487px;}
.x19{left:89.430000px;}
.x23{left:90.900000px;}
.x24{left:92.700000px;}
.x25{left:94.830000px;}
.x26{left:96.345000px;}
.x5{left:98.137487px;}
.x1a{left:100.230000px;}
.x17{left:102.030000px;}
.x32{left:108.037487px;}
.x9{left:114.337487px;}
.x1f{left:115.545000px;}
.xa{left:117.937487px;}
.x1c{left:120.630000px;}
.xd{left:122.137487px;}
.x18{left:123.330000px;}
.x1b{left:125.430000px;}
.xf{left:132.937500px;}
.xc{left:145.837487px;}
.xe{left:147.937487px;}
.x13{left:153.645000px;}
.x30{left:162.929987px;}
.x1e{left:202.275000px;}
.x1d{left:217.274987px;}
.x28{left:225.674987px;}
.x12{left:246.974987px;}
.x7{left:258.674987px;}
.x29{left:261.075000px;}
.x6{left:269.774987px;}
.x8{left:282.074987px;}
.x2{left:334.019987px;}
.x11{left:351.412500px;}
.x2b{left:368.220000px;}
.xb{left:374.819987px;}
.x3{left:446.549987px;}
.x15{left:450.450000px;}
.x20{left:463.950000px;}
@media print{
.v3{vertical-align:-25.600000pt;}
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.v4{vertical-align:21.386667pt;}
.ls26{letter-spacing:-1.376000pt;}
.ls10{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-1.045333pt;}
.ls27{letter-spacing:-0.778667pt;}
.ls25{letter-spacing:-0.698667pt;}
.lsf{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.480000pt;}
.ls1c{letter-spacing:-0.373333pt;}
.ls14{letter-spacing:-0.362667pt;}
.ls21{letter-spacing:-0.309333pt;}
.lse{letter-spacing:-0.106667pt;}
.lsd{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.021333pt;}
.ls1b{letter-spacing:0.213333pt;}
.ls8{letter-spacing:0.266667pt;}
.ls22{letter-spacing:0.288000pt;}
.ls23{letter-spacing:0.309333pt;}
.lsb{letter-spacing:0.341333pt;}
.ls28{letter-spacing:0.368000pt;}
.lsc{letter-spacing:0.384000pt;}
.ls24{letter-spacing:0.469333pt;}
.ls6{letter-spacing:0.480000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls17{letter-spacing:0.586667pt;}
.ls12{letter-spacing:1.066667pt;}
.ls15{letter-spacing:2.133333pt;}
.ls18{letter-spacing:5.333333pt;}
.ls1f{letter-spacing:6.090667pt;}
.ls19{letter-spacing:6.453333pt;}
.ls16{letter-spacing:11.733333pt;}
.ls20{letter-spacing:12.160000pt;}
.ls13{letter-spacing:14.933333pt;}
.ls1e{letter-spacing:35.957333pt;}
.ls1{letter-spacing:63.466667pt;}
.ls3{letter-spacing:63.626667pt;}
.ls4{letter-spacing:81.813333pt;}
.ls2{letter-spacing:81.866667pt;}
.ls5{letter-spacing:83.040000pt;}
.ls7{letter-spacing:83.093333pt;}
.ls1a{letter-spacing:751.146667pt;}
.ls9{letter-spacing:1153.733333pt;}
.ws7{word-spacing:-16.384000pt;}
.ws6{word-spacing:-16.341333pt;}
.ws5{word-spacing:-16.021333pt;}
.ws4{word-spacing:-16.000000pt;}
.wsb{word-spacing:-15.637333pt;}
.ws2{word-spacing:-15.200000pt;}
.ws12{word-spacing:-14.976000pt;}
.wsa{word-spacing:-14.954667pt;}
.ws3{word-spacing:-14.666667pt;}
.ws10{word-spacing:-14.133333pt;}
.wsd{word-spacing:-13.813333pt;}
.wsc{word-spacing:-13.546667pt;}
.ws1{word-spacing:-13.333333pt;}
.ws14{word-spacing:-13.290667pt;}
.ws0{word-spacing:-13.226667pt;}
.wse{word-spacing:-12.960000pt;}
.wsf{word-spacing:-12.853333pt;}
.ws16{word-spacing:-9.701333pt;}
.ws11{word-spacing:-9.621333pt;}
.ws8{word-spacing:-8.800000pt;}
.ws13{word-spacing:-8.634667pt;}
.ws15{word-spacing:-8.554667pt;}
.ws9{word-spacing:0.000000pt;}
._17{margin-left:-3.914667pt;}
._f{margin-left:-3.002667pt;}
._10{margin-left:-2.048000pt;}
._1{margin-left:-1.066667pt;}
._4{width:0.960000pt;}
._7{width:1.866667pt;}
._b{width:3.637333pt;}
._e{width:5.013333pt;}
._c{width:5.994667pt;}
._11{width:6.976000pt;}
._12{width:7.925333pt;}
._13{width:8.981333pt;}
._18{width:10.357333pt;}
._9{width:11.344000pt;}
._8{width:12.677333pt;}
._a{width:14.234667pt;}
._19{width:15.605333pt;}
._d{width:17.029333pt;}
._16{width:17.968000pt;}
._15{width:18.880000pt;}
._1a{width:21.232000pt;}
._1b{width:22.250667pt;}
._14{width:28.928000pt;}
._6{width:63.146667pt;}
._5{width:64.613333pt;}
._2{width:138.293333pt;}
._0{width:162.400000pt;}
._3{width:178.666667pt;}
.fs4{font-size:26.666667pt;}
.fs2{font-size:35.200000pt;}
.fs6{font-size:37.333333pt;}
.fs7{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.y155{bottom:-64.800000pt;}
.y154{bottom:-45.066667pt;}
.y39{bottom:-26.400000pt;}
.y153{bottom:-25.333333pt;}
.y38{bottom:-10.933333pt;}
.y152{bottom:-8.266667pt;}
.y0{bottom:0.000000pt;}
.ya2{bottom:3.986667pt;}
.yad{bottom:4.000000pt;}
.y9e{bottom:4.253333pt;}
.y37{bottom:4.266667pt;}
.ya4{bottom:4.280000pt;}
.ye1{bottom:4.533333pt;}
.ye6{bottom:4.546667pt;}
.ya0{bottom:4.800000pt;}
.ya9{bottom:5.066667pt;}
.ya6{bottom:5.080000pt;}
.yc7{bottom:5.333333pt;}
.yca{bottom:5.600000pt;}
.yc3{bottom:5.613333pt;}
.yc9{bottom:5.626667pt;}
.y151{bottom:6.933333pt;}
.y36{bottom:19.466667pt;}
.y150{bottom:22.400000pt;}
.y4{bottom:22.700000pt;}
.y14f{bottom:37.600000pt;}
.y121{bottom:50.966667pt;}
.y14e{bottom:53.093333pt;}
.y34{bottom:53.366667pt;}
.y8e{bottom:53.900000pt;}
.y66{bottom:61.900000pt;}
.y143{bottom:65.366667pt;}
.y120{bottom:67.766667pt;}
.y14d{bottom:68.293333pt;}
.y33{bottom:74.433333pt;}
.y8d{bottom:74.966667pt;}
.y65{bottom:82.966667pt;}
.y14c{bottom:83.760000pt;}
.y11f{bottom:84.566667pt;}
.y32{bottom:95.500000pt;}
.y8c{bottom:96.300000pt;}
.y14b{bottom:98.960000pt;}
.y11e{bottom:101.366667pt;}
.y142{bottom:104.033333pt;}
.y64{bottom:104.300000pt;}
.y14a{bottom:114.440000pt;}
.y31{bottom:116.833333pt;}
.y8b{bottom:117.366667pt;}
.y11d{bottom:118.433333pt;}
.y63{bottom:125.366667pt;}
.y149{bottom:129.626667pt;}
.y11c{bottom:135.226667pt;}
.y30{bottom:137.893333pt;}
.y8a{bottom:138.440000pt;}
.y141{bottom:143.760000pt;}
.y148{bottom:145.106667pt;}
.y62{bottom:146.426667pt;}
.y11b{bottom:152.066667pt;}
.y2f{bottom:159.000000pt;}
.y89{bottom:159.800000pt;}
.y147{bottom:160.293333pt;}
.y11a{bottom:168.866667pt;}
.y146{bottom:175.773333pt;}
.y61{bottom:175.800000pt;}
.yee{bottom:179.800000pt;}
.y2e{bottom:180.333333pt;}
.yc0{bottom:180.866667pt;}
.y140{bottom:183.800000pt;}
.y119{bottom:185.933333pt;}
.y88{bottom:188.866667pt;}
.y145{bottom:190.960000pt;}
.y60{bottom:196.866667pt;}
.yed{bottom:200.866667pt;}
.y2d{bottom:201.400000pt;}
.ybf{bottom:201.933333pt;}
.y118{bottom:202.733333pt;}
.y87{bottom:209.933333pt;}
.y5f{bottom:217.933333pt;}
.yec{bottom:218.466667pt;}
.y117{bottom:219.533333pt;}
.y2c{bottom:222.466667pt;}
.ybe{bottom:223.266667pt;}
.y13f{bottom:223.533333pt;}
.y86{bottom:231.266667pt;}
.yeb{bottom:236.066667pt;}
.y116{bottom:236.333333pt;}
.y5e{bottom:239.266667pt;}
.y2b{bottom:243.800000pt;}
.ybd{bottom:244.333333pt;}
.y85{bottom:252.333333pt;}
.yea{bottom:253.400000pt;}
.y13e{bottom:263.266667pt;}
.y2a{bottom:264.866667pt;}
.ybc{bottom:265.400000pt;}
.y5d{bottom:268.333333pt;}
.y115{bottom:270.200000pt;}
.ye9{bottom:271.000000pt;}
.y84{bottom:273.400000pt;}
.y29{bottom:285.933333pt;}
.ybb{bottom:286.733333pt;}
.y114{bottom:287.000000pt;}
.ye8{bottom:288.600000pt;}
.y5c{bottom:289.400000pt;}
.y83{bottom:294.733333pt;}
.y13d{bottom:303.306667pt;}
.y113{bottom:303.840000pt;}
.ye7{bottom:306.226667pt;}
.y28{bottom:307.293333pt;}
.yba{bottom:307.840000pt;}
.y5b{bottom:310.773333pt;}
.y82{bottom:315.840000pt;}
.y112{bottom:320.893333pt;}
.ye5{bottom:323.560000pt;}
.y27{bottom:328.373333pt;}
.yb9{bottom:328.893333pt;}
.y81{bottom:336.893333pt;}
.y111{bottom:337.693333pt;}
.y5a{bottom:339.840000pt;}
.ye4{bottom:341.173333pt;}
.y13c{bottom:343.040000pt;}
.y26{bottom:349.440000pt;}
.yb8{bottom:350.226667pt;}
.y110{bottom:354.506667pt;}
.y80{bottom:358.226667pt;}
.ye3{bottom:358.760000pt;}
.y59{bottom:360.893333pt;}
.y25{bottom:370.760000pt;}
.yb7{bottom:371.293333pt;}
.ye2{bottom:376.360000pt;}
.y7f{bottom:379.293333pt;}
.y13b{bottom:380.106667pt;}
.y10f{bottom:388.360000pt;}
.y58{bottom:390.226667pt;}
.y24{bottom:391.840000pt;}
.yb6{bottom:392.360000pt;}
.ye0{bottom:393.693333pt;}
.y13a{bottom:398.506667pt;}
.y7e{bottom:400.360000pt;}
.y10e{bottom:405.173333pt;}
.y57{bottom:411.293333pt;}
.yb5{bottom:413.693333pt;}
.y139{bottom:416.893333pt;}
.y23{bottom:420.893333pt;}
.y7d{bottom:421.693333pt;}
.y10d{bottom:421.960000pt;}
.y56{bottom:432.360000pt;}
.yb4{bottom:434.773333pt;}
.y138{bottom:435.293333pt;}
.y10c{bottom:438.773333pt;}
.ydf{bottom:441.426667pt;}
.y22{bottom:442.226667pt;}
.y7c{bottom:442.760000pt;}
.y55{bottom:453.733333pt;}
.yb3{bottom:455.866667pt;}
.yde{bottom:460.666667pt;}
.y21{bottom:463.333333pt;}
.y7b{bottom:463.866667pt;}
.y137{bottom:472.133333pt;}
.y10b{bottom:472.666667pt;}
.yb2{bottom:477.200000pt;}
.ydd{bottom:482.000000pt;}
.y54{bottom:482.800000pt;}
.y20{bottom:484.400000pt;}
.y7a{bottom:485.200000pt;}
.y10a{bottom:489.466667pt;}
.y136{bottom:490.533333pt;}
.yb1{bottom:498.266667pt;}
.ydc{bottom:503.066667pt;}
.y53{bottom:503.866667pt;}
.y1f{bottom:505.733333pt;}
.y79{bottom:506.266667pt;}
.y135{bottom:508.933333pt;}
.yb0{bottom:519.333333pt;}
.y109{bottom:523.333333pt;}
.ydb{bottom:524.133333pt;}
.y52{bottom:525.200000pt;}
.y1e{bottom:526.800000pt;}
.y134{bottom:527.333333pt;}
.y78{bottom:535.333333pt;}
.yaf{bottom:539.866667pt;}
.y108{bottom:540.133333pt;}
.yda{bottom:545.466667pt;}
.y133{bottom:545.733333pt;}
.y51{bottom:546.266667pt;}
.y1d{bottom:548.133333pt;}
.yae{bottom:554.533333pt;}
.y77{bottom:556.666667pt;}
.y107{bottom:556.933333pt;}
.y132{bottom:564.133333pt;}
.yd9{bottom:566.533333pt;}
.y50{bottom:567.333333pt;}
.y1c{bottom:569.200000pt;}
.yac{bottom:572.400000pt;}
.y106{bottom:573.733333pt;}
.y76{bottom:577.733333pt;}
.y131{bottom:582.533333pt;}
.yd8{bottom:587.600000pt;}
.y4f{bottom:588.666667pt;}
.yab{bottom:589.466667pt;}
.y1b{bottom:590.266667pt;}
.y105{bottom:590.800000pt;}
.y75{bottom:598.800000pt;}
.y130{bottom:600.960000pt;}
.yaa{bottom:607.360000pt;}
.y104{bottom:607.640000pt;}
.yd7{bottom:608.973333pt;}
.y4e{bottom:609.760000pt;}
.y1a{bottom:611.626667pt;}
.y12f{bottom:619.360000pt;}
.ya8{bottom:624.426667pt;}
.y74{bottom:628.173333pt;}
.yd6{bottom:630.026667pt;}
.y4d{bottom:630.826667pt;}
.y19{bottom:632.693333pt;}
.y12e{bottom:637.760000pt;}
.y103{bottom:641.226667pt;}
.ya7{bottom:642.293333pt;}
.y73{bottom:649.226667pt;}
.yd5{bottom:651.093333pt;}
.y4c{bottom:652.173333pt;}
.y18{bottom:653.773333pt;}
.y12d{bottom:656.160000pt;}
.y102{bottom:658.306667pt;}
.ya5{bottom:659.360000pt;}
.y72{bottom:670.306667pt;}
.yd4{bottom:672.426667pt;}
.y4b{bottom:673.226667pt;}
.y12c{bottom:674.560000pt;}
.y17{bottom:675.093333pt;}
.ya3{bottom:677.226667pt;}
.y101{bottom:691.893333pt;}
.y12b{bottom:692.960000pt;}
.yd3{bottom:693.506667pt;}
.y4a{bottom:694.293333pt;}
.ya1{bottom:694.573333pt;}
.y16{bottom:696.173333pt;}
.y71{bottom:699.626667pt;}
.y100{bottom:708.706667pt;}
.y12a{bottom:711.373333pt;}
.y9f{bottom:711.626667pt;}
.yd2{bottom:714.560000pt;}
.y49{bottom:715.626667pt;}
.y15{bottom:717.226667pt;}
.y70{bottom:720.706667pt;}
.yff{bottom:725.773333pt;}
.y9d{bottom:729.506667pt;}
.y129{bottom:729.760000pt;}
.y14{bottom:735.373333pt;}
.yd1{bottom:735.893333pt;}
.y48{bottom:736.706667pt;}
.yfe{bottom:742.560000pt;}
.y128{bottom:748.173333pt;}
.y6f{bottom:749.760000pt;}
.y13{bottom:752.733333pt;}
.yd0{bottom:757.000000pt;}
.y47{bottom:757.800000pt;}
.y9c{bottom:759.400000pt;}
.y127{bottom:766.600000pt;}
.y12{bottom:770.333333pt;}
.y6e{bottom:771.133333pt;}
.yfd{bottom:776.200000pt;}
.ycf{bottom:778.066667pt;}
.y46{bottom:779.133333pt;}
.y9b{bottom:779.400000pt;}
.y126{bottom:785.000000pt;}
.y11{bottom:787.933333pt;}
.yfc{bottom:793.266667pt;}
.yce{bottom:799.400000pt;}
.y45{bottom:800.200000pt;}
.y9a{bottom:800.466667pt;}
.y125{bottom:803.400000pt;}
.y10{bottom:809.266667pt;}
.yfb{bottom:810.066667pt;}
.ycd{bottom:820.466667pt;}
.y44{bottom:821.533333pt;}
.y99{bottom:821.800000pt;}
.y35{bottom:823.133333pt;}
.yfa{bottom:826.866667pt;}
.ycc{bottom:841.800000pt;}
.y43{bottom:842.600000pt;}
.y98{bottom:842.866667pt;}
.yf9{bottom:843.666667pt;}
.y144{bottom:849.000000pt;}
.ycb{bottom:857.266667pt;}
.yf8{bottom:860.466667pt;}
.y42{bottom:863.666667pt;}
.y97{bottom:863.933333pt;}
.y6d{bottom:871.666667pt;}
.yf{bottom:877.266667pt;}
.yf7{bottom:877.533333pt;}
.y41{bottom:885.000000pt;}
.y96{bottom:885.266667pt;}
.y6c{bottom:893.000000pt;}
.ye{bottom:894.066667pt;}
.yf6{bottom:894.333333pt;}
.yc8{bottom:897.266667pt;}
.y40{bottom:906.106667pt;}
.y95{bottom:906.373333pt;}
.yf5{bottom:911.173333pt;}
.yd{bottom:914.093333pt;}
.yc6{bottom:917.560000pt;}
.yc{bottom:924.760000pt;}
.y3f{bottom:927.173333pt;}
.y94{bottom:927.426667pt;}
.yf4{bottom:927.960000pt;}
.yc5{bottom:937.560000pt;}
.yb{bottom:939.960000pt;}
.y6b{bottom:943.173333pt;}
.yf3{bottom:945.040000pt;}
.y3e{bottom:948.506667pt;}
.y93{bottom:948.760000pt;}
.ya{bottom:955.173333pt;}
.yc4{bottom:957.560000pt;}
.yf2{bottom:961.840000pt;}
.y6a{bottom:964.506667pt;}
.y3d{bottom:969.560000pt;}
.y92{bottom:969.840000pt;}
.y9{bottom:974.093333pt;}
.yc2{bottom:977.560000pt;}
.yf1{bottom:978.626667pt;}
.y3c{bottom:990.626667pt;}
.y91{bottom:990.893333pt;}
.y8{bottom:993.026667pt;}
.y69{bottom:993.560000pt;}
.y124{bottom:995.426667pt;}
.yf0{bottom:997.840000pt;}
.y7{bottom:1009.560000pt;}
.yc1{bottom:1011.173333pt;}
.y3b{bottom:1011.960000pt;}
.y90{bottom:1012.226667pt;}
.y123{bottom:1012.506667pt;}
.y68{bottom:1014.626667pt;}
.yef{bottom:1017.840000pt;}
.y122{bottom:1029.293333pt;}
.y6{bottom:1029.840000pt;}
.y3a{bottom:1033.026667pt;}
.y8f{bottom:1033.293333pt;}
.y67{bottom:1035.960000pt;}
.y5{bottom:1045.293333pt;}
.y3{bottom:1060.533333pt;}
.y2{bottom:1076.000000pt;}
.y1{bottom:1091.200000pt;}
.h13{height:16.266667pt;}
.h11{height:16.533333pt;}
.h1a{height:16.800000pt;}
.h1b{height:16.833333pt;}
.h12{height:17.066667pt;}
.h15{height:17.100000pt;}
.h14{height:17.333333pt;}
.h18{height:19.200000pt;}
.h16{height:19.466667pt;}
.h19{height:19.500000pt;}
.h8{height:25.454687pt;}
.he{height:31.733333pt;}
.h10{height:36.119792pt;}
.h2{height:37.630208pt;}
.h4{height:38.567708pt;}
.h3{height:38.984375pt;}
.h17{height:41.393229pt;}
.h9{height:42.424479pt;}
.h1c{height:42.710938pt;}
.ha{height:42.882812pt;}
.h7{height:43.982604pt;}
.h6{height:44.035938pt;}
.hf{height:44.654687pt;}
.hc{height:45.156250pt;}
.h1f{height:46.144062pt;}
.h1e{height:46.197396pt;}
.h21{height:46.250729pt;}
.hb{height:46.281250pt;}
.h22{height:46.593750pt;}
.hd{height:46.781250pt;}
.h1d{height:47.727812pt;}
.h5{height:53.921875pt;}
.h20{height:58.351562pt;}
.h23{height:203.266667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w8{width:94.966667pt;}
.w7{width:201.666667pt;}
.w6{width:232.333333pt;}
.w9{width:234.733333pt;}
.w5{width:257.133333pt;}
.w4{width:263.560000pt;}
.w3{width:625.266667pt;}
.wa{width:695.173333pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:9.600000pt;}
.x2c{left:19.720000pt;}
.x2a{left:23.733333pt;}
.x16{left:26.666667pt;}
.x2e{left:38.440000pt;}
.x2d{left:40.573333pt;}
.x2f{left:42.706667pt;}
.x1{left:47.999988pt;}
.x21{left:52.266667pt;}
.x14{left:64.293333pt;}
.x22{left:66.133333pt;}
.x31{left:72.033322pt;}
.x27{left:73.333333pt;}
.x4{left:75.766655pt;}
.x19{left:79.493333pt;}
.x23{left:80.800000pt;}
.x24{left:82.400000pt;}
.x25{left:84.293333pt;}
.x26{left:85.640000pt;}
.x5{left:87.233322pt;}
.x1a{left:89.093333pt;}
.x17{left:90.693333pt;}
.x32{left:96.033322pt;}
.x9{left:101.633322pt;}
.x1f{left:102.706667pt;}
.xa{left:104.833322pt;}
.x1c{left:107.226667pt;}
.xd{left:108.566655pt;}
.x18{left:109.626667pt;}
.x1b{left:111.493333pt;}
.xf{left:118.166667pt;}
.xc{left:129.633322pt;}
.xe{left:131.499988pt;}
.x13{left:136.573333pt;}
.x30{left:144.826655pt;}
.x1e{left:179.800000pt;}
.x1d{left:193.133322pt;}
.x28{left:200.599988pt;}
.x12{left:219.533322pt;}
.x7{left:229.933322pt;}
.x29{left:232.066667pt;}
.x6{left:239.799988pt;}
.x8{left:250.733322pt;}
.x2{left:296.906655pt;}
.x11{left:312.366667pt;}
.x2b{left:327.306667pt;}
.xb{left:333.173322pt;}
.x3{left:396.933322pt;}
.x15{left:400.400000pt;}
.x20{left:412.400000pt;}
}




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