
    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_b1711ea15096cb1e47de18e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_894da589f7ea20a9d8edac44.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_37c924057b98780533b60e98.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e1fb60b85a59f39bf1223001.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_5c98af927589d972be6b37d6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_ccd5d841d1c13d630419f076.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906738;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_33e981b64970916406b34e78.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906738;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_7897ab2faf731187a801d601.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.978027;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_fc00b6d3af8517d6c78e48be.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_00d86c78aee4f328711c49a6.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.401855;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:-76.320000px;}
.v3{vertical-align:-74.160000px;}
.v4{vertical-align:-71.280000px;}
.v2{vertical-align:-69.120000px;}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-4.782000px;}
.ls18{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.513600px;}
.lsf{letter-spacing:-0.460200px;}
.lsc{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.305400px;}
.ls12{letter-spacing:-0.180000px;}
.lse{letter-spacing:-0.053280px;}
.lsb{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.109200px;}
.ls2{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.150000px;}
.lsd{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.262080px;}
.ls3{letter-spacing:0.298800px;}
.ls17{letter-spacing:0.305400px;}
.ls0{letter-spacing:0.360000px;}
.ls14{letter-spacing:3.029760px;}
.ls9{letter-spacing:14.580000px;}
.ls6{letter-spacing:39.060000px;}
.ls11{letter-spacing:39.905280px;}
.ls4{letter-spacing:56.880000px;}
.ls1{letter-spacing:178.740000px;}
.ls7{letter-spacing:199.440000px;}
.ls13{letter-spacing:199.584000px;}
.ls5{letter-spacing:201.060000px;}
.ls1d{letter-spacing:201.204000px;}
.ls1b{letter-spacing:826.320000px;}
.ls1c{letter-spacing:874.416000px;}
.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;}
}
.wsb{word-spacing:-16.865400px;}
.wsa{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.254600px;}
.wsc{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.238800px;}
.ws4{word-spacing:-14.940000px;}
.ws6{word-spacing:-14.886720px;}
.ws7{word-spacing:-14.479800px;}
.wsd{word-spacing:-14.426400px;}
.ws3{word-spacing:-13.860000px;}
.ws1{word-spacing:-13.500000px;}
.ws0{word-spacing:-13.140000px;}
.ws2{word-spacing:-12.060000px;}
.ws8{word-spacing:0.000000px;}
._2a{margin-left:-8.587440px;}
._1b{margin-left:-7.108080px;}
._1c{margin-left:-6.018000px;}
._18{margin-left:-4.924800px;}
._a{margin-left:-3.755280px;}
._3{margin-left:-2.634240px;}
._0{margin-left:-1.026000px;}
._1{width:1.290000px;}
._4{width:2.359440px;}
._5{width:3.542400px;}
._b{width:4.637520px;}
._9{width:5.677200px;}
._13{width:6.955200px;}
._6{width:8.426160px;}
._12{width:10.200960px;}
._8{width:11.737680px;}
._7{width:13.147200px;}
._14{width:14.304960px;}
._f{width:15.535440px;}
._d{width:16.792560px;}
._2{width:17.958960px;}
._11{width:19.506240px;}
._c{width:20.617200px;}
._10{width:21.792960px;}
._15{width:23.382720px;}
._16{width:24.707520px;}
._17{width:26.263440px;}
._1f{width:28.614240px;}
._1e{width:29.741760px;}
._19{width:31.728960px;}
._20{width:33.943680px;}
._21{width:35.616960px;}
._33{width:40.756320px;}
._34{width:42.083280px;}
._2e{width:43.385760px;}
._2f{width:44.633040px;}
._1d{width:47.701200px;}
._30{width:51.991200px;}
._28{width:54.321840px;}
._29{width:55.337760px;}
._2c{width:61.971120px;}
._2b{width:64.301760px;}
._38{width:66.990960px;}
._39{width:68.375520px;}
._35{width:76.552560px;}
._36{width:81.154080px;}
._37{width:82.704960px;}
._32{width:93.053760px;}
._31{width:94.839120px;}
._23{width:108.097440px;}
._22{width:109.549200px;}
._27{width:119.041920px;}
._25{width:168.463440px;}
._26{width:172.646640px;}
._24{width:175.898400px;}
._2d{width:198.442560px;}
._3a{width:847.596000px;}
._e{width:891.750000px;}
._1a{width:1039.260000px;}
.fc3{color:transparent;}
.fc4{color:rgb(0,0,128);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:36.000000px;}
.fs4{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs0{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y8d{bottom:3.600000px;}
.y73{bottom:3.780000px;}
.y2{bottom:18.540000px;}
.y72{bottom:22.680000px;}
.y8c{bottom:22.710000px;}
.y35{bottom:23.940000px;}
.y9{bottom:24.120000px;}
.y8{bottom:39.240000px;}
.ye0{bottom:41.580000px;}
.y71{bottom:41.760000px;}
.y7{bottom:55.620000px;}
.ya2{bottom:60.660000px;}
.y70{bottom:60.690000px;}
.yf3{bottom:69.480000px;}
.y33{bottom:71.100000px;}
.y129{bottom:71.280000px;}
.yd5{bottom:77.040000px;}
.y6d{bottom:82.260000px;}
.y89{bottom:85.860000px;}
.y32{bottom:86.580000px;}
.y63{bottom:87.480000px;}
.yf2{bottom:88.380000px;}
.y128{bottom:88.560000px;}
.y31{bottom:91.080000px;}
.yd4{bottom:95.940000px;}
.y100{bottom:99.540000px;}
.y6c{bottom:101.340000px;}
.y30{bottom:103.680000px;}
.y88{bottom:104.760000px;}
.y127{bottom:105.840000px;}
.y62{bottom:106.380000px;}
.yf1{bottom:107.460000px;}
.yd3{bottom:115.020000px;}
.yff{bottom:116.820000px;}
.y6b{bottom:120.240000px;}
.ydc{bottom:122.220000px;}
.y140{bottom:123.120000px;}
.y87{bottom:123.840000px;}
.y61{bottom:125.460000px;}
.yf0{bottom:126.360000px;}
.y14b{bottom:132.300000px;}
.y126{bottom:133.740000px;}
.yd2{bottom:133.920000px;}
.y6a{bottom:139.320000px;}
.y13f{bottom:140.220000px;}
.ydb{bottom:141.300000px;}
.y86{bottom:142.740000px;}
.y60{bottom:144.360000px;}
.yef{bottom:145.260000px;}
.y125{bottom:151.020000px;}
.yd1{bottom:153.000000px;}
.y13e{bottom:157.500000px;}
.y69{bottom:158.220000px;}
.yda{bottom:160.200000px;}
.y85{bottom:161.640000px;}
.yfe{bottom:162.000000px;}
.y5f{bottom:163.440000px;}
.yee{bottom:164.340000px;}
.y124{bottom:168.300000px;}
.yd0{bottom:171.900000px;}
.y68{bottom:177.120000px;}
.yd9{bottom:179.100000px;}
.yfd{bottom:179.280000px;}
.y84{bottom:180.720000px;}
.yba{bottom:181.440000px;}
.y5e{bottom:182.340000px;}
.yed{bottom:183.240000px;}
.y123{bottom:185.610000px;}
.ycf{bottom:190.830000px;}
.y67{bottom:196.230000px;}
.y14a{bottom:196.410000px;}
.yfc{bottom:196.590000px;}
.y9e{bottom:198.210000px;}
.y2f{bottom:198.390000px;}
.y83{bottom:199.650000px;}
.yb9{bottom:200.370000px;}
.y5d{bottom:201.450000px;}
.yec{bottom:202.350000px;}
.y13d{bottom:202.890000px;}
.yce{bottom:209.910000px;}
.y122{bottom:213.690000px;}
.yfb{bottom:213.870000px;}
.y66{bottom:215.130000px;}
.y2e{bottom:215.670000px;}
.y9d{bottom:217.110000px;}
.y82{bottom:218.730000px;}
.yb8{bottom:219.450000px;}
.y13c{bottom:220.170000px;}
.y5c{bottom:220.350000px;}
.yeb{bottom:221.250000px;}
.ycd{bottom:228.810000px;}
.y121{bottom:230.970000px;}
.ya0{bottom:232.275000px;}
.y2d{bottom:232.950000px;}
.y65{bottom:234.210000px;}
.y9c{bottom:236.190000px;}
.y81{bottom:237.630000px;}
.yb7{bottom:238.350000px;}
.y5b{bottom:239.250000px;}
.yea{bottom:240.330000px;}
.yfa{bottom:241.770000px;}
.ycc{bottom:247.890000px;}
.y13b{bottom:248.070000px;}
.y120{bottom:248.250000px;}
.y2c{bottom:250.230000px;}
.y64{bottom:254.010000px;}
.y9b{bottom:255.090000px;}
.y80{bottom:256.530000px;}
.yb6{bottom:257.430000px;}
.y5a{bottom:258.330000px;}
.yf9{bottom:259.050000px;}
.ye9{bottom:259.230000px;}
.y13a{bottom:265.350000px;}
.ycb{bottom:266.790000px;}
.y2b{bottom:267.510000px;}
.y9a{bottom:273.990000px;}
.y7f{bottom:275.610000px;}
.y11f{bottom:276.150000px;}
.yb5{bottom:276.330000px;}
.y59{bottom:277.230000px;}
.ye8{bottom:278.130000px;}
.y139{bottom:282.630000px;}
.y2a{bottom:284.610000px;}
.yca{bottom:285.690000px;}
.y99{bottom:293.070000px;}
.y11e{bottom:293.430000px;}
.y7e{bottom:294.510000px;}
.yb4{bottom:295.230000px;}
.y58{bottom:296.310000px;}
.ye7{bottom:297.210000px;}
.y29{bottom:301.890000px;}
.yf8{bottom:304.410000px;}
.yc9{bottom:304.770000px;}
.y11d{bottom:310.710000px;}
.y98{bottom:311.970000px;}
.y7d{bottom:313.590000px;}
.yb3{bottom:314.310000px;}
.y57{bottom:315.210000px;}
.ye6{bottom:316.110000px;}
.y28{bottom:319.170000px;}
.yf7{bottom:321.690000px;}
.yc8{bottom:323.670000px;}
.y138{bottom:327.990000px;}
.y97{bottom:331.050000px;}
.y7c{bottom:332.490000px;}
.yb2{bottom:333.210000px;}
.y56{bottom:334.110000px;}
.ye5{bottom:335.190000px;}
.y27{bottom:336.450000px;}
.y11c{bottom:338.790000px;}
.yf6{bottom:338.970000px;}
.yc7{bottom:342.750000px;}
.y137{bottom:345.270000px;}
.y96{bottom:349.950000px;}
.y7b{bottom:351.390000px;}
.yb1{bottom:352.290000px;}
.y55{bottom:353.190000px;}
.y26{bottom:353.730000px;}
.ye4{bottom:354.090000px;}
.ybc{bottom:355.575000px;}
.y143{bottom:355.890000px;}
.y11b{bottom:356.070000px;}
.yf5{bottom:356.250000px;}
.yc6{bottom:361.650000px;}
.yd8{bottom:368.850000px;}
.y95{bottom:369.030000px;}
.y7a{bottom:370.515000px;}
.y25{bottom:371.055000px;}
.yb0{bottom:371.235000px;}
.y54{bottom:372.135000px;}
.ye3{bottom:373.035000px;}
.y11a{bottom:373.215000px;}
.yf4{bottom:373.395000px;}
.yc5{bottom:380.775000px;}
.y167{bottom:387.255000px;}
.y94{bottom:387.975000px;}
.y79{bottom:389.415000px;}
.yaf{bottom:390.135000px;}
.y136{bottom:390.495000px;}
.y53{bottom:391.215000px;}
.ye2{bottom:392.115000px;}
.yc4{bottom:399.675000px;}
.y119{bottom:401.295000px;}
.y166{bottom:404.535000px;}
.y24{bottom:405.975000px;}
.y93{bottom:406.875000px;}
.y135{bottom:407.775000px;}
.y78{bottom:408.495000px;}
.yae{bottom:409.215000px;}
.y52{bottom:410.115000px;}
.ye1{bottom:411.015000px;}
.yc3{bottom:418.575000px;}
.y165{bottom:421.815000px;}
.y23{bottom:424.875000px;}
.y92{bottom:425.955000px;}
.ydf{bottom:426.315000px;}
.y77{bottom:427.395000px;}
.yad{bottom:428.115000px;}
.y51{bottom:429.015000px;}
.y118{bottom:435.855000px;}
.yc2{bottom:437.655000px;}
.y164{bottom:438.915000px;}
.y91{bottom:444.855000px;}
.y76{bottom:446.295000px;}
.yac{bottom:447.195000px;}
.y50{bottom:448.095000px;}
.y134{bottom:453.135000px;}
.y163{bottom:456.195000px;}
.yc1{bottom:456.555000px;}
.yde{bottom:458.205000px;}
.yd7{bottom:460.155000px;}
.y22{bottom:462.315000px;}
.y90{bottom:463.935000px;}
.y75{bottom:465.375000px;}
.yab{bottom:466.095000px;}
.y4f{bottom:466.995000px;}
.y133{bottom:470.415000px;}
.y162{bottom:473.475000px;}
.yc0{bottom:475.635000px;}
.yd6{bottom:479.235000px;}
.y21{bottom:479.595000px;}
.y149{bottom:481.035000px;}
.y117{bottom:481.215000px;}
.y8f{bottom:482.835000px;}
.ydd{bottom:483.195000px;}
.y74{bottom:484.275000px;}
.yaa{bottom:485.175000px;}
.y4e{bottom:486.075000px;}
.y161{bottom:490.755000px;}
.ybf{bottom:494.535000px;}
.y20{bottom:496.875000px;}
.y116{bottom:498.315000px;}
.y6f{bottom:499.575000px;}
.ya9{bottom:504.075000px;}
.y4d{bottom:504.975000px;}
.y160{bottom:508.035000px;}
.y1f{bottom:514.155000px;}
.y132{bottom:515.595000px;}
.y8e{bottom:520.815000px;}
.ya8{bottom:522.975000px;}
.y4c{bottom:523.875000px;}
.y15f{bottom:525.315000px;}
.y115{bottom:526.395000px;}
.y1e{bottom:531.435000px;}
.ybe{bottom:532.515000px;}
.y131{bottom:532.875000px;}
.y8b{bottom:536.115000px;}
.ya7{bottom:542.055000px;}
.y4b{bottom:542.955000px;}
.y114{bottom:543.675000px;}
.ybd{bottom:547.815000px;}
.y1d{bottom:548.535000px;}
.y15e{bottom:559.725000px;}
.ya6{bottom:560.985000px;}
.y4a{bottom:561.885000px;}
.y1c{bottom:565.845000px;}
.y8a{bottom:574.125000px;}
.y6e{bottom:575.565000px;}
.y15d{bottom:577.005000px;}
.y113{bottom:578.265000px;}
.ya5{bottom:580.065000px;}
.y49{bottom:580.965000px;}
.y1b{bottom:583.125000px;}
.ybb{bottom:585.825000px;}
.y15c{bottom:594.285000px;}
.y130{bottom:595.545000px;}
.ya4{bottom:598.965000px;}
.y48{bottom:599.865000px;}
.y1a{bottom:600.405000px;}
.y112{bottom:606.165000px;}
.y15b{bottom:611.565000px;}
.y148{bottom:612.645000px;}
.y19{bottom:617.685000px;}
.ya3{bottom:617.865000px;}
.y47{bottom:618.765000px;}
.y111{bottom:623.445000px;}
.y15a{bottom:628.845000px;}
.ya1{bottom:633.165000px;}
.y18{bottom:634.965000px;}
.y46{bottom:637.845000px;}
.y110{bottom:640.725000px;}
.y159{bottom:645.945000px;}
.y17{bottom:652.065000px;}
.y45{bottom:656.745000px;}
.y10f{bottom:658.005000px;}
.y158{bottom:663.225000px;}
.y12f{bottom:668.805000px;}
.y16{bottom:669.345000px;}
.y10e{bottom:675.285000px;}
.y44{bottom:675.825000px;}
.y12e{bottom:686.085000px;}
.y147{bottom:692.565000px;}
.y43{bottom:694.725000px;}
.y157{bottom:697.785000px;}
.y10d{bottom:703.365000px;}
.y15{bottom:703.905000px;}
.y9f{bottom:709.125000px;}
.y42{bottom:713.805000px;}
.y156{bottom:715.065000px;}
.y146{bottom:720.465000px;}
.y10c{bottom:720.645000px;}
.y14{bottom:721.185000px;}
.y155{bottom:732.345000px;}
.y41{bottom:732.705000px;}
.y10b{bottom:737.745000px;}
.y13{bottom:738.285000px;}
.y12d{bottom:748.590000px;}
.y154{bottom:749.490000px;}
.y40{bottom:751.650000px;}
.y145{bottom:755.070000px;}
.y11{bottom:755.610000px;}
.y12{bottom:760.830000px;}
.y10a{bottom:765.870000px;}
.y153{bottom:766.770000px;}
.y3f{bottom:770.730000px;}
.y10{bottom:773.430000px;}
.y109{bottom:783.150000px;}
.y152{bottom:784.050000px;}
.y3e{bottom:789.630000px;}
.yf{bottom:792.330000px;}
.y108{bottom:800.430000px;}
.y151{bottom:801.330000px;}
.y3d{bottom:808.710000px;}
.y12c{bottom:811.230000px;}
.y142{bottom:817.710000px;}
.y150{bottom:818.610000px;}
.y3c{bottom:827.610000px;}
.y107{bottom:828.330000px;}
.y12b{bottom:828.510000px;}
.ye{bottom:830.310000px;}
.y14f{bottom:835.710000px;}
.y106{bottom:845.610000px;}
.y3b{bottom:846.510000px;}
.yd{bottom:849.210000px;}
.y14e{bottom:852.990000px;}
.y12a{bottom:862.890000px;}
.y3a{bottom:865.590000px;}
.yc{bottom:867.750000px;}
.y14d{bottom:870.270000px;}
.y105{bottom:873.690000px;}
.y141{bottom:880.170000px;}
.y39{bottom:884.490000px;}
.yb{bottom:885.030000px;}
.y104{bottom:890.970000px;}
.y144{bottom:897.450000px;}
.ya{bottom:902.310000px;}
.y38{bottom:903.570000px;}
.y14c{bottom:904.830000px;}
.y103{bottom:908.250000px;}
.y6{bottom:920.850000px;}
.y37{bottom:922.470000px;}
.y102{bottom:925.530000px;}
.y5{bottom:936.540000px;}
.y36{bottom:941.400000px;}
.y101{bottom:942.840000px;}
.y4{bottom:952.020000px;}
.y1{bottom:968.220000px;}
.y34{bottom:986.760000px;}
.h4{height:15.480000px;}
.h1f{height:19.080000px;}
.h2{height:31.140000px;}
.h10{height:35.332031px;}
.h19{height:38.016000px;}
.hc{height:38.139609px;}
.hf{height:45.549492px;}
.h7{height:47.344922px;}
.h1c{height:50.488594px;}
.h3{height:52.998047px;}
.h22{height:53.573906px;}
.h5{height:54.421875px;}
.h21{height:56.880000px;}
.hb{height:58.621992px;}
.hd{height:58.651172px;}
.he{height:59.027344px;}
.h12{height:59.383125px;}
.h11{height:59.439023px;}
.h8{height:60.226875px;}
.h17{height:64.978594px;}
.h9{height:65.010937px;}
.h6{height:65.884219px;}
.ha{height:66.757500px;}
.h13{height:68.084282px;}
.h1b{height:75.960000px;}
.h16{height:75.996000px;}
.h14{height:82.676953px;}
.h1a{height:247.575000px;}
.h1d{height:370.875000px;}
.h15{height:381.135000px;}
.h18{height:382.575000px;}
.h1e{height:420.555000px;}
.h20{height:473.505000px;}
.h0{height:1020.600000px;}
.h1{height:1020.750000px;}
.w4{width:268.590000px;}
.w3{width:268.635000px;}
.w2{width:537.225000px;}
.wa{width:552.030000px;}
.w9{width:552.165000px;}
.w8{width:552.750000px;}
.w7{width:552.885000px;}
.w6{width:701.639979px;}
.w5{width:701.639990px;}
.w0{width:701.640000px;}
.w1{width:702.000000px;}
.x0{left:0.000000px;}
.x17{left:8.100000px;}
.x1e{left:22.716000px;}
.x3{left:48.060000px;}
.x5{left:57.240000px;}
.x1c{left:59.256000px;}
.x10{left:63.899990px;}
.x6{left:66.594000px;}
.x19{left:68.976000px;}
.x7{left:85.175990px;}
.x12{left:87.335990px;}
.xf{left:89.675990px;}
.x1{left:93.276000px;}
.x20{left:105.335990px;}
.x13{left:112.175990px;}
.x11{left:117.935990px;}
.x24{left:134.135990px;}
.xc{left:139.175990px;}
.x15{left:142.599000px;}
.x2{left:145.839000px;}
.x1f{left:151.995000px;}
.x21{left:169.049990px;}
.xd{left:185.609990px;}
.x25{left:193.169990px;}
.x8{left:206.489990px;}
.x1a{left:208.335000px;}
.x16{left:209.559000px;}
.x1b{left:224.319000px;}
.x26{left:274.214990px;}
.x1d{left:276.009000px;}
.x9{left:287.354990px;}
.xe{left:301.214990px;}
.x23{left:308.594990px;}
.x27{left:316.514990px;}
.x22{left:340.274990px;}
.x4{left:361.905000px;}
.xa{left:423.284979px;}
.xb{left:428.144990px;}
.x18{left:550.410000px;}
.x14{left:559.404000px;}
@media print{
.v1{vertical-align:-67.840000pt;}
.v3{vertical-align:-65.920000pt;}
.v4{vertical-align:-63.360000pt;}
.v2{vertical-align:-61.440000pt;}
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-4.250667pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.456533pt;}
.lsf{letter-spacing:-0.409067pt;}
.lsc{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.271467pt;}
.ls12{letter-spacing:-0.160000pt;}
.lse{letter-spacing:-0.047360pt;}
.lsb{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.097067pt;}
.ls2{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.133333pt;}
.lsd{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.232960pt;}
.ls3{letter-spacing:0.265600pt;}
.ls17{letter-spacing:0.271467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls14{letter-spacing:2.693120pt;}
.ls9{letter-spacing:12.960000pt;}
.ls6{letter-spacing:34.720000pt;}
.ls11{letter-spacing:35.471360pt;}
.ls4{letter-spacing:50.560000pt;}
.ls1{letter-spacing:158.880000pt;}
.ls7{letter-spacing:177.280000pt;}
.ls13{letter-spacing:177.408000pt;}
.ls5{letter-spacing:178.720000pt;}
.ls1d{letter-spacing:178.848000pt;}
.ls1b{letter-spacing:734.506667pt;}
.ls1c{letter-spacing:777.258667pt;}
.wsb{word-spacing:-14.991467pt;}
.wsa{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.448533pt;}
.wsc{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.545600pt;}
.ws4{word-spacing:-13.280000pt;}
.ws6{word-spacing:-13.232640pt;}
.ws7{word-spacing:-12.870933pt;}
.wsd{word-spacing:-12.823467pt;}
.ws3{word-spacing:-12.320000pt;}
.ws1{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.680000pt;}
.ws2{word-spacing:-10.720000pt;}
.ws8{word-spacing:0.000000pt;}
._2a{margin-left:-7.633280pt;}
._1b{margin-left:-6.318293pt;}
._1c{margin-left:-5.349333pt;}
._18{margin-left:-4.377600pt;}
._a{margin-left:-3.338027pt;}
._3{margin-left:-2.341547pt;}
._0{margin-left:-0.912000pt;}
._1{width:1.146667pt;}
._4{width:2.097280pt;}
._5{width:3.148800pt;}
._b{width:4.122240pt;}
._9{width:5.046400pt;}
._13{width:6.182400pt;}
._6{width:7.489920pt;}
._12{width:9.067520pt;}
._8{width:10.433493pt;}
._7{width:11.686400pt;}
._14{width:12.715520pt;}
._f{width:13.809280pt;}
._d{width:14.926720pt;}
._2{width:15.963520pt;}
._11{width:17.338880pt;}
._c{width:18.326400pt;}
._10{width:19.371520pt;}
._15{width:20.784640pt;}
._16{width:21.962240pt;}
._17{width:23.345280pt;}
._1f{width:25.434880pt;}
._1e{width:26.437120pt;}
._19{width:28.203520pt;}
._20{width:30.172160pt;}
._21{width:31.659520pt;}
._33{width:36.227840pt;}
._34{width:37.407360pt;}
._2e{width:38.565120pt;}
._2f{width:39.673813pt;}
._1d{width:42.401067pt;}
._30{width:46.214400pt;}
._28{width:48.286080pt;}
._29{width:49.189120pt;}
._2c{width:55.085440pt;}
._2b{width:57.157120pt;}
._38{width:59.547520pt;}
._39{width:60.778240pt;}
._35{width:68.046720pt;}
._36{width:72.136960pt;}
._37{width:73.515520pt;}
._32{width:82.714453pt;}
._31{width:84.301440pt;}
._23{width:96.086613pt;}
._22{width:97.377067pt;}
._27{width:105.815040pt;}
._25{width:149.745280pt;}
._26{width:153.463680pt;}
._24{width:156.354133pt;}
._2d{width:176.393387pt;}
._3a{width:753.418667pt;}
._e{width:792.666667pt;}
._1a{width:923.786667pt;}
.fs5{font-size:32.000000pt;}
.fs4{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y8d{bottom:3.200000pt;}
.y73{bottom:3.360000pt;}
.y2{bottom:16.480000pt;}
.y72{bottom:20.160000pt;}
.y8c{bottom:20.186667pt;}
.y35{bottom:21.280000pt;}
.y9{bottom:21.440000pt;}
.y8{bottom:34.880000pt;}
.ye0{bottom:36.960000pt;}
.y71{bottom:37.120000pt;}
.y7{bottom:49.440000pt;}
.ya2{bottom:53.920000pt;}
.y70{bottom:53.946667pt;}
.yf3{bottom:61.760000pt;}
.y33{bottom:63.200000pt;}
.y129{bottom:63.360000pt;}
.yd5{bottom:68.480000pt;}
.y6d{bottom:73.120000pt;}
.y89{bottom:76.320000pt;}
.y32{bottom:76.960000pt;}
.y63{bottom:77.760000pt;}
.yf2{bottom:78.560000pt;}
.y128{bottom:78.720000pt;}
.y31{bottom:80.960000pt;}
.yd4{bottom:85.280000pt;}
.y100{bottom:88.480000pt;}
.y6c{bottom:90.080000pt;}
.y30{bottom:92.160000pt;}
.y88{bottom:93.120000pt;}
.y127{bottom:94.080000pt;}
.y62{bottom:94.560000pt;}
.yf1{bottom:95.520000pt;}
.yd3{bottom:102.240000pt;}
.yff{bottom:103.840000pt;}
.y6b{bottom:106.880000pt;}
.ydc{bottom:108.640000pt;}
.y140{bottom:109.440000pt;}
.y87{bottom:110.080000pt;}
.y61{bottom:111.520000pt;}
.yf0{bottom:112.320000pt;}
.y14b{bottom:117.600000pt;}
.y126{bottom:118.880000pt;}
.yd2{bottom:119.040000pt;}
.y6a{bottom:123.840000pt;}
.y13f{bottom:124.640000pt;}
.ydb{bottom:125.600000pt;}
.y86{bottom:126.880000pt;}
.y60{bottom:128.320000pt;}
.yef{bottom:129.120000pt;}
.y125{bottom:134.240000pt;}
.yd1{bottom:136.000000pt;}
.y13e{bottom:140.000000pt;}
.y69{bottom:140.640000pt;}
.yda{bottom:142.400000pt;}
.y85{bottom:143.680000pt;}
.yfe{bottom:144.000000pt;}
.y5f{bottom:145.280000pt;}
.yee{bottom:146.080000pt;}
.y124{bottom:149.600000pt;}
.yd0{bottom:152.800000pt;}
.y68{bottom:157.440000pt;}
.yd9{bottom:159.200000pt;}
.yfd{bottom:159.360000pt;}
.y84{bottom:160.640000pt;}
.yba{bottom:161.280000pt;}
.y5e{bottom:162.080000pt;}
.yed{bottom:162.880000pt;}
.y123{bottom:164.986667pt;}
.ycf{bottom:169.626667pt;}
.y67{bottom:174.426667pt;}
.y14a{bottom:174.586667pt;}
.yfc{bottom:174.746667pt;}
.y9e{bottom:176.186667pt;}
.y2f{bottom:176.346667pt;}
.y83{bottom:177.466667pt;}
.yb9{bottom:178.106667pt;}
.y5d{bottom:179.066667pt;}
.yec{bottom:179.866667pt;}
.y13d{bottom:180.346667pt;}
.yce{bottom:186.586667pt;}
.y122{bottom:189.946667pt;}
.yfb{bottom:190.106667pt;}
.y66{bottom:191.226667pt;}
.y2e{bottom:191.706667pt;}
.y9d{bottom:192.986667pt;}
.y82{bottom:194.426667pt;}
.yb8{bottom:195.066667pt;}
.y13c{bottom:195.706667pt;}
.y5c{bottom:195.866667pt;}
.yeb{bottom:196.666667pt;}
.ycd{bottom:203.386667pt;}
.y121{bottom:205.306667pt;}
.ya0{bottom:206.466667pt;}
.y2d{bottom:207.066667pt;}
.y65{bottom:208.186667pt;}
.y9c{bottom:209.946667pt;}
.y81{bottom:211.226667pt;}
.yb7{bottom:211.866667pt;}
.y5b{bottom:212.666667pt;}
.yea{bottom:213.626667pt;}
.yfa{bottom:214.906667pt;}
.ycc{bottom:220.346667pt;}
.y13b{bottom:220.506667pt;}
.y120{bottom:220.666667pt;}
.y2c{bottom:222.426667pt;}
.y64{bottom:225.786667pt;}
.y9b{bottom:226.746667pt;}
.y80{bottom:228.026667pt;}
.yb6{bottom:228.826667pt;}
.y5a{bottom:229.626667pt;}
.yf9{bottom:230.266667pt;}
.ye9{bottom:230.426667pt;}
.y13a{bottom:235.866667pt;}
.ycb{bottom:237.146667pt;}
.y2b{bottom:237.786667pt;}
.y9a{bottom:243.546667pt;}
.y7f{bottom:244.986667pt;}
.y11f{bottom:245.466667pt;}
.yb5{bottom:245.626667pt;}
.y59{bottom:246.426667pt;}
.ye8{bottom:247.226667pt;}
.y139{bottom:251.226667pt;}
.y2a{bottom:252.986667pt;}
.yca{bottom:253.946667pt;}
.y99{bottom:260.506667pt;}
.y11e{bottom:260.826667pt;}
.y7e{bottom:261.786667pt;}
.yb4{bottom:262.426667pt;}
.y58{bottom:263.386667pt;}
.ye7{bottom:264.186667pt;}
.y29{bottom:268.346667pt;}
.yf8{bottom:270.586667pt;}
.yc9{bottom:270.906667pt;}
.y11d{bottom:276.186667pt;}
.y98{bottom:277.306667pt;}
.y7d{bottom:278.746667pt;}
.yb3{bottom:279.386667pt;}
.y57{bottom:280.186667pt;}
.ye6{bottom:280.986667pt;}
.y28{bottom:283.706667pt;}
.yf7{bottom:285.946667pt;}
.yc8{bottom:287.706667pt;}
.y138{bottom:291.546667pt;}
.y97{bottom:294.266667pt;}
.y7c{bottom:295.546667pt;}
.yb2{bottom:296.186667pt;}
.y56{bottom:296.986667pt;}
.ye5{bottom:297.946667pt;}
.y27{bottom:299.066667pt;}
.y11c{bottom:301.146667pt;}
.yf6{bottom:301.306667pt;}
.yc7{bottom:304.666667pt;}
.y137{bottom:306.906667pt;}
.y96{bottom:311.066667pt;}
.y7b{bottom:312.346667pt;}
.yb1{bottom:313.146667pt;}
.y55{bottom:313.946667pt;}
.y26{bottom:314.426667pt;}
.ye4{bottom:314.746667pt;}
.ybc{bottom:316.066667pt;}
.y143{bottom:316.346667pt;}
.y11b{bottom:316.506667pt;}
.yf5{bottom:316.666667pt;}
.yc6{bottom:321.466667pt;}
.yd8{bottom:327.866667pt;}
.y95{bottom:328.026667pt;}
.y7a{bottom:329.346667pt;}
.y25{bottom:329.826667pt;}
.yb0{bottom:329.986667pt;}
.y54{bottom:330.786667pt;}
.ye3{bottom:331.586667pt;}
.y11a{bottom:331.746667pt;}
.yf4{bottom:331.906667pt;}
.yc5{bottom:338.466667pt;}
.y167{bottom:344.226667pt;}
.y94{bottom:344.866667pt;}
.y79{bottom:346.146667pt;}
.yaf{bottom:346.786667pt;}
.y136{bottom:347.106667pt;}
.y53{bottom:347.746667pt;}
.ye2{bottom:348.546667pt;}
.yc4{bottom:355.266667pt;}
.y119{bottom:356.706667pt;}
.y166{bottom:359.586667pt;}
.y24{bottom:360.866667pt;}
.y93{bottom:361.666667pt;}
.y135{bottom:362.466667pt;}
.y78{bottom:363.106667pt;}
.yae{bottom:363.746667pt;}
.y52{bottom:364.546667pt;}
.ye1{bottom:365.346667pt;}
.yc3{bottom:372.066667pt;}
.y165{bottom:374.946667pt;}
.y23{bottom:377.666667pt;}
.y92{bottom:378.626667pt;}
.ydf{bottom:378.946667pt;}
.y77{bottom:379.906667pt;}
.yad{bottom:380.546667pt;}
.y51{bottom:381.346667pt;}
.y118{bottom:387.426667pt;}
.yc2{bottom:389.026667pt;}
.y164{bottom:390.146667pt;}
.y91{bottom:395.426667pt;}
.y76{bottom:396.706667pt;}
.yac{bottom:397.506667pt;}
.y50{bottom:398.306667pt;}
.y134{bottom:402.786667pt;}
.y163{bottom:405.506667pt;}
.yc1{bottom:405.826667pt;}
.yde{bottom:407.293333pt;}
.yd7{bottom:409.026667pt;}
.y22{bottom:410.946667pt;}
.y90{bottom:412.386667pt;}
.y75{bottom:413.666667pt;}
.yab{bottom:414.306667pt;}
.y4f{bottom:415.106667pt;}
.y133{bottom:418.146667pt;}
.y162{bottom:420.866667pt;}
.yc0{bottom:422.786667pt;}
.yd6{bottom:425.986667pt;}
.y21{bottom:426.306667pt;}
.y149{bottom:427.586667pt;}
.y117{bottom:427.746667pt;}
.y8f{bottom:429.186667pt;}
.ydd{bottom:429.506667pt;}
.y74{bottom:430.466667pt;}
.yaa{bottom:431.266667pt;}
.y4e{bottom:432.066667pt;}
.y161{bottom:436.226667pt;}
.ybf{bottom:439.586667pt;}
.y20{bottom:441.666667pt;}
.y116{bottom:442.946667pt;}
.y6f{bottom:444.066667pt;}
.ya9{bottom:448.066667pt;}
.y4d{bottom:448.866667pt;}
.y160{bottom:451.586667pt;}
.y1f{bottom:457.026667pt;}
.y132{bottom:458.306667pt;}
.y8e{bottom:462.946667pt;}
.ya8{bottom:464.866667pt;}
.y4c{bottom:465.666667pt;}
.y15f{bottom:466.946667pt;}
.y115{bottom:467.906667pt;}
.y1e{bottom:472.386667pt;}
.ybe{bottom:473.346667pt;}
.y131{bottom:473.666667pt;}
.y8b{bottom:476.546667pt;}
.ya7{bottom:481.826667pt;}
.y4b{bottom:482.626667pt;}
.y114{bottom:483.266667pt;}
.ybd{bottom:486.946667pt;}
.y1d{bottom:487.586667pt;}
.y15e{bottom:497.533333pt;}
.ya6{bottom:498.653333pt;}
.y4a{bottom:499.453333pt;}
.y1c{bottom:502.973333pt;}
.y8a{bottom:510.333333pt;}
.y6e{bottom:511.613333pt;}
.y15d{bottom:512.893333pt;}
.y113{bottom:514.013333pt;}
.ya5{bottom:515.613333pt;}
.y49{bottom:516.413333pt;}
.y1b{bottom:518.333333pt;}
.ybb{bottom:520.733333pt;}
.y15c{bottom:528.253333pt;}
.y130{bottom:529.373333pt;}
.ya4{bottom:532.413333pt;}
.y48{bottom:533.213333pt;}
.y1a{bottom:533.693333pt;}
.y112{bottom:538.813333pt;}
.y15b{bottom:543.613333pt;}
.y148{bottom:544.573333pt;}
.y19{bottom:549.053333pt;}
.ya3{bottom:549.213333pt;}
.y47{bottom:550.013333pt;}
.y111{bottom:554.173333pt;}
.y15a{bottom:558.973333pt;}
.ya1{bottom:562.813333pt;}
.y18{bottom:564.413333pt;}
.y46{bottom:566.973333pt;}
.y110{bottom:569.533333pt;}
.y159{bottom:574.173333pt;}
.y17{bottom:579.613333pt;}
.y45{bottom:583.773333pt;}
.y10f{bottom:584.893333pt;}
.y158{bottom:589.533333pt;}
.y12f{bottom:594.493333pt;}
.y16{bottom:594.973333pt;}
.y10e{bottom:600.253333pt;}
.y44{bottom:600.733333pt;}
.y12e{bottom:609.853333pt;}
.y147{bottom:615.613333pt;}
.y43{bottom:617.533333pt;}
.y157{bottom:620.253333pt;}
.y10d{bottom:625.213333pt;}
.y15{bottom:625.693333pt;}
.y9f{bottom:630.333333pt;}
.y42{bottom:634.493333pt;}
.y156{bottom:635.613333pt;}
.y146{bottom:640.413333pt;}
.y10c{bottom:640.573333pt;}
.y14{bottom:641.053333pt;}
.y155{bottom:650.973333pt;}
.y41{bottom:651.293333pt;}
.y10b{bottom:655.773333pt;}
.y13{bottom:656.253333pt;}
.y12d{bottom:665.413333pt;}
.y154{bottom:666.213333pt;}
.y40{bottom:668.133333pt;}
.y145{bottom:671.173333pt;}
.y11{bottom:671.653333pt;}
.y12{bottom:676.293333pt;}
.y10a{bottom:680.773333pt;}
.y153{bottom:681.573333pt;}
.y3f{bottom:685.093333pt;}
.y10{bottom:687.493333pt;}
.y109{bottom:696.133333pt;}
.y152{bottom:696.933333pt;}
.y3e{bottom:701.893333pt;}
.yf{bottom:704.293333pt;}
.y108{bottom:711.493333pt;}
.y151{bottom:712.293333pt;}
.y3d{bottom:718.853333pt;}
.y12c{bottom:721.093333pt;}
.y142{bottom:726.853333pt;}
.y150{bottom:727.653333pt;}
.y3c{bottom:735.653333pt;}
.y107{bottom:736.293333pt;}
.y12b{bottom:736.453333pt;}
.ye{bottom:738.053333pt;}
.y14f{bottom:742.853333pt;}
.y106{bottom:751.653333pt;}
.y3b{bottom:752.453333pt;}
.yd{bottom:754.853333pt;}
.y14e{bottom:758.213333pt;}
.y12a{bottom:767.013333pt;}
.y3a{bottom:769.413333pt;}
.yc{bottom:771.333333pt;}
.y14d{bottom:773.573333pt;}
.y105{bottom:776.613333pt;}
.y141{bottom:782.373333pt;}
.y39{bottom:786.213333pt;}
.yb{bottom:786.693333pt;}
.y104{bottom:791.973333pt;}
.y144{bottom:797.733333pt;}
.ya{bottom:802.053333pt;}
.y38{bottom:803.173333pt;}
.y14c{bottom:804.293333pt;}
.y103{bottom:807.333333pt;}
.y6{bottom:818.533333pt;}
.y37{bottom:819.973333pt;}
.y102{bottom:822.693333pt;}
.y5{bottom:832.480000pt;}
.y36{bottom:836.800000pt;}
.y101{bottom:838.080000pt;}
.y4{bottom:846.240000pt;}
.y1{bottom:860.640000pt;}
.y34{bottom:877.120000pt;}
.h4{height:13.760000pt;}
.h1f{height:16.960000pt;}
.h2{height:27.680000pt;}
.h10{height:31.406250pt;}
.h19{height:33.792000pt;}
.hc{height:33.901875pt;}
.hf{height:40.488438pt;}
.h7{height:42.084375pt;}
.h1c{height:44.878750pt;}
.h3{height:47.109375pt;}
.h22{height:47.621250pt;}
.h5{height:48.375000pt;}
.h21{height:50.560000pt;}
.hb{height:52.108438pt;}
.hd{height:52.134375pt;}
.he{height:52.468750pt;}
.h12{height:52.785000pt;}
.h11{height:52.834688pt;}
.h8{height:53.535000pt;}
.h17{height:57.758750pt;}
.h9{height:57.787500pt;}
.h6{height:58.563750pt;}
.ha{height:59.340000pt;}
.h13{height:60.519362pt;}
.h1b{height:67.520000pt;}
.h16{height:67.552000pt;}
.h14{height:73.490625pt;}
.h1a{height:220.066667pt;}
.h1d{height:329.666667pt;}
.h15{height:338.786667pt;}
.h18{height:340.066667pt;}
.h1e{height:373.826667pt;}
.h20{height:420.893333pt;}
.h0{height:907.200000pt;}
.h1{height:907.333333pt;}
.w4{width:238.746667pt;}
.w3{width:238.786667pt;}
.w2{width:477.533333pt;}
.wa{width:490.693333pt;}
.w9{width:490.813333pt;}
.w8{width:491.333333pt;}
.w7{width:491.453333pt;}
.w6{width:623.679981pt;}
.w5{width:623.679991pt;}
.w0{width:623.680000pt;}
.w1{width:624.000000pt;}
.x0{left:0.000000pt;}
.x17{left:7.200000pt;}
.x1e{left:20.192000pt;}
.x3{left:42.720000pt;}
.x5{left:50.880000pt;}
.x1c{left:52.672000pt;}
.x10{left:56.799991pt;}
.x6{left:59.194667pt;}
.x19{left:61.312000pt;}
.x7{left:75.711991pt;}
.x12{left:77.631991pt;}
.xf{left:79.711991pt;}
.x1{left:82.912000pt;}
.x20{left:93.631991pt;}
.x13{left:99.711991pt;}
.x11{left:104.831991pt;}
.x24{left:119.231991pt;}
.xc{left:123.711991pt;}
.x15{left:126.754667pt;}
.x2{left:129.634667pt;}
.x1f{left:135.106667pt;}
.x21{left:150.266657pt;}
.xd{left:164.986657pt;}
.x25{left:171.706657pt;}
.x8{left:183.546657pt;}
.x1a{left:185.186667pt;}
.x16{left:186.274667pt;}
.x1b{left:199.394667pt;}
.x26{left:243.746657pt;}
.x1d{left:245.341333pt;}
.x9{left:255.426657pt;}
.xe{left:267.746657pt;}
.x23{left:274.306657pt;}
.x27{left:281.346657pt;}
.x22{left:302.466657pt;}
.x4{left:321.693333pt;}
.xa{left:376.253315pt;}
.xb{left:380.573324pt;}
.x18{left:489.253333pt;}
.x14{left:497.248000pt;}
}




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