
    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_469a02e18ea9ea3183e32980.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a4a6d2e39d3c2a6a7e1d7e45.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b2ddb77861d48ea40dbfeadb.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_95d591e3a4fcc9727ac38e21.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5832bc052232843ffd4faeaf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.682617;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_b38c9947804670ec4fbdfd2e.woff')format("woff");}.ff6{font-family:ff6;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e7456507bc7d922a23c232f2.woff')format("woff");}.ff7{font-family:ff7;line-height:0.983398;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.600000px;}
.lsc{letter-spacing:-1.350000px;}
.ls10{letter-spacing:-1.032000px;}
.ls16{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.590400px;}
.lsb{letter-spacing:-0.524400px;}
.lsf{letter-spacing:-0.488400px;}
.ls5{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.174000px;}
.ls14{letter-spacing:-0.034560px;}
.ls4{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.089280px;}
.lse{letter-spacing:0.089400px;}
.lsa{letter-spacing:0.126720px;}
.ls13{letter-spacing:0.132600px;}
.ls7{letter-spacing:0.233400px;}
.ls6{letter-spacing:0.351600px;}
.lsd{letter-spacing:0.409200px;}
.ls1{letter-spacing:0.576000px;}
.ls2{letter-spacing:49.277280px;}
.ls0{letter-spacing:59.345280px;}
.ls11{letter-spacing:59.357280px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.ws9{word-spacing:-16.398480px;}
.ws12{word-spacing:-16.344000px;}
.wsb{word-spacing:-15.379440px;}
.ws2{word-spacing:-15.321840px;}
.ws3{word-spacing:-15.203640px;}
.ws10{word-spacing:-15.102840px;}
.wsc{word-spacing:-15.059640px;}
.ws0{word-spacing:-14.970240px;}
.ws11{word-spacing:-14.935680px;}
.wsf{word-spacing:-14.754240px;}
.ws1{word-spacing:-14.506440px;}
.ws7{word-spacing:-14.379840px;}
.wse{word-spacing:-13.938240px;}
.ws4{word-spacing:-13.668480px;}
.wsa{word-spacing:-13.620240px;}
.ws6{word-spacing:-9.263760px;}
.wsd{word-spacing:-8.949360px;}
.ws8{word-spacing:0.000000px;}
._f{margin-left:-2.387520px;}
._0{margin-left:-1.120320px;}
._1{width:1.286880px;}
._7{width:2.312160px;}
._12{width:3.325440px;}
._2{width:4.438080px;}
._3{width:5.497920px;}
._4{width:6.612480px;}
._5{width:8.611200px;}
._6{width:10.134720px;}
._11{width:11.387520px;}
._9{width:12.441600px;}
._8{width:13.772160px;}
._30{width:16.227360px;}
._1a{width:17.686080px;}
._19{width:18.872640px;}
._10{width:20.701440px;}
._b{width:22.057920px;}
._a{width:23.382720px;}
._21{width:24.529440px;}
._2b{width:25.833600px;}
._20{width:28.517760px;}
._1c{width:33.485760px;}
._18{width:34.690560px;}
._17{width:36.139680px;}
._2f{width:37.589760px;}
._24{width:39.375360px;}
._2a{width:40.510080px;}
._29{width:41.664960px;}
._28{width:44.447040px;}
._27{width:45.970560px;}
._2e{width:54.881760px;}
._2d{width:56.039040px;}
._2c{width:57.641280px;}
._26{width:58.646400px;}
._25{width:60.114240px;}
._31{width:69.287040px;}
._c{width:70.611840px;}
._d{width:71.671680px;}
._e{width:73.122720px;}
._22{width:77.601600px;}
._23{width:78.612480px;}
._1f{width:79.920000px;}
._15{width:123.935040px;}
._16{width:125.496480px;}
._1b{width:152.645760px;}
._1d{width:194.515200px;}
._1e{width:196.269120px;}
._13{width:847.821600px;}
._14{width:849.305760px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(128,0,0);}
.fc0{color:rgb(0,0,10);}
.fs2{font-size:41.760000px;}
.fs1{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:74.880000px;}
.y0{bottom:0.000000px;}
.y145{bottom:4.716000px;}
.y36{bottom:5.040000px;}
.y39{bottom:5.400000px;}
.y45{bottom:5.445000px;}
.y13d{bottom:19.440000px;}
.y135{bottom:19.800000px;}
.y110{bottom:22.314000px;}
.y106{bottom:22.320000px;}
.y116{bottom:22.350000px;}
.y10e{bottom:22.365000px;}
.y143{bottom:24.516000px;}
.y144{bottom:24.876000px;}
.y35{bottom:28.080000px;}
.y13c{bottom:39.600000px;}
.y141{bottom:39.954000px;}
.y134{bottom:39.960000px;}
.y139{bottom:39.990000px;}
.y10a{bottom:45.360000px;}
.y10b{bottom:45.390000px;}
.y108{bottom:45.405000px;}
.y127{bottom:45.714000px;}
.y105{bottom:45.720000px;}
.y119{bottom:45.765000px;}
.y92{bottom:58.320000px;}
.y13b{bottom:59.400000px;}
.y137{bottom:59.430000px;}
.y13f{bottom:59.754000px;}
.y132{bottom:59.760000px;}
.y138{bottom:59.790000px;}
.y140{bottom:60.114000px;}
.y133{bottom:60.120000px;}
.y142{bottom:63.720000px;}
.ycd{bottom:71.676000px;}
.y7b{bottom:74.916000px;}
.y128{bottom:75.636000px;}
.y32{bottom:76.716000px;}
.ye2{bottom:85.356000px;}
.y91{bottom:90.756000px;}
.y65{bottom:94.716000px;}
.y31{bottom:96.876000px;}
.yba{bottom:104.796000px;}
.y7a{bottom:110.916000px;}
.y13e{bottom:112.356000px;}
.y90{bottom:116.316000px;}
.y30{bottom:117.036000px;}
.ye1{bottom:121.356000px;}
.y126{bottom:122.076000px;}
.ycc{bottom:129.636000px;}
.y64{bottom:133.236000px;}
.y2f{bottom:137.196000px;}
.yb1{bottom:137.556000px;}
.y10f{bottom:141.156000px;}
.ye0{bottom:141.516000px;}
.y79{bottom:146.916000px;}
.y8f{bottom:148.716000px;}
.y63{bottom:153.750000px;}
.y2e{bottom:157.350000px;}
.yb9{bottom:162.390000px;}
.yb0{bottom:172.470000px;}
.y62{bottom:173.910000px;}
.y2d{bottom:177.510000px;}
.y78{bottom:182.910000px;}
.y10d{bottom:187.590000px;}
.y125{bottom:191.910000px;}
.y61{bottom:194.115000px;}
.yb8{bottom:195.195000px;}
.y13a{bottom:196.275000px;}
.y2c{bottom:197.715000px;}
.yfe{bottom:201.315000px;}
.yaf{bottom:208.515000px;}
.ydf{bottom:212.835000px;}
.y60{bottom:214.275000px;}
.y2b{bottom:217.875000px;}
.y77{bottom:218.955000px;}
.yde{bottom:232.635000px;}
.y10c{bottom:234.075000px;}
.y5f{bottom:234.435000px;}
.yfd{bottom:236.235000px;}
.y2a{bottom:238.035000px;}
.y124{bottom:238.395000px;}
.yae{bottom:244.515000px;}
.y5e{bottom:254.595000px;}
.y76{bottom:254.955000px;}
.y29{bottom:258.195000px;}
.ydd{bottom:268.995000px;}
.yfc{bottom:272.235000px;}
.y5d{bottom:274.755000px;}
.y28{bottom:277.995000px;}
.y136{bottom:279.795000px;}
.yad{bottom:280.515000px;}
.y123{bottom:284.475000px;}
.y75{bottom:291.315000px;}
.y5c{bottom:294.555000px;}
.y27{bottom:298.155000px;}
.ydc{bottom:301.395000px;}
.yfb{bottom:308.595000px;}
.y74{bottom:311.475000px;}
.y5b{bottom:314.715000px;}
.yac{bottom:316.515000px;}
.y26{bottom:318.315000px;}
.ydb{bottom:326.625000px;}
.y122{bottom:330.945000px;}
.y73{bottom:331.665000px;}
.y5a{bottom:334.905000px;}
.y25{bottom:338.505000px;}
.yfa{bottom:343.545000px;}
.y109{bottom:350.025000px;}
.y72{bottom:351.825000px;}
.yab{bottom:352.545000px;}
.y59{bottom:355.065000px;}
.y24{bottom:358.665000px;}
.yda{bottom:359.025000px;}
.y131{bottom:363.345000px;}
.y58{bottom:371.265000px;}
.y71{bottom:371.985000px;}
.y121{bottom:377.385000px;}
.y23{bottom:378.825000px;}
.yf9{bottom:379.545000px;}
.yaa{bottom:388.545000px;}
.y70{bottom:392.145000px;}
.y57{bottom:395.025000px;}
.y22{bottom:398.985000px;}
.y6f{bottom:411.945000px;}
.yf8{bottom:415.545000px;}
.y56{bottom:418.785000px;}
.y21{bottom:419.145000px;}
.y107{bottom:419.505000px;}
.y120{bottom:423.825000px;}
.ya9{bottom:424.545000px;}
.y20{bottom:439.305000px;}
.y55{bottom:442.185000px;}
.y130{bottom:447.270000px;}
.y6e{bottom:448.350000px;}
.yf7{bottom:451.590000px;}
.y1f{bottom:459.510000px;}
.ya8{bottom:460.590000px;}
.y54{bottom:465.990000px;}
.y11f{bottom:470.310000px;}
.y1e{bottom:479.670000px;}
.y6d{bottom:480.750000px;}
.yf6{bottom:487.590000px;}
.y104{bottom:489.030000px;}
.y53{bottom:489.750000px;}
.y12f{bottom:493.710000px;}
.y155{bottom:494.430000px;}
.ya7{bottom:496.590000px;}
.y1d{bottom:499.470000px;}
.y6c{bottom:505.950000px;}
.y52{bottom:513.150000px;}
.y11e{bottom:516.750000px;}
.y154{bottom:517.470000px;}
.y1c{bottom:520.710000px;}
.yf5{bottom:523.590000px;}
.ycb{bottom:531.150000px;}
.ya6{bottom:532.590000px;}
.y51{bottom:536.910000px;}
.y6b{bottom:538.710000px;}
.y12e{bottom:540.150000px;}
.y1b{bottom:540.870000px;}
.yca{bottom:551.310000px;}
.yf4{bottom:559.590000px;}
.y50{bottom:560.670000px;}
.y1a{bottom:562.110000px;}
.y11d{bottom:563.190000px;}
.ya5{bottom:568.590000px;}
.yc9{bottom:571.500000px;}
.y103{bottom:576.900000px;}
.y153{bottom:579.060000px;}
.y19{bottom:582.300000px;}
.y4f{bottom:584.100000px;}
.y8e{bottom:585.900000px;}
.y12d{bottom:586.620000px;}
.yc8{bottom:591.660000px;}
.yf3{bottom:595.620000px;}
.yb7{bottom:596.700000px;}
.y18{bottom:602.100000px;}
.ya4{bottom:604.980000px;}
.y8d{bottom:605.700000px;}
.y4e{bottom:607.860000px;}
.y11c{bottom:609.660000px;}
.y102{bottom:613.620000px;}
.yb6{bottom:621.900000px;}
.ya3{bottom:624.780000px;}
.y8c{bottom:625.860000px;}
.yc7{bottom:626.940000px;}
.y4d{bottom:631.620000px;}
.y17{bottom:638.460000px;}
.y152{bottom:640.260000px;}
.y8b{bottom:646.020000px;}
.y101{bottom:647.820000px;}
.yb5{bottom:654.300000px;}
.y4c{bottom:655.020000px;}
.y11b{bottom:656.100000px;}
.ya2{bottom:660.780000px;}
.yc6{bottom:661.860000px;}
.y151{bottom:663.300000px;}
.yf2{bottom:667.620000px;}
.y100{bottom:673.020000px;}
.y16{bottom:673.380000px;}
.y4b{bottom:678.780000px;}
.y8a{bottom:681.300000px;}
.ya1{bottom:697.170000px;}
.yc5{bottom:697.890000px;}
.y150{bottom:701.490000px;}
.y4a{bottom:702.570000px;}
.yf1{bottom:703.650000px;}
.yff{bottom:705.810000px;}
.y15{bottom:711.930000px;}
.y89{bottom:716.250000px;}
.y14f{bottom:724.890000px;}
.y11a{bottom:725.610000px;}
.y49{bottom:725.970000px;}
.ya0{bottom:733.170000px;}
.yc4{bottom:734.250000px;}
.yf0{bottom:739.650000px;}
.y14{bottom:747.210000px;}
.y48{bottom:749.730000px;}
.y88{bottom:752.610000px;}
.y14e{bottom:763.050000px;}
.y13{bottom:765.930000px;}
.y9f{bottom:769.170000px;}
.yd9{bottom:770.970000px;}
.y12c{bottom:772.050000px;}
.y87{bottom:772.410000px;}
.y47{bottom:773.490000px;}
.yef{bottom:775.650000px;}
.y12{bottom:786.090000px;}
.y9e{bottom:789.330000px;}
.yd8{bottom:791.130000px;}
.y118{bottom:795.090000px;}
.y46{bottom:796.890000px;}
.yc3{bottom:805.170000px;}
.y11{bottom:806.250000px;}
.y86{bottom:808.410000px;}
.y14d{bottom:809.130000px;}
.yd7{bottom:811.290000px;}
.yee{bottom:812.010000px;}
.y12b{bottom:818.490000px;}
.y44{bottom:820.650000px;}
.y9d{bottom:825.375000px;}
.y10{bottom:826.455000px;}
.yd6{bottom:831.495000px;}
.yc2{bottom:841.215000px;}
.y43{bottom:844.455000px;}
.y9c{bottom:845.535000px;}
.yf{bottom:846.615000px;}
.y14c{bottom:847.335000px;}
.yed{bottom:848.055000px;}
.yd5{bottom:851.655000px;}
.y117{bottom:864.975000px;}
.ye{bottom:866.415000px;}
.y42{bottom:867.855000px;}
.yc1{bottom:877.215000px;}
.y85{bottom:880.455000px;}
.y9b{bottom:881.535000px;}
.yec{bottom:884.055000px;}
.yd{bottom:886.575000px;}
.y14b{bottom:889.455000px;}
.y41{bottom:891.615000px;}
.yc{bottom:906.735000px;}
.y14a{bottom:909.255000px;}
.y12a{bottom:911.415000px;}
.yc0{bottom:913.215000px;}
.y40{bottom:915.375000px;}
.y84{bottom:916.455000px;}
.y9a{bottom:917.535000px;}
.yeb{bottom:920.055000px;}
.yd4{bottom:921.855000px;}
.yb{bottom:926.895000px;}
.ybf{bottom:933.375000px;}
.y115{bottom:934.455000px;}
.y3f{bottom:938.775000px;}
.ya{bottom:947.055000px;}
.y83{bottom:952.485000px;}
.y99{bottom:953.565000px;}
.y149{bottom:955.725000px;}
.yea{bottom:956.085000px;}
.yd3{bottom:957.885000px;}
.y3e{bottom:962.565000px;}
.y9{bottom:967.245000px;}
.ybe{bottom:969.405000px;}
.y98{bottom:973.725000px;}
.yd2{bottom:978.045000px;}
.y114{bottom:980.925000px;}
.y3d{bottom:986.325000px;}
.y8{bottom:987.405000px;}
.y82{bottom:988.845000px;}
.ye9{bottom:992.085000px;}
.y148{bottom:1002.165000px;}
.ybd{bottom:1005.405000px;}
.y6a{bottom:1007.205000px;}
.y7{bottom:1007.565000px;}
.y81{bottom:1008.645000px;}
.y3c{bottom:1009.725000px;}
.yd1{bottom:1014.045000px;}
.ybc{bottom:1025.565000px;}
.y69{bottom:1027.365000px;}
.ye8{bottom:1028.085000px;}
.y97{bottom:1029.885000px;}
.y3b{bottom:1033.485000px;}
.y80{bottom:1045.005000px;}
.ybb{bottom:1045.725000px;}
.y6{bottom:1047.165000px;}
.y68{bottom:1047.525000px;}
.yd0{bottom:1050.045000px;}
.y3a{bottom:1057.245000px;}
.yb4{bottom:1057.605000px;}
.ye7{bottom:1064.085000px;}
.y7f{bottom:1064.805000px;}
.y96{bottom:1065.885000px;}
.y113{bottom:1073.805000px;}
.yb3{bottom:1077.810000px;}
.y38{bottom:1080.690000px;}
.y5{bottom:1082.850000px;}
.y147{bottom:1085.730000px;}
.ycf{bottom:1086.090000px;}
.y129{bottom:1096.890000px;}
.yb2{bottom:1097.970000px;}
.ye6{bottom:1100.130000px;}
.y7e{bottom:1100.850000px;}
.y95{bottom:1101.930000px;}
.y4{bottom:1103.010000px;}
.y37{bottom:1104.450000px;}
.y67{bottom:1117.770000px;}
.y112{bottom:1120.290000px;}
.yce{bottom:1122.090000px;}
.y3{bottom:1123.170000px;}
.y34{bottom:1128.210000px;}
.ye5{bottom:1136.130000px;}
.y7d{bottom:1136.850000px;}
.y94{bottom:1137.210000px;}
.y66{bottom:1137.930000px;}
.y93{bottom:1157.010000px;}
.y2{bottom:1158.090000px;}
.y111{bottom:1166.730000px;}
.y146{bottom:1169.610000px;}
.ye4{bottom:1172.490000px;}
.y7c{bottom:1173.210000px;}
.y33{bottom:1191.570000px;}
.ye3{bottom:1192.290000px;}
.y1{bottom:1193.370000px;}
.ha{height:22.680000px;}
.hd{height:22.716000px;}
.hc{height:23.040000px;}
.he{height:23.076000px;}
.h1a{height:35.316000px;}
.h13{height:38.160000px;}
.h14{height:38.196000px;}
.h19{height:40.356000px;}
.h8{height:45.720000px;}
.h7{height:57.937500px;}
.h4{height:60.155156px;}
.h12{height:61.200000px;}
.h11{height:61.236000px;}
.h10{height:61.560000px;}
.h15{height:61.596000px;}
.h3{height:65.884219px;}
.hf{height:66.015703px;}
.h6{height:66.135703px;}
.h2{height:67.824844px;}
.h5{height:68.084282px;}
.hb{height:74.477812px;}
.h18{height:75.240000px;}
.h17{height:75.276000px;}
.h16{height:75.600000px;}
.h1b{height:75.636000px;}
.h9{height:76.671562px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:84.276000px;}
.w5{width:88.236000px;}
.w6{width:113.796000px;}
.w3{width:135.756000px;}
.w7{width:339.225000px;}
.w8{width:447.300000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xf{left:3.960000px;}
.x6{left:7.560000px;}
.x5{left:46.476000px;}
.x1{left:54.035987px;}
.xd{left:79.955987px;}
.x2{left:81.035987px;}
.x4{left:108.035987px;}
.xb{left:133.271987px;}
.x3{left:135.071987px;}
.xc{left:160.274987px;}
.x7{left:182.955000px;}
.xe{left:186.194987px;}
.x8{left:267.945000px;}
.x9{left:356.910000px;}
.x10{left:393.270000px;}
.xa{left:840.929987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.866667pt;}
.lsc{letter-spacing:-1.200000pt;}
.ls10{letter-spacing:-0.917333pt;}
.ls16{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.524800pt;}
.lsb{letter-spacing:-0.466133pt;}
.lsf{letter-spacing:-0.434133pt;}
.ls5{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.154667pt;}
.ls14{letter-spacing:-0.030720pt;}
.ls4{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.079360pt;}
.lse{letter-spacing:0.079467pt;}
.lsa{letter-spacing:0.112640pt;}
.ls13{letter-spacing:0.117867pt;}
.ls7{letter-spacing:0.207467pt;}
.ls6{letter-spacing:0.312533pt;}
.lsd{letter-spacing:0.363733pt;}
.ls1{letter-spacing:0.512000pt;}
.ls2{letter-spacing:43.802027pt;}
.ls0{letter-spacing:52.751360pt;}
.ls11{letter-spacing:52.762027pt;}
.ws5{word-spacing:-58.880000pt;}
.ws9{word-spacing:-14.576427pt;}
.ws12{word-spacing:-14.528000pt;}
.wsb{word-spacing:-13.670613pt;}
.ws2{word-spacing:-13.619413pt;}
.ws3{word-spacing:-13.514347pt;}
.ws10{word-spacing:-13.424747pt;}
.wsc{word-spacing:-13.386347pt;}
.ws0{word-spacing:-13.306880pt;}
.ws11{word-spacing:-13.276160pt;}
.wsf{word-spacing:-13.114880pt;}
.ws1{word-spacing:-12.894613pt;}
.ws7{word-spacing:-12.782080pt;}
.wse{word-spacing:-12.389547pt;}
.ws4{word-spacing:-12.149760pt;}
.wsa{word-spacing:-12.106880pt;}
.ws6{word-spacing:-8.234453pt;}
.wsd{word-spacing:-7.954987pt;}
.ws8{word-spacing:0.000000pt;}
._f{margin-left:-2.122240pt;}
._0{margin-left:-0.995840pt;}
._1{width:1.143893pt;}
._7{width:2.055253pt;}
._12{width:2.955947pt;}
._2{width:3.944960pt;}
._3{width:4.887040pt;}
._4{width:5.877760pt;}
._5{width:7.654400pt;}
._6{width:9.008640pt;}
._11{width:10.122240pt;}
._9{width:11.059200pt;}
._8{width:12.241920pt;}
._30{width:14.424320pt;}
._1a{width:15.720960pt;}
._19{width:16.775680pt;}
._10{width:18.401280pt;}
._b{width:19.607040pt;}
._a{width:20.784640pt;}
._21{width:21.803947pt;}
._2b{width:22.963200pt;}
._20{width:25.349120pt;}
._1c{width:29.765120pt;}
._18{width:30.836053pt;}
._17{width:32.124160pt;}
._2f{width:33.413120pt;}
._24{width:35.000320pt;}
._2a{width:36.008960pt;}
._29{width:37.035520pt;}
._28{width:39.508480pt;}
._27{width:40.862720pt;}
._2e{width:48.783787pt;}
._2d{width:49.812480pt;}
._2c{width:51.236693pt;}
._26{width:52.130133pt;}
._25{width:53.434880pt;}
._31{width:61.588480pt;}
._c{width:62.766080pt;}
._d{width:63.708160pt;}
._e{width:64.997973pt;}
._22{width:68.979200pt;}
._23{width:69.877760pt;}
._1f{width:71.040000pt;}
._15{width:110.164480pt;}
._16{width:111.552427pt;}
._1b{width:135.685120pt;}
._1d{width:172.902400pt;}
._1e{width:174.461440pt;}
._13{width:753.619200pt;}
._14{width:754.938453pt;}
.fs2{font-size:37.120000pt;}
.fs1{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:66.560000pt;}
.y0{bottom:0.000000pt;}
.y145{bottom:4.192000pt;}
.y36{bottom:4.480000pt;}
.y39{bottom:4.800000pt;}
.y45{bottom:4.840000pt;}
.y13d{bottom:17.280000pt;}
.y135{bottom:17.600000pt;}
.y110{bottom:19.834667pt;}
.y106{bottom:19.840000pt;}
.y116{bottom:19.866667pt;}
.y10e{bottom:19.880000pt;}
.y143{bottom:21.792000pt;}
.y144{bottom:22.112000pt;}
.y35{bottom:24.960000pt;}
.y13c{bottom:35.200000pt;}
.y141{bottom:35.514667pt;}
.y134{bottom:35.520000pt;}
.y139{bottom:35.546667pt;}
.y10a{bottom:40.320000pt;}
.y10b{bottom:40.346667pt;}
.y108{bottom:40.360000pt;}
.y127{bottom:40.634667pt;}
.y105{bottom:40.640000pt;}
.y119{bottom:40.680000pt;}
.y92{bottom:51.840000pt;}
.y13b{bottom:52.800000pt;}
.y137{bottom:52.826667pt;}
.y13f{bottom:53.114667pt;}
.y132{bottom:53.120000pt;}
.y138{bottom:53.146667pt;}
.y140{bottom:53.434667pt;}
.y133{bottom:53.440000pt;}
.y142{bottom:56.640000pt;}
.ycd{bottom:63.712000pt;}
.y7b{bottom:66.592000pt;}
.y128{bottom:67.232000pt;}
.y32{bottom:68.192000pt;}
.ye2{bottom:75.872000pt;}
.y91{bottom:80.672000pt;}
.y65{bottom:84.192000pt;}
.y31{bottom:86.112000pt;}
.yba{bottom:93.152000pt;}
.y7a{bottom:98.592000pt;}
.y13e{bottom:99.872000pt;}
.y90{bottom:103.392000pt;}
.y30{bottom:104.032000pt;}
.ye1{bottom:107.872000pt;}
.y126{bottom:108.512000pt;}
.ycc{bottom:115.232000pt;}
.y64{bottom:118.432000pt;}
.y2f{bottom:121.952000pt;}
.yb1{bottom:122.272000pt;}
.y10f{bottom:125.472000pt;}
.ye0{bottom:125.792000pt;}
.y79{bottom:130.592000pt;}
.y8f{bottom:132.192000pt;}
.y63{bottom:136.666667pt;}
.y2e{bottom:139.866667pt;}
.yb9{bottom:144.346667pt;}
.yb0{bottom:153.306667pt;}
.y62{bottom:154.586667pt;}
.y2d{bottom:157.786667pt;}
.y78{bottom:162.586667pt;}
.y10d{bottom:166.746667pt;}
.y125{bottom:170.586667pt;}
.y61{bottom:172.546667pt;}
.yb8{bottom:173.506667pt;}
.y13a{bottom:174.466667pt;}
.y2c{bottom:175.746667pt;}
.yfe{bottom:178.946667pt;}
.yaf{bottom:185.346667pt;}
.ydf{bottom:189.186667pt;}
.y60{bottom:190.466667pt;}
.y2b{bottom:193.666667pt;}
.y77{bottom:194.626667pt;}
.yde{bottom:206.786667pt;}
.y10c{bottom:208.066667pt;}
.y5f{bottom:208.386667pt;}
.yfd{bottom:209.986667pt;}
.y2a{bottom:211.586667pt;}
.y124{bottom:211.906667pt;}
.yae{bottom:217.346667pt;}
.y5e{bottom:226.306667pt;}
.y76{bottom:226.626667pt;}
.y29{bottom:229.506667pt;}
.ydd{bottom:239.106667pt;}
.yfc{bottom:241.986667pt;}
.y5d{bottom:244.226667pt;}
.y28{bottom:247.106667pt;}
.y136{bottom:248.706667pt;}
.yad{bottom:249.346667pt;}
.y123{bottom:252.866667pt;}
.y75{bottom:258.946667pt;}
.y5c{bottom:261.826667pt;}
.y27{bottom:265.026667pt;}
.ydc{bottom:267.906667pt;}
.yfb{bottom:274.306667pt;}
.y74{bottom:276.866667pt;}
.y5b{bottom:279.746667pt;}
.yac{bottom:281.346667pt;}
.y26{bottom:282.946667pt;}
.ydb{bottom:290.333333pt;}
.y122{bottom:294.173333pt;}
.y73{bottom:294.813333pt;}
.y5a{bottom:297.693333pt;}
.y25{bottom:300.893333pt;}
.yfa{bottom:305.373333pt;}
.y109{bottom:311.133333pt;}
.y72{bottom:312.733333pt;}
.yab{bottom:313.373333pt;}
.y59{bottom:315.613333pt;}
.y24{bottom:318.813333pt;}
.yda{bottom:319.133333pt;}
.y131{bottom:322.973333pt;}
.y58{bottom:330.013333pt;}
.y71{bottom:330.653333pt;}
.y121{bottom:335.453333pt;}
.y23{bottom:336.733333pt;}
.yf9{bottom:337.373333pt;}
.yaa{bottom:345.373333pt;}
.y70{bottom:348.573333pt;}
.y57{bottom:351.133333pt;}
.y22{bottom:354.653333pt;}
.y6f{bottom:366.173333pt;}
.yf8{bottom:369.373333pt;}
.y56{bottom:372.253333pt;}
.y21{bottom:372.573333pt;}
.y107{bottom:372.893333pt;}
.y120{bottom:376.733333pt;}
.ya9{bottom:377.373333pt;}
.y20{bottom:390.493333pt;}
.y55{bottom:393.053333pt;}
.y130{bottom:397.573333pt;}
.y6e{bottom:398.533333pt;}
.yf7{bottom:401.413333pt;}
.y1f{bottom:408.453333pt;}
.ya8{bottom:409.413333pt;}
.y54{bottom:414.213333pt;}
.y11f{bottom:418.053333pt;}
.y1e{bottom:426.373333pt;}
.y6d{bottom:427.333333pt;}
.yf6{bottom:433.413333pt;}
.y104{bottom:434.693333pt;}
.y53{bottom:435.333333pt;}
.y12f{bottom:438.853333pt;}
.y155{bottom:439.493333pt;}
.ya7{bottom:441.413333pt;}
.y1d{bottom:443.973333pt;}
.y6c{bottom:449.733333pt;}
.y52{bottom:456.133333pt;}
.y11e{bottom:459.333333pt;}
.y154{bottom:459.973333pt;}
.y1c{bottom:462.853333pt;}
.yf5{bottom:465.413333pt;}
.ycb{bottom:472.133333pt;}
.ya6{bottom:473.413333pt;}
.y51{bottom:477.253333pt;}
.y6b{bottom:478.853333pt;}
.y12e{bottom:480.133333pt;}
.y1b{bottom:480.773333pt;}
.yca{bottom:490.053333pt;}
.yf4{bottom:497.413333pt;}
.y50{bottom:498.373333pt;}
.y1a{bottom:499.653333pt;}
.y11d{bottom:500.613333pt;}
.ya5{bottom:505.413333pt;}
.yc9{bottom:508.000000pt;}
.y103{bottom:512.800000pt;}
.y153{bottom:514.720000pt;}
.y19{bottom:517.600000pt;}
.y4f{bottom:519.200000pt;}
.y8e{bottom:520.800000pt;}
.y12d{bottom:521.440000pt;}
.yc8{bottom:525.920000pt;}
.yf3{bottom:529.440000pt;}
.yb7{bottom:530.400000pt;}
.y18{bottom:535.200000pt;}
.ya4{bottom:537.760000pt;}
.y8d{bottom:538.400000pt;}
.y4e{bottom:540.320000pt;}
.y11c{bottom:541.920000pt;}
.y102{bottom:545.440000pt;}
.yb6{bottom:552.800000pt;}
.ya3{bottom:555.360000pt;}
.y8c{bottom:556.320000pt;}
.yc7{bottom:557.280000pt;}
.y4d{bottom:561.440000pt;}
.y17{bottom:567.520000pt;}
.y152{bottom:569.120000pt;}
.y8b{bottom:574.240000pt;}
.y101{bottom:575.840000pt;}
.yb5{bottom:581.600000pt;}
.y4c{bottom:582.240000pt;}
.y11b{bottom:583.200000pt;}
.ya2{bottom:587.360000pt;}
.yc6{bottom:588.320000pt;}
.y151{bottom:589.600000pt;}
.yf2{bottom:593.440000pt;}
.y100{bottom:598.240000pt;}
.y16{bottom:598.560000pt;}
.y4b{bottom:603.360000pt;}
.y8a{bottom:605.600000pt;}
.ya1{bottom:619.706667pt;}
.yc5{bottom:620.346667pt;}
.y150{bottom:623.546667pt;}
.y4a{bottom:624.506667pt;}
.yf1{bottom:625.466667pt;}
.yff{bottom:627.386667pt;}
.y15{bottom:632.826667pt;}
.y89{bottom:636.666667pt;}
.y14f{bottom:644.346667pt;}
.y11a{bottom:644.986667pt;}
.y49{bottom:645.306667pt;}
.ya0{bottom:651.706667pt;}
.yc4{bottom:652.666667pt;}
.yf0{bottom:657.466667pt;}
.y14{bottom:664.186667pt;}
.y48{bottom:666.426667pt;}
.y88{bottom:668.986667pt;}
.y14e{bottom:678.266667pt;}
.y13{bottom:680.826667pt;}
.y9f{bottom:683.706667pt;}
.yd9{bottom:685.306667pt;}
.y12c{bottom:686.266667pt;}
.y87{bottom:686.586667pt;}
.y47{bottom:687.546667pt;}
.yef{bottom:689.466667pt;}
.y12{bottom:698.746667pt;}
.y9e{bottom:701.626667pt;}
.yd8{bottom:703.226667pt;}
.y118{bottom:706.746667pt;}
.y46{bottom:708.346667pt;}
.yc3{bottom:715.706667pt;}
.y11{bottom:716.666667pt;}
.y86{bottom:718.586667pt;}
.y14d{bottom:719.226667pt;}
.yd7{bottom:721.146667pt;}
.yee{bottom:721.786667pt;}
.y12b{bottom:727.546667pt;}
.y44{bottom:729.466667pt;}
.y9d{bottom:733.666667pt;}
.y10{bottom:734.626667pt;}
.yd6{bottom:739.106667pt;}
.yc2{bottom:747.746667pt;}
.y43{bottom:750.626667pt;}
.y9c{bottom:751.586667pt;}
.yf{bottom:752.546667pt;}
.y14c{bottom:753.186667pt;}
.yed{bottom:753.826667pt;}
.yd5{bottom:757.026667pt;}
.y117{bottom:768.866667pt;}
.ye{bottom:770.146667pt;}
.y42{bottom:771.426667pt;}
.yc1{bottom:779.746667pt;}
.y85{bottom:782.626667pt;}
.y9b{bottom:783.586667pt;}
.yec{bottom:785.826667pt;}
.yd{bottom:788.066667pt;}
.y14b{bottom:790.626667pt;}
.y41{bottom:792.546667pt;}
.yc{bottom:805.986667pt;}
.y14a{bottom:808.226667pt;}
.y12a{bottom:810.146667pt;}
.yc0{bottom:811.746667pt;}
.y40{bottom:813.666667pt;}
.y84{bottom:814.626667pt;}
.y9a{bottom:815.586667pt;}
.yeb{bottom:817.826667pt;}
.yd4{bottom:819.426667pt;}
.yb{bottom:823.906667pt;}
.ybf{bottom:829.666667pt;}
.y115{bottom:830.626667pt;}
.y3f{bottom:834.466667pt;}
.ya{bottom:841.826667pt;}
.y83{bottom:846.653333pt;}
.y99{bottom:847.613333pt;}
.y149{bottom:849.533333pt;}
.yea{bottom:849.853333pt;}
.yd3{bottom:851.453333pt;}
.y3e{bottom:855.613333pt;}
.y9{bottom:859.773333pt;}
.ybe{bottom:861.693333pt;}
.y98{bottom:865.533333pt;}
.yd2{bottom:869.373333pt;}
.y114{bottom:871.933333pt;}
.y3d{bottom:876.733333pt;}
.y8{bottom:877.693333pt;}
.y82{bottom:878.973333pt;}
.ye9{bottom:881.853333pt;}
.y148{bottom:890.813333pt;}
.ybd{bottom:893.693333pt;}
.y6a{bottom:895.293333pt;}
.y7{bottom:895.613333pt;}
.y81{bottom:896.573333pt;}
.y3c{bottom:897.533333pt;}
.yd1{bottom:901.373333pt;}
.ybc{bottom:911.613333pt;}
.y69{bottom:913.213333pt;}
.ye8{bottom:913.853333pt;}
.y97{bottom:915.453333pt;}
.y3b{bottom:918.653333pt;}
.y80{bottom:928.893333pt;}
.ybb{bottom:929.533333pt;}
.y6{bottom:930.813333pt;}
.y68{bottom:931.133333pt;}
.yd0{bottom:933.373333pt;}
.y3a{bottom:939.773333pt;}
.yb4{bottom:940.093333pt;}
.ye7{bottom:945.853333pt;}
.y7f{bottom:946.493333pt;}
.y96{bottom:947.453333pt;}
.y113{bottom:954.493333pt;}
.yb3{bottom:958.053333pt;}
.y38{bottom:960.613333pt;}
.y5{bottom:962.533333pt;}
.y147{bottom:965.093333pt;}
.ycf{bottom:965.413333pt;}
.y129{bottom:975.013333pt;}
.yb2{bottom:975.973333pt;}
.ye6{bottom:977.893333pt;}
.y7e{bottom:978.533333pt;}
.y95{bottom:979.493333pt;}
.y4{bottom:980.453333pt;}
.y37{bottom:981.733333pt;}
.y67{bottom:993.573333pt;}
.y112{bottom:995.813333pt;}
.yce{bottom:997.413333pt;}
.y3{bottom:998.373333pt;}
.y34{bottom:1002.853333pt;}
.ye5{bottom:1009.893333pt;}
.y7d{bottom:1010.533333pt;}
.y94{bottom:1010.853333pt;}
.y66{bottom:1011.493333pt;}
.y93{bottom:1028.453333pt;}
.y2{bottom:1029.413333pt;}
.y111{bottom:1037.093333pt;}
.y146{bottom:1039.653333pt;}
.ye4{bottom:1042.213333pt;}
.y7c{bottom:1042.853333pt;}
.y33{bottom:1059.173333pt;}
.ye3{bottom:1059.813333pt;}
.y1{bottom:1060.773333pt;}
.ha{height:20.160000pt;}
.hd{height:20.192000pt;}
.hc{height:20.480000pt;}
.he{height:20.512000pt;}
.h1a{height:31.392000pt;}
.h13{height:33.920000pt;}
.h14{height:33.952000pt;}
.h19{height:35.872000pt;}
.h8{height:40.640000pt;}
.h7{height:51.500000pt;}
.h4{height:53.471250pt;}
.h12{height:54.400000pt;}
.h11{height:54.432000pt;}
.h10{height:54.720000pt;}
.h15{height:54.752000pt;}
.h3{height:58.563750pt;}
.hf{height:58.680625pt;}
.h6{height:58.787292pt;}
.h2{height:60.288750pt;}
.h5{height:60.519362pt;}
.hb{height:66.202500pt;}
.h18{height:66.880000pt;}
.h17{height:66.912000pt;}
.h16{height:67.200000pt;}
.h1b{height:67.232000pt;}
.h9{height:68.152500pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:74.912000pt;}
.w5{width:78.432000pt;}
.w6{width:101.152000pt;}
.w3{width:120.672000pt;}
.w7{width:301.533333pt;}
.w8{width:397.600000pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xf{left:3.520000pt;}
.x6{left:6.720000pt;}
.x5{left:41.312000pt;}
.x1{left:48.031988pt;}
.xd{left:71.071988pt;}
.x2{left:72.031988pt;}
.x4{left:96.031988pt;}
.xb{left:118.463988pt;}
.x3{left:120.063988pt;}
.xc{left:142.466655pt;}
.x7{left:162.626667pt;}
.xe{left:165.506655pt;}
.x8{left:238.173333pt;}
.x9{left:317.253333pt;}
.x10{left:349.573333pt;}
.xa{left:747.493322pt;}
}




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