
    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_b60c24912a622d80e1630f23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_4d98539a463689ece723b7c1.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_2ddb420e85a4465f501aa2eb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_66d4753a430bbcdcf02b4134.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.202148;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_2ddd55d1e1db7e58fceeab16.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_39d0715a8726b6527c0056ad.woff2')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_2a37d9cc7e9a4b934fa9e9a2.woff2')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_10b043c6c22ee1387dbb5d49.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.202148;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_b50cceb6cd24bf240566d5b6.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_285d0a70af1041347be872c2.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.983398;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);}
.v2{vertical-align:-23.760000px;}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls2b{letter-spacing:-0.786000px;}
.ls2f{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.463800px;}
.ls22{letter-spacing:-0.326400px;}
.ls1b{letter-spacing:-0.301200px;}
.ls19{letter-spacing:-0.246000px;}
.ls9{letter-spacing:-0.240600px;}
.ls8{letter-spacing:-0.175800px;}
.ls18{letter-spacing:-0.164400px;}
.ls1d{letter-spacing:-0.112200px;}
.lsc{letter-spacing:-0.107400px;}
.ls25{letter-spacing:-0.078600px;}
.ls1e{letter-spacing:-0.069600px;}
.ls7{letter-spacing:-0.064800px;}
.lsb{letter-spacing:-0.058320px;}
.ls1f{letter-spacing:-0.041040px;}
.ls14{letter-spacing:-0.001440px;}
.ls4{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.060480px;}
.ls2e{letter-spacing:0.060600px;}
.ls27{letter-spacing:0.140400px;}
.ls5{letter-spacing:0.150000px;}
.ls20{letter-spacing:0.174000px;}
.ls21{letter-spacing:0.175200px;}
.lsa{letter-spacing:0.180000px;}
.ls17{letter-spacing:0.180600px;}
.ls1c{letter-spacing:0.218400px;}
.ls16{letter-spacing:0.220200px;}
.ls3{letter-spacing:0.306000px;}
.ls15{letter-spacing:0.309000px;}
.ls26{letter-spacing:0.479520px;}
.ls24{letter-spacing:0.654000px;}
.ls29{letter-spacing:0.780000px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls2a{letter-spacing:2.334240px;}
.ls28{letter-spacing:4.494240px;}
.ls2d{letter-spacing:12.906720px;}
.ls2c{letter-spacing:43.290720px;}
.lsf{letter-spacing:59.706720px;}
.ls11{letter-spacing:61.866720px;}
.lse{letter-spacing:62.586720px;}
.ls13{letter-spacing:64.026720px;}
.lsd{letter-spacing:64.746720px;}
.ls10{letter-spacing:66.906720px;}
.ls12{letter-spacing:73.386720px;}
.ls1a{letter-spacing:77.706720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsc{word-spacing:-13.814760px;}
.ws7{word-spacing:-13.811760px;}
.wsd{word-spacing:-13.725960px;}
.ws12{word-spacing:-13.724160px;}
.wse{word-spacing:-13.686360px;}
.ws15{word-spacing:-13.680960px;}
.ws17{word-spacing:-13.646160px;}
.ws6{word-spacing:-13.505760px;}
.wsb{word-spacing:-13.504320px;}
.ws14{word-spacing:-13.464720px;}
.ws9{word-spacing:-13.447440px;}
.ws5{word-spacing:-13.440960px;}
.wsa{word-spacing:-13.398360px;}
.ws13{word-spacing:-13.393560px;}
.wsf{word-spacing:-13.341360px;}
.ws10{word-spacing:-13.259760px;}
.ws11{word-spacing:-13.204560px;}
.ws16{word-spacing:-13.179360px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.786880px;}
.ws8{word-spacing:0.000000px;}
._4{margin-left:-1451.240400px;}
._2{margin-left:-1359.798240px;}
._3{margin-left:-1002.997680px;}
._5{margin-left:-581.641560px;}
._7{margin-left:-4.449600px;}
._6{margin-left:-3.312000px;}
._12{margin-left:-2.259840px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._a{width:2.940480px;}
._d{width:4.437120px;}
._c{width:5.497920px;}
._9{width:6.511680px;}
._8{width:7.577760px;}
._10{width:8.736720px;}
._e{width:9.979920px;}
._f{width:11.075520px;}
._11{width:12.393840px;}
._13{width:14.661120px;}
._17{width:16.705680px;}
._16{width:18.569040px;}
._15{width:19.840320px;}
._19{width:20.975760px;}
._14{width:22.589280px;}
._18{width:23.645040px;}
._b{width:42.956160px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y132{bottom:2.880000px;}
.y93{bottom:3.960000px;}
.y90{bottom:4.140000px;}
.y97{bottom:4.170000px;}
.yb0{bottom:6.660000px;}
.ya6{bottom:6.840000px;}
.y101{bottom:6.885000px;}
.y8e{bottom:13.680000px;}
.yc2{bottom:17.280000px;}
.ya9{bottom:17.460000px;}
.y10f{bottom:17.505000px;}
.yd4{bottom:27.750000px;}
.yaa{bottom:27.900000px;}
.yb2{bottom:27.945000px;}
.y14f{bottom:40.860000px;}
.y135{bottom:48.960000px;}
.y6{bottom:61.416000px;}
.y150{bottom:70.014000px;}
.y134{bottom:70.020000px;}
.yd2{bottom:91.476000px;}
.y31{bottom:94.176000px;}
.y14e{bottom:94.716000px;}
.y65{bottom:98.316000px;}
.y128{bottom:104.436000px;}
.y130{bottom:107.316000px;}
.y30{bottom:115.236000px;}
.yad{bottom:115.776000px;}
.y64{bottom:119.376000px;}
.yfe{bottom:120.996000px;}
.y117{bottom:122.436000px;}
.y14d{bottom:122.796000px;}
.y127{bottom:125.496000px;}
.y12f{bottom:128.376000px;}
.yd1{bottom:134.316000px;}
.y2f{bottom:136.296000px;}
.y63{bottom:140.436000px;}
.yfd{bottom:142.056000px;}
.y116{bottom:143.496000px;}
.y14c{bottom:143.856000px;}
.y126{bottom:146.556000px;}
.y12e{bottom:149.436000px;}
.yd0{bottom:156.270000px;}
.yfc{bottom:156.990000px;}
.y2e{bottom:157.350000px;}
.yac{bottom:158.610000px;}
.y62{bottom:161.490000px;}
.y115{bottom:164.550000px;}
.y14b{bottom:164.910000px;}
.y125{bottom:167.610000px;}
.y12d{bottom:170.490000px;}
.yfb{bottom:178.050000px;}
.y2d{bottom:178.410000px;}
.yab{bottom:179.670000px;}
.y61{bottom:182.550000px;}
.ycf{bottom:184.890000px;}
.y114{bottom:185.610000px;}
.y14a{bottom:185.970000px;}
.y124{bottom:188.670000px;}
.y12c{bottom:191.550000px;}
.y2c{bottom:199.470000px;}
.y60{bottom:203.610000px;}
.yce{bottom:205.950000px;}
.y113{bottom:206.670000px;}
.y149{bottom:207.030000px;}
.y123{bottom:209.730000px;}
.y12b{bottom:212.610000px;}
.yfa{bottom:220.170000px;}
.y2b{bottom:220.530000px;}
.ya8{bottom:221.790000px;}
.y5f{bottom:224.670000px;}
.ycd{bottom:227.010000px;}
.y112{bottom:227.730000px;}
.y148{bottom:228.090000px;}
.y122{bottom:230.790000px;}
.y12a{bottom:233.670000px;}
.y2a{bottom:241.590000px;}
.y5e{bottom:245.730000px;}
.ycc{bottom:248.070000px;}
.y111{bottom:248.790000px;}
.y147{bottom:249.150000px;}
.y121{bottom:251.850000px;}
.y129{bottom:254.730000px;}
.y29{bottom:262.470000px;}
.yf9{bottom:263.010000px;}
.y110{bottom:263.730000px;}
.ya7{bottom:264.630000px;}
.y83{bottom:266.790000px;}
.ycb{bottom:269.130000px;}
.y146{bottom:270.210000px;}
.y120{bottom:272.910000px;}
.y5d{bottom:275.790000px;}
.y28{bottom:283.530000px;}
.yf8{bottom:284.790000px;}
.ya5{bottom:286.410000px;}
.y82{bottom:287.850000px;}
.yca{bottom:290.190000px;}
.y145{bottom:291.270000px;}
.y11f{bottom:293.970000px;}
.y5c{bottom:296.850000px;}
.y27{bottom:304.590000px;}
.y81{bottom:308.910000px;}
.yc9{bottom:311.250000px;}
.y144{bottom:312.330000px;}
.yf7{bottom:313.410000px;}
.ya4{bottom:315.030000px;}
.y5b{bottom:317.910000px;}
.y26{bottom:325.650000px;}
.y10e{bottom:326.910000px;}
.y80{bottom:330.015000px;}
.yc8{bottom:332.355000px;}
.y143{bottom:333.435000px;}
.yf6{bottom:334.515000px;}
.ya3{bottom:336.135000px;}
.y5a{bottom:339.015000px;}
.y25{bottom:346.755000px;}
.y7f{bottom:351.075000px;}
.yc7{bottom:353.415000px;}
.y142{bottom:354.495000px;}
.yf5{bottom:355.575000px;}
.ya2{bottom:357.195000px;}
.y59{bottom:360.075000px;}
.y24{bottom:367.815000px;}
.y10d{bottom:369.795000px;}
.y7e{bottom:372.135000px;}
.yc6{bottom:374.475000px;}
.y141{bottom:375.555000px;}
.yf4{bottom:376.635000px;}
.ya1{bottom:378.255000px;}
.y58{bottom:381.135000px;}
.y23{bottom:388.875000px;}
.y10c{bottom:391.575000px;}
.y7d{bottom:393.195000px;}
.yc5{bottom:395.535000px;}
.y140{bottom:396.615000px;}
.yf3{bottom:397.695000px;}
.ya0{bottom:399.315000px;}
.y57{bottom:402.195000px;}
.y22{bottom:409.935000px;}
.yc4{bottom:410.475000px;}
.y7c{bottom:414.255000px;}
.y13f{bottom:417.675000px;}
.yf2{bottom:418.755000px;}
.y9f{bottom:420.375000px;}
.y56{bottom:423.255000px;}
.y21{bottom:430.995000px;}
.yc3{bottom:431.535000px;}
.y7b{bottom:435.315000px;}
.y13e{bottom:438.735000px;}
.yf1{bottom:439.815000px;}
.y10b{bottom:441.255000px;}
.y9e{bottom:441.435000px;}
.y55{bottom:444.315000px;}
.y20{bottom:452.055000px;}
.y7a{bottom:456.375000px;}
.y13d{bottom:459.615000px;}
.yf0{bottom:460.875000px;}
.y10a{bottom:462.315000px;}
.y9d{bottom:462.495000px;}
.y54{bottom:465.375000px;}
.yc1{bottom:473.655000px;}
.y1f{bottom:475.455000px;}
.y79{bottom:477.435000px;}
.y13c{bottom:480.675000px;}
.yef{bottom:481.935000px;}
.y109{bottom:483.375000px;}
.y9c{bottom:483.555000px;}
.y53{bottom:486.435000px;}
.y78{bottom:498.495000px;}
.y13b{bottom:501.735000px;}
.yee{bottom:502.995000px;}
.y108{bottom:504.435000px;}
.y9b{bottom:504.615000px;}
.y1e{bottom:505.515000px;}
.y52{bottom:507.495000px;}
.yc0{bottom:516.495000px;}
.y77{bottom:519.555000px;}
.y13a{bottom:522.795000px;}
.yed{bottom:524.055000px;}
.y107{bottom:525.495000px;}
.y1d{bottom:526.575000px;}
.y51{bottom:528.555000px;}
.y9a{bottom:537.915000px;}
.ybf{bottom:538.275000px;}
.y76{bottom:540.615000px;}
.y139{bottom:543.855000px;}
.yec{bottom:545.115000px;}
.y106{bottom:546.555000px;}
.y1c{bottom:547.635000px;}
.y50{bottom:549.615000px;}
.y99{bottom:556.275000px;}
.y75{bottom:561.675000px;}
.y138{bottom:564.915000px;}
.yeb{bottom:566.175000px;}
.ybe{bottom:566.895000px;}
.y105{bottom:567.615000px;}
.y1b{bottom:568.695000px;}
.y4f{bottom:570.675000px;}
.y98{bottom:574.635000px;}
.y74{bottom:582.735000px;}
.y137{bottom:585.975000px;}
.yea{bottom:587.235000px;}
.ybd{bottom:587.955000px;}
.y104{bottom:588.675000px;}
.y1a{bottom:589.755000px;}
.y4e{bottom:591.735000px;}
.y96{bottom:592.815000px;}
.y73{bottom:603.825000px;}
.y136{bottom:607.065000px;}
.ye9{bottom:608.325000px;}
.ybc{bottom:609.765000px;}
.y19{bottom:610.845000px;}
.y95{bottom:611.205000px;}
.y4d{bottom:612.825000px;}
.y133{bottom:621.285000px;}
.y72{bottom:624.885000px;}
.ye8{bottom:629.385000px;}
.y94{bottom:629.565000px;}
.ybb{bottom:630.825000px;}
.y18{bottom:631.905000px;}
.y4c{bottom:633.885000px;}
.y71{bottom:645.945000px;}
.y92{bottom:647.925000px;}
.ye7{bottom:650.445000px;}
.yba{bottom:651.885000px;}
.y17{bottom:652.965000px;}
.y4b{bottom:654.945000px;}
.ye6{bottom:665.385000px;}
.y91{bottom:666.105000px;}
.y70{bottom:667.005000px;}
.yb9{bottom:672.945000px;}
.y16{bottom:674.025000px;}
.y4a{bottom:676.005000px;}
.y8d{bottom:685.185000px;}
.ye5{bottom:686.445000px;}
.y6f{bottom:688.065000px;}
.yb8{bottom:694.005000px;}
.y15{bottom:695.085000px;}
.y49{bottom:697.065000px;}
.y8f{bottom:704.265000px;}
.y131{bottom:705.525000px;}
.y6e{bottom:709.125000px;}
.yb7{bottom:715.065000px;}
.y14{bottom:716.145000px;}
.y48{bottom:718.125000px;}
.ye4{bottom:728.565000px;}
.y6d{bottom:730.185000px;}
.yb6{bottom:736.125000px;}
.y13{bottom:737.205000px;}
.y47{bottom:739.185000px;}
.y103{bottom:751.065000px;}
.y6c{bottom:751.245000px;}
.yb5{bottom:757.185000px;}
.y12{bottom:758.265000px;}
.y46{bottom:760.245000px;}
.ye3{bottom:771.405000px;}
.yb4{bottom:772.125000px;}
.y6b{bottom:772.305000px;}
.y11e{bottom:778.245000px;}
.y11{bottom:779.325000px;}
.y45{bottom:781.305000px;}
.yb3{bottom:793.185000px;}
.y6a{bottom:793.365000px;}
.y11d{bottom:799.305000px;}
.y10{bottom:800.385000px;}
.y44{bottom:802.365000px;}
.y102{bottom:814.245000px;}
.y69{bottom:814.425000px;}
.y11c{bottom:820.365000px;}
.ye2{bottom:821.985000px;}
.y43{bottom:823.425000px;}
.yf{bottom:823.785000px;}
.yb1{bottom:835.305000px;}
.y68{bottom:835.485000px;}
.ye1{bottom:843.045000px;}
.y42{bottom:844.485000px;}
.ye{bottom:850.245000px;}
.y11b{bottom:856.365000px;}
.y67{bottom:856.545000px;}
.y100{bottom:857.265000px;}
.ye0{bottom:864.150000px;}
.y41{bottom:865.590000px;}
.yd{bottom:871.350000px;}
.y66{bottom:877.650000px;}
.yaf{bottom:878.370000px;}
.yff{bottom:879.090000px;}
.ydf{bottom:885.030000px;}
.y40{bottom:886.650000px;}
.yc{bottom:887.190000px;}
.y11a{bottom:898.530000px;}
.y8c{bottom:898.710000px;}
.yae{bottom:900.150000px;}
.yde{bottom:906.090000px;}
.y3f{bottom:907.710000px;}
.yb{bottom:913.470000px;}
.y8b{bottom:919.770000px;}
.ydd{bottom:927.150000px;}
.y3e{bottom:928.770000px;}
.ya{bottom:930.210000px;}
.y8a{bottom:940.830000px;}
.y119{bottom:941.370000px;}
.ydc{bottom:948.210000px;}
.y3d{bottom:949.830000px;}
.y9{bottom:952.530000px;}
.y89{bottom:961.890000px;}
.y118{bottom:963.330000px;}
.ydb{bottom:969.270000px;}
.y3c{bottom:970.890000px;}
.y8{bottom:977.550000px;}
.y88{bottom:982.950000px;}
.yda{bottom:990.330000px;}
.y3b{bottom:991.950000px;}
.y87{bottom:1004.010000px;}
.y7{bottom:1011.210000px;}
.yd9{bottom:1011.390000px;}
.y3a{bottom:1013.010000px;}
.y86{bottom:1025.070000px;}
.yd8{bottom:1032.450000px;}
.y39{bottom:1034.070000px;}
.y85{bottom:1046.130000px;}
.y5{bottom:1051.530000px;}
.yd7{bottom:1053.510000px;}
.y38{bottom:1055.130000px;}
.y84{bottom:1067.190000px;}
.yd6{bottom:1074.570000px;}
.y37{bottom:1076.190000px;}
.y4{bottom:1083.750000px;}
.yd5{bottom:1089.690000px;}
.y36{bottom:1097.250000px;}
.yd3{bottom:1110.750000px;}
.y3{bottom:1115.790000px;}
.y35{bottom:1118.310000px;}
.y34{bottom:1139.400000px;}
.y2{bottom:1148.040000px;}
.y33{bottom:1170.180000px;}
.y1{bottom:1182.600000px;}
.y32{bottom:1193.400000px;}
.h18{height:2.960186px;}
.hc{height:18.180000px;}
.hb{height:18.360000px;}
.hd{height:18.396000px;}
.h10{height:20.880000px;}
.he{height:21.060000px;}
.h14{height:21.096000px;}
.ha{height:37.440000px;}
.h7{height:38.671172px;}
.h13{height:41.976000px;}
.hf{height:42.120000px;}
.h11{height:42.156000px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.h17{height:61.423863px;}
.h9{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h12{height:68.084282px;}
.h16{height:84.240000px;}
.h4{height:98.051133px;}
.h15{height:300.630000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:46.980000px;}
.w9{width:53.820000px;}
.w7{width:53.856000px;}
.w8{width:54.000000px;}
.w3{width:70.236000px;}
.w1e{width:97.956000px;}
.w1c{width:98.316000px;}
.w1f{width:98.820000px;}
.w21{width:100.440000px;}
.w20{width:101.556000px;}
.w14{width:101.736000px;}
.w17{width:102.240000px;}
.wc{width:102.996000px;}
.we{width:103.500000px;}
.wf{width:103.536000px;}
.w1d{width:103.680000px;}
.w19{width:104.040000px;}
.w16{width:104.976000px;}
.w18{width:105.156000px;}
.w10{width:105.300000px;}
.w15{width:107.460000px;}
.wd{width:109.080000px;}
.w1a{width:150.690000px;}
.w12{width:155.910000px;}
.wa{width:157.710000px;}
.w24{width:183.630000px;}
.w5{width:262.830000px;}
.w23{width:395.535000px;}
.w22{width:405.795000px;}
.w4{width:439.455000px;}
.w25{width:589.065000px;}
.w1b{width:600.945000px;}
.w13{width:625.605000px;}
.wb{width:627.405000px;}
.w11{width:785.130000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:8.100000px;}
.x48{left:12.420000px;}
.xa{left:15.840000px;}
.x46{left:17.640000px;}
.xe{left:19.440000px;}
.x3f{left:20.520000px;}
.x12{left:23.220000px;}
.x3a{left:24.300000px;}
.x5{left:26.100000px;}
.x2c{left:28.260000px;}
.x1f{left:30.240000px;}
.x11{left:31.320000px;}
.x20{left:33.300000px;}
.x1d{left:34.560000px;}
.x47{left:35.820000px;}
.x49{left:37.470000px;}
.x31{left:41.400000px;}
.x2b{left:42.660000px;}
.x16{left:43.740000px;}
.x27{left:44.820000px;}
.x13{left:45.936000px;}
.x18{left:47.340000px;}
.x37{left:50.220000px;}
.x2e{left:51.840000px;}
.x2{left:52.919987px;}
.x1{left:53.999987px;}
.x38{left:57.636000px;}
.x21{left:61.236000px;}
.x36{left:67.896000px;}
.x2d{left:69.696000px;}
.x1e{left:71.316000px;}
.x9{left:72.540000px;}
.x3c{left:74.339987px;}
.x4a{left:75.599987px;}
.x42{left:80.999987px;}
.x4{left:86.939987px;}
.x22{left:103.355987px;}
.x3{left:108.035987px;}
.x6{left:124.236000px;}
.x4b{left:168.870000px;}
.x7{left:175.719000px;}
.x39{left:205.425000px;}
.x23{left:209.910000px;}
.x14{left:211.710000px;}
.x24{left:213.705000px;}
.x2f{left:221.430000px;}
.x3e{left:223.785000px;}
.x15{left:225.765000px;}
.x30{left:227.565000px;}
.x4c{left:237.630000px;}
.x3b{left:239.445000px;}
.x3d{left:244.305000px;}
.x40{left:249.345000px;}
.x41{left:255.315000px;}
.x25{left:311.655000px;}
.x17{left:314.715000px;}
.x32{left:319.755000px;}
.x45{left:392.835000px;}
.x43{left:399.675000px;}
.x26{left:419.115000px;}
.x19{left:423.795000px;}
.x44{left:451.695000px;}
.x33{left:521.565000px;}
.x28{left:524.085000px;}
.x1a{left:526.785000px;}
.x8{left:563.685000px;}
.xb{left:610.845000px;}
.x34{left:620.385000px;}
.x29{left:626.325000px;}
.x1b{left:630.285000px;}
.xd{left:664.710000px;}
.xf{left:718.710000px;}
.x35{left:721.950000px;}
.x2a{left:731.490000px;}
.x1c{left:733.830000px;}
.x10{left:772.530000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls2b{letter-spacing:-0.698667pt;}
.ls2f{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.412267pt;}
.ls22{letter-spacing:-0.290133pt;}
.ls1b{letter-spacing:-0.267733pt;}
.ls19{letter-spacing:-0.218667pt;}
.ls9{letter-spacing:-0.213867pt;}
.ls8{letter-spacing:-0.156267pt;}
.ls18{letter-spacing:-0.146133pt;}
.ls1d{letter-spacing:-0.099733pt;}
.lsc{letter-spacing:-0.095467pt;}
.ls25{letter-spacing:-0.069867pt;}
.ls1e{letter-spacing:-0.061867pt;}
.ls7{letter-spacing:-0.057600pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls1f{letter-spacing:-0.036480pt;}
.ls14{letter-spacing:-0.001280pt;}
.ls4{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.053760pt;}
.ls2e{letter-spacing:0.053867pt;}
.ls27{letter-spacing:0.124800pt;}
.ls5{letter-spacing:0.133333pt;}
.ls20{letter-spacing:0.154667pt;}
.ls21{letter-spacing:0.155733pt;}
.lsa{letter-spacing:0.160000pt;}
.ls17{letter-spacing:0.160533pt;}
.ls1c{letter-spacing:0.194133pt;}
.ls16{letter-spacing:0.195733pt;}
.ls3{letter-spacing:0.272000pt;}
.ls15{letter-spacing:0.274667pt;}
.ls26{letter-spacing:0.426240pt;}
.ls24{letter-spacing:0.581333pt;}
.ls29{letter-spacing:0.693333pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls2a{letter-spacing:2.074880pt;}
.ls28{letter-spacing:3.994880pt;}
.ls2d{letter-spacing:11.472640pt;}
.ls2c{letter-spacing:38.480640pt;}
.lsf{letter-spacing:53.072640pt;}
.ls11{letter-spacing:54.992640pt;}
.lse{letter-spacing:55.632640pt;}
.ls13{letter-spacing:56.912640pt;}
.lsd{letter-spacing:57.552640pt;}
.ls10{letter-spacing:59.472640pt;}
.ls12{letter-spacing:65.232640pt;}
.ls1a{letter-spacing:69.072640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsc{word-spacing:-12.279787pt;}
.ws7{word-spacing:-12.277120pt;}
.wsd{word-spacing:-12.200853pt;}
.ws12{word-spacing:-12.199253pt;}
.wse{word-spacing:-12.165653pt;}
.ws15{word-spacing:-12.160853pt;}
.ws17{word-spacing:-12.129920pt;}
.ws6{word-spacing:-12.005120pt;}
.wsb{word-spacing:-12.003840pt;}
.ws14{word-spacing:-11.968640pt;}
.ws9{word-spacing:-11.953280pt;}
.ws5{word-spacing:-11.947520pt;}
.wsa{word-spacing:-11.909653pt;}
.ws13{word-spacing:-11.905387pt;}
.wsf{word-spacing:-11.858987pt;}
.ws10{word-spacing:-11.786453pt;}
.ws11{word-spacing:-11.737387pt;}
.ws16{word-spacing:-11.714987pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.810560pt;}
.ws8{word-spacing:0.000000pt;}
._4{margin-left:-1289.991467pt;}
._2{margin-left:-1208.709547pt;}
._3{margin-left:-891.553493pt;}
._5{margin-left:-517.014720pt;}
._7{margin-left:-3.955200pt;}
._6{margin-left:-2.944000pt;}
._12{margin-left:-2.008747pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._a{width:2.613760pt;}
._d{width:3.944107pt;}
._c{width:4.887040pt;}
._9{width:5.788160pt;}
._8{width:6.735787pt;}
._10{width:7.765973pt;}
._e{width:8.871040pt;}
._f{width:9.844907pt;}
._11{width:11.016747pt;}
._13{width:13.032107pt;}
._17{width:14.849493pt;}
._16{width:16.505813pt;}
._15{width:17.635840pt;}
._19{width:18.645120pt;}
._14{width:20.079360pt;}
._18{width:21.017813pt;}
._b{width:38.183253pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y132{bottom:2.560000pt;}
.y93{bottom:3.520000pt;}
.y90{bottom:3.680000pt;}
.y97{bottom:3.706667pt;}
.yb0{bottom:5.920000pt;}
.ya6{bottom:6.080000pt;}
.y101{bottom:6.120000pt;}
.y8e{bottom:12.160000pt;}
.yc2{bottom:15.360000pt;}
.ya9{bottom:15.520000pt;}
.y10f{bottom:15.560000pt;}
.yd4{bottom:24.666667pt;}
.yaa{bottom:24.800000pt;}
.yb2{bottom:24.840000pt;}
.y14f{bottom:36.320000pt;}
.y135{bottom:43.520000pt;}
.y6{bottom:54.592000pt;}
.y150{bottom:62.234667pt;}
.y134{bottom:62.240000pt;}
.yd2{bottom:81.312000pt;}
.y31{bottom:83.712000pt;}
.y14e{bottom:84.192000pt;}
.y65{bottom:87.392000pt;}
.y128{bottom:92.832000pt;}
.y130{bottom:95.392000pt;}
.y30{bottom:102.432000pt;}
.yad{bottom:102.912000pt;}
.y64{bottom:106.112000pt;}
.yfe{bottom:107.552000pt;}
.y117{bottom:108.832000pt;}
.y14d{bottom:109.152000pt;}
.y127{bottom:111.552000pt;}
.y12f{bottom:114.112000pt;}
.yd1{bottom:119.392000pt;}
.y2f{bottom:121.152000pt;}
.y63{bottom:124.832000pt;}
.yfd{bottom:126.272000pt;}
.y116{bottom:127.552000pt;}
.y14c{bottom:127.872000pt;}
.y126{bottom:130.272000pt;}
.y12e{bottom:132.832000pt;}
.yd0{bottom:138.906667pt;}
.yfc{bottom:139.546667pt;}
.y2e{bottom:139.866667pt;}
.yac{bottom:140.986667pt;}
.y62{bottom:143.546667pt;}
.y115{bottom:146.266667pt;}
.y14b{bottom:146.586667pt;}
.y125{bottom:148.986667pt;}
.y12d{bottom:151.546667pt;}
.yfb{bottom:158.266667pt;}
.y2d{bottom:158.586667pt;}
.yab{bottom:159.706667pt;}
.y61{bottom:162.266667pt;}
.ycf{bottom:164.346667pt;}
.y114{bottom:164.986667pt;}
.y14a{bottom:165.306667pt;}
.y124{bottom:167.706667pt;}
.y12c{bottom:170.266667pt;}
.y2c{bottom:177.306667pt;}
.y60{bottom:180.986667pt;}
.yce{bottom:183.066667pt;}
.y113{bottom:183.706667pt;}
.y149{bottom:184.026667pt;}
.y123{bottom:186.426667pt;}
.y12b{bottom:188.986667pt;}
.yfa{bottom:195.706667pt;}
.y2b{bottom:196.026667pt;}
.ya8{bottom:197.146667pt;}
.y5f{bottom:199.706667pt;}
.ycd{bottom:201.786667pt;}
.y112{bottom:202.426667pt;}
.y148{bottom:202.746667pt;}
.y122{bottom:205.146667pt;}
.y12a{bottom:207.706667pt;}
.y2a{bottom:214.746667pt;}
.y5e{bottom:218.426667pt;}
.ycc{bottom:220.506667pt;}
.y111{bottom:221.146667pt;}
.y147{bottom:221.466667pt;}
.y121{bottom:223.866667pt;}
.y129{bottom:226.426667pt;}
.y29{bottom:233.306667pt;}
.yf9{bottom:233.786667pt;}
.y110{bottom:234.426667pt;}
.ya7{bottom:235.226667pt;}
.y83{bottom:237.146667pt;}
.ycb{bottom:239.226667pt;}
.y146{bottom:240.186667pt;}
.y120{bottom:242.586667pt;}
.y5d{bottom:245.146667pt;}
.y28{bottom:252.026667pt;}
.yf8{bottom:253.146667pt;}
.ya5{bottom:254.586667pt;}
.y82{bottom:255.866667pt;}
.yca{bottom:257.946667pt;}
.y145{bottom:258.906667pt;}
.y11f{bottom:261.306667pt;}
.y5c{bottom:263.866667pt;}
.y27{bottom:270.746667pt;}
.y81{bottom:274.586667pt;}
.yc9{bottom:276.666667pt;}
.y144{bottom:277.626667pt;}
.yf7{bottom:278.586667pt;}
.ya4{bottom:280.026667pt;}
.y5b{bottom:282.586667pt;}
.y26{bottom:289.466667pt;}
.y10e{bottom:290.586667pt;}
.y80{bottom:293.346667pt;}
.yc8{bottom:295.426667pt;}
.y143{bottom:296.386667pt;}
.yf6{bottom:297.346667pt;}
.ya3{bottom:298.786667pt;}
.y5a{bottom:301.346667pt;}
.y25{bottom:308.226667pt;}
.y7f{bottom:312.066667pt;}
.yc7{bottom:314.146667pt;}
.y142{bottom:315.106667pt;}
.yf5{bottom:316.066667pt;}
.ya2{bottom:317.506667pt;}
.y59{bottom:320.066667pt;}
.y24{bottom:326.946667pt;}
.y10d{bottom:328.706667pt;}
.y7e{bottom:330.786667pt;}
.yc6{bottom:332.866667pt;}
.y141{bottom:333.826667pt;}
.yf4{bottom:334.786667pt;}
.ya1{bottom:336.226667pt;}
.y58{bottom:338.786667pt;}
.y23{bottom:345.666667pt;}
.y10c{bottom:348.066667pt;}
.y7d{bottom:349.506667pt;}
.yc5{bottom:351.586667pt;}
.y140{bottom:352.546667pt;}
.yf3{bottom:353.506667pt;}
.ya0{bottom:354.946667pt;}
.y57{bottom:357.506667pt;}
.y22{bottom:364.386667pt;}
.yc4{bottom:364.866667pt;}
.y7c{bottom:368.226667pt;}
.y13f{bottom:371.266667pt;}
.yf2{bottom:372.226667pt;}
.y9f{bottom:373.666667pt;}
.y56{bottom:376.226667pt;}
.y21{bottom:383.106667pt;}
.yc3{bottom:383.586667pt;}
.y7b{bottom:386.946667pt;}
.y13e{bottom:389.986667pt;}
.yf1{bottom:390.946667pt;}
.y10b{bottom:392.226667pt;}
.y9e{bottom:392.386667pt;}
.y55{bottom:394.946667pt;}
.y20{bottom:401.826667pt;}
.y7a{bottom:405.666667pt;}
.y13d{bottom:408.546667pt;}
.yf0{bottom:409.666667pt;}
.y10a{bottom:410.946667pt;}
.y9d{bottom:411.106667pt;}
.y54{bottom:413.666667pt;}
.yc1{bottom:421.026667pt;}
.y1f{bottom:422.626667pt;}
.y79{bottom:424.386667pt;}
.y13c{bottom:427.266667pt;}
.yef{bottom:428.386667pt;}
.y109{bottom:429.666667pt;}
.y9c{bottom:429.826667pt;}
.y53{bottom:432.386667pt;}
.y78{bottom:443.106667pt;}
.y13b{bottom:445.986667pt;}
.yee{bottom:447.106667pt;}
.y108{bottom:448.386667pt;}
.y9b{bottom:448.546667pt;}
.y1e{bottom:449.346667pt;}
.y52{bottom:451.106667pt;}
.yc0{bottom:459.106667pt;}
.y77{bottom:461.826667pt;}
.y13a{bottom:464.706667pt;}
.yed{bottom:465.826667pt;}
.y107{bottom:467.106667pt;}
.y1d{bottom:468.066667pt;}
.y51{bottom:469.826667pt;}
.y9a{bottom:478.146667pt;}
.ybf{bottom:478.466667pt;}
.y76{bottom:480.546667pt;}
.y139{bottom:483.426667pt;}
.yec{bottom:484.546667pt;}
.y106{bottom:485.826667pt;}
.y1c{bottom:486.786667pt;}
.y50{bottom:488.546667pt;}
.y99{bottom:494.466667pt;}
.y75{bottom:499.266667pt;}
.y138{bottom:502.146667pt;}
.yeb{bottom:503.266667pt;}
.ybe{bottom:503.906667pt;}
.y105{bottom:504.546667pt;}
.y1b{bottom:505.506667pt;}
.y4f{bottom:507.266667pt;}
.y98{bottom:510.786667pt;}
.y74{bottom:517.986667pt;}
.y137{bottom:520.866667pt;}
.yea{bottom:521.986667pt;}
.ybd{bottom:522.626667pt;}
.y104{bottom:523.266667pt;}
.y1a{bottom:524.226667pt;}
.y4e{bottom:525.986667pt;}
.y96{bottom:526.946667pt;}
.y73{bottom:536.733333pt;}
.y136{bottom:539.613333pt;}
.ye9{bottom:540.733333pt;}
.ybc{bottom:542.013333pt;}
.y19{bottom:542.973333pt;}
.y95{bottom:543.293333pt;}
.y4d{bottom:544.733333pt;}
.y133{bottom:552.253333pt;}
.y72{bottom:555.453333pt;}
.ye8{bottom:559.453333pt;}
.y94{bottom:559.613333pt;}
.ybb{bottom:560.733333pt;}
.y18{bottom:561.693333pt;}
.y4c{bottom:563.453333pt;}
.y71{bottom:574.173333pt;}
.y92{bottom:575.933333pt;}
.ye7{bottom:578.173333pt;}
.yba{bottom:579.453333pt;}
.y17{bottom:580.413333pt;}
.y4b{bottom:582.173333pt;}
.ye6{bottom:591.453333pt;}
.y91{bottom:592.093333pt;}
.y70{bottom:592.893333pt;}
.yb9{bottom:598.173333pt;}
.y16{bottom:599.133333pt;}
.y4a{bottom:600.893333pt;}
.y8d{bottom:609.053333pt;}
.ye5{bottom:610.173333pt;}
.y6f{bottom:611.613333pt;}
.yb8{bottom:616.893333pt;}
.y15{bottom:617.853333pt;}
.y49{bottom:619.613333pt;}
.y8f{bottom:626.013333pt;}
.y131{bottom:627.133333pt;}
.y6e{bottom:630.333333pt;}
.yb7{bottom:635.613333pt;}
.y14{bottom:636.573333pt;}
.y48{bottom:638.333333pt;}
.ye4{bottom:647.613333pt;}
.y6d{bottom:649.053333pt;}
.yb6{bottom:654.333333pt;}
.y13{bottom:655.293333pt;}
.y47{bottom:657.053333pt;}
.y103{bottom:667.613333pt;}
.y6c{bottom:667.773333pt;}
.yb5{bottom:673.053333pt;}
.y12{bottom:674.013333pt;}
.y46{bottom:675.773333pt;}
.ye3{bottom:685.693333pt;}
.yb4{bottom:686.333333pt;}
.y6b{bottom:686.493333pt;}
.y11e{bottom:691.773333pt;}
.y11{bottom:692.733333pt;}
.y45{bottom:694.493333pt;}
.yb3{bottom:705.053333pt;}
.y6a{bottom:705.213333pt;}
.y11d{bottom:710.493333pt;}
.y10{bottom:711.453333pt;}
.y44{bottom:713.213333pt;}
.y102{bottom:723.773333pt;}
.y69{bottom:723.933333pt;}
.y11c{bottom:729.213333pt;}
.ye2{bottom:730.653333pt;}
.y43{bottom:731.933333pt;}
.yf{bottom:732.253333pt;}
.yb1{bottom:742.493333pt;}
.y68{bottom:742.653333pt;}
.ye1{bottom:749.373333pt;}
.y42{bottom:750.653333pt;}
.ye{bottom:755.773333pt;}
.y11b{bottom:761.213333pt;}
.y67{bottom:761.373333pt;}
.y100{bottom:762.013333pt;}
.ye0{bottom:768.133333pt;}
.y41{bottom:769.413333pt;}
.yd{bottom:774.533333pt;}
.y66{bottom:780.133333pt;}
.yaf{bottom:780.773333pt;}
.yff{bottom:781.413333pt;}
.ydf{bottom:786.693333pt;}
.y40{bottom:788.133333pt;}
.yc{bottom:788.613333pt;}
.y11a{bottom:798.693333pt;}
.y8c{bottom:798.853333pt;}
.yae{bottom:800.133333pt;}
.yde{bottom:805.413333pt;}
.y3f{bottom:806.853333pt;}
.yb{bottom:811.973333pt;}
.y8b{bottom:817.573333pt;}
.ydd{bottom:824.133333pt;}
.y3e{bottom:825.573333pt;}
.ya{bottom:826.853333pt;}
.y8a{bottom:836.293333pt;}
.y119{bottom:836.773333pt;}
.ydc{bottom:842.853333pt;}
.y3d{bottom:844.293333pt;}
.y9{bottom:846.693333pt;}
.y89{bottom:855.013333pt;}
.y118{bottom:856.293333pt;}
.ydb{bottom:861.573333pt;}
.y3c{bottom:863.013333pt;}
.y8{bottom:868.933333pt;}
.y88{bottom:873.733333pt;}
.yda{bottom:880.293333pt;}
.y3b{bottom:881.733333pt;}
.y87{bottom:892.453333pt;}
.y7{bottom:898.853333pt;}
.yd9{bottom:899.013333pt;}
.y3a{bottom:900.453333pt;}
.y86{bottom:911.173333pt;}
.yd8{bottom:917.733333pt;}
.y39{bottom:919.173333pt;}
.y85{bottom:929.893333pt;}
.y5{bottom:934.693333pt;}
.yd7{bottom:936.453333pt;}
.y38{bottom:937.893333pt;}
.y84{bottom:948.613333pt;}
.yd6{bottom:955.173333pt;}
.y37{bottom:956.613333pt;}
.y4{bottom:963.333333pt;}
.yd5{bottom:968.613333pt;}
.y36{bottom:975.333333pt;}
.yd3{bottom:987.333333pt;}
.y3{bottom:991.813333pt;}
.y35{bottom:994.053333pt;}
.y34{bottom:1012.800000pt;}
.y2{bottom:1020.480000pt;}
.y33{bottom:1040.160000pt;}
.y1{bottom:1051.200000pt;}
.y32{bottom:1060.800000pt;}
.h18{height:2.631277pt;}
.hc{height:16.160000pt;}
.hb{height:16.320000pt;}
.hd{height:16.352000pt;}
.h10{height:18.560000pt;}
.he{height:18.720000pt;}
.h14{height:18.752000pt;}
.ha{height:33.280000pt;}
.h7{height:34.374375pt;}
.h13{height:37.312000pt;}
.hf{height:37.440000pt;}
.h11{height:37.472000pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.h17{height:54.598989pt;}
.h9{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h12{height:60.519362pt;}
.h16{height:74.880000pt;}
.h4{height:87.156562pt;}
.h15{height:267.226667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:41.760000pt;}
.w9{width:47.840000pt;}
.w7{width:47.872000pt;}
.w8{width:48.000000pt;}
.w3{width:62.432000pt;}
.w1e{width:87.072000pt;}
.w1c{width:87.392000pt;}
.w1f{width:87.840000pt;}
.w21{width:89.280000pt;}
.w20{width:90.272000pt;}
.w14{width:90.432000pt;}
.w17{width:90.880000pt;}
.wc{width:91.552000pt;}
.we{width:92.000000pt;}
.wf{width:92.032000pt;}
.w1d{width:92.160000pt;}
.w19{width:92.480000pt;}
.w16{width:93.312000pt;}
.w18{width:93.472000pt;}
.w10{width:93.600000pt;}
.w15{width:95.520000pt;}
.wd{width:96.960000pt;}
.w1a{width:133.946667pt;}
.w12{width:138.586667pt;}
.wa{width:140.186667pt;}
.w24{width:163.226667pt;}
.w5{width:233.626667pt;}
.w23{width:351.586667pt;}
.w22{width:360.706667pt;}
.w4{width:390.626667pt;}
.w25{width:523.613333pt;}
.w1b{width:534.173333pt;}
.w13{width:556.093333pt;}
.wb{width:557.693333pt;}
.w11{width:697.893333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:7.200000pt;}
.x48{left:11.040000pt;}
.xa{left:14.080000pt;}
.x46{left:15.680000pt;}
.xe{left:17.280000pt;}
.x3f{left:18.240000pt;}
.x12{left:20.640000pt;}
.x3a{left:21.600000pt;}
.x5{left:23.200000pt;}
.x2c{left:25.120000pt;}
.x1f{left:26.880000pt;}
.x11{left:27.840000pt;}
.x20{left:29.600000pt;}
.x1d{left:30.720000pt;}
.x47{left:31.840000pt;}
.x49{left:33.306667pt;}
.x31{left:36.800000pt;}
.x2b{left:37.920000pt;}
.x16{left:38.880000pt;}
.x27{left:39.840000pt;}
.x13{left:40.832000pt;}
.x18{left:42.080000pt;}
.x37{left:44.640000pt;}
.x2e{left:46.080000pt;}
.x2{left:47.039988pt;}
.x1{left:47.999988pt;}
.x38{left:51.232000pt;}
.x21{left:54.432000pt;}
.x36{left:60.352000pt;}
.x2d{left:61.952000pt;}
.x1e{left:63.392000pt;}
.x9{left:64.480000pt;}
.x3c{left:66.079988pt;}
.x4a{left:67.199988pt;}
.x42{left:71.999988pt;}
.x4{left:77.279988pt;}
.x22{left:91.871988pt;}
.x3{left:96.031988pt;}
.x6{left:110.432000pt;}
.x4b{left:150.106667pt;}
.x7{left:156.194667pt;}
.x39{left:182.600000pt;}
.x23{left:186.586667pt;}
.x14{left:188.186667pt;}
.x24{left:189.960000pt;}
.x2f{left:196.826667pt;}
.x3e{left:198.920000pt;}
.x15{left:200.680000pt;}
.x30{left:202.280000pt;}
.x4c{left:211.226667pt;}
.x3b{left:212.840000pt;}
.x3d{left:217.160000pt;}
.x40{left:221.640000pt;}
.x41{left:226.946667pt;}
.x25{left:277.026667pt;}
.x17{left:279.746667pt;}
.x32{left:284.226667pt;}
.x45{left:349.186667pt;}
.x43{left:355.266667pt;}
.x26{left:372.546667pt;}
.x19{left:376.706667pt;}
.x44{left:401.506667pt;}
.x33{left:463.613333pt;}
.x28{left:465.853333pt;}
.x1a{left:468.253333pt;}
.x8{left:501.053333pt;}
.xb{left:542.973333pt;}
.x34{left:551.453333pt;}
.x29{left:556.733333pt;}
.x1b{left:560.253333pt;}
.xd{left:590.853333pt;}
.xf{left:638.853333pt;}
.x35{left:641.733333pt;}
.x2a{left:650.213333pt;}
.x1c{left:652.293333pt;}
.x10{left:686.693333pt;}
}




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