
    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_0685858dd2b45c70e35284e8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.777000;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_1f2f0db37aaf6a72c16e7d1a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_9966dd252e6509d7aafe6800.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_1186a5b6faa851a31ac5c21a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_9a4f96c15cec34f5011d7e96.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0fd8573035657be6e311daf9.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.901000;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_6dd8fc9e6c08577c849a875d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.999000;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_cf88b10a2d668b0069e7ab0c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.389000;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_1d386531b9a7085935f4939b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.919000;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_56e63ccbbce3f43da74fafe9.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.199000;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_31906dc145517f7a3a1ce5a8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.727000;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_b3112bd8ddda6750feb3d247.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.710000;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_df511b5138f7ed459cc05639.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.725000;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_e985279fdf28d444b3ef1c8e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.687000;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_24e3093cfb230c0b8e0162c3.woff2')format("woff");}.fff{font-family:fff;line-height:0.921000;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);}
.va{vertical-align:-53.022000px;}
.v2{vertical-align:-23.748000px;}
.v5{vertical-align:-10.662000px;}
.v0{vertical-align:0.000000px;}
.v12{vertical-align:10.134000px;}
.v3{vertical-align:12.078000px;}
.vd{vertical-align:16.182000px;}
.v7{vertical-align:18.336000px;}
.v8{vertical-align:19.542000px;}
.v11{vertical-align:20.604000px;}
.v6{vertical-align:23.754000px;}
.vc{vertical-align:27.030000px;}
.v1{vertical-align:31.236000px;}
.v4{vertical-align:44.280000px;}
.ve{vertical-align:48.030000px;}
.vb{vertical-align:53.022000px;}
.vf{vertical-align:54.366000px;}
.v9{vertical-align:72.564000px;}
.v10{vertical-align:102.390000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.001026px;}
.ls16{letter-spacing:0.002157px;}
.ls27{letter-spacing:0.004274px;}
.ls29{letter-spacing:0.005962px;}
.ls1f{letter-spacing:0.007026px;}
.lsa{letter-spacing:0.023854px;}
.ls7{letter-spacing:0.024962px;}
.ls25{letter-spacing:0.025661px;}
.ls17{letter-spacing:0.027668px;}
.ls1c{letter-spacing:0.029854px;}
.ls1a{letter-spacing:0.030962px;}
.ls3{letter-spacing:0.904881px;}
.lsf{letter-spacing:0.908706px;}
.ls22{letter-spacing:1.802626px;}
.ls21{letter-spacing:1.819593px;}
.ls0{letter-spacing:2.986053px;}
.lse{letter-spacing:2.989289px;}
.ls10{letter-spacing:4.265644px;}
.ls28{letter-spacing:7.118208px;}
.ls26{letter-spacing:7.124208px;}
.ls13{letter-spacing:9.055507px;}
.ls11{letter-spacing:9.090760px;}
.ls15{letter-spacing:9.097297px;}
.ls6{letter-spacing:14.530921px;}
.ls4{letter-spacing:18.196379px;}
.ls1e{letter-spacing:25.349412px;}
.ls24{letter-spacing:27.687296px;}
.ls2{letter-spacing:32.727300px;}
.ls14{letter-spacing:48.415289px;}
.ls19{letter-spacing:64.745412px;}
.ls5{letter-spacing:103.277377px;}
.ls12{letter-spacing:128.863289px;}
.lsc{letter-spacing:141.840118px;}
.lsd{letter-spacing:541.636815px;}
.ls20{letter-spacing:598.844135px;}
.ls1d{letter-spacing:613.178693px;}
.ls1b{letter-spacing:779.695195px;}
.lsb{letter-spacing:808.102492px;}
.ls2a{letter-spacing:840.502519px;}
.ls18{letter-spacing:872.837091px;}
.ls23{letter-spacing:948.698972px;}
.ls8{letter-spacing:984.960821px;}
.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;}
}
.ws23{word-spacing:-42.637126px;}
.ws27{word-spacing:-32.714209px;}
.ws1d{word-spacing:-18.183288px;}
.ws26{word-spacing:-14.111859px;}
.ws2c{word-spacing:-7.345954px;}
.ws28{word-spacing:-7.339954px;}
.ws34{word-spacing:-3.194184px;}
.ws37{word-spacing:-2.866911px;}
.wsb{word-spacing:-1.361456px;}
.ws1e{word-spacing:-0.903273px;}
.wsf{word-spacing:-0.071731px;}
.ws32{word-spacing:-0.065455px;}
.ws49{word-spacing:-0.059776px;}
.ws2d{word-spacing:-0.047821px;}
.wse{word-spacing:0.000000px;}
.ws18{word-spacing:0.013091px;}
.ws19{word-spacing:0.471273px;}
.ws21{word-spacing:0.667637px;}
.ws14{word-spacing:1.387638px;}
.ws33{word-spacing:1.780365px;}
.wsc{word-spacing:1.845820px;}
.ws15{word-spacing:2.173093px;}
.ws1b{word-spacing:2.565820px;}
.ws47{word-spacing:2.642082px;}
.ws20{word-spacing:2.696730px;}
.ws43{word-spacing:2.958548px;}
.ws35{word-spacing:3.220366px;}
.ws3d{word-spacing:3.299613px;}
.ws16{word-spacing:3.351276px;}
.ws5{word-spacing:3.613094px;}
.ws11{word-spacing:3.678549px;}
.ws3e{word-spacing:3.744003px;}
.ws36{word-spacing:3.809458px;}
.wsd{word-spacing:4.333095px;}
.ws3c{word-spacing:4.375574px;}
.ws22{word-spacing:4.398549px;}
.ws45{word-spacing:4.464004px;}
.ws17{word-spacing:4.594913px;}
.ws8{word-spacing:5.838550px;}
.wsa{word-spacing:6.165823px;}
.ws41{word-spacing:6.820369px;}
.ws25{word-spacing:7.053545px;}
.ws1f{word-spacing:7.736734px;}
.ws3f{word-spacing:8.064007px;}
.ws29{word-spacing:8.456734px;}
.ws44{word-spacing:8.849462px;}
.ws1c{word-spacing:9.438553px;}
.ws40{word-spacing:10.485827px;}
.ws6{word-spacing:10.878555px;}
.ws2a{word-spacing:12.449465px;}
.ws1a{word-spacing:12.907647px;}
.ws9{word-spacing:13.431284px;}
.ws24{word-spacing:15.268046px;}
.ws30{word-spacing:18.728957px;}
.ws48{word-spacing:20.682358px;}
.ws46{word-spacing:21.339889px;}
.ws3b{word-spacing:24.089567px;}
.ws10{word-spacing:25.003657px;}
.ws2b{word-spacing:25.069112px;}
.ws3{word-spacing:26.253619px;}
.ws13{word-spacing:26.827469px;}
.ws31{word-spacing:30.808488px;}
.ws0{word-spacing:31.322414px;}
.ws4{word-spacing:31.504255px;}
.ws2e{word-spacing:47.271312px;}
.ws38{word-spacing:53.554954px;}
.ws2{word-spacing:54.283749px;}
.ws1{word-spacing:54.432472px;}
.ws7{word-spacing:59.557409px;}
.ws12{word-spacing:60.480050px;}
.ws42{word-spacing:80.625869px;}
.ws2f{word-spacing:117.362957px;}
.ws39{word-spacing:320.269358px;}
.ws3a{word-spacing:320.334812px;}
._26{margin-left:-13.777945px;}
._30{margin-left:-6.874522px;}
._20{margin-left:-5.690972px;}
._0{margin-left:-4.610401px;}
._5{margin-left:-3.339974px;}
._2{margin-left:-2.223667px;}
._6{margin-left:-1.010398px;}
._4{width:1.010398px;}
._3{width:2.223667px;}
._1{width:4.461678px;}
._27{width:5.743121px;}
._24{width:18.321920px;}
._21{width:19.855955px;}
._8{width:21.074592px;}
._a{width:22.815077px;}
._2f{width:26.024141px;}
._7{width:27.294568px;}
._1f{width:28.603660px;}
._23{width:29.884174px;}
._9{width:31.547328px;}
._33{width:32.697253px;}
._22{width:34.296421px;}
._32{width:40.841881px;}
._2e{width:42.480035px;}
._31{width:45.462368px;}
._b{width:60.545505px;}
._f{width:66.894601px;}
._25{width:75.272790px;}
._1e{width:80.697600px;}
._2c{width:202.514743px;}
._2b{width:250.494754px;}
._2a{width:343.898468px;}
._28{width:446.467616px;}
._19{width:528.547684px;}
._2d{width:545.040454px;}
._29{width:601.396865px;}
._1a{width:696.658308px;}
._15{width:795.234725px;}
._e{width:843.513430px;}
._d{width:889.591679px;}
._12{width:894.762593px;}
._11{width:963.204893px;}
._1c{width:1041.382686px;}
._1b{width:1390.775762px;}
._17{width:1596.046756px;}
._16{width:1708.199064px;}
._13{width:1839.601533px;}
._18{width:1859.696095px;}
._c{width:1874.492413px;}
._14{width:1876.096621px;}
._10{width:1895.957944px;}
._1d{width:2134.278142px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:47.820600px;}
.fs0{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs2{font-size:71.731200px;}
.fs3{font-size:86.077200px;}
.fs1{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y2e{bottom:93.813000px;}
.y51{bottom:176.005500px;}
.y50{bottom:196.329000px;}
.y7e{bottom:203.434500px;}
.ya2{bottom:212.520000px;}
.y7d{bottom:223.758000px;}
.y4f{bottom:224.568000px;}
.ya1{bottom:230.452500px;}
.y7c{bottom:244.081500px;}
.y4d{bottom:254.241000px;}
.ya0{bottom:255.856500px;}
.y7b{bottom:264.405000px;}
.y4c{bottom:265.465500px;}
.y4e{bottom:265.467000px;}
.y9f{bottom:273.789000px;}
.y2d{bottom:277.678500px;}
.y7a{bottom:284.730000px;}
.y2c{bottom:298.002000px;}
.y9e{bottom:299.194500px;}
.y4b{bottom:306.726000px;}
.y2b{bottom:318.325500px;}
.y79{bottom:321.258000px;}
.y9d{bottom:324.598500px;}
.y4a{bottom:334.965000px;}
.y2a{bottom:338.650500px;}
.y9c{bottom:350.004000px;}
.y29{bottom:358.974000px;}
.y78{bottom:366.838500px;}
.y49{bottom:369.438000px;}
.y9b{bottom:375.408000px;}
.y28{bottom:379.297500px;}
.y77{bottom:387.162000px;}
.y9a{bottom:393.342000px;}
.y27{bottom:399.621000px;}
.y48{bottom:403.912500px;}
.y76{bottom:407.485500px;}
.yf{bottom:412.959000px;}
.y26{bottom:419.944500px;}
.y99{bottom:427.479000px;}
.y75{bottom:427.809000px;}
.y47{bottom:432.151500px;}
.ye{bottom:433.282500px;}
.y25{bottom:440.269500px;}
.y74{bottom:448.134000px;}
.yd{bottom:453.606000px;}
.y24{bottom:460.593000px;}
.y46{bottom:467.781000px;}
.y98{bottom:473.059500px;}
.yc{bottom:473.929500px;}
.y73{bottom:484.896000px;}
.y45{bottom:488.104500px;}
.y97{bottom:493.383000px;}
.yb{bottom:494.254500px;}
.y23{bottom:497.121000px;}
.y96{bottom:513.706500px;}
.ya{bottom:514.578000px;}
.y44{bottom:517.777500px;}
.y72{bottom:521.658000px;}
.y43{bottom:529.002000px;}
.y95{bottom:534.030000px;}
.y9{bottom:534.901500px;}
.y22{bottom:542.701500px;}
.y94{bottom:554.355000px;}
.y71{bottom:558.186000px;}
.y42{bottom:570.262500px;}
.y8{bottom:574.653000px;}
.y93{bottom:574.678500px;}
.y21{bottom:589.228500px;}
.y92{bottom:595.002000px;}
.y41{bottom:598.501500px;}
.y70{bottom:598.615500px;}
.y6f{bottom:599.721000px;}
.y6e{bottom:603.766500px;}
.y7{bottom:611.374500px;}
.y20{bottom:625.917000px;}
.y91{bottom:631.530000px;}
.y40{bottom:634.131000px;}
.y6{bottom:640.107000px;}
.y6d{bottom:640.528500px;}
.y3f{bottom:654.454500px;}
.y1f{bottom:662.604000px;}
.y6c{bottom:669.307500px;}
.y3e{bottom:674.778000px;}
.y90{bottom:677.110500px;}
.y8f{bottom:697.434000px;}
.y1e{bottom:699.291000px;}
.y6b{bottom:701.269500px;}
.y3d{bottom:703.017000px;}
.y69{bottom:708.448500px;}
.y68{bottom:712.494000px;}
.y8e{bottom:717.759000px;}
.y6a{bottom:721.200000px;}
.y1d{bottom:735.978000px;}
.y8d{bottom:738.082500px;}
.y3c{bottom:738.646500px;}
.y67{bottom:747.496500px;}
.y66{bottom:748.335000px;}
.y65{bottom:752.380500px;}
.y8c{bottom:758.406000px;}
.y3b{bottom:758.970000px;}
.y5{bottom:764.628000px;}
.y1c{bottom:772.666500px;}
.y64{bottom:776.083500px;}
.y8b{bottom:778.729500px;}
.y3a{bottom:779.293500px;}
.y62{bottom:783.262500px;}
.y61{bottom:787.308000px;}
.y1b{bottom:792.990000px;}
.y63{bottom:796.014000px;}
.y4{bottom:801.909000px;}
.y1a{bottom:813.313500px;}
.y39{bottom:815.103000px;}
.y8a{bottom:815.257500px;}
.y60{bottom:822.309000px;}
.y5f{bottom:823.149000px;}
.y5e{bottom:827.194500px;}
.y19{bottom:833.637000px;}
.y3{bottom:846.741000px;}
.y38{bottom:859.425000px;}
.y89{bottom:860.838000px;}
.y5d{bottom:863.956500px;}
.y18{bottom:870.325500px;}
.y37{bottom:879.748500px;}
.y88{bottom:881.163000px;}
.y17{bottom:890.649000px;}
.y2{bottom:891.573000px;}
.y5c{bottom:892.735500px;}
.y87{bottom:901.486500px;}
.y16{bottom:910.972500px;}
.y36{bottom:911.614500px;}
.y5b{bottom:924.378000px;}
.y5a{bottom:924.681000px;}
.y59{bottom:929.263500px;}
.y15{bottom:931.296000px;}
.y86{bottom:938.014500px;}
.y35{bottom:944.625000px;}
.y14{bottom:951.619500px;}
.y58{bottom:958.152000px;}
.y57{bottom:958.453500px;}
.y56{bottom:963.037500px;}
.y13{bottom:971.944500px;}
.y34{bottom:977.635500px;}
.y85{bottom:987.246000px;}
.y55{bottom:996.810000px;}
.y84{bottom:1005.180000px;}
.y12{bottom:1008.631500px;}
.y33{bottom:1010.646000px;}
.y54{bottom:1025.589000px;}
.y32{bottom:1030.969500px;}
.y83{bottom:1038.690000px;}
.y11{bottom:1045.318500px;}
.y82{bottom:1059.013500px;}
.y53{bottom:1062.117000px;}
.y31{bottom:1062.837000px;}
.y81{bottom:1079.338500px;}
.y10{bottom:1082.007000px;}
.y52{bottom:1082.440500px;}
.y30{bottom:1083.160500px;}
.y1{bottom:1087.587000px;}
.y80{bottom:1099.662000px;}
.y2f{bottom:1118.968500px;}
.y7f{bottom:1120.582500px;}
.h6{height:33.187496px;}
.h2{height:41.484266px;}
.h1a{height:44.831700px;}
.h7{height:49.090950px;}
.h8{height:50.211840px;}
.h4{height:51.359539px;}
.h11{height:55.640184px;}
.hc{height:57.897908px;}
.h15{height:61.167908px;}
.h9{height:61.168950px;}
.h12{height:61.173908px;}
.he{height:65.985908px;}
.h17{height:68.626950px;}
.h14{height:68.632950px;}
.h19{height:69.694950px;}
.h5{height:73.437574px;}
.h10{height:79.498950px;}
.hd{height:79.504950px;}
.hf{height:80.710950px;}
.h18{height:82.167908px;}
.h13{height:82.173908px;}
.ha{height:90.490948px;}
.hb{height:90.496948px;}
.h3{height:106.485382px;}
.h16{height:136.533908px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.426500px;}
.x3{left:131.838000px;}
.x2c{left:137.107500px;}
.x4{left:139.332000px;}
.x5{left:151.972500px;}
.x2d{left:161.064000px;}
.x6{left:164.010000px;}
.x8{left:168.336000px;}
.x2b{left:208.954500px;}
.x1{left:286.581000px;}
.xe{left:296.476500px;}
.xf{left:304.993500px;}
.x22{left:310.779000px;}
.x1a{left:315.109500px;}
.x12{left:317.158500px;}
.x1e{left:322.869000px;}
.x10{left:334.513500px;}
.x23{left:353.779500px;}
.xd{left:363.090000px;}
.x1b{left:367.870500px;}
.x2a{left:371.193000px;}
.x11{left:389.703000px;}
.x27{left:398.233500px;}
.x9{left:407.308500px;}
.x28{left:411.261000px;}
.xa{left:415.825500px;}
.x16{left:417.586500px;}
.x1c{left:432.870000px;}
.x7{left:438.466500px;}
.xb{left:445.345500px;}
.x13{left:457.809000px;}
.x17{left:460.491000px;}
.x29{left:480.829500px;}
.x20{left:496.657500px;}
.xc{left:500.535000px;}
.x14{left:510.102000px;}
.x18{left:512.784000px;}
.x1d{left:514.410000px;}
.x24{left:516.204000px;}
.x25{left:519.267000px;}
.x1f{left:526.051500px;}
.x15{left:532.894500px;}
.x21{left:551.848500px;}
.x26{left:597.064500px;}
.x19{left:602.836500px;}
@media print{
.va{vertical-align:-47.130667pt;}
.v2{vertical-align:-21.109333pt;}
.v5{vertical-align:-9.477333pt;}
.v0{vertical-align:0.000000pt;}
.v12{vertical-align:9.008000pt;}
.v3{vertical-align:10.736000pt;}
.vd{vertical-align:14.384000pt;}
.v7{vertical-align:16.298667pt;}
.v8{vertical-align:17.370667pt;}
.v11{vertical-align:18.314667pt;}
.v6{vertical-align:21.114667pt;}
.vc{vertical-align:24.026667pt;}
.v1{vertical-align:27.765333pt;}
.v4{vertical-align:39.360000pt;}
.ve{vertical-align:42.693333pt;}
.vb{vertical-align:47.130667pt;}
.vf{vertical-align:48.325333pt;}
.v9{vertical-align:64.501333pt;}
.v10{vertical-align:91.013333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000912pt;}
.ls16{letter-spacing:0.001917pt;}
.ls27{letter-spacing:0.003799pt;}
.ls29{letter-spacing:0.005300pt;}
.ls1f{letter-spacing:0.006245pt;}
.lsa{letter-spacing:0.021204pt;}
.ls7{letter-spacing:0.022189pt;}
.ls25{letter-spacing:0.022810pt;}
.ls17{letter-spacing:0.024594pt;}
.ls1c{letter-spacing:0.026537pt;}
.ls1a{letter-spacing:0.027522pt;}
.ls3{letter-spacing:0.804338pt;}
.lsf{letter-spacing:0.807739pt;}
.ls22{letter-spacing:1.602334pt;}
.ls21{letter-spacing:1.617416pt;}
.ls0{letter-spacing:2.654270pt;}
.lse{letter-spacing:2.657146pt;}
.ls10{letter-spacing:3.791684pt;}
.ls28{letter-spacing:6.327296pt;}
.ls26{letter-spacing:6.332629pt;}
.ls13{letter-spacing:8.049340pt;}
.ls11{letter-spacing:8.080676pt;}
.ls15{letter-spacing:8.086486pt;}
.ls6{letter-spacing:12.916374pt;}
.ls4{letter-spacing:16.174559pt;}
.ls1e{letter-spacing:22.532811pt;}
.ls24{letter-spacing:24.610930pt;}
.ls2{letter-spacing:29.090933pt;}
.ls14{letter-spacing:43.035812pt;}
.ls19{letter-spacing:57.551477pt;}
.ls5{letter-spacing:91.802113pt;}
.ls12{letter-spacing:114.545146pt;}
.lsc{letter-spacing:126.080105pt;}
.lsd{letter-spacing:481.454947pt;}
.ls20{letter-spacing:532.305898pt;}
.ls1d{letter-spacing:545.047727pt;}
.ls1b{letter-spacing:693.062396pt;}
.lsb{letter-spacing:718.313326pt;}
.ls2a{letter-spacing:747.113350pt;}
.ls18{letter-spacing:775.855192pt;}
.ls23{letter-spacing:843.287975pt;}
.ls8{letter-spacing:875.520730pt;}
.ws23{word-spacing:-37.899668pt;}
.ws27{word-spacing:-29.079297pt;}
.ws1d{word-spacing:-16.162923pt;}
.ws26{word-spacing:-12.543875pt;}
.ws2c{word-spacing:-6.529737pt;}
.ws28{word-spacing:-6.524404pt;}
.ws34{word-spacing:-2.839275pt;}
.ws37{word-spacing:-2.548366pt;}
.wsb{word-spacing:-1.210183pt;}
.ws1e{word-spacing:-0.802910pt;}
.wsf{word-spacing:-0.063761pt;}
.ws32{word-spacing:-0.058182pt;}
.ws49{word-spacing:-0.053134pt;}
.ws2d{word-spacing:-0.042507pt;}
.wse{word-spacing:0.000000pt;}
.ws18{word-spacing:0.011636pt;}
.ws19{word-spacing:0.418909pt;}
.ws21{word-spacing:0.593455pt;}
.ws14{word-spacing:1.233456pt;}
.ws33{word-spacing:1.582547pt;}
.wsc{word-spacing:1.640729pt;}
.ws15{word-spacing:1.931638pt;}
.ws1b{word-spacing:2.280729pt;}
.ws47{word-spacing:2.348517pt;}
.ws20{word-spacing:2.397093pt;}
.ws43{word-spacing:2.629820pt;}
.ws35{word-spacing:2.862548pt;}
.ws3d{word-spacing:2.932989pt;}
.ws16{word-spacing:2.978912pt;}
.ws5{word-spacing:3.211639pt;}
.ws11{word-spacing:3.269821pt;}
.ws3e{word-spacing:3.328003pt;}
.ws36{word-spacing:3.386185pt;}
.wsd{word-spacing:3.851640pt;}
.ws3c{word-spacing:3.889399pt;}
.ws22{word-spacing:3.909821pt;}
.ws45{word-spacing:3.968003pt;}
.ws17{word-spacing:4.084367pt;}
.ws8{word-spacing:5.189823pt;}
.wsa{word-spacing:5.480732pt;}
.ws41{word-spacing:6.062551pt;}
.ws25{word-spacing:6.269818pt;}
.ws1f{word-spacing:6.877097pt;}
.ws3f{word-spacing:7.168006pt;}
.ws29{word-spacing:7.517097pt;}
.ws44{word-spacing:7.866188pt;}
.ws1c{word-spacing:8.389825pt;}
.ws40{word-spacing:9.320735pt;}
.ws6{word-spacing:9.669826pt;}
.ws2a{word-spacing:11.066191pt;}
.ws1a{word-spacing:11.473464pt;}
.ws9{word-spacing:11.938919pt;}
.ws24{word-spacing:13.571596pt;}
.ws30{word-spacing:16.647961pt;}
.ws48{word-spacing:18.384318pt;}
.ws46{word-spacing:18.968790pt;}
.ws3b{word-spacing:21.412948pt;}
.ws10{word-spacing:22.225473pt;}
.ws2b{word-spacing:22.283655pt;}
.ws3{word-spacing:23.336550pt;}
.ws13{word-spacing:23.846639pt;}
.ws31{word-spacing:27.385322pt;}
.ws0{word-spacing:27.842146pt;}
.ws4{word-spacing:28.003782pt;}
.ws2e{word-spacing:42.018944pt;}
.ws38{word-spacing:47.604403pt;}
.ws2{word-spacing:48.252221pt;}
.ws1{word-spacing:48.384419pt;}
.ws7{word-spacing:52.939919pt;}
.ws12{word-spacing:53.760045pt;}
.ws42{word-spacing:71.667439pt;}
.ws2f{word-spacing:104.322628pt;}
.ws39{word-spacing:284.683874pt;}
.ws3a{word-spacing:284.742055pt;}
._26{margin-left:-12.247063pt;}
._30{margin-left:-6.110686pt;}
._20{margin-left:-5.058642pt;}
._0{margin-left:-4.098134pt;}
._5{margin-left:-2.968866pt;}
._2{margin-left:-1.976593pt;}
._6{margin-left:-0.898131pt;}
._4{width:0.898131pt;}
._3{width:1.976593pt;}
._1{width:3.965936pt;}
._27{width:5.104997pt;}
._24{width:16.286151pt;}
._21{width:17.649738pt;}
._8{width:18.732971pt;}
._a{width:20.280068pt;}
._2f{width:23.132570pt;}
._7{width:24.261838pt;}
._1f{width:25.425476pt;}
._23{width:26.563710pt;}
._9{width:28.042069pt;}
._33{width:29.064225pt;}
._22{width:30.485708pt;}
._32{width:36.303894pt;}
._2e{width:37.760031pt;}
._31{width:40.410994pt;}
._b{width:53.818227pt;}
._f{width:59.461868pt;}
._25{width:66.909147pt;}
._1e{width:71.731200pt;}
._2c{width:180.013105pt;}
._2b{width:222.662004pt;}
._2a{width:305.687527pt;}
._28{width:396.860103pt;}
._19{width:469.820164pt;}
._2d{width:484.480404pt;}
._29{width:534.574991pt;}
._1a{width:619.251829pt;}
._15{width:706.875311pt;}
._e{width:749.789716pt;}
._d{width:790.748159pt;}
._12{width:795.344527pt;}
._11{width:856.182127pt;}
._1c{width:925.673499pt;}
._1b{width:1236.245122pt;}
._17{width:1418.708227pt;}
._16{width:1518.399168pt;}
._13{width:1635.201363pt;}
._18{width:1653.063196pt;}
._c{width:1666.215478pt;}
._14{width:1667.641441pt;}
._10{width:1685.295950pt;}
._1d{width:1897.136126pt;}
.fs4{font-size:42.507200pt;}
.fs0{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs2{font-size:63.761067pt;}
.fs3{font-size:76.513067pt;}
.fs1{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:83.389333pt;}
.y51{bottom:156.449333pt;}
.y50{bottom:174.514667pt;}
.y7e{bottom:180.830667pt;}
.ya2{bottom:188.906667pt;}
.y7d{bottom:198.896000pt;}
.y4f{bottom:199.616000pt;}
.ya1{bottom:204.846667pt;}
.y7c{bottom:216.961333pt;}
.y4d{bottom:225.992000pt;}
.ya0{bottom:227.428000pt;}
.y7b{bottom:235.026667pt;}
.y4c{bottom:235.969333pt;}
.y4e{bottom:235.970667pt;}
.y9f{bottom:243.368000pt;}
.y2d{bottom:246.825333pt;}
.y7a{bottom:253.093333pt;}
.y2c{bottom:264.890667pt;}
.y9e{bottom:265.950667pt;}
.y4b{bottom:272.645333pt;}
.y2b{bottom:282.956000pt;}
.y79{bottom:285.562667pt;}
.y9d{bottom:288.532000pt;}
.y4a{bottom:297.746667pt;}
.y2a{bottom:301.022667pt;}
.y9c{bottom:311.114667pt;}
.y29{bottom:319.088000pt;}
.y78{bottom:326.078667pt;}
.y49{bottom:328.389333pt;}
.y9b{bottom:333.696000pt;}
.y28{bottom:337.153333pt;}
.y77{bottom:344.144000pt;}
.y9a{bottom:349.637333pt;}
.y27{bottom:355.218667pt;}
.y48{bottom:359.033333pt;}
.y76{bottom:362.209333pt;}
.yf{bottom:367.074667pt;}
.y26{bottom:373.284000pt;}
.y99{bottom:379.981333pt;}
.y75{bottom:380.274667pt;}
.y47{bottom:384.134667pt;}
.ye{bottom:385.140000pt;}
.y25{bottom:391.350667pt;}
.y74{bottom:398.341333pt;}
.yd{bottom:403.205333pt;}
.y24{bottom:409.416000pt;}
.y46{bottom:415.805333pt;}
.y98{bottom:420.497333pt;}
.yc{bottom:421.270667pt;}
.y73{bottom:431.018667pt;}
.y45{bottom:433.870667pt;}
.y97{bottom:438.562667pt;}
.yb{bottom:439.337333pt;}
.y23{bottom:441.885333pt;}
.y96{bottom:456.628000pt;}
.ya{bottom:457.402667pt;}
.y44{bottom:460.246667pt;}
.y72{bottom:463.696000pt;}
.y43{bottom:470.224000pt;}
.y95{bottom:474.693333pt;}
.y9{bottom:475.468000pt;}
.y22{bottom:482.401333pt;}
.y94{bottom:492.760000pt;}
.y71{bottom:496.165333pt;}
.y42{bottom:506.900000pt;}
.y8{bottom:510.802667pt;}
.y93{bottom:510.825333pt;}
.y21{bottom:523.758667pt;}
.y92{bottom:528.890667pt;}
.y41{bottom:532.001333pt;}
.y70{bottom:532.102667pt;}
.y6f{bottom:533.085333pt;}
.y6e{bottom:536.681333pt;}
.y7{bottom:543.444000pt;}
.y20{bottom:556.370667pt;}
.y91{bottom:561.360000pt;}
.y40{bottom:563.672000pt;}
.y6{bottom:568.984000pt;}
.y6d{bottom:569.358667pt;}
.y3f{bottom:581.737333pt;}
.y1f{bottom:588.981333pt;}
.y6c{bottom:594.940000pt;}
.y3e{bottom:599.802667pt;}
.y90{bottom:601.876000pt;}
.y8f{bottom:619.941333pt;}
.y1e{bottom:621.592000pt;}
.y6b{bottom:623.350667pt;}
.y3d{bottom:624.904000pt;}
.y69{bottom:629.732000pt;}
.y68{bottom:633.328000pt;}
.y8e{bottom:638.008000pt;}
.y6a{bottom:641.066667pt;}
.y1d{bottom:654.202667pt;}
.y8d{bottom:656.073333pt;}
.y3c{bottom:656.574667pt;}
.y67{bottom:664.441333pt;}
.y66{bottom:665.186667pt;}
.y65{bottom:668.782667pt;}
.y8c{bottom:674.138667pt;}
.y3b{bottom:674.640000pt;}
.y5{bottom:679.669333pt;}
.y1c{bottom:686.814667pt;}
.y64{bottom:689.852000pt;}
.y8b{bottom:692.204000pt;}
.y3a{bottom:692.705333pt;}
.y62{bottom:696.233333pt;}
.y61{bottom:699.829333pt;}
.y1b{bottom:704.880000pt;}
.y63{bottom:707.568000pt;}
.y4{bottom:712.808000pt;}
.y1a{bottom:722.945333pt;}
.y39{bottom:724.536000pt;}
.y8a{bottom:724.673333pt;}
.y60{bottom:730.941333pt;}
.y5f{bottom:731.688000pt;}
.y5e{bottom:735.284000pt;}
.y19{bottom:741.010667pt;}
.y3{bottom:752.658667pt;}
.y38{bottom:763.933333pt;}
.y89{bottom:765.189333pt;}
.y5d{bottom:767.961333pt;}
.y18{bottom:773.622667pt;}
.y37{bottom:781.998667pt;}
.y88{bottom:783.256000pt;}
.y17{bottom:791.688000pt;}
.y2{bottom:792.509333pt;}
.y5c{bottom:793.542667pt;}
.y87{bottom:801.321333pt;}
.y16{bottom:809.753333pt;}
.y36{bottom:810.324000pt;}
.y5b{bottom:821.669333pt;}
.y5a{bottom:821.938667pt;}
.y59{bottom:826.012000pt;}
.y15{bottom:827.818667pt;}
.y86{bottom:833.790667pt;}
.y35{bottom:839.666667pt;}
.y14{bottom:845.884000pt;}
.y58{bottom:851.690667pt;}
.y57{bottom:851.958667pt;}
.y56{bottom:856.033333pt;}
.y13{bottom:863.950667pt;}
.y34{bottom:869.009333pt;}
.y85{bottom:877.552000pt;}
.y55{bottom:886.053333pt;}
.y84{bottom:893.493333pt;}
.y12{bottom:896.561333pt;}
.y33{bottom:898.352000pt;}
.y54{bottom:911.634667pt;}
.y32{bottom:916.417333pt;}
.y83{bottom:923.280000pt;}
.y11{bottom:929.172000pt;}
.y82{bottom:941.345333pt;}
.y53{bottom:944.104000pt;}
.y31{bottom:944.744000pt;}
.y81{bottom:959.412000pt;}
.y10{bottom:961.784000pt;}
.y52{bottom:962.169333pt;}
.y30{bottom:962.809333pt;}
.y1{bottom:966.744000pt;}
.y80{bottom:977.477333pt;}
.y2f{bottom:994.638667pt;}
.y7f{bottom:996.073333pt;}
.h6{height:29.499997pt;}
.h2{height:36.874903pt;}
.h1a{height:39.850400pt;}
.h7{height:43.636400pt;}
.h8{height:44.632747pt;}
.h4{height:45.652924pt;}
.h11{height:49.457941pt;}
.hc{height:51.464807pt;}
.h15{height:54.371474pt;}
.h9{height:54.372400pt;}
.h12{height:54.376807pt;}
.he{height:58.654141pt;}
.h17{height:61.001733pt;}
.h14{height:61.007067pt;}
.h19{height:61.951067pt;}
.h5{height:65.277843pt;}
.h10{height:70.665733pt;}
.hd{height:70.671067pt;}
.hf{height:71.743067pt;}
.h18{height:73.038141pt;}
.h13{height:73.043474pt;}
.ha{height:80.436398pt;}
.hb{height:80.441731pt;}
.h3{height:94.653673pt;}
.h16{height:121.363474pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.268000pt;}
.x3{left:117.189333pt;}
.x2c{left:121.873333pt;}
.x4{left:123.850667pt;}
.x5{left:135.086667pt;}
.x2d{left:143.168000pt;}
.x6{left:145.786667pt;}
.x8{left:149.632000pt;}
.x2b{left:185.737333pt;}
.x1{left:254.738667pt;}
.xe{left:263.534667pt;}
.xf{left:271.105333pt;}
.x22{left:276.248000pt;}
.x1a{left:280.097333pt;}
.x12{left:281.918667pt;}
.x1e{left:286.994667pt;}
.x10{left:297.345333pt;}
.x23{left:314.470667pt;}
.xd{left:322.746667pt;}
.x1b{left:326.996000pt;}
.x2a{left:329.949333pt;}
.x11{left:346.402667pt;}
.x27{left:353.985333pt;}
.x9{left:362.052000pt;}
.x28{left:365.565333pt;}
.xa{left:369.622667pt;}
.x16{left:371.188000pt;}
.x1c{left:384.773333pt;}
.x7{left:389.748000pt;}
.xb{left:395.862667pt;}
.x13{left:406.941333pt;}
.x17{left:409.325333pt;}
.x29{left:427.404000pt;}
.x20{left:441.473333pt;}
.xc{left:444.920000pt;}
.x14{left:453.424000pt;}
.x18{left:455.808000pt;}
.x1d{left:457.253333pt;}
.x24{left:458.848000pt;}
.x25{left:461.570667pt;}
.x1f{left:467.601333pt;}
.x15{left:473.684000pt;}
.x21{left:490.532000pt;}
.x26{left:530.724000pt;}
.x19{left:535.854667pt;}
}




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