
    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_3f2d789fc1446b3d9a36d994.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d1a6ff549dee0f58d9c6373c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_68508310165ccf694642c520.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_53cf178a9f29ae0538c1c885.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_610833762f2bb429f3bd7628.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700195;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_fb6850fbbda5e60d70ce1b3e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.888889;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_bc6d5b8d46fcd099a38de7b4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.975556;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_03feb3184bc43a67e1767086.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9a06bb7ca827f2beb8bcc3fe.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_c352f3c791f1324c83cfacc7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_25592d423c7f414c07997cef.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_53450f8629fadf8f2b0e56dd.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.035000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_7764cf80de8572f4f687a086.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.035000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_dc36ed05703ffeee9972d6b0.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_18136ba894e3d3a9bc403003.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_46c6592dfa30c568c0064c3f.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_56e49c9069634f0b5700ce29.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.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);}
.m0{transform:matrix(0.252501,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252501,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252501,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.267500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.800000px;}
.v2{vertical-align:17.982000px;}
.v4{vertical-align:19.728000px;}
.ls24{letter-spacing:-1.560000px;}
.ls3b{letter-spacing:-1.152000px;}
.ls25{letter-spacing:-0.960000px;}
.ls2d{letter-spacing:-0.756000px;}
.ls3c{letter-spacing:-0.672000px;}
.lse{letter-spacing:-0.540000px;}
.ls2c{letter-spacing:-0.420000px;}
.lsd{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.314820px;}
.ls12{letter-spacing:-0.270000px;}
.ls10{letter-spacing:-0.162000px;}
.ls11{letter-spacing:-0.108000px;}
.lsc{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.054000px;}
.lsa{letter-spacing:0.108000px;}
.ls2e{letter-spacing:0.139920px;}
.ls7{letter-spacing:0.216000px;}
.ls17{letter-spacing:0.240000px;}
.ls26{letter-spacing:0.252000px;}
.ls32{letter-spacing:0.288000px;}
.ls4{letter-spacing:0.420000px;}
.ls13{letter-spacing:0.432000px;}
.ls18{letter-spacing:0.489720px;}
.ls3a{letter-spacing:0.528000px;}
.ls5{letter-spacing:0.540000px;}
.ls1{letter-spacing:0.675000px;}
.ls9{letter-spacing:0.702000px;}
.ls35{letter-spacing:0.768000px;}
.ls1d{letter-spacing:0.769560px;}
.ls8{letter-spacing:0.810000px;}
.ls16{letter-spacing:0.840000px;}
.ls39{letter-spacing:0.864000px;}
.ls1f{letter-spacing:0.870000px;}
.ls1b{letter-spacing:0.900000px;}
.ls22{letter-spacing:1.020000px;}
.ls6{letter-spacing:1.080000px;}
.ls31{letter-spacing:1.140000px;}
.ls15{letter-spacing:1.170000px;}
.ls23{letter-spacing:1.200000px;}
.ls28{letter-spacing:1.306200px;}
.ls1c{letter-spacing:1.320000px;}
.ls20{letter-spacing:1.380000px;}
.ls34{letter-spacing:1.392000px;}
.ls21{letter-spacing:1.440000px;}
.ls1a{letter-spacing:1.500000px;}
.ls37{letter-spacing:1.536000px;}
.ls1e{letter-spacing:1.560000px;}
.ls19{letter-spacing:1.620000px;}
.ls30{letter-spacing:1.626570px;}
.ls38{letter-spacing:1.680000px;}
.lsb{letter-spacing:1.906866px;}
.ls33{letter-spacing:1.968000px;}
.ls36{letter-spacing:2.064000px;}
.ls27{letter-spacing:2.130000px;}
.ls2b{letter-spacing:2.640000px;}
.ls2f{letter-spacing:2.790000px;}
.ls0{letter-spacing:5.100000px;}
.ls2{letter-spacing:8.109533px;}
.ls3{letter-spacing:8.114720px;}
.ls29{letter-spacing:133.980000px;}
.ls2a{letter-spacing:153.888000px;}
.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;}
}
.ws38{word-spacing:-18.360000px;}
.ws36{word-spacing:-18.240000px;}
.ws3a{word-spacing:-18.000000px;}
.ws79{word-spacing:-17.880000px;}
.ws4{word-spacing:-17.766000px;}
.ws35{word-spacing:-17.280000px;}
.ws5{word-spacing:-17.226000px;}
.wsb7{word-spacing:-13.398000px;}
.ws93{word-spacing:-12.600000px;}
.wsb8{word-spacing:-11.928000px;}
.wsd8{word-spacing:-11.560890px;}
.wsbb{word-spacing:-11.172000px;}
.ws39{word-spacing:-10.703880px;}
.ws37{word-spacing:-10.424040px;}
.wsd7{word-spacing:-10.074240px;}
.ws3{word-spacing:-9.444600px;}
.ws23{word-spacing:-7.668000px;}
.ws10{word-spacing:-6.912000px;}
.wse0{word-spacing:-6.180000px;}
.ws34{word-spacing:-6.156000px;}
.wsc3{word-spacing:-6.000000px;}
.ws32{word-spacing:-5.940000px;}
.ws97{word-spacing:-5.880000px;}
.ws5f{word-spacing:-5.820000px;}
.ws85{word-spacing:-5.700000px;}
.ws12{word-spacing:-5.616000px;}
.wsdd{word-spacing:-5.580000px;}
.wse3{word-spacing:-5.400000px;}
.ws22{word-spacing:-5.238000px;}
.wse6{word-spacing:-5.160000px;}
.ws3b{word-spacing:-5.100000px;}
.ws3e{word-spacing:-4.860000px;}
.wsc5{word-spacing:-4.680000px;}
.ws10c{word-spacing:-4.608000px;}
.ws68{word-spacing:-4.500000px;}
.ws7f{word-spacing:-4.380000px;}
.ws87{word-spacing:-4.320000px;}
.ws4c{word-spacing:-4.260000px;}
.wscc{word-spacing:-4.200000px;}
.wseb{word-spacing:-3.960000px;}
.wse1{word-spacing:-3.900000px;}
.ws9e{word-spacing:-3.780000px;}
.ws25{word-spacing:-3.726000px;}
.wsa4{word-spacing:-3.486000px;}
.ws103{word-spacing:-3.216000px;}
.wsa8{word-spacing:-3.192000px;}
.ws72{word-spacing:-3.180000px;}
.wse7{word-spacing:-3.060000px;}
.wsae{word-spacing:-2.898000px;}
.wsd4{word-spacing:-2.880000px;}
.ws8d{word-spacing:-2.856000px;}
.wsc8{word-spacing:-2.820000px;}
.ws86{word-spacing:-2.760000px;}
.wsf{word-spacing:-2.754000px;}
.wsdb{word-spacing:-2.700000px;}
.ws45{word-spacing:-2.592000px;}
.ws96{word-spacing:-2.580000px;}
.wsf8{word-spacing:-2.544000px;}
.wsad{word-spacing:-2.478000px;}
.wsa9{word-spacing:-2.436000px;}
.ws3d{word-spacing:-2.430000px;}
.wsa2{word-spacing:-2.394000px;}
.wscb{word-spacing:-2.340000px;}
.ws60{word-spacing:-2.220000px;}
.ws89{word-spacing:-2.160000px;}
.ws10d{word-spacing:-2.112000px;}
.ws5d{word-spacing:-2.040000px;}
.wsc0{word-spacing:-2.016000px;}
.wsfc{word-spacing:-1.824000px;}
.ws80{word-spacing:-1.800000px;}
.wsda{word-spacing:-1.740000px;}
.wsa7{word-spacing:-1.722000px;}
.ws88{word-spacing:-1.680000px;}
.ws70{word-spacing:-1.620000px;}
.ws2f{word-spacing:-1.512000px;}
.wsec{word-spacing:-1.500000px;}
.ws10f{word-spacing:-1.440000px;}
.ws6c{word-spacing:-1.260000px;}
.ws33{word-spacing:-1.242000px;}
.wsed{word-spacing:-1.200000px;}
.ws53{word-spacing:-1.080000px;}
.ws95{word-spacing:-0.960000px;}
.wsa5{word-spacing:-0.924000px;}
.ws63{word-spacing:-0.840000px;}
.wsa3{word-spacing:-0.756000px;}
.ws94{word-spacing:-0.720000px;}
.ws7{word-spacing:-0.675000px;}
.wsb0{word-spacing:-0.672000px;}
.ws31{word-spacing:-0.648000px;}
.ws11{word-spacing:-0.540000px;}
.ws71{word-spacing:-0.480000px;}
.ws8c{word-spacing:-0.420000px;}
.wsf0{word-spacing:-0.288000px;}
.ws2b{word-spacing:-0.270000px;}
.ws58{word-spacing:-0.240000px;}
.ws8b{word-spacing:-0.168000px;}
.ws8e{word-spacing:-0.126000px;}
.ws6{word-spacing:0.000000px;}
.wsfa{word-spacing:0.048000px;}
.ws16{word-spacing:0.108000px;}
.ws1a{word-spacing:0.162000px;}
.wse2{word-spacing:0.180000px;}
.wsfe{word-spacing:0.240000px;}
.ws9{word-spacing:0.314820px;}
.ws9b{word-spacing:0.360000px;}
.ws29{word-spacing:0.378000px;}
.wsc1{word-spacing:0.420000px;}
.wse{word-spacing:0.432000px;}
.wsd0{word-spacing:0.480000px;}
.wsaa{word-spacing:0.630000px;}
.wse5{word-spacing:0.660000px;}
.wscf{word-spacing:0.720000px;}
.ws75{word-spacing:0.780000px;}
.wsab{word-spacing:0.798000px;}
.ws4d{word-spacing:0.840000px;}
.wsc7{word-spacing:0.900000px;}
.ws24{word-spacing:0.918000px;}
.ws13{word-spacing:0.972000px;}
.wsb3{word-spacing:1.008000px;}
.ws92{word-spacing:1.050000px;}
.ws19{word-spacing:1.080000px;}
.wsb4{word-spacing:1.134000px;}
.wsd1{word-spacing:1.140000px;}
.ws111{word-spacing:1.152000px;}
.ws7b{word-spacing:1.200000px;}
.wsa1{word-spacing:1.302000px;}
.wsc4{word-spacing:1.380000px;}
.ws4b{word-spacing:1.440000px;}
.ws98{word-spacing:1.500000px;}
.ws90{word-spacing:1.554000px;}
.ws3f{word-spacing:1.620000px;}
.ws6b{word-spacing:1.740000px;}
.wsac{word-spacing:1.764000px;}
.ws30{word-spacing:1.782000px;}
.ws112{word-spacing:1.872000px;}
.ws6f{word-spacing:1.920000px;}
.ws48{word-spacing:2.040000px;}
.ws91{word-spacing:2.142000px;}
.ws61{word-spacing:2.160000px;}
.ws52{word-spacing:2.220000px;}
.wsaf{word-spacing:2.226000px;}
.ws74{word-spacing:2.340000px;}
.ws9a{word-spacing:2.400000px;}
.ws3c{word-spacing:2.430000px;}
.wsb2{word-spacing:2.436000px;}
.ws21{word-spacing:2.484000px;}
.ws55{word-spacing:2.520000px;}
.ws18{word-spacing:2.592000px;}
.wsf5{word-spacing:2.736000px;}
.ws6e{word-spacing:2.760000px;}
.wsc2{word-spacing:2.820000px;}
.ws1d{word-spacing:2.970000px;}
.ws109{word-spacing:2.976000px;}
.ws7d{word-spacing:3.000000px;}
.ws42{word-spacing:3.024000px;}
.ws51{word-spacing:3.060000px;}
.ws1b{word-spacing:3.078000px;}
.ws110{word-spacing:3.168000px;}
.ws102{word-spacing:3.312000px;}
.ws104{word-spacing:3.408000px;}
.ws4e{word-spacing:3.420000px;}
.wsf3{word-spacing:3.696000px;}
.wsb1{word-spacing:3.738000px;}
.ws101{word-spacing:3.840000px;}
.ws1f{word-spacing:3.888000px;}
.ws4f{word-spacing:4.020000px;}
.ws59{word-spacing:4.080000px;}
.wsdc{word-spacing:4.260000px;}
.ws44{word-spacing:4.374000px;}
.ws41{word-spacing:4.482000px;}
.ws2d{word-spacing:4.590000px;}
.wsfb{word-spacing:4.656000px;}
.ws8f{word-spacing:4.662000px;}
.wse9{word-spacing:4.680000px;}
.ws20{word-spacing:4.698000px;}
.wsd6{word-spacing:4.740000px;}
.wsef{word-spacing:4.800000px;}
.ws1c{word-spacing:4.806000px;}
.ws65{word-spacing:5.040000px;}
.ws64{word-spacing:5.160000px;}
.ws54{word-spacing:5.340000px;}
.wsc6{word-spacing:5.400000px;}
.ws2a{word-spacing:5.508000px;}
.ws4a{word-spacing:5.520000px;}
.wsfd{word-spacing:5.568000px;}
.wse4{word-spacing:5.580000px;}
.ws56{word-spacing:5.760000px;}
.wsf1{word-spacing:5.808000px;}
.wsd5{word-spacing:6.180000px;}
.ws1e{word-spacing:6.210000px;}
.ws8a{word-spacing:6.300000px;}
.wsf6{word-spacing:6.336000px;}
.ws5a{word-spacing:6.480000px;}
.wsf9{word-spacing:6.576000px;}
.ws15{word-spacing:6.588000px;}
.ws17{word-spacing:6.804000px;}
.ws2c{word-spacing:6.858000px;}
.ws10a{word-spacing:6.864000px;}
.ws7c{word-spacing:6.900000px;}
.ws67{word-spacing:6.960000px;}
.ws57{word-spacing:7.080000px;}
.ws100{word-spacing:7.104000px;}
.wscd{word-spacing:7.140000px;}
.ws47{word-spacing:7.200000px;}
.wsff{word-spacing:7.296000px;}
.wsa{word-spacing:7.722000px;}
.ws6a{word-spacing:7.800000px;}
.wsc{word-spacing:7.938000px;}
.ws69{word-spacing:7.980000px;}
.wsd3{word-spacing:8.040000px;}
.wsd{word-spacing:8.046000px;}
.ws2{word-spacing:8.054550px;}
.ws1{word-spacing:8.057700px;}
.ws8{word-spacing:8.100000px;}
.ws105{word-spacing:8.112000px;}
.wsce{word-spacing:8.160000px;}
.ws113{word-spacing:8.208000px;}
.ws108{word-spacing:8.448000px;}
.ws9d{word-spacing:8.700000px;}
.ws83{word-spacing:8.760000px;}
.wsde{word-spacing:8.820000px;}
.wsb{word-spacing:8.910000px;}
.wse8{word-spacing:9.120000px;}
.ws14{word-spacing:9.126000px;}
.ws9f{word-spacing:9.360000px;}
.ws6d{word-spacing:9.480000px;}
.ws107{word-spacing:9.504000px;}
.wsd2{word-spacing:9.600000px;}
.ws40{word-spacing:9.936000px;}
.wsdf{word-spacing:10.080000px;}
.ws2e{word-spacing:10.152000px;}
.wsf2{word-spacing:10.176000px;}
.ws43{word-spacing:10.206000px;}
.ws84{word-spacing:10.440000px;}
.ws62{word-spacing:10.500000px;}
.wsf4{word-spacing:10.560000px;}
.wsf7{word-spacing:10.752000px;}
.ws82{word-spacing:10.800000px;}
.ws81{word-spacing:10.980000px;}
.wsd9{word-spacing:11.280000px;}
.ws50{word-spacing:11.520000px;}
.wsee{word-spacing:11.820000px;}
.ws5e{word-spacing:12.540000px;}
.ws10e{word-spacing:12.624000px;}
.ws5b{word-spacing:12.720000px;}
.ws9c{word-spacing:12.780000px;}
.ws99{word-spacing:13.080000px;}
.ws114{word-spacing:13.104000px;}
.wsa0{word-spacing:13.140000px;}
.ws7e{word-spacing:13.380000px;}
.wsca{word-spacing:13.500000px;}
.ws10b{word-spacing:13.584000px;}
.ws49{word-spacing:13.620000px;}
.ws106{word-spacing:13.632000px;}
.ws76{word-spacing:13.860000px;}
.wsea{word-spacing:13.920000px;}
.wsc9{word-spacing:14.580000px;}
.ws77{word-spacing:14.940000px;}
.ws26{word-spacing:14.958000px;}
.ws28{word-spacing:15.336000px;}
.ws66{word-spacing:15.600000px;}
.ws5c{word-spacing:15.660000px;}
.ws73{word-spacing:16.020000px;}
.ws46{word-spacing:17.040000px;}
.ws27{word-spacing:17.226000px;}
.wsb6{word-spacing:56.238000px;}
.ws78{word-spacing:84.804600px;}
.wsb5{word-spacing:86.997600px;}
.wsa6{word-spacing:90.465600px;}
.ws0{word-spacing:91.332600px;}
.wsbe{word-spacing:95.004000px;}
.wsb9{word-spacing:109.326000px;}
.wsbf{word-spacing:125.118000px;}
.wsba{word-spacing:162.036000px;}
.wsbc{word-spacing:189.924000px;}
.wsbd{word-spacing:191.898000px;}
.ws7a{word-spacing:1128.850200px;}
._d{margin-left:-36.000000px;}
._f{margin-left:-31.890000px;}
._c{margin-left:-23.940000px;}
._10{margin-left:-18.870000px;}
._e{margin-left:-17.562000px;}
._2{margin-left:-7.510500px;}
._a{margin-left:-6.458400px;}
._7{margin-left:-5.400000px;}
._4{margin-left:-4.275000px;}
._3{margin-left:-3.150000px;}
._0{margin-left:-2.070000px;}
._8{margin-left:-1.054200px;}
._9{width:1.080000px;}
._b{width:2.486400px;}
._5{width:8.122721px;}
._2c{width:11.580000px;}
._2d{width:30.384000px;}
._6{width:59.541150px;}
._1c{width:69.216000px;}
._14{width:76.536000px;}
._25{width:89.502000px;}
._12{width:92.148000px;}
._24{width:96.474000px;}
._11{width:98.196000px;}
._15{width:114.282000px;}
._23{width:115.962000px;}
._13{width:139.062000px;}
._26{width:168.210000px;}
._20{width:173.208000px;}
._2a{width:175.098000px;}
._17{width:201.852000px;}
._29{width:204.456000px;}
._2b{width:218.694000px;}
._19{width:227.850000px;}
._1f{width:229.614000px;}
._22{width:243.894000px;}
._1b{width:283.458000px;}
._28{width:285.474000px;}
._18{width:287.280000px;}
._16{width:312.228000px;}
._1d{width:343.686000px;}
._27{width:375.186000px;}
._21{width:386.610000px;}
._1a{width:427.728000px;}
._1e{width:439.488000px;}
._1{width:942.768000px;}
.fc1{color:rgb(167,165,166);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:31.482000px;}
.fs3{font-size:31.500000px;}
.fsb{font-size:34.980000px;}
.fs4{font-size:36.000000px;}
.fs9{font-size:42.000000px;}
.fs2{font-size:45.000000px;}
.fsc{font-size:48.000000px;}
.fs1{font-size:51.000000px;}
.fs7{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs0{font-size:63.562200px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:25.090950px;}
.y4e{bottom:26.290950px;}
.y4{bottom:51.651150px;}
.yaa{bottom:76.245000px;}
.y104{bottom:76.496400px;}
.yf4{bottom:76.505400px;}
.yb4{bottom:76.515300px;}
.ybe{bottom:76.517550px;}
.y7d{bottom:76.517850px;}
.y189{bottom:76.528650px;}
.yd6{bottom:76.535400px;}
.y1c{bottom:76.547400px;}
.y4c{bottom:76.724550px;}
.y1ca{bottom:76.804650px;}
.y157{bottom:77.285550px;}
.y1b{bottom:87.347400px;}
.y103{bottom:89.999400px;}
.yf3{bottom:90.008400px;}
.y188{bottom:90.796650px;}
.y1c9{bottom:91.504650px;}
.y4b{bottom:94.855050px;}
.ye0{bottom:96.035400px;}
.yb3{bottom:96.825300px;}
.y156{bottom:96.935550px;}
.ya9{bottom:97.005000px;}
.ybd{bottom:97.097550px;}
.y7c{bottom:97.322850px;}
.yd5{bottom:98.060400px;}
.y1a{bottom:102.395400px;}
.y102{bottom:103.502400px;}
.yf2{bottom:103.511400px;}
.y187{bottom:105.064650px;}
.y1c8{bottom:106.204650px;}
.y4a{bottom:112.985550px;}
.y19{bottom:113.195400px;}
.ydf{bottom:115.535400px;}
.y155{bottom:116.585550px;}
.y101{bottom:117.005400px;}
.yf1{bottom:117.014400px;}
.yb2{bottom:117.135300px;}
.ybc{bottom:117.677550px;}
.ya8{bottom:117.765000px;}
.y7b{bottom:118.127850px;}
.yd4{bottom:119.585400px;}
.y186{bottom:121.456650px;}
.y1c7{bottom:123.460650px;}
.y18{bottom:128.243400px;}
.y100{bottom:130.508400px;}
.yf0{bottom:130.517400px;}
.y49{bottom:131.116050px;}
.y185{bottom:134.968650px;}
.yde{bottom:135.035400px;}
.y154{bottom:136.235550px;}
.yb1{bottom:137.445300px;}
.y1c6{bottom:138.160650px;}
.ybb{bottom:138.257550px;}
.ya7{bottom:138.525000px;}
.y7a{bottom:138.956550px;}
.y17{bottom:139.043400px;}
.yd3{bottom:141.110400px;}
.yff{bottom:144.011400px;}
.yef{bottom:144.020400px;}
.y184{bottom:148.480650px;}
.y48{bottom:149.246550px;}
.y1c5{bottom:152.860650px;}
.y16{bottom:154.091400px;}
.ydd{bottom:154.535400px;}
.y153{bottom:155.885550px;}
.yfe{bottom:157.514400px;}
.yee{bottom:157.523400px;}
.yb0{bottom:157.766400px;}
.yba{bottom:158.837550px;}
.ya6{bottom:159.285000px;}
.y79{bottom:159.761550px;}
.yd2{bottom:162.635400px;}
.y183{bottom:164.515200px;}
.y15{bottom:164.891400px;}
.y47{bottom:167.377050px;}
.y1c4{bottom:170.116650px;}
.yfd{bottom:171.017400px;}
.yed{bottom:171.026400px;}
.ydc{bottom:174.035400px;}
.y152{bottom:175.535550px;}
.yaf{bottom:178.076400px;}
.yb9{bottom:179.417550px;}
.ya5{bottom:180.045000px;}
.y78{bottom:180.566550px;}
.yd1{bottom:184.160400px;}
.yfc{bottom:184.520400px;}
.yec{bottom:184.529400px;}
.y1c3{bottom:184.816650px;}
.y46{bottom:185.507550px;}
.ydb{bottom:193.535400px;}
.y151{bottom:195.185550px;}
.yfb{bottom:198.023400px;}
.yeb{bottom:198.032400px;}
.yae{bottom:198.386400px;}
.yb8{bottom:200.010000px;}
.ya4{bottom:200.805000px;}
.y77{bottom:201.371550px;}
.y1c2{bottom:202.072650px;}
.y45{bottom:203.638050px;}
.yd0{bottom:205.685400px;}
.y182{bottom:206.035200px;}
.yfa{bottom:211.526400px;}
.yea{bottom:211.535400px;}
.yda{bottom:213.035400px;}
.y150{bottom:214.835550px;}
.y1c1{bottom:216.472650px;}
.yad{bottom:218.696400px;}
.yb7{bottom:220.590000px;}
.ya3{bottom:221.565000px;}
.y44{bottom:221.768550px;}
.y76{bottom:222.200250px;}
.yf9{bottom:225.029400px;}
.y181{bottom:226.300200px;}
.ycf{bottom:227.210400px;}
.y1c0{bottom:230.872650px;}
.yd9{bottom:232.535400px;}
.y14f{bottom:234.485550px;}
.yf8{bottom:238.532400px;}
.yac{bottom:239.006400px;}
.y43{bottom:239.899050px;}
.yb6{bottom:241.170000px;}
.yf7{bottom:241.654200px;}
.ya2{bottom:242.325000px;}
.y75{bottom:243.005250px;}
.y1bf{bottom:245.272650px;}
.yce{bottom:248.735400px;}
.y180{bottom:250.810200px;}
.yd8{bottom:252.035400px;}
.y14e{bottom:254.135550px;}
.y42{bottom:258.029550px;}
.yb5{bottom:261.750000px;}
.y1be{bottom:262.228650px;}
.ya1{bottom:263.085000px;}
.yab{bottom:263.576400px;}
.y74{bottom:263.810250px;}
.ycd{bottom:270.260400px;}
.yd7{bottom:271.535400px;}
.y14d{bottom:273.785550px;}
.y41{bottom:276.160050px;}
.y1bd{bottom:276.628650px;}
.y108{bottom:283.109700px;}
.ya0{bottom:283.830000px;}
.y73{bottom:284.615250px;}
.y17f{bottom:288.085200px;}
.ycc{bottom:291.785400px;}
.y14c{bottom:293.435550px;}
.y1bc{bottom:293.584650px;}
.y40{bottom:294.290550px;}
.y2f{bottom:294.398550px;}
.y9f{bottom:304.590000px;}
.y72{bottom:305.461650px;}
.y17e{bottom:307.600200px;}
.y1bb{bottom:307.984650px;}
.y2e{bottom:312.394050px;}
.y3f{bottom:312.421050px;}
.y14b{bottom:313.085550px;}
.y1ba{bottom:324.940650px;}
.y9e{bottom:325.350000px;}
.y71{bottom:326.266650px;}
.y17d{bottom:327.115200px;}
.y2d{bottom:330.389550px;}
.y3e{bottom:330.551550px;}
.y14a{bottom:332.735550px;}
.yc7{bottom:337.259400px;}
.y1b9{bottom:339.340650px;}
.y9d{bottom:346.110000px;}
.y17c{bottom:346.630200px;}
.y70{bottom:347.071650px;}
.y2c{bottom:348.385050px;}
.y3d{bottom:348.682050px;}
.yc6{bottom:350.762400px;}
.y1b8{bottom:353.740650px;}
.ye7{bottom:361.938300px;}
.yc5{bottom:364.265400px;}
.y17b{bottom:366.145200px;}
.y2b{bottom:366.380550px;}
.y3c{bottom:366.812550px;}
.y9c{bottom:366.870000px;}
.y6f{bottom:367.876650px;}
.y1b7{bottom:370.696650px;}
.ye6{bottom:375.441300px;}
.yc4{bottom:377.768400px;}
.y2a{bottom:384.376050px;}
.y1b6{bottom:385.096650px;}
.y17a{bottom:385.660200px;}
.y9b{bottom:387.630000px;}
.y6e{bottom:388.681650px;}
.ye5{bottom:388.944300px;}
.yc3{bottom:391.271400px;}
.y148{bottom:392.479050px;}
.y1b5{bottom:399.496650px;}
.y3b{bottom:401.953050px;}
.y29{bottom:402.371550px;}
.ye4{bottom:402.447300px;}
.yc2{bottom:404.774400px;}
.y179{bottom:405.175200px;}
.y149{bottom:405.982050px;}
.y147{bottom:406.097550px;}
.y9a{bottom:408.390000px;}
.y6d{bottom:409.486650px;}
.ye3{bottom:415.950300px;}
.y1b4{bottom:416.452650px;}
.yc1{bottom:418.277400px;}
.y3a{bottom:420.083550px;}
.y28{bottom:420.367050px;}
.y178{bottom:424.690200px;}
.y145{bottom:425.018550px;}
.ye2{bottom:429.453300px;}
.y6c{bottom:430.291650px;}
.y1b3{bottom:430.852650px;}
.yc0{bottom:431.780400px;}
.y99{bottom:433.395000px;}
.y27{bottom:438.362550px;}
.y146{bottom:438.521550px;}
.y144{bottom:438.637050px;}
.ye1{bottom:442.956300px;}
.y177{bottom:444.205200px;}
.ybf{bottom:445.283400px;}
.y1b2{bottom:447.808650px;}
.y6b{bottom:451.159650px;}
.y39{bottom:455.224050px;}
.y26{bottom:456.358050px;}
.y142{bottom:457.558050px;}
.y1b1{bottom:462.208650px;}
.y176{bottom:463.720200px;}
.yc9{bottom:470.198700px;}
.ye9{bottom:470.622750px;}
.y143{bottom:471.061050px;}
.y141{bottom:471.176550px;}
.y6a{bottom:471.964650px;}
.y38{bottom:473.354550px;}
.y25{bottom:474.353550px;}
.y1b0{bottom:476.608650px;}
.y98{bottom:479.655000px;}
.y175{bottom:483.235200px;}
.y13f{bottom:490.097550px;}
.y1af{bottom:491.008650px;}
.y37{bottom:491.485050px;}
.y24{bottom:492.349050px;}
.y69{bottom:492.769650px;}
.y107{bottom:497.409000px;}
.y97{bottom:500.415000px;}
.y174{bottom:502.750200px;}
.y13d{bottom:503.600550px;}
.y1ae{bottom:507.964650px;}
.yf6{bottom:509.055450px;}
.y36{bottom:509.615550px;}
.y23{bottom:510.344550px;}
.y68{bottom:513.574650px;}
.y140{bottom:517.093050px;}
.y13e{bottom:517.103550px;}
.y13c{bottom:517.219050px;}
.y96{bottom:521.175000px;}
.y173{bottom:522.265200px;}
.y1ad{bottom:522.364650px;}
.y35{bottom:527.746050px;}
.y22{bottom:528.340050px;}
.y67{bottom:534.379650px;}
.y13b{bottom:536.140050px;}
.y1ac{bottom:536.764650px;}
.y172{bottom:541.780200px;}
.y95{bottom:541.935000px;}
.y34{bottom:545.876550px;}
.y21{bottom:546.335550px;}
.y13a{bottom:549.643050px;}
.y1ab{bottom:553.720650px;}
.y66{bottom:555.184650px;}
.y171{bottom:561.295200px;}
.y94{bottom:562.695000px;}
.y139{bottom:563.261550px;}
.y33{bottom:564.007050px;}
.y20{bottom:564.331050px;}
.y1aa{bottom:568.120650px;}
.y65{bottom:575.989650px;}
.y170{bottom:580.810200px;}
.y32{bottom:582.137550px;}
.y137{bottom:582.182550px;}
.y1f{bottom:582.326550px;}
.y1a9{bottom:582.520650px;}
.y93{bottom:583.455000px;}
.y136{bottom:595.685550px;}
.y64{bottom:596.794650px;}
.y1a8{bottom:599.476650px;}
.y31{bottom:600.268050px;}
.y1e{bottom:600.322050px;}
.y16f{bottom:600.325200px;}
.y92{bottom:604.215000px;}
.y135{bottom:609.188550px;}
.y1a7{bottom:613.876650px;}
.yca{bottom:615.354750px;}
.y63{bottom:617.599650px;}
.y1d{bottom:618.317550px;}
.y30{bottom:618.398550px;}
.y16e{bottom:619.840200px;}
.y134{bottom:622.691550px;}
.y91{bottom:624.975000px;}
.y1a6{bottom:628.276650px;}
.y133{bottom:636.194550px;}
.y62{bottom:638.404650px;}
.y16d{bottom:639.355200px;}
.y1a5{bottom:642.676650px;}
.y90{bottom:645.735000px;}
.y132{bottom:649.697550px;}
.y16c{bottom:658.870200px;}
.y61{bottom:659.209650px;}
.y1a4{bottom:659.632650px;}
.y131{bottom:663.200550px;}
.y8f{bottom:666.495000px;}
.y1a3{bottom:674.032650px;}
.y12f{bottom:676.703550px;}
.y106{bottom:677.692350px;}
.y16b{bottom:678.385200px;}
.y60{bottom:680.014650px;}
.y14{bottom:686.036400px;}
.y8e{bottom:687.255000px;}
.y1a2{bottom:688.432650px;}
.y138{bottom:690.185550px;}
.y130{bottom:690.206550px;}
.y12e{bottom:690.322050px;}
.y16a{bottom:697.900200px;}
.y13{bottom:702.888900px;}
.y5f{bottom:705.079650px;}
.y1a1{bottom:705.388650px;}
.y8d{bottom:708.015000px;}
.y12b{bottom:709.243050px;}
.y169{bottom:717.415200px;}
.y12{bottom:719.741400px;}
.y1a0{bottom:719.788650px;}
.y12a{bottom:722.746050px;}
.y8c{bottom:728.760000px;}
.y11{bottom:732.341400px;}
.y19f{bottom:734.188650px;}
.y12d{bottom:736.238550px;}
.y128{bottom:736.249050px;}
.y168{bottom:736.930200px;}
.y10{bottom:749.193900px;}
.y8b{bottom:749.520000px;}
.y12c{bottom:749.741550px;}
.y129{bottom:749.752050px;}
.y127{bottom:749.867550px;}
.y19e{bottom:751.144650px;}
.y167{bottom:756.445200px;}
.y5e{bottom:759.535650px;}
.y19d{bottom:765.544650px;}
.yf{bottom:766.046400px;}
.y125{bottom:768.788550px;}
.y8a{bottom:770.280000px;}
.y166{bottom:775.960200px;}
.y5d{bottom:777.801150px;}
.ycb{bottom:777.813750px;}
.yc8{bottom:777.815400px;}
.y19c{bottom:779.944650px;}
.y126{bottom:782.291550px;}
.y124{bottom:782.407050px;}
.ye{bottom:782.898900px;}
.yf5{bottom:789.520350px;}
.y89{bottom:791.040000px;}
.y19b{bottom:794.344650px;}
.y165{bottom:795.475200px;}
.yd{bottom:799.751400px;}
.y122{bottom:801.317550px;}
.y19a{bottom:811.300650px;}
.y88{bottom:811.800000px;}
.y5c{bottom:813.076650px;}
.y121{bottom:814.820550px;}
.y164{bottom:814.990200px;}
.yc{bottom:816.603900px;}
.y199{bottom:825.700650px;}
.y120{bottom:828.323550px;}
.y5b{bottom:831.342150px;}
.y87{bottom:832.560000px;}
.ye8{bottom:832.890450px;}
.y163{bottom:834.505200px;}
.yb{bottom:837.707400px;}
.y198{bottom:840.100650px;}
.y11f{bottom:841.826550px;}
.y5a{bottom:849.607650px;}
.y86{bottom:853.320000px;}
.y162{bottom:854.020200px;}
.y11d{bottom:855.329550px;}
.y197{bottom:857.056650px;}
.ya{bottom:858.159300px;}
.y59{bottom:867.873150px;}
.y123{bottom:868.822050px;}
.y11e{bottom:868.832550px;}
.y11c{bottom:868.948050px;}
.y196{bottom:871.456650px;}
.y161{bottom:873.535200px;}
.y85{bottom:874.080000px;}
.y9{bottom:878.611800px;}
.y195{bottom:885.856650px;}
.y58{bottom:886.138650px;}
.y118{bottom:887.879550px;}
.y160{bottom:893.046750px;}
.y84{bottom:899.085000px;}
.y194{bottom:900.256650px;}
.y11b{bottom:901.372050px;}
.y117{bottom:901.382550px;}
.y57{bottom:904.404150px;}
.y105{bottom:904.488600px;}
.y8{bottom:907.567800px;}
.y15f{bottom:912.561750px;}
.y11a{bottom:914.875050px;}
.y115{bottom:914.885550px;}
.y193{bottom:917.212650px;}
.y56{bottom:922.669650px;}
.y119{bottom:928.378050px;}
.y116{bottom:928.388550px;}
.y114{bottom:928.504050px;}
.y192{bottom:931.612650px;}
.y15e{bottom:932.076750px;}
.y7{bottom:932.767800px;}
.y55{bottom:940.935150px;}
.y83{bottom:945.345000px;}
.y191{bottom:946.012650px;}
.y111{bottom:947.425050px;}
.y15d{bottom:951.590550px;}
.y54{bottom:959.200650px;}
.y110{bottom:960.928050px;}
.y190{bottom:962.968650px;}
.y82{bottom:966.105000px;}
.y6{bottom:966.471600px;}
.y15c{bottom:971.101050px;}
.y10f{bottom:974.431050px;}
.y18f{bottom:977.368650px;}
.y53{bottom:977.466150px;}
.y81{bottom:986.865000px;}
.y113{bottom:987.923550px;}
.y10d{bottom:987.934050px;}
.y15b{bottom:990.616050px;}
.y18e{bottom:991.768650px;}
.y52{bottom:995.731650px;}
.y5{bottom:998.871600px;}
.y112{bottom:1001.426550px;}
.y10e{bottom:1001.437050px;}
.y10c{bottom:1001.552550px;}
.y18d{bottom:1006.168650px;}
.y80{bottom:1007.625000px;}
.y15a{bottom:1010.131050px;}
.y51{bottom:1013.997150px;}
.y10a{bottom:1020.473550px;}
.y18c{bottom:1023.124650px;}
.y7f{bottom:1028.385000px;}
.y159{bottom:1029.646050px;}
.y50{bottom:1032.262650px;}
.y10b{bottom:1033.976550px;}
.y18b{bottom:1037.524650px;}
.y7e{bottom:1049.145000px;}
.y158{bottom:1049.161050px;}
.y4f{bottom:1050.528150px;}
.y18a{bottom:1051.924650px;}
.y109{bottom:1054.591050px;}
.y1{bottom:1105.813800px;}
.y3{bottom:1126.375800px;}
.y4d{bottom:1137.900150px;}
.h5{height:28.800000px;}
.h18{height:32.298000px;}
.hb{height:33.600000px;}
.hd{height:36.000000px;}
.h1c{height:36.912000px;}
.h4{height:40.000000px;}
.h3{height:40.800000px;}
.hc{height:41.526000px;}
.h8{height:43.200000px;}
.ha{height:43.201800px;}
.h9{height:43.202400px;}
.hf{height:46.140000px;}
.h10{height:46.627620px;}
.h11{height:46.714020px;}
.h12{height:46.784820px;}
.h13{height:46.808220px;}
.h15{height:46.818420px;}
.h16{height:46.829820px;}
.h14{height:46.835220px;}
.h17{height:46.879620px;}
.h1a{height:46.884420px;}
.h1b{height:46.893420px;}
.h19{height:46.898220px;}
.he{height:48.000000px;}
.h2{height:50.849760px;}
.h7{height:67.200000px;}
.h6{height:86.400000px;}
.h1{height:1190.250000px;}
.h0{height:1190.550000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:50.933850px;}
.x1b{left:56.065800px;}
.x8{left:63.750000px;}
.xd{left:72.255000px;}
.x15{left:81.972150px;}
.x9{left:85.005000px;}
.x3{left:118.782300px;}
.x16{left:124.531350px;}
.x13{left:140.901600px;}
.xf{left:144.699900px;}
.x14{left:150.307050px;}
.x10{left:155.278500px;}
.x18{left:166.776150px;}
.xc{left:174.987150px;}
.x19{left:198.515700px;}
.x37{left:201.837300px;}
.x1d{left:262.653300px;}
.x32{left:268.365300px;}
.x26{left:270.717300px;}
.x38{left:275.904300px;}
.x1c{left:276.996300px;}
.x27{left:279.222300px;}
.x1e{left:350.622300px;}
.x1f{left:360.345300px;}
.x28{left:400.560300px;}
.x39{left:403.521300px;}
.x5{left:412.620900px;}
.x17{left:440.142300px;}
.x11{left:453.360300px;}
.x4{left:454.957050px;}
.x1a{left:458.425800px;}
.xb{left:467.722500px;}
.xe{left:476.235300px;}
.x29{left:482.670300px;}
.x2a{left:485.221800px;}
.xa{left:488.977500px;}
.x2f{left:492.025800px;}
.x2e{left:494.902800px;}
.x2b{left:502.441800px;}
.x30{left:504.573300px;}
.x7{left:585.174000px;}
.x20{left:595.933800px;}
.x21{left:597.550800px;}
.x2c{left:615.358800px;}
.x2{left:669.485850px;}
.x35{left:680.259300px;}
.x3a{left:681.844800px;}
.x34{left:683.493300px;}
.x23{left:684.837300px;}
.x3e{left:688.722300px;}
.x22{left:690.486300px;}
.x3f{left:692.208300px;}
.x33{left:696.933300px;}
.x3b{left:699.295800px;}
.x3c{left:755.964300px;}
.x3d{left:758.043300px;}
.x31{left:761.634300px;}
.x25{left:763.597800px;}
.x2d{left:764.721300px;}
.x24{left:767.902800px;}
.x36{left:783.043800px;}
.x6{left:818.056800px;}
.x12{left:820.938300px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:4.266667pt;}
.v2{vertical-align:15.984000pt;}
.v4{vertical-align:17.536000pt;}
.ls24{letter-spacing:-1.386667pt;}
.ls3b{letter-spacing:-1.024000pt;}
.ls25{letter-spacing:-0.853333pt;}
.ls2d{letter-spacing:-0.672000pt;}
.ls3c{letter-spacing:-0.597333pt;}
.lse{letter-spacing:-0.480000pt;}
.ls2c{letter-spacing:-0.373333pt;}
.lsd{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.279840pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls10{letter-spacing:-0.144000pt;}
.ls11{letter-spacing:-0.096000pt;}
.lsc{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.048000pt;}
.lsa{letter-spacing:0.096000pt;}
.ls2e{letter-spacing:0.124373pt;}
.ls7{letter-spacing:0.192000pt;}
.ls17{letter-spacing:0.213333pt;}
.ls26{letter-spacing:0.224000pt;}
.ls32{letter-spacing:0.256000pt;}
.ls4{letter-spacing:0.373333pt;}
.ls13{letter-spacing:0.384000pt;}
.ls18{letter-spacing:0.435307pt;}
.ls3a{letter-spacing:0.469333pt;}
.ls5{letter-spacing:0.480000pt;}
.ls1{letter-spacing:0.600000pt;}
.ls9{letter-spacing:0.624000pt;}
.ls35{letter-spacing:0.682667pt;}
.ls1d{letter-spacing:0.684053pt;}
.ls8{letter-spacing:0.720000pt;}
.ls16{letter-spacing:0.746667pt;}
.ls39{letter-spacing:0.768000pt;}
.ls1f{letter-spacing:0.773333pt;}
.ls1b{letter-spacing:0.800000pt;}
.ls22{letter-spacing:0.906667pt;}
.ls6{letter-spacing:0.960000pt;}
.ls31{letter-spacing:1.013333pt;}
.ls15{letter-spacing:1.040000pt;}
.ls23{letter-spacing:1.066667pt;}
.ls28{letter-spacing:1.161067pt;}
.ls1c{letter-spacing:1.173333pt;}
.ls20{letter-spacing:1.226667pt;}
.ls34{letter-spacing:1.237333pt;}
.ls21{letter-spacing:1.280000pt;}
.ls1a{letter-spacing:1.333333pt;}
.ls37{letter-spacing:1.365333pt;}
.ls1e{letter-spacing:1.386667pt;}
.ls19{letter-spacing:1.440000pt;}
.ls30{letter-spacing:1.445840pt;}
.ls38{letter-spacing:1.493333pt;}
.lsb{letter-spacing:1.694992pt;}
.ls33{letter-spacing:1.749333pt;}
.ls36{letter-spacing:1.834667pt;}
.ls27{letter-spacing:1.893333pt;}
.ls2b{letter-spacing:2.346667pt;}
.ls2f{letter-spacing:2.480000pt;}
.ls0{letter-spacing:4.533333pt;}
.ls2{letter-spacing:7.208474pt;}
.ls3{letter-spacing:7.213084pt;}
.ls29{letter-spacing:119.093333pt;}
.ls2a{letter-spacing:136.789333pt;}
.ws38{word-spacing:-16.320000pt;}
.ws36{word-spacing:-16.213333pt;}
.ws3a{word-spacing:-16.000000pt;}
.ws79{word-spacing:-15.893333pt;}
.ws4{word-spacing:-15.792000pt;}
.ws35{word-spacing:-15.360000pt;}
.ws5{word-spacing:-15.312000pt;}
.wsb7{word-spacing:-11.909333pt;}
.ws93{word-spacing:-11.200000pt;}
.wsb8{word-spacing:-10.602667pt;}
.wsd8{word-spacing:-10.276347pt;}
.wsbb{word-spacing:-9.930667pt;}
.ws39{word-spacing:-9.514560pt;}
.ws37{word-spacing:-9.265813pt;}
.wsd7{word-spacing:-8.954880pt;}
.ws3{word-spacing:-8.395200pt;}
.ws23{word-spacing:-6.816000pt;}
.ws10{word-spacing:-6.144000pt;}
.wse0{word-spacing:-5.493333pt;}
.ws34{word-spacing:-5.472000pt;}
.wsc3{word-spacing:-5.333333pt;}
.ws32{word-spacing:-5.280000pt;}
.ws97{word-spacing:-5.226667pt;}
.ws5f{word-spacing:-5.173333pt;}
.ws85{word-spacing:-5.066667pt;}
.ws12{word-spacing:-4.992000pt;}
.wsdd{word-spacing:-4.960000pt;}
.wse3{word-spacing:-4.800000pt;}
.ws22{word-spacing:-4.656000pt;}
.wse6{word-spacing:-4.586667pt;}
.ws3b{word-spacing:-4.533333pt;}
.ws3e{word-spacing:-4.320000pt;}
.wsc5{word-spacing:-4.160000pt;}
.ws10c{word-spacing:-4.096000pt;}
.ws68{word-spacing:-4.000000pt;}
.ws7f{word-spacing:-3.893333pt;}
.ws87{word-spacing:-3.840000pt;}
.ws4c{word-spacing:-3.786667pt;}
.wscc{word-spacing:-3.733333pt;}
.wseb{word-spacing:-3.520000pt;}
.wse1{word-spacing:-3.466667pt;}
.ws9e{word-spacing:-3.360000pt;}
.ws25{word-spacing:-3.312000pt;}
.wsa4{word-spacing:-3.098667pt;}
.ws103{word-spacing:-2.858667pt;}
.wsa8{word-spacing:-2.837333pt;}
.ws72{word-spacing:-2.826667pt;}
.wse7{word-spacing:-2.720000pt;}
.wsae{word-spacing:-2.576000pt;}
.wsd4{word-spacing:-2.560000pt;}
.ws8d{word-spacing:-2.538667pt;}
.wsc8{word-spacing:-2.506667pt;}
.ws86{word-spacing:-2.453333pt;}
.wsf{word-spacing:-2.448000pt;}
.wsdb{word-spacing:-2.400000pt;}
.ws45{word-spacing:-2.304000pt;}
.ws96{word-spacing:-2.293333pt;}
.wsf8{word-spacing:-2.261333pt;}
.wsad{word-spacing:-2.202667pt;}
.wsa9{word-spacing:-2.165333pt;}
.ws3d{word-spacing:-2.160000pt;}
.wsa2{word-spacing:-2.128000pt;}
.wscb{word-spacing:-2.080000pt;}
.ws60{word-spacing:-1.973333pt;}
.ws89{word-spacing:-1.920000pt;}
.ws10d{word-spacing:-1.877333pt;}
.ws5d{word-spacing:-1.813333pt;}
.wsc0{word-spacing:-1.792000pt;}
.wsfc{word-spacing:-1.621333pt;}
.ws80{word-spacing:-1.600000pt;}
.wsda{word-spacing:-1.546667pt;}
.wsa7{word-spacing:-1.530667pt;}
.ws88{word-spacing:-1.493333pt;}
.ws70{word-spacing:-1.440000pt;}
.ws2f{word-spacing:-1.344000pt;}
.wsec{word-spacing:-1.333333pt;}
.ws10f{word-spacing:-1.280000pt;}
.ws6c{word-spacing:-1.120000pt;}
.ws33{word-spacing:-1.104000pt;}
.wsed{word-spacing:-1.066667pt;}
.ws53{word-spacing:-0.960000pt;}
.ws95{word-spacing:-0.853333pt;}
.wsa5{word-spacing:-0.821333pt;}
.ws63{word-spacing:-0.746667pt;}
.wsa3{word-spacing:-0.672000pt;}
.ws94{word-spacing:-0.640000pt;}
.ws7{word-spacing:-0.600000pt;}
.wsb0{word-spacing:-0.597333pt;}
.ws31{word-spacing:-0.576000pt;}
.ws11{word-spacing:-0.480000pt;}
.ws71{word-spacing:-0.426667pt;}
.ws8c{word-spacing:-0.373333pt;}
.wsf0{word-spacing:-0.256000pt;}
.ws2b{word-spacing:-0.240000pt;}
.ws58{word-spacing:-0.213333pt;}
.ws8b{word-spacing:-0.149333pt;}
.ws8e{word-spacing:-0.112000pt;}
.ws6{word-spacing:0.000000pt;}
.wsfa{word-spacing:0.042667pt;}
.ws16{word-spacing:0.096000pt;}
.ws1a{word-spacing:0.144000pt;}
.wse2{word-spacing:0.160000pt;}
.wsfe{word-spacing:0.213333pt;}
.ws9{word-spacing:0.279840pt;}
.ws9b{word-spacing:0.320000pt;}
.ws29{word-spacing:0.336000pt;}
.wsc1{word-spacing:0.373333pt;}
.wse{word-spacing:0.384000pt;}
.wsd0{word-spacing:0.426667pt;}
.wsaa{word-spacing:0.560000pt;}
.wse5{word-spacing:0.586667pt;}
.wscf{word-spacing:0.640000pt;}
.ws75{word-spacing:0.693333pt;}
.wsab{word-spacing:0.709333pt;}
.ws4d{word-spacing:0.746667pt;}
.wsc7{word-spacing:0.800000pt;}
.ws24{word-spacing:0.816000pt;}
.ws13{word-spacing:0.864000pt;}
.wsb3{word-spacing:0.896000pt;}
.ws92{word-spacing:0.933333pt;}
.ws19{word-spacing:0.960000pt;}
.wsb4{word-spacing:1.008000pt;}
.wsd1{word-spacing:1.013333pt;}
.ws111{word-spacing:1.024000pt;}
.ws7b{word-spacing:1.066667pt;}
.wsa1{word-spacing:1.157333pt;}
.wsc4{word-spacing:1.226667pt;}
.ws4b{word-spacing:1.280000pt;}
.ws98{word-spacing:1.333333pt;}
.ws90{word-spacing:1.381333pt;}
.ws3f{word-spacing:1.440000pt;}
.ws6b{word-spacing:1.546667pt;}
.wsac{word-spacing:1.568000pt;}
.ws30{word-spacing:1.584000pt;}
.ws112{word-spacing:1.664000pt;}
.ws6f{word-spacing:1.706667pt;}
.ws48{word-spacing:1.813333pt;}
.ws91{word-spacing:1.904000pt;}
.ws61{word-spacing:1.920000pt;}
.ws52{word-spacing:1.973333pt;}
.wsaf{word-spacing:1.978667pt;}
.ws74{word-spacing:2.080000pt;}
.ws9a{word-spacing:2.133333pt;}
.ws3c{word-spacing:2.160000pt;}
.wsb2{word-spacing:2.165333pt;}
.ws21{word-spacing:2.208000pt;}
.ws55{word-spacing:2.240000pt;}
.ws18{word-spacing:2.304000pt;}
.wsf5{word-spacing:2.432000pt;}
.ws6e{word-spacing:2.453333pt;}
.wsc2{word-spacing:2.506667pt;}
.ws1d{word-spacing:2.640000pt;}
.ws109{word-spacing:2.645333pt;}
.ws7d{word-spacing:2.666667pt;}
.ws42{word-spacing:2.688000pt;}
.ws51{word-spacing:2.720000pt;}
.ws1b{word-spacing:2.736000pt;}
.ws110{word-spacing:2.816000pt;}
.ws102{word-spacing:2.944000pt;}
.ws104{word-spacing:3.029333pt;}
.ws4e{word-spacing:3.040000pt;}
.wsf3{word-spacing:3.285333pt;}
.wsb1{word-spacing:3.322667pt;}
.ws101{word-spacing:3.413333pt;}
.ws1f{word-spacing:3.456000pt;}
.ws4f{word-spacing:3.573333pt;}
.ws59{word-spacing:3.626667pt;}
.wsdc{word-spacing:3.786667pt;}
.ws44{word-spacing:3.888000pt;}
.ws41{word-spacing:3.984000pt;}
.ws2d{word-spacing:4.080000pt;}
.wsfb{word-spacing:4.138667pt;}
.ws8f{word-spacing:4.144000pt;}
.wse9{word-spacing:4.160000pt;}
.ws20{word-spacing:4.176000pt;}
.wsd6{word-spacing:4.213333pt;}
.wsef{word-spacing:4.266667pt;}
.ws1c{word-spacing:4.272000pt;}
.ws65{word-spacing:4.480000pt;}
.ws64{word-spacing:4.586667pt;}
.ws54{word-spacing:4.746667pt;}
.wsc6{word-spacing:4.800000pt;}
.ws2a{word-spacing:4.896000pt;}
.ws4a{word-spacing:4.906667pt;}
.wsfd{word-spacing:4.949333pt;}
.wse4{word-spacing:4.960000pt;}
.ws56{word-spacing:5.120000pt;}
.wsf1{word-spacing:5.162667pt;}
.wsd5{word-spacing:5.493333pt;}
.ws1e{word-spacing:5.520000pt;}
.ws8a{word-spacing:5.600000pt;}
.wsf6{word-spacing:5.632000pt;}
.ws5a{word-spacing:5.760000pt;}
.wsf9{word-spacing:5.845333pt;}
.ws15{word-spacing:5.856000pt;}
.ws17{word-spacing:6.048000pt;}
.ws2c{word-spacing:6.096000pt;}
.ws10a{word-spacing:6.101333pt;}
.ws7c{word-spacing:6.133333pt;}
.ws67{word-spacing:6.186667pt;}
.ws57{word-spacing:6.293333pt;}
.ws100{word-spacing:6.314667pt;}
.wscd{word-spacing:6.346667pt;}
.ws47{word-spacing:6.400000pt;}
.wsff{word-spacing:6.485333pt;}
.wsa{word-spacing:6.864000pt;}
.ws6a{word-spacing:6.933333pt;}
.wsc{word-spacing:7.056000pt;}
.ws69{word-spacing:7.093333pt;}
.wsd3{word-spacing:7.146667pt;}
.wsd{word-spacing:7.152000pt;}
.ws2{word-spacing:7.159600pt;}
.ws1{word-spacing:7.162400pt;}
.ws8{word-spacing:7.200000pt;}
.ws105{word-spacing:7.210667pt;}
.wsce{word-spacing:7.253333pt;}
.ws113{word-spacing:7.296000pt;}
.ws108{word-spacing:7.509333pt;}
.ws9d{word-spacing:7.733333pt;}
.ws83{word-spacing:7.786667pt;}
.wsde{word-spacing:7.840000pt;}
.wsb{word-spacing:7.920000pt;}
.wse8{word-spacing:8.106667pt;}
.ws14{word-spacing:8.112000pt;}
.ws9f{word-spacing:8.320000pt;}
.ws6d{word-spacing:8.426667pt;}
.ws107{word-spacing:8.448000pt;}
.wsd2{word-spacing:8.533333pt;}
.ws40{word-spacing:8.832000pt;}
.wsdf{word-spacing:8.960000pt;}
.ws2e{word-spacing:9.024000pt;}
.wsf2{word-spacing:9.045333pt;}
.ws43{word-spacing:9.072000pt;}
.ws84{word-spacing:9.280000pt;}
.ws62{word-spacing:9.333333pt;}
.wsf4{word-spacing:9.386667pt;}
.wsf7{word-spacing:9.557333pt;}
.ws82{word-spacing:9.600000pt;}
.ws81{word-spacing:9.760000pt;}
.wsd9{word-spacing:10.026667pt;}
.ws50{word-spacing:10.240000pt;}
.wsee{word-spacing:10.506667pt;}
.ws5e{word-spacing:11.146667pt;}
.ws10e{word-spacing:11.221333pt;}
.ws5b{word-spacing:11.306667pt;}
.ws9c{word-spacing:11.360000pt;}
.ws99{word-spacing:11.626667pt;}
.ws114{word-spacing:11.648000pt;}
.wsa0{word-spacing:11.680000pt;}
.ws7e{word-spacing:11.893333pt;}
.wsca{word-spacing:12.000000pt;}
.ws10b{word-spacing:12.074667pt;}
.ws49{word-spacing:12.106667pt;}
.ws106{word-spacing:12.117333pt;}
.ws76{word-spacing:12.320000pt;}
.wsea{word-spacing:12.373333pt;}
.wsc9{word-spacing:12.960000pt;}
.ws77{word-spacing:13.280000pt;}
.ws26{word-spacing:13.296000pt;}
.ws28{word-spacing:13.632000pt;}
.ws66{word-spacing:13.866667pt;}
.ws5c{word-spacing:13.920000pt;}
.ws73{word-spacing:14.240000pt;}
.ws46{word-spacing:15.146667pt;}
.ws27{word-spacing:15.312000pt;}
.wsb6{word-spacing:49.989333pt;}
.ws78{word-spacing:75.381867pt;}
.wsb5{word-spacing:77.331200pt;}
.wsa6{word-spacing:80.413867pt;}
.ws0{word-spacing:81.184533pt;}
.wsbe{word-spacing:84.448000pt;}
.wsb9{word-spacing:97.178667pt;}
.wsbf{word-spacing:111.216000pt;}
.wsba{word-spacing:144.032000pt;}
.wsbc{word-spacing:168.821333pt;}
.wsbd{word-spacing:170.576000pt;}
.ws7a{word-spacing:1003.422400pt;}
._d{margin-left:-32.000000pt;}
._f{margin-left:-28.346667pt;}
._c{margin-left:-21.280000pt;}
._10{margin-left:-16.773333pt;}
._e{margin-left:-15.610667pt;}
._2{margin-left:-6.676000pt;}
._a{margin-left:-5.740800pt;}
._7{margin-left:-4.800000pt;}
._4{margin-left:-3.800000pt;}
._3{margin-left:-2.800000pt;}
._0{margin-left:-1.840000pt;}
._8{margin-left:-0.937067pt;}
._9{width:0.960000pt;}
._b{width:2.210133pt;}
._5{width:7.220197pt;}
._2c{width:10.293333pt;}
._2d{width:27.008000pt;}
._6{width:52.925467pt;}
._1c{width:61.525333pt;}
._14{width:68.032000pt;}
._25{width:79.557333pt;}
._12{width:81.909333pt;}
._24{width:85.754667pt;}
._11{width:87.285333pt;}
._15{width:101.584000pt;}
._23{width:103.077333pt;}
._13{width:123.610667pt;}
._26{width:149.520000pt;}
._20{width:153.962667pt;}
._2a{width:155.642667pt;}
._17{width:179.424000pt;}
._29{width:181.738667pt;}
._2b{width:194.394667pt;}
._19{width:202.533333pt;}
._1f{width:204.101333pt;}
._22{width:216.794667pt;}
._1b{width:251.962667pt;}
._28{width:253.754667pt;}
._18{width:255.360000pt;}
._16{width:277.536000pt;}
._1d{width:305.498667pt;}
._27{width:333.498667pt;}
._21{width:343.653333pt;}
._1a{width:380.202667pt;}
._1e{width:390.656000pt;}
._1{width:838.016000pt;}
.fs8{font-size:27.984000pt;}
.fs3{font-size:28.000000pt;}
.fsb{font-size:31.093333pt;}
.fs4{font-size:32.000000pt;}
.fs9{font-size:37.333333pt;}
.fs2{font-size:40.000000pt;}
.fsc{font-size:42.666667pt;}
.fs1{font-size:45.333333pt;}
.fs7{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs0{font-size:56.499733pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:22.303067pt;}
.y4e{bottom:23.369733pt;}
.y4{bottom:45.912133pt;}
.yaa{bottom:67.773333pt;}
.y104{bottom:67.996800pt;}
.yf4{bottom:68.004800pt;}
.yb4{bottom:68.013600pt;}
.ybe{bottom:68.015600pt;}
.y7d{bottom:68.015867pt;}
.y189{bottom:68.025467pt;}
.yd6{bottom:68.031467pt;}
.y1c{bottom:68.042133pt;}
.y4c{bottom:68.199600pt;}
.y1ca{bottom:68.270800pt;}
.y157{bottom:68.698267pt;}
.y1b{bottom:77.642133pt;}
.y103{bottom:79.999467pt;}
.yf3{bottom:80.007467pt;}
.y188{bottom:80.708133pt;}
.y1c9{bottom:81.337467pt;}
.y4b{bottom:84.315600pt;}
.ye0{bottom:85.364800pt;}
.yb3{bottom:86.066933pt;}
.y156{bottom:86.164933pt;}
.ya9{bottom:86.226667pt;}
.ybd{bottom:86.308933pt;}
.y7c{bottom:86.509200pt;}
.yd5{bottom:87.164800pt;}
.y1a{bottom:91.018133pt;}
.y102{bottom:92.002133pt;}
.yf2{bottom:92.010133pt;}
.y187{bottom:93.390800pt;}
.y1c8{bottom:94.404133pt;}
.y4a{bottom:100.431600pt;}
.y19{bottom:100.618133pt;}
.ydf{bottom:102.698133pt;}
.y155{bottom:103.631600pt;}
.y101{bottom:104.004800pt;}
.yf1{bottom:104.012800pt;}
.yb2{bottom:104.120267pt;}
.ybc{bottom:104.602267pt;}
.ya8{bottom:104.680000pt;}
.y7b{bottom:105.002533pt;}
.yd4{bottom:106.298133pt;}
.y186{bottom:107.961467pt;}
.y1c7{bottom:109.742800pt;}
.y18{bottom:113.994133pt;}
.y100{bottom:116.007467pt;}
.yf0{bottom:116.015467pt;}
.y49{bottom:116.547600pt;}
.y185{bottom:119.972133pt;}
.yde{bottom:120.031467pt;}
.y154{bottom:121.098267pt;}
.yb1{bottom:122.173600pt;}
.y1c6{bottom:122.809467pt;}
.ybb{bottom:122.895600pt;}
.ya7{bottom:123.133333pt;}
.y7a{bottom:123.516933pt;}
.y17{bottom:123.594133pt;}
.yd3{bottom:125.431467pt;}
.yff{bottom:128.010133pt;}
.yef{bottom:128.018133pt;}
.y184{bottom:131.982800pt;}
.y48{bottom:132.663600pt;}
.y1c5{bottom:135.876133pt;}
.y16{bottom:136.970133pt;}
.ydd{bottom:137.364800pt;}
.y153{bottom:138.564933pt;}
.yfe{bottom:140.012800pt;}
.yee{bottom:140.020800pt;}
.yb0{bottom:140.236800pt;}
.yba{bottom:141.188933pt;}
.ya6{bottom:141.586667pt;}
.y79{bottom:142.010267pt;}
.yd2{bottom:144.564800pt;}
.y183{bottom:146.235733pt;}
.y15{bottom:146.570133pt;}
.y47{bottom:148.779600pt;}
.y1c4{bottom:151.214800pt;}
.yfd{bottom:152.015467pt;}
.yed{bottom:152.023467pt;}
.ydc{bottom:154.698133pt;}
.y152{bottom:156.031600pt;}
.yaf{bottom:158.290133pt;}
.yb9{bottom:159.482267pt;}
.ya5{bottom:160.040000pt;}
.y78{bottom:160.503600pt;}
.yd1{bottom:163.698133pt;}
.yfc{bottom:164.018133pt;}
.yec{bottom:164.026133pt;}
.y1c3{bottom:164.281467pt;}
.y46{bottom:164.895600pt;}
.ydb{bottom:172.031467pt;}
.y151{bottom:173.498267pt;}
.yfb{bottom:176.020800pt;}
.yeb{bottom:176.028800pt;}
.yae{bottom:176.343467pt;}
.yb8{bottom:177.786667pt;}
.ya4{bottom:178.493333pt;}
.y77{bottom:178.996933pt;}
.y1c2{bottom:179.620133pt;}
.y45{bottom:181.011600pt;}
.yd0{bottom:182.831467pt;}
.y182{bottom:183.142400pt;}
.yfa{bottom:188.023467pt;}
.yea{bottom:188.031467pt;}
.yda{bottom:189.364800pt;}
.y150{bottom:190.964933pt;}
.y1c1{bottom:192.420133pt;}
.yad{bottom:194.396800pt;}
.yb7{bottom:196.080000pt;}
.ya3{bottom:196.946667pt;}
.y44{bottom:197.127600pt;}
.y76{bottom:197.511333pt;}
.yf9{bottom:200.026133pt;}
.y181{bottom:201.155733pt;}
.ycf{bottom:201.964800pt;}
.y1c0{bottom:205.220133pt;}
.yd9{bottom:206.698133pt;}
.y14f{bottom:208.431600pt;}
.yf8{bottom:212.028800pt;}
.yac{bottom:212.450133pt;}
.y43{bottom:213.243600pt;}
.yb6{bottom:214.373333pt;}
.yf7{bottom:214.803733pt;}
.ya2{bottom:215.400000pt;}
.y75{bottom:216.004667pt;}
.y1bf{bottom:218.020133pt;}
.yce{bottom:221.098133pt;}
.y180{bottom:222.942400pt;}
.yd8{bottom:224.031467pt;}
.y14e{bottom:225.898267pt;}
.y42{bottom:229.359600pt;}
.yb5{bottom:232.666667pt;}
.y1be{bottom:233.092133pt;}
.ya1{bottom:233.853333pt;}
.yab{bottom:234.290133pt;}
.y74{bottom:234.498000pt;}
.ycd{bottom:240.231467pt;}
.yd7{bottom:241.364800pt;}
.y14d{bottom:243.364933pt;}
.y41{bottom:245.475600pt;}
.y1bd{bottom:245.892133pt;}
.y108{bottom:251.653067pt;}
.ya0{bottom:252.293333pt;}
.y73{bottom:252.991333pt;}
.y17f{bottom:256.075733pt;}
.ycc{bottom:259.364800pt;}
.y14c{bottom:260.831600pt;}
.y1bc{bottom:260.964133pt;}
.y40{bottom:261.591600pt;}
.y2f{bottom:261.687600pt;}
.y9f{bottom:270.746667pt;}
.y72{bottom:271.521467pt;}
.y17e{bottom:273.422400pt;}
.y1bb{bottom:273.764133pt;}
.y2e{bottom:277.683600pt;}
.y3f{bottom:277.707600pt;}
.y14b{bottom:278.298267pt;}
.y1ba{bottom:288.836133pt;}
.y9e{bottom:289.200000pt;}
.y71{bottom:290.014800pt;}
.y17d{bottom:290.769067pt;}
.y2d{bottom:293.679600pt;}
.y3e{bottom:293.823600pt;}
.y14a{bottom:295.764933pt;}
.yc7{bottom:299.786133pt;}
.y1b9{bottom:301.636133pt;}
.y9d{bottom:307.653333pt;}
.y17c{bottom:308.115733pt;}
.y70{bottom:308.508133pt;}
.y2c{bottom:309.675600pt;}
.y3d{bottom:309.939600pt;}
.yc6{bottom:311.788800pt;}
.y1b8{bottom:314.436133pt;}
.ye7{bottom:321.722933pt;}
.yc5{bottom:323.791467pt;}
.y17b{bottom:325.462400pt;}
.y2b{bottom:325.671600pt;}
.y3c{bottom:326.055600pt;}
.y9c{bottom:326.106667pt;}
.y6f{bottom:327.001467pt;}
.y1b7{bottom:329.508133pt;}
.ye6{bottom:333.725600pt;}
.yc4{bottom:335.794133pt;}
.y2a{bottom:341.667600pt;}
.y1b6{bottom:342.308133pt;}
.y17a{bottom:342.809067pt;}
.y9b{bottom:344.560000pt;}
.y6e{bottom:345.494800pt;}
.ye5{bottom:345.728267pt;}
.yc3{bottom:347.796800pt;}
.y148{bottom:348.870267pt;}
.y1b5{bottom:355.108133pt;}
.y3b{bottom:357.291600pt;}
.y29{bottom:357.663600pt;}
.ye4{bottom:357.730933pt;}
.yc2{bottom:359.799467pt;}
.y179{bottom:360.155733pt;}
.y149{bottom:360.872933pt;}
.y147{bottom:360.975600pt;}
.y9a{bottom:363.013333pt;}
.y6d{bottom:363.988133pt;}
.ye3{bottom:369.733600pt;}
.y1b4{bottom:370.180133pt;}
.yc1{bottom:371.802133pt;}
.y3a{bottom:373.407600pt;}
.y28{bottom:373.659600pt;}
.y178{bottom:377.502400pt;}
.y145{bottom:377.794267pt;}
.ye2{bottom:381.736267pt;}
.y6c{bottom:382.481467pt;}
.y1b3{bottom:382.980133pt;}
.yc0{bottom:383.804800pt;}
.y99{bottom:385.240000pt;}
.y27{bottom:389.655600pt;}
.y146{bottom:389.796933pt;}
.y144{bottom:389.899600pt;}
.ye1{bottom:393.738933pt;}
.y177{bottom:394.849067pt;}
.ybf{bottom:395.807467pt;}
.y1b2{bottom:398.052133pt;}
.y6b{bottom:401.030800pt;}
.y39{bottom:404.643600pt;}
.y26{bottom:405.651600pt;}
.y142{bottom:406.718267pt;}
.y1b1{bottom:410.852133pt;}
.y176{bottom:412.195733pt;}
.yc9{bottom:417.954400pt;}
.ye9{bottom:418.331333pt;}
.y143{bottom:418.720933pt;}
.y141{bottom:418.823600pt;}
.y6a{bottom:419.524133pt;}
.y38{bottom:420.759600pt;}
.y25{bottom:421.647600pt;}
.y1b0{bottom:423.652133pt;}
.y98{bottom:426.360000pt;}
.y175{bottom:429.542400pt;}
.y13f{bottom:435.642267pt;}
.y1af{bottom:436.452133pt;}
.y37{bottom:436.875600pt;}
.y24{bottom:437.643600pt;}
.y69{bottom:438.017467pt;}
.y107{bottom:442.141333pt;}
.y97{bottom:444.813333pt;}
.y174{bottom:446.889067pt;}
.y13d{bottom:447.644933pt;}
.y1ae{bottom:451.524133pt;}
.yf6{bottom:452.493733pt;}
.y36{bottom:452.991600pt;}
.y23{bottom:453.639600pt;}
.y68{bottom:456.510800pt;}
.y140{bottom:459.638267pt;}
.y13e{bottom:459.647600pt;}
.y13c{bottom:459.750267pt;}
.y96{bottom:463.266667pt;}
.y173{bottom:464.235733pt;}
.y1ad{bottom:464.324133pt;}
.y35{bottom:469.107600pt;}
.y22{bottom:469.635600pt;}
.y67{bottom:475.004133pt;}
.y13b{bottom:476.568933pt;}
.y1ac{bottom:477.124133pt;}
.y172{bottom:481.582400pt;}
.y95{bottom:481.720000pt;}
.y34{bottom:485.223600pt;}
.y21{bottom:485.631600pt;}
.y13a{bottom:488.571600pt;}
.y1ab{bottom:492.196133pt;}
.y66{bottom:493.497467pt;}
.y171{bottom:498.929067pt;}
.y94{bottom:500.173333pt;}
.y139{bottom:500.676933pt;}
.y33{bottom:501.339600pt;}
.y20{bottom:501.627600pt;}
.y1aa{bottom:504.996133pt;}
.y65{bottom:511.990800pt;}
.y170{bottom:516.275733pt;}
.y32{bottom:517.455600pt;}
.y137{bottom:517.495600pt;}
.y1f{bottom:517.623600pt;}
.y1a9{bottom:517.796133pt;}
.y93{bottom:518.626667pt;}
.y136{bottom:529.498267pt;}
.y64{bottom:530.484133pt;}
.y1a8{bottom:532.868133pt;}
.y31{bottom:533.571600pt;}
.y1e{bottom:533.619600pt;}
.y16f{bottom:533.622400pt;}
.y92{bottom:537.080000pt;}
.y135{bottom:541.500933pt;}
.y1a7{bottom:545.668133pt;}
.yca{bottom:546.982000pt;}
.y63{bottom:548.977467pt;}
.y1d{bottom:549.615600pt;}
.y30{bottom:549.687600pt;}
.y16e{bottom:550.969067pt;}
.y134{bottom:553.503600pt;}
.y91{bottom:555.533333pt;}
.y1a6{bottom:558.468133pt;}
.y133{bottom:565.506267pt;}
.y62{bottom:567.470800pt;}
.y16d{bottom:568.315733pt;}
.y1a5{bottom:571.268133pt;}
.y90{bottom:573.986667pt;}
.y132{bottom:577.508933pt;}
.y16c{bottom:585.662400pt;}
.y61{bottom:585.964133pt;}
.y1a4{bottom:586.340133pt;}
.y131{bottom:589.511600pt;}
.y8f{bottom:592.440000pt;}
.y1a3{bottom:599.140133pt;}
.y12f{bottom:601.514267pt;}
.y106{bottom:602.393200pt;}
.y16b{bottom:603.009067pt;}
.y60{bottom:604.457467pt;}
.y14{bottom:609.810133pt;}
.y8e{bottom:610.893333pt;}
.y1a2{bottom:611.940133pt;}
.y138{bottom:613.498267pt;}
.y130{bottom:613.516933pt;}
.y12e{bottom:613.619600pt;}
.y16a{bottom:620.355733pt;}
.y13{bottom:624.790133pt;}
.y5f{bottom:626.737467pt;}
.y1a1{bottom:627.012133pt;}
.y8d{bottom:629.346667pt;}
.y12b{bottom:630.438267pt;}
.y169{bottom:637.702400pt;}
.y12{bottom:639.770133pt;}
.y1a0{bottom:639.812133pt;}
.y12a{bottom:642.440933pt;}
.y8c{bottom:647.786667pt;}
.y11{bottom:650.970133pt;}
.y19f{bottom:652.612133pt;}
.y12d{bottom:654.434267pt;}
.y128{bottom:654.443600pt;}
.y168{bottom:655.049067pt;}
.y10{bottom:665.950133pt;}
.y8b{bottom:666.240000pt;}
.y12c{bottom:666.436933pt;}
.y129{bottom:666.446267pt;}
.y127{bottom:666.548933pt;}
.y19e{bottom:667.684133pt;}
.y167{bottom:672.395733pt;}
.y5e{bottom:675.142800pt;}
.y19d{bottom:680.484133pt;}
.yf{bottom:680.930133pt;}
.y125{bottom:683.367600pt;}
.y8a{bottom:684.693333pt;}
.y166{bottom:689.742400pt;}
.y5d{bottom:691.378800pt;}
.ycb{bottom:691.390000pt;}
.yc8{bottom:691.391467pt;}
.y19c{bottom:693.284133pt;}
.y126{bottom:695.370267pt;}
.y124{bottom:695.472933pt;}
.ye{bottom:695.910133pt;}
.yf5{bottom:701.795867pt;}
.y89{bottom:703.146667pt;}
.y19b{bottom:706.084133pt;}
.y165{bottom:707.089067pt;}
.yd{bottom:710.890133pt;}
.y122{bottom:712.282267pt;}
.y19a{bottom:721.156133pt;}
.y88{bottom:721.600000pt;}
.y5c{bottom:722.734800pt;}
.y121{bottom:724.284933pt;}
.y164{bottom:724.435733pt;}
.yc{bottom:725.870133pt;}
.y199{bottom:733.956133pt;}
.y120{bottom:736.287600pt;}
.y5b{bottom:738.970800pt;}
.y87{bottom:740.053333pt;}
.ye8{bottom:740.347067pt;}
.y163{bottom:741.782400pt;}
.yb{bottom:744.628800pt;}
.y198{bottom:746.756133pt;}
.y11f{bottom:748.290267pt;}
.y5a{bottom:755.206800pt;}
.y86{bottom:758.506667pt;}
.y162{bottom:759.129067pt;}
.y11d{bottom:760.292933pt;}
.y197{bottom:761.828133pt;}
.ya{bottom:762.808267pt;}
.y59{bottom:771.442800pt;}
.y123{bottom:772.286267pt;}
.y11e{bottom:772.295600pt;}
.y11c{bottom:772.398267pt;}
.y196{bottom:774.628133pt;}
.y161{bottom:776.475733pt;}
.y85{bottom:776.960000pt;}
.y9{bottom:780.988267pt;}
.y195{bottom:787.428133pt;}
.y58{bottom:787.678800pt;}
.y118{bottom:789.226267pt;}
.y160{bottom:793.819333pt;}
.y84{bottom:799.186667pt;}
.y194{bottom:800.228133pt;}
.y11b{bottom:801.219600pt;}
.y117{bottom:801.228933pt;}
.y57{bottom:803.914800pt;}
.y105{bottom:803.989867pt;}
.y8{bottom:806.726933pt;}
.y15f{bottom:811.166000pt;}
.y11a{bottom:813.222267pt;}
.y115{bottom:813.231600pt;}
.y193{bottom:815.300133pt;}
.y56{bottom:820.150800pt;}
.y119{bottom:825.224933pt;}
.y116{bottom:825.234267pt;}
.y114{bottom:825.336933pt;}
.y192{bottom:828.100133pt;}
.y15e{bottom:828.512667pt;}
.y7{bottom:829.126933pt;}
.y55{bottom:836.386800pt;}
.y83{bottom:840.306667pt;}
.y191{bottom:840.900133pt;}
.y111{bottom:842.155600pt;}
.y15d{bottom:845.858267pt;}
.y54{bottom:852.622800pt;}
.y110{bottom:854.158267pt;}
.y190{bottom:855.972133pt;}
.y82{bottom:858.760000pt;}
.y6{bottom:859.085867pt;}
.y15c{bottom:863.200933pt;}
.y10f{bottom:866.160933pt;}
.y18f{bottom:868.772133pt;}
.y53{bottom:868.858800pt;}
.y81{bottom:877.213333pt;}
.y113{bottom:878.154267pt;}
.y10d{bottom:878.163600pt;}
.y15b{bottom:880.547600pt;}
.y18e{bottom:881.572133pt;}
.y52{bottom:885.094800pt;}
.y5{bottom:887.885867pt;}
.y112{bottom:890.156933pt;}
.y10e{bottom:890.166267pt;}
.y10c{bottom:890.268933pt;}
.y18d{bottom:894.372133pt;}
.y80{bottom:895.666667pt;}
.y15a{bottom:897.894267pt;}
.y51{bottom:901.330800pt;}
.y10a{bottom:907.087600pt;}
.y18c{bottom:909.444133pt;}
.y7f{bottom:914.120000pt;}
.y159{bottom:915.240933pt;}
.y50{bottom:917.566800pt;}
.y10b{bottom:919.090267pt;}
.y18b{bottom:922.244133pt;}
.y7e{bottom:932.573333pt;}
.y158{bottom:932.587600pt;}
.y4f{bottom:933.802800pt;}
.y18a{bottom:935.044133pt;}
.y109{bottom:937.414267pt;}
.y1{bottom:982.945600pt;}
.y3{bottom:1001.222933pt;}
.y4d{bottom:1011.466800pt;}
.h5{height:25.600000pt;}
.h18{height:28.709333pt;}
.hb{height:29.866667pt;}
.hd{height:32.000000pt;}
.h1c{height:32.810667pt;}
.h4{height:35.555556pt;}
.h3{height:36.266667pt;}
.hc{height:36.912000pt;}
.h8{height:38.400000pt;}
.ha{height:38.401600pt;}
.h9{height:38.402133pt;}
.hf{height:41.013333pt;}
.h10{height:41.446773pt;}
.h11{height:41.523573pt;}
.h12{height:41.586507pt;}
.h13{height:41.607307pt;}
.h15{height:41.616373pt;}
.h16{height:41.626507pt;}
.h14{height:41.631307pt;}
.h17{height:41.670773pt;}
.h1a{height:41.675040pt;}
.h1b{height:41.683040pt;}
.h19{height:41.687307pt;}
.he{height:42.666667pt;}
.h2{height:45.199787pt;}
.h7{height:59.733333pt;}
.h6{height:76.800000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.266667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:45.274533pt;}
.x1b{left:49.836267pt;}
.x8{left:56.666667pt;}
.xd{left:64.226667pt;}
.x15{left:72.864133pt;}
.x9{left:75.560000pt;}
.x3{left:105.584267pt;}
.x16{left:110.694533pt;}
.x13{left:125.245867pt;}
.xf{left:128.622133pt;}
.x14{left:133.606267pt;}
.x10{left:138.025333pt;}
.x18{left:148.245467pt;}
.xc{left:155.544133pt;}
.x19{left:176.458400pt;}
.x37{left:179.410933pt;}
.x1d{left:233.469600pt;}
.x32{left:238.546933pt;}
.x26{left:240.637600pt;}
.x38{left:245.248267pt;}
.x1c{left:246.218933pt;}
.x27{left:248.197600pt;}
.x1e{left:311.664267pt;}
.x1f{left:320.306933pt;}
.x28{left:356.053600pt;}
.x39{left:358.685600pt;}
.x5{left:366.774133pt;}
.x17{left:391.237600pt;}
.x11{left:402.986933pt;}
.x4{left:404.406267pt;}
.x1a{left:407.489600pt;}
.xb{left:415.753333pt;}
.xe{left:423.320267pt;}
.x29{left:429.040267pt;}
.x2a{left:431.308267pt;}
.xa{left:434.646667pt;}
.x2f{left:437.356267pt;}
.x2e{left:439.913600pt;}
.x2b{left:446.614933pt;}
.x30{left:448.509600pt;}
.x7{left:520.154667pt;}
.x20{left:529.718933pt;}
.x21{left:531.156267pt;}
.x2c{left:546.985600pt;}
.x2{left:595.098533pt;}
.x35{left:604.674933pt;}
.x3a{left:606.084267pt;}
.x34{left:607.549600pt;}
.x23{left:608.744267pt;}
.x3e{left:612.197600pt;}
.x22{left:613.765600pt;}
.x3f{left:615.296267pt;}
.x33{left:619.496267pt;}
.x3b{left:621.596267pt;}
.x3c{left:671.968267pt;}
.x3d{left:673.816267pt;}
.x31{left:677.008267pt;}
.x25{left:678.753600pt;}
.x2d{left:679.752267pt;}
.x24{left:682.580267pt;}
.x36{left:696.038933pt;}
.x6{left:727.161600pt;}
.x12{left:729.722933pt;}
}




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