
    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_07431564c9b9dd4e9d03d844.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_b0ee069cfdae40fef5005f99.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973633;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_1e5a6def478cf66c854af401.woff')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_4017abafd295ecdc4a5d0e15.woff')format("woff");}.ff4{font-family:ff4;line-height:0.958008;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_7d081459ec19ba529d568752.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_d44ecf19eef22ac48c80e663.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_59a701dc2a56cebb775f4a66.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_82ea068686d5dd9d757799fb.woff')format("woff");}.ff8{font-family:ff8;line-height:1.123000;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_90a58deaaac3390b05cc4638.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000048;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_258b7cd58f73c4f23dd52b26.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_9efaf70d167bee072d7ba5b3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.964852;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_1925143f16746df97dc7570a.woff')format("woff");}.ffc{font-family:ffc;line-height:0.966309;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_f532d960ae98b022f426e650.woff')format("woff");}.ffd{font-family:ffd;line-height:0.966309;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_892de54c3dbfc0b6bc9b8ff4.woff')format("woff");}.ffe{font-family:ffe;line-height:0.902832;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_ef009673eef491936b7a0419.woff')format("woff");}.fff{font-family:fff;line-height:0.984000;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_2345a8bd2ca648fbd31f891b.woff')format("woff");}.ff10{font-family:ff10;line-height:0.700684;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_d6dafba4029ea796ab0b4016.woff')format("woff");}.ff11{font-family:ff11;line-height:0.684570;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_b66b2fc1d3bcb308d0214b40.woff')format("woff");}.ff12{font-family:ff12;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_bb928909f40f871a68db8911.woff')format("woff");}.ff13{font-family:ff13;line-height:0.702148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_52be65f8d5e3be25a7f78647.woff')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_3d20a0f08eff0d6649fd6375.woff')format("woff");}.ff15{font-family:ff15;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_e8de87a7636ad7679bcc4e72.woff')format("woff");}.ff16{font-family:ff16;line-height:0.770020;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;}
.m4{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244997,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244997,0.000000,0.000000,0.250000,0,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);}
.m3{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:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.982000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:30.000000px;}
.ls12{letter-spacing:-1.920000px;}
.ls14{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-1.056000px;}
.ls15{letter-spacing:-0.972000px;}
.ls13{letter-spacing:-0.792000px;}
.ls9{letter-spacing:-0.726000px;}
.ls7{letter-spacing:-0.691200px;}
.ls6{letter-spacing:-0.510000px;}
.ls11{letter-spacing:-0.480000px;}
.ls4{letter-spacing:-0.408000px;}
.lse{letter-spacing:-0.270000px;}
.lsb{letter-spacing:-0.264000px;}
.ls5{letter-spacing:-0.204000px;}
.ls16{letter-spacing:-0.180000px;}
.lsf{letter-spacing:-0.157410px;}
.ls8{letter-spacing:-0.054000px;}
.ls3{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000600px;}
.ls1{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.025800px;}
.ls10{letter-spacing:0.059713px;}
.lsd{letter-spacing:8.460144px;}
.ls0{letter-spacing:43.181364px;}
.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;}
}
.ws6{word-spacing:-17.928000px;}
.ws64{word-spacing:-16.500000px;}
.wsb6{word-spacing:-16.434000px;}
.ws4{word-spacing:-14.940000px;}
.ws7d{word-spacing:-13.500000px;}
.ws5{word-spacing:-13.446000px;}
.ws8d{word-spacing:-13.230000px;}
.ws7c{word-spacing:-12.960000px;}
.wsc2{word-spacing:-12.528000px;}
.ws9{word-spacing:-12.150000px;}
.ws8{word-spacing:-12.042000px;}
.ws66{word-spacing:-12.000000px;}
.ws7{word-spacing:-11.772000px;}
.ws9a{word-spacing:-11.520000px;}
.ws2{word-spacing:-10.896000px;}
.ws2b{word-spacing:-10.800000px;}
.ws7b{word-spacing:-9.619500px;}
.ws1{word-spacing:-9.542544px;}
.ws3{word-spacing:-9.417600px;}
.ws8e{word-spacing:-7.870500px;}
.ws89{word-spacing:-4.374000px;}
.ws7a{word-spacing:-3.168000px;}
.ws25{word-spacing:-3.102000px;}
.ws47{word-spacing:-2.970000px;}
.wsab{word-spacing:-2.904000px;}
.ws98{word-spacing:-2.772000px;}
.ws86{word-spacing:-2.706000px;}
.ws12{word-spacing:-2.700000px;}
.wse6{word-spacing:-2.646000px;}
.ws59{word-spacing:-2.574000px;}
.wsc1{word-spacing:-2.538000px;}
.ws4e{word-spacing:-2.508000px;}
.wsdd{word-spacing:-2.484000px;}
.wsa4{word-spacing:-2.442000px;}
.ws8a{word-spacing:-2.430000px;}
.ws79{word-spacing:-2.376000px;}
.ws43{word-spacing:-2.310000px;}
.ws57{word-spacing:-2.244000px;}
.wse9{word-spacing:-2.214000px;}
.ws3b{word-spacing:-2.178000px;}
.ws16{word-spacing:-2.160000px;}
.ws7e{word-spacing:-2.112000px;}
.ws17{word-spacing:-2.106000px;}
.wsa2{word-spacing:-2.046000px;}
.ws18{word-spacing:-1.998000px;}
.ws6b{word-spacing:-1.980000px;}
.ws88{word-spacing:-1.944000px;}
.ws78{word-spacing:-1.848000px;}
.ws3d{word-spacing:-1.782000px;}
.ws1b{word-spacing:-1.728000px;}
.ws48{word-spacing:-1.716000px;}
.ws7f{word-spacing:-1.650000px;}
.ws76{word-spacing:-1.584000px;}
.wsb7{word-spacing:-1.518000px;}
.ws5a{word-spacing:-1.452000px;}
.wsda{word-spacing:-1.404000px;}
.ws5e{word-spacing:-1.386000px;}
.wsdb{word-spacing:-1.350000px;}
.wsac{word-spacing:-1.320000px;}
.wsf{word-spacing:-1.254000px;}
.wsbb{word-spacing:-1.242000px;}
.wsbd{word-spacing:-1.188000px;}
.ws52{word-spacing:-1.122000px;}
.ws1a{word-spacing:-1.080000px;}
.ws73{word-spacing:-1.056000px;}
.wsbf{word-spacing:-1.026000px;}
.wsa9{word-spacing:-0.990000px;}
.ws5d{word-spacing:-0.924000px;}
.wsd6{word-spacing:-0.918000px;}
.ws61{word-spacing:-0.858000px;}
.ws8b{word-spacing:-0.810000px;}
.ws58{word-spacing:-0.792000px;}
.wsd5{word-spacing:-0.756000px;}
.ws70{word-spacing:-0.726000px;}
.ws14{word-spacing:-0.702000px;}
.ws1d{word-spacing:-0.594000px;}
.ws1c{word-spacing:-0.540000px;}
.wsa8{word-spacing:-0.462000px;}
.ws15{word-spacing:-0.432000px;}
.ws75{word-spacing:-0.396000px;}
.wsb0{word-spacing:-0.330000px;}
.ws42{word-spacing:-0.264000px;}
.ws10{word-spacing:-0.216000px;}
.ws24{word-spacing:-0.198000px;}
.wscd{word-spacing:-0.162000px;}
.ws38{word-spacing:-0.132000px;}
.wsa{word-spacing:-0.111318px;}
.ws6f{word-spacing:-0.066000px;}
.ws94{word-spacing:-0.059713px;}
.wse4{word-spacing:-0.054000px;}
.ws8c{word-spacing:-0.048000px;}
.ws92{word-spacing:-0.036624px;}
.wsb{word-spacing:0.000000px;}
.ws84{word-spacing:0.066000px;}
.wsaa{word-spacing:0.132000px;}
.ws93{word-spacing:0.157410px;}
.ws87{word-spacing:0.162000px;}
.wse5{word-spacing:0.180000px;}
.wsa7{word-spacing:0.198000px;}
.wsd{word-spacing:0.204000px;}
.ws4d{word-spacing:0.264000px;}
.ws2a{word-spacing:0.330000px;}
.ws9f{word-spacing:0.396000px;}
.wsc{word-spacing:0.408000px;}
.ws39{word-spacing:0.462000px;}
.wse{word-spacing:0.510000px;}
.ws2d{word-spacing:0.528000px;}
.wse1{word-spacing:0.540000px;}
.ws11{word-spacing:0.691200px;}
.wseb{word-spacing:0.702000px;}
.ws4f{word-spacing:0.726000px;}
.wsba{word-spacing:0.792000px;}
.ws34{word-spacing:0.858000px;}
.ws9d{word-spacing:0.864000px;}
.ws35{word-spacing:0.924000px;}
.ws20{word-spacing:1.080000px;}
.wsb2{word-spacing:1.122000px;}
.ws71{word-spacing:1.188000px;}
.ws22{word-spacing:1.242000px;}
.ws26{word-spacing:1.254000px;}
.wsc7{word-spacing:1.350000px;}
.ws30{word-spacing:1.386000px;}
.ws3a{word-spacing:1.452000px;}
.ws21{word-spacing:1.512000px;}
.ws4b{word-spacing:1.518000px;}
.ws4c{word-spacing:1.584000px;}
.wsbc{word-spacing:1.620000px;}
.ws6d{word-spacing:1.650000px;}
.ws19{word-spacing:1.674000px;}
.wse3{word-spacing:1.836000px;}
.ws74{word-spacing:1.848000px;}
.wsc5{word-spacing:1.944000px;}
.wsce{word-spacing:2.052000px;}
.ws2c{word-spacing:2.112000px;}
.wsdf{word-spacing:2.160000px;}
.ws51{word-spacing:2.178000px;}
.ws3c{word-spacing:2.244000px;}
.ws1e{word-spacing:2.268000px;}
.ws72{word-spacing:2.310000px;}
.wse0{word-spacing:2.322000px;}
.ws45{word-spacing:2.376000px;}
.ws85{word-spacing:2.508000px;}
.wsb1{word-spacing:2.574000px;}
.ws36{word-spacing:2.640000px;}
.ws29{word-spacing:2.706000px;}
.wse8{word-spacing:2.754000px;}
.ws3e{word-spacing:2.772000px;}
.ws3f{word-spacing:2.838000px;}
.wsc8{word-spacing:2.862000px;}
.ws41{word-spacing:2.904000px;}
.ws62{word-spacing:2.970000px;}
.wsa3{word-spacing:3.036000px;}
.wsc4{word-spacing:3.078000px;}
.wsb9{word-spacing:3.102000px;}
.ws53{word-spacing:3.168000px;}
.wse2{word-spacing:3.186000px;}
.wsae{word-spacing:3.234000px;}
.wsca{word-spacing:3.294000px;}
.ws6a{word-spacing:3.300000px;}
.wsc3{word-spacing:3.348000px;}
.ws97{word-spacing:3.366000px;}
.ws67{word-spacing:3.498000px;}
.ws46{word-spacing:3.564000px;}
.wsbe{word-spacing:3.672000px;}
.ws83{word-spacing:3.696000px;}
.ws5c{word-spacing:3.762000px;}
.wsc0{word-spacing:3.780000px;}
.wsc9{word-spacing:3.834000px;}
.ws23{word-spacing:3.894000px;}
.ws50{word-spacing:3.960000px;}
.ws33{word-spacing:4.026000px;}
.wsd1{word-spacing:4.050000px;}
.ws82{word-spacing:4.092000px;}
.ws1f{word-spacing:4.158000px;}
.ws63{word-spacing:4.224000px;}
.ws77{word-spacing:4.290000px;}
.ws44{word-spacing:4.356000px;}
.wsd2{word-spacing:4.374000px;}
.ws6e{word-spacing:4.488000px;}
.ws49{word-spacing:4.554000px;}
.ws13{word-spacing:4.590000px;}
.ws55{word-spacing:4.620000px;}
.wsaf{word-spacing:4.686000px;}
.wscc{word-spacing:4.698000px;}
.wsa5{word-spacing:4.752000px;}
.ws28{word-spacing:4.884000px;}
.ws4a{word-spacing:4.950000px;}
.wscb{word-spacing:5.076000px;}
.wsd8{word-spacing:5.130000px;}
.ws27{word-spacing:5.148000px;}
.ws32{word-spacing:5.214000px;}
.wsd4{word-spacing:5.238000px;}
.ws9e{word-spacing:5.280000px;}
.ws2e{word-spacing:5.346000px;}
.ws37{word-spacing:5.412000px;}
.wsb8{word-spacing:5.478000px;}
.ws40{word-spacing:6.072000px;}
.wsd7{word-spacing:6.102000px;}
.wsea{word-spacing:6.318000px;}
.ws5f{word-spacing:6.402000px;}
.wsd0{word-spacing:6.588000px;}
.ws56{word-spacing:6.666000px;}
.wsdc{word-spacing:6.696000px;}
.wscf{word-spacing:6.750000px;}
.ws60{word-spacing:6.798000px;}
.ws69{word-spacing:6.864000px;}
.wse7{word-spacing:6.966000px;}
.wsa0{word-spacing:6.996000px;}
.wsa1{word-spacing:7.194000px;}
.wsc6{word-spacing:7.452000px;}
.wsa6{word-spacing:7.458000px;}
.ws80{word-spacing:7.524000px;}
.ws54{word-spacing:7.656000px;}
.wsde{word-spacing:7.722000px;}
.ws91{word-spacing:7.947408px;}
.ws2f{word-spacing:8.052000px;}
.wsb4{word-spacing:8.118000px;}
.ws5b{word-spacing:8.250000px;}
.wsb3{word-spacing:8.316000px;}
.ws81{word-spacing:8.580000px;}
.wsad{word-spacing:8.778000px;}
.ws95{word-spacing:8.976000px;}
.ws31{word-spacing:9.042000px;}
.ws6c{word-spacing:9.306000px;}
.wsb5{word-spacing:9.636000px;}
.wsd9{word-spacing:9.666000px;}
.ws68{word-spacing:9.834000px;}
.wsd3{word-spacing:10.152000px;}
.ws96{word-spacing:13.662000px;}
.ws90{word-spacing:14.689447px;}
.ws8f{word-spacing:30.035740px;}
.ws0{word-spacing:33.650535px;}
.ws99{word-spacing:103.041600px;}
.ws9b{word-spacing:431.461200px;}
.ws9c{word-spacing:449.892600px;}
.ws65{word-spacing:1191.338400px;}
._d{margin-left:-12.370800px;}
._b{margin-left:-11.286000px;}
._7{margin-left:-9.730200px;}
._9{margin-left:-8.526600px;}
._a{margin-left:-6.674400px;}
._6{margin-left:-5.135400px;}
._5{margin-left:-3.780000px;}
._3{margin-left:-2.739639px;}
._0{margin-left:-1.734000px;}
._1{width:1.117200px;}
._8{width:2.295000px;}
._2{width:3.488400px;}
._c{width:4.600200px;}
._33{width:7.436400px;}
._18{width:8.562600px;}
._23{width:10.071600px;}
._4{width:36.624000px;}
._34{width:43.519800px;}
._35{width:45.284400px;}
._19{width:65.610600px;}
._26{width:72.606000px;}
._1a{width:78.375600px;}
._27{width:120.867000px;}
._25{width:188.403000px;}
._2d{width:245.025600px;}
._2b{width:246.423000px;}
._10{width:249.336000px;}
._24{width:252.721272px;}
._29{width:255.942000px;}
._2c{width:257.620800px;}
._2f{width:260.548200px;}
._30{width:261.940200px;}
._28{width:264.579600px;}
._2a{width:266.548800px;}
._31{width:268.420800px;}
._32{width:276.100200px;}
._15{width:281.496000px;}
._f{width:283.416000px;}
._14{width:291.386400px;}
._e{width:323.738400px;}
._12{width:332.520000px;}
._11{width:377.592000px;}
._13{width:394.398000px;}
._2e{width:422.053200px;}
._17{width:447.288000px;}
._16{width:455.448000px;}
._1b{width:611.060400px;}
._1d{width:622.976400px;}
._1f{width:634.976400px;}
._1c{width:658.976400px;}
._1e{width:672.287439px;}
._21{width:682.976400px;}
._20{width:684.287439px;}
._22{width:732.287439px;}
.fc3{color:rgb(67,33,78);}
.fc1{color:rgb(59,28,68);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:22.096800px;}
.fsb{font-size:31.482000px;}
.fsd{font-size:36.624000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fsc{font-size:59.713200px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.fsa{font-size:111.318000px;}
.y0{bottom:0.000000px;}
.y3d{bottom:1.204950px;}
.y3e{bottom:45.774196px;}
.y1{bottom:68.124750px;}
.y40{bottom:71.212050px;}
.y41{bottom:75.036150px;}
.yb5{bottom:113.078700px;}
.y76{bottom:113.078850px;}
.y2b{bottom:117.212700px;}
.yc{bottom:117.875550px;}
.ya3{bottom:118.379550px;}
.y65{bottom:122.029800px;}
.yb{bottom:132.275550px;}
.yb4{bottom:134.078700px;}
.y75{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.ya2{bottom:140.685750px;}
.ya{bottom:146.675550px;}
.yb3{bottom:155.078700px;}
.y74{bottom:155.078850px;}
.yd3{bottom:157.890750px;}
.y29{bottom:159.212700px;}
.y9{bottom:161.075550px;}
.ya1{bottom:162.991950px;}
.yd6{bottom:170.584200px;}
.yb2{bottom:176.078700px;}
.y73{bottom:176.078850px;}
.y28{bottom:180.212700px;}
.ya0{bottom:185.298150px;}
.yb1{bottom:197.078700px;}
.y72{bottom:197.078850px;}
.y39{bottom:199.392600px;}
.y27{bottom:201.212700px;}
.y9f{bottom:207.604350px;}
.y38{bottom:217.392600px;}
.yb0{bottom:218.078700px;}
.y71{bottom:218.078850px;}
.y26{bottom:222.212700px;}
.y9e{bottom:222.604350px;}
.y37{bottom:235.392600px;}
.yaf{bottom:239.078700px;}
.y70{bottom:239.078850px;}
.y25{bottom:243.212700px;}
.y9d{bottom:246.087600px;}
.y36{bottom:253.392600px;}
.yec{bottom:253.441050px;}
.yae{bottom:260.078700px;}
.y6f{bottom:260.078850px;}
.yd1{bottom:260.284200px;}
.y24{bottom:264.212700px;}
.y9c{bottom:268.393800px;}
.y35{bottom:271.392600px;}
.yd0{bottom:280.084200px;}
.yad{bottom:281.078700px;}
.y6e{bottom:281.078850px;}
.y34{bottom:289.392600px;}
.y9b{bottom:290.700000px;}
.y23{bottom:295.604400px;}
.ycf{bottom:299.884200px;}
.yac{bottom:302.078700px;}
.y6d{bottom:302.078850px;}
.y33{bottom:307.392600px;}
.y9a{bottom:313.006050px;}
.yd2{bottom:320.214000px;}
.yab{bottom:323.078700px;}
.y6c{bottom:323.078850px;}
.y32{bottom:325.392600px;}
.yd4{bottom:330.736350px;}
.y99{bottom:335.312250px;}
.y31{bottom:343.392600px;}
.yaa{bottom:344.078700px;}
.y6b{bottom:344.078850px;}
.yeb{bottom:349.529400px;}
.y98{bottom:357.618450px;}
.y30{bottom:361.392600px;}
.ya9{bottom:365.078700px;}
.y6a{bottom:365.078850px;}
.y22{bottom:367.627950px;}
.ya8{bottom:386.078700px;}
.y69{bottom:386.078850px;}
.y97{bottom:387.800250px;}
.y2f{bottom:396.400500px;}
.ye3{bottom:396.708600px;}
.ya7{bottom:407.078700px;}
.y68{bottom:407.078850px;}
.y21{bottom:408.687900px;}
.y2e{bottom:414.400500px;}
.yd5{bottom:422.638350px;}
.ya6{bottom:428.078700px;}
.y64{bottom:428.078850px;}
.y20{bottom:428.487900px;}
.y2d{bottom:432.400500px;}
.ye2{bottom:447.162900px;}
.y1f{bottom:448.287900px;}
.y96{bottom:449.078700px;}
.y63{bottom:449.078850px;}
.y2c{bottom:450.400500px;}
.yea{bottom:454.529400px;}
.y1e{bottom:468.087900px;}
.ye1{bottom:469.469100px;}
.y95{bottom:470.078700px;}
.y62{bottom:470.078850px;}
.y1d{bottom:487.887900px;}
.y94{bottom:491.078700px;}
.y61{bottom:491.078850px;}
.ye0{bottom:491.775300px;}
.y1c{bottom:507.687900px;}
.y93{bottom:512.078700px;}
.y60{bottom:512.078850px;}
.yde{bottom:514.081500px;}
.ydd{bottom:521.581500px;}
.ydb{bottom:524.171550px;}
.y1b{bottom:527.487900px;}
.ydf{bottom:529.081500px;}
.y92{bottom:533.078700px;}
.y5f{bottom:533.078850px;}
.yda{bottom:539.171550px;}
.y1a{bottom:547.287900px;}
.ydc{bottom:549.261750px;}
.y91{bottom:554.078700px;}
.y5e{bottom:554.078850px;}
.yef{bottom:557.078850px;}
.ye9{bottom:559.529400px;}
.ya5{bottom:564.785100px;}
.y19{bottom:567.087900px;}
.y90{bottom:575.078700px;}
.y5d{bottom:575.078850px;}
.yd9{bottom:579.443550px;}
.y18{bottom:586.887900px;}
.y8f{bottom:596.078700px;}
.y5c{bottom:596.078850px;}
.ya4{bottom:597.082650px;}
.yd8{bottom:599.243550px;}
.y17{bottom:606.687900px;}
.y8e{bottom:617.078700px;}
.y5b{bottom:617.078850px;}
.y16{bottom:626.487900px;}
.y8d{bottom:638.078700px;}
.y5a{bottom:638.078850px;}
.ye8{bottom:643.529400px;}
.y15{bottom:646.287900px;}
.yb8{bottom:649.404900px;}
.y8c{bottom:659.078700px;}
.y59{bottom:659.078850px;}
.y14{bottom:666.087900px;}
.yb7{bottom:669.204900px;}
.yd7{bottom:670.177350px;}
.y8b{bottom:680.078700px;}
.y58{bottom:680.078850px;}
.y13{bottom:685.887900px;}
.yb6{bottom:689.004900px;}
.y8a{bottom:701.078700px;}
.y57{bottom:701.078850px;}
.y12{bottom:705.687900px;}
.ye7{bottom:706.529400px;}
.yce{bottom:718.362450px;}
.y89{bottom:722.078700px;}
.y56{bottom:722.078850px;}
.y11{bottom:725.487900px;}
.ycd{bottom:736.841850px;}
.y88{bottom:743.078700px;}
.y55{bottom:743.078850px;}
.y10{bottom:745.287900px;}
.ycc{bottom:755.321250px;}
.y87{bottom:764.078700px;}
.y54{bottom:764.078850px;}
.yf{bottom:765.087900px;}
.ye6{bottom:769.529250px;}
.ycb{bottom:773.800650px;}
.y86{bottom:785.078700px;}
.y53{bottom:785.078850px;}
.yca{bottom:792.280200px;}
.ye{bottom:796.185300px;}
.y85{bottom:806.078700px;}
.y52{bottom:806.078850px;}
.yc9{bottom:810.759450px;}
.yee{bottom:819.513600px;}
.y84{bottom:827.078700px;}
.y51{bottom:827.078850px;}
.yc8{bottom:829.239000px;}
.ye5{bottom:832.937100px;}
.yc7{bottom:847.718400px;}
.y83{bottom:848.078700px;}
.y50{bottom:848.078850px;}
.yed{bottom:851.811000px;}
.ye4{bottom:862.441050px;}
.yc6{bottom:866.197800px;}
.y82{bottom:869.078700px;}
.y4f{bottom:869.078850px;}
.y8{bottom:875.466750px;}
.yc5{bottom:884.677200px;}
.y81{bottom:890.078700px;}
.y4e{bottom:890.078850px;}
.y7{bottom:893.466750px;}
.yc4{bottom:903.156600px;}
.y80{bottom:911.078700px;}
.y4d{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.yc3{bottom:921.636150px;}
.y7f{bottom:932.078700px;}
.y4c{bottom:932.078850px;}
.yc2{bottom:940.115550px;}
.y67{bottom:945.513600px;}
.y5{bottom:946.474800px;}
.y7e{bottom:953.078700px;}
.y4b{bottom:953.078850px;}
.yc1{bottom:958.594800px;}
.y7d{bottom:974.078700px;}
.y4a{bottom:974.078850px;}
.yc0{bottom:977.074350px;}
.y66{bottom:977.811000px;}
.y4{bottom:983.282550px;}
.y7c{bottom:995.078700px;}
.y49{bottom:995.078850px;}
.ybf{bottom:995.553750px;}
.ybe{bottom:1014.033150px;}
.y7b{bottom:1016.078700px;}
.y48{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.ybd{bottom:1032.512550px;}
.y7a{bottom:1037.078700px;}
.y47{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.ybc{bottom:1050.991950px;}
.y79{bottom:1058.078700px;}
.y46{bottom:1058.078850px;}
.ybb{bottom:1069.471500px;}
.y78{bottom:1079.078700px;}
.y45{bottom:1079.078850px;}
.yba{bottom:1088.250750px;}
.y44{bottom:1100.078850px;}
.yd{bottom:1109.815500px;}
.y77{bottom:1110.569850px;}
.yb9{bottom:1119.282900px;}
.y43{bottom:1121.078850px;}
.y3c{bottom:1135.732500px;}
.y3f{bottom:1152.015600px;}
.y3b{bottom:1155.615300px;}
.y3a{bottom:1175.115300px;}
.y42{bottom:1178.691750px;}
.hf{height:16.788389px;}
.h17{height:24.696164px;}
.h13{height:34.320000px;}
.h6{height:34.446094px;}
.h2{height:38.039062px;}
.h11{height:38.273438px;}
.h5{height:38.531250px;}
.h14{height:40.992000px;}
.h7{height:41.053711px;}
.h16{height:41.461021px;}
.hd{height:42.793945px;}
.h1b{height:42.900000px;}
.hc{height:43.057617px;}
.h8{height:45.615234px;}
.h9{height:46.116000px;}
.h12{height:50.176758px;}
.he{height:50.566500px;}
.h4{height:50.836500px;}
.ha{height:54.738281px;}
.hb{height:56.364000px;}
.h19{height:64.320000px;}
.h3{height:77.545898px;}
.h18{height:78.342000px;}
.h10{height:80.825130px;}
.h1a{height:94.320000px;}
.h15{height:368.740500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:185.884500px;}
.w3{width:518.740500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:12.737550px;}
.x2{left:73.984200px;}
.xb{left:107.068950px;}
.xd{left:108.286950px;}
.xa{left:111.091350px;}
.xf{left:112.251900px;}
.x18{left:113.595900px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.x19{left:132.435750px;}
.xe{left:162.261300px;}
.x1b{left:226.771500px;}
.x10{left:271.401900px;}
.x4{left:300.189000px;}
.x11{left:304.917450px;}
.xc{left:317.196900px;}
.x17{left:320.887950px;}
.x1c{left:330.980700px;}
.x16{left:382.611600px;}
.x3{left:396.050700px;}
.x12{left:469.206000px;}
.x1a{left:471.706350px;}
.x13{left:481.491150px;}
.x15{left:485.077500px;}
.x1d{left:643.565850px;}
.x9{left:655.295850px;}
.x8{left:686.473650px;}
.x1e{left:741.973050px;}
.x1{left:807.210300px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.984000pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:26.666667pt;}
.ls12{letter-spacing:-1.706667pt;}
.ls14{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.938667pt;}
.ls15{letter-spacing:-0.864000pt;}
.ls13{letter-spacing:-0.704000pt;}
.ls9{letter-spacing:-0.645333pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls6{letter-spacing:-0.453333pt;}
.ls11{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:-0.362667pt;}
.lse{letter-spacing:-0.240000pt;}
.lsb{letter-spacing:-0.234667pt;}
.ls5{letter-spacing:-0.181333pt;}
.ls16{letter-spacing:-0.160000pt;}
.lsf{letter-spacing:-0.139920pt;}
.ls8{letter-spacing:-0.048000pt;}
.ls3{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000533pt;}
.ls1{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.022933pt;}
.ls10{letter-spacing:0.053078pt;}
.lsd{letter-spacing:7.520128pt;}
.ls0{letter-spacing:38.383435pt;}
.ws6{word-spacing:-15.936000pt;}
.ws64{word-spacing:-14.666667pt;}
.wsb6{word-spacing:-14.608000pt;}
.ws4{word-spacing:-13.280000pt;}
.ws7d{word-spacing:-12.000000pt;}
.ws5{word-spacing:-11.952000pt;}
.ws8d{word-spacing:-11.760000pt;}
.ws7c{word-spacing:-11.520000pt;}
.wsc2{word-spacing:-11.136000pt;}
.ws9{word-spacing:-10.800000pt;}
.ws8{word-spacing:-10.704000pt;}
.ws66{word-spacing:-10.666667pt;}
.ws7{word-spacing:-10.464000pt;}
.ws9a{word-spacing:-10.240000pt;}
.ws2{word-spacing:-9.685333pt;}
.ws2b{word-spacing:-9.600000pt;}
.ws7b{word-spacing:-8.550667pt;}
.ws1{word-spacing:-8.482261pt;}
.ws3{word-spacing:-8.371200pt;}
.ws8e{word-spacing:-6.996000pt;}
.ws89{word-spacing:-3.888000pt;}
.ws7a{word-spacing:-2.816000pt;}
.ws25{word-spacing:-2.757333pt;}
.ws47{word-spacing:-2.640000pt;}
.wsab{word-spacing:-2.581333pt;}
.ws98{word-spacing:-2.464000pt;}
.ws86{word-spacing:-2.405333pt;}
.ws12{word-spacing:-2.400000pt;}
.wse6{word-spacing:-2.352000pt;}
.ws59{word-spacing:-2.288000pt;}
.wsc1{word-spacing:-2.256000pt;}
.ws4e{word-spacing:-2.229333pt;}
.wsdd{word-spacing:-2.208000pt;}
.wsa4{word-spacing:-2.170667pt;}
.ws8a{word-spacing:-2.160000pt;}
.ws79{word-spacing:-2.112000pt;}
.ws43{word-spacing:-2.053333pt;}
.ws57{word-spacing:-1.994667pt;}
.wse9{word-spacing:-1.968000pt;}
.ws3b{word-spacing:-1.936000pt;}
.ws16{word-spacing:-1.920000pt;}
.ws7e{word-spacing:-1.877333pt;}
.ws17{word-spacing:-1.872000pt;}
.wsa2{word-spacing:-1.818667pt;}
.ws18{word-spacing:-1.776000pt;}
.ws6b{word-spacing:-1.760000pt;}
.ws88{word-spacing:-1.728000pt;}
.ws78{word-spacing:-1.642667pt;}
.ws3d{word-spacing:-1.584000pt;}
.ws1b{word-spacing:-1.536000pt;}
.ws48{word-spacing:-1.525333pt;}
.ws7f{word-spacing:-1.466667pt;}
.ws76{word-spacing:-1.408000pt;}
.wsb7{word-spacing:-1.349333pt;}
.ws5a{word-spacing:-1.290667pt;}
.wsda{word-spacing:-1.248000pt;}
.ws5e{word-spacing:-1.232000pt;}
.wsdb{word-spacing:-1.200000pt;}
.wsac{word-spacing:-1.173333pt;}
.wsf{word-spacing:-1.114667pt;}
.wsbb{word-spacing:-1.104000pt;}
.wsbd{word-spacing:-1.056000pt;}
.ws52{word-spacing:-0.997333pt;}
.ws1a{word-spacing:-0.960000pt;}
.ws73{word-spacing:-0.938667pt;}
.wsbf{word-spacing:-0.912000pt;}
.wsa9{word-spacing:-0.880000pt;}
.ws5d{word-spacing:-0.821333pt;}
.wsd6{word-spacing:-0.816000pt;}
.ws61{word-spacing:-0.762667pt;}
.ws8b{word-spacing:-0.720000pt;}
.ws58{word-spacing:-0.704000pt;}
.wsd5{word-spacing:-0.672000pt;}
.ws70{word-spacing:-0.645333pt;}
.ws14{word-spacing:-0.624000pt;}
.ws1d{word-spacing:-0.528000pt;}
.ws1c{word-spacing:-0.480000pt;}
.wsa8{word-spacing:-0.410667pt;}
.ws15{word-spacing:-0.384000pt;}
.ws75{word-spacing:-0.352000pt;}
.wsb0{word-spacing:-0.293333pt;}
.ws42{word-spacing:-0.234667pt;}
.ws10{word-spacing:-0.192000pt;}
.ws24{word-spacing:-0.176000pt;}
.wscd{word-spacing:-0.144000pt;}
.ws38{word-spacing:-0.117333pt;}
.wsa{word-spacing:-0.098949pt;}
.ws6f{word-spacing:-0.058667pt;}
.ws94{word-spacing:-0.053078pt;}
.wse4{word-spacing:-0.048000pt;}
.ws8c{word-spacing:-0.042667pt;}
.ws92{word-spacing:-0.032555pt;}
.wsb{word-spacing:0.000000pt;}
.ws84{word-spacing:0.058667pt;}
.wsaa{word-spacing:0.117333pt;}
.ws93{word-spacing:0.139920pt;}
.ws87{word-spacing:0.144000pt;}
.wse5{word-spacing:0.160000pt;}
.wsa7{word-spacing:0.176000pt;}
.wsd{word-spacing:0.181333pt;}
.ws4d{word-spacing:0.234667pt;}
.ws2a{word-spacing:0.293333pt;}
.ws9f{word-spacing:0.352000pt;}
.wsc{word-spacing:0.362667pt;}
.ws39{word-spacing:0.410667pt;}
.wse{word-spacing:0.453333pt;}
.ws2d{word-spacing:0.469333pt;}
.wse1{word-spacing:0.480000pt;}
.ws11{word-spacing:0.614400pt;}
.wseb{word-spacing:0.624000pt;}
.ws4f{word-spacing:0.645333pt;}
.wsba{word-spacing:0.704000pt;}
.ws34{word-spacing:0.762667pt;}
.ws9d{word-spacing:0.768000pt;}
.ws35{word-spacing:0.821333pt;}
.ws20{word-spacing:0.960000pt;}
.wsb2{word-spacing:0.997333pt;}
.ws71{word-spacing:1.056000pt;}
.ws22{word-spacing:1.104000pt;}
.ws26{word-spacing:1.114667pt;}
.wsc7{word-spacing:1.200000pt;}
.ws30{word-spacing:1.232000pt;}
.ws3a{word-spacing:1.290667pt;}
.ws21{word-spacing:1.344000pt;}
.ws4b{word-spacing:1.349333pt;}
.ws4c{word-spacing:1.408000pt;}
.wsbc{word-spacing:1.440000pt;}
.ws6d{word-spacing:1.466667pt;}
.ws19{word-spacing:1.488000pt;}
.wse3{word-spacing:1.632000pt;}
.ws74{word-spacing:1.642667pt;}
.wsc5{word-spacing:1.728000pt;}
.wsce{word-spacing:1.824000pt;}
.ws2c{word-spacing:1.877333pt;}
.wsdf{word-spacing:1.920000pt;}
.ws51{word-spacing:1.936000pt;}
.ws3c{word-spacing:1.994667pt;}
.ws1e{word-spacing:2.016000pt;}
.ws72{word-spacing:2.053333pt;}
.wse0{word-spacing:2.064000pt;}
.ws45{word-spacing:2.112000pt;}
.ws85{word-spacing:2.229333pt;}
.wsb1{word-spacing:2.288000pt;}
.ws36{word-spacing:2.346667pt;}
.ws29{word-spacing:2.405333pt;}
.wse8{word-spacing:2.448000pt;}
.ws3e{word-spacing:2.464000pt;}
.ws3f{word-spacing:2.522667pt;}
.wsc8{word-spacing:2.544000pt;}
.ws41{word-spacing:2.581333pt;}
.ws62{word-spacing:2.640000pt;}
.wsa3{word-spacing:2.698667pt;}
.wsc4{word-spacing:2.736000pt;}
.wsb9{word-spacing:2.757333pt;}
.ws53{word-spacing:2.816000pt;}
.wse2{word-spacing:2.832000pt;}
.wsae{word-spacing:2.874667pt;}
.wsca{word-spacing:2.928000pt;}
.ws6a{word-spacing:2.933333pt;}
.wsc3{word-spacing:2.976000pt;}
.ws97{word-spacing:2.992000pt;}
.ws67{word-spacing:3.109333pt;}
.ws46{word-spacing:3.168000pt;}
.wsbe{word-spacing:3.264000pt;}
.ws83{word-spacing:3.285333pt;}
.ws5c{word-spacing:3.344000pt;}
.wsc0{word-spacing:3.360000pt;}
.wsc9{word-spacing:3.408000pt;}
.ws23{word-spacing:3.461333pt;}
.ws50{word-spacing:3.520000pt;}
.ws33{word-spacing:3.578667pt;}
.wsd1{word-spacing:3.600000pt;}
.ws82{word-spacing:3.637333pt;}
.ws1f{word-spacing:3.696000pt;}
.ws63{word-spacing:3.754667pt;}
.ws77{word-spacing:3.813333pt;}
.ws44{word-spacing:3.872000pt;}
.wsd2{word-spacing:3.888000pt;}
.ws6e{word-spacing:3.989333pt;}
.ws49{word-spacing:4.048000pt;}
.ws13{word-spacing:4.080000pt;}
.ws55{word-spacing:4.106667pt;}
.wsaf{word-spacing:4.165333pt;}
.wscc{word-spacing:4.176000pt;}
.wsa5{word-spacing:4.224000pt;}
.ws28{word-spacing:4.341333pt;}
.ws4a{word-spacing:4.400000pt;}
.wscb{word-spacing:4.512000pt;}
.wsd8{word-spacing:4.560000pt;}
.ws27{word-spacing:4.576000pt;}
.ws32{word-spacing:4.634667pt;}
.wsd4{word-spacing:4.656000pt;}
.ws9e{word-spacing:4.693333pt;}
.ws2e{word-spacing:4.752000pt;}
.ws37{word-spacing:4.810667pt;}
.wsb8{word-spacing:4.869333pt;}
.ws40{word-spacing:5.397333pt;}
.wsd7{word-spacing:5.424000pt;}
.wsea{word-spacing:5.616000pt;}
.ws5f{word-spacing:5.690667pt;}
.wsd0{word-spacing:5.856000pt;}
.ws56{word-spacing:5.925333pt;}
.wsdc{word-spacing:5.952000pt;}
.wscf{word-spacing:6.000000pt;}
.ws60{word-spacing:6.042667pt;}
.ws69{word-spacing:6.101333pt;}
.wse7{word-spacing:6.192000pt;}
.wsa0{word-spacing:6.218667pt;}
.wsa1{word-spacing:6.394667pt;}
.wsc6{word-spacing:6.624000pt;}
.wsa6{word-spacing:6.629333pt;}
.ws80{word-spacing:6.688000pt;}
.ws54{word-spacing:6.805333pt;}
.wsde{word-spacing:6.864000pt;}
.ws91{word-spacing:7.064363pt;}
.ws2f{word-spacing:7.157333pt;}
.wsb4{word-spacing:7.216000pt;}
.ws5b{word-spacing:7.333333pt;}
.wsb3{word-spacing:7.392000pt;}
.ws81{word-spacing:7.626667pt;}
.wsad{word-spacing:7.802667pt;}
.ws95{word-spacing:7.978667pt;}
.ws31{word-spacing:8.037333pt;}
.ws6c{word-spacing:8.272000pt;}
.wsb5{word-spacing:8.565333pt;}
.wsd9{word-spacing:8.592000pt;}
.ws68{word-spacing:8.741333pt;}
.wsd3{word-spacing:9.024000pt;}
.ws96{word-spacing:12.144000pt;}
.ws90{word-spacing:13.057286pt;}
.ws8f{word-spacing:26.698435pt;}
.ws0{word-spacing:29.911587pt;}
.ws99{word-spacing:91.592533pt;}
.ws9b{word-spacing:383.521067pt;}
.ws9c{word-spacing:399.904533pt;}
.ws65{word-spacing:1058.967467pt;}
._d{margin-left:-10.996267pt;}
._b{margin-left:-10.032000pt;}
._7{margin-left:-8.649067pt;}
._9{margin-left:-7.579200pt;}
._a{margin-left:-5.932800pt;}
._6{margin-left:-4.564800pt;}
._5{margin-left:-3.360000pt;}
._3{margin-left:-2.435235pt;}
._0{margin-left:-1.541333pt;}
._1{width:0.993067pt;}
._8{width:2.040000pt;}
._2{width:3.100800pt;}
._c{width:4.089067pt;}
._33{width:6.610133pt;}
._18{width:7.611200pt;}
._23{width:8.952533pt;}
._4{width:32.554667pt;}
._34{width:38.684267pt;}
._35{width:40.252800pt;}
._19{width:58.320533pt;}
._26{width:64.538667pt;}
._1a{width:69.667200pt;}
._27{width:107.437333pt;}
._25{width:167.469333pt;}
._2d{width:217.800533pt;}
._2b{width:219.042667pt;}
._10{width:221.632000pt;}
._24{width:224.641131pt;}
._29{width:227.504000pt;}
._2c{width:228.996267pt;}
._2f{width:231.598400pt;}
._30{width:232.835733pt;}
._28{width:235.181867pt;}
._2a{width:236.932267pt;}
._31{width:238.596267pt;}
._32{width:245.422400pt;}
._15{width:250.218667pt;}
._f{width:251.925333pt;}
._14{width:259.010133pt;}
._e{width:287.767467pt;}
._12{width:295.573333pt;}
._11{width:335.637333pt;}
._13{width:350.576000pt;}
._2e{width:375.158400pt;}
._17{width:397.589333pt;}
._16{width:404.842667pt;}
._1b{width:543.164800pt;}
._1d{width:553.756800pt;}
._1f{width:564.423467pt;}
._1c{width:585.756800pt;}
._1e{width:597.588835pt;}
._21{width:607.090133pt;}
._20{width:608.255501pt;}
._22{width:650.922168pt;}
.fs9{font-size:19.641600pt;}
.fsb{font-size:27.984000pt;}
.fsd{font-size:32.554667pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fsc{font-size:53.078400pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.fsa{font-size:98.949333pt;}
.y0{bottom:0.000000pt;}
.y3d{bottom:1.071067pt;}
.y3e{bottom:40.688174pt;}
.y1{bottom:60.555333pt;}
.y40{bottom:63.299600pt;}
.y41{bottom:66.698800pt;}
.yb5{bottom:100.514400pt;}
.y76{bottom:100.514533pt;}
.y2b{bottom:104.189067pt;}
.yc{bottom:104.778267pt;}
.ya3{bottom:105.226267pt;}
.y65{bottom:108.470933pt;}
.yb{bottom:117.578267pt;}
.yb4{bottom:119.181067pt;}
.y75{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.ya2{bottom:125.054000pt;}
.ya{bottom:130.378267pt;}
.yb3{bottom:137.847733pt;}
.y74{bottom:137.847867pt;}
.yd3{bottom:140.347333pt;}
.y29{bottom:141.522400pt;}
.y9{bottom:143.178267pt;}
.ya1{bottom:144.881733pt;}
.yd6{bottom:151.630400pt;}
.yb2{bottom:156.514400pt;}
.y73{bottom:156.514533pt;}
.y28{bottom:160.189067pt;}
.ya0{bottom:164.709467pt;}
.yb1{bottom:175.181067pt;}
.y72{bottom:175.181200pt;}
.y39{bottom:177.237867pt;}
.y27{bottom:178.855733pt;}
.y9f{bottom:184.537200pt;}
.y38{bottom:193.237867pt;}
.yb0{bottom:193.847733pt;}
.y71{bottom:193.847867pt;}
.y26{bottom:197.522400pt;}
.y9e{bottom:197.870533pt;}
.y37{bottom:209.237867pt;}
.yaf{bottom:212.514400pt;}
.y70{bottom:212.514533pt;}
.y25{bottom:216.189067pt;}
.y9d{bottom:218.744533pt;}
.y36{bottom:225.237867pt;}
.yec{bottom:225.280933pt;}
.yae{bottom:231.181067pt;}
.y6f{bottom:231.181200pt;}
.yd1{bottom:231.363733pt;}
.y24{bottom:234.855733pt;}
.y9c{bottom:238.572267pt;}
.y35{bottom:241.237867pt;}
.yd0{bottom:248.963733pt;}
.yad{bottom:249.847733pt;}
.y6e{bottom:249.847867pt;}
.y34{bottom:257.237867pt;}
.y9b{bottom:258.400000pt;}
.y23{bottom:262.759467pt;}
.ycf{bottom:266.563733pt;}
.yac{bottom:268.514400pt;}
.y6d{bottom:268.514533pt;}
.y33{bottom:273.237867pt;}
.y9a{bottom:278.227600pt;}
.yd2{bottom:284.634667pt;}
.yab{bottom:287.181067pt;}
.y6c{bottom:287.181200pt;}
.y32{bottom:289.237867pt;}
.yd4{bottom:293.987867pt;}
.y99{bottom:298.055333pt;}
.y31{bottom:305.237867pt;}
.yaa{bottom:305.847733pt;}
.y6b{bottom:305.847867pt;}
.yeb{bottom:310.692800pt;}
.y98{bottom:317.883067pt;}
.y30{bottom:321.237867pt;}
.ya9{bottom:324.514400pt;}
.y6a{bottom:324.514533pt;}
.y22{bottom:326.780400pt;}
.ya8{bottom:343.181067pt;}
.y69{bottom:343.181200pt;}
.y97{bottom:344.711333pt;}
.y2f{bottom:352.356000pt;}
.ye3{bottom:352.629867pt;}
.ya7{bottom:361.847733pt;}
.y68{bottom:361.847867pt;}
.y21{bottom:363.278133pt;}
.y2e{bottom:368.356000pt;}
.yd5{bottom:375.678533pt;}
.ya6{bottom:380.514400pt;}
.y64{bottom:380.514533pt;}
.y20{bottom:380.878133pt;}
.y2d{bottom:384.356000pt;}
.ye2{bottom:397.478133pt;}
.y1f{bottom:398.478133pt;}
.y96{bottom:399.181067pt;}
.y63{bottom:399.181200pt;}
.y2c{bottom:400.356000pt;}
.yea{bottom:404.026133pt;}
.y1e{bottom:416.078133pt;}
.ye1{bottom:417.305867pt;}
.y95{bottom:417.847733pt;}
.y62{bottom:417.847867pt;}
.y1d{bottom:433.678133pt;}
.y94{bottom:436.514400pt;}
.y61{bottom:436.514533pt;}
.ye0{bottom:437.133600pt;}
.y1c{bottom:451.278133pt;}
.y93{bottom:455.181067pt;}
.y60{bottom:455.181200pt;}
.yde{bottom:456.961333pt;}
.ydd{bottom:463.628000pt;}
.ydb{bottom:465.930267pt;}
.y1b{bottom:468.878133pt;}
.ydf{bottom:470.294667pt;}
.y92{bottom:473.847733pt;}
.y5f{bottom:473.847867pt;}
.yda{bottom:479.263600pt;}
.y1a{bottom:486.478133pt;}
.ydc{bottom:488.232667pt;}
.y91{bottom:492.514400pt;}
.y5e{bottom:492.514533pt;}
.yef{bottom:495.181200pt;}
.ye9{bottom:497.359467pt;}
.ya5{bottom:502.031200pt;}
.y19{bottom:504.078133pt;}
.y90{bottom:511.181067pt;}
.y5d{bottom:511.181200pt;}
.yd9{bottom:515.060933pt;}
.y18{bottom:521.678133pt;}
.y8f{bottom:529.847733pt;}
.y5c{bottom:529.847867pt;}
.ya4{bottom:530.740133pt;}
.yd8{bottom:532.660933pt;}
.y17{bottom:539.278133pt;}
.y8e{bottom:548.514400pt;}
.y5b{bottom:548.514533pt;}
.y16{bottom:556.878133pt;}
.y8d{bottom:567.181067pt;}
.y5a{bottom:567.181200pt;}
.ye8{bottom:572.026133pt;}
.y15{bottom:574.478133pt;}
.yb8{bottom:577.248800pt;}
.y8c{bottom:585.847733pt;}
.y59{bottom:585.847867pt;}
.y14{bottom:592.078133pt;}
.yb7{bottom:594.848800pt;}
.yd7{bottom:595.713200pt;}
.y8b{bottom:604.514400pt;}
.y58{bottom:604.514533pt;}
.y13{bottom:609.678133pt;}
.yb6{bottom:612.448800pt;}
.y8a{bottom:623.181067pt;}
.y57{bottom:623.181200pt;}
.y12{bottom:627.278133pt;}
.ye7{bottom:628.026133pt;}
.yce{bottom:638.544400pt;}
.y89{bottom:641.847733pt;}
.y56{bottom:641.847867pt;}
.y11{bottom:644.878133pt;}
.ycd{bottom:654.970533pt;}
.y88{bottom:660.514400pt;}
.y55{bottom:660.514533pt;}
.y10{bottom:662.478133pt;}
.ycc{bottom:671.396667pt;}
.y87{bottom:679.181067pt;}
.y54{bottom:679.181200pt;}
.yf{bottom:680.078133pt;}
.ye6{bottom:684.026000pt;}
.ycb{bottom:687.822800pt;}
.y86{bottom:697.847733pt;}
.y53{bottom:697.847867pt;}
.yca{bottom:704.249067pt;}
.ye{bottom:707.720267pt;}
.y85{bottom:716.514400pt;}
.y52{bottom:716.514533pt;}
.yc9{bottom:720.675067pt;}
.yee{bottom:728.456533pt;}
.y84{bottom:735.181067pt;}
.y51{bottom:735.181200pt;}
.yc8{bottom:737.101333pt;}
.ye5{bottom:740.388533pt;}
.yc7{bottom:753.527467pt;}
.y83{bottom:753.847733pt;}
.y50{bottom:753.847867pt;}
.yed{bottom:757.165333pt;}
.ye4{bottom:766.614267pt;}
.yc6{bottom:769.953600pt;}
.y82{bottom:772.514400pt;}
.y4f{bottom:772.514533pt;}
.y8{bottom:778.192667pt;}
.yc5{bottom:786.379733pt;}
.y81{bottom:791.181067pt;}
.y4e{bottom:791.181200pt;}
.y7{bottom:794.192667pt;}
.yc4{bottom:802.805867pt;}
.y80{bottom:809.847733pt;}
.y4d{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.yc3{bottom:819.232133pt;}
.y7f{bottom:828.514400pt;}
.y4c{bottom:828.514533pt;}
.yc2{bottom:835.658267pt;}
.y67{bottom:840.456533pt;}
.y5{bottom:841.310933pt;}
.y7e{bottom:847.181067pt;}
.y4b{bottom:847.181200pt;}
.yc1{bottom:852.084267pt;}
.y7d{bottom:865.847733pt;}
.y4a{bottom:865.847867pt;}
.yc0{bottom:868.510533pt;}
.y66{bottom:869.165333pt;}
.y4{bottom:874.028933pt;}
.y7c{bottom:884.514400pt;}
.y49{bottom:884.514533pt;}
.ybf{bottom:884.936667pt;}
.ybe{bottom:901.362800pt;}
.y7b{bottom:903.181067pt;}
.y48{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.ybd{bottom:917.788933pt;}
.y7a{bottom:921.847733pt;}
.y47{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.ybc{bottom:934.215067pt;}
.y79{bottom:940.514400pt;}
.y46{bottom:940.514533pt;}
.ybb{bottom:950.641333pt;}
.y78{bottom:959.181067pt;}
.y45{bottom:959.181200pt;}
.yba{bottom:967.334000pt;}
.y44{bottom:977.847867pt;}
.yd{bottom:986.502667pt;}
.y77{bottom:987.173200pt;}
.yb9{bottom:994.918133pt;}
.y43{bottom:996.514533pt;}
.y3c{bottom:1009.540000pt;}
.y3f{bottom:1024.013867pt;}
.y3b{bottom:1027.213600pt;}
.y3a{bottom:1044.546933pt;}
.y42{bottom:1047.726000pt;}
.hf{height:14.923012pt;}
.h17{height:21.952146pt;}
.h13{height:30.506667pt;}
.h6{height:30.618750pt;}
.h2{height:33.812500pt;}
.h11{height:34.020833pt;}
.h5{height:34.250000pt;}
.h14{height:36.437333pt;}
.h7{height:36.492188pt;}
.h16{height:36.854241pt;}
.hd{height:38.039062pt;}
.h1b{height:38.133333pt;}
.hc{height:38.273438pt;}
.h8{height:40.546875pt;}
.h9{height:40.992000pt;}
.h12{height:44.601562pt;}
.he{height:44.948000pt;}
.h4{height:45.188000pt;}
.ha{height:48.656250pt;}
.hb{height:50.101333pt;}
.h19{height:57.173333pt;}
.h3{height:68.929688pt;}
.h18{height:69.637333pt;}
.h10{height:71.844560pt;}
.h1a{height:83.840000pt;}
.h15{height:327.769333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:165.230667pt;}
.w3{width:461.102667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:11.322267pt;}
.x2{left:65.763733pt;}
.xb{left:95.172400pt;}
.xd{left:96.255067pt;}
.xa{left:98.747867pt;}
.xf{left:99.779467pt;}
.x18{left:100.974133pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.x19{left:117.720667pt;}
.xe{left:144.232267pt;}
.x1b{left:201.574667pt;}
.x10{left:241.246133pt;}
.x4{left:266.834667pt;}
.x11{left:271.037733pt;}
.xc{left:281.952800pt;}
.x17{left:285.233733pt;}
.x1c{left:294.205067pt;}
.x16{left:340.099200pt;}
.x3{left:352.045067pt;}
.x12{left:417.072000pt;}
.x1a{left:419.294533pt;}
.x13{left:427.992133pt;}
.x15{left:431.180000pt;}
.x1d{left:572.058533pt;}
.x9{left:582.485200pt;}
.x8{left:610.198800pt;}
.x1e{left:659.531600pt;}
.x1{left:717.520267pt;}
}




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