
    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_cf0555cb8556179a6325b76e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_a7c28706ee48457ecc57c487.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927000;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_a7c28706ee48457ecc57c487.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.927000;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_9ccb0c1dbe6127b66091e5b2.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.742000;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_dd3f1341680e833b65fe96c2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;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_8eb050a2cec1c48a0c973293.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.931000;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_1dd87e91b11837ac104c1ad9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_e47cf34697140d5728189fb1.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.084961;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_45a1c39ae23764ef518d3d88.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.070312;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_985a31655195e615307968e6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_e0b755457319d622dc579c31.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.575000;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_0775820e0896077139acf4da.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.575000;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_b07858cd56c45f89402aaf88.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;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_ce03e3308cc451c728bd378e.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.938477;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_87ae37f35950a36aae413585.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.592000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.747760px;}
.ls5b{letter-spacing:-2.031840px;}
.ls52{letter-spacing:-1.314000px;}
.ls5a{letter-spacing:-1.194000px;}
.ls59{letter-spacing:-0.774000px;}
.ls56{letter-spacing:-0.660000px;}
.ls55{letter-spacing:-0.600000px;}
.ls10{letter-spacing:-0.486000px;}
.ls20{letter-spacing:-0.478080px;}
.ls3e{letter-spacing:-0.385920px;}
.lsc{letter-spacing:-0.336960px;}
.ls1e{letter-spacing:-0.298800px;}
.ls5d{letter-spacing:-0.270000px;}
.ls32{letter-spacing:-0.239040px;}
.lsa{letter-spacing:-0.216000px;}
.ls5c{letter-spacing:-0.162000px;}
.ls18{letter-spacing:-0.119520px;}
.ls30{letter-spacing:-0.108000px;}
.ls1f{letter-spacing:-0.084240px;}
.lsd{letter-spacing:-0.072000px;}
.ls51{letter-spacing:-0.066240px;}
.ls57{letter-spacing:-0.060000px;}
.ls1d{letter-spacing:-0.059760px;}
.ls0{letter-spacing:0.000000px;}
.ls4d{letter-spacing:0.033120px;}
.ls53{letter-spacing:0.060000px;}
.ls28{letter-spacing:0.108000px;}
.ls50{letter-spacing:0.119520px;}
.ls4e{letter-spacing:0.120000px;}
.ls22{letter-spacing:0.143424px;}
.ls2e{letter-spacing:0.162000px;}
.ls4f{letter-spacing:0.179280px;}
.lsf{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.239040px;}
.ls58{letter-spacing:0.240000px;}
.ls3a{letter-spacing:0.280872px;}
.ls3f{letter-spacing:0.288000px;}
.ls16{letter-spacing:0.298800px;}
.ls12{letter-spacing:0.310752px;}
.ls42{letter-spacing:0.316728px;}
.ls3b{letter-spacing:0.322704px;}
.ls43{letter-spacing:0.328680px;}
.ls21{letter-spacing:0.334656px;}
.ls17{letter-spacing:0.336960px;}
.ls9{letter-spacing:0.337680px;}
.ls39{letter-spacing:0.340632px;}
.ls48{letter-spacing:0.352584px;}
.ls4c{letter-spacing:0.358560px;}
.ls41{letter-spacing:0.364536px;}
.ls45{letter-spacing:0.382464px;}
.ls36{letter-spacing:0.406368px;}
.lse{letter-spacing:0.418320px;}
.lsb{letter-spacing:0.421200px;}
.ls40{letter-spacing:0.478080px;}
.ls38{letter-spacing:0.507960px;}
.ls46{letter-spacing:0.567720px;}
.ls37{letter-spacing:0.585648px;}
.ls4{letter-spacing:0.597600px;}
.ls49{letter-spacing:0.609552px;}
.ls44{letter-spacing:0.675288px;}
.ls4b{letter-spacing:0.681264px;}
.ls35{letter-spacing:0.711144px;}
.ls54{letter-spacing:0.714000px;}
.ls5{letter-spacing:0.723096px;}
.ls1b{letter-spacing:0.812736px;}
.ls34{letter-spacing:0.842616px;}
.ls4a{letter-spacing:0.944208px;}
.ls23{letter-spacing:0.956160px;}
.ls7{letter-spacing:0.974088px;}
.ls3c{letter-spacing:1.015920px;}
.ls33{letter-spacing:1.081656px;}
.ls47{letter-spacing:1.111536px;}
.ls3d{letter-spacing:1.219104px;}
.ls1c{letter-spacing:1.374480px;}
.ls2{letter-spacing:1.800000px;}
.ls1a{letter-spacing:2.091600px;}
.ls2f{letter-spacing:2.193192px;}
.ls1{letter-spacing:2.250000px;}
.ls3{letter-spacing:2.550960px;}
.ls27{letter-spacing:2.808720px;}
.ls14{letter-spacing:2.862504px;}
.ls26{letter-spacing:3.525840px;}
.ls13{letter-spacing:3.585600px;}
.ls11{letter-spacing:4.242960px;}
.ls8{letter-spacing:4.960080px;}
.ls31{letter-spacing:5.970024px;}
.ls19{letter-spacing:6.454080px;}
.ls24{letter-spacing:7.888320px;}
.ls6{letter-spacing:12.495816px;}
.ls15{letter-spacing:17.210880px;}
.ls2b{letter-spacing:1556.010000px;}
.ls2a{letter-spacing:1622.268000px;}
.ls2c{letter-spacing:1830.330000px;}
.ls29{letter-spacing:1929.551040px;}
.ls2d{letter-spacing:2112.606000px;}
.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;}
}
.ws53{word-spacing:-28.745040px;}
.ws2{word-spacing:-23.839920px;}
.ws20{word-spacing:-23.755680px;}
.ws43{word-spacing:-23.418720px;}
.ws48{word-spacing:-20.304000px;}
.ws4{word-spacing:-17.210880px;}
.ws49{word-spacing:-17.091360px;}
.ws5{word-spacing:-17.031600px;}
.ws4e{word-spacing:-16.971840px;}
.ws46{word-spacing:-16.613280px;}
.ws2d{word-spacing:-16.553520px;}
.ws21{word-spacing:-16.493760px;}
.ws4d{word-spacing:-16.374240px;}
.ws2c{word-spacing:-16.314480px;}
.ws8{word-spacing:-15.228000px;}
.ws39{word-spacing:-15.174000px;}
.ws3a{word-spacing:-15.120000px;}
.ws50{word-spacing:-15.102720px;}
.ws4f{word-spacing:-15.036480px;}
.ws9{word-spacing:-15.012000px;}
.ws7{word-spacing:-14.526000px;}
.ws52{word-spacing:-13.745280px;}
.ws56{word-spacing:-13.744800px;}
.ws51{word-spacing:-13.625280px;}
.ws3{word-spacing:-13.410720px;}
.ws54{word-spacing:-13.326480px;}
.ws57{word-spacing:-12.150000px;}
.ws58{word-spacing:-12.042000px;}
.ws6{word-spacing:-11.609280px;}
.ws55{word-spacing:-11.593440px;}
.ws1{word-spacing:-10.440000px;}
.ws31{word-spacing:-4.242960px;}
.ws34{word-spacing:-3.585600px;}
.ws26{word-spacing:-3.525840px;}
.ws10{word-spacing:-2.808720px;}
.ws67{word-spacing:-2.124000px;}
.ws13{word-spacing:-2.091600px;}
.ws15{word-spacing:-1.374480px;}
.ws1f{word-spacing:-0.810000px;}
.ws44{word-spacing:-0.758160px;}
.ws3e{word-spacing:-0.756000px;}
.ws65{word-spacing:-0.714000px;}
.ws27{word-spacing:-0.657360px;}
.ws11{word-spacing:-0.597600px;}
.ws1b{word-spacing:-0.418320px;}
.wsa{word-spacing:-0.337680px;}
.ws2f{word-spacing:-0.252720px;}
.ws62{word-spacing:-0.240000px;}
.ws3b{word-spacing:-0.216000px;}
.ws70{word-spacing:-0.198000px;}
.ws6f{word-spacing:-0.126000px;}
.ws5b{word-spacing:-0.120000px;}
.ws73{word-spacing:-0.119520px;}
.ws1e{word-spacing:-0.108000px;}
.wsc{word-spacing:-0.084240px;}
.ws59{word-spacing:-0.066240px;}
.ws60{word-spacing:-0.066000px;}
.ws63{word-spacing:-0.060000px;}
.ws74{word-spacing:-0.059760px;}
.ws3c{word-spacing:-0.054000px;}
.ws72{word-spacing:-0.024000px;}
.ws0{word-spacing:0.000000px;}
.ws61{word-spacing:0.054000px;}
.ws14{word-spacing:0.059760px;}
.ws69{word-spacing:0.060000px;}
.ws5a{word-spacing:0.066240px;}
.wse{word-spacing:0.072000px;}
.ws3d{word-spacing:0.108000px;}
.ws24{word-spacing:0.119520px;}
.ws64{word-spacing:0.120000px;}
.ws4b{word-spacing:0.179280px;}
.ws42{word-spacing:0.216000px;}
.ws6b{word-spacing:0.288000px;}
.ws36{word-spacing:0.298800px;}
.ws47{word-spacing:0.336960px;}
.ws4a{word-spacing:0.385920px;}
.wsb{word-spacing:0.432000px;}
.ws3f{word-spacing:0.486000px;}
.ws6e{word-spacing:0.540000px;}
.ws5d{word-spacing:0.588000px;}
.ws68{word-spacing:0.594000px;}
.ws66{word-spacing:0.600000px;}
.ws71{word-spacing:0.606000px;}
.ws6a{word-spacing:0.624000px;}
.ws5c{word-spacing:0.660000px;}
.wsd{word-spacing:0.673920px;}
.ws5e{word-spacing:0.774000px;}
.ws16{word-spacing:0.776880px;}
.ws6d{word-spacing:0.870000px;}
.ws4c{word-spacing:0.896400px;}
.ws6c{word-spacing:1.002000px;}
.ws30{word-spacing:1.135440px;}
.ws5f{word-spacing:1.362000px;}
.ws1a{word-spacing:1.494000px;}
.ws28{word-spacing:2.211120px;}
.ws1d{word-spacing:2.270880px;}
.ws37{word-spacing:2.928240px;}
.ws12{word-spacing:2.988000px;}
.wsf{word-spacing:3.705120px;}
.ws19{word-spacing:4.422240px;}
.ws2b{word-spacing:5.139360px;}
.ws1c{word-spacing:5.856480px;}
.ws25{word-spacing:6.573600px;}
.ws23{word-spacing:7.290720px;}
.ws22{word-spacing:8.007840px;}
.ws41{word-spacing:8.187120px;}
.ws2e{word-spacing:8.724960px;}
.ws45{word-spacing:8.844480px;}
.ws32{word-spacing:9.442080px;}
.ws33{word-spacing:10.159200px;}
.ws2a{word-spacing:10.876320px;}
.ws17{word-spacing:11.593440px;}
.ws18{word-spacing:11.772720px;}
.ws40{word-spacing:12.310560px;}
.ws38{word-spacing:13.027680px;}
.ws35{word-spacing:16.613280px;}
.ws29{word-spacing:17.330400px;}
._2{margin-left:-11.484000px;}
._1{margin-left:-10.440000px;}
._3{margin-left:-9.396000px;}
._0{margin-left:-5.220000px;}
._4{margin-left:-3.894000px;}
._b{margin-left:-2.741760px;}
._5{margin-left:-1.099872px;}
._6{width:1.263600px;}
._9{width:2.390400px;}
._a{width:4.044960px;}
._8{width:5.232240px;}
._7{width:7.350480px;}
._c{width:8.485200px;}
._d{width:847.396800px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,73,101);}
.fc1{color:rgb(227,5,19);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fse{font-size:54.000000px;}
.fsc{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fsf{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:84.240000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.fsa{font-size:108.000000px;}
.fs6{font-size:252.000000px;}
.fs5{font-size:261.000000px;}
.y0{bottom:0.000000px;}
.yca{bottom:2.880000px;}
.yd9{bottom:3.060000px;}
.ye2{bottom:5.760000px;}
.ydd{bottom:8.460000px;}
.yce{bottom:8.640000px;}
.ye4{bottom:17.100000px;}
.y2a{bottom:23.943960px;}
.y6{bottom:35.925007px;}
.y29{bottom:37.620000px;}
.y5{bottom:66.525004px;}
.y73{bottom:90.081000px;}
.y48{bottom:92.511000px;}
.yfe{bottom:92.515500px;}
.y4{bottom:97.125005px;}
.y9c{bottom:99.000000px;}
.y162{bottom:103.809600px;}
.y130{bottom:106.850880px;}
.y47{bottom:107.995500px;}
.yfd{bottom:108.000000px;}
.y9b{bottom:113.220000px;}
.y72{bottom:114.194160px;}
.y161{bottom:120.363120px;}
.y12f{bottom:123.404400px;}
.y46{bottom:123.480000px;}
.yfc{bottom:130.140000px;}
.yc4{bottom:132.380280px;}
.y160{bottom:136.916640px;}
.y171{bottom:136.980000px;}
.y71{bottom:138.128040px;}
.y22{bottom:139.264499px;}
.yfa{bottom:142.642440px;}
.yfb{bottom:144.360000px;}
.y45{bottom:145.620000px;}
.y9a{bottom:150.060600px;}
.y15f{bottom:153.290880px;}
.y170{bottom:153.544500px;}
.y12e{bottom:154.718640px;}
.yc3{bottom:156.314160px;}
.y44{bottom:159.840000px;}
.y70{bottom:162.061920px;}
.yf9{bottom:166.576320px;}
.y16f{bottom:169.920000px;}
.y12d{bottom:171.272160px;}
.y99{bottom:173.994480px;}
.yc2{bottom:180.248040px;}
.y15e{bottom:184.784400px;}
.y6f{bottom:186.175080px;}
.y16e{bottom:186.480000px;}
.yf8{bottom:190.689480px;}
.y19{bottom:196.933500px;}
.y98{bottom:197.928360px;}
.y15d{bottom:201.337920px;}
.y12c{bottom:202.765680px;}
.y16d{bottom:203.044500px;}
.yc1{bottom:204.361200px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y6e{bottom:210.108960px;}
.yf7{bottom:214.623360px;}
.y15c{bottom:217.891440px;}
.y12b{bottom:219.319200px;}
.y16c{bottom:219.420000px;}
.y97{bottom:222.041520px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.yc0{bottom:228.295080px;}
.yc5{bottom:229.729320px;}
.y6d{bottom:234.042840px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y12a{bottom:235.872720px;}
.yf6{bottom:238.557240px;}
.y96{bottom:245.975400px;}
.y15b{bottom:249.205680px;}
.ybf{bottom:252.228960px;}
.y16b{bottom:254.332440px;}
.y6c{bottom:258.156000px;}
.yff{bottom:259.590240px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.yf5{bottom:262.670400px;}
.y15a{bottom:265.759200px;}
.y129{bottom:267.186960px;}
.y95{bottom:269.909280px;}
.y16a{bottom:272.335200px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.ybe{bottom:276.342120px;}
.y6b{bottom:282.089880px;}
.y159{bottom:282.312720px;}
.y128{bottom:283.740480px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.yf4{bottom:286.604280px;}
.y94{bottom:294.022440px;}
.y158{bottom:298.866240px;}
.ybd{bottom:300.276000px;}
.y127{bottom:300.294000px;}
.y6a{bottom:306.023760px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.yf3{bottom:310.538160px;}
.y169{bottom:313.016700px;}
.y157{bottom:315.240480px;}
.y93{bottom:317.956320px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.ybc{bottom:324.209880px;}
.y69{bottom:330.136920px;}
.y126{bottom:331.787520px;}
.yf2{bottom:334.651320px;}
.y92{bottom:341.890200px;}
.y156{bottom:346.734000px;}
.y10{bottom:348.133500px;}
.ybb{bottom:348.323040px;}
.y125{bottom:348.341040px;}
.y168{bottom:351.717000px;}
.y68{bottom:354.070800px;}
.yf1{bottom:358.585200px;}
.y43{bottom:359.568360px;}
.y155{bottom:363.287520px;}
.y124{bottom:364.715280px;}
.y91{bottom:366.003360px;}
.y167{bottom:369.720000px;}
.yba{bottom:372.256920px;}
.y67{bottom:378.004680px;}
.y154{bottom:379.841040px;}
.yf0{bottom:382.519080px;}
.y42{bottom:383.502240px;}
.yf{bottom:386.785499px;}
.y90{bottom:389.937240px;}
.yb9{bottom:396.190800px;}
.y123{bottom:396.208800px;}
.y66{bottom:402.117840px;}
.yef{bottom:406.632240px;}
.y41{bottom:407.615400px;}
.ye{bottom:408.044999px;}
.y153{bottom:411.155280px;}
.y166{bottom:411.289500px;}
.y122{bottom:412.762320px;}
.y8f{bottom:413.871120px;}
.yb8{bottom:420.303960px;}
.y65{bottom:426.051720px;}
.y152{bottom:427.708800px;}
.y165{bottom:429.292500px;}
.yee{bottom:430.566120px;}
.y40{bottom:431.549280px;}
.y8e{bottom:437.984280px;}
.yb7{bottom:444.237840px;}
.y121{bottom:444.255840px;}
.y151{bottom:444.262320px;}
.y164{bottom:447.295500px;}
.y64{bottom:449.985600px;}
.yed{bottom:454.500000px;}
.y3f{bottom:455.483160px;}
.y120{bottom:460.809360px;}
.y150{bottom:460.815840px;}
.y8d{bottom:461.918160px;}
.yb6{bottom:468.171720px;}
.y63{bottom:474.098760px;}
.y3e{bottom:479.596320px;}
.y8c{bottom:485.852040px;}
.y11f{bottom:492.123600px;}
.y14f{bottom:492.130080px;}
.yb5{bottom:492.284880px;}
.y163{bottom:495.540000px;}
.yec{bottom:496.260000px;}
.y62{bottom:498.032640px;}
.yd{bottom:502.864502px;}
.y3d{bottom:503.530200px;}
.y11e{bottom:508.677120px;}
.y14e{bottom:508.683600px;}
.y8b{bottom:509.965200px;}
.yb4{bottom:516.218760px;}
.yc{bottom:520.864502px;}
.y61{bottom:521.966520px;}
.y11d{bottom:525.230640px;}
.y14d{bottom:525.237120px;}
.y3c{bottom:527.464080px;}
.y8a{bottom:533.899080px;}
.yb{bottom:538.864499px;}
.yb3{bottom:540.152640px;}
.y11c{bottom:541.784160px;}
.y14c{bottom:541.790640px;}
.y60{bottom:546.079680px;}
.y3b{bottom:551.577240px;}
.yeb{bottom:556.740000px;}
.ya{bottom:556.864499px;}
.y89{bottom:557.832960px;}
.yb2{bottom:564.265800px;}
.y5f{bottom:570.013560px;}
.y100{bottom:571.447800px;}
.y11b{bottom:573.098400px;}
.y14b{bottom:573.104880px;}
.y3a{bottom:575.511120px;}
.yea{bottom:578.871000px;}
.y88{bottom:581.946120px;}
.yb1{bottom:588.199680px;}
.y11a{bottom:589.651920px;}
.y14a{bottom:589.658400px;}
.y5e{bottom:593.947440px;}
.ye9{bottom:594.355500px;}
.y39{bottom:599.445000px;}
.y87{bottom:605.880000px;}
.y119{bottom:606.205440px;}
.y149{bottom:606.211920px;}
.ye8{bottom:610.015500px;}
.yb0{bottom:612.133560px;}
.y5d{bottom:618.060600px;}
.y118{bottom:622.758960px;}
.y38{bottom:623.558160px;}
.ye7{bottom:625.500000px;}
.yaf{bottom:636.246720px;}
.y148{bottom:637.705440px;}
.y117{bottom:639.133200px;}
.y5c{bottom:641.994480px;}
.y9{bottom:645.510000px;}
.y37{bottom:647.492040px;}
.y86{bottom:647.640000px;}
.ye6{bottom:651.780000px;}
.y147{bottom:654.258960px;}
.yae{bottom:660.180600px;}
.y5b{bottom:665.928360px;}
.y8{bottom:666.771000px;}
.y27{bottom:670.535400px;}
.y116{bottom:670.626720px;}
.y36{bottom:671.425920px;}
.ye5{bottom:681.840000px;}
.yad{bottom:684.114480px;}
.y146{bottom:685.573200px;}
.y115{bottom:687.180240px;}
.y5a{bottom:690.041520px;}
.y35{bottom:695.539080px;}
.y145{bottom:702.126720px;}
.ye3{bottom:702.360000px;}
.y114{bottom:703.733760px;}
.y85{bottom:708.221520px;}
.yac{bottom:708.227640px;}
.y59{bottom:713.975400px;}
.y34{bottom:719.472960px;}
.y113{bottom:720.108000px;}
.y7{bottom:726.298500px;}
.ye1{bottom:732.060000px;}
.y84{bottom:732.155400px;}
.yab{bottom:732.161520px;}
.y26{bottom:733.535400px;}
.y144{bottom:733.620240px;}
.y112{bottom:736.661520px;}
.y58{bottom:737.909280px;}
.y33{bottom:743.406840px;}
.y143{bottom:750.173760px;}
.y3{bottom:752.599495px;}
.ydf{bottom:753.300000px;}
.y83{bottom:756.089280px;}
.yaa{bottom:756.095400px;}
.y57{bottom:762.022440px;}
.ye0{bottom:763.380000px;}
.y142{bottom:766.727280px;}
.y32{bottom:767.520000px;}
.y111{bottom:768.155040px;}
.y82{bottom:780.202440px;}
.ya9{bottom:780.208560px;}
.yde{bottom:783.180000px;}
.y110{bottom:784.708560px;}
.y56{bottom:785.956320px;}
.y25{bottom:787.526400px;}
.y141{bottom:798.041520px;}
.y10f{bottom:801.082800px;}
.y81{bottom:804.136320px;}
.ya8{bottom:804.142440px;}
.ydc{bottom:804.420000px;}
.y31{bottom:808.560000px;}
.y55{bottom:809.890200px;}
.ydb{bottom:810.180000px;}
.y140{bottom:814.595040px;}
.y10e{bottom:817.636320px;}
.yd8{bottom:825.480000px;}
.y80{bottom:828.070200px;}
.ya7{bottom:828.076320px;}
.y13f{bottom:831.148560px;}
.yda{bottom:833.400000px;}
.y54{bottom:834.003360px;}
.y13e{bottom:847.702080px;}
.y10d{bottom:849.129840px;}
.y7f{bottom:852.183360px;}
.ya6{bottom:852.189480px;}
.yd7{bottom:856.804500px;}
.y53{bottom:857.937240px;}
.y24{bottom:859.535400px;}
.y13d{bottom:864.076320px;}
.y10c{bottom:865.683360px;}
.yd5{bottom:872.280000px;}
.y7e{bottom:876.117240px;}
.ya5{bottom:876.123360px;}
.y2{bottom:879.369000px;}
.yd6{bottom:880.200000px;}
.y52{bottom:881.871120px;}
.y10b{bottom:882.057600px;}
.y13c{bottom:895.569840px;}
.yd3{bottom:897.840000px;}
.y7d{bottom:900.051120px;}
.ya4{bottom:900.057240px;}
.yd4{bottom:903.600000px;}
.y51{bottom:905.984280px;}
.y13b{bottom:912.123360px;}
.y10a{bottom:913.551120px;}
.y7c{bottom:924.164280px;}
.ya3{bottom:924.170400px;}
.yd2{bottom:924.840000px;}
.y13a{bottom:928.676880px;}
.y50{bottom:929.918160px;}
.y109{bottom:930.104640px;}
.yd0{bottom:940.320000px;}
.y30{bottom:941.223060px;}
.y139{bottom:945.051120px;}
.yd1{bottom:948.060000px;}
.y7b{bottom:948.098160px;}
.ya2{bottom:948.104280px;}
.y4f{bottom:953.852040px;}
.y108{bottom:961.598160px;}
.y2f{bottom:965.336760px;}
.ycd{bottom:965.700000px;}
.y1{bottom:966.726000px;}
.ycf{bottom:971.460000px;}
.y7a{bottom:972.032040px;}
.ya1{bottom:972.038160px;}
.y28{bottom:972.212700px;}
.y138{bottom:976.544640px;}
.y4e{bottom:977.965200px;}
.y107{bottom:978.151680px;}
.ycc{bottom:992.700000px;}
.y137{bottom:993.098160px;}
.y106{bottom:994.525920px;}
.y79{bottom:996.145200px;}
.ya0{bottom:996.151320px;}
.y4d{bottom:1001.899080px;}
.y2e{bottom:1007.456760px;}
.yc9{bottom:1008.180000px;}
.ycb{bottom:1018.260000px;}
.y78{bottom:1020.079080px;}
.y9f{bottom:1020.085200px;}
.y23{bottom:1023.023400px;}
.y136{bottom:1024.591680px;}
.y4c{bottom:1025.832960px;}
.y105{bottom:1026.019440px;}
.y2d{bottom:1031.760000px;}
.y135{bottom:1041.145200px;}
.y104{bottom:1042.572960px;}
.y77{bottom:1044.012960px;}
.y9e{bottom:1044.019080px;}
.y4b{bottom:1049.946120px;}
.yc8{bottom:1056.780000px;}
.y134{bottom:1057.519440px;}
.y76{bottom:1068.126120px;}
.y9d{bottom:1068.132240px;}
.y4a{bottom:1073.880000px;}
.y103{bottom:1074.066480px;}
.y133{bottom:1074.072960px;}
.y2c{bottom:1074.951000px;}
.y102{bottom:1090.620000px;}
.y75{bottom:1092.066120px;}
.y132{bottom:1105.566480px;}
.yc7{bottom:1107.175500px;}
.y2b{bottom:1108.080000px;}
.y49{bottom:1115.640000px;}
.y74{bottom:1116.000000px;}
.y101{bottom:1121.940000px;}
.y131{bottom:1122.120000px;}
.yc6{bottom:1122.660000px;}
.h1f{height:21.060000px;}
.h1c{height:21.240000px;}
.h1a{height:21.241500px;}
.h1b{height:25.380000px;}
.h1e{height:25.560000px;}
.h1d{height:25.561500px;}
.h19{height:29.700000px;}
.h20{height:29.880000px;}
.h7{height:32.130000px;}
.hf{height:35.120039px;}
.h14{height:35.907891px;}
.h6{height:45.900000px;}
.h15{height:46.432617px;}
.h17{height:47.223633px;}
.h3{height:48.195000px;}
.hd{height:48.906000px;}
.h13{height:51.385430px;}
.h18{height:52.260820px;}
.hc{height:53.064000px;}
.h2{height:55.080000px;}
.h27{height:57.618000px;}
.h16{height:59.643411px;}
.h21{height:59.667891px;}
.h12{height:62.964844px;}
.h24{height:63.763920px;}
.h25{height:63.764160px;}
.h26{height:64.779840px;}
.hb{height:65.700000px;}
.h23{height:70.678080px;}
.h11{height:73.668867px;}
.h5{height:78.030000px;}
.h10{height:94.447266px;}
.h4{height:119.055004px;}
.ha{height:230.832000px;}
.h9{height:239.076000px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.he{height:1262.880000px;}
.h1{height:1263.000000px;}
.h22{height:1264.500000px;}
.w6{width:206.100000px;}
.w5{width:433.620000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w4{width:892.980000px;}
.w1{width:893.250000px;}
.w7{width:895.500000px;}
.x0{left:0.000000px;}
.xd{left:5.220000px;}
.x10{left:30.780000px;}
.x5{left:77.983650px;}
.x6{left:82.464600px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x19{left:117.000000px;}
.x9{left:127.620000px;}
.xc{left:132.840000px;}
.xb{left:144.720000px;}
.x16{left:152.280000px;}
.xf{left:158.400000px;}
.x15{left:159.840000px;}
.x18{left:161.638380px;}
.x4{left:203.484001px;}
.x1a{left:231.306000px;}
.xa{left:343.620000px;}
.x17{left:412.200000px;}
.x7{left:414.900000px;}
.x8{left:446.400720px;}
.x3{left:454.959000px;}
.x14{left:561.240000px;}
.x11{left:723.060000px;}
.x12{left:743.040000px;}
.xe{left:747.360000px;}
.x13{left:753.660000px;}
@media print{
.v2{vertical-align:-21.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.109120pt;}
.ls5b{letter-spacing:-1.806080pt;}
.ls52{letter-spacing:-1.168000pt;}
.ls5a{letter-spacing:-1.061333pt;}
.ls59{letter-spacing:-0.688000pt;}
.ls56{letter-spacing:-0.586667pt;}
.ls55{letter-spacing:-0.533333pt;}
.ls10{letter-spacing:-0.432000pt;}
.ls20{letter-spacing:-0.424960pt;}
.ls3e{letter-spacing:-0.343040pt;}
.lsc{letter-spacing:-0.299520pt;}
.ls1e{letter-spacing:-0.265600pt;}
.ls5d{letter-spacing:-0.240000pt;}
.ls32{letter-spacing:-0.212480pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls5c{letter-spacing:-0.144000pt;}
.ls18{letter-spacing:-0.106240pt;}
.ls30{letter-spacing:-0.096000pt;}
.ls1f{letter-spacing:-0.074880pt;}
.lsd{letter-spacing:-0.064000pt;}
.ls51{letter-spacing:-0.058880pt;}
.ls57{letter-spacing:-0.053333pt;}
.ls1d{letter-spacing:-0.053120pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4d{letter-spacing:0.029440pt;}
.ls53{letter-spacing:0.053333pt;}
.ls28{letter-spacing:0.096000pt;}
.ls50{letter-spacing:0.106240pt;}
.ls4e{letter-spacing:0.106667pt;}
.ls22{letter-spacing:0.127488pt;}
.ls2e{letter-spacing:0.144000pt;}
.ls4f{letter-spacing:0.159360pt;}
.lsf{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.212480pt;}
.ls58{letter-spacing:0.213333pt;}
.ls3a{letter-spacing:0.249664pt;}
.ls3f{letter-spacing:0.256000pt;}
.ls16{letter-spacing:0.265600pt;}
.ls12{letter-spacing:0.276224pt;}
.ls42{letter-spacing:0.281536pt;}
.ls3b{letter-spacing:0.286848pt;}
.ls43{letter-spacing:0.292160pt;}
.ls21{letter-spacing:0.297472pt;}
.ls17{letter-spacing:0.299520pt;}
.ls9{letter-spacing:0.300160pt;}
.ls39{letter-spacing:0.302784pt;}
.ls48{letter-spacing:0.313408pt;}
.ls4c{letter-spacing:0.318720pt;}
.ls41{letter-spacing:0.324032pt;}
.ls45{letter-spacing:0.339968pt;}
.ls36{letter-spacing:0.361216pt;}
.lse{letter-spacing:0.371840pt;}
.lsb{letter-spacing:0.374400pt;}
.ls40{letter-spacing:0.424960pt;}
.ls38{letter-spacing:0.451520pt;}
.ls46{letter-spacing:0.504640pt;}
.ls37{letter-spacing:0.520576pt;}
.ls4{letter-spacing:0.531200pt;}
.ls49{letter-spacing:0.541824pt;}
.ls44{letter-spacing:0.600256pt;}
.ls4b{letter-spacing:0.605568pt;}
.ls35{letter-spacing:0.632128pt;}
.ls54{letter-spacing:0.634667pt;}
.ls5{letter-spacing:0.642752pt;}
.ls1b{letter-spacing:0.722432pt;}
.ls34{letter-spacing:0.748992pt;}
.ls4a{letter-spacing:0.839296pt;}
.ls23{letter-spacing:0.849920pt;}
.ls7{letter-spacing:0.865856pt;}
.ls3c{letter-spacing:0.903040pt;}
.ls33{letter-spacing:0.961472pt;}
.ls47{letter-spacing:0.988032pt;}
.ls3d{letter-spacing:1.083648pt;}
.ls1c{letter-spacing:1.221760pt;}
.ls2{letter-spacing:1.600000pt;}
.ls1a{letter-spacing:1.859200pt;}
.ls2f{letter-spacing:1.949504pt;}
.ls1{letter-spacing:2.000000pt;}
.ls3{letter-spacing:2.267520pt;}
.ls27{letter-spacing:2.496640pt;}
.ls14{letter-spacing:2.544448pt;}
.ls26{letter-spacing:3.134080pt;}
.ls13{letter-spacing:3.187200pt;}
.ls11{letter-spacing:3.771520pt;}
.ls8{letter-spacing:4.408960pt;}
.ls31{letter-spacing:5.306688pt;}
.ls19{letter-spacing:5.736960pt;}
.ls24{letter-spacing:7.011840pt;}
.ls6{letter-spacing:11.107392pt;}
.ls15{letter-spacing:15.298560pt;}
.ls2b{letter-spacing:1383.120000pt;}
.ls2a{letter-spacing:1442.016000pt;}
.ls2c{letter-spacing:1626.960000pt;}
.ls29{letter-spacing:1715.156480pt;}
.ls2d{letter-spacing:1877.872000pt;}
.ws53{word-spacing:-25.551147pt;}
.ws2{word-spacing:-21.191040pt;}
.ws20{word-spacing:-21.116160pt;}
.ws43{word-spacing:-20.816640pt;}
.ws48{word-spacing:-18.048000pt;}
.ws4{word-spacing:-15.298560pt;}
.ws49{word-spacing:-15.192320pt;}
.ws5{word-spacing:-15.139200pt;}
.ws4e{word-spacing:-15.086080pt;}
.ws46{word-spacing:-14.767360pt;}
.ws2d{word-spacing:-14.714240pt;}
.ws21{word-spacing:-14.661120pt;}
.ws4d{word-spacing:-14.554880pt;}
.ws2c{word-spacing:-14.501760pt;}
.ws8{word-spacing:-13.536000pt;}
.ws39{word-spacing:-13.488000pt;}
.ws3a{word-spacing:-13.440000pt;}
.ws50{word-spacing:-13.424640pt;}
.ws4f{word-spacing:-13.365760pt;}
.ws9{word-spacing:-13.344000pt;}
.ws7{word-spacing:-12.912000pt;}
.ws52{word-spacing:-12.218027pt;}
.ws56{word-spacing:-12.217600pt;}
.ws51{word-spacing:-12.111360pt;}
.ws3{word-spacing:-11.920640pt;}
.ws54{word-spacing:-11.845760pt;}
.ws57{word-spacing:-10.800000pt;}
.ws58{word-spacing:-10.704000pt;}
.ws6{word-spacing:-10.319360pt;}
.ws55{word-spacing:-10.305280pt;}
.ws1{word-spacing:-9.280000pt;}
.ws31{word-spacing:-3.771520pt;}
.ws34{word-spacing:-3.187200pt;}
.ws26{word-spacing:-3.134080pt;}
.ws10{word-spacing:-2.496640pt;}
.ws67{word-spacing:-1.888000pt;}
.ws13{word-spacing:-1.859200pt;}
.ws15{word-spacing:-1.221760pt;}
.ws1f{word-spacing:-0.720000pt;}
.ws44{word-spacing:-0.673920pt;}
.ws3e{word-spacing:-0.672000pt;}
.ws65{word-spacing:-0.634667pt;}
.ws27{word-spacing:-0.584320pt;}
.ws11{word-spacing:-0.531200pt;}
.ws1b{word-spacing:-0.371840pt;}
.wsa{word-spacing:-0.300160pt;}
.ws2f{word-spacing:-0.224640pt;}
.ws62{word-spacing:-0.213333pt;}
.ws3b{word-spacing:-0.192000pt;}
.ws70{word-spacing:-0.176000pt;}
.ws6f{word-spacing:-0.112000pt;}
.ws5b{word-spacing:-0.106667pt;}
.ws73{word-spacing:-0.106240pt;}
.ws1e{word-spacing:-0.096000pt;}
.wsc{word-spacing:-0.074880pt;}
.ws59{word-spacing:-0.058880pt;}
.ws60{word-spacing:-0.058667pt;}
.ws63{word-spacing:-0.053333pt;}
.ws74{word-spacing:-0.053120pt;}
.ws3c{word-spacing:-0.048000pt;}
.ws72{word-spacing:-0.021333pt;}
.ws0{word-spacing:0.000000pt;}
.ws61{word-spacing:0.048000pt;}
.ws14{word-spacing:0.053120pt;}
.ws69{word-spacing:0.053333pt;}
.ws5a{word-spacing:0.058880pt;}
.wse{word-spacing:0.064000pt;}
.ws3d{word-spacing:0.096000pt;}
.ws24{word-spacing:0.106240pt;}
.ws64{word-spacing:0.106667pt;}
.ws4b{word-spacing:0.159360pt;}
.ws42{word-spacing:0.192000pt;}
.ws6b{word-spacing:0.256000pt;}
.ws36{word-spacing:0.265600pt;}
.ws47{word-spacing:0.299520pt;}
.ws4a{word-spacing:0.343040pt;}
.wsb{word-spacing:0.384000pt;}
.ws3f{word-spacing:0.432000pt;}
.ws6e{word-spacing:0.480000pt;}
.ws5d{word-spacing:0.522667pt;}
.ws68{word-spacing:0.528000pt;}
.ws66{word-spacing:0.533333pt;}
.ws71{word-spacing:0.538667pt;}
.ws6a{word-spacing:0.554667pt;}
.ws5c{word-spacing:0.586667pt;}
.wsd{word-spacing:0.599040pt;}
.ws5e{word-spacing:0.688000pt;}
.ws16{word-spacing:0.690560pt;}
.ws6d{word-spacing:0.773333pt;}
.ws4c{word-spacing:0.796800pt;}
.ws6c{word-spacing:0.890667pt;}
.ws30{word-spacing:1.009280pt;}
.ws5f{word-spacing:1.210667pt;}
.ws1a{word-spacing:1.328000pt;}
.ws28{word-spacing:1.965440pt;}
.ws1d{word-spacing:2.018560pt;}
.ws37{word-spacing:2.602880pt;}
.ws12{word-spacing:2.656000pt;}
.wsf{word-spacing:3.293440pt;}
.ws19{word-spacing:3.930880pt;}
.ws2b{word-spacing:4.568320pt;}
.ws1c{word-spacing:5.205760pt;}
.ws25{word-spacing:5.843200pt;}
.ws23{word-spacing:6.480640pt;}
.ws22{word-spacing:7.118080pt;}
.ws41{word-spacing:7.277440pt;}
.ws2e{word-spacing:7.755520pt;}
.ws45{word-spacing:7.861760pt;}
.ws32{word-spacing:8.392960pt;}
.ws33{word-spacing:9.030400pt;}
.ws2a{word-spacing:9.667840pt;}
.ws17{word-spacing:10.305280pt;}
.ws18{word-spacing:10.464640pt;}
.ws40{word-spacing:10.942720pt;}
.ws38{word-spacing:11.580160pt;}
.ws35{word-spacing:14.767360pt;}
.ws29{word-spacing:15.404800pt;}
._2{margin-left:-10.208000pt;}
._1{margin-left:-9.280000pt;}
._3{margin-left:-8.352000pt;}
._0{margin-left:-4.640000pt;}
._4{margin-left:-3.461333pt;}
._b{margin-left:-2.437120pt;}
._5{margin-left:-0.977664pt;}
._6{width:1.123200pt;}
._9{width:2.124800pt;}
._a{width:3.595520pt;}
._8{width:4.650880pt;}
._7{width:6.533760pt;}
._c{width:7.542400pt;}
._d{width:753.241600pt;}
.fsd{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fse{font-size:48.000000pt;}
.fsc{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fsf{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:74.880000pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.fsa{font-size:96.000000pt;}
.fs6{font-size:224.000000pt;}
.fs5{font-size:232.000000pt;}
.y0{bottom:0.000000pt;}
.yca{bottom:2.560000pt;}
.yd9{bottom:2.720000pt;}
.ye2{bottom:5.120000pt;}
.ydd{bottom:7.520000pt;}
.yce{bottom:7.680000pt;}
.ye4{bottom:15.200000pt;}
.y2a{bottom:21.283520pt;}
.y6{bottom:31.933340pt;}
.y29{bottom:33.440000pt;}
.y5{bottom:59.133337pt;}
.y73{bottom:80.072000pt;}
.y48{bottom:82.232000pt;}
.yfe{bottom:82.236000pt;}
.y4{bottom:86.333337pt;}
.y9c{bottom:88.000000pt;}
.y162{bottom:92.275200pt;}
.y130{bottom:94.978560pt;}
.y47{bottom:95.996000pt;}
.yfd{bottom:96.000000pt;}
.y9b{bottom:100.640000pt;}
.y72{bottom:101.505920pt;}
.y161{bottom:106.989440pt;}
.y12f{bottom:109.692800pt;}
.y46{bottom:109.760000pt;}
.yfc{bottom:115.680000pt;}
.yc4{bottom:117.671360pt;}
.y160{bottom:121.703680pt;}
.y171{bottom:121.760000pt;}
.y71{bottom:122.780480pt;}
.y22{bottom:123.790666pt;}
.yfa{bottom:126.793280pt;}
.yfb{bottom:128.320000pt;}
.y45{bottom:129.440000pt;}
.y9a{bottom:133.387200pt;}
.y15f{bottom:136.258560pt;}
.y170{bottom:136.484000pt;}
.y12e{bottom:137.527680pt;}
.yc3{bottom:138.945920pt;}
.y44{bottom:142.080000pt;}
.y70{bottom:144.055040pt;}
.yf9{bottom:148.067840pt;}
.y16f{bottom:151.040000pt;}
.y12d{bottom:152.241920pt;}
.y99{bottom:154.661760pt;}
.yc2{bottom:160.220480pt;}
.y15e{bottom:164.252800pt;}
.y6f{bottom:165.488960pt;}
.y16e{bottom:165.760000pt;}
.yf8{bottom:169.501760pt;}
.y19{bottom:175.052000pt;}
.y98{bottom:175.936320pt;}
.y15d{bottom:178.967040pt;}
.y12c{bottom:180.236160pt;}
.y16d{bottom:180.484000pt;}
.yc1{bottom:181.654400pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y6e{bottom:186.763520pt;}
.yf7{bottom:190.776320pt;}
.y15c{bottom:193.681280pt;}
.y12b{bottom:194.950400pt;}
.y16c{bottom:195.040000pt;}
.y97{bottom:197.370240pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.yc0{bottom:202.928960pt;}
.yc5{bottom:204.203840pt;}
.y6d{bottom:208.038080pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y12a{bottom:209.664640pt;}
.yf6{bottom:212.050880pt;}
.y96{bottom:218.644800pt;}
.y15b{bottom:221.516160pt;}
.ybf{bottom:224.203520pt;}
.y16b{bottom:226.073280pt;}
.y6c{bottom:229.472000pt;}
.yff{bottom:230.746880pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.yf5{bottom:233.484800pt;}
.y15a{bottom:236.230400pt;}
.y129{bottom:237.499520pt;}
.y95{bottom:239.919360pt;}
.y16a{bottom:242.075733pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.ybe{bottom:245.637440pt;}
.y6b{bottom:250.746560pt;}
.y159{bottom:250.944640pt;}
.y128{bottom:252.213760pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.yf4{bottom:254.759360pt;}
.y94{bottom:261.353280pt;}
.y158{bottom:265.658880pt;}
.ybd{bottom:266.912000pt;}
.y127{bottom:266.928000pt;}
.y6a{bottom:272.021120pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.yf3{bottom:276.033920pt;}
.y169{bottom:278.237067pt;}
.y157{bottom:280.213760pt;}
.y93{bottom:282.627840pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.ybc{bottom:288.186560pt;}
.y69{bottom:293.455040pt;}
.y126{bottom:294.922240pt;}
.yf2{bottom:297.467840pt;}
.y92{bottom:303.902400pt;}
.y156{bottom:308.208000pt;}
.y10{bottom:309.452000pt;}
.ybb{bottom:309.620480pt;}
.y125{bottom:309.636480pt;}
.y168{bottom:312.637333pt;}
.y68{bottom:314.729600pt;}
.yf1{bottom:318.742400pt;}
.y43{bottom:319.616320pt;}
.y155{bottom:322.922240pt;}
.y124{bottom:324.191360pt;}
.y91{bottom:325.336320pt;}
.y167{bottom:328.640000pt;}
.yba{bottom:330.895040pt;}
.y67{bottom:336.004160pt;}
.y154{bottom:337.636480pt;}
.yf0{bottom:340.016960pt;}
.y42{bottom:340.890880pt;}
.yf{bottom:343.809333pt;}
.y90{bottom:346.610880pt;}
.yb9{bottom:352.169600pt;}
.y123{bottom:352.185600pt;}
.y66{bottom:357.438080pt;}
.yef{bottom:361.450880pt;}
.y41{bottom:362.324800pt;}
.ye{bottom:362.706666pt;}
.y153{bottom:365.471360pt;}
.y166{bottom:365.590667pt;}
.y122{bottom:366.899840pt;}
.y8f{bottom:367.885440pt;}
.yb8{bottom:373.603520pt;}
.y65{bottom:378.712640pt;}
.y152{bottom:380.185600pt;}
.y165{bottom:381.593333pt;}
.yee{bottom:382.725440pt;}
.y40{bottom:383.599360pt;}
.y8e{bottom:389.319360pt;}
.yb7{bottom:394.878080pt;}
.y121{bottom:394.894080pt;}
.y151{bottom:394.899840pt;}
.y164{bottom:397.596000pt;}
.y64{bottom:399.987200pt;}
.yed{bottom:404.000000pt;}
.y3f{bottom:404.873920pt;}
.y120{bottom:409.608320pt;}
.y150{bottom:409.614080pt;}
.y8d{bottom:410.593920pt;}
.yb6{bottom:416.152640pt;}
.y63{bottom:421.421120pt;}
.y3e{bottom:426.307840pt;}
.y8c{bottom:431.868480pt;}
.y11f{bottom:437.443200pt;}
.y14f{bottom:437.448960pt;}
.yb5{bottom:437.586560pt;}
.y163{bottom:440.480000pt;}
.yec{bottom:441.120000pt;}
.y62{bottom:442.695680pt;}
.yd{bottom:446.990669pt;}
.y3d{bottom:447.582400pt;}
.y11e{bottom:452.157440pt;}
.y14e{bottom:452.163200pt;}
.y8b{bottom:453.302400pt;}
.yb4{bottom:458.861120pt;}
.yc{bottom:462.990669pt;}
.y61{bottom:463.970240pt;}
.y11d{bottom:466.871680pt;}
.y14d{bottom:466.877440pt;}
.y3c{bottom:468.856960pt;}
.y8a{bottom:474.576960pt;}
.yb{bottom:478.990666pt;}
.yb3{bottom:480.135680pt;}
.y11c{bottom:481.585920pt;}
.y14c{bottom:481.591680pt;}
.y60{bottom:485.404160pt;}
.y3b{bottom:490.290880pt;}
.yeb{bottom:494.880000pt;}
.ya{bottom:494.990666pt;}
.y89{bottom:495.851520pt;}
.yb2{bottom:501.569600pt;}
.y5f{bottom:506.678720pt;}
.y100{bottom:507.953600pt;}
.y11b{bottom:509.420800pt;}
.y14b{bottom:509.426560pt;}
.y3a{bottom:511.565440pt;}
.yea{bottom:514.552000pt;}
.y88{bottom:517.285440pt;}
.yb1{bottom:522.844160pt;}
.y11a{bottom:524.135040pt;}
.y14a{bottom:524.140800pt;}
.y5e{bottom:527.953280pt;}
.ye9{bottom:528.316000pt;}
.y39{bottom:532.840000pt;}
.y87{bottom:538.560000pt;}
.y119{bottom:538.849280pt;}
.y149{bottom:538.855040pt;}
.ye8{bottom:542.236000pt;}
.yb0{bottom:544.118720pt;}
.y5d{bottom:549.387200pt;}
.y118{bottom:553.563520pt;}
.y38{bottom:554.273920pt;}
.ye7{bottom:556.000000pt;}
.yaf{bottom:565.552640pt;}
.y148{bottom:566.849280pt;}
.y117{bottom:568.118400pt;}
.y5c{bottom:570.661760pt;}
.y9{bottom:573.786667pt;}
.y37{bottom:575.548480pt;}
.y86{bottom:575.680000pt;}
.ye6{bottom:579.360000pt;}
.y147{bottom:581.563520pt;}
.yae{bottom:586.827200pt;}
.y5b{bottom:591.936320pt;}
.y8{bottom:592.685334pt;}
.y27{bottom:596.031467pt;}
.y116{bottom:596.112640pt;}
.y36{bottom:596.823040pt;}
.ye5{bottom:606.080000pt;}
.yad{bottom:608.101760pt;}
.y146{bottom:609.398400pt;}
.y115{bottom:610.826880pt;}
.y5a{bottom:613.370240pt;}
.y35{bottom:618.256960pt;}
.y145{bottom:624.112640pt;}
.ye3{bottom:624.320000pt;}
.y114{bottom:625.541120pt;}
.y85{bottom:629.530240pt;}
.yac{bottom:629.535680pt;}
.y59{bottom:634.644800pt;}
.y34{bottom:639.531520pt;}
.y113{bottom:640.096000pt;}
.y7{bottom:645.598667pt;}
.ye1{bottom:650.720000pt;}
.y84{bottom:650.804800pt;}
.yab{bottom:650.810240pt;}
.y26{bottom:652.031467pt;}
.y144{bottom:652.106880pt;}
.y112{bottom:654.810240pt;}
.y58{bottom:655.919360pt;}
.y33{bottom:660.806080pt;}
.y143{bottom:666.821120pt;}
.y3{bottom:668.977329pt;}
.ydf{bottom:669.600000pt;}
.y83{bottom:672.079360pt;}
.yaa{bottom:672.084800pt;}
.y57{bottom:677.353280pt;}
.ye0{bottom:678.560000pt;}
.y142{bottom:681.535360pt;}
.y32{bottom:682.240000pt;}
.y111{bottom:682.804480pt;}
.y82{bottom:693.513280pt;}
.ya9{bottom:693.518720pt;}
.yde{bottom:696.160000pt;}
.y110{bottom:697.518720pt;}
.y56{bottom:698.627840pt;}
.y25{bottom:700.023467pt;}
.y141{bottom:709.370240pt;}
.y10f{bottom:712.073600pt;}
.y81{bottom:714.787840pt;}
.ya8{bottom:714.793280pt;}
.ydc{bottom:715.040000pt;}
.y31{bottom:718.720000pt;}
.y55{bottom:719.902400pt;}
.ydb{bottom:720.160000pt;}
.y140{bottom:724.084480pt;}
.y10e{bottom:726.787840pt;}
.yd8{bottom:733.760000pt;}
.y80{bottom:736.062400pt;}
.ya7{bottom:736.067840pt;}
.y13f{bottom:738.798720pt;}
.yda{bottom:740.800000pt;}
.y54{bottom:741.336320pt;}
.y13e{bottom:753.512960pt;}
.y10d{bottom:754.782080pt;}
.y7f{bottom:757.496320pt;}
.ya6{bottom:757.501760pt;}
.yd7{bottom:761.604000pt;}
.y53{bottom:762.610880pt;}
.y24{bottom:764.031467pt;}
.y13d{bottom:768.067840pt;}
.y10c{bottom:769.496320pt;}
.yd5{bottom:775.360000pt;}
.y7e{bottom:778.770880pt;}
.ya5{bottom:778.776320pt;}
.y2{bottom:781.661334pt;}
.yd6{bottom:782.400000pt;}
.y52{bottom:783.885440pt;}
.y10b{bottom:784.051200pt;}
.y13c{bottom:796.062080pt;}
.yd3{bottom:798.080000pt;}
.y7d{bottom:800.045440pt;}
.ya4{bottom:800.050880pt;}
.yd4{bottom:803.200000pt;}
.y51{bottom:805.319360pt;}
.y13b{bottom:810.776320pt;}
.y10a{bottom:812.045440pt;}
.y7c{bottom:821.479360pt;}
.ya3{bottom:821.484800pt;}
.yd2{bottom:822.080000pt;}
.y13a{bottom:825.490560pt;}
.y50{bottom:826.593920pt;}
.y109{bottom:826.759680pt;}
.yd0{bottom:835.840000pt;}
.y30{bottom:836.642720pt;}
.y139{bottom:840.045440pt;}
.yd1{bottom:842.720000pt;}
.y7b{bottom:842.753920pt;}
.ya2{bottom:842.759360pt;}
.y4f{bottom:847.868480pt;}
.y108{bottom:854.753920pt;}
.y2f{bottom:858.077120pt;}
.ycd{bottom:858.400000pt;}
.y1{bottom:859.312000pt;}
.ycf{bottom:863.520000pt;}
.y7a{bottom:864.028480pt;}
.ya1{bottom:864.033920pt;}
.y28{bottom:864.189067pt;}
.y138{bottom:868.039680pt;}
.y4e{bottom:869.302400pt;}
.y107{bottom:869.468160pt;}
.ycc{bottom:882.400000pt;}
.y137{bottom:882.753920pt;}
.y106{bottom:884.023040pt;}
.y79{bottom:885.462400pt;}
.ya0{bottom:885.467840pt;}
.y4d{bottom:890.576960pt;}
.y2e{bottom:895.517120pt;}
.yc9{bottom:896.160000pt;}
.ycb{bottom:905.120000pt;}
.y78{bottom:906.736960pt;}
.y9f{bottom:906.742400pt;}
.y23{bottom:909.354133pt;}
.y136{bottom:910.748160pt;}
.y4c{bottom:911.851520pt;}
.y105{bottom:912.017280pt;}
.y2d{bottom:917.120000pt;}
.y135{bottom:925.462400pt;}
.y104{bottom:926.731520pt;}
.y77{bottom:928.011520pt;}
.y9e{bottom:928.016960pt;}
.y4b{bottom:933.285440pt;}
.yc8{bottom:939.360000pt;}
.y134{bottom:940.017280pt;}
.y76{bottom:949.445440pt;}
.y9d{bottom:949.450880pt;}
.y4a{bottom:954.560000pt;}
.y103{bottom:954.725760pt;}
.y133{bottom:954.731520pt;}
.y2c{bottom:955.512000pt;}
.y102{bottom:969.440000pt;}
.y75{bottom:970.725440pt;}
.y132{bottom:982.725760pt;}
.yc7{bottom:984.156000pt;}
.y2b{bottom:984.960000pt;}
.y49{bottom:991.680000pt;}
.y74{bottom:992.000000pt;}
.y101{bottom:997.280000pt;}
.y131{bottom:997.440000pt;}
.yc6{bottom:997.920000pt;}
.h1f{height:18.720000pt;}
.h1c{height:18.880000pt;}
.h1a{height:18.881333pt;}
.h1b{height:22.560000pt;}
.h1e{height:22.720000pt;}
.h1d{height:22.721333pt;}
.h19{height:26.400000pt;}
.h20{height:26.560000pt;}
.h7{height:28.560000pt;}
.hf{height:31.217812pt;}
.h14{height:31.918125pt;}
.h6{height:40.800000pt;}
.h15{height:41.273438pt;}
.h17{height:41.976562pt;}
.h3{height:42.840000pt;}
.hd{height:43.472000pt;}
.h13{height:45.675938pt;}
.h18{height:46.454062pt;}
.hc{height:47.168000pt;}
.h2{height:48.960000pt;}
.h27{height:51.216000pt;}
.h16{height:53.016365pt;}
.h21{height:53.038125pt;}
.h12{height:55.968750pt;}
.h24{height:56.679040pt;}
.h25{height:56.679253pt;}
.h26{height:57.582080pt;}
.hb{height:58.400000pt;}
.h23{height:62.824960pt;}
.h11{height:65.483437pt;}
.h5{height:69.360000pt;}
.h10{height:83.953125pt;}
.h4{height:105.826671pt;}
.ha{height:205.184000pt;}
.h9{height:212.512000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.he{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h22{height:1124.000000pt;}
.w6{width:183.200000pt;}
.w5{width:385.440000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w4{width:793.760000pt;}
.w1{width:794.000000pt;}
.w7{width:796.000000pt;}
.x0{left:0.000000pt;}
.xd{left:4.640000pt;}
.x10{left:27.360000pt;}
.x5{left:69.318800pt;}
.x6{left:73.301867pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x19{left:104.000000pt;}
.x9{left:113.440000pt;}
.xc{left:118.080000pt;}
.xb{left:128.640000pt;}
.x16{left:135.360000pt;}
.xf{left:140.800000pt;}
.x15{left:142.080000pt;}
.x18{left:143.678560pt;}
.x4{left:180.874667pt;}
.x1a{left:205.605333pt;}
.xa{left:305.440000pt;}
.x17{left:366.400000pt;}
.x7{left:368.800000pt;}
.x8{left:396.800640pt;}
.x3{left:404.408000pt;}
.x14{left:498.880000pt;}
.x11{left:642.720000pt;}
.x12{left:660.480000pt;}
.xe{left:664.320000pt;}
.x13{left:669.920000pt;}
}




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