
    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_353c463e42fee170027181d9.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c32afe8166266b262a51718d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_f932412e65b7057590f9ac1d.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f7663d8071fc480186c193bc.woff')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_cbbb3293407f6f4b409714a7.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_03ce8bb9918bfba49ebbc242.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ae6c1a12886c19fced415509.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff8{font-family:ff8;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;}
@font-face{font-family:ff9;src:url('chunks/assets/font_5dcee72ba2433adab50a45e8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.084961;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;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls11{letter-spacing:-0.924000px;}
.ls9{letter-spacing:-0.774000px;}
.ls4{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.612000px;}
.ls10{letter-spacing:-0.540000px;}
.lsc{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.259800px;}
.ls13{letter-spacing:-0.206400px;}
.ls5{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.053280px;}
.lsb{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls16{letter-spacing:0.336000px;}
.ls7{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.480000px;}
.ls17{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.900000px;}
.ls12{letter-spacing:1.620000px;}
.ls0{letter-spacing:3.780000px;}
.lse{letter-spacing:8.100000px;}
.lsd{letter-spacing:8.220000px;}
.ls15{letter-spacing:16.506720px;}
.ls14{letter-spacing:46.026720px;}
.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;}
}
.ws2{word-spacing:-23.940000px;}
.ws0{word-spacing:-16.560000px;}
.ws7{word-spacing:-15.300000px;}
.ws5{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.wsc{word-spacing:-14.993280px;}
.ws4{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.wsa{word-spacing:-14.733600px;}
.wsb{word-spacing:-14.580000px;}
.wsd{word-spacing:-14.220000px;}
.ws1{word-spacing:-10.440000px;}
.ws3{word-spacing:-9.720000px;}
.ws6{word-spacing:0.000000px;}
._1c{margin-left:-4.117200px;}
._12{margin-left:-2.635920px;}
._0{margin-left:-1.080000px;}
._b{width:1.068000px;}
._1{width:2.220000px;}
._13{width:3.274080px;}
._10{width:4.285920px;}
._11{width:5.355120px;}
._17{width:6.991920px;}
._18{width:8.041200px;}
._1a{width:9.408720px;}
._6{width:10.800000px;}
._1b{width:12.462000px;}
._19{width:13.525440px;}
._14{width:16.389600px;}
._1d{width:18.060960px;}
._3e{width:19.484400px;}
._28{width:22.230720px;}
._27{width:23.306400px;}
._37{width:24.442800px;}
._16{width:26.281200px;}
._15{width:27.606720px;}
._35{width:29.521440px;}
._31{width:31.262160px;}
._32{width:33.473280px;}
._33{width:34.840080px;}
._2e{width:36.278640px;}
._1e{width:37.290240px;}
._20{width:39.680640px;}
._1f{width:40.875840px;}
._26{width:43.214160px;}
._3d{width:45.843600px;}
._2b{width:47.158320px;}
._24{width:48.166560px;}
._23{width:49.481280px;}
._22{width:61.134480px;}
._21{width:62.329680px;}
._25{width:63.405360px;}
._29{width:66.401040px;}
._3c{width:67.739280px;}
._3b{width:68.804640px;}
._2f{width:72.488880px;}
._30{width:73.512480px;}
._7{width:76.284960px;}
._39{width:77.628240px;}
._3a{width:78.703920px;}
._36{width:82.289520px;}
._38{width:84.381120px;}
._2a{width:97.647840px;}
._34{width:105.894720px;}
._8{width:154.080000px;}
._d{width:195.120000px;}
._2{width:255.512640px;}
._2d{width:341.229600px;}
._2c{width:342.245520px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._e{width:653.880000px;}
._f{width:703.560000px;}
._a{width:1096.860000px;}
._c{width:1176.060000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs6{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs7{font-size:48.240000px;}
.fs8{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y97{bottom:5.760000px;}
.ya1{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.y6{bottom:12.420000px;}
.y9e{bottom:15.660000px;}
.ye6{bottom:15.840000px;}
.y8{bottom:18.180000px;}
.y9b{bottom:19.800000px;}
.ya5{bottom:19.845000px;}
.ya0{bottom:19.980000px;}
.y99{bottom:25.560000px;}
.y9c{bottom:25.740000px;}
.ya6{bottom:25.785000px;}
.ybc{bottom:35.460000px;}
.yc6{bottom:35.640000px;}
.yc{bottom:35.820000px;}
.y5{bottom:40.320000px;}
.ye8{bottom:45.360000px;}
.yba{bottom:45.405000px;}
.yc4{bottom:45.540000px;}
.yb5{bottom:55.305000px;}
.ybf{bottom:55.440000px;}
.yb{bottom:57.780000px;}
.yb9{bottom:65.205000px;}
.yc3{bottom:65.340000px;}
.yc8{bottom:65.370000px;}
.y4{bottom:68.400000px;}
.yb4{bottom:75.105000px;}
.ybe{bottom:75.240000px;}
.ycb{bottom:75.270000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.380000px;}
.yc2{bottom:85.140000px;}
.yca{bottom:85.170000px;}
.yb8{bottom:85.185000px;}
.yc5{bottom:95.040000px;}
.ybb{bottom:95.085000px;}
.y3{bottom:96.330000px;}
.y111{bottom:102.960000px;}
.yb1{bottom:103.320000px;}
.yc1{bottom:104.940000px;}
.yc9{bottom:104.970000px;}
.yb7{bottom:104.985000px;}
.yfb{bottom:108.180000px;}
.ye3{bottom:114.840000px;}
.y114{bottom:115.380000px;}
.y95{bottom:117.540000px;}
.y110{bottom:122.760000px;}
.yb0{bottom:123.120000px;}
.yb6{bottom:124.785000px;}
.yc0{bottom:124.920000px;}
.y2{bottom:125.670000px;}
.yfa{bottom:127.980000px;}
.y68{bottom:128.340000px;}
.y3a{bottom:133.380000px;}
.ye2{bottom:134.820000px;}
.y113{bottom:135.180000px;}
.y94{bottom:137.340000px;}
.y10f{bottom:142.560000px;}
.yaf{bottom:142.920000px;}
.yf9{bottom:147.780000px;}
.y67{bottom:148.320000px;}
.y39{bottom:153.210000px;}
.ye1{bottom:154.650000px;}
.y112{bottom:155.010000px;}
.y93{bottom:157.350000px;}
.y10e{bottom:162.390000px;}
.yae{bottom:162.750000px;}
.yf8{bottom:167.610000px;}
.y66{bottom:168.150000px;}
.y38{bottom:173.010000px;}
.ye0{bottom:174.450000px;}
.y92{bottom:177.150000px;}
.y10d{bottom:182.370000px;}
.yad{bottom:182.550000px;}
.yf7{bottom:187.410000px;}
.y65{bottom:187.950000px;}
.y37{bottom:192.810000px;}
.ydf{bottom:194.250000px;}
.y91{bottom:196.950000px;}
.y10c{bottom:202.170000px;}
.yac{bottom:202.530000px;}
.yf6{bottom:207.390000px;}
.y64{bottom:207.750000px;}
.ye9{bottom:212.430000px;}
.y36{bottom:212.610000px;}
.yde{bottom:214.050000px;}
.y90{bottom:216.750000px;}
.y10b{bottom:221.970000px;}
.yab{bottom:222.330000px;}
.yf5{bottom:227.190000px;}
.y63{bottom:227.550000px;}
.y35{bottom:232.590000px;}
.ydd{bottom:234.030000px;}
.y8f{bottom:236.550000px;}
.y10a{bottom:241.770000px;}
.yaa{bottom:242.130000px;}
.yf4{bottom:246.990000px;}
.y62{bottom:247.530000px;}
.y34{bottom:252.390000px;}
.ydc{bottom:253.830000px;}
.y8e{bottom:256.530000px;}
.ya9{bottom:260.310000px;}
.y109{bottom:261.570000px;}
.yf3{bottom:264.270000px;}
.y61{bottom:267.330000px;}
.y33{bottom:272.190000px;}
.ydb{bottom:273.630000px;}
.y8d{bottom:276.330000px;}
.ye7{bottom:276.510000px;}
.y108{bottom:281.550000px;}
.yf2{bottom:284.070000px;}
.y60{bottom:287.130000px;}
.y32{bottom:291.990000px;}
.yda{bottom:293.430000px;}
.y8c{bottom:296.130000px;}
.y107{bottom:301.350000px;}
.yf1{bottom:303.870000px;}
.ya8{bottom:304.410000px;}
.y5f{bottom:306.930000px;}
.y31{bottom:311.790000px;}
.yd9{bottom:313.230000px;}
.y8b{bottom:315.930000px;}
.y106{bottom:321.150000px;}
.yf0{bottom:323.670000px;}
.y5e{bottom:326.730000px;}
.y30{bottom:331.770000px;}
.yd8{bottom:333.210000px;}
.y8a{bottom:335.730000px;}
.ye5{bottom:340.410000px;}
.y105{bottom:340.950000px;}
.yef{bottom:343.650000px;}
.y5d{bottom:346.710000px;}
.ya7{bottom:348.690000px;}
.y2f{bottom:351.570000px;}
.yd7{bottom:353.010000px;}
.y89{bottom:355.710000px;}
.y104{bottom:360.750000px;}
.yee{bottom:363.450000px;}
.y5c{bottom:366.510000px;}
.y2e{bottom:371.370000px;}
.yd6{bottom:372.810000px;}
.y88{bottom:375.510000px;}
.y103{bottom:380.730000px;}
.yed{bottom:383.250000px;}
.y5b{bottom:386.310000px;}
.y2d{bottom:391.170000px;}
.yd5{bottom:392.610000px;}
.ya4{bottom:392.790000px;}
.y87{bottom:395.310000px;}
.yec{bottom:400.575000px;}
.ye4{bottom:405.255000px;}
.y5a{bottom:406.155000px;}
.y2c{bottom:411.015000px;}
.yd4{bottom:412.455000px;}
.y86{bottom:415.155000px;}
.yeb{bottom:417.855000px;}
.y102{bottom:420.375000px;}
.y59{bottom:425.955000px;}
.y2b{bottom:430.995000px;}
.yd3{bottom:432.435000px;}
.y85{bottom:434.955000px;}
.yea{bottom:435.135000px;}
.ya3{bottom:437.115000px;}
.y101{bottom:440.175000px;}
.y58{bottom:445.935000px;}
.y2a{bottom:450.795000px;}
.yd2{bottom:452.235000px;}
.y84{bottom:454.935000px;}
.y100{bottom:459.975000px;}
.y57{bottom:465.735000px;}
.y29{bottom:470.595000px;}
.yd1{bottom:472.035000px;}
.y83{bottom:474.735000px;}
.yff{bottom:479.955000px;}
.ya2{bottom:481.215000px;}
.y56{bottom:485.535000px;}
.y28{bottom:490.395000px;}
.yd0{bottom:491.835000px;}
.y82{bottom:494.535000px;}
.yfe{bottom:499.755000px;}
.y55{bottom:505.335000px;}
.y27{bottom:510.195000px;}
.ycf{bottom:511.635000px;}
.y81{bottom:514.335000px;}
.yfd{bottom:517.035000px;}
.y54{bottom:525.135000px;}
.y9f{bottom:525.315000px;}
.y26{bottom:530.175000px;}
.yce{bottom:531.615000px;}
.y80{bottom:534.135000px;}
.yfc{bottom:534.315000px;}
.y53{bottom:545.115000px;}
.y25{bottom:549.975000px;}
.ycd{bottom:551.415000px;}
.y7f{bottom:554.115000px;}
.y52{bottom:564.915000px;}
.y9d{bottom:569.595000px;}
.y24{bottom:569.775000px;}
.ycc{bottom:571.215000px;}
.y7e{bottom:573.915000px;}
.y51{bottom:584.715000px;}
.yc7{bottom:589.395000px;}
.y23{bottom:589.575000px;}
.y7d{bottom:593.715000px;}
.y50{bottom:604.515000px;}
.y22{bottom:609.375000px;}
.y7c{bottom:613.515000px;}
.y9a{bottom:613.695000px;}
.y4f{bottom:624.315000px;}
.y21{bottom:629.355000px;}
.y7b{bottom:633.315000px;}
.y4e{bottom:644.295000px;}
.y20{bottom:649.185000px;}
.y7a{bottom:653.325000px;}
.y98{bottom:658.005000px;}
.y4d{bottom:664.125000px;}
.y1f{bottom:668.985000px;}
.y79{bottom:673.125000px;}
.y4c{bottom:683.925000px;}
.y1e{bottom:688.785000px;}
.y78{bottom:692.925000px;}
.y96{bottom:702.825000px;}
.y4b{bottom:703.725000px;}
.y1d{bottom:708.585000px;}
.y77{bottom:712.725000px;}
.ybd{bottom:712.905000px;}
.y4a{bottom:723.525000px;}
.y1c{bottom:728.565000px;}
.y76{bottom:732.525000px;}
.y49{bottom:743.505000px;}
.y1b{bottom:748.365000px;}
.y75{bottom:752.505000px;}
.y48{bottom:763.305000px;}
.y1a{bottom:768.165000px;}
.y74{bottom:772.305000px;}
.y47{bottom:783.105000px;}
.y19{bottom:787.965000px;}
.y73{bottom:792.105000px;}
.y46{bottom:802.905000px;}
.y18{bottom:807.765000px;}
.y72{bottom:811.905000px;}
.y45{bottom:822.705000px;}
.y17{bottom:827.745000px;}
.y71{bottom:831.705000px;}
.y44{bottom:842.685000px;}
.y16{bottom:847.545000px;}
.y70{bottom:851.685000px;}
.yb3{bottom:856.365000px;}
.y43{bottom:862.485000px;}
.y15{bottom:867.345000px;}
.y6f{bottom:871.485000px;}
.y42{bottom:882.285000px;}
.y14{bottom:887.145000px;}
.y6e{bottom:891.285000px;}
.y41{bottom:902.130000px;}
.y6d{bottom:911.130000px;}
.y13{bottom:912.210000px;}
.y40{bottom:921.930000px;}
.y12{bottom:927.510000px;}
.y6c{bottom:930.930000px;}
.y3f{bottom:941.910000px;}
.y11{bottom:948.750000px;}
.y6b{bottom:950.910000px;}
.y3e{bottom:961.710000px;}
.y6a{bottom:970.710000px;}
.y10{bottom:972.150000px;}
.y3d{bottom:981.510000px;}
.y69{bottom:990.510000px;}
.yb2{bottom:1000.410000px;}
.yf{bottom:1003.830000px;}
.y3c{bottom:1010.310000px;}
.y3b{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h7{height:2.581875px;}
.h11{height:19.800000px;}
.ha{height:21.780000px;}
.h8{height:33.480000px;}
.he{height:34.855313px;}
.h13{height:39.600000px;}
.h15{height:39.780000px;}
.h14{height:39.816000px;}
.hf{height:42.164648px;}
.h4{height:46.736719px;}
.h12{height:48.496641px;}
.h16{height:49.255313px;}
.hd{height:53.224453px;}
.h5{height:53.573906px;}
.h10{height:55.735312px;}
.h9{height:59.383125px;}
.h1b{height:59.400000px;}
.h1a{height:59.580000px;}
.h3{height:63.500977px;}
.hb{height:67.565039px;}
.hc{height:77.711484px;}
.h6{height:112.536000px;}
.h19{height:119.016000px;}
.h17{height:138.816000px;}
.h18{height:138.960000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.720000px;}
.w6{width:88.956000px;}
.wc{width:110.556000px;}
.w9{width:124.596000px;}
.w3{width:131.976000px;}
.wf{width:208.110000px;}
.wd{width:226.110000px;}
.we{width:228.810000px;}
.w7{width:313.815000px;}
.wb{width:319.035000px;}
.wa{width:332.715000px;}
.w8{width:373.575000px;}
.w2{width:654.450000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:1.080000px;}
.x2{left:8.100000px;}
.x1{left:53.460000px;}
.xb{left:56.340000px;}
.x6{left:73.079987px;}
.x15{left:80.999987px;}
.x16{left:108.035987px;}
.x4{left:118.290000px;}
.xd{left:147.456000px;}
.x7{left:151.409987px;}
.x14{left:160.769987px;}
.x11{left:169.230000px;}
.x9{left:176.249987px;}
.xf{left:183.090000px;}
.xa{left:200.189987px;}
.x12{left:397.695000px;}
.x8{left:446.504987px;}
.xe{left:463.425000px;}
.x10{left:517.965000px;}
.x13{left:628.890000px;}
.x3{left:707.910000px;}
.x5{left:829.440000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls11{letter-spacing:-0.821333pt;}
.ls9{letter-spacing:-0.688000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls10{letter-spacing:-0.480000pt;}
.lsc{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.230933pt;}
.ls13{letter-spacing:-0.183467pt;}
.ls5{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.047360pt;}
.lsb{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls16{letter-spacing:0.298667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.426667pt;}
.ls17{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.800000pt;}
.ls12{letter-spacing:1.440000pt;}
.ls0{letter-spacing:3.360000pt;}
.lse{letter-spacing:7.200000pt;}
.lsd{letter-spacing:7.306667pt;}
.ls15{letter-spacing:14.672640pt;}
.ls14{letter-spacing:40.912640pt;}
.ws2{word-spacing:-21.280000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws7{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.wsc{word-spacing:-13.327360pt;}
.ws4{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.wsa{word-spacing:-13.096533pt;}
.wsb{word-spacing:-12.960000pt;}
.wsd{word-spacing:-12.640000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws3{word-spacing:-8.640000pt;}
.ws6{word-spacing:0.000000pt;}
._1c{margin-left:-3.659733pt;}
._12{margin-left:-2.343040pt;}
._0{margin-left:-0.960000pt;}
._b{width:0.949333pt;}
._1{width:1.973333pt;}
._13{width:2.910293pt;}
._10{width:3.809707pt;}
._11{width:4.760107pt;}
._17{width:6.215040pt;}
._18{width:7.147733pt;}
._1a{width:8.363307pt;}
._6{width:9.600000pt;}
._1b{width:11.077333pt;}
._19{width:12.022613pt;}
._14{width:14.568533pt;}
._1d{width:16.054187pt;}
._3e{width:17.319467pt;}
._28{width:19.760640pt;}
._27{width:20.716800pt;}
._37{width:21.726933pt;}
._16{width:23.361067pt;}
._15{width:24.539307pt;}
._35{width:26.241280pt;}
._31{width:27.788587pt;}
._32{width:29.754027pt;}
._33{width:30.968960pt;}
._2e{width:32.247680pt;}
._1e{width:33.146880pt;}
._20{width:35.271680pt;}
._1f{width:36.334080pt;}
._26{width:38.412587pt;}
._3d{width:40.749867pt;}
._2b{width:41.918507pt;}
._24{width:42.814720pt;}
._23{width:43.983360pt;}
._22{width:54.341760pt;}
._21{width:55.404160pt;}
._25{width:56.360320pt;}
._29{width:59.023147pt;}
._3c{width:60.212693pt;}
._3b{width:61.159680pt;}
._2f{width:64.434560pt;}
._30{width:65.344427pt;}
._7{width:67.808853pt;}
._39{width:69.002880pt;}
._3a{width:69.959040pt;}
._36{width:73.146240pt;}
._38{width:75.005440pt;}
._2a{width:86.798080pt;}
._34{width:94.128640pt;}
._8{width:136.960000pt;}
._d{width:173.440000pt;}
._2{width:227.122347pt;}
._2d{width:303.315200pt;}
._2c{width:304.218240pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._e{width:581.226667pt;}
._f{width:625.386667pt;}
._a{width:974.986667pt;}
._c{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs6{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs7{font-size:42.880000pt;}
.fs8{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y97{bottom:5.120000pt;}
.ya1{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.y6{bottom:11.040000pt;}
.y9e{bottom:13.920000pt;}
.ye6{bottom:14.080000pt;}
.y8{bottom:16.160000pt;}
.y9b{bottom:17.600000pt;}
.ya5{bottom:17.640000pt;}
.ya0{bottom:17.760000pt;}
.y99{bottom:22.720000pt;}
.y9c{bottom:22.880000pt;}
.ya6{bottom:22.920000pt;}
.ybc{bottom:31.520000pt;}
.yc6{bottom:31.680000pt;}
.yc{bottom:31.840000pt;}
.y5{bottom:35.840000pt;}
.ye8{bottom:40.320000pt;}
.yba{bottom:40.360000pt;}
.yc4{bottom:40.480000pt;}
.yb5{bottom:49.160000pt;}
.ybf{bottom:49.280000pt;}
.yb{bottom:51.360000pt;}
.yb9{bottom:57.960000pt;}
.yc3{bottom:58.080000pt;}
.yc8{bottom:58.106667pt;}
.y4{bottom:60.800000pt;}
.yb4{bottom:66.760000pt;}
.ybe{bottom:66.880000pt;}
.ycb{bottom:66.906667pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.560000pt;}
.yc2{bottom:75.680000pt;}
.yca{bottom:75.706667pt;}
.yb8{bottom:75.720000pt;}
.yc5{bottom:84.480000pt;}
.ybb{bottom:84.520000pt;}
.y3{bottom:85.626667pt;}
.y111{bottom:91.520000pt;}
.yb1{bottom:91.840000pt;}
.yc1{bottom:93.280000pt;}
.yc9{bottom:93.306667pt;}
.yb7{bottom:93.320000pt;}
.yfb{bottom:96.160000pt;}
.ye3{bottom:102.080000pt;}
.y114{bottom:102.560000pt;}
.y95{bottom:104.480000pt;}
.y110{bottom:109.120000pt;}
.yb0{bottom:109.440000pt;}
.yb6{bottom:110.920000pt;}
.yc0{bottom:111.040000pt;}
.y2{bottom:111.706667pt;}
.yfa{bottom:113.760000pt;}
.y68{bottom:114.080000pt;}
.y3a{bottom:118.560000pt;}
.ye2{bottom:119.840000pt;}
.y113{bottom:120.160000pt;}
.y94{bottom:122.080000pt;}
.y10f{bottom:126.720000pt;}
.yaf{bottom:127.040000pt;}
.yf9{bottom:131.360000pt;}
.y67{bottom:131.840000pt;}
.y39{bottom:136.186667pt;}
.ye1{bottom:137.466667pt;}
.y112{bottom:137.786667pt;}
.y93{bottom:139.866667pt;}
.y10e{bottom:144.346667pt;}
.yae{bottom:144.666667pt;}
.yf8{bottom:148.986667pt;}
.y66{bottom:149.466667pt;}
.y38{bottom:153.786667pt;}
.ye0{bottom:155.066667pt;}
.y92{bottom:157.466667pt;}
.y10d{bottom:162.106667pt;}
.yad{bottom:162.266667pt;}
.yf7{bottom:166.586667pt;}
.y65{bottom:167.066667pt;}
.y37{bottom:171.386667pt;}
.ydf{bottom:172.666667pt;}
.y91{bottom:175.066667pt;}
.y10c{bottom:179.706667pt;}
.yac{bottom:180.026667pt;}
.yf6{bottom:184.346667pt;}
.y64{bottom:184.666667pt;}
.ye9{bottom:188.826667pt;}
.y36{bottom:188.986667pt;}
.yde{bottom:190.266667pt;}
.y90{bottom:192.666667pt;}
.y10b{bottom:197.306667pt;}
.yab{bottom:197.626667pt;}
.yf5{bottom:201.946667pt;}
.y63{bottom:202.266667pt;}
.y35{bottom:206.746667pt;}
.ydd{bottom:208.026667pt;}
.y8f{bottom:210.266667pt;}
.y10a{bottom:214.906667pt;}
.yaa{bottom:215.226667pt;}
.yf4{bottom:219.546667pt;}
.y62{bottom:220.026667pt;}
.y34{bottom:224.346667pt;}
.ydc{bottom:225.626667pt;}
.y8e{bottom:228.026667pt;}
.ya9{bottom:231.386667pt;}
.y109{bottom:232.506667pt;}
.yf3{bottom:234.906667pt;}
.y61{bottom:237.626667pt;}
.y33{bottom:241.946667pt;}
.ydb{bottom:243.226667pt;}
.y8d{bottom:245.626667pt;}
.ye7{bottom:245.786667pt;}
.y108{bottom:250.266667pt;}
.yf2{bottom:252.506667pt;}
.y60{bottom:255.226667pt;}
.y32{bottom:259.546667pt;}
.yda{bottom:260.826667pt;}
.y8c{bottom:263.226667pt;}
.y107{bottom:267.866667pt;}
.yf1{bottom:270.106667pt;}
.ya8{bottom:270.586667pt;}
.y5f{bottom:272.826667pt;}
.y31{bottom:277.146667pt;}
.yd9{bottom:278.426667pt;}
.y8b{bottom:280.826667pt;}
.y106{bottom:285.466667pt;}
.yf0{bottom:287.706667pt;}
.y5e{bottom:290.426667pt;}
.y30{bottom:294.906667pt;}
.yd8{bottom:296.186667pt;}
.y8a{bottom:298.426667pt;}
.ye5{bottom:302.586667pt;}
.y105{bottom:303.066667pt;}
.yef{bottom:305.466667pt;}
.y5d{bottom:308.186667pt;}
.ya7{bottom:309.946667pt;}
.y2f{bottom:312.506667pt;}
.yd7{bottom:313.786667pt;}
.y89{bottom:316.186667pt;}
.y104{bottom:320.666667pt;}
.yee{bottom:323.066667pt;}
.y5c{bottom:325.786667pt;}
.y2e{bottom:330.106667pt;}
.yd6{bottom:331.386667pt;}
.y88{bottom:333.786667pt;}
.y103{bottom:338.426667pt;}
.yed{bottom:340.666667pt;}
.y5b{bottom:343.386667pt;}
.y2d{bottom:347.706667pt;}
.yd5{bottom:348.986667pt;}
.ya4{bottom:349.146667pt;}
.y87{bottom:351.386667pt;}
.yec{bottom:356.066667pt;}
.ye4{bottom:360.226667pt;}
.y5a{bottom:361.026667pt;}
.y2c{bottom:365.346667pt;}
.yd4{bottom:366.626667pt;}
.y86{bottom:369.026667pt;}
.yeb{bottom:371.426667pt;}
.y102{bottom:373.666667pt;}
.y59{bottom:378.626667pt;}
.y2b{bottom:383.106667pt;}
.yd3{bottom:384.386667pt;}
.y85{bottom:386.626667pt;}
.yea{bottom:386.786667pt;}
.ya3{bottom:388.546667pt;}
.y101{bottom:391.266667pt;}
.y58{bottom:396.386667pt;}
.y2a{bottom:400.706667pt;}
.yd2{bottom:401.986667pt;}
.y84{bottom:404.386667pt;}
.y100{bottom:408.866667pt;}
.y57{bottom:413.986667pt;}
.y29{bottom:418.306667pt;}
.yd1{bottom:419.586667pt;}
.y83{bottom:421.986667pt;}
.yff{bottom:426.626667pt;}
.ya2{bottom:427.746667pt;}
.y56{bottom:431.586667pt;}
.y28{bottom:435.906667pt;}
.yd0{bottom:437.186667pt;}
.y82{bottom:439.586667pt;}
.yfe{bottom:444.226667pt;}
.y55{bottom:449.186667pt;}
.y27{bottom:453.506667pt;}
.ycf{bottom:454.786667pt;}
.y81{bottom:457.186667pt;}
.yfd{bottom:459.586667pt;}
.y54{bottom:466.786667pt;}
.y9f{bottom:466.946667pt;}
.y26{bottom:471.266667pt;}
.yce{bottom:472.546667pt;}
.y80{bottom:474.786667pt;}
.yfc{bottom:474.946667pt;}
.y53{bottom:484.546667pt;}
.y25{bottom:488.866667pt;}
.ycd{bottom:490.146667pt;}
.y7f{bottom:492.546667pt;}
.y52{bottom:502.146667pt;}
.y9d{bottom:506.306667pt;}
.y24{bottom:506.466667pt;}
.ycc{bottom:507.746667pt;}
.y7e{bottom:510.146667pt;}
.y51{bottom:519.746667pt;}
.yc7{bottom:523.906667pt;}
.y23{bottom:524.066667pt;}
.y7d{bottom:527.746667pt;}
.y50{bottom:537.346667pt;}
.y22{bottom:541.666667pt;}
.y7c{bottom:545.346667pt;}
.y9a{bottom:545.506667pt;}
.y4f{bottom:554.946667pt;}
.y21{bottom:559.426667pt;}
.y7b{bottom:562.946667pt;}
.y4e{bottom:572.706667pt;}
.y20{bottom:577.053333pt;}
.y7a{bottom:580.733333pt;}
.y98{bottom:584.893333pt;}
.y4d{bottom:590.333333pt;}
.y1f{bottom:594.653333pt;}
.y79{bottom:598.333333pt;}
.y4c{bottom:607.933333pt;}
.y1e{bottom:612.253333pt;}
.y78{bottom:615.933333pt;}
.y96{bottom:624.733333pt;}
.y4b{bottom:625.533333pt;}
.y1d{bottom:629.853333pt;}
.y77{bottom:633.533333pt;}
.ybd{bottom:633.693333pt;}
.y4a{bottom:643.133333pt;}
.y1c{bottom:647.613333pt;}
.y76{bottom:651.133333pt;}
.y49{bottom:660.893333pt;}
.y1b{bottom:665.213333pt;}
.y75{bottom:668.893333pt;}
.y48{bottom:678.493333pt;}
.y1a{bottom:682.813333pt;}
.y74{bottom:686.493333pt;}
.y47{bottom:696.093333pt;}
.y19{bottom:700.413333pt;}
.y73{bottom:704.093333pt;}
.y46{bottom:713.693333pt;}
.y18{bottom:718.013333pt;}
.y72{bottom:721.693333pt;}
.y45{bottom:731.293333pt;}
.y17{bottom:735.773333pt;}
.y71{bottom:739.293333pt;}
.y44{bottom:749.053333pt;}
.y16{bottom:753.373333pt;}
.y70{bottom:757.053333pt;}
.yb3{bottom:761.213333pt;}
.y43{bottom:766.653333pt;}
.y15{bottom:770.973333pt;}
.y6f{bottom:774.653333pt;}
.y42{bottom:784.253333pt;}
.y14{bottom:788.573333pt;}
.y6e{bottom:792.253333pt;}
.y41{bottom:801.893333pt;}
.y6d{bottom:809.893333pt;}
.y13{bottom:810.853333pt;}
.y40{bottom:819.493333pt;}
.y12{bottom:824.453333pt;}
.y6c{bottom:827.493333pt;}
.y3f{bottom:837.253333pt;}
.y11{bottom:843.333333pt;}
.y6b{bottom:845.253333pt;}
.y3e{bottom:854.853333pt;}
.y6a{bottom:862.853333pt;}
.y10{bottom:864.133333pt;}
.y3d{bottom:872.453333pt;}
.y69{bottom:880.453333pt;}
.yb2{bottom:889.253333pt;}
.yf{bottom:892.293333pt;}
.y3c{bottom:898.053333pt;}
.y3b{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h7{height:2.295000pt;}
.h11{height:17.600000pt;}
.ha{height:19.360000pt;}
.h8{height:29.760000pt;}
.he{height:30.982500pt;}
.h13{height:35.200000pt;}
.h15{height:35.360000pt;}
.h14{height:35.392000pt;}
.hf{height:37.479688pt;}
.h4{height:41.543750pt;}
.h12{height:43.108125pt;}
.h16{height:43.782500pt;}
.hd{height:47.310625pt;}
.h5{height:47.621250pt;}
.h10{height:49.542500pt;}
.h9{height:52.785000pt;}
.h1b{height:52.800000pt;}
.h1a{height:52.960000pt;}
.h3{height:56.445312pt;}
.hb{height:60.057813pt;}
.hc{height:69.076875pt;}
.h6{height:100.032000pt;}
.h19{height:105.792000pt;}
.h17{height:123.392000pt;}
.h18{height:123.520000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.640000pt;}
.w6{width:79.072000pt;}
.wc{width:98.272000pt;}
.w9{width:110.752000pt;}
.w3{width:117.312000pt;}
.wf{width:184.986667pt;}
.wd{width:200.986667pt;}
.we{width:203.386667pt;}
.w7{width:278.946667pt;}
.wb{width:283.586667pt;}
.wa{width:295.746667pt;}
.w8{width:332.066667pt;}
.w2{width:581.733333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:0.960000pt;}
.x2{left:7.200000pt;}
.x1{left:47.520000pt;}
.xb{left:50.080000pt;}
.x6{left:64.959988pt;}
.x15{left:71.999988pt;}
.x16{left:96.031988pt;}
.x4{left:105.146667pt;}
.xd{left:131.072000pt;}
.x7{left:134.586655pt;}
.x14{left:142.906655pt;}
.x11{left:150.426667pt;}
.x9{left:156.666655pt;}
.xf{left:162.746667pt;}
.xa{left:177.946655pt;}
.x12{left:353.506667pt;}
.x8{left:396.893322pt;}
.xe{left:411.933333pt;}
.x10{left:460.413333pt;}
.x13{left:559.013333pt;}
.x3{left:629.253333pt;}
.x5{left:737.280000pt;}
}




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