
    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_b1bc424b81c6d94728fd28f8.woff')format("woff");}.ff1{font-family:ff1;line-height:1.192383;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_8bda32dbd2702b095039fc71.woff')format("woff");}.ff2{font-family:ff2;line-height:0.958496;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_8394f24fc832c0a976904c14.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_76e674d4dd79a157432e6ba3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.191406;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_b9b2baa116d0e09ad4cc2a96.woff')format("woff");}.ff5{font-family:ff5;line-height:1.349000;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_abcf66ac4a14a3cd8b13efb1.woff')format("woff");}.ff6{font-family:ff6;line-height:0.958496;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_66c39947f778898dc73442d6.woff')format("woff");}.ff7{font-family:ff7;line-height:1.192383;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_afa88dd6600fce494ef3fde2.woff')format("woff");}.ff8{font-family:ff8;line-height:1.190918;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_3ec4a048718c7b4e37f37d57.woff')format("woff");}.ff9{font-family:ff9;line-height:1.362000;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_2541c0b259cc5b1df212318b.woff')format("woff");}.ffa{font-family:ffa;line-height:1.384000;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_771ad0457800ff6a959a9a98.woff')format("woff");}.ffb{font-family:ffb;line-height:0.908203;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:-18.629979px;}
.v4{vertical-align:-17.594991px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.629883px;}
.v1{vertical-align:20.700073px;}
.ls15{letter-spacing:-4.860000px;}
.ls14{letter-spacing:-4.284000px;}
.ls2c{letter-spacing:-4.185000px;}
.ls1a{letter-spacing:-4.116000px;}
.ls13{letter-spacing:-2.310000px;}
.ls28{letter-spacing:-1.080000px;}
.ls2a{letter-spacing:-1.035000px;}
.ls10{letter-spacing:-1.026000px;}
.ls2b{letter-spacing:-0.990000px;}
.ls22{letter-spacing:-0.855000px;}
.ls1c{letter-spacing:-0.648000px;}
.ls29{letter-spacing:-0.630000px;}
.ls18{letter-spacing:-0.546000px;}
.ls27{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.504000px;}
.lse{letter-spacing:-0.486000px;}
.ls21{letter-spacing:-0.450000px;}
.ls1b{letter-spacing:-0.432000px;}
.ls20{letter-spacing:-0.360000px;}
.ls1e{letter-spacing:-0.324000px;}
.ls16{letter-spacing:-0.210000px;}
.lsf{letter-spacing:-0.108000px;}
.lsd{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.000008px;}
.ls12{letter-spacing:0.000044px;}
.ls11{letter-spacing:0.000049px;}
.lsa{letter-spacing:0.000104px;}
.ls7{letter-spacing:0.010813px;}
.ls8{letter-spacing:0.011363px;}
.lsb{letter-spacing:0.011429px;}
.ls6{letter-spacing:0.011546px;}
.ls4{letter-spacing:0.013251px;}
.ls2{letter-spacing:0.013800px;}
.ls1{letter-spacing:0.014254px;}
.ls0{letter-spacing:0.014437px;}
.ls5{letter-spacing:0.014982px;}
.ls3{letter-spacing:0.015170px;}
.ls1f{letter-spacing:0.175866px;}
.ls24{letter-spacing:0.222012px;}
.ls26{letter-spacing:0.521572px;}
.ls1d{letter-spacing:0.756000px;}
.ls19{letter-spacing:0.966000px;}
.ls23{letter-spacing:2.859097px;}
.lsc{letter-spacing:3.000000px;}
.ls25{letter-spacing:3.793759px;}
.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;}
}
.ws2{word-spacing:-15.000000px;}
.ws4a{word-spacing:-13.596000px;}
.ws59{word-spacing:-13.122000px;}
.ws1d{word-spacing:-12.366000px;}
.ws1c{word-spacing:-12.258000px;}
.ws71{word-spacing:-11.934000px;}
.wsb4{word-spacing:-11.718000px;}
.ws1b{word-spacing:-11.232000px;}
.ws91{word-spacing:-10.215000px;}
.ws90{word-spacing:-9.765000px;}
.ws4d{word-spacing:-9.534000px;}
.ws92{word-spacing:-9.360000px;}
.wsb2{word-spacing:-9.315000px;}
.ws54{word-spacing:-9.030000px;}
.ws73{word-spacing:-8.988000px;}
.ws50{word-spacing:-8.904000px;}
.ws0{word-spacing:-8.580600px;}
.ws1{word-spacing:-7.140000px;}
.ws4b{word-spacing:-6.804000px;}
.wsb3{word-spacing:-6.120000px;}
.ws49{word-spacing:-5.508000px;}
.ws4c{word-spacing:-4.830000px;}
.wsb1{word-spacing:-4.230000px;}
.ws6{word-spacing:-4.080000px;}
.ws4{word-spacing:-3.744000px;}
.wsb{word-spacing:-3.294000px;}
.ws9d{word-spacing:-2.808000px;}
.ws2c{word-spacing:-2.754000px;}
.ws45{word-spacing:-2.700000px;}
.ws5{word-spacing:-2.640000px;}
.ws40{word-spacing:-2.430000px;}
.ws60{word-spacing:-2.376000px;}
.ws7{word-spacing:-2.340000px;}
.ws9f{word-spacing:-2.322000px;}
.ws2d{word-spacing:-2.214000px;}
.wsba{word-spacing:-2.160000px;}
.ws87{word-spacing:-2.106000px;}
.ws2e{word-spacing:-2.052000px;}
.ws8c{word-spacing:-1.944000px;}
.wsc{word-spacing:-1.890000px;}
.ws3b{word-spacing:-1.836000px;}
.ws33{word-spacing:-1.674000px;}
.wsc7{word-spacing:-1.620000px;}
.ws28{word-spacing:-1.404000px;}
.wsaf{word-spacing:-1.350000px;}
.ws9b{word-spacing:-1.296000px;}
.wsc4{word-spacing:-1.260000px;}
.ws22{word-spacing:-1.242000px;}
.wsa7{word-spacing:-1.215000px;}
.ws8a{word-spacing:-1.188000px;}
.ws46{word-spacing:-1.134000px;}
.ws43{word-spacing:-1.080000px;}
.ws2f{word-spacing:-1.026000px;}
.ws7f{word-spacing:-0.972000px;}
.ws62{word-spacing:-0.918000px;}
.ws23{word-spacing:-0.864000px;}
.ws19{word-spacing:-0.756000px;}
.wsa4{word-spacing:-0.720000px;}
.ws17{word-spacing:-0.648000px;}
.ws85{word-spacing:-0.594000px;}
.wsc6{word-spacing:-0.540000px;}
.wsc5{word-spacing:-0.495000px;}
.ws86{word-spacing:-0.432000px;}
.ws29{word-spacing:-0.378000px;}
.wsc8{word-spacing:-0.360000px;}
.ws96{word-spacing:-0.324000px;}
.wsc0{word-spacing:-0.315000px;}
.wsa3{word-spacing:-0.270000px;}
.ws24{word-spacing:-0.216000px;}
.ws3c{word-spacing:-0.162000px;}
.wsab{word-spacing:-0.090000px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.108000px;}
.wsb9{word-spacing:0.135000px;}
.ws6a{word-spacing:0.162000px;}
.wsa5{word-spacing:0.180000px;}
.wsa1{word-spacing:0.216000px;}
.wsb8{word-spacing:0.225000px;}
.ws9e{word-spacing:0.270000px;}
.ws97{word-spacing:0.324000px;}
.wsaa{word-spacing:0.360000px;}
.ws47{word-spacing:0.378000px;}
.ws6f{word-spacing:0.432000px;}
.wsa9{word-spacing:0.450000px;}
.ws69{word-spacing:0.486000px;}
.wsc9{word-spacing:0.495000px;}
.wsa6{word-spacing:0.540000px;}
.wsbe{word-spacing:0.630000px;}
.ws70{word-spacing:0.648000px;}
.ws5a{word-spacing:0.702000px;}
.ws13{word-spacing:0.810000px;}
.wsae{word-spacing:0.855000px;}
.ws82{word-spacing:0.864000px;}
.ws25{word-spacing:0.918000px;}
.wsac{word-spacing:0.990000px;}
.wse{word-spacing:1.080000px;}
.ws12{word-spacing:1.134000px;}
.wsb0{word-spacing:1.170000px;}
.ws64{word-spacing:1.188000px;}
.ws15{word-spacing:1.242000px;}
.ws1e{word-spacing:1.296000px;}
.ws11{word-spacing:1.350000px;}
.ws7e{word-spacing:1.404000px;}
.ws3e{word-spacing:1.458000px;}
.ws30{word-spacing:1.512000px;}
.wsd{word-spacing:1.566000px;}
.wsc2{word-spacing:1.575000px;}
.wsc3{word-spacing:1.620000px;}
.ws9c{word-spacing:1.674000px;}
.wsad{word-spacing:1.755000px;}
.wsce{word-spacing:1.944000px;}
.ws65{word-spacing:2.052000px;}
.wsbc{word-spacing:2.160000px;}
.ws6b{word-spacing:2.214000px;}
.wsc1{word-spacing:2.340000px;}
.ws81{word-spacing:2.376000px;}
.ws34{word-spacing:2.430000px;}
.wsbd{word-spacing:2.475000px;}
.wsa{word-spacing:2.484000px;}
.ws41{word-spacing:2.538000px;}
.ws88{word-spacing:2.592000px;}
.ws80{word-spacing:2.700000px;}
.wscf{word-spacing:2.754000px;}
.ws3d{word-spacing:2.808000px;}
.wsbf{word-spacing:2.835000px;}
.ws67{word-spacing:2.862000px;}
.wsb6{word-spacing:2.880000px;}
.wsca{word-spacing:2.916000px;}
.ws21{word-spacing:2.970000px;}
.wscb{word-spacing:3.024000px;}
.ws6c{word-spacing:3.078000px;}
.wscc{word-spacing:3.132000px;}
.ws27{word-spacing:3.186000px;}
.wsb7{word-spacing:3.195000px;}
.ws79{word-spacing:3.294000px;}
.ws8{word-spacing:3.348000px;}
.ws32{word-spacing:3.402000px;}
.ws7c{word-spacing:3.456000px;}
.ws42{word-spacing:3.618000px;}
.ws37{word-spacing:3.672000px;}
.ws6d{word-spacing:3.780000px;}
.ws5c{word-spacing:3.834000px;}
.ws5b{word-spacing:3.888000px;}
.ws63{word-spacing:3.942000px;}
.ws5f{word-spacing:3.996000px;}
.ws31{word-spacing:4.050000px;}
.ws16{word-spacing:4.158000px;}
.ws48{word-spacing:4.212000px;}
.ws98{word-spacing:4.266000px;}
.ws5d{word-spacing:4.320000px;}
.ws61{word-spacing:4.428000px;}
.ws8b{word-spacing:4.536000px;}
.ws68{word-spacing:4.698000px;}
.ws6e{word-spacing:4.860000px;}
.ws89{word-spacing:4.968000px;}
.ws36{word-spacing:5.022000px;}
.ws38{word-spacing:5.076000px;}
.ws8f{word-spacing:5.238000px;}
.ws93{word-spacing:5.292000px;}
.wscd{word-spacing:5.346000px;}
.ws3f{word-spacing:5.454000px;}
.ws5e{word-spacing:5.508000px;}
.ws20{word-spacing:5.562000px;}
.wsbb{word-spacing:5.580000px;}
.wsa0{word-spacing:5.670000px;}
.wsf{word-spacing:5.724000px;}
.ws7b{word-spacing:6.156000px;}
.ws44{word-spacing:6.210000px;}
.ws3a{word-spacing:6.372000px;}
.ws8e{word-spacing:6.426000px;}
.ws94{word-spacing:6.534000px;}
.ws9{word-spacing:6.750000px;}
.ws2a{word-spacing:6.912000px;}
.ws83{word-spacing:7.074000px;}
.ws10{word-spacing:7.128000px;}
.ws7d{word-spacing:7.182000px;}
.ws8d{word-spacing:7.290000px;}
.ws35{word-spacing:7.614000px;}
.ws2b{word-spacing:7.668000px;}
.ws66{word-spacing:8.046000px;}
.ws7a{word-spacing:8.100000px;}
.wsa2{word-spacing:8.262000px;}
.ws14{word-spacing:8.586000px;}
.wsa8{word-spacing:8.595000px;}
.ws39{word-spacing:9.180000px;}
.wsb5{word-spacing:9.630000px;}
.ws9a{word-spacing:9.774000px;}
.ws99{word-spacing:10.206000px;}
.ws18{word-spacing:10.692000px;}
.ws26{word-spacing:11.178000px;}
.ws1f{word-spacing:13.878000px;}
.ws84{word-spacing:14.364000px;}
.ws95{word-spacing:14.472000px;}
.ws53{word-spacing:31.472869px;}
.ws58{word-spacing:32.990971px;}
.ws77{word-spacing:32.990972px;}
.ws55{word-spacing:32.991059px;}
.ws56{word-spacing:32.991064px;}
.ws72{word-spacing:33.404360px;}
.ws51{word-spacing:33.405126px;}
.ws4e{word-spacing:33.862182px;}
.ws52{word-spacing:34.497614px;}
.ws78{word-spacing:41.426911px;}
.ws75{word-spacing:41.427006px;}
.ws76{word-spacing:61.587006px;}
.ws4f{word-spacing:153.147067px;}
.ws74{word-spacing:317.580575px;}
.ws57{word-spacing:350.168375px;}
._27{margin-left:-790.323758px;}
._e{margin-left:-597.725553px;}
._3c{margin-left:-19.267861px;}
._40{margin-left:-15.885000px;}
._3d{margin-left:-13.718473px;}
._43{margin-left:-12.375000px;}
._3e{margin-left:-10.768794px;}
._c{margin-left:-8.910000px;}
._1{margin-left:-7.238400px;}
._26{margin-left:-5.868000px;}
._5{margin-left:-4.833697px;}
._0{margin-left:-3.463200px;}
._2{margin-left:-2.202000px;}
._4{margin-left:-1.031400px;}
._7{width:1.225800px;}
._3{width:2.927425px;}
._d{width:4.815031px;}
._41{width:7.200000px;}
._3f{width:10.155554px;}
._a{width:11.844888px;}
._9{width:12.964200px;}
._8{width:14.217940px;}
._42{width:15.885000px;}
._6{width:17.086179px;}
._f{width:42.550893px;}
._1e{width:43.568943px;}
._17{width:46.647706px;}
._25{width:49.001434px;}
._1c{width:50.809211px;}
._18{width:53.833211px;}
._1a{width:55.334971px;}
._19{width:59.576971px;}
._1d{width:62.684886px;}
._22{width:63.728469px;}
._1f{width:68.181709px;}
._21{width:70.969852px;}
._3b{width:72.066834px;}
._23{width:76.119507px;}
._35{width:82.845149px;}
._2d{width:92.246350px;}
._2c{width:94.515017px;}
._2b{width:98.925022px;}
._14{width:100.939210px;}
._2f{width:103.796360px;}
._36{width:109.312230px;}
._10{width:113.665851px;}
._34{width:114.770290px;}
._32{width:118.989117px;}
._2a{width:123.956364px;}
._3a{width:145.134025px;}
._24{width:165.294029px;}
._28{width:174.478975px;}
._15{width:208.752601px;}
._16{width:222.737373px;}
._39{width:224.653134px;}
._11{width:228.911960px;}
._13{width:242.425731px;}
._20{width:244.813137px;}
._12{width:263.057468px;}
._37{width:305.167134px;}
._1b{width:306.763775px;}
._38{width:309.091734px;}
._33{width:312.158375px;}
._2e{width:315.182375px;}
._31{width:329.450375px;}
._29{width:352.226375px;}
._30{width:441.240602px;}
._b{width:2270.566829px;}
.fc3{color:rgb(205,23,25);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(217,228,235);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:35.699999px;}
.fs4{font-size:37.800000px;}
.fs2{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:60.000000px;}
.fs9{font-size:66.000000px;}
.fs7{font-size:108.000000px;}
.fs0{font-size:156.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:27.634050px;}
.y2f{bottom:27.643049px;}
.yd0{bottom:65.412900px;}
.y2c{bottom:68.031452px;}
.y98{bottom:70.152597px;}
.y10d{bottom:77.303850px;}
.y6f{bottom:79.980148px;}
.ycf{bottom:80.412900px;}
.y97{bottom:85.152597px;}
.y2b{bottom:87.430200px;}
.y10c{bottom:89.903852px;}
.y6e{bottom:94.980148px;}
.yce{bottom:95.412900px;}
.y96{bottom:100.152603px;}
.y10b{bottom:102.503849px;}
.y6d{bottom:109.980148px;}
.ycd{bottom:110.412895px;}
.y10a{bottom:115.103850px;}
.y95{bottom:115.152603px;}
.y6c{bottom:124.980148px;}
.ycc{bottom:125.412895px;}
.y109{bottom:127.703854px;}
.y94{bottom:130.152603px;}
.y14a{bottom:134.878944px;}
.y6b{bottom:139.980148px;}
.y108{bottom:140.303844px;}
.ycb{bottom:140.412895px;}
.y93{bottom:145.152603px;}
.y2a{bottom:145.329150px;}
.y149{bottom:149.878944px;}
.y107{bottom:152.903847px;}
.y6a{bottom:154.980148px;}
.yca{bottom:155.412895px;}
.y92{bottom:160.152603px;}
.y29{bottom:160.329150px;}
.y106{bottom:165.503849px;}
.yc9{bottom:170.412895px;}
.y148{bottom:172.447495px;}
.y91{bottom:175.152603px;}
.y28{bottom:175.329150px;}
.y105{bottom:178.103850px;}
.y69{bottom:184.980148px;}
.yc8{bottom:185.412895px;}
.y90{bottom:190.152603px;}
.y27{bottom:190.329150px;}
.y104{bottom:190.703854px;}
.y147{bottom:195.015907px;}
.y68{bottom:199.980148px;}
.yc7{bottom:200.412895px;}
.y103{bottom:203.303856px;}
.y8f{bottom:205.152603px;}
.y26{bottom:205.329140px;}
.y146{bottom:210.015907px;}
.y67{bottom:214.980148px;}
.yc6{bottom:215.412895px;}
.y102{bottom:215.903847px;}
.y8e{bottom:220.152603px;}
.y25{bottom:220.329140px;}
.y101{bottom:228.503860px;}
.y66{bottom:229.980148px;}
.yc5{bottom:230.412895px;}
.y8d{bottom:235.152603px;}
.y24{bottom:235.329140px;}
.y100{bottom:241.103850px;}
.y145{bottom:243.015907px;}
.y65{bottom:244.980148px;}
.yc4{bottom:245.412895px;}
.y8c{bottom:250.152603px;}
.y23{bottom:250.329140px;}
.yff{bottom:253.703842px;}
.y144{bottom:258.015907px;}
.y64{bottom:259.980148px;}
.yc3{bottom:260.412895px;}
.y8b{bottom:265.152603px;}
.y22{bottom:265.329140px;}
.yfe{bottom:266.303856px;}
.y143{bottom:273.015907px;}
.y63{bottom:274.980148px;}
.yc2{bottom:275.412895px;}
.yfd{bottom:278.903847px;}
.y8a{bottom:280.152603px;}
.y21{bottom:280.329140px;}
.y142{bottom:288.015907px;}
.y62{bottom:289.980148px;}
.yc1{bottom:290.412895px;}
.yfc{bottom:291.503860px;}
.y89{bottom:295.152603px;}
.y20{bottom:295.329140px;}
.y141{bottom:303.015907px;}
.yfb{bottom:304.103850px;}
.y61{bottom:304.980148px;}
.yc0{bottom:305.412895px;}
.y88{bottom:310.152603px;}
.y1f{bottom:310.329140px;}
.yfa{bottom:316.703842px;}
.y140{bottom:318.015907px;}
.ybf{bottom:320.412895px;}
.y87{bottom:325.152603px;}
.y1e{bottom:325.329140px;}
.yf9{bottom:329.303856px;}
.y60{bottom:334.980148px;}
.ybe{bottom:335.412895px;}
.y86{bottom:340.152740px;}
.y1d{bottom:340.329140px;}
.yf8{bottom:341.903847px;}
.y5f{bottom:349.980148px;}
.ybd{bottom:350.412895px;}
.y13f{bottom:351.015907px;}
.yf7{bottom:354.503860px;}
.y85{bottom:355.152740px;}
.y1c{bottom:355.329140px;}
.y5e{bottom:364.980148px;}
.ybc{bottom:365.412895px;}
.y13e{bottom:366.015907px;}
.y84{bottom:370.152740px;}
.y1b{bottom:370.329140px;}
.y5d{bottom:379.980148px;}
.ybb{bottom:380.412895px;}
.y13d{bottom:381.015907px;}
.y83{bottom:385.152740px;}
.y1a{bottom:385.329163px;}
.y5c{bottom:394.980148px;}
.yba{bottom:395.412918px;}
.y13c{bottom:396.015884px;}
.y82{bottom:400.152740px;}
.y19{bottom:400.329163px;}
.yf6{bottom:405.480148px;}
.y5b{bottom:409.980148px;}
.yb9{bottom:410.412918px;}
.y81{bottom:415.152740px;}
.y5a{bottom:424.980148px;}
.yb8{bottom:425.412918px;}
.y13b{bottom:429.015884px;}
.y80{bottom:430.152740px;}
.y18{bottom:433.329163px;}
.yf5{bottom:436.980148px;}
.y59{bottom:439.980148px;}
.yb7{bottom:440.412918px;}
.y13a{bottom:444.015884px;}
.y7f{bottom:445.152740px;}
.yf4{bottom:451.980148px;}
.y58{bottom:454.980148px;}
.yb6{bottom:455.412918px;}
.y7e{bottom:460.152740px;}
.y17{bottom:462.585022px;}
.yf3{bottom:466.980148px;}
.y57{bottom:469.980148px;}
.yb5{bottom:470.412918px;}
.y7d{bottom:475.152740px;}
.y139{bottom:477.015884px;}
.y16{bottom:479.085022px;}
.y56{bottom:484.980148px;}
.yb4{bottom:485.412918px;}
.y7c{bottom:490.152740px;}
.y15{bottom:495.585022px;}
.y55{bottom:499.980148px;}
.yb3{bottom:500.412918px;}
.y7b{bottom:505.152740px;}
.y138{bottom:510.015884px;}
.y14{bottom:512.085022px;}
.yf2{bottom:514.980148px;}
.yb2{bottom:515.412918px;}
.y7a{bottom:520.152740px;}
.y137{bottom:525.015884px;}
.y13{bottom:528.585022px;}
.y54{bottom:529.980148px;}
.yb1{bottom:530.412918px;}
.y79{bottom:535.152740px;}
.y53{bottom:544.980148px;}
.y12{bottom:545.085022px;}
.yb0{bottom:545.412918px;}
.y78{bottom:550.152740px;}
.y136{bottom:558.015884px;}
.y52{bottom:559.980148px;}
.yaf{bottom:560.412918px;}
.y11{bottom:561.585022px;}
.y77{bottom:565.152740px;}
.y135{bottom:573.015884px;}
.y51{bottom:574.980148px;}
.yae{bottom:575.412918px;}
.y10{bottom:578.085022px;}
.y76{bottom:580.152740px;}
.y134{bottom:588.015884px;}
.y50{bottom:589.980148px;}
.yad{bottom:590.412918px;}
.yf{bottom:594.585022px;}
.y75{bottom:595.152740px;}
.y133{bottom:603.015884px;}
.y4f{bottom:604.980148px;}
.yac{bottom:605.412918px;}
.y74{bottom:610.152740px;}
.ye{bottom:611.085022px;}
.y4e{bottom:619.980148px;}
.y73{bottom:625.152740px;}
.yd{bottom:627.585022px;}
.y4d{bottom:634.980148px;}
.y132{bottom:636.015884px;}
.yf1{bottom:637.980148px;}
.y72{bottom:640.152740px;}
.yc{bottom:644.085022px;}
.y131{bottom:648.615921px;}
.y4c{bottom:649.980148px;}
.yf0{bottom:652.980148px;}
.y71{bottom:655.152740px;}
.yb{bottom:660.585022px;}
.y130{bottom:661.215912px;}
.y4b{bottom:664.980148px;}
.ye4{bottom:665.730011px;}
.yef{bottom:667.980148px;}
.y12f{bottom:673.815903px;}
.ya{bottom:677.085022px;}
.y4a{bottom:679.980148px;}
.ye3{bottom:682.230011px;}
.yee{bottom:682.980148px;}
.y12e{bottom:686.415894px;}
.y9{bottom:693.585022px;}
.yed{bottom:697.980148px;}
.y12d{bottom:699.015884px;}
.y49{bottom:709.980148px;}
.y8{bottom:710.085022px;}
.y12c{bottom:711.615921px;}
.yec{bottom:712.980148px;}
.ye2{bottom:714.131836px;}
.ya0{bottom:715.469833px;}
.y12b{bottom:724.215912px;}
.y48{bottom:724.980148px;}
.yeb{bottom:727.980148px;}
.ye1{bottom:731.714859px;}
.y12a{bottom:736.815903px;}
.y7{bottom:739.978821px;}
.y47{bottom:739.980148px;}
.yea{bottom:742.980148px;}
.y9f{bottom:747.371704px;}
.y129{bottom:749.415894px;}
.ye0{bottom:749.467941px;}
.y46{bottom:754.980148px;}
.y6{bottom:757.978821px;}
.ye9{bottom:757.980148px;}
.y128{bottom:762.015884px;}
.y9e{bottom:764.954681px;}
.ydf{bottom:767.221069px;}
.y45{bottom:769.980194px;}
.ye8{bottom:772.980194px;}
.y127{bottom:774.615875px;}
.y5{bottom:775.978821px;}
.y9d{bottom:782.707764px;}
.yde{bottom:784.974152px;}
.y44{bottom:784.980194px;}
.y126{bottom:787.215912px;}
.ye7{bottom:787.980194px;}
.y125{bottom:799.815857px;}
.y43{bottom:799.980194px;}
.y9c{bottom:800.460937px;}
.ydd{bottom:802.727142px;}
.ye6{bottom:802.980194px;}
.y4{bottom:808.945679px;}
.y124{bottom:812.415894px;}
.ye5{bottom:817.980194px;}
.y9b{bottom:818.214020px;}
.ydc{bottom:820.480225px;}
.y123{bottom:825.015930px;}
.y42{bottom:832.980194px;}
.y9a{bottom:835.758636px;}
.y122{bottom:837.615875px;}
.ydb{bottom:838.233307px;}
.y41{bottom:847.980194px;}
.y121{bottom:850.215912px;}
.y99{bottom:853.141846px;}
.y3{bottom:853.945679px;}
.ya1{bottom:854.923645px;}
.yda{bottom:855.986389px;}
.y120{bottom:862.815857px;}
.y40{bottom:862.980194px;}
.yd9{bottom:873.739471px;}
.y11f{bottom:875.415894px;}
.y3f{bottom:877.980194px;}
.y11e{bottom:888.015930px;}
.yd8{bottom:891.492645px;}
.y3e{bottom:892.980194px;}
.y2{bottom:898.945679px;}
.y11d{bottom:900.615875px;}
.y3d{bottom:907.980194px;}
.yd7{bottom:909.245728px;}
.y11c{bottom:913.215912px;}
.yab{bottom:914.273071px;}
.y14b{bottom:921.780121px;}
.y3c{bottom:922.980194px;}
.y11b{bottom:925.815857px;}
.yd6{bottom:926.998627px;}
.yaa{bottom:930.773071px;}
.y3b{bottom:937.980194px;}
.y11a{bottom:938.415894px;}
.y1{bottom:943.945679px;}
.yd5{bottom:944.751709px;}
.y119{bottom:951.015930px;}
.y2d{bottom:952.050934px;}
.y3a{bottom:952.980194px;}
.yd4{bottom:962.504883px;}
.ya9{bottom:962.675079px;}
.y118{bottom:963.615875px;}
.y39{bottom:967.980194px;}
.y117{bottom:976.215912px;}
.yd3{bottom:980.257965px;}
.ya8{bottom:980.258057px;}
.y38{bottom:982.980194px;}
.y116{bottom:988.815857px;}
.y37{bottom:997.980194px;}
.yd2{bottom:998.011047px;}
.ya7{bottom:998.011230px;}
.y115{bottom:1001.415894px;}
.y36{bottom:1012.980194px;}
.y114{bottom:1014.015930px;}
.ya6{bottom:1015.764130px;}
.y113{bottom:1026.615875px;}
.y35{bottom:1027.980194px;}
.ya5{bottom:1033.517212px;}
.y112{bottom:1039.215912px;}
.y34{bottom:1042.980194px;}
.ya4{bottom:1051.270386px;}
.y111{bottom:1051.815857px;}
.y33{bottom:1057.980194px;}
.y110{bottom:1064.415894px;}
.yd1{bottom:1068.814911px;}
.ya3{bottom:1068.815094px;}
.y32{bottom:1072.980194px;}
.y10f{bottom:1077.015930px;}
.ya2{bottom:1086.198120px;}
.y31{bottom:1087.980194px;}
.y10e{bottom:1089.615875px;}
.y30{bottom:1140.708343px;}
.y70{bottom:1140.800079px;}
.hb{height:25.798827px;}
.hf{height:34.523438px;}
.h1b{height:35.411133px;}
.hc{height:36.681152px;}
.h5{height:38.838867px;}
.h16{height:41.538000px;}
.h15{height:43.008000px;}
.h10{height:43.154297px;}
.h1c{height:44.505000px;}
.h1e{height:45.090000px;}
.he{height:45.679688px;}
.h1d{height:46.080000px;}
.h4{height:51.416016px;}
.h7{height:53.406000px;}
.h14{height:54.108000px;}
.h17{height:55.296000px;}
.h11{height:56.013350px;}
.h6{height:56.014083px;}
.h1a{height:56.014174px;}
.ha{height:56.014179px;}
.h13{height:56.014220px;}
.h9{height:56.014225px;}
.h8{height:56.014266px;}
.h18{height:56.014815px;}
.h19{height:56.014907px;}
.h3{height:57.128906px;}
.h12{height:62.841797px;}
.hd{height:102.832031px;}
.h2{height:148.535156px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:61.653448px;}
.x3{left:140.352448px;}
.x1{left:233.858253px;}
.x9{left:238.570793px;}
.x2{left:251.858253px;}
.xe{left:252.992249px;}
.x7{left:336.810745px;}
.x5{left:338.775604px;}
.xa{left:350.093399px;}
.xb{left:449.602478px;}
.x8{left:464.843262px;}
.xc{left:482.743973px;}
.xd{left:526.275467px;}
.x6{left:585.853363px;}
@media print{
.v3{vertical-align:-16.559981pt;}
.v4{vertical-align:-15.639992pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.559896pt;}
.v1{vertical-align:18.400065pt;}
.ls15{letter-spacing:-4.320000pt;}
.ls14{letter-spacing:-3.808000pt;}
.ls2c{letter-spacing:-3.720000pt;}
.ls1a{letter-spacing:-3.658667pt;}
.ls13{letter-spacing:-2.053333pt;}
.ls28{letter-spacing:-0.960000pt;}
.ls2a{letter-spacing:-0.920000pt;}
.ls10{letter-spacing:-0.912000pt;}
.ls2b{letter-spacing:-0.880000pt;}
.ls22{letter-spacing:-0.760000pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls29{letter-spacing:-0.560000pt;}
.ls18{letter-spacing:-0.485333pt;}
.ls27{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.448000pt;}
.lse{letter-spacing:-0.432000pt;}
.ls21{letter-spacing:-0.400000pt;}
.ls1b{letter-spacing:-0.384000pt;}
.ls20{letter-spacing:-0.320000pt;}
.ls1e{letter-spacing:-0.288000pt;}
.ls16{letter-spacing:-0.186667pt;}
.lsf{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.000007pt;}
.ls12{letter-spacing:0.000039pt;}
.ls11{letter-spacing:0.000044pt;}
.lsa{letter-spacing:0.000092pt;}
.ls7{letter-spacing:0.009612pt;}
.ls8{letter-spacing:0.010100pt;}
.lsb{letter-spacing:0.010159pt;}
.ls6{letter-spacing:0.010263pt;}
.ls4{letter-spacing:0.011779pt;}
.ls2{letter-spacing:0.012267pt;}
.ls1{letter-spacing:0.012671pt;}
.ls0{letter-spacing:0.012833pt;}
.ls5{letter-spacing:0.013317pt;}
.ls3{letter-spacing:0.013484pt;}
.ls1f{letter-spacing:0.156326pt;}
.ls24{letter-spacing:0.197344pt;}
.ls26{letter-spacing:0.463620pt;}
.ls1d{letter-spacing:0.672000pt;}
.ls19{letter-spacing:0.858667pt;}
.ls23{letter-spacing:2.541419pt;}
.lsc{letter-spacing:2.666667pt;}
.ls25{letter-spacing:3.372230pt;}
.ws2{word-spacing:-13.333333pt;}
.ws4a{word-spacing:-12.085333pt;}
.ws59{word-spacing:-11.664000pt;}
.ws1d{word-spacing:-10.992000pt;}
.ws1c{word-spacing:-10.896000pt;}
.ws71{word-spacing:-10.608000pt;}
.wsb4{word-spacing:-10.416000pt;}
.ws1b{word-spacing:-9.984000pt;}
.ws91{word-spacing:-9.080000pt;}
.ws90{word-spacing:-8.680000pt;}
.ws4d{word-spacing:-8.474667pt;}
.ws92{word-spacing:-8.320000pt;}
.wsb2{word-spacing:-8.280000pt;}
.ws54{word-spacing:-8.026667pt;}
.ws73{word-spacing:-7.989333pt;}
.ws50{word-spacing:-7.914667pt;}
.ws0{word-spacing:-7.627200pt;}
.ws1{word-spacing:-6.346666pt;}
.ws4b{word-spacing:-6.048000pt;}
.wsb3{word-spacing:-5.440000pt;}
.ws49{word-spacing:-4.896000pt;}
.ws4c{word-spacing:-4.293333pt;}
.wsb1{word-spacing:-3.760000pt;}
.ws6{word-spacing:-3.626667pt;}
.ws4{word-spacing:-3.328000pt;}
.wsb{word-spacing:-2.928000pt;}
.ws9d{word-spacing:-2.496000pt;}
.ws2c{word-spacing:-2.448000pt;}
.ws45{word-spacing:-2.400000pt;}
.ws5{word-spacing:-2.346667pt;}
.ws40{word-spacing:-2.160000pt;}
.ws60{word-spacing:-2.112000pt;}
.ws7{word-spacing:-2.080000pt;}
.ws9f{word-spacing:-2.064000pt;}
.ws2d{word-spacing:-1.968000pt;}
.wsba{word-spacing:-1.920000pt;}
.ws87{word-spacing:-1.872000pt;}
.ws2e{word-spacing:-1.824000pt;}
.ws8c{word-spacing:-1.728000pt;}
.wsc{word-spacing:-1.680000pt;}
.ws3b{word-spacing:-1.632000pt;}
.ws33{word-spacing:-1.488000pt;}
.wsc7{word-spacing:-1.440000pt;}
.ws28{word-spacing:-1.248000pt;}
.wsaf{word-spacing:-1.200000pt;}
.ws9b{word-spacing:-1.152000pt;}
.wsc4{word-spacing:-1.120000pt;}
.ws22{word-spacing:-1.104000pt;}
.wsa7{word-spacing:-1.080000pt;}
.ws8a{word-spacing:-1.056000pt;}
.ws46{word-spacing:-1.008000pt;}
.ws43{word-spacing:-0.960000pt;}
.ws2f{word-spacing:-0.912000pt;}
.ws7f{word-spacing:-0.864000pt;}
.ws62{word-spacing:-0.816000pt;}
.ws23{word-spacing:-0.768000pt;}
.ws19{word-spacing:-0.672000pt;}
.wsa4{word-spacing:-0.640000pt;}
.ws17{word-spacing:-0.576000pt;}
.ws85{word-spacing:-0.528000pt;}
.wsc6{word-spacing:-0.480000pt;}
.wsc5{word-spacing:-0.440000pt;}
.ws86{word-spacing:-0.384000pt;}
.ws29{word-spacing:-0.336000pt;}
.wsc8{word-spacing:-0.320000pt;}
.ws96{word-spacing:-0.288000pt;}
.wsc0{word-spacing:-0.280000pt;}
.wsa3{word-spacing:-0.240000pt;}
.ws24{word-spacing:-0.192000pt;}
.ws3c{word-spacing:-0.144000pt;}
.wsab{word-spacing:-0.080000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.096000pt;}
.wsb9{word-spacing:0.120000pt;}
.ws6a{word-spacing:0.144000pt;}
.wsa5{word-spacing:0.160000pt;}
.wsa1{word-spacing:0.192000pt;}
.wsb8{word-spacing:0.200000pt;}
.ws9e{word-spacing:0.240000pt;}
.ws97{word-spacing:0.288000pt;}
.wsaa{word-spacing:0.320000pt;}
.ws47{word-spacing:0.336000pt;}
.ws6f{word-spacing:0.384000pt;}
.wsa9{word-spacing:0.400000pt;}
.ws69{word-spacing:0.432000pt;}
.wsc9{word-spacing:0.440000pt;}
.wsa6{word-spacing:0.480000pt;}
.wsbe{word-spacing:0.560000pt;}
.ws70{word-spacing:0.576000pt;}
.ws5a{word-spacing:0.624000pt;}
.ws13{word-spacing:0.720000pt;}
.wsae{word-spacing:0.760000pt;}
.ws82{word-spacing:0.768000pt;}
.ws25{word-spacing:0.816000pt;}
.wsac{word-spacing:0.880000pt;}
.wse{word-spacing:0.960000pt;}
.ws12{word-spacing:1.008000pt;}
.wsb0{word-spacing:1.040000pt;}
.ws64{word-spacing:1.056000pt;}
.ws15{word-spacing:1.104000pt;}
.ws1e{word-spacing:1.152000pt;}
.ws11{word-spacing:1.200000pt;}
.ws7e{word-spacing:1.248000pt;}
.ws3e{word-spacing:1.296000pt;}
.ws30{word-spacing:1.344000pt;}
.wsd{word-spacing:1.392000pt;}
.wsc2{word-spacing:1.400000pt;}
.wsc3{word-spacing:1.440000pt;}
.ws9c{word-spacing:1.488000pt;}
.wsad{word-spacing:1.560000pt;}
.wsce{word-spacing:1.728000pt;}
.ws65{word-spacing:1.824000pt;}
.wsbc{word-spacing:1.920000pt;}
.ws6b{word-spacing:1.968000pt;}
.wsc1{word-spacing:2.080000pt;}
.ws81{word-spacing:2.112000pt;}
.ws34{word-spacing:2.160000pt;}
.wsbd{word-spacing:2.200000pt;}
.wsa{word-spacing:2.208000pt;}
.ws41{word-spacing:2.256000pt;}
.ws88{word-spacing:2.304000pt;}
.ws80{word-spacing:2.400000pt;}
.wscf{word-spacing:2.448000pt;}
.ws3d{word-spacing:2.496000pt;}
.wsbf{word-spacing:2.520000pt;}
.ws67{word-spacing:2.544000pt;}
.wsb6{word-spacing:2.560000pt;}
.wsca{word-spacing:2.592000pt;}
.ws21{word-spacing:2.640000pt;}
.wscb{word-spacing:2.688000pt;}
.ws6c{word-spacing:2.736000pt;}
.wscc{word-spacing:2.784000pt;}
.ws27{word-spacing:2.832000pt;}
.wsb7{word-spacing:2.840000pt;}
.ws79{word-spacing:2.928000pt;}
.ws8{word-spacing:2.976000pt;}
.ws32{word-spacing:3.024000pt;}
.ws7c{word-spacing:3.072000pt;}
.ws42{word-spacing:3.216000pt;}
.ws37{word-spacing:3.264000pt;}
.ws6d{word-spacing:3.360000pt;}
.ws5c{word-spacing:3.408000pt;}
.ws5b{word-spacing:3.456000pt;}
.ws63{word-spacing:3.504000pt;}
.ws5f{word-spacing:3.552000pt;}
.ws31{word-spacing:3.600000pt;}
.ws16{word-spacing:3.696000pt;}
.ws48{word-spacing:3.744000pt;}
.ws98{word-spacing:3.792000pt;}
.ws5d{word-spacing:3.840000pt;}
.ws61{word-spacing:3.936000pt;}
.ws8b{word-spacing:4.032000pt;}
.ws68{word-spacing:4.176000pt;}
.ws6e{word-spacing:4.320000pt;}
.ws89{word-spacing:4.416000pt;}
.ws36{word-spacing:4.464000pt;}
.ws38{word-spacing:4.512000pt;}
.ws8f{word-spacing:4.656000pt;}
.ws93{word-spacing:4.704000pt;}
.wscd{word-spacing:4.752000pt;}
.ws3f{word-spacing:4.848000pt;}
.ws5e{word-spacing:4.896000pt;}
.ws20{word-spacing:4.944000pt;}
.wsbb{word-spacing:4.960000pt;}
.wsa0{word-spacing:5.040000pt;}
.wsf{word-spacing:5.088000pt;}
.ws7b{word-spacing:5.472000pt;}
.ws44{word-spacing:5.520000pt;}
.ws3a{word-spacing:5.664000pt;}
.ws8e{word-spacing:5.712000pt;}
.ws94{word-spacing:5.808000pt;}
.ws9{word-spacing:6.000000pt;}
.ws2a{word-spacing:6.144000pt;}
.ws83{word-spacing:6.288000pt;}
.ws10{word-spacing:6.336000pt;}
.ws7d{word-spacing:6.384000pt;}
.ws8d{word-spacing:6.480000pt;}
.ws35{word-spacing:6.768000pt;}
.ws2b{word-spacing:6.816000pt;}
.ws66{word-spacing:7.152000pt;}
.ws7a{word-spacing:7.200000pt;}
.wsa2{word-spacing:7.344000pt;}
.ws14{word-spacing:7.632000pt;}
.wsa8{word-spacing:7.640000pt;}
.ws39{word-spacing:8.160000pt;}
.wsb5{word-spacing:8.560000pt;}
.ws9a{word-spacing:8.688000pt;}
.ws99{word-spacing:9.072000pt;}
.ws18{word-spacing:9.504000pt;}
.ws26{word-spacing:9.936000pt;}
.ws1f{word-spacing:12.336000pt;}
.ws84{word-spacing:12.768000pt;}
.ws95{word-spacing:12.864000pt;}
.ws53{word-spacing:27.975884pt;}
.ws58{word-spacing:29.325307pt;}
.ws77{word-spacing:29.325308pt;}
.ws55{word-spacing:29.325385pt;}
.ws56{word-spacing:29.325390pt;}
.ws72{word-spacing:29.692764pt;}
.ws51{word-spacing:29.693445pt;}
.ws4e{word-spacing:30.099717pt;}
.ws52{word-spacing:30.664546pt;}
.ws78{word-spacing:36.823921pt;}
.ws75{word-spacing:36.824005pt;}
.ws76{word-spacing:54.744005pt;}
.ws4f{word-spacing:136.130727pt;}
.ws74{word-spacing:282.293844pt;}
.ws57{word-spacing:311.260777pt;}
._27{margin-left:-702.510007pt;}
._e{margin-left:-531.311602pt;}
._3c{margin-left:-17.126988pt;}
._40{margin-left:-14.120000pt;}
._3d{margin-left:-12.194198pt;}
._43{margin-left:-11.000000pt;}
._3e{margin-left:-9.572261pt;}
._c{margin-left:-7.920000pt;}
._1{margin-left:-6.434134pt;}
._26{margin-left:-5.216000pt;}
._5{margin-left:-4.296619pt;}
._0{margin-left:-3.078400pt;}
._2{margin-left:-1.957333pt;}
._4{margin-left:-0.916800pt;}
._7{width:1.089600pt;}
._3{width:2.602156pt;}
._d{width:4.280027pt;}
._41{width:6.400000pt;}
._3f{width:9.027159pt;}
._a{width:10.528789pt;}
._9{width:11.523733pt;}
._8{width:12.638169pt;}
._42{width:14.120000pt;}
._6{width:15.187715pt;}
._f{width:37.823016pt;}
._1e{width:38.727949pt;}
._17{width:41.464628pt;}
._25{width:43.556830pt;}
._1c{width:45.163743pt;}
._18{width:47.851743pt;}
._1a{width:49.186641pt;}
._19{width:52.957307pt;}
._1d{width:55.719899pt;}
._22{width:56.647528pt;}
._1f{width:60.605964pt;}
._21{width:63.084313pt;}
._3b{width:64.059408pt;}
._23{width:67.661784pt;}
._35{width:73.640132pt;}
._2d{width:81.996756pt;}
._2c{width:84.013348pt;}
._2b{width:87.933353pt;}
._14{width:89.723742pt;}
._2f{width:92.263431pt;}
._36{width:97.166427pt;}
._10{width:101.036312pt;}
._34{width:102.018035pt;}
._32{width:105.768104pt;}
._2a{width:110.183434pt;}
._3a{width:129.008022pt;}
._24{width:146.928026pt;}
._28{width:155.092422pt;}
._15{width:185.557868pt;}
._16{width:197.988776pt;}
._39{width:199.691674pt;}
._11{width:203.477298pt;}
._13{width:215.489539pt;}
._20{width:217.611678pt;}
._12{width:233.828861pt;}
._37{width:271.259674pt;}
._1b{width:272.678911pt;}
._38{width:274.748208pt;}
._33{width:277.474111pt;}
._2e{width:280.162111pt;}
._31{width:292.844777pt;}
._29{width:313.090111pt;}
._30{width:392.213868pt;}
._b{width:2018.281626pt;}
.fs5{font-size:31.733332pt;}
.fs4{font-size:33.600000pt;}
.fs2{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:53.333333pt;}
.fs9{font-size:58.666667pt;}
.fs7{font-size:96.000000pt;}
.fs0{font-size:138.666667pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:24.563600pt;}
.y2f{bottom:24.571599pt;}
.yd0{bottom:58.144800pt;}
.y2c{bottom:60.472402pt;}
.y98{bottom:62.357864pt;}
.y10d{bottom:68.714533pt;}
.y6f{bottom:71.093465pt;}
.ycf{bottom:71.478133pt;}
.y97{bottom:75.691198pt;}
.y2b{bottom:77.715733pt;}
.y10c{bottom:79.914536pt;}
.y6e{bottom:84.426799pt;}
.yce{bottom:84.811467pt;}
.y96{bottom:89.024536pt;}
.y10b{bottom:91.114532pt;}
.y6d{bottom:97.760132pt;}
.ycd{bottom:98.144796pt;}
.y10a{bottom:102.314533pt;}
.y95{bottom:102.357869pt;}
.y6c{bottom:111.093465pt;}
.ycc{bottom:111.478129pt;}
.y109{bottom:113.514537pt;}
.y94{bottom:115.691203pt;}
.y14a{bottom:119.892395pt;}
.y6b{bottom:124.426799pt;}
.y108{bottom:124.714528pt;}
.ycb{bottom:124.811462pt;}
.y93{bottom:129.024536pt;}
.y2a{bottom:129.181467pt;}
.y149{bottom:133.225728pt;}
.y107{bottom:135.914530pt;}
.y6a{bottom:137.760132pt;}
.yca{bottom:138.144796pt;}
.y92{bottom:142.357869pt;}
.y29{bottom:142.514800pt;}
.y106{bottom:147.114532pt;}
.yc9{bottom:151.478129pt;}
.y148{bottom:153.286662pt;}
.y91{bottom:155.691203pt;}
.y28{bottom:155.848133pt;}
.y105{bottom:158.314533pt;}
.y69{bottom:164.426799pt;}
.yc8{bottom:164.811462pt;}
.y90{bottom:169.024536pt;}
.y27{bottom:169.181467pt;}
.y104{bottom:169.514537pt;}
.y147{bottom:173.347473pt;}
.y68{bottom:177.760132pt;}
.yc7{bottom:178.144796pt;}
.y103{bottom:180.714539pt;}
.y8f{bottom:182.357869pt;}
.y26{bottom:182.514791pt;}
.y146{bottom:186.680806pt;}
.y67{bottom:191.093465pt;}
.yc6{bottom:191.478129pt;}
.y102{bottom:191.914530pt;}
.y8e{bottom:195.691203pt;}
.y25{bottom:195.848124pt;}
.y101{bottom:203.114543pt;}
.y66{bottom:204.426799pt;}
.yc5{bottom:204.811462pt;}
.y8d{bottom:209.024536pt;}
.y24{bottom:209.181458pt;}
.y100{bottom:214.314533pt;}
.y145{bottom:216.014140pt;}
.y65{bottom:217.760132pt;}
.yc4{bottom:218.144796pt;}
.y8c{bottom:222.357869pt;}
.y23{bottom:222.514791pt;}
.yff{bottom:225.514526pt;}
.y144{bottom:229.347473pt;}
.y64{bottom:231.093465pt;}
.yc3{bottom:231.478129pt;}
.y8b{bottom:235.691203pt;}
.y22{bottom:235.848124pt;}
.yfe{bottom:236.714539pt;}
.y143{bottom:242.680806pt;}
.y63{bottom:244.426799pt;}
.yc2{bottom:244.811462pt;}
.yfd{bottom:247.914530pt;}
.y8a{bottom:249.024536pt;}
.y21{bottom:249.181458pt;}
.y142{bottom:256.014140pt;}
.y62{bottom:257.760132pt;}
.yc1{bottom:258.144796pt;}
.yfc{bottom:259.114543pt;}
.y89{bottom:262.357869pt;}
.y20{bottom:262.514791pt;}
.y141{bottom:269.347473pt;}
.yfb{bottom:270.314533pt;}
.y61{bottom:271.093465pt;}
.yc0{bottom:271.478129pt;}
.y88{bottom:275.691203pt;}
.y1f{bottom:275.848124pt;}
.yfa{bottom:281.514526pt;}
.y140{bottom:282.680806pt;}
.ybf{bottom:284.811462pt;}
.y87{bottom:289.024536pt;}
.y1e{bottom:289.181458pt;}
.yf9{bottom:292.714539pt;}
.y60{bottom:297.760132pt;}
.ybe{bottom:298.144796pt;}
.y86{bottom:302.357992pt;}
.y1d{bottom:302.514791pt;}
.yf8{bottom:303.914530pt;}
.y5f{bottom:311.093465pt;}
.ybd{bottom:311.478129pt;}
.y13f{bottom:312.014140pt;}
.yf7{bottom:315.114543pt;}
.y85{bottom:315.691325pt;}
.y1c{bottom:315.848124pt;}
.y5e{bottom:324.426799pt;}
.ybc{bottom:324.811462pt;}
.y13e{bottom:325.347473pt;}
.y84{bottom:329.024658pt;}
.y1b{bottom:329.181458pt;}
.y5d{bottom:337.760132pt;}
.ybb{bottom:338.144796pt;}
.y13d{bottom:338.680806pt;}
.y83{bottom:342.357992pt;}
.y1a{bottom:342.514811pt;}
.y5c{bottom:351.093465pt;}
.yba{bottom:351.478149pt;}
.y13c{bottom:352.014119pt;}
.y82{bottom:355.691325pt;}
.y19{bottom:355.848145pt;}
.yf6{bottom:360.426799pt;}
.y5b{bottom:364.426799pt;}
.yb9{bottom:364.811483pt;}
.y81{bottom:369.024658pt;}
.y5a{bottom:377.760132pt;}
.yb8{bottom:378.144816pt;}
.y13b{bottom:381.347453pt;}
.y80{bottom:382.357992pt;}
.y18{bottom:385.181478pt;}
.yf5{bottom:388.426799pt;}
.y59{bottom:391.093465pt;}
.yb7{bottom:391.478149pt;}
.y13a{bottom:394.680786pt;}
.y7f{bottom:395.691325pt;}
.yf4{bottom:401.760132pt;}
.y58{bottom:404.426799pt;}
.yb6{bottom:404.811483pt;}
.y7e{bottom:409.024658pt;}
.y17{bottom:411.186686pt;}
.yf3{bottom:415.093465pt;}
.y57{bottom:417.760132pt;}
.yb5{bottom:418.144816pt;}
.y7d{bottom:422.357992pt;}
.y139{bottom:424.014119pt;}
.y16{bottom:425.853353pt;}
.y56{bottom:431.093465pt;}
.yb4{bottom:431.478149pt;}
.y7c{bottom:435.691325pt;}
.y15{bottom:440.520020pt;}
.y55{bottom:444.426799pt;}
.yb3{bottom:444.811483pt;}
.y7b{bottom:449.024658pt;}
.y138{bottom:453.347453pt;}
.y14{bottom:455.186686pt;}
.yf2{bottom:457.760132pt;}
.yb2{bottom:458.144816pt;}
.y7a{bottom:462.357992pt;}
.y137{bottom:466.680786pt;}
.y13{bottom:469.853353pt;}
.y54{bottom:471.093465pt;}
.yb1{bottom:471.478149pt;}
.y79{bottom:475.691325pt;}
.y53{bottom:484.426799pt;}
.y12{bottom:484.520020pt;}
.yb0{bottom:484.811483pt;}
.y78{bottom:489.024658pt;}
.y136{bottom:496.014119pt;}
.y52{bottom:497.760132pt;}
.yaf{bottom:498.144816pt;}
.y11{bottom:499.186686pt;}
.y77{bottom:502.357992pt;}
.y135{bottom:509.347453pt;}
.y51{bottom:511.093465pt;}
.yae{bottom:511.478149pt;}
.y10{bottom:513.853353pt;}
.y76{bottom:515.691325pt;}
.y134{bottom:522.680786pt;}
.y50{bottom:524.426799pt;}
.yad{bottom:524.811483pt;}
.yf{bottom:528.520020pt;}
.y75{bottom:529.024658pt;}
.y133{bottom:536.014119pt;}
.y4f{bottom:537.760132pt;}
.yac{bottom:538.144816pt;}
.y74{bottom:542.357992pt;}
.ye{bottom:543.186686pt;}
.y4e{bottom:551.093465pt;}
.y73{bottom:555.691325pt;}
.yd{bottom:557.853353pt;}
.y4d{bottom:564.426799pt;}
.y132{bottom:565.347453pt;}
.yf1{bottom:567.093465pt;}
.y72{bottom:569.024658pt;}
.yc{bottom:572.520020pt;}
.y131{bottom:576.547485pt;}
.y4c{bottom:577.760132pt;}
.yf0{bottom:580.426799pt;}
.y71{bottom:582.357992pt;}
.yb{bottom:587.186686pt;}
.y130{bottom:587.747477pt;}
.y4b{bottom:591.093465pt;}
.ye4{bottom:591.760010pt;}
.yef{bottom:593.760132pt;}
.y12f{bottom:598.947469pt;}
.ya{bottom:601.853353pt;}
.y4a{bottom:604.426799pt;}
.ye3{bottom:606.426676pt;}
.yee{bottom:607.093465pt;}
.y12e{bottom:610.147461pt;}
.y9{bottom:616.520020pt;}
.yed{bottom:620.426799pt;}
.y12d{bottom:621.347453pt;}
.y49{bottom:631.093465pt;}
.y8{bottom:631.186686pt;}
.y12c{bottom:632.547485pt;}
.yec{bottom:633.760132pt;}
.ye2{bottom:634.783854pt;}
.ya0{bottom:635.973185pt;}
.y12b{bottom:643.747477pt;}
.y48{bottom:644.426799pt;}
.yeb{bottom:647.093465pt;}
.ye1{bottom:650.413208pt;}
.y12a{bottom:654.947469pt;}
.y7{bottom:657.758952pt;}
.y47{bottom:657.760132pt;}
.yea{bottom:660.426799pt;}
.y9f{bottom:664.330404pt;}
.y129{bottom:666.147461pt;}
.ye0{bottom:666.193726pt;}
.y46{bottom:671.093465pt;}
.y6{bottom:673.758952pt;}
.ye9{bottom:673.760132pt;}
.y128{bottom:677.347453pt;}
.y9e{bottom:679.959717pt;}
.ydf{bottom:681.974284pt;}
.y45{bottom:684.426839pt;}
.ye8{bottom:687.093506pt;}
.y127{bottom:688.547445pt;}
.y5{bottom:689.758952pt;}
.y9d{bottom:695.740234pt;}
.yde{bottom:697.754801pt;}
.y44{bottom:697.760173pt;}
.y126{bottom:699.747477pt;}
.ye7{bottom:700.426839pt;}
.y125{bottom:710.947428pt;}
.y43{bottom:711.093506pt;}
.y9c{bottom:711.520833pt;}
.ydd{bottom:713.535238pt;}
.ye6{bottom:713.760173pt;}
.y4{bottom:719.062826pt;}
.y124{bottom:722.147461pt;}
.ye5{bottom:727.093506pt;}
.y9b{bottom:727.301351pt;}
.ydc{bottom:729.315755pt;}
.y123{bottom:733.347493pt;}
.y42{bottom:740.426839pt;}
.y9a{bottom:742.896566pt;}
.y122{bottom:744.547445pt;}
.ydb{bottom:745.096273pt;}
.y41{bottom:753.760173pt;}
.y121{bottom:755.747477pt;}
.y99{bottom:758.348307pt;}
.y3{bottom:759.062826pt;}
.ya1{bottom:759.932129pt;}
.yda{bottom:760.876790pt;}
.y120{bottom:766.947428pt;}
.y40{bottom:767.093506pt;}
.yd9{bottom:776.657308pt;}
.y11f{bottom:778.147461pt;}
.y3f{bottom:780.426839pt;}
.y11e{bottom:789.347493pt;}
.yd8{bottom:792.437907pt;}
.y3e{bottom:793.760173pt;}
.y2{bottom:799.062826pt;}
.y11d{bottom:800.547445pt;}
.y3d{bottom:807.093506pt;}
.yd7{bottom:808.218424pt;}
.y11c{bottom:811.747477pt;}
.yab{bottom:812.687174pt;}
.y14b{bottom:819.360107pt;}
.y3c{bottom:820.426839pt;}
.y11b{bottom:822.947428pt;}
.yd6{bottom:823.998779pt;}
.yaa{bottom:827.353841pt;}
.y3b{bottom:833.760173pt;}
.y11a{bottom:834.147461pt;}
.y1{bottom:839.062826pt;}
.yd5{bottom:839.779297pt;}
.y119{bottom:845.347493pt;}
.y2d{bottom:846.267497pt;}
.y3a{bottom:847.093506pt;}
.yd4{bottom:855.559896pt;}
.ya9{bottom:855.711182pt;}
.y118{bottom:856.547445pt;}
.y39{bottom:860.426839pt;}
.y117{bottom:867.747477pt;}
.yd3{bottom:871.340413pt;}
.ya8{bottom:871.340495pt;}
.y38{bottom:873.760173pt;}
.y116{bottom:878.947428pt;}
.y37{bottom:887.093506pt;}
.yd2{bottom:887.120931pt;}
.ya7{bottom:887.121094pt;}
.y115{bottom:890.147461pt;}
.y36{bottom:900.426839pt;}
.y114{bottom:901.347493pt;}
.ya6{bottom:902.901449pt;}
.y113{bottom:912.547445pt;}
.y35{bottom:913.760173pt;}
.ya5{bottom:918.681966pt;}
.y112{bottom:923.747477pt;}
.y34{bottom:927.093506pt;}
.ya4{bottom:934.462565pt;}
.y111{bottom:934.947428pt;}
.y33{bottom:940.426839pt;}
.y110{bottom:946.147461pt;}
.yd1{bottom:950.057699pt;}
.ya3{bottom:950.057861pt;}
.y32{bottom:953.760173pt;}
.y10f{bottom:957.347493pt;}
.ya2{bottom:965.509440pt;}
.y31{bottom:967.093506pt;}
.y10e{bottom:968.547445pt;}
.y30{bottom:1013.962972pt;}
.y70{bottom:1014.044515pt;}
.hb{height:22.932291pt;}
.hf{height:30.687500pt;}
.h1b{height:31.476562pt;}
.hc{height:32.605469pt;}
.h5{height:34.523438pt;}
.h16{height:36.922667pt;}
.h15{height:38.229333pt;}
.h10{height:38.359375pt;}
.h1c{height:39.560000pt;}
.h1e{height:40.080000pt;}
.he{height:40.604167pt;}
.h1d{height:40.960000pt;}
.h4{height:45.703125pt;}
.h7{height:47.472000pt;}
.h14{height:48.096000pt;}
.h17{height:49.152000pt;}
.h11{height:49.789645pt;}
.h6{height:49.790296pt;}
.h1a{height:49.790377pt;}
.ha{height:49.790381pt;}
.h13{height:49.790418pt;}
.h9{height:49.790422pt;}
.h8{height:49.790459pt;}
.h18{height:49.790947pt;}
.h19{height:49.791028pt;}
.h3{height:50.781250pt;}
.h12{height:55.859375pt;}
.hd{height:91.406250pt;}
.h2{height:132.031250pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:54.803065pt;}
.x3{left:124.757731pt;}
.x1{left:207.874003pt;}
.x9{left:212.062927pt;}
.x2{left:223.874003pt;}
.xe{left:224.881999pt;}
.x7{left:299.387329pt;}
.x5{left:301.133870pt;}
.xa{left:311.194132pt;}
.xb{left:399.646647pt;}
.x8{left:413.194010pt;}
.xc{left:429.105754pt;}
.xd{left:467.800415pt;}
.x6{left:520.758545pt;}
}




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