
    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_be3cb310c7ab9b1d60f7ab24.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_ecc50af5e4e8877a62dc898c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.825000;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_43de820ab73724d6f6003bc1.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.126000;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_868105fec71c71d8145cd667.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.065581;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_786df6a781fd3ef2e100515c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.223000;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_61752976231a3240dd49f120.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.136000;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_0daae058e255d366186da456.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.239000;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_6d73a3216eb2338b619c3215.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.906000;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_6b05af9facfb3034cf10d363.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.702000;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_2941b9fbb0db3d359d4dbcd7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.385000;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_18ca9ffd944ea87267670db2.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.690000;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_62988f49095ff6e6fb7e7d09.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.144000;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_c1d4eea0333b661740fdffa3.woff2')format("woff");}.fff{font-family:fff;line-height:1.328000;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_214fd3b86e0351d7a73472b9.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722656;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;}
.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);}
.m1{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:-19.199707px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.007233px;}
.v1{vertical-align:24.000000px;}
.ls7{letter-spacing:-0.840000px;}
.lsd{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.052870px;}
.ls8{letter-spacing:0.840000px;}
.ls3{letter-spacing:0.900000px;}
.ls2{letter-spacing:1.200000px;}
.ls4{letter-spacing:2.975458px;}
.ls6{letter-spacing:2.975504px;}
.ls1{letter-spacing:3.360000px;}
.lsa{letter-spacing:12.484774px;}
.ls5{letter-spacing:16.649606px;}
.lsc{letter-spacing:21.676800px;}
.ls9{letter-spacing:28.521600px;}
.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;}
}
.ws1a{word-spacing:-16.200000px;}
.ws85{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.000000px;}
.wsb8{word-spacing:-13.332000px;}
.ws3{word-spacing:-13.296000px;}
.ws4{word-spacing:-12.420000px;}
.ws6{word-spacing:-12.120000px;}
.wsb9{word-spacing:-12.000000px;}
.ws8{word-spacing:-11.520000px;}
.wscc{word-spacing:-11.280000px;}
.ws2{word-spacing:-9.408000px;}
.wsb7{word-spacing:-9.216000px;}
.ws5{word-spacing:-8.694000px;}
.wse1{word-spacing:-8.400000px;}
.ws1c{word-spacing:-1.890000px;}
.ws51{word-spacing:-1.440000px;}
.ws21{word-spacing:-1.200000px;}
.ws2e{word-spacing:-0.900000px;}
.ws45{word-spacing:-0.840000px;}
.ws37{word-spacing:-0.720000px;}
.ws46{word-spacing:-0.660000px;}
.ws9d{word-spacing:-0.600000px;}
.ws39{word-spacing:-0.540000px;}
.ws44{word-spacing:-0.480000px;}
.ws7e{word-spacing:-0.360000px;}
.wsc8{word-spacing:-0.336000px;}
.ws6f{word-spacing:-0.300000px;}
.ws18{word-spacing:-0.240000px;}
.ws2c{word-spacing:-0.180000px;}
.ws1{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.ws6e{word-spacing:0.060000px;}
.wsc0{word-spacing:0.096000px;}
.ws10{word-spacing:0.120000px;}
.wsdd{word-spacing:0.144000px;}
.wsa0{word-spacing:0.180000px;}
.wsc7{word-spacing:0.192000px;}
.ws2d{word-spacing:0.240000px;}
.ws4f{word-spacing:0.300000px;}
.ws98{word-spacing:0.360000px;}
.wsda{word-spacing:0.384000px;}
.ws9{word-spacing:0.420000px;}
.wsc6{word-spacing:0.480000px;}
.ws65{word-spacing:0.540000px;}
.ws7c{word-spacing:0.600000px;}
.ws58{word-spacing:0.660000px;}
.ws32{word-spacing:0.780000px;}
.ws3d{word-spacing:0.840000px;}
.ws8b{word-spacing:0.900000px;}
.ws97{word-spacing:0.960000px;}
.wscb{word-spacing:1.008000px;}
.ws59{word-spacing:1.020000px;}
.ws82{word-spacing:1.140000px;}
.wsde{word-spacing:1.152000px;}
.wsb5{word-spacing:1.200000px;}
.wsd5{word-spacing:1.248000px;}
.wsd4{word-spacing:1.296000px;}
.ws89{word-spacing:1.320000px;}
.ws5f{word-spacing:1.380000px;}
.wsd3{word-spacing:1.488000px;}
.ws54{word-spacing:1.500000px;}
.wsbf{word-spacing:1.584000px;}
.ws77{word-spacing:1.620000px;}
.ws78{word-spacing:1.740000px;}
.wsbc{word-spacing:1.776000px;}
.ws4a{word-spacing:1.800000px;}
.wsdf{word-spacing:1.824000px;}
.ws19{word-spacing:1.860000px;}
.wsdb{word-spacing:1.968000px;}
.wsbd{word-spacing:2.064000px;}
.ws66{word-spacing:2.100000px;}
.ws35{word-spacing:2.160000px;}
.ws62{word-spacing:2.340000px;}
.wse0{word-spacing:2.352000px;}
.ws5d{word-spacing:2.400000px;}
.ws61{word-spacing:2.580000px;}
.wsd0{word-spacing:2.592000px;}
.ws3e{word-spacing:2.640000px;}
.ws3a{word-spacing:2.700000px;}
.ws4c{word-spacing:2.760000px;}
.ws2b{word-spacing:2.820000px;}
.ws64{word-spacing:2.880000px;}
.ws63{word-spacing:2.940000px;}
.ws29{word-spacing:3.000000px;}
.wsba{word-spacing:3.024000px;}
.ws88{word-spacing:3.060000px;}
.ws9a{word-spacing:3.120000px;}
.wscd{word-spacing:3.168000px;}
.ws7b{word-spacing:3.180000px;}
.wsbe{word-spacing:3.264000px;}
.ws86{word-spacing:3.300000px;}
.wsa{word-spacing:3.420000px;}
.wsc3{word-spacing:3.456000px;}
.ws6d{word-spacing:3.480000px;}
.ws1e{word-spacing:3.540000px;}
.ws2a{word-spacing:3.600000px;}
.ws28{word-spacing:3.660000px;}
.ws7f{word-spacing:3.720000px;}
.ws31{word-spacing:3.780000px;}
.wsd1{word-spacing:3.792000px;}
.ws36{word-spacing:3.840000px;}
.wsbb{word-spacing:3.888000px;}
.ws84{word-spacing:3.900000px;}
.ws4d{word-spacing:3.960000px;}
.wsaf{word-spacing:4.020000px;}
.wsab{word-spacing:4.080000px;}
.wsc9{word-spacing:4.128000px;}
.wsa1{word-spacing:4.140000px;}
.wsaa{word-spacing:4.200000px;}
.wsf{word-spacing:4.260000px;}
.wsd9{word-spacing:4.272000px;}
.ws38{word-spacing:4.320000px;}
.ws93{word-spacing:4.380000px;}
.wsd7{word-spacing:4.416000px;}
.ws41{word-spacing:4.560000px;}
.ws60{word-spacing:4.620000px;}
.ws13{word-spacing:4.680000px;}
.ws56{word-spacing:4.740000px;}
.ws3f{word-spacing:4.800000px;}
.ws70{word-spacing:4.860000px;}
.wsce{word-spacing:4.896000px;}
.ws27{word-spacing:4.980000px;}
.ws8c{word-spacing:5.160000px;}
.ws12{word-spacing:5.340000px;}
.ws6b{word-spacing:5.400000px;}
.wsd8{word-spacing:5.424000px;}
.ws33{word-spacing:5.520000px;}
.wsb{word-spacing:5.580000px;}
.wsc4{word-spacing:5.616000px;}
.wsa9{word-spacing:5.700000px;}
.ws3c{word-spacing:5.820000px;}
.ws76{word-spacing:5.880000px;}
.ws8a{word-spacing:5.940000px;}
.ws6c{word-spacing:6.000000px;}
.ws2f{word-spacing:6.060000px;}
.ws15{word-spacing:6.120000px;}
.ws24{word-spacing:6.180000px;}
.wsb2{word-spacing:6.300000px;}
.ws83{word-spacing:6.360000px;}
.ws34{word-spacing:6.420000px;}
.ws75{word-spacing:6.480000px;}
.ws9f{word-spacing:6.540000px;}
.ws17{word-spacing:6.660000px;}
.ws79{word-spacing:6.720000px;}
.ws40{word-spacing:6.780000px;}
.ws8f{word-spacing:6.900000px;}
.wsc1{word-spacing:7.008000px;}
.ws67{word-spacing:7.140000px;}
.wsca{word-spacing:7.152000px;}
.ws26{word-spacing:7.200000px;}
.wsd6{word-spacing:7.248000px;}
.ws16{word-spacing:7.260000px;}
.ws87{word-spacing:7.320000px;}
.ws99{word-spacing:7.380000px;}
.ws5e{word-spacing:7.440000px;}
.ws48{word-spacing:7.620000px;}
.ws20{word-spacing:7.740000px;}
.ws53{word-spacing:7.800000px;}
.ws14{word-spacing:7.860000px;}
.ws68{word-spacing:7.920000px;}
.ws4e{word-spacing:7.980000px;}
.ws30{word-spacing:8.040000px;}
.ws50{word-spacing:8.100000px;}
.ws91{word-spacing:8.160000px;}
.wsb4{word-spacing:8.220000px;}
.ws4b{word-spacing:8.340000px;}
.wsc{word-spacing:8.400000px;}
.wsac{word-spacing:8.460000px;}
.ws52{word-spacing:8.760000px;}
.ws9c{word-spacing:8.820000px;}
.ws25{word-spacing:8.880000px;}
.ws8e{word-spacing:9.060000px;}
.wsd2{word-spacing:9.072000px;}
.ws72{word-spacing:9.120000px;}
.ws6a{word-spacing:9.180000px;}
.ws96{word-spacing:9.300000px;}
.ws5b{word-spacing:9.480000px;}
.wsa5{word-spacing:9.540000px;}
.wsa3{word-spacing:9.660000px;}
.wsa8{word-spacing:9.720000px;}
.ws9e{word-spacing:9.780000px;}
.wsd{word-spacing:9.840000px;}
.ws57{word-spacing:9.900000px;}
.wse{word-spacing:10.020000px;}
.ws55{word-spacing:10.320000px;}
.ws47{word-spacing:10.500000px;}
.ws95{word-spacing:10.680000px;}
.ws74{word-spacing:10.740000px;}
.ws5a{word-spacing:10.860000px;}
.ws43{word-spacing:10.920000px;}
.wsb1{word-spacing:11.040000px;}
.ws7d{word-spacing:11.100000px;}
.ws42{word-spacing:11.340000px;}
.wsa2{word-spacing:11.760000px;}
.ws7a{word-spacing:11.820000px;}
.ws9b{word-spacing:11.880000px;}
.wsb6{word-spacing:11.940000px;}
.wsa4{word-spacing:12.060000px;}
.ws92{word-spacing:12.180000px;}
.ws69{word-spacing:12.360000px;}
.wsc5{word-spacing:12.384000px;}
.ws90{word-spacing:12.600000px;}
.wsa7{word-spacing:12.660000px;}
.wsad{word-spacing:12.960000px;}
.ws73{word-spacing:13.020000px;}
.wscf{word-spacing:13.104000px;}
.ws23{word-spacing:13.320000px;}
.ws80{word-spacing:13.680000px;}
.ws5c{word-spacing:13.800000px;}
.wsb0{word-spacing:13.920000px;}
.ws11{word-spacing:13.980000px;}
.ws22{word-spacing:14.040000px;}
.ws94{word-spacing:15.060000px;}
.ws1f{word-spacing:15.960000px;}
.ws1b{word-spacing:16.613270px;}
.ws3b{word-spacing:16.860000px;}
.wsb3{word-spacing:17.580000px;}
.ws49{word-spacing:17.820000px;}
.ws8d{word-spacing:18.000000px;}
.ws1d{word-spacing:19.668000px;}
.wsa6{word-spacing:20.160000px;}
.ws71{word-spacing:21.660000px;}
.wsdc{word-spacing:21.696000px;}
.wsae{word-spacing:26.760000px;}
.ws81{word-spacing:28.620000px;}
.wsc2{word-spacing:28.656000px;}
.wse2{word-spacing:73.056000px;}
._13{margin-left:-15.600000px;}
._9{margin-left:-13.332000px;}
._7{margin-left:-11.940000px;}
._4{margin-left:-5.070000px;}
._2{margin-left:-3.300000px;}
._0{margin-left:-1.632000px;}
._3{width:1.248000px;}
._1{width:2.332200px;}
._f{width:4.632000px;}
._6{width:6.918000px;}
._d{width:9.210001px;}
._b{width:10.740000px;}
._11{width:13.103964px;}
._e{width:14.976000px;}
._8{width:17.094000px;}
._a{width:18.660000px;}
._c{width:19.668000px;}
._12{width:21.427200px;}
._10{width:29.126400px;}
._14{width:56.255991px;}
._5{width:1244.159963px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:42.010200px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs9{font-size:60.014997px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs7{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y68{bottom:0.194687px;}
.y48{bottom:49.625399px;}
.y27{bottom:49.625999px;}
.y6{bottom:50.595005px;}
.y24{bottom:50.758198px;}
.y5{bottom:75.795004px;}
.y45{bottom:90.000000px;}
.yd5{bottom:90.797516px;}
.yf2{bottom:90.797562px;}
.yb2{bottom:91.202516px;}
.y4{bottom:100.995005px;}
.y85{bottom:107.672516px;}
.yd4{bottom:108.797516px;}
.yf1{bottom:108.797562px;}
.yb1{bottom:109.202516px;}
.y11a{bottom:113.105982px;}
.y84{bottom:125.672516px;}
.yd3{bottom:126.797516px;}
.yf0{bottom:126.797562px;}
.yb0{bottom:127.202516px;}
.y119{bottom:127.349982px;}
.y23{bottom:139.264499px;}
.y118{bottom:141.593982px;}
.y83{bottom:143.672516px;}
.yd2{bottom:144.797516px;}
.yef{bottom:144.797562px;}
.yaf{bottom:145.202516px;}
.y117{bottom:155.837982px;}
.y82{bottom:161.672516px;}
.y75{bottom:161.672539px;}
.yd1{bottom:162.797516px;}
.yee{bottom:162.797562px;}
.yae{bottom:163.202516px;}
.y116{bottom:170.081982px;}
.y81{bottom:179.672516px;}
.y74{bottom:179.672539px;}
.yd0{bottom:180.797516px;}
.yed{bottom:180.797562px;}
.yad{bottom:181.202516px;}
.y115{bottom:184.325982px;}
.y1a{bottom:196.933500px;}
.y80{bottom:197.672516px;}
.y73{bottom:197.672539px;}
.y114{bottom:198.569982px;}
.ycf{bottom:198.797516px;}
.yec{bottom:198.797562px;}
.yac{bottom:199.202516px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y113{bottom:212.813982px;}
.y7f{bottom:215.672516px;}
.y72{bottom:215.672539px;}
.yce{bottom:216.797516px;}
.yeb{bottom:216.797562px;}
.yab{bottom:217.202516px;}
.y14a{bottom:219.323516px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y112{bottom:227.057982px;}
.y149{bottom:233.567516px;}
.y7e{bottom:233.672516px;}
.y71{bottom:233.672539px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.ycd{bottom:234.797516px;}
.yea{bottom:234.797562px;}
.yaa{bottom:235.202516px;}
.y111{bottom:241.301982px;}
.y7d{bottom:251.672516px;}
.y70{bottom:251.672539px;}
.ycc{bottom:252.797516px;}
.ye9{bottom:252.797562px;}
.ya9{bottom:253.202516px;}
.y110{bottom:255.545982px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.y44{bottom:261.317093px;}
.y148{bottom:262.067516px;}
.y7c{bottom:269.672516px;}
.y6f{bottom:269.672539px;}
.y10f{bottom:269.789982px;}
.ycb{bottom:270.797516px;}
.ye8{bottom:270.797562px;}
.ya8{bottom:271.202516px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y147{bottom:276.311516px;}
.y43{bottom:279.317093px;}
.y10e{bottom:284.033982px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y7b{bottom:287.672516px;}
.y6e{bottom:287.672539px;}
.yca{bottom:288.797516px;}
.ye7{bottom:288.797562px;}
.ya7{bottom:289.202516px;}
.y146{bottom:290.555516px;}
.y10d{bottom:298.277982px;}
.y145{bottom:304.799516px;}
.y7a{bottom:305.672516px;}
.y6d{bottom:305.672539px;}
.yc9{bottom:306.797516px;}
.ye6{bottom:306.797562px;}
.ya6{bottom:307.202516px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y10c{bottom:312.521982px;}
.y42{bottom:316.067093px;}
.y144{bottom:319.043516px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.y79{bottom:323.672516px;}
.y6c{bottom:323.672539px;}
.yc8{bottom:324.797516px;}
.ye5{bottom:324.797562px;}
.ya5{bottom:325.202516px;}
.y10b{bottom:326.765982px;}
.y143{bottom:333.287516px;}
.y41{bottom:334.067093px;}
.y10a{bottom:341.009982px;}
.y6b{bottom:341.484009px;}
.y78{bottom:341.672516px;}
.y6a{bottom:341.672539px;}
.yc7{bottom:342.797516px;}
.ye4{bottom:342.797562px;}
.ya4{bottom:343.202516px;}
.y142{bottom:347.531516px;}
.y11{bottom:348.133500px;}
.y40{bottom:352.067093px;}
.y109{bottom:355.253982px;}
.y67{bottom:359.484009px;}
.y66{bottom:359.672516px;}
.y69{bottom:359.672539px;}
.yc6{bottom:360.797516px;}
.ye3{bottom:360.797562px;}
.ya3{bottom:361.202516px;}
.y141{bottom:361.775516px;}
.y108{bottom:369.497982px;}
.y3f{bottom:370.067093px;}
.y140{bottom:376.019516px;}
.y65{bottom:377.672516px;}
.yc5{bottom:378.797516px;}
.ye2{bottom:378.797562px;}
.ya2{bottom:379.202516px;}
.y107{bottom:383.741982px;}
.y10{bottom:386.785499px;}
.y3e{bottom:388.067093px;}
.y13f{bottom:390.263516px;}
.y64{bottom:395.672516px;}
.yc4{bottom:396.797516px;}
.ye1{bottom:396.797562px;}
.ya1{bottom:397.202516px;}
.y106{bottom:397.985982px;}
.y13e{bottom:404.507516px;}
.y3d{bottom:406.067093px;}
.yf{bottom:408.044999px;}
.y105{bottom:412.229982px;}
.y63{bottom:413.672516px;}
.yc3{bottom:414.797516px;}
.ye0{bottom:414.797562px;}
.ya0{bottom:415.202516px;}
.y13d{bottom:418.751516px;}
.y3c{bottom:424.067093px;}
.y104{bottom:426.473982px;}
.y62{bottom:431.672516px;}
.yc2{bottom:432.797516px;}
.ydf{bottom:432.797562px;}
.y13c{bottom:432.995516px;}
.y9f{bottom:433.202516px;}
.y103{bottom:440.717982px;}
.y3b{bottom:442.067093px;}
.y13b{bottom:447.239516px;}
.y61{bottom:449.672516px;}
.yc1{bottom:450.797516px;}
.yde{bottom:450.797562px;}
.y9e{bottom:451.202516px;}
.y102{bottom:454.961982px;}
.y3a{bottom:460.067093px;}
.y13a{bottom:461.483516px;}
.y60{bottom:467.672516px;}
.yc0{bottom:468.797516px;}
.ydd{bottom:468.797562px;}
.y9d{bottom:469.202516px;}
.y101{bottom:469.205982px;}
.y139{bottom:475.727516px;}
.y39{bottom:478.067093px;}
.y100{bottom:483.449982px;}
.ye{bottom:484.864502px;}
.y5f{bottom:485.672516px;}
.ybf{bottom:486.797516px;}
.ydc{bottom:486.797562px;}
.y9c{bottom:487.202516px;}
.y138{bottom:489.971516px;}
.y38{bottom:496.067093px;}
.yd{bottom:502.864502px;}
.y5e{bottom:503.672516px;}
.y137{bottom:504.215516px;}
.ybe{bottom:504.797516px;}
.ydb{bottom:504.797562px;}
.y9b{bottom:505.202516px;}
.y37{bottom:514.067093px;}
.yff{bottom:516.000000px;}
.y136{bottom:518.459516px;}
.yc{bottom:520.864502px;}
.y5d{bottom:521.672516px;}
.ybd{bottom:522.797516px;}
.yda{bottom:522.797562px;}
.y9a{bottom:523.202516px;}
.y36{bottom:532.067093px;}
.y135{bottom:532.703516px;}
.yb{bottom:538.864499px;}
.y5c{bottom:539.672516px;}
.ybc{bottom:540.797516px;}
.yd9{bottom:540.797562px;}
.y99{bottom:541.202516px;}
.y134{bottom:546.947516px;}
.y35{bottom:550.067093px;}
.ya{bottom:556.864499px;}
.y5b{bottom:557.672516px;}
.ybb{bottom:558.797516px;}
.yd8{bottom:558.797562px;}
.y98{bottom:559.202516px;}
.y133{bottom:561.191516px;}
.y34{bottom:568.067093px;}
.y132{bottom:575.435516px;}
.y5a{bottom:575.672516px;}
.yba{bottom:576.797516px;}
.yd7{bottom:576.797562px;}
.y97{bottom:577.202516px;}
.yfe{bottom:579.095562px;}
.y33{bottom:586.067093px;}
.y131{bottom:589.679516px;}
.yfd{bottom:593.339562px;}
.y59{bottom:593.672516px;}
.yb9{bottom:594.797516px;}
.y96{bottom:595.202516px;}
.y130{bottom:603.923516px;}
.y32{bottom:604.067093px;}
.yfc{bottom:607.583562px;}
.y58{bottom:611.672516px;}
.yb8{bottom:612.797516px;}
.yd6{bottom:612.797562px;}
.y95{bottom:613.202516px;}
.y12f{bottom:618.167516px;}
.yfb{bottom:621.827562px;}
.y31{bottom:622.067093px;}
.y57{bottom:629.672516px;}
.yb7{bottom:630.797516px;}
.y94{bottom:631.202516px;}
.y12e{bottom:632.411516px;}
.yfa{bottom:636.071562px;}
.y30{bottom:640.067093px;}
.y9{bottom:645.510000px;}
.y12d{bottom:646.655516px;}
.y56{bottom:647.672516px;}
.yb6{bottom:648.797516px;}
.yf9{bottom:650.315562px;}
.y2f{bottom:658.067093px;}
.y12c{bottom:660.899516px;}
.yf8{bottom:664.559562px;}
.y55{bottom:665.672516px;}
.y8{bottom:666.771000px;}
.yb5{bottom:666.797516px;}
.y93{bottom:667.202516px;}
.y12b{bottom:675.143516px;}
.y153{bottom:677.483688px;}
.yf7{bottom:678.803562px;}
.y54{bottom:683.672516px;}
.yb4{bottom:684.797516px;}
.y12a{bottom:689.387516px;}
.yf6{bottom:693.047562px;}
.y152{bottom:699.280930px;}
.y53{bottom:701.672516px;}
.yb3{bottom:702.797516px;}
.y129{bottom:703.631516px;}
.y2e{bottom:706.559696px;}
.y151{bottom:716.284061px;}
.y128{bottom:717.875516px;}
.y52{bottom:719.672516px;}
.y92{bottom:720.797516px;}
.y2d{bottom:720.803696px;}
.yf5{bottom:721.547562px;}
.y7{bottom:726.298500px;}
.y127{bottom:732.119516px;}
.y150{bottom:735.328033px;}
.y51{bottom:737.672516px;}
.y91{bottom:738.797516px;}
.y126{bottom:746.363516px;}
.yf4{bottom:750.047562px;}
.y3{bottom:752.599495px;}
.y50{bottom:755.672516px;}
.y90{bottom:756.797516px;}
.y14f{bottom:757.125320px;}
.y2c{bottom:758.652145px;}
.y125{bottom:760.607516px;}
.y4f{bottom:773.672516px;}
.y14e{bottom:774.128589px;}
.y8f{bottom:774.797516px;}
.y124{bottom:774.851516px;}
.yf3{bottom:782.297516px;}
.y123{bottom:789.095516px;}
.y4e{bottom:791.672516px;}
.y8e{bottom:792.797516px;}
.y14d{bottom:793.172516px;}
.y2b{bottom:801.392529px;}
.y122{bottom:803.339516px;}
.y4d{bottom:809.672516px;}
.y8d{bottom:810.797516px;}
.y14c{bottom:817.028736px;}
.y121{bottom:817.583516px;}
.y2a{bottom:823.895529px;}
.y4c{bottom:827.672516px;}
.y8c{bottom:828.797516px;}
.y14b{bottom:831.272736px;}
.y120{bottom:831.827516px;}
.y4b{bottom:845.672516px;}
.y11f{bottom:846.071516px;}
.y29{bottom:846.398529px;}
.y8b{bottom:846.797516px;}
.y11e{bottom:860.315516px;}
.y4a{bottom:863.672516px;}
.y8a{bottom:864.797516px;}
.y11d{bottom:874.559516px;}
.y2{bottom:879.369000px;}
.y77{bottom:881.671016px;}
.y89{bottom:882.797516px;}
.y11c{bottom:888.803516px;}
.y49{bottom:899.672516px;}
.y28{bottom:899.785217px;}
.y88{bottom:900.797516px;}
.y11b{bottom:903.047516px;}
.y26{bottom:925.867084px;}
.y76{bottom:939.670349px;}
.y87{bottom:940.110892px;}
.y47{bottom:940.111075px;}
.y25{bottom:940.111084px;}
.y86{bottom:940.626892px;}
.y46{bottom:940.627075px;}
.y1{bottom:966.726000px;}
.h17{height:10.348500px;}
.h15{height:10.500000px;}
.h1e{height:23.116800px;}
.h7{height:32.130000px;}
.h13{height:33.024000px;}
.ha{height:33.840000px;}
.h1d{height:34.687500px;}
.h18{height:40.570138px;}
.h11{height:41.280000px;}
.h16{height:41.290318px;}
.hb{height:42.048000px;}
.h1b{height:42.528000px;}
.h6{height:45.900000px;}
.hd{height:46.704000px;}
.h3{height:48.195000px;}
.h1c{height:49.104000px;}
.h12{height:53.160000px;}
.h19{height:53.640000px;}
.hc{height:54.862258px;}
.h2{height:55.080000px;}
.h10{height:59.340000px;}
.h1a{height:61.380000px;}
.h5{height:64.260000px;}
.hf{height:64.866000px;}
.h14{height:65.274000px;}
.he{height:69.108000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w6{width:26.969999px;}
.w5{width:36.990000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.xd{left:-1.671454px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x9{left:77.598450px;}
.xa{left:78.746400px;}
.x8{left:80.907303px;}
.xb{left:93.545402px;}
.x13{left:97.799400px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xc{left:153.810000px;}
.xe{left:191.024550px;}
.x4{left:203.484001px;}
.xf{left:414.195007px;}
.x10{left:441.389832px;}
.x3{left:454.959000px;}
.x5{left:485.858414px;}
.x7{left:521.631592px;}
.x12{left:571.119919px;}
.x11{left:576.819763px;}
@media print{
.v3{vertical-align:-17.066406pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:18.673096pt;}
.v1{vertical-align:21.333333pt;}
.ls7{letter-spacing:-0.746667pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.046996pt;}
.ls8{letter-spacing:0.746667pt;}
.ls3{letter-spacing:0.800000pt;}
.ls2{letter-spacing:1.066667pt;}
.ls4{letter-spacing:2.644852pt;}
.ls6{letter-spacing:2.644892pt;}
.ls1{letter-spacing:2.986667pt;}
.lsa{letter-spacing:11.097577pt;}
.ls5{letter-spacing:14.799650pt;}
.lsc{letter-spacing:19.268267pt;}
.ls9{letter-spacing:25.352533pt;}
.ws1a{word-spacing:-14.400000pt;}
.ws85{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.333333pt;}
.wsb8{word-spacing:-11.850667pt;}
.ws3{word-spacing:-11.818667pt;}
.ws4{word-spacing:-11.040000pt;}
.ws6{word-spacing:-10.773333pt;}
.wsb9{word-spacing:-10.666667pt;}
.ws8{word-spacing:-10.240000pt;}
.wscc{word-spacing:-10.026667pt;}
.ws2{word-spacing:-8.362667pt;}
.wsb7{word-spacing:-8.192000pt;}
.ws5{word-spacing:-7.728000pt;}
.wse1{word-spacing:-7.466667pt;}
.ws1c{word-spacing:-1.680000pt;}
.ws51{word-spacing:-1.280000pt;}
.ws21{word-spacing:-1.066667pt;}
.ws2e{word-spacing:-0.800000pt;}
.ws45{word-spacing:-0.746667pt;}
.ws37{word-spacing:-0.640000pt;}
.ws46{word-spacing:-0.586667pt;}
.ws9d{word-spacing:-0.533333pt;}
.ws39{word-spacing:-0.480000pt;}
.ws44{word-spacing:-0.426667pt;}
.ws7e{word-spacing:-0.320000pt;}
.wsc8{word-spacing:-0.298667pt;}
.ws6f{word-spacing:-0.266667pt;}
.ws18{word-spacing:-0.213333pt;}
.ws2c{word-spacing:-0.160000pt;}
.ws1{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.ws6e{word-spacing:0.053333pt;}
.wsc0{word-spacing:0.085333pt;}
.ws10{word-spacing:0.106667pt;}
.wsdd{word-spacing:0.128000pt;}
.wsa0{word-spacing:0.160000pt;}
.wsc7{word-spacing:0.170667pt;}
.ws2d{word-spacing:0.213333pt;}
.ws4f{word-spacing:0.266667pt;}
.ws98{word-spacing:0.320000pt;}
.wsda{word-spacing:0.341333pt;}
.ws9{word-spacing:0.373333pt;}
.wsc6{word-spacing:0.426667pt;}
.ws65{word-spacing:0.480000pt;}
.ws7c{word-spacing:0.533333pt;}
.ws58{word-spacing:0.586667pt;}
.ws32{word-spacing:0.693333pt;}
.ws3d{word-spacing:0.746667pt;}
.ws8b{word-spacing:0.800000pt;}
.ws97{word-spacing:0.853333pt;}
.wscb{word-spacing:0.896000pt;}
.ws59{word-spacing:0.906667pt;}
.ws82{word-spacing:1.013333pt;}
.wsde{word-spacing:1.024000pt;}
.wsb5{word-spacing:1.066667pt;}
.wsd5{word-spacing:1.109333pt;}
.wsd4{word-spacing:1.152000pt;}
.ws89{word-spacing:1.173333pt;}
.ws5f{word-spacing:1.226667pt;}
.wsd3{word-spacing:1.322667pt;}
.ws54{word-spacing:1.333333pt;}
.wsbf{word-spacing:1.408000pt;}
.ws77{word-spacing:1.440000pt;}
.ws78{word-spacing:1.546667pt;}
.wsbc{word-spacing:1.578667pt;}
.ws4a{word-spacing:1.600000pt;}
.wsdf{word-spacing:1.621333pt;}
.ws19{word-spacing:1.653333pt;}
.wsdb{word-spacing:1.749333pt;}
.wsbd{word-spacing:1.834667pt;}
.ws66{word-spacing:1.866667pt;}
.ws35{word-spacing:1.920000pt;}
.ws62{word-spacing:2.080000pt;}
.wse0{word-spacing:2.090667pt;}
.ws5d{word-spacing:2.133333pt;}
.ws61{word-spacing:2.293333pt;}
.wsd0{word-spacing:2.304000pt;}
.ws3e{word-spacing:2.346667pt;}
.ws3a{word-spacing:2.400000pt;}
.ws4c{word-spacing:2.453333pt;}
.ws2b{word-spacing:2.506667pt;}
.ws64{word-spacing:2.560000pt;}
.ws63{word-spacing:2.613333pt;}
.ws29{word-spacing:2.666667pt;}
.wsba{word-spacing:2.688000pt;}
.ws88{word-spacing:2.720000pt;}
.ws9a{word-spacing:2.773333pt;}
.wscd{word-spacing:2.816000pt;}
.ws7b{word-spacing:2.826667pt;}
.wsbe{word-spacing:2.901333pt;}
.ws86{word-spacing:2.933333pt;}
.wsa{word-spacing:3.040000pt;}
.wsc3{word-spacing:3.072000pt;}
.ws6d{word-spacing:3.093333pt;}
.ws1e{word-spacing:3.146667pt;}
.ws2a{word-spacing:3.200000pt;}
.ws28{word-spacing:3.253333pt;}
.ws7f{word-spacing:3.306667pt;}
.ws31{word-spacing:3.360000pt;}
.wsd1{word-spacing:3.370667pt;}
.ws36{word-spacing:3.413333pt;}
.wsbb{word-spacing:3.456000pt;}
.ws84{word-spacing:3.466667pt;}
.ws4d{word-spacing:3.520000pt;}
.wsaf{word-spacing:3.573333pt;}
.wsab{word-spacing:3.626667pt;}
.wsc9{word-spacing:3.669333pt;}
.wsa1{word-spacing:3.680000pt;}
.wsaa{word-spacing:3.733333pt;}
.wsf{word-spacing:3.786667pt;}
.wsd9{word-spacing:3.797333pt;}
.ws38{word-spacing:3.840000pt;}
.ws93{word-spacing:3.893333pt;}
.wsd7{word-spacing:3.925333pt;}
.ws41{word-spacing:4.053333pt;}
.ws60{word-spacing:4.106667pt;}
.ws13{word-spacing:4.160000pt;}
.ws56{word-spacing:4.213333pt;}
.ws3f{word-spacing:4.266667pt;}
.ws70{word-spacing:4.320000pt;}
.wsce{word-spacing:4.352000pt;}
.ws27{word-spacing:4.426667pt;}
.ws8c{word-spacing:4.586667pt;}
.ws12{word-spacing:4.746667pt;}
.ws6b{word-spacing:4.800000pt;}
.wsd8{word-spacing:4.821333pt;}
.ws33{word-spacing:4.906667pt;}
.wsb{word-spacing:4.960000pt;}
.wsc4{word-spacing:4.992000pt;}
.wsa9{word-spacing:5.066667pt;}
.ws3c{word-spacing:5.173333pt;}
.ws76{word-spacing:5.226667pt;}
.ws8a{word-spacing:5.280000pt;}
.ws6c{word-spacing:5.333333pt;}
.ws2f{word-spacing:5.386667pt;}
.ws15{word-spacing:5.440000pt;}
.ws24{word-spacing:5.493333pt;}
.wsb2{word-spacing:5.600000pt;}
.ws83{word-spacing:5.653333pt;}
.ws34{word-spacing:5.706667pt;}
.ws75{word-spacing:5.760000pt;}
.ws9f{word-spacing:5.813333pt;}
.ws17{word-spacing:5.920000pt;}
.ws79{word-spacing:5.973333pt;}
.ws40{word-spacing:6.026667pt;}
.ws8f{word-spacing:6.133333pt;}
.wsc1{word-spacing:6.229333pt;}
.ws67{word-spacing:6.346667pt;}
.wsca{word-spacing:6.357333pt;}
.ws26{word-spacing:6.400000pt;}
.wsd6{word-spacing:6.442667pt;}
.ws16{word-spacing:6.453333pt;}
.ws87{word-spacing:6.506667pt;}
.ws99{word-spacing:6.560000pt;}
.ws5e{word-spacing:6.613333pt;}
.ws48{word-spacing:6.773333pt;}
.ws20{word-spacing:6.880000pt;}
.ws53{word-spacing:6.933333pt;}
.ws14{word-spacing:6.986667pt;}
.ws68{word-spacing:7.040000pt;}
.ws4e{word-spacing:7.093333pt;}
.ws30{word-spacing:7.146667pt;}
.ws50{word-spacing:7.200000pt;}
.ws91{word-spacing:7.253333pt;}
.wsb4{word-spacing:7.306667pt;}
.ws4b{word-spacing:7.413333pt;}
.wsc{word-spacing:7.466667pt;}
.wsac{word-spacing:7.520000pt;}
.ws52{word-spacing:7.786667pt;}
.ws9c{word-spacing:7.840000pt;}
.ws25{word-spacing:7.893333pt;}
.ws8e{word-spacing:8.053333pt;}
.wsd2{word-spacing:8.064000pt;}
.ws72{word-spacing:8.106667pt;}
.ws6a{word-spacing:8.160000pt;}
.ws96{word-spacing:8.266667pt;}
.ws5b{word-spacing:8.426667pt;}
.wsa5{word-spacing:8.480000pt;}
.wsa3{word-spacing:8.586667pt;}
.wsa8{word-spacing:8.640000pt;}
.ws9e{word-spacing:8.693333pt;}
.wsd{word-spacing:8.746667pt;}
.ws57{word-spacing:8.800000pt;}
.wse{word-spacing:8.906667pt;}
.ws55{word-spacing:9.173333pt;}
.ws47{word-spacing:9.333333pt;}
.ws95{word-spacing:9.493333pt;}
.ws74{word-spacing:9.546667pt;}
.ws5a{word-spacing:9.653333pt;}
.ws43{word-spacing:9.706667pt;}
.wsb1{word-spacing:9.813333pt;}
.ws7d{word-spacing:9.866667pt;}
.ws42{word-spacing:10.080000pt;}
.wsa2{word-spacing:10.453333pt;}
.ws7a{word-spacing:10.506667pt;}
.ws9b{word-spacing:10.560000pt;}
.wsb6{word-spacing:10.613333pt;}
.wsa4{word-spacing:10.720000pt;}
.ws92{word-spacing:10.826667pt;}
.ws69{word-spacing:10.986667pt;}
.wsc5{word-spacing:11.008000pt;}
.ws90{word-spacing:11.200000pt;}
.wsa7{word-spacing:11.253333pt;}
.wsad{word-spacing:11.520000pt;}
.ws73{word-spacing:11.573333pt;}
.wscf{word-spacing:11.648000pt;}
.ws23{word-spacing:11.840000pt;}
.ws80{word-spacing:12.160000pt;}
.ws5c{word-spacing:12.266667pt;}
.wsb0{word-spacing:12.373333pt;}
.ws11{word-spacing:12.426667pt;}
.ws22{word-spacing:12.480000pt;}
.ws94{word-spacing:13.386667pt;}
.ws1f{word-spacing:14.186667pt;}
.ws1b{word-spacing:14.767351pt;}
.ws3b{word-spacing:14.986667pt;}
.wsb3{word-spacing:15.626667pt;}
.ws49{word-spacing:15.840000pt;}
.ws8d{word-spacing:16.000000pt;}
.ws1d{word-spacing:17.482667pt;}
.wsa6{word-spacing:17.920000pt;}
.ws71{word-spacing:19.253333pt;}
.wsdc{word-spacing:19.285333pt;}
.wsae{word-spacing:23.786667pt;}
.ws81{word-spacing:25.440000pt;}
.wsc2{word-spacing:25.472000pt;}
.wse2{word-spacing:64.938667pt;}
._13{margin-left:-13.866667pt;}
._9{margin-left:-11.850667pt;}
._7{margin-left:-10.613333pt;}
._4{margin-left:-4.506667pt;}
._2{margin-left:-2.933333pt;}
._0{margin-left:-1.450667pt;}
._3{width:1.109333pt;}
._1{width:2.073067pt;}
._f{width:4.117333pt;}
._6{width:6.149333pt;}
._d{width:8.186667pt;}
._b{width:9.546667pt;}
._11{width:11.647968pt;}
._e{width:13.312000pt;}
._8{width:15.194667pt;}
._a{width:16.586667pt;}
._c{width:17.482667pt;}
._12{width:19.046400pt;}
._10{width:25.890133pt;}
._14{width:50.005325pt;}
._5{width:1105.919967pt;}
.fsb{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:37.342400pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs9{font-size:53.346664pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs7{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y68{bottom:0.173055pt;}
.y48{bottom:44.111465pt;}
.y27{bottom:44.112000pt;}
.y6{bottom:44.973338pt;}
.y24{bottom:45.118398pt;}
.y5{bottom:67.373337pt;}
.y45{bottom:80.000000pt;}
.yd5{bottom:80.708903pt;}
.yf2{bottom:80.708944pt;}
.yb2{bottom:81.068903pt;}
.y4{bottom:89.773337pt;}
.y85{bottom:95.708903pt;}
.yd4{bottom:96.708903pt;}
.yf1{bottom:96.708944pt;}
.yb1{bottom:97.068903pt;}
.y11a{bottom:100.538650pt;}
.y84{bottom:111.708903pt;}
.yd3{bottom:112.708903pt;}
.yf0{bottom:112.708944pt;}
.yb0{bottom:113.068903pt;}
.y119{bottom:113.199984pt;}
.y23{bottom:123.790666pt;}
.y118{bottom:125.861317pt;}
.y83{bottom:127.708903pt;}
.yd2{bottom:128.708903pt;}
.yef{bottom:128.708944pt;}
.yaf{bottom:129.068903pt;}
.y117{bottom:138.522650pt;}
.y82{bottom:143.708903pt;}
.y75{bottom:143.708923pt;}
.yd1{bottom:144.708903pt;}
.yee{bottom:144.708944pt;}
.yae{bottom:145.068903pt;}
.y116{bottom:151.183984pt;}
.y81{bottom:159.708903pt;}
.y74{bottom:159.708923pt;}
.yd0{bottom:160.708903pt;}
.yed{bottom:160.708944pt;}
.yad{bottom:161.068903pt;}
.y115{bottom:163.845317pt;}
.y1a{bottom:175.052000pt;}
.y80{bottom:175.708903pt;}
.y73{bottom:175.708923pt;}
.y114{bottom:176.506650pt;}
.ycf{bottom:176.708903pt;}
.yec{bottom:176.708944pt;}
.yac{bottom:177.068903pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y113{bottom:189.167984pt;}
.y7f{bottom:191.708903pt;}
.y72{bottom:191.708923pt;}
.yce{bottom:192.708903pt;}
.yeb{bottom:192.708944pt;}
.yab{bottom:193.068903pt;}
.y14a{bottom:194.954236pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y112{bottom:201.829317pt;}
.y149{bottom:207.615570pt;}
.y7e{bottom:207.708903pt;}
.y71{bottom:207.708923pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.ycd{bottom:208.708903pt;}
.yea{bottom:208.708944pt;}
.yaa{bottom:209.068903pt;}
.y111{bottom:214.490650pt;}
.y7d{bottom:223.708903pt;}
.y70{bottom:223.708923pt;}
.ycc{bottom:224.708903pt;}
.ye9{bottom:224.708944pt;}
.ya9{bottom:225.068903pt;}
.y110{bottom:227.151984pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.y44{bottom:232.281860pt;}
.y148{bottom:232.948903pt;}
.y7c{bottom:239.708903pt;}
.y6f{bottom:239.708923pt;}
.y10f{bottom:239.813317pt;}
.ycb{bottom:240.708903pt;}
.ye8{bottom:240.708944pt;}
.ya8{bottom:241.068903pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y147{bottom:245.610236pt;}
.y43{bottom:248.281860pt;}
.y10e{bottom:252.474650pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y7b{bottom:255.708903pt;}
.y6e{bottom:255.708923pt;}
.yca{bottom:256.708903pt;}
.ye7{bottom:256.708944pt;}
.ya7{bottom:257.068903pt;}
.y146{bottom:258.271570pt;}
.y10d{bottom:265.135984pt;}
.y145{bottom:270.932903pt;}
.y7a{bottom:271.708903pt;}
.y6d{bottom:271.708923pt;}
.yc9{bottom:272.708903pt;}
.ye6{bottom:272.708944pt;}
.ya6{bottom:273.068903pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y10c{bottom:277.797317pt;}
.y42{bottom:280.948527pt;}
.y144{bottom:283.594236pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.y79{bottom:287.708903pt;}
.y6c{bottom:287.708923pt;}
.yc8{bottom:288.708903pt;}
.ye5{bottom:288.708944pt;}
.ya5{bottom:289.068903pt;}
.y10b{bottom:290.458650pt;}
.y143{bottom:296.255570pt;}
.y41{bottom:296.948527pt;}
.y10a{bottom:303.119984pt;}
.y6b{bottom:303.541341pt;}
.y78{bottom:303.708903pt;}
.y6a{bottom:303.708923pt;}
.yc7{bottom:304.708903pt;}
.ye4{bottom:304.708944pt;}
.ya4{bottom:305.068903pt;}
.y142{bottom:308.916903pt;}
.y11{bottom:309.452000pt;}
.y40{bottom:312.948527pt;}
.y109{bottom:315.781317pt;}
.y67{bottom:319.541341pt;}
.y66{bottom:319.708903pt;}
.y69{bottom:319.708923pt;}
.yc6{bottom:320.708903pt;}
.ye3{bottom:320.708944pt;}
.ya3{bottom:321.068903pt;}
.y141{bottom:321.578236pt;}
.y108{bottom:328.442650pt;}
.y3f{bottom:328.948527pt;}
.y140{bottom:334.239570pt;}
.y65{bottom:335.708903pt;}
.yc5{bottom:336.708903pt;}
.ye2{bottom:336.708944pt;}
.ya2{bottom:337.068903pt;}
.y107{bottom:341.103984pt;}
.y10{bottom:343.809333pt;}
.y3e{bottom:344.948527pt;}
.y13f{bottom:346.900903pt;}
.y64{bottom:351.708903pt;}
.yc4{bottom:352.708903pt;}
.ye1{bottom:352.708944pt;}
.ya1{bottom:353.068903pt;}
.y106{bottom:353.765317pt;}
.y13e{bottom:359.562236pt;}
.y3d{bottom:360.948527pt;}
.yf{bottom:362.706666pt;}
.y105{bottom:366.426650pt;}
.y63{bottom:367.708903pt;}
.yc3{bottom:368.708903pt;}
.ye0{bottom:368.708944pt;}
.ya0{bottom:369.068903pt;}
.y13d{bottom:372.223570pt;}
.y3c{bottom:376.948527pt;}
.y104{bottom:379.087984pt;}
.y62{bottom:383.708903pt;}
.yc2{bottom:384.708903pt;}
.ydf{bottom:384.708944pt;}
.y13c{bottom:384.884903pt;}
.y9f{bottom:385.068903pt;}
.y103{bottom:391.749317pt;}
.y3b{bottom:392.948527pt;}
.y13b{bottom:397.546236pt;}
.y61{bottom:399.708903pt;}
.yc1{bottom:400.708903pt;}
.yde{bottom:400.708944pt;}
.y9e{bottom:401.068903pt;}
.y102{bottom:404.410650pt;}
.y3a{bottom:408.948527pt;}
.y13a{bottom:410.207570pt;}
.y60{bottom:415.708903pt;}
.yc0{bottom:416.708903pt;}
.ydd{bottom:416.708944pt;}
.y9d{bottom:417.068903pt;}
.y101{bottom:417.071984pt;}
.y139{bottom:422.868903pt;}
.y39{bottom:424.948527pt;}
.y100{bottom:429.733317pt;}
.ye{bottom:430.990669pt;}
.y5f{bottom:431.708903pt;}
.ybf{bottom:432.708903pt;}
.ydc{bottom:432.708944pt;}
.y9c{bottom:433.068903pt;}
.y138{bottom:435.530236pt;}
.y38{bottom:440.948527pt;}
.yd{bottom:446.990669pt;}
.y5e{bottom:447.708903pt;}
.y137{bottom:448.191570pt;}
.ybe{bottom:448.708903pt;}
.ydb{bottom:448.708944pt;}
.y9b{bottom:449.068903pt;}
.y37{bottom:456.948527pt;}
.yff{bottom:458.666667pt;}
.y136{bottom:460.852903pt;}
.yc{bottom:462.990669pt;}
.y5d{bottom:463.708903pt;}
.ybd{bottom:464.708903pt;}
.yda{bottom:464.708944pt;}
.y9a{bottom:465.068903pt;}
.y36{bottom:472.948527pt;}
.y135{bottom:473.514236pt;}
.yb{bottom:478.990666pt;}
.y5c{bottom:479.708903pt;}
.ybc{bottom:480.708903pt;}
.yd9{bottom:480.708944pt;}
.y99{bottom:481.068903pt;}
.y134{bottom:486.175570pt;}
.y35{bottom:488.948527pt;}
.ya{bottom:494.990666pt;}
.y5b{bottom:495.708903pt;}
.ybb{bottom:496.708903pt;}
.yd8{bottom:496.708944pt;}
.y98{bottom:497.068903pt;}
.y133{bottom:498.836903pt;}
.y34{bottom:504.948527pt;}
.y132{bottom:511.498236pt;}
.y5a{bottom:511.708903pt;}
.yba{bottom:512.708903pt;}
.yd7{bottom:512.708944pt;}
.y97{bottom:513.068903pt;}
.yfe{bottom:514.751610pt;}
.y33{bottom:520.948527pt;}
.y131{bottom:524.159570pt;}
.yfd{bottom:527.412944pt;}
.y59{bottom:527.708903pt;}
.yb9{bottom:528.708903pt;}
.y96{bottom:529.068903pt;}
.y130{bottom:536.820903pt;}
.y32{bottom:536.948527pt;}
.yfc{bottom:540.074277pt;}
.y58{bottom:543.708903pt;}
.yb8{bottom:544.708903pt;}
.yd6{bottom:544.708944pt;}
.y95{bottom:545.068903pt;}
.y12f{bottom:549.482236pt;}
.yfb{bottom:552.735610pt;}
.y31{bottom:552.948527pt;}
.y57{bottom:559.708903pt;}
.yb7{bottom:560.708903pt;}
.y94{bottom:561.068903pt;}
.y12e{bottom:562.143570pt;}
.yfa{bottom:565.396944pt;}
.y30{bottom:568.948527pt;}
.y9{bottom:573.786667pt;}
.y12d{bottom:574.804903pt;}
.y56{bottom:575.708903pt;}
.yb6{bottom:576.708903pt;}
.yf9{bottom:578.058277pt;}
.y2f{bottom:584.948527pt;}
.y12c{bottom:587.466236pt;}
.yf8{bottom:590.719610pt;}
.y55{bottom:591.708903pt;}
.y8{bottom:592.685334pt;}
.yb5{bottom:592.708903pt;}
.y93{bottom:593.068903pt;}
.y12b{bottom:600.127570pt;}
.y153{bottom:602.207723pt;}
.yf7{bottom:603.380944pt;}
.y54{bottom:607.708903pt;}
.yb4{bottom:608.708903pt;}
.y12a{bottom:612.788903pt;}
.yf6{bottom:616.042277pt;}
.y152{bottom:621.583049pt;}
.y53{bottom:623.708903pt;}
.yb3{bottom:624.708903pt;}
.y129{bottom:625.450236pt;}
.y2e{bottom:628.053063pt;}
.y151{bottom:636.696943pt;}
.y128{bottom:638.111570pt;}
.y52{bottom:639.708903pt;}
.y92{bottom:640.708903pt;}
.y2d{bottom:640.714396pt;}
.yf5{bottom:641.375610pt;}
.y7{bottom:645.598667pt;}
.y127{bottom:650.772903pt;}
.y150{bottom:653.624919pt;}
.y51{bottom:655.708903pt;}
.y91{bottom:656.708903pt;}
.y126{bottom:663.434236pt;}
.yf4{bottom:666.708944pt;}
.y3{bottom:668.977329pt;}
.y50{bottom:671.708903pt;}
.y90{bottom:672.708903pt;}
.y14f{bottom:673.000285pt;}
.y2c{bottom:674.357463pt;}
.y125{bottom:676.095570pt;}
.y4f{bottom:687.708903pt;}
.y14e{bottom:688.114301pt;}
.y8f{bottom:688.708903pt;}
.y124{bottom:688.756903pt;}
.yf3{bottom:695.375570pt;}
.y123{bottom:701.418236pt;}
.y4e{bottom:703.708903pt;}
.y8e{bottom:704.708903pt;}
.y14d{bottom:705.042236pt;}
.y2b{bottom:712.348915pt;}
.y122{bottom:714.079570pt;}
.y4d{bottom:719.708903pt;}
.y8d{bottom:720.708903pt;}
.y14c{bottom:726.247765pt;}
.y121{bottom:726.740903pt;}
.y2a{bottom:732.351581pt;}
.y4c{bottom:735.708903pt;}
.y8c{bottom:736.708903pt;}
.y14b{bottom:738.909098pt;}
.y120{bottom:739.402236pt;}
.y4b{bottom:751.708903pt;}
.y11f{bottom:752.063570pt;}
.y29{bottom:752.354248pt;}
.y8b{bottom:752.708903pt;}
.y11e{bottom:764.724903pt;}
.y4a{bottom:767.708903pt;}
.y8a{bottom:768.708903pt;}
.y11d{bottom:777.386236pt;}
.y2{bottom:781.661334pt;}
.y77{bottom:783.707570pt;}
.y89{bottom:784.708903pt;}
.y11c{bottom:790.047570pt;}
.y49{bottom:799.708903pt;}
.y28{bottom:799.809082pt;}
.y88{bottom:800.708903pt;}
.y11b{bottom:802.708903pt;}
.y26{bottom:822.992964pt;}
.y76{bottom:835.262533pt;}
.y87{bottom:835.654126pt;}
.y47{bottom:835.654289pt;}
.y25{bottom:835.654297pt;}
.y86{bottom:836.112793pt;}
.y46{bottom:836.112956pt;}
.y1{bottom:859.312000pt;}
.h17{height:9.198667pt;}
.h15{height:9.333333pt;}
.h1e{height:20.548267pt;}
.h7{height:28.560000pt;}
.h13{height:29.354667pt;}
.ha{height:30.080000pt;}
.h1d{height:30.833333pt;}
.h18{height:36.062345pt;}
.h11{height:36.693333pt;}
.h16{height:36.702505pt;}
.hb{height:37.376000pt;}
.h1b{height:37.802667pt;}
.h6{height:40.800000pt;}
.hd{height:41.514667pt;}
.h3{height:42.840000pt;}
.h1c{height:43.648000pt;}
.h12{height:47.253333pt;}
.h19{height:47.680000pt;}
.hc{height:48.766452pt;}
.h2{height:48.960000pt;}
.h10{height:52.746667pt;}
.h1a{height:54.560000pt;}
.h5{height:57.120000pt;}
.hf{height:57.658667pt;}
.h14{height:58.021333pt;}
.he{height:61.429333pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w6{width:23.973333pt;}
.w5{width:32.880000pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.xd{left:-1.485737pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x9{left:68.976400pt;}
.xa{left:69.996800pt;}
.x8{left:71.917603pt;}
.xb{left:83.151469pt;}
.x13{left:86.932800pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xc{left:136.720000pt;}
.xe{left:169.799600pt;}
.x4{left:180.874667pt;}
.xf{left:368.173340pt;}
.x10{left:392.346517pt;}
.x3{left:404.408000pt;}
.x5{left:431.874146pt;}
.x7{left:463.672526pt;}
.x12{left:507.662150pt;}
.x11{left:512.728678pt;}
}




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