
    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_8bb5592e29cf90557cf0695f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_ac354ed9ca19187229d2e6a4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959000;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_8e754dfd109863885ffce272.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.959000;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_f263efd9218a9b90ca51ccae.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.080000;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_dad6b93662b13137b59d0de7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.117000;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_ca9cd08d914b92408a968848.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_a9f45f6ac4ab8ec275698dac.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.049000;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_f082b59bebead21b4ff7330e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.978000;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;}
.m3{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982056px;}
.ls1{letter-spacing:-0.858000px;}
.ls5{letter-spacing:-0.594000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.066660px;}
.ls2{letter-spacing:0.180600px;}
.ls8{letter-spacing:0.330000px;}
.ls4{letter-spacing:0.420000px;}
.ls9{letter-spacing:0.528000px;}
.ls3{letter-spacing:0.594000px;}
.ls6{letter-spacing:0.924660px;}
.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;}
}
.ws12{word-spacing:-17.280000px;}
.ws32{word-spacing:-15.660000px;}
.wsfa{word-spacing:-15.240000px;}
.ws2{word-spacing:-14.580600px;}
.ws3{word-spacing:-14.400000px;}
.wsf9{word-spacing:-13.716000px;}
.ws0{word-spacing:-13.166044px;}
.wsd8{word-spacing:-12.192000px;}
.ws11{word-spacing:-9.906000px;}
.wsf8{word-spacing:-7.744572px;}
.wsb2{word-spacing:-4.560000px;}
.ws95{word-spacing:-3.420600px;}
.ws8f{word-spacing:-3.179400px;}
.ws17{word-spacing:-3.120000px;}
.wsfb{word-spacing:-3.072000px;}
.ws5b{word-spacing:-3.059400px;}
.ws6f{word-spacing:-3.000000px;}
.wsc1{word-spacing:-2.880000px;}
.ws19{word-spacing:-2.820000px;}
.ws90{word-spacing:-2.700000px;}
.ws1f{word-spacing:-2.640600px;}
.wsa{word-spacing:-2.580000px;}
.wsaa{word-spacing:-2.520600px;}
.wsfc{word-spacing:-2.400000px;}
.wse{word-spacing:-2.399400px;}
.ws100{word-spacing:-2.352000px;}
.ws20{word-spacing:-2.340000px;}
.ws37{word-spacing:-2.279400px;}
.wsf{word-spacing:-2.220000px;}
.ws83{word-spacing:-2.100000px;}
.ws89{word-spacing:-2.040000px;}
.wsa4{word-spacing:-1.980000px;}
.ws5{word-spacing:-1.920000px;}
.ws28{word-spacing:-1.860600px;}
.ws35{word-spacing:-1.740600px;}
.ws86{word-spacing:-1.655280px;}
.ws96{word-spacing:-1.560000px;}
.ws42{word-spacing:-1.499400px;}
.wsf5{word-spacing:-1.488480px;}
.ws23{word-spacing:-1.440000px;}
.wsec{word-spacing:-1.392480px;}
.ws43{word-spacing:-1.379400px;}
.ws71{word-spacing:-1.320000px;}
.ws18{word-spacing:-1.260000px;}
.ws1d{word-spacing:-1.140000px;}
.ws1e{word-spacing:-1.080600px;}
.ws7f{word-spacing:-1.020000px;}
.ws56{word-spacing:-0.960600px;}
.ws79{word-spacing:-0.924660px;}
.ws8d{word-spacing:-0.900000px;}
.wsbd{word-spacing:-0.840600px;}
.wsce{word-spacing:-0.780000px;}
.ws16{word-spacing:-0.719400px;}
.wsac{word-spacing:-0.660000px;}
.ws2b{word-spacing:-0.599400px;}
.ws13{word-spacing:-0.594000px;}
.wsd9{word-spacing:-0.528000px;}
.wsb1{word-spacing:-0.480000px;}
.ws5e{word-spacing:-0.420000px;}
.ws15{word-spacing:-0.360000px;}
.wsbe{word-spacing:-0.330000px;}
.ws49{word-spacing:-0.300000px;}
.wsdc{word-spacing:-0.288000px;}
.wsda{word-spacing:-0.192000px;}
.ws39{word-spacing:-0.120000px;}
.wsa0{word-spacing:-0.066660px;}
.ws5c{word-spacing:-0.060600px;}
.wse4{word-spacing:-0.048480px;}
.ws1{word-spacing:0.000000px;}
.wsfe{word-spacing:0.048480px;}
.ws57{word-spacing:0.060600px;}
.wsf2{word-spacing:0.096000px;}
.ws99{word-spacing:0.120000px;}
.ws36{word-spacing:0.300000px;}
.wsc6{word-spacing:0.360000px;}
.wsd2{word-spacing:0.420000px;}
.ws25{word-spacing:0.480000px;}
.wsb4{word-spacing:0.540000px;}
.wsed{word-spacing:0.575520px;}
.ws4b{word-spacing:0.594000px;}
.wse8{word-spacing:0.624000px;}
.ws78{word-spacing:0.660000px;}
.ws47{word-spacing:0.719400px;}
.ws85{word-spacing:0.780000px;}
.wsf6{word-spacing:0.816000px;}
.ws4{word-spacing:0.858000px;}
.wseb{word-spacing:0.864480px;}
.wsa8{word-spacing:0.900000px;}
.wsd1{word-spacing:1.020000px;}
.ws2c{word-spacing:1.080600px;}
.ws10{word-spacing:1.200000px;}
.ws50{word-spacing:1.241460px;}
.wsdf{word-spacing:1.248000px;}
.ws9f{word-spacing:1.260000px;}
.ws70{word-spacing:1.379400px;}
.ws94{word-spacing:1.440000px;}
.wsa3{word-spacing:1.499400px;}
.ws101{word-spacing:1.536000px;}
.ws21{word-spacing:1.619400px;}
.ws27{word-spacing:1.680000px;}
.ws14{word-spacing:1.740600px;}
.wsef{word-spacing:1.776000px;}
.wsf1{word-spacing:1.919520px;}
.wsd7{word-spacing:1.920000px;}
.ws22{word-spacing:2.040000px;}
.wsc0{word-spacing:2.100000px;}
.wsee{word-spacing:2.112480px;}
.wsaf{word-spacing:2.160000px;}
.ws4c{word-spacing:2.220000px;}
.ws24{word-spacing:2.279400px;}
.wsa5{word-spacing:2.340000px;}
.wse0{word-spacing:2.352000px;}
.ws8e{word-spacing:2.399400px;}
.ws81{word-spacing:2.460000px;}
.ws3a{word-spacing:2.520600px;}
.ws46{word-spacing:2.580000px;}
.ws68{word-spacing:2.640600px;}
.ws9c{word-spacing:2.700000px;}
.ws60{word-spacing:2.760600px;}
.ws87{word-spacing:2.820000px;}
.ws6b{word-spacing:2.880000px;}
.ws9b{word-spacing:2.940000px;}
.ws8a{word-spacing:3.000000px;}
.wsff{word-spacing:3.024000px;}
.wsc7{word-spacing:3.059400px;}
.ws29{word-spacing:3.120000px;}
.ws2f{word-spacing:3.179400px;}
.wse1{word-spacing:3.216000px;}
.ws7e{word-spacing:3.240000px;}
.wsb8{word-spacing:3.360000px;}
.wsf7{word-spacing:3.408000px;}
.ws33{word-spacing:3.420600px;}
.wscf{word-spacing:3.480000px;}
.ws63{word-spacing:3.540600px;}
.wsdb{word-spacing:3.552480px;}
.ws88{word-spacing:3.600000px;}
.ws91{word-spacing:3.660000px;}
.ws1c{word-spacing:3.720000px;}
.ws65{word-spacing:3.840000px;}
.ws7a{word-spacing:3.959400px;}
.wse9{word-spacing:3.983520px;}
.wsb0{word-spacing:4.020000px;}
.ws6{word-spacing:4.079400px;}
.ws4a{word-spacing:4.140000px;}
.ws2a{word-spacing:4.200600px;}
.wsb6{word-spacing:4.260000px;}
.wsc4{word-spacing:4.500000px;}
.ws52{word-spacing:4.560000px;}
.ws6e{word-spacing:4.680000px;}
.wsc3{word-spacing:4.739400px;}
.wsea{word-spacing:4.752000px;}
.wsa2{word-spacing:4.800000px;}
.wsf0{word-spacing:4.848000px;}
.ws6d{word-spacing:4.859400px;}
.wsb{word-spacing:4.920000px;}
.ws98{word-spacing:4.979400px;}
.wsad{word-spacing:5.040000px;}
.ws7c{word-spacing:5.100600px;}
.ws53{word-spacing:5.160000px;}
.ws41{word-spacing:5.280000px;}
.ws3c{word-spacing:5.340000px;}
.ws73{word-spacing:5.400000px;}
.ws5f{word-spacing:5.460000px;}
.ws76{word-spacing:5.520000px;}
.wsd4{word-spacing:5.580000px;}
.ws2d{word-spacing:5.639400px;}
.ws6a{word-spacing:5.700000px;}
.wsb7{word-spacing:5.759400px;}
.wse7{word-spacing:5.855520px;}
.ws5a{word-spacing:5.880600px;}
.wsf3{word-spacing:5.904000px;}
.wsd6{word-spacing:5.940000px;}
.wsdd{word-spacing:6.048480px;}
.ws66{word-spacing:6.060000px;}
.wsbc{word-spacing:6.120600px;}
.ws1a{word-spacing:6.180000px;}
.ws69{word-spacing:6.240000px;}
.wsb5{word-spacing:6.300000px;}
.wsae{word-spacing:6.360000px;}
.ws54{word-spacing:6.419400px;}
.wsb3{word-spacing:6.480000px;}
.wsde{word-spacing:6.528000px;}
.ws58{word-spacing:6.539400px;}
.ws34{word-spacing:6.600000px;}
.ws67{word-spacing:6.659400px;}
.wsb9{word-spacing:6.720000px;}
.wsa1{word-spacing:6.780600px;}
.ws80{word-spacing:6.840000px;}
.ws38{word-spacing:6.900600px;}
.ws51{word-spacing:6.960000px;}
.ws93{word-spacing:7.020000px;}
.ws9{word-spacing:7.080000px;}
.wse5{word-spacing:7.103520px;}
.ws4d{word-spacing:7.200000px;}
.wsd{word-spacing:7.260000px;}
.ws5d{word-spacing:7.319400px;}
.ws7{word-spacing:7.380000px;}
.wsca{word-spacing:7.500000px;}
.ws2e{word-spacing:7.560600px;}
.wsba{word-spacing:7.680600px;}
.ws4e{word-spacing:7.740000px;}
.ws8{word-spacing:7.800000px;}
.ws7d{word-spacing:7.860000px;}
.ws3b{word-spacing:7.920000px;}
.ws72{word-spacing:7.980000px;}
.ws9d{word-spacing:8.099400px;}
.wsa9{word-spacing:8.160000px;}
.wsd5{word-spacing:8.219400px;}
.ws77{word-spacing:8.340600px;}
.wsc9{word-spacing:8.400000px;}
.wscd{word-spacing:8.460600px;}
.wsf4{word-spacing:8.592000px;}
.wse3{word-spacing:8.639520px;}
.wsc8{word-spacing:8.640000px;}
.ws1b{word-spacing:8.700000px;}
.wsab{word-spacing:8.820000px;}
.ws61{word-spacing:8.879400px;}
.ws9a{word-spacing:8.940000px;}
.wsc{word-spacing:9.119400px;}
.wse6{word-spacing:9.120000px;}
.ws75{word-spacing:9.180000px;}
.wsfd{word-spacing:9.216000px;}
.wscb{word-spacing:9.240600px;}
.wsbb{word-spacing:9.360600px;}
.wscc{word-spacing:9.480000px;}
.ws82{word-spacing:9.540000px;}
.ws3f{word-spacing:9.600000px;}
.ws44{word-spacing:9.660000px;}
.ws9e{word-spacing:9.779400px;}
.ws48{word-spacing:9.840000px;}
.ws31{word-spacing:9.899400px;}
.wse2{word-spacing:9.936000px;}
.wsc5{word-spacing:10.020600px;}
.ws92{word-spacing:10.140600px;}
.ws74{word-spacing:10.320000px;}
.ws55{word-spacing:10.380000px;}
.ws3d{word-spacing:10.500000px;}
.ws3e{word-spacing:10.559400px;}
.ws6c{word-spacing:10.799400px;}
.wsa7{word-spacing:11.040600px;}
.wsd0{word-spacing:11.280000px;}
.wsbf{word-spacing:11.459400px;}
.ws59{word-spacing:11.579400px;}
.ws84{word-spacing:11.820600px;}
.ws26{word-spacing:11.940600px;}
.wsa6{word-spacing:12.600600px;}
.ws45{word-spacing:13.259400px;}
.ws30{word-spacing:13.380600px;}
.wsc2{word-spacing:13.860000px;}
.ws62{word-spacing:14.340000px;}
.ws64{word-spacing:15.300000px;}
.ws4f{word-spacing:15.498000px;}
.ws7b{word-spacing:15.540000px;}
.ws8b{word-spacing:16.020000px;}
.ws8c{word-spacing:16.740600px;}
.ws97{word-spacing:17.399400px;}
.ws40{word-spacing:18.660000px;}
.wsd3{word-spacing:19.979400px;}
._15{margin-left:-27.383979px;}
._16{margin-left:-21.059395px;}
._13{margin-left:-14.603979px;}
._10{margin-left:-13.054175px;}
._11{margin-left:-11.698796px;}
._14{margin-left:-8.623186px;}
._b{margin-left:-7.560000px;}
._f{margin-left:-5.760000px;}
._d{margin-left:-3.840000px;}
._e{margin-left:-2.520000px;}
._c{margin-left:-1.199995px;}
._7{width:1.775995px;}
._4{width:3.463191px;}
._5{width:4.824787px;}
._12{width:6.533983px;}
._18{width:7.961106px;}
._17{width:9.594183px;}
._0{width:11.721568px;}
._8{width:12.787165px;}
._6{width:17.286353px;}
._1{width:18.326579px;}
._9{width:22.436739px;}
._3{width:25.396731px;}
._a{width:40.551890px;}
._2{width:736.302239px;}
.fc4{color:rgb(29,29,27);}
.fc5{color:rgb(74,74,73);}
.fc3{color:rgb(87,87,86);}
.fc2{color:rgb(65,160,17);}
.fc1{color:rgb(255,101,0);}
.fc6{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.599920px;}
.fs10{font-size:31.482000px;}
.fs3{font-size:33.828480px;}
.fs6{font-size:37.211328px;}
.fs7{font-size:38.057040px;}
.fs9{font-size:39.000000px;}
.fs2{font-size:42.285600px;}
.fs1{font-size:46.514160px;}
.fs5{font-size:47.359872px;}
.fsf{font-size:48.000000px;}
.fse{font-size:54.000000px;}
.fs0{font-size:59.199840px;}
.fsc{font-size:60.000000px;}
.fs8{font-size:66.000000px;}
.fsd{font-size:72.000000px;}
.fsa{font-size:84.000000px;}
.fsb{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.267615px;}
.y22{bottom:35.529000px;}
.y21{bottom:36.291450px;}
.y5f{bottom:37.366950px;}
.y20{bottom:45.087021px;}
.y1f{bottom:57.074989px;}
.yee{bottom:68.615100px;}
.y1e{bottom:69.062956px;}
.y37{bottom:72.515247px;}
.yb0{bottom:72.867147px;}
.y5e{bottom:76.320454px;}
.y131{bottom:76.612198px;}
.y1d{bottom:81.050924px;}
.yfa{bottom:82.363197px;}
.y85{bottom:83.225395px;}
.ya6{bottom:84.863548px;}
.yed{bottom:86.615100px;}
.y36{bottom:90.515247px;}
.yaf{bottom:90.867147px;}
.y130{bottom:91.012200px;}
.y1c{bottom:91.294610px;}
.y5d{bottom:94.320454px;}
.yd0{bottom:97.333649px;}
.yf9{bottom:100.363197px;}
.y84{bottom:101.225395px;}
.ya5{bottom:102.863548px;}
.yec{bottom:104.615100px;}
.y12f{bottom:105.412205px;}
.yae{bottom:108.867153px;}
.y1b{bottom:110.703701px;}
.y5c{bottom:112.320454px;}
.ycf{bottom:115.333649px;}
.yf8{bottom:118.363197px;}
.y83{bottom:119.225395px;}
.y12e{bottom:119.812202px;}
.ya4{bottom:120.863548px;}
.yeb{bottom:122.615100px;}
.y35{bottom:125.523148px;}
.yad{bottom:126.867153px;}
.y5b{bottom:130.320454px;}
.yce{bottom:133.333649px;}
.y109{bottom:134.212200px;}
.yf7{bottom:136.363197px;}
.y82{bottom:137.225395px;}
.ya3{bottom:138.863548px;}
.yea{bottom:140.615100px;}
.y34{bottom:143.523148px;}
.yac{bottom:144.867153px;}
.y5a{bottom:148.320454px;}
.y12d{bottom:148.612198px;}
.ycd{bottom:151.333649px;}
.y108{bottom:152.212200px;}
.ya2{bottom:156.863548px;}
.ye9{bottom:158.615089px;}
.yf0{bottom:158.615100px;}
.y33{bottom:161.523148px;}
.yab{bottom:162.867153px;}
.y12c{bottom:163.012196px;}
.y81{bottom:163.729410px;}
.y59{bottom:166.320454px;}
.y1a{bottom:167.091548px;}
.ycc{bottom:169.333649px;}
.y107{bottom:170.212200px;}
.ya1{bottom:174.863548px;}
.y19{bottom:176.077238px;}
.ye8{bottom:176.615089px;}
.yef{bottom:176.615100px;}
.y12b{bottom:177.412205px;}
.y32{bottom:179.523148px;}
.yaa{bottom:180.867153px;}
.y58{bottom:184.320442px;}
.y18{bottom:184.322930px;}
.y80{bottom:185.479350px;}
.ycb{bottom:187.333649px;}
.y106{bottom:188.212200px;}
.y17{bottom:191.807482px;}
.y12a{bottom:191.812202px;}
.ya0{bottom:192.863548px;}
.ye7{bottom:194.615089px;}
.y31{bottom:197.523148px;}
.ya9{bottom:198.867142px;}
.y16{bottom:199.302604px;}
.y57{bottom:202.320442px;}
.yca{bottom:205.333649px;}
.y105{bottom:206.212189px;}
.y15{bottom:206.797727px;}
.y9f{bottom:210.863548px;}
.ye6{bottom:212.615089px;}
.y14{bottom:214.282278px;}
.y30{bottom:215.523148px;}
.ya8{bottom:216.867142px;}
.y56{bottom:220.320442px;}
.y129{bottom:220.612198px;}
.y13{bottom:221.777401px;}
.yc9{bottom:223.333649px;}
.y104{bottom:224.212189px;}
.y9e{bottom:228.863548px;}
.ye5{bottom:230.615089px;}
.y2f{bottom:233.523148px;}
.y7f{bottom:234.867142px;}
.y128{bottom:235.012207px;}
.y12{bottom:237.190502px;}
.y55{bottom:238.320442px;}
.yc8{bottom:241.333649px;}
.y103{bottom:242.212189px;}
.y9d{bottom:246.863548px;}
.ye4{bottom:248.615089px;}
.y127{bottom:249.412193px;}
.y2e{bottom:251.523148px;}
.y7e{bottom:252.867142px;}
.y54{bottom:256.320442px;}
.y102{bottom:260.212189px;}
.y126{bottom:263.812202px;}
.y9c{bottom:264.863548px;}
.ye3{bottom:266.615089px;}
.yc7{bottom:267.837593px;}
.y2d{bottom:269.523148px;}
.y7d{bottom:270.867142px;}
.y53{bottom:274.320442px;}
.y101{bottom:278.212189px;}
.y9b{bottom:282.863548px;}
.ye2{bottom:284.615089px;}
.y2c{bottom:287.523148px;}
.y7c{bottom:288.867142px;}
.y52{bottom:292.320442px;}
.y125{bottom:292.612198px;}
.y100{bottom:296.212189px;}
.y9a{bottom:300.863548px;}
.ye1{bottom:302.615089px;}
.y2b{bottom:305.523148px;}
.y7b{bottom:306.867142px;}
.y124{bottom:307.012207px;}
.y51{bottom:310.320442px;}
.y11{bottom:312.839440px;}
.yff{bottom:314.212189px;}
.yc6{bottom:317.225395px;}
.y99{bottom:318.863548px;}
.ye0{bottom:320.615089px;}
.y123{bottom:321.412193px;}
.y2a{bottom:323.523148px;}
.y7a{bottom:324.867142px;}
.yfe{bottom:332.212189px;}
.yc5{bottom:335.225395px;}
.y122{bottom:335.812202px;}
.y50{bottom:336.824409px;}
.y98{bottom:336.863548px;}
.ydf{bottom:338.615089px;}
.y29{bottom:341.523148px;}
.y79{bottom:342.867142px;}
.yfd{bottom:350.212189px;}
.yc4{bottom:353.225395px;}
.y97{bottom:354.863548px;}
.yde{bottom:356.615089px;}
.y28{bottom:359.523148px;}
.y78{bottom:360.867142px;}
.y121{bottom:364.612198px;}
.yfc{bottom:368.212189px;}
.yc3{bottom:371.225395px;}
.y96{bottom:372.863571px;}
.ydd{bottom:374.615089px;}
.y77{bottom:378.867142px;}
.y120{bottom:379.012207px;}
.y27{bottom:381.775040px;}
.y4f{bottom:386.212189px;}
.yc2{bottom:389.225418px;}
.y95{bottom:390.863571px;}
.ydc{bottom:392.615112px;}
.y11f{bottom:393.412216px;}
.y76{bottom:396.867142px;}
.y4e{bottom:404.212189px;}
.yc1{bottom:407.225418px;}
.y11e{bottom:407.812180px;}
.y94{bottom:408.863571px;}
.ydb{bottom:410.615100px;}
.yfb{bottom:410.615112px;}
.y75{bottom:414.867142px;}
.y146{bottom:421.168488px;}
.y4d{bottom:422.212189px;}
.yc0{bottom:425.225418px;}
.yda{bottom:428.615250px;}
.y74{bottom:432.867142px;}
.y93{bottom:435.367493px;}
.y11d{bottom:436.612198px;}
.y4c{bottom:440.212189px;}
.ybf{bottom:443.225418px;}
.yd9{bottom:446.615250px;}
.y73{bottom:450.867142px;}
.y11c{bottom:451.012207px;}
.y145{bottom:451.168488px;}
.y4b{bottom:458.212189px;}
.y10{bottom:458.312476px;}
.ybe{bottom:461.225418px;}
.yd8{bottom:464.615250px;}
.y11b{bottom:465.412216px;}
.y144{bottom:467.518478px;}
.y72{bottom:468.867142px;}
.y4a{bottom:476.212189px;}
.ybd{bottom:479.225418px;}
.y11a{bottom:479.812180px;}
.yf{bottom:481.421556px;}
.yd7{bottom:482.615250px;}
.y143{bottom:483.868515px;}
.y92{bottom:484.755295px;}
.y26{bottom:484.814392px;}
.y71{bottom:486.867142px;}
.ye{bottom:493.398952px;}
.y49{bottom:494.212189px;}
.ybc{bottom:497.225418px;}
.y142{bottom:500.218506px;}
.yd6{bottom:500.615250px;}
.y91{bottom:502.755295px;}
.y70{bottom:504.867142px;}
.y119{bottom:508.612198px;}
.y48{bottom:512.212189px;}
.y25{bottom:513.314392px;}
.ybb{bottom:515.225418px;}
.y141{bottom:516.568497px;}
.yd{bottom:516.740603px;}
.yd5{bottom:518.615250px;}
.y90{bottom:520.755295px;}
.y6f{bottom:522.867142px;}
.y118{bottom:523.012207px;}
.yc{bottom:528.728571px;}
.y47{bottom:530.212189px;}
.yba{bottom:533.225418px;}
.yd4{bottom:536.615250px;}
.y117{bottom:537.412216px;}
.y8f{bottom:538.755295px;}
.yb{bottom:540.716539px;}
.y6e{bottom:540.867142px;}
.y24{bottom:541.814392px;}
.y46{bottom:548.212189px;}
.yb9{bottom:551.225418px;}
.y116{bottom:551.812180px;}
.ya{bottom:552.704506px;}
.yd3{bottom:554.615250px;}
.y8e{bottom:556.755295px;}
.y140{bottom:558.430344px;}
.y6d{bottom:558.867142px;}
.y9{bottom:564.692474px;}
.y45{bottom:566.212189px;}
.yb8{bottom:569.225418px;}
.yd2{bottom:572.615250px;}
.y8d{bottom:574.755295px;}
.y8{bottom:576.669870px;}
.y6c{bottom:576.867142px;}
.y115{bottom:580.612198px;}
.y23{bottom:580.944305px;}
.y44{bottom:584.212189px;}
.yb7{bottom:587.225418px;}
.yd1{bottom:590.615250px;}
.y8c{bottom:592.755295px;}
.y6b{bottom:594.867142px;}
.y114{bottom:595.012207px;}
.y43{bottom:602.212189px;}
.yb6{bottom:605.225418px;}
.y13f{bottom:607.818146px;}
.yf6{bottom:608.615250px;}
.y113{bottom:609.412216px;}
.y8b{bottom:610.755295px;}
.y6a{bottom:612.867142px;}
.y42{bottom:620.212189px;}
.y13e{bottom:622.218155px;}
.yb5{bottom:623.225418px;}
.y112{bottom:623.812180px;}
.yf5{bottom:626.615112px;}
.y8a{bottom:628.755295px;}
.y69{bottom:630.867142px;}
.y7{bottom:632.539719px;}
.y13d{bottom:636.618164px;}
.y41{bottom:638.212189px;}
.yb4{bottom:641.225418px;}
.yf4{bottom:644.615112px;}
.y68{bottom:648.867142px;}
.y6{bottom:649.020532px;}
.y13c{bottom:651.018127px;}
.y111{bottom:652.612198px;}
.y40{bottom:656.212189px;}
.yb3{bottom:659.225418px;}
.y89{bottom:659.511292px;}
.yf3{bottom:662.615112px;}
.y13b{bottom:665.418137px;}
.y5{bottom:665.501344px;}
.y67{bottom:666.867142px;}
.y110{bottom:667.012207px;}
.y3f{bottom:674.212189px;}
.y88{bottom:675.711319px;}
.y13a{bottom:679.818146px;}
.yf2{bottom:680.615112px;}
.y10f{bottom:681.412216px;}
.y4{bottom:683.282439px;}
.y66{bottom:684.867142px;}
.yb2{bottom:685.729400px;}
.y87{bottom:691.911300px;}
.y3e{bottom:692.212189px;}
.y139{bottom:694.218155px;}
.y10e{bottom:695.812180px;}
.yf1{bottom:698.615112px;}
.y65{bottom:702.867142px;}
.y3{bottom:704.256097px;}
.yb1{bottom:707.479340px;}
.y138{bottom:708.618164px;}
.y3d{bottom:710.212189px;}
.y64{bottom:720.867142px;}
.y137{bottom:723.018127px;}
.y10d{bottom:724.612198px;}
.y2{bottom:725.240326px;}
.y3c{bottom:728.212189px;}
.y136{bottom:737.418137px;}
.y63{bottom:738.867142px;}
.y86{bottom:738.867188px;}
.y10c{bottom:739.012207px;}
.y3b{bottom:746.212189px;}
.y135{bottom:751.818146px;}
.y10b{bottom:753.412216px;}
.ya7{bottom:756.867142px;}
.y62{bottom:756.867188px;}
.y3a{bottom:764.212189px;}
.y134{bottom:766.218155px;}
.y10a{bottom:767.812180px;}
.y61{bottom:774.867188px;}
.y133{bottom:780.618164px;}
.y39{bottom:790.716156px;}
.y60{bottom:792.867188px;}
.y132{bottom:795.018127px;}
.y38{bottom:833.260803px;}
.h7{height:21.933541px;}
.h6{height:25.066904px;}
.h9{height:28.200267px;}
.h5{height:31.333630px;}
.hd{height:34.359000px;}
.h4{height:34.466993px;}
.h8{height:35.093665px;}
.h17{height:41.562074px;}
.h16{height:42.288000px;}
.h3{height:43.867081px;}
.h13{height:46.224000px;}
.h14{height:47.574000px;}
.h15{height:48.780000px;}
.h10{height:51.360000px;}
.h11{height:52.860000px;}
.hc{height:56.496000px;}
.he{height:60.732000px;}
.h12{height:61.632000px;}
.hf{height:82.176000px;}
.h2{height:889.995595px;}
.h1{height:890.250000px;}
.h0{height:890.520000px;}
.ha{height:892.914000px;}
.hb{height:893.250000px;}
.w1{width:629.250000px;}
.w3{width:629.292000px;}
.w2{width:629.294299px;}
.w0{width:629.295000px;}
.x0{left:0.000000px;}
.x3{left:32.961625px;}
.x1{left:38.955609px;}
.x6{left:80.787449px;}
.x7{left:93.543303px;}
.xd{left:95.669249px;}
.x2{left:104.878859px;}
.xc{left:195.372299px;}
.xe{left:212.598450px;}
.x8{left:268.731010px;}
.x4{left:308.653166px;}
.xa{left:445.146606px;}
.x5{left:531.482117px;}
.xb{left:534.113113px;}
.x9{left:548.467941px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984049pt;}
.ls1{letter-spacing:-0.762667pt;}
.ls5{letter-spacing:-0.528000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.059253pt;}
.ls2{letter-spacing:0.160533pt;}
.ls8{letter-spacing:0.293333pt;}
.ls4{letter-spacing:0.373333pt;}
.ls9{letter-spacing:0.469333pt;}
.ls3{letter-spacing:0.528000pt;}
.ls6{letter-spacing:0.821920pt;}
.ws12{word-spacing:-15.360000pt;}
.ws32{word-spacing:-13.920000pt;}
.wsfa{word-spacing:-13.546667pt;}
.ws2{word-spacing:-12.960533pt;}
.ws3{word-spacing:-12.800000pt;}
.wsf9{word-spacing:-12.192000pt;}
.ws0{word-spacing:-11.703151pt;}
.wsd8{word-spacing:-10.837333pt;}
.ws11{word-spacing:-8.805333pt;}
.wsf8{word-spacing:-6.884064pt;}
.wsb2{word-spacing:-4.053333pt;}
.ws95{word-spacing:-3.040533pt;}
.ws8f{word-spacing:-2.826133pt;}
.ws17{word-spacing:-2.773333pt;}
.wsfb{word-spacing:-2.730667pt;}
.ws5b{word-spacing:-2.719467pt;}
.ws6f{word-spacing:-2.666667pt;}
.wsc1{word-spacing:-2.560000pt;}
.ws19{word-spacing:-2.506667pt;}
.ws90{word-spacing:-2.400000pt;}
.ws1f{word-spacing:-2.347200pt;}
.wsa{word-spacing:-2.293333pt;}
.wsaa{word-spacing:-2.240533pt;}
.wsfc{word-spacing:-2.133333pt;}
.wse{word-spacing:-2.132800pt;}
.ws100{word-spacing:-2.090667pt;}
.ws20{word-spacing:-2.080000pt;}
.ws37{word-spacing:-2.026133pt;}
.wsf{word-spacing:-1.973333pt;}
.ws83{word-spacing:-1.866667pt;}
.ws89{word-spacing:-1.813333pt;}
.wsa4{word-spacing:-1.760000pt;}
.ws5{word-spacing:-1.706667pt;}
.ws28{word-spacing:-1.653867pt;}
.ws35{word-spacing:-1.547200pt;}
.ws86{word-spacing:-1.471360pt;}
.ws96{word-spacing:-1.386667pt;}
.ws42{word-spacing:-1.332800pt;}
.wsf5{word-spacing:-1.323093pt;}
.ws23{word-spacing:-1.280000pt;}
.wsec{word-spacing:-1.237760pt;}
.ws43{word-spacing:-1.226133pt;}
.ws71{word-spacing:-1.173333pt;}
.ws18{word-spacing:-1.120000pt;}
.ws1d{word-spacing:-1.013333pt;}
.ws1e{word-spacing:-0.960533pt;}
.ws7f{word-spacing:-0.906667pt;}
.ws56{word-spacing:-0.853867pt;}
.ws79{word-spacing:-0.821920pt;}
.ws8d{word-spacing:-0.800000pt;}
.wsbd{word-spacing:-0.747200pt;}
.wsce{word-spacing:-0.693333pt;}
.ws16{word-spacing:-0.639467pt;}
.wsac{word-spacing:-0.586667pt;}
.ws2b{word-spacing:-0.532800pt;}
.ws13{word-spacing:-0.528000pt;}
.wsd9{word-spacing:-0.469333pt;}
.wsb1{word-spacing:-0.426667pt;}
.ws5e{word-spacing:-0.373333pt;}
.ws15{word-spacing:-0.320000pt;}
.wsbe{word-spacing:-0.293333pt;}
.ws49{word-spacing:-0.266667pt;}
.wsdc{word-spacing:-0.256000pt;}
.wsda{word-spacing:-0.170667pt;}
.ws39{word-spacing:-0.106667pt;}
.wsa0{word-spacing:-0.059253pt;}
.ws5c{word-spacing:-0.053867pt;}
.wse4{word-spacing:-0.043093pt;}
.ws1{word-spacing:0.000000pt;}
.wsfe{word-spacing:0.043093pt;}
.ws57{word-spacing:0.053867pt;}
.wsf2{word-spacing:0.085333pt;}
.ws99{word-spacing:0.106667pt;}
.ws36{word-spacing:0.266667pt;}
.wsc6{word-spacing:0.320000pt;}
.wsd2{word-spacing:0.373333pt;}
.ws25{word-spacing:0.426667pt;}
.wsb4{word-spacing:0.480000pt;}
.wsed{word-spacing:0.511573pt;}
.ws4b{word-spacing:0.528000pt;}
.wse8{word-spacing:0.554667pt;}
.ws78{word-spacing:0.586667pt;}
.ws47{word-spacing:0.639467pt;}
.ws85{word-spacing:0.693333pt;}
.wsf6{word-spacing:0.725333pt;}
.ws4{word-spacing:0.762667pt;}
.wseb{word-spacing:0.768427pt;}
.wsa8{word-spacing:0.800000pt;}
.wsd1{word-spacing:0.906667pt;}
.ws2c{word-spacing:0.960533pt;}
.ws10{word-spacing:1.066667pt;}
.ws50{word-spacing:1.103520pt;}
.wsdf{word-spacing:1.109333pt;}
.ws9f{word-spacing:1.120000pt;}
.ws70{word-spacing:1.226133pt;}
.ws94{word-spacing:1.280000pt;}
.wsa3{word-spacing:1.332800pt;}
.ws101{word-spacing:1.365333pt;}
.ws21{word-spacing:1.439467pt;}
.ws27{word-spacing:1.493333pt;}
.ws14{word-spacing:1.547200pt;}
.wsef{word-spacing:1.578667pt;}
.wsf1{word-spacing:1.706240pt;}
.wsd7{word-spacing:1.706667pt;}
.ws22{word-spacing:1.813333pt;}
.wsc0{word-spacing:1.866667pt;}
.wsee{word-spacing:1.877760pt;}
.wsaf{word-spacing:1.920000pt;}
.ws4c{word-spacing:1.973333pt;}
.ws24{word-spacing:2.026133pt;}
.wsa5{word-spacing:2.080000pt;}
.wse0{word-spacing:2.090667pt;}
.ws8e{word-spacing:2.132800pt;}
.ws81{word-spacing:2.186667pt;}
.ws3a{word-spacing:2.240533pt;}
.ws46{word-spacing:2.293333pt;}
.ws68{word-spacing:2.347200pt;}
.ws9c{word-spacing:2.400000pt;}
.ws60{word-spacing:2.453867pt;}
.ws87{word-spacing:2.506667pt;}
.ws6b{word-spacing:2.560000pt;}
.ws9b{word-spacing:2.613333pt;}
.ws8a{word-spacing:2.666667pt;}
.wsff{word-spacing:2.688000pt;}
.wsc7{word-spacing:2.719467pt;}
.ws29{word-spacing:2.773333pt;}
.ws2f{word-spacing:2.826133pt;}
.wse1{word-spacing:2.858667pt;}
.ws7e{word-spacing:2.880000pt;}
.wsb8{word-spacing:2.986667pt;}
.wsf7{word-spacing:3.029333pt;}
.ws33{word-spacing:3.040533pt;}
.wscf{word-spacing:3.093333pt;}
.ws63{word-spacing:3.147200pt;}
.wsdb{word-spacing:3.157760pt;}
.ws88{word-spacing:3.200000pt;}
.ws91{word-spacing:3.253333pt;}
.ws1c{word-spacing:3.306667pt;}
.ws65{word-spacing:3.413333pt;}
.ws7a{word-spacing:3.519467pt;}
.wse9{word-spacing:3.540907pt;}
.wsb0{word-spacing:3.573333pt;}
.ws6{word-spacing:3.626133pt;}
.ws4a{word-spacing:3.680000pt;}
.ws2a{word-spacing:3.733867pt;}
.wsb6{word-spacing:3.786667pt;}
.wsc4{word-spacing:4.000000pt;}
.ws52{word-spacing:4.053333pt;}
.ws6e{word-spacing:4.160000pt;}
.wsc3{word-spacing:4.212800pt;}
.wsea{word-spacing:4.224000pt;}
.wsa2{word-spacing:4.266667pt;}
.wsf0{word-spacing:4.309333pt;}
.ws6d{word-spacing:4.319467pt;}
.wsb{word-spacing:4.373333pt;}
.ws98{word-spacing:4.426133pt;}
.wsad{word-spacing:4.480000pt;}
.ws7c{word-spacing:4.533867pt;}
.ws53{word-spacing:4.586667pt;}
.ws41{word-spacing:4.693333pt;}
.ws3c{word-spacing:4.746667pt;}
.ws73{word-spacing:4.800000pt;}
.ws5f{word-spacing:4.853333pt;}
.ws76{word-spacing:4.906667pt;}
.wsd4{word-spacing:4.960000pt;}
.ws2d{word-spacing:5.012800pt;}
.ws6a{word-spacing:5.066667pt;}
.wsb7{word-spacing:5.119467pt;}
.wse7{word-spacing:5.204907pt;}
.ws5a{word-spacing:5.227200pt;}
.wsf3{word-spacing:5.248000pt;}
.wsd6{word-spacing:5.280000pt;}
.wsdd{word-spacing:5.376427pt;}
.ws66{word-spacing:5.386667pt;}
.wsbc{word-spacing:5.440533pt;}
.ws1a{word-spacing:5.493333pt;}
.ws69{word-spacing:5.546667pt;}
.wsb5{word-spacing:5.600000pt;}
.wsae{word-spacing:5.653333pt;}
.ws54{word-spacing:5.706133pt;}
.wsb3{word-spacing:5.760000pt;}
.wsde{word-spacing:5.802667pt;}
.ws58{word-spacing:5.812800pt;}
.ws34{word-spacing:5.866667pt;}
.ws67{word-spacing:5.919467pt;}
.wsb9{word-spacing:5.973333pt;}
.wsa1{word-spacing:6.027200pt;}
.ws80{word-spacing:6.080000pt;}
.ws38{word-spacing:6.133867pt;}
.ws51{word-spacing:6.186667pt;}
.ws93{word-spacing:6.240000pt;}
.ws9{word-spacing:6.293333pt;}
.wse5{word-spacing:6.314240pt;}
.ws4d{word-spacing:6.400000pt;}
.wsd{word-spacing:6.453333pt;}
.ws5d{word-spacing:6.506133pt;}
.ws7{word-spacing:6.560000pt;}
.wsca{word-spacing:6.666667pt;}
.ws2e{word-spacing:6.720533pt;}
.wsba{word-spacing:6.827200pt;}
.ws4e{word-spacing:6.880000pt;}
.ws8{word-spacing:6.933333pt;}
.ws7d{word-spacing:6.986667pt;}
.ws3b{word-spacing:7.040000pt;}
.ws72{word-spacing:7.093333pt;}
.ws9d{word-spacing:7.199467pt;}
.wsa9{word-spacing:7.253333pt;}
.wsd5{word-spacing:7.306133pt;}
.ws77{word-spacing:7.413867pt;}
.wsc9{word-spacing:7.466667pt;}
.wscd{word-spacing:7.520533pt;}
.wsf4{word-spacing:7.637333pt;}
.wse3{word-spacing:7.679573pt;}
.wsc8{word-spacing:7.680000pt;}
.ws1b{word-spacing:7.733333pt;}
.wsab{word-spacing:7.840000pt;}
.ws61{word-spacing:7.892800pt;}
.ws9a{word-spacing:7.946667pt;}
.wsc{word-spacing:8.106133pt;}
.wse6{word-spacing:8.106667pt;}
.ws75{word-spacing:8.160000pt;}
.wsfd{word-spacing:8.192000pt;}
.wscb{word-spacing:8.213867pt;}
.wsbb{word-spacing:8.320533pt;}
.wscc{word-spacing:8.426667pt;}
.ws82{word-spacing:8.480000pt;}
.ws3f{word-spacing:8.533333pt;}
.ws44{word-spacing:8.586667pt;}
.ws9e{word-spacing:8.692800pt;}
.ws48{word-spacing:8.746667pt;}
.ws31{word-spacing:8.799467pt;}
.wse2{word-spacing:8.832000pt;}
.wsc5{word-spacing:8.907200pt;}
.ws92{word-spacing:9.013867pt;}
.ws74{word-spacing:9.173333pt;}
.ws55{word-spacing:9.226667pt;}
.ws3d{word-spacing:9.333333pt;}
.ws3e{word-spacing:9.386133pt;}
.ws6c{word-spacing:9.599467pt;}
.wsa7{word-spacing:9.813867pt;}
.wsd0{word-spacing:10.026667pt;}
.wsbf{word-spacing:10.186133pt;}
.ws59{word-spacing:10.292800pt;}
.ws84{word-spacing:10.507200pt;}
.ws26{word-spacing:10.613867pt;}
.wsa6{word-spacing:11.200533pt;}
.ws45{word-spacing:11.786133pt;}
.ws30{word-spacing:11.893867pt;}
.wsc2{word-spacing:12.320000pt;}
.ws62{word-spacing:12.746667pt;}
.ws64{word-spacing:13.600000pt;}
.ws4f{word-spacing:13.776000pt;}
.ws7b{word-spacing:13.813333pt;}
.ws8b{word-spacing:14.240000pt;}
.ws8c{word-spacing:14.880533pt;}
.ws97{word-spacing:15.466133pt;}
.ws40{word-spacing:16.586667pt;}
.wsd3{word-spacing:17.759467pt;}
._15{margin-left:-24.341315pt;}
._16{margin-left:-18.719463pt;}
._13{margin-left:-12.981315pt;}
._10{margin-left:-11.603711pt;}
._11{margin-left:-10.398930pt;}
._14{margin-left:-7.665054pt;}
._b{margin-left:-6.720000pt;}
._f{margin-left:-5.120000pt;}
._d{margin-left:-3.413333pt;}
._e{margin-left:-2.240000pt;}
._c{margin-left:-1.066662pt;}
._7{width:1.578662pt;}
._4{width:3.078392pt;}
._5{width:4.288700pt;}
._12{width:5.807985pt;}
._18{width:7.076539pt;}
._17{width:8.528163pt;}
._0{width:10.419172pt;}
._8{width:11.366369pt;}
._6{width:15.365647pt;}
._1{width:16.290292pt;}
._9{width:19.943768pt;}
._3{width:22.574872pt;}
._a{width:36.046125pt;}
._2{width:654.490879pt;}
.fs4{font-size:26.311040pt;}
.fs10{font-size:27.984000pt;}
.fs3{font-size:30.069760pt;}
.fs6{font-size:33.076736pt;}
.fs7{font-size:33.828480pt;}
.fs9{font-size:34.666667pt;}
.fs2{font-size:37.587200pt;}
.fs1{font-size:41.345920pt;}
.fs5{font-size:42.097664pt;}
.fsf{font-size:42.666667pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:52.622080pt;}
.fsc{font-size:53.333333pt;}
.fs8{font-size:58.666667pt;}
.fsd{font-size:64.000000pt;}
.fsa{font-size:74.666667pt;}
.fsb{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.237880pt;}
.y22{bottom:31.581333pt;}
.y21{bottom:32.259066pt;}
.y5f{bottom:33.215067pt;}
.y20{bottom:40.077352pt;}
.y1f{bottom:50.733323pt;}
.yee{bottom:60.991200pt;}
.y1e{bottom:61.389294pt;}
.y37{bottom:64.457998pt;}
.yb0{bottom:64.770798pt;}
.y5e{bottom:67.840403pt;}
.y131{bottom:68.099731pt;}
.y1d{bottom:72.045266pt;}
.yfa{bottom:73.211731pt;}
.y85{bottom:73.978129pt;}
.ya6{bottom:75.434265pt;}
.yed{bottom:76.991200pt;}
.y36{bottom:80.457998pt;}
.yaf{bottom:80.770798pt;}
.y130{bottom:80.899733pt;}
.y1c{bottom:81.150765pt;}
.y5d{bottom:83.840403pt;}
.yd0{bottom:86.518799pt;}
.yf9{bottom:89.211731pt;}
.y84{bottom:89.978129pt;}
.ya5{bottom:91.434265pt;}
.yec{bottom:92.991200pt;}
.y12f{bottom:93.699738pt;}
.yae{bottom:96.770803pt;}
.y1b{bottom:98.403290pt;}
.y5c{bottom:99.840403pt;}
.ycf{bottom:102.518799pt;}
.yf8{bottom:105.211731pt;}
.y83{bottom:105.978129pt;}
.y12e{bottom:106.499736pt;}
.ya4{bottom:107.434265pt;}
.yeb{bottom:108.991200pt;}
.y35{bottom:111.576131pt;}
.yad{bottom:112.770803pt;}
.y5b{bottom:115.840403pt;}
.yce{bottom:118.518799pt;}
.y109{bottom:119.299733pt;}
.yf7{bottom:121.211731pt;}
.y82{bottom:121.978129pt;}
.ya3{bottom:123.434265pt;}
.yea{bottom:124.991200pt;}
.y34{bottom:127.576131pt;}
.yac{bottom:128.770803pt;}
.y5a{bottom:131.840403pt;}
.y12d{bottom:132.099731pt;}
.ycd{bottom:134.518799pt;}
.y108{bottom:135.299733pt;}
.ya2{bottom:139.434265pt;}
.ye9{bottom:140.991191pt;}
.yf0{bottom:140.991200pt;}
.y33{bottom:143.576131pt;}
.yab{bottom:144.770803pt;}
.y12c{bottom:144.899729pt;}
.y81{bottom:145.537253pt;}
.y59{bottom:147.840403pt;}
.y1a{bottom:148.525821pt;}
.ycc{bottom:150.518799pt;}
.y107{bottom:151.299733pt;}
.ya1{bottom:155.434265pt;}
.y19{bottom:156.513101pt;}
.ye8{bottom:156.991191pt;}
.yef{bottom:156.991200pt;}
.y12b{bottom:157.699738pt;}
.y32{bottom:159.576131pt;}
.yaa{bottom:160.770803pt;}
.y58{bottom:163.840393pt;}
.y18{bottom:163.842605pt;}
.y80{bottom:164.870533pt;}
.ycb{bottom:166.518799pt;}
.y106{bottom:167.299733pt;}
.y17{bottom:170.495539pt;}
.y12a{bottom:170.499736pt;}
.ya0{bottom:171.434265pt;}
.ye7{bottom:172.991191pt;}
.y31{bottom:175.576131pt;}
.ya9{bottom:176.770793pt;}
.y16{bottom:177.157870pt;}
.y57{bottom:179.840393pt;}
.yca{bottom:182.518799pt;}
.y105{bottom:183.299723pt;}
.y15{bottom:183.820202pt;}
.y9f{bottom:187.434265pt;}
.ye6{bottom:188.991191pt;}
.y14{bottom:190.473136pt;}
.y30{bottom:191.576131pt;}
.ya8{bottom:192.770793pt;}
.y56{bottom:195.840393pt;}
.y129{bottom:196.099731pt;}
.y13{bottom:197.135467pt;}
.yc9{bottom:198.518799pt;}
.y104{bottom:199.299723pt;}
.y9e{bottom:203.434265pt;}
.ye5{bottom:204.991191pt;}
.y2f{bottom:207.576131pt;}
.y7f{bottom:208.770793pt;}
.y128{bottom:208.899740pt;}
.y12{bottom:210.836002pt;}
.y55{bottom:211.840393pt;}
.yc8{bottom:214.518799pt;}
.y103{bottom:215.299723pt;}
.y9d{bottom:219.434265pt;}
.ye4{bottom:220.991191pt;}
.y127{bottom:221.699727pt;}
.y2e{bottom:223.576131pt;}
.y7e{bottom:224.770793pt;}
.y54{bottom:227.840393pt;}
.y102{bottom:231.299723pt;}
.y126{bottom:234.499736pt;}
.y9c{bottom:235.434265pt;}
.ye3{bottom:236.991191pt;}
.yc7{bottom:238.077861pt;}
.y2d{bottom:239.576131pt;}
.y7d{bottom:240.770793pt;}
.y53{bottom:243.840393pt;}
.y101{bottom:247.299723pt;}
.y9b{bottom:251.434265pt;}
.ye2{bottom:252.991191pt;}
.y2c{bottom:255.576131pt;}
.y7c{bottom:256.770793pt;}
.y52{bottom:259.840393pt;}
.y125{bottom:260.099731pt;}
.y100{bottom:263.299723pt;}
.y9a{bottom:267.434265pt;}
.ye1{bottom:268.991191pt;}
.y2b{bottom:271.576131pt;}
.y7b{bottom:272.770793pt;}
.y124{bottom:272.899740pt;}
.y51{bottom:275.840393pt;}
.y11{bottom:278.079502pt;}
.yff{bottom:279.299723pt;}
.yc6{bottom:281.978129pt;}
.y99{bottom:283.434265pt;}
.ye0{bottom:284.991191pt;}
.y123{bottom:285.699727pt;}
.y2a{bottom:287.576131pt;}
.y7a{bottom:288.770793pt;}
.yfe{bottom:295.299723pt;}
.yc5{bottom:297.978129pt;}
.y122{bottom:298.499736pt;}
.y50{bottom:299.399475pt;}
.y98{bottom:299.434265pt;}
.ydf{bottom:300.991191pt;}
.y29{bottom:303.576131pt;}
.y79{bottom:304.770793pt;}
.yfd{bottom:311.299723pt;}
.yc4{bottom:313.978129pt;}
.y97{bottom:315.434265pt;}
.yde{bottom:316.991191pt;}
.y28{bottom:319.576131pt;}
.y78{bottom:320.770793pt;}
.y121{bottom:324.099731pt;}
.yfc{bottom:327.299723pt;}
.yc3{bottom:329.978129pt;}
.y96{bottom:331.434285pt;}
.ydd{bottom:332.991191pt;}
.y77{bottom:336.770793pt;}
.y120{bottom:336.899740pt;}
.y27{bottom:339.355591pt;}
.y4f{bottom:343.299723pt;}
.yc2{bottom:345.978149pt;}
.y95{bottom:347.434285pt;}
.ydc{bottom:348.991211pt;}
.y11f{bottom:349.699748pt;}
.y76{bottom:352.770793pt;}
.y4e{bottom:359.299723pt;}
.yc1{bottom:361.978149pt;}
.y11e{bottom:362.499715pt;}
.y94{bottom:363.434285pt;}
.ydb{bottom:364.991200pt;}
.yfb{bottom:364.991211pt;}
.y75{bottom:368.770793pt;}
.y146{bottom:374.371989pt;}
.y4d{bottom:375.299723pt;}
.yc0{bottom:377.978149pt;}
.yda{bottom:380.991333pt;}
.y74{bottom:384.770793pt;}
.y93{bottom:386.993327pt;}
.y11d{bottom:388.099731pt;}
.y4c{bottom:391.299723pt;}
.ybf{bottom:393.978149pt;}
.yd9{bottom:396.991333pt;}
.y73{bottom:400.770793pt;}
.y11c{bottom:400.899740pt;}
.y145{bottom:401.038656pt;}
.y4b{bottom:407.299723pt;}
.y10{bottom:407.388867pt;}
.ybe{bottom:409.978149pt;}
.yd8{bottom:412.991333pt;}
.y11b{bottom:413.699748pt;}
.y144{bottom:415.571981pt;}
.y72{bottom:416.770793pt;}
.y4a{bottom:423.299723pt;}
.ybd{bottom:425.978149pt;}
.y11a{bottom:426.499715pt;}
.yf{bottom:427.930272pt;}
.yd7{bottom:428.991333pt;}
.y143{bottom:430.105347pt;}
.y92{bottom:430.893595pt;}
.y26{bottom:430.946126pt;}
.y71{bottom:432.770793pt;}
.ye{bottom:438.576846pt;}
.y49{bottom:439.299723pt;}
.ybc{bottom:441.978149pt;}
.y142{bottom:444.638672pt;}
.yd6{bottom:444.991333pt;}
.y91{bottom:446.893595pt;}
.y70{bottom:448.770793pt;}
.y119{bottom:452.099731pt;}
.y48{bottom:455.299723pt;}
.y25{bottom:456.279460pt;}
.ybb{bottom:457.978149pt;}
.y141{bottom:459.171997pt;}
.yd{bottom:459.324981pt;}
.yd5{bottom:460.991333pt;}
.y90{bottom:462.893595pt;}
.y6f{bottom:464.770793pt;}
.y118{bottom:464.899740pt;}
.yc{bottom:469.980952pt;}
.y47{bottom:471.299723pt;}
.yba{bottom:473.978149pt;}
.yd4{bottom:476.991333pt;}
.y117{bottom:477.699748pt;}
.y8f{bottom:478.893595pt;}
.yb{bottom:480.636923pt;}
.y6e{bottom:480.770793pt;}
.y24{bottom:481.612793pt;}
.y46{bottom:487.299723pt;}
.yb9{bottom:489.978149pt;}
.y116{bottom:490.499715pt;}
.ya{bottom:491.292894pt;}
.yd3{bottom:492.991333pt;}
.y8e{bottom:494.893595pt;}
.y140{bottom:496.382528pt;}
.y6d{bottom:496.770793pt;}
.y9{bottom:501.948866pt;}
.y45{bottom:503.299723pt;}
.yb8{bottom:505.978149pt;}
.yd2{bottom:508.991333pt;}
.y8d{bottom:510.893595pt;}
.y8{bottom:512.595440pt;}
.y6c{bottom:512.770793pt;}
.y115{bottom:516.099731pt;}
.y23{bottom:516.394938pt;}
.y44{bottom:519.299723pt;}
.yb7{bottom:521.978149pt;}
.yd1{bottom:524.991333pt;}
.y8c{bottom:526.893595pt;}
.y6b{bottom:528.770793pt;}
.y114{bottom:528.899740pt;}
.y43{bottom:535.299723pt;}
.yb6{bottom:537.978149pt;}
.y13f{bottom:540.282796pt;}
.yf6{bottom:540.991333pt;}
.y113{bottom:541.699748pt;}
.y8b{bottom:542.893595pt;}
.y6a{bottom:544.770793pt;}
.y42{bottom:551.299723pt;}
.y13e{bottom:553.082804pt;}
.yb5{bottom:553.978149pt;}
.y112{bottom:554.499715pt;}
.yf5{bottom:556.991211pt;}
.y8a{bottom:558.893595pt;}
.y69{bottom:560.770793pt;}
.y7{bottom:562.257528pt;}
.y13d{bottom:565.882812pt;}
.y41{bottom:567.299723pt;}
.yb4{bottom:569.978149pt;}
.yf4{bottom:572.991211pt;}
.y68{bottom:576.770793pt;}
.y6{bottom:576.907139pt;}
.y13c{bottom:578.682780pt;}
.y111{bottom:580.099731pt;}
.y40{bottom:583.299723pt;}
.yb3{bottom:585.978149pt;}
.y89{bottom:586.232259pt;}
.yf3{bottom:588.991211pt;}
.y13b{bottom:591.482788pt;}
.y5{bottom:591.556750pt;}
.y67{bottom:592.770793pt;}
.y110{bottom:592.899740pt;}
.y3f{bottom:599.299723pt;}
.y88{bottom:600.632284pt;}
.y13a{bottom:604.282796pt;}
.yf2{bottom:604.991211pt;}
.y10f{bottom:605.699748pt;}
.y4{bottom:607.362168pt;}
.y66{bottom:608.770793pt;}
.yb2{bottom:609.537244pt;}
.y87{bottom:615.032267pt;}
.y3e{bottom:615.299723pt;}
.y139{bottom:617.082804pt;}
.y10e{bottom:618.499715pt;}
.yf1{bottom:620.991211pt;}
.y65{bottom:624.770793pt;}
.y3{bottom:626.005419pt;}
.yb1{bottom:628.870524pt;}
.y138{bottom:629.882812pt;}
.y3d{bottom:631.299723pt;}
.y64{bottom:640.770793pt;}
.y137{bottom:642.682780pt;}
.y10d{bottom:644.099731pt;}
.y2{bottom:644.658067pt;}
.y3c{bottom:647.299723pt;}
.y136{bottom:655.482788pt;}
.y63{bottom:656.770793pt;}
.y86{bottom:656.770833pt;}
.y10c{bottom:656.899740pt;}
.y3b{bottom:663.299723pt;}
.y135{bottom:668.282796pt;}
.y10b{bottom:669.699748pt;}
.ya7{bottom:672.770793pt;}
.y62{bottom:672.770833pt;}
.y3a{bottom:679.299723pt;}
.y134{bottom:681.082804pt;}
.y10a{bottom:682.499715pt;}
.y61{bottom:688.770833pt;}
.y133{bottom:693.882812pt;}
.y39{bottom:702.858805pt;}
.y60{bottom:704.770833pt;}
.y132{bottom:706.682780pt;}
.y38{bottom:740.676270pt;}
.h7{height:19.496481pt;}
.h6{height:22.281692pt;}
.h9{height:25.066904pt;}
.h5{height:27.852115pt;}
.hd{height:30.541333pt;}
.h4{height:30.637327pt;}
.h8{height:31.194369pt;}
.h17{height:36.944065pt;}
.h16{height:37.589333pt;}
.h3{height:38.992961pt;}
.h13{height:41.088000pt;}
.h14{height:42.288000pt;}
.h15{height:43.360000pt;}
.h10{height:45.653333pt;}
.h11{height:46.986667pt;}
.hc{height:50.218667pt;}
.he{height:53.984000pt;}
.h12{height:54.784000pt;}
.hf{height:73.045333pt;}
.h2{height:791.107195pt;}
.h1{height:791.333333pt;}
.h0{height:791.573333pt;}
.ha{height:793.701333pt;}
.hb{height:794.000000pt;}
.w1{width:559.333333pt;}
.w3{width:559.370667pt;}
.w2{width:559.372710pt;}
.w0{width:559.373333pt;}
.x0{left:0.000000pt;}
.x3{left:29.299222pt;}
.x1{left:34.627208pt;}
.x6{left:71.811066pt;}
.x7{left:83.149602pt;}
.xd{left:85.039332pt;}
.x2{left:93.225653pt;}
.xc{left:173.664266pt;}
.xe{left:188.976400pt;}
.x8{left:238.872009pt;}
.x4{left:274.358370pt;}
.xa{left:395.685872pt;}
.x5{left:472.428548pt;}
.xb{left:474.767212pt;}
.x9{left:487.527059pt;}
}




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