
    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_4fd40749d47f5ee1abe44767.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.113281;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_253a69a4089d11b9a03c8806.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.862793;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_e8f5dfb0d4c428ee4d258f8c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106934;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_11f9bd74aa800133e1c7251e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_033993f76c81775de94ba185.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_e0b51503d7775b744c40241c.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_ad509bd3ee17db2562c17597.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.682617;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:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.048000px;}
.ls3b{letter-spacing:-0.792000px;}
.ls1{letter-spacing:-0.468000px;}
.ls5{letter-spacing:-0.432000px;}
.ls2f{letter-spacing:-0.420000px;}
.ls4{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.312000px;}
.ls9{letter-spacing:-0.300000px;}
.ls43{letter-spacing:-0.288000px;}
.ls26{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.ls20{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.240000px;}
.ls67{letter-spacing:0.331200px;}
.ls3d{letter-spacing:0.338400px;}
.ls58{letter-spacing:0.352800px;}
.ls17{letter-spacing:0.360000px;}
.ls5c{letter-spacing:0.381600px;}
.ls12{letter-spacing:0.388800px;}
.ls1e{letter-spacing:0.403200px;}
.lsd{letter-spacing:0.410400px;}
.ls44{letter-spacing:0.417600px;}
.ls3{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.504000px;}
.ls53{letter-spacing:0.554400px;}
.ls6c{letter-spacing:0.684000px;}
.ls64{letter-spacing:0.756000px;}
.ls7{letter-spacing:0.792000px;}
.ls33{letter-spacing:0.912000px;}
.ls6f{letter-spacing:1.202400px;}
.ls36{letter-spacing:1.224000px;}
.ls31{letter-spacing:1.231200px;}
.ls3e{letter-spacing:1.548000px;}
.ls13{letter-spacing:1.562400px;}
.ls47{letter-spacing:1.569600px;}
.ls1b{letter-spacing:1.584000px;}
.ls25{letter-spacing:1.591200px;}
.ls61{letter-spacing:1.605600px;}
.ls52{letter-spacing:1.612800px;}
.ls6d{letter-spacing:1.884000px;}
.ls56{letter-spacing:2.570400px;}
.ls4e{letter-spacing:2.671200px;}
.ls68{letter-spacing:2.685600px;}
.ls4d{letter-spacing:2.736000px;}
.ls1a{letter-spacing:2.757600px;}
.ls59{letter-spacing:2.764800px;}
.ls22{letter-spacing:2.808000px;}
.ls10{letter-spacing:3.960000px;}
.ls4b{letter-spacing:3.988800px;}
.ls38{letter-spacing:4.010400px;}
.ls46{letter-spacing:5.162400px;}
.ls1f{letter-spacing:5.184000px;}
.ls60{letter-spacing:5.205600px;}
.ls66{letter-spacing:5.212800px;}
.ls4a{letter-spacing:5.220000px;}
.ls5a{letter-spacing:6.364800px;}
.lsc{letter-spacing:6.408000px;}
.ls4c{letter-spacing:7.560000px;}
.ls32{letter-spacing:7.581600px;}
.ls1d{letter-spacing:7.588800px;}
.ls5f{letter-spacing:7.610400px;}
.ls21{letter-spacing:8.784000px;}
.ls39{letter-spacing:8.791200px;}
.ls5e{letter-spacing:8.812800px;}
.ls57{letter-spacing:9.885600px;}
.ls24{letter-spacing:9.936000px;}
.lse{letter-spacing:9.964800px;}
.lsb{letter-spacing:10.008000px;}
.ls37{letter-spacing:11.160000px;}
.ls11{letter-spacing:11.210400px;}
.ls41{letter-spacing:12.384000px;}
.ls27{letter-spacing:12.391200px;}
.ls42{letter-spacing:12.412800px;}
.ls50{letter-spacing:13.435200px;}
.ls4f{letter-spacing:13.586400px;}
.ls6e{letter-spacing:13.608000px;}
.ls30{letter-spacing:14.760000px;}
.ls65{letter-spacing:14.767200px;}
.ls55{letter-spacing:15.962400px;}
.ls40{letter-spacing:15.984000px;}
.ls62{letter-spacing:16.012800px;}
.ls23{letter-spacing:16.020000px;}
.ls45{letter-spacing:17.092800px;}
.ls14{letter-spacing:17.208000px;}
.ls1c{letter-spacing:18.360000px;}
.ls69{letter-spacing:18.381600px;}
.ls2b{letter-spacing:18.410400px;}
.ls35{letter-spacing:18.453600px;}
.ls5d{letter-spacing:18.504000px;}
.ls3c{letter-spacing:19.562400px;}
.ls5b{letter-spacing:19.612800px;}
.ls2a{letter-spacing:20.664000px;}
.ls28{letter-spacing:21.960000px;}
.ls29{letter-spacing:23.184000px;}
.ls6b{letter-spacing:23.484000px;}
.lsf{letter-spacing:25.560000px;}
.ls6{letter-spacing:28.008000px;}
.ls2c{letter-spacing:29.160000px;}
.ls34{letter-spacing:29.188800px;}
.ls51{letter-spacing:29.210400px;}
.ls3f{letter-spacing:30.384000px;}
.ls49{letter-spacing:31.586400px;}
.ls3a{letter-spacing:32.781600px;}
.ls15{letter-spacing:32.810400px;}
.ls54{letter-spacing:33.984000px;}
.ls16{letter-spacing:38.786400px;}
.ls63{letter-spacing:38.808000px;}
.ls72{letter-spacing:44.784000px;}
.ls2d{letter-spacing:48.384000px;}
.ls2e{letter-spacing:48.420000px;}
.ls70{letter-spacing:51.984000px;}
.ls19{letter-spacing:54.360000px;}
.ls73{letter-spacing:92.808000px;}
.ls71{letter-spacing:132.408000px;}
.ls8{letter-spacing:843.984000px;}
.ls6a{letter-spacing:845.628000px;}
.ls48{letter-spacing:845.652000px;}
.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;}
}
.ws0{word-spacing:-43.056000px;}
.ws47{word-spacing:-21.240000px;}
.ws2f{word-spacing:-20.808000px;}
.wsc{word-spacing:-20.448000px;}
.wsb{word-spacing:-20.016000px;}
.wsa{word-spacing:-19.656000px;}
.ws1{word-spacing:-19.584000px;}
.ws3f{word-spacing:-19.224000px;}
.ws3b{word-spacing:-14.256000px;}
.ws9{word-spacing:-13.560000px;}
.ws21{word-spacing:-13.344000px;}
.ws34{word-spacing:-13.140000px;}
.ws44{word-spacing:-13.056000px;}
.ws46{word-spacing:-4.392000px;}
.ws11{word-spacing:-3.960000px;}
.ws45{word-spacing:-3.168000px;}
.ws12{word-spacing:-2.736000px;}
.wsf{word-spacing:-2.016000px;}
.ws1a{word-spacing:-1.584000px;}
.wse{word-spacing:-1.320000px;}
.ws31{word-spacing:-1.224000px;}
.ws43{word-spacing:-0.792000px;}
.ws5{word-spacing:-0.432000px;}
.ws10{word-spacing:-0.360000px;}
.ws2{word-spacing:0.000000px;}
.ws33{word-spacing:0.144000px;}
.ws4{word-spacing:0.156000px;}
.wsd{word-spacing:0.300000px;}
.ws3{word-spacing:0.312000px;}
.ws6{word-spacing:0.360000px;}
.ws7{word-spacing:0.432000px;}
.ws8{word-spacing:0.792000px;}
.ws16{word-spacing:0.864000px;}
.ws38{word-spacing:1.584000px;}
.ws17{word-spacing:2.016000px;}
.ws57{word-spacing:2.376000px;}
.ws41{word-spacing:2.808000px;}
.ws1d{word-spacing:3.240000px;}
.ws30{word-spacing:4.032000px;}
.ws1b{word-spacing:4.464000px;}
.ws50{word-spacing:5.184000px;}
.ws2a{word-spacing:5.616000px;}
.ws15{word-spacing:6.840000px;}
.ws3e{word-spacing:7.632000px;}
.ws2c{word-spacing:8.064000px;}
.ws5a{word-spacing:8.352000px;}
.ws55{word-spacing:8.784000px;}
.ws18{word-spacing:9.216000px;}
.ws14{word-spacing:10.440000px;}
.ws40{word-spacing:11.232000px;}
.ws1c{word-spacing:11.664000px;}
.ws26{word-spacing:12.816000px;}
.ws5c{word-spacing:13.176000px;}
.ws29{word-spacing:14.040000px;}
.ws3a{word-spacing:15.264000px;}
.ws32{word-spacing:16.416000px;}
.ws1e{word-spacing:17.640000px;}
.ws48{word-spacing:18.360000px;}
.ws22{word-spacing:18.792000px;}
.ws42{word-spacing:19.944000px;}
.ws3d{word-spacing:20.016000px;}
.ws13{word-spacing:21.240000px;}
.ws39{word-spacing:22.464000px;}
.ws25{word-spacing:23.616000px;}
.ws2e{word-spacing:24.840000px;}
.ws58{word-spacing:25.200000px;}
.ws19{word-spacing:26.064000px;}
.ws4b{word-spacing:27.216000px;}
.ws5b{word-spacing:27.576000px;}
.ws35{word-spacing:28.440000px;}
.ws2d{word-spacing:29.664000px;}
.ws28{word-spacing:30.816000px;}
.ws49{word-spacing:31.608000px;}
.ws3c{word-spacing:32.040000px;}
.ws56{word-spacing:32.400000px;}
.ws1f{word-spacing:33.264000px;}
.ws20{word-spacing:34.416000px;}
.ws37{word-spacing:35.640000px;}
.ws27{word-spacing:36.864000px;}
.ws4f{word-spacing:38.016000px;}
.ws24{word-spacing:39.168000px;}
.ws23{word-spacing:39.240000px;}
.ws4c{word-spacing:40.464000px;}
.ws2b{word-spacing:41.616000px;}
.ws4e{word-spacing:42.840000px;}
.ws4d{word-spacing:44.064000px;}
.ws36{word-spacing:48.816000px;}
.ws51{word-spacing:50.040000px;}
.ws59{word-spacing:53.640000px;}
.ws4a{word-spacing:71.640000px;}
.ws53{word-spacing:102.816000px;}
.ws54{word-spacing:104.040000px;}
.ws52{word-spacing:192.816000px;}
._25{margin-left:-12.024000px;}
._7{margin-left:-10.800000px;}
._24{margin-left:-7.557600px;}
._5{margin-left:-5.040000px;}
._6{margin-left:-3.504000px;}
._11{margin-left:-2.304000px;}
._3{margin-left:-1.274400px;}
._1{width:1.248000px;}
._2{width:2.262000px;}
._b{width:3.312000px;}
._12{width:5.184000px;}
._8{width:6.456000px;}
._f{width:7.992000px;}
._10{width:9.096000px;}
._9{width:10.152000px;}
._a{width:11.880000px;}
._16{width:12.952800px;}
._21{width:14.472000px;}
._18{width:15.744000px;}
._1d{width:17.208000px;}
._1a{width:18.552000px;}
._19{width:21.716400px;}
._1c{width:22.728000px;}
._1b{width:23.826000px;}
._13{width:24.834000px;}
._1e{width:26.160000px;}
._14{width:27.314400px;}
._4{width:28.800000px;}
._17{width:30.504000px;}
._1f{width:31.794000px;}
._22{width:34.058400px;}
._15{width:35.112000px;}
._c{width:39.264000px;}
._e{width:41.112000px;}
._23{width:42.696000px;}
._28{width:44.448000px;}
._29{width:53.186400px;}
._d{width:54.360000px;}
._20{width:72.072000px;}
._2a{width:93.600000px;}
._26{width:101.928000px;}
._27{width:103.608000px;}
._2b{width:152.352000px;}
._0{width:843.984000px;}
.fc6{color:rgb(5,99,193);}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(91,155,213);}
.fc5{color:rgb(1,2,5);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y10{bottom:3.300000px;}
.yc3{bottom:14.100000px;}
.yc7{bottom:14.400000px;}
.y9d{bottom:45.300000px;}
.ya0{bottom:69.300000px;}
.ye{bottom:71.100000px;}
.yff{bottom:76.500000px;}
.y7{bottom:86.100000px;}
.yd{bottom:91.197000px;}
.y11a{bottom:96.300000px;}
.yc{bottom:110.700000px;}
.y162{bottom:132.894000px;}
.y54{bottom:134.976000px;}
.y3{bottom:138.900000px;}
.y70{bottom:142.194000px;}
.y84{bottom:142.200000px;}
.y6b{bottom:142.206000px;}
.y6{bottom:143.100000px;}
.yf7{bottom:156.606000px;}
.y9{bottom:160.494000px;}
.y161{bottom:163.800000px;}
.y53{bottom:165.882000px;}
.y115{bottom:168.000000px;}
.y90{bottom:168.582000px;}
.y3d{bottom:173.388000px;}
.y83{bottom:173.394000px;}
.y6a{bottom:173.400000px;}
.yc1{bottom:175.194000px;}
.ydd{bottom:188.700000px;}
.yf6{bottom:190.806000px;}
.y160{bottom:194.994000px;}
.y8{bottom:195.000000px;}
.y52{bottom:197.076000px;}
.y114{bottom:198.906000px;}
.y7b{bottom:199.200000px;}
.y8f{bottom:199.488000px;}
.yfd{bottom:201.900000px;}
.y3c{bottom:204.294000px;}
.y6f{bottom:204.300000px;}
.y69{bottom:204.306000px;}
.yc0{bottom:206.100000px;}
.ydc{bottom:219.606000px;}
.y16c{bottom:221.100000px;}
.yf5{bottom:222.000000px;}
.y12e{bottom:225.300000px;}
.y15f{bottom:225.900000px;}
.y51{bottom:227.982000px;}
.y113{bottom:230.100000px;}
.y8e{bottom:230.682000px;}
.y7a{bottom:231.870000px;}
.y3b{bottom:235.488000px;}
.y6e{bottom:235.494000px;}
.y68{bottom:235.500000px;}
.ybf{bottom:237.294000px;}
.ydb{bottom:250.800000px;}
.yf4{bottom:252.906000px;}
.y12d{bottom:256.194000px;}
.y15e{bottom:257.094000px;}
.y50{bottom:259.176000px;}
.y112{bottom:261.006000px;}
.y8d{bottom:261.588000px;}
.y79{bottom:262.470000px;}
.y3a{bottom:266.394000px;}
.y6d{bottom:266.400000px;}
.y67{bottom:266.406000px;}
.ybe{bottom:268.200000px;}
.y118{bottom:274.188000px;}
.yda{bottom:281.706000px;}
.yf3{bottom:284.100000px;}
.yfa{bottom:286.500000px;}
.y12c{bottom:287.388000px;}
.y15d{bottom:288.000000px;}
.y4f{bottom:290.082000px;}
.y111{bottom:292.200000px;}
.y8c{bottom:292.782000px;}
.y78{bottom:295.176000px;}
.y39{bottom:297.588000px;}
.y6c{bottom:297.594000px;}
.y66{bottom:297.600000px;}
.ybd{bottom:299.394000px;}
.yd9{bottom:312.900000px;}
.yf2{bottom:315.006000px;}
.y12b{bottom:318.294000px;}
.y15c{bottom:319.194000px;}
.y4e{bottom:321.276000px;}
.y110{bottom:323.106000px;}
.y8b{bottom:323.688000px;}
.y77{bottom:325.776000px;}
.y38{bottom:328.494000px;}
.y82{bottom:328.500000px;}
.y65{bottom:328.506000px;}
.ybc{bottom:330.300000px;}
.yd8{bottom:343.806000px;}
.yf1{bottom:346.200000px;}
.y12a{bottom:349.488000px;}
.y15b{bottom:350.100000px;}
.y4d{bottom:351.876000px;}
.y10f{bottom:354.300000px;}
.y8a{bottom:354.882000px;}
.y76{bottom:358.482000px;}
.y37{bottom:359.688000px;}
.y81{bottom:359.694000px;}
.y64{bottom:359.700000px;}
.ybb{bottom:361.494000px;}
.yd7{bottom:375.000000px;}
.y143{bottom:375.301500px;}
.yf0{bottom:377.106000px;}
.y129{bottom:380.394000px;}
.y15a{bottom:381.294000px;}
.y4c{bottom:384.582000px;}
.y10e{bottom:385.206000px;}
.y89{bottom:385.482000px;}
.y75{bottom:389.082000px;}
.y36{bottom:390.594000px;}
.y80{bottom:390.600000px;}
.y63{bottom:390.606000px;}
.yba{bottom:392.400000px;}
.y9b{bottom:397.794000px;}
.yef{bottom:408.300000px;}
.y128{bottom:411.300000px;}
.y159{bottom:412.200000px;}
.y4b{bottom:415.488000px;}
.y10d{bottom:416.400000px;}
.y142{bottom:416.700000px;}
.y88{bottom:418.188000px;}
.y35{bottom:421.788000px;}
.y7f{bottom:421.794000px;}
.y62{bottom:421.800000px;}
.yb9{bottom:423.594000px;}
.yd6{bottom:424.200000px;}
.yee{bottom:425.700000px;}
.y9a{bottom:428.700000px;}
.y127{bottom:442.494000px;}
.y158{bottom:443.394000px;}
.y4a{bottom:446.394000px;}
.y141{bottom:446.664000px;}
.y10c{bottom:447.306000px;}
.y87{bottom:448.788000px;}
.y34{bottom:452.694000px;}
.y7e{bottom:452.700000px;}
.y61{bottom:452.706000px;}
.yb8{bottom:454.500000px;}
.yd5{bottom:456.000000px;}
.yed{bottom:457.500000px;}
.y99{bottom:459.894000px;}
.y126{bottom:473.400000px;}
.y157{bottom:474.300000px;}
.y140{bottom:477.570000px;}
.y10b{bottom:478.500000px;}
.y49{bottom:478.794000px;}
.y86{bottom:481.188000px;}
.y33{bottom:483.888000px;}
.y7d{bottom:483.894000px;}
.y60{bottom:483.900000px;}
.yb7{bottom:485.694000px;}
.yd4{bottom:487.800000px;}
.yec{bottom:489.300000px;}
.y98{bottom:490.800000px;}
.y125{bottom:504.594000px;}
.y156{bottom:505.494000px;}
.yfc{bottom:507.900000px;}
.y13f{bottom:508.764000px;}
.y10a{bottom:509.406000px;}
.y48{bottom:509.988000px;}
.y85{bottom:513.282000px;}
.y32{bottom:514.794000px;}
.y7c{bottom:514.800000px;}
.y5f{bottom:514.806000px;}
.yb6{bottom:516.600000px;}
.yd3{bottom:519.600000px;}
.yeb{bottom:521.100000px;}
.y97{bottom:521.994000px;}
.y124{bottom:535.500000px;}
.y155{bottom:536.400000px;}
.y117{bottom:539.382000px;}
.y13e{bottom:539.670000px;}
.y109{bottom:540.600000px;}
.y47{bottom:540.894000px;}
.y31{bottom:545.988000px;}
.y74{bottom:545.994000px;}
.y5e{bottom:546.000000px;}
.yb5{bottom:547.794000px;}
.yd2{bottom:551.400000px;}
.y96{bottom:552.900000px;}
.y123{bottom:566.694000px;}
.y154{bottom:567.594000px;}
.y13d{bottom:570.864000px;}
.y108{bottom:571.506000px;}
.y46{bottom:571.800000px;}
.y30{bottom:576.894000px;}
.y73{bottom:576.900000px;}
.y5d{bottom:576.906000px;}
.yb4{bottom:578.700000px;}
.yd1{bottom:583.200000px;}
.y95{bottom:584.094000px;}
.yea{bottom:584.700000px;}
.y2{bottom:586.200000px;}
.y122{bottom:597.600000px;}
.y153{bottom:598.500000px;}
.y13c{bottom:601.770000px;}
.y107{bottom:602.700000px;}
.y45{bottom:604.176000px;}
.y2f{bottom:608.088000px;}
.y72{bottom:608.094000px;}
.y5c{bottom:608.100000px;}
.yb3{bottom:609.894000px;}
.y94{bottom:615.000000px;}
.ye9{bottom:616.500000px;}
.y5{bottom:628.518000px;}
.y121{bottom:628.794000px;}
.y152{bottom:629.700000px;}
.y13b{bottom:632.676000px;}
.y106{bottom:633.606000px;}
.y44{bottom:635.370000px;}
.y2e{bottom:638.994000px;}
.y71{bottom:639.000000px;}
.y5b{bottom:639.006000px;}
.yb2{bottom:640.800000px;}
.yd0{bottom:646.800000px;}
.ye8{bottom:648.300000px;}
.y93{bottom:658.200000px;}
.yaf{bottom:658.500000px;}
.y120{bottom:659.700000px;}
.y151{bottom:660.600000px;}
.y105{bottom:664.800000px;}
.y13a{bottom:665.076000px;}
.y43{bottom:666.276000px;}
.y2d{bottom:670.188000px;}
.y1f{bottom:670.194000px;}
.y5a{bottom:670.200000px;}
.yb0{bottom:672.600000px;}
.y4{bottom:676.800000px;}
.ycf{bottom:678.600000px;}
.ye7{bottom:680.100000px;}
.yb1{bottom:683.100000px;}
.y92{bottom:689.106000px;}
.y11f{bottom:690.894000px;}
.y150{bottom:691.794000px;}
.y104{bottom:695.706000px;}
.y139{bottom:696.270000px;}
.y42{bottom:697.182000px;}
.y2c{bottom:701.094000px;}
.y1e{bottom:701.100000px;}
.y59{bottom:701.106000px;}
.yce{bottom:710.400000px;}
.ye6{bottom:711.900000px;}
.y91{bottom:720.300000px;}
.yac{bottom:721.200000px;}
.y11e{bottom:721.800000px;}
.y14f{bottom:722.700000px;}
.y138{bottom:726.870000px;}
.y103{bottom:726.900000px;}
.y41{bottom:729.582000px;}
.y2b{bottom:732.288000px;}
.y1d{bottom:732.294000px;}
.y58{bottom:732.300000px;}
.yad{bottom:735.600000px;}
.y119{bottom:741.000000px;}
.ycd{bottom:742.200000px;}
.ye5{bottom:743.700000px;}
.yae{bottom:745.800000px;}
.y14e{bottom:753.900000px;}
.y137{bottom:759.576000px;}
.y102{bottom:760.200000px;}
.y40{bottom:760.488000px;}
.yf9{bottom:762.900000px;}
.y2a{bottom:763.194000px;}
.y1c{bottom:763.200000px;}
.y57{bottom:763.206000px;}
.ycc{bottom:774.000000px;}
.y11d{bottom:775.200000px;}
.ye4{bottom:775.500000px;}
.y16b{bottom:777.006000px;}
.yfb{bottom:779.700000px;}
.y101{bottom:780.900000px;}
.ya7{bottom:784.200000px;}
.y14d{bottom:784.800000px;}
.y136{bottom:790.482000px;}
.y3f{bottom:793.194000px;}
.y29{bottom:794.388000px;}
.y1b{bottom:794.394000px;}
.y56{bottom:794.400000px;}
.y11c{bottom:795.900000px;}
.ya8{bottom:798.300000px;}
.y100{bottom:801.600000px;}
.y116{bottom:804.288000px;}
.yaa{bottom:805.500000px;}
.ycb{bottom:805.800000px;}
.ye3{bottom:807.300000px;}
.y16a{bottom:808.200000px;}
.yab{bottom:808.800000px;}
.y14c{bottom:816.000000px;}
.y11b{bottom:816.600000px;}
.y135{bottom:821.388000px;}
.y3e{bottom:823.794000px;}
.y28{bottom:825.294000px;}
.y1a{bottom:825.300000px;}
.y55{bottom:825.306000px;}
.ya9{bottom:826.200000px;}
.yca{bottom:837.600000px;}
.ye2{bottom:839.100000px;}
.y169{bottom:839.106000px;}
.ya4{bottom:846.900000px;}
.y14b{bottom:846.906000px;}
.y134{bottom:853.788000px;}
.y27{bottom:856.488000px;}
.y19{bottom:856.494000px;}
.y166{bottom:856.500000px;}
.ya5{bottom:861.300000px;}
.yfe{bottom:866.400000px;}
.yc9{bottom:869.400000px;}
.y168{bottom:870.300000px;}
.ye1{bottom:870.900000px;}
.ya6{bottom:871.500000px;}
.y14a{bottom:878.094000px;}
.y133{bottom:884.694000px;}
.y26{bottom:887.394000px;}
.y18{bottom:887.400000px;}
.y165{bottom:887.406000px;}
.yc8{bottom:901.200000px;}
.ydf{bottom:902.700000px;}
.y149{bottom:909.000000px;}
.y9f{bottom:909.900000px;}
.y132{bottom:917.094000px;}
.ye0{bottom:917.100000px;}
.y25{bottom:918.588000px;}
.y17{bottom:918.594000px;}
.y164{bottom:918.600000px;}
.y167{bottom:919.794000px;}
.ya3{bottom:924.000000px;}
.yc6{bottom:933.000000px;}
.y148{bottom:940.200000px;}
.y131{bottom:948.288000px;}
.y24{bottom:949.494000px;}
.y16{bottom:949.500000px;}
.y163{bottom:949.506000px;}
.ya2{bottom:955.200000px;}
.yc4{bottom:964.800000px;}
.yde{bottom:965.700000px;}
.y147{bottom:971.100000px;}
.ya1{bottom:975.900000px;}
.y130{bottom:979.194000px;}
.yc5{bottom:979.200000px;}
.y23{bottom:980.688000px;}
.y15{bottom:980.694000px;}
.y9c{bottom:996.600000px;}
.y146{bottom:1002.300000px;}
.y12f{bottom:1010.100000px;}
.y9e{bottom:1011.000000px;}
.y22{bottom:1011.594000px;}
.y14{bottom:1011.600000px;}
.yc2{bottom:1027.800000px;}
.y145{bottom:1033.200000px;}
.y21{bottom:1042.500000px;}
.y13{bottom:1042.506000px;}
.y20{bottom:1073.694000px;}
.y12{bottom:1073.700000px;}
.y144{bottom:1074.900000px;}
.yf8{bottom:1082.406000px;}
.y11{bottom:1104.600000px;}
.y1{bottom:1139.700000px;}
.yb{bottom:1139.703000px;}
.ya{bottom:1159.800000px;}
.yf{bottom:1182.300000px;}
.h8{height:17.400000px;}
.h11{height:30.900000px;}
.h13{height:31.200000px;}
.h14{height:31.201500px;}
.h7{height:45.181641px;}
.h12{height:52.417969px;}
.h9{height:54.169922px;}
.h18{height:59.167969px;}
.h1a{height:59.586914px;}
.hf{height:62.100000px;}
.h19{height:64.540875px;}
.h6{height:64.546875px;}
.h1b{height:64.570875px;}
.h1c{height:64.594875px;}
.h2{height:65.003906px;}
.hd{height:67.007250px;}
.hc{height:67.031250px;}
.he{height:67.055250px;}
.ha{height:67.079250px;}
.hb{height:67.127250px;}
.h10{height:86.100000px;}
.h1d{height:93.300000px;}
.h16{height:93.301500px;}
.h5{height:102.900000px;}
.h17{height:113.100000px;}
.h4{height:140.841797px;}
.h3{height:175.800000px;}
.h15{height:302.100000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.wd{width:52.500000px;}
.wa{width:81.898500px;}
.w10{width:89.700000px;}
.wf{width:107.698500px;}
.w5{width:122.100000px;}
.w6{width:123.600000px;}
.w8{width:123.900000px;}
.w9{width:124.500000px;}
.wc{width:132.300000px;}
.w7{width:139.501500px;}
.we{width:197.998500px;}
.wb{width:264.900000px;}
.w14{width:343.800000px;}
.w13{width:368.400000px;}
.w3{width:373.200000px;}
.w11{width:480.600000px;}
.w12{width:633.300000px;}
.w4{width:636.300000px;}
.w2{width:692.098500px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:7.500000px;}
.x23{left:9.600000px;}
.x2b{left:12.000000px;}
.x45{left:15.900000px;}
.x25{left:17.100000px;}
.x2a{left:19.500000px;}
.x15{left:21.600000px;}
.x3d{left:25.800000px;}
.x10{left:27.000000px;}
.x3c{left:30.900000px;}
.x3a{left:36.000000px;}
.x2e{left:40.800000px;}
.x3b{left:43.500000px;}
.x35{left:46.800000px;}
.x3{left:50.100000px;}
.x17{left:60.600000px;}
.x32{left:73.500000px;}
.x2{left:88.500000px;}
.x30{left:93.900000px;}
.x7{left:120.600000px;}
.x1{left:127.500000px;}
.x48{left:129.900000px;}
.x4b{left:135.600000px;}
.x49{left:136.800000px;}
.x2d{left:139.800000px;}
.x4{left:141.900000px;}
.xb{left:154.500000px;}
.x22{left:164.700000px;}
.x28{left:167.400000px;}
.xc{left:181.500000px;}
.x46{left:206.100000px;}
.x2f{left:222.300000px;}
.x4a{left:233.700000px;}
.x47{left:240.300000px;}
.x33{left:242.400000px;}
.xf{left:251.100000px;}
.x24{left:258.900000px;}
.x29{left:260.700000px;}
.x18{left:263.700000px;}
.x1a{left:272.400000px;}
.x3e{left:274.800000px;}
.x40{left:282.600000px;}
.x19{left:286.500000px;}
.x5{left:331.518000px;}
.x34{left:355.200000px;}
.x11{left:375.600000px;}
.x41{left:383.100000px;}
.x36{left:384.300000px;}
.x26{left:390.900000px;}
.x12{left:396.600000px;}
.x1c{left:407.400000px;}
.x1b{left:413.100000px;}
.x6{left:453.300000px;}
.x8{left:470.100000px;}
.x3f{left:473.400000px;}
.x42{left:481.200000px;}
.x31{left:488.100000px;}
.x4c{left:495.900000px;}
.x4d{left:504.000000px;}
.x37{left:508.200000px;}
.x13{left:515.700000px;}
.x27{left:523.500000px;}
.x1d{left:528.300000px;}
.x1f{left:537.000000px;}
.x1e{left:551.100000px;}
.x43{left:581.700000px;}
.x44{left:589.500000px;}
.x38{left:621.000000px;}
.x14{left:640.200000px;}
.x2c{left:648.300000px;}
.x39{left:650.100000px;}
.x20{left:653.100000px;}
.x9{left:660.000000px;}
.x21{left:661.800000px;}
.x16{left:675.900000px;}
.xd{left:720.900000px;}
.xa{left:728.400000px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.376000pt;}
.ls3b{letter-spacing:-0.704000pt;}
.ls1{letter-spacing:-0.416000pt;}
.ls5{letter-spacing:-0.384000pt;}
.ls2f{letter-spacing:-0.373333pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.277333pt;}
.ls9{letter-spacing:-0.266667pt;}
.ls43{letter-spacing:-0.256000pt;}
.ls26{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls20{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.213333pt;}
.ls67{letter-spacing:0.294400pt;}
.ls3d{letter-spacing:0.300800pt;}
.ls58{letter-spacing:0.313600pt;}
.ls17{letter-spacing:0.320000pt;}
.ls5c{letter-spacing:0.339200pt;}
.ls12{letter-spacing:0.345600pt;}
.ls1e{letter-spacing:0.358400pt;}
.lsd{letter-spacing:0.364800pt;}
.ls44{letter-spacing:0.371200pt;}
.ls3{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.448000pt;}
.ls53{letter-spacing:0.492800pt;}
.ls6c{letter-spacing:0.608000pt;}
.ls64{letter-spacing:0.672000pt;}
.ls7{letter-spacing:0.704000pt;}
.ls33{letter-spacing:0.810667pt;}
.ls6f{letter-spacing:1.068800pt;}
.ls36{letter-spacing:1.088000pt;}
.ls31{letter-spacing:1.094400pt;}
.ls3e{letter-spacing:1.376000pt;}
.ls13{letter-spacing:1.388800pt;}
.ls47{letter-spacing:1.395200pt;}
.ls1b{letter-spacing:1.408000pt;}
.ls25{letter-spacing:1.414400pt;}
.ls61{letter-spacing:1.427200pt;}
.ls52{letter-spacing:1.433600pt;}
.ls6d{letter-spacing:1.674667pt;}
.ls56{letter-spacing:2.284800pt;}
.ls4e{letter-spacing:2.374400pt;}
.ls68{letter-spacing:2.387200pt;}
.ls4d{letter-spacing:2.432000pt;}
.ls1a{letter-spacing:2.451200pt;}
.ls59{letter-spacing:2.457600pt;}
.ls22{letter-spacing:2.496000pt;}
.ls10{letter-spacing:3.520000pt;}
.ls4b{letter-spacing:3.545600pt;}
.ls38{letter-spacing:3.564800pt;}
.ls46{letter-spacing:4.588800pt;}
.ls1f{letter-spacing:4.608000pt;}
.ls60{letter-spacing:4.627200pt;}
.ls66{letter-spacing:4.633600pt;}
.ls4a{letter-spacing:4.640000pt;}
.ls5a{letter-spacing:5.657600pt;}
.lsc{letter-spacing:5.696000pt;}
.ls4c{letter-spacing:6.720000pt;}
.ls32{letter-spacing:6.739200pt;}
.ls1d{letter-spacing:6.745600pt;}
.ls5f{letter-spacing:6.764800pt;}
.ls21{letter-spacing:7.808000pt;}
.ls39{letter-spacing:7.814400pt;}
.ls5e{letter-spacing:7.833600pt;}
.ls57{letter-spacing:8.787200pt;}
.ls24{letter-spacing:8.832000pt;}
.lse{letter-spacing:8.857600pt;}
.lsb{letter-spacing:8.896000pt;}
.ls37{letter-spacing:9.920000pt;}
.ls11{letter-spacing:9.964800pt;}
.ls41{letter-spacing:11.008000pt;}
.ls27{letter-spacing:11.014400pt;}
.ls42{letter-spacing:11.033600pt;}
.ls50{letter-spacing:11.942400pt;}
.ls4f{letter-spacing:12.076800pt;}
.ls6e{letter-spacing:12.096000pt;}
.ls30{letter-spacing:13.120000pt;}
.ls65{letter-spacing:13.126400pt;}
.ls55{letter-spacing:14.188800pt;}
.ls40{letter-spacing:14.208000pt;}
.ls62{letter-spacing:14.233600pt;}
.ls23{letter-spacing:14.240000pt;}
.ls45{letter-spacing:15.193600pt;}
.ls14{letter-spacing:15.296000pt;}
.ls1c{letter-spacing:16.320000pt;}
.ls69{letter-spacing:16.339200pt;}
.ls2b{letter-spacing:16.364800pt;}
.ls35{letter-spacing:16.403200pt;}
.ls5d{letter-spacing:16.448000pt;}
.ls3c{letter-spacing:17.388800pt;}
.ls5b{letter-spacing:17.433600pt;}
.ls2a{letter-spacing:18.368000pt;}
.ls28{letter-spacing:19.520000pt;}
.ls29{letter-spacing:20.608000pt;}
.ls6b{letter-spacing:20.874667pt;}
.lsf{letter-spacing:22.720000pt;}
.ls6{letter-spacing:24.896000pt;}
.ls2c{letter-spacing:25.920000pt;}
.ls34{letter-spacing:25.945600pt;}
.ls51{letter-spacing:25.964800pt;}
.ls3f{letter-spacing:27.008000pt;}
.ls49{letter-spacing:28.076800pt;}
.ls3a{letter-spacing:29.139200pt;}
.ls15{letter-spacing:29.164800pt;}
.ls54{letter-spacing:30.208000pt;}
.ls16{letter-spacing:34.476800pt;}
.ls63{letter-spacing:34.496000pt;}
.ls72{letter-spacing:39.808000pt;}
.ls2d{letter-spacing:43.008000pt;}
.ls2e{letter-spacing:43.040000pt;}
.ls70{letter-spacing:46.208000pt;}
.ls19{letter-spacing:48.320000pt;}
.ls73{letter-spacing:82.496000pt;}
.ls71{letter-spacing:117.696000pt;}
.ls8{letter-spacing:750.208000pt;}
.ls6a{letter-spacing:751.669333pt;}
.ls48{letter-spacing:751.690667pt;}
.ws0{word-spacing:-38.272000pt;}
.ws47{word-spacing:-18.880000pt;}
.ws2f{word-spacing:-18.496000pt;}
.wsc{word-spacing:-18.176000pt;}
.wsb{word-spacing:-17.792000pt;}
.wsa{word-spacing:-17.472000pt;}
.ws1{word-spacing:-17.408000pt;}
.ws3f{word-spacing:-17.088000pt;}
.ws3b{word-spacing:-12.672000pt;}
.ws9{word-spacing:-12.053333pt;}
.ws21{word-spacing:-11.861333pt;}
.ws34{word-spacing:-11.680000pt;}
.ws44{word-spacing:-11.605333pt;}
.ws46{word-spacing:-3.904000pt;}
.ws11{word-spacing:-3.520000pt;}
.ws45{word-spacing:-2.816000pt;}
.ws12{word-spacing:-2.432000pt;}
.wsf{word-spacing:-1.792000pt;}
.ws1a{word-spacing:-1.408000pt;}
.wse{word-spacing:-1.173333pt;}
.ws31{word-spacing:-1.088000pt;}
.ws43{word-spacing:-0.704000pt;}
.ws5{word-spacing:-0.384000pt;}
.ws10{word-spacing:-0.320000pt;}
.ws2{word-spacing:0.000000pt;}
.ws33{word-spacing:0.128000pt;}
.ws4{word-spacing:0.138667pt;}
.wsd{word-spacing:0.266667pt;}
.ws3{word-spacing:0.277333pt;}
.ws6{word-spacing:0.320000pt;}
.ws7{word-spacing:0.384000pt;}
.ws8{word-spacing:0.704000pt;}
.ws16{word-spacing:0.768000pt;}
.ws38{word-spacing:1.408000pt;}
.ws17{word-spacing:1.792000pt;}
.ws57{word-spacing:2.112000pt;}
.ws41{word-spacing:2.496000pt;}
.ws1d{word-spacing:2.880000pt;}
.ws30{word-spacing:3.584000pt;}
.ws1b{word-spacing:3.968000pt;}
.ws50{word-spacing:4.608000pt;}
.ws2a{word-spacing:4.992000pt;}
.ws15{word-spacing:6.080000pt;}
.ws3e{word-spacing:6.784000pt;}
.ws2c{word-spacing:7.168000pt;}
.ws5a{word-spacing:7.424000pt;}
.ws55{word-spacing:7.808000pt;}
.ws18{word-spacing:8.192000pt;}
.ws14{word-spacing:9.280000pt;}
.ws40{word-spacing:9.984000pt;}
.ws1c{word-spacing:10.368000pt;}
.ws26{word-spacing:11.392000pt;}
.ws5c{word-spacing:11.712000pt;}
.ws29{word-spacing:12.480000pt;}
.ws3a{word-spacing:13.568000pt;}
.ws32{word-spacing:14.592000pt;}
.ws1e{word-spacing:15.680000pt;}
.ws48{word-spacing:16.320000pt;}
.ws22{word-spacing:16.704000pt;}
.ws42{word-spacing:17.728000pt;}
.ws3d{word-spacing:17.792000pt;}
.ws13{word-spacing:18.880000pt;}
.ws39{word-spacing:19.968000pt;}
.ws25{word-spacing:20.992000pt;}
.ws2e{word-spacing:22.080000pt;}
.ws58{word-spacing:22.400000pt;}
.ws19{word-spacing:23.168000pt;}
.ws4b{word-spacing:24.192000pt;}
.ws5b{word-spacing:24.512000pt;}
.ws35{word-spacing:25.280000pt;}
.ws2d{word-spacing:26.368000pt;}
.ws28{word-spacing:27.392000pt;}
.ws49{word-spacing:28.096000pt;}
.ws3c{word-spacing:28.480000pt;}
.ws56{word-spacing:28.800000pt;}
.ws1f{word-spacing:29.568000pt;}
.ws20{word-spacing:30.592000pt;}
.ws37{word-spacing:31.680000pt;}
.ws27{word-spacing:32.768000pt;}
.ws4f{word-spacing:33.792000pt;}
.ws24{word-spacing:34.816000pt;}
.ws23{word-spacing:34.880000pt;}
.ws4c{word-spacing:35.968000pt;}
.ws2b{word-spacing:36.992000pt;}
.ws4e{word-spacing:38.080000pt;}
.ws4d{word-spacing:39.168000pt;}
.ws36{word-spacing:43.392000pt;}
.ws51{word-spacing:44.480000pt;}
.ws59{word-spacing:47.680000pt;}
.ws4a{word-spacing:63.680000pt;}
.ws53{word-spacing:91.392000pt;}
.ws54{word-spacing:92.480000pt;}
.ws52{word-spacing:171.392000pt;}
._25{margin-left:-10.688000pt;}
._7{margin-left:-9.600000pt;}
._24{margin-left:-6.717867pt;}
._5{margin-left:-4.480000pt;}
._6{margin-left:-3.114667pt;}
._11{margin-left:-2.048000pt;}
._3{margin-left:-1.132800pt;}
._1{width:1.109333pt;}
._2{width:2.010667pt;}
._b{width:2.944000pt;}
._12{width:4.608000pt;}
._8{width:5.738667pt;}
._f{width:7.104000pt;}
._10{width:8.085333pt;}
._9{width:9.024000pt;}
._a{width:10.560000pt;}
._16{width:11.513600pt;}
._21{width:12.864000pt;}
._18{width:13.994667pt;}
._1d{width:15.296000pt;}
._1a{width:16.490667pt;}
._19{width:19.303467pt;}
._1c{width:20.202667pt;}
._1b{width:21.178667pt;}
._13{width:22.074667pt;}
._1e{width:23.253333pt;}
._14{width:24.279467pt;}
._4{width:25.600000pt;}
._17{width:27.114667pt;}
._1f{width:28.261333pt;}
._22{width:30.274133pt;}
._15{width:31.210667pt;}
._c{width:34.901333pt;}
._e{width:36.544000pt;}
._23{width:37.952000pt;}
._28{width:39.509333pt;}
._29{width:47.276800pt;}
._d{width:48.320000pt;}
._20{width:64.064000pt;}
._2a{width:83.200000pt;}
._26{width:90.602667pt;}
._27{width:92.096000pt;}
._2b{width:135.424000pt;}
._0{width:750.208000pt;}
.fs4{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y10{bottom:2.933333pt;}
.yc3{bottom:12.533333pt;}
.yc7{bottom:12.800000pt;}
.y9d{bottom:40.266667pt;}
.ya0{bottom:61.600000pt;}
.ye{bottom:63.200000pt;}
.yff{bottom:68.000000pt;}
.y7{bottom:76.533333pt;}
.yd{bottom:81.064000pt;}
.y11a{bottom:85.600000pt;}
.yc{bottom:98.400000pt;}
.y162{bottom:118.128000pt;}
.y54{bottom:119.978667pt;}
.y3{bottom:123.466667pt;}
.y70{bottom:126.394667pt;}
.y84{bottom:126.400000pt;}
.y6b{bottom:126.405333pt;}
.y6{bottom:127.200000pt;}
.yf7{bottom:139.205333pt;}
.y9{bottom:142.661333pt;}
.y161{bottom:145.600000pt;}
.y53{bottom:147.450667pt;}
.y115{bottom:149.333333pt;}
.y90{bottom:149.850667pt;}
.y3d{bottom:154.122667pt;}
.y83{bottom:154.128000pt;}
.y6a{bottom:154.133333pt;}
.yc1{bottom:155.728000pt;}
.ydd{bottom:167.733333pt;}
.yf6{bottom:169.605333pt;}
.y160{bottom:173.328000pt;}
.y8{bottom:173.333333pt;}
.y52{bottom:175.178667pt;}
.y114{bottom:176.805333pt;}
.y7b{bottom:177.066667pt;}
.y8f{bottom:177.322667pt;}
.yfd{bottom:179.466667pt;}
.y3c{bottom:181.594667pt;}
.y6f{bottom:181.600000pt;}
.y69{bottom:181.605333pt;}
.yc0{bottom:183.200000pt;}
.ydc{bottom:195.205333pt;}
.y16c{bottom:196.533333pt;}
.yf5{bottom:197.333333pt;}
.y12e{bottom:200.266667pt;}
.y15f{bottom:200.800000pt;}
.y51{bottom:202.650667pt;}
.y113{bottom:204.533333pt;}
.y8e{bottom:205.050667pt;}
.y7a{bottom:206.106667pt;}
.y3b{bottom:209.322667pt;}
.y6e{bottom:209.328000pt;}
.y68{bottom:209.333333pt;}
.ybf{bottom:210.928000pt;}
.ydb{bottom:222.933333pt;}
.yf4{bottom:224.805333pt;}
.y12d{bottom:227.728000pt;}
.y15e{bottom:228.528000pt;}
.y50{bottom:230.378667pt;}
.y112{bottom:232.005333pt;}
.y8d{bottom:232.522667pt;}
.y79{bottom:233.306667pt;}
.y3a{bottom:236.794667pt;}
.y6d{bottom:236.800000pt;}
.y67{bottom:236.805333pt;}
.ybe{bottom:238.400000pt;}
.y118{bottom:243.722667pt;}
.yda{bottom:250.405333pt;}
.yf3{bottom:252.533333pt;}
.yfa{bottom:254.666667pt;}
.y12c{bottom:255.456000pt;}
.y15d{bottom:256.000000pt;}
.y4f{bottom:257.850667pt;}
.y111{bottom:259.733333pt;}
.y8c{bottom:260.250667pt;}
.y78{bottom:262.378667pt;}
.y39{bottom:264.522667pt;}
.y6c{bottom:264.528000pt;}
.y66{bottom:264.533333pt;}
.ybd{bottom:266.128000pt;}
.yd9{bottom:278.133333pt;}
.yf2{bottom:280.005333pt;}
.y12b{bottom:282.928000pt;}
.y15c{bottom:283.728000pt;}
.y4e{bottom:285.578667pt;}
.y110{bottom:287.205333pt;}
.y8b{bottom:287.722667pt;}
.y77{bottom:289.578667pt;}
.y38{bottom:291.994667pt;}
.y82{bottom:292.000000pt;}
.y65{bottom:292.005333pt;}
.ybc{bottom:293.600000pt;}
.yd8{bottom:305.605333pt;}
.yf1{bottom:307.733333pt;}
.y12a{bottom:310.656000pt;}
.y15b{bottom:311.200000pt;}
.y4d{bottom:312.778667pt;}
.y10f{bottom:314.933333pt;}
.y8a{bottom:315.450667pt;}
.y76{bottom:318.650667pt;}
.y37{bottom:319.722667pt;}
.y81{bottom:319.728000pt;}
.y64{bottom:319.733333pt;}
.ybb{bottom:321.328000pt;}
.yd7{bottom:333.333333pt;}
.y143{bottom:333.601333pt;}
.yf0{bottom:335.205333pt;}
.y129{bottom:338.128000pt;}
.y15a{bottom:338.928000pt;}
.y4c{bottom:341.850667pt;}
.y10e{bottom:342.405333pt;}
.y89{bottom:342.650667pt;}
.y75{bottom:345.850667pt;}
.y36{bottom:347.194667pt;}
.y80{bottom:347.200000pt;}
.y63{bottom:347.205333pt;}
.yba{bottom:348.800000pt;}
.y9b{bottom:353.594667pt;}
.yef{bottom:362.933333pt;}
.y128{bottom:365.600000pt;}
.y159{bottom:366.400000pt;}
.y4b{bottom:369.322667pt;}
.y10d{bottom:370.133333pt;}
.y142{bottom:370.400000pt;}
.y88{bottom:371.722667pt;}
.y35{bottom:374.922667pt;}
.y7f{bottom:374.928000pt;}
.y62{bottom:374.933333pt;}
.yb9{bottom:376.528000pt;}
.yd6{bottom:377.066667pt;}
.yee{bottom:378.400000pt;}
.y9a{bottom:381.066667pt;}
.y127{bottom:393.328000pt;}
.y158{bottom:394.128000pt;}
.y4a{bottom:396.794667pt;}
.y141{bottom:397.034667pt;}
.y10c{bottom:397.605333pt;}
.y87{bottom:398.922667pt;}
.y34{bottom:402.394667pt;}
.y7e{bottom:402.400000pt;}
.y61{bottom:402.405333pt;}
.yb8{bottom:404.000000pt;}
.yd5{bottom:405.333333pt;}
.yed{bottom:406.666667pt;}
.y99{bottom:408.794667pt;}
.y126{bottom:420.800000pt;}
.y157{bottom:421.600000pt;}
.y140{bottom:424.506667pt;}
.y10b{bottom:425.333333pt;}
.y49{bottom:425.594667pt;}
.y86{bottom:427.722667pt;}
.y33{bottom:430.122667pt;}
.y7d{bottom:430.128000pt;}
.y60{bottom:430.133333pt;}
.yb7{bottom:431.728000pt;}
.yd4{bottom:433.600000pt;}
.yec{bottom:434.933333pt;}
.y98{bottom:436.266667pt;}
.y125{bottom:448.528000pt;}
.y156{bottom:449.328000pt;}
.yfc{bottom:451.466667pt;}
.y13f{bottom:452.234667pt;}
.y10a{bottom:452.805333pt;}
.y48{bottom:453.322667pt;}
.y85{bottom:456.250667pt;}
.y32{bottom:457.594667pt;}
.y7c{bottom:457.600000pt;}
.y5f{bottom:457.605333pt;}
.yb6{bottom:459.200000pt;}
.yd3{bottom:461.866667pt;}
.yeb{bottom:463.200000pt;}
.y97{bottom:463.994667pt;}
.y124{bottom:476.000000pt;}
.y155{bottom:476.800000pt;}
.y117{bottom:479.450667pt;}
.y13e{bottom:479.706667pt;}
.y109{bottom:480.533333pt;}
.y47{bottom:480.794667pt;}
.y31{bottom:485.322667pt;}
.y74{bottom:485.328000pt;}
.y5e{bottom:485.333333pt;}
.yb5{bottom:486.928000pt;}
.yd2{bottom:490.133333pt;}
.y96{bottom:491.466667pt;}
.y123{bottom:503.728000pt;}
.y154{bottom:504.528000pt;}
.y13d{bottom:507.434667pt;}
.y108{bottom:508.005333pt;}
.y46{bottom:508.266667pt;}
.y30{bottom:512.794667pt;}
.y73{bottom:512.800000pt;}
.y5d{bottom:512.805333pt;}
.yb4{bottom:514.400000pt;}
.yd1{bottom:518.400000pt;}
.y95{bottom:519.194667pt;}
.yea{bottom:519.733333pt;}
.y2{bottom:521.066667pt;}
.y122{bottom:531.200000pt;}
.y153{bottom:532.000000pt;}
.y13c{bottom:534.906667pt;}
.y107{bottom:535.733333pt;}
.y45{bottom:537.045333pt;}
.y2f{bottom:540.522667pt;}
.y72{bottom:540.528000pt;}
.y5c{bottom:540.533333pt;}
.yb3{bottom:542.128000pt;}
.y94{bottom:546.666667pt;}
.ye9{bottom:548.000000pt;}
.y5{bottom:558.682667pt;}
.y121{bottom:558.928000pt;}
.y152{bottom:559.733333pt;}
.y13b{bottom:562.378667pt;}
.y106{bottom:563.205333pt;}
.y44{bottom:564.773333pt;}
.y2e{bottom:567.994667pt;}
.y71{bottom:568.000000pt;}
.y5b{bottom:568.005333pt;}
.yb2{bottom:569.600000pt;}
.yd0{bottom:574.933333pt;}
.ye8{bottom:576.266667pt;}
.y93{bottom:585.066667pt;}
.yaf{bottom:585.333333pt;}
.y120{bottom:586.400000pt;}
.y151{bottom:587.200000pt;}
.y105{bottom:590.933333pt;}
.y13a{bottom:591.178667pt;}
.y43{bottom:592.245333pt;}
.y2d{bottom:595.722667pt;}
.y1f{bottom:595.728000pt;}
.y5a{bottom:595.733333pt;}
.yb0{bottom:597.866667pt;}
.y4{bottom:601.600000pt;}
.ycf{bottom:603.200000pt;}
.ye7{bottom:604.533333pt;}
.yb1{bottom:607.200000pt;}
.y92{bottom:612.538667pt;}
.y11f{bottom:614.128000pt;}
.y150{bottom:614.928000pt;}
.y104{bottom:618.405333pt;}
.y139{bottom:618.906667pt;}
.y42{bottom:619.717333pt;}
.y2c{bottom:623.194667pt;}
.y1e{bottom:623.200000pt;}
.y59{bottom:623.205333pt;}
.yce{bottom:631.466667pt;}
.ye6{bottom:632.800000pt;}
.y91{bottom:640.266667pt;}
.yac{bottom:641.066667pt;}
.y11e{bottom:641.600000pt;}
.y14f{bottom:642.400000pt;}
.y138{bottom:646.106667pt;}
.y103{bottom:646.133333pt;}
.y41{bottom:648.517333pt;}
.y2b{bottom:650.922667pt;}
.y1d{bottom:650.928000pt;}
.y58{bottom:650.933333pt;}
.yad{bottom:653.866667pt;}
.y119{bottom:658.666667pt;}
.ycd{bottom:659.733333pt;}
.ye5{bottom:661.066667pt;}
.yae{bottom:662.933333pt;}
.y14e{bottom:670.133333pt;}
.y137{bottom:675.178667pt;}
.y102{bottom:675.733333pt;}
.y40{bottom:675.989333pt;}
.yf9{bottom:678.133333pt;}
.y2a{bottom:678.394667pt;}
.y1c{bottom:678.400000pt;}
.y57{bottom:678.405333pt;}
.ycc{bottom:688.000000pt;}
.y11d{bottom:689.066667pt;}
.ye4{bottom:689.333333pt;}
.y16b{bottom:690.672000pt;}
.yfb{bottom:693.066667pt;}
.y101{bottom:694.133333pt;}
.ya7{bottom:697.066667pt;}
.y14d{bottom:697.600000pt;}
.y136{bottom:702.650667pt;}
.y3f{bottom:705.061333pt;}
.y29{bottom:706.122667pt;}
.y1b{bottom:706.128000pt;}
.y56{bottom:706.133333pt;}
.y11c{bottom:707.466667pt;}
.ya8{bottom:709.600000pt;}
.y100{bottom:712.533333pt;}
.y116{bottom:714.922667pt;}
.yaa{bottom:716.000000pt;}
.ycb{bottom:716.266667pt;}
.ye3{bottom:717.600000pt;}
.y16a{bottom:718.400000pt;}
.yab{bottom:718.933333pt;}
.y14c{bottom:725.333333pt;}
.y11b{bottom:725.866667pt;}
.y135{bottom:730.122667pt;}
.y3e{bottom:732.261333pt;}
.y28{bottom:733.594667pt;}
.y1a{bottom:733.600000pt;}
.y55{bottom:733.605333pt;}
.ya9{bottom:734.400000pt;}
.yca{bottom:744.533333pt;}
.ye2{bottom:745.866667pt;}
.y169{bottom:745.872000pt;}
.ya4{bottom:752.800000pt;}
.y14b{bottom:752.805333pt;}
.y134{bottom:758.922667pt;}
.y27{bottom:761.322667pt;}
.y19{bottom:761.328000pt;}
.y166{bottom:761.333333pt;}
.ya5{bottom:765.600000pt;}
.yfe{bottom:770.133333pt;}
.yc9{bottom:772.800000pt;}
.y168{bottom:773.600000pt;}
.ye1{bottom:774.133333pt;}
.ya6{bottom:774.666667pt;}
.y14a{bottom:780.528000pt;}
.y133{bottom:786.394667pt;}
.y26{bottom:788.794667pt;}
.y18{bottom:788.800000pt;}
.y165{bottom:788.805333pt;}
.yc8{bottom:801.066667pt;}
.ydf{bottom:802.400000pt;}
.y149{bottom:808.000000pt;}
.y9f{bottom:808.800000pt;}
.y132{bottom:815.194667pt;}
.ye0{bottom:815.200000pt;}
.y25{bottom:816.522667pt;}
.y17{bottom:816.528000pt;}
.y164{bottom:816.533333pt;}
.y167{bottom:817.594667pt;}
.ya3{bottom:821.333333pt;}
.yc6{bottom:829.333333pt;}
.y148{bottom:835.733333pt;}
.y131{bottom:842.922667pt;}
.y24{bottom:843.994667pt;}
.y16{bottom:844.000000pt;}
.y163{bottom:844.005333pt;}
.ya2{bottom:849.066667pt;}
.yc4{bottom:857.600000pt;}
.yde{bottom:858.400000pt;}
.y147{bottom:863.200000pt;}
.ya1{bottom:867.466667pt;}
.y130{bottom:870.394667pt;}
.yc5{bottom:870.400000pt;}
.y23{bottom:871.722667pt;}
.y15{bottom:871.728000pt;}
.y9c{bottom:885.866667pt;}
.y146{bottom:890.933333pt;}
.y12f{bottom:897.866667pt;}
.y9e{bottom:898.666667pt;}
.y22{bottom:899.194667pt;}
.y14{bottom:899.200000pt;}
.yc2{bottom:913.600000pt;}
.y145{bottom:918.400000pt;}
.y21{bottom:926.666667pt;}
.y13{bottom:926.672000pt;}
.y20{bottom:954.394667pt;}
.y12{bottom:954.400000pt;}
.y144{bottom:955.466667pt;}
.yf8{bottom:962.138667pt;}
.y11{bottom:981.866667pt;}
.y1{bottom:1013.066667pt;}
.yb{bottom:1013.069333pt;}
.ya{bottom:1030.933333pt;}
.yf{bottom:1050.933333pt;}
.h8{height:15.466667pt;}
.h11{height:27.466667pt;}
.h13{height:27.733333pt;}
.h14{height:27.734667pt;}
.h7{height:40.161458pt;}
.h12{height:46.593750pt;}
.h9{height:48.151042pt;}
.h18{height:52.593750pt;}
.h1a{height:52.966146pt;}
.hf{height:55.200000pt;}
.h19{height:57.369667pt;}
.h6{height:57.375000pt;}
.h1b{height:57.396333pt;}
.h1c{height:57.417667pt;}
.h2{height:57.781250pt;}
.hd{height:59.562000pt;}
.hc{height:59.583333pt;}
.he{height:59.604667pt;}
.ha{height:59.626000pt;}
.hb{height:59.668667pt;}
.h10{height:76.533333pt;}
.h1d{height:82.933333pt;}
.h16{height:82.934667pt;}
.h5{height:91.466667pt;}
.h17{height:100.533333pt;}
.h4{height:125.192708pt;}
.h3{height:156.266667pt;}
.h15{height:268.533333pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.wd{width:46.666667pt;}
.wa{width:72.798667pt;}
.w10{width:79.733333pt;}
.wf{width:95.732000pt;}
.w5{width:108.533333pt;}
.w6{width:109.866667pt;}
.w8{width:110.133333pt;}
.w9{width:110.666667pt;}
.wc{width:117.600000pt;}
.w7{width:124.001333pt;}
.we{width:175.998667pt;}
.wb{width:235.466667pt;}
.w14{width:305.600000pt;}
.w13{width:327.466667pt;}
.w3{width:331.733333pt;}
.w11{width:427.200000pt;}
.w12{width:562.933333pt;}
.w4{width:565.600000pt;}
.w2{width:615.198667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:6.666667pt;}
.x23{left:8.533333pt;}
.x2b{left:10.666667pt;}
.x45{left:14.133333pt;}
.x25{left:15.200000pt;}
.x2a{left:17.333333pt;}
.x15{left:19.200000pt;}
.x3d{left:22.933333pt;}
.x10{left:24.000000pt;}
.x3c{left:27.466667pt;}
.x3a{left:32.000000pt;}
.x2e{left:36.266667pt;}
.x3b{left:38.666667pt;}
.x35{left:41.600000pt;}
.x3{left:44.533333pt;}
.x17{left:53.866667pt;}
.x32{left:65.333333pt;}
.x2{left:78.666667pt;}
.x30{left:83.466667pt;}
.x7{left:107.200000pt;}
.x1{left:113.333333pt;}
.x48{left:115.466667pt;}
.x4b{left:120.533333pt;}
.x49{left:121.600000pt;}
.x2d{left:124.266667pt;}
.x4{left:126.133333pt;}
.xb{left:137.333333pt;}
.x22{left:146.400000pt;}
.x28{left:148.800000pt;}
.xc{left:161.333333pt;}
.x46{left:183.200000pt;}
.x2f{left:197.600000pt;}
.x4a{left:207.733333pt;}
.x47{left:213.600000pt;}
.x33{left:215.466667pt;}
.xf{left:223.200000pt;}
.x24{left:230.133333pt;}
.x29{left:231.733333pt;}
.x18{left:234.400000pt;}
.x1a{left:242.133333pt;}
.x3e{left:244.266667pt;}
.x40{left:251.200000pt;}
.x19{left:254.666667pt;}
.x5{left:294.682667pt;}
.x34{left:315.733333pt;}
.x11{left:333.866667pt;}
.x41{left:340.533333pt;}
.x36{left:341.600000pt;}
.x26{left:347.466667pt;}
.x12{left:352.533333pt;}
.x1c{left:362.133333pt;}
.x1b{left:367.200000pt;}
.x6{left:402.933333pt;}
.x8{left:417.866667pt;}
.x3f{left:420.800000pt;}
.x42{left:427.733333pt;}
.x31{left:433.866667pt;}
.x4c{left:440.800000pt;}
.x4d{left:448.000000pt;}
.x37{left:451.733333pt;}
.x13{left:458.400000pt;}
.x27{left:465.333333pt;}
.x1d{left:469.600000pt;}
.x1f{left:477.333333pt;}
.x1e{left:489.866667pt;}
.x43{left:517.066667pt;}
.x44{left:524.000000pt;}
.x38{left:552.000000pt;}
.x14{left:569.066667pt;}
.x2c{left:576.266667pt;}
.x39{left:577.866667pt;}
.x20{left:580.533333pt;}
.x9{left:586.666667pt;}
.x21{left:588.266667pt;}
.x16{left:600.800000pt;}
.xd{left:640.800000pt;}
.xa{left:647.466667pt;}
}




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