
    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_3b2ce3c4e981eeaca1b03f3d.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_d38917e8e05bf6bd6f883b75.woff')format("woff");}.ff2{font-family:ff2;line-height:0.691895;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_a2816982d4812d4096d9987b.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f393189ef1985eb98df3dc5b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ae88f06895ad6cd4ac8a3015.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_508108115b2a98fb3eebca2c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;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_02eb9273d3aa33be84d9b41e.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_6cbd8e9436a7097b9dc030af.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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:-76.320000px;}
.v2{vertical-align:-74.880000px;}
.v4{vertical-align:-70.560000px;}
.v1{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls1d{letter-spacing:-1.440000px;}
.ls10{letter-spacing:-1.152000px;}
.ls1c{letter-spacing:-0.972000px;}
.lsf{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.720000px;}
.ls15{letter-spacing:-0.612000px;}
.ls1b{letter-spacing:-0.466800px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.020160px;}
.ls3{letter-spacing:0.030240px;}
.ls4{letter-spacing:0.045120px;}
.ls6{letter-spacing:0.118080px;}
.lse{letter-spacing:0.178560px;}
.lsd{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.311040px;}
.ls2{letter-spacing:0.360000px;}
.ls1{letter-spacing:0.424800px;}
.ls19{letter-spacing:0.486600px;}
.ls5{letter-spacing:0.596160px;}
.ls14{letter-spacing:0.612000px;}
.ls8{letter-spacing:0.630720px;}
.lsb{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.809280px;}
.ls16{letter-spacing:1.797120px;}
.lsc{letter-spacing:7.344000px;}
.ls7{letter-spacing:21.433440px;}
.ls13{letter-spacing:49.265280px;}
.ls11{letter-spacing:386.916000px;}
.ls18{letter-spacing:669.156000px;}
.ls1a{letter-spacing:705.156000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-66.240000px;}
.ws0{word-spacing:-29.880000px;}
.ws1{word-spacing:-24.120000px;}
.ws4{word-spacing:-20.880000px;}
.ws8{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.172000px;}
.ws2{word-spacing:-16.560000px;}
.wsb{word-spacing:-15.948000px;}
.ws3{word-spacing:-15.840000px;}
.wsc{word-spacing:-15.606600px;}
.wsf{word-spacing:-15.140160px;}
.ws7{word-spacing:-15.120000px;}
.wsd{word-spacing:-14.653200px;}
.wse{word-spacing:-14.400000px;}
.ws9{word-spacing:-13.680000px;}
.ws6{word-spacing:0.000000px;}
._8{margin-left:-3.628800px;}
._0{margin-left:-1.935360px;}
._1{width:1.391040px;}
._3{width:2.972160px;}
._4{width:4.344960px;}
._2{width:5.436960px;}
._9{width:6.477600px;}
._5{width:7.862400px;}
._6{width:9.192960px;}
._10{width:10.203840px;}
._b{width:11.981760px;}
._7{width:12.999840px;}
._a{width:14.034720px;}
._13{width:15.249600px;}
._2e{width:17.236800px;}
._11{width:18.561600px;}
._12{width:20.321280px;}
._14{width:21.476160px;}
._f{width:23.021280px;}
._e{width:24.120480px;}
._d{width:25.149600px;}
._c{width:26.277600px;}
._20{width:27.322560px;}
._1a{width:28.537920px;}
._18{width:29.851200px;}
._19{width:31.417920px;}
._1d{width:32.518080px;}
._1e{width:34.553280px;}
._1c{width:35.666880px;}
._1b{width:36.843840px;}
._17{width:38.815680px;}
._15{width:39.839040px;}
._16{width:41.342400px;}
._2b{width:43.364160px;}
._2a{width:44.755200px;}
._2d{width:49.815840px;}
._28{width:50.891040px;}
._21{width:51.894720px;}
._22{width:53.173440px;}
._27{width:56.548800px;}
._26{width:59.149440px;}
._23{width:74.548800px;}
._1f{width:93.098880px;}
._2c{width:106.686720px;}
._29{width:134.991360px;}
._25{width:825.053280px;}
._24{width:1087.704000px;}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:54.720000px;}
.fsa{font-size:57.600000px;}
.fs0{font-size:60.480000px;}
.fs7{font-size:63.360000px;}
.fs4{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs6{font-size:83.520000px;}
.fs3{font-size:96.480000px;}
.fs1{font-size:108.000000px;}
.fs2{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.yc1{bottom:2.880000px;}
.yc5{bottom:3.240000px;}
.yd8{bottom:3.270000px;}
.ydf{bottom:3.600000px;}
.ydb{bottom:10.800000px;}
.yd5{bottom:10.830000px;}
.yc3{bottom:11.160000px;}
.y184{bottom:11.880000px;}
.y180{bottom:12.240000px;}
.yd0{bottom:18.390000px;}
.yc0{bottom:18.405000px;}
.yc4{bottom:18.720000px;}
.yd7{bottom:18.750000px;}
.yde{bottom:19.080000px;}
.y185{bottom:20.520000px;}
.y181{bottom:20.880000px;}
.yda{bottom:26.280000px;}
.yd2{bottom:26.640000px;}
.yd4{bottom:26.670000px;}
.y187{bottom:29.520000px;}
.yc9{bottom:34.200000px;}
.yd6{bottom:34.230000px;}
.ydd{bottom:34.560000px;}
.y183{bottom:38.160000px;}
.y2{bottom:118.836000px;}
.y12a{bottom:145.512000px;}
.yea{bottom:145.872000px;}
.y67{bottom:149.832000px;}
.ybc{bottom:154.515000px;}
.y18a{bottom:157.035000px;}
.y33{bottom:162.795000px;}
.y129{bottom:164.595000px;}
.ye9{bottom:164.955000px;}
.y95{bottom:167.115000px;}
.y66{bottom:168.555000px;}
.ybb{bottom:171.795000px;}
.y152{bottom:175.755000px;}
.y1aa{bottom:176.475000px;}
.y32{bottom:180.435000px;}
.y189{bottom:180.795000px;}
.y128{bottom:183.315000px;}
.ye8{bottom:184.035000px;}
.y94{bottom:185.835000px;}
.y65{bottom:187.635000px;}
.yba{bottom:189.435000px;}
.y1a9{bottom:193.395000px;}
.y151{bottom:194.475000px;}
.y31{bottom:199.155000px;}
.y127{bottom:202.395000px;}
.ye7{bottom:202.755000px;}
.y93{bottom:204.915000px;}
.y64{bottom:206.715000px;}
.yb9{bottom:208.515000px;}
.y1a8{bottom:210.675000px;}
.y150{bottom:213.555000px;}
.y30{bottom:218.235000px;}
.y126{bottom:221.475000px;}
.ye6{bottom:221.835000px;}
.y92{bottom:223.995000px;}
.y63{bottom:225.795000px;}
.yb8{bottom:227.235000px;}
.y1a7{bottom:227.955000px;}
.y188{bottom:231.195000px;}
.y14f{bottom:232.635000px;}
.y2f{bottom:237.315000px;}
.y125{bottom:240.195000px;}
.ye5{bottom:240.915000px;}
.y91{bottom:243.075000px;}
.y62{bottom:244.515000px;}
.y1a6{bottom:245.235000px;}
.yb7{bottom:246.315000px;}
.y14e{bottom:251.355000px;}
.y2e{bottom:255.675000px;}
.y124{bottom:259.275000px;}
.ye4{bottom:259.995000px;}
.y90{bottom:261.795000px;}
.y1a5{bottom:262.515000px;}
.y61{bottom:263.595000px;}
.yb6{bottom:265.425000px;}
.y14d{bottom:270.465000px;}
.y2d{bottom:273.345000px;}
.y123{bottom:278.385000px;}
.ye3{bottom:278.745000px;}
.y1a4{bottom:279.825000px;}
.y8f{bottom:280.545000px;}
.y186{bottom:281.985000px;}
.y60{bottom:282.705000px;}
.yb5{bottom:284.145000px;}
.y14c{bottom:289.545000px;}
.y2c{bottom:292.425000px;}
.y122{bottom:297.105000px;}
.ye2{bottom:297.825000px;}
.y8e{bottom:298.185000px;}
.y5f{bottom:301.425000px;}
.yb4{bottom:303.225000px;}
.y14b{bottom:308.625000px;}
.y2b{bottom:311.505000px;}
.y1a3{bottom:314.745000px;}
.y121{bottom:316.185000px;}
.ye1{bottom:316.905000px;}
.y8d{bottom:317.265000px;}
.y5e{bottom:320.505000px;}
.yb3{bottom:322.305000px;}
.y14a{bottom:327.345000px;}
.y2a{bottom:330.225000px;}
.y176{bottom:330.945000px;}
.y120{bottom:335.265000px;}
.y8c{bottom:335.985000px;}
.y5d{bottom:339.585000px;}
.ye0{bottom:340.305000px;}
.yb2{bottom:341.385000px;}
.y149{bottom:346.425000px;}
.y29{bottom:349.305000px;}
.y175{bottom:350.025000px;}
.y11f{bottom:354.345000px;}
.y8b{bottom:355.065000px;}
.y5c{bottom:358.305000px;}
.yb1{bottom:360.105000px;}
.y148{bottom:365.505000px;}
.y28{bottom:368.385000px;}
.y174{bottom:368.745000px;}
.y11e{bottom:373.065000px;}
.y1a2{bottom:373.425000px;}
.y8a{bottom:374.145000px;}
.y5b{bottom:375.945000px;}
.yb0{bottom:379.185000px;}
.y147{bottom:384.585000px;}
.y27{bottom:387.105000px;}
.y173{bottom:387.825000px;}
.y107{bottom:389.625000px;}
.y11d{bottom:392.145000px;}
.y89{bottom:392.865000px;}
.y5a{bottom:396.105000px;}
.yaf{bottom:398.310000px;}
.y182{bottom:400.470000px;}
.ydc{bottom:402.990000px;}
.y146{bottom:405.150000px;}
.y26{bottom:405.870000px;}
.y172{bottom:406.950000px;}
.y106{bottom:408.390000px;}
.y11c{bottom:411.270000px;}
.y88{bottom:411.990000px;}
.y59{bottom:413.790000px;}
.yae{bottom:417.030000px;}
.y25{bottom:423.510000px;}
.y145{bottom:424.230000px;}
.y171{bottom:425.670000px;}
.y105{bottom:427.470000px;}
.y11b{bottom:429.990000px;}
.y1a1{bottom:430.350000px;}
.y87{bottom:431.070000px;}
.y58{bottom:432.870000px;}
.yad{bottom:436.110000px;}
.y24{bottom:442.590000px;}
.y144{bottom:442.950000px;}
.y170{bottom:444.750000px;}
.y104{bottom:446.550000px;}
.y11a{bottom:449.070000px;}
.y1a0{bottom:449.430000px;}
.y86{bottom:449.790000px;}
.y57{bottom:451.590000px;}
.yac{bottom:454.830000px;}
.y23{bottom:461.670000px;}
.y143{bottom:462.030000px;}
.y16f{bottom:463.830000px;}
.y103{bottom:465.630000px;}
.yd9{bottom:465.990000px;}
.y119{bottom:468.150000px;}
.y85{bottom:468.510000px;}
.y56{bottom:470.670000px;}
.yab{bottom:472.470000px;}
.y22{bottom:480.390000px;}
.y142{bottom:481.110000px;}
.y16e{bottom:482.550000px;}
.y102{bottom:484.350000px;}
.y84{bottom:486.150000px;}
.y118{bottom:486.870000px;}
.y19f{bottom:487.230000px;}
.y55{bottom:489.750000px;}
.yaa{bottom:492.630000px;}
.y21{bottom:499.470000px;}
.y141{bottom:499.830000px;}
.y16d{bottom:501.630000px;}
.y101{bottom:503.430000px;}
.y83{bottom:505.230000px;}
.y117{bottom:505.950000px;}
.y19e{bottom:506.310000px;}
.y54{bottom:508.470000px;}
.ya9{bottom:510.270000px;}
.y20{bottom:518.550000px;}
.y140{bottom:518.910000px;}
.y16c{bottom:520.710000px;}
.y100{bottom:522.510000px;}
.y82{bottom:523.950000px;}
.y116{bottom:525.030000px;}
.y53{bottom:527.550000px;}
.yd3{bottom:528.630000px;}
.ya8{bottom:529.350000px;}
.y1f{bottom:537.300000px;}
.y13f{bottom:538.020000px;}
.yff{bottom:541.260000px;}
.y81{bottom:543.060000px;}
.y115{bottom:544.140000px;}
.y52{bottom:546.660000px;}
.ya7{bottom:548.460000px;}
.y1e{bottom:556.380000px;}
.y13e{bottom:557.100000px;}
.y16b{bottom:558.540000px;}
.yfe{bottom:560.340000px;}
.y80{bottom:562.140000px;}
.y114{bottom:562.860000px;}
.y19d{bottom:563.220000px;}
.y51{bottom:565.380000px;}
.ya6{bottom:567.180000px;}
.y1d{bottom:575.460000px;}
.y13d{bottom:575.820000px;}
.y16a{bottom:577.620000px;}
.yfd{bottom:579.420000px;}
.y7f{bottom:581.220000px;}
.y113{bottom:581.940000px;}
.y17f{bottom:583.380000px;}
.y50{bottom:584.460000px;}
.ya5{bottom:586.260000px;}
.yd1{bottom:591.300000px;}
.y1c{bottom:593.820000px;}
.y13c{bottom:594.900000px;}
.y1c6{bottom:596.340000px;}
.y169{bottom:596.700000px;}
.yfc{bottom:598.500000px;}
.y7e{bottom:599.940000px;}
.y112{bottom:601.020000px;}
.y17e{bottom:602.460000px;}
.y4f{bottom:603.540000px;}
.ya4{bottom:605.340000px;}
.y1b{bottom:612.180000px;}
.y1c5{bottom:613.620000px;}
.y13b{bottom:613.980000px;}
.y168{bottom:615.420000px;}
.yfb{bottom:617.220000px;}
.y7d{bottom:619.020000px;}
.y111{bottom:619.740000px;}
.y19c{bottom:620.820000px;}
.y17d{bottom:621.180000px;}
.y4e{bottom:622.620000px;}
.ya3{bottom:623.700000px;}
.y1c4{bottom:630.900000px;}
.y13a{bottom:632.700000px;}
.y167{bottom:634.500000px;}
.y1a{bottom:635.220000px;}
.yfa{bottom:636.300000px;}
.y7c{bottom:638.100000px;}
.y110{bottom:638.820000px;}
.y17c{bottom:640.260000px;}
.y4d{bottom:640.980000px;}
.ya2{bottom:641.340000px;}
.y19b{bottom:644.220000px;}
.y1c3{bottom:647.820000px;}
.y139{bottom:651.780000px;}
.y19{bottom:652.500000px;}
.y166{bottom:653.580000px;}
.ycf{bottom:653.940000px;}
.yf9{bottom:655.380000px;}
.y7b{bottom:656.820000px;}
.y10f{bottom:657.900000px;}
.y4c{bottom:658.620000px;}
.y17b{bottom:659.340000px;}
.ya1{bottom:660.420000px;}
.y19a{bottom:663.300000px;}
.y1c2{bottom:665.100000px;}
.y18{bottom:669.810000px;}
.y138{bottom:670.890000px;}
.y165{bottom:672.690000px;}
.yf8{bottom:674.130000px;}
.y7a{bottom:675.930000px;}
.y10e{bottom:677.010000px;}
.y4b{bottom:677.730000px;}
.y17a{bottom:678.090000px;}
.ya0{bottom:679.530000px;}
.y199{bottom:682.050000px;}
.y1c1{bottom:682.410000px;}
.y17{bottom:687.090000px;}
.y137{bottom:689.610000px;}
.y164{bottom:691.410000px;}
.yf7{bottom:693.210000px;}
.y79{bottom:695.010000px;}
.y10d{bottom:695.730000px;}
.y4a{bottom:696.810000px;}
.yce{bottom:697.170000px;}
.y9f{bottom:698.250000px;}
.y1c0{bottom:699.690000px;}
.y198{bottom:701.130000px;}
.y16{bottom:705.090000px;}
.y136{bottom:708.690000px;}
.y163{bottom:710.490000px;}
.yf6{bottom:712.290000px;}
.y78{bottom:714.090000px;}
.y10c{bottom:714.810000px;}
.y49{bottom:715.530000px;}
.y9e{bottom:716.970000px;}
.y197{bottom:720.210000px;}
.y15{bottom:726.690000px;}
.y135{bottom:727.770000px;}
.y162{bottom:729.570000px;}
.yf5{bottom:731.010000px;}
.ycd{bottom:731.730000px;}
.y77{bottom:732.810000px;}
.y10b{bottom:733.890000px;}
.y1bf{bottom:734.250000px;}
.y48{bottom:734.610000px;}
.y196{bottom:738.930000px;}
.y179{bottom:740.370000px;}
.y14{bottom:743.970000px;}
.y134{bottom:746.850000px;}
.y161{bottom:748.290000px;}
.yf4{bottom:750.090000px;}
.y1be{bottom:751.530000px;}
.y76{bottom:751.890000px;}
.y47{bottom:753.690000px;}
.ycc{bottom:754.050000px;}
.y195{bottom:758.010000px;}
.y178{bottom:759.090000px;}
.y13{bottom:761.250000px;}
.y133{bottom:765.570000px;}
.y160{bottom:767.370000px;}
.y1bd{bottom:768.810000px;}
.yf3{bottom:769.170000px;}
.y75{bottom:770.970000px;}
.y10a{bottom:771.330000px;}
.y46{bottom:772.410000px;}
.y177{bottom:776.370000px;}
.y194{bottom:777.090000px;}
.y12{bottom:778.530000px;}
.y132{bottom:784.650000px;}
.ycb{bottom:785.730000px;}
.y1bc{bottom:786.090000px;}
.y15f{bottom:786.450000px;}
.yf2{bottom:788.250000px;}
.y109{bottom:788.610000px;}
.y74{bottom:789.690000px;}
.y45{bottom:791.490000px;}
.y11{bottom:795.810000px;}
.y193{bottom:796.170000px;}
.y108{bottom:802.335000px;}
.y1bb{bottom:803.415000px;}
.y131{bottom:803.775000px;}
.y15e{bottom:805.215000px;}
.yf1{bottom:807.015000px;}
.y73{bottom:808.455000px;}
.y44{bottom:810.615000px;}
.y10{bottom:813.135000px;}
.y192{bottom:814.935000px;}
.yca{bottom:817.455000px;}
.y1ba{bottom:820.695000px;}
.y130{bottom:822.495000px;}
.y15d{bottom:824.655000px;}
.yf0{bottom:826.095000px;}
.y72{bottom:826.815000px;}
.y43{bottom:829.695000px;}
.yf{bottom:830.415000px;}
.y191{bottom:834.015000px;}
.y1b9{bottom:837.615000px;}
.y12f{bottom:841.575000px;}
.yef{bottom:845.175000px;}
.ye{bottom:847.695000px;}
.y9d{bottom:848.055000px;}
.y42{bottom:848.415000px;}
.yc8{bottom:849.135000px;}
.y71{bottom:849.855000px;}
.y190{bottom:853.095000px;}
.y1b8{bottom:854.895000px;}
.y12e{bottom:860.655000px;}
.yee{bottom:863.895000px;}
.yd{bottom:864.975000px;}
.y9c{bottom:865.695000px;}
.y41{bottom:867.495000px;}
.y1b7{bottom:872.175000px;}
.y18f{bottom:876.495000px;}
.y12d{bottom:879.375000px;}
.yc{bottom:882.255000px;}
.yed{bottom:882.975000px;}
.y9b{bottom:884.775000px;}
.y40{bottom:886.575000px;}
.y1b6{bottom:889.455000px;}
.y12c{bottom:898.455000px;}
.yb{bottom:899.175000px;}
.yec{bottom:902.055000px;}
.y9a{bottom:903.855000px;}
.y3f{bottom:904.935000px;}
.y70{bottom:905.295000px;}
.y1b5{bottom:906.735000px;}
.y18e{bottom:909.975000px;}
.yc7{bottom:911.775000px;}
.ya{bottom:917.535000px;}
.y15c{bottom:920.775000px;}
.yeb{bottom:921.135000px;}
.y99{bottom:922.575000px;}
.y3e{bottom:922.935000px;}
.y1b4{bottom:924.015000px;}
.y6f{bottom:924.375000px;}
.y12b{bottom:937.365000px;}
.y15b{bottom:939.885000px;}
.y9{bottom:940.605000px;}
.y1b3{bottom:941.325000px;}
.y98{bottom:941.685000px;}
.y3d{bottom:943.125000px;}
.y6e{bottom:943.485000px;}
.y1b2{bottom:958.605000px;}
.yc6{bottom:958.965000px;}
.y8{bottom:959.325000px;}
.y3c{bottom:960.765000px;}
.y6d{bottom:962.205000px;}
.y1b1{bottom:975.885000px;}
.y18d{bottom:976.605000px;}
.y15a{bottom:978.045000px;}
.y3b{bottom:979.485000px;}
.y7{bottom:980.925000px;}
.y6c{bottom:981.285000px;}
.y1b0{bottom:993.165000px;}
.y159{bottom:996.765000px;}
.y3a{bottom:998.565000px;}
.y6b{bottom:1000.365000px;}
.y6{bottom:1003.605000px;}
.yc2{bottom:1006.125000px;}
.y18c{bottom:1010.085000px;}
.y1af{bottom:1010.445000px;}
.y158{bottom:1015.845000px;}
.y39{bottom:1017.645000px;}
.y6a{bottom:1019.445000px;}
.y1ae{bottom:1027.725000px;}
.y157{bottom:1034.925000px;}
.y97{bottom:1036.005000px;}
.y38{bottom:1036.365000px;}
.y5{bottom:1037.445000px;}
.y69{bottom:1038.165000px;}
.y18b{bottom:1039.605000px;}
.y1ad{bottom:1044.645000px;}
.ybf{bottom:1053.285000px;}
.y156{bottom:1053.645000px;}
.y96{bottom:1054.005000px;}
.y37{bottom:1055.445000px;}
.y68{bottom:1056.885000px;}
.y1ac{bottom:1061.925000px;}
.y4{bottom:1071.330000px;}
.y155{bottom:1072.770000px;}
.y36{bottom:1074.570000px;}
.y1ab{bottom:1079.250000px;}
.y154{bottom:1091.850000px;}
.y35{bottom:1093.650000px;}
.ybe{bottom:1096.530000px;}
.y3{bottom:1104.450000px;}
.y153{bottom:1110.930000px;}
.y34{bottom:1112.370000px;}
.ybd{bottom:1113.810000px;}
.y1{bottom:1140.810000px;}
.h12{height:15.480000px;}
.h13{height:15.516000px;}
.h1c{height:17.280000px;}
.h16{height:17.316000px;}
.hf{height:30.960000px;}
.hd{height:30.996000px;}
.h18{height:34.200000px;}
.h1b{height:34.560000px;}
.h1a{height:34.596000px;}
.h11{height:46.440000px;}
.h14{height:46.476000px;}
.h15{height:46.800000px;}
.h19{height:51.840000px;}
.h10{height:53.704687px;}
.he{height:55.147500px;}
.h8{height:59.328281px;}
.h2{height:59.357813px;}
.h17{height:60.952500px;}
.h5{height:65.010937px;}
.hb{height:68.084282px;}
.h1d{height:72.562500px;}
.h3{height:73.142578px;}
.hc{height:74.953125px;}
.h9{height:76.279219px;}
.h6{height:76.317188px;}
.h4{height:80.944453px;}
.h7{height:81.929531px;}
.ha{height:86.945625px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.wf{width:78.516000px;}
.w11{width:86.436000px;}
.w12{width:86.796000px;}
.w10{width:93.636000px;}
.w5{width:99.756000px;}
.w7{width:105.156000px;}
.wa{width:106.992000px;}
.w6{width:107.352000px;}
.w3{width:107.676000px;}
.wb{width:118.476000px;}
.we{width:175.755000px;}
.w9{width:181.875000px;}
.w8{width:222.915000px;}
.wd{width:224.745000px;}
.wc{width:294.945000px;}
.w4{width:308.265000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xb{left:6.840000px;}
.x2{left:123.155987px;}
.x1a{left:129.996000px;}
.xa{left:133.632000px;}
.x1{left:137.591987px;}
.x17{left:144.072000px;}
.x4{left:145.151987px;}
.x12{left:150.194987px;}
.x20{left:157.034987px;}
.x5{left:158.834987px;}
.x7{left:173.594987px;}
.x13{left:177.194987px;}
.x16{left:239.504987px;}
.xc{left:242.385000px;}
.xf{left:243.465000px;}
.x18{left:263.625000px;}
.x15{left:267.584987px;}
.x9{left:289.544987px;}
.x1b{left:306.825000px;}
.x6{left:350.789987px;}
.x1c{left:386.430000px;}
.x3{left:446.579987px;}
.x10{left:467.460000px;}
.x1d{left:481.140000px;}
.xd{left:551.730000px;}
.x19{left:559.650000px;}
.x1e{left:568.650000px;}
.x11{left:650.415000px;}
.xe{left:652.575000px;}
.x1f{left:676.725000px;}
.x8{left:755.204987px;}
.x14{left:760.649987px;}
@media print{
.v3{vertical-align:-67.840000pt;}
.v2{vertical-align:-66.560000pt;}
.v4{vertical-align:-62.720000pt;}
.v1{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls1d{letter-spacing:-1.280000pt;}
.ls10{letter-spacing:-1.024000pt;}
.ls1c{letter-spacing:-0.864000pt;}
.lsf{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.640000pt;}
.ls15{letter-spacing:-0.544000pt;}
.ls1b{letter-spacing:-0.414933pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.017920pt;}
.ls3{letter-spacing:0.026880pt;}
.ls4{letter-spacing:0.040107pt;}
.ls6{letter-spacing:0.104960pt;}
.lse{letter-spacing:0.158720pt;}
.lsd{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.276480pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1{letter-spacing:0.377600pt;}
.ls19{letter-spacing:0.432533pt;}
.ls5{letter-spacing:0.529920pt;}
.ls14{letter-spacing:0.544000pt;}
.ls8{letter-spacing:0.560640pt;}
.lsb{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.719360pt;}
.ls16{letter-spacing:1.597440pt;}
.lsc{letter-spacing:6.528000pt;}
.ls7{letter-spacing:19.051947pt;}
.ls13{letter-spacing:43.791360pt;}
.ls11{letter-spacing:343.925333pt;}
.ls18{letter-spacing:594.805333pt;}
.ls1a{letter-spacing:626.805333pt;}
.ws5{word-spacing:-58.880000pt;}
.ws0{word-spacing:-26.560000pt;}
.ws1{word-spacing:-21.440000pt;}
.ws4{word-spacing:-18.560000pt;}
.ws8{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.264000pt;}
.ws2{word-spacing:-14.720000pt;}
.wsb{word-spacing:-14.176000pt;}
.ws3{word-spacing:-14.080000pt;}
.wsc{word-spacing:-13.872533pt;}
.wsf{word-spacing:-13.457920pt;}
.ws7{word-spacing:-13.440000pt;}
.wsd{word-spacing:-13.025067pt;}
.wse{word-spacing:-12.800000pt;}
.ws9{word-spacing:-12.160000pt;}
.ws6{word-spacing:0.000000pt;}
._8{margin-left:-3.225600pt;}
._0{margin-left:-1.720320pt;}
._1{width:1.236480pt;}
._3{width:2.641920pt;}
._4{width:3.862187pt;}
._2{width:4.832853pt;}
._9{width:5.757867pt;}
._5{width:6.988800pt;}
._6{width:8.171520pt;}
._10{width:9.070080pt;}
._b{width:10.650453pt;}
._7{width:11.555413pt;}
._a{width:12.475307pt;}
._13{width:13.555200pt;}
._2e{width:15.321600pt;}
._11{width:16.499200pt;}
._12{width:18.063360pt;}
._14{width:19.089920pt;}
._f{width:20.463360pt;}
._e{width:21.440427pt;}
._d{width:22.355200pt;}
._c{width:23.357867pt;}
._20{width:24.286720pt;}
._1a{width:25.367040pt;}
._18{width:26.534400pt;}
._19{width:27.927040pt;}
._1d{width:28.904960pt;}
._1e{width:30.714027pt;}
._1c{width:31.703893pt;}
._1b{width:32.750080pt;}
._17{width:34.502827pt;}
._15{width:35.412480pt;}
._16{width:36.748800pt;}
._2b{width:38.545920pt;}
._2a{width:39.782400pt;}
._2d{width:44.280747pt;}
._28{width:45.236480pt;}
._21{width:46.128640pt;}
._22{width:47.265280pt;}
._27{width:50.265600pt;}
._26{width:52.577280pt;}
._23{width:66.265600pt;}
._1f{width:82.754560pt;}
._2c{width:94.832640pt;}
._29{width:119.992320pt;}
._25{width:733.380693pt;}
._24{width:966.848000pt;}
.fs9{font-size:48.640000pt;}
.fsa{font-size:51.200000pt;}
.fs0{font-size:53.760000pt;}
.fs7{font-size:56.320000pt;}
.fs4{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs6{font-size:74.240000pt;}
.fs3{font-size:85.760000pt;}
.fs1{font-size:96.000000pt;}
.fs2{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.yc1{bottom:2.560000pt;}
.yc5{bottom:2.880000pt;}
.yd8{bottom:2.906667pt;}
.ydf{bottom:3.200000pt;}
.ydb{bottom:9.600000pt;}
.yd5{bottom:9.626667pt;}
.yc3{bottom:9.920000pt;}
.y184{bottom:10.560000pt;}
.y180{bottom:10.880000pt;}
.yd0{bottom:16.346667pt;}
.yc0{bottom:16.360000pt;}
.yc4{bottom:16.640000pt;}
.yd7{bottom:16.666667pt;}
.yde{bottom:16.960000pt;}
.y185{bottom:18.240000pt;}
.y181{bottom:18.560000pt;}
.yda{bottom:23.360000pt;}
.yd2{bottom:23.680000pt;}
.yd4{bottom:23.706667pt;}
.y187{bottom:26.240000pt;}
.yc9{bottom:30.400000pt;}
.yd6{bottom:30.426667pt;}
.ydd{bottom:30.720000pt;}
.y183{bottom:33.920000pt;}
.y2{bottom:105.632000pt;}
.y12a{bottom:129.344000pt;}
.yea{bottom:129.664000pt;}
.y67{bottom:133.184000pt;}
.ybc{bottom:137.346667pt;}
.y18a{bottom:139.586667pt;}
.y33{bottom:144.706667pt;}
.y129{bottom:146.306667pt;}
.ye9{bottom:146.626667pt;}
.y95{bottom:148.546667pt;}
.y66{bottom:149.826667pt;}
.ybb{bottom:152.706667pt;}
.y152{bottom:156.226667pt;}
.y1aa{bottom:156.866667pt;}
.y32{bottom:160.386667pt;}
.y189{bottom:160.706667pt;}
.y128{bottom:162.946667pt;}
.ye8{bottom:163.586667pt;}
.y94{bottom:165.186667pt;}
.y65{bottom:166.786667pt;}
.yba{bottom:168.386667pt;}
.y1a9{bottom:171.906667pt;}
.y151{bottom:172.866667pt;}
.y31{bottom:177.026667pt;}
.y127{bottom:179.906667pt;}
.ye7{bottom:180.226667pt;}
.y93{bottom:182.146667pt;}
.y64{bottom:183.746667pt;}
.yb9{bottom:185.346667pt;}
.y1a8{bottom:187.266667pt;}
.y150{bottom:189.826667pt;}
.y30{bottom:193.986667pt;}
.y126{bottom:196.866667pt;}
.ye6{bottom:197.186667pt;}
.y92{bottom:199.106667pt;}
.y63{bottom:200.706667pt;}
.yb8{bottom:201.986667pt;}
.y1a7{bottom:202.626667pt;}
.y188{bottom:205.506667pt;}
.y14f{bottom:206.786667pt;}
.y2f{bottom:210.946667pt;}
.y125{bottom:213.506667pt;}
.ye5{bottom:214.146667pt;}
.y91{bottom:216.066667pt;}
.y62{bottom:217.346667pt;}
.y1a6{bottom:217.986667pt;}
.yb7{bottom:218.946667pt;}
.y14e{bottom:223.426667pt;}
.y2e{bottom:227.266667pt;}
.y124{bottom:230.466667pt;}
.ye4{bottom:231.106667pt;}
.y90{bottom:232.706667pt;}
.y1a5{bottom:233.346667pt;}
.y61{bottom:234.306667pt;}
.yb6{bottom:235.933333pt;}
.y14d{bottom:240.413333pt;}
.y2d{bottom:242.973333pt;}
.y123{bottom:247.453333pt;}
.ye3{bottom:247.773333pt;}
.y1a4{bottom:248.733333pt;}
.y8f{bottom:249.373333pt;}
.y186{bottom:250.653333pt;}
.y60{bottom:251.293333pt;}
.yb5{bottom:252.573333pt;}
.y14c{bottom:257.373333pt;}
.y2c{bottom:259.933333pt;}
.y122{bottom:264.093333pt;}
.ye2{bottom:264.733333pt;}
.y8e{bottom:265.053333pt;}
.y5f{bottom:267.933333pt;}
.yb4{bottom:269.533333pt;}
.y14b{bottom:274.333333pt;}
.y2b{bottom:276.893333pt;}
.y1a3{bottom:279.773333pt;}
.y121{bottom:281.053333pt;}
.ye1{bottom:281.693333pt;}
.y8d{bottom:282.013333pt;}
.y5e{bottom:284.893333pt;}
.yb3{bottom:286.493333pt;}
.y14a{bottom:290.973333pt;}
.y2a{bottom:293.533333pt;}
.y176{bottom:294.173333pt;}
.y120{bottom:298.013333pt;}
.y8c{bottom:298.653333pt;}
.y5d{bottom:301.853333pt;}
.ye0{bottom:302.493333pt;}
.yb2{bottom:303.453333pt;}
.y149{bottom:307.933333pt;}
.y29{bottom:310.493333pt;}
.y175{bottom:311.133333pt;}
.y11f{bottom:314.973333pt;}
.y8b{bottom:315.613333pt;}
.y5c{bottom:318.493333pt;}
.yb1{bottom:320.093333pt;}
.y148{bottom:324.893333pt;}
.y28{bottom:327.453333pt;}
.y174{bottom:327.773333pt;}
.y11e{bottom:331.613333pt;}
.y1a2{bottom:331.933333pt;}
.y8a{bottom:332.573333pt;}
.y5b{bottom:334.173333pt;}
.yb0{bottom:337.053333pt;}
.y147{bottom:341.853333pt;}
.y27{bottom:344.093333pt;}
.y173{bottom:344.733333pt;}
.y107{bottom:346.333333pt;}
.y11d{bottom:348.573333pt;}
.y89{bottom:349.213333pt;}
.y5a{bottom:352.093333pt;}
.yaf{bottom:354.053333pt;}
.y182{bottom:355.973333pt;}
.ydc{bottom:358.213333pt;}
.y146{bottom:360.133333pt;}
.y26{bottom:360.773333pt;}
.y172{bottom:361.733333pt;}
.y106{bottom:363.013333pt;}
.y11c{bottom:365.573333pt;}
.y88{bottom:366.213333pt;}
.y59{bottom:367.813333pt;}
.yae{bottom:370.693333pt;}
.y25{bottom:376.453333pt;}
.y145{bottom:377.093333pt;}
.y171{bottom:378.373333pt;}
.y105{bottom:379.973333pt;}
.y11b{bottom:382.213333pt;}
.y1a1{bottom:382.533333pt;}
.y87{bottom:383.173333pt;}
.y58{bottom:384.773333pt;}
.yad{bottom:387.653333pt;}
.y24{bottom:393.413333pt;}
.y144{bottom:393.733333pt;}
.y170{bottom:395.333333pt;}
.y104{bottom:396.933333pt;}
.y11a{bottom:399.173333pt;}
.y1a0{bottom:399.493333pt;}
.y86{bottom:399.813333pt;}
.y57{bottom:401.413333pt;}
.yac{bottom:404.293333pt;}
.y23{bottom:410.373333pt;}
.y143{bottom:410.693333pt;}
.y16f{bottom:412.293333pt;}
.y103{bottom:413.893333pt;}
.yd9{bottom:414.213333pt;}
.y119{bottom:416.133333pt;}
.y85{bottom:416.453333pt;}
.y56{bottom:418.373333pt;}
.yab{bottom:419.973333pt;}
.y22{bottom:427.013333pt;}
.y142{bottom:427.653333pt;}
.y16e{bottom:428.933333pt;}
.y102{bottom:430.533333pt;}
.y84{bottom:432.133333pt;}
.y118{bottom:432.773333pt;}
.y19f{bottom:433.093333pt;}
.y55{bottom:435.333333pt;}
.yaa{bottom:437.893333pt;}
.y21{bottom:443.973333pt;}
.y141{bottom:444.293333pt;}
.y16d{bottom:445.893333pt;}
.y101{bottom:447.493333pt;}
.y83{bottom:449.093333pt;}
.y117{bottom:449.733333pt;}
.y19e{bottom:450.053333pt;}
.y54{bottom:451.973333pt;}
.ya9{bottom:453.573333pt;}
.y20{bottom:460.933333pt;}
.y140{bottom:461.253333pt;}
.y16c{bottom:462.853333pt;}
.y100{bottom:464.453333pt;}
.y82{bottom:465.733333pt;}
.y116{bottom:466.693333pt;}
.y53{bottom:468.933333pt;}
.yd3{bottom:469.893333pt;}
.ya8{bottom:470.533333pt;}
.y1f{bottom:477.600000pt;}
.y13f{bottom:478.240000pt;}
.yff{bottom:481.120000pt;}
.y81{bottom:482.720000pt;}
.y115{bottom:483.680000pt;}
.y52{bottom:485.920000pt;}
.ya7{bottom:487.520000pt;}
.y1e{bottom:494.560000pt;}
.y13e{bottom:495.200000pt;}
.y16b{bottom:496.480000pt;}
.yfe{bottom:498.080000pt;}
.y80{bottom:499.680000pt;}
.y114{bottom:500.320000pt;}
.y19d{bottom:500.640000pt;}
.y51{bottom:502.560000pt;}
.ya6{bottom:504.160000pt;}
.y1d{bottom:511.520000pt;}
.y13d{bottom:511.840000pt;}
.y16a{bottom:513.440000pt;}
.yfd{bottom:515.040000pt;}
.y7f{bottom:516.640000pt;}
.y113{bottom:517.280000pt;}
.y17f{bottom:518.560000pt;}
.y50{bottom:519.520000pt;}
.ya5{bottom:521.120000pt;}
.yd1{bottom:525.600000pt;}
.y1c{bottom:527.840000pt;}
.y13c{bottom:528.800000pt;}
.y1c6{bottom:530.080000pt;}
.y169{bottom:530.400000pt;}
.yfc{bottom:532.000000pt;}
.y7e{bottom:533.280000pt;}
.y112{bottom:534.240000pt;}
.y17e{bottom:535.520000pt;}
.y4f{bottom:536.480000pt;}
.ya4{bottom:538.080000pt;}
.y1b{bottom:544.160000pt;}
.y1c5{bottom:545.440000pt;}
.y13b{bottom:545.760000pt;}
.y168{bottom:547.040000pt;}
.yfb{bottom:548.640000pt;}
.y7d{bottom:550.240000pt;}
.y111{bottom:550.880000pt;}
.y19c{bottom:551.840000pt;}
.y17d{bottom:552.160000pt;}
.y4e{bottom:553.440000pt;}
.ya3{bottom:554.400000pt;}
.y1c4{bottom:560.800000pt;}
.y13a{bottom:562.400000pt;}
.y167{bottom:564.000000pt;}
.y1a{bottom:564.640000pt;}
.yfa{bottom:565.600000pt;}
.y7c{bottom:567.200000pt;}
.y110{bottom:567.840000pt;}
.y17c{bottom:569.120000pt;}
.y4d{bottom:569.760000pt;}
.ya2{bottom:570.080000pt;}
.y19b{bottom:572.640000pt;}
.y1c3{bottom:575.840000pt;}
.y139{bottom:579.360000pt;}
.y19{bottom:580.000000pt;}
.y166{bottom:580.960000pt;}
.ycf{bottom:581.280000pt;}
.yf9{bottom:582.560000pt;}
.y7b{bottom:583.840000pt;}
.y10f{bottom:584.800000pt;}
.y4c{bottom:585.440000pt;}
.y17b{bottom:586.080000pt;}
.ya1{bottom:587.040000pt;}
.y19a{bottom:589.600000pt;}
.y1c2{bottom:591.200000pt;}
.y18{bottom:595.386667pt;}
.y138{bottom:596.346667pt;}
.y165{bottom:597.946667pt;}
.yf8{bottom:599.226667pt;}
.y7a{bottom:600.826667pt;}
.y10e{bottom:601.786667pt;}
.y4b{bottom:602.426667pt;}
.y17a{bottom:602.746667pt;}
.ya0{bottom:604.026667pt;}
.y199{bottom:606.266667pt;}
.y1c1{bottom:606.586667pt;}
.y17{bottom:610.746667pt;}
.y137{bottom:612.986667pt;}
.y164{bottom:614.586667pt;}
.yf7{bottom:616.186667pt;}
.y79{bottom:617.786667pt;}
.y10d{bottom:618.426667pt;}
.y4a{bottom:619.386667pt;}
.yce{bottom:619.706667pt;}
.y9f{bottom:620.666667pt;}
.y1c0{bottom:621.946667pt;}
.y198{bottom:623.226667pt;}
.y16{bottom:626.746667pt;}
.y136{bottom:629.946667pt;}
.y163{bottom:631.546667pt;}
.yf6{bottom:633.146667pt;}
.y78{bottom:634.746667pt;}
.y10c{bottom:635.386667pt;}
.y49{bottom:636.026667pt;}
.y9e{bottom:637.306667pt;}
.y197{bottom:640.186667pt;}
.y15{bottom:645.946667pt;}
.y135{bottom:646.906667pt;}
.y162{bottom:648.506667pt;}
.yf5{bottom:649.786667pt;}
.ycd{bottom:650.426667pt;}
.y77{bottom:651.386667pt;}
.y10b{bottom:652.346667pt;}
.y1bf{bottom:652.666667pt;}
.y48{bottom:652.986667pt;}
.y196{bottom:656.826667pt;}
.y179{bottom:658.106667pt;}
.y14{bottom:661.306667pt;}
.y134{bottom:663.866667pt;}
.y161{bottom:665.146667pt;}
.yf4{bottom:666.746667pt;}
.y1be{bottom:668.026667pt;}
.y76{bottom:668.346667pt;}
.y47{bottom:669.946667pt;}
.ycc{bottom:670.266667pt;}
.y195{bottom:673.786667pt;}
.y178{bottom:674.746667pt;}
.y13{bottom:676.666667pt;}
.y133{bottom:680.506667pt;}
.y160{bottom:682.106667pt;}
.y1bd{bottom:683.386667pt;}
.yf3{bottom:683.706667pt;}
.y75{bottom:685.306667pt;}
.y10a{bottom:685.626667pt;}
.y46{bottom:686.586667pt;}
.y177{bottom:690.106667pt;}
.y194{bottom:690.746667pt;}
.y12{bottom:692.026667pt;}
.y132{bottom:697.466667pt;}
.ycb{bottom:698.426667pt;}
.y1bc{bottom:698.746667pt;}
.y15f{bottom:699.066667pt;}
.yf2{bottom:700.666667pt;}
.y109{bottom:700.986667pt;}
.y74{bottom:701.946667pt;}
.y45{bottom:703.546667pt;}
.y11{bottom:707.386667pt;}
.y193{bottom:707.706667pt;}
.y108{bottom:713.186667pt;}
.y1bb{bottom:714.146667pt;}
.y131{bottom:714.466667pt;}
.y15e{bottom:715.746667pt;}
.yf1{bottom:717.346667pt;}
.y73{bottom:718.626667pt;}
.y44{bottom:720.546667pt;}
.y10{bottom:722.786667pt;}
.y192{bottom:724.386667pt;}
.yca{bottom:726.626667pt;}
.y1ba{bottom:729.506667pt;}
.y130{bottom:731.106667pt;}
.y15d{bottom:733.026667pt;}
.yf0{bottom:734.306667pt;}
.y72{bottom:734.946667pt;}
.y43{bottom:737.506667pt;}
.yf{bottom:738.146667pt;}
.y191{bottom:741.346667pt;}
.y1b9{bottom:744.546667pt;}
.y12f{bottom:748.066667pt;}
.yef{bottom:751.266667pt;}
.ye{bottom:753.506667pt;}
.y9d{bottom:753.826667pt;}
.y42{bottom:754.146667pt;}
.yc8{bottom:754.786667pt;}
.y71{bottom:755.426667pt;}
.y190{bottom:758.306667pt;}
.y1b8{bottom:759.906667pt;}
.y12e{bottom:765.026667pt;}
.yee{bottom:767.906667pt;}
.yd{bottom:768.866667pt;}
.y9c{bottom:769.506667pt;}
.y41{bottom:771.106667pt;}
.y1b7{bottom:775.266667pt;}
.y18f{bottom:779.106667pt;}
.y12d{bottom:781.666667pt;}
.yc{bottom:784.226667pt;}
.yed{bottom:784.866667pt;}
.y9b{bottom:786.466667pt;}
.y40{bottom:788.066667pt;}
.y1b6{bottom:790.626667pt;}
.y12c{bottom:798.626667pt;}
.yb{bottom:799.266667pt;}
.yec{bottom:801.826667pt;}
.y9a{bottom:803.426667pt;}
.y3f{bottom:804.386667pt;}
.y70{bottom:804.706667pt;}
.y1b5{bottom:805.986667pt;}
.y18e{bottom:808.866667pt;}
.yc7{bottom:810.466667pt;}
.ya{bottom:815.586667pt;}
.y15c{bottom:818.466667pt;}
.yeb{bottom:818.786667pt;}
.y99{bottom:820.066667pt;}
.y3e{bottom:820.386667pt;}
.y1b4{bottom:821.346667pt;}
.y6f{bottom:821.666667pt;}
.y12b{bottom:833.213333pt;}
.y15b{bottom:835.453333pt;}
.y9{bottom:836.093333pt;}
.y1b3{bottom:836.733333pt;}
.y98{bottom:837.053333pt;}
.y3d{bottom:838.333333pt;}
.y6e{bottom:838.653333pt;}
.y1b2{bottom:852.093333pt;}
.yc6{bottom:852.413333pt;}
.y8{bottom:852.733333pt;}
.y3c{bottom:854.013333pt;}
.y6d{bottom:855.293333pt;}
.y1b1{bottom:867.453333pt;}
.y18d{bottom:868.093333pt;}
.y15a{bottom:869.373333pt;}
.y3b{bottom:870.653333pt;}
.y7{bottom:871.933333pt;}
.y6c{bottom:872.253333pt;}
.y1b0{bottom:882.813333pt;}
.y159{bottom:886.013333pt;}
.y3a{bottom:887.613333pt;}
.y6b{bottom:889.213333pt;}
.y6{bottom:892.093333pt;}
.yc2{bottom:894.333333pt;}
.y18c{bottom:897.853333pt;}
.y1af{bottom:898.173333pt;}
.y158{bottom:902.973333pt;}
.y39{bottom:904.573333pt;}
.y6a{bottom:906.173333pt;}
.y1ae{bottom:913.533333pt;}
.y157{bottom:919.933333pt;}
.y97{bottom:920.893333pt;}
.y38{bottom:921.213333pt;}
.y5{bottom:922.173333pt;}
.y69{bottom:922.813333pt;}
.y18b{bottom:924.093333pt;}
.y1ad{bottom:928.573333pt;}
.ybf{bottom:936.253333pt;}
.y156{bottom:936.573333pt;}
.y96{bottom:936.893333pt;}
.y37{bottom:938.173333pt;}
.y68{bottom:939.453333pt;}
.y1ac{bottom:943.933333pt;}
.y4{bottom:952.293333pt;}
.y155{bottom:953.573333pt;}
.y36{bottom:955.173333pt;}
.y1ab{bottom:959.333333pt;}
.y154{bottom:970.533333pt;}
.y35{bottom:972.133333pt;}
.ybe{bottom:974.693333pt;}
.y3{bottom:981.733333pt;}
.y153{bottom:987.493333pt;}
.y34{bottom:988.773333pt;}
.ybd{bottom:990.053333pt;}
.y1{bottom:1014.053333pt;}
.h12{height:13.760000pt;}
.h13{height:13.792000pt;}
.h1c{height:15.360000pt;}
.h16{height:15.392000pt;}
.hf{height:27.520000pt;}
.hd{height:27.552000pt;}
.h18{height:30.400000pt;}
.h1b{height:30.720000pt;}
.h1a{height:30.752000pt;}
.h11{height:41.280000pt;}
.h14{height:41.312000pt;}
.h15{height:41.600000pt;}
.h19{height:46.080000pt;}
.h10{height:47.737500pt;}
.he{height:49.020000pt;}
.h8{height:52.736250pt;}
.h2{height:52.762500pt;}
.h17{height:54.180000pt;}
.h5{height:57.787500pt;}
.hb{height:60.519362pt;}
.h1d{height:64.500000pt;}
.h3{height:65.015625pt;}
.hc{height:66.625000pt;}
.h9{height:67.803750pt;}
.h6{height:67.837500pt;}
.h4{height:71.950625pt;}
.h7{height:72.826250pt;}
.ha{height:77.285000pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.wf{width:69.792000pt;}
.w11{width:76.832000pt;}
.w12{width:77.152000pt;}
.w10{width:83.232000pt;}
.w5{width:88.672000pt;}
.w7{width:93.472000pt;}
.wa{width:95.104000pt;}
.w6{width:95.424000pt;}
.w3{width:95.712000pt;}
.wb{width:105.312000pt;}
.we{width:156.226667pt;}
.w9{width:161.666667pt;}
.w8{width:198.146667pt;}
.wd{width:199.773333pt;}
.wc{width:262.173333pt;}
.w4{width:274.013333pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xb{left:6.080000pt;}
.x2{left:109.471988pt;}
.x1a{left:115.552000pt;}
.xa{left:118.784000pt;}
.x1{left:122.303988pt;}
.x17{left:128.064000pt;}
.x4{left:129.023988pt;}
.x12{left:133.506655pt;}
.x20{left:139.586655pt;}
.x5{left:141.186655pt;}
.x7{left:154.306655pt;}
.x13{left:157.506655pt;}
.x16{left:212.893322pt;}
.xc{left:215.453333pt;}
.xf{left:216.413333pt;}
.x18{left:234.333333pt;}
.x15{left:237.853322pt;}
.x9{left:257.373322pt;}
.x1b{left:272.733333pt;}
.x6{left:311.813322pt;}
.x1c{left:343.493333pt;}
.x3{left:396.959988pt;}
.x10{left:415.520000pt;}
.x1d{left:427.680000pt;}
.xd{left:490.426667pt;}
.x19{left:497.466667pt;}
.x1e{left:505.466667pt;}
.x11{left:578.146667pt;}
.xe{left:580.066667pt;}
.x1f{left:601.533333pt;}
.x8{left:671.293322pt;}
.x14{left:676.133322pt;}
}




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