
    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_e32061ad117395bce61c1cd1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.716000;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_c18261e4219627b3fed12f45.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_7b0b0f0443761a1ab0ea31f1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b7d0bf5dcc120d60f8cc81c9.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.899000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_87df00910fc588469e9d0781.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_7ff7c02ad7a9b7959bc06f46.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.482000;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_28a3df2d4ec2da8a2c1dacbf.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.429000;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_2bc4917f99cf43b3b2d23cdf.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.635000;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_c99a93346aae6ce4bb93f621.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.841000;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;}
.m2{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);}
.mf{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249750,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);}
.m5{transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v3{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.334000px;}
.v1{vertical-align:20.802000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.002338px;}
.ls7{letter-spacing:0.003175px;}
.ls3{letter-spacing:0.004200px;}
.ls5{letter-spacing:2.988775px;}
.ls6{letter-spacing:2.994775px;}
.ls2{letter-spacing:9.834538px;}
.ls4{letter-spacing:16.605299px;}
.ls9{letter-spacing:19.924438px;}
.ls8{letter-spacing:22.914775px;}
.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;}
}
.ws6e{word-spacing:-31.382190px;}
.ws31{word-spacing:-22.416000px;}
.ws29{word-spacing:-16.605662px;}
.ws3e{word-spacing:-15.278643px;}
.ws0{word-spacing:-14.738079px;}
.ws2{word-spacing:-14.535665px;}
.ws11{word-spacing:-12.305883px;}
.ws5e{word-spacing:-12.275163px;}
.ws30{word-spacing:-12.118232px;}
.ws35{word-spacing:-6.623136px;}
.ws9f{word-spacing:-6.025380px;}
.ws9a{word-spacing:-4.291888px;}
.wsa6{word-spacing:-4.172337px;}
.wsc7{word-spacing:-4.112561px;}
.ws6f{word-spacing:-3.096376px;}
.ws4e{word-spacing:-2.917049px;}
.ws92{word-spacing:-2.797498px;}
.ws67{word-spacing:-2.558396px;}
.ws74{word-spacing:-2.498620px;}
.ws34{word-spacing:-2.438844px;}
.ws59{word-spacing:-2.379069px;}
.wsac{word-spacing:-2.199742px;}
.ws61{word-spacing:-1.960640px;}
.ws93{word-spacing:-1.841088px;}
.wsa8{word-spacing:-1.830540px;}
.ws55{word-spacing:-1.661762px;}
.ws68{word-spacing:-1.542210px;}
.ws75{word-spacing:-1.482435px;}
.ws33{word-spacing:-1.422659px;}
.ws76{word-spacing:-1.362884px;}
.ws36{word-spacing:-1.183557px;}
.ws62{word-spacing:-1.064006px;}
.ws58{word-spacing:-1.004230px;}
.ws5a{word-spacing:-0.944454px;}
.ws99{word-spacing:-0.872724px;}
.wsb4{word-spacing:-0.705352px;}
.wse{word-spacing:-0.585801px;}
.wsa1{word-spacing:-0.466250px;}
.ws40{word-spacing:-0.346698px;}
.ws52{word-spacing:-0.227147px;}
.ws57{word-spacing:-0.107596px;}
.ws3c{word-spacing:-0.059776px;}
.ws13{word-spacing:-0.047820px;}
.ws2e{word-spacing:0.000000px;}
.ws5d{word-spacing:0.011955px;}
.ws9c{word-spacing:0.370609px;}
.ws4f{word-spacing:0.430384px;}
.ws9e{word-spacing:0.502115px;}
.ws23{word-spacing:0.549936px;}
.ws53{word-spacing:0.669487px;}
.ws54{word-spacing:0.729262px;}
.ws6b{word-spacing:0.789038px;}
.ws50{word-spacing:0.848814px;}
.ws82{word-spacing:1.028140px;}
.ws25{word-spacing:1.087916px;}
.ws83{word-spacing:1.147692px;}
.ws6a{word-spacing:1.267243px;}
.ws8a{word-spacing:1.327018px;}
.wsc4{word-spacing:1.386794px;}
.ws41{word-spacing:1.566121px;}
.ws27{word-spacing:1.745448px;}
.wsab{word-spacing:1.757403px;}
.ws42{word-spacing:1.805223px;}
.wsc6{word-spacing:1.876954px;}
.ws80{word-spacing:1.924774px;}
.wsa0{word-spacing:1.984550px;}
.ws7{word-spacing:2.044326px;}
.ws37{word-spacing:2.104101px;}
.ws88{word-spacing:2.223652px;}
.ws47{word-spacing:2.343204px;}
.wsa9{word-spacing:2.355159px;}
.ws7e{word-spacing:2.462755px;}
.wsba{word-spacing:2.467878px;}
.ws2c{word-spacing:2.522530px;}
.ws56{word-spacing:2.642082px;}
.ws64{word-spacing:2.761633px;}
.wscd{word-spacing:2.821408px;}
.ws6c{word-spacing:2.881184px;}
.wsf{word-spacing:2.940960px;}
.ws2b{word-spacing:3.120286px;}
.ws38{word-spacing:3.180062px;}
.wsa{word-spacing:3.239838px;}
.ws3{word-spacing:3.299613px;}
.ws97{word-spacing:3.336144px;}
.ws6{word-spacing:3.359389px;}
.ws9{word-spacing:3.419164px;}
.ws71{word-spacing:3.466120px;}
.ws15{word-spacing:3.478940px;}
.ws8{word-spacing:3.538716px;}
.ws66{word-spacing:3.658267px;}
.ws5c{word-spacing:3.718042px;}
.wsc5{word-spacing:3.729997px;}
.wsb5{word-spacing:3.777818px;}
.wsb0{word-spacing:3.948481px;}
.ws7c{word-spacing:4.016920px;}
.ws51{word-spacing:4.076696px;}
.ws45{word-spacing:4.136472px;}
.wsbe{word-spacing:4.196247px;}
.wsc0{word-spacing:4.236638px;}
.ws95{word-spacing:4.256023px;}
.ws60{word-spacing:4.315798px;}
.ws49{word-spacing:4.375574px;}
.ws3f{word-spacing:4.435350px;}
.ws2f{word-spacing:4.483200px;}
.ws2a{word-spacing:4.495125px;}
.ws98{word-spacing:4.626631px;}
.ws3d{word-spacing:4.674452px;}
.wsca{word-spacing:4.684246px;}
.ws85{word-spacing:4.734228px;}
.ws4c{word-spacing:4.794003px;}
.ws1d{word-spacing:4.853779px;}
.wsc2{word-spacing:4.913554px;}
.ws65{word-spacing:4.973330px;}
.ws7f{word-spacing:5.092881px;}
.ws14{word-spacing:5.212432px;}
.ws89{word-spacing:5.331984px;}
.ws1{word-spacing:5.379825px;}
.ws8b{word-spacing:5.391759px;}
.ws39{word-spacing:5.451535px;}
.ws16{word-spacing:5.511310px;}
.ws18{word-spacing:5.571086px;}
.ws69{word-spacing:5.630862px;}
.wsbb{word-spacing:5.642817px;}
.ws24{word-spacing:5.690637px;}
.ws94{word-spacing:5.750413px;}
.wsa2{word-spacing:5.762368px;}
.ws1a{word-spacing:5.869964px;}
.wscc{word-spacing:5.881919px;}
.ws32{word-spacing:5.929740px;}
.wsd0{word-spacing:5.941695px;}
.ws2d{word-spacing:6.109066px;}
.ws4{word-spacing:6.121021px;}
.wsaa{word-spacing:6.180797px;}
.wsb2{word-spacing:6.300348px;}
.wsb8{word-spacing:6.360124px;}
.ws20{word-spacing:6.527496px;}
.wsa7{word-spacing:6.647047px;}
.ws3b{word-spacing:6.766598px;}
.ws84{word-spacing:6.826374px;}
.wsa5{word-spacing:6.886149px;}
.ws44{word-spacing:6.945925px;}
.ws4a{word-spacing:7.125252px;}
.wsb1{word-spacing:7.137207px;}
.wsb9{word-spacing:7.185027px;}
.ws5b{word-spacing:7.244803px;}
.wsb3{word-spacing:7.256758px;}
.ws63{word-spacing:7.304578px;}
.ws5{word-spacing:7.364354px;}
.wsbd{word-spacing:7.436085px;}
.wsc1{word-spacing:7.555636px;}
.ws22{word-spacing:7.603456px;}
.ws8d{word-spacing:7.663232px;}
.wsb{word-spacing:7.782783px;}
.wsbf{word-spacing:7.842559px;}
.ws28{word-spacing:7.902334px;}
.ws43{word-spacing:8.021886px;}
.ws8e{word-spacing:8.081661px;}
.ws4b{word-spacing:8.201212px;}
.ws3a{word-spacing:8.380539px;}
.ws4d{word-spacing:8.440315px;}
.ws8f{word-spacing:8.500090px;}
.ws12{word-spacing:8.559866px;}
.ws1b{word-spacing:8.619642px;}
.ws9d{word-spacing:8.631597px;}
.ws19{word-spacing:8.679417px;}
.ws77{word-spacing:8.739193px;}
.ws7a{word-spacing:8.798968px;}
.wsd{word-spacing:8.978295px;}
.ws7d{word-spacing:9.038071px;}
.ws78{word-spacing:9.067581px;}
.ws48{word-spacing:9.097846px;}
.ws21{word-spacing:9.217398px;}
.ws91{word-spacing:9.576051px;}
.ws8c{word-spacing:9.635827px;}
.ws72{word-spacing:9.651465px;}
.wscb{word-spacing:9.695602px;}
.ws1f{word-spacing:9.874929px;}
.ws26{word-spacing:9.934705px;}
.ws17{word-spacing:9.994480px;}
.wsc{word-spacing:10.114032px;}
.ws90{word-spacing:10.233583px;}
.ws70{word-spacing:10.592236px;}
.ws73{word-spacing:10.711788px;}
.wsa3{word-spacing:10.843294px;}
.ws1e{word-spacing:10.891114px;}
.ws96{word-spacing:10.950890px;}
.ws7b{word-spacing:11.130217px;}
.wsce{word-spacing:11.309544px;}
.ws87{word-spacing:11.488870px;}
.wsb7{word-spacing:11.919255px;}
.ws86{word-spacing:12.146402px;}
.ws46{word-spacing:12.564831px;}
.wsc3{word-spacing:12.684382px;}
.wsa4{word-spacing:12.756113px;}
.ws5f{word-spacing:13.270183px;}
.wscf{word-spacing:13.413645px;}
.wsb6{word-spacing:14.429830px;}
.ws79{word-spacing:16.225955px;}
.wsbc{word-spacing:17.119732px;}
.ws1c{word-spacing:17.585982px;}
.ws10{word-spacing:22.894055px;}
.ws6d{word-spacing:23.085337px;}
.ws9b{word-spacing:44.604553px;}
.ws81{word-spacing:58.281600px;}
.wsae{word-spacing:63.983802px;}
.wsad{word-spacing:78.138664px;}
.wsaf{word-spacing:87.057184px;}
.wsc8{word-spacing:97.625510px;}
.wsc9{word-spacing:117.961169px;}
._7{margin-left:-31.561517px;}
._b{margin-left:-30.327738px;}
._e{margin-left:-29.192002px;}
._f{margin-left:-27.496776px;}
._9{margin-left:-24.567772px;}
._5{margin-left:-23.252708px;}
._1e{margin-left:-22.035688px;}
._3{margin-left:-8.091257px;}
._4{margin-left:-6.575316px;}
._a{margin-left:-4.602721px;}
._1{margin-left:-2.668393px;}
._8{margin-left:-1.613941px;}
._6{width:1.673717px;}
._11{width:2.869229px;}
._21{width:4.662497px;}
._1b{width:5.883378px;}
._1a{width:9.441989px;}
._19{width:10.561657px;}
._0{width:12.358189px;}
._1f{width:13.530794px;}
._1c{width:14.884124px;}
._27{width:15.998352px;}
._12{width:17.177106px;}
._18{width:18.807805px;}
._20{width:19.985508px;}
._d{width:21.019502px;}
._17{width:22.714728px;}
._16{width:23.850464px;}
._c{width:25.067485px;}
._14{width:26.203222px;}
._10{width:27.757387px;}
._1d{width:29.089208px;}
._15{width:30.425780px;}
._2{width:32.278950px;}
._2b{width:33.409810px;}
._23{width:35.745809px;}
._26{width:41.940962px;}
._22{width:43.636188px;}
._28{width:46.962113px;}
._25{width:48.238909px;}
._24{width:49.613748px;}
._13{width:80.697600px;}
._29{width:122.539980px;}
._2d{width:124.849720px;}
._2a{width:128.039335px;}
._2e{width:161.334344px;}
._2c{width:167.252129px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:41.842800px;}
.fs1{font-size:59.775600px;}
.fs2{font-size:71.731200px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y30{bottom:56.125500px;}
.y42{bottom:59.031000px;}
.ydc{bottom:59.862000px;}
.y2f{bottom:74.058000px;}
.ycd{bottom:76.965000px;}
.ydb{bottom:77.794500px;}
.y2e{bottom:91.992000px;}
.ycc{bottom:94.897500px;}
.yda{bottom:95.727000px;}
.y2d{bottom:109.924500px;}
.ycb{bottom:112.830000px;}
.y5b{bottom:118.890000px;}
.y2c{bottom:127.857000px;}
.yd9{bottom:128.604000px;}
.yca{bottom:130.762500px;}
.y5a{bottom:136.824000px;}
.y2b{bottom:145.789500px;}
.yc9{bottom:148.695000px;}
.y59{bottom:154.756500px;}
.y2a{bottom:163.722000px;}
.yc8{bottom:166.627500px;}
.y58{bottom:172.689000px;}
.y29{bottom:181.654500px;}
.yc7{bottom:184.561500px;}
.y57{bottom:190.621500px;}
.y28{bottom:199.588500px;}
.y56{bottom:208.554000px;}
.yc6{bottom:211.459500px;}
.y27{bottom:217.521000px;}
.y55{bottom:226.486500px;}
.yc5{bottom:229.393500px;}
.y26{bottom:235.453500px;}
.ya5{bottom:244.420500px;}
.yc4{bottom:247.326000px;}
.y25{bottom:253.386000px;}
.ya4{bottom:262.353000px;}
.yc3{bottom:265.258500px;}
.y24{bottom:271.318500px;}
.ya3{bottom:280.285500px;}
.yc2{bottom:283.191000px;}
.y54{bottom:289.251000px;}
.y23{bottom:298.218000px;}
.yc1{bottom:301.123500px;}
.y53{bottom:307.185000px;}
.y22{bottom:316.150500px;}
.yc0{bottom:319.056000px;}
.y52{bottom:325.117500px;}
.y21{bottom:334.083000px;}
.y8f{bottom:335.128500px;}
.ybf{bottom:336.990000px;}
.y51{bottom:343.050000px;}
.y20{bottom:352.017000px;}
.y8e{bottom:353.061000px;}
.ybe{bottom:354.922500px;}
.y50{bottom:360.982500px;}
.y1f{bottom:369.949500px;}
.y8d{bottom:370.993500px;}
.ybd{bottom:372.855000px;}
.y4f{bottom:378.915000px;}
.y1e{bottom:387.882000px;}
.y8c{bottom:388.926000px;}
.ybc{bottom:390.787500px;}
.yf1{bottom:394.098000px;}
.yd8{bottom:396.568500px;}
.y4e{bottom:396.847500px;}
.y1d{bottom:405.814500px;}
.ybb{bottom:408.720000px;}
.ya2{bottom:414.781500px;}
.y8b{bottom:415.825500px;}
.y1c{bottom:423.747000px;}
.yba{bottom:426.652500px;}
.ya1{bottom:432.714000px;}
.y8a{bottom:433.758000px;}
.y1b{bottom:441.679500px;}
.y89{bottom:451.690500px;}
.y68{bottom:459.540000px;}
.y1a{bottom:459.613500px;}
.yb9{bottom:462.156000px;}
.yb0{bottom:468.174000px;}
.y88{bottom:469.624500px;}
.ya0{bottom:474.421500px;}
.y67{bottom:477.472500px;}
.y4d{bottom:477.546000px;}
.y87{bottom:487.557000px;}
.yaf{bottom:489.096000px;}
.y9f{bottom:492.354000px;}
.y66{bottom:495.405000px;}
.y4c{bottom:495.478500px;}
.y19{bottom:498.613500px;}
.yb8{bottom:503.863500px;}
.y86{bottom:505.489500px;}
.y9e{bottom:510.286500px;}
.y65{bottom:513.337500px;}
.y4b{bottom:513.411000px;}
.yb7{bottom:521.796000px;}
.y85{bottom:523.422000px;}
.y9d{bottom:528.220500px;}
.yae{bottom:530.763000px;}
.y64{bottom:531.271500px;}
.yb6{bottom:539.728500px;}
.y4a{bottom:540.310500px;}
.y84{bottom:541.354500px;}
.yad{bottom:548.695500px;}
.y63{bottom:549.204000px;}
.yb5{bottom:557.661000px;}
.y49{bottom:558.243000px;}
.y83{bottom:559.287000px;}
.y18{bottom:563.386500px;}
.y9c{bottom:563.814000px;}
.yac{bottom:566.628000px;}
.y62{bottom:567.136500px;}
.y41{bottom:573.037500px;}
.yb4{bottom:575.595000px;}
.y48{bottom:576.175500px;}
.y17{bottom:581.319000px;}
.y9b{bottom:581.748000px;}
.yab{bottom:584.560500px;}
.y61{bottom:585.069000px;}
.y82{bottom:586.186500px;}
.y40{bottom:590.971500px;}
.yb3{bottom:593.527500px;}
.y47{bottom:594.108000px;}
.y9a{bottom:599.680500px;}
.yaa{bottom:602.493000px;}
.y60{bottom:603.001500px;}
.y81{bottom:604.119000px;}
.y10b{bottom:608.109000px;}
.y16{bottom:608.218500px;}
.y3f{bottom:608.904000px;}
.yb2{bottom:611.460000px;}
.y46{bottom:612.042000px;}
.y99{bottom:617.613000px;}
.ya9{bottom:620.425500px;}
.y5f{bottom:620.934000px;}
.y80{bottom:622.051500px;}
.y10a{bottom:626.041500px;}
.y15{bottom:626.151000px;}
.y3e{bottom:626.836500px;}
.yb1{bottom:629.392500px;}
.y98{bottom:635.545500px;}
.y7f{bottom:639.985500px;}
.y109{bottom:643.974000px;}
.y14{bottom:644.083500px;}
.y3d{bottom:644.769000px;}
.ya8{bottom:647.325000px;}
.y5e{bottom:647.833500px;}
.yf0{bottom:651.853500px;}
.y97{bottom:653.478000px;}
.y7e{bottom:657.918000px;}
.y45{bottom:660.934500px;}
.y108{bottom:661.908000px;}
.y13{bottom:662.017500px;}
.y3c{bottom:662.701500px;}
.ya7{bottom:665.257500px;}
.y5d{bottom:665.766000px;}
.yef{bottom:669.786000px;}
.y102{bottom:673.863000px;}
.y7d{bottom:675.850500px;}
.y12{bottom:679.950000px;}
.y3b{bottom:680.634000px;}
.y44{bottom:681.856500px;}
.y5c{bottom:683.698500px;}
.yee{bottom:687.718500px;}
.y101{bottom:691.795500px;}
.y7c{bottom:693.783000px;}
.y96{bottom:695.185500px;}
.y11{bottom:697.882500px;}
.y3a{bottom:698.568000px;}
.yed{bottom:705.651000px;}
.y100{bottom:709.728000px;}
.ya6{bottom:712.995000px;}
.y95{bottom:713.119500px;}
.y10{bottom:715.815000px;}
.yec{bottom:723.583500px;}
.y39{bottom:725.466000px;}
.yff{bottom:727.660500px;}
.y7b{bottom:730.035000px;}
.y94{bottom:731.052000px;}
.y43{bottom:731.437500px;}
.yf{bottom:733.747500px;}
.yeb{bottom:741.516000px;}
.y38{bottom:743.400000px;}
.y107{bottom:745.593000px;}
.y93{bottom:748.984500px;}
.ye{bottom:751.680000px;}
.yfe{bottom:757.548000px;}
.yea{bottom:759.450000px;}
.y37{bottom:761.332500px;}
.y106{bottom:763.527000px;}
.y92{bottom:766.917000px;}
.yd{bottom:769.614000px;}
.y7a{bottom:772.492500px;}
.yfd{bottom:775.482000px;}
.y36{bottom:779.265000px;}
.y105{bottom:781.459500px;}
.yc{bottom:787.546500px;}
.y79{bottom:790.425000px;}
.ye9{bottom:790.696500px;}
.yfc{bottom:793.414500px;}
.y35{bottom:797.197500px;}
.yb{bottom:805.479000px;}
.y78{bottom:808.357500px;}
.ye8{bottom:808.629000px;}
.yfb{bottom:811.347000px;}
.y34{bottom:815.130000px;}
.y91{bottom:818.878500px;}
.ya{bottom:823.411500px;}
.y77{bottom:826.291500px;}
.ye7{bottom:826.561500px;}
.yfa{bottom:829.279500px;}
.y33{bottom:833.062500px;}
.y90{bottom:836.811000px;}
.y9{bottom:841.344000px;}
.y76{bottom:844.224000px;}
.ye6{bottom:844.494000px;}
.yf9{bottom:847.212000px;}
.y32{bottom:850.996500px;}
.yd7{bottom:851.830500px;}
.y8{bottom:859.278000px;}
.y75{bottom:862.156500px;}
.ye5{bottom:862.428000px;}
.yf8{bottom:865.144500px;}
.y104{bottom:865.146000px;}
.yd6{bottom:869.763000px;}
.y31{bottom:877.894500px;}
.y74{bottom:880.089000px;}
.ye4{bottom:880.360500px;}
.yf7{bottom:883.078500px;}
.yd5{bottom:887.695500px;}
.y103{bottom:895.033500px;}
.y7{bottom:895.827000px;}
.ye3{bottom:898.293000px;}
.yd4{bottom:905.629500px;}
.y73{bottom:906.988500px;}
.yf6{bottom:912.966000px;}
.yd3{bottom:923.562000px;}
.y72{bottom:924.921000px;}
.ye2{bottom:929.539500px;}
.yf5{bottom:930.898500px;}
.y6{bottom:941.373000px;}
.yd2{bottom:941.494500px;}
.y71{bottom:942.853500px;}
.ye1{bottom:947.472000px;}
.yf4{bottom:948.831000px;}
.y5{bottom:959.305500px;}
.y70{bottom:960.786000px;}
.ye0{bottom:965.404500px;}
.yf3{bottom:966.763500px;}
.y4{bottom:977.239500px;}
.yd1{bottom:978.525000px;}
.y6f{bottom:978.720000px;}
.ydf{bottom:983.338500px;}
.yf2{bottom:984.697500px;}
.y3{bottom:995.172000px;}
.y6e{bottom:996.652500px;}
.yde{bottom:1001.271000px;}
.y6d{bottom:1014.585000px;}
.ydd{bottom:1019.203500px;}
.yd0{bottom:1023.550500px;}
.y6c{bottom:1032.517500px;}
.y2{bottom:1035.945000px;}
.ycf{bottom:1041.484500px;}
.y6b{bottom:1050.450000px;}
.yce{bottom:1059.417000px;}
.y1{bottom:1059.855000px;}
.y6a{bottom:1068.382500px;}
.y69{bottom:1086.316500px;}
.h8{height:29.349820px;}
.h9{height:36.582667px;}
.h6{height:41.723369px;}
.h4{height:42.799330px;}
.h3{height:44.831700px;}
.h5{height:50.498765px;}
.h2{height:60.598349px;}
.h7{height:67.832765px;}
.h1{height:81.400349px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.xb{left:108.000000px;}
.x1{left:110.685000px;}
.x64{left:115.471500px;}
.x4b{left:125.635500px;}
.x46{left:130.087500px;}
.x3d{left:135.928500px;}
.x66{left:137.451000px;}
.x65{left:138.718500px;}
.x1e{left:143.017500px;}
.x37{left:145.290000px;}
.x47{left:148.056000px;}
.x4{left:154.857000px;}
.x26{left:169.833000px;}
.x9{left:171.094500px;}
.x3e{left:178.035000px;}
.xd{left:188.872500px;}
.xe{left:196.344000px;}
.x45{left:207.924000px;}
.x27{left:216.358500px;}
.x2{left:224.235000px;}
.x3f{left:228.148500px;}
.xa{left:229.252500px;}
.x8{left:232.237500px;}
.x41{left:233.850000px;}
.x1c{left:237.759000px;}
.x32{left:243.768000px;}
.x40{left:245.556000px;}
.x28{left:248.757000px;}
.x42{left:249.951000px;}
.x1f{left:252.313500px;}
.x43{left:253.818000px;}
.x49{left:256.269000px;}
.x20{left:259.785000px;}
.x38{left:263.535000px;}
.x25{left:265.722000px;}
.x36{left:269.203500px;}
.x1d{left:274.978500px;}
.xc{left:278.443500px;}
.x33{left:282.130500px;}
.x7{left:286.990500px;}
.x34{left:293.850000px;}
.x4a{left:296.965500px;}
.x62{left:298.929000px;}
.x3c{left:306.921000px;}
.x29{left:308.133000px;}
.x11{left:310.726500px;}
.x5{left:312.192000px;}
.x12{left:318.198000px;}
.xf{left:324.003000px;}
.x35{left:328.059000px;}
.x63{left:333.205500px;}
.x15{left:334.359000px;}
.x23{left:336.649500px;}
.x10{left:338.946000px;}
.x16{left:341.832000px;}
.x17{left:350.067000px;}
.x3a{left:355.122000px;}
.x44{left:356.371500px;}
.x39{left:357.939000px;}
.x21{left:360.445500px;}
.x48{left:363.082500px;}
.x18{left:365.011500px;}
.x61{left:366.130500px;}
.x3b{left:368.857500px;}
.x13{left:375.747000px;}
.x24{left:377.808000px;}
.x14{left:383.218500px;}
.x22{left:397.201500px;}
.x6{left:436.053000px;}
.x4c{left:463.237500px;}
.x2d{left:464.343000px;}
.x3{left:465.355500px;}
.x67{left:472.638000px;}
.x2e{left:488.994000px;}
.x4e{left:495.054000px;}
.x50{left:499.162500px;}
.x51{left:506.635500px;}
.x1b{left:509.845500px;}
.x53{left:518.224500px;}
.x55{left:520.419000px;}
.x2a{left:551.482500px;}
.x2f{left:557.439000px;}
.x30{left:561.549000px;}
.x31{left:569.020500px;}
.x4d{left:572.137500px;}
.x5f{left:580.888500px;}
.x19{left:584.614500px;}
.x54{left:592.575000px;}
.x2b{left:595.051500px;}
.x1a{left:599.559000px;}
.x57{left:602.178000px;}
.x59{left:607.977000px;}
.x58{left:609.651000px;}
.x6a{left:617.193000px;}
.x60{left:649.272000px;}
.x52{left:659.809500px;}
.x56{left:666.376500px;}
.x68{left:674.646000px;}
.x69{left:709.372500px;}
.x5b{left:716.695500px;}
.x4f{left:725.551500px;}
.x5d{left:732.313500px;}
.x5e{left:750.484500px;}
.x2c{left:776.692500px;}
.x5a{left:780.579000px;}
.x5c{left:787.305000px;}
@media print{
.v3{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.408000pt;}
.v1{vertical-align:18.490667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.002079pt;}
.ls7{letter-spacing:0.002823pt;}
.ls3{letter-spacing:0.003733pt;}
.ls5{letter-spacing:2.656689pt;}
.ls6{letter-spacing:2.662022pt;}
.ls2{letter-spacing:8.741812pt;}
.ls4{letter-spacing:14.760266pt;}
.ls9{letter-spacing:17.710612pt;}
.ls8{letter-spacing:20.368689pt;}
.ws6e{word-spacing:-27.895280pt;}
.ws31{word-spacing:-19.925333pt;}
.ws29{word-spacing:-14.760588pt;}
.ws3e{word-spacing:-13.581016pt;}
.ws0{word-spacing:-13.100514pt;}
.ws2{word-spacing:-12.920591pt;}
.ws11{word-spacing:-10.938563pt;}
.ws5e{word-spacing:-10.911256pt;}
.ws30{word-spacing:-10.771761pt;}
.ws35{word-spacing:-5.887232pt;}
.ws9f{word-spacing:-5.355894pt;}
.ws9a{word-spacing:-3.815012pt;}
.wsa6{word-spacing:-3.708744pt;}
.wsc7{word-spacing:-3.655610pt;}
.ws6f{word-spacing:-2.752334pt;}
.ws4e{word-spacing:-2.592933pt;}
.ws92{word-spacing:-2.486665pt;}
.ws67{word-spacing:-2.274129pt;}
.ws74{word-spacing:-2.220996pt;}
.ws34{word-spacing:-2.167862pt;}
.ws59{word-spacing:-2.114728pt;}
.wsac{word-spacing:-1.955326pt;}
.ws61{word-spacing:-1.742791pt;}
.ws93{word-spacing:-1.636523pt;}
.wsa8{word-spacing:-1.627146pt;}
.ws55{word-spacing:-1.477121pt;}
.ws68{word-spacing:-1.370854pt;}
.ws75{word-spacing:-1.317720pt;}
.ws33{word-spacing:-1.264586pt;}
.ws76{word-spacing:-1.211452pt;}
.ws36{word-spacing:-1.052051pt;}
.ws62{word-spacing:-0.945783pt;}
.ws58{word-spacing:-0.892649pt;}
.ws5a{word-spacing:-0.839515pt;}
.ws99{word-spacing:-0.775754pt;}
.wsb4{word-spacing:-0.626980pt;}
.wse{word-spacing:-0.520712pt;}
.wsa1{word-spacing:-0.414444pt;}
.ws40{word-spacing:-0.308176pt;}
.ws52{word-spacing:-0.201909pt;}
.ws57{word-spacing:-0.095641pt;}
.ws3c{word-spacing:-0.053134pt;}
.ws13{word-spacing:-0.042507pt;}
.ws2e{word-spacing:0.000000pt;}
.ws5d{word-spacing:0.010627pt;}
.ws9c{word-spacing:0.329430pt;}
.ws4f{word-spacing:0.382564pt;}
.ws9e{word-spacing:0.446324pt;}
.ws23{word-spacing:0.488832pt;}
.ws53{word-spacing:0.595099pt;}
.ws54{word-spacing:0.648233pt;}
.ws6b{word-spacing:0.701367pt;}
.ws50{word-spacing:0.754501pt;}
.ws82{word-spacing:0.913903pt;}
.ws25{word-spacing:0.967036pt;}
.ws83{word-spacing:1.020170pt;}
.ws6a{word-spacing:1.126438pt;}
.ws8a{word-spacing:1.179572pt;}
.wsc4{word-spacing:1.232706pt;}
.ws41{word-spacing:1.392107pt;}
.ws27{word-spacing:1.551509pt;}
.wsab{word-spacing:1.562136pt;}
.ws42{word-spacing:1.604643pt;}
.wsc6{word-spacing:1.668403pt;}
.ws80{word-spacing:1.710911pt;}
.wsa0{word-spacing:1.764044pt;}
.ws7{word-spacing:1.817178pt;}
.ws37{word-spacing:1.870312pt;}
.ws88{word-spacing:1.976580pt;}
.ws47{word-spacing:2.082848pt;}
.wsa9{word-spacing:2.093474pt;}
.ws7e{word-spacing:2.189115pt;}
.wsba{word-spacing:2.193669pt;}
.ws2c{word-spacing:2.242249pt;}
.ws56{word-spacing:2.348517pt;}
.ws64{word-spacing:2.454785pt;}
.wscd{word-spacing:2.507919pt;}
.ws6c{word-spacing:2.561052pt;}
.wsf{word-spacing:2.614186pt;}
.ws2b{word-spacing:2.773588pt;}
.ws38{word-spacing:2.826722pt;}
.wsa{word-spacing:2.879856pt;}
.ws3{word-spacing:2.932989pt;}
.ws97{word-spacing:2.965461pt;}
.ws6{word-spacing:2.986123pt;}
.ws9{word-spacing:3.039257pt;}
.ws71{word-spacing:3.080996pt;}
.ws15{word-spacing:3.092391pt;}
.ws8{word-spacing:3.145525pt;}
.ws66{word-spacing:3.251793pt;}
.ws5c{word-spacing:3.304927pt;}
.wsc5{word-spacing:3.315553pt;}
.wsb5{word-spacing:3.358060pt;}
.wsb0{word-spacing:3.509761pt;}
.ws7c{word-spacing:3.570596pt;}
.ws51{word-spacing:3.623730pt;}
.ws45{word-spacing:3.676864pt;}
.wsbe{word-spacing:3.729997pt;}
.wsc0{word-spacing:3.765901pt;}
.ws95{word-spacing:3.783131pt;}
.ws60{word-spacing:3.836265pt;}
.ws49{word-spacing:3.889399pt;}
.ws3f{word-spacing:3.942533pt;}
.ws2f{word-spacing:3.985067pt;}
.ws2a{word-spacing:3.995667pt;}
.ws98{word-spacing:4.112561pt;}
.ws3d{word-spacing:4.155068pt;}
.wsca{word-spacing:4.163775pt;}
.ws85{word-spacing:4.208202pt;}
.ws4c{word-spacing:4.261336pt;}
.ws1d{word-spacing:4.314470pt;}
.wsc2{word-spacing:4.367604pt;}
.ws65{word-spacing:4.420738pt;}
.ws7f{word-spacing:4.527005pt;}
.ws14{word-spacing:4.633273pt;}
.ws89{word-spacing:4.739541pt;}
.ws1{word-spacing:4.782067pt;}
.ws8b{word-spacing:4.792675pt;}
.ws39{word-spacing:4.845809pt;}
.ws16{word-spacing:4.898943pt;}
.ws18{word-spacing:4.952076pt;}
.ws69{word-spacing:5.005210pt;}
.wsbb{word-spacing:5.015837pt;}
.ws24{word-spacing:5.058344pt;}
.ws94{word-spacing:5.111478pt;}
.wsa2{word-spacing:5.122105pt;}
.ws1a{word-spacing:5.217746pt;}
.wscc{word-spacing:5.228372pt;}
.ws32{word-spacing:5.270880pt;}
.wsd0{word-spacing:5.281506pt;}
.ws2d{word-spacing:5.430281pt;}
.ws4{word-spacing:5.440908pt;}
.wsaa{word-spacing:5.494042pt;}
.wsb2{word-spacing:5.600310pt;}
.wsb8{word-spacing:5.653443pt;}
.ws20{word-spacing:5.802218pt;}
.wsa7{word-spacing:5.908486pt;}
.ws3b{word-spacing:6.014754pt;}
.ws84{word-spacing:6.067888pt;}
.wsa5{word-spacing:6.121021pt;}
.ws44{word-spacing:6.174155pt;}
.ws4a{word-spacing:6.333557pt;}
.wsb1{word-spacing:6.344184pt;}
.wsb9{word-spacing:6.386691pt;}
.ws5b{word-spacing:6.439825pt;}
.wsb3{word-spacing:6.450451pt;}
.ws63{word-spacing:6.492959pt;}
.ws5{word-spacing:6.546092pt;}
.wsbd{word-spacing:6.609853pt;}
.wsc1{word-spacing:6.716121pt;}
.ws22{word-spacing:6.758628pt;}
.ws8d{word-spacing:6.811762pt;}
.wsb{word-spacing:6.918029pt;}
.wsbf{word-spacing:6.971163pt;}
.ws28{word-spacing:7.024297pt;}
.ws43{word-spacing:7.130565pt;}
.ws8e{word-spacing:7.183699pt;}
.ws4b{word-spacing:7.289967pt;}
.ws3a{word-spacing:7.449368pt;}
.ws4d{word-spacing:7.502502pt;}
.ws8f{word-spacing:7.555636pt;}
.ws12{word-spacing:7.608770pt;}
.ws1b{word-spacing:7.661904pt;}
.ws9d{word-spacing:7.672530pt;}
.ws19{word-spacing:7.715037pt;}
.ws77{word-spacing:7.768171pt;}
.ws7a{word-spacing:7.821305pt;}
.wsd{word-spacing:7.980707pt;}
.ws7d{word-spacing:8.033841pt;}
.ws78{word-spacing:8.060072pt;}
.ws48{word-spacing:8.086975pt;}
.ws21{word-spacing:8.193242pt;}
.ws91{word-spacing:8.512045pt;}
.ws8c{word-spacing:8.565179pt;}
.ws72{word-spacing:8.579080pt;}
.wscb{word-spacing:8.618313pt;}
.ws1f{word-spacing:8.777715pt;}
.ws26{word-spacing:8.830849pt;}
.ws17{word-spacing:8.883983pt;}
.wsc{word-spacing:8.990250pt;}
.ws90{word-spacing:9.096518pt;}
.ws70{word-spacing:9.415321pt;}
.ws73{word-spacing:9.521589pt;}
.wsa3{word-spacing:9.638483pt;}
.ws1e{word-spacing:9.680991pt;}
.ws96{word-spacing:9.734124pt;}
.ws7b{word-spacing:9.893526pt;}
.wsce{word-spacing:10.052928pt;}
.ws87{word-spacing:10.212329pt;}
.wsb7{word-spacing:10.594893pt;}
.ws86{word-spacing:10.796802pt;}
.ws46{word-spacing:11.168739pt;}
.wsc3{word-spacing:11.275007pt;}
.wsa4{word-spacing:11.338767pt;}
.ws5f{word-spacing:11.795718pt;}
.wscf{word-spacing:11.923240pt;}
.wsb6{word-spacing:12.826515pt;}
.ws79{word-spacing:14.423071pt;}
.wsbc{word-spacing:15.217539pt;}
.ws1c{word-spacing:15.631984pt;}
.ws10{word-spacing:20.350271pt;}
.ws6d{word-spacing:20.520299pt;}
.ws9b{word-spacing:39.648491pt;}
.ws81{word-spacing:51.805867pt;}
.wsae{word-spacing:56.874491pt;}
.wsad{word-spacing:69.456591pt;}
.wsaf{word-spacing:77.384163pt;}
.wsc8{word-spacing:86.778231pt;}
.wsc9{word-spacing:104.854372pt;}
._7{margin-left:-28.054682pt;}
._b{margin-left:-26.957989pt;}
._e{margin-left:-25.948446pt;}
._f{margin-left:-24.441579pt;}
._9{margin-left:-21.838019pt;}
._5{margin-left:-20.669074pt;}
._1e{margin-left:-19.587278pt;}
._3{margin-left:-7.192228pt;}
._4{margin-left:-5.844725pt;}
._a{margin-left:-4.091308pt;}
._1{margin-left:-2.371905pt;}
._8{margin-left:-1.434614pt;}
._6{width:1.487748pt;}
._11{width:2.550426pt;}
._21{width:4.144442pt;}
._1b{width:5.229670pt;}
._1a{width:8.392879pt;}
._19{width:9.388140pt;}
._0{width:10.985057pt;}
._1f{width:12.027373pt;}
._1c{width:13.230333pt;}
._27{width:14.220757pt;}
._12{width:15.268539pt;}
._18{width:16.718049pt;}
._20{width:17.764896pt;}
._d{width:18.684002pt;}
._17{width:20.190869pt;}
._16{width:21.200413pt;}
._c{width:22.282209pt;}
._14{width:23.291753pt;}
._10{width:24.673233pt;}
._1d{width:25.857074pt;}
._15{width:27.045138pt;}
._2{width:28.692400pt;}
._2b{width:29.697609pt;}
._23{width:31.774052pt;}
._26{width:37.280855pt;}
._22{width:38.787723pt;}
._28{width:41.744100pt;}
._25{width:42.879030pt;}
._24{width:44.101109pt;}
._13{width:71.731200pt;}
._29{width:108.924427pt;}
._2d{width:110.977529pt;}
._2a{width:113.812742pt;}
._2e{width:143.408306pt;}
._2c{width:148.668559pt;}
.fs3{font-size:37.193600pt;}
.fs1{font-size:53.133867pt;}
.fs2{font-size:63.761067pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:49.889333pt;}
.y42{bottom:52.472000pt;}
.ydc{bottom:53.210667pt;}
.y2f{bottom:65.829333pt;}
.ycd{bottom:68.413333pt;}
.ydb{bottom:69.150667pt;}
.y2e{bottom:81.770667pt;}
.ycc{bottom:84.353333pt;}
.yda{bottom:85.090667pt;}
.y2d{bottom:97.710667pt;}
.ycb{bottom:100.293333pt;}
.y5b{bottom:105.680000pt;}
.y2c{bottom:113.650667pt;}
.yd9{bottom:114.314667pt;}
.yca{bottom:116.233333pt;}
.y5a{bottom:121.621333pt;}
.y2b{bottom:129.590667pt;}
.yc9{bottom:132.173333pt;}
.y59{bottom:137.561333pt;}
.y2a{bottom:145.530667pt;}
.yc8{bottom:148.113333pt;}
.y58{bottom:153.501333pt;}
.y29{bottom:161.470667pt;}
.yc7{bottom:164.054667pt;}
.y57{bottom:169.441333pt;}
.y28{bottom:177.412000pt;}
.y56{bottom:185.381333pt;}
.yc6{bottom:187.964000pt;}
.y27{bottom:193.352000pt;}
.y55{bottom:201.321333pt;}
.yc5{bottom:203.905333pt;}
.y26{bottom:209.292000pt;}
.ya5{bottom:217.262667pt;}
.yc4{bottom:219.845333pt;}
.y25{bottom:225.232000pt;}
.ya4{bottom:233.202667pt;}
.yc3{bottom:235.785333pt;}
.y24{bottom:241.172000pt;}
.ya3{bottom:249.142667pt;}
.yc2{bottom:251.725333pt;}
.y54{bottom:257.112000pt;}
.y23{bottom:265.082667pt;}
.yc1{bottom:267.665333pt;}
.y53{bottom:273.053333pt;}
.y22{bottom:281.022667pt;}
.yc0{bottom:283.605333pt;}
.y52{bottom:288.993333pt;}
.y21{bottom:296.962667pt;}
.y8f{bottom:297.892000pt;}
.ybf{bottom:299.546667pt;}
.y51{bottom:304.933333pt;}
.y20{bottom:312.904000pt;}
.y8e{bottom:313.832000pt;}
.ybe{bottom:315.486667pt;}
.y50{bottom:320.873333pt;}
.y1f{bottom:328.844000pt;}
.y8d{bottom:329.772000pt;}
.ybd{bottom:331.426667pt;}
.y4f{bottom:336.813333pt;}
.y1e{bottom:344.784000pt;}
.y8c{bottom:345.712000pt;}
.ybc{bottom:347.366667pt;}
.yf1{bottom:350.309333pt;}
.yd8{bottom:352.505333pt;}
.y4e{bottom:352.753333pt;}
.y1d{bottom:360.724000pt;}
.ybb{bottom:363.306667pt;}
.ya2{bottom:368.694667pt;}
.y8b{bottom:369.622667pt;}
.y1c{bottom:376.664000pt;}
.yba{bottom:379.246667pt;}
.ya1{bottom:384.634667pt;}
.y8a{bottom:385.562667pt;}
.y1b{bottom:392.604000pt;}
.y89{bottom:401.502667pt;}
.y68{bottom:408.480000pt;}
.y1a{bottom:408.545333pt;}
.yb9{bottom:410.805333pt;}
.yb0{bottom:416.154667pt;}
.y88{bottom:417.444000pt;}
.ya0{bottom:421.708000pt;}
.y67{bottom:424.420000pt;}
.y4d{bottom:424.485333pt;}
.y87{bottom:433.384000pt;}
.yaf{bottom:434.752000pt;}
.y9f{bottom:437.648000pt;}
.y66{bottom:440.360000pt;}
.y4c{bottom:440.425333pt;}
.y19{bottom:443.212000pt;}
.yb8{bottom:447.878667pt;}
.y86{bottom:449.324000pt;}
.y9e{bottom:453.588000pt;}
.y65{bottom:456.300000pt;}
.y4b{bottom:456.365333pt;}
.yb7{bottom:463.818667pt;}
.y85{bottom:465.264000pt;}
.y9d{bottom:469.529333pt;}
.yae{bottom:471.789333pt;}
.y64{bottom:472.241333pt;}
.yb6{bottom:479.758667pt;}
.y4a{bottom:480.276000pt;}
.y84{bottom:481.204000pt;}
.yad{bottom:487.729333pt;}
.y63{bottom:488.181333pt;}
.yb5{bottom:495.698667pt;}
.y49{bottom:496.216000pt;}
.y83{bottom:497.144000pt;}
.y18{bottom:500.788000pt;}
.y9c{bottom:501.168000pt;}
.yac{bottom:503.669333pt;}
.y62{bottom:504.121333pt;}
.y41{bottom:509.366667pt;}
.yb4{bottom:511.640000pt;}
.y48{bottom:512.156000pt;}
.y17{bottom:516.728000pt;}
.y9b{bottom:517.109333pt;}
.yab{bottom:519.609333pt;}
.y61{bottom:520.061333pt;}
.y82{bottom:521.054667pt;}
.y40{bottom:525.308000pt;}
.yb3{bottom:527.580000pt;}
.y47{bottom:528.096000pt;}
.y9a{bottom:533.049333pt;}
.yaa{bottom:535.549333pt;}
.y60{bottom:536.001333pt;}
.y81{bottom:536.994667pt;}
.y10b{bottom:540.541333pt;}
.y16{bottom:540.638667pt;}
.y3f{bottom:541.248000pt;}
.yb2{bottom:543.520000pt;}
.y46{bottom:544.037333pt;}
.y99{bottom:548.989333pt;}
.ya9{bottom:551.489333pt;}
.y5f{bottom:551.941333pt;}
.y80{bottom:552.934667pt;}
.y10a{bottom:556.481333pt;}
.y15{bottom:556.578667pt;}
.y3e{bottom:557.188000pt;}
.yb1{bottom:559.460000pt;}
.y98{bottom:564.929333pt;}
.y7f{bottom:568.876000pt;}
.y109{bottom:572.421333pt;}
.y14{bottom:572.518667pt;}
.y3d{bottom:573.128000pt;}
.ya8{bottom:575.400000pt;}
.y5e{bottom:575.852000pt;}
.yf0{bottom:579.425333pt;}
.y97{bottom:580.869333pt;}
.y7e{bottom:584.816000pt;}
.y45{bottom:587.497333pt;}
.y108{bottom:588.362667pt;}
.y13{bottom:588.460000pt;}
.y3c{bottom:589.068000pt;}
.ya7{bottom:591.340000pt;}
.y5d{bottom:591.792000pt;}
.yef{bottom:595.365333pt;}
.y102{bottom:598.989333pt;}
.y7d{bottom:600.756000pt;}
.y12{bottom:604.400000pt;}
.y3b{bottom:605.008000pt;}
.y44{bottom:606.094667pt;}
.y5c{bottom:607.732000pt;}
.yee{bottom:611.305333pt;}
.y101{bottom:614.929333pt;}
.y7c{bottom:616.696000pt;}
.y96{bottom:617.942667pt;}
.y11{bottom:620.340000pt;}
.y3a{bottom:620.949333pt;}
.yed{bottom:627.245333pt;}
.y100{bottom:630.869333pt;}
.ya6{bottom:633.773333pt;}
.y95{bottom:633.884000pt;}
.y10{bottom:636.280000pt;}
.yec{bottom:643.185333pt;}
.y39{bottom:644.858667pt;}
.yff{bottom:646.809333pt;}
.y7b{bottom:648.920000pt;}
.y94{bottom:649.824000pt;}
.y43{bottom:650.166667pt;}
.yf{bottom:652.220000pt;}
.yeb{bottom:659.125333pt;}
.y38{bottom:660.800000pt;}
.y107{bottom:662.749333pt;}
.y93{bottom:665.764000pt;}
.ye{bottom:668.160000pt;}
.yfe{bottom:673.376000pt;}
.yea{bottom:675.066667pt;}
.y37{bottom:676.740000pt;}
.y106{bottom:678.690667pt;}
.y92{bottom:681.704000pt;}
.yd{bottom:684.101333pt;}
.y7a{bottom:686.660000pt;}
.yfd{bottom:689.317333pt;}
.y36{bottom:692.680000pt;}
.y105{bottom:694.630667pt;}
.yc{bottom:700.041333pt;}
.y79{bottom:702.600000pt;}
.ye9{bottom:702.841333pt;}
.yfc{bottom:705.257333pt;}
.y35{bottom:708.620000pt;}
.yb{bottom:715.981333pt;}
.y78{bottom:718.540000pt;}
.ye8{bottom:718.781333pt;}
.yfb{bottom:721.197333pt;}
.y34{bottom:724.560000pt;}
.y91{bottom:727.892000pt;}
.ya{bottom:731.921333pt;}
.y77{bottom:734.481333pt;}
.ye7{bottom:734.721333pt;}
.yfa{bottom:737.137333pt;}
.y33{bottom:740.500000pt;}
.y90{bottom:743.832000pt;}
.y9{bottom:747.861333pt;}
.y76{bottom:750.421333pt;}
.ye6{bottom:750.661333pt;}
.yf9{bottom:753.077333pt;}
.y32{bottom:756.441333pt;}
.yd7{bottom:757.182667pt;}
.y8{bottom:763.802667pt;}
.y75{bottom:766.361333pt;}
.ye5{bottom:766.602667pt;}
.yf8{bottom:769.017333pt;}
.y104{bottom:769.018667pt;}
.yd6{bottom:773.122667pt;}
.y31{bottom:780.350667pt;}
.y74{bottom:782.301333pt;}
.ye4{bottom:782.542667pt;}
.yf7{bottom:784.958667pt;}
.yd5{bottom:789.062667pt;}
.y103{bottom:795.585333pt;}
.y7{bottom:796.290667pt;}
.ye3{bottom:798.482667pt;}
.yd4{bottom:805.004000pt;}
.y73{bottom:806.212000pt;}
.yf6{bottom:811.525333pt;}
.yd3{bottom:820.944000pt;}
.y72{bottom:822.152000pt;}
.ye2{bottom:826.257333pt;}
.yf5{bottom:827.465333pt;}
.y6{bottom:836.776000pt;}
.yd2{bottom:836.884000pt;}
.y71{bottom:838.092000pt;}
.ye1{bottom:842.197333pt;}
.yf4{bottom:843.405333pt;}
.y5{bottom:852.716000pt;}
.y70{bottom:854.032000pt;}
.ye0{bottom:858.137333pt;}
.yf3{bottom:859.345333pt;}
.y4{bottom:868.657333pt;}
.yd1{bottom:869.800000pt;}
.y6f{bottom:869.973333pt;}
.ydf{bottom:874.078667pt;}
.yf2{bottom:875.286667pt;}
.y3{bottom:884.597333pt;}
.y6e{bottom:885.913333pt;}
.yde{bottom:890.018667pt;}
.y6d{bottom:901.853333pt;}
.ydd{bottom:905.958667pt;}
.yd0{bottom:909.822667pt;}
.y6c{bottom:917.793333pt;}
.y2{bottom:920.840000pt;}
.ycf{bottom:925.764000pt;}
.y6b{bottom:933.733333pt;}
.yce{bottom:941.704000pt;}
.y1{bottom:942.093333pt;}
.y6a{bottom:949.673333pt;}
.y69{bottom:965.614667pt;}
.h8{height:26.088729pt;}
.h9{height:32.517926pt;}
.h6{height:37.087439pt;}
.h4{height:38.043849pt;}
.h3{height:39.850400pt;}
.h5{height:44.887791pt;}
.h2{height:53.865199pt;}
.h7{height:60.295791pt;}
.h1{height:72.355866pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.xb{left:96.000000pt;}
.x1{left:98.386667pt;}
.x64{left:102.641333pt;}
.x4b{left:111.676000pt;}
.x46{left:115.633333pt;}
.x3d{left:120.825333pt;}
.x66{left:122.178667pt;}
.x65{left:123.305333pt;}
.x1e{left:127.126667pt;}
.x37{left:129.146667pt;}
.x47{left:131.605333pt;}
.x4{left:137.650667pt;}
.x26{left:150.962667pt;}
.x9{left:152.084000pt;}
.x3e{left:158.253333pt;}
.xd{left:167.886667pt;}
.xe{left:174.528000pt;}
.x45{left:184.821333pt;}
.x27{left:192.318667pt;}
.x2{left:199.320000pt;}
.x3f{left:202.798667pt;}
.xa{left:203.780000pt;}
.x8{left:206.433333pt;}
.x41{left:207.866667pt;}
.x1c{left:211.341333pt;}
.x32{left:216.682667pt;}
.x40{left:218.272000pt;}
.x28{left:221.117333pt;}
.x42{left:222.178667pt;}
.x1f{left:224.278667pt;}
.x43{left:225.616000pt;}
.x49{left:227.794667pt;}
.x20{left:230.920000pt;}
.x38{left:234.253333pt;}
.x25{left:236.197333pt;}
.x36{left:239.292000pt;}
.x1d{left:244.425333pt;}
.xc{left:247.505333pt;}
.x33{left:250.782667pt;}
.x7{left:255.102667pt;}
.x34{left:261.200000pt;}
.x4a{left:263.969333pt;}
.x62{left:265.714667pt;}
.x3c{left:272.818667pt;}
.x29{left:273.896000pt;}
.x11{left:276.201333pt;}
.x5{left:277.504000pt;}
.x12{left:282.842667pt;}
.xf{left:288.002667pt;}
.x35{left:291.608000pt;}
.x63{left:296.182667pt;}
.x15{left:297.208000pt;}
.x23{left:299.244000pt;}
.x10{left:301.285333pt;}
.x16{left:303.850667pt;}
.x17{left:311.170667pt;}
.x3a{left:315.664000pt;}
.x44{left:316.774667pt;}
.x39{left:318.168000pt;}
.x21{left:320.396000pt;}
.x48{left:322.740000pt;}
.x18{left:324.454667pt;}
.x61{left:325.449333pt;}
.x3b{left:327.873333pt;}
.x13{left:333.997333pt;}
.x24{left:335.829333pt;}
.x14{left:340.638667pt;}
.x22{left:353.068000pt;}
.x6{left:387.602667pt;}
.x4c{left:411.766667pt;}
.x2d{left:412.749333pt;}
.x3{left:413.649333pt;}
.x67{left:420.122667pt;}
.x2e{left:434.661333pt;}
.x4e{left:440.048000pt;}
.x50{left:443.700000pt;}
.x51{left:450.342667pt;}
.x1b{left:453.196000pt;}
.x53{left:460.644000pt;}
.x55{left:462.594667pt;}
.x2a{left:490.206667pt;}
.x2f{left:495.501333pt;}
.x30{left:499.154667pt;}
.x31{left:505.796000pt;}
.x4d{left:508.566667pt;}
.x5f{left:516.345333pt;}
.x19{left:519.657333pt;}
.x54{left:526.733333pt;}
.x2b{left:528.934667pt;}
.x1a{left:532.941333pt;}
.x57{left:535.269333pt;}
.x59{left:540.424000pt;}
.x58{left:541.912000pt;}
.x6a{left:548.616000pt;}
.x60{left:577.130667pt;}
.x52{left:586.497333pt;}
.x56{left:592.334667pt;}
.x68{left:599.685333pt;}
.x69{left:630.553333pt;}
.x5b{left:637.062667pt;}
.x4f{left:644.934667pt;}
.x5d{left:650.945333pt;}
.x5e{left:667.097333pt;}
.x2c{left:690.393333pt;}
.x5a{left:693.848000pt;}
.x5c{left:699.826667pt;}
}




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