
    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_1a035c8631ae35cfad091b2c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_b8c327195112a0643c21cae7.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5a863890dcfcaeebf6323abf.woff')format("woff");}.ff3{font-family:ff3;line-height:1.065430;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_7036ebb195fcc404b16be85d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_e5a17c4a3aef70aa1e1c06d0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.088379;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e02e6299b38bbb7f93284ef0.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_4fbab61991e1675ec6b07c1b.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b5e707f9a589204c4d561ede.woff')format("woff");}.ff8{font-family:ff8;line-height:1.056641;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_89297892fa419fc59e1eac10.woff')format("woff");}.ff9{font-family:ff9;line-height:1.372070;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ffa{font-family:ffa;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;}
.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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:2.880000px;}
.v5{vertical-align:11.880000px;}
.v2{vertical-align:15.120000px;}
.v6{vertical-align:18.000000px;}
.ls2e{letter-spacing:-0.513600px;}
.ls18{letter-spacing:-0.444600px;}
.ls13{letter-spacing:-0.299400px;}
.ls17{letter-spacing:-0.262200px;}
.ls20{letter-spacing:-0.232800px;}
.ls26{letter-spacing:-0.226200px;}
.ls10{letter-spacing:-0.186600px;}
.ls2d{letter-spacing:-0.178800px;}
.lsb{letter-spacing:-0.135000px;}
.ls14{letter-spacing:-0.121200px;}
.lsa{letter-spacing:-0.090000px;}
.lsf{letter-spacing:-0.084600px;}
.ls22{letter-spacing:-0.063600px;}
.ls23{letter-spacing:-0.027360px;}
.ls30{letter-spacing:-0.007560px;}
.ls8{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.014760px;}
.ls2a{letter-spacing:0.020160px;}
.ls6{letter-spacing:0.045360px;}
.ls16{letter-spacing:0.048960px;}
.ls5{letter-spacing:0.060480px;}
.ls12{letter-spacing:0.060600px;}
.ls25{letter-spacing:0.072000px;}
.lsd{letter-spacing:0.081600px;}
.ls1a{letter-spacing:0.086400px;}
.ls28{letter-spacing:0.089400px;}
.ls2{letter-spacing:0.090000px;}
.ls1{letter-spacing:0.093600px;}
.lsc{letter-spacing:0.099600px;}
.lse{letter-spacing:0.106800px;}
.ls27{letter-spacing:0.124800px;}
.ls19{letter-spacing:0.126000px;}
.ls21{letter-spacing:0.127200px;}
.ls24{letter-spacing:0.133800px;}
.ls9{letter-spacing:0.144000px;}
.ls11{letter-spacing:0.173400px;}
.ls7{letter-spacing:0.180000px;}
.ls15{letter-spacing:0.180480px;}
.ls1b{letter-spacing:0.181200px;}
.ls1c{letter-spacing:0.206640px;}
.ls0{letter-spacing:0.360000px;}
.ls1f{letter-spacing:0.420480px;}
.ls29{letter-spacing:2.973600px;}
.ls2b{letter-spacing:3.333600px;}
.ls1e{letter-spacing:3.693600px;}
.ls1d{letter-spacing:5.853600px;}
.ls3{letter-spacing:6.026400px;}
.ls2f{letter-spacing:47.726640px;}
.ls2c{letter-spacing:80.846640px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-18.560400px;}
.ws2{word-spacing:-18.553200px;}
.ws3{word-spacing:-18.535200px;}
.ws19{word-spacing:-15.912000px;}
.ws17{word-spacing:-15.840000px;}
.ws9{word-spacing:-14.372400px;}
.wsf{word-spacing:-13.407600px;}
.ws7{word-spacing:-13.399800px;}
.ws11{word-spacing:-13.353600px;}
.wse{word-spacing:-13.287000px;}
.wsd{word-spacing:-13.275360px;}
.ws5{word-spacing:-13.226400px;}
.ws1d{word-spacing:-13.218840px;}
.ws12{word-spacing:-13.162800px;}
.ws1b{word-spacing:-13.047600px;}
.ws6{word-spacing:-13.039800px;}
.ws10{word-spacing:-12.993600px;}
.wsc{word-spacing:-12.964200px;}
.ws1c{word-spacing:-12.712800px;}
.ws18{word-spacing:-10.658400px;}
.ws1a{word-spacing:-10.623000px;}
.ws0{word-spacing:-9.810000px;}
.ws1{word-spacing:-9.765000px;}
.ws14{word-spacing:-8.687400px;}
.wsb{word-spacing:-8.614200px;}
.ws8{word-spacing:-8.553600px;}
.ws13{word-spacing:-8.526240px;}
.ws16{word-spacing:-8.327400px;}
.ws15{word-spacing:-6.573600px;}
.wsa{word-spacing:0.000000px;}
._9{margin-left:-3.875423px;}
._2{margin-left:-2.767788px;}
._0{margin-left:-1.110000px;}
._3{width:1.168428px;}
._7{width:2.188785px;}
._8{width:3.196625px;}
._d{width:4.865633px;}
._b{width:6.008527px;}
._5{width:7.395000px;}
._a{width:8.717400px;}
._6{width:9.937075px;}
._c{width:11.224924px;}
._f{width:14.248440px;}
._14{width:15.745320px;}
._e{width:17.134200px;}
._1{width:40.946400px;}
._13{width:108.062160px;}
._12{width:109.719720px;}
._11{width:119.844960px;}
._10{width:121.563360px;}
._4{width:2106.812040px;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(27,27,27);}
.fc3{color:rgb(51,51,51);}
.fc2{color:rgb(31,31,31);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:18.000000px;}
.fsc{font-size:29.880000px;}
.fs1{font-size:38.880000px;}
.fs8{font-size:42.120000px;}
.fs4{font-size:45.000000px;}
.fs5{font-size:47.880000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:60.120000px;}
.fsb{font-size:63.000000px;}
.fs6{font-size:65.880000px;}
.fs9{font-size:72.000000px;}
.fs7{font-size:83.880000px;}
.fsa{font-size:96.120000px;}
.y0{bottom:0.000000px;}
.y6b{bottom:7.830000px;}
.yaf{bottom:7.860000px;}
.y6d{bottom:7.920000px;}
.yde{bottom:8.460000px;}
.yec{bottom:8.490000px;}
.ydb{bottom:8.550000px;}
.ydd{bottom:11.340000px;}
.yeb{bottom:11.370000px;}
.yda{bottom:11.430000px;}
.y70{bottom:12.420000px;}
.y72{bottom:25.470000px;}
.y79{bottom:25.500000px;}
.y6f{bottom:29.970000px;}
.y4{bottom:73.380000px;}
.y2e{bottom:74.190000px;}
.y3{bottom:101.640000px;}
.y5f{bottom:112.170000px;}
.y114{bottom:117.390000px;}
.y13e{bottom:124.680000px;}
.yff{bottom:126.570000px;}
.y86{bottom:126.750000px;}
.y5e{bottom:129.720000px;}
.yf5{bottom:134.940000px;}
.y13d{bottom:142.320000px;}
.y2c{bottom:143.310000px;}
.yfe{bottom:144.120000px;}
.y85{bottom:144.300000px;}
.y5d{bottom:147.270000px;}
.y153{bottom:151.320000px;}
.y113{bottom:152.490000px;}
.y2b{bottom:160.860000px;}
.yfd{bottom:161.760000px;}
.y13c{bottom:168.870000px;}
.yf4{bottom:170.490000px;}
.y84{bottom:170.940000px;}
.yd1{bottom:171.030000px;}
.y5c{bottom:173.910000px;}
.y2a{bottom:178.500000px;}
.y112{bottom:179.130000px;}
.yfc{bottom:179.310000px;}
.yaa{bottom:183.000000px;}
.y13b{bottom:186.510000px;}
.yd0{bottom:191.100000px;}
.y29{bottom:196.050000px;}
.y111{bottom:196.680000px;}
.yfb{bottom:196.860000px;}
.yf3{bottom:202.710000px;}
.y83{bottom:206.490000px;}
.y5b{bottom:209.460000px;}
.ycf{bottom:211.260000px;}
.y13a{bottom:213.060000px;}
.y28{bottom:213.600000px;}
.yfa{bottom:214.500000px;}
.ya9{bottom:218.550000px;}
.y110{bottom:223.590000px;}
.y82{bottom:224.040000px;}
.y5a{bottom:227.100000px;}
.y139{bottom:230.610000px;}
.y27{bottom:231.240000px;}
.yce{bottom:231.420000px;}
.yf9{bottom:232.050000px;}
.y59{bottom:244.650000px;}
.y138{bottom:248.250000px;}
.y26{bottom:248.790000px;}
.yf8{bottom:249.690000px;}
.y81{bottom:250.680000px;}
.ycd{bottom:251.580000px;}
.ya8{bottom:254.190000px;}
.y152{bottom:257.250000px;}
.y58{bottom:262.200000px;}
.y25{bottom:266.340000px;}
.ycc{bottom:271.740000px;}
.y10f{bottom:271.830000px;}
.y137{bottom:274.800000px;}
.y57{bottom:279.840000px;}
.y24{bottom:283.980000px;}
.yf7{bottom:285.240000px;}
.y80{bottom:286.230000px;}
.y10e{bottom:289.470000px;}
.ya7{bottom:289.740000px;}
.ycb{bottom:291.810000px;}
.y136{bottom:292.440000px;}
.y151{bottom:301.440000px;}
.y23{bottom:301.530000px;}
.y7f{bottom:303.870000px;}
.y56{bottom:306.390000px;}
.yca{bottom:311.970000px;}
.yf2{bottom:315.390000px;}
.y10d{bottom:316.380000px;}
.yf6{bottom:317.460000px;}
.y135{bottom:318.990000px;}
.y22{bottom:319.170000px;}
.y7e{bottom:321.420000px;}
.ya6{bottom:325.290000px;}
.yf1{bottom:329.430000px;}
.yc9{bottom:332.130000px;}
.y134{bottom:336.540000px;}
.y21{bottom:336.720000px;}
.yf0{bottom:341.580000px;}
.y55{bottom:341.940000px;}
.ya5{bottom:342.930000px;}
.y7d{bottom:347.970000px;}
.yc8{bottom:352.290000px;}
.y10c{bottom:353.370000px;}
.y20{bottom:354.270000px;}
.y54{bottom:359.580000px;}
.y133{bottom:363.180000px;}
.ya4{bottom:369.480000px;}
.y1f{bottom:371.910000px;}
.yc7{bottom:372.360000px;}
.yef{bottom:372.450000px;}
.y53{bottom:377.130000px;}
.y10b{bottom:380.280000px;}
.y132{bottom:380.730000px;}
.y7c{bottom:383.610000px;}
.y52{bottom:394.770000px;}
.y1e{bottom:398.820000px;}
.y7b{bottom:401.160000px;}
.yee{bottom:403.320000px;}
.ya3{bottom:405.120000px;}
.y131{bottom:407.370000px;}
.yc6{bottom:408.810000px;}
.y51{bottom:412.320000px;}
.y10a{bottom:417.630000px;}
.ya2{bottom:422.670000px;}
.yc5{bottom:422.850000px;}
.y130{bottom:424.920000px;}
.y7a{bottom:427.800000px;}
.yed{bottom:434.190000px;}
.yc4{bottom:435.000000px;}
.y50{bottom:438.870000px;}
.y12f{bottom:442.470000px;}
.y1d{bottom:447.420000px;}
.ya1{bottom:449.220000px;}
.y150{bottom:451.470000px;}
.y78{bottom:460.740000px;}
.yc3{bottom:462.360000px;}
.yea{bottom:465.060000px;}
.y109{bottom:465.870000px;}
.y12e{bottom:469.110000px;}
.y4f{bottom:474.810000px;}
.ya0{bottom:481.830000px;}
.y108{bottom:483.540000px;}
.y1c{bottom:484.440000px;}
.y12d{bottom:486.690000px;}
.yc2{bottom:489.750000px;}
.y14f{bottom:495.690000px;}
.ye9{bottom:495.870000px;}
.y107{bottom:501.090000px;}
.y1b{bottom:502.080000px;}
.y77{bottom:505.680000px;}
.y12c{bottom:513.330000px;}
.yc1{bottom:517.020000px;}
.y9f{bottom:517.470000px;}
.y106{bottom:518.730000px;}
.y1a{bottom:519.630000px;}
.y4e{bottom:523.140000px;}
.ye8{bottom:526.740000px;}
.y12b{bottom:530.880000px;}
.y9e{bottom:535.020000px;}
.y19{bottom:537.180000px;}
.y14e{bottom:539.880000px;}
.y4d{bottom:540.690000px;}
.yc0{bottom:544.380000px;}
.y105{bottom:545.640000px;}
.y76{bottom:550.590000px;}
.y9d{bottom:552.660000px;}
.y18{bottom:554.820000px;}
.y12a{bottom:557.430000px;}
.ye7{bottom:557.610000px;}
.y4c{bottom:558.330000px;}
.y9c{bottom:570.210000px;}
.ybf{bottom:571.740000px;}
.y17{bottom:572.370000px;}
.y129{bottom:575.070000px;}
.y14d{bottom:584.070000px;}
.y9b{bottom:587.760000px;}
.ye6{bottom:588.480000px;}
.y16{bottom:589.920000px;}
.y128{bottom:592.620000px;}
.y4b{bottom:593.880000px;}
.y75{bottom:595.500000px;}
.ybe{bottom:599.100000px;}
.y14c{bottom:601.620000px;}
.y15{bottom:607.560000px;}
.y4a{bottom:611.430000px;}
.y9a{bottom:614.400000px;}
.y127{bottom:619.260000px;}
.ye5{bottom:619.350000px;}
.y14{bottom:625.110000px;}
.ybd{bottom:626.370000px;}
.y14b{bottom:628.260000px;}
.y49{bottom:629.070000px;}
.y126{bottom:636.810000px;}
.y74{bottom:640.410000px;}
.y13{bottom:642.750000px;}
.y14a{bottom:645.810000px;}
.y48{bottom:646.620000px;}
.y99{bottom:649.950000px;}
.ye4{bottom:650.130000px;}
.ybc{bottom:653.730000px;}
.y12{bottom:660.300000px;}
.y125{bottom:663.360000px;}
.y47{bottom:664.260000px;}
.y98{bottom:667.590000px;}
.y149{bottom:672.360000px;}
.y11{bottom:677.850000px;}
.y124{bottom:681.000000px;}
.ybb{bottom:681.090000px;}
.y46{bottom:681.810000px;}
.y97{bottom:685.140000px;}
.y73{bottom:685.410000px;}
.y148{bottom:690.000000px;}
.y10{bottom:695.490000px;}
.y123{bottom:698.550000px;}
.y45{bottom:699.360000px;}
.yba{bottom:708.450000px;}
.y71{bottom:712.680000px;}
.yf{bottom:713.040000px;}
.y147{bottom:716.550000px;}
.y104{bottom:717.000000px;}
.y96{bottom:720.690000px;}
.ye3{bottom:720.960000px;}
.y122{bottom:725.190000px;}
.ye{bottom:730.680000px;}
.y146{bottom:734.190000px;}
.y44{bottom:735.000000px;}
.y95{bottom:738.330000px;}
.y121{bottom:742.740000px;}
.y43{bottom:752.550000px;}
.ye2{bottom:755.790000px;}
.y94{bottom:755.880000px;}
.yb9{bottom:757.140000px;}
.yd{bottom:757.590000px;}
.y120{bottom:760.290000px;}
.y145{bottom:760.740000px;}
.ye1{bottom:769.920000px;}
.y42{bottom:770.190000px;}
.y144{bottom:778.290000px;}
.ye0{bottom:782.070000px;}
.y11f{bottom:786.930000px;}
.y41{bottom:787.740000px;}
.y93{bottom:791.520000px;}
.yb8{bottom:791.970000px;}
.y143{bottom:795.930000px;}
.y11e{bottom:804.480000px;}
.y40{bottom:805.290000px;}
.yc{bottom:805.830000px;}
.yb7{bottom:806.010000px;}
.y6e{bottom:807.000000px;}
.y92{bottom:809.070000px;}
.ydf{bottom:812.940000px;}
.y142{bottom:813.480000px;}
.yb6{bottom:818.250000px;}
.y3f{bottom:822.930000px;}
.y91{bottom:826.620000px;}
.y11d{bottom:831.030000px;}
.y6c{bottom:834.360000px;}
.y141{bottom:840.030000px;}
.y3e{bottom:840.480000px;}
.yb{bottom:841.380000px;}
.ydc{bottom:843.810000px;}
.y90{bottom:844.260000px;}
.yb5{bottom:845.520000px;}
.y11c{bottom:848.670000px;}
.y140{bottom:857.670000px;}
.y3d{bottom:858.030000px;}
.y6a{bottom:861.720000px;}
.y8f{bottom:861.810000px;}
.yb4{bottom:872.880000px;}
.yd9{bottom:874.590000px;}
.y11b{bottom:875.220000px;}
.y3c{bottom:875.670000px;}
.ya{bottom:877.200000px;}
.y8e{bottom:879.450000px;}
.y156{bottom:884.220000px;}
.y11a{bottom:892.860000px;}
.y3b{bottom:893.220000px;}
.y8d{bottom:897.000000px;}
.yb3{bottom:900.240000px;}
.y13f{bottom:901.860000px;}
.yd8{bottom:905.460000px;}
.y69{bottom:910.410000px;}
.y9{bottom:913.200000px;}
.y8c{bottom:914.550000px;}
.y119{bottom:919.410000px;}
.yb2{bottom:927.600000px;}
.y155{bottom:928.410000px;}
.y3a{bottom:928.860000px;}
.y8b{bottom:932.190000px;}
.yd7{bottom:932.820000px;}
.y118{bottom:936.960000px;}
.y68{bottom:945.960000px;}
.y39{bottom:946.410000px;}
.y8{bottom:949.290000px;}
.yb1{bottom:954.870000px;}
.y8a{bottom:958.740000px;}
.yd6{bottom:960.180000px;}
.y67{bottom:963.600000px;}
.y38{bottom:963.960000px;}
.y154{bottom:972.600000px;}
.y117{bottom:981.150000px;}
.y37{bottom:981.600000px;}
.yb0{bottom:982.230000px;}
.yd5{bottom:987.450000px;}
.y7{bottom:987.630000px;}
.y66{bottom:990.150000px;}
.y89{bottom:994.650000px;}
.y36{bottom:999.150000px;}
.y116{bottom:1007.790000px;}
.yae{bottom:1009.590000px;}
.y6{bottom:1012.320000px;}
.yd4{bottom:1014.840000px;}
.y35{bottom:1016.820000px;}
.y115{bottom:1025.370000px;}
.y65{bottom:1025.820000px;}
.y34{bottom:1034.370000px;}
.yad{bottom:1036.890000px;}
.yd3{bottom:1042.200000px;}
.y88{bottom:1042.920000px;}
.y64{bottom:1043.370000px;}
.y5{bottom:1050.210000px;}
.y33{bottom:1051.920000px;}
.y103{bottom:1052.370000px;}
.y87{bottom:1060.560000px;}
.y63{bottom:1060.920000px;}
.yac{bottom:1064.250000px;}
.yd2{bottom:1069.470000px;}
.y32{bottom:1069.560000px;}
.y102{bottom:1069.920000px;}
.y2{bottom:1071.450000px;}
.y1{bottom:1075.770000px;}
.y62{bottom:1078.560000px;}
.y31{bottom:1087.110000px;}
.y101{bottom:1087.560000px;}
.yab{bottom:1091.610000px;}
.y61{bottom:1096.110000px;}
.y100{bottom:1105.110000px;}
.y60{bottom:1113.750000px;}
.y30{bottom:1122.750000px;}
.y2f{bottom:1140.300000px;}
.y2d{bottom:1194.300000px;}
.h2{height:15.662109px;}
.hf{height:26.550000px;}
.h15{height:26.580000px;}
.h10{height:26.640000px;}
.h18{height:26.670000px;}
.h3{height:30.022383px;}
.h1b{height:30.060000px;}
.h1c{height:30.090000px;}
.h19{height:30.150000px;}
.h4{height:39.155273px;}
.h16{height:41.661211px;}
.h12{height:44.190000px;}
.h13{height:44.220000px;}
.h11{height:48.690000px;}
.h7{height:50.902383px;}
.h8{height:52.311445px;}
.h9{height:55.779258px;}
.h5{height:57.323320px;}
.h14{height:59.973223px;}
.ha{height:60.960938px;}
.h1d{height:61.793886px;}
.hc{height:62.585859px;}
.h1a{height:62.648438px;}
.h17{height:65.526152px;}
.he{height:65.583984px;}
.hb{height:68.582109px;}
.h6{height:72.985430px;}
.hd{height:81.382852px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w6{width:93.960000px;}
.w9{width:94.680000px;}
.wa{width:99.450000px;}
.w7{width:99.480000px;}
.wd{width:106.380000px;}
.wf{width:108.090000px;}
.w8{width:108.270000px;}
.we{width:114.600000px;}
.wc{width:151.320000px;}
.w3{width:188.940000px;}
.w10{width:199.740000px;}
.wb{width:245.610000px;}
.w5{width:245.640000px;}
.w4{width:566.040000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:7.740000px;}
.x2{left:68.040000px;}
.x8{left:73.980000px;}
.x19{left:78.839987px;}
.x1b{left:80.909987px;}
.xe{left:82.979987px;}
.x13{left:88.019987px;}
.xf{left:91.799987px;}
.x14{left:93.149987px;}
.x1d{left:111.239987px;}
.x17{left:169.140000px;}
.x4{left:192.719987px;}
.x10{left:194.160000px;}
.x3{left:212.070000px;}
.x7{left:258.420000px;}
.x9{left:320.340000px;}
.xa{left:415.110000px;}
.x11{left:440.580000px;}
.x15{left:458.130000px;}
.xb{left:515.310000px;}
.x16{left:573.450000px;}
.x12{left:592.710000px;}
.x18{left:616.020000px;}
.xc{left:624.390000px;}
.xd{left:719.880000px;}
.x5{left:800.339987px;}
.x1a{left:815.099987px;}
.x1c{left:824.099987px;}
.x1{left:826.350000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:2.560000pt;}
.v5{vertical-align:10.560000pt;}
.v2{vertical-align:13.440000pt;}
.v6{vertical-align:16.000000pt;}
.ls2e{letter-spacing:-0.456533pt;}
.ls18{letter-spacing:-0.395200pt;}
.ls13{letter-spacing:-0.266133pt;}
.ls17{letter-spacing:-0.233067pt;}
.ls20{letter-spacing:-0.206933pt;}
.ls26{letter-spacing:-0.201067pt;}
.ls10{letter-spacing:-0.165867pt;}
.ls2d{letter-spacing:-0.158933pt;}
.lsb{letter-spacing:-0.120000pt;}
.ls14{letter-spacing:-0.107733pt;}
.lsa{letter-spacing:-0.080000pt;}
.lsf{letter-spacing:-0.075200pt;}
.ls22{letter-spacing:-0.056533pt;}
.ls23{letter-spacing:-0.024320pt;}
.ls30{letter-spacing:-0.006720pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.013120pt;}
.ls2a{letter-spacing:0.017920pt;}
.ls6{letter-spacing:0.040320pt;}
.ls16{letter-spacing:0.043520pt;}
.ls5{letter-spacing:0.053760pt;}
.ls12{letter-spacing:0.053867pt;}
.ls25{letter-spacing:0.064000pt;}
.lsd{letter-spacing:0.072533pt;}
.ls1a{letter-spacing:0.076800pt;}
.ls28{letter-spacing:0.079467pt;}
.ls2{letter-spacing:0.080000pt;}
.ls1{letter-spacing:0.083200pt;}
.lsc{letter-spacing:0.088533pt;}
.lse{letter-spacing:0.094933pt;}
.ls27{letter-spacing:0.110933pt;}
.ls19{letter-spacing:0.112000pt;}
.ls21{letter-spacing:0.113067pt;}
.ls24{letter-spacing:0.118933pt;}
.ls9{letter-spacing:0.128000pt;}
.ls11{letter-spacing:0.154133pt;}
.ls7{letter-spacing:0.160000pt;}
.ls15{letter-spacing:0.160427pt;}
.ls1b{letter-spacing:0.161067pt;}
.ls1c{letter-spacing:0.183680pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1f{letter-spacing:0.373760pt;}
.ls29{letter-spacing:2.643200pt;}
.ls2b{letter-spacing:2.963200pt;}
.ls1e{letter-spacing:3.283200pt;}
.ls1d{letter-spacing:5.203200pt;}
.ls3{letter-spacing:5.356800pt;}
.ls2f{letter-spacing:42.423680pt;}
.ls2c{letter-spacing:71.863680pt;}
.ws4{word-spacing:-16.498133pt;}
.ws2{word-spacing:-16.491733pt;}
.ws3{word-spacing:-16.475733pt;}
.ws19{word-spacing:-14.144000pt;}
.ws17{word-spacing:-14.080000pt;}
.ws9{word-spacing:-12.775467pt;}
.wsf{word-spacing:-11.917867pt;}
.ws7{word-spacing:-11.910933pt;}
.ws11{word-spacing:-11.869867pt;}
.wse{word-spacing:-11.810667pt;}
.wsd{word-spacing:-11.800320pt;}
.ws5{word-spacing:-11.756800pt;}
.ws1d{word-spacing:-11.750080pt;}
.ws12{word-spacing:-11.700267pt;}
.ws1b{word-spacing:-11.597867pt;}
.ws6{word-spacing:-11.590933pt;}
.ws10{word-spacing:-11.549867pt;}
.wsc{word-spacing:-11.523733pt;}
.ws1c{word-spacing:-11.300267pt;}
.ws18{word-spacing:-9.474133pt;}
.ws1a{word-spacing:-9.442667pt;}
.ws0{word-spacing:-8.720000pt;}
.ws1{word-spacing:-8.680000pt;}
.ws14{word-spacing:-7.722133pt;}
.wsb{word-spacing:-7.657067pt;}
.ws8{word-spacing:-7.603200pt;}
.ws13{word-spacing:-7.578880pt;}
.ws16{word-spacing:-7.402133pt;}
.ws15{word-spacing:-5.843200pt;}
.wsa{word-spacing:0.000000pt;}
._9{margin-left:-3.444821pt;}
._2{margin-left:-2.460256pt;}
._0{margin-left:-0.986667pt;}
._3{width:1.038603pt;}
._7{width:1.945586pt;}
._8{width:2.841445pt;}
._d{width:4.325007pt;}
._b{width:5.340913pt;}
._5{width:6.573334pt;}
._a{width:7.748800pt;}
._6{width:8.832956pt;}
._c{width:9.977711pt;}
._f{width:12.665280pt;}
._14{width:13.995840pt;}
._e{width:15.230400pt;}
._1{width:36.396800pt;}
._13{width:96.055253pt;}
._12{width:97.528640pt;}
._11{width:106.528853pt;}
._10{width:108.056320pt;}
._4{width:1872.721813pt;}
.fs0{font-size:16.000000pt;}
.fsc{font-size:26.560000pt;}
.fs1{font-size:34.560000pt;}
.fs8{font-size:37.440000pt;}
.fs4{font-size:40.000000pt;}
.fs5{font-size:42.560000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.440000pt;}
.fsb{font-size:56.000000pt;}
.fs6{font-size:58.560000pt;}
.fs9{font-size:64.000000pt;}
.fs7{font-size:74.560000pt;}
.fsa{font-size:85.440000pt;}
.y0{bottom:0.000000pt;}
.y6b{bottom:6.960000pt;}
.yaf{bottom:6.986667pt;}
.y6d{bottom:7.040000pt;}
.yde{bottom:7.520000pt;}
.yec{bottom:7.546667pt;}
.ydb{bottom:7.600000pt;}
.ydd{bottom:10.080000pt;}
.yeb{bottom:10.106667pt;}
.yda{bottom:10.160000pt;}
.y70{bottom:11.040000pt;}
.y72{bottom:22.640000pt;}
.y79{bottom:22.666667pt;}
.y6f{bottom:26.640000pt;}
.y4{bottom:65.226667pt;}
.y2e{bottom:65.946667pt;}
.y3{bottom:90.346667pt;}
.y5f{bottom:99.706667pt;}
.y114{bottom:104.346667pt;}
.y13e{bottom:110.826667pt;}
.yff{bottom:112.506667pt;}
.y86{bottom:112.666667pt;}
.y5e{bottom:115.306667pt;}
.yf5{bottom:119.946667pt;}
.y13d{bottom:126.506667pt;}
.y2c{bottom:127.386667pt;}
.yfe{bottom:128.106667pt;}
.y85{bottom:128.266667pt;}
.y5d{bottom:130.906667pt;}
.y153{bottom:134.506667pt;}
.y113{bottom:135.546667pt;}
.y2b{bottom:142.986667pt;}
.yfd{bottom:143.786667pt;}
.y13c{bottom:150.106667pt;}
.yf4{bottom:151.546667pt;}
.y84{bottom:151.946667pt;}
.yd1{bottom:152.026667pt;}
.y5c{bottom:154.586667pt;}
.y2a{bottom:158.666667pt;}
.y112{bottom:159.226667pt;}
.yfc{bottom:159.386667pt;}
.yaa{bottom:162.666667pt;}
.y13b{bottom:165.786667pt;}
.yd0{bottom:169.866667pt;}
.y29{bottom:174.266667pt;}
.y111{bottom:174.826667pt;}
.yfb{bottom:174.986667pt;}
.yf3{bottom:180.186667pt;}
.y83{bottom:183.546667pt;}
.y5b{bottom:186.186667pt;}
.ycf{bottom:187.786667pt;}
.y13a{bottom:189.386667pt;}
.y28{bottom:189.866667pt;}
.yfa{bottom:190.666667pt;}
.ya9{bottom:194.266667pt;}
.y110{bottom:198.746667pt;}
.y82{bottom:199.146667pt;}
.y5a{bottom:201.866667pt;}
.y139{bottom:204.986667pt;}
.y27{bottom:205.546667pt;}
.yce{bottom:205.706667pt;}
.yf9{bottom:206.266667pt;}
.y59{bottom:217.466667pt;}
.y138{bottom:220.666667pt;}
.y26{bottom:221.146667pt;}
.yf8{bottom:221.946667pt;}
.y81{bottom:222.826667pt;}
.ycd{bottom:223.626667pt;}
.ya8{bottom:225.946667pt;}
.y152{bottom:228.666667pt;}
.y58{bottom:233.066667pt;}
.y25{bottom:236.746667pt;}
.ycc{bottom:241.546667pt;}
.y10f{bottom:241.626667pt;}
.y137{bottom:244.266667pt;}
.y57{bottom:248.746667pt;}
.y24{bottom:252.426667pt;}
.yf7{bottom:253.546667pt;}
.y80{bottom:254.426667pt;}
.y10e{bottom:257.306667pt;}
.ya7{bottom:257.546667pt;}
.ycb{bottom:259.386667pt;}
.y136{bottom:259.946667pt;}
.y151{bottom:267.946667pt;}
.y23{bottom:268.026667pt;}
.y7f{bottom:270.106667pt;}
.y56{bottom:272.346667pt;}
.yca{bottom:277.306667pt;}
.yf2{bottom:280.346667pt;}
.y10d{bottom:281.226667pt;}
.yf6{bottom:282.186667pt;}
.y135{bottom:283.546667pt;}
.y22{bottom:283.706667pt;}
.y7e{bottom:285.706667pt;}
.ya6{bottom:289.146667pt;}
.yf1{bottom:292.826667pt;}
.yc9{bottom:295.226667pt;}
.y134{bottom:299.146667pt;}
.y21{bottom:299.306667pt;}
.yf0{bottom:303.626667pt;}
.y55{bottom:303.946667pt;}
.ya5{bottom:304.826667pt;}
.y7d{bottom:309.306667pt;}
.yc8{bottom:313.146667pt;}
.y10c{bottom:314.106667pt;}
.y20{bottom:314.906667pt;}
.y54{bottom:319.626667pt;}
.y133{bottom:322.826667pt;}
.ya4{bottom:328.426667pt;}
.y1f{bottom:330.586667pt;}
.yc7{bottom:330.986667pt;}
.yef{bottom:331.066667pt;}
.y53{bottom:335.226667pt;}
.y10b{bottom:338.026667pt;}
.y132{bottom:338.426667pt;}
.y7c{bottom:340.986667pt;}
.y52{bottom:350.906667pt;}
.y1e{bottom:354.506667pt;}
.y7b{bottom:356.586667pt;}
.yee{bottom:358.506667pt;}
.ya3{bottom:360.106667pt;}
.y131{bottom:362.106667pt;}
.yc6{bottom:363.386667pt;}
.y51{bottom:366.506667pt;}
.y10a{bottom:371.226667pt;}
.ya2{bottom:375.706667pt;}
.yc5{bottom:375.866667pt;}
.y130{bottom:377.706667pt;}
.y7a{bottom:380.266667pt;}
.yed{bottom:385.946667pt;}
.yc4{bottom:386.666667pt;}
.y50{bottom:390.106667pt;}
.y12f{bottom:393.306667pt;}
.y1d{bottom:397.706667pt;}
.ya1{bottom:399.306667pt;}
.y150{bottom:401.306667pt;}
.y78{bottom:409.546667pt;}
.yc3{bottom:410.986667pt;}
.yea{bottom:413.386667pt;}
.y109{bottom:414.106667pt;}
.y12e{bottom:416.986667pt;}
.y4f{bottom:422.053333pt;}
.ya0{bottom:428.293333pt;}
.y108{bottom:429.813333pt;}
.y1c{bottom:430.613333pt;}
.y12d{bottom:432.613333pt;}
.yc2{bottom:435.333333pt;}
.y14f{bottom:440.613333pt;}
.ye9{bottom:440.773333pt;}
.y107{bottom:445.413333pt;}
.y1b{bottom:446.293333pt;}
.y77{bottom:449.493333pt;}
.y12c{bottom:456.293333pt;}
.yc1{bottom:459.573333pt;}
.y9f{bottom:459.973333pt;}
.y106{bottom:461.093333pt;}
.y1a{bottom:461.893333pt;}
.y4e{bottom:465.013333pt;}
.ye8{bottom:468.213333pt;}
.y12b{bottom:471.893333pt;}
.y9e{bottom:475.573333pt;}
.y19{bottom:477.493333pt;}
.y14e{bottom:479.893333pt;}
.y4d{bottom:480.613333pt;}
.yc0{bottom:483.893333pt;}
.y105{bottom:485.013333pt;}
.y76{bottom:489.413333pt;}
.y9d{bottom:491.253333pt;}
.y18{bottom:493.173333pt;}
.y12a{bottom:495.493333pt;}
.ye7{bottom:495.653333pt;}
.y4c{bottom:496.293333pt;}
.y9c{bottom:506.853333pt;}
.ybf{bottom:508.213333pt;}
.y17{bottom:508.773333pt;}
.y129{bottom:511.173333pt;}
.y14d{bottom:519.173333pt;}
.y9b{bottom:522.453333pt;}
.ye6{bottom:523.093333pt;}
.y16{bottom:524.373333pt;}
.y128{bottom:526.773333pt;}
.y4b{bottom:527.893333pt;}
.y75{bottom:529.333333pt;}
.ybe{bottom:532.533333pt;}
.y14c{bottom:534.773333pt;}
.y15{bottom:540.053333pt;}
.y4a{bottom:543.493333pt;}
.y9a{bottom:546.133333pt;}
.y127{bottom:550.453333pt;}
.ye5{bottom:550.533333pt;}
.y14{bottom:555.653333pt;}
.ybd{bottom:556.773333pt;}
.y14b{bottom:558.453333pt;}
.y49{bottom:559.173333pt;}
.y126{bottom:566.053333pt;}
.y74{bottom:569.253333pt;}
.y13{bottom:571.333333pt;}
.y14a{bottom:574.053333pt;}
.y48{bottom:574.773333pt;}
.y99{bottom:577.733333pt;}
.ye4{bottom:577.893333pt;}
.ybc{bottom:581.093333pt;}
.y12{bottom:586.933333pt;}
.y125{bottom:589.653333pt;}
.y47{bottom:590.453333pt;}
.y98{bottom:593.413333pt;}
.y149{bottom:597.653333pt;}
.y11{bottom:602.533333pt;}
.y124{bottom:605.333333pt;}
.ybb{bottom:605.413333pt;}
.y46{bottom:606.053333pt;}
.y97{bottom:609.013333pt;}
.y73{bottom:609.253333pt;}
.y148{bottom:613.333333pt;}
.y10{bottom:618.213333pt;}
.y123{bottom:620.933333pt;}
.y45{bottom:621.653333pt;}
.yba{bottom:629.733333pt;}
.y71{bottom:633.493333pt;}
.yf{bottom:633.813333pt;}
.y147{bottom:636.933333pt;}
.y104{bottom:637.333333pt;}
.y96{bottom:640.613333pt;}
.ye3{bottom:640.853333pt;}
.y122{bottom:644.613333pt;}
.ye{bottom:649.493333pt;}
.y146{bottom:652.613333pt;}
.y44{bottom:653.333333pt;}
.y95{bottom:656.293333pt;}
.y121{bottom:660.213333pt;}
.y43{bottom:668.933333pt;}
.ye2{bottom:671.813333pt;}
.y94{bottom:671.893333pt;}
.yb9{bottom:673.013333pt;}
.yd{bottom:673.413333pt;}
.y120{bottom:675.813333pt;}
.y145{bottom:676.213333pt;}
.ye1{bottom:684.373333pt;}
.y42{bottom:684.613333pt;}
.y144{bottom:691.813333pt;}
.ye0{bottom:695.173333pt;}
.y11f{bottom:699.493333pt;}
.y41{bottom:700.213333pt;}
.y93{bottom:703.573333pt;}
.yb8{bottom:703.973333pt;}
.y143{bottom:707.493333pt;}
.y11e{bottom:715.093333pt;}
.y40{bottom:715.813333pt;}
.yc{bottom:716.293333pt;}
.yb7{bottom:716.453333pt;}
.y6e{bottom:717.333333pt;}
.y92{bottom:719.173333pt;}
.ydf{bottom:722.613333pt;}
.y142{bottom:723.093333pt;}
.yb6{bottom:727.333333pt;}
.y3f{bottom:731.493333pt;}
.y91{bottom:734.773333pt;}
.y11d{bottom:738.693333pt;}
.y6c{bottom:741.653333pt;}
.y141{bottom:746.693333pt;}
.y3e{bottom:747.093333pt;}
.yb{bottom:747.893333pt;}
.ydc{bottom:750.053333pt;}
.y90{bottom:750.453333pt;}
.yb5{bottom:751.573333pt;}
.y11c{bottom:754.373333pt;}
.y140{bottom:762.373333pt;}
.y3d{bottom:762.693333pt;}
.y6a{bottom:765.973333pt;}
.y8f{bottom:766.053333pt;}
.yb4{bottom:775.893333pt;}
.yd9{bottom:777.413333pt;}
.y11b{bottom:777.973333pt;}
.y3c{bottom:778.373333pt;}
.ya{bottom:779.733333pt;}
.y8e{bottom:781.733333pt;}
.y156{bottom:785.973333pt;}
.y11a{bottom:793.653333pt;}
.y3b{bottom:793.973333pt;}
.y8d{bottom:797.333333pt;}
.yb3{bottom:800.213333pt;}
.y13f{bottom:801.653333pt;}
.yd8{bottom:804.853333pt;}
.y69{bottom:809.253333pt;}
.y9{bottom:811.733333pt;}
.y8c{bottom:812.933333pt;}
.y119{bottom:817.253333pt;}
.yb2{bottom:824.533333pt;}
.y155{bottom:825.253333pt;}
.y3a{bottom:825.653333pt;}
.y8b{bottom:828.613333pt;}
.yd7{bottom:829.173333pt;}
.y118{bottom:832.853333pt;}
.y68{bottom:840.853333pt;}
.y39{bottom:841.253333pt;}
.y8{bottom:843.813333pt;}
.yb1{bottom:848.773333pt;}
.y8a{bottom:852.213333pt;}
.yd6{bottom:853.493333pt;}
.y67{bottom:856.533333pt;}
.y38{bottom:856.853333pt;}
.y154{bottom:864.533333pt;}
.y117{bottom:872.133333pt;}
.y37{bottom:872.533333pt;}
.yb0{bottom:873.093333pt;}
.yd5{bottom:877.733333pt;}
.y7{bottom:877.893333pt;}
.y66{bottom:880.133333pt;}
.y89{bottom:884.133333pt;}
.y36{bottom:888.133333pt;}
.y116{bottom:895.813333pt;}
.yae{bottom:897.413333pt;}
.y6{bottom:899.840000pt;}
.yd4{bottom:902.080000pt;}
.y35{bottom:903.840000pt;}
.y115{bottom:911.440000pt;}
.y65{bottom:911.840000pt;}
.y34{bottom:919.440000pt;}
.yad{bottom:921.680000pt;}
.yd3{bottom:926.400000pt;}
.y88{bottom:927.040000pt;}
.y64{bottom:927.440000pt;}
.y5{bottom:933.520000pt;}
.y33{bottom:935.040000pt;}
.y103{bottom:935.440000pt;}
.y87{bottom:942.720000pt;}
.y63{bottom:943.040000pt;}
.yac{bottom:946.000000pt;}
.yd2{bottom:950.640000pt;}
.y32{bottom:950.720000pt;}
.y102{bottom:951.040000pt;}
.y2{bottom:952.400000pt;}
.y1{bottom:956.240000pt;}
.y62{bottom:958.720000pt;}
.y31{bottom:966.320000pt;}
.y101{bottom:966.720000pt;}
.yab{bottom:970.320000pt;}
.y61{bottom:974.320000pt;}
.y100{bottom:982.320000pt;}
.y60{bottom:990.000000pt;}
.y30{bottom:998.000000pt;}
.y2f{bottom:1013.600000pt;}
.y2d{bottom:1061.600000pt;}
.h2{height:13.921875pt;}
.hf{height:23.600000pt;}
.h15{height:23.626667pt;}
.h10{height:23.680000pt;}
.h18{height:23.706667pt;}
.h3{height:26.686562pt;}
.h1b{height:26.720000pt;}
.h1c{height:26.746667pt;}
.h19{height:26.800000pt;}
.h4{height:34.804688pt;}
.h16{height:37.032187pt;}
.h12{height:39.280000pt;}
.h13{height:39.306667pt;}
.h11{height:43.280000pt;}
.h7{height:45.246562pt;}
.h8{height:46.499062pt;}
.h9{height:49.581562pt;}
.h5{height:50.954062pt;}
.h14{height:53.309531pt;}
.ha{height:54.187500pt;}
.h1d{height:54.927899pt;}
.hc{height:55.631875pt;}
.h1a{height:55.687500pt;}
.h17{height:58.245469pt;}
.he{height:58.296875pt;}
.hb{height:60.961875pt;}
.h6{height:64.875937pt;}
.hd{height:72.340312pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w6{width:83.520000pt;}
.w9{width:84.160000pt;}
.wa{width:88.400000pt;}
.w7{width:88.426667pt;}
.wd{width:94.560000pt;}
.wf{width:96.080000pt;}
.w8{width:96.240000pt;}
.we{width:101.866667pt;}
.wc{width:134.506667pt;}
.w3{width:167.946667pt;}
.w10{width:177.546667pt;}
.wb{width:218.320000pt;}
.w5{width:218.346667pt;}
.w4{width:503.146667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:6.880000pt;}
.x2{left:60.480000pt;}
.x8{left:65.760000pt;}
.x19{left:70.079988pt;}
.x1b{left:71.919988pt;}
.xe{left:73.759988pt;}
.x13{left:78.239988pt;}
.xf{left:81.599988pt;}
.x14{left:82.799988pt;}
.x1d{left:98.879988pt;}
.x17{left:150.346667pt;}
.x4{left:171.306655pt;}
.x10{left:172.586667pt;}
.x3{left:188.506667pt;}
.x7{left:229.706667pt;}
.x9{left:284.746667pt;}
.xa{left:368.986667pt;}
.x11{left:391.626667pt;}
.x15{left:407.226667pt;}
.xb{left:458.053333pt;}
.x16{left:509.733333pt;}
.x12{left:526.853333pt;}
.x18{left:547.573333pt;}
.xc{left:555.013333pt;}
.xd{left:639.893333pt;}
.x5{left:711.413322pt;}
.x1a{left:724.533322pt;}
.x1c{left:732.533322pt;}
.x1{left:734.533333pt;}
}




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