
    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_a9a6b54a5a0d5b7560e56dbb.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_1e0817ab7a7cc167b205acfc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.921387;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_ebc6b2284ecf4f637d25e104.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6d09de0c6f19eb2e33a75dd9.woff')format("woff");}.ff4{font-family:ff4;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f241ca1a5f90836f42c4a20b.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls1{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.ls8{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.288000px;}
.ls5{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.864000px;}
.ls9{letter-spacing:33.984000px;}
.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;}
}
.ws8{word-spacing:-18.864000px;}
.ws6{word-spacing:-18.288000px;}
.ws2{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.712000px;}
.ws5{word-spacing:-12.420000px;}
.ws1{word-spacing:0.000000px;}
._2d{margin-left:-5.184000px;}
._1c{margin-left:-4.176000px;}
._0{margin-left:-3.096000px;}
._1{margin-left:-1.224000px;}
._2{width:1.152000px;}
._4{width:3.096000px;}
._5{width:4.176000px;}
._6{width:5.760000px;}
._7{width:7.272000px;}
._a{width:9.144000px;}
._b{width:10.512000px;}
._c{width:11.604000px;}
._1d{width:13.536000px;}
._8{width:14.544000px;}
._9{width:16.056000px;}
._3{width:19.872000px;}
._13{width:21.528000px;}
._12{width:23.112000px;}
._11{width:24.264000px;}
._14{width:25.776000px;}
._15{width:27.216000px;}
._2b{width:28.224000px;}
._16{width:29.304000px;}
._f{width:30.816000px;}
._2c{width:31.908000px;}
._2e{width:33.060000px;}
._20{width:35.424000px;}
._21{width:36.504000px;}
._29{width:37.872000px;}
._18{width:38.952000px;}
._19{width:40.104000px;}
._1a{width:41.400000px;}
._1b{width:42.432000px;}
._2f{width:43.488000px;}
._10{width:44.496000px;}
._1f{width:45.720000px;}
._d{width:47.304000px;}
._e{width:48.312000px;}
._22{width:49.896000px;}
._1e{width:52.344000px;}
._27{width:57.240000px;}
._17{width:58.392000px;}
._23{width:64.008000px;}
._28{width:69.768000px;}
._2a{width:83.016000px;}
._26{width:95.688000px;}
._25{width:97.272000px;}
._24{width:107.928000px;}
._30{width:846.156000px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:23.760000px;}
.fs2{font-size:36.000000px;}
.fs3{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:3.960000px;}
.y7b{bottom:24.660000px;}
.y127{bottom:24.690000px;}
.y90{bottom:45.354000px;}
.y7a{bottom:45.360000px;}
.y126{bottom:45.390000px;}
.yb3{bottom:45.405000px;}
.y2{bottom:58.320000px;}
.y8f{bottom:66.054000px;}
.y79{bottom:66.060000px;}
.y125{bottom:66.090000px;}
.yb2{bottom:66.105000px;}
.y1{bottom:78.516000px;}
.y8e{bottom:86.754000px;}
.y92{bottom:86.760000px;}
.y124{bottom:86.790000px;}
.yb1{bottom:86.805000px;}
.yf2{bottom:101.376000px;}
.yc1{bottom:103.176000px;}
.y8d{bottom:107.454000px;}
.ya6{bottom:107.460000px;}
.y123{bottom:107.490000px;}
.yb0{bottom:107.505000px;}
.y119{bottom:109.296000px;}
.y114{bottom:110.916000px;}
.y73{bottom:111.636000px;}
.y2f{bottom:112.176000px;}
.y7d{bottom:112.896000px;}
.yd5{bottom:114.876000px;}
.y6f{bottom:117.936000px;}
.ya7{bottom:121.356000px;}
.y154{bottom:121.896000px;}
.yf1{bottom:122.076000px;}
.yc0{bottom:123.876000px;}
.y8c{bottom:128.154000px;}
.ya5{bottom:128.160000px;}
.y122{bottom:128.190000px;}
.yaf{bottom:128.205000px;}
.y113{bottom:131.616000px;}
.y72{bottom:132.156000px;}
.y2e{bottom:132.876000px;}
.yd4{bottom:135.576000px;}
.y6e{bottom:138.636000px;}
.y153{bottom:142.596000px;}
.yf0{bottom:142.776000px;}
.ybf{bottom:144.576000px;}
.y8b{bottom:148.854000px;}
.ya4{bottom:148.860000px;}
.y121{bottom:148.890000px;}
.yae{bottom:148.905000px;}
.y112{bottom:152.310000px;}
.y71{bottom:152.850000px;}
.y2d{bottom:153.570000px;}
.yd3{bottom:156.270000px;}
.y6d{bottom:159.330000px;}
.y152{bottom:163.290000px;}
.yef{bottom:163.470000px;}
.ybe{bottom:165.270000px;}
.y8a{bottom:169.554000px;}
.yb7{bottom:169.560000px;}
.ya3{bottom:169.590000px;}
.yad{bottom:169.605000px;}
.y111{bottom:173.010000px;}
.y70{bottom:173.550000px;}
.y2c{bottom:174.270000px;}
.y131{bottom:176.439000px;}
.yd2{bottom:176.970000px;}
.y6c{bottom:180.030000px;}
.y151{bottom:183.990000px;}
.yee{bottom:184.170000px;}
.ybd{bottom:185.970000px;}
.yb6{bottom:190.260000px;}
.ya2{bottom:190.290000px;}
.y89{bottom:190.299000px;}
.yac{bottom:190.305000px;}
.y110{bottom:193.710000px;}
.y53{bottom:194.250000px;}
.y2b{bottom:194.970000px;}
.yd1{bottom:197.670000px;}
.y6b{bottom:200.730000px;}
.y150{bottom:204.690000px;}
.yed{bottom:204.870000px;}
.ybc{bottom:206.670000px;}
.yb5{bottom:210.960000px;}
.ya1{bottom:210.990000px;}
.y88{bottom:210.999000px;}
.yab{bottom:211.005000px;}
.y2a{bottom:213.690000px;}
.y10f{bottom:214.410000px;}
.y52{bottom:214.950000px;}
.yd0{bottom:218.370000px;}
.y6a{bottom:221.430000px;}
.y14f{bottom:225.390000px;}
.yec{bottom:225.570000px;}
.y29{bottom:225.930000px;}
.ybb{bottom:227.370000px;}
.ya0{bottom:231.690000px;}
.y87{bottom:231.699000px;}
.yaa{bottom:231.705000px;}
.y10e{bottom:235.110000px;}
.y51{bottom:235.650000px;}
.ycf{bottom:239.070000px;}
.y69{bottom:242.130000px;}
.y14e{bottom:246.090000px;}
.yeb{bottom:246.270000px;}
.y28{bottom:246.630000px;}
.yba{bottom:248.070000px;}
.y9f{bottom:252.390000px;}
.y86{bottom:252.399000px;}
.ya9{bottom:252.405000px;}
.y120{bottom:252.435000px;}
.y10d{bottom:255.810000px;}
.y50{bottom:256.350000px;}
.y130{bottom:259.230000px;}
.yce{bottom:259.770000px;}
.y68{bottom:262.830000px;}
.y14d{bottom:266.790000px;}
.yea{bottom:266.970000px;}
.y27{bottom:267.330000px;}
.yb9{bottom:268.770000px;}
.y9e{bottom:273.090000px;}
.y85{bottom:273.099000px;}
.y12e{bottom:273.105000px;}
.y11f{bottom:273.135000px;}
.y10c{bottom:276.510000px;}
.y4f{bottom:277.050000px;}
.y133{bottom:279.975000px;}
.ycd{bottom:280.470000px;}
.y67{bottom:283.530000px;}
.y14c{bottom:287.490000px;}
.ye9{bottom:287.670000px;}
.y26{bottom:288.030000px;}
.y13d{bottom:289.470000px;}
.yb8{bottom:290.730000px;}
.y9d{bottom:293.790000px;}
.y84{bottom:293.799000px;}
.y12d{bottom:293.805000px;}
.y11e{bottom:293.835000px;}
.y118{bottom:294.195000px;}
.y10b{bottom:297.255000px;}
.y4e{bottom:297.795000px;}
.ycc{bottom:301.215000px;}
.y66{bottom:304.275000px;}
.yb4{bottom:306.075000px;}
.y14b{bottom:308.235000px;}
.ye8{bottom:308.415000px;}
.y25{bottom:308.775000px;}
.y13c{bottom:310.215000px;}
.y9c{bottom:314.490000px;}
.y83{bottom:314.499000px;}
.y12c{bottom:314.505000px;}
.y11d{bottom:314.535000px;}
.y10a{bottom:317.955000px;}
.y4d{bottom:318.495000px;}
.y11c{bottom:321.375000px;}
.ycb{bottom:321.915000px;}
.y65{bottom:324.975000px;}
.y12f{bottom:326.775000px;}
.y14a{bottom:328.935000px;}
.ye7{bottom:329.115000px;}
.y24{bottom:329.475000px;}
.y13b{bottom:330.915000px;}
.y9b{bottom:335.190000px;}
.y82{bottom:335.199000px;}
.y12b{bottom:335.205000px;}
.y109{bottom:338.655000px;}
.y4c{bottom:339.195000px;}
.yca{bottom:342.615000px;}
.y64{bottom:345.675000px;}
.y149{bottom:349.635000px;}
.ye6{bottom:349.815000px;}
.y23{bottom:350.175000px;}
.y13a{bottom:351.615000px;}
.y9a{bottom:355.890000px;}
.y81{bottom:355.899000px;}
.y12a{bottom:355.905000px;}
.y108{bottom:359.355000px;}
.y4b{bottom:359.895000px;}
.y128{bottom:362.739000px;}
.yc9{bottom:363.315000px;}
.y63{bottom:366.375000px;}
.y93{bottom:368.175000px;}
.y117{bottom:370.335000px;}
.ye5{bottom:370.515000px;}
.y22{bottom:370.875000px;}
.y139{bottom:372.315000px;}
.y99{bottom:376.590000px;}
.y80{bottom:376.599000px;}
.y107{bottom:380.055000px;}
.y4a{bottom:380.595000px;}
.yc8{bottom:384.015000px;}
.y62{bottom:387.075000px;}
.y116{bottom:391.035000px;}
.ye4{bottom:391.215000px;}
.y21{bottom:391.575000px;}
.y138{bottom:393.015000px;}
.y7f{bottom:397.299000px;}
.y98{bottom:397.335000px;}
.y106{bottom:400.755000px;}
.y49{bottom:401.295000px;}
.yc7{bottom:404.715000px;}
.y61{bottom:407.775000px;}
.y115{bottom:409.755000px;}
.y148{bottom:411.735000px;}
.ye3{bottom:411.915000px;}
.y20{bottom:412.275000px;}
.y137{bottom:413.715000px;}
.y7e{bottom:418.029000px;}
.y97{bottom:418.035000px;}
.y105{bottom:421.455000px;}
.y48{bottom:421.995000px;}
.yc6{bottom:425.415000px;}
.y60{bottom:428.475000px;}
.y147{bottom:432.435000px;}
.ye2{bottom:432.615000px;}
.y1f{bottom:432.975000px;}
.y136{bottom:434.415000px;}
.y96{bottom:438.735000px;}
.y104{bottom:442.155000px;}
.y47{bottom:442.695000px;}
.yc5{bottom:444.315000px;}
.y5f{bottom:449.175000px;}
.y146{bottom:453.135000px;}
.ye1{bottom:453.315000px;}
.y1e{bottom:453.675000px;}
.y135{bottom:455.115000px;}
.yc4{bottom:456.555000px;}
.y95{bottom:459.435000px;}
.y103{bottom:462.855000px;}
.y46{bottom:463.395000px;}
.y5e{bottom:469.875000px;}
.y145{bottom:473.835000px;}
.ye0{bottom:474.015000px;}
.y1d{bottom:474.375000px;}
.y134{bottom:475.815000px;}
.yc3{bottom:477.255000px;}
.y94{bottom:480.135000px;}
.y102{bottom:483.555000px;}
.y45{bottom:484.095000px;}
.y5d{bottom:490.575000px;}
.yc2{bottom:493.995000px;}
.y144{bottom:494.535000px;}
.ydf{bottom:494.715000px;}
.y1c{bottom:495.075000px;}
.y101{bottom:504.255000px;}
.y44{bottom:504.795000px;}
.y5c{bottom:511.275000px;}
.y11b{bottom:513.075000px;}
.y143{bottom:515.235000px;}
.yde{bottom:515.415000px;}
.y1b{bottom:515.775000px;}
.y100{bottom:524.985000px;}
.y43{bottom:525.525000px;}
.y5b{bottom:532.005000px;}
.y142{bottom:535.965000px;}
.ydd{bottom:536.145000px;}
.y1a{bottom:536.505000px;}
.yff{bottom:545.685000px;}
.y42{bottom:546.225000px;}
.y5a{bottom:552.705000px;}
.y141{bottom:556.665000px;}
.ydc{bottom:556.845000px;}
.y19{bottom:557.205000px;}
.yfe{bottom:566.385000px;}
.y78{bottom:566.745000px;}
.y41{bottom:566.925000px;}
.y59{bottom:573.405000px;}
.y140{bottom:577.365000px;}
.ydb{bottom:577.545000px;}
.y18{bottom:577.905000px;}
.yfd{bottom:587.085000px;}
.y40{bottom:587.625000px;}
.y58{bottom:594.105000px;}
.y13f{bottom:598.065000px;}
.yda{bottom:598.245000px;}
.y17{bottom:598.605000px;}
.yfc{bottom:607.785000px;}
.y3f{bottom:608.325000px;}
.y57{bottom:612.825000px;}
.y129{bottom:614.985000px;}
.y13e{bottom:616.785000px;}
.yd9{bottom:618.945000px;}
.y16{bottom:619.305000px;}
.y56{bottom:625.065000px;}
.yfb{bottom:628.485000px;}
.y3e{bottom:629.025000px;}
.yd8{bottom:637.665000px;}
.y15{bottom:640.005000px;}
.y55{bottom:645.765000px;}
.yfa{bottom:649.185000px;}
.y3d{bottom:649.725000px;}
.yd7{bottom:649.905000px;}
.y14{bottom:660.705000px;}
.y54{bottom:662.505000px;}
.y77{bottom:663.585000px;}
.yd6{bottom:666.645000px;}
.yf9{bottom:669.885000px;}
.y3c{bottom:670.425000px;}
.y13{bottom:681.405000px;}
.y76{bottom:682.485000px;}
.yf8{bottom:690.585000px;}
.y3b{bottom:691.125000px;}
.y75{bottom:694.725000px;}
.y12{bottom:700.305000px;}
.yf7{bottom:711.285000px;}
.y74{bottom:711.465000px;}
.y3a{bottom:711.825000px;}
.y11{bottom:717.405000px;}
.ya8{bottom:718.485000px;}
.yf6{bottom:731.985000px;}
.y39{bottom:732.525000px;}
.y10{bottom:738.105000px;}
.yf5{bottom:750.885000px;}
.y38{bottom:753.225000px;}
.yf{bottom:758.850000px;}
.yf4{bottom:763.170000px;}
.y37{bottom:773.970000px;}
.ye{bottom:777.570000px;}
.yf3{bottom:779.910000px;}
.yd{bottom:789.810000px;}
.y36{bottom:794.670000px;}
.yc{bottom:810.510000px;}
.y35{bottom:815.370000px;}
.y132{bottom:822.030000px;}
.yb{bottom:831.210000px;}
.y34{bottom:836.070000px;}
.ya{bottom:850.110000px;}
.y33{bottom:856.770000px;}
.y9{bottom:862.350000px;}
.y11a{bottom:863.430000px;}
.y32{bottom:877.470000px;}
.y8{bottom:883.050000px;}
.y91{bottom:884.130000px;}
.y31{bottom:898.170000px;}
.y7{bottom:903.750000px;}
.y30{bottom:918.870000px;}
.y6{bottom:922.470000px;}
.y5{bottom:939.570000px;}
.y4{bottom:960.270000px;}
.y3{bottom:980.970000px;}
.hf{height:21.300469px;}
.h4{height:25.400391px;}
.h1c{height:29.671875px;}
.h10{height:32.273438px;}
.h15{height:43.246406px;}
.h3{height:50.800781px;}
.h11{height:62.100000px;}
.h5{height:64.546875px;}
.h2{height:67.824844px;}
.h6{height:70.606406px;}
.h7{height:70.786406px;}
.h8{height:82.800000px;}
.ha{height:103.536000px;}
.h13{height:124.236000px;}
.h12{height:165.600000px;}
.h1a{height:165.630000px;}
.h19{height:186.330000px;}
.hc{height:227.730000px;}
.h18{height:269.130000px;}
.hd{height:269.175000px;}
.h1b{height:289.875000px;}
.h14{height:331.275000px;}
.h16{height:372.630000px;}
.h17{height:372.675000px;}
.he{height:393.330000px;}
.h9{height:434.775000px;}
.hb{height:496.875000px;}
.h1{height:1092.750000px;}
.h0{height:1092.780000px;}
.w8{width:77.940000px;}
.wd{width:83.700000px;}
.w4{width:90.576000px;}
.w7{width:91.836000px;}
.w5{width:95.220000px;}
.wa{width:106.776000px;}
.w3{width:109.260000px;}
.w6{width:111.456000px;}
.w9{width:114.660000px;}
.wc{width:123.336000px;}
.wb{width:149.256000px;}
.w2{width:773.819988px;}
.w0{width:773.820000px;}
.w1{width:774.000000px;}
.x0{left:0.000000px;}
.xf{left:12.960000px;}
.xa{left:95.075988px;}
.xe{left:96.335988px;}
.x4{left:117.215988px;}
.x19{left:118.475988px;}
.x1e{left:122.075988px;}
.x17{left:181.469988px;}
.x10{left:206.490000px;}
.xd{left:207.929988px;}
.x1a{left:211.890000px;}
.x5{left:224.129988px;}
.x7{left:231.509988px;}
.x8{left:241.634988px;}
.x11{left:298.155000px;}
.x1b{left:319.575000px;}
.x3{left:330.914988px;}
.x9{left:332.714988px;}
.x6{left:341.174988px;}
.x1{left:374.474988px;}
.x2{left:386.894988px;}
.x12{left:394.455000px;}
.x1c{left:469.905000px;}
.x13{left:506.985000px;}
.x15{left:591.089988px;}
.x1d{left:594.150000px;}
.xc{left:597.389988px;}
.x14{left:599.910000px;}
.xb{left:603.689988px;}
.x16{left:611.249988px;}
.x18{left:679.289988px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.256000pt;}
.ls5{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.768000pt;}
.ls9{letter-spacing:30.208000pt;}
.ws8{word-spacing:-16.768000pt;}
.ws6{word-spacing:-16.256000pt;}
.ws2{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.744000pt;}
.ws5{word-spacing:-11.040000pt;}
.ws1{word-spacing:0.000000pt;}
._2d{margin-left:-4.608000pt;}
._1c{margin-left:-3.712000pt;}
._0{margin-left:-2.752000pt;}
._1{margin-left:-1.088000pt;}
._2{width:1.024000pt;}
._4{width:2.752000pt;}
._5{width:3.712000pt;}
._6{width:5.120000pt;}
._7{width:6.464000pt;}
._a{width:8.128000pt;}
._b{width:9.344000pt;}
._c{width:10.314667pt;}
._1d{width:12.032000pt;}
._8{width:12.928000pt;}
._9{width:14.272000pt;}
._3{width:17.664000pt;}
._13{width:19.136000pt;}
._12{width:20.544000pt;}
._11{width:21.568000pt;}
._14{width:22.912000pt;}
._15{width:24.192000pt;}
._2b{width:25.088000pt;}
._16{width:26.048000pt;}
._f{width:27.392000pt;}
._2c{width:28.362667pt;}
._2e{width:29.386667pt;}
._20{width:31.488000pt;}
._21{width:32.448000pt;}
._29{width:33.664000pt;}
._18{width:34.624000pt;}
._19{width:35.648000pt;}
._1a{width:36.800000pt;}
._1b{width:37.717333pt;}
._2f{width:38.656000pt;}
._10{width:39.552000pt;}
._1f{width:40.640000pt;}
._d{width:42.048000pt;}
._e{width:42.944000pt;}
._22{width:44.352000pt;}
._1e{width:46.528000pt;}
._27{width:50.880000pt;}
._17{width:51.904000pt;}
._23{width:56.896000pt;}
._28{width:62.016000pt;}
._2a{width:73.792000pt;}
._26{width:85.056000pt;}
._25{width:86.464000pt;}
._24{width:95.936000pt;}
._30{width:752.138667pt;}
.fs4{font-size:21.120000pt;}
.fs2{font-size:32.000000pt;}
.fs3{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:3.520000pt;}
.y7b{bottom:21.920000pt;}
.y127{bottom:21.946667pt;}
.y90{bottom:40.314667pt;}
.y7a{bottom:40.320000pt;}
.y126{bottom:40.346667pt;}
.yb3{bottom:40.360000pt;}
.y2{bottom:51.840000pt;}
.y8f{bottom:58.714667pt;}
.y79{bottom:58.720000pt;}
.y125{bottom:58.746667pt;}
.yb2{bottom:58.760000pt;}
.y1{bottom:69.792000pt;}
.y8e{bottom:77.114667pt;}
.y92{bottom:77.120000pt;}
.y124{bottom:77.146667pt;}
.yb1{bottom:77.160000pt;}
.yf2{bottom:90.112000pt;}
.yc1{bottom:91.712000pt;}
.y8d{bottom:95.514667pt;}
.ya6{bottom:95.520000pt;}
.y123{bottom:95.546667pt;}
.yb0{bottom:95.560000pt;}
.y119{bottom:97.152000pt;}
.y114{bottom:98.592000pt;}
.y73{bottom:99.232000pt;}
.y2f{bottom:99.712000pt;}
.y7d{bottom:100.352000pt;}
.yd5{bottom:102.112000pt;}
.y6f{bottom:104.832000pt;}
.ya7{bottom:107.872000pt;}
.y154{bottom:108.352000pt;}
.yf1{bottom:108.512000pt;}
.yc0{bottom:110.112000pt;}
.y8c{bottom:113.914667pt;}
.ya5{bottom:113.920000pt;}
.y122{bottom:113.946667pt;}
.yaf{bottom:113.960000pt;}
.y113{bottom:116.992000pt;}
.y72{bottom:117.472000pt;}
.y2e{bottom:118.112000pt;}
.yd4{bottom:120.512000pt;}
.y6e{bottom:123.232000pt;}
.y153{bottom:126.752000pt;}
.yf0{bottom:126.912000pt;}
.ybf{bottom:128.512000pt;}
.y8b{bottom:132.314667pt;}
.ya4{bottom:132.320000pt;}
.y121{bottom:132.346667pt;}
.yae{bottom:132.360000pt;}
.y112{bottom:135.386667pt;}
.y71{bottom:135.866667pt;}
.y2d{bottom:136.506667pt;}
.yd3{bottom:138.906667pt;}
.y6d{bottom:141.626667pt;}
.y152{bottom:145.146667pt;}
.yef{bottom:145.306667pt;}
.ybe{bottom:146.906667pt;}
.y8a{bottom:150.714667pt;}
.yb7{bottom:150.720000pt;}
.ya3{bottom:150.746667pt;}
.yad{bottom:150.760000pt;}
.y111{bottom:153.786667pt;}
.y70{bottom:154.266667pt;}
.y2c{bottom:154.906667pt;}
.y131{bottom:156.834667pt;}
.yd2{bottom:157.306667pt;}
.y6c{bottom:160.026667pt;}
.y151{bottom:163.546667pt;}
.yee{bottom:163.706667pt;}
.ybd{bottom:165.306667pt;}
.yb6{bottom:169.120000pt;}
.ya2{bottom:169.146667pt;}
.y89{bottom:169.154667pt;}
.yac{bottom:169.160000pt;}
.y110{bottom:172.186667pt;}
.y53{bottom:172.666667pt;}
.y2b{bottom:173.306667pt;}
.yd1{bottom:175.706667pt;}
.y6b{bottom:178.426667pt;}
.y150{bottom:181.946667pt;}
.yed{bottom:182.106667pt;}
.ybc{bottom:183.706667pt;}
.yb5{bottom:187.520000pt;}
.ya1{bottom:187.546667pt;}
.y88{bottom:187.554667pt;}
.yab{bottom:187.560000pt;}
.y2a{bottom:189.946667pt;}
.y10f{bottom:190.586667pt;}
.y52{bottom:191.066667pt;}
.yd0{bottom:194.106667pt;}
.y6a{bottom:196.826667pt;}
.y14f{bottom:200.346667pt;}
.yec{bottom:200.506667pt;}
.y29{bottom:200.826667pt;}
.ybb{bottom:202.106667pt;}
.ya0{bottom:205.946667pt;}
.y87{bottom:205.954667pt;}
.yaa{bottom:205.960000pt;}
.y10e{bottom:208.986667pt;}
.y51{bottom:209.466667pt;}
.ycf{bottom:212.506667pt;}
.y69{bottom:215.226667pt;}
.y14e{bottom:218.746667pt;}
.yeb{bottom:218.906667pt;}
.y28{bottom:219.226667pt;}
.yba{bottom:220.506667pt;}
.y9f{bottom:224.346667pt;}
.y86{bottom:224.354667pt;}
.ya9{bottom:224.360000pt;}
.y120{bottom:224.386667pt;}
.y10d{bottom:227.386667pt;}
.y50{bottom:227.866667pt;}
.y130{bottom:230.426667pt;}
.yce{bottom:230.906667pt;}
.y68{bottom:233.626667pt;}
.y14d{bottom:237.146667pt;}
.yea{bottom:237.306667pt;}
.y27{bottom:237.626667pt;}
.yb9{bottom:238.906667pt;}
.y9e{bottom:242.746667pt;}
.y85{bottom:242.754667pt;}
.y12e{bottom:242.760000pt;}
.y11f{bottom:242.786667pt;}
.y10c{bottom:245.786667pt;}
.y4f{bottom:246.266667pt;}
.y133{bottom:248.866667pt;}
.ycd{bottom:249.306667pt;}
.y67{bottom:252.026667pt;}
.y14c{bottom:255.546667pt;}
.ye9{bottom:255.706667pt;}
.y26{bottom:256.026667pt;}
.y13d{bottom:257.306667pt;}
.yb8{bottom:258.426667pt;}
.y9d{bottom:261.146667pt;}
.y84{bottom:261.154667pt;}
.y12d{bottom:261.160000pt;}
.y11e{bottom:261.186667pt;}
.y118{bottom:261.506667pt;}
.y10b{bottom:264.226667pt;}
.y4e{bottom:264.706667pt;}
.ycc{bottom:267.746667pt;}
.y66{bottom:270.466667pt;}
.yb4{bottom:272.066667pt;}
.y14b{bottom:273.986667pt;}
.ye8{bottom:274.146667pt;}
.y25{bottom:274.466667pt;}
.y13c{bottom:275.746667pt;}
.y9c{bottom:279.546667pt;}
.y83{bottom:279.554667pt;}
.y12c{bottom:279.560000pt;}
.y11d{bottom:279.586667pt;}
.y10a{bottom:282.626667pt;}
.y4d{bottom:283.106667pt;}
.y11c{bottom:285.666667pt;}
.ycb{bottom:286.146667pt;}
.y65{bottom:288.866667pt;}
.y12f{bottom:290.466667pt;}
.y14a{bottom:292.386667pt;}
.ye7{bottom:292.546667pt;}
.y24{bottom:292.866667pt;}
.y13b{bottom:294.146667pt;}
.y9b{bottom:297.946667pt;}
.y82{bottom:297.954667pt;}
.y12b{bottom:297.960000pt;}
.y109{bottom:301.026667pt;}
.y4c{bottom:301.506667pt;}
.yca{bottom:304.546667pt;}
.y64{bottom:307.266667pt;}
.y149{bottom:310.786667pt;}
.ye6{bottom:310.946667pt;}
.y23{bottom:311.266667pt;}
.y13a{bottom:312.546667pt;}
.y9a{bottom:316.346667pt;}
.y81{bottom:316.354667pt;}
.y12a{bottom:316.360000pt;}
.y108{bottom:319.426667pt;}
.y4b{bottom:319.906667pt;}
.y128{bottom:322.434667pt;}
.yc9{bottom:322.946667pt;}
.y63{bottom:325.666667pt;}
.y93{bottom:327.266667pt;}
.y117{bottom:329.186667pt;}
.ye5{bottom:329.346667pt;}
.y22{bottom:329.666667pt;}
.y139{bottom:330.946667pt;}
.y99{bottom:334.746667pt;}
.y80{bottom:334.754667pt;}
.y107{bottom:337.826667pt;}
.y4a{bottom:338.306667pt;}
.yc8{bottom:341.346667pt;}
.y62{bottom:344.066667pt;}
.y116{bottom:347.586667pt;}
.ye4{bottom:347.746667pt;}
.y21{bottom:348.066667pt;}
.y138{bottom:349.346667pt;}
.y7f{bottom:353.154667pt;}
.y98{bottom:353.186667pt;}
.y106{bottom:356.226667pt;}
.y49{bottom:356.706667pt;}
.yc7{bottom:359.746667pt;}
.y61{bottom:362.466667pt;}
.y115{bottom:364.226667pt;}
.y148{bottom:365.986667pt;}
.ye3{bottom:366.146667pt;}
.y20{bottom:366.466667pt;}
.y137{bottom:367.746667pt;}
.y7e{bottom:371.581333pt;}
.y97{bottom:371.586667pt;}
.y105{bottom:374.626667pt;}
.y48{bottom:375.106667pt;}
.yc6{bottom:378.146667pt;}
.y60{bottom:380.866667pt;}
.y147{bottom:384.386667pt;}
.ye2{bottom:384.546667pt;}
.y1f{bottom:384.866667pt;}
.y136{bottom:386.146667pt;}
.y96{bottom:389.986667pt;}
.y104{bottom:393.026667pt;}
.y47{bottom:393.506667pt;}
.yc5{bottom:394.946667pt;}
.y5f{bottom:399.266667pt;}
.y146{bottom:402.786667pt;}
.ye1{bottom:402.946667pt;}
.y1e{bottom:403.266667pt;}
.y135{bottom:404.546667pt;}
.yc4{bottom:405.826667pt;}
.y95{bottom:408.386667pt;}
.y103{bottom:411.426667pt;}
.y46{bottom:411.906667pt;}
.y5e{bottom:417.666667pt;}
.y145{bottom:421.186667pt;}
.ye0{bottom:421.346667pt;}
.y1d{bottom:421.666667pt;}
.y134{bottom:422.946667pt;}
.yc3{bottom:424.226667pt;}
.y94{bottom:426.786667pt;}
.y102{bottom:429.826667pt;}
.y45{bottom:430.306667pt;}
.y5d{bottom:436.066667pt;}
.yc2{bottom:439.106667pt;}
.y144{bottom:439.586667pt;}
.ydf{bottom:439.746667pt;}
.y1c{bottom:440.066667pt;}
.y101{bottom:448.226667pt;}
.y44{bottom:448.706667pt;}
.y5c{bottom:454.466667pt;}
.y11b{bottom:456.066667pt;}
.y143{bottom:457.986667pt;}
.yde{bottom:458.146667pt;}
.y1b{bottom:458.466667pt;}
.y100{bottom:466.653333pt;}
.y43{bottom:467.133333pt;}
.y5b{bottom:472.893333pt;}
.y142{bottom:476.413333pt;}
.ydd{bottom:476.573333pt;}
.y1a{bottom:476.893333pt;}
.yff{bottom:485.053333pt;}
.y42{bottom:485.533333pt;}
.y5a{bottom:491.293333pt;}
.y141{bottom:494.813333pt;}
.ydc{bottom:494.973333pt;}
.y19{bottom:495.293333pt;}
.yfe{bottom:503.453333pt;}
.y78{bottom:503.773333pt;}
.y41{bottom:503.933333pt;}
.y59{bottom:509.693333pt;}
.y140{bottom:513.213333pt;}
.ydb{bottom:513.373333pt;}
.y18{bottom:513.693333pt;}
.yfd{bottom:521.853333pt;}
.y40{bottom:522.333333pt;}
.y58{bottom:528.093333pt;}
.y13f{bottom:531.613333pt;}
.yda{bottom:531.773333pt;}
.y17{bottom:532.093333pt;}
.yfc{bottom:540.253333pt;}
.y3f{bottom:540.733333pt;}
.y57{bottom:544.733333pt;}
.y129{bottom:546.653333pt;}
.y13e{bottom:548.253333pt;}
.yd9{bottom:550.173333pt;}
.y16{bottom:550.493333pt;}
.y56{bottom:555.613333pt;}
.yfb{bottom:558.653333pt;}
.y3e{bottom:559.133333pt;}
.yd8{bottom:566.813333pt;}
.y15{bottom:568.893333pt;}
.y55{bottom:574.013333pt;}
.yfa{bottom:577.053333pt;}
.y3d{bottom:577.533333pt;}
.yd7{bottom:577.693333pt;}
.y14{bottom:587.293333pt;}
.y54{bottom:588.893333pt;}
.y77{bottom:589.853333pt;}
.yd6{bottom:592.573333pt;}
.yf9{bottom:595.453333pt;}
.y3c{bottom:595.933333pt;}
.y13{bottom:605.693333pt;}
.y76{bottom:606.653333pt;}
.yf8{bottom:613.853333pt;}
.y3b{bottom:614.333333pt;}
.y75{bottom:617.533333pt;}
.y12{bottom:622.493333pt;}
.yf7{bottom:632.253333pt;}
.y74{bottom:632.413333pt;}
.y3a{bottom:632.733333pt;}
.y11{bottom:637.693333pt;}
.ya8{bottom:638.653333pt;}
.yf6{bottom:650.653333pt;}
.y39{bottom:651.133333pt;}
.y10{bottom:656.093333pt;}
.yf5{bottom:667.453333pt;}
.y38{bottom:669.533333pt;}
.yf{bottom:674.533333pt;}
.yf4{bottom:678.373333pt;}
.y37{bottom:687.973333pt;}
.ye{bottom:691.173333pt;}
.yf3{bottom:693.253333pt;}
.yd{bottom:702.053333pt;}
.y36{bottom:706.373333pt;}
.yc{bottom:720.453333pt;}
.y35{bottom:724.773333pt;}
.y132{bottom:730.693333pt;}
.yb{bottom:738.853333pt;}
.y34{bottom:743.173333pt;}
.ya{bottom:755.653333pt;}
.y33{bottom:761.573333pt;}
.y9{bottom:766.533333pt;}
.y11a{bottom:767.493333pt;}
.y32{bottom:779.973333pt;}
.y8{bottom:784.933333pt;}
.y91{bottom:785.893333pt;}
.y31{bottom:798.373333pt;}
.y7{bottom:803.333333pt;}
.y30{bottom:816.773333pt;}
.y6{bottom:819.973333pt;}
.y5{bottom:835.173333pt;}
.y4{bottom:853.573333pt;}
.y3{bottom:871.973333pt;}
.hf{height:18.933750pt;}
.h4{height:22.578125pt;}
.h1c{height:26.375000pt;}
.h10{height:28.687500pt;}
.h15{height:38.441250pt;}
.h3{height:45.156250pt;}
.h11{height:55.200000pt;}
.h5{height:57.375000pt;}
.h2{height:60.288750pt;}
.h6{height:62.761250pt;}
.h7{height:62.921250pt;}
.h8{height:73.600000pt;}
.ha{height:92.032000pt;}
.h13{height:110.432000pt;}
.h12{height:147.200000pt;}
.h1a{height:147.226667pt;}
.h19{height:165.626667pt;}
.hc{height:202.426667pt;}
.h18{height:239.226667pt;}
.hd{height:239.266667pt;}
.h1b{height:257.666667pt;}
.h14{height:294.466667pt;}
.h16{height:331.226667pt;}
.h17{height:331.266667pt;}
.he{height:349.626667pt;}
.h9{height:386.466667pt;}
.hb{height:441.666667pt;}
.h1{height:971.333333pt;}
.h0{height:971.360000pt;}
.w8{width:69.280000pt;}
.wd{width:74.400000pt;}
.w4{width:80.512000pt;}
.w7{width:81.632000pt;}
.w5{width:84.640000pt;}
.wa{width:94.912000pt;}
.w3{width:97.120000pt;}
.w6{width:99.072000pt;}
.w9{width:101.920000pt;}
.wc{width:109.632000pt;}
.wb{width:132.672000pt;}
.w2{width:687.839990pt;}
.w0{width:687.840000pt;}
.w1{width:688.000000pt;}
.x0{left:0.000000pt;}
.xf{left:11.520000pt;}
.xa{left:84.511990pt;}
.xe{left:85.631990pt;}
.x4{left:104.191990pt;}
.x19{left:105.311990pt;}
.x1e{left:108.511990pt;}
.x17{left:161.306656pt;}
.x10{left:183.546667pt;}
.xd{left:184.826656pt;}
.x1a{left:188.346667pt;}
.x5{left:199.226656pt;}
.x7{left:205.786656pt;}
.x8{left:214.786656pt;}
.x11{left:265.026667pt;}
.x1b{left:284.066667pt;}
.x3{left:294.146656pt;}
.x9{left:295.746656pt;}
.x6{left:303.266656pt;}
.x1{left:332.866656pt;}
.x2{left:343.906656pt;}
.x12{left:350.626667pt;}
.x1c{left:417.693333pt;}
.x13{left:450.653333pt;}
.x15{left:525.413323pt;}
.x1d{left:528.133333pt;}
.xc{left:531.013323pt;}
.x14{left:533.253333pt;}
.xb{left:536.613323pt;}
.x16{left:543.333323pt;}
.x18{left:603.813323pt;}
}




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