
    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_822720b5f5bffde09604ca6e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.024902;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_31ef11f81cf31325944ce069.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.024902;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_7f6a8b6ab3735cf820a39598.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.666000;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_4f3e5e3afc822bc096fa05b3.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.085000;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_14bb4ed13173f25eacd06503.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.087000;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_377002ecce97884dcd5e89a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.086000;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_0ab467dde7956c484c32fffd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_c8b30de70079970a37cbec08.woff2')format("woff");}.ff8{font-family:ff8;line-height:727.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:ff9;src:url('chunks/assets/font_88e9f68b35b60e5c5958164c.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.943848;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_7f6a8b6ab3735cf820a39598.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666000;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;}
.m1{transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.002500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.002500,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);}
.m2{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);}
.v3{vertical-align:-431.981400px;}
.v2{vertical-align:-66.000000px;}
.v6{vertical-align:-17.983620px;}
.v1{vertical-align:-10.590000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:19.980480px;}
.v7{vertical-align:21.977340px;}
.v4{vertical-align:23.976540px;}
.ls7{letter-spacing:-5.946000px;}
.ls8{letter-spacing:-5.880000px;}
.ls6{letter-spacing:-5.820000px;}
.ls5{letter-spacing:-4.980000px;}
.ls9{letter-spacing:-4.386000px;}
.ls16{letter-spacing:-1.980000px;}
.ls12{letter-spacing:-1.134000px;}
.ls3{letter-spacing:-0.864000px;}
.ls15{letter-spacing:-0.858000px;}
.ls14{letter-spacing:-0.660000px;}
.ls4{letter-spacing:-0.600000px;}
.lsd{letter-spacing:-0.462000px;}
.ls13{letter-spacing:-0.378000px;}
.ls11{letter-spacing:-0.288000px;}
.lsc{letter-spacing:-0.264000px;}
.ls2{letter-spacing:-0.216000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.000300px;}
.lse{letter-spacing:0.001140px;}
.lsf{letter-spacing:0.315180px;}
.ls10{letter-spacing:0.540000px;}
.ls18{letter-spacing:0.660000px;}
.lsa{letter-spacing:0.720000px;}
.ls17{letter-spacing:2.785014px;}
.ls1{letter-spacing:1605.665760px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,18,255),0 0.015em rgb(0,18,255),0.015em 0 rgb(0,18,255),0 -0.015em  rgb(0,18,255);}
.sc1{text-shadow:-0.015em 0 rgb(0,46,172),0 0.015em rgb(0,46,172),0.015em 0 rgb(0,46,172),0 -0.015em  rgb(0,46,172);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,18,255);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(0,46,172);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.wsa{word-spacing:-20.430000px;}
.ws22{word-spacing:-18.228000px;}
.ws23{word-spacing:-16.344000px;}
.wsb7{word-spacing:-15.624000px;}
.ws52{word-spacing:-15.114000px;}
.ws30{word-spacing:-14.982000px;}
.ws85{word-spacing:-14.850000px;}
.ws6b{word-spacing:-14.256000px;}
.wsd{word-spacing:-13.740000px;}
.wse{word-spacing:-13.620000px;}
.ws13{word-spacing:-13.140000px;}
.ws6c{word-spacing:-13.134000px;}
.wsb{word-spacing:-13.020000px;}
.ws2c{word-spacing:-13.002000px;}
.ws1{word-spacing:-11.718000px;}
.ws32{word-spacing:-11.352000px;}
.ws3d{word-spacing:-9.966000px;}
.ws38{word-spacing:-9.834000px;}
.ws12{word-spacing:-9.234000px;}
.ws26{word-spacing:-8.976000px;}
.wsc{word-spacing:-8.640000px;}
.wsf{word-spacing:-7.800000px;}
.ws11{word-spacing:-7.740000px;}
.ws10{word-spacing:-7.674000px;}
.ws2e{word-spacing:-7.524000px;}
.ws27{word-spacing:-6.336000px;}
.ws3a{word-spacing:-5.742000px;}
.ws6{word-spacing:-4.752000px;}
.ws29{word-spacing:-4.488000px;}
.wsa9{word-spacing:-3.234000px;}
.ws4a{word-spacing:-2.970000px;}
.ws97{word-spacing:-2.838000px;}
.ws99{word-spacing:-2.772000px;}
.ws5c{word-spacing:-2.709000px;}
.wsad{word-spacing:-2.508000px;}
.wsba{word-spacing:-2.442000px;}
.wsa2{word-spacing:-2.310000px;}
.ws71{word-spacing:-2.178000px;}
.ws47{word-spacing:-1.980000px;}
.ws89{word-spacing:-1.914000px;}
.ws86{word-spacing:-1.848000px;}
.ws54{word-spacing:-1.782000px;}
.wsbf{word-spacing:-1.716000px;}
.ws3b{word-spacing:-1.650000px;}
.ws92{word-spacing:-1.584000px;}
.ws6f{word-spacing:-1.518000px;}
.ws7d{word-spacing:-1.452000px;}
.ws98{word-spacing:-1.386000px;}
.wsa7{word-spacing:-1.320000px;}
.wsaa{word-spacing:-1.254000px;}
.wsb9{word-spacing:-1.188000px;}
.ws8d{word-spacing:-1.122000px;}
.ws75{word-spacing:-1.056000px;}
.ws62{word-spacing:-0.990000px;}
.wsd5{word-spacing:-0.936000px;}
.ws7e{word-spacing:-0.924000px;}
.ws70{word-spacing:-0.858000px;}
.ws48{word-spacing:-0.792000px;}
.wsb2{word-spacing:-0.726000px;}
.ws35{word-spacing:-0.660000px;}
.ws4b{word-spacing:-0.594000px;}
.wsa4{word-spacing:-0.528000px;}
.wsc7{word-spacing:-0.504000px;}
.ws73{word-spacing:-0.396000px;}
.ws24{word-spacing:-0.360000px;}
.wsbd{word-spacing:-0.330000px;}
.ws14{word-spacing:-0.276000px;}
.ws15{word-spacing:-0.270000px;}
.ws8f{word-spacing:-0.198000px;}
.ws72{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.wsc1{word-spacing:0.066000px;}
.ws9{word-spacing:0.108000px;}
.ws1b{word-spacing:0.120000px;}
.ws9d{word-spacing:0.132000px;}
.ws91{word-spacing:0.198000px;}
.ws2{word-spacing:0.216000px;}
.ws2a{word-spacing:0.264000px;}
.ws3e{word-spacing:0.288000px;}
.wsbb{word-spacing:0.330000px;}
.ws16{word-spacing:0.360000px;}
.ws60{word-spacing:0.396000px;}
.ws2d{word-spacing:0.462000px;}
.ws64{word-spacing:0.528000px;}
.ws55{word-spacing:0.594000px;}
.ws1d{word-spacing:0.600000px;}
.ws1c{word-spacing:0.720000px;}
.ws44{word-spacing:0.792000px;}
.ws3{word-spacing:0.864000px;}
.wsb0{word-spacing:0.924000px;}
.ws5e{word-spacing:0.990000px;}
.ws7f{word-spacing:1.056000px;}
.ws7{word-spacing:1.080000px;}
.ws63{word-spacing:1.122000px;}
.ws4d{word-spacing:1.134000px;}
.ws56{word-spacing:1.188000px;}
.ws1e{word-spacing:1.194000px;}
.ws4c{word-spacing:1.242000px;}
.ws45{word-spacing:1.320000px;}
.ws37{word-spacing:1.386000px;}
.wsc5{word-spacing:1.440000px;}
.ws82{word-spacing:1.518000px;}
.ws87{word-spacing:1.584000px;}
.wsb3{word-spacing:1.782000px;}
.ws1f{word-spacing:1.800000px;}
.wsb5{word-spacing:1.848000px;}
.ws67{word-spacing:1.914000px;}
.wsbc{word-spacing:1.980000px;}
.ws58{word-spacing:2.046000px;}
.ws17{word-spacing:2.100000px;}
.ws7b{word-spacing:2.112000px;}
.wsa5{word-spacing:2.178000px;}
.wsaf{word-spacing:2.244000px;}
.ws57{word-spacing:2.310000px;}
.ws74{word-spacing:2.376000px;}
.ws59{word-spacing:2.442000px;}
.ws88{word-spacing:2.508000px;}
.ws83{word-spacing:2.574000px;}
.ws81{word-spacing:2.640000px;}
.ws18{word-spacing:2.700000px;}
.wsab{word-spacing:2.706000px;}
.wsc6{word-spacing:2.736000px;}
.ws39{word-spacing:2.772000px;}
.ws78{word-spacing:2.904000px;}
.wsb1{word-spacing:3.036000px;}
.ws80{word-spacing:3.102000px;}
.ws5b{word-spacing:3.150000px;}
.ws66{word-spacing:3.168000px;}
.ws61{word-spacing:3.234000px;}
.ws9a{word-spacing:3.300000px;}
.ws3f{word-spacing:3.366000px;}
.wsd1{word-spacing:3.384000px;}
.ws8c{word-spacing:3.432000px;}
.ws8{word-spacing:3.456000px;}
.ws41{word-spacing:3.498000px;}
.ws7c{word-spacing:3.630000px;}
.ws9c{word-spacing:3.696000px;}
.wsc9{word-spacing:3.744000px;}
.ws8b{word-spacing:3.762000px;}
.wsd2{word-spacing:3.816000px;}
.ws8a{word-spacing:3.828000px;}
.ws9b{word-spacing:3.894000px;}
.ws7a{word-spacing:3.960000px;}
.wsa3{word-spacing:4.026000px;}
.wsb6{word-spacing:4.290000px;}
.ws43{word-spacing:4.356000px;}
.wsd4{word-spacing:4.392000px;}
.ws84{word-spacing:4.422000px;}
.ws6d{word-spacing:4.488000px;}
.wsac{word-spacing:4.554000px;}
.ws34{word-spacing:4.620000px;}
.wsd3{word-spacing:4.680000px;}
.ws5d{word-spacing:4.686000px;}
.ws90{word-spacing:4.752000px;}
.ws49{word-spacing:4.818000px;}
.wsc3{word-spacing:4.824000px;}
.ws5{word-spacing:4.914000px;}
.ws94{word-spacing:4.950000px;}
.ws4{word-spacing:4.968000px;}
.wsb4{word-spacing:5.082000px;}
.ws6e{word-spacing:5.148000px;}
.ws50{word-spacing:5.184000px;}
.ws79{word-spacing:5.214000px;}
.wsc2{word-spacing:5.280000px;}
.wsa0{word-spacing:5.346000px;}
.ws8e{word-spacing:5.412000px;}
.ws31{word-spacing:5.478000px;}
.ws19{word-spacing:5.520000px;}
.ws65{word-spacing:5.544000px;}
.ws4f{word-spacing:5.562000px;}
.ws95{word-spacing:5.742000px;}
.ws46{word-spacing:5.808000px;}
.wscb{word-spacing:6.048000px;}
.ws1a{word-spacing:6.120000px;}
.ws4e{word-spacing:6.156000px;}
.ws68{word-spacing:6.270000px;}
.wsc4{word-spacing:6.408000px;}
.ws40{word-spacing:6.468000px;}
.ws33{word-spacing:6.534000px;}
.ws5a{word-spacing:6.732000px;}
.ws25{word-spacing:6.798000px;}
.wsbe{word-spacing:6.864000px;}
.wsc0{word-spacing:6.930000px;}
.ws42{word-spacing:7.062000px;}
.ws93{word-spacing:7.194000px;}
.wscf{word-spacing:7.200000px;}
.ws9e{word-spacing:7.260000px;}
.wsae{word-spacing:7.392000px;}
.wsa1{word-spacing:7.458000px;}
.wsa6{word-spacing:7.656000px;}
.ws5f{word-spacing:7.788000px;}
.wsce{word-spacing:7.848000px;}
.wsb8{word-spacing:7.920000px;}
.wsc8{word-spacing:7.992000px;}
.ws2f{word-spacing:8.052000px;}
.wsca{word-spacing:8.208000px;}
.ws2b{word-spacing:8.712000px;}
.ws96{word-spacing:8.844000px;}
.ws77{word-spacing:8.910000px;}
.ws76{word-spacing:8.976000px;}
.wsd0{word-spacing:9.072000px;}
.wsa8{word-spacing:9.174000px;}
.ws28{word-spacing:9.636000px;}
.wscd{word-spacing:9.720000px;}
.ws69{word-spacing:9.966000px;}
.ws53{word-spacing:10.032000px;}
.ws3c{word-spacing:13.134000px;}
.ws51{word-spacing:13.770000px;}
.ws9f{word-spacing:14.256000px;}
.ws36{word-spacing:14.520000px;}
.wscc{word-spacing:16.704000px;}
.ws20{word-spacing:19.410000px;}
.ws21{word-spacing:19.440000px;}
.ws6a{word-spacing:1825.049611px;}
._e{margin-left:-2225.613976px;}
._f{margin-left:-897.120000px;}
._2{margin-left:-410.436000px;}
._4{margin-left:-323.777400px;}
._b{margin-left:-40.338486px;}
._17{margin-left:-15.747711px;}
._18{margin-left:-10.806345px;}
._16{margin-left:-9.777495px;}
._0{margin-left:-8.432814px;}
._6{margin-left:-7.235374px;}
._7{margin-left:-5.939060px;}
._9{margin-left:-4.680559px;}
._1{margin-left:-2.878707px;}
._5{margin-left:-1.404562px;}
._a{width:1.239763px;}
._8{width:2.473751px;}
._d{width:4.709773px;}
._14{width:12.638845px;}
._c{width:56.960820px;}
._15{width:172.807572px;}
._12{width:180.481326px;}
._13{width:190.208854px;}
._11{width:195.191736px;}
._10{width:200.610549px;}
._3{width:7851.105000px;}
.fc4{color:rgb(28,28,27);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc2{color:transparent;}
.fc1{color:rgb(215,148,114);}
.fc0{color:rgb(223,152,115);}
.fse{font-size:31.482000px;}
.fsd{font-size:34.980000px;}
.fs4{font-size:36.000000px;}
.fs10{font-size:38.478000px;}
.fsc{font-size:41.976000px;}
.fs6{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fsf{font-size:63.000000px;}
.fsb{font-size:66.000000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fsa{font-size:84.000000px;}
.fs8{font-size:90.000000px;}
.fs1{font-size:96.000000px;}
.fs5{font-size:108.000000px;}
.fs0{font-size:192.000000px;}
.y9{bottom:-20.763900px;}
.y146{bottom:-12.259800px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000150px;}
.y86{bottom:74.409135px;}
.yac{bottom:79.880340px;}
.yf0{bottom:82.539690px;}
.y128{bottom:86.664690px;}
.ycb{bottom:89.456790px;}
.y56{bottom:93.324277px;}
.y119{bottom:93.836640px;}
.y85{bottom:95.104455px;}
.yab{bottom:99.679740px;}
.yef{bottom:102.339690px;}
.y127{bottom:106.464690px;}
.y84{bottom:106.809135px;}
.y3f{bottom:107.367277px;}
.yca{bottom:109.256790px;}
.y8{bottom:109.483350px;}
.y118{bottom:113.636640px;}
.y55{bottom:115.725877px;}
.yaa{bottom:119.479140px;}
.yee{bottom:122.139690px;}
.y83{bottom:123.009135px;}
.y126{bottom:126.264690px;}
.yc9{bottom:129.056790px;}
.y7{bottom:132.883350px;}
.y117{bottom:133.436640px;}
.y54{bottom:133.875277px;}
.y82{bottom:139.209135px;}
.ya9{bottom:139.279140px;}
.yed{bottom:141.939690px;}
.y125{bottom:146.064690px;}
.yc8{bottom:148.856790px;}
.y116{bottom:153.236640px;}
.y6{bottom:156.283350px;}
.y81{bottom:159.905040px;}
.yec{bottom:161.739690px;}
.y124{bottom:165.864690px;}
.ya8{bottom:167.582790px;}
.yc7{bottom:168.656790px;}
.y53{bottom:169.033327px;}
.y115{bottom:173.036640px;}
.yeb{bottom:181.539690px;}
.y123{bottom:185.664690px;}
.ya7{bottom:187.382190px;}
.y103{bottom:188.456790px;}
.y52{bottom:191.435527px;}
.yc6{bottom:196.961040px;}
.yea{bottom:201.339690px;}
.y114{bottom:201.340290px;}
.y122{bottom:205.464690px;}
.ya6{bottom:207.181590px;}
.y51{bottom:209.584927px;}
.y80{bottom:215.232810px;}
.yc5{bottom:216.761040px;}
.ye9{bottom:221.139690px;}
.y113{bottom:221.140290px;}
.y121{bottom:225.264690px;}
.ya5{bottom:226.981590px;}
.y3e{bottom:230.362627px;}
.y7f{bottom:235.032810px;}
.yc4{bottom:236.561040px;}
.ye8{bottom:240.939690px;}
.y112{bottom:240.940290px;}
.y50{bottom:244.742977px;}
.y120{bottom:245.064690px;}
.y20{bottom:246.119977px;}
.ya4{bottom:246.780990px;}
.y7e{bottom:254.832810px;}
.yc3{bottom:256.361040px;}
.ye7{bottom:260.739690px;}
.y111{bottom:260.740290px;}
.y3d{bottom:266.226127px;}
.ya3{bottom:266.580990px;}
.y4f{bottom:267.144577px;}
.y7d{bottom:274.632810px;}
.yc2{bottom:276.161040px;}
.ye6{bottom:280.539690px;}
.y110{bottom:280.540290px;}
.y3c{bottom:282.726127px;}
.y4e{bottom:285.293977px;}
.y11f{bottom:286.124790px;}
.ya2{bottom:286.380990px;}
.y7c{bottom:294.432810px;}
.yc1{bottom:295.961040px;}
.y3b{bottom:299.226127px;}
.ye5{bottom:300.339690px;}
.y10f{bottom:300.340290px;}
.ya1{bottom:306.180390px;}
.y7b{bottom:314.232810px;}
.yc0{bottom:315.761040px;}
.ye4{bottom:320.139690px;}
.y10e{bottom:320.140290px;}
.y4d{bottom:320.452027px;}
.ya0{bottom:325.979790px;}
.y7a{bottom:334.032810px;}
.y102{bottom:335.561040px;}
.ye3{bottom:339.939690px;}
.y10d{bottom:339.940290px;}
.y9f{bottom:345.779790px;}
.y11e{bottom:348.444540px;}
.y145{bottom:352.896450px;}
.y79{bottom:353.832810px;}
.y101{bottom:355.361040px;}
.ybf{bottom:356.820540px;}
.y10c{bottom:359.740290px;}
.y4c{bottom:361.511527px;}
.y9e{bottom:365.579190px;}
.ye2{bottom:368.243940px;}
.y11d{bottom:368.244540px;}
.y144{bottom:374.496450px;}
.y100{bottom:375.161040px;}
.y10b{bottom:379.540290px;}
.y3a{bottom:381.726127px;}
.y78{bottom:382.136460px;}
.y4b{bottom:383.913727px;}
.y9d{bottom:385.379190px;}
.ye1{bottom:388.043940px;}
.y11c{bottom:388.044540px;}
.yff{bottom:394.961040px;}
.y143{bottom:396.096450px;}
.y10a{bottom:399.340290px;}
.y39{bottom:401.226127px;}
.y77{bottom:401.936460px;}
.y4a{bottom:402.063127px;}
.ye0{bottom:407.843940px;}
.y11b{bottom:407.844540px;}
.y9c{bottom:413.682840px;}
.yfe{bottom:414.761040px;}
.y142{bottom:417.696450px;}
.ybe{bottom:419.140290px;}
.y38{bottom:420.726127px;}
.y76{bottom:421.736460px;}
.y6a{bottom:422.216377px;}
.ydf{bottom:427.643940px;}
.y11a{bottom:427.644540px;}
.y9b{bottom:433.483440px;}
.y1f{bottom:433.798477px;}
.y49{bottom:437.221177px;}
.ybd{bottom:438.940290px;}
.y141{bottom:439.296450px;}
.y37{bottom:440.226127px;}
.y75{bottom:441.536460px;}
.yfd{bottom:443.064690px;}
.y69{bottom:444.618577px;}
.yde{bottom:447.443940px;}
.y109{bottom:447.444540px;}
.y1e{bottom:448.648477px;}
.y9a{bottom:453.282840px;}
.ybc{bottom:458.740290px;}
.y48{bottom:459.623377px;}
.y36{bottom:459.726127px;}
.y140{bottom:460.896450px;}
.y74{bottom:461.336460px;}
.y68{bottom:462.768577px;}
.yfc{bottom:462.864690px;}
.y1d{bottom:463.498477px;}
.ydd{bottom:467.243940px;}
.y108{bottom:467.244540px;}
.y99{bottom:473.082240px;}
.y1c{bottom:478.348477px;}
.ybb{bottom:478.540290px;}
.y35{bottom:479.226127px;}
.y67{bottom:480.918577px;}
.y73{bottom:481.136460px;}
.y13f{bottom:482.496450px;}
.yfb{bottom:482.664690px;}
.ydc{bottom:487.043940px;}
.y107{bottom:487.044540px;}
.y98{bottom:492.882840px;}
.y1b{bottom:493.198477px;}
.y47{bottom:494.781427px;}
.yba{bottom:498.340290px;}
.y72{bottom:500.936460px;}
.yfa{bottom:502.464690px;}
.y13e{bottom:504.096450px;}
.ydb{bottom:506.843940px;}
.y106{bottom:506.844540px;}
.y1a{bottom:508.048477px;}
.y66{bottom:516.076627px;}
.yb9{bottom:518.140290px;}
.y71{bottom:520.736460px;}
.y19{bottom:522.898477px;}
.y97{bottom:525.438690px;}
.y13d{bottom:525.696450px;}
.yda{bottom:526.643940px;}
.y105{bottom:526.644540px;}
.yf9{bottom:530.768940px;}
.y46{bottom:535.840927px;}
.y18{bottom:537.748477px;}
.yb8{bottom:537.940290px;}
.y70{bottom:540.536460px;}
.y96{bottom:542.763090px;}
.yd9{bottom:546.443940px;}
.y104{bottom:546.444540px;}
.y13c{bottom:547.296450px;}
.yf8{bottom:550.568940px;}
.y17{bottom:552.598477px;}
.y65{bottom:557.136727px;}
.y45{bottom:558.243127px;}
.y95{bottom:560.087490px;}
.y26{bottom:563.188650px;}
.y34{bottom:564.726127px;}
.yd8{bottom:566.243940px;}
.yb7{bottom:566.244540px;}
.y16{bottom:567.448477px;}
.y13b{bottom:568.896450px;}
.yf7{bottom:570.368940px;}
.y44{bottom:576.392527px;}
.y64{bottom:579.538327px;}
.y33{bottom:581.226127px;}
.y15{bottom:582.298477px;}
.yd7{bottom:586.043940px;}
.yb6{bottom:586.044540px;}
.y94{bottom:590.168940px;}
.y25{bottom:590.188650px;}
.y13a{bottom:590.496450px;}
.y14{bottom:597.148477px;}
.y63{bottom:597.688327px;}
.y32{bottom:597.726127px;}
.yd6{bottom:605.843940px;}
.yb5{bottom:605.844540px;}
.y93{bottom:609.968940px;}
.y43{bottom:611.550577px;}
.y13{bottom:611.998477px;}
.y139{bottom:612.096450px;}
.y31{bottom:614.226127px;}
.y24{bottom:617.188650px;}
.yc{bottom:624.346477px;}
.yd5{bottom:625.643940px;}
.yb4{bottom:625.644540px;}
.y92{bottom:629.768940px;}
.y30{bottom:630.726127px;}
.y62{bottom:632.846377px;}
.y6f{bottom:645.375960px;}
.yd4{bottom:645.443940px;}
.yb3{bottom:645.444540px;}
.y91{bottom:649.568940px;}
.y42{bottom:652.610677px;}
.yb{bottom:653.146477px;}
.y61{bottom:655.248577px;}
.y138{bottom:655.296450px;}
.yd3{bottom:665.243940px;}
.yb2{bottom:665.244540px;}
.yf6{bottom:669.368940px;}
.y6e{bottom:669.428040px;}
.y60{bottom:673.398577px;}
.y12c{bottom:673.748190px;}
.y137{bottom:676.896450px;}
.y41{bottom:679.264327px;}
.yd2{bottom:685.043940px;}
.yb1{bottom:685.044540px;}
.y23{bottom:686.708400px;}
.yf5{bottom:689.168940px;}
.y90{bottom:690.628440px;}
.y5f{bottom:691.548577px;}
.y12b{bottom:693.548190px;}
.y6d{bottom:697.731075px;}
.y136{bottom:698.496450px;}
.ya{bottom:703.205977px;}
.yd1{bottom:704.843940px;}
.yb0{bottom:704.844540px;}
.yf4{bottom:708.968940px;}
.y12a{bottom:713.348190px;}
.y22{bottom:715.508400px;}
.y135{bottom:720.096450px;}
.y2f{bottom:721.729777px;}
.y6c{bottom:721.783290px;}
.yd0{bottom:724.643940px;}
.yaf{bottom:724.644540px;}
.y5e{bottom:726.706627px;}
.yf3{bottom:728.768940px;}
.y129{bottom:733.148190px;}
.y2e{bottom:738.268477px;}
.y12{bottom:740.818477px;}
.y134{bottom:741.696450px;}
.ycf{bottom:744.443940px;}
.yae{bottom:744.444540px;}
.yf2{bottom:748.568940px;}
.y8f{bottom:752.948190px;}
.y11{bottom:755.668477px;}
.y133{bottom:763.296450px;}
.yad{bottom:764.243940px;}
.y21{bottom:765.568500px;}
.y5d{bottom:767.766127px;}
.y10{bottom:770.517892px;}
.y8e{bottom:772.748190px;}
.yce{bottom:784.044540px;}
.y6b{bottom:784.103040px;}
.y132{bottom:784.896450px;}
.yf{bottom:785.368477px;}
.yf1{bottom:789.628440px;}
.y5c{bottom:790.168327px;}
.y8d{bottom:792.548190px;}
.y40{bottom:792.607477px;}
.ye{bottom:800.217892px;}
.ycd{bottom:803.844540px;}
.y2d{bottom:804.268477px;}
.y131{bottom:806.496450px;}
.y5b{bottom:808.318327px;}
.y5{bottom:808.774350px;}
.y8c{bottom:812.348190px;}
.yd{bottom:815.068477px;}
.y2c{bottom:820.768477px;}
.ycc{bottom:823.644540px;}
.y5a{bottom:826.468327px;}
.y130{bottom:828.096450px;}
.y8b{bottom:832.148190px;}
.y2b{bottom:837.268477px;}
.y4{bottom:837.574350px;}
.y12f{bottom:849.696450px;}
.y8a{bottom:851.948190px;}
.y2a{bottom:853.768477px;}
.y59{bottom:861.625777px;}
.y29{bottom:870.268477px;}
.y12e{bottom:871.296450px;}
.y89{bottom:871.748190px;}
.y3{bottom:878.374350px;}
.y58{bottom:884.027977px;}
.y28{bottom:886.768477px;}
.y88{bottom:891.548190px;}
.y12d{bottom:892.896450px;}
.y57{bottom:902.177977px;}
.y27{bottom:903.268477px;}
.y2{bottom:935.974350px;}
.y87{bottom:951.240540px;}
.h7{height:23.976000px;}
.h1b{height:26.836380px;}
.h1d{height:26.838720px;}
.he{height:44.149219px;}
.h1c{height:44.766000px;}
.hd{height:44.820000px;}
.hc{height:45.414000px;}
.h12{height:49.800000px;}
.h1e{height:52.290000px;}
.h22{height:54.000000px;}
.h16{height:54.714000px;}
.h17{height:54.780000px;}
.h5{height:58.921875px;}
.h1a{height:59.688000px;}
.h19{height:59.760000px;}
.h15{height:60.552000px;}
.h6{height:63.832031px;}
.h14{height:70.644000px;}
.h11{height:74.700000px;}
.h4{height:78.562500px;}
.hb{height:80.736000px;}
.ha{height:90.828000px;}
.h3{height:157.125000px;}
.h2{height:1019.692350px;}
.h0{height:1019.692500px;}
.h1{height:1020.000000px;}
.h18{height:1020.470040px;}
.h8{height:1020.472477px;}
.h10{height:1020.472500px;}
.hf{height:1020.472870px;}
.h9{height:1020.750000px;}
.h20{height:1023.750000px;}
.h21{height:1023.944700px;}
.h1f{height:1023.945450px;}
.h13{height:42720.000000px;}
.w2{width:722.834817px;}
.w3{width:723.000000px;}
.w0{width:723.682500px;}
.w1{width:723.750000px;}
.w4{width:724.174500px;}
.w5{width:724.500000px;}
.x8{left:-1095.042750px;}
.x20{left:-323.421750px;}
.x0{left:0.000000px;}
.x4{left:77.464800px;}
.xc{left:85.039317px;}
.xd{left:93.542967px;}
.xe{left:100.563117px;}
.x16{left:106.298667px;}
.x2{left:109.380900px;}
.xf{left:114.803907px;}
.x14{left:124.464492px;}
.x1e{left:127.559547px;}
.x1f{left:138.153000px;}
.xb{left:153.688317px;}
.x3{left:162.455100px;}
.x12{left:164.634717px;}
.x9{left:166.411317px;}
.x1a{left:174.869817px;}
.x7{left:176.379450px;}
.x1b{left:177.757317px;}
.x10{left:189.331317px;}
.x1{left:196.416000px;}
.x11{left:213.818967px;}
.xa{left:215.223417px;}
.x18{left:218.634717px;}
.x1d{left:223.684317px;}
.x6{left:228.328650px;}
.x19{left:236.345217px;}
.x17{left:278.887317px;}
.x1c{left:284.225817px;}
.x5{left:310.336500px;}
.x15{left:324.761817px;}
.x13{left:336.195717px;}
@media print{
.v3{vertical-align:-383.983467pt;}
.v2{vertical-align:-58.666667pt;}
.v6{vertical-align:-15.985440pt;}
.v1{vertical-align:-9.413333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:17.760427pt;}
.v7{vertical-align:19.535413pt;}
.v4{vertical-align:21.312480pt;}
.ls7{letter-spacing:-5.285333pt;}
.ls8{letter-spacing:-5.226667pt;}
.ls6{letter-spacing:-5.173333pt;}
.ls5{letter-spacing:-4.426667pt;}
.ls9{letter-spacing:-3.898667pt;}
.ls16{letter-spacing:-1.760000pt;}
.ls12{letter-spacing:-1.008000pt;}
.ls3{letter-spacing:-0.768000pt;}
.ls15{letter-spacing:-0.762667pt;}
.ls14{letter-spacing:-0.586667pt;}
.ls4{letter-spacing:-0.533333pt;}
.lsd{letter-spacing:-0.410667pt;}
.ls13{letter-spacing:-0.336000pt;}
.ls11{letter-spacing:-0.256000pt;}
.lsc{letter-spacing:-0.234667pt;}
.ls2{letter-spacing:-0.192000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.000267pt;}
.lse{letter-spacing:0.001013pt;}
.lsf{letter-spacing:0.280160pt;}
.ls10{letter-spacing:0.480000pt;}
.ls18{letter-spacing:0.586667pt;}
.lsa{letter-spacing:0.640000pt;}
.ls17{letter-spacing:2.475568pt;}
.ls1{letter-spacing:1427.258453pt;}
.wsa{word-spacing:-18.160000pt;}
.ws22{word-spacing:-16.202667pt;}
.ws23{word-spacing:-14.528000pt;}
.wsb7{word-spacing:-13.888000pt;}
.ws52{word-spacing:-13.434667pt;}
.ws30{word-spacing:-13.317333pt;}
.ws85{word-spacing:-13.200000pt;}
.ws6b{word-spacing:-12.672000pt;}
.wsd{word-spacing:-12.213333pt;}
.wse{word-spacing:-12.106667pt;}
.ws13{word-spacing:-11.680000pt;}
.ws6c{word-spacing:-11.674667pt;}
.wsb{word-spacing:-11.573333pt;}
.ws2c{word-spacing:-11.557333pt;}
.ws1{word-spacing:-10.416000pt;}
.ws32{word-spacing:-10.090667pt;}
.ws3d{word-spacing:-8.858667pt;}
.ws38{word-spacing:-8.741333pt;}
.ws12{word-spacing:-8.208000pt;}
.ws26{word-spacing:-7.978667pt;}
.wsc{word-spacing:-7.680000pt;}
.wsf{word-spacing:-6.933333pt;}
.ws11{word-spacing:-6.880000pt;}
.ws10{word-spacing:-6.821333pt;}
.ws2e{word-spacing:-6.688000pt;}
.ws27{word-spacing:-5.632000pt;}
.ws3a{word-spacing:-5.104000pt;}
.ws6{word-spacing:-4.224000pt;}
.ws29{word-spacing:-3.989333pt;}
.wsa9{word-spacing:-2.874667pt;}
.ws4a{word-spacing:-2.640000pt;}
.ws97{word-spacing:-2.522667pt;}
.ws99{word-spacing:-2.464000pt;}
.ws5c{word-spacing:-2.408000pt;}
.wsad{word-spacing:-2.229333pt;}
.wsba{word-spacing:-2.170667pt;}
.wsa2{word-spacing:-2.053333pt;}
.ws71{word-spacing:-1.936000pt;}
.ws47{word-spacing:-1.760000pt;}
.ws89{word-spacing:-1.701333pt;}
.ws86{word-spacing:-1.642667pt;}
.ws54{word-spacing:-1.584000pt;}
.wsbf{word-spacing:-1.525333pt;}
.ws3b{word-spacing:-1.466667pt;}
.ws92{word-spacing:-1.408000pt;}
.ws6f{word-spacing:-1.349333pt;}
.ws7d{word-spacing:-1.290667pt;}
.ws98{word-spacing:-1.232000pt;}
.wsa7{word-spacing:-1.173333pt;}
.wsaa{word-spacing:-1.114667pt;}
.wsb9{word-spacing:-1.056000pt;}
.ws8d{word-spacing:-0.997333pt;}
.ws75{word-spacing:-0.938667pt;}
.ws62{word-spacing:-0.880000pt;}
.wsd5{word-spacing:-0.832000pt;}
.ws7e{word-spacing:-0.821333pt;}
.ws70{word-spacing:-0.762667pt;}
.ws48{word-spacing:-0.704000pt;}
.wsb2{word-spacing:-0.645333pt;}
.ws35{word-spacing:-0.586667pt;}
.ws4b{word-spacing:-0.528000pt;}
.wsa4{word-spacing:-0.469333pt;}
.wsc7{word-spacing:-0.448000pt;}
.ws73{word-spacing:-0.352000pt;}
.ws24{word-spacing:-0.320000pt;}
.wsbd{word-spacing:-0.293333pt;}
.ws14{word-spacing:-0.245333pt;}
.ws15{word-spacing:-0.240000pt;}
.ws8f{word-spacing:-0.176000pt;}
.ws72{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.wsc1{word-spacing:0.058667pt;}
.ws9{word-spacing:0.096000pt;}
.ws1b{word-spacing:0.106667pt;}
.ws9d{word-spacing:0.117333pt;}
.ws91{word-spacing:0.176000pt;}
.ws2{word-spacing:0.192000pt;}
.ws2a{word-spacing:0.234667pt;}
.ws3e{word-spacing:0.256000pt;}
.wsbb{word-spacing:0.293333pt;}
.ws16{word-spacing:0.320000pt;}
.ws60{word-spacing:0.352000pt;}
.ws2d{word-spacing:0.410667pt;}
.ws64{word-spacing:0.469333pt;}
.ws55{word-spacing:0.528000pt;}
.ws1d{word-spacing:0.533333pt;}
.ws1c{word-spacing:0.640000pt;}
.ws44{word-spacing:0.704000pt;}
.ws3{word-spacing:0.768000pt;}
.wsb0{word-spacing:0.821333pt;}
.ws5e{word-spacing:0.880000pt;}
.ws7f{word-spacing:0.938667pt;}
.ws7{word-spacing:0.960000pt;}
.ws63{word-spacing:0.997333pt;}
.ws4d{word-spacing:1.008000pt;}
.ws56{word-spacing:1.056000pt;}
.ws1e{word-spacing:1.061333pt;}
.ws4c{word-spacing:1.104000pt;}
.ws45{word-spacing:1.173333pt;}
.ws37{word-spacing:1.232000pt;}
.wsc5{word-spacing:1.280000pt;}
.ws82{word-spacing:1.349333pt;}
.ws87{word-spacing:1.408000pt;}
.wsb3{word-spacing:1.584000pt;}
.ws1f{word-spacing:1.600000pt;}
.wsb5{word-spacing:1.642667pt;}
.ws67{word-spacing:1.701333pt;}
.wsbc{word-spacing:1.760000pt;}
.ws58{word-spacing:1.818667pt;}
.ws17{word-spacing:1.866667pt;}
.ws7b{word-spacing:1.877333pt;}
.wsa5{word-spacing:1.936000pt;}
.wsaf{word-spacing:1.994667pt;}
.ws57{word-spacing:2.053333pt;}
.ws74{word-spacing:2.112000pt;}
.ws59{word-spacing:2.170667pt;}
.ws88{word-spacing:2.229333pt;}
.ws83{word-spacing:2.288000pt;}
.ws81{word-spacing:2.346667pt;}
.ws18{word-spacing:2.400000pt;}
.wsab{word-spacing:2.405333pt;}
.wsc6{word-spacing:2.432000pt;}
.ws39{word-spacing:2.464000pt;}
.ws78{word-spacing:2.581333pt;}
.wsb1{word-spacing:2.698667pt;}
.ws80{word-spacing:2.757333pt;}
.ws5b{word-spacing:2.800000pt;}
.ws66{word-spacing:2.816000pt;}
.ws61{word-spacing:2.874667pt;}
.ws9a{word-spacing:2.933333pt;}
.ws3f{word-spacing:2.992000pt;}
.wsd1{word-spacing:3.008000pt;}
.ws8c{word-spacing:3.050667pt;}
.ws8{word-spacing:3.072000pt;}
.ws41{word-spacing:3.109333pt;}
.ws7c{word-spacing:3.226667pt;}
.ws9c{word-spacing:3.285333pt;}
.wsc9{word-spacing:3.328000pt;}
.ws8b{word-spacing:3.344000pt;}
.wsd2{word-spacing:3.392000pt;}
.ws8a{word-spacing:3.402667pt;}
.ws9b{word-spacing:3.461333pt;}
.ws7a{word-spacing:3.520000pt;}
.wsa3{word-spacing:3.578667pt;}
.wsb6{word-spacing:3.813333pt;}
.ws43{word-spacing:3.872000pt;}
.wsd4{word-spacing:3.904000pt;}
.ws84{word-spacing:3.930667pt;}
.ws6d{word-spacing:3.989333pt;}
.wsac{word-spacing:4.048000pt;}
.ws34{word-spacing:4.106667pt;}
.wsd3{word-spacing:4.160000pt;}
.ws5d{word-spacing:4.165333pt;}
.ws90{word-spacing:4.224000pt;}
.ws49{word-spacing:4.282667pt;}
.wsc3{word-spacing:4.288000pt;}
.ws5{word-spacing:4.368000pt;}
.ws94{word-spacing:4.400000pt;}
.ws4{word-spacing:4.416000pt;}
.wsb4{word-spacing:4.517333pt;}
.ws6e{word-spacing:4.576000pt;}
.ws50{word-spacing:4.608000pt;}
.ws79{word-spacing:4.634667pt;}
.wsc2{word-spacing:4.693333pt;}
.wsa0{word-spacing:4.752000pt;}
.ws8e{word-spacing:4.810667pt;}
.ws31{word-spacing:4.869333pt;}
.ws19{word-spacing:4.906667pt;}
.ws65{word-spacing:4.928000pt;}
.ws4f{word-spacing:4.944000pt;}
.ws95{word-spacing:5.104000pt;}
.ws46{word-spacing:5.162667pt;}
.wscb{word-spacing:5.376000pt;}
.ws1a{word-spacing:5.440000pt;}
.ws4e{word-spacing:5.472000pt;}
.ws68{word-spacing:5.573333pt;}
.wsc4{word-spacing:5.696000pt;}
.ws40{word-spacing:5.749333pt;}
.ws33{word-spacing:5.808000pt;}
.ws5a{word-spacing:5.984000pt;}
.ws25{word-spacing:6.042667pt;}
.wsbe{word-spacing:6.101333pt;}
.wsc0{word-spacing:6.160000pt;}
.ws42{word-spacing:6.277333pt;}
.ws93{word-spacing:6.394667pt;}
.wscf{word-spacing:6.400000pt;}
.ws9e{word-spacing:6.453333pt;}
.wsae{word-spacing:6.570667pt;}
.wsa1{word-spacing:6.629333pt;}
.wsa6{word-spacing:6.805333pt;}
.ws5f{word-spacing:6.922667pt;}
.wsce{word-spacing:6.976000pt;}
.wsb8{word-spacing:7.040000pt;}
.wsc8{word-spacing:7.104000pt;}
.ws2f{word-spacing:7.157333pt;}
.wsca{word-spacing:7.296000pt;}
.ws2b{word-spacing:7.744000pt;}
.ws96{word-spacing:7.861333pt;}
.ws77{word-spacing:7.920000pt;}
.ws76{word-spacing:7.978667pt;}
.wsd0{word-spacing:8.064000pt;}
.wsa8{word-spacing:8.154667pt;}
.ws28{word-spacing:8.565333pt;}
.wscd{word-spacing:8.640000pt;}
.ws69{word-spacing:8.858667pt;}
.ws53{word-spacing:8.917333pt;}
.ws3c{word-spacing:11.674667pt;}
.ws51{word-spacing:12.240000pt;}
.ws9f{word-spacing:12.672000pt;}
.ws36{word-spacing:12.906667pt;}
.wscc{word-spacing:14.848000pt;}
.ws20{word-spacing:17.253333pt;}
.ws21{word-spacing:17.280000pt;}
.ws6a{word-spacing:1622.266321pt;}
._e{margin-left:-1978.323534pt;}
._f{margin-left:-797.440000pt;}
._2{margin-left:-364.832000pt;}
._4{margin-left:-287.802133pt;}
._b{margin-left:-35.856432pt;}
._17{margin-left:-13.997965pt;}
._18{margin-left:-9.605640pt;}
._16{margin-left:-8.691106pt;}
._0{margin-left:-7.495835pt;}
._6{margin-left:-6.431443pt;}
._7{margin-left:-5.279165pt;}
._9{margin-left:-4.160497pt;}
._1{margin-left:-2.558851pt;}
._5{margin-left:-1.248499pt;}
._a{width:1.102012pt;}
._8{width:2.198890pt;}
._d{width:4.186465pt;}
._14{width:11.234529pt;}
._c{width:50.631840pt;}
._15{width:153.606731pt;}
._12{width:160.427845pt;}
._13{width:169.074537pt;}
._11{width:173.503765pt;}
._10{width:178.320488pt;}
._3{width:6978.760000pt;}
.fse{font-size:27.984000pt;}
.fsd{font-size:31.093333pt;}
.fs4{font-size:32.000000pt;}
.fs10{font-size:34.202667pt;}
.fsc{font-size:37.312000pt;}
.fs6{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fsf{font-size:56.000000pt;}
.fsb{font-size:58.666667pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fsa{font-size:74.666667pt;}
.fs8{font-size:80.000000pt;}
.fs1{font-size:85.333333pt;}
.fs5{font-size:96.000000pt;}
.fs0{font-size:170.666667pt;}
.y9{bottom:-18.456800pt;}
.y146{bottom:-10.897600pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000133pt;}
.y86{bottom:66.141453pt;}
.yac{bottom:71.004747pt;}
.yf0{bottom:73.368613pt;}
.y128{bottom:77.035280pt;}
.ycb{bottom:79.517147pt;}
.y56{bottom:82.954913pt;}
.y119{bottom:83.410347pt;}
.y85{bottom:84.537293pt;}
.yab{bottom:88.604213pt;}
.yef{bottom:90.968613pt;}
.y127{bottom:94.635280pt;}
.y84{bottom:94.941453pt;}
.y3f{bottom:95.437580pt;}
.yca{bottom:97.117147pt;}
.y8{bottom:97.318533pt;}
.y118{bottom:101.010347pt;}
.y55{bottom:102.867446pt;}
.yaa{bottom:106.203680pt;}
.yee{bottom:108.568613pt;}
.y83{bottom:109.341453pt;}
.y126{bottom:112.235280pt;}
.yc9{bottom:114.717147pt;}
.y7{bottom:118.118533pt;}
.y117{bottom:118.610347pt;}
.y54{bottom:119.000246pt;}
.y82{bottom:123.741453pt;}
.ya9{bottom:123.803680pt;}
.yed{bottom:126.168613pt;}
.y125{bottom:129.835280pt;}
.yc8{bottom:132.317147pt;}
.y116{bottom:136.210347pt;}
.y6{bottom:138.918533pt;}
.y81{bottom:142.137813pt;}
.yec{bottom:143.768613pt;}
.y124{bottom:147.435280pt;}
.ya8{bottom:148.962480pt;}
.yc7{bottom:149.917147pt;}
.y53{bottom:150.251846pt;}
.y115{bottom:153.810347pt;}
.yeb{bottom:161.368613pt;}
.y123{bottom:165.035280pt;}
.ya7{bottom:166.561947pt;}
.y103{bottom:167.517147pt;}
.y52{bottom:170.164913pt;}
.yc6{bottom:175.076480pt;}
.yea{bottom:178.968613pt;}
.y114{bottom:178.969147pt;}
.y122{bottom:182.635280pt;}
.ya6{bottom:184.161413pt;}
.y51{bottom:186.297713pt;}
.y80{bottom:191.318053pt;}
.yc5{bottom:192.676480pt;}
.ye9{bottom:196.568613pt;}
.y113{bottom:196.569147pt;}
.y121{bottom:200.235280pt;}
.ya5{bottom:201.761413pt;}
.y3e{bottom:204.766780pt;}
.y7f{bottom:208.918053pt;}
.yc4{bottom:210.276480pt;}
.ye8{bottom:214.168613pt;}
.y112{bottom:214.169147pt;}
.y50{bottom:217.549313pt;}
.y120{bottom:217.835280pt;}
.y20{bottom:218.773313pt;}
.ya4{bottom:219.360880pt;}
.y7e{bottom:226.518053pt;}
.yc3{bottom:227.876480pt;}
.ye7{bottom:231.768613pt;}
.y111{bottom:231.769147pt;}
.y3d{bottom:236.645446pt;}
.ya3{bottom:236.960880pt;}
.y4f{bottom:237.461846pt;}
.y7d{bottom:244.118053pt;}
.yc2{bottom:245.476480pt;}
.ye6{bottom:249.368613pt;}
.y110{bottom:249.369147pt;}
.y3c{bottom:251.312113pt;}
.y4e{bottom:253.594646pt;}
.y11f{bottom:254.333147pt;}
.ya2{bottom:254.560880pt;}
.y7c{bottom:261.718053pt;}
.yc1{bottom:263.076480pt;}
.y3b{bottom:265.978780pt;}
.ye5{bottom:266.968613pt;}
.y10f{bottom:266.969147pt;}
.ya1{bottom:272.160347pt;}
.y7b{bottom:279.318053pt;}
.yc0{bottom:280.676480pt;}
.ye4{bottom:284.568613pt;}
.y10e{bottom:284.569147pt;}
.y4d{bottom:284.846246pt;}
.ya0{bottom:289.759813pt;}
.y7a{bottom:296.918053pt;}
.y102{bottom:298.276480pt;}
.ye3{bottom:302.168613pt;}
.y10d{bottom:302.169147pt;}
.y9f{bottom:307.359813pt;}
.y11e{bottom:309.728480pt;}
.y145{bottom:313.685733pt;}
.y79{bottom:314.518053pt;}
.y101{bottom:315.876480pt;}
.ybf{bottom:317.173813pt;}
.y10c{bottom:319.769147pt;}
.y4c{bottom:321.343580pt;}
.y9e{bottom:324.959280pt;}
.ye2{bottom:327.327947pt;}
.y11d{bottom:327.328480pt;}
.y144{bottom:332.885733pt;}
.y100{bottom:333.476480pt;}
.y10b{bottom:337.369147pt;}
.y3a{bottom:339.312113pt;}
.y78{bottom:339.676853pt;}
.y4b{bottom:341.256646pt;}
.y9d{bottom:342.559280pt;}
.ye1{bottom:344.927947pt;}
.y11c{bottom:344.928480pt;}
.yff{bottom:351.076480pt;}
.y143{bottom:352.085733pt;}
.y10a{bottom:354.969147pt;}
.y39{bottom:356.645446pt;}
.y77{bottom:357.276853pt;}
.y4a{bottom:357.389446pt;}
.ye0{bottom:362.527947pt;}
.y11b{bottom:362.528480pt;}
.y9c{bottom:367.718080pt;}
.yfe{bottom:368.676480pt;}
.y142{bottom:371.285733pt;}
.ybe{bottom:372.569147pt;}
.y38{bottom:373.978780pt;}
.y76{bottom:374.876853pt;}
.y6a{bottom:375.303446pt;}
.ydf{bottom:380.127947pt;}
.y11a{bottom:380.128480pt;}
.y9b{bottom:385.318613pt;}
.y1f{bottom:385.598646pt;}
.y49{bottom:388.641046pt;}
.ybd{bottom:390.169147pt;}
.y141{bottom:390.485733pt;}
.y37{bottom:391.312113pt;}
.y75{bottom:392.476853pt;}
.yfd{bottom:393.835280pt;}
.y69{bottom:395.216513pt;}
.yde{bottom:397.727947pt;}
.y109{bottom:397.728480pt;}
.y1e{bottom:398.798646pt;}
.y9a{bottom:402.918080pt;}
.ybc{bottom:407.769147pt;}
.y48{bottom:408.554113pt;}
.y36{bottom:408.645446pt;}
.y140{bottom:409.685733pt;}
.y74{bottom:410.076853pt;}
.y68{bottom:411.349846pt;}
.yfc{bottom:411.435280pt;}
.y1d{bottom:411.998646pt;}
.ydd{bottom:415.327947pt;}
.y108{bottom:415.328480pt;}
.y99{bottom:420.517547pt;}
.y1c{bottom:425.198646pt;}
.ybb{bottom:425.369147pt;}
.y35{bottom:425.978780pt;}
.y67{bottom:427.483180pt;}
.y73{bottom:427.676853pt;}
.y13f{bottom:428.885733pt;}
.yfb{bottom:429.035280pt;}
.ydc{bottom:432.927947pt;}
.y107{bottom:432.928480pt;}
.y98{bottom:438.118080pt;}
.y1b{bottom:438.398646pt;}
.y47{bottom:439.805713pt;}
.yba{bottom:442.969147pt;}
.y72{bottom:445.276853pt;}
.yfa{bottom:446.635280pt;}
.y13e{bottom:448.085733pt;}
.ydb{bottom:450.527947pt;}
.y106{bottom:450.528480pt;}
.y1a{bottom:451.598646pt;}
.y66{bottom:458.734780pt;}
.yb9{bottom:460.569147pt;}
.y71{bottom:462.876853pt;}
.y19{bottom:464.798646pt;}
.y97{bottom:467.056613pt;}
.y13d{bottom:467.285733pt;}
.yda{bottom:468.127947pt;}
.y105{bottom:468.128480pt;}
.yf9{bottom:471.794613pt;}
.y46{bottom:476.303046pt;}
.y18{bottom:477.998646pt;}
.yb8{bottom:478.169147pt;}
.y70{bottom:480.476853pt;}
.y96{bottom:482.456080pt;}
.yd9{bottom:485.727947pt;}
.y104{bottom:485.728480pt;}
.y13c{bottom:486.485733pt;}
.yf8{bottom:489.394613pt;}
.y17{bottom:491.198646pt;}
.y65{bottom:495.232646pt;}
.y45{bottom:496.216113pt;}
.y95{bottom:497.855547pt;}
.y26{bottom:500.612133pt;}
.y34{bottom:501.978780pt;}
.yd8{bottom:503.327947pt;}
.yb7{bottom:503.328480pt;}
.y16{bottom:504.398646pt;}
.y13b{bottom:505.685733pt;}
.yf7{bottom:506.994613pt;}
.y44{bottom:512.348913pt;}
.y64{bottom:515.145180pt;}
.y33{bottom:516.645446pt;}
.y15{bottom:517.598646pt;}
.yd7{bottom:520.927947pt;}
.yb6{bottom:520.928480pt;}
.y94{bottom:524.594613pt;}
.y25{bottom:524.612133pt;}
.y13a{bottom:524.885733pt;}
.y14{bottom:530.798646pt;}
.y63{bottom:531.278513pt;}
.y32{bottom:531.312113pt;}
.yd6{bottom:538.527947pt;}
.yb5{bottom:538.528480pt;}
.y93{bottom:542.194613pt;}
.y43{bottom:543.600513pt;}
.y13{bottom:543.998646pt;}
.y139{bottom:544.085733pt;}
.y31{bottom:545.978780pt;}
.y24{bottom:548.612133pt;}
.yc{bottom:554.974646pt;}
.yd5{bottom:556.127947pt;}
.yb4{bottom:556.128480pt;}
.y92{bottom:559.794613pt;}
.y30{bottom:560.645446pt;}
.y62{bottom:562.530113pt;}
.y6f{bottom:573.667520pt;}
.yd4{bottom:573.727947pt;}
.yb3{bottom:573.728480pt;}
.y91{bottom:577.394613pt;}
.y42{bottom:580.098380pt;}
.yb{bottom:580.574646pt;}
.y61{bottom:582.443180pt;}
.y138{bottom:582.485733pt;}
.yd3{bottom:591.327947pt;}
.yb2{bottom:591.328480pt;}
.yf6{bottom:594.994613pt;}
.y6e{bottom:595.047147pt;}
.y60{bottom:598.576513pt;}
.y12c{bottom:598.887280pt;}
.y137{bottom:601.685733pt;}
.y41{bottom:603.790513pt;}
.yd2{bottom:608.927947pt;}
.yb1{bottom:608.928480pt;}
.y23{bottom:610.407467pt;}
.yf5{bottom:612.594613pt;}
.y90{bottom:613.891947pt;}
.y5f{bottom:614.709846pt;}
.y12b{bottom:616.487280pt;}
.y6d{bottom:620.205400pt;}
.y136{bottom:620.885733pt;}
.ya{bottom:625.071980pt;}
.yd1{bottom:626.527947pt;}
.yb0{bottom:626.528480pt;}
.yf4{bottom:630.194613pt;}
.y12a{bottom:634.087280pt;}
.y22{bottom:636.007467pt;}
.y135{bottom:640.085733pt;}
.y2f{bottom:641.537580pt;}
.y6c{bottom:641.585147pt;}
.yd0{bottom:644.127947pt;}
.yaf{bottom:644.128480pt;}
.y5e{bottom:645.961446pt;}
.yf3{bottom:647.794613pt;}
.y129{bottom:651.687280pt;}
.y2e{bottom:656.238646pt;}
.y12{bottom:658.505313pt;}
.y134{bottom:659.285733pt;}
.ycf{bottom:661.727947pt;}
.yae{bottom:661.728480pt;}
.yf2{bottom:665.394613pt;}
.y8f{bottom:669.287280pt;}
.y11{bottom:671.705313pt;}
.y133{bottom:678.485733pt;}
.yad{bottom:679.327947pt;}
.y21{bottom:680.505333pt;}
.y5d{bottom:682.458780pt;}
.y10{bottom:684.904793pt;}
.y8e{bottom:686.887280pt;}
.yce{bottom:696.928480pt;}
.y6b{bottom:696.980480pt;}
.y132{bottom:697.685733pt;}
.yf{bottom:698.105313pt;}
.yf1{bottom:701.891947pt;}
.y5c{bottom:702.371846pt;}
.y8d{bottom:704.487280pt;}
.y40{bottom:704.539980pt;}
.ye{bottom:711.304793pt;}
.ycd{bottom:714.528480pt;}
.y2d{bottom:714.905313pt;}
.y131{bottom:716.885733pt;}
.y5b{bottom:718.505180pt;}
.y5{bottom:718.910533pt;}
.y8c{bottom:722.087280pt;}
.yd{bottom:724.505313pt;}
.y2c{bottom:729.571980pt;}
.ycc{bottom:732.128480pt;}
.y5a{bottom:734.638513pt;}
.y130{bottom:736.085733pt;}
.y8b{bottom:739.687280pt;}
.y2b{bottom:744.238646pt;}
.y4{bottom:744.510533pt;}
.y12f{bottom:755.285733pt;}
.y8a{bottom:757.287280pt;}
.y2a{bottom:758.905313pt;}
.y59{bottom:765.889580pt;}
.y29{bottom:773.571980pt;}
.y12e{bottom:774.485733pt;}
.y89{bottom:774.887280pt;}
.y3{bottom:780.777200pt;}
.y58{bottom:785.802646pt;}
.y28{bottom:788.238646pt;}
.y88{bottom:792.487280pt;}
.y12d{bottom:793.685733pt;}
.y57{bottom:801.935980pt;}
.y27{bottom:802.905313pt;}
.y2{bottom:831.977200pt;}
.y87{bottom:845.547147pt;}
.h7{height:21.312000pt;}
.h1b{height:23.854560pt;}
.h1d{height:23.856640pt;}
.he{height:39.243750pt;}
.h1c{height:39.792000pt;}
.hd{height:39.840000pt;}
.hc{height:40.368000pt;}
.h12{height:44.266667pt;}
.h1e{height:46.480000pt;}
.h22{height:48.000000pt;}
.h16{height:48.634667pt;}
.h17{height:48.693333pt;}
.h5{height:52.375000pt;}
.h1a{height:53.056000pt;}
.h19{height:53.120000pt;}
.h15{height:53.824000pt;}
.h6{height:56.739583pt;}
.h14{height:62.794667pt;}
.h11{height:66.400000pt;}
.h4{height:69.833333pt;}
.hb{height:71.765333pt;}
.ha{height:80.736000pt;}
.h3{height:139.666667pt;}
.h2{height:906.393200pt;}
.h0{height:906.393333pt;}
.h1{height:906.666667pt;}
.h18{height:907.084480pt;}
.h8{height:907.086646pt;}
.h10{height:907.086667pt;}
.hf{height:907.086996pt;}
.h9{height:907.333333pt;}
.h20{height:910.000000pt;}
.h21{height:910.173067pt;}
.h1f{height:910.173733pt;}
.h13{height:37973.333333pt;}
.w2{width:642.519837pt;}
.w3{width:642.666667pt;}
.w0{width:643.273333pt;}
.w1{width:643.333333pt;}
.w4{width:643.710667pt;}
.w5{width:644.000000pt;}
.x8{left:-973.371333pt;}
.x20{left:-287.486000pt;}
.x0{left:0.000000pt;}
.x4{left:68.857600pt;}
.xc{left:75.590504pt;}
.xd{left:83.149304pt;}
.xe{left:89.389437pt;}
.x16{left:94.487704pt;}
.x2{left:97.227467pt;}
.xf{left:102.047917pt;}
.x14{left:110.635104pt;}
.x1e{left:113.386264pt;}
.x1f{left:122.802667pt;}
.xb{left:136.611837pt;}
.x3{left:144.404533pt;}
.x12{left:146.341971pt;}
.x9{left:147.921171pt;}
.x1a{left:155.439837pt;}
.x7{left:156.781733pt;}
.x1b{left:158.006504pt;}
.x10{left:168.294504pt;}
.x1{left:174.592000pt;}
.x11{left:190.061304pt;}
.xa{left:191.309704pt;}
.x18{left:194.341971pt;}
.x1d{left:198.830504pt;}
.x6{left:202.958800pt;}
.x19{left:210.084637pt;}
.x17{left:247.899837pt;}
.x1c{left:252.645171pt;}
.x5{left:275.854667pt;}
.x15{left:288.677171pt;}
.x13{left:298.840637pt;}
}




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