
    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_8e225e0fa094dedeb8162786.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_c3da71a03e52c024bd7b3bdf.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b9eb5f79f5f0a9eee94f3379.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_1057340d7caa841e58e8bc48.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_449351a0bf677ec50364fd28.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_d42980a8addc90d1353881f0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.893555;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_f42fe48ed194bc082c925c99.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_93c2912a4bb43e0b3958a958.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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:-68.400000px;}
.vc{vertical-align:-66.240000px;}
.v5{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-61.200000px;}
.v4{vertical-align:-23.760000px;}
.va{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:23.760000px;}
.v3{vertical-align:30.420000px;}
.vb{vertical-align:40.524000px;}
.v9{vertical-align:45.030000px;}
.v7{vertical-align:54.036000px;}
.ve{vertical-align:58.536000px;}
.vd{vertical-align:76.560000px;}
.ls19{letter-spacing:-0.828000px;}
.ls25{letter-spacing:-0.720000px;}
.ls20{letter-spacing:-0.702000px;}
.lse{letter-spacing:-0.690000px;}
.ls10{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.220800px;}
.ls1b{letter-spacing:-0.108000px;}
.lsc{letter-spacing:-0.027360px;}
.lsa{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.012000px;}
.ls6{letter-spacing:0.018000px;}
.ls12{letter-spacing:0.108000px;}
.lsf{letter-spacing:0.109200px;}
.ls23{letter-spacing:0.126000px;}
.ls16{letter-spacing:0.162000px;}
.ls1{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.216000px;}
.ls11{letter-spacing:0.234000px;}
.ls13{letter-spacing:0.262200px;}
.ls2{letter-spacing:0.360000px;}
.ls1a{letter-spacing:1.224000px;}
.ls4{letter-spacing:2.340000px;}
.ls28{letter-spacing:2.988000px;}
.ls1e{letter-spacing:3.780000px;}
.ls1f{letter-spacing:8.100000px;}
.ls5{letter-spacing:19.620000px;}
.ls27{letter-spacing:30.348000px;}
.ls7{letter-spacing:52.560000px;}
.ls9{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls0{letter-spacing:154.980000px;}
.ls24{letter-spacing:702.300000px;}
.ls15{letter-spacing:952.500000px;}
.ls1c{letter-spacing:1054.500000px;}
.ls22{letter-spacing:1059.240000px;}
.ls18{letter-spacing:1172.700000px;}
.ls1d{letter-spacing:1226.100000px;}
.ls8{letter-spacing:1367.340000px;}
.ls26{letter-spacing:1410.900000px;}
.ls21{letter-spacing:1659.840000px;}
.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;}
}
.ws6{word-spacing:-20.370000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsf{word-spacing:-16.822200px;}
.ws7{word-spacing:-16.669200px;}
.ws11{word-spacing:-14.724000px;}
.ws3{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws13{word-spacing:-13.860000px;}
.wsc{word-spacing:-13.734000px;}
.ws10{word-spacing:-13.716000px;}
.ws15{word-spacing:-13.626000px;}
.wsd{word-spacing:-13.518000px;}
.wsa{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.392000px;}
.wsb{word-spacing:-13.140000px;}
.ws14{word-spacing:-12.798000px;}
.ws8{word-spacing:-10.440000px;}
.ws9{word-spacing:-9.000000px;}
.ws16{word-spacing:-8.280000px;}
.wse{word-spacing:0.000000px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._5{width:2.945760px;}
._6{width:4.158720px;}
._a{width:5.665680px;}
._b{width:7.668000px;}
._e{width:8.964000px;}
._9{width:10.056000px;}
._8{width:11.070000px;}
._c{width:12.150000px;}
._d{width:14.963760px;}
._f{width:18.000000px;}
._7{width:19.272000px;}
._11{width:31.500000px;}
._12{width:196.215120px;}
._14{width:198.360000px;}
._13{width:370.260000px;}
._16{width:546.749520px;}
._15{width:861.827760px;}
._10{width:1041.240000px;}
._4{width:1441.260000px;}
._3{width:1574.460000px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7e{bottom:2.850000px;}
.yd9{bottom:3.000000px;}
.y85{bottom:3.150000px;}
.ydc{bottom:3.225000px;}
.y81{bottom:18.450000px;}
.ydb{bottom:18.645000px;}
.ye2{bottom:20.700000px;}
.y69{bottom:26.325000px;}
.y1{bottom:34.125000px;}
.yac{bottom:36.465000px;}
.ybe{bottom:39.840000px;}
.y95{bottom:42.090000px;}
.y3c{bottom:54.054000px;}
.yae{bottom:54.066000px;}
.y6b{bottom:54.067500px;}
.yc0{bottom:54.150000px;}
.y10f{bottom:56.730000px;}
.y3{bottom:57.975000px;}
.yab{bottom:60.787500px;}
.y68{bottom:64.944000px;}
.ye1{bottom:68.040000px;}
.yaa{bottom:76.477500px;}
.y2{bottom:76.905000px;}
.y67{bottom:80.994000px;}
.ye0{bottom:83.550000px;}
.ya9{bottom:92.317500px;}
.y66{bottom:93.234000px;}
.ydf{bottom:98.850000px;}
.y39{bottom:103.350000px;}
.ya8{bottom:107.797500px;}
.yde{bottom:114.510000px;}
.ybd{bottom:115.356000px;}
.y38{bottom:118.830000px;}
.ya7{bottom:123.457500px;}
.y94{bottom:125.010000px;}
.ydd{bottom:130.350000px;}
.ybc{bottom:131.196000px;}
.y37{bottom:134.490000px;}
.y93{bottom:137.790000px;}
.ya6{bottom:138.937500px;}
.yda{bottom:143.505000px;}
.ybb{bottom:146.856000px;}
.y36{bottom:149.970000px;}
.ya5{bottom:154.417500px;}
.yba{bottom:162.336000px;}
.y35{bottom:165.450000px;}
.ya4{bottom:169.897500px;}
.yb9{bottom:177.816000px;}
.y34{bottom:180.930000px;}
.ya3{bottom:185.557500px;}
.yb8{bottom:193.476000px;}
.y33{bottom:196.590000px;}
.ya2{bottom:200.857500px;}
.yb7{bottom:208.596000px;}
.y32{bottom:212.070000px;}
.yd8{bottom:212.850000px;}
.ya1{bottom:216.337500px;}
.yb6{bottom:224.256000px;}
.y31{bottom:227.550000px;}
.ya0{bottom:231.997500px;}
.y10e{bottom:237.009000px;}
.yb5{bottom:239.916000px;}
.y65{bottom:240.654000px;}
.y30{bottom:243.210000px;}
.y9f{bottom:247.657500px;}
.y10d{bottom:252.669000px;}
.yb4{bottom:255.756000px;}
.y64{bottom:256.134000px;}
.y2f{bottom:258.690000px;}
.y10c{bottom:268.149000px;}
.yb3{bottom:268.176000px;}
.y63{bottom:271.614000px;}
.y2e{bottom:274.170000px;}
.y9e{bottom:278.797500px;}
.y10b{bottom:283.809000px;}
.y62{bottom:287.274000px;}
.y2d{bottom:289.830000px;}
.y9d{bottom:291.397500px;}
.y10a{bottom:299.469000px;}
.yd7{bottom:301.380000px;}
.y61{bottom:302.574000px;}
.y2c{bottom:305.310000px;}
.y109{bottom:314.949000px;}
.yd6{bottom:316.860000px;}
.y60{bottom:318.054000px;}
.y2b{bottom:320.790000px;}
.y108{bottom:330.609000px;}
.y110{bottom:331.500000px;}
.yd5{bottom:332.340000px;}
.y5f{bottom:333.714000px;}
.y2a{bottom:336.270000px;}
.y107{bottom:346.314000px;}
.yd4{bottom:348.045000px;}
.y5e{bottom:349.419000px;}
.y29{bottom:351.975000px;}
.y106{bottom:361.794000px;}
.yd3{bottom:363.165000px;}
.y5d{bottom:365.259000px;}
.y28{bottom:367.455000px;}
.yd2{bottom:375.945000px;}
.y105{bottom:377.454000px;}
.y5c{bottom:377.679000px;}
.y27{bottom:382.935000px;}
.y104{bottom:393.114000px;}
.y26{bottom:398.595000px;}
.y103{bottom:408.594000px;}
.y25{bottom:414.075000px;}
.y102{bottom:424.254000px;}
.y24{bottom:429.555000px;}
.y101{bottom:439.734000px;}
.y23{bottom:445.215000px;}
.y100{bottom:455.394000px;}
.yd1{bottom:455.505000px;}
.yff{bottom:471.054000px;}
.yd0{bottom:471.165000px;}
.y22{bottom:475.995000px;}
.ycf{bottom:486.465000px;}
.yfe{bottom:486.534000px;}
.y92{bottom:492.390000px;}
.yfd{bottom:501.834000px;}
.yce{bottom:501.945000px;}
.y21{bottom:506.955000px;}
.y91{bottom:507.870000px;}
.y5b{bottom:509.079000px;}
.ycd{bottom:514.725000px;}
.y90{bottom:523.530000px;}
.y5a{bottom:524.739000px;}
.y20{bottom:525.135000px;}
.yfc{bottom:533.334000px;}
.y8f{bottom:539.010000px;}
.y59{bottom:540.219000px;}
.yfb{bottom:548.814000px;}
.y1f{bottom:554.115000px;}
.y58{bottom:555.699000px;}
.y8e{bottom:560.430000px;}
.yfa{bottom:564.474000px;}
.y8d{bottom:569.970000px;}
.y57{bottom:571.359000px;}
.ycc{bottom:571.965000px;}
.y1e{bottom:572.475000px;}
.yf9{bottom:579.954000px;}
.y8c{bottom:585.630000px;}
.y56{bottom:586.659000px;}
.ycb{bottom:587.625000px;}
.y1d{bottom:587.955000px;}
.yf8{bottom:595.434000px;}
.y8b{bottom:600.930000px;}
.y55{bottom:602.139000px;}
.yca{bottom:602.925000px;}
.y1c{bottom:603.435000px;}
.yf7{bottom:610.764000px;}
.yc9{bottom:615.555000px;}
.y8a{bottom:616.440000px;}
.y54{bottom:617.829000px;}
.y1b{bottom:618.945000px;}
.y89{bottom:632.100000px;}
.y53{bottom:633.849000px;}
.y1a{bottom:634.605000px;}
.yf6{bottom:642.264000px;}
.y87{bottom:645.450000px;}
.y52{bottom:646.089000px;}
.y88{bottom:648.600000px;}
.y19{bottom:650.265000px;}
.yf5{bottom:657.924000px;}
.yf4{bottom:670.344000px;}
.y18{bottom:672.405000px;}
.yb2{bottom:685.986000px;}
.y17{bottom:699.045000px;}
.yb1{bottom:704.346000px;}
.y16{bottom:714.525000px;}
.yb0{bottom:716.766000px;}
.y9c{bottom:718.597500px;}
.y84{bottom:724.650000px;}
.y86{bottom:727.800000px;}
.y15{bottom:730.185000px;}
.y9b{bottom:734.257500px;}
.y9a{bottom:749.917500px;}
.y7f{bottom:764.250000px;}
.y99{bottom:765.037500px;}
.yc8{bottom:767.055000px;}
.y82{bottom:767.100000px;}
.y14{bottom:770.685000px;}
.y98{bottom:780.697500px;}
.y80{bottom:782.700000px;}
.yc7{bottom:782.895000px;}
.yc6{bottom:798.555000px;}
.y83{bottom:803.850000px;}
.y13{bottom:805.425000px;}
.y97{bottom:811.837500px;}
.yc5{bottom:813.675000px;}
.y96{bottom:824.617500px;}
.yc4{bottom:829.335000px;}
.y12{bottom:839.985000px;}
.y7d{bottom:843.450000px;}
.yc3{bottom:844.995000px;}
.y51{bottom:847.389000px;}
.yc2{bottom:860.835000px;}
.y50{bottom:862.869000px;}
.y11{bottom:869.145000px;}
.yc1{bottom:873.300000px;}
.y4f{bottom:878.574000px;}
.y4e{bottom:893.874000px;}
.y7c{bottom:901.837500px;}
.y10{bottom:908.250000px;}
.y4d{bottom:909.354000px;}
.yf3{bottom:910.044000px;}
.y7b{bottom:917.497500px;}
.y4c{bottom:925.014000px;}
.yf2{bottom:925.524000px;}
.yf{bottom:932.370000px;}
.y7a{bottom:932.977500px;}
.y4b{bottom:940.854000px;}
.yf1{bottom:941.004000px;}
.y79{bottom:948.457500px;}
.yf0{bottom:956.484000px;}
.y4a{bottom:956.514000px;}
.ye{bottom:956.670000px;}
.y78{bottom:964.117500px;}
.y49{bottom:971.994000px;}
.yef{bottom:972.144000px;}
.y77{bottom:979.237500px;}
.y48{bottom:987.474000px;}
.yee{bottom:987.624000px;}
.y76{bottom:994.897500px;}
.yed{bottom:1003.104000px;}
.y47{bottom:1003.134000px;}
.y75{bottom:1010.917500px;}
.yd{bottom:1016.070000px;}
.y46{bottom:1018.254000px;}
.yec{bottom:1018.584000px;}
.y74{bottom:1026.397500px;}
.y45{bottom:1033.914000px;}
.ya{bottom:1034.070000px;}
.yeb{bottom:1034.244000px;}
.yc{bottom:1039.290000px;}
.y73{bottom:1041.877500px;}
.yea{bottom:1049.724000px;}
.y44{bottom:1049.934000px;}
.y9{bottom:1057.290000px;}
.y72{bottom:1057.537500px;}
.ye9{bottom:1065.384000px;}
.y43{bottom:1065.414000px;}
.yb{bottom:1071.330000px;}
.y71{bottom:1073.017500px;}
.ye8{bottom:1080.684000px;}
.y42{bottom:1080.894000px;}
.y8{bottom:1086.630000px;}
.y70{bottom:1088.317500px;}
.y41{bottom:1096.374000px;}
.ye7{bottom:1096.524000px;}
.y6f{bottom:1103.977500px;}
.y7{bottom:1105.710000px;}
.ye6{bottom:1112.004000px;}
.y40{bottom:1112.034000px;}
.y6e{bottom:1119.817500px;}
.y6{bottom:1122.990000px;}
.y3f{bottom:1127.514000px;}
.ye5{bottom:1127.664000px;}
.y6d{bottom:1135.477500px;}
.y5{bottom:1140.300000px;}
.y3e{bottom:1142.844000px;}
.ye4{bottom:1143.174000px;}
.y4{bottom:1158.300000px;}
.y6c{bottom:1158.367500px;}
.y3d{bottom:1158.504000px;}
.yaf{bottom:1158.516000px;}
.ye3{bottom:1158.654000px;}
.y3b{bottom:1175.154000px;}
.ybf{bottom:1175.160000px;}
.yad{bottom:1175.166000px;}
.y6a{bottom:1175.167500px;}
.y3a{bottom:1193.700000px;}
.hb{height:35.314453px;}
.h1b{height:35.332031px;}
.h18{height:36.597656px;}
.hf{height:38.158594px;}
.h1a{height:38.880000px;}
.h16{height:38.895000px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.he{height:52.971680px;}
.h11{height:52.998047px;}
.hc{height:54.421875px;}
.h23{height:55.503491px;}
.h7{height:55.796836px;}
.h13{height:55.824609px;}
.h8{height:58.621992px;}
.h14{height:59.092031px;}
.h19{height:60.041250px;}
.h3{height:60.226875px;}
.h20{height:60.281250px;}
.hd{height:62.153438px;}
.h1{height:65.010937px;}
.h4{height:66.757500px;}
.h21{height:68.565000px;}
.h1f{height:68.760000px;}
.ha{height:72.506250px;}
.h2{height:72.562500px;}
.h17{height:78.480000px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h1c{height:107.281500px;}
.h15{height:111.787500px;}
.h12{height:120.793500px;}
.h22{height:125.293500px;}
.h1e{height:141.570938px;}
.h1d{height:143.317500px;}
.h0{height:1263.000000px;}
.wc{width:41.940000px;}
.wb{width:41.970000px;}
.we{width:42.150000px;}
.w7{width:42.300000px;}
.w6{width:42.315000px;}
.w9{width:42.510000px;}
.wd{width:49.860000px;}
.w8{width:50.220000px;}
.w11{width:74.010000px;}
.w12{width:74.160000px;}
.w10{width:75.630000px;}
.w4{width:80.280000px;}
.wa{width:80.820000px;}
.w13{width:83.910000px;}
.w3{width:104.220000px;}
.w15{width:106.050000px;}
.w14{width:123.120000px;}
.wf{width:128.730000px;}
.w16{width:131.970000px;}
.w5{width:221.100000px;}
.w2{width:238.650000px;}
.w1{width:794.400000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x24{left:8.100000px;}
.x2f{left:9.150000px;}
.x2b{left:11.100000px;}
.x20{left:12.150000px;}
.x41{left:15.150000px;}
.x3a{left:16.200000px;}
.x44{left:23.550000px;}
.x2e{left:25.950000px;}
.x43{left:27.750000px;}
.x3{left:29.925000px;}
.x46{left:32.250000px;}
.x42{left:37.830000px;}
.x47{left:40.950000px;}
.x45{left:43.200000px;}
.xd{left:46.890000px;}
.xf{left:50.175000px;}
.x2a{left:52.650000px;}
.x19{left:55.800000px;}
.x1d{left:60.750000px;}
.xa{left:69.885000px;}
.x4b{left:74.283000px;}
.x22{left:84.150000px;}
.x1b{left:86.970000px;}
.x4a{left:101.313000px;}
.x9{left:122.520000px;}
.x1a{left:127.500000px;}
.x3b{left:182.100000px;}
.x6{left:244.170000px;}
.x3c{left:258.150000px;}
.x4{left:270.300000px;}
.x5{left:290.610000px;}
.x1c{left:295.050000px;}
.x29{left:302.850000px;}
.x1e{left:309.300000px;}
.x2d{left:331.950000px;}
.x16{left:338.970000px;}
.x35{left:342.615000px;}
.xc{left:348.690000px;}
.x10{left:355.680000px;}
.x14{left:362.295000px;}
.xb{left:366.600000px;}
.x18{left:370.155000px;}
.x49{left:403.713000px;}
.x3d{left:407.100000px;}
.x1{left:410.250000px;}
.xe{left:412.440000px;}
.x4c{left:419.658000px;}
.x34{left:421.650000px;}
.x31{left:424.950000px;}
.x48{left:435.150000px;}
.x17{left:436.200000px;}
.x4d{left:439.650000px;}
.x11{left:449.160000px;}
.x2{left:465.525000px;}
.x7{left:478.965000px;}
.x3e{left:491.400000px;}
.x8{left:506.580000px;}
.x1f{left:508.650000px;}
.x21{left:589.200000px;}
.x39{left:597.810000px;}
.x38{left:600.060000px;}
.x3f{left:614.850000px;}
.x12{left:616.815000px;}
.x37{left:630.480000px;}
.x25{left:631.950000px;}
.x15{left:659.070000px;}
.x36{left:672.480000px;}
.x26{left:674.550000px;}
.x32{left:694.530000px;}
.x30{left:712.860000px;}
.x40{left:721.200000px;}
.x27{left:725.250000px;}
.x28{left:767.850000px;}
.x33{left:787.605000px;}
.x13{left:800.145000px;}
.x23{left:820.050000px;}
.x2c{left:822.300000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.vc{vertical-align:-58.880000pt;}
.v5{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-54.400000pt;}
.v4{vertical-align:-21.120000pt;}
.va{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:21.120000pt;}
.v3{vertical-align:27.040000pt;}
.vb{vertical-align:36.021333pt;}
.v9{vertical-align:40.026667pt;}
.v7{vertical-align:48.032000pt;}
.ve{vertical-align:52.032000pt;}
.vd{vertical-align:68.053333pt;}
.ls19{letter-spacing:-0.736000pt;}
.ls25{letter-spacing:-0.640000pt;}
.ls20{letter-spacing:-0.624000pt;}
.lse{letter-spacing:-0.613333pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls1b{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:-0.024320pt;}
.lsa{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.010667pt;}
.ls6{letter-spacing:0.016000pt;}
.ls12{letter-spacing:0.096000pt;}
.lsf{letter-spacing:0.097067pt;}
.ls23{letter-spacing:0.112000pt;}
.ls16{letter-spacing:0.144000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.192000pt;}
.ls11{letter-spacing:0.208000pt;}
.ls13{letter-spacing:0.233067pt;}
.ls2{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:1.088000pt;}
.ls4{letter-spacing:2.080000pt;}
.ls28{letter-spacing:2.656000pt;}
.ls1e{letter-spacing:3.360000pt;}
.ls1f{letter-spacing:7.200000pt;}
.ls5{letter-spacing:17.440000pt;}
.ls27{letter-spacing:26.976000pt;}
.ls7{letter-spacing:46.720000pt;}
.ls9{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls0{letter-spacing:137.760000pt;}
.ls24{letter-spacing:624.266667pt;}
.ls15{letter-spacing:846.666667pt;}
.ls1c{letter-spacing:937.333333pt;}
.ls22{letter-spacing:941.546667pt;}
.ls18{letter-spacing:1042.400000pt;}
.ls1d{letter-spacing:1089.866667pt;}
.ls8{letter-spacing:1215.413333pt;}
.ls26{letter-spacing:1254.133333pt;}
.ls21{letter-spacing:1475.413333pt;}
.ws6{word-spacing:-18.106667pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsf{word-spacing:-14.953067pt;}
.ws7{word-spacing:-14.817067pt;}
.ws11{word-spacing:-13.088000pt;}
.ws3{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws13{word-spacing:-12.320000pt;}
.wsc{word-spacing:-12.208000pt;}
.ws10{word-spacing:-12.192000pt;}
.ws15{word-spacing:-12.112000pt;}
.wsd{word-spacing:-12.016000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.904000pt;}
.wsb{word-spacing:-11.680000pt;}
.ws14{word-spacing:-11.376000pt;}
.ws8{word-spacing:-9.280000pt;}
.ws9{word-spacing:-8.000000pt;}
.ws16{word-spacing:-7.360000pt;}
.wse{word-spacing:0.000000pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._5{width:2.618453pt;}
._6{width:3.696640pt;}
._a{width:5.036160pt;}
._b{width:6.816000pt;}
._e{width:7.968000pt;}
._9{width:8.938667pt;}
._8{width:9.840000pt;}
._c{width:10.800000pt;}
._d{width:13.301120pt;}
._f{width:16.000000pt;}
._7{width:17.130667pt;}
._11{width:28.000000pt;}
._12{width:174.413440pt;}
._14{width:176.320000pt;}
._13{width:329.120000pt;}
._16{width:485.999573pt;}
._15{width:766.069120pt;}
._10{width:925.546667pt;}
._4{width:1281.120000pt;}
._3{width:1399.520000pt;}
.fs8{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7e{bottom:2.533333pt;}
.yd9{bottom:2.666667pt;}
.y85{bottom:2.800000pt;}
.ydc{bottom:2.866667pt;}
.y81{bottom:16.400000pt;}
.ydb{bottom:16.573333pt;}
.ye2{bottom:18.400000pt;}
.y69{bottom:23.400000pt;}
.y1{bottom:30.333333pt;}
.yac{bottom:32.413333pt;}
.ybe{bottom:35.413333pt;}
.y95{bottom:37.413333pt;}
.y3c{bottom:48.048000pt;}
.yae{bottom:48.058667pt;}
.y6b{bottom:48.060000pt;}
.yc0{bottom:48.133333pt;}
.y10f{bottom:50.426667pt;}
.y3{bottom:51.533333pt;}
.yab{bottom:54.033333pt;}
.y68{bottom:57.728000pt;}
.ye1{bottom:60.480000pt;}
.yaa{bottom:67.980000pt;}
.y2{bottom:68.360000pt;}
.y67{bottom:71.994667pt;}
.ye0{bottom:74.266667pt;}
.ya9{bottom:82.060000pt;}
.y66{bottom:82.874667pt;}
.ydf{bottom:87.866667pt;}
.y39{bottom:91.866667pt;}
.ya8{bottom:95.820000pt;}
.yde{bottom:101.786667pt;}
.ybd{bottom:102.538667pt;}
.y38{bottom:105.626667pt;}
.ya7{bottom:109.740000pt;}
.y94{bottom:111.120000pt;}
.ydd{bottom:115.866667pt;}
.ybc{bottom:116.618667pt;}
.y37{bottom:119.546667pt;}
.y93{bottom:122.480000pt;}
.ya6{bottom:123.500000pt;}
.yda{bottom:127.560000pt;}
.ybb{bottom:130.538667pt;}
.y36{bottom:133.306667pt;}
.ya5{bottom:137.260000pt;}
.yba{bottom:144.298667pt;}
.y35{bottom:147.066667pt;}
.ya4{bottom:151.020000pt;}
.yb9{bottom:158.058667pt;}
.y34{bottom:160.826667pt;}
.ya3{bottom:164.940000pt;}
.yb8{bottom:171.978667pt;}
.y33{bottom:174.746667pt;}
.ya2{bottom:178.540000pt;}
.yb7{bottom:185.418667pt;}
.y32{bottom:188.506667pt;}
.yd8{bottom:189.200000pt;}
.ya1{bottom:192.300000pt;}
.yb6{bottom:199.338667pt;}
.y31{bottom:202.266667pt;}
.ya0{bottom:206.220000pt;}
.y10e{bottom:210.674667pt;}
.yb5{bottom:213.258667pt;}
.y65{bottom:213.914667pt;}
.y30{bottom:216.186667pt;}
.y9f{bottom:220.140000pt;}
.y10d{bottom:224.594667pt;}
.yb4{bottom:227.338667pt;}
.y64{bottom:227.674667pt;}
.y2f{bottom:229.946667pt;}
.y10c{bottom:238.354667pt;}
.yb3{bottom:238.378667pt;}
.y63{bottom:241.434667pt;}
.y2e{bottom:243.706667pt;}
.y9e{bottom:247.820000pt;}
.y10b{bottom:252.274667pt;}
.y62{bottom:255.354667pt;}
.y2d{bottom:257.626667pt;}
.y9d{bottom:259.020000pt;}
.y10a{bottom:266.194667pt;}
.yd7{bottom:267.893333pt;}
.y61{bottom:268.954667pt;}
.y2c{bottom:271.386667pt;}
.y109{bottom:279.954667pt;}
.yd6{bottom:281.653333pt;}
.y60{bottom:282.714667pt;}
.y2b{bottom:285.146667pt;}
.y108{bottom:293.874667pt;}
.y110{bottom:294.666667pt;}
.yd5{bottom:295.413333pt;}
.y5f{bottom:296.634667pt;}
.y2a{bottom:298.906667pt;}
.y107{bottom:307.834667pt;}
.yd4{bottom:309.373333pt;}
.y5e{bottom:310.594667pt;}
.y29{bottom:312.866667pt;}
.y106{bottom:321.594667pt;}
.yd3{bottom:322.813333pt;}
.y5d{bottom:324.674667pt;}
.y28{bottom:326.626667pt;}
.yd2{bottom:334.173333pt;}
.y105{bottom:335.514667pt;}
.y5c{bottom:335.714667pt;}
.y27{bottom:340.386667pt;}
.y104{bottom:349.434667pt;}
.y26{bottom:354.306667pt;}
.y103{bottom:363.194667pt;}
.y25{bottom:368.066667pt;}
.y102{bottom:377.114667pt;}
.y24{bottom:381.826667pt;}
.y101{bottom:390.874667pt;}
.y23{bottom:395.746667pt;}
.y100{bottom:404.794667pt;}
.yd1{bottom:404.893333pt;}
.yff{bottom:418.714667pt;}
.yd0{bottom:418.813333pt;}
.y22{bottom:423.106667pt;}
.ycf{bottom:432.413333pt;}
.yfe{bottom:432.474667pt;}
.y92{bottom:437.680000pt;}
.yfd{bottom:446.074667pt;}
.yce{bottom:446.173333pt;}
.y21{bottom:450.626667pt;}
.y91{bottom:451.440000pt;}
.y5b{bottom:452.514667pt;}
.ycd{bottom:457.533333pt;}
.y90{bottom:465.360000pt;}
.y5a{bottom:466.434667pt;}
.y20{bottom:466.786667pt;}
.yfc{bottom:474.074667pt;}
.y8f{bottom:479.120000pt;}
.y59{bottom:480.194667pt;}
.yfb{bottom:487.834667pt;}
.y1f{bottom:492.546667pt;}
.y58{bottom:493.954667pt;}
.y8e{bottom:498.160000pt;}
.yfa{bottom:501.754667pt;}
.y8d{bottom:506.640000pt;}
.y57{bottom:507.874667pt;}
.ycc{bottom:508.413333pt;}
.y1e{bottom:508.866667pt;}
.yf9{bottom:515.514667pt;}
.y8c{bottom:520.560000pt;}
.y56{bottom:521.474667pt;}
.ycb{bottom:522.333333pt;}
.y1d{bottom:522.626667pt;}
.yf8{bottom:529.274667pt;}
.y8b{bottom:534.160000pt;}
.y55{bottom:535.234667pt;}
.yca{bottom:535.933333pt;}
.y1c{bottom:536.386667pt;}
.yf7{bottom:542.901333pt;}
.yc9{bottom:547.160000pt;}
.y8a{bottom:547.946667pt;}
.y54{bottom:549.181333pt;}
.y1b{bottom:550.173333pt;}
.y89{bottom:561.866667pt;}
.y53{bottom:563.421333pt;}
.y1a{bottom:564.093333pt;}
.yf6{bottom:570.901333pt;}
.y87{bottom:573.733333pt;}
.y52{bottom:574.301333pt;}
.y88{bottom:576.533333pt;}
.y19{bottom:578.013333pt;}
.yf5{bottom:584.821333pt;}
.yf4{bottom:595.861333pt;}
.y18{bottom:597.693333pt;}
.yb2{bottom:609.765333pt;}
.y17{bottom:621.373333pt;}
.yb1{bottom:626.085333pt;}
.y16{bottom:635.133333pt;}
.yb0{bottom:637.125333pt;}
.y9c{bottom:638.753333pt;}
.y84{bottom:644.133333pt;}
.y86{bottom:646.933333pt;}
.y15{bottom:649.053333pt;}
.y9b{bottom:652.673333pt;}
.y9a{bottom:666.593333pt;}
.y7f{bottom:679.333333pt;}
.y99{bottom:680.033333pt;}
.yc8{bottom:681.826667pt;}
.y82{bottom:681.866667pt;}
.y14{bottom:685.053333pt;}
.y98{bottom:693.953333pt;}
.y80{bottom:695.733333pt;}
.yc7{bottom:695.906667pt;}
.yc6{bottom:709.826667pt;}
.y83{bottom:714.533333pt;}
.y13{bottom:715.933333pt;}
.y97{bottom:721.633333pt;}
.yc5{bottom:723.266667pt;}
.y96{bottom:732.993333pt;}
.yc4{bottom:737.186667pt;}
.y12{bottom:746.653333pt;}
.y7d{bottom:749.733333pt;}
.yc3{bottom:751.106667pt;}
.y51{bottom:753.234667pt;}
.yc2{bottom:765.186667pt;}
.y50{bottom:766.994667pt;}
.y11{bottom:772.573333pt;}
.yc1{bottom:776.266667pt;}
.y4f{bottom:780.954667pt;}
.y4e{bottom:794.554667pt;}
.y7c{bottom:801.633333pt;}
.y10{bottom:807.333333pt;}
.y4d{bottom:808.314667pt;}
.yf3{bottom:808.928000pt;}
.y7b{bottom:815.553333pt;}
.y4c{bottom:822.234667pt;}
.yf2{bottom:822.688000pt;}
.yf{bottom:828.773333pt;}
.y7a{bottom:829.313333pt;}
.y4b{bottom:836.314667pt;}
.yf1{bottom:836.448000pt;}
.y79{bottom:843.073333pt;}
.yf0{bottom:850.208000pt;}
.y4a{bottom:850.234667pt;}
.ye{bottom:850.373333pt;}
.y78{bottom:856.993333pt;}
.y49{bottom:863.994667pt;}
.yef{bottom:864.128000pt;}
.y77{bottom:870.433333pt;}
.y48{bottom:877.754667pt;}
.yee{bottom:877.888000pt;}
.y76{bottom:884.353333pt;}
.yed{bottom:891.648000pt;}
.y47{bottom:891.674667pt;}
.y75{bottom:898.593333pt;}
.yd{bottom:903.173333pt;}
.y46{bottom:905.114667pt;}
.yec{bottom:905.408000pt;}
.y74{bottom:912.353333pt;}
.y45{bottom:919.034667pt;}
.ya{bottom:919.173333pt;}
.yeb{bottom:919.328000pt;}
.yc{bottom:923.813333pt;}
.y73{bottom:926.113333pt;}
.yea{bottom:933.088000pt;}
.y44{bottom:933.274667pt;}
.y9{bottom:939.813333pt;}
.y72{bottom:940.033333pt;}
.ye9{bottom:947.008000pt;}
.y43{bottom:947.034667pt;}
.yb{bottom:952.293333pt;}
.y71{bottom:953.793333pt;}
.ye8{bottom:960.608000pt;}
.y42{bottom:960.794667pt;}
.y8{bottom:965.893333pt;}
.y70{bottom:967.393333pt;}
.y41{bottom:974.554667pt;}
.ye7{bottom:974.688000pt;}
.y6f{bottom:981.313333pt;}
.y7{bottom:982.853333pt;}
.ye6{bottom:988.448000pt;}
.y40{bottom:988.474667pt;}
.y6e{bottom:995.393333pt;}
.y6{bottom:998.213333pt;}
.y3f{bottom:1002.234667pt;}
.ye5{bottom:1002.368000pt;}
.y6d{bottom:1009.313333pt;}
.y5{bottom:1013.600000pt;}
.y3e{bottom:1015.861333pt;}
.ye4{bottom:1016.154667pt;}
.y4{bottom:1029.600000pt;}
.y6c{bottom:1029.660000pt;}
.y3d{bottom:1029.781333pt;}
.yaf{bottom:1029.792000pt;}
.ye3{bottom:1029.914667pt;}
.y3b{bottom:1044.581333pt;}
.ybf{bottom:1044.586667pt;}
.yad{bottom:1044.592000pt;}
.y6a{bottom:1044.593333pt;}
.y3a{bottom:1061.066667pt;}
.hb{height:31.390625pt;}
.h1b{height:31.406250pt;}
.h18{height:32.531250pt;}
.hf{height:33.918750pt;}
.h1a{height:34.560000pt;}
.h16{height:34.573333pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.he{height:47.085938pt;}
.h11{height:47.109375pt;}
.hc{height:48.375000pt;}
.h23{height:49.336436pt;}
.h7{height:49.597187pt;}
.h13{height:49.621875pt;}
.h8{height:52.108438pt;}
.h14{height:52.526250pt;}
.h19{height:53.370000pt;}
.h3{height:53.535000pt;}
.h20{height:53.583333pt;}
.hd{height:55.247500pt;}
.h1{height:57.787500pt;}
.h4{height:59.340000pt;}
.h21{height:60.946667pt;}
.h1f{height:61.120000pt;}
.ha{height:64.450000pt;}
.h2{height:64.500000pt;}
.h17{height:69.760000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h1c{height:95.361333pt;}
.h15{height:99.366667pt;}
.h12{height:107.372000pt;}
.h22{height:111.372000pt;}
.h1e{height:125.840833pt;}
.h1d{height:127.393333pt;}
.h0{height:1122.666667pt;}
.wc{width:37.280000pt;}
.wb{width:37.306667pt;}
.we{width:37.466667pt;}
.w7{width:37.600000pt;}
.w6{width:37.613333pt;}
.w9{width:37.786667pt;}
.wd{width:44.320000pt;}
.w8{width:44.640000pt;}
.w11{width:65.786667pt;}
.w12{width:65.920000pt;}
.w10{width:67.226667pt;}
.w4{width:71.360000pt;}
.wa{width:71.840000pt;}
.w13{width:74.586667pt;}
.w3{width:92.640000pt;}
.w15{width:94.266667pt;}
.w14{width:109.440000pt;}
.wf{width:114.426667pt;}
.w16{width:117.306667pt;}
.w5{width:196.533333pt;}
.w2{width:212.133333pt;}
.w1{width:706.133333pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x24{left:7.200000pt;}
.x2f{left:8.133333pt;}
.x2b{left:9.866667pt;}
.x20{left:10.800000pt;}
.x41{left:13.466667pt;}
.x3a{left:14.400000pt;}
.x44{left:20.933333pt;}
.x2e{left:23.066667pt;}
.x43{left:24.666667pt;}
.x3{left:26.600000pt;}
.x46{left:28.666667pt;}
.x42{left:33.626667pt;}
.x47{left:36.400000pt;}
.x45{left:38.400000pt;}
.xd{left:41.680000pt;}
.xf{left:44.600000pt;}
.x2a{left:46.800000pt;}
.x19{left:49.600000pt;}
.x1d{left:54.000000pt;}
.xa{left:62.120000pt;}
.x4b{left:66.029333pt;}
.x22{left:74.800000pt;}
.x1b{left:77.306667pt;}
.x4a{left:90.056000pt;}
.x9{left:108.906667pt;}
.x1a{left:113.333333pt;}
.x3b{left:161.866667pt;}
.x6{left:217.040000pt;}
.x3c{left:229.466667pt;}
.x4{left:240.266667pt;}
.x5{left:258.320000pt;}
.x1c{left:262.266667pt;}
.x29{left:269.200000pt;}
.x1e{left:274.933333pt;}
.x2d{left:295.066667pt;}
.x16{left:301.306667pt;}
.x35{left:304.546667pt;}
.xc{left:309.946667pt;}
.x10{left:316.160000pt;}
.x14{left:322.040000pt;}
.xb{left:325.866667pt;}
.x18{left:329.026667pt;}
.x49{left:358.856000pt;}
.x3d{left:361.866667pt;}
.x1{left:364.666667pt;}
.xe{left:366.613333pt;}
.x4c{left:373.029333pt;}
.x34{left:374.800000pt;}
.x31{left:377.733333pt;}
.x48{left:386.800000pt;}
.x17{left:387.733333pt;}
.x4d{left:390.800000pt;}
.x11{left:399.253333pt;}
.x2{left:413.800000pt;}
.x7{left:425.746667pt;}
.x3e{left:436.800000pt;}
.x8{left:450.293333pt;}
.x1f{left:452.133333pt;}
.x21{left:523.733333pt;}
.x39{left:531.386667pt;}
.x38{left:533.386667pt;}
.x3f{left:546.533333pt;}
.x12{left:548.280000pt;}
.x37{left:560.426667pt;}
.x25{left:561.733333pt;}
.x15{left:585.840000pt;}
.x36{left:597.760000pt;}
.x26{left:599.600000pt;}
.x32{left:617.360000pt;}
.x30{left:633.653333pt;}
.x40{left:641.066667pt;}
.x27{left:644.666667pt;}
.x28{left:682.533333pt;}
.x33{left:700.093333pt;}
.x13{left:711.240000pt;}
.x23{left:728.933333pt;}
.x2c{left:730.933333pt;}
}




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