
    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_15ddc17a7d179dd67a2d509a.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_3b253b77f1eda5a291d26fdd.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bf6e365c4b77c415f3186cb0.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.730957;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_237d44512be4a4c80338183a.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_f09c8747df3060349642d62b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_04bedcbbdbcc3faf0cd5174e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_df2e5cccb69cb9ad06a606bf.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.120117;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_bc5629202fedcd945f9790df.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.119629;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_b1262db2b901720ce3178050.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.930000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_5deb17d0377fc769d69dbd55.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.067000;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_ee1c1bf31116ec1db24748c7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_d482cf1a9b82dd08b8537455.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.700000;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_74a8cb68255735a2eec294b0.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.928000;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_7d6bde896cc708504bc9bd58.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.694824;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;}
.mc{transform:matrix(0.197262,-0.153582,0.153582,0.197262,0,0);-ms-transform:matrix(0.197262,-0.153582,0.153582,0.197262,0,0);-webkit-transform:matrix(0.197262,-0.153582,0.153582,0.197262,0,0);}
.mb{transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212499,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.m12{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);}
.m11{transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237502,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247499,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,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);}
.m8{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.260000,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.976000px;}
.v3{vertical-align:29.970000px;}
.v2{vertical-align:35.964000px;}
.lsa{letter-spacing:-0.144000px;}
.ls5{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.360000px;}
.ls6{letter-spacing:1.296000px;}
.ls2{letter-spacing:1.320000px;}
.ls8{letter-spacing:1.440000px;}
.ls9{letter-spacing:2.520000px;}
.lsb{letter-spacing:5.756400px;}
.ls3{letter-spacing:10.200000px;}
.ls4{letter-spacing:12.000000px;}
.ls1{letter-spacing:18.000000px;}
.ls0{letter-spacing:30.000000px;}
.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:-78.000000px;}
.ws76{word-spacing:-51.807600px;}
.ws2e{word-spacing:-27.840000px;}
.ws5a{word-spacing:-27.360000px;}
.ws2{word-spacing:-26.520000px;}
.ws59{word-spacing:-21.888000px;}
.ws4c{word-spacing:-18.936000px;}
.ws11{word-spacing:-17.712000px;}
.ws12{word-spacing:-16.776000px;}
.ws10{word-spacing:-16.416000px;}
.ws4b{word-spacing:-14.355792px;}
.ws67{word-spacing:-11.963160px;}
.wsb{word-spacing:-10.428000px;}
.wsf{word-spacing:-10.362000px;}
.wsd{word-spacing:-9.966000px;}
.ws3f{word-spacing:-9.570528px;}
.wsc{word-spacing:-8.382000px;}
.ws3a{word-spacing:-7.776000px;}
.ws8{word-spacing:-7.458000px;}
.ws5{word-spacing:-6.864000px;}
.ws24{word-spacing:-6.264000px;}
.ws48{word-spacing:-5.936813px;}
.ws7b{word-spacing:-5.756400px;}
.ws71{word-spacing:-5.472000px;}
.ws26{word-spacing:-5.400000px;}
.ws29{word-spacing:-5.328000px;}
.ws38{word-spacing:-3.960000px;}
.ws6{word-spacing:-3.432000px;}
.ws2f{word-spacing:-3.384000px;}
.ws7{word-spacing:-3.036000px;}
.ws44{word-spacing:-2.664000px;}
.ws72{word-spacing:-2.592000px;}
.ws7a{word-spacing:-2.112000px;}
.ws30{word-spacing:-1.584000px;}
.ws2d{word-spacing:-1.440000px;}
.ws58{word-spacing:-1.392000px;}
.ws4{word-spacing:-1.386000px;}
.ws9{word-spacing:-1.320000px;}
.ws78{word-spacing:-1.008000px;}
.ws5b{word-spacing:-0.864000px;}
.wsa{word-spacing:-0.792000px;}
.ws22{word-spacing:-0.576000px;}
.ws39{word-spacing:-0.504000px;}
.ws1{word-spacing:-0.049737px;}
.ws75{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws51{word-spacing:0.144000px;}
.ws41{word-spacing:0.288000px;}
.ws6d{word-spacing:0.432000px;}
.ws57{word-spacing:0.648000px;}
.wse{word-spacing:0.726000px;}
.ws3d{word-spacing:0.936000px;}
.ws1c{word-spacing:2.016000px;}
.ws1d{word-spacing:2.376000px;}
.ws74{word-spacing:2.952000px;}
.ws54{word-spacing:3.528000px;}
.ws60{word-spacing:3.744000px;}
.ws3e{word-spacing:4.176000px;}
.ws13{word-spacing:5.832000px;}
.ws55{word-spacing:6.768000px;}
.ws70{word-spacing:6.912000px;}
.ws32{word-spacing:7.056000px;}
.ws3c{word-spacing:7.200000px;}
.ws79{word-spacing:7.824000px;}
.ws40{word-spacing:8.064000px;}
.ws1b{word-spacing:8.136000px;}
.ws52{word-spacing:8.352000px;}
.ws6f{word-spacing:8.712000px;}
.ws19{word-spacing:9.720000px;}
.ws43{word-spacing:9.792000px;}
.ws6a{word-spacing:9.864000px;}
.ws6b{word-spacing:9.936000px;}
.ws20{word-spacing:10.080000px;}
.ws4a{word-spacing:10.584000px;}
.ws3b{word-spacing:10.800000px;}
.ws4d{word-spacing:11.376000px;}
.ws45{word-spacing:11.448000px;}
.ws14{word-spacing:12.168000px;}
.ws2b{word-spacing:12.240000px;}
.ws21{word-spacing:12.312000px;}
.ws1e{word-spacing:12.384000px;}
.ws23{word-spacing:12.600000px;}
.ws77{word-spacing:13.104000px;}
.ws5e{word-spacing:13.176000px;}
.ws42{word-spacing:13.320000px;}
.ws63{word-spacing:13.680000px;}
.ws31{word-spacing:14.256000px;}
.ws18{word-spacing:14.904000px;}
.ws36{word-spacing:15.120000px;}
.ws61{word-spacing:15.336000px;}
.ws6e{word-spacing:15.480000px;}
.ws62{word-spacing:16.992000px;}
.ws46{word-spacing:17.928000px;}
.ws28{word-spacing:18.504000px;}
.ws47{word-spacing:18.792000px;}
.ws34{word-spacing:19.584000px;}
.ws69{word-spacing:19.728000px;}
.ws53{word-spacing:19.872000px;}
.ws6c{word-spacing:20.016000px;}
.ws37{word-spacing:20.160000px;}
.ws16{word-spacing:21.168000px;}
.ws15{word-spacing:21.384000px;}
.ws2a{word-spacing:22.320000px;}
.ws25{word-spacing:23.616000px;}
.ws33{word-spacing:24.408000px;}
.ws56{word-spacing:24.552000px;}
.ws17{word-spacing:24.840000px;}
.ws66{word-spacing:26.568000px;}
.ws35{word-spacing:28.872000px;}
.ws73{word-spacing:31.536000px;}
.ws1a{word-spacing:31.824000px;}
.ws68{word-spacing:32.976000px;}
.ws64{word-spacing:33.984000px;}
.ws1f{word-spacing:34.560000px;}
.ws5d{word-spacing:36.216000px;}
.ws4e{word-spacing:38.088000px;}
.ws27{word-spacing:39.240000px;}
.ws5c{word-spacing:42.048000px;}
.ws65{word-spacing:46.728000px;}
.ws5f{word-spacing:47.952000px;}
.ws2c{word-spacing:60.696000px;}
.ws50{word-spacing:67.176000px;}
.ws4f{word-spacing:118.800000px;}
.ws49{word-spacing:194.251658px;}
._a{margin-left:-633.960000px;}
._2d{margin-left:-613.202460px;}
._2b{margin-left:-372.797802px;}
._28{margin-left:-274.538940px;}
._2a{margin-left:-232.206000px;}
._27{margin-left:-105.743040px;}
._26{margin-left:-98.598240px;}
._1d{margin-left:-83.374105px;}
._29{margin-left:-72.162480px;}
._20{margin-left:-52.408606px;}
._23{margin-left:-50.027636px;}
._1{margin-left:-30.020400px;}
._24{margin-left:-27.539449px;}
._25{margin-left:-26.257851px;}
._14{margin-left:-16.366931px;}
._2{margin-left:-13.714297px;}
._1e{margin-left:-11.844000px;}
._8{margin-left:-10.524718px;}
._e{margin-left:-8.021400px;}
._16{margin-left:-6.791400px;}
._18{margin-left:-5.695200px;}
._7{margin-left:-4.695000px;}
._3{margin-left:-2.745482px;}
._5{margin-left:-1.452000px;}
._6{width:1.141330px;}
._0{width:3.000000px;}
._b{width:4.104000px;}
._12{width:5.976000px;}
._22{width:7.149600px;}
._4{width:8.232365px;}
._9{width:10.167600px;}
._15{width:11.871600px;}
._17{width:13.356000px;}
._13{width:15.261600px;}
._1a{width:18.763200px;}
._f{width:20.260800px;}
._c{width:22.168800px;}
._d{width:23.565600px;}
._1b{width:26.208000px;}
._10{width:31.737600px;}
._19{width:33.127200px;}
._21{width:34.596000px;}
._1f{width:36.251030px;}
._1c{width:53.755200px;}
._11{width:68.752800px;}
._2c{width:1293.161230px;}
.fce{color:rgb(81,109,176);}
.fcd{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc3{color:rgb(19,172,103);}
.fc6{color:rgb(104,191,197);}
.fcf{color:rgb(37,74,165);}
.fc7{color:rgb(63,62,64);}
.fc4{color:transparent;}
.fc8{color:rgb(123,205,219);}
.fc0{color:rgb(255,255,255);}
.fc5{color:rgb(79,76,77);}
.fc2{color:rgb(89,85,86);}
.fcc{color:rgb(136,207,188);}
.fc9{color:rgb(107,130,151);}
.fcb{color:rgb(218,88,106);}
.fca{color:rgb(78,38,108);}
.fs13{font-size:12.773400px;}
.fs11{font-size:13.263600px;}
.fs12{font-size:15.231600px;}
.fs10{font-size:19.229400px;}
.fsc{font-size:29.684067px;}
.fse{font-size:33.192000px;}
.fsd{font-size:33.193800px;}
.fsf{font-size:40.655400px;}
.fsa{font-size:41.976000px;}
.fs18{font-size:48.000000px;}
.fs2{font-size:49.737000px;}
.fs17{font-size:52.470000px;}
.fs16{font-size:55.968000px;}
.fsb{font-size:59.466000px;}
.fs14{font-size:62.964000px;}
.fs3{font-size:66.000000px;}
.fs19{font-size:66.634800px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:90.000000px;}
.fs15{font-size:96.000000px;}
.fs4{font-size:102.000000px;}
.fs9{font-size:108.000000px;}
.fs1a{font-size:119.751000px;}
.fs5{font-size:120.000000px;}
.fs7{font-size:174.000000px;}
.fs1c{font-size:178.620000px;}
.fs1{font-size:180.000000px;}
.fs1b{font-size:287.820000px;}
.fs0{font-size:300.000000px;}
.ya3{bottom:-282.149400px;}
.yc4{bottom:-266.313300px;}
.yc3{bottom:-255.692700px;}
.yc2{bottom:-248.224800px;}
.ybf{bottom:-244.344750px;}
.yc1{bottom:-240.664650px;}
.yc0{bottom:-233.104500px;}
.ybe{bottom:-221.761500px;}
.ybd{bottom:-210.423900px;}
.ybc{bottom:-202.863750px;}
.ybb{bottom:-195.303600px;}
.yb7{bottom:-191.510550px;}
.yba{bottom:-187.743450px;}
.yb9{bottom:-180.183300px;}
.yb8{bottom:-172.623000px;}
.yb6{bottom:-161.280300px;}
.yb5{bottom:-149.942550px;}
.yb4{bottom:-142.382400px;}
.yb3{bottom:-134.822250px;}
.yaf{bottom:-131.029200px;}
.yb2{bottom:-127.262100px;}
.yb1{bottom:-119.701950px;}
.yb0{bottom:-112.141800px;}
.yae{bottom:-100.798950px;}
.yad{bottom:-89.461350px;}
.yac{bottom:-81.901200px;}
.yab{bottom:-74.340900px;}
.ya7{bottom:-70.548000px;}
.yaa{bottom:-66.780750px;}
.ya9{bottom:-59.220600px;}
.ya8{bottom:-51.660450px;}
.ya6{bottom:-42.236850px;}
.ya5{bottom:-32.885250px;}
.ya4{bottom:-32.608800px;}
.y0{bottom:0.000000px;}
.yb{bottom:32.416200px;}
.y13e{bottom:33.415650px;}
.y135{bottom:34.060800px;}
.y134{bottom:35.533800px;}
.yfc{bottom:42.519750px;}
.y89{bottom:42.839700px;}
.ya{bottom:45.916200px;}
.y2b{bottom:48.123900px;}
.y123{bottom:51.017550px;}
.y13d{bottom:51.178950px;}
.y133{bottom:53.297100px;}
.y4c{bottom:59.623500px;}
.y71{bottom:66.367200px;}
.y13c{bottom:68.942250px;}
.y17{bottom:69.614700px;}
.y88{bottom:69.839700px;}
.y132{bottom:71.060400px;}
.y90{bottom:75.083700px;}
.y2a{bottom:75.123900px;}
.y122{bottom:79.517550px;}
.yde{bottom:80.787300px;}
.yfa{bottom:83.775600px;}
.y4b{bottom:86.623500px;}
.y13b{bottom:86.705550px;}
.y131{bottom:88.823700px;}
.y16{bottom:90.614700px;}
.yfb{bottom:91.767600px;}
.y70{bottom:93.367200px;}
.y87{bottom:96.839700px;}
.y8f{bottom:102.083700px;}
.y29{bottom:102.123900px;}
.ydd{bottom:106.287300px;}
.y130{bottom:106.587000px;}
.y121{bottom:108.017550px;}
.y15{bottom:111.614700px;}
.yf9{bottom:112.275600px;}
.y4a{bottom:113.623500px;}
.y6f{bottom:120.367200px;}
.y86{bottom:123.839700px;}
.y12f{bottom:124.350300px;}
.y9{bottom:128.986500px;}
.y8e{bottom:129.083700px;}
.y28{bottom:129.123900px;}
.y136{bottom:130.495650px;}
.ydc{bottom:131.787300px;}
.y14{bottom:132.614700px;}
.y120{bottom:136.517550px;}
.y49{bottom:140.623500px;}
.y8{bottom:146.749800px;}
.y6e{bottom:147.367200px;}
.y85{bottom:150.839700px;}
.y13{bottom:153.614700px;}
.y8d{bottom:156.083700px;}
.y27{bottom:156.123900px;}
.ydb{bottom:157.287300px;}
.ye4{bottom:161.651400px;}
.y7{bottom:164.513100px;}
.y11f{bottom:165.017550px;}
.y48{bottom:167.623500px;}
.y6d{bottom:174.367200px;}
.y12{bottom:174.614700px;}
.y84{bottom:177.839700px;}
.y6{bottom:182.276400px;}
.yda{bottom:182.787300px;}
.y8c{bottom:183.083700px;}
.y26{bottom:183.123900px;}
.ye3{bottom:188.651400px;}
.y47{bottom:194.623500px;}
.y11{bottom:195.614700px;}
.y13a{bottom:196.104300px;}
.y5{bottom:200.039700px;}
.y6c{bottom:201.367200px;}
.y83{bottom:204.839700px;}
.yd9{bottom:208.287300px;}
.y8b{bottom:210.083700px;}
.y25{bottom:210.123900px;}
.y11e{bottom:210.525450px;}
.ye2{bottom:215.651400px;}
.y10{bottom:216.614700px;}
.y4{bottom:217.803000px;}
.y46{bottom:221.623500px;}
.y6b{bottom:228.367200px;}
.yd8{bottom:233.787300px;}
.y3{bottom:235.566300px;}
.y24{bottom:237.123900px;}
.yf{bottom:237.614700px;}
.y11d{bottom:239.025450px;}
.ye1{bottom:242.651400px;}
.y45{bottom:248.623500px;}
.y6a{bottom:255.367200px;}
.ye{bottom:258.614700px;}
.yd7{bottom:259.287300px;}
.y23{bottom:264.123900px;}
.y8a{bottom:267.034650px;}
.y11c{bottom:267.525450px;}
.ye0{bottom:269.651400px;}
.y91{bottom:272.278650px;}
.y44{bottom:275.623500px;}
.yd{bottom:279.614700px;}
.y69{bottom:282.367200px;}
.yd6{bottom:284.787300px;}
.y22{bottom:291.123900px;}
.yc{bottom:300.614700px;}
.yd5{bottom:310.287300px;}
.y21{bottom:318.123900px;}
.y43{bottom:325.280250px;}
.y124{bottom:330.154800px;}
.yd4{bottom:335.787300px;}
.y72{bottom:344.562150px;}
.y20{bottom:345.123900px;}
.y110{bottom:345.856200px;}
.y1a{bottom:348.484200px;}
.yd3{bottom:361.287300px;}
.y7d{bottom:361.612050px;}
.y42{bottom:368.780250px;}
.y1f{bottom:372.123900px;}
.y9a{bottom:382.377300px;}
.yf8{bottom:384.797100px;}
.yd2{bottom:386.787300px;}
.y7c{bottom:388.612050px;}
.y12c{bottom:392.672100px;}
.y1e{bottom:399.123900px;}
.y10f{bottom:399.856200px;}
.y99{bottom:409.377300px;}
.yd1{bottom:412.287300px;}
.yf7{bottom:413.297100px;}
.y7b{bottom:415.612050px;}
.y12b{bottom:421.172100px;}
.y1d{bottom:426.123900px;}
.y10e{bottom:426.856200px;}
.y98{bottom:436.377300px;}
.yd0{bottom:437.787300px;}
.yf6{bottom:441.797100px;}
.y7a{bottom:442.612050px;}
.y60{bottom:446.341500px;}
.y12a{bottom:449.672100px;}
.y1c{bottom:453.123900px;}
.y10d{bottom:453.856200px;}
.y97{bottom:463.377300px;}
.y79{bottom:469.612050px;}
.y53{bottom:472.480050px;}
.y5f{bottom:473.341500px;}
.y129{bottom:478.172100px;}
.y1b{bottom:480.123900px;}
.y10c{bottom:480.856200px;}
.yf5{bottom:487.305000px;}
.y96{bottom:490.377300px;}
.y78{bottom:496.612050px;}
.y52{bottom:499.480050px;}
.y5e{bottom:500.341500px;}
.ydf{bottom:505.249050px;}
.y128{bottom:506.672100px;}
.y10b{bottom:507.856200px;}
.yf4{bottom:515.805000px;}
.y95{bottom:517.377300px;}
.yec{bottom:519.076650px;}
.y77{bottom:523.612050px;}
.y51{bottom:526.480050px;}
.y5d{bottom:527.341500px;}
.y10a{bottom:534.856200px;}
.yf3{bottom:544.305000px;}
.y94{bottom:544.377300px;}
.yeb{bottom:547.576650px;}
.y76{bottom:550.612050px;}
.y127{bottom:552.180000px;}
.y50{bottom:553.480050px;}
.y5c{bottom:554.341500px;}
.y109{bottom:561.856200px;}
.y93{bottom:571.377300px;}
.yea{bottom:576.076650px;}
.y4f{bottom:580.480050px;}
.y126{bottom:580.680000px;}
.y5b{bottom:581.341500px;}
.ycf{bottom:582.507900px;}
.y108{bottom:588.856200px;}
.yf2{bottom:589.812900px;}
.y92{bottom:598.377300px;}
.y4e{bottom:607.480050px;}
.yce{bottom:608.007900px;}
.y5a{bottom:608.341500px;}
.y125{bottom:609.180000px;}
.y107{bottom:615.856200px;}
.yf1{bottom:618.312900px;}
.y7f{bottom:624.341700px;}
.y2{bottom:632.320950px;}
.ycd{bottom:633.507900px;}
.y106{bottom:642.856200px;}
.y7e{bottom:652.841700px;}
.y4d{bottom:653.865000px;}
.y12e{bottom:657.565350px;}
.y9b{bottom:662.135550px;}
.y105{bottom:669.856200px;}
.y61{bottom:682.071150px;}
.y12d{bottom:684.565350px;}
.y1{bottom:692.320950px;}
.y104{bottom:696.856200px;}
.ycb{bottom:717.239100px;}
.y41{bottom:738.856200px;}
.yca{bottom:744.239100px;}
.y103{bottom:750.856200px;}
.y80{bottom:751.784550px;}
.y11a{bottom:755.580600px;}
.y40{bottom:765.856200px;}
.yc9{bottom:771.239100px;}
.y102{bottom:777.856200px;}
.y67{bottom:778.784550px;}
.y3f{bottom:792.856200px;}
.ya2{bottom:795.697500px;}
.yc8{bottom:798.239100px;}
.y119{bottom:801.088500px;}
.ya0{bottom:804.622176px;}
.y101{bottom:804.856200px;}
.y9e{bottom:805.585200px;}
.y66{bottom:805.784550px;}
.y9f{bottom:813.235500px;}
.y9d{bottom:813.883650px;}
.y3e{bottom:819.856200px;}
.yc7{bottom:825.239100px;}
.ya1{bottom:828.736800px;}
.y118{bottom:829.588500px;}
.y59{bottom:830.722200px;}
.y36{bottom:831.856200px;}
.y65{bottom:832.784550px;}
.y3d{bottom:846.856200px;}
.yc6{bottom:852.239100px;}
.y58{bottom:857.722200px;}
.y117{bottom:858.088500px;}
.y35{bottom:858.856200px;}
.y64{bottom:859.784550px;}
.y3c{bottom:873.856200px;}
.ye9{bottom:878.084400px;}
.yc5{bottom:879.239100px;}
.y9c{bottom:881.138700px;}
.y57{bottom:884.722200px;}
.y34{bottom:885.856200px;}
.y116{bottom:886.588500px;}
.y63{bottom:886.784550px;}
.yff{bottom:896.604150px;}
.y3b{bottom:900.856200px;}
.ye8{bottom:906.584400px;}
.y56{bottom:911.722200px;}
.y33{bottom:912.856200px;}
.y62{bottom:913.784550px;}
.y115{bottom:915.088500px;}
.y3a{bottom:927.856200px;}
.ye7{bottom:935.084400px;}
.y55{bottom:938.722200px;}
.y32{bottom:939.856200px;}
.y114{bottom:943.588500px;}
.ycc{bottom:947.479500px;}
.yfe{bottom:950.604150px;}
.y39{bottom:954.856200px;}
.y54{bottom:965.722200px;}
.y31{bottom:966.856200px;}
.y100{bottom:972.850200px;}
.y68{bottom:975.979500px;}
.y81{bottom:977.071500px;}
.yfd{bottom:977.604150px;}
.y38{bottom:981.856200px;}
.y82{bottom:985.563150px;}
.y37{bottom:999.721650px;}
.y139{bottom:1002.548700px;}
.y11b{bottom:1006.217700px;}
.yf0{bottom:1012.544250px;}
.y112{bottom:1024.724400px;}
.y19{bottom:1029.118050px;}
.y2e{bottom:1050.236250px;}
.y111{bottom:1051.724400px;}
.y30{bottom:1054.898550px;}
.yef{bottom:1056.044250px;}
.y75{bottom:1058.740200px;}
.y18{bottom:1060.993050px;}
.y138{bottom:1084.448700px;}
.ye6{bottom:1088.914350px;}
.y2d{bottom:1093.736250px;}
.y2f{bottom:1098.398550px;}
.yee{bottom:1099.544250px;}
.y74{bottom:1102.240200px;}
.ye5{bottom:1132.414350px;}
.y2c{bottom:1137.236250px;}
.y113{bottom:1141.898550px;}
.yed{bottom:1143.044250px;}
.y73{bottom:1145.740200px;}
.y137{bottom:1166.348850px;}
.h34{height:-250.809000px;}
.h33{height:-243.249000px;}
.h32{height:-235.689000px;}
.h31{height:-228.129000px;}
.h30{height:-213.009000px;}
.h2f{height:-205.449000px;}
.h2e{height:-197.889000px;}
.h2d{height:-190.329000px;}
.h2c{height:-182.767500px;}
.h2b{height:-175.207500px;}
.h2a{height:-167.647500px;}
.h29{height:-152.527500px;}
.h28{height:-144.967500px;}
.h27{height:-137.407500px;}
.h26{height:-129.847500px;}
.h25{height:-122.287500px;}
.h24{height:-114.726000px;}
.h23{height:-107.166000px;}
.h22{height:-92.046000px;}
.h21{height:-84.486000px;}
.h20{height:-76.926000px;}
.h1f{height:-69.366000px;}
.h1e{height:-61.806000px;}
.h1d{height:-54.246000px;}
.h1c{height:-46.684500px;}
.h1a{height:-35.419500px;}
.h17{height:-27.450000px;}
.h18{height:9.284520px;}
.h35{height:9.337355px;}
.h1b{height:9.695692px;}
.h19{height:11.134300px;}
.h16{height:13.976903px;}
.h12{height:24.264668px;}
.h11{height:26.121979px;}
.h13{height:29.208960px;}
.h3b{height:30.580172px;}
.h3c{height:34.945312px;}
.h14{height:35.776752px;}
.h4{height:36.209896px;}
.h38{height:40.773562px;}
.h3d{height:45.551133px;}
.h8{height:52.453125px;}
.h5{height:52.800000px;}
.h10{height:54.094315px;}
.hd{height:54.556172px;}
.he{height:65.460938px;}
.ha{height:65.496094px;}
.h37{height:69.937500px;}
.h6{height:81.600000px;}
.hb{height:81.870117px;}
.h39{height:87.328125px;}
.hf{height:92.786133px;}
.h3e{height:95.800800px;}
.h7{height:96.000000px;}
.h36{height:98.191406px;}
.hc{height:98.244141px;}
.h3a{height:109.160156px;}
.h15{height:118.476000px;}
.h9{height:139.200000px;}
.h40{height:142.896000px;}
.h3{height:144.000000px;}
.h3f{height:230.256000px;}
.h2{height:240.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:48.001500px;}
.w5{width:95.530500px;}
.w4{width:100.887000px;}
.w6{width:297.871500px;}
.w2{width:354.741000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x20{left:1.197900px;}
.x23{left:14.289600px;}
.x12{left:34.015800px;}
.xb{left:42.519750px;}
.x15{left:43.900800px;}
.x16{left:57.141900px;}
.x26{left:60.227250px;}
.x30{left:80.083500px;}
.x31{left:87.190500px;}
.x24{left:118.917150px;}
.xd{left:127.674000px;}
.xc{left:141.160650px;}
.x25{left:142.558200px;}
.x13{left:180.442950px;}
.x2d{left:183.654000px;}
.x2f{left:229.528050px;}
.x1e{left:240.307350px;}
.x9{left:242.600250px;}
.x2{left:252.982800px;}
.x1{left:265.334250px;}
.x2a{left:268.048200px;}
.xe{left:289.787250px;}
.x11{left:294.626100px;}
.x18{left:296.287200px;}
.x10{left:302.952750px;}
.xa{left:321.769950px;}
.x2b{left:328.100100px;}
.x28{left:329.966550px;}
.x2c{left:337.480200px;}
.x2e{left:389.024550px;}
.x34{left:433.702950px;}
.x29{left:459.212550px;}
.xf{left:467.716500px;}
.x14{left:492.419550px;}
.x1d{left:495.652500px;}
.x17{left:501.388500px;}
.x1f{left:504.252000px;}
.x19{left:550.968300px;}
.x21{left:552.522000px;}
.x27{left:563.985300px;}
.x8{left:617.925900px;}
.x6{left:621.242400px;}
.x4{left:627.961950px;}
.x3{left:652.717650px;}
.x7{left:655.365000px;}
.x1a{left:659.031750px;}
.x1c{left:661.062600px;}
.x5{left:662.592150px;}
.x1b{left:686.494200px;}
.x32{left:713.012550px;}
.x33{left:731.520450px;}
.x22{left:754.863000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.v3{vertical-align:26.640000pt;}
.v2{vertical-align:31.968000pt;}
.lsa{letter-spacing:-0.128000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.320000pt;}
.ls6{letter-spacing:1.152000pt;}
.ls2{letter-spacing:1.173333pt;}
.ls8{letter-spacing:1.280000pt;}
.ls9{letter-spacing:2.240000pt;}
.lsb{letter-spacing:5.116800pt;}
.ls3{letter-spacing:9.066667pt;}
.ls4{letter-spacing:10.666667pt;}
.ls1{letter-spacing:16.000000pt;}
.ls0{letter-spacing:26.666667pt;}
.ws0{word-spacing:-69.333333pt;}
.ws76{word-spacing:-46.051200pt;}
.ws2e{word-spacing:-24.746667pt;}
.ws5a{word-spacing:-24.320000pt;}
.ws2{word-spacing:-23.573333pt;}
.ws59{word-spacing:-19.456000pt;}
.ws4c{word-spacing:-16.832000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws12{word-spacing:-14.912000pt;}
.ws10{word-spacing:-14.592000pt;}
.ws4b{word-spacing:-12.760704pt;}
.ws67{word-spacing:-10.633920pt;}
.wsb{word-spacing:-9.269333pt;}
.wsf{word-spacing:-9.210667pt;}
.wsd{word-spacing:-8.858667pt;}
.ws3f{word-spacing:-8.507136pt;}
.wsc{word-spacing:-7.450667pt;}
.ws3a{word-spacing:-6.912000pt;}
.ws8{word-spacing:-6.629333pt;}
.ws5{word-spacing:-6.101333pt;}
.ws24{word-spacing:-5.568000pt;}
.ws48{word-spacing:-5.277168pt;}
.ws7b{word-spacing:-5.116800pt;}
.ws71{word-spacing:-4.864000pt;}
.ws26{word-spacing:-4.800000pt;}
.ws29{word-spacing:-4.736000pt;}
.ws38{word-spacing:-3.520000pt;}
.ws6{word-spacing:-3.050667pt;}
.ws2f{word-spacing:-3.008000pt;}
.ws7{word-spacing:-2.698667pt;}
.ws44{word-spacing:-2.368000pt;}
.ws72{word-spacing:-2.304000pt;}
.ws7a{word-spacing:-1.877333pt;}
.ws30{word-spacing:-1.408000pt;}
.ws2d{word-spacing:-1.280000pt;}
.ws58{word-spacing:-1.237333pt;}
.ws4{word-spacing:-1.232000pt;}
.ws9{word-spacing:-1.173333pt;}
.ws78{word-spacing:-0.896000pt;}
.ws5b{word-spacing:-0.768000pt;}
.wsa{word-spacing:-0.704000pt;}
.ws22{word-spacing:-0.512000pt;}
.ws39{word-spacing:-0.448000pt;}
.ws1{word-spacing:-0.044211pt;}
.ws75{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws51{word-spacing:0.128000pt;}
.ws41{word-spacing:0.256000pt;}
.ws6d{word-spacing:0.384000pt;}
.ws57{word-spacing:0.576000pt;}
.wse{word-spacing:0.645333pt;}
.ws3d{word-spacing:0.832000pt;}
.ws1c{word-spacing:1.792000pt;}
.ws1d{word-spacing:2.112000pt;}
.ws74{word-spacing:2.624000pt;}
.ws54{word-spacing:3.136000pt;}
.ws60{word-spacing:3.328000pt;}
.ws3e{word-spacing:3.712000pt;}
.ws13{word-spacing:5.184000pt;}
.ws55{word-spacing:6.016000pt;}
.ws70{word-spacing:6.144000pt;}
.ws32{word-spacing:6.272000pt;}
.ws3c{word-spacing:6.400000pt;}
.ws79{word-spacing:6.954667pt;}
.ws40{word-spacing:7.168000pt;}
.ws1b{word-spacing:7.232000pt;}
.ws52{word-spacing:7.424000pt;}
.ws6f{word-spacing:7.744000pt;}
.ws19{word-spacing:8.640000pt;}
.ws43{word-spacing:8.704000pt;}
.ws6a{word-spacing:8.768000pt;}
.ws6b{word-spacing:8.832000pt;}
.ws20{word-spacing:8.960000pt;}
.ws4a{word-spacing:9.408000pt;}
.ws3b{word-spacing:9.600000pt;}
.ws4d{word-spacing:10.112000pt;}
.ws45{word-spacing:10.176000pt;}
.ws14{word-spacing:10.816000pt;}
.ws2b{word-spacing:10.880000pt;}
.ws21{word-spacing:10.944000pt;}
.ws1e{word-spacing:11.008000pt;}
.ws23{word-spacing:11.200000pt;}
.ws77{word-spacing:11.648000pt;}
.ws5e{word-spacing:11.712000pt;}
.ws42{word-spacing:11.840000pt;}
.ws63{word-spacing:12.160000pt;}
.ws31{word-spacing:12.672000pt;}
.ws18{word-spacing:13.248000pt;}
.ws36{word-spacing:13.440000pt;}
.ws61{word-spacing:13.632000pt;}
.ws6e{word-spacing:13.760000pt;}
.ws62{word-spacing:15.104000pt;}
.ws46{word-spacing:15.936000pt;}
.ws28{word-spacing:16.448000pt;}
.ws47{word-spacing:16.704000pt;}
.ws34{word-spacing:17.408000pt;}
.ws69{word-spacing:17.536000pt;}
.ws53{word-spacing:17.664000pt;}
.ws6c{word-spacing:17.792000pt;}
.ws37{word-spacing:17.920000pt;}
.ws16{word-spacing:18.816000pt;}
.ws15{word-spacing:19.008000pt;}
.ws2a{word-spacing:19.840000pt;}
.ws25{word-spacing:20.992000pt;}
.ws33{word-spacing:21.696000pt;}
.ws56{word-spacing:21.824000pt;}
.ws17{word-spacing:22.080000pt;}
.ws66{word-spacing:23.616000pt;}
.ws35{word-spacing:25.664000pt;}
.ws73{word-spacing:28.032000pt;}
.ws1a{word-spacing:28.288000pt;}
.ws68{word-spacing:29.312000pt;}
.ws64{word-spacing:30.208000pt;}
.ws1f{word-spacing:30.720000pt;}
.ws5d{word-spacing:32.192000pt;}
.ws4e{word-spacing:33.856000pt;}
.ws27{word-spacing:34.880000pt;}
.ws5c{word-spacing:37.376000pt;}
.ws65{word-spacing:41.536000pt;}
.ws5f{word-spacing:42.624000pt;}
.ws2c{word-spacing:53.952000pt;}
.ws50{word-spacing:59.712000pt;}
.ws4f{word-spacing:105.600000pt;}
.ws49{word-spacing:172.668140pt;}
._a{margin-left:-563.520000pt;}
._2d{margin-left:-545.068853pt;}
._2b{margin-left:-331.375824pt;}
._28{margin-left:-244.034613pt;}
._2a{margin-left:-206.405333pt;}
._27{margin-left:-93.993813pt;}
._26{margin-left:-87.642880pt;}
._1d{margin-left:-74.110316pt;}
._29{margin-left:-64.144427pt;}
._20{margin-left:-46.585428pt;}
._23{margin-left:-44.469010pt;}
._1{margin-left:-26.684800pt;}
._24{margin-left:-24.479510pt;}
._25{margin-left:-23.340312pt;}
._14{margin-left:-14.548383pt;}
._2{margin-left:-12.190486pt;}
._1e{margin-left:-10.528000pt;}
._8{margin-left:-9.355305pt;}
._e{margin-left:-7.130133pt;}
._16{margin-left:-6.036800pt;}
._18{margin-left:-5.062400pt;}
._7{margin-left:-4.173333pt;}
._3{margin-left:-2.440429pt;}
._5{margin-left:-1.290667pt;}
._6{width:1.014515pt;}
._0{width:2.666667pt;}
._b{width:3.648000pt;}
._12{width:5.312000pt;}
._22{width:6.355200pt;}
._4{width:7.317658pt;}
._9{width:9.037867pt;}
._15{width:10.552533pt;}
._17{width:11.872000pt;}
._13{width:13.565867pt;}
._1a{width:16.678400pt;}
._f{width:18.009600pt;}
._c{width:19.705600pt;}
._d{width:20.947200pt;}
._1b{width:23.296000pt;}
._10{width:28.211200pt;}
._19{width:29.446400pt;}
._21{width:30.752000pt;}
._1f{width:32.223138pt;}
._1c{width:47.782400pt;}
._11{width:61.113600pt;}
._2c{width:1149.476649pt;}
.fs13{font-size:11.354133pt;}
.fs11{font-size:11.789867pt;}
.fs12{font-size:13.539200pt;}
.fs10{font-size:17.092800pt;}
.fsc{font-size:26.385838pt;}
.fse{font-size:29.504000pt;}
.fsd{font-size:29.505600pt;}
.fsf{font-size:36.138133pt;}
.fsa{font-size:37.312000pt;}
.fs18{font-size:42.666667pt;}
.fs2{font-size:44.210667pt;}
.fs17{font-size:46.640000pt;}
.fs16{font-size:49.749333pt;}
.fsb{font-size:52.858667pt;}
.fs14{font-size:55.968000pt;}
.fs3{font-size:58.666667pt;}
.fs19{font-size:59.230933pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:80.000000pt;}
.fs15{font-size:85.333333pt;}
.fs4{font-size:90.666667pt;}
.fs9{font-size:96.000000pt;}
.fs1a{font-size:106.445333pt;}
.fs5{font-size:106.666667pt;}
.fs7{font-size:154.666667pt;}
.fs1c{font-size:158.773333pt;}
.fs1{font-size:160.000000pt;}
.fs1b{font-size:255.840000pt;}
.fs0{font-size:266.666667pt;}
.ya3{bottom:-250.799467pt;}
.yc4{bottom:-236.722933pt;}
.yc3{bottom:-227.282400pt;}
.yc2{bottom:-220.644267pt;}
.ybf{bottom:-217.195333pt;}
.yc1{bottom:-213.924133pt;}
.yc0{bottom:-207.204000pt;}
.ybe{bottom:-197.121333pt;}
.ybd{bottom:-187.043467pt;}
.ybc{bottom:-180.323333pt;}
.ybb{bottom:-173.603200pt;}
.yb7{bottom:-170.231600pt;}
.yba{bottom:-166.883067pt;}
.yb9{bottom:-160.162933pt;}
.yb8{bottom:-153.442667pt;}
.yb6{bottom:-143.360267pt;}
.yb5{bottom:-133.282267pt;}
.yb4{bottom:-126.562133pt;}
.yb3{bottom:-119.842000pt;}
.yaf{bottom:-116.470400pt;}
.yb2{bottom:-113.121867pt;}
.yb1{bottom:-106.401733pt;}
.yb0{bottom:-99.681600pt;}
.yae{bottom:-89.599067pt;}
.yad{bottom:-79.521200pt;}
.yac{bottom:-72.801067pt;}
.yab{bottom:-66.080800pt;}
.ya7{bottom:-62.709333pt;}
.yaa{bottom:-59.360667pt;}
.ya9{bottom:-52.640533pt;}
.ya8{bottom:-45.920400pt;}
.ya6{bottom:-37.543867pt;}
.ya5{bottom:-29.231333pt;}
.ya4{bottom:-28.985600pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:28.814400pt;}
.y13e{bottom:29.702800pt;}
.y135{bottom:30.276267pt;}
.y134{bottom:31.585600pt;}
.yfc{bottom:37.795333pt;}
.y89{bottom:38.079733pt;}
.ya{bottom:40.814400pt;}
.y2b{bottom:42.776800pt;}
.y123{bottom:45.348933pt;}
.y13d{bottom:45.492400pt;}
.y133{bottom:47.375200pt;}
.y4c{bottom:52.998667pt;}
.y71{bottom:58.993067pt;}
.y13c{bottom:61.282000pt;}
.y17{bottom:61.879733pt;}
.y88{bottom:62.079733pt;}
.y132{bottom:63.164800pt;}
.y90{bottom:66.741067pt;}
.y2a{bottom:66.776800pt;}
.y122{bottom:70.682267pt;}
.yde{bottom:71.810933pt;}
.yfa{bottom:74.467200pt;}
.y4b{bottom:76.998667pt;}
.y13b{bottom:77.071600pt;}
.y131{bottom:78.954400pt;}
.y16{bottom:80.546400pt;}
.yfb{bottom:81.571200pt;}
.y70{bottom:82.993067pt;}
.y87{bottom:86.079733pt;}
.y8f{bottom:90.741067pt;}
.y29{bottom:90.776800pt;}
.ydd{bottom:94.477600pt;}
.y130{bottom:94.744000pt;}
.y121{bottom:96.015600pt;}
.y15{bottom:99.213067pt;}
.yf9{bottom:99.800533pt;}
.y4a{bottom:100.998667pt;}
.y6f{bottom:106.993067pt;}
.y86{bottom:110.079733pt;}
.y12f{bottom:110.533600pt;}
.y9{bottom:114.654667pt;}
.y8e{bottom:114.741067pt;}
.y28{bottom:114.776800pt;}
.y136{bottom:115.996133pt;}
.ydc{bottom:117.144267pt;}
.y14{bottom:117.879733pt;}
.y120{bottom:121.348933pt;}
.y49{bottom:124.998667pt;}
.y8{bottom:130.444267pt;}
.y6e{bottom:130.993067pt;}
.y85{bottom:134.079733pt;}
.y13{bottom:136.546400pt;}
.y8d{bottom:138.741067pt;}
.y27{bottom:138.776800pt;}
.ydb{bottom:139.810933pt;}
.ye4{bottom:143.690133pt;}
.y7{bottom:146.233867pt;}
.y11f{bottom:146.682267pt;}
.y48{bottom:148.998667pt;}
.y6d{bottom:154.993067pt;}
.y12{bottom:155.213067pt;}
.y84{bottom:158.079733pt;}
.y6{bottom:162.023467pt;}
.yda{bottom:162.477600pt;}
.y8c{bottom:162.741067pt;}
.y26{bottom:162.776800pt;}
.ye3{bottom:167.690133pt;}
.y47{bottom:172.998667pt;}
.y11{bottom:173.879733pt;}
.y13a{bottom:174.314933pt;}
.y5{bottom:177.813067pt;}
.y6c{bottom:178.993067pt;}
.y83{bottom:182.079733pt;}
.yd9{bottom:185.144267pt;}
.y8b{bottom:186.741067pt;}
.y25{bottom:186.776800pt;}
.y11e{bottom:187.133733pt;}
.ye2{bottom:191.690133pt;}
.y10{bottom:192.546400pt;}
.y4{bottom:193.602667pt;}
.y46{bottom:196.998667pt;}
.y6b{bottom:202.993067pt;}
.yd8{bottom:207.810933pt;}
.y3{bottom:209.392267pt;}
.y24{bottom:210.776800pt;}
.yf{bottom:211.213067pt;}
.y11d{bottom:212.467067pt;}
.ye1{bottom:215.690133pt;}
.y45{bottom:220.998667pt;}
.y6a{bottom:226.993067pt;}
.ye{bottom:229.879733pt;}
.yd7{bottom:230.477600pt;}
.y23{bottom:234.776800pt;}
.y8a{bottom:237.364133pt;}
.y11c{bottom:237.800400pt;}
.ye0{bottom:239.690133pt;}
.y91{bottom:242.025467pt;}
.y44{bottom:244.998667pt;}
.yd{bottom:248.546400pt;}
.y69{bottom:250.993067pt;}
.yd6{bottom:253.144267pt;}
.y22{bottom:258.776800pt;}
.yc{bottom:267.213067pt;}
.yd5{bottom:275.810933pt;}
.y21{bottom:282.776800pt;}
.y43{bottom:289.138000pt;}
.y124{bottom:293.470933pt;}
.yd4{bottom:298.477600pt;}
.y72{bottom:306.277467pt;}
.y20{bottom:306.776800pt;}
.y110{bottom:307.427733pt;}
.y1a{bottom:309.763733pt;}
.yd3{bottom:321.144267pt;}
.y7d{bottom:321.432933pt;}
.y42{bottom:327.804667pt;}
.y1f{bottom:330.776800pt;}
.y9a{bottom:339.890933pt;}
.yf8{bottom:342.041867pt;}
.yd2{bottom:343.810933pt;}
.y7c{bottom:345.432933pt;}
.y12c{bottom:349.041867pt;}
.y1e{bottom:354.776800pt;}
.y10f{bottom:355.427733pt;}
.y99{bottom:363.890933pt;}
.yd1{bottom:366.477600pt;}
.yf7{bottom:367.375200pt;}
.y7b{bottom:369.432933pt;}
.y12b{bottom:374.375200pt;}
.y1d{bottom:378.776800pt;}
.y10e{bottom:379.427733pt;}
.y98{bottom:387.890933pt;}
.yd0{bottom:389.144267pt;}
.yf6{bottom:392.708533pt;}
.y7a{bottom:393.432933pt;}
.y60{bottom:396.748000pt;}
.y12a{bottom:399.708533pt;}
.y1c{bottom:402.776800pt;}
.y10d{bottom:403.427733pt;}
.y97{bottom:411.890933pt;}
.y79{bottom:417.432933pt;}
.y53{bottom:419.982267pt;}
.y5f{bottom:420.748000pt;}
.y129{bottom:425.041867pt;}
.y1b{bottom:426.776800pt;}
.y10c{bottom:427.427733pt;}
.yf5{bottom:433.160000pt;}
.y96{bottom:435.890933pt;}
.y78{bottom:441.432933pt;}
.y52{bottom:443.982267pt;}
.y5e{bottom:444.748000pt;}
.ydf{bottom:449.110267pt;}
.y128{bottom:450.375200pt;}
.y10b{bottom:451.427733pt;}
.yf4{bottom:458.493333pt;}
.y95{bottom:459.890933pt;}
.yec{bottom:461.401467pt;}
.y77{bottom:465.432933pt;}
.y51{bottom:467.982267pt;}
.y5d{bottom:468.748000pt;}
.y10a{bottom:475.427733pt;}
.yf3{bottom:483.826667pt;}
.y94{bottom:483.890933pt;}
.yeb{bottom:486.734800pt;}
.y76{bottom:489.432933pt;}
.y127{bottom:490.826667pt;}
.y50{bottom:491.982267pt;}
.y5c{bottom:492.748000pt;}
.y109{bottom:499.427733pt;}
.y93{bottom:507.890933pt;}
.yea{bottom:512.068133pt;}
.y4f{bottom:515.982267pt;}
.y126{bottom:516.160000pt;}
.y5b{bottom:516.748000pt;}
.ycf{bottom:517.784800pt;}
.y108{bottom:523.427733pt;}
.yf2{bottom:524.278133pt;}
.y92{bottom:531.890933pt;}
.y4e{bottom:539.982267pt;}
.yce{bottom:540.451467pt;}
.y5a{bottom:540.748000pt;}
.y125{bottom:541.493333pt;}
.y107{bottom:547.427733pt;}
.yf1{bottom:549.611467pt;}
.y7f{bottom:554.970400pt;}
.y2{bottom:562.063067pt;}
.ycd{bottom:563.118133pt;}
.y106{bottom:571.427733pt;}
.y7e{bottom:580.303733pt;}
.y4d{bottom:581.213333pt;}
.y12e{bottom:584.502533pt;}
.y9b{bottom:588.564933pt;}
.y105{bottom:595.427733pt;}
.y61{bottom:606.285467pt;}
.y12d{bottom:608.502533pt;}
.y1{bottom:615.396400pt;}
.y104{bottom:619.427733pt;}
.ycb{bottom:637.545867pt;}
.y41{bottom:656.761067pt;}
.yca{bottom:661.545867pt;}
.y103{bottom:667.427733pt;}
.y80{bottom:668.252933pt;}
.y11a{bottom:671.627200pt;}
.y40{bottom:680.761067pt;}
.yc9{bottom:685.545867pt;}
.y102{bottom:691.427733pt;}
.y67{bottom:692.252933pt;}
.y3f{bottom:704.761067pt;}
.ya2{bottom:707.286667pt;}
.yc8{bottom:709.545867pt;}
.y119{bottom:712.078667pt;}
.ya0{bottom:715.219712pt;}
.y101{bottom:715.427733pt;}
.y9e{bottom:716.075733pt;}
.y66{bottom:716.252933pt;}
.y9f{bottom:722.876000pt;}
.y9d{bottom:723.452133pt;}
.y3e{bottom:728.761067pt;}
.yc7{bottom:733.545867pt;}
.ya1{bottom:736.654933pt;}
.y118{bottom:737.412000pt;}
.y59{bottom:738.419733pt;}
.y36{bottom:739.427733pt;}
.y65{bottom:740.252933pt;}
.y3d{bottom:752.761067pt;}
.yc6{bottom:757.545867pt;}
.y58{bottom:762.419733pt;}
.y117{bottom:762.745333pt;}
.y35{bottom:763.427733pt;}
.y64{bottom:764.252933pt;}
.y3c{bottom:776.761067pt;}
.ye9{bottom:780.519467pt;}
.yc5{bottom:781.545867pt;}
.y9c{bottom:783.234400pt;}
.y57{bottom:786.419733pt;}
.y34{bottom:787.427733pt;}
.y116{bottom:788.078667pt;}
.y63{bottom:788.252933pt;}
.yff{bottom:796.981467pt;}
.y3b{bottom:800.761067pt;}
.ye8{bottom:805.852800pt;}
.y56{bottom:810.419733pt;}
.y33{bottom:811.427733pt;}
.y62{bottom:812.252933pt;}
.y115{bottom:813.412000pt;}
.y3a{bottom:824.761067pt;}
.ye7{bottom:831.186133pt;}
.y55{bottom:834.419733pt;}
.y32{bottom:835.427733pt;}
.y114{bottom:838.745333pt;}
.ycc{bottom:842.204000pt;}
.yfe{bottom:844.981467pt;}
.y39{bottom:848.761067pt;}
.y54{bottom:858.419733pt;}
.y31{bottom:859.427733pt;}
.y100{bottom:864.755733pt;}
.y68{bottom:867.537333pt;}
.y81{bottom:868.508000pt;}
.yfd{bottom:868.981467pt;}
.y38{bottom:872.761067pt;}
.y82{bottom:876.056133pt;}
.y37{bottom:888.641467pt;}
.y139{bottom:891.154400pt;}
.y11b{bottom:894.415733pt;}
.yf0{bottom:900.039333pt;}
.y112{bottom:910.866133pt;}
.y19{bottom:914.771600pt;}
.y2e{bottom:933.543333pt;}
.y111{bottom:934.866133pt;}
.y30{bottom:937.687600pt;}
.yef{bottom:938.706000pt;}
.y75{bottom:941.102400pt;}
.y18{bottom:943.104933pt;}
.y138{bottom:963.954400pt;}
.ye6{bottom:967.923867pt;}
.y2d{bottom:972.210000pt;}
.y2f{bottom:976.354267pt;}
.yee{bottom:977.372667pt;}
.y74{bottom:979.769067pt;}
.ye5{bottom:1006.590533pt;}
.y2c{bottom:1010.876667pt;}
.y113{bottom:1015.020933pt;}
.yed{bottom:1016.039333pt;}
.y73{bottom:1018.435733pt;}
.y137{bottom:1036.754533pt;}
.h34{height:-222.941333pt;}
.h33{height:-216.221333pt;}
.h32{height:-209.501333pt;}
.h31{height:-202.781333pt;}
.h30{height:-189.341333pt;}
.h2f{height:-182.621333pt;}
.h2e{height:-175.901333pt;}
.h2d{height:-169.181333pt;}
.h2c{height:-162.460000pt;}
.h2b{height:-155.740000pt;}
.h2a{height:-149.020000pt;}
.h29{height:-135.580000pt;}
.h28{height:-128.860000pt;}
.h27{height:-122.140000pt;}
.h26{height:-115.420000pt;}
.h25{height:-108.700000pt;}
.h24{height:-101.978667pt;}
.h23{height:-95.258667pt;}
.h22{height:-81.818667pt;}
.h21{height:-75.098667pt;}
.h20{height:-68.378667pt;}
.h1f{height:-61.658667pt;}
.h1e{height:-54.938667pt;}
.h1d{height:-48.218667pt;}
.h1c{height:-41.497333pt;}
.h1a{height:-31.484000pt;}
.h17{height:-24.400000pt;}
.h18{height:8.252907pt;}
.h35{height:8.299871pt;}
.h1b{height:8.618393pt;}
.h19{height:9.897155pt;}
.h16{height:12.423914pt;}
.h12{height:21.568594pt;}
.h11{height:23.219537pt;}
.h13{height:25.963520pt;}
.h3b{height:27.182375pt;}
.h3c{height:31.062500pt;}
.h14{height:31.801557pt;}
.h4{height:32.186574pt;}
.h38{height:36.243167pt;}
.h3d{height:40.489896pt;}
.h8{height:46.625000pt;}
.h5{height:46.933333pt;}
.h10{height:48.083836pt;}
.hd{height:48.494375pt;}
.he{height:58.187500pt;}
.ha{height:58.218750pt;}
.h37{height:62.166667pt;}
.h6{height:72.533333pt;}
.hb{height:72.773438pt;}
.h39{height:77.625000pt;}
.hf{height:82.476562pt;}
.h3e{height:85.156267pt;}
.h7{height:85.333333pt;}
.h36{height:87.281250pt;}
.hc{height:87.328125pt;}
.h3a{height:97.031250pt;}
.h15{height:105.312000pt;}
.h9{height:123.733333pt;}
.h40{height:127.018667pt;}
.h3{height:128.000000pt;}
.h3f{height:204.672000pt;}
.h2{height:213.333333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:42.668000pt;}
.w5{width:84.916000pt;}
.w4{width:89.677333pt;}
.w6{width:264.774667pt;}
.w2{width:315.325333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x20{left:1.064800pt;}
.x23{left:12.701867pt;}
.x12{left:30.236267pt;}
.xb{left:37.795333pt;}
.x15{left:39.022933pt;}
.x16{left:50.792800pt;}
.x26{left:53.535333pt;}
.x30{left:71.185333pt;}
.x31{left:77.502667pt;}
.x24{left:105.704133pt;}
.xd{left:113.488000pt;}
.xc{left:125.476133pt;}
.x25{left:126.718400pt;}
.x13{left:160.393733pt;}
.x2d{left:163.248000pt;}
.x2f{left:204.024933pt;}
.x1e{left:213.606533pt;}
.x9{left:215.644667pt;}
.x2{left:224.873600pt;}
.x1{left:235.852667pt;}
.x2a{left:238.265067pt;}
.xe{left:257.588667pt;}
.x11{left:261.889867pt;}
.x18{left:263.366400pt;}
.x10{left:269.291333pt;}
.xa{left:286.017733pt;}
.x2b{left:291.644533pt;}
.x28{left:293.303600pt;}
.x2c{left:299.982400pt;}
.x2e{left:345.799600pt;}
.x34{left:385.513733pt;}
.x29{left:408.188933pt;}
.xf{left:415.748000pt;}
.x14{left:437.706267pt;}
.x1d{left:440.580000pt;}
.x17{left:445.678667pt;}
.x1f{left:448.224000pt;}
.x19{left:489.749600pt;}
.x21{left:491.130667pt;}
.x27{left:501.320267pt;}
.x8{left:549.267467pt;}
.x6{left:552.215467pt;}
.x4{left:558.188400pt;}
.x3{left:580.193467pt;}
.x7{left:582.546667pt;}
.x1a{left:585.806000pt;}
.x1c{left:587.611200pt;}
.x5{left:588.970800pt;}
.x1b{left:610.217067pt;}
.x32{left:633.788933pt;}
.x33{left:650.240400pt;}
.x22{left:670.989333pt;}
}




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