
    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_eacdb10d1d19d547346c743d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_f6977d38b9d450b4e533b45c.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_a3ecfa75c85e79250715eebb.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_471efcfe3d2577617d8f3a80.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.978027;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_5a8eeb3688860964718cf70b.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a480403690f4eb1c33a02f58.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_e5f4577a98a99939b73d0d5f.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.lsd{letter-spacing:-1.200000px;}
.ls7{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.480000px;}
.lsc{letter-spacing:-0.420000px;}
.ls8{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.018000px;}
.ls2{letter-spacing:0.060000px;}
.ls0{letter-spacing:0.138000px;}
.ls5{letter-spacing:0.240000px;}
.lsa{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.384000px;}
.ls1{letter-spacing:0.600000px;}
.lse{letter-spacing:45.720000px;}
.lsb{letter-spacing:63.720000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-60.000000px;}
.ws1{word-spacing:-18.384000px;}
.ws0{word-spacing:-15.054000px;}
.ws2{word-spacing:-15.000000px;}
.ws9{word-spacing:-14.580000px;}
.ws4{word-spacing:-14.100000px;}
.wsa{word-spacing:-13.800000px;}
.ws5{word-spacing:-13.500000px;}
.ws6{word-spacing:-12.900000px;}
.ws7{word-spacing:-11.136000px;}
.ws3{word-spacing:0.000000px;}
._b{margin-left:-2.244000px;}
._0{margin-left:-1.056000px;}
._1{width:1.230000px;}
._4{width:2.496000px;}
._c{width:3.660000px;}
._7{width:4.860000px;}
._d{width:6.852000px;}
._8{width:8.040000px;}
._9{width:9.060000px;}
._a{width:10.230000px;}
._11{width:11.700000px;}
._12{width:13.500000px;}
._13{width:16.740000px;}
._14{width:18.180000px;}
._15{width:19.980000px;}
._5{width:22.980000px;}
._6{width:24.216000px;}
._16{width:25.674000px;}
._f{width:27.486000px;}
._e{width:29.520000px;}
._10{width:31.590000px;}
._18{width:33.444000px;}
._17{width:34.620000px;}
._2{width:336.180000px;}
._3{width:1188.480000px;}
.fc5{color:transparent;}
.fc4{color:rgb(31,73,125);}
.fc3{color:rgb(192,0,0);}
.fc1{color:rgb(162,0,0);}
.fc6{color:rgb(127,127,127);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fs7{font-size:30.000000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs0{font-size:66.000000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y93{bottom:3.300000px;}
.y90{bottom:3.600000px;}
.y111{bottom:3.615000px;}
.yfc{bottom:3.900000px;}
.yf{bottom:3.915000px;}
.y101{bottom:4.185000px;}
.ycf{bottom:4.200000px;}
.ydb{bottom:4.215000px;}
.yd4{bottom:4.245000px;}
.yd8{bottom:4.485000px;}
.ycd{bottom:4.500000px;}
.yd6{bottom:4.515000px;}
.y114{bottom:4.785000px;}
.y91{bottom:4.800000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y119{bottom:5.415000px;}
.yc9{bottom:6.000000px;}
.y8e{bottom:6.300000px;}
.y94{bottom:6.600000px;}
.y96{bottom:6.900000px;}
.y40{bottom:10.500000px;}
.y5{bottom:12.337500px;}
.yfe{bottom:21.600000px;}
.y113{bottom:21.885000px;}
.y3f{bottom:27.900000px;}
.y3e{bottom:45.600000px;}
.y4{bottom:46.800000px;}
.y1{bottom:57.037500px;}
.y3d{bottom:65.145000px;}
.y42{bottom:74.137500px;}
.y3c{bottom:79.845000px;}
.y3{bottom:81.337500px;}
.y3b{bottom:96.930000px;}
.y3a{bottom:114.345000px;}
.y31{bottom:115.837500px;}
.y6a{bottom:117.037500px;}
.yc2{bottom:123.637500px;}
.y137{bottom:126.037500px;}
.yfd{bottom:126.637500px;}
.y9f{bottom:127.837500px;}
.y39{bottom:131.430000px;}
.y30{bottom:133.237500px;}
.y136{bottom:143.437500px;}
.y9e{bottom:145.237500px;}
.yff{bottom:145.537500px;}
.y38{bottom:148.845000px;}
.y2f{bottom:149.737500px;}
.y69{bottom:151.830000px;}
.yc1{bottom:154.545000px;}
.y135{bottom:160.545000px;}
.y9d{bottom:162.330000px;}
.yfb{bottom:163.530000px;}
.y2e{bottom:164.130000px;}
.y37{bottom:165.945000px;}
.ye8{bottom:174.945000px;}
.y134{bottom:177.975000px;}
.y9c{bottom:179.775000px;}
.y2d{bottom:181.575000px;}
.ye6{bottom:182.175000px;}
.y36{bottom:183.345000px;}
.yc0{bottom:183.675000px;}
.ycb{bottom:184.230000px;}
.y68{bottom:186.675000px;}
.ye7{bottom:192.330000px;}
.y133{bottom:195.075000px;}
.y9b{bottom:196.275000px;}
.y2c{bottom:198.675000px;}
.y35{bottom:200.445000px;}
.yfa{bottom:201.075000px;}
.y9a{bottom:210.375000px;}
.y132{bottom:212.475000px;}
.ybf{bottom:213.075000px;}
.y2b{bottom:216.075000px;}
.y34{bottom:217.845000px;}
.yf9{bottom:219.975000px;}
.y67{bottom:221.475000px;}
.y99{bottom:223.575000px;}
.y98{bottom:226.875000px;}
.y131{bottom:229.575000px;}
.y2a{bottom:233.175000px;}
.y33{bottom:235.575000px;}
.yf8{bottom:239.175000px;}
.ybe{bottom:242.175000px;}
.y130{bottom:246.975000px;}
.y29{bottom:250.875000px;}
.y97{bottom:251.775000px;}
.y66{bottom:256.275000px;}
.yf7{bottom:258.075000px;}
.y12f{bottom:264.075000px;}
.y28{bottom:271.275000px;}
.ybd{bottom:271.575000px;}
.y65{bottom:276.375000px;}
.y95{bottom:276.675000px;}
.yf6{bottom:276.975000px;}
.y12e{bottom:281.475000px;}
.y27{bottom:288.375000px;}
.yf5{bottom:295.875000px;}
.y64{bottom:296.175000px;}
.y12d{bottom:298.575000px;}
.ybc{bottom:300.675000px;}
.y92{bottom:301.575000px;}
.y26{bottom:305.775000px;}
.yf4{bottom:315.075000px;}
.y63{bottom:315.975000px;}
.y12c{bottom:316.275000px;}
.y25{bottom:322.875000px;}
.y8f{bottom:326.175000px;}
.ybb{bottom:330.075000px;}
.yf3{bottom:333.975000px;}
.y62{bottom:335.775000px;}
.y24{bottom:340.275000px;}
.y8d{bottom:346.620000px;}
.y12b{bottom:348.420000px;}
.yf2{bottom:352.905000px;}
.y23{bottom:357.405000px;}
.yba{bottom:359.220000px;}
.y12a{bottom:365.820000px;}
.y61{bottom:370.620000px;}
.yf1{bottom:371.820000px;}
.y8c{bottom:373.620000px;}
.y22{bottom:374.820000px;}
.y129{bottom:383.220000px;}
.yb9{bottom:388.605000px;}
.y60{bottom:390.420000px;}
.y8b{bottom:391.005000px;}
.y21{bottom:391.905000px;}
.y128{bottom:400.320000px;}
.y8a{bottom:407.505000px;}
.y20{bottom:409.320000px;}
.yf0{bottom:409.905000px;}
.yb8{bottom:417.720000px;}
.y89{bottom:421.920000px;}
.y1f{bottom:426.420000px;}
.y5f{bottom:427.005000px;}
.yef{bottom:428.820000px;}
.y127{bottom:429.420000px;}
.y88{bottom:439.320000px;}
.y1e{bottom:443.820000px;}
.y126{bottom:446.820000px;}
.yb7{bottom:447.120000px;}
.yee{bottom:447.705000px;}
.y87{bottom:456.420000px;}
.y1d{bottom:460.920000px;}
.y125{bottom:464.205000px;}
.y5e{bottom:465.420000px;}
.yed{bottom:466.905000px;}
.y86{bottom:473.505000px;}
.yb6{bottom:476.205000px;}
.y1c{bottom:478.320000px;}
.y124{bottom:481.320000px;}
.yec{bottom:485.820000px;}
.y85{bottom:490.920000px;}
.yb5{bottom:493.920000px;}
.y1b{bottom:495.405000px;}
.y5d{bottom:503.505000px;}
.yeb{bottom:504.720000px;}
.y84{bottom:508.620000px;}
.y123{bottom:510.405000px;}
.yb4{bottom:511.005000px;}
.y1a{bottom:512.820000px;}
.yea{bottom:523.650000px;}
.y122{bottom:527.850000px;}
.y83{bottom:528.150000px;}
.yb3{bottom:528.450000px;}
.y19{bottom:530.550000px;}
.y5c{bottom:541.650000px;}
.y82{bottom:542.550000px;}
.ye9{bottom:542.850000px;}
.y121{bottom:545.250000px;}
.yb2{bottom:545.550000px;}
.y18{bottom:550.650000px;}
.y81{bottom:559.950000px;}
.ye5{bottom:560.850000px;}
.y120{bottom:562.350000px;}
.yb1{bottom:574.650000px;}
.y80{bottom:577.050000px;}
.yca{bottom:579.150000px;}
.y5b{bottom:579.750000px;}
.y7f{bottom:591.750000px;}
.yb0{bottom:592.050000px;}
.y11f{bottom:596.850000px;}
.y7e{bottom:597.750000px;}
.ye4{bottom:598.050000px;}
.y11e{bottom:614.250000px;}
.y7d{bottom:616.050000px;}
.ye3{bottom:617.250000px;}
.y5a{bottom:617.850000px;}
.yaf{bottom:621.150000px;}
.y32{bottom:622.350000px;}
.y11d{bottom:631.950000px;}
.y7c{bottom:634.350000px;}
.ye2{bottom:636.150000px;}
.yae{bottom:638.550000px;}
.y7b{bottom:652.950000px;}
.ye1{bottom:655.050000px;}
.yad{bottom:655.950000px;}
.y59{bottom:656.250000px;}
.y11c{bottom:666.750000px;}
.y7a{bottom:670.050000px;}
.yac{bottom:673.050000px;}
.ye0{bottom:673.950000px;}
.y11b{bottom:684.480000px;}
.y79{bottom:688.695000px;}
.ydf{bottom:693.195000px;}
.y58{bottom:694.380000px;}
.y11a{bottom:701.580000px;}
.yab{bottom:702.195000px;}
.y78{bottom:706.095000px;}
.yde{bottom:712.095000px;}
.y118{bottom:716.280000px;}
.yaa{bottom:720.795000px;}
.y77{bottom:723.480000px;}
.ydd{bottom:730.980000px;}
.y57{bottom:732.495000px;}
.y117{bottom:738.480000px;}
.y76{bottom:740.580000px;}
.ydc{bottom:749.880000px;}
.ya9{bottom:750.195000px;}
.y116{bottom:757.080000px;}
.y112{bottom:757.095000px;}
.y75{bottom:757.995000px;}
.y56{bottom:763.380000px;}
.yda{bottom:769.080000px;}
.y115{bottom:775.995000px;}
.ya8{bottom:779.295000px;}
.y74{bottom:784.995000px;}
.yd9{bottom:787.995000px;}
.y55{bottom:792.480000px;}
.y110{bottom:794.880000px;}
.yd7{bottom:806.895000px;}
.ya7{bottom:808.695000px;}
.y54{bottom:810.195000px;}
.y10f{bottom:813.480000px;}
.yd5{bottom:825.780000px;}
.y53{bottom:827.295000px;}
.y10e{bottom:832.395000px;}
.ya6{bottom:837.795000px;}
.y52{bottom:844.695000px;}
.yd3{bottom:844.980000px;}
.y10d{bottom:851.325000px;}
.y51{bottom:861.825000px;}
.y73{bottom:862.125000px;}
.yd2{bottom:863.925000px;}
.ya5{bottom:867.225000px;}
.y10c{bottom:870.225000px;}
.y50{bottom:879.225000px;}
.yd1{bottom:882.825000px;}
.y10b{bottom:889.425000px;}
.y4f{bottom:896.325000px;}
.y72{bottom:896.925000px;}
.yd0{bottom:901.725000px;}
.y17{bottom:905.925000px;}
.y10a{bottom:908.325000px;}
.y4e{bottom:913.725000px;}
.yce{bottom:920.925000px;}
.y16{bottom:925.725000px;}
.y109{bottom:927.225000px;}
.y71{bottom:931.725000px;}
.ycc{bottom:939.825000px;}
.y4d{bottom:942.525000px;}
.y15{bottom:944.325000px;}
.y108{bottom:946.125000px;}
.ya4{bottom:954.825000px;}
.yc8{bottom:958.725000px;}
.y4c{bottom:960.225000px;}
.y14{bottom:962.925000px;}
.y107{bottom:965.325000px;}
.y70{bottom:966.525000px;}
.y13b{bottom:967.125000px;}
.y4b{bottom:977.325000px;}
.y13{bottom:980.625000px;}
.ya3{bottom:984.225000px;}
.yc7{bottom:987.825000px;}
.y12{bottom:997.725000px;}
.y13a{bottom:999.525000px;}
.y6f{bottom:1001.625000px;}
.y106{bottom:1003.125000px;}
.yc6{bottom:1005.525000px;}
.y4a{bottom:1006.425000px;}
.ya2{bottom:1013.325000px;}
.y11{bottom:1015.425000px;}
.y139{bottom:1017.570000px;}
.y105{bottom:1022.070000px;}
.y49{bottom:1023.870000px;}
.y10{bottom:1033.755000px;}
.y6e{bottom:1036.455000px;}
.yc5{bottom:1037.370000px;}
.y138{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y48{bottom:1041.255000px;}
.ya1{bottom:1042.755000px;}
.yc4{bottom:1055.070000px;}
.y47{bottom:1058.370000px;}
.y104{bottom:1060.155000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y6d{bottom:1071.255000px;}
.ya0{bottom:1071.870000px;}
.yc3{bottom:1072.170000px;}
.y46{bottom:1074.870000px;}
.y103{bottom:1079.070000px;}
.ya{bottom:1083.570000px;}
.y45{bottom:1089.570000px;}
.y9{bottom:1097.955000px;}
.y6c{bottom:1106.070000px;}
.y44{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y102{bottom:1117.170000px;}
.y43{bottom:1124.070000px;}
.y7{bottom:1133.670000px;}
.y100{bottom:1136.070000px;}
.y6b{bottom:1140.870000px;}
.y6{bottom:1141.170000px;}
.y41{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h19{height:8.466797px;}
.h5{height:12.700195px;}
.h23{height:17.100000px;}
.h26{height:17.400000px;}
.h21{height:17.700000px;}
.h24{height:17.737500px;}
.h27{height:17.985000px;}
.h1d{height:18.000000px;}
.h1e{height:18.037500px;}
.h1f{height:18.285000px;}
.h1c{height:18.300000px;}
.h20{height:18.337500px;}
.h16{height:19.537500px;}
.hb{height:20.947266px;}
.ha{height:21.000000px;}
.h29{height:21.600000px;}
.h1a{height:22.200000px;}
.h15{height:22.800000px;}
.h17{height:24.000000px;}
.h18{height:24.300000px;}
.hf{height:33.515625px;}
.h7{height:33.867188px;}
.h12{height:34.664062px;}
.h3{height:36.000000px;}
.h25{height:36.300000px;}
.h28{height:37.200000px;}
.h8{height:37.705078px;}
.hd{height:38.100586px;}
.h13{height:41.159180px;}
.hc{height:41.894531px;}
.h4{height:42.333984px;}
.h14{height:43.681641px;}
.he{height:45.732422px;}
.h6{height:50.800781px;}
.h11{height:51.996094px;}
.h1{height:65.645508px;}
.h2{height:97.200000px;}
.h10{height:252.375000px;}
.h22{height:377.775000px;}
.h1b{height:378.975000px;}
.h0{height:1263.000000px;}
.w4{width:72.300000px;}
.wd{width:86.737500px;}
.w3{width:108.000000px;}
.we{width:126.337500px;}
.w9{width:147.937500px;}
.w8{width:168.030000px;}
.wc{width:194.745000px;}
.wa{width:201.975000px;}
.w6{width:252.975000px;}
.wf{width:282.375000px;}
.wb{width:316.575000px;}
.w5{width:483.450000px;}
.w7{width:731.025000px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.800000px;}
.x2{left:10.799998px;}
.x15{left:16.200000px;}
.x24{left:19.800000px;}
.x3{left:22.200000px;}
.x4{left:23.400000px;}
.x25{left:24.900000px;}
.x27{left:29.400000px;}
.x21{left:37.500000px;}
.x1d{left:41.400000px;}
.x23{left:42.600000px;}
.x1b{left:45.000000px;}
.x1f{left:53.400000px;}
.x22{left:59.700000px;}
.x1c{left:70.830000px;}
.xc{left:78.337500px;}
.x26{left:79.492500px;}
.x1{left:81.037487px;}
.x14{left:82.237500px;}
.x13{left:107.137487px;}
.x10{left:109.837487px;}
.xf{left:116.445000px;}
.x17{left:132.337487px;}
.xa{left:153.629987px;}
.xd{left:241.567500px;}
.x19{left:249.975000px;}
.x20{left:276.975000px;}
.x1e{left:326.219987px;}
.x7{left:363.419987px;}
.x11{left:376.919987px;}
.x5{left:388.619987px;}
.x1a{left:398.520000px;}
.x12{left:446.549987px;}
.x16{left:555.194987px;}
.xe{left:561.780000px;}
.x9{left:614.879987px;}
.x8{left:648.194987px;}
.x6{left:696.524987px;}
.xb{left:812.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsd{letter-spacing:-1.066667pt;}
.ls7{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.426667pt;}
.lsc{letter-spacing:-0.373333pt;}
.ls8{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.016000pt;}
.ls2{letter-spacing:0.053333pt;}
.ls0{letter-spacing:0.122667pt;}
.ls5{letter-spacing:0.213333pt;}
.lsa{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls1{letter-spacing:0.533333pt;}
.lse{letter-spacing:40.640000pt;}
.lsb{letter-spacing:56.640000pt;}
.ws8{word-spacing:-53.333333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws0{word-spacing:-13.381333pt;}
.ws2{word-spacing:-13.333333pt;}
.ws9{word-spacing:-12.960000pt;}
.ws4{word-spacing:-12.533333pt;}
.wsa{word-spacing:-12.266667pt;}
.ws5{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.466667pt;}
.ws7{word-spacing:-9.898667pt;}
.ws3{word-spacing:0.000000pt;}
._b{margin-left:-1.994667pt;}
._0{margin-left:-0.938667pt;}
._1{width:1.093333pt;}
._4{width:2.218667pt;}
._c{width:3.253333pt;}
._7{width:4.320000pt;}
._d{width:6.090667pt;}
._8{width:7.146667pt;}
._9{width:8.053333pt;}
._a{width:9.093333pt;}
._11{width:10.400000pt;}
._12{width:12.000000pt;}
._13{width:14.880000pt;}
._14{width:16.160000pt;}
._15{width:17.760000pt;}
._5{width:20.426667pt;}
._6{width:21.525333pt;}
._16{width:22.821333pt;}
._f{width:24.432000pt;}
._e{width:26.240000pt;}
._10{width:28.080000pt;}
._18{width:29.728000pt;}
._17{width:30.773333pt;}
._2{width:298.826667pt;}
._3{width:1056.426667pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fs7{font-size:26.666667pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs0{font-size:58.666667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y93{bottom:2.933333pt;}
.y90{bottom:3.200000pt;}
.y111{bottom:3.213333pt;}
.yfc{bottom:3.466667pt;}
.yf{bottom:3.480000pt;}
.y101{bottom:3.720000pt;}
.ycf{bottom:3.733333pt;}
.ydb{bottom:3.746667pt;}
.yd4{bottom:3.773333pt;}
.yd8{bottom:3.986667pt;}
.ycd{bottom:4.000000pt;}
.yd6{bottom:4.013333pt;}
.y114{bottom:4.253333pt;}
.y91{bottom:4.266667pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y119{bottom:4.813333pt;}
.yc9{bottom:5.333333pt;}
.y8e{bottom:5.600000pt;}
.y94{bottom:5.866667pt;}
.y96{bottom:6.133333pt;}
.y40{bottom:9.333333pt;}
.y5{bottom:10.966667pt;}
.yfe{bottom:19.200000pt;}
.y113{bottom:19.453333pt;}
.y3f{bottom:24.800000pt;}
.y3e{bottom:40.533333pt;}
.y4{bottom:41.600000pt;}
.y1{bottom:50.700000pt;}
.y3d{bottom:57.906667pt;}
.y42{bottom:65.900000pt;}
.y3c{bottom:70.973333pt;}
.y3{bottom:72.300000pt;}
.y3b{bottom:86.160000pt;}
.y3a{bottom:101.640000pt;}
.y31{bottom:102.966667pt;}
.y6a{bottom:104.033333pt;}
.yc2{bottom:109.900000pt;}
.y137{bottom:112.033333pt;}
.yfd{bottom:112.566667pt;}
.y9f{bottom:113.633333pt;}
.y39{bottom:116.826667pt;}
.y30{bottom:118.433333pt;}
.y136{bottom:127.500000pt;}
.y9e{bottom:129.100000pt;}
.yff{bottom:129.366667pt;}
.y38{bottom:132.306667pt;}
.y2f{bottom:133.100000pt;}
.y69{bottom:134.960000pt;}
.yc1{bottom:137.373333pt;}
.y135{bottom:142.706667pt;}
.y9d{bottom:144.293333pt;}
.yfb{bottom:145.360000pt;}
.y2e{bottom:145.893333pt;}
.y37{bottom:147.506667pt;}
.ye8{bottom:155.506667pt;}
.y134{bottom:158.200000pt;}
.y9c{bottom:159.800000pt;}
.y2d{bottom:161.400000pt;}
.ye6{bottom:161.933333pt;}
.y36{bottom:162.973333pt;}
.yc0{bottom:163.266667pt;}
.ycb{bottom:163.760000pt;}
.y68{bottom:165.933333pt;}
.ye7{bottom:170.960000pt;}
.y133{bottom:173.400000pt;}
.y9b{bottom:174.466667pt;}
.y2c{bottom:176.600000pt;}
.y35{bottom:178.173333pt;}
.yfa{bottom:178.733333pt;}
.y9a{bottom:187.000000pt;}
.y132{bottom:188.866667pt;}
.ybf{bottom:189.400000pt;}
.y2b{bottom:192.066667pt;}
.y34{bottom:193.640000pt;}
.yf9{bottom:195.533333pt;}
.y67{bottom:196.866667pt;}
.y99{bottom:198.733333pt;}
.y98{bottom:201.666667pt;}
.y131{bottom:204.066667pt;}
.y2a{bottom:207.266667pt;}
.y33{bottom:209.400000pt;}
.yf8{bottom:212.600000pt;}
.ybe{bottom:215.266667pt;}
.y130{bottom:219.533333pt;}
.y29{bottom:223.000000pt;}
.y97{bottom:223.800000pt;}
.y66{bottom:227.800000pt;}
.yf7{bottom:229.400000pt;}
.y12f{bottom:234.733333pt;}
.y28{bottom:241.133333pt;}
.ybd{bottom:241.400000pt;}
.y65{bottom:245.666667pt;}
.y95{bottom:245.933333pt;}
.yf6{bottom:246.200000pt;}
.y12e{bottom:250.200000pt;}
.y27{bottom:256.333333pt;}
.yf5{bottom:263.000000pt;}
.y64{bottom:263.266667pt;}
.y12d{bottom:265.400000pt;}
.ybc{bottom:267.266667pt;}
.y92{bottom:268.066667pt;}
.y26{bottom:271.800000pt;}
.yf4{bottom:280.066667pt;}
.y63{bottom:280.866667pt;}
.y12c{bottom:281.133333pt;}
.y25{bottom:287.000000pt;}
.y8f{bottom:289.933333pt;}
.ybb{bottom:293.400000pt;}
.yf3{bottom:296.866667pt;}
.y62{bottom:298.466667pt;}
.y24{bottom:302.466667pt;}
.y8d{bottom:308.106667pt;}
.y12b{bottom:309.706667pt;}
.yf2{bottom:313.693333pt;}
.y23{bottom:317.693333pt;}
.yba{bottom:319.306667pt;}
.y12a{bottom:325.173333pt;}
.y61{bottom:329.440000pt;}
.yf1{bottom:330.506667pt;}
.y8c{bottom:332.106667pt;}
.y22{bottom:333.173333pt;}
.y129{bottom:340.640000pt;}
.yb9{bottom:345.426667pt;}
.y60{bottom:347.040000pt;}
.y8b{bottom:347.560000pt;}
.y21{bottom:348.360000pt;}
.y128{bottom:355.840000pt;}
.y8a{bottom:362.226667pt;}
.y20{bottom:363.840000pt;}
.yf0{bottom:364.360000pt;}
.yb8{bottom:371.306667pt;}
.y89{bottom:375.040000pt;}
.y1f{bottom:379.040000pt;}
.y5f{bottom:379.560000pt;}
.yef{bottom:381.173333pt;}
.y127{bottom:381.706667pt;}
.y88{bottom:390.506667pt;}
.y1e{bottom:394.506667pt;}
.y126{bottom:397.173333pt;}
.yb7{bottom:397.440000pt;}
.yee{bottom:397.960000pt;}
.y87{bottom:405.706667pt;}
.y1d{bottom:409.706667pt;}
.y125{bottom:412.626667pt;}
.y5e{bottom:413.706667pt;}
.yed{bottom:415.026667pt;}
.y86{bottom:420.893333pt;}
.yb6{bottom:423.293333pt;}
.y1c{bottom:425.173333pt;}
.y124{bottom:427.840000pt;}
.yec{bottom:431.840000pt;}
.y85{bottom:436.373333pt;}
.yb5{bottom:439.040000pt;}
.y1b{bottom:440.360000pt;}
.y5d{bottom:447.560000pt;}
.yeb{bottom:448.640000pt;}
.y84{bottom:452.106667pt;}
.y123{bottom:453.693333pt;}
.yb4{bottom:454.226667pt;}
.y1a{bottom:455.840000pt;}
.yea{bottom:465.466667pt;}
.y122{bottom:469.200000pt;}
.y83{bottom:469.466667pt;}
.yb3{bottom:469.733333pt;}
.y19{bottom:471.600000pt;}
.y5c{bottom:481.466667pt;}
.y82{bottom:482.266667pt;}
.ye9{bottom:482.533333pt;}
.y121{bottom:484.666667pt;}
.yb2{bottom:484.933333pt;}
.y18{bottom:489.466667pt;}
.y81{bottom:497.733333pt;}
.ye5{bottom:498.533333pt;}
.y120{bottom:499.866667pt;}
.yb1{bottom:510.800000pt;}
.y80{bottom:512.933333pt;}
.yca{bottom:514.800000pt;}
.y5b{bottom:515.333333pt;}
.y7f{bottom:526.000000pt;}
.yb0{bottom:526.266667pt;}
.y11f{bottom:530.533333pt;}
.y7e{bottom:531.333333pt;}
.ye4{bottom:531.600000pt;}
.y11e{bottom:546.000000pt;}
.y7d{bottom:547.600000pt;}
.ye3{bottom:548.666667pt;}
.y5a{bottom:549.200000pt;}
.yaf{bottom:552.133333pt;}
.y32{bottom:553.200000pt;}
.y11d{bottom:561.733333pt;}
.y7c{bottom:563.866667pt;}
.ye2{bottom:565.466667pt;}
.yae{bottom:567.600000pt;}
.y7b{bottom:580.400000pt;}
.ye1{bottom:582.266667pt;}
.yad{bottom:583.066667pt;}
.y59{bottom:583.333333pt;}
.y11c{bottom:592.666667pt;}
.y7a{bottom:595.600000pt;}
.yac{bottom:598.266667pt;}
.ye0{bottom:599.066667pt;}
.y11b{bottom:608.426667pt;}
.y79{bottom:612.173333pt;}
.ydf{bottom:616.173333pt;}
.y58{bottom:617.226667pt;}
.y11a{bottom:623.626667pt;}
.yab{bottom:624.173333pt;}
.y78{bottom:627.640000pt;}
.yde{bottom:632.973333pt;}
.y118{bottom:636.693333pt;}
.yaa{bottom:640.706667pt;}
.y77{bottom:643.093333pt;}
.ydd{bottom:649.760000pt;}
.y57{bottom:651.106667pt;}
.y117{bottom:656.426667pt;}
.y76{bottom:658.293333pt;}
.ydc{bottom:666.560000pt;}
.ya9{bottom:666.840000pt;}
.y116{bottom:672.960000pt;}
.y112{bottom:672.973333pt;}
.y75{bottom:673.773333pt;}
.y56{bottom:678.560000pt;}
.yda{bottom:683.626667pt;}
.y115{bottom:689.773333pt;}
.ya8{bottom:692.706667pt;}
.y74{bottom:697.773333pt;}
.yd9{bottom:700.440000pt;}
.y55{bottom:704.426667pt;}
.y110{bottom:706.560000pt;}
.yd7{bottom:717.240000pt;}
.ya7{bottom:718.840000pt;}
.y54{bottom:720.173333pt;}
.y10f{bottom:723.093333pt;}
.yd5{bottom:734.026667pt;}
.y53{bottom:735.373333pt;}
.y10e{bottom:739.906667pt;}
.ya6{bottom:744.706667pt;}
.y52{bottom:750.840000pt;}
.yd3{bottom:751.093333pt;}
.y10d{bottom:756.733333pt;}
.y51{bottom:766.066667pt;}
.y73{bottom:766.333333pt;}
.yd2{bottom:767.933333pt;}
.ya5{bottom:770.866667pt;}
.y10c{bottom:773.533333pt;}
.y50{bottom:781.533333pt;}
.yd1{bottom:784.733333pt;}
.y10b{bottom:790.600000pt;}
.y4f{bottom:796.733333pt;}
.y72{bottom:797.266667pt;}
.yd0{bottom:801.533333pt;}
.y17{bottom:805.266667pt;}
.y10a{bottom:807.400000pt;}
.y4e{bottom:812.200000pt;}
.yce{bottom:818.600000pt;}
.y16{bottom:822.866667pt;}
.y109{bottom:824.200000pt;}
.y71{bottom:828.200000pt;}
.ycc{bottom:835.400000pt;}
.y4d{bottom:837.800000pt;}
.y15{bottom:839.400000pt;}
.y108{bottom:841.000000pt;}
.ya4{bottom:848.733333pt;}
.yc8{bottom:852.200000pt;}
.y4c{bottom:853.533333pt;}
.y14{bottom:855.933333pt;}
.y107{bottom:858.066667pt;}
.y70{bottom:859.133333pt;}
.y13b{bottom:859.666667pt;}
.y4b{bottom:868.733333pt;}
.y13{bottom:871.666667pt;}
.ya3{bottom:874.866667pt;}
.yc7{bottom:878.066667pt;}
.y12{bottom:886.866667pt;}
.y13a{bottom:888.466667pt;}
.y6f{bottom:890.333333pt;}
.y106{bottom:891.666667pt;}
.yc6{bottom:893.800000pt;}
.y4a{bottom:894.600000pt;}
.ya2{bottom:900.733333pt;}
.y11{bottom:902.600000pt;}
.y139{bottom:904.506667pt;}
.y105{bottom:908.506667pt;}
.y49{bottom:910.106667pt;}
.y10{bottom:918.893333pt;}
.y6e{bottom:921.293333pt;}
.yc5{bottom:922.106667pt;}
.y138{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y48{bottom:925.560000pt;}
.ya1{bottom:926.893333pt;}
.yc4{bottom:937.840000pt;}
.y47{bottom:940.773333pt;}
.y104{bottom:942.360000pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y6d{bottom:952.226667pt;}
.ya0{bottom:952.773333pt;}
.yc3{bottom:953.040000pt;}
.y46{bottom:955.440000pt;}
.y103{bottom:959.173333pt;}
.ya{bottom:963.173333pt;}
.y45{bottom:968.506667pt;}
.y9{bottom:975.960000pt;}
.y6c{bottom:983.173333pt;}
.y44{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y102{bottom:993.040000pt;}
.y43{bottom:999.173333pt;}
.y7{bottom:1007.706667pt;}
.y100{bottom:1009.840000pt;}
.y6b{bottom:1014.106667pt;}
.y6{bottom:1014.373333pt;}
.y41{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h19{height:7.526042pt;}
.h5{height:11.289062pt;}
.h23{height:15.200000pt;}
.h26{height:15.466667pt;}
.h21{height:15.733333pt;}
.h24{height:15.766667pt;}
.h27{height:15.986667pt;}
.h1d{height:16.000000pt;}
.h1e{height:16.033333pt;}
.h1f{height:16.253333pt;}
.h1c{height:16.266667pt;}
.h20{height:16.300000pt;}
.h16{height:17.366667pt;}
.hb{height:18.619792pt;}
.ha{height:18.666667pt;}
.h29{height:19.200000pt;}
.h1a{height:19.733333pt;}
.h15{height:20.266667pt;}
.h17{height:21.333333pt;}
.h18{height:21.600000pt;}
.hf{height:29.791667pt;}
.h7{height:30.104167pt;}
.h12{height:30.812500pt;}
.h3{height:32.000000pt;}
.h25{height:32.266667pt;}
.h28{height:33.066667pt;}
.h8{height:33.515625pt;}
.hd{height:33.867188pt;}
.h13{height:36.585938pt;}
.hc{height:37.239583pt;}
.h4{height:37.630208pt;}
.h14{height:38.828125pt;}
.he{height:40.651042pt;}
.h6{height:45.156250pt;}
.h11{height:46.218750pt;}
.h1{height:58.351562pt;}
.h2{height:86.400000pt;}
.h10{height:224.333333pt;}
.h22{height:335.800000pt;}
.h1b{height:336.866667pt;}
.h0{height:1122.666667pt;}
.w4{width:64.266667pt;}
.wd{width:77.100000pt;}
.w3{width:96.000000pt;}
.we{width:112.300000pt;}
.w9{width:131.500000pt;}
.w8{width:149.360000pt;}
.wc{width:173.106667pt;}
.wa{width:179.533333pt;}
.w6{width:224.866667pt;}
.wf{width:251.000000pt;}
.wb{width:281.400000pt;}
.w5{width:429.733333pt;}
.w7{width:649.800000pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.933333pt;}
.x2{left:9.599999pt;}
.x15{left:14.400000pt;}
.x24{left:17.600000pt;}
.x3{left:19.733333pt;}
.x4{left:20.800000pt;}
.x25{left:22.133333pt;}
.x27{left:26.133333pt;}
.x21{left:33.333333pt;}
.x1d{left:36.800000pt;}
.x23{left:37.866667pt;}
.x1b{left:40.000000pt;}
.x1f{left:47.466667pt;}
.x22{left:53.066667pt;}
.x1c{left:62.960000pt;}
.xc{left:69.633333pt;}
.x26{left:70.660000pt;}
.x1{left:72.033322pt;}
.x14{left:73.100000pt;}
.x13{left:95.233322pt;}
.x10{left:97.633322pt;}
.xf{left:103.506667pt;}
.x17{left:117.633322pt;}
.xa{left:136.559988pt;}
.xd{left:214.726667pt;}
.x19{left:222.200000pt;}
.x20{left:246.200000pt;}
.x1e{left:289.973322pt;}
.x7{left:323.039988pt;}
.x11{left:335.039988pt;}
.x5{left:345.439988pt;}
.x1a{left:354.240000pt;}
.x12{left:396.933322pt;}
.x16{left:493.506655pt;}
.xe{left:499.360000pt;}
.x9{left:546.559988pt;}
.x8{left:576.173322pt;}
.x6{left:619.133322pt;}
.xb{left:722.106655pt;}
}




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