
    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_6d5b54e5a479eee557c46e83.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910000;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_c83b73b4322267c6e3b78e2a.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_0982b37ed03995b7a85cfa55.woff')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_2e9faf1c94b840819fc710fe.woff')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_5bfc4a7625e50d1e1a19635e.woff')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_506b995e6cf9e489c03af560.woff')format("woff");}.ff6{font-family:ff6;line-height:0.888000;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_419ada03bbd7c4872963d2c1.woff')format("woff");}.ff7{font-family:ff7;line-height:0.580000;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_342549fd7d561d9a88351281.woff')format("woff");}.ff8{font-family:ff8;line-height:0.704000;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_a5eded7643d8da19676a0e5e.woff')format("woff");}.ff9{font-family:ff9;line-height:0.888000;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_a4685fbfeae6ac3057791e5a.woff')format("woff");}.ffa{font-family:ffa;line-height:0.704000;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_16ca122ea5221aa3543de472.woff')format("woff");}.ffb{font-family:ffb;line-height:0.907000;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_ded4ad893fa95f09fa1bbdc5.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_981d76f0aef40f64fb50fa43.woff')format("woff");}.ffd{font-family:ffd;line-height:0.046000;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_804e17900fbae1d2b5e9a89a.woff')format("woff");}.ffe{font-family:ffe;line-height:0.705000;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_153a3fab907192f4c8cb376d.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fb0e9ba4b0baac69705d5124.woff')format("woff");}.ff10{font-family:ff10;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;}
@font-face{font-family:ff11;src:url('chunks/assets/font_c1b981bdc1de8b7440b430e9.woff')format("woff");}.ff11{font-family:ff11;line-height:0.056000;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_058dab756616ab84877350da.woff')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_40d1d3e423effbf4260e9de0.woff')format("woff");}.ff13{font-family:ff13;line-height:0.930000;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_bd85e4995cf3a86544b73f0f.woff')format("woff");}.ff14{font-family:ff14;line-height:0.052000;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);}
.v16{vertical-align:-28.672200px;}
.v1b{vertical-align:-24.434100px;}
.v15{vertical-align:-22.496100px;}
.v1f{vertical-align:-11.082300px;}
.v2{vertical-align:-9.822000px;}
.v8{vertical-align:-6.176100px;}
.v1{vertical-align:-4.566000px;}
.v0{vertical-align:0.000000px;}
.vf{vertical-align:3.988200px;}
.v11{vertical-align:5.079600px;}
.v9{vertical-align:6.176100px;}
.vc{vertical-align:8.007000px;}
.v10{vertical-align:9.144300px;}
.ve{vertical-align:10.164300px;}
.vb{vertical-align:13.091700px;}
.v18{vertical-align:14.784900px;}
.v4{vertical-align:16.362000px;}
.v12{vertical-align:22.123800px;}
.v19{vertical-align:23.587500px;}
.v1a{vertical-align:24.673800px;}
.vd{vertical-align:25.882500px;}
.v5{vertical-align:27.024000px;}
.v3{vertical-align:30.162000px;}
.v17{vertical-align:33.578400px;}
.v14{vertical-align:35.587800px;}
.va{vertical-align:37.520700px;}
.v1c{vertical-align:42.722700px;}
.v13{vertical-align:46.665000px;}
.v1e{vertical-align:59.710800px;}
.v1d{vertical-align:69.048900px;}
.v7{vertical-align:75.978000px;}
.v6{vertical-align:92.292000px;}
.ls0{letter-spacing:0.000000px;}
.ls2d{letter-spacing:0.000106px;}
.ls6{letter-spacing:0.000141px;}
.ls2a{letter-spacing:0.000284px;}
.ls2c{letter-spacing:0.000336px;}
.ls54{letter-spacing:0.001023px;}
.ls3b{letter-spacing:0.001089px;}
.ls22{letter-spacing:0.001603px;}
.lsb{letter-spacing:0.001608px;}
.ls25{letter-spacing:0.001872px;}
.ls1e{letter-spacing:0.002149px;}
.ls42{letter-spacing:0.002220px;}
.ls28{letter-spacing:0.002272px;}
.ls8{letter-spacing:0.002915px;}
.ls1b{letter-spacing:0.003056px;}
.ls18{letter-spacing:0.003252px;}
.ls34{letter-spacing:0.003512px;}
.ls27{letter-spacing:0.003864px;}
.ls53{letter-spacing:0.003907px;}
.ls24{letter-spacing:0.004869px;}
.ls15{letter-spacing:0.004872px;}
.ls49{letter-spacing:0.005206px;}
.ls5{letter-spacing:0.005976px;}
.ls11{letter-spacing:0.007603px;}
.ls3f{letter-spacing:0.508412px;}
.ls29{letter-spacing:0.986456px;}
.ls20{letter-spacing:1.159608px;}
.ls26{letter-spacing:1.798643px;}
.ls3e{letter-spacing:1.803743px;}
.ls44{letter-spacing:1.971684px;}
.ls31{letter-spacing:1.976784px;}
.ls55{letter-spacing:2.786472px;}
.ls2e{letter-spacing:2.791572px;}
.ls1c{letter-spacing:2.984915px;}
.ls13{letter-spacing:3.383236px;}
.ls9{letter-spacing:3.389236px;}
.ls2b{letter-spacing:4.338443px;}
.ls47{letter-spacing:4.343543px;}
.ls4b{letter-spacing:6.095723px;}
.ls56{letter-spacing:6.099718px;}
.ls37{letter-spacing:6.100823px;}
.lsc{letter-spacing:6.371236px;}
.ls4{letter-spacing:6.377236px;}
.ls32{letter-spacing:6.489472px;}
.ls4d{letter-spacing:6.491900px;}
.ls48{letter-spacing:6.494572px;}
.ls39{letter-spacing:7.584098px;}
.ls4f{letter-spacing:7.589198px;}
.ls30{letter-spacing:8.652513px;}
.ls51{letter-spacing:8.654132px;}
.ls3d{letter-spacing:8.655268px;}
.ls45{letter-spacing:8.656299px;}
.ls52{letter-spacing:8.657613px;}
.ls46{letter-spacing:8.660368px;}
.ls3c{letter-spacing:9.849291px;}
.ls38{letter-spacing:9.854391px;}
.ls4e{letter-spacing:10.817668px;}
.ls14{letter-spacing:10.906332px;}
.lsf{letter-spacing:10.907972px;}
.ls43{letter-spacing:12.589751px;}
.ls10{letter-spacing:12.733611px;}
.ls35{letter-spacing:12.998243px;}
.ls1a{letter-spacing:13.258878px;}
.ls12{letter-spacing:14.368878px;}
.lse{letter-spacing:14.543412px;}
.ls23{letter-spacing:14.543978px;}
.ls1d{letter-spacing:14.545603px;}
.ls4c{letter-spacing:16.917268px;}
.ls36{letter-spacing:17.648913px;}
.ls1f{letter-spacing:18.133536px;}
.ls17{letter-spacing:18.179412px;}
.ls3{letter-spacing:18.179418px;}
.ls19{letter-spacing:18.185412px;}
.ls33{letter-spacing:18.781643px;}
.ls4a{letter-spacing:18.786743px;}
.ls3a{letter-spacing:19.841668px;}
.lsd{letter-spacing:20.921236px;}
.lsa{letter-spacing:21.812712px;}
.ls7{letter-spacing:21.818712px;}
.ls2{letter-spacing:22.912344px;}
.ls16{letter-spacing:24.557236px;}
.ls2f{letter-spacing:27.441443px;}
.ls50{letter-spacing:29.339107px;}
.ls1{letter-spacing:46.592915px;}
.ls41{letter-spacing:51.852268px;}
.ls40{letter-spacing:60.418043px;}
.ls21{letter-spacing:75.005236px;}
.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;}
}
.ws27{word-spacing:-27.687167px;}
.ws1{word-spacing:-19.823579px;}
.wsb{word-spacing:-15.637104px;}
.wsf{word-spacing:-12.122522px;}
.ws5{word-spacing:-9.091930px;}
.ws2b{word-spacing:-7.728140px;}
.ws26{word-spacing:-6.440074px;}
.ws15{word-spacing:-4.734600px;}
.ws11{word-spacing:-4.732434px;}
.ws17{word-spacing:-4.728600px;}
.ws14{word-spacing:-4.706186px;}
.ws13{word-spacing:-1.099194px;}
.wse{word-spacing:-0.065455px;}
.ws1f{word-spacing:-0.047821px;}
.ws6{word-spacing:-0.035866px;}
.ws24{word-spacing:-0.030486px;}
.ws21{word-spacing:-0.025405px;}
.ws7{word-spacing:0.000000px;}
.ws23{word-spacing:0.924672px;}
.ws28{word-spacing:0.927360px;}
.ws25{word-spacing:0.929772px;}
.ws2c{word-spacing:0.929816px;}
.ws10{word-spacing:2.559275px;}
.ws4{word-spacing:3.604493px;}
.ws2a{word-spacing:4.758960px;}
.ws3{word-spacing:4.805970px;}
.ws2f{word-spacing:5.112004px;}
.ws12{word-spacing:5.409449px;}
.ws16{word-spacing:5.415449px;}
.wsa{word-spacing:5.624884px;}
.ws2e{word-spacing:5.897459px;}
.ws8{word-spacing:6.159278px;}
.ws9{word-spacing:6.224732px;}
.ws29{word-spacing:6.905350px;}
.ws20{word-spacing:6.921360px;}
.ws2d{word-spacing:7.131243px;}
.ws0{word-spacing:8.237588px;}
.ws1a{word-spacing:8.323665px;}
.ws19{word-spacing:9.045449px;}
.ws1d{word-spacing:9.051449px;}
.ws1b{word-spacing:12.681449px;}
.ws22{word-spacing:13.392550px;}
.ws18{word-spacing:13.424738px;}
.ws2{word-spacing:18.345254px;}
.wsc{word-spacing:21.730927px;}
.ws1e{word-spacing:21.758533px;}
.ws1c{word-spacing:22.785723px;}
.wsd{word-spacing:49.815165px;}
._5{margin-left:-18.004531px;}
._a{margin-left:-5.432732px;}
._1{margin-left:-2.324084px;}
._2{margin-left:-1.040102px;}
._3{width:1.040102px;}
._6{width:2.976845px;}
._8{width:10.882551px;}
._4{width:17.000294px;}
._7{width:29.618653px;}
._0{width:37.529659px;}
._9{width:65.483890px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:25.404630px;}
.fs6{font-size:30.485760px;}
.fs3{font-size:35.865600px;}
.fs2{font-size:47.820600px;}
.fs1{font-size:53.798400px;}
.fs5{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.yf{bottom:3.985500px;}
.y6f{bottom:55.332000px;}
.ye{bottom:55.825500px;}
.y24{bottom:59.277000px;}
.yd{bottom:70.021500px;}
.y6e{bottom:75.655500px;}
.y23{bottom:79.600500px;}
.yc{bottom:84.219000px;}
.yb{bottom:98.415000px;}
.y6d{bottom:100.462500px;}
.y22{bottom:104.407500px;}
.ya{bottom:112.612500px;}
.y6c{bottom:120.786000px;}
.y2b{bottom:126.741000px;}
.y9{bottom:126.808500px;}
.y60{bottom:128.497500px;}
.y21{bottom:129.214500px;}
.y2a{bottom:130.786500px;}
.y3f{bottom:133.102500px;}
.y41{bottom:140.281500px;}
.y8{bottom:141.006000px;}
.y37{bottom:142.689000px;}
.y3d{bottom:144.327000px;}
.y6b{bottom:145.593000px;}
.y36{bottom:146.734500px;}
.y40{bottom:148.417500px;}
.y49{bottom:148.762500px;}
.y5f{bottom:153.304500px;}
.y20{bottom:154.021500px;}
.y7{bottom:155.202000px;}
.y3e{bottom:155.397000px;}
.y29{bottom:158.704500px;}
.y30{bottom:163.645500px;}
.y17{bottom:166.156500px;}
.y48{bottom:169.086000px;}
.y6{bottom:169.399500px;}
.y6a{bottom:170.400000px;}
.y1f{bottom:171.955500px;}
.y62{bottom:173.569500px;}
.y57{bottom:175.463400px;}
.y5e{bottom:178.111500px;}
.y58{bottom:179.503875px;}
.y56{bottom:182.044950px;}
.y35{bottom:183.496500px;}
.y28{bottom:183.511500px;}
.y5{bottom:183.595500px;}
.y43{bottom:183.970500px;}
.y59{bottom:188.238900px;}
.y2f{bottom:188.452500px;}
.y1e{bottom:189.888000px;}
.y69{bottom:190.725000px;}
.y16{bottom:192.105000px;}
.y3c{bottom:192.738000px;}
.y47{bottom:193.893000px;}
.y4{bottom:202.911000px;}
.y5d{bottom:202.918500px;}
.y53{bottom:204.627750px;}
.y34{bottom:208.303500px;}
.y27{bottom:208.318500px;}
.y42{bottom:208.777500px;}
.y15{bottom:210.037500px;}
.y1d{bottom:210.808500px;}
.y52{bottom:211.209300px;}
.y2e{bottom:213.259500px;}
.y46{bottom:214.216500px;}
.y55{bottom:214.863450px;}
.y68{bottom:215.532000px;}
.y54{bottom:217.403250px;}
.y3b{bottom:217.545000px;}
.y61{bottom:218.700000px;}
.y5c{bottom:227.725500px;}
.y14{bottom:229.818000px;}
.y4f{bottom:232.639500px;}
.y33{bottom:233.110500px;}
.y26{bottom:233.125500px;}
.y1c{bottom:233.224500px;}
.y50{bottom:233.426175px;}
.y2d{bottom:233.584500px;}
.y67{bottom:235.855500px;}
.y4e{bottom:235.911150px;}
.y3a{bottom:237.868500px;}
.y51{bottom:238.901025px;}
.y45{bottom:239.023500px;}
.y4a{bottom:245.337225px;}
.y4c{bottom:250.219200px;}
.y4d{bottom:250.951050px;}
.y13{bottom:252.234000px;}
.y5b{bottom:252.532500px;}
.y32{bottom:253.434000px;}
.y1b{bottom:253.549500px;}
.y4b{bottom:256.482000px;}
.y2c{bottom:258.391500px;}
.y66{bottom:260.662500px;}
.y3{bottom:261.922500px;}
.y39{bottom:262.675500px;}
.y44{bottom:263.830500px;}
.y5a{bottom:277.339500px;}
.y31{bottom:278.241000px;}
.y1a{bottom:278.356500px;}
.y65{bottom:280.986000px;}
.y12{bottom:282.882000px;}
.y38{bottom:287.482500px;}
.y2{bottom:288.820500px;}
.y25{bottom:290.211000px;}
.y19{bottom:303.163500px;}
.y64{bottom:305.793000px;}
.y11{bottom:307.689000px;}
.y1{bottom:315.720000px;}
.y18{bottom:323.487000px;}
.y63{bottom:326.116500px;}
.y10{bottom:384.681000px;}
.h28{height:17.630813px;}
.h1c{height:18.189715px;}
.h13{height:19.053473px;}
.h21{height:21.797318px;}
.h12{height:22.864320px;}
.h6{height:24.890726px;}
.h5{height:26.899200px;}
.h22{height:30.980515px;}
.h25{height:31.321417px;}
.h23{height:33.023520px;}
.hd{height:33.187496px;}
.h27{height:34.384073px;}
.h18{height:35.072202px;}
.h4{height:35.865450px;}
.h3{height:37.927872px;}
.h1f{height:40.089115px;}
.h8{height:40.265700px;}
.h16{height:40.313515px;}
.h1b{height:40.952873px;}
.h1d{height:41.777215px;}
.h1a{height:43.727273px;}
.h14{height:44.072215px;}
.h9{height:44.831700px;}
.h1e{height:45.012102px;}
.h15{height:45.231402px;}
.h10{height:45.425492px;}
.hf{height:46.210948px;}
.h20{height:46.573118px;}
.h7{height:49.090950px;}
.h19{height:53.777515px;}
.h17{height:54.641273px;}
.h2{height:60.684426px;}
.hc{height:62.392948px;}
.hb{height:62.889450px;}
.ha{height:65.452950px;}
.h26{height:76.156315px;}
.h24{height:77.900515px;}
.he{height:94.910184px;}
.h11{height:110.121908px;}
.h1{height:408.000000px;}
.h0{height:408.189000px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.xd{left:12.756000px;}
.x2d{left:15.197025px;}
.x1f{left:17.180925px;}
.x11{left:42.519000px;}
.x12{left:47.202000px;}
.x2e{left:48.366150px;}
.x2f{left:58.955025px;}
.x31{left:60.179025px;}
.x8{left:61.267500px;}
.x1{left:64.950000px;}
.x6{left:71.277000px;}
.xe{left:75.247500px;}
.xf{left:89.974500px;}
.x14{left:91.974000px;}
.x13{left:95.610000px;}
.x30{left:104.427900px;}
.x10{left:107.974500px;}
.x21{left:140.558850px;}
.x25{left:145.110600px;}
.x32{left:147.832725px;}
.x20{left:149.834475px;}
.x3{left:162.828000px;}
.x5{left:167.791500px;}
.x33{left:175.861050px;}
.x4{left:176.955000px;}
.x9{left:183.801000px;}
.x34{left:194.354925px;}
.xa{left:197.919000px;}
.x17{left:203.871000px;}
.x26{left:209.647275px;}
.x7{left:233.356500px;}
.x27{left:237.174525px;}
.xb{left:238.782000px;}
.x2{left:241.933500px;}
.x22{left:245.451825px;}
.x29{left:262.147950px;}
.x15{left:263.503500px;}
.x28{left:267.276000px;}
.x16{left:271.957500px;}
.x1a{left:286.296000px;}
.x1b{left:307.767000px;}
.x18{left:341.316000px;}
.x19{left:349.770000px;}
.x23{left:362.578425px;}
.x1c{left:369.532500px;}
.x1d{left:377.377500px;}
.x24{left:390.605475px;}
.x2a{left:415.285650px;}
.x2b{left:472.821300px;}
.x2c{left:500.849625px;}
.x1e{left:512.464500px;}
.xc{left:517.228500px;}
@media print{
.v16{vertical-align:-25.486400pt;}
.v1b{vertical-align:-21.719200pt;}
.v15{vertical-align:-19.996533pt;}
.v1f{vertical-align:-9.850933pt;}
.v2{vertical-align:-8.730667pt;}
.v8{vertical-align:-5.489867pt;}
.v1{vertical-align:-4.058667pt;}
.v0{vertical-align:0.000000pt;}
.vf{vertical-align:3.545067pt;}
.v11{vertical-align:4.515200pt;}
.v9{vertical-align:5.489867pt;}
.vc{vertical-align:7.117333pt;}
.v10{vertical-align:8.128267pt;}
.ve{vertical-align:9.034933pt;}
.vb{vertical-align:11.637067pt;}
.v18{vertical-align:13.142133pt;}
.v4{vertical-align:14.544000pt;}
.v12{vertical-align:19.665600pt;}
.v19{vertical-align:20.966667pt;}
.v1a{vertical-align:21.932267pt;}
.vd{vertical-align:23.006667pt;}
.v5{vertical-align:24.021333pt;}
.v3{vertical-align:26.810667pt;}
.v17{vertical-align:29.847467pt;}
.v14{vertical-align:31.633600pt;}
.va{vertical-align:33.351733pt;}
.v1c{vertical-align:37.975733pt;}
.v13{vertical-align:41.480000pt;}
.v1e{vertical-align:53.076267pt;}
.v1d{vertical-align:61.376800pt;}
.v7{vertical-align:67.536000pt;}
.v6{vertical-align:82.037333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2d{letter-spacing:0.000094pt;}
.ls6{letter-spacing:0.000125pt;}
.ls2a{letter-spacing:0.000252pt;}
.ls2c{letter-spacing:0.000299pt;}
.ls54{letter-spacing:0.000910pt;}
.ls3b{letter-spacing:0.000968pt;}
.ls22{letter-spacing:0.001425pt;}
.lsb{letter-spacing:0.001429pt;}
.ls25{letter-spacing:0.001664pt;}
.ls1e{letter-spacing:0.001911pt;}
.ls42{letter-spacing:0.001973pt;}
.ls28{letter-spacing:0.002019pt;}
.ls8{letter-spacing:0.002591pt;}
.ls1b{letter-spacing:0.002717pt;}
.ls18{letter-spacing:0.002891pt;}
.ls34{letter-spacing:0.003122pt;}
.ls27{letter-spacing:0.003435pt;}
.ls53{letter-spacing:0.003473pt;}
.ls24{letter-spacing:0.004328pt;}
.ls15{letter-spacing:0.004331pt;}
.ls49{letter-spacing:0.004628pt;}
.ls5{letter-spacing:0.005312pt;}
.ls11{letter-spacing:0.006759pt;}
.ls3f{letter-spacing:0.451922pt;}
.ls29{letter-spacing:0.876850pt;}
.ls20{letter-spacing:1.030763pt;}
.ls26{letter-spacing:1.598794pt;}
.ls3e{letter-spacing:1.603328pt;}
.ls44{letter-spacing:1.752608pt;}
.ls31{letter-spacing:1.757142pt;}
.ls55{letter-spacing:2.476864pt;}
.ls2e{letter-spacing:2.481397pt;}
.ls1c{letter-spacing:2.653258pt;}
.ls13{letter-spacing:3.007321pt;}
.ls9{letter-spacing:3.012654pt;}
.ls2b{letter-spacing:3.856394pt;}
.ls47{letter-spacing:3.860928pt;}
.ls4b{letter-spacing:5.418420pt;}
.ls56{letter-spacing:5.421971pt;}
.ls37{letter-spacing:5.422954pt;}
.lsc{letter-spacing:5.663321pt;}
.ls4{letter-spacing:5.668654pt;}
.ls32{letter-spacing:5.768419pt;}
.ls4d{letter-spacing:5.770578pt;}
.ls48{letter-spacing:5.772953pt;}
.ls39{letter-spacing:6.741421pt;}
.ls4f{letter-spacing:6.745954pt;}
.ls30{letter-spacing:7.691123pt;}
.ls51{letter-spacing:7.692562pt;}
.ls3d{letter-spacing:7.693571pt;}
.ls45{letter-spacing:7.694488pt;}
.ls52{letter-spacing:7.695656pt;}
.ls46{letter-spacing:7.698105pt;}
.ls3c{letter-spacing:8.754925pt;}
.ls38{letter-spacing:8.759459pt;}
.ls4e{letter-spacing:9.615705pt;}
.ls14{letter-spacing:9.694517pt;}
.lsf{letter-spacing:9.695975pt;}
.ls43{letter-spacing:11.190890pt;}
.ls10{letter-spacing:11.318765pt;}
.ls35{letter-spacing:11.553994pt;}
.ls1a{letter-spacing:11.785669pt;}
.ls12{letter-spacing:12.772336pt;}
.lse{letter-spacing:12.927477pt;}
.ls23{letter-spacing:12.927980pt;}
.ls1d{letter-spacing:12.929425pt;}
.ls4c{letter-spacing:15.037571pt;}
.ls36{letter-spacing:15.687923pt;}
.ls1f{letter-spacing:16.118699pt;}
.ls17{letter-spacing:16.159477pt;}
.ls3{letter-spacing:16.159483pt;}
.ls19{letter-spacing:16.164811pt;}
.ls33{letter-spacing:16.694794pt;}
.ls4a{letter-spacing:16.699328pt;}
.ls3a{letter-spacing:17.637039pt;}
.lsd{letter-spacing:18.596654pt;}
.lsa{letter-spacing:19.389077pt;}
.ls7{letter-spacing:19.394411pt;}
.ls2{letter-spacing:20.366528pt;}
.ls16{letter-spacing:21.828654pt;}
.ls2f{letter-spacing:24.392394pt;}
.ls50{letter-spacing:26.079206pt;}
.ls1{letter-spacing:41.415925pt;}
.ls41{letter-spacing:46.090905pt;}
.ls40{letter-spacing:53.704928pt;}
.ls21{letter-spacing:66.671321pt;}
.ws27{word-spacing:-24.610815pt;}
.ws1{word-spacing:-17.620959pt;}
.wsb{word-spacing:-13.899648pt;}
.wsf{word-spacing:-10.775575pt;}
.ws5{word-spacing:-8.081715pt;}
.ws2b{word-spacing:-6.869458pt;}
.ws26{word-spacing:-5.724510pt;}
.ws15{word-spacing:-4.208533pt;}
.ws11{word-spacing:-4.206608pt;}
.ws17{word-spacing:-4.203200pt;}
.ws14{word-spacing:-4.183276pt;}
.ws13{word-spacing:-0.977061pt;}
.wse{word-spacing:-0.058182pt;}
.ws1f{word-spacing:-0.042507pt;}
.ws6{word-spacing:-0.031881pt;}
.ws24{word-spacing:-0.027098pt;}
.ws21{word-spacing:-0.022582pt;}
.ws7{word-spacing:0.000000pt;}
.ws23{word-spacing:0.821930pt;}
.ws28{word-spacing:0.824320pt;}
.ws25{word-spacing:0.826464pt;}
.ws2c{word-spacing:0.826503pt;}
.ws10{word-spacing:2.274911pt;}
.ws4{word-spacing:3.203994pt;}
.ws2a{word-spacing:4.230187pt;}
.ws3{word-spacing:4.271974pt;}
.ws2f{word-spacing:4.544004pt;}
.ws12{word-spacing:4.808399pt;}
.ws16{word-spacing:4.813733pt;}
.wsa{word-spacing:4.999897pt;}
.ws2e{word-spacing:5.242186pt;}
.ws8{word-spacing:5.474914pt;}
.ws9{word-spacing:5.533096pt;}
.ws29{word-spacing:6.138089pt;}
.ws20{word-spacing:6.152320pt;}
.ws2d{word-spacing:6.338882pt;}
.ws0{word-spacing:7.322300pt;}
.ws1a{word-spacing:7.398814pt;}
.ws19{word-spacing:8.040399pt;}
.ws1d{word-spacing:8.045733pt;}
.ws1b{word-spacing:11.272399pt;}
.ws22{word-spacing:11.904489pt;}
.ws18{word-spacing:11.933101pt;}
.ws2{word-spacing:16.306893pt;}
.wsc{word-spacing:19.316380pt;}
.ws1e{word-spacing:19.340918pt;}
.ws1c{word-spacing:20.253976pt;}
.wsd{word-spacing:44.280147pt;}
._5{margin-left:-16.004028pt;}
._a{margin-left:-4.829095pt;}
._1{margin-left:-2.065853pt;}
._2{margin-left:-0.924535pt;}
._3{width:0.924535pt;}
._6{width:2.646084pt;}
._8{width:9.673379pt;}
._4{width:15.111373pt;}
._7{width:26.327691pt;}
._0{width:33.359697pt;}
._9{width:58.207902pt;}
.fs7{font-size:22.581893pt;}
.fs6{font-size:27.098453pt;}
.fs3{font-size:31.880533pt;}
.fs2{font-size:42.507200pt;}
.fs1{font-size:47.820800pt;}
.fs5{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:3.542667pt;}
.y6f{bottom:49.184000pt;}
.ye{bottom:49.622667pt;}
.y24{bottom:52.690667pt;}
.yd{bottom:62.241333pt;}
.y6e{bottom:67.249333pt;}
.y23{bottom:70.756000pt;}
.yc{bottom:74.861333pt;}
.yb{bottom:87.480000pt;}
.y6d{bottom:89.300000pt;}
.y22{bottom:92.806667pt;}
.ya{bottom:100.100000pt;}
.y6c{bottom:107.365333pt;}
.y2b{bottom:112.658667pt;}
.y9{bottom:112.718667pt;}
.y60{bottom:114.220000pt;}
.y21{bottom:114.857333pt;}
.y2a{bottom:116.254667pt;}
.y3f{bottom:118.313333pt;}
.y41{bottom:124.694667pt;}
.y8{bottom:125.338667pt;}
.y37{bottom:126.834667pt;}
.y3d{bottom:128.290667pt;}
.y6b{bottom:129.416000pt;}
.y36{bottom:130.430667pt;}
.y40{bottom:131.926667pt;}
.y49{bottom:132.233333pt;}
.y5f{bottom:136.270667pt;}
.y20{bottom:136.908000pt;}
.y7{bottom:137.957333pt;}
.y3e{bottom:138.130667pt;}
.y29{bottom:141.070667pt;}
.y30{bottom:145.462667pt;}
.y17{bottom:147.694667pt;}
.y48{bottom:150.298667pt;}
.y6{bottom:150.577333pt;}
.y6a{bottom:151.466667pt;}
.y1f{bottom:152.849333pt;}
.y62{bottom:154.284000pt;}
.y57{bottom:155.967467pt;}
.y5e{bottom:158.321333pt;}
.y58{bottom:159.559000pt;}
.y56{bottom:161.817733pt;}
.y35{bottom:163.108000pt;}
.y28{bottom:163.121333pt;}
.y5{bottom:163.196000pt;}
.y43{bottom:163.529333pt;}
.y59{bottom:167.323467pt;}
.y2f{bottom:167.513333pt;}
.y1e{bottom:168.789333pt;}
.y69{bottom:169.533333pt;}
.y16{bottom:170.760000pt;}
.y3c{bottom:171.322667pt;}
.y47{bottom:172.349333pt;}
.y4{bottom:180.365333pt;}
.y5d{bottom:180.372000pt;}
.y53{bottom:181.891333pt;}
.y34{bottom:185.158667pt;}
.y27{bottom:185.172000pt;}
.y42{bottom:185.580000pt;}
.y15{bottom:186.700000pt;}
.y1d{bottom:187.385333pt;}
.y52{bottom:187.741600pt;}
.y2e{bottom:189.564000pt;}
.y46{bottom:190.414667pt;}
.y55{bottom:190.989733pt;}
.y68{bottom:191.584000pt;}
.y54{bottom:193.247333pt;}
.y3b{bottom:193.373333pt;}
.y61{bottom:194.400000pt;}
.y5c{bottom:202.422667pt;}
.y14{bottom:204.282667pt;}
.y4f{bottom:206.790667pt;}
.y33{bottom:207.209333pt;}
.y26{bottom:207.222667pt;}
.y1c{bottom:207.310667pt;}
.y50{bottom:207.489933pt;}
.y2d{bottom:207.630667pt;}
.y67{bottom:209.649333pt;}
.y4e{bottom:209.698800pt;}
.y3a{bottom:211.438667pt;}
.y51{bottom:212.356467pt;}
.y45{bottom:212.465333pt;}
.y4a{bottom:218.077533pt;}
.y4c{bottom:222.417067pt;}
.y4d{bottom:223.067600pt;}
.y13{bottom:224.208000pt;}
.y5b{bottom:224.473333pt;}
.y32{bottom:225.274667pt;}
.y1b{bottom:225.377333pt;}
.y4b{bottom:227.984000pt;}
.y2c{bottom:229.681333pt;}
.y66{bottom:231.700000pt;}
.y3{bottom:232.820000pt;}
.y39{bottom:233.489333pt;}
.y44{bottom:234.516000pt;}
.y5a{bottom:246.524000pt;}
.y31{bottom:247.325333pt;}
.y1a{bottom:247.428000pt;}
.y65{bottom:249.765333pt;}
.y12{bottom:251.450667pt;}
.y38{bottom:255.540000pt;}
.y2{bottom:256.729333pt;}
.y25{bottom:257.965333pt;}
.y19{bottom:269.478667pt;}
.y64{bottom:271.816000pt;}
.y11{bottom:273.501333pt;}
.y1{bottom:280.640000pt;}
.y18{bottom:287.544000pt;}
.y63{bottom:289.881333pt;}
.y10{bottom:341.938667pt;}
.h28{height:15.671834pt;}
.h1c{height:16.168636pt;}
.h13{height:16.936420pt;}
.h21{height:19.375394pt;}
.h12{height:20.323840pt;}
.h6{height:22.125090pt;}
.h5{height:23.910400pt;}
.h22{height:27.538236pt;}
.h25{height:27.841260pt;}
.h23{height:29.354240pt;}
.hd{height:29.499997pt;}
.h27{height:30.563620pt;}
.h18{height:31.175291pt;}
.h4{height:31.880400pt;}
.h3{height:33.713664pt;}
.h1f{height:35.634769pt;}
.h8{height:35.791733pt;}
.h16{height:35.834236pt;}
.h1b{height:36.402553pt;}
.h1d{height:37.135302pt;}
.h1a{height:38.868687pt;}
.h14{height:39.175302pt;}
.h9{height:39.850400pt;}
.h1e{height:40.010758pt;}
.h15{height:40.205691pt;}
.h10{height:40.378215pt;}
.hf{height:41.076398pt;}
.h20{height:41.398327pt;}
.h7{height:43.636400pt;}
.h19{height:47.802236pt;}
.h17{height:48.570020pt;}
.h2{height:53.941712pt;}
.hc{height:55.460398pt;}
.hb{height:55.901733pt;}
.ha{height:58.180400pt;}
.h26{height:67.694502pt;}
.h24{height:69.244902pt;}
.he{height:84.364608pt;}
.h11{height:97.886141pt;}
.h1{height:362.666667pt;}
.h0{height:362.834667pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.xd{left:11.338667pt;}
.x2d{left:13.508467pt;}
.x1f{left:15.271933pt;}
.x11{left:37.794667pt;}
.x12{left:41.957333pt;}
.x2e{left:42.992133pt;}
.x2f{left:52.404467pt;}
.x31{left:53.492467pt;}
.x8{left:54.460000pt;}
.x1{left:57.733333pt;}
.x6{left:63.357333pt;}
.xe{left:66.886667pt;}
.xf{left:79.977333pt;}
.x14{left:81.754667pt;}
.x13{left:84.986667pt;}
.x30{left:92.824800pt;}
.x10{left:95.977333pt;}
.x21{left:124.941200pt;}
.x25{left:128.987200pt;}
.x32{left:131.406867pt;}
.x20{left:133.186200pt;}
.x3{left:144.736000pt;}
.x5{left:149.148000pt;}
.x33{left:156.320933pt;}
.x4{left:157.293333pt;}
.x9{left:163.378667pt;}
.x34{left:172.759933pt;}
.xa{left:175.928000pt;}
.x17{left:181.218667pt;}
.x26{left:186.353133pt;}
.x7{left:207.428000pt;}
.x27{left:210.821800pt;}
.xb{left:212.250667pt;}
.x2{left:215.052000pt;}
.x22{left:218.179400pt;}
.x29{left:233.020400pt;}
.x15{left:234.225333pt;}
.x28{left:237.578667pt;}
.x16{left:241.740000pt;}
.x1a{left:254.485333pt;}
.x1b{left:273.570667pt;}
.x18{left:303.392000pt;}
.x19{left:310.906667pt;}
.x23{left:322.291933pt;}
.x1c{left:328.473333pt;}
.x1d{left:335.446667pt;}
.x24{left:347.204867pt;}
.x2a{left:369.142800pt;}
.x2b{left:420.285600pt;}
.x2c{left:445.199667pt;}
.x1e{left:455.524000pt;}
.xc{left:459.758667pt;}
}




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