
    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_7e8ef003a10d3186871f49ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.975586;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_ed3087549a5d3c09c29e3954.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919922;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_5844d8cac24993cacefe58ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919922;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_7a4acfe531dd1fc825728579.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.018000;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_500bae3163fbdc28a72b7e32.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.919922;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_9a93033058f8f94f39147116.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.975586;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_6b1c26cd999acf3214b0d8c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.967773;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_66fbbbf7112b3b1efee85215.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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;}
.m1{transform:matrix(0.249262,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249262,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249262,0.000000,0.000000,0.250000,0,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);}
.m2{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:-23.400000px;}
.v4{vertical-align:-18.600000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:25.800000px;}
.v1{vertical-align:28.200000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:19.800000px;}
.ls0{letter-spacing:20.400000px;}
.ls3{letter-spacing:80.274000px;}
.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;}
}
.wsc{word-spacing:-29.232000px;}
.ws9{word-spacing:-20.922000px;}
.ws0{word-spacing:-18.000000px;}
.wsb{word-spacing:-16.500000px;}
.ws3{word-spacing:-15.750000px;}
.ws1{word-spacing:-10.500000px;}
.ws2{word-spacing:-8.700000px;}
.ws4{word-spacing:-6.900000px;}
.ws6{word-spacing:-3.432768px;}
.ws5{word-spacing:-3.170629px;}
.ws7{word-spacing:-2.111243px;}
.ws8{word-spacing:0.000000px;}
.wsd{word-spacing:21.000000px;}
.wsa{word-spacing:48.000000px;}
._10{margin-left:-8.724000px;}
._1{margin-left:-1.020000px;}
._3{width:1.020000px;}
._b{width:2.709000px;}
._a{width:3.717000px;}
._c{width:4.776000px;}
._e{width:5.778000px;}
._2{width:6.834000px;}
._0{width:8.160000px;}
._4{width:9.648000px;}
._6{width:10.824000px;}
._8{width:12.537000px;}
._9{width:13.647000px;}
._f{width:14.916000px;}
._d{width:17.784000px;}
._7{width:19.680000px;}
._5{width:21.168000px;}
._21{width:22.224000px;}
._2e{width:24.684000px;}
._28{width:28.050000px;}
._2c{width:29.238000px;}
._2d{width:30.426000px;}
._2a{width:32.820000px;}
._23{width:34.128000px;}
._2b{width:35.418000px;}
._20{width:42.174000px;}
._26{width:47.814000px;}
._25{width:48.906000px;}
._27{width:50.754000px;}
._22{width:52.500000px;}
._11{width:57.300000px;}
._1f{width:58.872000px;}
._12{width:67.536000px;}
._13{width:208.206000px;}
._14{width:220.398000px;}
._16{width:246.228000px;}
._15{width:250.524000px;}
._24{width:277.596000px;}
._17{width:362.118000px;}
._18{width:414.600000px;}
._19{width:426.000000px;}
._1c{width:428.118000px;}
._1a{width:435.000000px;}
._1d{width:442.800000px;}
._1e{width:451.500000px;}
._1b{width:545.268000px;}
._29{width:1142.592000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,128);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fse{font-size:8.444973px;}
.fsc{font-size:12.682514px;}
.fsd{font-size:13.731071px;}
.fsa{font-size:27.600000px;}
.fs4{font-size:34.800000px;}
.fsb{font-size:36.000000px;}
.fs8{font-size:38.400000px;}
.fs3{font-size:42.000000px;}
.fs2{font-size:48.000000px;}
.fsf{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs7{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs9{font-size:84.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y35{bottom:0.778890px;}
.y37{bottom:3.088619px;}
.y34{bottom:4.447517px;}
.y36{bottom:6.865799px;}
.y33{bottom:9.242879px;}
.yb1{bottom:117.841500px;}
.y78{bottom:118.591500px;}
.y32{bottom:119.533500px;}
.y100{bottom:121.891500px;}
.y31{bottom:124.291500px;}
.y14f{bottom:126.241500px;}
.yb0{bottom:136.741500px;}
.y30{bottom:137.491500px;}
.yff{bottom:140.791500px;}
.y14e{bottom:145.141500px;}
.y2f{bottom:147.841500px;}
.y11a{bottom:152.641500px;}
.yaf{bottom:155.791500px;}
.y2e{bottom:158.791500px;}
.yfe{bottom:159.841500px;}
.y14d{bottom:164.191500px;}
.y119{bottom:171.691500px;}
.y2d{bottom:172.591500px;}
.yae{bottom:174.691500px;}
.y77{bottom:177.541500px;}
.yd4{bottom:177.691500px;}
.yfd{bottom:178.741500px;}
.y14c{bottom:183.091500px;}
.y118{bottom:190.591500px;}
.y2c{bottom:191.041500px;}
.yad{bottom:193.741500px;}
.y76{bottom:196.441500px;}
.yd3{bottom:196.591500px;}
.yfc{bottom:197.791500px;}
.y14b{bottom:202.141500px;}
.y117{bottom:209.641500px;}
.y2b{bottom:210.991500px;}
.y75{bottom:215.491500px;}
.yd2{bottom:215.641500px;}
.yfb{bottom:216.691500px;}
.y14a{bottom:221.041500px;}
.y116{bottom:228.541500px;}
.y2a{bottom:230.041500px;}
.yac{bottom:233.641500px;}
.y74{bottom:234.391500px;}
.yd1{bottom:234.541500px;}
.yfa{bottom:235.741500px;}
.y149{bottom:240.091500px;}
.y115{bottom:247.591500px;}
.y29{bottom:248.941500px;}
.yea{bottom:249.091500px;}
.yab{bottom:252.691500px;}
.y73{bottom:253.441500px;}
.yd0{bottom:253.591500px;}
.yf9{bottom:254.641500px;}
.y148{bottom:258.991500px;}
.y114{bottom:266.491500px;}
.y28{bottom:267.991500px;}
.yaa{bottom:271.591500px;}
.y72{bottom:272.341500px;}
.ycf{bottom:272.491500px;}
.yf8{bottom:273.691500px;}
.y147{bottom:278.041500px;}
.y113{bottom:285.541500px;}
.y27{bottom:286.891500px;}
.ye9{bottom:287.041500px;}
.ya9{bottom:290.641500px;}
.y71{bottom:291.391500px;}
.yce{bottom:291.541500px;}
.yf7{bottom:292.591500px;}
.y146{bottom:296.941500px;}
.y112{bottom:304.441500px;}
.y26{bottom:305.941500px;}
.ya8{bottom:309.541500px;}
.y70{bottom:310.291500px;}
.ycd{bottom:310.441500px;}
.yf6{bottom:311.641500px;}
.y145{bottom:315.991500px;}
.y25{bottom:324.841500px;}
.ye8{bottom:324.991500px;}
.ya7{bottom:328.591500px;}
.y6f{bottom:329.341500px;}
.ycc{bottom:329.491500px;}
.yf5{bottom:330.541500px;}
.y144{bottom:334.891500px;}
.y111{bottom:342.391500px;}
.y24{bottom:343.891500px;}
.ya6{bottom:347.491500px;}
.y6e{bottom:348.241500px;}
.ycb{bottom:348.391500px;}
.yf4{bottom:349.591500px;}
.y90{bottom:351.391500px;}
.y143{bottom:353.941500px;}
.y110{bottom:361.441500px;}
.y23{bottom:362.791500px;}
.ye7{bottom:362.941500px;}
.y6d{bottom:367.291500px;}
.yca{bottom:367.441500px;}
.yf3{bottom:368.491500px;}
.y8f{bottom:370.291500px;}
.y142{bottom:372.841500px;}
.y10f{bottom:380.341500px;}
.y22{bottom:381.841500px;}
.y6c{bottom:386.191500px;}
.yc9{bottom:386.341500px;}
.y5b{bottom:387.241500px;}
.ya5{bottom:387.541500px;}
.y8e{bottom:389.341500px;}
.y141{bottom:391.891500px;}
.y10e{bottom:399.391500px;}
.y21{bottom:400.741500px;}
.ye6{bottom:400.891500px;}
.y6b{bottom:405.241500px;}
.yc8{bottom:405.391500px;}
.y5a{bottom:406.291500px;}
.ya4{bottom:406.441500px;}
.y8d{bottom:408.241500px;}
.y140{bottom:410.791500px;}
.y10d{bottom:418.291500px;}
.y20{bottom:419.791500px;}
.y6a{bottom:424.141500px;}
.yc7{bottom:424.291500px;}
.y59{bottom:425.191500px;}
.ya3{bottom:425.491500px;}
.y8c{bottom:427.291500px;}
.y13f{bottom:429.841500px;}
.y1f{bottom:438.691500px;}
.ye5{bottom:438.841500px;}
.y69{bottom:443.191500px;}
.yc6{bottom:443.341500px;}
.y58{bottom:444.241500px;}
.ya2{bottom:444.391500px;}
.y8b{bottom:446.191500px;}
.y13e{bottom:448.741500px;}
.y10c{bottom:456.241500px;}
.y1e{bottom:457.741500px;}
.y68{bottom:462.091500px;}
.yc5{bottom:462.241500px;}
.y57{bottom:463.141500px;}
.ya1{bottom:463.441500px;}
.y8a{bottom:465.241500px;}
.y13d{bottom:467.791500px;}
.y10b{bottom:475.291500px;}
.y1d{bottom:476.641500px;}
.ye4{bottom:476.791500px;}
.y67{bottom:481.141500px;}
.yc4{bottom:481.291500px;}
.y56{bottom:482.191500px;}
.ya0{bottom:482.341500px;}
.y13c{bottom:486.691500px;}
.y10a{bottom:494.191500px;}
.y1c{bottom:495.691500px;}
.y66{bottom:500.041500px;}
.yc3{bottom:500.191500px;}
.y55{bottom:501.091500px;}
.yf2{bottom:501.391500px;}
.y13b{bottom:505.741500px;}
.y89{bottom:511.141500px;}
.y109{bottom:513.241500px;}
.y1b{bottom:514.591500px;}
.ye3{bottom:514.741500px;}
.y65{bottom:519.091500px;}
.yc2{bottom:519.241500px;}
.y54{bottom:520.141500px;}
.yf1{bottom:520.291500px;}
.y13a{bottom:524.641500px;}
.y9f{bottom:528.391500px;}
.y88{bottom:530.191500px;}
.y108{bottom:532.141500px;}
.y1a{bottom:533.641500px;}
.y64{bottom:537.991500px;}
.yc1{bottom:538.141500px;}
.y53{bottom:539.041500px;}
.yf0{bottom:539.341500px;}
.y139{bottom:543.691500px;}
.y9e{bottom:547.291500px;}
.y87{bottom:549.091500px;}
.y107{bottom:551.191500px;}
.y19{bottom:552.541500px;}
.ye2{bottom:552.691500px;}
.y63{bottom:557.041500px;}
.y52{bottom:558.091500px;}
.yef{bottom:558.241500px;}
.y138{bottom:562.591500px;}
.y9d{bottom:566.341500px;}
.y86{bottom:568.141500px;}
.y106{bottom:570.091500px;}
.y18{bottom:571.591500px;}
.y62{bottom:575.941500px;}
.y51{bottom:576.991500px;}
.yee{bottom:577.291500px;}
.yc0{bottom:579.541500px;}
.y137{bottom:581.641500px;}
.y9c{bottom:585.241500px;}
.y85{bottom:587.041500px;}
.y50{bottom:596.041500px;}
.y136{bottom:600.541500px;}
.ybf{bottom:603.991500px;}
.y9b{bottom:604.291500px;}
.y84{bottom:606.091500px;}
.y105{bottom:608.041500px;}
.ye1{bottom:608.941500px;}
.y17{bottom:612.841500px;}
.y4f{bottom:614.941500px;}
.yed{bottom:616.591500px;}
.y61{bottom:617.341500px;}
.y135{bottom:619.591500px;}
.y9a{bottom:623.191500px;}
.y83{bottom:624.991500px;}
.y104{bottom:627.091500px;}
.ye0{bottom:628.141500px;}
.y4e{bottom:633.991500px;}
.y134{bottom:638.491500px;}
.y60{bottom:641.791500px;}
.y99{bottom:642.241500px;}
.y103{bottom:645.991500px;}
.y4d{bottom:652.891500px;}
.y16{bottom:656.791500px;}
.y133{bottom:657.541500px;}
.y98{bottom:661.141500px;}
.y82{bottom:662.941500px;}
.ydf{bottom:665.041500px;}
.y15{bottom:675.391500px;}
.y132{bottom:676.441500px;}
.y97{bottom:680.191500px;}
.y81{bottom:681.991500px;}
.ybe{bottom:683.941500px;}
.y4c{bottom:692.941500px;}
.y131{bottom:695.491500px;}
.y96{bottom:699.091500px;}
.yde{bottom:700.441500px;}
.y80{bottom:700.891500px;}
.ybd{bottom:702.991500px;}
.yec{bottom:706.891500px;}
.y4b{bottom:711.841500px;}
.y130{bottom:714.391500px;}
.y95{bottom:718.141500px;}
.y7f{bottom:719.941500px;}
.ybc{bottom:721.891500px;}
.ydd{bottom:722.191500px;}
.y5f{bottom:723.841500px;}
.yeb{bottom:726.091500px;}
.y14{bottom:730.441500px;}
.y4a{bottom:730.891500px;}
.y12f{bottom:733.441500px;}
.y94{bottom:737.041500px;}
.y7e{bottom:738.841500px;}
.ybb{bottom:740.941500px;}
.y5e{bottom:742.741500px;}
.y13{bottom:748.591500px;}
.y49{bottom:749.791500px;}
.y12e{bottom:752.341500px;}
.y93{bottom:756.091500px;}
.ydc{bottom:757.741500px;}
.y7d{bottom:757.891500px;}
.y102{bottom:759.841500px;}
.y5d{bottom:761.791500px;}
.y12{bottom:766.741500px;}
.y48{bottom:768.841500px;}
.y12d{bottom:771.391500px;}
.y7c{bottom:776.791500px;}
.yba{bottom:778.891500px;}
.ydb{bottom:779.491500px;}
.y11{bottom:784.891500px;}
.y47{bottom:787.741500px;}
.y12c{bottom:790.291500px;}
.y7b{bottom:795.841500px;}
.y92{bottom:796.291500px;}
.yb9{bottom:797.791500px;}
.y5c{bottom:801.991500px;}
.y10{bottom:803.041500px;}
.y12b{bottom:809.341500px;}
.y7a{bottom:814.741500px;}
.yda{bottom:814.891500px;}
.y91{bottom:815.491500px;}
.yb8{bottom:816.841500px;}
.yf{bottom:821.191500px;}
.y12a{bottom:828.241500px;}
.y46{bottom:833.791500px;}
.yb7{bottom:835.741500px;}
.yd9{bottom:836.641500px;}
.ye{bottom:839.341500px;}
.y129{bottom:847.291500px;}
.y45{bottom:852.691500px;}
.yb6{bottom:854.791500px;}
.yd{bottom:857.491500px;}
.y128{bottom:866.191500px;}
.y44{bottom:871.741500px;}
.yd8{bottom:872.191500px;}
.yb5{bottom:873.691500px;}
.yc{bottom:875.641500px;}
.y127{bottom:885.241500px;}
.y43{bottom:890.641500px;}
.y101{bottom:892.741500px;}
.yb{bottom:893.791500px;}
.y126{bottom:904.141500px;}
.yd7{bottom:907.591500px;}
.y42{bottom:909.691500px;}
.yb4{bottom:911.641500px;}
.ya{bottom:911.941500px;}
.y125{bottom:923.191500px;}
.y41{bottom:928.591500px;}
.y9{bottom:930.091500px;}
.yb3{bottom:930.691500px;}
.y124{bottom:942.091500px;}
.yd6{bottom:943.141500px;}
.y40{bottom:947.641500px;}
.y8{bottom:948.691500px;}
.yb2{bottom:949.591500px;}
.y123{bottom:961.141500px;}
.y7{bottom:967.591500px;}
.y79{bottom:968.641500px;}
.yd5{bottom:978.541500px;}
.y122{bottom:980.041500px;}
.y3f{bottom:987.541500px;}
.y121{bottom:999.091500px;}
.y3e{bottom:1006.591500px;}
.y6{bottom:1009.441500px;}
.y120{bottom:1017.991500px;}
.y3d{bottom:1025.491500px;}
.y11f{bottom:1037.041500px;}
.y5{bottom:1038.841500px;}
.y3c{bottom:1044.541500px;}
.y11e{bottom:1055.941500px;}
.y4{bottom:1059.541500px;}
.y3b{bottom:1063.441500px;}
.y11d{bottom:1074.991500px;}
.y3a{bottom:1082.491500px;}
.y11c{bottom:1093.891500px;}
.y3{bottom:1101.391500px;}
.y39{bottom:1120.441500px;}
.y2{bottom:1131.091500px;}
.y11b{bottom:1135.291500px;}
.y38{bottom:1139.341500px;}
.h11{height:6.755978px;}
.hf{height:10.146011px;}
.h10{height:10.984856px;}
.he{height:11.621280px;}
.hb{height:19.433203px;}
.h5{height:24.502734px;}
.hd{height:25.347656px;}
.hc{height:33.796875px;}
.h8{height:44.358398px;}
.h6{height:46.470703px;}
.h7{height:50.144531px;}
.h9{height:54.975000px;}
.h4{height:57.772266px;}
.ha{height:63.820312px;}
.h3{height:77.496094px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w3{width:49.771260px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:6.084866px;}
.x6{left:29.785466px;}
.x1{left:108.150000px;}
.xb{left:116.400000px;}
.x7{left:125.250000px;}
.x2{left:129.450000px;}
.xe{left:133.650000px;}
.x8{left:135.000000px;}
.xa{left:137.700000px;}
.x9{left:152.400000px;}
.x4{left:162.150000px;}
.x3{left:193.200000px;}
.xc{left:345.000000px;}
.xd{left:349.050000px;}
@media print{
.v2{vertical-align:-20.800000pt;}
.v4{vertical-align:-16.533333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:22.933333pt;}
.v1{vertical-align:25.066667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:17.600000pt;}
.ls0{letter-spacing:18.133333pt;}
.ls3{letter-spacing:71.354667pt;}
.wsc{word-spacing:-25.984000pt;}
.ws9{word-spacing:-18.597333pt;}
.ws0{word-spacing:-16.000000pt;}
.wsb{word-spacing:-14.666667pt;}
.ws3{word-spacing:-14.000000pt;}
.ws1{word-spacing:-9.333333pt;}
.ws2{word-spacing:-7.733333pt;}
.ws4{word-spacing:-6.133333pt;}
.ws6{word-spacing:-3.051349pt;}
.ws5{word-spacing:-2.818336pt;}
.ws7{word-spacing:-1.876661pt;}
.ws8{word-spacing:0.000000pt;}
.wsd{word-spacing:18.666667pt;}
.wsa{word-spacing:42.666667pt;}
._10{margin-left:-7.754667pt;}
._1{margin-left:-0.906667pt;}
._3{width:0.906667pt;}
._b{width:2.408000pt;}
._a{width:3.304000pt;}
._c{width:4.245333pt;}
._e{width:5.136000pt;}
._2{width:6.074667pt;}
._0{width:7.253333pt;}
._4{width:8.576000pt;}
._6{width:9.621333pt;}
._8{width:11.144000pt;}
._9{width:12.130667pt;}
._f{width:13.258667pt;}
._d{width:15.808000pt;}
._7{width:17.493333pt;}
._5{width:18.816000pt;}
._21{width:19.754667pt;}
._2e{width:21.941333pt;}
._28{width:24.933333pt;}
._2c{width:25.989333pt;}
._2d{width:27.045333pt;}
._2a{width:29.173333pt;}
._23{width:30.336000pt;}
._2b{width:31.482667pt;}
._20{width:37.488000pt;}
._26{width:42.501333pt;}
._25{width:43.472000pt;}
._27{width:45.114667pt;}
._22{width:46.666667pt;}
._11{width:50.933333pt;}
._1f{width:52.330667pt;}
._12{width:60.032000pt;}
._13{width:185.072000pt;}
._14{width:195.909333pt;}
._16{width:218.869333pt;}
._15{width:222.688000pt;}
._24{width:246.752000pt;}
._17{width:321.882667pt;}
._18{width:368.533333pt;}
._19{width:378.666667pt;}
._1c{width:380.549333pt;}
._1a{width:386.666667pt;}
._1d{width:393.600000pt;}
._1e{width:401.333333pt;}
._1b{width:484.682667pt;}
._29{width:1015.637333pt;}
.fse{font-size:7.506643pt;}
.fsc{font-size:11.273346pt;}
.fsd{font-size:12.205396pt;}
.fsa{font-size:24.533333pt;}
.fs4{font-size:30.933333pt;}
.fsb{font-size:32.000000pt;}
.fs8{font-size:34.133333pt;}
.fs3{font-size:37.333333pt;}
.fs2{font-size:42.666667pt;}
.fsf{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs7{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs9{font-size:74.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y35{bottom:0.692347pt;}
.y37{bottom:2.745439pt;}
.y34{bottom:3.953348pt;}
.y36{bottom:6.102933pt;}
.y33{bottom:8.215893pt;}
.yb1{bottom:104.748000pt;}
.y78{bottom:105.414667pt;}
.y32{bottom:106.252000pt;}
.y100{bottom:108.348000pt;}
.y31{bottom:110.481333pt;}
.y14f{bottom:112.214667pt;}
.yb0{bottom:121.548000pt;}
.y30{bottom:122.214667pt;}
.yff{bottom:125.148000pt;}
.y14e{bottom:129.014667pt;}
.y2f{bottom:131.414667pt;}
.y11a{bottom:135.681333pt;}
.yaf{bottom:138.481333pt;}
.y2e{bottom:141.148000pt;}
.yfe{bottom:142.081333pt;}
.y14d{bottom:145.948000pt;}
.y119{bottom:152.614667pt;}
.y2d{bottom:153.414667pt;}
.yae{bottom:155.281333pt;}
.y77{bottom:157.814667pt;}
.yd4{bottom:157.948000pt;}
.yfd{bottom:158.881333pt;}
.y14c{bottom:162.748000pt;}
.y118{bottom:169.414667pt;}
.y2c{bottom:169.814667pt;}
.yad{bottom:172.214667pt;}
.y76{bottom:174.614667pt;}
.yd3{bottom:174.748000pt;}
.yfc{bottom:175.814667pt;}
.y14b{bottom:179.681333pt;}
.y117{bottom:186.348000pt;}
.y2b{bottom:187.548000pt;}
.y75{bottom:191.548000pt;}
.yd2{bottom:191.681333pt;}
.yfb{bottom:192.614667pt;}
.y14a{bottom:196.481333pt;}
.y116{bottom:203.148000pt;}
.y2a{bottom:204.481333pt;}
.yac{bottom:207.681333pt;}
.y74{bottom:208.348000pt;}
.yd1{bottom:208.481333pt;}
.yfa{bottom:209.548000pt;}
.y149{bottom:213.414667pt;}
.y115{bottom:220.081333pt;}
.y29{bottom:221.281333pt;}
.yea{bottom:221.414667pt;}
.yab{bottom:224.614667pt;}
.y73{bottom:225.281333pt;}
.yd0{bottom:225.414667pt;}
.yf9{bottom:226.348000pt;}
.y148{bottom:230.214667pt;}
.y114{bottom:236.881333pt;}
.y28{bottom:238.214667pt;}
.yaa{bottom:241.414667pt;}
.y72{bottom:242.081333pt;}
.ycf{bottom:242.214667pt;}
.yf8{bottom:243.281333pt;}
.y147{bottom:247.148000pt;}
.y113{bottom:253.814667pt;}
.y27{bottom:255.014667pt;}
.ye9{bottom:255.148000pt;}
.ya9{bottom:258.348000pt;}
.y71{bottom:259.014667pt;}
.yce{bottom:259.148000pt;}
.yf7{bottom:260.081333pt;}
.y146{bottom:263.948000pt;}
.y112{bottom:270.614667pt;}
.y26{bottom:271.948000pt;}
.ya8{bottom:275.148000pt;}
.y70{bottom:275.814667pt;}
.ycd{bottom:275.948000pt;}
.yf6{bottom:277.014667pt;}
.y145{bottom:280.881333pt;}
.y25{bottom:288.748000pt;}
.ye8{bottom:288.881333pt;}
.ya7{bottom:292.081333pt;}
.y6f{bottom:292.748000pt;}
.ycc{bottom:292.881333pt;}
.yf5{bottom:293.814667pt;}
.y144{bottom:297.681333pt;}
.y111{bottom:304.348000pt;}
.y24{bottom:305.681333pt;}
.ya6{bottom:308.881333pt;}
.y6e{bottom:309.548000pt;}
.ycb{bottom:309.681333pt;}
.yf4{bottom:310.748000pt;}
.y90{bottom:312.348000pt;}
.y143{bottom:314.614667pt;}
.y110{bottom:321.281333pt;}
.y23{bottom:322.481333pt;}
.ye7{bottom:322.614667pt;}
.y6d{bottom:326.481333pt;}
.yca{bottom:326.614667pt;}
.yf3{bottom:327.548000pt;}
.y8f{bottom:329.148000pt;}
.y142{bottom:331.414667pt;}
.y10f{bottom:338.081333pt;}
.y22{bottom:339.414667pt;}
.y6c{bottom:343.281333pt;}
.yc9{bottom:343.414667pt;}
.y5b{bottom:344.214667pt;}
.ya5{bottom:344.481333pt;}
.y8e{bottom:346.081333pt;}
.y141{bottom:348.348000pt;}
.y10e{bottom:355.014667pt;}
.y21{bottom:356.214667pt;}
.ye6{bottom:356.348000pt;}
.y6b{bottom:360.214667pt;}
.yc8{bottom:360.348000pt;}
.y5a{bottom:361.148000pt;}
.ya4{bottom:361.281333pt;}
.y8d{bottom:362.881333pt;}
.y140{bottom:365.148000pt;}
.y10d{bottom:371.814667pt;}
.y20{bottom:373.148000pt;}
.y6a{bottom:377.014667pt;}
.yc7{bottom:377.148000pt;}
.y59{bottom:377.948000pt;}
.ya3{bottom:378.214667pt;}
.y8c{bottom:379.814667pt;}
.y13f{bottom:382.081333pt;}
.y1f{bottom:389.948000pt;}
.ye5{bottom:390.081333pt;}
.y69{bottom:393.948000pt;}
.yc6{bottom:394.081333pt;}
.y58{bottom:394.881333pt;}
.ya2{bottom:395.014667pt;}
.y8b{bottom:396.614667pt;}
.y13e{bottom:398.881333pt;}
.y10c{bottom:405.548000pt;}
.y1e{bottom:406.881333pt;}
.y68{bottom:410.748000pt;}
.yc5{bottom:410.881333pt;}
.y57{bottom:411.681333pt;}
.ya1{bottom:411.948000pt;}
.y8a{bottom:413.548000pt;}
.y13d{bottom:415.814667pt;}
.y10b{bottom:422.481333pt;}
.y1d{bottom:423.681333pt;}
.ye4{bottom:423.814667pt;}
.y67{bottom:427.681333pt;}
.yc4{bottom:427.814667pt;}
.y56{bottom:428.614667pt;}
.ya0{bottom:428.748000pt;}
.y13c{bottom:432.614667pt;}
.y10a{bottom:439.281333pt;}
.y1c{bottom:440.614667pt;}
.y66{bottom:444.481333pt;}
.yc3{bottom:444.614667pt;}
.y55{bottom:445.414667pt;}
.yf2{bottom:445.681333pt;}
.y13b{bottom:449.548000pt;}
.y89{bottom:454.348000pt;}
.y109{bottom:456.214667pt;}
.y1b{bottom:457.414667pt;}
.ye3{bottom:457.548000pt;}
.y65{bottom:461.414667pt;}
.yc2{bottom:461.548000pt;}
.y54{bottom:462.348000pt;}
.yf1{bottom:462.481333pt;}
.y13a{bottom:466.348000pt;}
.y9f{bottom:469.681333pt;}
.y88{bottom:471.281333pt;}
.y108{bottom:473.014667pt;}
.y1a{bottom:474.348000pt;}
.y64{bottom:478.214667pt;}
.yc1{bottom:478.348000pt;}
.y53{bottom:479.148000pt;}
.yf0{bottom:479.414667pt;}
.y139{bottom:483.281333pt;}
.y9e{bottom:486.481333pt;}
.y87{bottom:488.081333pt;}
.y107{bottom:489.948000pt;}
.y19{bottom:491.148000pt;}
.ye2{bottom:491.281333pt;}
.y63{bottom:495.148000pt;}
.y52{bottom:496.081333pt;}
.yef{bottom:496.214667pt;}
.y138{bottom:500.081333pt;}
.y9d{bottom:503.414667pt;}
.y86{bottom:505.014667pt;}
.y106{bottom:506.748000pt;}
.y18{bottom:508.081333pt;}
.y62{bottom:511.948000pt;}
.y51{bottom:512.881333pt;}
.yee{bottom:513.148000pt;}
.yc0{bottom:515.148000pt;}
.y137{bottom:517.014667pt;}
.y9c{bottom:520.214667pt;}
.y85{bottom:521.814667pt;}
.y50{bottom:529.814667pt;}
.y136{bottom:533.814667pt;}
.ybf{bottom:536.881333pt;}
.y9b{bottom:537.148000pt;}
.y84{bottom:538.748000pt;}
.y105{bottom:540.481333pt;}
.ye1{bottom:541.281333pt;}
.y17{bottom:544.748000pt;}
.y4f{bottom:546.614667pt;}
.yed{bottom:548.081333pt;}
.y61{bottom:548.748000pt;}
.y135{bottom:550.748000pt;}
.y9a{bottom:553.948000pt;}
.y83{bottom:555.548000pt;}
.y104{bottom:557.414667pt;}
.ye0{bottom:558.348000pt;}
.y4e{bottom:563.548000pt;}
.y134{bottom:567.548000pt;}
.y60{bottom:570.481333pt;}
.y99{bottom:570.881333pt;}
.y103{bottom:574.214667pt;}
.y4d{bottom:580.348000pt;}
.y16{bottom:583.814667pt;}
.y133{bottom:584.481333pt;}
.y98{bottom:587.681333pt;}
.y82{bottom:589.281333pt;}
.ydf{bottom:591.148000pt;}
.y15{bottom:600.348000pt;}
.y132{bottom:601.281333pt;}
.y97{bottom:604.614667pt;}
.y81{bottom:606.214667pt;}
.ybe{bottom:607.948000pt;}
.y4c{bottom:615.948000pt;}
.y131{bottom:618.214667pt;}
.y96{bottom:621.414667pt;}
.yde{bottom:622.614667pt;}
.y80{bottom:623.014667pt;}
.ybd{bottom:624.881333pt;}
.yec{bottom:628.348000pt;}
.y4b{bottom:632.748000pt;}
.y130{bottom:635.014667pt;}
.y95{bottom:638.348000pt;}
.y7f{bottom:639.948000pt;}
.ybc{bottom:641.681333pt;}
.ydd{bottom:641.948000pt;}
.y5f{bottom:643.414667pt;}
.yeb{bottom:645.414667pt;}
.y14{bottom:649.281333pt;}
.y4a{bottom:649.681333pt;}
.y12f{bottom:651.948000pt;}
.y94{bottom:655.148000pt;}
.y7e{bottom:656.748000pt;}
.ybb{bottom:658.614667pt;}
.y5e{bottom:660.214667pt;}
.y13{bottom:665.414667pt;}
.y49{bottom:666.481333pt;}
.y12e{bottom:668.748000pt;}
.y93{bottom:672.081333pt;}
.ydc{bottom:673.548000pt;}
.y7d{bottom:673.681333pt;}
.y102{bottom:675.414667pt;}
.y5d{bottom:677.148000pt;}
.y12{bottom:681.548000pt;}
.y48{bottom:683.414667pt;}
.y12d{bottom:685.681333pt;}
.y7c{bottom:690.481333pt;}
.yba{bottom:692.348000pt;}
.ydb{bottom:692.881333pt;}
.y11{bottom:697.681333pt;}
.y47{bottom:700.214667pt;}
.y12c{bottom:702.481333pt;}
.y7b{bottom:707.414667pt;}
.y92{bottom:707.814667pt;}
.yb9{bottom:709.148000pt;}
.y5c{bottom:712.881333pt;}
.y10{bottom:713.814667pt;}
.y12b{bottom:719.414667pt;}
.y7a{bottom:724.214667pt;}
.yda{bottom:724.348000pt;}
.y91{bottom:724.881333pt;}
.yb8{bottom:726.081333pt;}
.yf{bottom:729.948000pt;}
.y12a{bottom:736.214667pt;}
.y46{bottom:741.148000pt;}
.yb7{bottom:742.881333pt;}
.yd9{bottom:743.681333pt;}
.ye{bottom:746.081333pt;}
.y129{bottom:753.148000pt;}
.y45{bottom:757.948000pt;}
.yb6{bottom:759.814667pt;}
.yd{bottom:762.214667pt;}
.y128{bottom:769.948000pt;}
.y44{bottom:774.881333pt;}
.yd8{bottom:775.281333pt;}
.yb5{bottom:776.614667pt;}
.yc{bottom:778.348000pt;}
.y127{bottom:786.881333pt;}
.y43{bottom:791.681333pt;}
.y101{bottom:793.548000pt;}
.yb{bottom:794.481333pt;}
.y126{bottom:803.681333pt;}
.yd7{bottom:806.748000pt;}
.y42{bottom:808.614667pt;}
.yb4{bottom:810.348000pt;}
.ya{bottom:810.614667pt;}
.y125{bottom:820.614667pt;}
.y41{bottom:825.414667pt;}
.y9{bottom:826.748000pt;}
.yb3{bottom:827.281333pt;}
.y124{bottom:837.414667pt;}
.yd6{bottom:838.348000pt;}
.y40{bottom:842.348000pt;}
.y8{bottom:843.281333pt;}
.yb2{bottom:844.081333pt;}
.y123{bottom:854.348000pt;}
.y7{bottom:860.081333pt;}
.y79{bottom:861.014667pt;}
.yd5{bottom:869.814667pt;}
.y122{bottom:871.148000pt;}
.y3f{bottom:877.814667pt;}
.y121{bottom:888.081333pt;}
.y3e{bottom:894.748000pt;}
.y6{bottom:897.281333pt;}
.y120{bottom:904.881333pt;}
.y3d{bottom:911.548000pt;}
.y11f{bottom:921.814667pt;}
.y5{bottom:923.414667pt;}
.y3c{bottom:928.481333pt;}
.y11e{bottom:938.614667pt;}
.y4{bottom:941.814667pt;}
.y3b{bottom:945.281333pt;}
.y11d{bottom:955.548000pt;}
.y3a{bottom:962.214667pt;}
.y11c{bottom:972.348000pt;}
.y3{bottom:979.014667pt;}
.y39{bottom:995.948000pt;}
.y2{bottom:1005.414667pt;}
.y11b{bottom:1009.148000pt;}
.y38{bottom:1012.748000pt;}
.h11{height:6.005314pt;}
.hf{height:9.018677pt;}
.h10{height:9.764317pt;}
.he{height:10.330027pt;}
.hb{height:17.273958pt;}
.h5{height:21.780208pt;}
.hd{height:22.531250pt;}
.hc{height:30.041667pt;}
.h8{height:39.429688pt;}
.h6{height:41.307292pt;}
.h7{height:44.572917pt;}
.h9{height:48.866667pt;}
.h4{height:51.353125pt;}
.ha{height:56.729167pt;}
.h3{height:68.885417pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w3{width:44.241120pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:5.408770pt;}
.x6{left:26.475970pt;}
.x1{left:96.133333pt;}
.xb{left:103.466667pt;}
.x7{left:111.333333pt;}
.x2{left:115.066667pt;}
.xe{left:118.800000pt;}
.x8{left:120.000000pt;}
.xa{left:122.400000pt;}
.x9{left:135.466667pt;}
.x4{left:144.133333pt;}
.x3{left:171.733333pt;}
.xc{left:306.666667pt;}
.xd{left:310.266667pt;}
}




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