
    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_d000401869b5a978d9d11583.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.905000;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_8b2feb55b79255f20916b1ff.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.657000;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_dd61f6c44bcf3feb2648619d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.918000;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_e2353e34d227a46f2e2c496f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_80575bd955f6ffb9d5c562d0.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_1ccb6fc230d032d048eb64b7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_270937f2c976327a0d272594.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.724000;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_742b7791da45ad1853068ecd.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.665000;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_4158af91ddb89e1b6ace444c.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f80d02d911674786ae145eff.woff2')format("woff");}.ffa{font-family:ffa;line-height:2.399000;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_931caaa4aeabfdbdf9ef772d.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_0bb88dbbcb33340ed088f3ec.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.708000;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_d57afcad22142aeff1309cfd.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5e6790a171e0a5535776e540.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.431000;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_1721ed72d60bdc7cd0a86302.woff2')format("woff");}.fff{font-family:fff;line-height:0.899000;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_89547049d8be7eb94cabd773.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.845000;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);}
.ve{vertical-align:-74.094000px;}
.vd{vertical-align:-63.432000px;}
.v12{vertical-align:-22.854000px;}
.v8{vertical-align:-10.662000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:10.662000px;}
.vf{vertical-align:16.182000px;}
.va{vertical-align:18.906000px;}
.v2{vertical-align:21.696000px;}
.v11{vertical-align:23.754000px;}
.v7{vertical-align:27.024000px;}
.v9{vertical-align:34.464000px;}
.v10{vertical-align:43.206000px;}
.v5{vertical-align:44.280000px;}
.v3{vertical-align:49.452000px;}
.v6{vertical-align:68.028000px;}
.v4{vertical-align:92.286000px;}
.vb{vertical-align:98.424000px;}
.ls24{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000993px;}
.ls1c{letter-spacing:0.001048px;}
.ls3d{letter-spacing:0.001057px;}
.ls50{letter-spacing:0.001081px;}
.ls20{letter-spacing:0.001601px;}
.ls7{letter-spacing:0.001738px;}
.ls0{letter-spacing:0.002143px;}
.lsb{letter-spacing:0.002682px;}
.ls53{letter-spacing:0.002706px;}
.ls25{letter-spacing:0.003728px;}
.ls36{letter-spacing:0.003739px;}
.ls44{letter-spacing:0.004563px;}
.ls55{letter-spacing:0.006493px;}
.ls37{letter-spacing:0.007548px;}
.ls22{letter-spacing:0.008092px;}
.ls29{letter-spacing:0.009728px;}
.ls4b{letter-spacing:0.014092px;}
.ls3f{letter-spacing:0.023517px;}
.ls49{letter-spacing:0.026012px;}
.ls10{letter-spacing:0.027658px;}
.ls27{letter-spacing:0.029314px;}
.ls4c{letter-spacing:0.259642px;}
.ls3c{letter-spacing:2.356366px;}
.ls6{letter-spacing:2.749678px;}
.ls4{letter-spacing:2.984525px;}
.ls18{letter-spacing:2.984915px;}
.ls3a{letter-spacing:2.987468px;}
.ls2{letter-spacing:2.990525px;}
.ls2b{letter-spacing:2.990915px;}
.lsf{letter-spacing:3.010912px;}
.ls14{letter-spacing:3.665458px;}
.lsd{letter-spacing:7.171062px;}
.ls13{letter-spacing:7.172700px;}
.ls3{letter-spacing:10.460730px;}
.lsc{letter-spacing:13.255568px;}
.lse{letter-spacing:14.530921px;}
.ls17{letter-spacing:14.596376px;}
.ls11{letter-spacing:15.054558px;}
.ls1{letter-spacing:16.617617px;}
.ls47{letter-spacing:16.952741px;}
.ls15{letter-spacing:17.528915px;}
.ls16{letter-spacing:17.534915px;}
.ls35{letter-spacing:18.130924px;}
.lsa{letter-spacing:18.168996px;}
.ls9{letter-spacing:18.196379px;}
.ls4e{letter-spacing:18.654561px;}
.ls8{letter-spacing:19.586525px;}
.ls46{letter-spacing:20.029108px;}
.ls41{letter-spacing:20.749108px;}
.ls21{letter-spacing:21.164915px;}
.ls23{letter-spacing:21.167971px;}
.ls32{letter-spacing:21.170915px;}
.ls56{letter-spacing:21.171056px;}
.ls30{letter-spacing:21.207290px;}
.ls4d{letter-spacing:21.635971px;}
.ls12{letter-spacing:21.711176px;}
.ls1a{letter-spacing:21.796382px;}
.ls51{letter-spacing:21.848915px;}
.ls3b{letter-spacing:24.152747px;}
.ls3e{letter-spacing:24.800915px;}
.ls42{letter-spacing:24.803971px;}
.ls52{letter-spacing:24.806915px;}
.ls2f{letter-spacing:24.807293px;}
.ls4f{letter-spacing:25.088915px;}
.ls1e{letter-spacing:25.334634px;}
.ls40{letter-spacing:28.658915px;}
.ls34{letter-spacing:32.727300px;}
.ls26{letter-spacing:85.019412px;}
.ls1b{letter-spacing:93.215412px;}
.ls1f{letter-spacing:108.986700px;}
.ls43{letter-spacing:109.055412px;}
.ls2d{letter-spacing:116.783412px;}
.ls48{letter-spacing:117.576226px;}
.ls39{letter-spacing:159.536915px;}
.ls2a{letter-spacing:218.273412px;}
.ls38{letter-spacing:289.636605px;}
.ls19{letter-spacing:599.755062px;}
.ls54{letter-spacing:778.667971px;}
.ls45{letter-spacing:832.004915px;}
.ls2c{letter-spacing:879.524706px;}
.ls4a{letter-spacing:934.958915px;}
.ls33{letter-spacing:981.599971px;}
.ls31{letter-spacing:1017.203971px;}
.ls28{letter-spacing:1025.330706px;}
.ls2e{letter-spacing:1057.706915px;}
.ls1d{letter-spacing:1118.588915px;}
.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;}
}
.ws12{word-spacing:-42.637126px;}
.ws6{word-spacing:-38.937826px;}
.ws21{word-spacing:-32.714209px;}
.ws7{word-spacing:-27.066392px;}
.ws35{word-spacing:-20.906199px;}
.ws13{word-spacing:-18.183288px;}
.ws22{word-spacing:-14.111859px;}
.ws9{word-spacing:-6.144932px;}
.ws18{word-spacing:-3.652367px;}
.ws24{word-spacing:-3.586912px;}
.ws56{word-spacing:-3.194184px;}
.ws3c{word-spacing:-2.317093px;}
.ws3d{word-spacing:-2.016002px;}
.ws23{word-spacing:-0.052364px;}
.ws1c{word-spacing:0.000000px;}
.wsd{word-spacing:0.011955px;}
.ws1b{word-spacing:0.013091px;}
.ws4f{word-spacing:0.890183px;}
.ws37{word-spacing:1.387638px;}
.ws52{word-spacing:1.518547px;}
.ws8{word-spacing:1.864999px;}
.ws4{word-spacing:1.924774px;}
.ws33{word-spacing:1.937456px;}
.wsa{word-spacing:2.582306px;}
.ws44{word-spacing:2.631275px;}
.wsc{word-spacing:3.180062px;}
.wsf{word-spacing:3.299613px;}
.ws25{word-spacing:3.423090px;}
.ws14{word-spacing:3.613094px;}
.ws36{word-spacing:3.678549px;}
.ws48{word-spacing:3.874912px;}
.ws49{word-spacing:3.940367px;}
.ws4e{word-spacing:4.005822px;}
.ws1d{word-spacing:4.162913px;}
.ws1f{word-spacing:4.228367px;}
.ws3b{word-spacing:4.398549px;}
.ws47{word-spacing:4.490186px;}
.ws4d{word-spacing:4.621095px;}
.ws3e{word-spacing:4.856731px;}
.ws3a{word-spacing:5.079277px;}
.ws41{word-spacing:5.184004px;}
.ws40{word-spacing:5.249459px;}
.ws3f{word-spacing:5.995641px;}
.ws5{word-spacing:6.061399px;}
.ws55{word-spacing:6.100369px;}
.ws2{word-spacing:6.109066px;}
.wsb{word-spacing:6.766598px;}
.ws1e{word-spacing:7.059090px;}
.ws15{word-spacing:7.060046px;}
.ws20{word-spacing:7.071621px;}
.ws26{word-spacing:7.077621px;}
.ws42{word-spacing:7.170324px;}
.ws39{word-spacing:7.474915px;}
.ws50{word-spacing:8.221098px;}
.ws38{word-spacing:8.613825px;}
.ws46{word-spacing:9.176735px;}
.ws3{word-spacing:9.576051px;}
.wse{word-spacing:9.934705px;}
.ws43{word-spacing:10.027645px;}
.ws45{word-spacing:10.512009px;}
.ws57{word-spacing:10.689028px;}
.ws54{word-spacing:10.691971px;}
.ws34{word-spacing:10.878555px;}
.ws51{word-spacing:10.944009px;}
.ws53{word-spacing:11.336737px;}
.ws11{word-spacing:11.533101px;}
.ws4b{word-spacing:13.234920px;}
.ws32{word-spacing:14.544012px;}
.ws4a{word-spacing:15.290195px;}
.ws31{word-spacing:18.345254px;}
.ws4c{word-spacing:20.321971px;}
.ws1{word-spacing:23.312640px;}
.ws5c{word-spacing:24.673895px;}
.ws17{word-spacing:26.827469px;}
.ws0{word-spacing:31.091012px;}
.ws16{word-spacing:32.192873px;}
.ws2b{word-spacing:53.554954px;}
.ws2c{word-spacing:64.485872px;}
.ws10{word-spacing:96.750773px;}
.ws28{word-spacing:107.554999px;}
.ws29{word-spacing:129.220471px;}
.ws2d{word-spacing:221.511457px;}
.ws30{word-spacing:223.213277px;}
.ws2e{word-spacing:236.042379px;}
.ws2f{word-spacing:237.875107px;}
.ws2a{word-spacing:268.532943px;}
.ws1a{word-spacing:817.082863px;}
.ws27{word-spacing:871.933818px;}
.ws19{word-spacing:897.199293px;}
.ws5b{word-spacing:934.600052px;}
.ws58{word-spacing:966.646624px;}
.ws5a{word-spacing:967.039351px;}
.ws59{word-spacing:1085.250359px;}
._12{margin-left:-14.530921px;}
._8{margin-left:-10.479363px;}
._0{margin-left:-8.056807px;}
._11{margin-left:-6.280798px;}
._3{margin-left:-4.961375px;}
._36{margin-left:-3.828397px;}
._1{margin-left:-2.685602px;}
._4{margin-left:-1.673717px;}
._5{width:1.011886px;}
._2{width:2.685602px;}
._9{width:17.068393px;}
._b{width:18.409964px;}
._34{width:20.620163px;}
._f{width:21.791982px;}
._c{width:22.813589px;}
._38{width:24.421851px;}
._7{width:25.882835px;}
._35{width:27.197483px;}
._16{width:28.212896px;}
._15{width:29.754824px;}
._37{width:32.203663px;}
._3c{width:33.512755px;}
._a{width:36.761994px;}
._3a{width:40.254579px;}
._6{width:45.369680px;}
._3b{width:48.962005px;}
._3d{width:52.298225px;}
._22{width:71.738242px;}
._e{width:80.697600px;}
._23{width:95.498261px;}
._d{width:96.836850px;}
._24{width:135.556477px;}
._1e{width:149.760125px;}
._19{width:152.571829px;}
._1c{width:158.269223px;}
._21{width:165.346736px;}
._1d{width:178.821967px;}
._1f{width:180.458332px;}
._31{width:188.901976px;}
._20{width:208.605774px;}
._17{width:232.102012px;}
._2c{width:239.563836px;}
._25{width:241.387637px;}
._1a{width:248.465662px;}
._2b{width:252.065665px;}
._26{width:254.169139px;}
._28{width:256.428851px;}
._30{width:265.549312px;}
._27{width:271.241018px;}
._13{width:273.905910px;}
._29{width:276.938413px;}
._2a{width:297.491157px;}
._2f{width:316.014809px;}
._32{width:327.177479px;}
._33{width:366.938488px;}
._18{width:408.829432px;}
._1b{width:425.193082px;}
._2e{width:503.738602px;}
._2d{width:636.087803px;}
._14{width:645.528543px;}
._39{width:1096.626368px;}
._10{width:1147.157320px;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:35.865600px;}
.fs3{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs8{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs5{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1e{bottom:63.168000px;}
.y7e{bottom:108.000000px;}
.y61{bottom:108.435000px;}
.y60{bottom:134.737500px;}
.y7d{bottom:140.082000px;}
.y1d{bottom:154.234500px;}
.y3e{bottom:166.086000px;}
.y3d{bottom:166.204500px;}
.y5f{bottom:168.510000px;}
.y3c{bottom:170.250000px;}
.y7c{bottom:172.165500px;}
.y1c{bottom:180.771000px;}
.y3b{bottom:190.573500px;}
.y7b{bottom:201.711000px;}
.y5e{bottom:202.284000px;}
.y1b{bottom:217.533000px;}
.yb0{bottom:218.988000px;}
.y3a{bottom:221.464500px;}
.y7a{bottom:226.843500px;}
.y5d{bottom:228.585000px;}
.y79{bottom:238.068000px;}
.yaf{bottom:239.311500px;}
.y97{bottom:243.504000px;}
.y1a{bottom:246.829500px;}
.y39{bottom:252.955500px;}
.y5c{bottom:254.886000px;}
.y19{bottom:258.054000px;}
.y96{bottom:263.829000px;}
.yae{bottom:275.839500px;}
.y78{bottom:276.363000px;}
.y5b{bottom:281.188500px;}
.y38{bottom:290.080500px;}
.y95{bottom:297.601500px;}
.y18{bottom:305.083500px;}
.y77{bottom:307.254000px;}
.y5a{bottom:314.961000px;}
.y94{bottom:317.925000px;}
.yad{bottom:327.397500px;}
.y17{bottom:335.976000px;}
.y37{bottom:341.638500px;}
.yac{bottom:347.721000px;}
.y59{bottom:348.735000px;}
.y76{bottom:350.277000px;}
.y93{bottom:351.699000px;}
.y75{bottom:370.600500px;}
.y16{bottom:373.102500px;}
.y58{bottom:375.036000px;}
.y36{bottom:375.412500px;}
.y92{bottom:378.000000px;}
.yab{bottom:381.495000px;}
.y57{bottom:401.337000px;}
.y74{bottom:402.682500px;}
.y91{bottom:404.302500px;}
.y35{bottom:409.186500px;}
.yaa{bottom:415.267500px;}
.y73{bottom:423.006000px;}
.y15{bottom:424.660500px;}
.y56{bottom:427.639500px;}
.y90{bottom:438.075000px;}
.y34{bottom:442.959000px;}
.y72{bottom:443.329500px;}
.ya9{bottom:449.041500px;}
.y14{bottom:457.138500px;}
.y55{bottom:461.412000px;}
.y13{bottom:468.363000px;}
.y8f{bottom:471.849000px;}
.y71{bottom:475.413000px;}
.y33{bottom:476.733000px;}
.ya8{bottom:482.815500px;}
.y8e{bottom:492.172500px;}
.y54{bottom:495.186000px;}
.y70{bottom:495.736500px;}
.ya7{bottom:503.139000px;}
.y32{bottom:510.505500px;}
.y12{bottom:511.729500px;}
.y53{bottom:521.487000px;}
.y8d{bottom:523.065000px;}
.ya6{bottom:523.462500px;}
.y6f{bottom:527.818500px;}
.y11{bottom:538.621500px;}
.y31{bottom:541.398000px;}
.y52{bottom:547.788000px;}
.y6e{bottom:548.142000px;}
.y10{bottom:549.847500px;}
.ya5{bottom:561.718500px;}
.y8c{bottom:566.883000px;}
.yf{bottom:579.235500px;}
.y6d{bottom:580.225500px;}
.y51{bottom:581.562000px;}
.y30{bottom:585.217500px;}
.ya4{bottom:595.492500px;}
.ye{bottom:599.559000px;}
.y8b{bottom:605.140500px;}
.y2f{bottom:605.541000px;}
.y6c{bottom:611.116500px;}
.y50{bottom:612.453000px;}
.ya3{bottom:615.816000px;}
.y2e{bottom:635.578500px;}
.yd{bottom:636.088500px;}
.y8a{bottom:638.913000px;}
.y6b{bottom:648.243000px;}
.ya2{bottom:649.590000px;}
.y2d{bottom:655.902000px;}
.y4f{bottom:670.590000px;}
.y89{bottom:672.687000px;}
.ya1{bottom:683.362500px;}
.yc{bottom:687.646500px;}
.y4e{bottom:689.328000px;}
.y2c{bottom:692.664000px;}
.y6a{bottom:699.004500px;}
.ya0{bottom:703.686000px;}
.yb{bottom:705.579000px;}
.y4d{bottom:709.651500px;}
.y88{bottom:710.943000px;}
.ya{bottom:723.511500px;}
.y69{bottom:723.615000px;}
.y2b{bottom:729.426000px;}
.y4c{bottom:729.975000px;}
.y87{bottom:731.266500px;}
.y9f{bottom:737.460000px;}
.y9{bottom:741.444000px;}
.y68{bottom:748.225500px;}
.y4b{bottom:750.300000px;}
.y8{bottom:759.376500px;}
.y2a{bottom:760.318500px;}
.y86{bottom:762.159000px;}
.y4a{bottom:770.623500px;}
.y67{bottom:772.836000px;}
.y9e{bottom:775.716000px;}
.y7{bottom:777.310500px;}
.y6{bottom:795.243000px;}
.y29{bottom:797.443500px;}
.y66{bottom:797.446500px;}
.y49{bottom:799.162500px;}
.y85{bottom:799.285500px;}
.y9d{bottom:812.245500px;}
.y48{bottom:819.486000px;}
.y5{bottom:822.516000px;}
.y65{bottom:829.528500px;}
.yb7{bottom:837.106500px;}
.y27{bottom:841.723500px;}
.y47{bottom:844.278000px;}
.y84{bottom:850.843500px;}
.y28{bottom:852.948000px;}
.y64{bottom:861.610500px;}
.y9c{bottom:863.803500px;}
.yb6{bottom:867.999000px;}
.y83{bottom:871.167000px;}
.y26{bottom:879.876000px;}
.y4{bottom:882.927000px;}
.y63{bottom:886.221000px;}
.y9b{bottom:897.576000px;}
.y46{bottom:898.743000px;}
.y82{bottom:907.929000px;}
.yb5{bottom:911.817000px;}
.y25{bottom:913.263000px;}
.y45{bottom:919.066500px;}
.y3{bottom:919.614000px;}
.y24{bottom:924.487500px;}
.y9a{bottom:931.350000px;}
.yb4{bottom:936.624000px;}
.y44{bottom:939.390000px;}
.y81{bottom:944.691000px;}
.y43{bottom:959.713500px;}
.yb3{bottom:963.160500px;}
.y2{bottom:965.080500px;}
.y99{bottom:965.122500px;}
.y23{bottom:967.854000px;}
.y80{bottom:978.078000px;}
.y42{bottom:980.037000px;}
.y7f{bottom:989.302500px;}
.yb2{bottom:989.695500px;}
.y22{bottom:994.516500px;}
.y1{bottom:997.957500px;}
.y98{bottom:998.896500px;}
.y62{bottom:1000.362000px;}
.y21{bottom:1005.741000px;}
.y41{bottom:1008.577500px;}
.yb1{bottom:1016.232000px;}
.y40{bottom:1028.901000px;}
.y20{bottom:1032.669000px;}
.y3f{bottom:1053.693000px;}
.y1f{bottom:1063.561500px;}
.h15{height:16.677504px;}
.h3{height:41.842920px;}
.h4{height:44.831700px;}
.h11{height:45.818220px;}
.h8{height:49.090950px;}
.hd{height:50.211840px;}
.h6{height:51.147331px;}
.h2{height:51.216077px;}
.h14{height:52.637642px;}
.h16{height:57.413702px;}
.h17{height:57.419702px;}
.h7{height:60.254040px;}
.hf{height:60.689702px;}
.h10{height:60.695702px;}
.h13{height:65.746950px;}
.h1{height:72.511265px;}
.h12{height:76.871702px;}
.h5{height:91.593798px;}
.ha{height:93.370950px;}
.h18{height:93.376950px;}
.hc{height:93.988950px;}
.h9{height:101.693702px;}
.hb{height:139.808184px;}
.he{height:144.569493px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:108.000000px;}
.x25{left:127.999500px;}
.xd{left:133.404000px;}
.x7{left:148.909500px;}
.x23{left:165.426000px;}
.x26{left:168.592500px;}
.x6{left:171.325500px;}
.x1{left:224.229000px;}
.x21{left:227.445000px;}
.x20{left:246.931500px;}
.x28{left:248.737500px;}
.x24{left:250.548000px;}
.x27{left:255.613500px;}
.x9{left:278.847000px;}
.x2{left:288.186000px;}
.x1b{left:290.232000px;}
.x2f{left:331.011000px;}
.x30{left:333.423000px;}
.x13{left:337.723500px;}
.x29{left:344.344500px;}
.x16{left:346.996500px;}
.x2e{left:350.431500px;}
.x10{left:357.763500px;}
.x1d{left:359.625000px;}
.xa{left:364.248000px;}
.x3{left:366.232500px;}
.x2b{left:368.290500px;}
.x1c{left:381.744000px;}
.x15{left:383.448000px;}
.x12{left:385.405500px;}
.x4{left:390.838500px;}
.x2a{left:394.624500px;}
.x18{left:395.727000px;}
.xe{left:406.015500px;}
.x2d{left:411.256500px;}
.x11{left:412.989000px;}
.xb{left:416.668500px;}
.x1e{left:422.656500px;}
.x17{left:424.129500px;}
.x5{left:426.123000px;}
.x22{left:437.712000px;}
.xc{left:451.012500px;}
.x19{left:452.448000px;}
.x14{left:454.909500px;}
.xf{left:456.295500px;}
.x2c{left:469.459500px;}
.x1a{left:471.514500px;}
.x1f{left:472.950000px;}
@media print{
.ve{vertical-align:-65.861333pt;}
.vd{vertical-align:-56.384000pt;}
.v12{vertical-align:-20.314667pt;}
.v8{vertical-align:-9.477333pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:9.477333pt;}
.vf{vertical-align:14.384000pt;}
.va{vertical-align:16.805333pt;}
.v2{vertical-align:19.285333pt;}
.v11{vertical-align:21.114667pt;}
.v7{vertical-align:24.021333pt;}
.v9{vertical-align:30.634667pt;}
.v10{vertical-align:38.405333pt;}
.v5{vertical-align:39.360000pt;}
.v3{vertical-align:43.957333pt;}
.v6{vertical-align:60.469333pt;}
.v4{vertical-align:82.032000pt;}
.vb{vertical-align:87.488000pt;}
.ls24{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000882pt;}
.ls1c{letter-spacing:0.000932pt;}
.ls3d{letter-spacing:0.000939pt;}
.ls50{letter-spacing:0.000961pt;}
.ls20{letter-spacing:0.001423pt;}
.ls7{letter-spacing:0.001545pt;}
.ls0{letter-spacing:0.001905pt;}
.lsb{letter-spacing:0.002384pt;}
.ls53{letter-spacing:0.002405pt;}
.ls25{letter-spacing:0.003313pt;}
.ls36{letter-spacing:0.003323pt;}
.ls44{letter-spacing:0.004056pt;}
.ls55{letter-spacing:0.005771pt;}
.ls37{letter-spacing:0.006709pt;}
.ls22{letter-spacing:0.007193pt;}
.ls29{letter-spacing:0.008647pt;}
.ls4b{letter-spacing:0.012526pt;}
.ls3f{letter-spacing:0.020904pt;}
.ls49{letter-spacing:0.023122pt;}
.ls10{letter-spacing:0.024585pt;}
.ls27{letter-spacing:0.026057pt;}
.ls4c{letter-spacing:0.230793pt;}
.ls3c{letter-spacing:2.094547pt;}
.ls6{letter-spacing:2.444158pt;}
.ls4{letter-spacing:2.652911pt;}
.ls18{letter-spacing:2.653258pt;}
.ls3a{letter-spacing:2.655527pt;}
.ls2{letter-spacing:2.658245pt;}
.ls2b{letter-spacing:2.658591pt;}
.lsf{letter-spacing:2.676366pt;}
.ls14{letter-spacing:3.258185pt;}
.lsd{letter-spacing:6.374277pt;}
.ls13{letter-spacing:6.375733pt;}
.ls3{letter-spacing:9.298427pt;}
.lsc{letter-spacing:11.782727pt;}
.lse{letter-spacing:12.916374pt;}
.ls17{letter-spacing:12.974556pt;}
.ls11{letter-spacing:13.381829pt;}
.ls1{letter-spacing:14.771215pt;}
.ls47{letter-spacing:15.069103pt;}
.ls15{letter-spacing:15.581258pt;}
.ls16{letter-spacing:15.586591pt;}
.ls35{letter-spacing:16.116377pt;}
.lsa{letter-spacing:16.150218pt;}
.ls9{letter-spacing:16.174559pt;}
.ls4e{letter-spacing:16.581832pt;}
.ls8{letter-spacing:17.410245pt;}
.ls46{letter-spacing:17.803651pt;}
.ls41{letter-spacing:18.443652pt;}
.ls21{letter-spacing:18.813258pt;}
.ls23{letter-spacing:18.815975pt;}
.ls32{letter-spacing:18.818591pt;}
.ls56{letter-spacing:18.818717pt;}
.ls30{letter-spacing:18.850925pt;}
.ls4d{letter-spacing:19.231975pt;}
.ls12{letter-spacing:19.298823pt;}
.ls1a{letter-spacing:19.374562pt;}
.ls51{letter-spacing:19.421258pt;}
.ls3b{letter-spacing:21.469109pt;}
.ls3e{letter-spacing:22.045258pt;}
.ls42{letter-spacing:22.047975pt;}
.ls52{letter-spacing:22.050591pt;}
.ls2f{letter-spacing:22.050927pt;}
.ls4f{letter-spacing:22.301258pt;}
.ls1e{letter-spacing:22.519675pt;}
.ls40{letter-spacing:25.474591pt;}
.ls34{letter-spacing:29.090933pt;}
.ls26{letter-spacing:75.572811pt;}
.ls1b{letter-spacing:82.858144pt;}
.ls1f{letter-spacing:96.877067pt;}
.ls43{letter-spacing:96.938144pt;}
.ls2d{letter-spacing:103.807477pt;}
.ls48{letter-spacing:104.512201pt;}
.ls39{letter-spacing:141.810591pt;}
.ls2a{letter-spacing:194.020811pt;}
.ls38{letter-spacing:257.454760pt;}
.ls19{letter-spacing:533.115611pt;}
.ls54{letter-spacing:692.149308pt;}
.ls45{letter-spacing:739.559925pt;}
.ls2c{letter-spacing:781.799739pt;}
.ls4a{letter-spacing:831.074591pt;}
.ls33{letter-spacing:872.533308pt;}
.ls31{letter-spacing:904.181308pt;}
.ls28{letter-spacing:911.405072pt;}
.ls2e{letter-spacing:940.183925pt;}
.ls1d{letter-spacing:994.301258pt;}
.ws12{word-spacing:-37.899668pt;}
.ws6{word-spacing:-34.611401pt;}
.ws21{word-spacing:-29.079297pt;}
.ws7{word-spacing:-24.059015pt;}
.ws35{word-spacing:-18.583288pt;}
.ws13{word-spacing:-16.162923pt;}
.ws22{word-spacing:-12.543875pt;}
.ws9{word-spacing:-5.462161pt;}
.ws18{word-spacing:-3.246548pt;}
.ws24{word-spacing:-3.188366pt;}
.ws56{word-spacing:-2.839275pt;}
.ws3c{word-spacing:-2.059638pt;}
.ws3d{word-spacing:-1.792001pt;}
.ws23{word-spacing:-0.046545pt;}
.ws1c{word-spacing:0.000000pt;}
.wsd{word-spacing:0.010627pt;}
.ws1b{word-spacing:0.011636pt;}
.ws4f{word-spacing:0.791273pt;}
.ws37{word-spacing:1.233456pt;}
.ws52{word-spacing:1.349819pt;}
.ws8{word-spacing:1.657777pt;}
.ws4{word-spacing:1.710911pt;}
.ws33{word-spacing:1.722183pt;}
.wsa{word-spacing:2.295383pt;}
.ws44{word-spacing:2.338911pt;}
.wsc{word-spacing:2.826722pt;}
.wsf{word-spacing:2.932989pt;}
.ws25{word-spacing:3.042747pt;}
.ws14{word-spacing:3.211639pt;}
.ws36{word-spacing:3.269821pt;}
.ws48{word-spacing:3.444367pt;}
.ws49{word-spacing:3.502548pt;}
.ws4e{word-spacing:3.560730pt;}
.ws1d{word-spacing:3.700367pt;}
.ws1f{word-spacing:3.758549pt;}
.ws3b{word-spacing:3.909821pt;}
.ws47{word-spacing:3.991276pt;}
.ws4d{word-spacing:4.107640pt;}
.ws3e{word-spacing:4.317095pt;}
.ws3a{word-spacing:4.514913pt;}
.ws41{word-spacing:4.608004pt;}
.ws40{word-spacing:4.666186pt;}
.ws3f{word-spacing:5.329459pt;}
.ws5{word-spacing:5.387910pt;}
.ws55{word-spacing:5.422550pt;}
.ws2{word-spacing:5.430281pt;}
.wsb{word-spacing:6.014754pt;}
.ws1e{word-spacing:6.274747pt;}
.ws15{word-spacing:6.275596pt;}
.ws20{word-spacing:6.285885pt;}
.ws26{word-spacing:6.291219pt;}
.ws42{word-spacing:6.373622pt;}
.ws39{word-spacing:6.644369pt;}
.ws50{word-spacing:7.307642pt;}
.ws38{word-spacing:7.656734pt;}
.ws46{word-spacing:8.157098pt;}
.ws3{word-spacing:8.512045pt;}
.wse{word-spacing:8.830849pt;}
.ws43{word-spacing:8.913462pt;}
.ws45{word-spacing:9.344008pt;}
.ws57{word-spacing:9.501358pt;}
.ws54{word-spacing:9.503975pt;}
.ws34{word-spacing:9.669826pt;}
.ws51{word-spacing:9.728008pt;}
.ws53{word-spacing:10.077099pt;}
.ws11{word-spacing:10.251645pt;}
.ws4b{word-spacing:11.764373pt;}
.ws32{word-spacing:12.928011pt;}
.ws4a{word-spacing:13.591284pt;}
.ws31{word-spacing:16.306893pt;}
.ws4c{word-spacing:18.063975pt;}
.ws1{word-spacing:20.722347pt;}
.ws5c{word-spacing:21.932351pt;}
.ws17{word-spacing:23.846639pt;}
.ws0{word-spacing:27.636455pt;}
.ws16{word-spacing:28.615887pt;}
.ws2b{word-spacing:47.604403pt;}
.ws2c{word-spacing:57.320775pt;}
.ws10{word-spacing:86.000687pt;}
.ws28{word-spacing:95.604443pt;}
.ws29{word-spacing:114.862641pt;}
.ws2d{word-spacing:196.899073pt;}
.ws30{word-spacing:198.411802pt;}
.ws2e{word-spacing:209.815448pt;}
.ws2f{word-spacing:211.444540pt;}
.ws2a{word-spacing:238.695949pt;}
.ws1a{word-spacing:726.295878pt;}
.ws27{word-spacing:775.052282pt;}
.ws19{word-spacing:797.510483pt;}
.ws5b{word-spacing:830.755601pt;}
.ws58{word-spacing:859.241443pt;}
.ws5a{word-spacing:859.590535pt;}
.ws59{word-spacing:964.666986pt;}
._12{margin-left:-12.916374pt;}
._8{margin-left:-9.314989pt;}
._0{margin-left:-7.161606pt;}
._11{margin-left:-5.582931pt;}
._3{margin-left:-4.410111pt;}
._36{margin-left:-3.403020pt;}
._1{margin-left:-2.387202pt;}
._4{margin-left:-1.487748pt;}
._5{width:0.899454pt;}
._2{width:2.387202pt;}
._9{width:15.171905pt;}
._b{width:16.364412pt;}
._34{width:18.329034pt;}
._f{width:19.370651pt;}
._c{width:20.278746pt;}
._38{width:21.708312pt;}
._7{width:23.006964pt;}
._35{width:24.175540pt;}
._16{width:25.078130pt;}
._15{width:26.448732pt;}
._37{width:28.625478pt;}
._3c{width:29.789116pt;}
._a{width:32.677328pt;}
._3a{width:35.781848pt;}
._6{width:40.328605pt;}
._3b{width:43.521782pt;}
._3d{width:46.487311pt;}
._22{width:63.767326pt;}
._e{width:71.731200pt;}
._23{width:84.887343pt;}
._d{width:86.077200pt;}
._24{width:120.494646pt;}
._1e{width:133.120111pt;}
._19{width:135.619403pt;}
._1c{width:140.683754pt;}
._21{width:146.974876pt;}
._1d{width:158.952860pt;}
._1f{width:160.407406pt;}
._31{width:167.912867pt;}
._20{width:185.427355pt;}
._17{width:206.312899pt;}
._2c{width:212.945632pt;}
._25{width:214.566789pt;}
._1a{width:220.858366pt;}
._2b{width:224.058369pt;}
._26{width:225.928124pt;}
._28{width:227.936756pt;}
._30{width:236.043833pt;}
._27{width:241.103127pt;}
._13{width:243.471920pt;}
._29{width:246.167478pt;}
._2a{width:264.436584pt;}
._2f{width:280.902052pt;}
._32{width:290.824426pt;}
._33{width:326.167545pt;}
._18{width:363.403939pt;}
._1b{width:377.949406pt;}
._2e{width:447.767646pt;}
._2d{width:565.411380pt;}
._14{width:573.803149pt;}
._39{width:974.778994pt;}
._10{width:1019.695395pt;}
.fs7{font-size:31.880533pt;}
.fs3{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs8{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs5{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:56.149333pt;}
.y7e{bottom:96.000000pt;}
.y61{bottom:96.386667pt;}
.y60{bottom:119.766667pt;}
.y7d{bottom:124.517333pt;}
.y1d{bottom:137.097333pt;}
.y3e{bottom:147.632000pt;}
.y3d{bottom:147.737333pt;}
.y5f{bottom:149.786667pt;}
.y3c{bottom:151.333333pt;}
.y7c{bottom:153.036000pt;}
.y1c{bottom:160.685333pt;}
.y3b{bottom:169.398667pt;}
.y7b{bottom:179.298667pt;}
.y5e{bottom:179.808000pt;}
.y1b{bottom:193.362667pt;}
.yb0{bottom:194.656000pt;}
.y3a{bottom:196.857333pt;}
.y7a{bottom:201.638667pt;}
.y5d{bottom:203.186667pt;}
.y79{bottom:211.616000pt;}
.yaf{bottom:212.721333pt;}
.y97{bottom:216.448000pt;}
.y1a{bottom:219.404000pt;}
.y39{bottom:224.849333pt;}
.y5c{bottom:226.565333pt;}
.y19{bottom:229.381333pt;}
.y96{bottom:234.514667pt;}
.yae{bottom:245.190667pt;}
.y78{bottom:245.656000pt;}
.y5b{bottom:249.945333pt;}
.y38{bottom:257.849333pt;}
.y95{bottom:264.534667pt;}
.y18{bottom:271.185333pt;}
.y77{bottom:273.114667pt;}
.y5a{bottom:279.965333pt;}
.y94{bottom:282.600000pt;}
.yad{bottom:291.020000pt;}
.y17{bottom:298.645333pt;}
.y37{bottom:303.678667pt;}
.yac{bottom:309.085333pt;}
.y59{bottom:309.986667pt;}
.y76{bottom:311.357333pt;}
.y93{bottom:312.621333pt;}
.y75{bottom:329.422667pt;}
.y16{bottom:331.646667pt;}
.y58{bottom:333.365333pt;}
.y36{bottom:333.700000pt;}
.y92{bottom:336.000000pt;}
.yab{bottom:339.106667pt;}
.y57{bottom:356.744000pt;}
.y74{bottom:357.940000pt;}
.y91{bottom:359.380000pt;}
.y35{bottom:363.721333pt;}
.yaa{bottom:369.126667pt;}
.y73{bottom:376.005333pt;}
.y15{bottom:377.476000pt;}
.y56{bottom:380.124000pt;}
.y90{bottom:389.400000pt;}
.y34{bottom:393.741333pt;}
.y72{bottom:394.070667pt;}
.ya9{bottom:399.148000pt;}
.y14{bottom:406.345333pt;}
.y55{bottom:410.144000pt;}
.y13{bottom:416.322667pt;}
.y8f{bottom:419.421333pt;}
.y71{bottom:422.589333pt;}
.y33{bottom:423.762667pt;}
.ya8{bottom:429.169333pt;}
.y8e{bottom:437.486667pt;}
.y54{bottom:440.165333pt;}
.y70{bottom:440.654667pt;}
.ya7{bottom:447.234667pt;}
.y32{bottom:453.782667pt;}
.y12{bottom:454.870667pt;}
.y53{bottom:463.544000pt;}
.y8d{bottom:464.946667pt;}
.ya6{bottom:465.300000pt;}
.y6f{bottom:469.172000pt;}
.y11{bottom:478.774667pt;}
.y31{bottom:481.242667pt;}
.y52{bottom:486.922667pt;}
.y6e{bottom:487.237333pt;}
.y10{bottom:488.753333pt;}
.ya5{bottom:499.305333pt;}
.y8c{bottom:503.896000pt;}
.yf{bottom:514.876000pt;}
.y6d{bottom:515.756000pt;}
.y51{bottom:516.944000pt;}
.y30{bottom:520.193333pt;}
.ya4{bottom:529.326667pt;}
.ye{bottom:532.941333pt;}
.y8b{bottom:537.902667pt;}
.y2f{bottom:538.258667pt;}
.y6c{bottom:543.214667pt;}
.y50{bottom:544.402667pt;}
.ya3{bottom:547.392000pt;}
.y2e{bottom:564.958667pt;}
.yd{bottom:565.412000pt;}
.y8a{bottom:567.922667pt;}
.y6b{bottom:576.216000pt;}
.ya2{bottom:577.413333pt;}
.y2d{bottom:583.024000pt;}
.y4f{bottom:596.080000pt;}
.y89{bottom:597.944000pt;}
.ya1{bottom:607.433333pt;}
.yc{bottom:611.241333pt;}
.y4e{bottom:612.736000pt;}
.y2c{bottom:615.701333pt;}
.y6a{bottom:621.337333pt;}
.ya0{bottom:625.498667pt;}
.yb{bottom:627.181333pt;}
.y4d{bottom:630.801333pt;}
.y88{bottom:631.949333pt;}
.ya{bottom:643.121333pt;}
.y69{bottom:643.213333pt;}
.y2b{bottom:648.378667pt;}
.y4c{bottom:648.866667pt;}
.y87{bottom:650.014667pt;}
.y9f{bottom:655.520000pt;}
.y9{bottom:659.061333pt;}
.y68{bottom:665.089333pt;}
.y4b{bottom:666.933333pt;}
.y8{bottom:675.001333pt;}
.y2a{bottom:675.838667pt;}
.y86{bottom:677.474667pt;}
.y4a{bottom:684.998667pt;}
.y67{bottom:686.965333pt;}
.y9e{bottom:689.525333pt;}
.y7{bottom:690.942667pt;}
.y6{bottom:706.882667pt;}
.y29{bottom:708.838667pt;}
.y66{bottom:708.841333pt;}
.y49{bottom:710.366667pt;}
.y85{bottom:710.476000pt;}
.y9d{bottom:721.996000pt;}
.y48{bottom:728.432000pt;}
.y5{bottom:731.125333pt;}
.y65{bottom:737.358667pt;}
.yb7{bottom:744.094667pt;}
.y27{bottom:748.198667pt;}
.y47{bottom:750.469333pt;}
.y84{bottom:756.305333pt;}
.y28{bottom:758.176000pt;}
.y64{bottom:765.876000pt;}
.y9c{bottom:767.825333pt;}
.yb6{bottom:771.554667pt;}
.y83{bottom:774.370667pt;}
.y26{bottom:782.112000pt;}
.y4{bottom:784.824000pt;}
.y63{bottom:787.752000pt;}
.y9b{bottom:797.845333pt;}
.y46{bottom:798.882667pt;}
.y82{bottom:807.048000pt;}
.yb5{bottom:810.504000pt;}
.y25{bottom:811.789333pt;}
.y45{bottom:816.948000pt;}
.y3{bottom:817.434667pt;}
.y24{bottom:821.766667pt;}
.y9a{bottom:827.866667pt;}
.yb4{bottom:832.554667pt;}
.y44{bottom:835.013333pt;}
.y81{bottom:839.725333pt;}
.y43{bottom:853.078667pt;}
.yb3{bottom:856.142667pt;}
.y2{bottom:857.849333pt;}
.y99{bottom:857.886667pt;}
.y23{bottom:860.314667pt;}
.y80{bottom:869.402667pt;}
.y42{bottom:871.144000pt;}
.y7f{bottom:879.380000pt;}
.yb2{bottom:879.729333pt;}
.y22{bottom:884.014667pt;}
.y1{bottom:887.073333pt;}
.y98{bottom:887.908000pt;}
.y62{bottom:889.210667pt;}
.y21{bottom:893.992000pt;}
.y41{bottom:896.513333pt;}
.yb1{bottom:903.317333pt;}
.y40{bottom:914.578667pt;}
.y20{bottom:917.928000pt;}
.y3f{bottom:936.616000pt;}
.y1f{bottom:945.388000pt;}
.h15{height:14.824448pt;}
.h3{height:37.193707pt;}
.h4{height:39.850400pt;}
.h11{height:40.727307pt;}
.h8{height:43.636400pt;}
.hd{height:44.632747pt;}
.h6{height:45.464294pt;}
.h2{height:45.525402pt;}
.h14{height:46.789015pt;}
.h16{height:51.034402pt;}
.h17{height:51.039735pt;}
.h7{height:53.559147pt;}
.hf{height:53.946402pt;}
.h10{height:53.951735pt;}
.h13{height:58.441733pt;}
.h1{height:64.454458pt;}
.h12{height:68.330402pt;}
.h5{height:81.416709pt;}
.ha{height:82.996400pt;}
.h18{height:83.001733pt;}
.hc{height:83.545733pt;}
.h9{height:90.394402pt;}
.hb{height:124.273941pt;}
.he{height:128.506216pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:96.000000pt;}
.x25{left:113.777333pt;}
.xd{left:118.581333pt;}
.x7{left:132.364000pt;}
.x23{left:147.045333pt;}
.x26{left:149.860000pt;}
.x6{left:152.289333pt;}
.x1{left:199.314667pt;}
.x21{left:202.173333pt;}
.x20{left:219.494667pt;}
.x28{left:221.100000pt;}
.x24{left:222.709333pt;}
.x27{left:227.212000pt;}
.x9{left:247.864000pt;}
.x2{left:256.165333pt;}
.x1b{left:257.984000pt;}
.x2f{left:294.232000pt;}
.x30{left:296.376000pt;}
.x13{left:300.198667pt;}
.x29{left:306.084000pt;}
.x16{left:308.441333pt;}
.x2e{left:311.494667pt;}
.x10{left:318.012000pt;}
.x1d{left:319.666667pt;}
.xa{left:323.776000pt;}
.x3{left:325.540000pt;}
.x2b{left:327.369333pt;}
.x1c{left:339.328000pt;}
.x15{left:340.842667pt;}
.x12{left:342.582667pt;}
.x4{left:347.412000pt;}
.x2a{left:350.777333pt;}
.x18{left:351.757333pt;}
.xe{left:360.902667pt;}
.x2d{left:365.561333pt;}
.x11{left:367.101333pt;}
.xb{left:370.372000pt;}
.x1e{left:375.694667pt;}
.x17{left:377.004000pt;}
.x5{left:378.776000pt;}
.x22{left:389.077333pt;}
.xc{left:400.900000pt;}
.x19{left:402.176000pt;}
.x14{left:404.364000pt;}
.xf{left:405.596000pt;}
.x2c{left:417.297333pt;}
.x1a{left:419.124000pt;}
.x1f{left:420.400000pt;}
}




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