
    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_29a2a803becd838d645fe51a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006836;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_945d4d39b762b143e1bc21aa.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.854004;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_1edfa8e515df74f2b9707cbd.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_f1d33941c3711fc470b253c6.woff2')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_fe50bf32f716fe79997ae002.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6336dca4f572571cb7220437.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.091309;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_611770947b1c383fc275872e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;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_7c7fc92f1c5c96e2b10d5248.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.968262;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_c2d5ce3a9ac0c297fac76dba.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.968262;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:ffa;src:url('chunks/assets/font_e95aa7898097bd6d249e51aa.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.854004;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:ffb;src:url('chunks/assets/font_ee6f02238fc156526314e62c.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.941406;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:ffc;src:url('chunks/assets/font_f72a80aa15910537dd7d2d19.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.945312;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:ffd;src:url('chunks/assets/font_1d17ae94b28e6ca12da6ccb2.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;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:ffe;src:url('chunks/assets/font_1b541c2fa482122e76663638.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.100098;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:fff;src:url('chunks/assets/font_6ba6a6abb19328000f9eb113.woff2')format("woff");}.fff{font-family:fff;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.ls1d{letter-spacing:-5.292000px;}
.ls13{letter-spacing:-4.116000px;}
.ls1b{letter-spacing:-0.612000px;}
.ls1c{letter-spacing:-0.540000px;}
.lsa{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.223800px;}
.lsf{letter-spacing:-0.206400px;}
.ls10{letter-spacing:-0.053280px;}
.ls9{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.108000px;}
.lsb{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.216000px;}
.ls15{letter-spacing:0.259920px;}
.ls4{letter-spacing:0.360000px;}
.ls22{letter-spacing:0.900000px;}
.ls8{letter-spacing:1.620000px;}
.ls24{letter-spacing:9.540000px;}
.ls1f{letter-spacing:14.580000px;}
.ls11{letter-spacing:16.506720px;}
.ls5{letter-spacing:18.180000px;}
.ls3{letter-spacing:18.828720px;}
.ls2{letter-spacing:19.673280px;}
.ls18{letter-spacing:28.260000px;}
.ls23{letter-spacing:33.984000px;}
.ls25{letter-spacing:46.026720px;}
.ls20{letter-spacing:64.026720px;}
.ls21{letter-spacing:64.746720px;}
.lsd{letter-spacing:90.666720px;}
.lsc{letter-spacing:91.386720px;}
.ls1e{letter-spacing:99.306720px;}
.ls1a{letter-spacing:115.866720px;}
.ls16{letter-spacing:129.546720px;}
.ls17{letter-spacing:132.426720px;}
.ls14{letter-spacing:146.106720px;}
.ls19{letter-spacing:149.706720px;}
.ls12{letter-spacing:162.666720px;}
.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;}
}
.wsd{word-spacing:-18.000000px;}
.ws0{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.269960px;}
.ws8{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.046800px;}
.ws4{word-spacing:-15.012000px;}
.wsa{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws3{word-spacing:-14.580000px;}
.wsb{word-spacing:-10.824000px;}
.ws1{word-spacing:-10.440000px;}
.wsc{word-spacing:-9.648000px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-5.419680px;}
._4{margin-left:-3.623040px;}
._3{margin-left:-2.261760px;}
._0{margin-left:-1.224000px;}
._5{width:1.085520px;}
._1{width:2.184000px;}
._f{width:3.375600px;}
._d{width:4.498560px;}
._c{width:5.667360px;}
._b{width:6.932160px;}
._8{width:8.248080px;}
._7{width:9.442080px;}
._a{width:11.115360px;}
._e{width:12.121440px;}
._9{width:13.147200px;}
._1a{width:14.292480px;}
._17{width:16.005840px;}
._12{width:17.449920px;}
._19{width:18.784080px;}
._13{width:20.318400px;}
._1d{width:21.453840px;}
._1e{width:23.115600px;}
._2a{width:24.243840px;}
._1f{width:25.268640px;}
._2b{width:26.358960px;}
._23{width:27.478320px;}
._30{width:28.538880px;}
._18{width:29.631120px;}
._1b{width:30.776400px;}
._1c{width:31.842240px;}
._16{width:33.405840px;}
._15{width:35.138880px;}
._25{width:36.244800px;}
._28{width:38.186640px;}
._27{width:39.561120px;}
._26{width:40.577040px;}
._29{width:41.650320px;}
._22{width:42.809520px;}
._21{width:44.087280px;}
._2c{width:45.124560px;}
._2d{width:46.412160px;}
._31{width:51.035040px;}
._38{width:52.100880px;}
._37{width:53.186400px;}
._20{width:55.337760px;}
._24{width:57.211920px;}
._39{width:61.621920px;}
._14{width:64.242000px;}
._33{width:65.616480px;}
._35{width:66.981120px;}
._34{width:68.006880px;}
._2e{width:72.060720px;}
._2f{width:73.266000px;}
._32{width:74.998800px;}
._36{width:76.850640px;}
._11{width:78.106320px;}
._10{width:214.579440px;}
._2{width:303.508320px;}
.fc4{color:rgb(15,71,97);}
.fc2{color:rgb(47,84,150);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs7{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y7{bottom:0.900000px;}
.y20{bottom:5.760000px;}
.y11{bottom:7.560000px;}
.y6{bottom:13.860000px;}
.y1f{bottom:25.560000px;}
.y5{bottom:45.180000px;}
.y1e{bottom:45.360000px;}
.y9{bottom:58.680000px;}
.y1d{bottom:65.340000px;}
.y4{bottom:76.320000px;}
.y7c{bottom:81.540000px;}
.y3a{bottom:82.980000px;}
.ya4{bottom:83.160000px;}
.y1c{bottom:85.170000px;}
.yfa{bottom:85.680000px;}
.yca{bottom:88.560000px;}
.y44{bottom:92.340000px;}
.y7b{bottom:98.820000px;}
.ybb{bottom:99.360000px;}
.y39{bottom:101.520000px;}
.y7a{bottom:104.040000px;}
.y1b{bottom:104.970000px;}
.yf9{bottom:105.480000px;}
.y3{bottom:107.670000px;}
.yc9{bottom:108.360000px;}
.y43{bottom:109.620000px;}
.ya3{bottom:111.960000px;}
.y79{bottom:117.540000px;}
.yba{bottom:119.160000px;}
.y38{bottom:120.240000px;}
.y1a{bottom:124.770000px;}
.yf8{bottom:125.280000px;}
.y42{bottom:126.720000px;}
.yc8{bottom:128.160000px;}
.ya2{bottom:131.760000px;}
.y37{bottom:138.780000px;}
.yb9{bottom:138.960000px;}
.y2{bottom:139.530000px;}
.y41{bottom:144.000000px;}
.y19{bottom:144.570000px;}
.yf7{bottom:145.260000px;}
.yc7{bottom:147.960000px;}
.y40{bottom:149.220000px;}
.y8a{bottom:149.760000px;}
.ya1{bottom:151.770000px;}
.y36{bottom:157.350000px;}
.yb8{bottom:158.790000px;}
.y3f{bottom:161.130000px;}
.y18{bottom:164.550000px;}
.yf6{bottom:165.090000px;}
.yc6{bottom:167.790000px;}
.y78{bottom:169.770000px;}
.ya0{bottom:171.570000px;}
.y35{bottom:176.070000px;}
.y3e{bottom:176.610000px;}
.yb7{bottom:178.770000px;}
.y17{bottom:184.350000px;}
.yf5{bottom:184.890000px;}
.yc5{bottom:187.770000px;}
.y77{bottom:189.570000px;}
.y9f{bottom:191.370000px;}
.y3d{bottom:192.450000px;}
.y34{bottom:194.610000px;}
.y3c{bottom:197.670000px;}
.yb6{bottom:198.570000px;}
.y16{bottom:204.150000px;}
.yf4{bottom:204.690000px;}
.yc4{bottom:207.570000px;}
.y76{bottom:209.370000px;}
.y9e{bottom:211.170000px;}
.y33{bottom:213.330000px;}
.yb5{bottom:218.370000px;}
.y15{bottom:223.950000px;}
.yf3{bottom:224.490000px;}
.yc3{bottom:227.370000px;}
.y75{bottom:229.170000px;}
.y9d{bottom:230.970000px;}
.yb4{bottom:238.170000px;}
.y14{bottom:243.750000px;}
.yf2{bottom:244.470000px;}
.y32{bottom:247.170000px;}
.y74{bottom:248.970000px;}
.yb3{bottom:257.970000px;}
.y9c{bottom:259.950000px;}
.y13{bottom:263.730000px;}
.yf1{bottom:264.270000px;}
.yc2{bottom:266.970000px;}
.y31{bottom:267.150000px;}
.y73{bottom:268.950000px;}
.yb2{bottom:277.950000px;}
.y9b{bottom:279.750000px;}
.yf0{bottom:284.070000px;}
.y30{bottom:286.950000px;}
.y72{bottom:288.750000px;}
.yb1{bottom:297.750000px;}
.y9a{bottom:299.550000px;}
.yef{bottom:303.870000px;}
.y2f{bottom:306.750000px;}
.y71{bottom:308.550000px;}
.yb0{bottom:317.550000px;}
.y99{bottom:319.350000px;}
.yee{bottom:323.670000px;}
.y2e{bottom:326.550000px;}
.y70{bottom:328.350000px;}
.y3b{bottom:331.770000px;}
.yaf{bottom:337.350000px;}
.y98{bottom:339.150000px;}
.yed{bottom:343.650000px;}
.y2d{bottom:346.350000px;}
.y6f{bottom:348.150000px;}
.yae{bottom:357.150000px;}
.y97{bottom:359.130000px;}
.yec{bottom:363.450000px;}
.yc1{bottom:366.150000px;}
.y2c{bottom:366.330000px;}
.y89{bottom:368.130000px;}
.y6e{bottom:377.130000px;}
.y96{bottom:378.930000px;}
.yeb{bottom:383.250000px;}
.y2b{bottom:386.130000px;}
.y88{bottom:387.930000px;}
.y6d{bottom:396.930000px;}
.y95{bottom:398.730000px;}
.yea{bottom:403.095000px;}
.y2a{bottom:405.975000px;}
.y87{bottom:407.775000px;}
.y6b{bottom:416.775000px;}
.y94{bottom:418.575000px;}
.y6c{bottom:421.995000px;}
.ye9{bottom:422.895000px;}
.y29{bottom:425.775000px;}
.y86{bottom:427.575000px;}
.y6a{bottom:436.575000px;}
.ye8{bottom:442.875000px;}
.y28{bottom:445.575000px;}
.y93{bottom:447.375000px;}
.y69{bottom:456.375000px;}
.ye7{bottom:462.675000px;}
.yc0{bottom:465.375000px;}
.y27{bottom:465.555000px;}
.y92{bottom:467.355000px;}
.y68{bottom:476.355000px;}
.ye6{bottom:482.475000px;}
.y26{bottom:485.355000px;}
.y91{bottom:487.155000px;}
.y67{bottom:496.155000px;}
.ye5{bottom:502.275000px;}
.y24{bottom:505.155000px;}
.y90{bottom:506.955000px;}
.y25{bottom:510.375000px;}
.y66{bottom:515.955000px;}
.ye4{bottom:522.075000px;}
.y23{bottom:524.955000px;}
.y8f{bottom:526.755000px;}
.y65{bottom:535.755000px;}
.ye3{bottom:542.055000px;}
.y22{bottom:544.755000px;}
.y8e{bottom:546.555000px;}
.y64{bottom:555.555000px;}
.ye2{bottom:561.855000px;}
.ybf{bottom:564.555000px;}
.y21{bottom:564.735000px;}
.y63{bottom:575.355000px;}
.y12{bottom:579.495000px;}
.ye1{bottom:581.655000px;}
.ybe{bottom:584.355000px;}
.y62{bottom:595.335000px;}
.ye0{bottom:601.455000px;}
.ybd{bottom:604.335000px;}
.y61{bottom:615.135000px;}
.ydf{bottom:621.255000px;}
.ybc{bottom:624.135000px;}
.y60{bottom:634.935000px;}
.yde{bottom:641.235000px;}
.yad{bottom:643.935000px;}
.y5f{bottom:654.765000px;}
.ydd{bottom:661.065000px;}
.yac{bottom:663.765000px;}
.y5e{bottom:674.565000px;}
.ydc{bottom:680.865000px;}
.yab{bottom:683.565000px;}
.y5d{bottom:694.545000px;}
.ydb{bottom:700.665000px;}
.yaa{bottom:703.545000px;}
.y5c{bottom:714.345000px;}
.yda{bottom:720.465000px;}
.ya9{bottom:723.345000px;}
.y5b{bottom:734.145000px;}
.yd9{bottom:740.445000px;}
.ya8{bottom:743.145000px;}
.y5a{bottom:753.945000px;}
.yd8{bottom:760.245000px;}
.ya7{bottom:762.945000px;}
.y59{bottom:773.745000px;}
.yd7{bottom:780.045000px;}
.ya6{bottom:782.745000px;}
.y58{bottom:793.725000px;}
.yd6{bottom:799.845000px;}
.ya5{bottom:802.725000px;}
.y57{bottom:813.525000px;}
.yd5{bottom:819.645000px;}
.y85{bottom:822.525000px;}
.y56{bottom:833.325000px;}
.yd4{bottom:839.625000px;}
.y84{bottom:842.325000px;}
.y55{bottom:853.125000px;}
.y10{bottom:857.985000px;}
.yd3{bottom:859.425000px;}
.y83{bottom:862.125000px;}
.y54{bottom:872.925000px;}
.yd2{bottom:879.225000px;}
.y82{bottom:881.925000px;}
.yf{bottom:890.565000px;}
.y53{bottom:892.905000px;}
.yd1{bottom:899.070000px;}
.y81{bottom:901.950000px;}
.y52{bottom:912.750000px;}
.ye{bottom:915.630000px;}
.yd0{bottom:918.870000px;}
.y80{bottom:921.750000px;}
.yd{bottom:930.930000px;}
.y51{bottom:932.550000px;}
.ycf{bottom:938.850000px;}
.y7f{bottom:941.550000px;}
.yc{bottom:952.170000px;}
.y50{bottom:952.350000px;}
.yce{bottom:958.650000px;}
.y7e{bottom:961.350000px;}
.y4f{bottom:972.150000px;}
.yb{bottom:975.570000px;}
.ycd{bottom:978.450000px;}
.y7d{bottom:981.150000px;}
.y8d{bottom:992.130000px;}
.ycc{bottom:998.250000px;}
.y4e{bottom:1001.130000px;}
.ya{bottom:1007.250000px;}
.y8c{bottom:1011.930000px;}
.ycb{bottom:1018.050000px;}
.y4d{bottom:1020.930000px;}
.y8b{bottom:1031.730000px;}
.y8{bottom:1034.250000px;}
.y4c{bottom:1040.730000px;}
.y1{bottom:1050.450000px;}
.y4b{bottom:1060.530000px;}
.y4a{bottom:1080.330000px;}
.y49{bottom:1100.310000px;}
.y48{bottom:1120.110000px;}
.y47{bottom:1139.910000px;}
.y46{bottom:1169.820000px;}
.y45{bottom:1192.680000px;}
.hd{height:26.100000px;}
.hb{height:34.038984px;}
.h12{height:39.840820px;}
.h9{height:42.164648px;}
.h10{height:43.156758px;}
.h16{height:43.506914px;}
.h14{height:43.681992px;}
.h13{height:47.276367px;}
.h7{height:47.933437px;}
.h4{height:48.774375px;}
.h11{height:50.510039px;}
.h15{height:51.706406px;}
.hc{height:52.319180px;}
.h17{height:52.417969px;}
.h3{height:53.015625px;}
.ha{height:53.224453px;}
.he{height:54.918984px;}
.h6{height:55.987031px;}
.h5{height:62.028281px;}
.h8{height:67.565039px;}
.h2{height:158.430000px;}
.hf{height:277.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:146.736000px;}
.w7{width:163.290000px;}
.w6{width:616.830000px;}
.w2{width:637.890000px;}
.w5{width:780.120000px;}
.w8{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:54.180000px;}
.x5{left:55.259987px;}
.x6{left:56.520000px;}
.x11{left:58.859987px;}
.x1c{left:75.599987px;}
.x19{left:80.999987px;}
.x1d{left:108.035987px;}
.x18{left:135.035987px;}
.x4{left:138.630000px;}
.xf{left:224.309973px;}
.x10{left:229.169987px;}
.xa{left:270.074987px;}
.x8{left:334.874973px;}
.x9{left:339.734987px;}
.xb{left:473.504987px;}
.xe{left:478.364987px;}
.x15{left:493.304987px;}
.x14{left:497.444987px;}
.x1b{left:499.424987px;}
.x16{left:500.504987px;}
.x12{left:501.584987px;}
.xc{left:521.924973px;}
.xd{left:526.784987px;}
.x13{left:536.504987px;}
.x17{left:554.504987px;}
.x1a{left:559.004987px;}
.x7{left:673.350000px;}
.x3{left:692.070000px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.ls1d{letter-spacing:-4.704000pt;}
.ls13{letter-spacing:-3.658667pt;}
.ls1b{letter-spacing:-0.544000pt;}
.ls1c{letter-spacing:-0.480000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.198933pt;}
.lsf{letter-spacing:-0.183467pt;}
.ls10{letter-spacing:-0.047360pt;}
.ls9{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.096000pt;}
.lsb{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.192000pt;}
.ls15{letter-spacing:0.231040pt;}
.ls4{letter-spacing:0.320000pt;}
.ls22{letter-spacing:0.800000pt;}
.ls8{letter-spacing:1.440000pt;}
.ls24{letter-spacing:8.480000pt;}
.ls1f{letter-spacing:12.960000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls5{letter-spacing:16.160000pt;}
.ls3{letter-spacing:16.736640pt;}
.ls2{letter-spacing:17.487360pt;}
.ls18{letter-spacing:25.120000pt;}
.ls23{letter-spacing:30.208000pt;}
.ls25{letter-spacing:40.912640pt;}
.ls20{letter-spacing:56.912640pt;}
.ls21{letter-spacing:57.552640pt;}
.lsd{letter-spacing:80.592640pt;}
.lsc{letter-spacing:81.232640pt;}
.ls1e{letter-spacing:88.272640pt;}
.ls1a{letter-spacing:102.992640pt;}
.ls16{letter-spacing:115.152640pt;}
.ls17{letter-spacing:117.712640pt;}
.ls14{letter-spacing:129.872640pt;}
.ls19{letter-spacing:133.072640pt;}
.ls12{letter-spacing:144.592640pt;}
.wsd{word-spacing:-16.000000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.462187pt;}
.ws8{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.374933pt;}
.ws4{word-spacing:-13.344000pt;}
.wsa{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws3{word-spacing:-12.960000pt;}
.wsb{word-spacing:-9.621333pt;}
.ws1{word-spacing:-9.280000pt;}
.wsc{word-spacing:-8.576000pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-4.817493pt;}
._4{margin-left:-3.220480pt;}
._3{margin-left:-2.010453pt;}
._0{margin-left:-1.088000pt;}
._5{width:0.964907pt;}
._1{width:1.941333pt;}
._f{width:3.000533pt;}
._d{width:3.998720pt;}
._c{width:5.037653pt;}
._b{width:6.161920pt;}
._8{width:7.331627pt;}
._7{width:8.392960pt;}
._a{width:9.880320pt;}
._e{width:10.774613pt;}
._9{width:11.686400pt;}
._1a{width:12.704427pt;}
._17{width:14.227413pt;}
._12{width:15.511040pt;}
._19{width:16.696960pt;}
._13{width:18.060800pt;}
._1d{width:19.070080pt;}
._1e{width:20.547200pt;}
._2a{width:21.550080pt;}
._1f{width:22.461013pt;}
._2b{width:23.430187pt;}
._23{width:24.425173pt;}
._30{width:25.367893pt;}
._18{width:26.338773pt;}
._1b{width:27.356800pt;}
._1c{width:28.304213pt;}
._16{width:29.694080pt;}
._15{width:31.234560pt;}
._25{width:32.217600pt;}
._28{width:33.943680pt;}
._27{width:35.165440pt;}
._26{width:36.068480pt;}
._29{width:37.022507pt;}
._22{width:38.052907pt;}
._21{width:39.188693pt;}
._2c{width:40.110720pt;}
._2d{width:41.255253pt;}
._31{width:45.364480pt;}
._38{width:46.311893pt;}
._37{width:47.276800pt;}
._20{width:49.189120pt;}
._24{width:50.855040pt;}
._39{width:54.775040pt;}
._14{width:57.104000pt;}
._33{width:58.325760pt;}
._35{width:59.538773pt;}
._34{width:60.450560pt;}
._2e{width:64.053973pt;}
._2f{width:65.125333pt;}
._32{width:66.665600pt;}
._36{width:68.311680pt;}
._11{width:69.427840pt;}
._10{width:190.737280pt;}
._2{width:269.785173pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs7{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:0.800000pt;}
.y20{bottom:5.120000pt;}
.y11{bottom:6.720000pt;}
.y6{bottom:12.320000pt;}
.y1f{bottom:22.720000pt;}
.y5{bottom:40.160000pt;}
.y1e{bottom:40.320000pt;}
.y9{bottom:52.160000pt;}
.y1d{bottom:58.080000pt;}
.y4{bottom:67.840000pt;}
.y7c{bottom:72.480000pt;}
.y3a{bottom:73.760000pt;}
.ya4{bottom:73.920000pt;}
.y1c{bottom:75.706667pt;}
.yfa{bottom:76.160000pt;}
.yca{bottom:78.720000pt;}
.y44{bottom:82.080000pt;}
.y7b{bottom:87.840000pt;}
.ybb{bottom:88.320000pt;}
.y39{bottom:90.240000pt;}
.y7a{bottom:92.480000pt;}
.y1b{bottom:93.306667pt;}
.yf9{bottom:93.760000pt;}
.y3{bottom:95.706667pt;}
.yc9{bottom:96.320000pt;}
.y43{bottom:97.440000pt;}
.ya3{bottom:99.520000pt;}
.y79{bottom:104.480000pt;}
.yba{bottom:105.920000pt;}
.y38{bottom:106.880000pt;}
.y1a{bottom:110.906667pt;}
.yf8{bottom:111.360000pt;}
.y42{bottom:112.640000pt;}
.yc8{bottom:113.920000pt;}
.ya2{bottom:117.120000pt;}
.y37{bottom:123.360000pt;}
.yb9{bottom:123.520000pt;}
.y2{bottom:124.026667pt;}
.y41{bottom:128.000000pt;}
.y19{bottom:128.506667pt;}
.yf7{bottom:129.120000pt;}
.yc7{bottom:131.520000pt;}
.y40{bottom:132.640000pt;}
.y8a{bottom:133.120000pt;}
.ya1{bottom:134.906667pt;}
.y36{bottom:139.866667pt;}
.yb8{bottom:141.146667pt;}
.y3f{bottom:143.226667pt;}
.y18{bottom:146.266667pt;}
.yf6{bottom:146.746667pt;}
.yc6{bottom:149.146667pt;}
.y78{bottom:150.906667pt;}
.ya0{bottom:152.506667pt;}
.y35{bottom:156.506667pt;}
.y3e{bottom:156.986667pt;}
.yb7{bottom:158.906667pt;}
.y17{bottom:163.866667pt;}
.yf5{bottom:164.346667pt;}
.yc5{bottom:166.906667pt;}
.y77{bottom:168.506667pt;}
.y9f{bottom:170.106667pt;}
.y3d{bottom:171.066667pt;}
.y34{bottom:172.986667pt;}
.y3c{bottom:175.706667pt;}
.yb6{bottom:176.506667pt;}
.y16{bottom:181.466667pt;}
.yf4{bottom:181.946667pt;}
.yc4{bottom:184.506667pt;}
.y76{bottom:186.106667pt;}
.y9e{bottom:187.706667pt;}
.y33{bottom:189.626667pt;}
.yb5{bottom:194.106667pt;}
.y15{bottom:199.066667pt;}
.yf3{bottom:199.546667pt;}
.yc3{bottom:202.106667pt;}
.y75{bottom:203.706667pt;}
.y9d{bottom:205.306667pt;}
.yb4{bottom:211.706667pt;}
.y14{bottom:216.666667pt;}
.yf2{bottom:217.306667pt;}
.y32{bottom:219.706667pt;}
.y74{bottom:221.306667pt;}
.yb3{bottom:229.306667pt;}
.y9c{bottom:231.066667pt;}
.y13{bottom:234.426667pt;}
.yf1{bottom:234.906667pt;}
.yc2{bottom:237.306667pt;}
.y31{bottom:237.466667pt;}
.y73{bottom:239.066667pt;}
.yb2{bottom:247.066667pt;}
.y9b{bottom:248.666667pt;}
.yf0{bottom:252.506667pt;}
.y30{bottom:255.066667pt;}
.y72{bottom:256.666667pt;}
.yb1{bottom:264.666667pt;}
.y9a{bottom:266.266667pt;}
.yef{bottom:270.106667pt;}
.y2f{bottom:272.666667pt;}
.y71{bottom:274.266667pt;}
.yb0{bottom:282.266667pt;}
.y99{bottom:283.866667pt;}
.yee{bottom:287.706667pt;}
.y2e{bottom:290.266667pt;}
.y70{bottom:291.866667pt;}
.y3b{bottom:294.906667pt;}
.yaf{bottom:299.866667pt;}
.y98{bottom:301.466667pt;}
.yed{bottom:305.466667pt;}
.y2d{bottom:307.866667pt;}
.y6f{bottom:309.466667pt;}
.yae{bottom:317.466667pt;}
.y97{bottom:319.226667pt;}
.yec{bottom:323.066667pt;}
.yc1{bottom:325.466667pt;}
.y2c{bottom:325.626667pt;}
.y89{bottom:327.226667pt;}
.y6e{bottom:335.226667pt;}
.y96{bottom:336.826667pt;}
.yeb{bottom:340.666667pt;}
.y2b{bottom:343.226667pt;}
.y88{bottom:344.826667pt;}
.y6d{bottom:352.826667pt;}
.y95{bottom:354.426667pt;}
.yea{bottom:358.306667pt;}
.y2a{bottom:360.866667pt;}
.y87{bottom:362.466667pt;}
.y6b{bottom:370.466667pt;}
.y94{bottom:372.066667pt;}
.y6c{bottom:375.106667pt;}
.ye9{bottom:375.906667pt;}
.y29{bottom:378.466667pt;}
.y86{bottom:380.066667pt;}
.y6a{bottom:388.066667pt;}
.ye8{bottom:393.666667pt;}
.y28{bottom:396.066667pt;}
.y93{bottom:397.666667pt;}
.y69{bottom:405.666667pt;}
.ye7{bottom:411.266667pt;}
.yc0{bottom:413.666667pt;}
.y27{bottom:413.826667pt;}
.y92{bottom:415.426667pt;}
.y68{bottom:423.426667pt;}
.ye6{bottom:428.866667pt;}
.y26{bottom:431.426667pt;}
.y91{bottom:433.026667pt;}
.y67{bottom:441.026667pt;}
.ye5{bottom:446.466667pt;}
.y24{bottom:449.026667pt;}
.y90{bottom:450.626667pt;}
.y25{bottom:453.666667pt;}
.y66{bottom:458.626667pt;}
.ye4{bottom:464.066667pt;}
.y23{bottom:466.626667pt;}
.y8f{bottom:468.226667pt;}
.y65{bottom:476.226667pt;}
.ye3{bottom:481.826667pt;}
.y22{bottom:484.226667pt;}
.y8e{bottom:485.826667pt;}
.y64{bottom:493.826667pt;}
.ye2{bottom:499.426667pt;}
.ybf{bottom:501.826667pt;}
.y21{bottom:501.986667pt;}
.y63{bottom:511.426667pt;}
.y12{bottom:515.106667pt;}
.ye1{bottom:517.026667pt;}
.ybe{bottom:519.426667pt;}
.y62{bottom:529.186667pt;}
.ye0{bottom:534.626667pt;}
.ybd{bottom:537.186667pt;}
.y61{bottom:546.786667pt;}
.ydf{bottom:552.226667pt;}
.ybc{bottom:554.786667pt;}
.y60{bottom:564.386667pt;}
.yde{bottom:569.986667pt;}
.yad{bottom:572.386667pt;}
.y5f{bottom:582.013333pt;}
.ydd{bottom:587.613333pt;}
.yac{bottom:590.013333pt;}
.y5e{bottom:599.613333pt;}
.ydc{bottom:605.213333pt;}
.yab{bottom:607.613333pt;}
.y5d{bottom:617.373333pt;}
.ydb{bottom:622.813333pt;}
.yaa{bottom:625.373333pt;}
.y5c{bottom:634.973333pt;}
.yda{bottom:640.413333pt;}
.ya9{bottom:642.973333pt;}
.y5b{bottom:652.573333pt;}
.yd9{bottom:658.173333pt;}
.ya8{bottom:660.573333pt;}
.y5a{bottom:670.173333pt;}
.yd8{bottom:675.773333pt;}
.ya7{bottom:678.173333pt;}
.y59{bottom:687.773333pt;}
.yd7{bottom:693.373333pt;}
.ya6{bottom:695.773333pt;}
.y58{bottom:705.533333pt;}
.yd6{bottom:710.973333pt;}
.ya5{bottom:713.533333pt;}
.y57{bottom:723.133333pt;}
.yd5{bottom:728.573333pt;}
.y85{bottom:731.133333pt;}
.y56{bottom:740.733333pt;}
.yd4{bottom:746.333333pt;}
.y84{bottom:748.733333pt;}
.y55{bottom:758.333333pt;}
.y10{bottom:762.653333pt;}
.yd3{bottom:763.933333pt;}
.y83{bottom:766.333333pt;}
.y54{bottom:775.933333pt;}
.yd2{bottom:781.533333pt;}
.y82{bottom:783.933333pt;}
.yf{bottom:791.613333pt;}
.y53{bottom:793.693333pt;}
.yd1{bottom:799.173333pt;}
.y81{bottom:801.733333pt;}
.y52{bottom:811.333333pt;}
.ye{bottom:813.893333pt;}
.yd0{bottom:816.773333pt;}
.y80{bottom:819.333333pt;}
.yd{bottom:827.493333pt;}
.y51{bottom:828.933333pt;}
.ycf{bottom:834.533333pt;}
.y7f{bottom:836.933333pt;}
.yc{bottom:846.373333pt;}
.y50{bottom:846.533333pt;}
.yce{bottom:852.133333pt;}
.y7e{bottom:854.533333pt;}
.y4f{bottom:864.133333pt;}
.yb{bottom:867.173333pt;}
.ycd{bottom:869.733333pt;}
.y7d{bottom:872.133333pt;}
.y8d{bottom:881.893333pt;}
.ycc{bottom:887.333333pt;}
.y4e{bottom:889.893333pt;}
.ya{bottom:895.333333pt;}
.y8c{bottom:899.493333pt;}
.ycb{bottom:904.933333pt;}
.y4d{bottom:907.493333pt;}
.y8b{bottom:917.093333pt;}
.y8{bottom:919.333333pt;}
.y4c{bottom:925.093333pt;}
.y1{bottom:933.733333pt;}
.y4b{bottom:942.693333pt;}
.y4a{bottom:960.293333pt;}
.y49{bottom:978.053333pt;}
.y48{bottom:995.653333pt;}
.y47{bottom:1013.253333pt;}
.y46{bottom:1039.840000pt;}
.y45{bottom:1060.160000pt;}
.hd{height:23.200000pt;}
.hb{height:30.256875pt;}
.h12{height:35.414062pt;}
.h9{height:37.479688pt;}
.h10{height:38.361562pt;}
.h16{height:38.672812pt;}
.h14{height:38.828437pt;}
.h13{height:42.023438pt;}
.h7{height:42.607500pt;}
.h4{height:43.355000pt;}
.h11{height:44.897813pt;}
.h15{height:45.961250pt;}
.hc{height:46.505938pt;}
.h17{height:46.593750pt;}
.h3{height:47.125000pt;}
.ha{height:47.310625pt;}
.he{height:48.816875pt;}
.h6{height:49.766250pt;}
.h5{height:55.136250pt;}
.h8{height:60.057813pt;}
.h2{height:140.826667pt;}
.hf{height:246.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:130.432000pt;}
.w7{width:145.146667pt;}
.w6{width:548.293333pt;}
.w2{width:567.013333pt;}
.w5{width:693.440000pt;}
.w8{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:48.160000pt;}
.x5{left:49.119988pt;}
.x6{left:50.240000pt;}
.x11{left:52.319988pt;}
.x1c{left:67.199988pt;}
.x19{left:71.999988pt;}
.x1d{left:96.031988pt;}
.x18{left:120.031988pt;}
.x4{left:123.226667pt;}
.xf{left:199.386643pt;}
.x10{left:203.706655pt;}
.xa{left:240.066655pt;}
.x8{left:297.666643pt;}
.x9{left:301.986655pt;}
.xb{left:420.893322pt;}
.xe{left:425.213322pt;}
.x15{left:438.493322pt;}
.x14{left:442.173322pt;}
.x1b{left:443.933322pt;}
.x16{left:444.893322pt;}
.x12{left:445.853322pt;}
.xc{left:463.933310pt;}
.xd{left:468.253322pt;}
.x13{left:476.893322pt;}
.x17{left:492.893322pt;}
.x1a{left:496.893322pt;}
.x7{left:598.533333pt;}
.x3{left:615.173333pt;}
}




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