
    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_3772e1cad2147c00b1332aa1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.933105;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_bb8721a44c7253023c112474.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b47a4ad4606202de9abbe42a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_282ec5a454e7752c43fe86c9.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3fd5be65c0f9e3f4936b5cec.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_311e2a939e1c2b2350dc92ce.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_264da8e425e7ff34fd6ef52e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.783691;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_fea6d3aeb1ac5f81a290b894.woff')format("woff");}.ff8{font-family:ff8;line-height:1.172363;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_0904910fd7001d3e75ed72d9.woff')format("woff");}.ff9{font-family:ff9;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;}
.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:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.ls9{letter-spacing:-1.080000px;}
.lsd{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.457800px;}
.ls6{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.223800px;}
.ls8{letter-spacing:-0.053280px;}
.lse{letter-spacing:-0.018000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.126000px;}
.ls1{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.259920px;}
.lsc{letter-spacing:0.354240px;}
.ls7{letter-spacing:0.360000px;}
.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;}
}
.wsa{word-spacing:-66.240000px;}
.ws8{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.254600px;}
.wsb{word-spacing:-16.102200px;}
.wsc{word-spacing:-15.840000px;}
.ws3{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.ws2{word-spacing:-14.580000px;}
.ws1{word-spacing:-12.060000px;}
.ws0{word-spacing:-11.700000px;}
.ws6{word-spacing:-10.980000px;}
.ws5{word-spacing:-9.720000px;}
.ws7{word-spacing:0.000000px;}
._12{margin-left:-4.239360px;}
._6{margin-left:-2.345040px;}
._0{margin-left:-1.254240px;}
._2{width:1.030320px;}
._3{width:2.358480px;}
._8{width:3.648480px;}
._7{width:4.721040px;}
._b{width:5.722560px;}
._a{width:7.171200px;}
._c{width:8.218080px;}
._9{width:9.487440px;}
._10{width:11.026800px;}
._f{width:12.413520px;}
._e{width:13.711680px;}
._d{width:15.036480px;}
._4{width:16.957440px;}
._15{width:18.679680px;}
._5{width:19.948560px;}
._16{width:21.232320px;}
._1a{width:22.864080px;}
._23{width:24.045120px;}
._13{width:25.171200px;}
._14{width:26.226720px;}
._11{width:30.205440px;}
._17{width:38.684160px;}
._21{width:52.259040px;}
._19{width:61.669440px;}
._18{width:63.418320px;}
._22{width:73.787040px;}
._20{width:100.740000px;}
._1c{width:318.834000px;}
._1d{width:324.450000px;}
._1b{width:416.490000px;}
._1e{width:422.514000px;}
._1f{width:428.310000px;}
._1{width:1330.288800px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs2{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs7{font-size:63.360000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.y0{bottom:0.000000px;}
.y82{bottom:3.420000px;}
.y7a{bottom:3.600000px;}
.y79{bottom:3.780000px;}
.ya8{bottom:3.825000px;}
.yc6{bottom:5.400000px;}
.yc4{bottom:5.580000px;}
.y2{bottom:6.840000px;}
.yca{bottom:13.140000px;}
.y116{bottom:13.290000px;}
.yf4{bottom:13.320000px;}
.y77{bottom:13.500000px;}
.y9b{bottom:16.914000px;}
.y8a{bottom:16.950000px;}
.y121{bottom:17.715000px;}
.y7c{bottom:22.500000px;}
.y7f{bottom:22.680000px;}
.y11f{bottom:47.625000px;}
.y4{bottom:70.416000px;}
.y11e{bottom:97.455000px;}
.y113{bottom:107.100000px;}
.y119{bottom:107.460000px;}
.y74{bottom:110.916000px;}
.y111{bottom:114.336000px;}
.y9c{bottom:118.296000px;}
.y73{bottom:129.816000px;}
.y110{bottom:133.416000px;}
.y9a{bottom:134.316000px;}
.y11d{bottom:137.520000px;}
.yc8{bottom:140.976000px;}
.y3d{bottom:145.476000px;}
.y72{bottom:148.896000px;}
.y114{bottom:150.330000px;}
.y10f{bottom:152.310000px;}
.yf0{bottom:156.450000px;}
.yc7{bottom:164.190000px;}
.y3c{bottom:164.370000px;}
.y71{bottom:167.790000px;}
.yf2{bottom:170.205000px;}
.y10e{bottom:171.210000px;}
.y115{bottom:173.415000px;}
.yef{bottom:175.530000px;}
.y99{bottom:180.570000px;}
.y3b{bottom:183.270000px;}
.y70{bottom:186.870000px;}
.yc5{bottom:187.410000px;}
.y10d{bottom:190.290000px;}
.yee{bottom:194.430000px;}
.y98{bottom:200.370000px;}
.y117{bottom:201.675000px;}
.y3a{bottom:202.350000px;}
.y6f{bottom:205.770000px;}
.y10c{bottom:209.190000px;}
.yc3{bottom:210.630000px;}
.yed{bottom:213.330000px;}
.yf3{bottom:214.050000px;}
.y97{bottom:219.990000px;}
.y39{bottom:221.250000px;}
.y11a{bottom:221.655000px;}
.y6e{bottom:224.670000px;}
.y10b{bottom:228.270000px;}
.yf5{bottom:232.380000px;}
.yec{bottom:232.410000px;}
.yc2{bottom:234.030000px;}
.y38{bottom:240.330000px;}
.y6d{bottom:243.750000px;}
.y10a{bottom:247.170000px;}
.yeb{bottom:251.310000px;}
.y11c{bottom:251.670000px;}
.yc1{bottom:258.330000px;}
.y96{bottom:258.690000px;}
.y37{bottom:259.230000px;}
.y11b{bottom:261.690000px;}
.y6c{bottom:262.650000px;}
.y109{bottom:266.250000px;}
.yea{bottom:270.390000px;}
.y36{bottom:278.130000px;}
.y95{bottom:278.490000px;}
.y6b{bottom:281.730000px;}
.yc0{bottom:282.630000px;}
.y108{bottom:285.150000px;}
.ye9{bottom:289.290000px;}
.y120{bottom:292.320000px;}
.y35{bottom:296.670000px;}
.y6a{bottom:300.630000px;}
.y107{bottom:304.050000px;}
.ybf{bottom:307.110000px;}
.ye8{bottom:308.190000px;}
.y34{bottom:313.230000px;}
.y94{bottom:317.190000px;}
.y69{bottom:319.530000px;}
.y106{bottom:323.130000px;}
.y33{bottom:327.090000px;}
.ye7{bottom:327.270000px;}
.ybe{bottom:331.410000px;}
.y93{bottom:336.855000px;}
.y68{bottom:338.655000px;}
.y32{bottom:341.715000px;}
.y105{bottom:342.075000px;}
.ye6{bottom:346.215000px;}
.ybd{bottom:355.935000px;}
.y67{bottom:357.555000px;}
.y31{bottom:358.815000px;}
.y104{bottom:361.155000px;}
.ye5{bottom:365.295000px;}
.y92{bottom:375.555000px;}
.y30{bottom:376.095000px;}
.y66{bottom:376.635000px;}
.y103{bottom:380.055000px;}
.ybc{bottom:380.235000px;}
.ye4{bottom:384.195000px;}
.y2f{bottom:393.375000px;}
.y65{bottom:395.535000px;}
.y102{bottom:398.955000px;}
.ye3{bottom:403.095000px;}
.ybb{bottom:404.715000px;}
.y2e{bottom:410.655000px;}
.y91{bottom:414.255000px;}
.y64{bottom:414.435000px;}
.y101{bottom:418.035000px;}
.ye2{bottom:422.175000px;}
.y2d{bottom:427.935000px;}
.yba{bottom:429.015000px;}
.y63{bottom:433.515000px;}
.y100{bottom:436.935000px;}
.ye1{bottom:441.075000px;}
.y2c{bottom:445.215000px;}
.y62{bottom:452.415000px;}
.y90{bottom:452.955000px;}
.yb9{bottom:453.315000px;}
.yff{bottom:456.015000px;}
.ye0{bottom:460.155000px;}
.y2b{bottom:462.315000px;}
.y61{bottom:471.495000px;}
.y8f{bottom:472.755000px;}
.yfe{bottom:474.915000px;}
.yb8{bottom:477.795000px;}
.ydf{bottom:479.055000px;}
.y2a{bottom:479.595000px;}
.y60{bottom:490.395000px;}
.yfd{bottom:493.815000px;}
.y29{bottom:496.875000px;}
.yde{bottom:497.955000px;}
.yb7{bottom:502.095000px;}
.y5f{bottom:509.295000px;}
.y8d{bottom:511.455000px;}
.yfc{bottom:512.895000px;}
.y28{bottom:514.155000px;}
.ydd{bottom:517.035000px;}
.yb6{bottom:526.575000px;}
.yfb{bottom:528.195000px;}
.y5e{bottom:528.375000px;}
.y118{bottom:529.200000px;}
.y8e{bottom:531.075000px;}
.y27{bottom:531.435000px;}
.ydc{bottom:532.335000px;}
.yf1{bottom:532.440000px;}
.y5d{bottom:547.275000px;}
.y26{bottom:548.535000px;}
.yb5{bottom:550.875000px;}
.y8c{bottom:560.415000px;}
.y25{bottom:565.815000px;}
.y5c{bottom:566.355000px;}
.yb4{bottom:575.175000px;}
.y8b{bottom:579.495000px;}
.y24{bottom:583.095000px;}
.y5b{bottom:585.255000px;}
.y89{bottom:595.515000px;}
.yb3{bottom:599.655000px;}
.y23{bottom:600.375000px;}
.y5a{bottom:604.365000px;}
.y22{bottom:617.685000px;}
.y59{bottom:623.265000px;}
.yb2{bottom:623.985000px;}
.y21{bottom:634.965000px;}
.y88{bottom:641.805000px;}
.y58{bottom:642.165000px;}
.yb1{bottom:648.465000px;}
.y20{bottom:652.065000px;}
.y57{bottom:661.245000px;}
.y87{bottom:661.425000px;}
.y1f{bottom:669.345000px;}
.yb0{bottom:672.765000px;}
.y56{bottom:680.145000px;}
.y86{bottom:681.225000px;}
.y1e{bottom:686.625000px;}
.yaf{bottom:697.245000px;}
.y55{bottom:699.225000px;}
.y1d{bottom:703.905000px;}
.y54{bottom:718.125000px;}
.y85{bottom:719.925000px;}
.y1c{bottom:721.185000px;}
.yae{bottom:721.545000px;}
.y53{bottom:737.025000px;}
.y1b{bottom:738.465000px;}
.y84{bottom:739.725000px;}
.yad{bottom:745.845000px;}
.y1a{bottom:755.565000px;}
.y52{bottom:756.105000px;}
.yac{bottom:770.325000px;}
.y19{bottom:772.845000px;}
.y51{bottom:775.005000px;}
.y83{bottom:778.425000px;}
.y18{bottom:790.125000px;}
.ydb{bottom:792.465000px;}
.y50{bottom:794.085000px;}
.yab{bottom:794.625000px;}
.y81{bottom:798.045000px;}
.y17{bottom:807.405000px;}
.yda{bottom:811.545000px;}
.y4f{bottom:812.985000px;}
.yaa{bottom:819.105000px;}
.y16{bottom:824.685000px;}
.yd9{bottom:830.445000px;}
.y4e{bottom:831.885000px;}
.y80{bottom:836.745000px;}
.y15{bottom:841.785000px;}
.ya9{bottom:843.405000px;}
.yd8{bottom:849.345000px;}
.y4d{bottom:850.965000px;}
.yfa{bottom:851.325000px;}
.y14{bottom:859.065000px;}
.ya7{bottom:867.705000px;}
.yd7{bottom:868.425000px;}
.y4c{bottom:869.865000px;}
.yf9{bottom:870.405000px;}
.y7e{bottom:875.490000px;}
.y13{bottom:876.390000px;}
.yd6{bottom:887.370000px;}
.y4b{bottom:888.990000px;}
.yf8{bottom:889.350000px;}
.ya6{bottom:892.230000px;}
.y12{bottom:893.670000px;}
.yd5{bottom:906.450000px;}
.y4a{bottom:907.890000px;}
.yf7{bottom:908.250000px;}
.y7d{bottom:914.190000px;}
.y11{bottom:916.170000px;}
.ya5{bottom:916.530000px;}
.yf6{bottom:923.550000px;}
.y112{bottom:923.760000px;}
.yd4{bottom:925.350000px;}
.y49{bottom:926.790000px;}
.y10{bottom:933.450000px;}
.y7b{bottom:933.990000px;}
.ya4{bottom:941.010000px;}
.yd3{bottom:944.430000px;}
.yf{bottom:945.330000px;}
.y48{bottom:945.870000px;}
.ye{bottom:963.150000px;}
.yd2{bottom:963.330000px;}
.y47{bottom:964.770000px;}
.ya3{bottom:965.310000px;}
.y76{bottom:972.690000px;}
.yd1{bottom:982.230000px;}
.yd{bottom:982.590000px;}
.y46{bottom:983.850000px;}
.ya2{bottom:989.790000px;}
.y78{bottom:992.310000px;}
.yd0{bottom:1001.310000px;}
.y45{bottom:1002.750000px;}
.yc{bottom:1004.910000px;}
.ya1{bottom:1014.090000px;}
.ycf{bottom:1020.210000px;}
.y75{bottom:1021.470000px;}
.y44{bottom:1021.650000px;}
.yb{bottom:1027.410000px;}
.ya0{bottom:1038.390000px;}
.yce{bottom:1039.290000px;}
.y43{bottom:1040.730000px;}
.ya{bottom:1049.370000px;}
.ycd{bottom:1058.190000px;}
.y42{bottom:1059.630000px;}
.y9f{bottom:1062.870000px;}
.y9{bottom:1067.910000px;}
.ycc{bottom:1077.090000px;}
.y41{bottom:1078.710000px;}
.y8{bottom:1085.190000px;}
.y9e{bottom:1087.170000px;}
.ycb{bottom:1096.170000px;}
.y40{bottom:1097.610000px;}
.y7{bottom:1102.290000px;}
.yc9{bottom:1112.190000px;}
.y3f{bottom:1116.690000px;}
.y6{bottom:1119.570000px;}
.y9d{bottom:1135.410000px;}
.y3e{bottom:1135.590000px;}
.y5{bottom:1136.850000px;}
.y3{bottom:1154.160000px;}
.y1{bottom:1168.200000px;}
.h11{height:18.900000px;}
.h10{height:19.080000px;}
.h1c{height:22.500000px;}
.h18{height:23.580000px;}
.h1b{height:23.616000px;}
.h19{height:23.760000px;}
.h1a{height:23.796000px;}
.h2{height:26.640000px;}
.hb{height:27.147656px;}
.hd{height:34.036523px;}
.h12{height:37.800000px;}
.h14{height:37.980000px;}
.h15{height:38.016000px;}
.hf{height:38.700000px;}
.h5{height:39.760312px;}
.h4{height:41.726953px;}
.h6{height:42.164648px;}
.h17{height:45.540000px;}
.h16{height:45.576000px;}
.h7{height:46.251562px;}
.h9{height:46.736719px;}
.ha{height:48.312422px;}
.hc{height:49.255313px;}
.h3{height:50.414062px;}
.h13{height:50.715000px;}
.h1e{height:53.709961px;}
.he{height:54.596250px;}
.h8{height:54.864844px;}
.h1f{height:55.291992px;}
.h21{height:59.439023px;}
.h23{height:64.875938px;}
.h20{height:227.160000px;}
.h1d{height:256.500000px;}
.h22{height:318.600000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wd{width:40.320000px;}
.w9{width:42.120000px;}
.wa{width:42.156000px;}
.w8{width:42.300000px;}
.w5{width:52.200000px;}
.w2{width:53.100000px;}
.w10{width:87.120000px;}
.wf{width:90.900000px;}
.w11{width:93.636000px;}
.w7{width:169.770000px;}
.we{width:254.595000px;}
.w12{width:295.275000px;}
.w6{width:297.255000px;}
.wb{width:297.615000px;}
.w13{width:335.160000px;}
.wc{width:350.175000px;}
.w14{width:412.920000px;}
.w15{width:490.680000px;}
.w3{width:606.165000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x2a{left:11.880000px;}
.x22{left:13.320000px;}
.x25{left:16.020000px;}
.x19{left:17.640000px;}
.x18{left:21.780000px;}
.x23{left:39.600000px;}
.x34{left:41.940000px;}
.x2f{left:46.440000px;}
.x31{left:49.140000px;}
.x2e{left:50.400000px;}
.x30{left:52.965000px;}
.x28{left:54.540000px;}
.x32{left:55.665000px;}
.x2b{left:58.500000px;}
.x2d{left:59.760000px;}
.x29{left:61.065000px;}
.x27{left:62.820000px;}
.x33{left:63.945000px;}
.x26{left:66.780000px;}
.x3a{left:68.610000px;}
.x1a{left:69.840000px;}
.x3e{left:73.050000px;}
.x2c{left:75.060000px;}
.x38{left:79.485000px;}
.x1f{left:101.925000px;}
.x3b{left:106.350000px;}
.x4{left:127.655987px;}
.x5{left:129.275987px;}
.x6{left:134.135987px;}
.x1{left:135.756000px;}
.x46{left:145.365000px;}
.x10{left:154.649987px;}
.x48{left:159.689987px;}
.xe{left:170.129987px;}
.x1d{left:173.010000px;}
.x47{left:178.275000px;}
.xf{left:181.649987px;}
.x3{left:188.850000px;}
.x12{left:196.950000px;}
.x3f{left:199.695000px;}
.x41{left:210.600000px;}
.x42{left:212.010000px;}
.x1e{left:213.690000px;}
.xb{left:215.129987px;}
.x39{left:230.610000px;}
.x13{left:249.870000px;}
.x44{left:255.450000px;}
.x1b{left:265.709987px;}
.x11{left:267.149987px;}
.x37{left:289.440000px;}
.x35{left:302.294987px;}
.x40{left:326.340000px;}
.x7{left:344.594987px;}
.xa{left:361.154987px;}
.x43{left:364.575000px;}
.x1c{left:375.734987px;}
.x9{left:377.714987px;}
.x45{left:411.450000px;}
.xd{left:429.194987px;}
.xc{left:430.814987px;}
.x8{left:457.094987px;}
.x20{left:468.825000px;}
.x14{left:547.485000px;}
.x21{left:560.085000px;}
.x15{left:590.145000px;}
.x36{left:624.704987px;}
.x16{left:632.625000px;}
.x24{left:647.565000px;}
.x3c{left:664.169987px;}
.x17{left:675.150000px;}
.x3d{left:703.589987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.ls9{letter-spacing:-0.960000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.406933pt;}
.ls6{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.198933pt;}
.ls8{letter-spacing:-0.047360pt;}
.lse{letter-spacing:-0.016000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.112000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.231040pt;}
.lsc{letter-spacing:0.314880pt;}
.ls7{letter-spacing:0.320000pt;}
.wsa{word-spacing:-58.880000pt;}
.ws8{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.448533pt;}
.wsb{word-spacing:-14.313067pt;}
.wsc{word-spacing:-14.080000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws2{word-spacing:-12.960000pt;}
.ws1{word-spacing:-10.720000pt;}
.ws0{word-spacing:-10.400000pt;}
.ws6{word-spacing:-9.760000pt;}
.ws5{word-spacing:-8.640000pt;}
.ws7{word-spacing:0.000000pt;}
._12{margin-left:-3.768320pt;}
._6{margin-left:-2.084480pt;}
._0{margin-left:-1.114880pt;}
._2{width:0.915840pt;}
._3{width:2.096427pt;}
._8{width:3.243093pt;}
._7{width:4.196480pt;}
._b{width:5.086720pt;}
._a{width:6.374400pt;}
._c{width:7.304960pt;}
._9{width:8.433280pt;}
._10{width:9.801600pt;}
._f{width:11.034240pt;}
._e{width:12.188160pt;}
._d{width:13.365760pt;}
._4{width:15.073280pt;}
._15{width:16.604160pt;}
._5{width:17.732053pt;}
._16{width:18.873173pt;}
._1a{width:20.323627pt;}
._23{width:21.373440pt;}
._13{width:22.374400pt;}
._14{width:23.312640pt;}
._11{width:26.849280pt;}
._17{width:34.385920pt;}
._21{width:46.452480pt;}
._19{width:54.817280pt;}
._18{width:56.371840pt;}
._22{width:65.588480pt;}
._20{width:89.546667pt;}
._1c{width:283.408000pt;}
._1d{width:288.400000pt;}
._1b{width:370.213333pt;}
._1e{width:375.568000pt;}
._1f{width:380.720000pt;}
._1{width:1182.478933pt;}
.fs5{font-size:34.560000pt;}
.fs2{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs7{font-size:56.320000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.y0{bottom:0.000000pt;}
.y82{bottom:3.040000pt;}
.y7a{bottom:3.200000pt;}
.y79{bottom:3.360000pt;}
.ya8{bottom:3.400000pt;}
.yc6{bottom:4.800000pt;}
.yc4{bottom:4.960000pt;}
.y2{bottom:6.080000pt;}
.yca{bottom:11.680000pt;}
.y116{bottom:11.813333pt;}
.yf4{bottom:11.840000pt;}
.y77{bottom:12.000000pt;}
.y9b{bottom:15.034667pt;}
.y8a{bottom:15.066667pt;}
.y121{bottom:15.746667pt;}
.y7c{bottom:20.000000pt;}
.y7f{bottom:20.160000pt;}
.y11f{bottom:42.333333pt;}
.y4{bottom:62.592000pt;}
.y11e{bottom:86.626667pt;}
.y113{bottom:95.200000pt;}
.y119{bottom:95.520000pt;}
.y74{bottom:98.592000pt;}
.y111{bottom:101.632000pt;}
.y9c{bottom:105.152000pt;}
.y73{bottom:115.392000pt;}
.y110{bottom:118.592000pt;}
.y9a{bottom:119.392000pt;}
.y11d{bottom:122.240000pt;}
.yc8{bottom:125.312000pt;}
.y3d{bottom:129.312000pt;}
.y72{bottom:132.352000pt;}
.y114{bottom:133.626667pt;}
.y10f{bottom:135.386667pt;}
.yf0{bottom:139.066667pt;}
.yc7{bottom:145.946667pt;}
.y3c{bottom:146.106667pt;}
.y71{bottom:149.146667pt;}
.yf2{bottom:151.293333pt;}
.y10e{bottom:152.186667pt;}
.y115{bottom:154.146667pt;}
.yef{bottom:156.026667pt;}
.y99{bottom:160.506667pt;}
.y3b{bottom:162.906667pt;}
.y70{bottom:166.106667pt;}
.yc5{bottom:166.586667pt;}
.y10d{bottom:169.146667pt;}
.yee{bottom:172.826667pt;}
.y98{bottom:178.106667pt;}
.y117{bottom:179.266667pt;}
.y3a{bottom:179.866667pt;}
.y6f{bottom:182.906667pt;}
.y10c{bottom:185.946667pt;}
.yc3{bottom:187.226667pt;}
.yed{bottom:189.626667pt;}
.yf3{bottom:190.266667pt;}
.y97{bottom:195.546667pt;}
.y39{bottom:196.666667pt;}
.y11a{bottom:197.026667pt;}
.y6e{bottom:199.706667pt;}
.y10b{bottom:202.906667pt;}
.yf5{bottom:206.560000pt;}
.yec{bottom:206.586667pt;}
.yc2{bottom:208.026667pt;}
.y38{bottom:213.626667pt;}
.y6d{bottom:216.666667pt;}
.y10a{bottom:219.706667pt;}
.yeb{bottom:223.386667pt;}
.y11c{bottom:223.706667pt;}
.yc1{bottom:229.626667pt;}
.y96{bottom:229.946667pt;}
.y37{bottom:230.426667pt;}
.y11b{bottom:232.613333pt;}
.y6c{bottom:233.466667pt;}
.y109{bottom:236.666667pt;}
.yea{bottom:240.346667pt;}
.y36{bottom:247.226667pt;}
.y95{bottom:247.546667pt;}
.y6b{bottom:250.426667pt;}
.yc0{bottom:251.226667pt;}
.y108{bottom:253.466667pt;}
.ye9{bottom:257.146667pt;}
.y120{bottom:259.840000pt;}
.y35{bottom:263.706667pt;}
.y6a{bottom:267.226667pt;}
.y107{bottom:270.266667pt;}
.ybf{bottom:272.986667pt;}
.ye8{bottom:273.946667pt;}
.y34{bottom:278.426667pt;}
.y94{bottom:281.946667pt;}
.y69{bottom:284.026667pt;}
.y106{bottom:287.226667pt;}
.y33{bottom:290.746667pt;}
.ye7{bottom:290.906667pt;}
.ybe{bottom:294.586667pt;}
.y93{bottom:299.426667pt;}
.y68{bottom:301.026667pt;}
.y32{bottom:303.746667pt;}
.y105{bottom:304.066667pt;}
.ye6{bottom:307.746667pt;}
.ybd{bottom:316.386667pt;}
.y67{bottom:317.826667pt;}
.y31{bottom:318.946667pt;}
.y104{bottom:321.026667pt;}
.ye5{bottom:324.706667pt;}
.y92{bottom:333.826667pt;}
.y30{bottom:334.306667pt;}
.y66{bottom:334.786667pt;}
.y103{bottom:337.826667pt;}
.ybc{bottom:337.986667pt;}
.ye4{bottom:341.506667pt;}
.y2f{bottom:349.666667pt;}
.y65{bottom:351.586667pt;}
.y102{bottom:354.626667pt;}
.ye3{bottom:358.306667pt;}
.ybb{bottom:359.746667pt;}
.y2e{bottom:365.026667pt;}
.y91{bottom:368.226667pt;}
.y64{bottom:368.386667pt;}
.y101{bottom:371.586667pt;}
.ye2{bottom:375.266667pt;}
.y2d{bottom:380.386667pt;}
.yba{bottom:381.346667pt;}
.y63{bottom:385.346667pt;}
.y100{bottom:388.386667pt;}
.ye1{bottom:392.066667pt;}
.y2c{bottom:395.746667pt;}
.y62{bottom:402.146667pt;}
.y90{bottom:402.626667pt;}
.yb9{bottom:402.946667pt;}
.yff{bottom:405.346667pt;}
.ye0{bottom:409.026667pt;}
.y2b{bottom:410.946667pt;}
.y61{bottom:419.106667pt;}
.y8f{bottom:420.226667pt;}
.yfe{bottom:422.146667pt;}
.yb8{bottom:424.706667pt;}
.ydf{bottom:425.826667pt;}
.y2a{bottom:426.306667pt;}
.y60{bottom:435.906667pt;}
.yfd{bottom:438.946667pt;}
.y29{bottom:441.666667pt;}
.yde{bottom:442.626667pt;}
.yb7{bottom:446.306667pt;}
.y5f{bottom:452.706667pt;}
.y8d{bottom:454.626667pt;}
.yfc{bottom:455.906667pt;}
.y28{bottom:457.026667pt;}
.ydd{bottom:459.586667pt;}
.yb6{bottom:468.066667pt;}
.yfb{bottom:469.506667pt;}
.y5e{bottom:469.666667pt;}
.y118{bottom:470.400000pt;}
.y8e{bottom:472.066667pt;}
.y27{bottom:472.386667pt;}
.ydc{bottom:473.186667pt;}
.yf1{bottom:473.280000pt;}
.y5d{bottom:486.466667pt;}
.y26{bottom:487.586667pt;}
.yb5{bottom:489.666667pt;}
.y8c{bottom:498.146667pt;}
.y25{bottom:502.946667pt;}
.y5c{bottom:503.426667pt;}
.yb4{bottom:511.266667pt;}
.y8b{bottom:515.106667pt;}
.y24{bottom:518.306667pt;}
.y5b{bottom:520.226667pt;}
.y89{bottom:529.346667pt;}
.yb3{bottom:533.026667pt;}
.y23{bottom:533.666667pt;}
.y5a{bottom:537.213333pt;}
.y22{bottom:549.053333pt;}
.y59{bottom:554.013333pt;}
.yb2{bottom:554.653333pt;}
.y21{bottom:564.413333pt;}
.y88{bottom:570.493333pt;}
.y58{bottom:570.813333pt;}
.yb1{bottom:576.413333pt;}
.y20{bottom:579.613333pt;}
.y57{bottom:587.773333pt;}
.y87{bottom:587.933333pt;}
.y1f{bottom:594.973333pt;}
.yb0{bottom:598.013333pt;}
.y56{bottom:604.573333pt;}
.y86{bottom:605.533333pt;}
.y1e{bottom:610.333333pt;}
.yaf{bottom:619.773333pt;}
.y55{bottom:621.533333pt;}
.y1d{bottom:625.693333pt;}
.y54{bottom:638.333333pt;}
.y85{bottom:639.933333pt;}
.y1c{bottom:641.053333pt;}
.yae{bottom:641.373333pt;}
.y53{bottom:655.133333pt;}
.y1b{bottom:656.413333pt;}
.y84{bottom:657.533333pt;}
.yad{bottom:662.973333pt;}
.y1a{bottom:671.613333pt;}
.y52{bottom:672.093333pt;}
.yac{bottom:684.733333pt;}
.y19{bottom:686.973333pt;}
.y51{bottom:688.893333pt;}
.y83{bottom:691.933333pt;}
.y18{bottom:702.333333pt;}
.ydb{bottom:704.413333pt;}
.y50{bottom:705.853333pt;}
.yab{bottom:706.333333pt;}
.y81{bottom:709.373333pt;}
.y17{bottom:717.693333pt;}
.yda{bottom:721.373333pt;}
.y4f{bottom:722.653333pt;}
.yaa{bottom:728.093333pt;}
.y16{bottom:733.053333pt;}
.yd9{bottom:738.173333pt;}
.y4e{bottom:739.453333pt;}
.y80{bottom:743.773333pt;}
.y15{bottom:748.253333pt;}
.ya9{bottom:749.693333pt;}
.yd8{bottom:754.973333pt;}
.y4d{bottom:756.413333pt;}
.yfa{bottom:756.733333pt;}
.y14{bottom:763.613333pt;}
.ya7{bottom:771.293333pt;}
.yd7{bottom:771.933333pt;}
.y4c{bottom:773.213333pt;}
.yf9{bottom:773.693333pt;}
.y7e{bottom:778.213333pt;}
.y13{bottom:779.013333pt;}
.yd6{bottom:788.773333pt;}
.y4b{bottom:790.213333pt;}
.yf8{bottom:790.533333pt;}
.ya6{bottom:793.093333pt;}
.y12{bottom:794.373333pt;}
.yd5{bottom:805.733333pt;}
.y4a{bottom:807.013333pt;}
.yf7{bottom:807.333333pt;}
.y7d{bottom:812.613333pt;}
.y11{bottom:814.373333pt;}
.ya5{bottom:814.693333pt;}
.yf6{bottom:820.933333pt;}
.y112{bottom:821.120000pt;}
.yd4{bottom:822.533333pt;}
.y49{bottom:823.813333pt;}
.y10{bottom:829.733333pt;}
.y7b{bottom:830.213333pt;}
.ya4{bottom:836.453333pt;}
.yd3{bottom:839.493333pt;}
.yf{bottom:840.293333pt;}
.y48{bottom:840.773333pt;}
.ye{bottom:856.133333pt;}
.yd2{bottom:856.293333pt;}
.y47{bottom:857.573333pt;}
.ya3{bottom:858.053333pt;}
.y76{bottom:864.613333pt;}
.yd1{bottom:873.093333pt;}
.yd{bottom:873.413333pt;}
.y46{bottom:874.533333pt;}
.ya2{bottom:879.813333pt;}
.y78{bottom:882.053333pt;}
.yd0{bottom:890.053333pt;}
.y45{bottom:891.333333pt;}
.yc{bottom:893.253333pt;}
.ya1{bottom:901.413333pt;}
.ycf{bottom:906.853333pt;}
.y75{bottom:907.973333pt;}
.y44{bottom:908.133333pt;}
.yb{bottom:913.253333pt;}
.ya0{bottom:923.013333pt;}
.yce{bottom:923.813333pt;}
.y43{bottom:925.093333pt;}
.ya{bottom:932.773333pt;}
.ycd{bottom:940.613333pt;}
.y42{bottom:941.893333pt;}
.y9f{bottom:944.773333pt;}
.y9{bottom:949.253333pt;}
.ycc{bottom:957.413333pt;}
.y41{bottom:958.853333pt;}
.y8{bottom:964.613333pt;}
.y9e{bottom:966.373333pt;}
.ycb{bottom:974.373333pt;}
.y40{bottom:975.653333pt;}
.y7{bottom:979.813333pt;}
.yc9{bottom:988.613333pt;}
.y3f{bottom:992.613333pt;}
.y6{bottom:995.173333pt;}
.y9d{bottom:1009.253333pt;}
.y3e{bottom:1009.413333pt;}
.y5{bottom:1010.533333pt;}
.y3{bottom:1025.920000pt;}
.y1{bottom:1038.400000pt;}
.h11{height:16.800000pt;}
.h10{height:16.960000pt;}
.h1c{height:20.000000pt;}
.h18{height:20.960000pt;}
.h1b{height:20.992000pt;}
.h19{height:21.120000pt;}
.h1a{height:21.152000pt;}
.h2{height:23.680000pt;}
.hb{height:24.131250pt;}
.hd{height:30.254687pt;}
.h12{height:33.600000pt;}
.h14{height:33.760000pt;}
.h15{height:33.792000pt;}
.hf{height:34.400000pt;}
.h5{height:35.342500pt;}
.h4{height:37.090625pt;}
.h6{height:37.479688pt;}
.h17{height:40.480000pt;}
.h16{height:40.512000pt;}
.h7{height:41.112500pt;}
.h9{height:41.543750pt;}
.ha{height:42.944375pt;}
.hc{height:43.782500pt;}
.h3{height:44.812500pt;}
.h13{height:45.080000pt;}
.h1e{height:47.742188pt;}
.he{height:48.530000pt;}
.h8{height:48.768750pt;}
.h1f{height:49.148438pt;}
.h21{height:52.834688pt;}
.h23{height:57.667500pt;}
.h20{height:201.920000pt;}
.h1d{height:228.000000pt;}
.h22{height:283.200000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wd{width:35.840000pt;}
.w9{width:37.440000pt;}
.wa{width:37.472000pt;}
.w8{width:37.600000pt;}
.w5{width:46.400000pt;}
.w2{width:47.200000pt;}
.w10{width:77.440000pt;}
.wf{width:80.800000pt;}
.w11{width:83.232000pt;}
.w7{width:150.906667pt;}
.we{width:226.306667pt;}
.w12{width:262.466667pt;}
.w6{width:264.226667pt;}
.wb{width:264.546667pt;}
.w13{width:297.920000pt;}
.wc{width:311.266667pt;}
.w14{width:367.040000pt;}
.w15{width:436.160000pt;}
.w3{width:538.813333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x2a{left:10.560000pt;}
.x22{left:11.840000pt;}
.x25{left:14.240000pt;}
.x19{left:15.680000pt;}
.x18{left:19.360000pt;}
.x23{left:35.200000pt;}
.x34{left:37.280000pt;}
.x2f{left:41.280000pt;}
.x31{left:43.680000pt;}
.x2e{left:44.800000pt;}
.x30{left:47.080000pt;}
.x28{left:48.480000pt;}
.x32{left:49.480000pt;}
.x2b{left:52.000000pt;}
.x2d{left:53.120000pt;}
.x29{left:54.280000pt;}
.x27{left:55.840000pt;}
.x33{left:56.840000pt;}
.x26{left:59.360000pt;}
.x3a{left:60.986667pt;}
.x1a{left:62.080000pt;}
.x3e{left:64.933333pt;}
.x2c{left:66.720000pt;}
.x38{left:70.653333pt;}
.x1f{left:90.600000pt;}
.x3b{left:94.533333pt;}
.x4{left:113.471988pt;}
.x5{left:114.911988pt;}
.x6{left:119.231988pt;}
.x1{left:120.672000pt;}
.x46{left:129.213333pt;}
.x10{left:137.466655pt;}
.x48{left:141.946655pt;}
.xe{left:151.226655pt;}
.x1d{left:153.786667pt;}
.x47{left:158.466667pt;}
.xf{left:161.466655pt;}
.x3{left:167.866667pt;}
.x12{left:175.066667pt;}
.x3f{left:177.506667pt;}
.x41{left:187.200000pt;}
.x42{left:188.453333pt;}
.x1e{left:189.946667pt;}
.xb{left:191.226655pt;}
.x39{left:204.986667pt;}
.x13{left:222.106667pt;}
.x44{left:227.066667pt;}
.x1b{left:236.186655pt;}
.x11{left:237.466655pt;}
.x37{left:257.280000pt;}
.x35{left:268.706655pt;}
.x40{left:290.080000pt;}
.x7{left:306.306655pt;}
.xa{left:321.026655pt;}
.x43{left:324.066667pt;}
.x1c{left:333.986655pt;}
.x9{left:335.746655pt;}
.x45{left:365.733333pt;}
.xd{left:381.506655pt;}
.xc{left:382.946655pt;}
.x8{left:406.306655pt;}
.x20{left:416.733333pt;}
.x14{left:486.653333pt;}
.x21{left:497.853333pt;}
.x15{left:524.573333pt;}
.x36{left:555.293322pt;}
.x16{left:562.333333pt;}
.x24{left:575.613333pt;}
.x3c{left:590.373322pt;}
.x17{left:600.133333pt;}
.x3d{left:625.413322pt;}
}




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