
    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_2e69031abe68d8bc9e87048a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_cc6c8b01ad0b545e7bcdaabc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666504;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_07994fd8b7296ac9f0f10929.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_f10e2ac7f21b8367d7ad055e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.757812;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_1e90aedb8aff6fb16cd02af8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.097656;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_842c4fc5985a0f3004fe7d5f.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;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_77bae1ec03f4334c35f0eb09.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_83e0214cd0801b5e6a4fe1ab.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910645;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_47b13ad0c08a7daad9d05d20.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.675781;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_9ca769b5c9de1cb33b5a6936.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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_1e9ff76fee27ffecde59c69d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_cd2cc4bf26d6feb16fed58d0.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.005371;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_9a0589e0daba88490598a44e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.675781;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_9687ca4d5675446c259176f1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.006348;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_70cbdf770911407b51fb6b0b.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;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_bbd5ffa34f1f167e44cc7523.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_19796a9a6ffa9ecb87171c16.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.104004;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_48143a9dd4b2fb122aa6d535.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.093262;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_c5bfb4cfea41f7575ed51a43.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_e6128428fb747440a440f6c4.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.480000px;}
.ls1d{letter-spacing:-0.569088px;}
.ls19{letter-spacing:-0.470592px;}
.ls6{letter-spacing:-0.454176px;}
.ls15{letter-spacing:-0.447552px;}
.ls1c{letter-spacing:-0.432288px;}
.ls1e{letter-spacing:-0.421344px;}
.ls1b{letter-spacing:-0.361152px;}
.ls10{letter-spacing:-0.338688px;}
.ls11{letter-spacing:-0.320544px;}
.ls12{letter-spacing:-0.302400px;}
.lsf{letter-spacing:-0.241920px;}
.ls9{letter-spacing:-0.241200px;}
.ls13{letter-spacing:-0.223776px;}
.ls20{letter-spacing:-0.213408px;}
.ls7{letter-spacing:-0.186048px;}
.ls1f{letter-spacing:-0.169632px;}
.ls3{letter-spacing:-0.158976px;}
.ls14{letter-spacing:-0.145152px;}
.ls5{letter-spacing:-0.125856px;}
.ls8{letter-spacing:-0.115776px;}
.lse{letter-spacing:-0.014400px;}
.ls4{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.000576px;}
.ls1a{letter-spacing:0.007200px;}
.ls16{letter-spacing:0.014400px;}
.ls23{letter-spacing:0.133056px;}
.ls18{letter-spacing:0.143856px;}
.ls2{letter-spacing:0.239040px;}
.ls0{letter-spacing:0.240480px;}
.ls25{letter-spacing:0.256608px;}
.lsd{letter-spacing:0.262944px;}
.lsb{letter-spacing:0.274896px;}
.ls17{letter-spacing:0.280368px;}
.lsc{letter-spacing:0.286848px;}
.ls24{letter-spacing:0.289872px;}
.ls22{letter-spacing:0.304128px;}
.lsa{letter-spacing:0.346608px;}
.ls21{letter-spacing:0.351648px;}
.ls1{letter-spacing:73.440000px;}
.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;}
}
.ws3{word-spacing:-26.821440px;}
.ws4{word-spacing:-26.580240px;}
.ws0{word-spacing:-18.288864px;}
.ws9{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.ws11{word-spacing:-17.985600px;}
.ws10{word-spacing:-16.257600px;}
.ws7{word-spacing:-14.974848px;}
.ws6{word-spacing:-14.896224px;}
.ws8{word-spacing:-14.672448px;}
.wsb{word-spacing:-14.227200px;}
.ws2{word-spacing:-14.041152px;}
.wsc{word-spacing:-13.866048px;}
.wse{word-spacing:-13.805856px;}
.ws1{word-spacing:-13.773024px;}
.wsd{word-spacing:-13.658112px;}
.wsf{word-spacing:-12.659328px;}
.wsa{word-spacing:0.000000px;}
._5{margin-left:-9.848160px;}
._4{margin-left:-8.844480px;}
._15{margin-left:-7.306416px;}
._16{margin-left:-5.196960px;}
._1{margin-left:-3.841920px;}
._0{margin-left:-2.119680px;}
._3{margin-left:-1.023552px;}
._2{width:1.059840px;}
._8{width:2.181456px;}
._7{width:3.909744px;}
._c{width:5.839200px;}
._9{width:7.236000px;}
._e{width:8.388000px;}
._d{width:10.180800px;}
._10{width:11.219184px;}
._f{width:12.628800px;}
._14{width:13.694400px;}
._12{width:15.379200px;}
._18{width:16.416000px;}
._17{width:19.159200px;}
._1f{width:20.779200px;}
._1c{width:21.931200px;}
._1b{width:23.061600px;}
._13{width:24.984000px;}
._a{width:26.625600px;}
._19{width:27.871200px;}
._1a{width:29.109600px;}
._b{width:30.139200px;}
._21{width:33.328800px;}
._24{width:42.228000px;}
._11{width:52.588800px;}
._1d{width:60.631200px;}
._6{width:73.381392px;}
._1e{width:74.678400px;}
._20{width:77.320800px;}
._25{width:103.212000px;}
._23{width:150.336000px;}
._22{width:239.668416px;}
.fc3{color:rgb(238,0,0);}
.fc1{color:rgb(121,124,143);}
.fc2{color:rgb(51,198,119);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:44.640000px;}
.fs5{font-size:47.520000px;}
.fs2{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.fs4{font-size:119.520000px;}
.y0{bottom:0.000000px;}
.y4c{bottom:4.080000px;}
.y6c{bottom:4.320000px;}
.y12{bottom:4.920000px;}
.y4f{bottom:5.280000px;}
.y4e{bottom:7.800000px;}
.y9{bottom:11.400000px;}
.y3d{bottom:14.520000px;}
.yd{bottom:14.640000px;}
.y4b{bottom:21.360000px;}
.y11{bottom:25.440000px;}
.y6e{bottom:25.800000px;}
.y19{bottom:26.340000px;}
.y8{bottom:33.720000px;}
.y3c{bottom:35.040000px;}
.y6b{bottom:35.640000px;}
.y4a{bottom:38.640000px;}
.yf{bottom:45.600000px;}
.y10{bottom:46.320000px;}
.y18{bottom:47.220000px;}
.yc{bottom:51.000000px;}
.y3b{bottom:55.920000px;}
.y4{bottom:57.240000px;}
.y6a{bottom:57.960000px;}
.y55{bottom:66.960000px;}
.y17{bottom:68.100000px;}
.y49{bottom:73.200000px;}
.y56{bottom:75.000000px;}
.y3{bottom:76.320000px;}
.y3a{bottom:76.440000px;}
.y69{bottom:80.280000px;}
.y54{bottom:84.600000px;}
.yb{bottom:87.720000px;}
.y16{bottom:88.980000px;}
.y39{bottom:97.320000px;}
.ya0{bottom:102.240000px;}
.y68{bottom:102.600000px;}
.y15{bottom:109.860000px;}
.yba{bottom:114.120000px;}
.y38{bottom:117.840000px;}
.yb0{bottom:123.120000px;}
.ya{bottom:124.440000px;}
.y67{bottom:124.920000px;}
.y14{bottom:131.100000px;}
.y9f{bottom:133.560000px;}
.y37{bottom:138.720000px;}
.y7f{bottom:139.320000px;}
.y50{bottom:143.280000px;}
.yb9{bottom:145.080000px;}
.y66{bottom:147.240000px;}
.y7{bottom:147.840000px;}
.yaf{bottom:154.080000px;}
.y4d{bottom:156.000000px;}
.ye7{bottom:158.040000px;}
.y36{bottom:159.240000px;}
.yb3{bottom:163.080000px;}
.y9e{bottom:164.520000px;}
.y65{bottom:169.560000px;}
.y7e{bottom:170.280000px;}
.yb8{bottom:176.040000px;}
.y1a{bottom:177.000000px;}
.y35{bottom:180.120000px;}
.yd1{bottom:180.360000px;}
.ye6{bottom:189.360000px;}
.y64{bottom:191.880000px;}
.yae{bottom:194.040000px;}
.y9d{bottom:195.480000px;}
.y34{bottom:200.640000px;}
.y7d{bottom:201.600000px;}
.yd0{bottom:211.320000px;}
.y63{bottom:214.200000px;}
.yb7{bottom:216.360000px;}
.ye5{bottom:220.320000px;}
.y33{bottom:221.520000px;}
.yad{bottom:225.360000px;}
.y9c{bottom:226.440000px;}
.y7c{bottom:232.560000px;}
.yeb{bottom:233.280000px;}
.y62{bottom:236.520000px;}
.y32{bottom:242.040000px;}
.ycf{bottom:242.280000px;}
.yac{bottom:256.320000px;}
.y9b{bottom:257.760000px;}
.y61{bottom:258.840000px;}
.ye4{bottom:260.280000px;}
.y31{bottom:262.920000px;}
.y7b{bottom:263.520000px;}
.y3e{bottom:264.000000px;}
.yea{bottom:273.240000px;}
.y60{bottom:281.160000px;}
.yce{bottom:282.240000px;}
.y30{bottom:283.440000px;}
.yab{bottom:287.280000px;}
.y9a{bottom:288.720000px;}
.ye3{bottom:291.240000px;}
.y7a{bottom:294.480000px;}
.yb6{bottom:296.280000px;}
.y5f{bottom:303.480000px;}
.y2f{bottom:304.320000px;}
.ycd{bottom:313.560000px;}
.yaa{bottom:318.240000px;}
.y99{bottom:319.680000px;}
.ye2{bottom:322.560000px;}
.y2e{bottom:324.840000px;}
.y5e{bottom:325.800000px;}
.yb5{bottom:327.240000px;}
.y79{bottom:334.440000px;}
.y48{bottom:339.360000px;}
.y98{bottom:340.920000px;}
.ycc{bottom:344.520000px;}
.y2d{bottom:345.720000px;}
.y5d{bottom:348.120000px;}
.ya9{bottom:349.560000px;}
.ye1{bottom:353.520000px;}
.y47{bottom:356.640000px;}
.yb4{bottom:358.560000px;}
.y78{bottom:365.760000px;}
.y2c{bottom:366.240000px;}
.y5c{bottom:370.440000px;}
.y46{bottom:373.920000px;}
.y97{bottom:380.520000px;}
.ycb{bottom:384.480000px;}
.y2b{bottom:387.120000px;}
.ya8{bottom:389.520000px;}
.y45{bottom:391.200000px;}
.y5b{bottom:392.760000px;}
.ye0{bottom:393.480000px;}
.y77{bottom:396.720000px;}
.y2a{bottom:407.640000px;}
.y44{bottom:408.480000px;}
.y5a{bottom:415.080000px;}
.yca{bottom:415.440000px;}
.y96{bottom:420.480000px;}
.ydf{bottom:424.440000px;}
.y43{bottom:425.760000px;}
.y76{bottom:427.680000px;}
.y29{bottom:428.520000px;}
.y59{bottom:437.400000px;}
.y58{bottom:437.760000px;}
.y42{bottom:443.040000px;}
.yc9{bottom:446.760000px;}
.y28{bottom:449.040000px;}
.y95{bottom:451.440000px;}
.yde{bottom:455.760000px;}
.y75{bottom:458.640000px;}
.y41{bottom:460.320000px;}
.y27{bottom:469.920000px;}
.y40{bottom:477.600000px;}
.y94{bottom:482.760000px;}
.yc8{bottom:486.720000px;}
.y74{bottom:489.960000px;}
.y26{bottom:490.440000px;}
.y3f{bottom:494.880000px;}
.ydd{bottom:495.720000px;}
.y25{bottom:510.960000px;}
.ya7{bottom:513.720000px;}
.yc7{bottom:517.680000px;}
.y73{bottom:520.920000px;}
.y93{bottom:522.720000px;}
.ydc{bottom:526.680000px;}
.y24{bottom:531.840000px;}
.ya6{bottom:544.680000px;}
.yc6{bottom:548.640000px;}
.y72{bottom:551.880000px;}
.y23{bottom:552.360000px;}
.y92{bottom:553.680000px;}
.ydb{bottom:557.640000px;}
.y22{bottom:573.240000px;}
.ya5{bottom:575.640000px;}
.yc5{bottom:579.600000px;}
.y71{bottom:582.840000px;}
.y91{bottom:584.640000px;}
.y21{bottom:593.760000px;}
.yda{bottom:597.600000px;}
.y70{bottom:604.080000px;}
.y20{bottom:614.640000px;}
.y90{bottom:615.600000px;}
.yc4{bottom:619.920000px;}
.yd9{bottom:628.920000px;}
.y6f{bottom:635.040000px;}
.y1f{bottom:635.160000px;}
.y8f{bottom:646.920000px;}
.yc3{bottom:650.880000px;}
.y6d{bottom:651.000000px;}
.y1e{bottom:657.840000px;}
.yd8{bottom:659.880000px;}
.y8e{bottom:677.880000px;}
.y1d{bottom:680.160000px;}
.yc2{bottom:681.840000px;}
.yd7{bottom:690.840000px;}
.y57{bottom:693.000000px;}
.y1c{bottom:702.840000px;}
.y8d{bottom:708.840000px;}
.yc1{bottom:721.800000px;}
.y1b{bottom:725.520000px;}
.yd6{bottom:730.800000px;}
.ya4{bottom:739.800000px;}
.y8c{bottom:748.800000px;}
.yc0{bottom:753.120000px;}
.yd5{bottom:762.120000px;}
.ya3{bottom:771.120000px;}
.y13{bottom:772.500000px;}
.y8b{bottom:780.120000px;}
.ybf{bottom:784.080000px;}
.yd4{bottom:793.080000px;}
.ya2{bottom:802.080000px;}
.y8a{bottom:811.080000px;}
.ybe{bottom:815.040000px;}
.ye9{bottom:824.040000px;}
.yd3{bottom:833.040000px;}
.y89{bottom:842.040000px;}
.ybd{bottom:855.000000px;}
.yd2{bottom:864.000000px;}
.y88{bottom:873.000000px;}
.ybc{bottom:895.320000px;}
.y87{bottom:904.320000px;}
.ye{bottom:921.000000px;}
.ye8{bottom:926.280000px;}
.ya1{bottom:935.280000px;}
.y86{bottom:944.280000px;}
.yb2{bottom:966.240000px;}
.y85{bottom:975.240000px;}
.y6{bottom:984.000000px;}
.yb1{bottom:997.200000px;}
.y84{bottom:1006.200000px;}
.ybb{bottom:1028.520000px;}
.y83{bottom:1037.520000px;}
.y82{bottom:1068.480000px;}
.y81{bottom:1099.440000px;}
.y80{bottom:1130.400000px;}
.y53{bottom:1152.000000px;}
.y5{bottom:1154.520000px;}
.y52{bottom:1173.240000px;}
.y2{bottom:1175.400000px;}
.y51{bottom:1192.680000px;}
.y1{bottom:1194.480000px;}
.h13{height:22.500000px;}
.h15{height:36.405703px;}
.h4{height:41.574375px;}
.h14{height:41.868281px;}
.h11{height:41.993438px;}
.h1a{height:43.500000px;}
.h3{height:47.988281px;}
.h2{height:48.256875px;}
.hf{height:48.796875px;}
.h9{height:49.992188px;}
.he{height:50.027344px;}
.h17{height:54.000000px;}
.hd{height:56.593125px;}
.hb{height:62.472656px;}
.h8{height:63.000000px;}
.h19{height:63.175781px;}
.h18{height:63.949219px;}
.h6{height:72.360000px;}
.h12{height:88.500000px;}
.h7{height:98.568984px;}
.ha{height:148.500000px;}
.h5{height:165.000000px;}
.h16{height:454.500000px;}
.h10{height:510.000000px;}
.hc{height:744.000000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:28.500000px;}
.w6{width:120.000000px;}
.w4{width:247.500000px;}
.w2{width:249.000000px;}
.w3{width:552.000000px;}
.w7{width:666.000000px;}
.w8{width:786.000000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:7.859964px;}
.xb{left:9.480108px;}
.x12{left:21.688464px;}
.x15{left:26.394276px;}
.x8{left:28.406640px;}
.x13{left:31.395252px;}
.xc{left:36.111684px;}
.x3{left:42.000000px;}
.x6{left:45.805656px;}
.x1{left:54.000000px;}
.x14{left:60.847428px;}
.x9{left:74.124480px;}
.x11{left:77.433096px;}
.x10{left:86.072772px;}
.xf{left:89.254416px;}
.x1a{left:107.174916px;}
.xa{left:121.138680px;}
.x4{left:124.379904px;}
.x16{left:157.301400px;}
.xd{left:174.403200px;}
.x18{left:199.067520px;}
.x5{left:233.819832px;}
.xe{left:275.459880px;}
.x7{left:289.500000px;}
.x2{left:685.130400px;}
.x19{left:811.500000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.760000pt;}
.ls1d{letter-spacing:-0.505856pt;}
.ls19{letter-spacing:-0.418304pt;}
.ls6{letter-spacing:-0.403712pt;}
.ls15{letter-spacing:-0.397824pt;}
.ls1c{letter-spacing:-0.384256pt;}
.ls1e{letter-spacing:-0.374528pt;}
.ls1b{letter-spacing:-0.321024pt;}
.ls10{letter-spacing:-0.301056pt;}
.ls11{letter-spacing:-0.284928pt;}
.ls12{letter-spacing:-0.268800pt;}
.lsf{letter-spacing:-0.215040pt;}
.ls9{letter-spacing:-0.214400pt;}
.ls13{letter-spacing:-0.198912pt;}
.ls20{letter-spacing:-0.189696pt;}
.ls7{letter-spacing:-0.165376pt;}
.ls1f{letter-spacing:-0.150784pt;}
.ls3{letter-spacing:-0.141312pt;}
.ls14{letter-spacing:-0.129024pt;}
.ls5{letter-spacing:-0.111872pt;}
.ls8{letter-spacing:-0.102912pt;}
.lse{letter-spacing:-0.012800pt;}
.ls4{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.000512pt;}
.ls1a{letter-spacing:0.006400pt;}
.ls16{letter-spacing:0.012800pt;}
.ls23{letter-spacing:0.118272pt;}
.ls18{letter-spacing:0.127872pt;}
.ls2{letter-spacing:0.212480pt;}
.ls0{letter-spacing:0.213760pt;}
.ls25{letter-spacing:0.228096pt;}
.lsd{letter-spacing:0.233728pt;}
.lsb{letter-spacing:0.244352pt;}
.ls17{letter-spacing:0.249216pt;}
.lsc{letter-spacing:0.254976pt;}
.ls24{letter-spacing:0.257664pt;}
.ls22{letter-spacing:0.270336pt;}
.lsa{letter-spacing:0.308096pt;}
.ls21{letter-spacing:0.312576pt;}
.ls1{letter-spacing:65.280000pt;}
.ws3{word-spacing:-23.841280pt;}
.ws4{word-spacing:-23.626880pt;}
.ws0{word-spacing:-16.256768pt;}
.ws9{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.ws11{word-spacing:-15.987200pt;}
.ws10{word-spacing:-14.451200pt;}
.ws7{word-spacing:-13.310976pt;}
.ws6{word-spacing:-13.241088pt;}
.ws8{word-spacing:-13.042176pt;}
.wsb{word-spacing:-12.646400pt;}
.ws2{word-spacing:-12.481024pt;}
.wsc{word-spacing:-12.325376pt;}
.wse{word-spacing:-12.271872pt;}
.ws1{word-spacing:-12.242688pt;}
.wsd{word-spacing:-12.140544pt;}
.wsf{word-spacing:-11.252736pt;}
.wsa{word-spacing:0.000000pt;}
._5{margin-left:-8.753920pt;}
._4{margin-left:-7.861760pt;}
._15{margin-left:-6.494592pt;}
._16{margin-left:-4.619520pt;}
._1{margin-left:-3.415040pt;}
._0{margin-left:-1.884160pt;}
._3{margin-left:-0.909824pt;}
._2{width:0.942080pt;}
._8{width:1.939072pt;}
._7{width:3.475328pt;}
._c{width:5.190400pt;}
._9{width:6.432000pt;}
._e{width:7.456000pt;}
._d{width:9.049600pt;}
._10{width:9.972608pt;}
._f{width:11.225600pt;}
._14{width:12.172800pt;}
._12{width:13.670400pt;}
._18{width:14.592000pt;}
._17{width:17.030400pt;}
._1f{width:18.470400pt;}
._1c{width:19.494400pt;}
._1b{width:20.499200pt;}
._13{width:22.208000pt;}
._a{width:23.667200pt;}
._19{width:24.774400pt;}
._1a{width:25.875200pt;}
._b{width:26.790400pt;}
._21{width:29.625600pt;}
._24{width:37.536000pt;}
._11{width:46.745600pt;}
._1d{width:53.894400pt;}
._6{width:65.227904pt;}
._1e{width:66.380800pt;}
._20{width:68.729600pt;}
._25{width:91.744000pt;}
._23{width:133.632000pt;}
._22{width:213.038592pt;}
.fs7{font-size:39.680000pt;}
.fs5{font-size:42.240000pt;}
.fs2{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.fs4{font-size:106.240000pt;}
.y0{bottom:0.000000pt;}
.y4c{bottom:3.626667pt;}
.y6c{bottom:3.840000pt;}
.y12{bottom:4.373333pt;}
.y4f{bottom:4.693333pt;}
.y4e{bottom:6.933333pt;}
.y9{bottom:10.133333pt;}
.y3d{bottom:12.906667pt;}
.yd{bottom:13.013333pt;}
.y4b{bottom:18.986667pt;}
.y11{bottom:22.613333pt;}
.y6e{bottom:22.933333pt;}
.y19{bottom:23.413333pt;}
.y8{bottom:29.973333pt;}
.y3c{bottom:31.146667pt;}
.y6b{bottom:31.680000pt;}
.y4a{bottom:34.346667pt;}
.yf{bottom:40.533333pt;}
.y10{bottom:41.173333pt;}
.y18{bottom:41.973333pt;}
.yc{bottom:45.333333pt;}
.y3b{bottom:49.706667pt;}
.y4{bottom:50.880000pt;}
.y6a{bottom:51.520000pt;}
.y55{bottom:59.520000pt;}
.y17{bottom:60.533333pt;}
.y49{bottom:65.066667pt;}
.y56{bottom:66.666667pt;}
.y3{bottom:67.840000pt;}
.y3a{bottom:67.946667pt;}
.y69{bottom:71.360000pt;}
.y54{bottom:75.200000pt;}
.yb{bottom:77.973333pt;}
.y16{bottom:79.093333pt;}
.y39{bottom:86.506667pt;}
.ya0{bottom:90.880000pt;}
.y68{bottom:91.200000pt;}
.y15{bottom:97.653333pt;}
.yba{bottom:101.440000pt;}
.y38{bottom:104.746667pt;}
.yb0{bottom:109.440000pt;}
.ya{bottom:110.613333pt;}
.y67{bottom:111.040000pt;}
.y14{bottom:116.533333pt;}
.y9f{bottom:118.720000pt;}
.y37{bottom:123.306667pt;}
.y7f{bottom:123.840000pt;}
.y50{bottom:127.360000pt;}
.yb9{bottom:128.960000pt;}
.y66{bottom:130.880000pt;}
.y7{bottom:131.413333pt;}
.yaf{bottom:136.960000pt;}
.y4d{bottom:138.666667pt;}
.ye7{bottom:140.480000pt;}
.y36{bottom:141.546667pt;}
.yb3{bottom:144.960000pt;}
.y9e{bottom:146.240000pt;}
.y65{bottom:150.720000pt;}
.y7e{bottom:151.360000pt;}
.yb8{bottom:156.480000pt;}
.y1a{bottom:157.333333pt;}
.y35{bottom:160.106667pt;}
.yd1{bottom:160.320000pt;}
.ye6{bottom:168.320000pt;}
.y64{bottom:170.560000pt;}
.yae{bottom:172.480000pt;}
.y9d{bottom:173.760000pt;}
.y34{bottom:178.346667pt;}
.y7d{bottom:179.200000pt;}
.yd0{bottom:187.840000pt;}
.y63{bottom:190.400000pt;}
.yb7{bottom:192.320000pt;}
.ye5{bottom:195.840000pt;}
.y33{bottom:196.906667pt;}
.yad{bottom:200.320000pt;}
.y9c{bottom:201.280000pt;}
.y7c{bottom:206.720000pt;}
.yeb{bottom:207.360000pt;}
.y62{bottom:210.240000pt;}
.y32{bottom:215.146667pt;}
.ycf{bottom:215.360000pt;}
.yac{bottom:227.840000pt;}
.y9b{bottom:229.120000pt;}
.y61{bottom:230.080000pt;}
.ye4{bottom:231.360000pt;}
.y31{bottom:233.706667pt;}
.y7b{bottom:234.240000pt;}
.y3e{bottom:234.666667pt;}
.yea{bottom:242.880000pt;}
.y60{bottom:249.920000pt;}
.yce{bottom:250.880000pt;}
.y30{bottom:251.946667pt;}
.yab{bottom:255.360000pt;}
.y9a{bottom:256.640000pt;}
.ye3{bottom:258.880000pt;}
.y7a{bottom:261.760000pt;}
.yb6{bottom:263.360000pt;}
.y5f{bottom:269.760000pt;}
.y2f{bottom:270.506667pt;}
.ycd{bottom:278.720000pt;}
.yaa{bottom:282.880000pt;}
.y99{bottom:284.160000pt;}
.ye2{bottom:286.720000pt;}
.y2e{bottom:288.746667pt;}
.y5e{bottom:289.600000pt;}
.yb5{bottom:290.880000pt;}
.y79{bottom:297.280000pt;}
.y48{bottom:301.653333pt;}
.y98{bottom:303.040000pt;}
.ycc{bottom:306.240000pt;}
.y2d{bottom:307.306667pt;}
.y5d{bottom:309.440000pt;}
.ya9{bottom:310.720000pt;}
.ye1{bottom:314.240000pt;}
.y47{bottom:317.013333pt;}
.yb4{bottom:318.720000pt;}
.y78{bottom:325.120000pt;}
.y2c{bottom:325.546667pt;}
.y5c{bottom:329.280000pt;}
.y46{bottom:332.373333pt;}
.y97{bottom:338.240000pt;}
.ycb{bottom:341.760000pt;}
.y2b{bottom:344.106667pt;}
.ya8{bottom:346.240000pt;}
.y45{bottom:347.733333pt;}
.y5b{bottom:349.120000pt;}
.ye0{bottom:349.760000pt;}
.y77{bottom:352.640000pt;}
.y2a{bottom:362.346667pt;}
.y44{bottom:363.093333pt;}
.y5a{bottom:368.960000pt;}
.yca{bottom:369.280000pt;}
.y96{bottom:373.760000pt;}
.ydf{bottom:377.280000pt;}
.y43{bottom:378.453333pt;}
.y76{bottom:380.160000pt;}
.y29{bottom:380.906667pt;}
.y59{bottom:388.800000pt;}
.y58{bottom:389.120000pt;}
.y42{bottom:393.813333pt;}
.yc9{bottom:397.120000pt;}
.y28{bottom:399.146667pt;}
.y95{bottom:401.280000pt;}
.yde{bottom:405.120000pt;}
.y75{bottom:407.680000pt;}
.y41{bottom:409.173333pt;}
.y27{bottom:417.706667pt;}
.y40{bottom:424.533333pt;}
.y94{bottom:429.120000pt;}
.yc8{bottom:432.640000pt;}
.y74{bottom:435.520000pt;}
.y26{bottom:435.946667pt;}
.y3f{bottom:439.893333pt;}
.ydd{bottom:440.640000pt;}
.y25{bottom:454.186667pt;}
.ya7{bottom:456.640000pt;}
.yc7{bottom:460.160000pt;}
.y73{bottom:463.040000pt;}
.y93{bottom:464.640000pt;}
.ydc{bottom:468.160000pt;}
.y24{bottom:472.746667pt;}
.ya6{bottom:484.160000pt;}
.yc6{bottom:487.680000pt;}
.y72{bottom:490.560000pt;}
.y23{bottom:490.986667pt;}
.y92{bottom:492.160000pt;}
.ydb{bottom:495.680000pt;}
.y22{bottom:509.546667pt;}
.ya5{bottom:511.680000pt;}
.yc5{bottom:515.200000pt;}
.y71{bottom:518.080000pt;}
.y91{bottom:519.680000pt;}
.y21{bottom:527.786667pt;}
.yda{bottom:531.200000pt;}
.y70{bottom:536.960000pt;}
.y20{bottom:546.346667pt;}
.y90{bottom:547.200000pt;}
.yc4{bottom:551.040000pt;}
.yd9{bottom:559.040000pt;}
.y6f{bottom:564.480000pt;}
.y1f{bottom:564.586667pt;}
.y8f{bottom:575.040000pt;}
.yc3{bottom:578.560000pt;}
.y6d{bottom:578.666667pt;}
.y1e{bottom:584.746667pt;}
.yd8{bottom:586.560000pt;}
.y8e{bottom:602.560000pt;}
.y1d{bottom:604.586667pt;}
.yc2{bottom:606.080000pt;}
.yd7{bottom:614.080000pt;}
.y57{bottom:616.000000pt;}
.y1c{bottom:624.746667pt;}
.y8d{bottom:630.080000pt;}
.yc1{bottom:641.600000pt;}
.y1b{bottom:644.906667pt;}
.yd6{bottom:649.600000pt;}
.ya4{bottom:657.600000pt;}
.y8c{bottom:665.600000pt;}
.yc0{bottom:669.440000pt;}
.yd5{bottom:677.440000pt;}
.ya3{bottom:685.440000pt;}
.y13{bottom:686.666667pt;}
.y8b{bottom:693.440000pt;}
.ybf{bottom:696.960000pt;}
.yd4{bottom:704.960000pt;}
.ya2{bottom:712.960000pt;}
.y8a{bottom:720.960000pt;}
.ybe{bottom:724.480000pt;}
.ye9{bottom:732.480000pt;}
.yd3{bottom:740.480000pt;}
.y89{bottom:748.480000pt;}
.ybd{bottom:760.000000pt;}
.yd2{bottom:768.000000pt;}
.y88{bottom:776.000000pt;}
.ybc{bottom:795.840000pt;}
.y87{bottom:803.840000pt;}
.ye{bottom:818.666667pt;}
.ye8{bottom:823.360000pt;}
.ya1{bottom:831.360000pt;}
.y86{bottom:839.360000pt;}
.yb2{bottom:858.880000pt;}
.y85{bottom:866.880000pt;}
.y6{bottom:874.666667pt;}
.yb1{bottom:886.400000pt;}
.y84{bottom:894.400000pt;}
.ybb{bottom:914.240000pt;}
.y83{bottom:922.240000pt;}
.y82{bottom:949.760000pt;}
.y81{bottom:977.280000pt;}
.y80{bottom:1004.800000pt;}
.y53{bottom:1024.000000pt;}
.y5{bottom:1026.240000pt;}
.y52{bottom:1042.880000pt;}
.y2{bottom:1044.800000pt;}
.y51{bottom:1060.160000pt;}
.y1{bottom:1061.760000pt;}
.h13{height:20.000000pt;}
.h15{height:32.360625pt;}
.h4{height:36.955000pt;}
.h14{height:37.216250pt;}
.h11{height:37.327500pt;}
.h1a{height:38.666667pt;}
.h3{height:42.656250pt;}
.h2{height:42.895000pt;}
.hf{height:43.375000pt;}
.h9{height:44.437500pt;}
.he{height:44.468750pt;}
.h17{height:48.000000pt;}
.hd{height:50.305000pt;}
.hb{height:55.531250pt;}
.h8{height:56.000000pt;}
.h19{height:56.156250pt;}
.h18{height:56.843750pt;}
.h6{height:64.320000pt;}
.h12{height:78.666667pt;}
.h7{height:87.616875pt;}
.ha{height:132.000000pt;}
.h5{height:146.666667pt;}
.h16{height:404.000000pt;}
.h10{height:453.333333pt;}
.hc{height:661.333333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:25.333333pt;}
.w6{width:106.666667pt;}
.w4{width:220.000000pt;}
.w2{width:221.333333pt;}
.w3{width:490.666667pt;}
.w7{width:592.000000pt;}
.w8{width:698.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:6.986635pt;}
.xb{left:8.426763pt;}
.x12{left:19.278635pt;}
.x15{left:23.461579pt;}
.x8{left:25.250347pt;}
.x13{left:27.906891pt;}
.xc{left:32.099275pt;}
.x3{left:37.333333pt;}
.x6{left:40.716139pt;}
.x1{left:48.000000pt;}
.x14{left:54.086603pt;}
.x9{left:65.888427pt;}
.x11{left:68.829419pt;}
.x10{left:76.509131pt;}
.xf{left:79.337259pt;}
.x1a{left:95.266592pt;}
.xa{left:107.678827pt;}
.x4{left:110.559915pt;}
.x16{left:139.823467pt;}
.xd{left:155.025067pt;}
.x18{left:176.948907pt;}
.x5{left:207.839851pt;}
.xe{left:244.853227pt;}
.x7{left:257.333333pt;}
.x2{left:609.004800pt;}
.x19{left:721.333333pt;}
}




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