
    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_9fb6ceb1e8ac0c68ed726cde.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d377001e920d6a27a7eeb50a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1b9022fde12873e4b5161ee6.woff')format("woff");}.ff3{font-family:ff3;line-height:1.053223;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_c3bf2c43780c1de3971e039f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.053223;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_41c45893d90abb55b9620a33.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_11192acb79bf6025f3445be7.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_1289d72921bcdae492ea854e.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_d7962ea2e862db5b1ebf0805.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_cce007ed147b22c6c80b6cc8.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_90e69f477948eaf8e877df00.woff')format("woff");}.ffb{font-family:ffb;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_748d6d9c20a4dcbc4f4b0603.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0fbd169f11ec1bbfdf24d566.woff')format("woff");}.ffd{font-family:ffd;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_4fbf0b8a446c26191cd7eb08.woff')format("woff");}.ffe{font-family:ffe;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_4f06df5394da6a0a249f3130.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_6f5f5714951b1a22117b6659.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914551;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_5c582e36e80e1a98b699a753.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914551;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:ff12;src:url('chunks/assets/font_85e1fa91739b330fd3b883d3.woff')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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:ff13;src:url('chunks/assets/font_1ba0ed408a712bae8a822a18.woff')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;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:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsa{letter-spacing:-2.724000px;}
.ls12{letter-spacing:-1.740000px;}
.lsc{letter-spacing:-1.596000px;}
.lsd{letter-spacing:-1.482000px;}
.lse{letter-spacing:-1.128000px;}
.lsb{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.378000px;}
.ls8{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.120000px;}
.ls18{letter-spacing:1.026000px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:1.656000px;}
.ls3{letter-spacing:1.966500px;}
.ls5{letter-spacing:2.026500px;}
.ls2{letter-spacing:2.034000px;}
.ls4{letter-spacing:2.146500px;}
.ls10{letter-spacing:2.164500px;}
.ls14{letter-spacing:2.178000px;}
.ls11{letter-spacing:2.190000px;}
.lsf{letter-spacing:2.227500px;}
.ls6{letter-spacing:2.250000px;}
.ls16{letter-spacing:2.328000px;}
.ls13{letter-spacing:2.400000px;}
.ls15{letter-spacing:3.378000px;}
.ls7{letter-spacing:4.779000px;}
.ls1a{letter-spacing:15.387000px;}
.ls19{letter-spacing:46.887000px;}
.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:-17.025000px;}
.wse{word-spacing:-16.990500px;}
.ws7{word-spacing:-16.875000px;}
.wsc{word-spacing:-16.840500px;}
.wsb{word-spacing:-16.789500px;}
.ws3{word-spacing:-16.146000px;}
.wsf{word-spacing:-15.651000px;}
.ws2{word-spacing:-15.354000px;}
.ws6{word-spacing:-14.625000px;}
.ws5{word-spacing:-13.221000px;}
.wsa{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws8{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.826000px;}
.ws4{word-spacing:-8.136000px;}
.ws9{word-spacing:0.000000px;}
._13{margin-left:-7.476000px;}
._e{margin-left:-6.151500px;}
._d{margin-left:-5.088000px;}
._a{margin-left:-3.393000px;}
._2{margin-left:-2.304000px;}
._0{margin-left:-1.080000px;}
._1{width:1.134000px;}
._3{width:2.160000px;}
._7{width:3.312000px;}
._4{width:4.536000px;}
._c{width:5.697000px;}
._6{width:7.056000px;}
._8{width:8.208000px;}
._b{width:10.000500px;}
._9{width:11.604000px;}
._f{width:13.333500px;}
._12{width:14.701500px;}
._5{width:16.704000px;}
._24{width:17.752500px;}
._25{width:19.426500px;}
._11{width:20.925000px;}
._14{width:22.128000px;}
._10{width:25.062000px;}
._1f{width:26.581500px;}
._21{width:30.919500px;}
._19{width:35.649000px;}
._1d{width:39.528000px;}
._23{width:43.978500px;}
._17{width:48.473550px;}
._1c{width:57.339000px;}
._15{width:62.347500px;}
._1a{width:66.474000px;}
._1b{width:71.608500px;}
._20{width:79.852500px;}
._22{width:103.275000px;}
._1e{width:125.737500px;}
._16{width:130.000500px;}
._18{width:215.590500px;}
.fc6{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs8{font-size:58.650000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y95{bottom:2.362500px;}
.y91{bottom:2.400000px;}
.y8d{bottom:2.475000px;}
.y9f{bottom:3.150000px;}
.y4{bottom:3.375000px;}
.y43{bottom:3.390000px;}
.y9a{bottom:4.350000px;}
.yac{bottom:4.485000px;}
.y1f{bottom:4.500000px;}
.yf{bottom:11.250000px;}
.y21{bottom:12.420000px;}
.yd{bottom:13.545000px;}
.y3{bottom:20.250000px;}
.yad{bottom:20.280000px;}
.y3f{bottom:20.295000px;}
.y94{bottom:20.370000px;}
.y90{bottom:20.445000px;}
.y8c{bottom:20.475000px;}
.y9e{bottom:21.195000px;}
.y99{bottom:21.225000px;}
.yb0{bottom:21.375000px;}
.yab{bottom:21.405000px;}
.y42{bottom:22.545000px;}
.y41{bottom:25.920000px;}
.y1e{bottom:29.295000px;}
.y6{bottom:30.375000px;}
.yc{bottom:30.420000px;}
.y5{bottom:33.787500px;}
.y2{bottom:36.037500px;}
.y93{bottom:37.275000px;}
.y8f{bottom:37.320000px;}
.y9d{bottom:38.070000px;}
.y97{bottom:38.130000px;}
.y3e{bottom:38.280000px;}
.yaf{bottom:38.295000px;}
.y1d{bottom:46.170000px;}
.yb{bottom:46.200000px;}
.y1{bottom:51.787500px;}
.y9c{bottom:54.945000px;}
.y3d{bottom:55.155000px;}
.ya9{bottom:56.280000px;}
.y1c{bottom:61.920000px;}
.y3c{bottom:72.075000px;}
.ya{bottom:73.200000px;}
.y1b{bottom:78.825000px;}
.y3b{bottom:90.075000px;}
.y9{bottom:93.480000px;}
.y1a{bottom:95.700000px;}
.y3a{bottom:106.995000px;}
.y8{bottom:110.355000px;}
.y19{bottom:111.495000px;}
.y4e{bottom:122.737500px;}
.y39{bottom:123.870000px;}
.yce{bottom:128.362500px;}
.y18{bottom:128.370000px;}
.y92{bottom:130.500000px;}
.y17{bottom:138.495000px;}
.y4d{bottom:140.737500px;}
.y38{bottom:141.870000px;}
.ycd{bottom:145.237500px;}
.y2d{bottom:149.775000px;}
.y16{bottom:156.540000px;}
.y4c{bottom:157.620000px;}
.y37{bottom:158.775000px;}
.ycc{bottom:162.150000px;}
.y2c{bottom:166.650000px;}
.y4b{bottom:174.525000px;}
.y15{bottom:174.540000px;}
.y36{bottom:175.650000px;}
.ycb{bottom:180.150000px;}
.y2b{bottom:183.525000px;}
.y4a{bottom:192.525000px;}
.y14{bottom:193.695000px;}
.y8e{bottom:194.625000px;}
.yca{bottom:197.025000px;}
.y2a{bottom:201.570000px;}
.y49{bottom:209.445000px;}
.y35{bottom:210.570000px;}
.yc9{bottom:213.945000px;}
.y29{bottom:218.445000px;}
.y13{bottom:219.570000px;}
.y48{bottom:226.320000px;}
.y34{bottom:227.445000px;}
.yc8{bottom:231.945000px;}
.y28{bottom:236.475000px;}
.y47{bottom:244.350000px;}
.y33{bottom:245.475000px;}
.y12{bottom:245.490000px;}
.yc7{bottom:248.850000px;}
.y27{bottom:253.350000px;}
.y8b{bottom:258.750000px;}
.y46{bottom:261.225000px;}
.y32{bottom:262.350000px;}
.yc6{bottom:265.725000px;}
.y11{bottom:270.240000px;}
.y26{bottom:271.395000px;}
.y45{bottom:278.100000px;}
.y31{bottom:279.270000px;}
.yc5{bottom:283.725000px;}
.y25{bottom:288.270000px;}
.y44{bottom:297.255000px;}
.y30{bottom:297.270000px;}
.yc4{bottom:300.630000px;}
.y8a{bottom:302.880000px;}
.y40{bottom:311.880000px;}
.y2f{bottom:314.175000px;}
.y24{bottom:315.300000px;}
.yc3{bottom:317.505000px;}
.y89{bottom:319.755000px;}
.y2e{bottom:331.050000px;}
.y23{bottom:333.300000px;}
.yc2{bottom:335.550000px;}
.y88{bottom:336.675000px;}
.y22{bottom:349.050000px;}
.y7f{bottom:352.425000px;}
.y87{bottom:354.675000px;}
.y7e{bottom:365.925000px;}
.yc1{bottom:369.345000px;}
.y86{bottom:371.580000px;}
.y7b{bottom:377.205000px;}
.yc0{bottom:387.330000px;}
.y85{bottom:388.455000px;}
.y7a{bottom:391.830000px;}
.yd3{bottom:399.720000px;}
.ybf{bottom:404.205000px;}
.y84{bottom:406.470000px;}
.y79{bottom:409.875000px;}
.yd2{bottom:416.625000px;}
.ybe{bottom:421.125000px;}
.y83{bottom:423.375000px;}
.y78{bottom:427.875000px;}
.yd1{bottom:433.500000px;}
.y82{bottom:436.875000px;}
.ybd{bottom:439.125000px;}
.y77{bottom:445.875000px;}
.yd0{bottom:451.530000px;}
.ybc{bottom:456.045000px;}
.y76{bottom:463.905000px;}
.ycf{bottom:468.405000px;}
.ybb{bottom:472.920000px;}
.y75{bottom:485.280000px;}
.yba{bottom:490.920000px;}
.y74{bottom:503.325000px;}
.yb9{bottom:507.825000px;}
.y73{bottom:520.200000px;}
.yb8{bottom:524.700000px;}
.y72{bottom:537.120000px;}
.yb7{bottom:542.745000px;}
.y71{bottom:555.105000px;}
.yb6{bottom:559.620000px;}
.y70{bottom:571.980000px;}
.yb5{bottom:576.495000px;}
.y6f{bottom:588.900000px;}
.yb4{bottom:594.525000px;}
.y6e{bottom:606.900000px;}
.yb3{bottom:611.400000px;}
.y7d{bottom:619.320000px;}
.y6d{bottom:623.820000px;}
.yb2{bottom:628.320000px;}
.y7c{bottom:632.820000px;}
.y6c{bottom:640.695000px;}
.yb1{bottom:642.945000px;}
.y6b{bottom:658.695000px;}
.y6a{bottom:675.600000px;}
.y69{bottom:692.475000px;}
.y20{bottom:693.600000px;}
.y81{bottom:698.100000px;}
.y68{bottom:710.505000px;}
.y80{bottom:711.630000px;}
.yae{bottom:712.755000px;}
.y10{bottom:722.880000px;}
.y67{bottom:727.380000px;}
.y66{bottom:744.300000px;}
.y65{bottom:762.300000px;}
.ya8{bottom:765.675000px;}
.y64{bottom:779.175000px;}
.y63{bottom:796.080000px;}
.y62{bottom:814.080000px;}
.yaa{bottom:817.470000px;}
.y61{bottom:831.000000px;}
.y60{bottom:847.875000px;}
.ya7{bottom:853.500000px;}
.y5f{bottom:865.875000px;}
.y5e{bottom:882.795000px;}
.ya6{bottom:891.795000px;}
.y5d{bottom:899.670000px;}
.ya5{bottom:909.795000px;}
.y5c{bottom:917.700000px;}
.ya4{bottom:926.700000px;}
.y5b{bottom:934.575000px;}
.ya3{bottom:943.575000px;}
.y5a{bottom:951.450000px;}
.ya2{bottom:961.620000px;}
.y59{bottom:969.495000px;}
.ya1{bottom:978.495000px;}
.y58{bottom:986.370000px;}
.ya0{bottom:999.900000px;}
.y57{bottom:1003.275000px;}
.ye{bottom:1007.775000px;}
.y9b{bottom:1015.875000px;}
.y56{bottom:1021.275000px;}
.y7{bottom:1033.650000px;}
.y55{bottom:1038.195000px;}
.y54{bottom:1055.070000px;}
.y53{bottom:1073.070000px;}
.y52{bottom:1089.975000px;}
.y98{bottom:1096.725000px;}
.y96{bottom:1096.875000px;}
.y51{bottom:1106.850000px;}
.y50{bottom:1124.880000px;}
.y4f{bottom:1141.755000px;}
.h21{height:16.875000px;}
.h22{height:16.912500px;}
.hd{height:25.875000px;}
.h2a{height:28.298584px;}
.h15{height:29.287500px;}
.h14{height:33.723633px;}
.h2b{height:33.787500px;}
.h24{height:34.875000px;}
.h2d{height:34.897500px;}
.h13{height:35.806641px;}
.ha{height:37.125000px;}
.h1d{height:37.162500px;}
.h1c{height:40.875732px;}
.h27{height:40.980542px;}
.h1b{height:41.275635px;}
.h31{height:42.589600px;}
.hf{height:43.075195px;}
.h1e{height:43.288330px;}
.hc{height:43.875000px;}
.h30{height:46.238584px;}
.h1f{height:46.298584px;}
.h23{height:46.358584px;}
.h2f{height:46.418584px;}
.h20{height:46.478584px;}
.h26{height:46.575439px;}
.h5{height:47.223633px;}
.h1a{height:48.216797px;}
.h18{height:49.234131px;}
.h2{height:49.537500px;}
.h19{height:51.158936px;}
.h25{height:51.750000px;}
.h28{height:51.787500px;}
.h4{height:53.709961px;}
.hb{height:54.000000px;}
.h3{height:55.291992px;}
.h11{height:58.185791px;}
.h12{height:59.899658px;}
.h10{height:64.237500px;}
.h7{height:67.137451px;}
.h29{height:68.625000px;}
.h2e{height:68.685000px;}
.h6{height:69.114990px;}
.h9{height:71.613281px;}
.h16{height:73.722656px;}
.h2c{height:86.700000px;}
.h8{height:121.612500px;}
.he{height:284.880000px;}
.h17{height:344.550000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.we{width:64.125000px;}
.w12{width:64.237500px;}
.w14{width:65.325000px;}
.w2{width:73.237500px;}
.w13{width:95.737500px;}
.wf{width:97.875000px;}
.wd{width:106.875000px;}
.w15{width:114.900000px;}
.w18{width:126.187500px;}
.w11{width:133.875000px;}
.w4{width:141.937500px;}
.w17{width:146.437500px;}
.w9{width:164.430000px;}
.w16{width:176.850000px;}
.w10{width:193.500000px;}
.w7{width:209.520000px;}
.wa{width:263.595000px;}
.wc{width:270.375000px;}
.wb{width:287.250000px;}
.w8{width:522.675000px;}
.w5{width:590.250000px;}
.w1{width:658.950000px;}
.w6{width:732.195000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:6.862500px;}
.x4{left:7.875000px;}
.x2{left:9.000000px;}
.x10{left:13.500000px;}
.xd{left:19.125000px;}
.x19{left:20.280000px;}
.xe{left:50.700000px;}
.x1{left:81.112500px;}
.x1b{left:82.237500px;}
.x11{left:91.237500px;}
.x5{left:97.987500px;}
.x31{left:108.149987px;}
.x15{left:112.657500px;}
.xf{left:165.562500px;}
.x13{left:168.967500px;}
.x16{left:177.982500px;}
.x2b{left:179.100000px;}
.x25{left:187.875000px;}
.x14{left:194.857500px;}
.x17{left:214.012500px;}
.x6{left:223.050000px;}
.x12{left:244.432500px;}
.x2c{left:245.550000px;}
.x1c{left:247.800000px;}
.x26{left:252.000000px;}
.x9{left:284.955000px;}
.x18{left:290.625000px;}
.x2a{left:302.999987px;}
.x1a{left:321.029987px;}
.x23{left:323.279987px;}
.x7{left:343.545000px;}
.x27{left:349.875000px;}
.x2d{left:361.575000px;}
.x8{left:362.700000px;}
.xc{left:364.957500px;}
.x30{left:397.649987px;}
.xb{left:425.775000px;}
.x1f{left:447.194987px;}
.xa{left:448.320000px;}
.x1d{left:512.520000px;}
.x2e{left:538.425000px;}
.x28{left:543.375000px;}
.x29{left:677.250000px;}
.x2f{left:685.995000px;}
.x1e{left:699.524987px;}
.x21{left:736.694987px;}
.x3{left:740.070000px;}
.x22{left:741.194987px;}
.x20{left:769.349987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsa{letter-spacing:-2.421333pt;}
.ls12{letter-spacing:-1.546667pt;}
.lsc{letter-spacing:-1.418667pt;}
.lsd{letter-spacing:-1.317333pt;}
.lse{letter-spacing:-1.002667pt;}
.lsb{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.336000pt;}
.ls8{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.106667pt;}
.ls18{letter-spacing:0.912000pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.472000pt;}
.ls3{letter-spacing:1.748000pt;}
.ls5{letter-spacing:1.801333pt;}
.ls2{letter-spacing:1.808000pt;}
.ls4{letter-spacing:1.908000pt;}
.ls10{letter-spacing:1.924000pt;}
.ls14{letter-spacing:1.936000pt;}
.ls11{letter-spacing:1.946667pt;}
.lsf{letter-spacing:1.980000pt;}
.ls6{letter-spacing:2.000000pt;}
.ls16{letter-spacing:2.069333pt;}
.ls13{letter-spacing:2.133333pt;}
.ls15{letter-spacing:3.002667pt;}
.ls7{letter-spacing:4.248000pt;}
.ls1a{letter-spacing:13.677333pt;}
.ls19{letter-spacing:41.677333pt;}
.wsd{word-spacing:-15.133333pt;}
.wse{word-spacing:-15.102667pt;}
.ws7{word-spacing:-15.000000pt;}
.wsc{word-spacing:-14.969333pt;}
.wsb{word-spacing:-14.924000pt;}
.ws3{word-spacing:-14.352000pt;}
.wsf{word-spacing:-13.912000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws6{word-spacing:-13.000000pt;}
.ws5{word-spacing:-11.752000pt;}
.wsa{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws8{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.512000pt;}
.ws4{word-spacing:-7.232000pt;}
.ws9{word-spacing:0.000000pt;}
._13{margin-left:-6.645333pt;}
._e{margin-left:-5.468000pt;}
._d{margin-left:-4.522667pt;}
._a{margin-left:-3.016000pt;}
._2{margin-left:-2.048000pt;}
._0{margin-left:-0.960000pt;}
._1{width:1.008000pt;}
._3{width:1.920000pt;}
._7{width:2.944000pt;}
._4{width:4.032000pt;}
._c{width:5.064000pt;}
._6{width:6.272000pt;}
._8{width:7.296000pt;}
._b{width:8.889333pt;}
._9{width:10.314667pt;}
._f{width:11.852000pt;}
._12{width:13.068000pt;}
._5{width:14.848000pt;}
._24{width:15.780000pt;}
._25{width:17.268000pt;}
._11{width:18.600000pt;}
._14{width:19.669333pt;}
._10{width:22.277333pt;}
._1f{width:23.628000pt;}
._21{width:27.484000pt;}
._19{width:31.688000pt;}
._1d{width:35.136000pt;}
._23{width:39.092000pt;}
._17{width:43.087600pt;}
._1c{width:50.968000pt;}
._15{width:55.420000pt;}
._1a{width:59.088000pt;}
._1b{width:63.652000pt;}
._20{width:70.980000pt;}
._22{width:91.800000pt;}
._1e{width:111.766667pt;}
._16{width:115.556000pt;}
._18{width:191.636000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs8{font-size:52.133333pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:2.100000pt;}
.y91{bottom:2.133333pt;}
.y8d{bottom:2.200000pt;}
.y9f{bottom:2.800000pt;}
.y4{bottom:3.000000pt;}
.y43{bottom:3.013333pt;}
.y9a{bottom:3.866667pt;}
.yac{bottom:3.986667pt;}
.y1f{bottom:4.000000pt;}
.yf{bottom:10.000000pt;}
.y21{bottom:11.040000pt;}
.yd{bottom:12.040000pt;}
.y3{bottom:18.000000pt;}
.yad{bottom:18.026667pt;}
.y3f{bottom:18.040000pt;}
.y94{bottom:18.106667pt;}
.y90{bottom:18.173333pt;}
.y8c{bottom:18.200000pt;}
.y9e{bottom:18.840000pt;}
.y99{bottom:18.866667pt;}
.yb0{bottom:19.000000pt;}
.yab{bottom:19.026667pt;}
.y42{bottom:20.040000pt;}
.y41{bottom:23.040000pt;}
.y1e{bottom:26.040000pt;}
.y6{bottom:27.000000pt;}
.yc{bottom:27.040000pt;}
.y5{bottom:30.033333pt;}
.y2{bottom:32.033333pt;}
.y93{bottom:33.133333pt;}
.y8f{bottom:33.173333pt;}
.y9d{bottom:33.840000pt;}
.y97{bottom:33.893333pt;}
.y3e{bottom:34.026667pt;}
.yaf{bottom:34.040000pt;}
.y1d{bottom:41.040000pt;}
.yb{bottom:41.066667pt;}
.y1{bottom:46.033333pt;}
.y9c{bottom:48.840000pt;}
.y3d{bottom:49.026667pt;}
.ya9{bottom:50.026667pt;}
.y1c{bottom:55.040000pt;}
.y3c{bottom:64.066667pt;}
.ya{bottom:65.066667pt;}
.y1b{bottom:70.066667pt;}
.y3b{bottom:80.066667pt;}
.y9{bottom:83.093333pt;}
.y1a{bottom:85.066667pt;}
.y3a{bottom:95.106667pt;}
.y8{bottom:98.093333pt;}
.y19{bottom:99.106667pt;}
.y4e{bottom:109.100000pt;}
.y39{bottom:110.106667pt;}
.yce{bottom:114.100000pt;}
.y18{bottom:114.106667pt;}
.y92{bottom:116.000000pt;}
.y17{bottom:123.106667pt;}
.y4d{bottom:125.100000pt;}
.y38{bottom:126.106667pt;}
.ycd{bottom:129.100000pt;}
.y2d{bottom:133.133333pt;}
.y16{bottom:139.146667pt;}
.y4c{bottom:140.106667pt;}
.y37{bottom:141.133333pt;}
.ycc{bottom:144.133333pt;}
.y2c{bottom:148.133333pt;}
.y4b{bottom:155.133333pt;}
.y15{bottom:155.146667pt;}
.y36{bottom:156.133333pt;}
.ycb{bottom:160.133333pt;}
.y2b{bottom:163.133333pt;}
.y4a{bottom:171.133333pt;}
.y14{bottom:172.173333pt;}
.y8e{bottom:173.000000pt;}
.yca{bottom:175.133333pt;}
.y2a{bottom:179.173333pt;}
.y49{bottom:186.173333pt;}
.y35{bottom:187.173333pt;}
.yc9{bottom:190.173333pt;}
.y29{bottom:194.173333pt;}
.y13{bottom:195.173333pt;}
.y48{bottom:201.173333pt;}
.y34{bottom:202.173333pt;}
.yc8{bottom:206.173333pt;}
.y28{bottom:210.200000pt;}
.y47{bottom:217.200000pt;}
.y33{bottom:218.200000pt;}
.y12{bottom:218.213333pt;}
.yc7{bottom:221.200000pt;}
.y27{bottom:225.200000pt;}
.y8b{bottom:230.000000pt;}
.y46{bottom:232.200000pt;}
.y32{bottom:233.200000pt;}
.yc6{bottom:236.200000pt;}
.y11{bottom:240.213333pt;}
.y26{bottom:241.240000pt;}
.y45{bottom:247.200000pt;}
.y31{bottom:248.240000pt;}
.yc5{bottom:252.200000pt;}
.y25{bottom:256.240000pt;}
.y44{bottom:264.226667pt;}
.y30{bottom:264.240000pt;}
.yc4{bottom:267.226667pt;}
.y8a{bottom:269.226667pt;}
.y40{bottom:277.226667pt;}
.y2f{bottom:279.266667pt;}
.y24{bottom:280.266667pt;}
.yc3{bottom:282.226667pt;}
.y89{bottom:284.226667pt;}
.y2e{bottom:294.266667pt;}
.y23{bottom:296.266667pt;}
.yc2{bottom:298.266667pt;}
.y88{bottom:299.266667pt;}
.y22{bottom:310.266667pt;}
.y7f{bottom:313.266667pt;}
.y87{bottom:315.266667pt;}
.y7e{bottom:325.266667pt;}
.yc1{bottom:328.306667pt;}
.y86{bottom:330.293333pt;}
.y7b{bottom:335.293333pt;}
.yc0{bottom:344.293333pt;}
.y85{bottom:345.293333pt;}
.y7a{bottom:348.293333pt;}
.yd3{bottom:355.306667pt;}
.ybf{bottom:359.293333pt;}
.y84{bottom:361.306667pt;}
.y79{bottom:364.333333pt;}
.yd2{bottom:370.333333pt;}
.ybe{bottom:374.333333pt;}
.y83{bottom:376.333333pt;}
.y78{bottom:380.333333pt;}
.yd1{bottom:385.333333pt;}
.y82{bottom:388.333333pt;}
.ybd{bottom:390.333333pt;}
.y77{bottom:396.333333pt;}
.yd0{bottom:401.360000pt;}
.ybc{bottom:405.373333pt;}
.y76{bottom:412.360000pt;}
.ycf{bottom:416.360000pt;}
.ybb{bottom:420.373333pt;}
.y75{bottom:431.360000pt;}
.yba{bottom:436.373333pt;}
.y74{bottom:447.400000pt;}
.yb9{bottom:451.400000pt;}
.y73{bottom:462.400000pt;}
.yb8{bottom:466.400000pt;}
.y72{bottom:477.440000pt;}
.yb7{bottom:482.440000pt;}
.y71{bottom:493.426667pt;}
.yb6{bottom:497.440000pt;}
.y70{bottom:508.426667pt;}
.yb5{bottom:512.440000pt;}
.y6f{bottom:523.466667pt;}
.yb4{bottom:528.466667pt;}
.y6e{bottom:539.466667pt;}
.yb3{bottom:543.466667pt;}
.y7d{bottom:550.506667pt;}
.y6d{bottom:554.506667pt;}
.yb2{bottom:558.506667pt;}
.y7c{bottom:562.506667pt;}
.y6c{bottom:569.506667pt;}
.yb1{bottom:571.506667pt;}
.y6b{bottom:585.506667pt;}
.y6a{bottom:600.533333pt;}
.y69{bottom:615.533333pt;}
.y20{bottom:616.533333pt;}
.y81{bottom:620.533333pt;}
.y68{bottom:631.560000pt;}
.y80{bottom:632.560000pt;}
.yae{bottom:633.560000pt;}
.y10{bottom:642.560000pt;}
.y67{bottom:646.560000pt;}
.y66{bottom:661.600000pt;}
.y65{bottom:677.600000pt;}
.ya8{bottom:680.600000pt;}
.y64{bottom:692.600000pt;}
.y63{bottom:707.626667pt;}
.y62{bottom:723.626667pt;}
.yaa{bottom:726.640000pt;}
.y61{bottom:738.666667pt;}
.y60{bottom:753.666667pt;}
.ya7{bottom:758.666667pt;}
.y5f{bottom:769.666667pt;}
.y5e{bottom:784.706667pt;}
.ya6{bottom:792.706667pt;}
.y5d{bottom:799.706667pt;}
.ya5{bottom:808.706667pt;}
.y5c{bottom:815.733333pt;}
.ya4{bottom:823.733333pt;}
.y5b{bottom:830.733333pt;}
.ya3{bottom:838.733333pt;}
.y5a{bottom:845.733333pt;}
.ya2{bottom:854.773333pt;}
.y59{bottom:861.773333pt;}
.ya1{bottom:869.773333pt;}
.y58{bottom:876.773333pt;}
.ya0{bottom:888.800000pt;}
.y57{bottom:891.800000pt;}
.ye{bottom:895.800000pt;}
.y9b{bottom:903.000000pt;}
.y56{bottom:907.800000pt;}
.y7{bottom:918.800000pt;}
.y55{bottom:922.840000pt;}
.y54{bottom:937.840000pt;}
.y53{bottom:953.840000pt;}
.y52{bottom:968.866667pt;}
.y98{bottom:974.866667pt;}
.y96{bottom:975.000000pt;}
.y51{bottom:983.866667pt;}
.y50{bottom:999.893333pt;}
.y4f{bottom:1014.893333pt;}
.h21{height:15.000000pt;}
.h22{height:15.033333pt;}
.hd{height:23.000000pt;}
.h2a{height:25.154297pt;}
.h15{height:26.033333pt;}
.h14{height:29.976562pt;}
.h2b{height:30.033333pt;}
.h24{height:31.000000pt;}
.h2d{height:31.020000pt;}
.h13{height:31.828125pt;}
.ha{height:33.000000pt;}
.h1d{height:33.033333pt;}
.h1c{height:36.333984pt;}
.h27{height:36.427148pt;}
.h1b{height:36.689453pt;}
.h31{height:37.857422pt;}
.hf{height:38.289062pt;}
.h1e{height:38.478516pt;}
.hc{height:39.000000pt;}
.h30{height:41.100964pt;}
.h1f{height:41.154297pt;}
.h23{height:41.207630pt;}
.h2f{height:41.260964pt;}
.h20{height:41.314297pt;}
.h26{height:41.400391pt;}
.h5{height:41.976562pt;}
.h1a{height:42.859375pt;}
.h18{height:43.763672pt;}
.h2{height:44.033333pt;}
.h19{height:45.474609pt;}
.h25{height:46.000000pt;}
.h28{height:46.033333pt;}
.h4{height:47.742188pt;}
.hb{height:48.000000pt;}
.h3{height:49.148438pt;}
.h11{height:51.720703pt;}
.h12{height:53.244141pt;}
.h10{height:57.100000pt;}
.h7{height:59.677734pt;}
.h29{height:61.000000pt;}
.h2e{height:61.053333pt;}
.h6{height:61.435547pt;}
.h9{height:63.656250pt;}
.h16{height:65.531250pt;}
.h2c{height:77.066667pt;}
.h8{height:108.100000pt;}
.he{height:253.226667pt;}
.h17{height:306.266667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.we{width:57.000000pt;}
.w12{width:57.100000pt;}
.w14{width:58.066667pt;}
.w2{width:65.100000pt;}
.w13{width:85.100000pt;}
.wf{width:87.000000pt;}
.wd{width:95.000000pt;}
.w15{width:102.133333pt;}
.w18{width:112.166667pt;}
.w11{width:119.000000pt;}
.w4{width:126.166667pt;}
.w17{width:130.166667pt;}
.w9{width:146.160000pt;}
.w16{width:157.200000pt;}
.w10{width:172.000000pt;}
.w7{width:186.240000pt;}
.wa{width:234.306667pt;}
.wc{width:240.333333pt;}
.wb{width:255.333333pt;}
.w8{width:464.600000pt;}
.w5{width:524.666667pt;}
.w1{width:585.733333pt;}
.w6{width:650.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:6.100000pt;}
.x4{left:7.000000pt;}
.x2{left:8.000000pt;}
.x10{left:12.000000pt;}
.xd{left:17.000000pt;}
.x19{left:18.026667pt;}
.xe{left:45.066667pt;}
.x1{left:72.100000pt;}
.x1b{left:73.100000pt;}
.x11{left:81.100000pt;}
.x5{left:87.100000pt;}
.x31{left:96.133322pt;}
.x15{left:100.140000pt;}
.xf{left:147.166667pt;}
.x13{left:150.193333pt;}
.x16{left:158.206667pt;}
.x2b{left:159.200000pt;}
.x25{left:167.000000pt;}
.x14{left:173.206667pt;}
.x17{left:190.233333pt;}
.x6{left:198.266667pt;}
.x12{left:217.273333pt;}
.x2c{left:218.266667pt;}
.x1c{left:220.266667pt;}
.x26{left:224.000000pt;}
.x9{left:253.293333pt;}
.x18{left:258.333333pt;}
.x2a{left:269.333322pt;}
.x1a{left:285.359988pt;}
.x23{left:287.359988pt;}
.x7{left:305.373333pt;}
.x27{left:311.000000pt;}
.x2d{left:321.400000pt;}
.x8{left:322.400000pt;}
.xc{left:324.406667pt;}
.x30{left:353.466655pt;}
.xb{left:378.466667pt;}
.x1f{left:397.506655pt;}
.xa{left:398.506667pt;}
.x1d{left:455.573333pt;}
.x2e{left:478.600000pt;}
.x28{left:483.000000pt;}
.x29{left:602.000000pt;}
.x2f{left:609.773333pt;}
.x1e{left:621.799988pt;}
.x21{left:654.839988pt;}
.x3{left:657.840000pt;}
.x22{left:658.839988pt;}
.x20{left:683.866655pt;}
}




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