
    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_4b574a70682fb1baf3e24dc0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.106934;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_38eada282419023fb4ad3428.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.112305;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_71d22cd1a0f319d1e4eca1dd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d7cfbbf6574b1dd426b2f880.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_2c4db6410abdfe86584b14a1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.106934;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_ee60e7efd675704ab296db26.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.084961;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_af1db3fd98b3b161c20303a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.106934;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_6193fc93719873dbca485474.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2380f2a9f33756c11e007995.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.084961;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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls1c{letter-spacing:-0.924000px;}
.ls1a{letter-spacing:-0.774000px;}
.ls3{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.612000px;}
.ls9{letter-spacing:-0.540000px;}
.lsd{letter-spacing:-0.460200px;}
.ls12{letter-spacing:-0.413400px;}
.ls5{letter-spacing:-0.360000px;}
.ls13{letter-spacing:-0.259800px;}
.ls14{letter-spacing:-0.253200px;}
.ls6{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.053280px;}
.lsf{letter-spacing:0.106560px;}
.lse{letter-spacing:0.106800px;}
.ls8{letter-spacing:0.180000px;}
.lsa{letter-spacing:0.206400px;}
.ls10{letter-spacing:0.206640px;}
.ls4{letter-spacing:0.259800px;}
.ls19{letter-spacing:0.259920px;}
.ls1b{letter-spacing:0.306600px;}
.ls0{letter-spacing:0.360000px;}
.ls15{letter-spacing:2.340000px;}
.ls17{letter-spacing:3.780000px;}
.ls16{letter-spacing:5.220000px;}
.ls18{letter-spacing:8.820000px;}
.ls1e{letter-spacing:13.860000px;}
.ls1d{letter-spacing:16.506720px;}
.ls11{letter-spacing:34.740000px;}
.ls1{letter-spacing:46.026720px;}
.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:-16.560000px;}
.ws2{word-spacing:-15.840000px;}
.ws5{word-spacing:-15.300000px;}
.wsf{word-spacing:-15.246600px;}
.wsb{word-spacing:-15.199800px;}
.ws8{word-spacing:-15.146400px;}
.wsa{word-spacing:-15.046800px;}
.ws9{word-spacing:-14.993280px;}
.ws3{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws4{word-spacing:-14.733600px;}
.wse{word-spacing:-14.686800px;}
.wsd{word-spacing:-14.680200px;}
.ws10{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.526600px;}
.ws1{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._1b{margin-left:-3.917040px;}
._13{margin-left:-2.684160px;}
._1{margin-left:-1.260000px;}
._0{width:1.020000px;}
._30{width:2.023680px;}
._11{width:3.026160px;}
._1a{width:4.094160px;}
._18{width:5.132880px;}
._15{width:6.329280px;}
._14{width:7.650480px;}
._12{width:9.396960px;}
._6{width:10.800000px;}
._16{width:12.165360px;}
._1c{width:13.911840px;}
._17{width:16.434000px;}
._20{width:18.098640px;}
._f{width:19.128000px;}
._1d{width:20.157840px;}
._31{width:21.740880px;}
._34{width:23.381520px;}
._25{width:24.860160px;}
._24{width:26.294400px;}
._29{width:28.206720px;}
._21{width:29.506560px;}
._2a{width:30.724800px;}
._23{width:31.788240px;}
._22{width:32.927760px;}
._2f{width:34.601040px;}
._1f{width:37.589040px;}
._2b{width:39.800160px;}
._28{width:41.772240px;}
._27{width:43.505280px;}
._19{width:44.880000px;}
._2c{width:51.449280px;}
._3d{width:56.784240px;}
._35{width:58.620480px;}
._26{width:60.054720px;}
._3b{width:63.984960px;}
._2e{width:65.616480px;}
._38{width:74.998800px;}
._7{width:77.004960px;}
._2d{width:91.502640px;}
._40{width:101.637360px;}
._3f{width:121.197360px;}
._3e{width:122.683200px;}
._36{width:130.750800px;}
._10{width:132.780000px;}
._3a{width:138.523680px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._e{width:199.584000px;}
._1e{width:228.289440px;}
._2{width:255.692640px;}
._3c{width:260.673120px;}
._33{width:330.472800px;}
._42{width:344.811120px;}
._3{width:357.300000px;}
._4{width:388.414560px;}
._5{width:436.440000px;}
._39{width:474.848880px;}
._9{width:604.544160px;}
._32{width:629.846640px;}
._d{width:637.320000px;}
._41{width:667.937520px;}
._37{width:761.641200px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y6d{bottom:5.760000px;}
.ya8{bottom:5.805000px;}
.ye{bottom:5.940000px;}
.yc5{bottom:5.985000px;}
.y6{bottom:12.420000px;}
.y89{bottom:15.660000px;}
.y94{bottom:15.840000px;}
.y90{bottom:15.870000px;}
.y6e{bottom:15.885000px;}
.y8{bottom:18.180000px;}
.y7a{bottom:25.560000px;}
.y98{bottom:25.605000px;}
.y72{bottom:25.740000px;}
.y91{bottom:25.770000px;}
.y6c{bottom:25.785000px;}
.y70{bottom:35.640000px;}
.yc{bottom:35.820000px;}
.y5{bottom:40.320000px;}
.y96{bottom:45.360000px;}
.y71{bottom:45.540000px;}
.yec{bottom:45.570000px;}
.y83{bottom:45.585000px;}
.y88{bottom:55.440000px;}
.y77{bottom:55.470000px;}
.y84{bottom:55.485000px;}
.yb{bottom:57.780000px;}
.yf6{bottom:65.160000px;}
.y73{bottom:65.340000px;}
.y79{bottom:65.370000px;}
.y86{bottom:65.385000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.780000px;}
.ya{bottom:79.380000px;}
.y75{bottom:85.140000px;}
.y78{bottom:85.170000px;}
.y85{bottom:85.185000px;}
.y3{bottom:96.330000px;}
.y92{bottom:100.980000px;}
.yf4{bottom:102.420000px;}
.y6a{bottom:106.740000px;}
.y3b{bottom:109.620000px;}
.y119{bottom:111.240000px;}
.y120{bottom:113.400000px;}
.ybf{bottom:115.740000px;}
.yb3{bottom:117.540000px;}
.y2{bottom:125.670000px;}
.y69{bottom:126.540000px;}
.y3a{bottom:129.420000px;}
.y118{bottom:131.040000px;}
.y11f{bottom:133.380000px;}
.ybe{bottom:135.540000px;}
.yb2{bottom:137.340000px;}
.y8f{bottom:141.300000px;}
.ybd{bottom:146.340000px;}
.y39{bottom:149.220000px;}
.y117{bottom:150.840000px;}
.y11e{bottom:153.030000px;}
.y68{bottom:155.370000px;}
.ye9{bottom:157.170000px;}
.yb1{bottom:157.350000px;}
.ybc{bottom:166.350000px;}
.y38{bottom:169.230000px;}
.y116{bottom:170.850000px;}
.y67{bottom:175.350000px;}
.ye8{bottom:176.970000px;}
.y8e{bottom:181.830000px;}
.yb0{bottom:186.150000px;}
.y37{bottom:189.030000px;}
.y115{bottom:190.650000px;}
.y66{bottom:195.150000px;}
.ye7{bottom:196.770000px;}
.yf3{bottom:202.350000px;}
.yaf{bottom:205.950000px;}
.y8d{bottom:208.110000px;}
.y36{bottom:208.830000px;}
.y114{bottom:210.450000px;}
.y65{bottom:214.950000px;}
.ye6{bottom:216.750000px;}
.yae{bottom:225.750000px;}
.y8c{bottom:228.090000px;}
.y35{bottom:228.630000px;}
.y113{bottom:230.250000px;}
.y64{bottom:234.750000px;}
.ye5{bottom:236.550000px;}
.yf2{bottom:242.850000px;}
.yad{bottom:245.550000px;}
.y8b{bottom:247.890000px;}
.y34{bottom:248.430000px;}
.y112{bottom:250.050000px;}
.y63{bottom:254.550000px;}
.ye4{bottom:256.350000px;}
.yac{bottom:265.350000px;}
.y8a{bottom:267.690000px;}
.y33{bottom:268.410000px;}
.y111{bottom:269.850000px;}
.y62{bottom:274.350000px;}
.ye3{bottom:276.150000px;}
.y87{bottom:282.450000px;}
.yab{bottom:285.330000px;}
.y32{bottom:288.210000px;}
.y110{bottom:289.830000px;}
.y61{bottom:294.330000px;}
.ye2{bottom:295.950000px;}
.yaa{bottom:305.130000px;}
.y31{bottom:308.010000px;}
.y10f{bottom:309.630000px;}
.y60{bottom:314.130000px;}
.ye1{bottom:315.930000px;}
.ya9{bottom:319.890000px;}
.yf1{bottom:322.950000px;}
.ybb{bottom:324.930000px;}
.y30{bottom:327.810000px;}
.y10e{bottom:329.430000px;}
.y5f{bottom:333.930000px;}
.ye0{bottom:335.730000px;}
.yba{bottom:344.730000px;}
.y2f{bottom:347.610000px;}
.y10d{bottom:349.230000px;}
.y5e{bottom:353.730000px;}
.ydf{bottom:355.530000px;}
.y82{bottom:362.550000px;}
.yf0{bottom:363.270000px;}
.yb9{bottom:364.530000px;}
.y2e{bottom:367.590000px;}
.y10c{bottom:369.030000px;}
.y5d{bottom:373.530000px;}
.yde{bottom:375.330000px;}
.yb8{bottom:384.510000px;}
.y2d{bottom:387.390000px;}
.y10b{bottom:389.010000px;}
.y5c{bottom:393.510000px;}
.ydd{bottom:395.130000px;}
.ya7{bottom:399.990000px;}
.yb7{bottom:404.355000px;}
.y2c{bottom:407.235000px;}
.y10a{bottom:408.855000px;}
.y5b{bottom:413.355000px;}
.ydc{bottom:415.155000px;}
.yb6{bottom:424.155000px;}
.y2b{bottom:427.035000px;}
.y109{bottom:428.655000px;}
.y5a{bottom:433.155000px;}
.ydb{bottom:434.955000px;}
.yef{bottom:443.415000px;}
.yb5{bottom:443.955000px;}
.y2a{bottom:446.835000px;}
.y108{bottom:448.455000px;}
.y59{bottom:452.955000px;}
.yda{bottom:454.755000px;}
.y81{bottom:462.495000px;}
.yb4{bottom:463.755000px;}
.y29{bottom:466.815000px;}
.y107{bottom:468.255000px;}
.y58{bottom:472.755000px;}
.yd9{bottom:474.555000px;}
.y11d{bottom:483.735000px;}
.yee{bottom:483.915000px;}
.y28{bottom:486.615000px;}
.y106{bottom:488.235000px;}
.y80{bottom:488.955000px;}
.y57{bottom:492.735000px;}
.yd8{bottom:494.355000px;}
.ya6{bottom:499.935000px;}
.y11c{bottom:503.535000px;}
.y27{bottom:506.415000px;}
.y105{bottom:508.035000px;}
.y7f{bottom:508.755000px;}
.y56{bottom:512.535000px;}
.yd7{bottom:514.335000px;}
.y11b{bottom:523.335000px;}
.y26{bottom:526.215000px;}
.ya5{bottom:526.395000px;}
.y104{bottom:527.835000px;}
.y7e{bottom:528.555000px;}
.y55{bottom:532.335000px;}
.yd6{bottom:534.135000px;}
.y11a{bottom:543.135000px;}
.y25{bottom:546.015000px;}
.ya4{bottom:546.195000px;}
.y103{bottom:547.635000px;}
.y7d{bottom:548.355000px;}
.y54{bottom:552.135000px;}
.yd5{bottom:553.935000px;}
.yed{bottom:564.015000px;}
.y24{bottom:565.995000px;}
.y102{bottom:567.435000px;}
.y7c{bottom:568.335000px;}
.y53{bottom:571.935000px;}
.yd4{bottom:573.735000px;}
.y23{bottom:585.795000px;}
.y101{bottom:587.415000px;}
.y7b{bottom:588.135000px;}
.y52{bottom:591.915000px;}
.yd3{bottom:593.535000px;}
.y76{bottom:602.895000px;}
.yeb{bottom:604.335000px;}
.y22{bottom:605.595000px;}
.ya3{bottom:605.775000px;}
.y100{bottom:607.215000px;}
.y51{bottom:611.715000px;}
.yd2{bottom:613.515000px;}
.y21{bottom:625.395000px;}
.ya2{bottom:625.575000px;}
.yff{bottom:627.015000px;}
.y50{bottom:631.515000px;}
.yd1{bottom:633.315000px;}
.y20{bottom:645.195000px;}
.ya1{bottom:645.375000px;}
.yfe{bottom:646.815000px;}
.y4f{bottom:651.345000px;}
.yd0{bottom:653.145000px;}
.ya0{bottom:660.165000px;}
.y1f{bottom:665.205000px;}
.yfd{bottom:666.645000px;}
.y4e{bottom:671.145000px;}
.ycf{bottom:672.945000px;}
.y1e{bottom:685.005000px;}
.yfc{bottom:686.625000px;}
.y4d{bottom:691.125000px;}
.yce{bottom:692.745000px;}
.y74{bottom:702.825000px;}
.yea{bottom:704.445000px;}
.y1d{bottom:704.805000px;}
.yfb{bottom:706.425000px;}
.y4c{bottom:710.925000px;}
.ycd{bottom:712.725000px;}
.y9f{bottom:720.465000px;}
.y1c{bottom:724.605000px;}
.yfa{bottom:726.225000px;}
.y4b{bottom:730.725000px;}
.ycc{bottom:732.525000px;}
.y1b{bottom:744.405000px;}
.yf9{bottom:746.025000px;}
.y9e{bottom:746.745000px;}
.y4a{bottom:750.525000px;}
.ycb{bottom:752.325000px;}
.yf8{bottom:760.785000px;}
.y1a{bottom:764.385000px;}
.y9d{bottom:766.725000px;}
.y49{bottom:770.325000px;}
.yca{bottom:772.125000px;}
.y19{bottom:784.185000px;}
.y9c{bottom:786.525000px;}
.y48{bottom:790.305000px;}
.yc9{bottom:791.025000px;}
.yf7{bottom:801.285000px;}
.y6f{bottom:802.725000px;}
.y18{bottom:803.985000px;}
.y9b{bottom:806.325000px;}
.y47{bottom:810.105000px;}
.yc8{bottom:816.945000px;}
.y17{bottom:823.785000px;}
.y9a{bottom:826.125000px;}
.y46{bottom:829.905000px;}
.y99{bottom:840.885000px;}
.yc7{bottom:842.685000px;}
.y16{bottom:843.585000px;}
.y45{bottom:849.705000px;}
.y15{bottom:863.565000px;}
.yc6{bottom:868.605000px;}
.y44{bottom:869.505000px;}
.y97{bottom:881.385000px;}
.y6b{bottom:882.825000px;}
.y14{bottom:888.585000px;}
.y43{bottom:889.485000px;}
.yc4{bottom:894.345000px;}
.y13{bottom:908.430000px;}
.y42{bottom:909.330000px;}
.yc3{bottom:920.310000px;}
.y95{bottom:921.930000px;}
.y12{bottom:923.550000px;}
.y41{bottom:929.130000px;}
.y11{bottom:945.330000px;}
.yc2{bottom:946.230000px;}
.y40{bottom:948.930000px;}
.y3f{bottom:968.730000px;}
.y10{bottom:970.350000px;}
.yc1{bottom:971.970000px;}
.y93{bottom:982.050000px;}
.y3e{bottom:988.710000px;}
.yc0{bottom:997.890000px;}
.yf5{bottom:1001.850000px;}
.yf{bottom:1002.030000px;}
.y3d{bottom:1008.510000px;}
.y3c{bottom:1028.310000px;}
.y9{bottom:1045.950000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h6{height:2.581875px;}
.h14{height:19.800000px;}
.h1b{height:19.980000px;}
.h1a{height:20.016000px;}
.hb{height:21.420000px;}
.h7{height:33.480000px;}
.hd{height:34.855313px;}
.h15{height:39.600000px;}
.h18{height:39.636000px;}
.h19{height:39.780000px;}
.h10{height:39.816000px;}
.h1e{height:48.496641px;}
.hf{height:53.252930px;}
.he{height:53.573906px;}
.h4{height:59.027344px;}
.h8{height:59.383125px;}
.h17{height:59.400000px;}
.h16{height:59.580000px;}
.h9{height:60.972891px;}
.ha{height:65.884219px;}
.h1d{height:79.200000px;}
.h11{height:79.380000px;}
.h1c{height:79.416000px;}
.h3{height:80.200195px;}
.hc{height:85.333008px;}
.h12{height:99.180000px;}
.h13{height:99.216000px;}
.h5{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w14{width:96.300000px;}
.w16{width:119.376000px;}
.w6{width:127.080000px;}
.w3{width:133.416000px;}
.w17{width:140.580000px;}
.wc{width:156.240000px;}
.w9{width:157.710000px;}
.we{width:160.920000px;}
.w11{width:168.870000px;}
.wf{width:174.810000px;}
.w12{width:188.490000px;}
.wa{width:198.210000px;}
.wd{width:199.650000px;}
.w19{width:200.955000px;}
.w7{width:235.515000px;}
.w1b{width:274.755000px;}
.w1a{width:276.690000px;}
.w15{width:303.195000px;}
.w13{width:316.650000px;}
.wb{width:318.270000px;}
.w8{width:357.690000px;}
.w10{width:363.315000px;}
.w18{width:403.095000px;}
.w2{width:662.550000px;}
.w1c{width:753.840000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1c{left:1.260000px;}
.x2{left:8.100000px;}
.x1{left:48.600000px;}
.x5{left:53.999987px;}
.x15{left:61.740000px;}
.x7{left:63.359987px;}
.x20{left:69.660000px;}
.xd{left:80.999987px;}
.xf{left:85.716000px;}
.xe{left:96.515987px;}
.x12{left:108.756000px;}
.x1b{left:111.276000px;}
.x4{left:118.290000px;}
.x1d{left:211.170000px;}
.x10{left:213.510000px;}
.xc{left:229.169987px;}
.xb{left:248.789987px;}
.x17{left:257.970000px;}
.x16{left:265.755000px;}
.x13{left:267.195000px;}
.x21{left:271.335000px;}
.x19{left:278.535000px;}
.xa{left:306.074987px;}
.x8{left:376.274987px;}
.x18{left:433.515000px;}
.x9{left:446.504987px;}
.x11{left:449.925000px;}
.x14{left:466.125000px;}
.x1a{left:467.745000px;}
.x1e{left:518.145000px;}
.x22{left:548.745000px;}
.x1f{left:641.310000px;}
.x3{left:711.150000px;}
.x6{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls1c{letter-spacing:-0.821333pt;}
.ls1a{letter-spacing:-0.688000pt;}
.ls3{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.544000pt;}
.ls9{letter-spacing:-0.480000pt;}
.lsd{letter-spacing:-0.409067pt;}
.ls12{letter-spacing:-0.367467pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls13{letter-spacing:-0.230933pt;}
.ls14{letter-spacing:-0.225067pt;}
.ls6{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.047360pt;}
.lsf{letter-spacing:0.094720pt;}
.lse{letter-spacing:0.094933pt;}
.ls8{letter-spacing:0.160000pt;}
.lsa{letter-spacing:0.183467pt;}
.ls10{letter-spacing:0.183680pt;}
.ls4{letter-spacing:0.230933pt;}
.ls19{letter-spacing:0.231040pt;}
.ls1b{letter-spacing:0.272533pt;}
.ls0{letter-spacing:0.320000pt;}
.ls15{letter-spacing:2.080000pt;}
.ls17{letter-spacing:3.360000pt;}
.ls16{letter-spacing:4.640000pt;}
.ls18{letter-spacing:7.840000pt;}
.ls1e{letter-spacing:12.320000pt;}
.ls1d{letter-spacing:14.672640pt;}
.ls11{letter-spacing:30.880000pt;}
.ls1{letter-spacing:40.912640pt;}
.ws0{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.080000pt;}
.ws5{word-spacing:-13.600000pt;}
.wsf{word-spacing:-13.552533pt;}
.wsb{word-spacing:-13.510933pt;}
.ws8{word-spacing:-13.463467pt;}
.wsa{word-spacing:-13.374933pt;}
.ws9{word-spacing:-13.327360pt;}
.ws3{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws4{word-spacing:-13.096533pt;}
.wse{word-spacing:-13.054933pt;}
.wsd{word-spacing:-13.049067pt;}
.ws10{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.912533pt;}
.ws1{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._1b{margin-left:-3.481813pt;}
._13{margin-left:-2.385920pt;}
._1{margin-left:-1.120000pt;}
._0{width:0.906667pt;}
._30{width:1.798827pt;}
._11{width:2.689920pt;}
._1a{width:3.639253pt;}
._18{width:4.562560pt;}
._15{width:5.626027pt;}
._14{width:6.800427pt;}
._12{width:8.352853pt;}
._6{width:9.600000pt;}
._16{width:10.813653pt;}
._1c{width:12.366080pt;}
._17{width:14.608000pt;}
._20{width:16.087680pt;}
._f{width:17.002667pt;}
._1d{width:17.918080pt;}
._31{width:19.325227pt;}
._34{width:20.783573pt;}
._25{width:22.097920pt;}
._24{width:23.372800pt;}
._29{width:25.072640pt;}
._21{width:26.228053pt;}
._2a{width:27.310933pt;}
._23{width:28.256213pt;}
._22{width:29.269120pt;}
._2f{width:30.756480pt;}
._1f{width:33.412480pt;}
._2b{width:35.377920pt;}
._28{width:37.130880pt;}
._27{width:38.671360pt;}
._19{width:39.893333pt;}
._2c{width:45.732693pt;}
._3d{width:50.474880pt;}
._35{width:52.107093pt;}
._26{width:53.381973pt;}
._3b{width:56.875520pt;}
._2e{width:58.325760pt;}
._38{width:66.665600pt;}
._7{width:68.448853pt;}
._2d{width:81.335680pt;}
._40{width:90.344320pt;}
._3f{width:107.730987pt;}
._3e{width:109.051733pt;}
._36{width:116.222933pt;}
._10{width:118.026667pt;}
._3a{width:123.132160pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._e{width:177.408000pt;}
._1e{width:202.923947pt;}
._2{width:227.282347pt;}
._3c{width:231.709440pt;}
._33{width:293.753600pt;}
._42{width:306.498773pt;}
._3{width:317.600000pt;}
._4{width:345.257387pt;}
._5{width:387.946667pt;}
._39{width:422.087893pt;}
._9{width:537.372587pt;}
._32{width:559.863680pt;}
._d{width:566.506667pt;}
._41{width:593.722240pt;}
._37{width:677.014400pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y6d{bottom:5.120000pt;}
.ya8{bottom:5.160000pt;}
.ye{bottom:5.280000pt;}
.yc5{bottom:5.320000pt;}
.y6{bottom:11.040000pt;}
.y89{bottom:13.920000pt;}
.y94{bottom:14.080000pt;}
.y90{bottom:14.106667pt;}
.y6e{bottom:14.120000pt;}
.y8{bottom:16.160000pt;}
.y7a{bottom:22.720000pt;}
.y98{bottom:22.760000pt;}
.y72{bottom:22.880000pt;}
.y91{bottom:22.906667pt;}
.y6c{bottom:22.920000pt;}
.y70{bottom:31.680000pt;}
.yc{bottom:31.840000pt;}
.y5{bottom:35.840000pt;}
.y96{bottom:40.320000pt;}
.y71{bottom:40.480000pt;}
.yec{bottom:40.506667pt;}
.y83{bottom:40.520000pt;}
.y88{bottom:49.280000pt;}
.y77{bottom:49.306667pt;}
.y84{bottom:49.320000pt;}
.yb{bottom:51.360000pt;}
.yf6{bottom:57.920000pt;}
.y73{bottom:58.080000pt;}
.y79{bottom:58.106667pt;}
.y86{bottom:58.120000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.360000pt;}
.ya{bottom:70.560000pt;}
.y75{bottom:75.680000pt;}
.y78{bottom:75.706667pt;}
.y85{bottom:75.720000pt;}
.y3{bottom:85.626667pt;}
.y92{bottom:89.760000pt;}
.yf4{bottom:91.040000pt;}
.y6a{bottom:94.880000pt;}
.y3b{bottom:97.440000pt;}
.y119{bottom:98.880000pt;}
.y120{bottom:100.800000pt;}
.ybf{bottom:102.880000pt;}
.yb3{bottom:104.480000pt;}
.y2{bottom:111.706667pt;}
.y69{bottom:112.480000pt;}
.y3a{bottom:115.040000pt;}
.y118{bottom:116.480000pt;}
.y11f{bottom:118.560000pt;}
.ybe{bottom:120.480000pt;}
.yb2{bottom:122.080000pt;}
.y8f{bottom:125.600000pt;}
.ybd{bottom:130.080000pt;}
.y39{bottom:132.640000pt;}
.y117{bottom:134.080000pt;}
.y11e{bottom:136.026667pt;}
.y68{bottom:138.106667pt;}
.ye9{bottom:139.706667pt;}
.yb1{bottom:139.866667pt;}
.ybc{bottom:147.866667pt;}
.y38{bottom:150.426667pt;}
.y116{bottom:151.866667pt;}
.y67{bottom:155.866667pt;}
.ye8{bottom:157.306667pt;}
.y8e{bottom:161.626667pt;}
.yb0{bottom:165.466667pt;}
.y37{bottom:168.026667pt;}
.y115{bottom:169.466667pt;}
.y66{bottom:173.466667pt;}
.ye7{bottom:174.906667pt;}
.yf3{bottom:179.866667pt;}
.yaf{bottom:183.066667pt;}
.y8d{bottom:184.986667pt;}
.y36{bottom:185.626667pt;}
.y114{bottom:187.066667pt;}
.y65{bottom:191.066667pt;}
.ye6{bottom:192.666667pt;}
.yae{bottom:200.666667pt;}
.y8c{bottom:202.746667pt;}
.y35{bottom:203.226667pt;}
.y113{bottom:204.666667pt;}
.y64{bottom:208.666667pt;}
.ye5{bottom:210.266667pt;}
.yf2{bottom:215.866667pt;}
.yad{bottom:218.266667pt;}
.y8b{bottom:220.346667pt;}
.y34{bottom:220.826667pt;}
.y112{bottom:222.266667pt;}
.y63{bottom:226.266667pt;}
.ye4{bottom:227.866667pt;}
.yac{bottom:235.866667pt;}
.y8a{bottom:237.946667pt;}
.y33{bottom:238.586667pt;}
.y111{bottom:239.866667pt;}
.y62{bottom:243.866667pt;}
.ye3{bottom:245.466667pt;}
.y87{bottom:251.066667pt;}
.yab{bottom:253.626667pt;}
.y32{bottom:256.186667pt;}
.y110{bottom:257.626667pt;}
.y61{bottom:261.626667pt;}
.ye2{bottom:263.066667pt;}
.yaa{bottom:271.226667pt;}
.y31{bottom:273.786667pt;}
.y10f{bottom:275.226667pt;}
.y60{bottom:279.226667pt;}
.ye1{bottom:280.826667pt;}
.ya9{bottom:284.346667pt;}
.yf1{bottom:287.066667pt;}
.ybb{bottom:288.826667pt;}
.y30{bottom:291.386667pt;}
.y10e{bottom:292.826667pt;}
.y5f{bottom:296.826667pt;}
.ye0{bottom:298.426667pt;}
.yba{bottom:306.426667pt;}
.y2f{bottom:308.986667pt;}
.y10d{bottom:310.426667pt;}
.y5e{bottom:314.426667pt;}
.ydf{bottom:316.026667pt;}
.y82{bottom:322.266667pt;}
.yf0{bottom:322.906667pt;}
.yb9{bottom:324.026667pt;}
.y2e{bottom:326.746667pt;}
.y10c{bottom:328.026667pt;}
.y5d{bottom:332.026667pt;}
.yde{bottom:333.626667pt;}
.yb8{bottom:341.786667pt;}
.y2d{bottom:344.346667pt;}
.y10b{bottom:345.786667pt;}
.y5c{bottom:349.786667pt;}
.ydd{bottom:351.226667pt;}
.ya7{bottom:355.546667pt;}
.yb7{bottom:359.426667pt;}
.y2c{bottom:361.986667pt;}
.y10a{bottom:363.426667pt;}
.y5b{bottom:367.426667pt;}
.ydc{bottom:369.026667pt;}
.yb6{bottom:377.026667pt;}
.y2b{bottom:379.586667pt;}
.y109{bottom:381.026667pt;}
.y5a{bottom:385.026667pt;}
.ydb{bottom:386.626667pt;}
.yef{bottom:394.146667pt;}
.yb5{bottom:394.626667pt;}
.y2a{bottom:397.186667pt;}
.y108{bottom:398.626667pt;}
.y59{bottom:402.626667pt;}
.yda{bottom:404.226667pt;}
.y81{bottom:411.106667pt;}
.yb4{bottom:412.226667pt;}
.y29{bottom:414.946667pt;}
.y107{bottom:416.226667pt;}
.y58{bottom:420.226667pt;}
.yd9{bottom:421.826667pt;}
.y11d{bottom:429.986667pt;}
.yee{bottom:430.146667pt;}
.y28{bottom:432.546667pt;}
.y106{bottom:433.986667pt;}
.y80{bottom:434.626667pt;}
.y57{bottom:437.986667pt;}
.yd8{bottom:439.426667pt;}
.ya6{bottom:444.386667pt;}
.y11c{bottom:447.586667pt;}
.y27{bottom:450.146667pt;}
.y105{bottom:451.586667pt;}
.y7f{bottom:452.226667pt;}
.y56{bottom:455.586667pt;}
.yd7{bottom:457.186667pt;}
.y11b{bottom:465.186667pt;}
.y26{bottom:467.746667pt;}
.ya5{bottom:467.906667pt;}
.y104{bottom:469.186667pt;}
.y7e{bottom:469.826667pt;}
.y55{bottom:473.186667pt;}
.yd6{bottom:474.786667pt;}
.y11a{bottom:482.786667pt;}
.y25{bottom:485.346667pt;}
.ya4{bottom:485.506667pt;}
.y103{bottom:486.786667pt;}
.y7d{bottom:487.426667pt;}
.y54{bottom:490.786667pt;}
.yd5{bottom:492.386667pt;}
.yed{bottom:501.346667pt;}
.y24{bottom:503.106667pt;}
.y102{bottom:504.386667pt;}
.y7c{bottom:505.186667pt;}
.y53{bottom:508.386667pt;}
.yd4{bottom:509.986667pt;}
.y23{bottom:520.706667pt;}
.y101{bottom:522.146667pt;}
.y7b{bottom:522.786667pt;}
.y52{bottom:526.146667pt;}
.yd3{bottom:527.586667pt;}
.y76{bottom:535.906667pt;}
.yeb{bottom:537.186667pt;}
.y22{bottom:538.306667pt;}
.ya3{bottom:538.466667pt;}
.y100{bottom:539.746667pt;}
.y51{bottom:543.746667pt;}
.yd2{bottom:545.346667pt;}
.y21{bottom:555.906667pt;}
.ya2{bottom:556.066667pt;}
.yff{bottom:557.346667pt;}
.y50{bottom:561.346667pt;}
.yd1{bottom:562.946667pt;}
.y20{bottom:573.506667pt;}
.ya1{bottom:573.666667pt;}
.yfe{bottom:574.946667pt;}
.y4f{bottom:578.973333pt;}
.yd0{bottom:580.573333pt;}
.ya0{bottom:586.813333pt;}
.y1f{bottom:591.293333pt;}
.yfd{bottom:592.573333pt;}
.y4e{bottom:596.573333pt;}
.ycf{bottom:598.173333pt;}
.y1e{bottom:608.893333pt;}
.yfc{bottom:610.333333pt;}
.y4d{bottom:614.333333pt;}
.yce{bottom:615.773333pt;}
.y74{bottom:624.733333pt;}
.yea{bottom:626.173333pt;}
.y1d{bottom:626.493333pt;}
.yfb{bottom:627.933333pt;}
.y4c{bottom:631.933333pt;}
.ycd{bottom:633.533333pt;}
.y9f{bottom:640.413333pt;}
.y1c{bottom:644.093333pt;}
.yfa{bottom:645.533333pt;}
.y4b{bottom:649.533333pt;}
.ycc{bottom:651.133333pt;}
.y1b{bottom:661.693333pt;}
.yf9{bottom:663.133333pt;}
.y9e{bottom:663.773333pt;}
.y4a{bottom:667.133333pt;}
.ycb{bottom:668.733333pt;}
.yf8{bottom:676.253333pt;}
.y1a{bottom:679.453333pt;}
.y9d{bottom:681.533333pt;}
.y49{bottom:684.733333pt;}
.yca{bottom:686.333333pt;}
.y19{bottom:697.053333pt;}
.y9c{bottom:699.133333pt;}
.y48{bottom:702.493333pt;}
.yc9{bottom:703.133333pt;}
.yf7{bottom:712.253333pt;}
.y6f{bottom:713.533333pt;}
.y18{bottom:714.653333pt;}
.y9b{bottom:716.733333pt;}
.y47{bottom:720.093333pt;}
.yc8{bottom:726.173333pt;}
.y17{bottom:732.253333pt;}
.y9a{bottom:734.333333pt;}
.y46{bottom:737.693333pt;}
.y99{bottom:747.453333pt;}
.yc7{bottom:749.053333pt;}
.y16{bottom:749.853333pt;}
.y45{bottom:755.293333pt;}
.y15{bottom:767.613333pt;}
.yc6{bottom:772.093333pt;}
.y44{bottom:772.893333pt;}
.y97{bottom:783.453333pt;}
.y6b{bottom:784.733333pt;}
.y14{bottom:789.853333pt;}
.y43{bottom:790.653333pt;}
.yc4{bottom:794.973333pt;}
.y13{bottom:807.493333pt;}
.y42{bottom:808.293333pt;}
.yc3{bottom:818.053333pt;}
.y95{bottom:819.493333pt;}
.y12{bottom:820.933333pt;}
.y41{bottom:825.893333pt;}
.y11{bottom:840.293333pt;}
.yc2{bottom:841.093333pt;}
.y40{bottom:843.493333pt;}
.y3f{bottom:861.093333pt;}
.y10{bottom:862.533333pt;}
.yc1{bottom:863.973333pt;}
.y93{bottom:872.933333pt;}
.y3e{bottom:878.853333pt;}
.yc0{bottom:887.013333pt;}
.yf5{bottom:890.533333pt;}
.yf{bottom:890.693333pt;}
.y3d{bottom:896.453333pt;}
.y3c{bottom:914.053333pt;}
.y9{bottom:929.733333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h6{height:2.295000pt;}
.h14{height:17.600000pt;}
.h1b{height:17.760000pt;}
.h1a{height:17.792000pt;}
.hb{height:19.040000pt;}
.h7{height:29.760000pt;}
.hd{height:30.982500pt;}
.h15{height:35.200000pt;}
.h18{height:35.232000pt;}
.h19{height:35.360000pt;}
.h10{height:35.392000pt;}
.h1e{height:43.108125pt;}
.hf{height:47.335938pt;}
.he{height:47.621250pt;}
.h4{height:52.468750pt;}
.h8{height:52.785000pt;}
.h17{height:52.800000pt;}
.h16{height:52.960000pt;}
.h9{height:54.198125pt;}
.ha{height:58.563750pt;}
.h1d{height:70.400000pt;}
.h11{height:70.560000pt;}
.h1c{height:70.592000pt;}
.h3{height:71.289062pt;}
.hc{height:75.851562pt;}
.h12{height:88.160000pt;}
.h13{height:88.192000pt;}
.h5{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w14{width:85.600000pt;}
.w16{width:106.112000pt;}
.w6{width:112.960000pt;}
.w3{width:118.592000pt;}
.w17{width:124.960000pt;}
.wc{width:138.880000pt;}
.w9{width:140.186667pt;}
.we{width:143.040000pt;}
.w11{width:150.106667pt;}
.wf{width:155.386667pt;}
.w12{width:167.546667pt;}
.wa{width:176.186667pt;}
.wd{width:177.466667pt;}
.w19{width:178.626667pt;}
.w7{width:209.346667pt;}
.w1b{width:244.226667pt;}
.w1a{width:245.946667pt;}
.w15{width:269.506667pt;}
.w13{width:281.466667pt;}
.wb{width:282.906667pt;}
.w8{width:317.946667pt;}
.w10{width:322.946667pt;}
.w18{width:358.306667pt;}
.w2{width:588.933333pt;}
.w1c{width:670.080000pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:1.120000pt;}
.x2{left:7.200000pt;}
.x1{left:43.200000pt;}
.x5{left:47.999988pt;}
.x15{left:54.880000pt;}
.x7{left:56.319988pt;}
.x20{left:61.920000pt;}
.xd{left:71.999988pt;}
.xf{left:76.192000pt;}
.xe{left:85.791988pt;}
.x12{left:96.672000pt;}
.x1b{left:98.912000pt;}
.x4{left:105.146667pt;}
.x1d{left:187.706667pt;}
.x10{left:189.786667pt;}
.xc{left:203.706655pt;}
.xb{left:221.146655pt;}
.x17{left:229.306667pt;}
.x16{left:236.226667pt;}
.x13{left:237.506667pt;}
.x21{left:241.186667pt;}
.x19{left:247.586667pt;}
.xa{left:272.066655pt;}
.x8{left:334.466655pt;}
.x18{left:385.346667pt;}
.x9{left:396.893322pt;}
.x11{left:399.933333pt;}
.x14{left:414.333333pt;}
.x1a{left:415.773333pt;}
.x1e{left:460.573333pt;}
.x22{left:487.773333pt;}
.x1f{left:570.053333pt;}
.x3{left:632.133333pt;}
.x6{left:737.280000pt;}
}




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