
    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_9a819a4711ed2bc89c1d5ced.woff')format("woff");}.ff1{font-family:ff1;line-height:1.064941;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_b562f40574ac7657af6b4bd6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.909180;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_5d4e1dd39aa6e6059793287a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.914062;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_9b6ee8e8ff0020726bf280d2.woff')format("woff");}.ff4{font-family:ff4;line-height:1.065430;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_3758d965c76843d69d20052d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.944824;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_125c916b181e718eced588ee.woff')format("woff");}.ff6{font-family:ff6;line-height:0.946777;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_e3a2d834b20cf4e30937aa46.woff')format("woff");}.ff7{font-family:ff7;line-height:0.854492;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_8824fa8020523bd621ced361.woff')format("woff");}.ff8{font-family:ff8;line-height:1.064941;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_693f364901ab6547fa8139df.woff')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_5d123772bb4c8abe91c34807.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.120000px;}
.lsb{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.270600px;}
.lse{letter-spacing:-0.240000px;}
.ls15{letter-spacing:-0.097800px;}
.ls10{letter-spacing:-0.094800px;}
.ls13{letter-spacing:-0.090000px;}
.ls9{letter-spacing:-0.085200px;}
.ls6{letter-spacing:-0.053280px;}
.lsa{letter-spacing:-0.036000px;}
.ls7{letter-spacing:-0.010800px;}
.ls4{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.012960px;}
.ls5{letter-spacing:0.126000px;}
.ls16{letter-spacing:0.126720px;}
.ls0{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.328200px;}
.ls2{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.636000px;}
.ls17{letter-spacing:0.708000px;}
.lsc{letter-spacing:1.067760px;}
.ls12{letter-spacing:46.026720px;}
.ls11{letter-spacing:64.002720px;}
.ls1{letter-spacing:201.060000px;}
.ls3{letter-spacing:540.163200px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws4{word-spacing:-14.886720px;}
.ws6{word-spacing:-13.783200px;}
.ws0{word-spacing:-13.626000px;}
.wsf{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.wsd{word-spacing:-13.057200px;}
.ws10{word-spacing:-13.049400px;}
.ws1{word-spacing:-10.612800px;}
.ws7{word-spacing:-10.527600px;}
.wsb{word-spacing:-10.342200px;}
.ws2{word-spacing:-9.187200px;}
.wsc{word-spacing:-9.092400px;}
.ws3{word-spacing:-7.920000px;}
.ws8{word-spacing:-7.884000px;}
.ws9{word-spacing:-7.632000px;}
.wsa{word-spacing:0.000000px;}
._6{margin-left:-200.880000px;}
._5{margin-left:-38.193840px;}
._10{margin-left:-3.697440px;}
._f{margin-left:-2.457840px;}
._2{margin-left:-1.188000px;}
._1{width:1.254000px;}
._4{width:2.862960px;}
._11{width:4.541760px;}
._8{width:5.737920px;}
._7{width:7.230960px;}
._a{width:8.964000px;}
._b{width:10.099440px;}
._16{width:11.808000px;}
._9{width:13.566480px;}
._15{width:15.475920px;}
._c{width:16.614240px;}
._e{width:17.814480px;}
._d{width:18.824400px;}
._19{width:19.840320px;}
._1a{width:21.040320px;}
._12{width:22.170960px;}
._1c{width:23.233200px;}
._14{width:24.324240px;}
._13{width:25.457760px;}
._1b{width:26.560080px;}
._21{width:27.763680px;}
._20{width:30.837120px;}
._1f{width:31.911840px;}
._1e{width:35.260320px;}
._1d{width:36.334080px;}
._17{width:46.644120px;}
._0{width:75.000000px;}
._3{width:181.404000px;}
._18{width:1069.687200px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:23.760000px;}
.fs7{font-size:36.000000px;}
.fs0{font-size:41.760000px;}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs9{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y100{bottom:3.414000px;}
.yfa{bottom:3.420000px;}
.y116{bottom:3.450000px;}
.y107{bottom:3.465000px;}
.y54{bottom:9.540000px;}
.y114{bottom:12.060000px;}
.y115{bottom:20.880000px;}
.y53{bottom:22.860000px;}
.y52{bottom:33.300000px;}
.y51{bottom:43.920000px;}
.y7{bottom:56.520000px;}
.y50{bottom:61.560000px;}
.y6{bottom:70.596000px;}
.y41{bottom:110.376000px;}
.ycc{bottom:114.156000px;}
.y4f{bottom:114.480000px;}
.y131{bottom:122.256000px;}
.y40{bottom:128.016000px;}
.y4e{bottom:128.520000px;}
.ycb{bottom:131.796000px;}
.y8f{bottom:139.896000px;}
.y4d{bottom:142.560000px;}
.y130{bottom:143.136000px;}
.y3f{bottom:145.656000px;}
.yff{bottom:147.996000px;}
.yca{bottom:149.436000px;}
.y4c{bottom:156.600000px;}
.y8e{bottom:157.350000px;}
.y12f{bottom:160.590000px;}
.y3e{bottom:163.110000px;}
.yfe{bottom:166.350000px;}
.yc9{bottom:166.890000px;}
.y4b{bottom:170.820000px;}
.y8d{bottom:174.990000px;}
.y12e{bottom:178.230000px;}
.y3d{bottom:180.750000px;}
.y4a{bottom:183.420000px;}
.yc8{bottom:184.530000px;}
.yfd{bottom:184.710000px;}
.y49{bottom:191.880000px;}
.y8c{bottom:192.630000px;}
.y12d{bottom:195.870000px;}
.y3c{bottom:198.390000px;}
.yc7{bottom:202.170000px;}
.yfc{bottom:203.070000px;}
.y48{bottom:205.965000px;}
.y8b{bottom:210.270000px;}
.y12c{bottom:213.330000px;}
.y3b{bottom:216.030000px;}
.yc6{bottom:219.630000px;}
.y47{bottom:220.005000px;}
.yfb{bottom:221.430000px;}
.y8a{bottom:227.730000px;}
.y12b{bottom:230.970000px;}
.y3a{bottom:233.490000px;}
.y46{bottom:234.045000px;}
.yc5{bottom:237.270000px;}
.yf9{bottom:239.790000px;}
.y89{bottom:245.370000px;}
.y45{bottom:248.085000px;}
.y12a{bottom:248.610000px;}
.y39{bottom:251.130000px;}
.yc4{bottom:254.910000px;}
.y44{bottom:260.685000px;}
.yf8{bottom:261.570000px;}
.y88{bottom:263.010000px;}
.y129{bottom:266.250000px;}
.y38{bottom:268.770000px;}
.y43{bottom:271.845000px;}
.yc3{bottom:272.370000px;}
.yf7{bottom:279.030000px;}
.y87{bottom:280.470000px;}
.y128{bottom:283.710000px;}
.y37{bottom:286.230000px;}
.yc2{bottom:289.830000px;}
.yf6{bottom:296.670000px;}
.y86{bottom:298.110000px;}
.y127{bottom:301.350000px;}
.y36{bottom:303.870000px;}
.yc1{bottom:308.370000px;}
.yf5{bottom:314.310000px;}
.y85{bottom:315.750000px;}
.y126{bottom:318.990000px;}
.y35{bottom:321.510000px;}
.yc0{bottom:326.010000px;}
.yf4{bottom:331.770000px;}
.y84{bottom:333.210000px;}
.y125{bottom:336.495000px;}
.y34{bottom:339.015000px;}
.ybf{bottom:343.515000px;}
.yf3{bottom:349.455000px;}
.y83{bottom:350.895000px;}
.y124{bottom:354.135000px;}
.y33{bottom:356.655000px;}
.ybe{bottom:362.055000px;}
.yf2{bottom:367.095000px;}
.y82{bottom:368.535000px;}
.y123{bottom:371.775000px;}
.y32{bottom:374.295000px;}
.ybd{bottom:379.695000px;}
.yf1{bottom:384.555000px;}
.y81{bottom:386.175000px;}
.y122{bottom:389.235000px;}
.y31{bottom:391.935000px;}
.ybc{bottom:397.155000px;}
.yf0{bottom:402.195000px;}
.y80{bottom:403.635000px;}
.y121{bottom:406.875000px;}
.y30{bottom:409.215000px;}
.ybb{bottom:415.515000px;}
.yef{bottom:419.835000px;}
.y7f{bottom:421.275000px;}
.y120{bottom:424.515000px;}
.y2f{bottom:426.495000px;}
.yba{bottom:434.055000px;}
.yee{bottom:437.295000px;}
.y7e{bottom:438.915000px;}
.y11f{bottom:441.975000px;}
.y2e{bottom:443.775000px;}
.yb9{bottom:451.515000px;}
.yed{bottom:455.655000px;}
.y7d{bottom:456.375000px;}
.y11e{bottom:459.615000px;}
.y2d{bottom:461.055000px;}
.yb8{bottom:470.055000px;}
.y7c{bottom:474.015000px;}
.y11d{bottom:477.255000px;}
.y2c{bottom:478.335000px;}
.yb7{bottom:487.695000px;}
.y7b{bottom:491.655000px;}
.yec{bottom:492.555000px;}
.y11c{bottom:494.895000px;}
.y2b{bottom:495.435000px;}
.yb6{bottom:505.155000px;}
.y7a{bottom:509.115000px;}
.y11b{bottom:509.655000px;}
.yeb{bottom:510.195000px;}
.y2a{bottom:512.715000px;}
.yb5{bottom:523.695000px;}
.y79{bottom:526.755000px;}
.yea{bottom:527.655000px;}
.y11a{bottom:528.015000px;}
.y29{bottom:529.995000px;}
.yb4{bottom:541.155000px;}
.y78{bottom:544.395000px;}
.ye9{bottom:546.015000px;}
.y119{bottom:546.375000px;}
.y28{bottom:547.275000px;}
.yb3{bottom:558.795000px;}
.y77{bottom:561.855000px;}
.y27{bottom:564.555000px;}
.y118{bottom:564.735000px;}
.yb2{bottom:576.435000px;}
.y76{bottom:579.495000px;}
.y26{bottom:581.835000px;}
.ye8{bottom:582.915000px;}
.y117{bottom:583.095000px;}
.yb1{bottom:594.075000px;}
.y75{bottom:597.135000px;}
.y25{bottom:598.935000px;}
.ye7{bottom:601.455000px;}
.yb0{bottom:611.565000px;}
.y74{bottom:614.805000px;}
.y24{bottom:616.245000px;}
.ye6{bottom:619.125000px;}
.y113{bottom:619.845000px;}
.yaf{bottom:629.205000px;}
.y73{bottom:632.265000px;}
.y23{bottom:635.685000px;}
.ye5{bottom:636.585000px;}
.yae{bottom:646.845000px;}
.y72{bottom:649.905000px;}
.y22{bottom:652.965000px;}
.ye4{bottom:654.945000px;}
.y112{bottom:659.085000px;}
.yad{bottom:664.305000px;}
.y71{bottom:667.545000px;}
.y21{bottom:670.245000px;}
.y42{bottom:672.765000px;}
.ye3{bottom:673.305000px;}
.y111{bottom:676.725000px;}
.yac{bottom:681.945000px;}
.y70{bottom:685.005000px;}
.y20{bottom:687.525000px;}
.ye2{bottom:691.845000px;}
.y110{bottom:694.365000px;}
.yab{bottom:699.585000px;}
.y6f{bottom:702.645000px;}
.y1f{bottom:704.805000px;}
.ye1{bottom:710.385000px;}
.y10f{bottom:711.825000px;}
.yaa{bottom:717.045000px;}
.y6e{bottom:720.285000px;}
.y1e{bottom:722.085000px;}
.ye0{bottom:727.845000px;}
.y10e{bottom:729.465000px;}
.ya9{bottom:734.685000px;}
.y6d{bottom:737.745000px;}
.y1d{bottom:739.185000px;}
.ydf{bottom:745.305000px;}
.y10d{bottom:747.105000px;}
.ya8{bottom:752.325000px;}
.y6c{bottom:755.385000px;}
.y1c{bottom:756.465000px;}
.yde{bottom:763.845000px;}
.y10c{bottom:764.565000px;}
.ya7{bottom:769.965000px;}
.y6b{bottom:773.025000px;}
.y1b{bottom:773.745000px;}
.y10b{bottom:782.205000px;}
.ydd{bottom:782.385000px;}
.ya6{bottom:787.425000px;}
.y6a{bottom:790.665000px;}
.y1a{bottom:791.025000px;}
.ydc{bottom:799.845000px;}
.ya5{bottom:805.065000px;}
.y69{bottom:808.125000px;}
.y19{bottom:808.305000px;}
.y10a{bottom:817.305000px;}
.ydb{bottom:818.385000px;}
.ya4{bottom:822.705000px;}
.y18{bottom:825.585000px;}
.y68{bottom:825.765000px;}
.y109{bottom:834.945000px;}
.yda{bottom:835.845000px;}
.ya3{bottom:840.165000px;}
.y17{bottom:842.685000px;}
.y67{bottom:843.405000px;}
.y108{bottom:852.585000px;}
.yd9{bottom:854.385000px;}
.ya2{bottom:857.805000px;}
.y16{bottom:859.965000px;}
.y66{bottom:860.865000px;}
.y106{bottom:867.525000px;}
.yd8{bottom:871.890000px;}
.ya1{bottom:875.490000px;}
.y15{bottom:877.290000px;}
.y65{bottom:878.550000px;}
.y105{bottom:885.930000px;}
.yd7{bottom:889.530000px;}
.ya0{bottom:892.950000px;}
.y14{bottom:894.570000px;}
.y64{bottom:896.190000px;}
.y104{bottom:904.110000px;}
.yd6{bottom:906.990000px;}
.y9f{bottom:910.590000px;}
.y13{bottom:911.850000px;}
.y63{bottom:913.650000px;}
.y103{bottom:922.470000px;}
.yd5{bottom:925.350000px;}
.y9e{bottom:928.230000px;}
.y12{bottom:929.130000px;}
.y62{bottom:931.290000px;}
.y102{bottom:940.830000px;}
.yd4{bottom:943.890000px;}
.y9d{bottom:945.690000px;}
.y11{bottom:946.230000px;}
.y61{bottom:948.930000px;}
.y101{bottom:959.190000px;}
.yd3{bottom:962.250000px;}
.y9c{bottom:963.330000px;}
.y10{bottom:963.510000px;}
.y60{bottom:966.570000px;}
.yf{bottom:980.790000px;}
.y9b{bottom:980.970000px;}
.y5f{bottom:984.030000px;}
.ye{bottom:997.890000px;}
.yd2{bottom:998.430000px;}
.y9a{bottom:998.610000px;}
.y5e{bottom:1001.670000px;}
.yd1{bottom:1015.890000px;}
.y99{bottom:1016.070000px;}
.yd{bottom:1016.790000px;}
.y5d{bottom:1019.310000px;}
.yc{bottom:1030.110000px;}
.yd0{bottom:1033.350000px;}
.y98{bottom:1033.710000px;}
.y5c{bottom:1036.770000px;}
.yb{bottom:1049.550000px;}
.y97{bottom:1051.350000px;}
.ycf{bottom:1051.710000px;}
.y5b{bottom:1054.410000px;}
.y96{bottom:1068.810000px;}
.ya{bottom:1069.530000px;}
.yce{bottom:1070.250000px;}
.y5a{bottom:1072.050000px;}
.y95{bottom:1086.450000px;}
.ycd{bottom:1088.610000px;}
.y59{bottom:1089.510000px;}
.y9{bottom:1092.390000px;}
.y94{bottom:1104.090000px;}
.y58{bottom:1107.150000px;}
.y8{bottom:1114.350000px;}
.y93{bottom:1121.550000px;}
.y57{bottom:1124.790000px;}
.y5{bottom:1135.050000px;}
.y92{bottom:1139.220000px;}
.y56{bottom:1142.280000px;}
.y4{bottom:1150.740000px;}
.y91{bottom:1157.400000px;}
.y3{bottom:1166.220000px;}
.y90{bottom:1178.100000px;}
.y2{bottom:1181.700000px;}
.y1{bottom:1196.640000px;}
.y55{bottom:1197.540000px;}
.h14{height:17.460000px;}
.h16{height:17.496000px;}
.h15{height:17.640000px;}
.h10{height:20.117109px;}
.h12{height:30.480469px;}
.h8{height:33.480703px;}
.h17{height:35.100000px;}
.h2{height:35.357344px;}
.h3{height:38.100586px;}
.h4{height:40.843828px;}
.hc{height:41.726953px;}
.ha{height:42.164648px;}
.hd{height:43.302656px;}
.he{height:43.681992px;}
.h9{height:45.720703px;}
.hb{height:50.273438px;}
.h5{height:50.597578px;}
.h7{height:56.084062px;}
.h13{height:58.819922px;}
.h11{height:60.960938px;}
.h6{height:65.837812px;}
.hf{height:284.610000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:105.480000px;}
.wc{width:105.696000px;}
.wb{width:116.316000px;}
.w7{width:137.520000px;}
.w6{width:148.176000px;}
.w8{width:154.830000px;}
.w9{width:190.290000px;}
.w3{width:221.970000px;}
.w4{width:224.670000px;}
.w5{width:232.770000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:7.740000px;}
.x2e{left:9.225000px;}
.x29{left:17.820000px;}
.x2c{left:24.840000px;}
.x10{left:31.140000px;}
.x20{left:33.885000px;}
.x2f{left:37.620000px;}
.x1c{left:39.420000px;}
.x31{left:41.940000px;}
.x1e{left:43.560000px;}
.x26{left:44.634000px;}
.x30{left:48.270000px;}
.x22{left:53.820000px;}
.x21{left:59.040000px;}
.x23{left:62.505000px;}
.x24{left:64.260000px;}
.x12{left:66.420000px;}
.x25{left:67.725000px;}
.x14{left:74.160000px;}
.x19{left:91.800000px;}
.x17{left:94.134000px;}
.x16{left:97.425000px;}
.x18{left:103.320000px;}
.x1{left:106.415987px;}
.x2{left:107.855987px;}
.x3{left:116.315987px;}
.xc{left:133.415987px;}
.x32{left:141.695987px;}
.x4{left:147.995987px;}
.xa{left:160.409987px;}
.xe{left:187.409987px;}
.xd{left:191.369987px;}
.x6{left:256.889987px;}
.x1a{left:271.829987px;}
.x7{left:294.374987px;}
.x8{left:322.454987px;}
.x28{left:324.615000px;}
.x27{left:328.394987px;}
.x11{left:332.535000px;}
.x1b{left:340.635000px;}
.x9{left:342.614987px;}
.xf{left:411.914987px;}
.x2a{left:430.815000px;}
.x5{left:446.654987px;}
.x1d{left:489.525000px;}
.xb{left:540.824987px;}
.x2b{left:547.845000px;}
.x13{left:557.925000px;}
.x1f{left:627.765000px;}
.x2d{left:654.045000px;}
@media print{
.v2{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.440000pt;}
.lsb{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.240533pt;}
.lse{letter-spacing:-0.213333pt;}
.ls15{letter-spacing:-0.086933pt;}
.ls10{letter-spacing:-0.084267pt;}
.ls13{letter-spacing:-0.080000pt;}
.ls9{letter-spacing:-0.075733pt;}
.ls6{letter-spacing:-0.047360pt;}
.lsa{letter-spacing:-0.032000pt;}
.ls7{letter-spacing:-0.009600pt;}
.ls4{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.011520pt;}
.ls5{letter-spacing:0.112000pt;}
.ls16{letter-spacing:0.112640pt;}
.ls0{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.291733pt;}
.ls2{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.565333pt;}
.ls17{letter-spacing:0.629333pt;}
.lsc{letter-spacing:0.949120pt;}
.ls12{letter-spacing:40.912640pt;}
.ls11{letter-spacing:56.891307pt;}
.ls1{letter-spacing:178.720000pt;}
.ls3{letter-spacing:480.145067pt;}
.wse{word-spacing:-53.120000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws6{word-spacing:-12.251733pt;}
.ws0{word-spacing:-12.112000pt;}
.wsf{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.wsd{word-spacing:-11.606400pt;}
.ws10{word-spacing:-11.599467pt;}
.ws1{word-spacing:-9.433600pt;}
.ws7{word-spacing:-9.357867pt;}
.wsb{word-spacing:-9.193067pt;}
.ws2{word-spacing:-8.166400pt;}
.wsc{word-spacing:-8.082133pt;}
.ws3{word-spacing:-7.040000pt;}
.ws8{word-spacing:-7.008000pt;}
.ws9{word-spacing:-6.784000pt;}
.wsa{word-spacing:0.000000pt;}
._6{margin-left:-178.560000pt;}
._5{margin-left:-33.950080pt;}
._10{margin-left:-3.286613pt;}
._f{margin-left:-2.184747pt;}
._2{margin-left:-1.056000pt;}
._1{width:1.114667pt;}
._4{width:2.544853pt;}
._11{width:4.037120pt;}
._8{width:5.100373pt;}
._7{width:6.427520pt;}
._a{width:7.968000pt;}
._b{width:8.977280pt;}
._16{width:10.496000pt;}
._9{width:12.059093pt;}
._15{width:13.756373pt;}
._c{width:14.768213pt;}
._e{width:15.835093pt;}
._d{width:16.732800pt;}
._19{width:17.635840pt;}
._1a{width:18.702507pt;}
._12{width:19.707520pt;}
._1c{width:20.651733pt;}
._14{width:21.621547pt;}
._13{width:22.629120pt;}
._1b{width:23.608960pt;}
._21{width:24.678827pt;}
._20{width:27.410773pt;}
._1f{width:28.366080pt;}
._1e{width:31.342507pt;}
._1d{width:32.296960pt;}
._17{width:41.461440pt;}
._0{width:66.666667pt;}
._3{width:161.248000pt;}
._18{width:950.833067pt;}
.fs8{font-size:21.120000pt;}
.fs7{font-size:32.000000pt;}
.fs0{font-size:37.120000pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs9{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y100{bottom:3.034667pt;}
.yfa{bottom:3.040000pt;}
.y116{bottom:3.066667pt;}
.y107{bottom:3.080000pt;}
.y54{bottom:8.480000pt;}
.y114{bottom:10.720000pt;}
.y115{bottom:18.560000pt;}
.y53{bottom:20.320000pt;}
.y52{bottom:29.600000pt;}
.y51{bottom:39.040000pt;}
.y7{bottom:50.240000pt;}
.y50{bottom:54.720000pt;}
.y6{bottom:62.752000pt;}
.y41{bottom:98.112000pt;}
.ycc{bottom:101.472000pt;}
.y4f{bottom:101.760000pt;}
.y131{bottom:108.672000pt;}
.y40{bottom:113.792000pt;}
.y4e{bottom:114.240000pt;}
.ycb{bottom:117.152000pt;}
.y8f{bottom:124.352000pt;}
.y4d{bottom:126.720000pt;}
.y130{bottom:127.232000pt;}
.y3f{bottom:129.472000pt;}
.yff{bottom:131.552000pt;}
.yca{bottom:132.832000pt;}
.y4c{bottom:139.200000pt;}
.y8e{bottom:139.866667pt;}
.y12f{bottom:142.746667pt;}
.y3e{bottom:144.986667pt;}
.yfe{bottom:147.866667pt;}
.yc9{bottom:148.346667pt;}
.y4b{bottom:151.840000pt;}
.y8d{bottom:155.546667pt;}
.y12e{bottom:158.426667pt;}
.y3d{bottom:160.666667pt;}
.y4a{bottom:163.040000pt;}
.yc8{bottom:164.026667pt;}
.yfd{bottom:164.186667pt;}
.y49{bottom:170.560000pt;}
.y8c{bottom:171.226667pt;}
.y12d{bottom:174.106667pt;}
.y3c{bottom:176.346667pt;}
.yc7{bottom:179.706667pt;}
.yfc{bottom:180.506667pt;}
.y48{bottom:183.080000pt;}
.y8b{bottom:186.906667pt;}
.y12c{bottom:189.626667pt;}
.y3b{bottom:192.026667pt;}
.yc6{bottom:195.226667pt;}
.y47{bottom:195.560000pt;}
.yfb{bottom:196.826667pt;}
.y8a{bottom:202.426667pt;}
.y12b{bottom:205.306667pt;}
.y3a{bottom:207.546667pt;}
.y46{bottom:208.040000pt;}
.yc5{bottom:210.906667pt;}
.yf9{bottom:213.146667pt;}
.y89{bottom:218.106667pt;}
.y45{bottom:220.520000pt;}
.y12a{bottom:220.986667pt;}
.y39{bottom:223.226667pt;}
.yc4{bottom:226.586667pt;}
.y44{bottom:231.720000pt;}
.yf8{bottom:232.506667pt;}
.y88{bottom:233.786667pt;}
.y129{bottom:236.666667pt;}
.y38{bottom:238.906667pt;}
.y43{bottom:241.640000pt;}
.yc3{bottom:242.106667pt;}
.yf7{bottom:248.026667pt;}
.y87{bottom:249.306667pt;}
.y128{bottom:252.186667pt;}
.y37{bottom:254.426667pt;}
.yc2{bottom:257.626667pt;}
.yf6{bottom:263.706667pt;}
.y86{bottom:264.986667pt;}
.y127{bottom:267.866667pt;}
.y36{bottom:270.106667pt;}
.yc1{bottom:274.106667pt;}
.yf5{bottom:279.386667pt;}
.y85{bottom:280.666667pt;}
.y126{bottom:283.546667pt;}
.y35{bottom:285.786667pt;}
.yc0{bottom:289.786667pt;}
.yf4{bottom:294.906667pt;}
.y84{bottom:296.186667pt;}
.y125{bottom:299.106667pt;}
.y34{bottom:301.346667pt;}
.ybf{bottom:305.346667pt;}
.yf3{bottom:310.626667pt;}
.y83{bottom:311.906667pt;}
.y124{bottom:314.786667pt;}
.y33{bottom:317.026667pt;}
.ybe{bottom:321.826667pt;}
.yf2{bottom:326.306667pt;}
.y82{bottom:327.586667pt;}
.y123{bottom:330.466667pt;}
.y32{bottom:332.706667pt;}
.ybd{bottom:337.506667pt;}
.yf1{bottom:341.826667pt;}
.y81{bottom:343.266667pt;}
.y122{bottom:345.986667pt;}
.y31{bottom:348.386667pt;}
.ybc{bottom:353.026667pt;}
.yf0{bottom:357.506667pt;}
.y80{bottom:358.786667pt;}
.y121{bottom:361.666667pt;}
.y30{bottom:363.746667pt;}
.ybb{bottom:369.346667pt;}
.yef{bottom:373.186667pt;}
.y7f{bottom:374.466667pt;}
.y120{bottom:377.346667pt;}
.y2f{bottom:379.106667pt;}
.yba{bottom:385.826667pt;}
.yee{bottom:388.706667pt;}
.y7e{bottom:390.146667pt;}
.y11f{bottom:392.866667pt;}
.y2e{bottom:394.466667pt;}
.yb9{bottom:401.346667pt;}
.yed{bottom:405.026667pt;}
.y7d{bottom:405.666667pt;}
.y11e{bottom:408.546667pt;}
.y2d{bottom:409.826667pt;}
.yb8{bottom:417.826667pt;}
.y7c{bottom:421.346667pt;}
.y11d{bottom:424.226667pt;}
.y2c{bottom:425.186667pt;}
.yb7{bottom:433.506667pt;}
.y7b{bottom:437.026667pt;}
.yec{bottom:437.826667pt;}
.y11c{bottom:439.906667pt;}
.y2b{bottom:440.386667pt;}
.yb6{bottom:449.026667pt;}
.y7a{bottom:452.546667pt;}
.y11b{bottom:453.026667pt;}
.yeb{bottom:453.506667pt;}
.y2a{bottom:455.746667pt;}
.yb5{bottom:465.506667pt;}
.y79{bottom:468.226667pt;}
.yea{bottom:469.026667pt;}
.y11a{bottom:469.346667pt;}
.y29{bottom:471.106667pt;}
.yb4{bottom:481.026667pt;}
.y78{bottom:483.906667pt;}
.ye9{bottom:485.346667pt;}
.y119{bottom:485.666667pt;}
.y28{bottom:486.466667pt;}
.yb3{bottom:496.706667pt;}
.y77{bottom:499.426667pt;}
.y27{bottom:501.826667pt;}
.y118{bottom:501.986667pt;}
.yb2{bottom:512.386667pt;}
.y76{bottom:515.106667pt;}
.y26{bottom:517.186667pt;}
.ye8{bottom:518.146667pt;}
.y117{bottom:518.306667pt;}
.yb1{bottom:528.066667pt;}
.y75{bottom:530.786667pt;}
.y25{bottom:532.386667pt;}
.ye7{bottom:534.626667pt;}
.yb0{bottom:543.613333pt;}
.y74{bottom:546.493333pt;}
.y24{bottom:547.773333pt;}
.ye6{bottom:550.333333pt;}
.y113{bottom:550.973333pt;}
.yaf{bottom:559.293333pt;}
.y73{bottom:562.013333pt;}
.y23{bottom:565.053333pt;}
.ye5{bottom:565.853333pt;}
.yae{bottom:574.973333pt;}
.y72{bottom:577.693333pt;}
.y22{bottom:580.413333pt;}
.ye4{bottom:582.173333pt;}
.y112{bottom:585.853333pt;}
.yad{bottom:590.493333pt;}
.y71{bottom:593.373333pt;}
.y21{bottom:595.773333pt;}
.y42{bottom:598.013333pt;}
.ye3{bottom:598.493333pt;}
.y111{bottom:601.533333pt;}
.yac{bottom:606.173333pt;}
.y70{bottom:608.893333pt;}
.y20{bottom:611.133333pt;}
.ye2{bottom:614.973333pt;}
.y110{bottom:617.213333pt;}
.yab{bottom:621.853333pt;}
.y6f{bottom:624.573333pt;}
.y1f{bottom:626.493333pt;}
.ye1{bottom:631.453333pt;}
.y10f{bottom:632.733333pt;}
.yaa{bottom:637.373333pt;}
.y6e{bottom:640.253333pt;}
.y1e{bottom:641.853333pt;}
.ye0{bottom:646.973333pt;}
.y10e{bottom:648.413333pt;}
.ya9{bottom:653.053333pt;}
.y6d{bottom:655.773333pt;}
.y1d{bottom:657.053333pt;}
.ydf{bottom:662.493333pt;}
.y10d{bottom:664.093333pt;}
.ya8{bottom:668.733333pt;}
.y6c{bottom:671.453333pt;}
.y1c{bottom:672.413333pt;}
.yde{bottom:678.973333pt;}
.y10c{bottom:679.613333pt;}
.ya7{bottom:684.413333pt;}
.y6b{bottom:687.133333pt;}
.y1b{bottom:687.773333pt;}
.y10b{bottom:695.293333pt;}
.ydd{bottom:695.453333pt;}
.ya6{bottom:699.933333pt;}
.y6a{bottom:702.813333pt;}
.y1a{bottom:703.133333pt;}
.ydc{bottom:710.973333pt;}
.ya5{bottom:715.613333pt;}
.y69{bottom:718.333333pt;}
.y19{bottom:718.493333pt;}
.y10a{bottom:726.493333pt;}
.ydb{bottom:727.453333pt;}
.ya4{bottom:731.293333pt;}
.y18{bottom:733.853333pt;}
.y68{bottom:734.013333pt;}
.y109{bottom:742.173333pt;}
.yda{bottom:742.973333pt;}
.ya3{bottom:746.813333pt;}
.y17{bottom:749.053333pt;}
.y67{bottom:749.693333pt;}
.y108{bottom:757.853333pt;}
.yd9{bottom:759.453333pt;}
.ya2{bottom:762.493333pt;}
.y16{bottom:764.413333pt;}
.y66{bottom:765.213333pt;}
.y106{bottom:771.133333pt;}
.yd8{bottom:775.013333pt;}
.ya1{bottom:778.213333pt;}
.y15{bottom:779.813333pt;}
.y65{bottom:780.933333pt;}
.y105{bottom:787.493333pt;}
.yd7{bottom:790.693333pt;}
.ya0{bottom:793.733333pt;}
.y14{bottom:795.173333pt;}
.y64{bottom:796.613333pt;}
.y104{bottom:803.653333pt;}
.yd6{bottom:806.213333pt;}
.y9f{bottom:809.413333pt;}
.y13{bottom:810.533333pt;}
.y63{bottom:812.133333pt;}
.y103{bottom:819.973333pt;}
.yd5{bottom:822.533333pt;}
.y9e{bottom:825.093333pt;}
.y12{bottom:825.893333pt;}
.y62{bottom:827.813333pt;}
.y102{bottom:836.293333pt;}
.yd4{bottom:839.013333pt;}
.y9d{bottom:840.613333pt;}
.y11{bottom:841.093333pt;}
.y61{bottom:843.493333pt;}
.y101{bottom:852.613333pt;}
.yd3{bottom:855.333333pt;}
.y9c{bottom:856.293333pt;}
.y10{bottom:856.453333pt;}
.y60{bottom:859.173333pt;}
.yf{bottom:871.813333pt;}
.y9b{bottom:871.973333pt;}
.y5f{bottom:874.693333pt;}
.ye{bottom:887.013333pt;}
.yd2{bottom:887.493333pt;}
.y9a{bottom:887.653333pt;}
.y5e{bottom:890.373333pt;}
.yd1{bottom:903.013333pt;}
.y99{bottom:903.173333pt;}
.yd{bottom:903.813333pt;}
.y5d{bottom:906.053333pt;}
.yc{bottom:915.653333pt;}
.yd0{bottom:918.533333pt;}
.y98{bottom:918.853333pt;}
.y5c{bottom:921.573333pt;}
.yb{bottom:932.933333pt;}
.y97{bottom:934.533333pt;}
.ycf{bottom:934.853333pt;}
.y5b{bottom:937.253333pt;}
.y96{bottom:950.053333pt;}
.ya{bottom:950.693333pt;}
.yce{bottom:951.333333pt;}
.y5a{bottom:952.933333pt;}
.y95{bottom:965.733333pt;}
.ycd{bottom:967.653333pt;}
.y59{bottom:968.453333pt;}
.y9{bottom:971.013333pt;}
.y94{bottom:981.413333pt;}
.y58{bottom:984.133333pt;}
.y8{bottom:990.533333pt;}
.y93{bottom:996.933333pt;}
.y57{bottom:999.813333pt;}
.y5{bottom:1008.933333pt;}
.y92{bottom:1012.640000pt;}
.y56{bottom:1015.360000pt;}
.y4{bottom:1022.880000pt;}
.y91{bottom:1028.800000pt;}
.y3{bottom:1036.640000pt;}
.y90{bottom:1047.200000pt;}
.y2{bottom:1050.400000pt;}
.y1{bottom:1063.680000pt;}
.y55{bottom:1064.480000pt;}
.h14{height:15.520000pt;}
.h16{height:15.552000pt;}
.h15{height:15.680000pt;}
.h10{height:17.881875pt;}
.h12{height:27.093750pt;}
.h8{height:29.760625pt;}
.h17{height:31.200000pt;}
.h2{height:31.428750pt;}
.h3{height:33.867188pt;}
.h4{height:36.305625pt;}
.hc{height:37.090625pt;}
.ha{height:37.479688pt;}
.hd{height:38.491250pt;}
.he{height:38.828437pt;}
.h9{height:40.640625pt;}
.hb{height:44.687500pt;}
.h5{height:44.975625pt;}
.h7{height:49.852500pt;}
.h13{height:52.284375pt;}
.h11{height:54.187500pt;}
.h6{height:58.522500pt;}
.hf{height:252.986667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:93.760000pt;}
.wc{width:93.952000pt;}
.wb{width:103.392000pt;}
.w7{width:122.240000pt;}
.w6{width:131.712000pt;}
.w8{width:137.626667pt;}
.w9{width:169.146667pt;}
.w3{width:197.306667pt;}
.w4{width:199.706667pt;}
.w5{width:206.906667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:6.880000pt;}
.x2e{left:8.200000pt;}
.x29{left:15.840000pt;}
.x2c{left:22.080000pt;}
.x10{left:27.680000pt;}
.x20{left:30.120000pt;}
.x2f{left:33.440000pt;}
.x1c{left:35.040000pt;}
.x31{left:37.280000pt;}
.x1e{left:38.720000pt;}
.x26{left:39.674667pt;}
.x30{left:42.906667pt;}
.x22{left:47.840000pt;}
.x21{left:52.480000pt;}
.x23{left:55.560000pt;}
.x24{left:57.120000pt;}
.x12{left:59.040000pt;}
.x25{left:60.200000pt;}
.x14{left:65.920000pt;}
.x19{left:81.600000pt;}
.x17{left:83.674667pt;}
.x16{left:86.600000pt;}
.x18{left:91.840000pt;}
.x1{left:94.591988pt;}
.x2{left:95.871988pt;}
.x3{left:103.391988pt;}
.xc{left:118.591988pt;}
.x32{left:125.951988pt;}
.x4{left:131.551988pt;}
.xa{left:142.586655pt;}
.xe{left:166.586655pt;}
.xd{left:170.106655pt;}
.x6{left:228.346655pt;}
.x1a{left:241.626655pt;}
.x7{left:261.666655pt;}
.x8{left:286.626655pt;}
.x28{left:288.546667pt;}
.x27{left:291.906655pt;}
.x11{left:295.586667pt;}
.x1b{left:302.786667pt;}
.x9{left:304.546655pt;}
.xf{left:366.146655pt;}
.x2a{left:382.946667pt;}
.x5{left:397.026655pt;}
.x1d{left:435.133333pt;}
.xb{left:480.733322pt;}
.x2b{left:486.973333pt;}
.x13{left:495.933333pt;}
.x1f{left:558.013333pt;}
.x2d{left:581.373333pt;}
}




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