
    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_083e548f7b2a5b8963561866.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.119629;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_b0f9f4a1950d56eb150b346b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_e4ef16b28d327807642c20d6.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;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_71fa482bda97cb0ebff72988.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_359d01edf130577d36b3965b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.035156;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_f5982f790873986e26b94ec2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;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_d7aca1dbc3f41c7fbb90c361.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.435059;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_3ecd20219ef4b06934113d2d.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.065430;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_f8490b1b990b64eccd4d98a8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.064941;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_7d965b85ebad7cd36c6f8f34.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_e4958eea4c084b3b68889fa9.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.061035;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_7b53f5383a712b9bcbaf2441.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_692c64b8c4a8bf51789c18d1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908203;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_da2de0f814419ece897aa2c1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.060059;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_ed98284337f9640f16350c55.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_398bb0083ddb704e468c2f4f.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.783691;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_790ef98ef58f7413ef0f7652.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-67.680000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.666000px;}
.ls7{letter-spacing:-0.478200px;}
.ls17{letter-spacing:-0.360000px;}
.lse{letter-spacing:-0.259800px;}
.ls15{letter-spacing:-0.206400px;}
.lsb{letter-spacing:-0.184200px;}
.lsa{letter-spacing:-0.046800px;}
.ls6{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.022320px;}
.ls10{letter-spacing:0.053280px;}
.ls1{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.223200px;}
.ls9{letter-spacing:0.224400px;}
.ls8{letter-spacing:0.241800px;}
.ls13{letter-spacing:0.259800px;}
.ls5{letter-spacing:0.259920px;}
.ls2{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.900000px;}
.ls4{letter-spacing:9.892800px;}
.ls14{letter-spacing:21.546720px;}
.ls11{letter-spacing:44.562720px;}
.ls12{letter-spacing:44.586720px;}
.lsf{letter-spacing:319.836000px;}
.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;}
}
.wse{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.ws9{word-spacing:-15.199920px;}
.ws11{word-spacing:-15.199800px;}
.wsf{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws10{word-spacing:-14.733600px;}
.wsd{word-spacing:-14.680200px;}
.ws13{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.274000px;}
.wsa{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.370400px;}
.ws3{word-spacing:-13.147200px;}
.ws7{word-spacing:-13.100400px;}
.wsb{word-spacing:-12.060000px;}
.ws0{word-spacing:-10.924560px;}
.ws6{word-spacing:-10.854600px;}
.ws4{word-spacing:-10.612800px;}
.ws5{word-spacing:-10.134600px;}
.wsc{word-spacing:0.000000px;}
._45{margin-left:-9.153360px;}
._34{margin-left:-4.101360px;}
._8{margin-left:-2.988000px;}
._1{margin-left:-1.336800px;}
._0{width:1.434240px;}
._3{width:2.456880px;}
._10{width:3.472080px;}
._a{width:4.601520px;}
._5{width:5.976000px;}
._4{width:6.991920px;}
._7{width:8.784720px;}
._6{width:10.159200px;}
._9{width:11.653200px;}
._2e{width:12.728880px;}
._23{width:13.804560px;}
._2f{width:15.955920px;}
._13{width:17.449920px;}
._12{width:18.645120px;}
._d{width:19.661040px;}
._2a{width:21.513600px;}
._27{width:22.828320px;}
._14{width:24.083280px;}
._11{width:25.218720px;}
._e{width:27.011520px;}
._f{width:28.087200px;}
._16{width:29.461680px;}
._15{width:30.597120px;}
._1d{width:31.672800px;}
._1e{width:32.776320px;}
._2{width:34.214400px;}
._c{width:35.839920px;}
._b{width:37.644480px;}
._1b{width:39.381840px;}
._1c{width:40.636800px;}
._22{width:42.130800px;}
._40{width:43.445520px;}
._24{width:44.521200px;}
._2d{width:45.596880px;}
._33{width:46.971360px;}
._37{width:48.465360px;}
._25{width:49.780080px;}
._30{width:50.975280px;}
._28{width:52.050960px;}
._2c{width:53.425440px;}
._2b{width:54.560880px;}
._18{width:56.346960px;}
._17{width:57.443760px;}
._21{width:58.445280px;}
._32{width:61.156560px;}
._20{width:62.748000px;}
._1f{width:64.361520px;}
._35{width:66.116640px;}
._29{width:67.349520px;}
._26{width:69.082560px;}
._19{width:70.636320px;}
._1a{width:71.655840px;}
._47{width:74.221920px;}
._3e{width:76.552560px;}
._3c{width:77.628240px;}
._31{width:81.452880px;}
._3d{width:82.887120px;}
._3a{width:84.090240px;}
._3b{width:85.656960px;}
._46{width:89.901120px;}
._3f{width:93.225600px;}
._39{width:97.528320px;}
._38{width:99.022320px;}
._42{width:112.109760px;}
._41{width:119.660160px;}
._44{width:125.903040px;}
._4c{width:137.640000px;}
._4d{width:150.238320px;}
._4f{width:153.344160px;}
._49{width:155.856480px;}
._43{width:164.372400px;}
._48{width:174.202800px;}
._4e{width:180.873840px;}
._4b{width:184.280160px;}
._36{width:197.677200px;}
._4a{width:200.796000px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:transparent;}
.fc4{color:rgb(205,29,142);}
.fc3{color:rgb(28,78,123);}
.fc2{color:rgb(112,48,160);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fsa{font-size:36.000000px;}
.fs3{font-size:41.760000px;}
.fs1{font-size:48.240000px;}
.fsb{font-size:50.848916px;}
.fs7{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs6{font-size:66.240000px;}
.fs5{font-size:69.822393px;}
.fs9{font-size:72.000000px;}
.fs0{font-size:77.760000px;}
.fs4{font-size:81.965417px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.240000px;}
.y5{bottom:3.600000px;}
.y59{bottom:3.960000px;}
.y44{bottom:4.680000px;}
.y57{bottom:5.400000px;}
.ya5{bottom:12.060000px;}
.y98{bottom:12.240000px;}
.ya1{bottom:12.285000px;}
.y9a{bottom:20.700000px;}
.y41{bottom:20.880000px;}
.ya3{bottom:20.925000px;}
.y9c{bottom:29.340000px;}
.ya8{bottom:29.520000px;}
.ya0{bottom:29.565000px;}
.y56{bottom:31.860000px;}
.y9b{bottom:37.980000px;}
.ya9{bottom:38.160000px;}
.ya2{bottom:38.205000px;}
.y40{bottom:38.520000px;}
.y3f{bottom:55.980000px;}
.y3{bottom:58.140000px;}
.y55{bottom:64.440000px;}
.y3e{bottom:73.665000px;}
.y2{bottom:80.100000px;}
.y3d{bottom:91.305000px;}
.y3c{bottom:108.765000px;}
.y58{bottom:114.300000px;}
.yb3{bottom:115.920000px;}
.y95{bottom:123.300000px;}
.y3b{bottom:126.405000px;}
.yb2{bottom:133.200000px;}
.y94{bottom:140.580000px;}
.y3a{bottom:144.045000px;}
.yb1{bottom:150.300000px;}
.y52{bottom:152.100000px;}
.y93{bottom:157.860000px;}
.y39{bottom:161.505000px;}
.yb0{bottom:167.580000px;}
.y51{bottom:169.380000px;}
.yc0{bottom:174.780000px;}
.y92{bottom:175.140000px;}
.y38{bottom:179.145000px;}
.yaf{bottom:184.860000px;}
.y50{bottom:186.660000px;}
.y91{bottom:192.420000px;}
.y37{bottom:196.785000px;}
.yae{bottom:202.140000px;}
.y4f{bottom:203.940000px;}
.y90{bottom:209.700000px;}
.y36{bottom:214.425000px;}
.yad{bottom:219.450000px;}
.y4e{bottom:221.250000px;}
.y8f{bottom:226.830000px;}
.y35{bottom:231.885000px;}
.yac{bottom:236.730000px;}
.y4d{bottom:238.350000px;}
.y8e{bottom:244.110000px;}
.y24{bottom:245.565000px;}
.y34{bottom:249.525000px;}
.yab{bottom:253.470000px;}
.yb4{bottom:253.830000px;}
.y4c{bottom:255.630000px;}
.y8d{bottom:261.390000px;}
.y23{bottom:264.285000px;}
.y33{bottom:267.165000px;}
.y4b{bottom:272.910000px;}
.yb8{bottom:278.310000px;}
.y8c{bottom:278.670000px;}
.y22{bottom:280.125000px;}
.y32{bottom:284.625000px;}
.yaa{bottom:285.510000px;}
.y4a{bottom:290.190000px;}
.y8b{bottom:295.950000px;}
.y21{bottom:295.965000px;}
.y31{bottom:302.295000px;}
.y49{bottom:307.470000px;}
.y20{bottom:311.835000px;}
.y8a{bottom:313.230000px;}
.y30{bottom:319.935000px;}
.ya7{bottom:320.790000px;}
.y48{bottom:324.750000px;}
.y1f{bottom:327.315000px;}
.y89{bottom:330.330000px;}
.y2f{bottom:337.395000px;}
.y1e{bottom:341.355000px;}
.y47{bottom:341.490000px;}
.y53{bottom:341.850000px;}
.y88{bottom:347.610000px;}
.y2e{bottom:355.035000px;}
.y1d{bottom:355.575000px;}
.y46{bottom:358.770000px;}
.y87{bottom:364.890000px;}
.y1c{bottom:369.615000px;}
.y2d{bottom:372.675000px;}
.y45{bottom:373.170000px;}
.ya6{bottom:373.350000px;}
.y43{bottom:375.330000px;}
.y11{bottom:381.270000px;}
.y86{bottom:382.170000px;}
.y1b{bottom:383.655000px;}
.y2c{bottom:390.315000px;}
.y1a{bottom:397.335000px;}
.y85{bottom:399.450000px;}
.y2b{bottom:407.775000px;}
.ya4{bottom:408.630000px;}
.y19{bottom:411.195000px;}
.y84{bottom:416.730000px;}
.y18{bottom:425.055000px;}
.y2a{bottom:425.415000px;}
.ybf{bottom:433.470000px;}
.y83{bottom:433.830000px;}
.y17{bottom:439.095000px;}
.y29{bottom:443.055000px;}
.y9f{bottom:443.730000px;}
.y82{bottom:451.155000px;}
.y16{bottom:453.135000px;}
.y28{bottom:460.515000px;}
.y15{bottom:467.175000px;}
.ybe{bottom:468.075000px;}
.y81{bottom:468.435000px;}
.y27{bottom:478.155000px;}
.y14{bottom:481.755000px;}
.ybd{bottom:485.355000px;}
.y80{bottom:485.715000px;}
.y26{bottom:495.795000px;}
.y9e{bottom:496.335000px;}
.y13{bottom:499.755000px;}
.y7f{bottom:502.995000px;}
.y25{bottom:516.495000px;}
.y12{bottom:517.035000px;}
.yb7{bottom:519.735000px;}
.y7e{bottom:520.095000px;}
.y9d{bottom:531.615000px;}
.yb6{bottom:537.015000px;}
.y7d{bottom:537.375000px;}
.y7c{bottom:554.655000px;}
.y99{bottom:566.895000px;}
.y7b{bottom:571.935000px;}
.y7a{bottom:589.215000px;}
.ybc{bottom:606.135000px;}
.y79{bottom:606.495000px;}
.y97{bottom:619.275000px;}
.ybb{bottom:623.235000px;}
.y78{bottom:623.595000px;}
.y77{bottom:640.875000px;}
.y76{bottom:658.155000px;}
.y96{bottom:675.075000px;}
.y75{bottom:675.435000px;}
.y74{bottom:692.745000px;}
.y73{bottom:710.025000px;}
.yb5{bottom:726.765000px;}
.y72{bottom:727.125000px;}
.yba{bottom:744.045000px;}
.y71{bottom:744.405000px;}
.y70{bottom:761.685000px;}
.y6f{bottom:778.965000px;}
.y6e{bottom:796.245000px;}
.y6d{bottom:813.345000px;}
.yc1{bottom:830.265000px;}
.y6c{bottom:830.625000px;}
.y6b{bottom:847.905000px;}
.y6a{bottom:865.185000px;}
.yb9{bottom:882.105000px;}
.y69{bottom:882.465000px;}
.y68{bottom:899.745000px;}
.yc6{bottom:916.485000px;}
.y67{bottom:916.845000px;}
.y10{bottom:917.205000px;}
.y66{bottom:934.170000px;}
.yf{bottom:939.390000px;}
.yc2{bottom:951.090000px;}
.y65{bottom:951.450000px;}
.ye{bottom:956.670000px;}
.y64{bottom:968.730000px;}
.yd{bottom:975.750000px;}
.y63{bottom:986.010000px;}
.yc{bottom:995.190000px;}
.yc5{bottom:1002.930000px;}
.y62{bottom:1003.290000px;}
.yb{bottom:1017.510000px;}
.y61{bottom:1020.390000px;}
.y60{bottom:1037.670000px;}
.ya{bottom:1041.090000px;}
.y5f{bottom:1054.950000px;}
.y9{bottom:1064.850000px;}
.y54{bottom:1070.250000px;}
.y5e{bottom:1072.230000px;}
.y8{bottom:1088.790000px;}
.yc4{bottom:1089.150000px;}
.y5d{bottom:1089.510000px;}
.y5c{bottom:1106.790000px;}
.y7{bottom:1112.550000px;}
.y5b{bottom:1123.890000px;}
.y6{bottom:1136.310000px;}
.yc3{bottom:1140.810000px;}
.y5a{bottom:1141.170000px;}
.y4{bottom:1171.260000px;}
.y1{bottom:1191.240000px;}
.h11{height:5.653125px;}
.h12{height:5.805000px;}
.h13{height:5.920372px;}
.h10{height:5.940000px;}
.h19{height:15.480000px;}
.h4{height:17.280000px;}
.h20{height:34.380000px;}
.h1e{height:34.560000px;}
.h1b{height:35.306230px;}
.h1c{height:40.655391px;}
.hd{height:40.843828px;}
.h1d{height:41.726953px;}
.hf{height:45.720703px;}
.h1a{height:47.321367px;}
.h3{height:47.980898px;}
.h18{height:48.616875px;}
.he{height:50.218594px;}
.hc{height:50.597578px;}
.h1f{height:51.660000px;}
.h22{height:51.840000px;}
.h21{height:51.876000px;}
.h5{height:58.651172px;}
.h14{height:60.226875px;}
.h15{height:61.423863px;}
.h23{height:62.211094px;}
.ha{height:66.757500px;}
.h17{height:72.562500px;}
.h9{height:72.686202px;}
.h2{height:77.342344px;}
.h7{height:78.367500px;}
.h6{height:79.620469px;}
.h16{height:81.180000px;}
.h8{height:85.327280px;}
.hb{height:530.715000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w11{width:125.460000px;}
.wd{width:125.820000px;}
.we{width:143.640000px;}
.wa{width:144.000000px;}
.wf{width:145.656000px;}
.wb{width:146.376000px;}
.w4{width:212.115000px;}
.w6{width:212.655000px;}
.w10{width:258.555000px;}
.wc{width:259.275000px;}
.w3{width:502.125000px;}
.w5{width:515.955000px;}
.w7{width:516.495000px;}
.w8{width:625.065000px;}
.w9{width:719.430000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:8.100000px;}
.x20{left:9.360000px;}
.x11{left:10.800000px;}
.x2d{left:12.600000px;}
.x21{left:13.725000px;}
.x2f{left:15.120000px;}
.x2c{left:17.325000px;}
.x14{left:18.540000px;}
.xa{left:20.700000px;}
.x23{left:22.860000px;}
.x1a{left:24.120000px;}
.x30{left:25.560000px;}
.x2{left:27.000000px;}
.x26{left:29.520000px;}
.x3{left:31.140000px;}
.x28{left:32.445000px;}
.x22{left:33.885000px;}
.x1c{left:34.920000px;}
.x1e{left:37.125000px;}
.x2e{left:38.205000px;}
.x1d{left:41.625000px;}
.x1b{left:44.640000px;}
.x2b{left:47.880000px;}
.x27{left:49.545000px;}
.x29{left:51.840000px;}
.x6{left:53.999987px;}
.x16{left:55.305000px;}
.x24{left:59.085000px;}
.x1f{left:60.870000px;}
.xd{left:62.994000px;}
.x2a{left:86.790000px;}
.x18{left:89.130000px;}
.x25{left:91.830000px;}
.x10{left:99.756000px;}
.x1{left:108.035987px;}
.x35{left:121.535987px;}
.x31{left:135.035987px;}
.x7{left:136.295987px;}
.xc{left:140.616000px;}
.xe{left:157.539000px;}
.x32{left:162.029987px;}
.x15{left:252.750000px;}
.x9{left:267.195000px;}
.xf{left:312.549000px;}
.x17{left:399.315000px;}
.x12{left:419.829000px;}
.x13{left:423.789000px;}
.x5{left:446.504987px;}
.x4{left:453.884987px;}
.xb{left:473.144987px;}
.x33{left:500.144987px;}
.x34{left:527.144987px;}
.x19{left:658.590000px;}
@media print{
.v1{vertical-align:-60.160000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.592000pt;}
.ls7{letter-spacing:-0.425067pt;}
.ls17{letter-spacing:-0.320000pt;}
.lse{letter-spacing:-0.230933pt;}
.ls15{letter-spacing:-0.183467pt;}
.lsb{letter-spacing:-0.163733pt;}
.lsa{letter-spacing:-0.041600pt;}
.ls6{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.019840pt;}
.ls10{letter-spacing:0.047360pt;}
.ls1{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.198400pt;}
.ls9{letter-spacing:0.199467pt;}
.ls8{letter-spacing:0.214933pt;}
.ls13{letter-spacing:0.230933pt;}
.ls5{letter-spacing:0.231040pt;}
.ls2{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.800000pt;}
.ls4{letter-spacing:8.793600pt;}
.ls14{letter-spacing:19.152640pt;}
.ls11{letter-spacing:39.611307pt;}
.ls12{letter-spacing:39.632640pt;}
.lsf{letter-spacing:284.298667pt;}
.wse{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.511040pt;}
.ws11{word-spacing:-13.510933pt;}
.wsf{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws10{word-spacing:-13.096533pt;}
.wsd{word-spacing:-13.049067pt;}
.ws13{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.688000pt;}
.wsa{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.884800pt;}
.ws3{word-spacing:-11.686400pt;}
.ws7{word-spacing:-11.644800pt;}
.wsb{word-spacing:-10.720000pt;}
.ws0{word-spacing:-9.710720pt;}
.ws6{word-spacing:-9.648533pt;}
.ws4{word-spacing:-9.433600pt;}
.ws5{word-spacing:-9.008533pt;}
.wsc{word-spacing:0.000000pt;}
._45{margin-left:-8.136320pt;}
._34{margin-left:-3.645653pt;}
._8{margin-left:-2.656000pt;}
._1{margin-left:-1.188267pt;}
._0{width:1.274880pt;}
._3{width:2.183893pt;}
._10{width:3.086293pt;}
._a{width:4.090240pt;}
._5{width:5.312000pt;}
._4{width:6.215040pt;}
._7{width:7.808640pt;}
._6{width:9.030400pt;}
._9{width:10.358400pt;}
._2e{width:11.314560pt;}
._23{width:12.270720pt;}
._2f{width:14.183040pt;}
._13{width:15.511040pt;}
._12{width:16.573440pt;}
._d{width:17.476480pt;}
._2a{width:19.123200pt;}
._27{width:20.291840pt;}
._14{width:21.407360pt;}
._11{width:22.416640pt;}
._e{width:24.010240pt;}
._f{width:24.966400pt;}
._16{width:26.188160pt;}
._15{width:27.197440pt;}
._1d{width:28.153600pt;}
._1e{width:29.134507pt;}
._2{width:30.412800pt;}
._c{width:31.857707pt;}
._b{width:33.461760pt;}
._1b{width:35.006080pt;}
._1c{width:36.121600pt;}
._22{width:37.449600pt;}
._40{width:38.618240pt;}
._24{width:39.574400pt;}
._2d{width:40.530560pt;}
._33{width:41.752320pt;}
._37{width:43.080320pt;}
._25{width:44.248960pt;}
._30{width:45.311360pt;}
._28{width:46.267520pt;}
._2c{width:47.489280pt;}
._2b{width:48.498560pt;}
._18{width:50.086187pt;}
._17{width:51.061120pt;}
._21{width:51.951360pt;}
._32{width:54.361387pt;}
._20{width:55.776000pt;}
._1f{width:57.210240pt;}
._35{width:58.770347pt;}
._29{width:59.866240pt;}
._26{width:61.406720pt;}
._19{width:62.787840pt;}
._1a{width:63.694080pt;}
._47{width:65.975040pt;}
._3e{width:68.046720pt;}
._3c{width:69.002880pt;}
._31{width:72.402560pt;}
._3d{width:73.677440pt;}
._3a{width:74.746880pt;}
._3b{width:76.139520pt;}
._46{width:79.912107pt;}
._3f{width:82.867200pt;}
._39{width:86.691840pt;}
._38{width:88.019840pt;}
._42{width:99.653120pt;}
._41{width:106.364587pt;}
._44{width:111.913813pt;}
._4c{width:122.346667pt;}
._4d{width:133.545173pt;}
._4f{width:136.305920pt;}
._49{width:138.539093pt;}
._43{width:146.108800pt;}
._48{width:154.846933pt;}
._4e{width:160.776747pt;}
._4b{width:163.804587pt;}
._36{width:175.713067pt;}
._4a{width:178.485333pt;}
.fs8{font-size:5.120000pt;}
.fsa{font-size:32.000000pt;}
.fs3{font-size:37.120000pt;}
.fs1{font-size:42.880000pt;}
.fsb{font-size:45.199037pt;}
.fs7{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs6{font-size:58.880000pt;}
.fs5{font-size:62.064349pt;}
.fs9{font-size:64.000000pt;}
.fs0{font-size:69.120000pt;}
.fs4{font-size:72.858149pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:2.880000pt;}
.y5{bottom:3.200000pt;}
.y59{bottom:3.520000pt;}
.y44{bottom:4.160000pt;}
.y57{bottom:4.800000pt;}
.ya5{bottom:10.720000pt;}
.y98{bottom:10.880000pt;}
.ya1{bottom:10.920000pt;}
.y9a{bottom:18.400000pt;}
.y41{bottom:18.560000pt;}
.ya3{bottom:18.600000pt;}
.y9c{bottom:26.080000pt;}
.ya8{bottom:26.240000pt;}
.ya0{bottom:26.280000pt;}
.y56{bottom:28.320000pt;}
.y9b{bottom:33.760000pt;}
.ya9{bottom:33.920000pt;}
.ya2{bottom:33.960000pt;}
.y40{bottom:34.240000pt;}
.y3f{bottom:49.760000pt;}
.y3{bottom:51.680000pt;}
.y55{bottom:57.280000pt;}
.y3e{bottom:65.480000pt;}
.y2{bottom:71.200000pt;}
.y3d{bottom:81.160000pt;}
.y3c{bottom:96.680000pt;}
.y58{bottom:101.600000pt;}
.yb3{bottom:103.040000pt;}
.y95{bottom:109.600000pt;}
.y3b{bottom:112.360000pt;}
.yb2{bottom:118.400000pt;}
.y94{bottom:124.960000pt;}
.y3a{bottom:128.040000pt;}
.yb1{bottom:133.600000pt;}
.y52{bottom:135.200000pt;}
.y93{bottom:140.320000pt;}
.y39{bottom:143.560000pt;}
.yb0{bottom:148.960000pt;}
.y51{bottom:150.560000pt;}
.yc0{bottom:155.360000pt;}
.y92{bottom:155.680000pt;}
.y38{bottom:159.240000pt;}
.yaf{bottom:164.320000pt;}
.y50{bottom:165.920000pt;}
.y91{bottom:171.040000pt;}
.y37{bottom:174.920000pt;}
.yae{bottom:179.680000pt;}
.y4f{bottom:181.280000pt;}
.y90{bottom:186.400000pt;}
.y36{bottom:190.600000pt;}
.yad{bottom:195.066667pt;}
.y4e{bottom:196.666667pt;}
.y8f{bottom:201.626667pt;}
.y35{bottom:206.120000pt;}
.yac{bottom:210.426667pt;}
.y4d{bottom:211.866667pt;}
.y8e{bottom:216.986667pt;}
.y24{bottom:218.280000pt;}
.y34{bottom:221.800000pt;}
.yab{bottom:225.306667pt;}
.yb4{bottom:225.626667pt;}
.y4c{bottom:227.226667pt;}
.y8d{bottom:232.346667pt;}
.y23{bottom:234.920000pt;}
.y33{bottom:237.480000pt;}
.y4b{bottom:242.586667pt;}
.yb8{bottom:247.386667pt;}
.y8c{bottom:247.706667pt;}
.y22{bottom:249.000000pt;}
.y32{bottom:253.000000pt;}
.yaa{bottom:253.786667pt;}
.y4a{bottom:257.946667pt;}
.y8b{bottom:263.066667pt;}
.y21{bottom:263.080000pt;}
.y31{bottom:268.706667pt;}
.y49{bottom:273.306667pt;}
.y20{bottom:277.186667pt;}
.y8a{bottom:278.426667pt;}
.y30{bottom:284.386667pt;}
.ya7{bottom:285.146667pt;}
.y48{bottom:288.666667pt;}
.y1f{bottom:290.946667pt;}
.y89{bottom:293.626667pt;}
.y2f{bottom:299.906667pt;}
.y1e{bottom:303.426667pt;}
.y47{bottom:303.546667pt;}
.y53{bottom:303.866667pt;}
.y88{bottom:308.986667pt;}
.y2e{bottom:315.586667pt;}
.y1d{bottom:316.066667pt;}
.y46{bottom:318.906667pt;}
.y87{bottom:324.346667pt;}
.y1c{bottom:328.546667pt;}
.y2d{bottom:331.266667pt;}
.y45{bottom:331.706667pt;}
.ya6{bottom:331.866667pt;}
.y43{bottom:333.626667pt;}
.y11{bottom:338.906667pt;}
.y86{bottom:339.706667pt;}
.y1b{bottom:341.026667pt;}
.y2c{bottom:346.946667pt;}
.y1a{bottom:353.186667pt;}
.y85{bottom:355.066667pt;}
.y2b{bottom:362.466667pt;}
.ya4{bottom:363.226667pt;}
.y19{bottom:365.506667pt;}
.y84{bottom:370.426667pt;}
.y18{bottom:377.826667pt;}
.y2a{bottom:378.146667pt;}
.ybf{bottom:385.306667pt;}
.y83{bottom:385.626667pt;}
.y17{bottom:390.306667pt;}
.y29{bottom:393.826667pt;}
.y9f{bottom:394.426667pt;}
.y82{bottom:401.026667pt;}
.y16{bottom:402.786667pt;}
.y28{bottom:409.346667pt;}
.y15{bottom:415.266667pt;}
.ybe{bottom:416.066667pt;}
.y81{bottom:416.386667pt;}
.y27{bottom:425.026667pt;}
.y14{bottom:428.226667pt;}
.ybd{bottom:431.426667pt;}
.y80{bottom:431.746667pt;}
.y26{bottom:440.706667pt;}
.y9e{bottom:441.186667pt;}
.y13{bottom:444.226667pt;}
.y7f{bottom:447.106667pt;}
.y25{bottom:459.106667pt;}
.y12{bottom:459.586667pt;}
.yb7{bottom:461.986667pt;}
.y7e{bottom:462.306667pt;}
.y9d{bottom:472.546667pt;}
.yb6{bottom:477.346667pt;}
.y7d{bottom:477.666667pt;}
.y7c{bottom:493.026667pt;}
.y99{bottom:503.906667pt;}
.y7b{bottom:508.386667pt;}
.y7a{bottom:523.746667pt;}
.ybc{bottom:538.786667pt;}
.y79{bottom:539.106667pt;}
.y97{bottom:550.466667pt;}
.ybb{bottom:553.986667pt;}
.y78{bottom:554.306667pt;}
.y77{bottom:569.666667pt;}
.y76{bottom:585.026667pt;}
.y96{bottom:600.066667pt;}
.y75{bottom:600.386667pt;}
.y74{bottom:615.773333pt;}
.y73{bottom:631.133333pt;}
.yb5{bottom:646.013333pt;}
.y72{bottom:646.333333pt;}
.yba{bottom:661.373333pt;}
.y71{bottom:661.693333pt;}
.y70{bottom:677.053333pt;}
.y6f{bottom:692.413333pt;}
.y6e{bottom:707.773333pt;}
.y6d{bottom:722.973333pt;}
.yc1{bottom:738.013333pt;}
.y6c{bottom:738.333333pt;}
.y6b{bottom:753.693333pt;}
.y6a{bottom:769.053333pt;}
.yb9{bottom:784.093333pt;}
.y69{bottom:784.413333pt;}
.y68{bottom:799.773333pt;}
.yc6{bottom:814.653333pt;}
.y67{bottom:814.973333pt;}
.y10{bottom:815.293333pt;}
.y66{bottom:830.373333pt;}
.yf{bottom:835.013333pt;}
.yc2{bottom:845.413333pt;}
.y65{bottom:845.733333pt;}
.ye{bottom:850.373333pt;}
.y64{bottom:861.093333pt;}
.yd{bottom:867.333333pt;}
.y63{bottom:876.453333pt;}
.yc{bottom:884.613333pt;}
.yc5{bottom:891.493333pt;}
.y62{bottom:891.813333pt;}
.yb{bottom:904.453333pt;}
.y61{bottom:907.013333pt;}
.y60{bottom:922.373333pt;}
.ya{bottom:925.413333pt;}
.y5f{bottom:937.733333pt;}
.y9{bottom:946.533333pt;}
.y54{bottom:951.333333pt;}
.y5e{bottom:953.093333pt;}
.y8{bottom:967.813333pt;}
.yc4{bottom:968.133333pt;}
.y5d{bottom:968.453333pt;}
.y5c{bottom:983.813333pt;}
.y7{bottom:988.933333pt;}
.y5b{bottom:999.013333pt;}
.y6{bottom:1010.053333pt;}
.yc3{bottom:1014.053333pt;}
.y5a{bottom:1014.373333pt;}
.y4{bottom:1041.120000pt;}
.y1{bottom:1058.880000pt;}
.h11{height:5.025000pt;}
.h12{height:5.160000pt;}
.h13{height:5.262553pt;}
.h10{height:5.280000pt;}
.h19{height:13.760000pt;}
.h4{height:15.360000pt;}
.h20{height:30.560000pt;}
.h1e{height:30.720000pt;}
.h1b{height:31.383316pt;}
.h1c{height:36.138125pt;}
.hd{height:36.305625pt;}
.h1d{height:37.090625pt;}
.hf{height:40.640625pt;}
.h1a{height:42.063437pt;}
.h3{height:42.649687pt;}
.h18{height:43.215000pt;}
.he{height:44.638750pt;}
.hc{height:44.975625pt;}
.h1f{height:45.920000pt;}
.h22{height:46.080000pt;}
.h21{height:46.112000pt;}
.h5{height:52.134375pt;}
.h14{height:53.535000pt;}
.h15{height:54.598989pt;}
.h23{height:55.298750pt;}
.ha{height:59.340000pt;}
.h17{height:64.500000pt;}
.h9{height:64.609957pt;}
.h2{height:68.748750pt;}
.h7{height:69.660000pt;}
.h6{height:70.773750pt;}
.h16{height:72.160000pt;}
.h8{height:75.846471pt;}
.hb{height:471.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w11{width:111.520000pt;}
.wd{width:111.840000pt;}
.we{width:127.680000pt;}
.wa{width:128.000000pt;}
.wf{width:129.472000pt;}
.wb{width:130.112000pt;}
.w4{width:188.546667pt;}
.w6{width:189.026667pt;}
.w10{width:229.826667pt;}
.wc{width:230.466667pt;}
.w3{width:446.333333pt;}
.w5{width:458.626667pt;}
.w7{width:459.106667pt;}
.w8{width:555.613333pt;}
.w9{width:639.493333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.200000pt;}
.x20{left:8.320000pt;}
.x11{left:9.600000pt;}
.x2d{left:11.200000pt;}
.x21{left:12.200000pt;}
.x2f{left:13.440000pt;}
.x2c{left:15.400000pt;}
.x14{left:16.480000pt;}
.xa{left:18.400000pt;}
.x23{left:20.320000pt;}
.x1a{left:21.440000pt;}
.x30{left:22.720000pt;}
.x2{left:24.000000pt;}
.x26{left:26.240000pt;}
.x3{left:27.680000pt;}
.x28{left:28.840000pt;}
.x22{left:30.120000pt;}
.x1c{left:31.040000pt;}
.x1e{left:33.000000pt;}
.x2e{left:33.960000pt;}
.x1d{left:37.000000pt;}
.x1b{left:39.680000pt;}
.x2b{left:42.560000pt;}
.x27{left:44.040000pt;}
.x29{left:46.080000pt;}
.x6{left:47.999988pt;}
.x16{left:49.160000pt;}
.x24{left:52.520000pt;}
.x1f{left:54.106667pt;}
.xd{left:55.994667pt;}
.x2a{left:77.146667pt;}
.x18{left:79.226667pt;}
.x25{left:81.626667pt;}
.x10{left:88.672000pt;}
.x1{left:96.031988pt;}
.x35{left:108.031988pt;}
.x31{left:120.031988pt;}
.x7{left:121.151988pt;}
.xc{left:124.992000pt;}
.xe{left:140.034667pt;}
.x32{left:144.026655pt;}
.x15{left:224.666667pt;}
.x9{left:237.506667pt;}
.xf{left:277.821333pt;}
.x17{left:354.946667pt;}
.x12{left:373.181333pt;}
.x13{left:376.701333pt;}
.x5{left:396.893322pt;}
.x4{left:403.453322pt;}
.xb{left:420.573322pt;}
.x33{left:444.573322pt;}
.x34{left:468.573322pt;}
.x19{left:585.413333pt;}
}




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