
    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_6fc7ca5e74351e2f24c7f844.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_ee030a44a4e47d18e538964f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_515cf939374944d73994896d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964865;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_1dd86f3c2219ef473188d718.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136719;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_91ec57f59261da2e9cf4f66e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_d8782fac546babbdcc81cbab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_1b4d0831bcb2923950f195a2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.031738;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_a1f8e9c2067ae9ff29685b27.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.026855;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_8d9d6a892d4ecb0925567e47.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_4a4328cbd7d7311954d66770.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973633;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_a9405e0f32fe184bf906bcdb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964868;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_2fb2698db87f8cad136fd11e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_91ddd489af0f243dd8b59c43.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964914;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_8b5037e228c7f035d1113f52.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.964863;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_e5c6931c17b1b744d05cf4db.woff2')format("woff");}.fff{font-family:fff;line-height:1.005371;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_009edf1702fedf2efbeeb5b0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.770020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.980600px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.ls14{letter-spacing:-7.236000px;}
.ls13{letter-spacing:-3.240000px;}
.ls8{letter-spacing:-1.200000px;}
.ls1c{letter-spacing:-1.080000px;}
.ls6{letter-spacing:-0.918000px;}
.ls7{letter-spacing:-0.900000px;}
.lsa{letter-spacing:-0.780000px;}
.ls5{letter-spacing:-0.691200px;}
.lsc{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.306000px;}
.lsd{letter-spacing:-0.180000px;}
.ls3{letter-spacing:-0.102000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.018000px;}
.ls1d{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.600000px;}
.ls19{letter-spacing:0.660000px;}
.lsf{letter-spacing:0.720000px;}
.ls15{letter-spacing:1.134000px;}
.ls1b{letter-spacing:1.200000px;}
.ls18{letter-spacing:1.350000px;}
.ls10{letter-spacing:2.484000px;}
.ls1a{letter-spacing:3.294000px;}
.ls17{letter-spacing:3.348000px;}
.lse{letter-spacing:3.375000px;}
.ls12{letter-spacing:3.699000px;}
.ls1{letter-spacing:5.346000px;}
.ls0{letter-spacing:6.804000px;}
.lsb{letter-spacing:25.140000px;}
.ls9{letter-spacing:216.624000px;}
.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;}
}
.ws4a{word-spacing:-60.000000px;}
.ws5{word-spacing:-48.000000px;}
.ws0{word-spacing:-25.092000px;}
.ws9{word-spacing:-17.928000px;}
.ws71{word-spacing:-16.962000px;}
.ws76{word-spacing:-16.434000px;}
.ws5e{word-spacing:-15.540000px;}
.ws69{word-spacing:-15.420000px;}
.ws7{word-spacing:-14.940000px;}
.ws3d{word-spacing:-14.880000px;}
.ws48{word-spacing:-14.820000px;}
.wsa{word-spacing:-14.700000px;}
.ws49{word-spacing:-14.640000px;}
.ws3c{word-spacing:-14.160000px;}
.ws91{word-spacing:-13.932000px;}
.ws1d{word-spacing:-13.800000px;}
.ws90{word-spacing:-13.770000px;}
.ws1e{word-spacing:-13.500000px;}
.ws64{word-spacing:-13.446000px;}
.ws81{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.230000px;}
.wsb{word-spacing:-12.366000px;}
.ws8d{word-spacing:-12.312000px;}
.wsf{word-spacing:-12.150000px;}
.wse{word-spacing:-12.042000px;}
.ws3e{word-spacing:-11.952000px;}
.ws3f{word-spacing:-11.904000px;}
.ws4{word-spacing:-11.596800px;}
.wsc{word-spacing:-11.448000px;}
.wsd{word-spacing:-11.232000px;}
.ws10{word-spacing:-10.992000px;}
.ws1c{word-spacing:-10.800000px;}
.ws63{word-spacing:-10.206000px;}
.ws6{word-spacing:-9.892800px;}
.ws3{word-spacing:-9.618000px;}
.ws2{word-spacing:-9.542544px;}
.ws62{word-spacing:-8.570100px;}
.ws65{word-spacing:-6.210000px;}
.ws8f{word-spacing:-4.536000px;}
.ws94{word-spacing:-4.266000px;}
.ws95{word-spacing:-3.780000px;}
.ws38{word-spacing:-3.600000px;}
.ws1a{word-spacing:-2.520000px;}
.ws5a{word-spacing:-2.214000px;}
.ws5b{word-spacing:-2.160000px;}
.ws27{word-spacing:-2.100000px;}
.ws77{word-spacing:-1.944000px;}
.ws33{word-spacing:-1.920000px;}
.ws78{word-spacing:-1.890000px;}
.ws32{word-spacing:-1.380000px;}
.ws2f{word-spacing:-1.260000px;}
.ws37{word-spacing:-1.200000px;}
.ws8b{word-spacing:-1.026000px;}
.ws2a{word-spacing:-0.840000px;}
.ws7c{word-spacing:-0.780000px;}
.ws5f{word-spacing:-0.720000px;}
.ws6a{word-spacing:-0.600000px;}
.ws16{word-spacing:-0.594000px;}
.ws85{word-spacing:-0.540000px;}
.ws79{word-spacing:-0.432000px;}
.ws6f{word-spacing:-0.240000px;}
.ws82{word-spacing:-0.180000px;}
.ws11{word-spacing:0.000000px;}
.ws4f{word-spacing:0.180000px;}
.ws21{word-spacing:0.300000px;}
.ws12{word-spacing:0.306000px;}
.ws4b{word-spacing:0.600000px;}
.ws13{word-spacing:0.691200px;}
.ws25{word-spacing:0.720000px;}
.ws1f{word-spacing:0.900000px;}
.ws1b{word-spacing:0.918000px;}
.ws8e{word-spacing:1.080000px;}
.ws68{word-spacing:1.134000px;}
.ws28{word-spacing:1.200000px;}
.ws26{word-spacing:1.260000px;}
.ws47{word-spacing:1.350000px;}
.ws46{word-spacing:1.380000px;}
.ws70{word-spacing:1.404000px;}
.ws7f{word-spacing:1.566000px;}
.ws80{word-spacing:1.620000px;}
.ws30{word-spacing:1.980000px;}
.ws36{word-spacing:2.160000px;}
.ws74{word-spacing:2.280000px;}
.ws8a{word-spacing:2.376000px;}
.ws22{word-spacing:2.400000px;}
.ws61{word-spacing:2.484000px;}
.ws60{word-spacing:2.538000px;}
.ws57{word-spacing:2.808000px;}
.ws56{word-spacing:2.862000px;}
.ws34{word-spacing:2.940000px;}
.ws75{word-spacing:3.294000px;}
.ws5d{word-spacing:3.348000px;}
.ws5c{word-spacing:3.402000px;}
.ws23{word-spacing:3.420000px;}
.ws2e{word-spacing:3.540000px;}
.ws67{word-spacing:3.672000px;}
.ws66{word-spacing:3.726000px;}
.ws35{word-spacing:3.780000px;}
.ws8c{word-spacing:3.942000px;}
.ws83{word-spacing:4.500000px;}
.ws84{word-spacing:4.800000px;}
.ws17{word-spacing:5.292000px;}
.ws18{word-spacing:5.400000px;}
.ws6b{word-spacing:5.580000px;}
.ws31{word-spacing:5.760000px;}
.ws4c{word-spacing:5.880000px;}
.ws3b{word-spacing:5.940000px;}
.ws2b{word-spacing:6.180000px;}
.ws20{word-spacing:6.600000px;}
.ws14{word-spacing:6.804000px;}
.ws15{word-spacing:6.912000px;}
.ws2d{word-spacing:7.140000px;}
.ws51{word-spacing:7.200000px;}
.ws6e{word-spacing:7.260000px;}
.ws3a{word-spacing:7.320000px;}
.ws29{word-spacing:7.380000px;}
.ws92{word-spacing:7.722000px;}
.ws59{word-spacing:8.316000px;}
.ws6c{word-spacing:8.400000px;}
.ws58{word-spacing:8.478000px;}
.ws7e{word-spacing:9.288000px;}
.ws7d{word-spacing:9.450000px;}
.ws2c{word-spacing:9.840000px;}
.ws89{word-spacing:9.990000px;}
.ws50{word-spacing:10.080000px;}
.ws45{word-spacing:11.820000px;}
.ws19{word-spacing:12.480000px;}
.ws6d{word-spacing:13.560000px;}
.ws88{word-spacing:16.362000px;}
.ws86{word-spacing:16.470000px;}
.ws93{word-spacing:17.496000px;}
.ws39{word-spacing:17.700000px;}
.ws24{word-spacing:19.440000px;}
.ws72{word-spacing:20.580000px;}
.ws87{word-spacing:23.112000px;}
.ws73{word-spacing:24.540000px;}
.ws4e{word-spacing:25.380000px;}
.ws4d{word-spacing:25.500000px;}
.ws42{word-spacing:25.872000px;}
.ws1{word-spacing:33.626202px;}
.ws7b{word-spacing:56.112000px;}
.ws41{word-spacing:113.472000px;}
.ws44{word-spacing:116.596800px;}
.ws7a{word-spacing:122.352000px;}
.ws40{word-spacing:191.232000px;}
.ws43{word-spacing:339.648000px;}
.ws52{word-spacing:419.136000px;}
.ws53{word-spacing:473.112000px;}
.ws54{word-spacing:537.984000px;}
.ws55{word-spacing:552.139200px;}
._76{margin-left:-15.228600px;}
._75{margin-left:-13.929000px;}
._f{margin-left:-11.199000px;}
._74{margin-left:-9.483000px;}
._8f{margin-left:-8.380800px;}
._3{margin-left:-7.280400px;}
._e{margin-left:-5.961600px;}
._5{margin-left:-4.649400px;}
._2{margin-left:-3.294600px;}
._0{margin-left:-1.377000px;}
._1{width:1.152600px;}
._6{width:2.686800px;}
._7{width:3.925800px;}
._8{width:5.335200px;}
._4{width:6.841800px;}
._d{width:8.412000px;}
._c{width:9.501000px;}
._11{width:11.070000px;}
._b{width:12.528000px;}
._4f{width:13.608000px;}
._8b{width:14.958000px;}
._14{width:16.272000px;}
._a{width:17.310000px;}
._12{width:18.594000px;}
._13{width:19.674000px;}
._9{width:20.778000px;}
._8c{width:22.373400px;}
._71{width:23.953200px;}
._4e{width:24.954600px;}
._70{width:26.220600px;}
._8d{width:28.150200px;}
._8e{width:29.359800px;}
._10{width:31.374000px;}
._90{width:32.397000px;}
._50{width:33.456000px;}
._89{width:42.343200px;}
._8a{width:43.653000px;}
._3a{width:47.424000px;}
._4c{width:49.488000px;}
._31{width:54.702600px;}
._7b{width:59.520000px;}
._1b{width:66.128400px;}
._18{width:67.440000px;}
._7c{width:68.592000px;}
._52{width:72.299400px;}
._82{width:75.936000px;}
._7d{width:77.088000px;}
._73{width:81.840000px;}
._72{width:87.480000px;}
._39{width:91.104000px;}
._2b{width:110.256000px;}
._79{width:115.536000px;}
._78{width:120.672000px;}
._77{width:125.808000px;}
._22{width:139.392000px;}
._51{width:151.392000px;}
._1c{width:152.880000px;}
._2c{width:187.488000px;}
._23{width:203.136000px;}
._27{width:205.422600px;}
._4a{width:211.632000px;}
._7e{width:213.056400px;}
._2a{width:214.752000px;}
._1e{width:216.624000px;}
._34{width:220.734600px;}
._30{width:224.766600px;}
._80{width:229.584000px;}
._2d{width:234.096000px;}
._86{width:237.120000px;}
._38{width:242.544000px;}
._1f{width:243.888000px;}
._87{width:245.664000px;}
._17{width:249.264000px;}
._1a{width:250.608000px;}
._32{width:255.360000px;}
._1d{width:258.512400px;}
._24{width:263.310600px;}
._4b{width:269.409000px;}
._3e{width:273.312000px;}
._40{width:280.929000px;}
._48{width:286.992000px;}
._36{width:300.384000px;}
._47{width:305.376000px;}
._3b{width:311.568000px;}
._20{width:315.888000px;}
._2e{width:317.472000px;}
._37{width:328.032000px;}
._49{width:330.240000px;}
._15{width:333.792000px;}
._3c{width:339.312000px;}
._42{width:343.152000px;}
._60{width:344.208000px;}
._3f{width:346.800000px;}
._5f{width:348.624000px;}
._45{width:352.800000px;}
._6b{width:354.576000px;}
._46{width:357.168000px;}
._2f{width:360.432000px;}
._5e{width:361.680000px;}
._41{width:368.688000px;}
._28{width:369.729000px;}
._61{width:372.480000px;}
._5b{width:374.736000px;}
._19{width:380.976000px;}
._5c{width:385.968000px;}
._69{width:391.920000px;}
._25{width:396.144000px;}
._26{width:399.600000px;}
._43{width:404.142600px;}
._16{width:410.400000px;}
._58{width:412.446600px;}
._3d{width:415.584000px;}
._29{width:418.560000px;}
._35{width:422.304000px;}
._53{width:424.464000px;}
._7f{width:442.737000px;}
._68{width:444.480000px;}
._44{width:448.320000px;}
._21{width:460.032000px;}
._54{width:465.072000px;}
._33{width:468.720000px;}
._59{width:478.560000px;}
._67{width:480.768000px;}
._7a{width:487.806600px;}
._64{width:491.040000px;}
._65{width:492.048000px;}
._85{width:537.888000px;}
._4d{width:546.096000px;}
._6e{width:587.998200px;}
._56{width:590.160000px;}
._63{width:591.744000px;}
._6c{width:604.032000px;}
._62{width:605.136000px;}
._5d{width:618.624000px;}
._6a{width:624.576000px;}
._84{width:632.529000px;}
._88{width:640.080000px;}
._81{width:641.664000px;}
._83{width:654.336000px;}
._55{width:701.808000px;}
._5a{width:728.784000px;}
._66{width:755.760000px;}
._6f{width:862.272000px;}
._57{width:865.920000px;}
._6d{width:892.896000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.040050px;}
.y39{bottom:94.318200px;}
.y197{bottom:112.790850px;}
.y167{bottom:112.820850px;}
.ybf{bottom:113.073600px;}
.y6b{bottom:113.078700px;}
.yd8{bottom:113.078850px;}
.y9d{bottom:117.674100px;}
.y11c{bottom:120.491700px;}
.yfb{bottom:120.491850px;}
.yf6{bottom:120.496200px;}
.yf8{bottom:120.496350px;}
.yef{bottom:126.179850px;}
.y196{bottom:133.796850px;}
.y166{bottom:133.826850px;}
.y13a{bottom:134.072700px;}
.ybe{bottom:134.073600px;}
.y6a{bottom:134.078700px;}
.yd7{bottom:134.078850px;}
.y29{bottom:138.212550px;}
.yc{bottom:138.219750px;}
.y9c{bottom:138.578100px;}
.y11b{bottom:140.296200px;}
.yfa{bottom:140.296350px;}
.yf5{bottom:140.300700px;}
.yf7{bottom:140.300850px;}
.y114{bottom:141.868950px;}
.y11f{bottom:144.019350px;}
.yee{bottom:145.984350px;}
.yb{bottom:152.616150px;}
.y195{bottom:154.802850px;}
.y165{bottom:154.832850px;}
.y139{bottom:155.072700px;}
.ybd{bottom:155.073600px;}
.y69{bottom:155.078700px;}
.yd6{bottom:155.078850px;}
.y28{bottom:159.212550px;}
.y9b{bottom:159.482100px;}
.y11a{bottom:160.100700px;}
.yf9{bottom:160.100850px;}
.y113{bottom:161.673450px;}
.y11e{bottom:163.823850px;}
.ya{bottom:167.012550px;}
.y194{bottom:175.808850px;}
.y164{bottom:175.838850px;}
.ybc{bottom:176.073600px;}
.yf0{bottom:176.078700px;}
.yd5{bottom:176.078850px;}
.y27{bottom:180.212550px;}
.y9a{bottom:180.386100px;}
.y9{bottom:181.412550px;}
.y11d{bottom:183.628350px;}
.y68{bottom:190.440900px;}
.y193{bottom:196.814850px;}
.y163{bottom:196.844850px;}
.ybb{bottom:197.073600px;}
.y100{bottom:197.078700px;}
.yd4{bottom:197.078850px;}
.y26{bottom:201.212550px;}
.y99{bottom:201.290100px;}
.y138{bottom:202.529250px;}
.y115{bottom:208.727400px;}
.y192{bottom:217.820850px;}
.y162{bottom:217.850850px;}
.yba{bottom:218.073600px;}
.yff{bottom:218.078700px;}
.yd3{bottom:218.078850px;}
.y98{bottom:222.194100px;}
.y25{bottom:222.212550px;}
.yfe{bottom:223.978800px;}
.y36{bottom:224.464650px;}
.yf4{bottom:236.736450px;}
.y191{bottom:238.826850px;}
.y161{bottom:238.856850px;}
.yb9{bottom:239.073600px;}
.y67{bottom:239.078700px;}
.yd2{bottom:239.078850px;}
.y35{bottom:242.460150px;}
.y97{bottom:243.098100px;}
.y24{bottom:243.212550px;}
.yfd{bottom:243.783300px;}
.y103{bottom:254.572350px;}
.yf3{bottom:256.540950px;}
.y190{bottom:259.832850px;}
.y160{bottom:259.862850px;}
.yb8{bottom:260.073600px;}
.y66{bottom:260.078700px;}
.yd1{bottom:260.078850px;}
.y34{bottom:260.455650px;}
.y118{bottom:262.426200px;}
.yfc{bottom:263.587800px;}
.y96{bottom:264.002100px;}
.y23{bottom:264.212550px;}
.y137{bottom:265.529250px;}
.y102{bottom:274.376850px;}
.y33{bottom:278.451150px;}
.y18f{bottom:280.838850px;}
.y15f{bottom:280.868850px;}
.yb7{bottom:281.073600px;}
.y65{bottom:281.078700px;}
.yd0{bottom:281.078850px;}
.y110{bottom:284.567550px;}
.y95{bottom:284.906100px;}
.y22{bottom:285.212550px;}
.y101{bottom:294.181350px;}
.y32{bottom:296.446650px;}
.y18e{bottom:301.844850px;}
.y15e{bottom:301.874850px;}
.y136{bottom:302.066700px;}
.yb6{bottom:302.073600px;}
.y64{bottom:302.078700px;}
.ycf{bottom:302.078850px;}
.y10f{bottom:304.372050px;}
.y94{bottom:305.810100px;}
.y21{bottom:306.212550px;}
.y31{bottom:314.442150px;}
.y18d{bottom:322.850850px;}
.y15d{bottom:322.880850px;}
.y135{bottom:323.072700px;}
.yb5{bottom:323.073600px;}
.y63{bottom:323.078700px;}
.yce{bottom:323.078850px;}
.y93{bottom:326.714100px;}
.y20{bottom:327.212550px;}
.y10e{bottom:330.571500px;}
.y18c{bottom:343.856850px;}
.y15c{bottom:343.886850px;}
.yb4{bottom:344.073600px;}
.y62{bottom:344.078700px;}
.ycd{bottom:344.078850px;}
.y92{bottom:347.618100px;}
.y1f{bottom:348.212550px;}
.y30{bottom:349.447650px;}
.y10d{bottom:350.376000px;}
.y18b{bottom:364.862850px;}
.y15b{bottom:364.892850px;}
.yb3{bottom:365.073600px;}
.y61{bottom:365.078700px;}
.ycc{bottom:365.078850px;}
.y2f{bottom:367.443150px;}
.y91{bottom:368.522100px;}
.y1e{bottom:369.212550px;}
.y134{bottom:370.529250px;}
.y2e{bottom:385.438650px;}
.y18a{bottom:385.868850px;}
.y15a{bottom:385.898850px;}
.yb2{bottom:386.073600px;}
.y60{bottom:386.078700px;}
.ycb{bottom:386.078850px;}
.y90{bottom:389.426100px;}
.y1d{bottom:390.212550px;}
.y189{bottom:406.874850px;}
.y159{bottom:406.904850px;}
.yb1{bottom:407.073600px;}
.y5f{bottom:407.078700px;}
.yca{bottom:407.078850px;}
.y8f{bottom:410.330100px;}
.y1c{bottom:411.212550px;}
.y2d{bottom:420.444150px;}
.y188{bottom:427.880850px;}
.y158{bottom:427.910850px;}
.yb0{bottom:428.073600px;}
.y5e{bottom:428.078700px;}
.yc9{bottom:428.078850px;}
.y8e{bottom:431.234100px;}
.y1b{bottom:432.212550px;}
.y133{bottom:433.529250px;}
.y2c{bottom:438.444150px;}
.y187{bottom:448.886850px;}
.y157{bottom:448.916850px;}
.yaf{bottom:449.073600px;}
.y5d{bottom:449.078700px;}
.yc8{bottom:449.078850px;}
.y119{bottom:450.761250px;}
.y8d{bottom:452.138100px;}
.y1a{bottom:453.212550px;}
.y2b{bottom:456.444150px;}
.y186{bottom:469.892850px;}
.y156{bottom:469.922850px;}
.yae{bottom:470.073600px;}
.y5c{bottom:470.078700px;}
.yc7{bottom:470.078850px;}
.y8c{bottom:473.042100px;}
.y2a{bottom:474.444150px;}
.y19{bottom:487.344450px;}
.y185{bottom:490.898850px;}
.y155{bottom:490.928850px;}
.yad{bottom:491.073600px;}
.y5b{bottom:491.078700px;}
.yc6{bottom:491.078850px;}
.y8b{bottom:493.946100px;}
.y132{bottom:496.529250px;}
.y184{bottom:511.904850px;}
.y154{bottom:511.934850px;}
.yac{bottom:512.073600px;}
.y5a{bottom:512.078700px;}
.yc5{bottom:512.078850px;}
.y8a{bottom:514.850100px;}
.y183{bottom:532.910850px;}
.y153{bottom:532.940850px;}
.yab{bottom:533.073600px;}
.y59{bottom:533.078700px;}
.yc4{bottom:533.078850px;}
.y89{bottom:535.754100px;}
.y182{bottom:553.916850px;}
.y152{bottom:553.946850px;}
.y58{bottom:554.078700px;}
.yc3{bottom:554.078850px;}
.y88{bottom:556.658100px;}
.y131{bottom:559.936950px;}
.y181{bottom:574.922850px;}
.y151{bottom:574.952850px;}
.yaa{bottom:575.073600px;}
.y57{bottom:575.078700px;}
.yc2{bottom:575.078850px;}
.y87{bottom:577.562100px;}
.y18{bottom:580.627950px;}
.y130{bottom:589.440900px;}
.y180{bottom:595.928850px;}
.y150{bottom:595.958850px;}
.ya9{bottom:596.073600px;}
.y56{bottom:596.078700px;}
.yc1{bottom:596.078850px;}
.y86{bottom:598.466100px;}
.y12e{bottom:614.224050px;}
.y17f{bottom:616.934850px;}
.y14f{bottom:616.964850px;}
.ya8{bottom:617.073600px;}
.y55{bottom:617.078700px;}
.yc0{bottom:617.078850px;}
.y85{bottom:619.370100px;}
.y17{bottom:621.651750px;}
.y17e{bottom:637.940850px;}
.y14e{bottom:637.970850px;}
.ya7{bottom:638.073600px;}
.y54{bottom:638.078700px;}
.y10c{bottom:638.078850px;}
.y12d{bottom:638.536050px;}
.y84{bottom:640.274100px;}
.y16{bottom:641.456250px;}
.y83{bottom:646.178100px;}
.y17d{bottom:658.946850px;}
.y14d{bottom:658.976850px;}
.ya6{bottom:659.073600px;}
.y53{bottom:659.078700px;}
.y10b{bottom:659.078850px;}
.y82{bottom:661.178100px;}
.y15{bottom:661.260750px;}
.y12c{bottom:662.848050px;}
.yed{bottom:664.467000px;}
.y17c{bottom:679.952850px;}
.y14c{bottom:679.982850px;}
.ya5{bottom:680.073600px;}
.y52{bottom:680.078700px;}
.y10a{bottom:680.078850px;}
.y14{bottom:681.065250px;}
.y81{bottom:682.382100px;}
.yec{bottom:686.823000px;}
.y12b{bottom:687.160050px;}
.y80{bottom:697.382100px;}
.y13{bottom:700.869750px;}
.y17b{bottom:700.958850px;}
.y14b{bottom:700.988850px;}
.ya4{bottom:701.073600px;}
.y51{bottom:701.078700px;}
.y109{bottom:701.078850px;}
.y7d{bottom:704.882100px;}
.yeb{bottom:709.179000px;}
.yf2{bottom:710.866800px;}
.y12a{bottom:711.472050px;}
.y7f{bottom:712.382100px;}
.y12{bottom:720.674250px;}
.y17a{bottom:721.964850px;}
.y14a{bottom:721.994850px;}
.y50{bottom:722.078700px;}
.y108{bottom:722.078850px;}
.y7e{bottom:727.382100px;}
.yf1{bottom:730.671300px;}
.yea{bottom:731.535000px;}
.y129{bottom:735.784050px;}
.y11{bottom:740.478750px;}
.y179{bottom:742.970850px;}
.y149{bottom:743.000850px;}
.ya3{bottom:743.073600px;}
.y4f{bottom:743.078700px;}
.y107{bottom:743.078850px;}
.ye9{bottom:753.891000px;}
.y7c{bottom:757.859400px;}
.y128{bottom:760.096050px;}
.y10{bottom:760.283250px;}
.y178{bottom:763.976850px;}
.y148{bottom:764.006850px;}
.ya2{bottom:764.073600px;}
.y4e{bottom:764.078700px;}
.y106{bottom:764.078850px;}
.ye8{bottom:776.247000px;}
.y117{bottom:777.139800px;}
.y7b{bottom:777.663900px;}
.y112{bottom:778.436550px;}
.yf{bottom:780.087750px;}
.y127{bottom:784.408050px;}
.y177{bottom:784.982850px;}
.y147{bottom:785.012850px;}
.ya1{bottom:785.073600px;}
.y4d{bottom:785.078700px;}
.y105{bottom:785.078850px;}
.y116{bottom:796.944300px;}
.ye7{bottom:798.603000px;}
.y111{bottom:799.441050px;}
.y176{bottom:805.988850px;}
.y146{bottom:806.018850px;}
.y4c{bottom:806.078700px;}
.y104{bottom:806.078850px;}
.y126{bottom:808.720050px;}
.ye{bottom:811.185300px;}
.ya0{bottom:819.513600px;}
.ye6{bottom:820.959000px;}
.y175{bottom:826.994850px;}
.y145{bottom:827.024850px;}
.y4b{bottom:827.078700px;}
.y7a{bottom:827.078850px;}
.y125{bottom:833.032050px;}
.y9f{bottom:840.513600px;}
.ye5{bottom:843.315000px;}
.y174{bottom:848.000850px;}
.y144{bottom:848.030850px;}
.y4a{bottom:848.078700px;}
.y79{bottom:848.078850px;}
.y124{bottom:857.344050px;}
.ye4{bottom:865.671000px;}
.y173{bottom:869.006850px;}
.y143{bottom:869.036850px;}
.y49{bottom:869.078700px;}
.y78{bottom:869.078850px;}
.y9e{bottom:872.811000px;}
.y123{bottom:881.656050px;}
.ye3{bottom:888.027000px;}
.y172{bottom:890.012850px;}
.y142{bottom:890.042850px;}
.y48{bottom:890.078700px;}
.y77{bottom:890.078850px;}
.y8{bottom:890.466750px;}
.y122{bottom:906.268050px;}
.y7{bottom:908.466750px;}
.ye2{bottom:910.383000px;}
.y171{bottom:911.018850px;}
.y141{bottom:911.048850px;}
.y47{bottom:911.078700px;}
.y76{bottom:911.078850px;}
.y6{bottom:926.466750px;}
.y170{bottom:932.024850px;}
.y140{bottom:932.054850px;}
.y46{bottom:932.078700px;}
.y75{bottom:932.078850px;}
.ye1{bottom:932.739000px;}
.y121{bottom:936.745500px;}
.y5{bottom:944.466750px;}
.y16f{bottom:953.030850px;}
.y13f{bottom:953.060850px;}
.y45{bottom:953.078700px;}
.y74{bottom:953.078850px;}
.ye0{bottom:955.095000px;}
.y120{bottom:956.550000px;}
.y16e{bottom:974.036850px;}
.y13e{bottom:974.066850px;}
.y44{bottom:974.078700px;}
.y73{bottom:974.078850px;}
.ydf{bottom:977.451000px;}
.y4{bottom:979.474800px;}
.y16d{bottom:995.042850px;}
.y13d{bottom:995.072850px;}
.y43{bottom:995.078700px;}
.y72{bottom:995.078850px;}
.yde{bottom:999.807000px;}
.y16c{bottom:1016.048850px;}
.y42{bottom:1016.078700px;}
.y71{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.ydd{bottom:1022.163000px;}
.y16b{bottom:1037.054850px;}
.y41{bottom:1037.078700px;}
.y70{bottom:1037.078850px;}
.ydc{bottom:1044.519000px;}
.y2{bottom:1049.282550px;}
.y13c{bottom:1051.440900px;}
.y16a{bottom:1058.060850px;}
.y40{bottom:1058.078700px;}
.y6f{bottom:1058.078850px;}
.ydb{bottom:1066.875000px;}
.y169{bottom:1079.066850px;}
.y3f{bottom:1079.078700px;}
.y6e{bottom:1079.078850px;}
.yda{bottom:1099.478400px;}
.y168{bottom:1100.072850px;}
.y3e{bottom:1100.078700px;}
.y6d{bottom:1100.078850px;}
.yd{bottom:1109.815500px;}
.y12f{bottom:1111.570800px;}
.yd9{bottom:1119.282900px;}
.y3d{bottom:1121.078700px;}
.y6c{bottom:1121.078850px;}
.y13b{bottom:1125.451800px;}
.y38{bottom:1159.189500px;}
.y37{bottom:1178.689500px;}
.y3c{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h12{height:36.492188px;}
.h10{height:38.226562px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.h11{height:43.546875px;}
.h9{height:45.615234px;}
.h13{height:48.134766px;}
.ha{height:48.990234px;}
.h15{height:49.014234px;}
.h14{height:50.176758px;}
.hc{height:54.433594px;}
.hb{height:54.738281px;}
.h4{height:59.876953px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.xa{left:107.071650px;}
.xc{left:108.285450px;}
.x13{left:112.268700px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x16{left:126.480150px;}
.xd{left:146.744700px;}
.x4{left:300.189000px;}
.xb{left:317.196900px;}
.x17{left:334.239000px;}
.x18{left:349.928400px;}
.x3{left:396.050700px;}
.x14{left:525.392700px;}
.x15{left:575.696700px;}
.x9{left:648.911400px;}
.x10{left:654.896700px;}
.xf{left:658.400700px;}
.xe{left:659.408700px;}
.x11{left:662.276700px;}
.x8{left:681.563400px;}
.x12{left:740.708700px;}
.x1{left:807.081450px;}
@media print{
.v2{vertical-align:-17.760533pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls14{letter-spacing:-6.432000pt;}
.ls13{letter-spacing:-2.880000pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls1c{letter-spacing:-0.960000pt;}
.ls6{letter-spacing:-0.816000pt;}
.ls7{letter-spacing:-0.800000pt;}
.lsa{letter-spacing:-0.693333pt;}
.ls5{letter-spacing:-0.614400pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.272000pt;}
.lsd{letter-spacing:-0.160000pt;}
.ls3{letter-spacing:-0.090667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.016000pt;}
.ls1d{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.533333pt;}
.ls19{letter-spacing:0.586667pt;}
.lsf{letter-spacing:0.640000pt;}
.ls15{letter-spacing:1.008000pt;}
.ls1b{letter-spacing:1.066667pt;}
.ls18{letter-spacing:1.200000pt;}
.ls10{letter-spacing:2.208000pt;}
.ls1a{letter-spacing:2.928000pt;}
.ls17{letter-spacing:2.976000pt;}
.lse{letter-spacing:3.000000pt;}
.ls12{letter-spacing:3.288000pt;}
.ls1{letter-spacing:4.752000pt;}
.ls0{letter-spacing:6.048000pt;}
.lsb{letter-spacing:22.346667pt;}
.ls9{letter-spacing:192.554667pt;}
.ws4a{word-spacing:-53.333333pt;}
.ws5{word-spacing:-42.666667pt;}
.ws0{word-spacing:-22.304000pt;}
.ws9{word-spacing:-15.936000pt;}
.ws71{word-spacing:-15.077333pt;}
.ws76{word-spacing:-14.608000pt;}
.ws5e{word-spacing:-13.813333pt;}
.ws69{word-spacing:-13.706667pt;}
.ws7{word-spacing:-13.280000pt;}
.ws3d{word-spacing:-13.226667pt;}
.ws48{word-spacing:-13.173333pt;}
.wsa{word-spacing:-13.066667pt;}
.ws49{word-spacing:-13.013333pt;}
.ws3c{word-spacing:-12.586667pt;}
.ws91{word-spacing:-12.384000pt;}
.ws1d{word-spacing:-12.266667pt;}
.ws90{word-spacing:-12.240000pt;}
.ws1e{word-spacing:-12.000000pt;}
.ws64{word-spacing:-11.952000pt;}
.ws81{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.760000pt;}
.wsb{word-spacing:-10.992000pt;}
.ws8d{word-spacing:-10.944000pt;}
.wsf{word-spacing:-10.800000pt;}
.wse{word-spacing:-10.704000pt;}
.ws3e{word-spacing:-10.624000pt;}
.ws3f{word-spacing:-10.581333pt;}
.ws4{word-spacing:-10.308267pt;}
.wsc{word-spacing:-10.176000pt;}
.wsd{word-spacing:-9.984000pt;}
.ws10{word-spacing:-9.770667pt;}
.ws1c{word-spacing:-9.600000pt;}
.ws63{word-spacing:-9.072000pt;}
.ws6{word-spacing:-8.793600pt;}
.ws3{word-spacing:-8.549333pt;}
.ws2{word-spacing:-8.482261pt;}
.ws62{word-spacing:-7.617867pt;}
.ws65{word-spacing:-5.520000pt;}
.ws8f{word-spacing:-4.032000pt;}
.ws94{word-spacing:-3.792000pt;}
.ws95{word-spacing:-3.360000pt;}
.ws38{word-spacing:-3.200000pt;}
.ws1a{word-spacing:-2.240000pt;}
.ws5a{word-spacing:-1.968000pt;}
.ws5b{word-spacing:-1.920000pt;}
.ws27{word-spacing:-1.866667pt;}
.ws77{word-spacing:-1.728000pt;}
.ws33{word-spacing:-1.706667pt;}
.ws78{word-spacing:-1.680000pt;}
.ws32{word-spacing:-1.226667pt;}
.ws2f{word-spacing:-1.120000pt;}
.ws37{word-spacing:-1.066667pt;}
.ws8b{word-spacing:-0.912000pt;}
.ws2a{word-spacing:-0.746667pt;}
.ws7c{word-spacing:-0.693333pt;}
.ws5f{word-spacing:-0.640000pt;}
.ws6a{word-spacing:-0.533333pt;}
.ws16{word-spacing:-0.528000pt;}
.ws85{word-spacing:-0.480000pt;}
.ws79{word-spacing:-0.384000pt;}
.ws6f{word-spacing:-0.213333pt;}
.ws82{word-spacing:-0.160000pt;}
.ws11{word-spacing:0.000000pt;}
.ws4f{word-spacing:0.160000pt;}
.ws21{word-spacing:0.266667pt;}
.ws12{word-spacing:0.272000pt;}
.ws4b{word-spacing:0.533333pt;}
.ws13{word-spacing:0.614400pt;}
.ws25{word-spacing:0.640000pt;}
.ws1f{word-spacing:0.800000pt;}
.ws1b{word-spacing:0.816000pt;}
.ws8e{word-spacing:0.960000pt;}
.ws68{word-spacing:1.008000pt;}
.ws28{word-spacing:1.066667pt;}
.ws26{word-spacing:1.120000pt;}
.ws47{word-spacing:1.200000pt;}
.ws46{word-spacing:1.226667pt;}
.ws70{word-spacing:1.248000pt;}
.ws7f{word-spacing:1.392000pt;}
.ws80{word-spacing:1.440000pt;}
.ws30{word-spacing:1.760000pt;}
.ws36{word-spacing:1.920000pt;}
.ws74{word-spacing:2.026667pt;}
.ws8a{word-spacing:2.112000pt;}
.ws22{word-spacing:2.133333pt;}
.ws61{word-spacing:2.208000pt;}
.ws60{word-spacing:2.256000pt;}
.ws57{word-spacing:2.496000pt;}
.ws56{word-spacing:2.544000pt;}
.ws34{word-spacing:2.613333pt;}
.ws75{word-spacing:2.928000pt;}
.ws5d{word-spacing:2.976000pt;}
.ws5c{word-spacing:3.024000pt;}
.ws23{word-spacing:3.040000pt;}
.ws2e{word-spacing:3.146667pt;}
.ws67{word-spacing:3.264000pt;}
.ws66{word-spacing:3.312000pt;}
.ws35{word-spacing:3.360000pt;}
.ws8c{word-spacing:3.504000pt;}
.ws83{word-spacing:4.000000pt;}
.ws84{word-spacing:4.266667pt;}
.ws17{word-spacing:4.704000pt;}
.ws18{word-spacing:4.800000pt;}
.ws6b{word-spacing:4.960000pt;}
.ws31{word-spacing:5.120000pt;}
.ws4c{word-spacing:5.226667pt;}
.ws3b{word-spacing:5.280000pt;}
.ws2b{word-spacing:5.493333pt;}
.ws20{word-spacing:5.866667pt;}
.ws14{word-spacing:6.048000pt;}
.ws15{word-spacing:6.144000pt;}
.ws2d{word-spacing:6.346667pt;}
.ws51{word-spacing:6.400000pt;}
.ws6e{word-spacing:6.453333pt;}
.ws3a{word-spacing:6.506667pt;}
.ws29{word-spacing:6.560000pt;}
.ws92{word-spacing:6.864000pt;}
.ws59{word-spacing:7.392000pt;}
.ws6c{word-spacing:7.466667pt;}
.ws58{word-spacing:7.536000pt;}
.ws7e{word-spacing:8.256000pt;}
.ws7d{word-spacing:8.400000pt;}
.ws2c{word-spacing:8.746667pt;}
.ws89{word-spacing:8.880000pt;}
.ws50{word-spacing:8.960000pt;}
.ws45{word-spacing:10.506667pt;}
.ws19{word-spacing:11.093333pt;}
.ws6d{word-spacing:12.053333pt;}
.ws88{word-spacing:14.544000pt;}
.ws86{word-spacing:14.640000pt;}
.ws93{word-spacing:15.552000pt;}
.ws39{word-spacing:15.733333pt;}
.ws24{word-spacing:17.280000pt;}
.ws72{word-spacing:18.293333pt;}
.ws87{word-spacing:20.544000pt;}
.ws73{word-spacing:21.813333pt;}
.ws4e{word-spacing:22.560000pt;}
.ws4d{word-spacing:22.666667pt;}
.ws42{word-spacing:22.997333pt;}
.ws1{word-spacing:29.889957pt;}
.ws7b{word-spacing:49.877333pt;}
.ws41{word-spacing:100.864000pt;}
.ws44{word-spacing:103.641600pt;}
.ws7a{word-spacing:108.757333pt;}
.ws40{word-spacing:169.984000pt;}
.ws43{word-spacing:301.909333pt;}
.ws52{word-spacing:372.565333pt;}
.ws53{word-spacing:420.544000pt;}
.ws54{word-spacing:478.208000pt;}
.ws55{word-spacing:490.790400pt;}
._76{margin-left:-13.536533pt;}
._75{margin-left:-12.381333pt;}
._f{margin-left:-9.954667pt;}
._74{margin-left:-8.429333pt;}
._8f{margin-left:-7.449600pt;}
._3{margin-left:-6.471467pt;}
._e{margin-left:-5.299200pt;}
._5{margin-left:-4.132800pt;}
._2{margin-left:-2.928533pt;}
._0{margin-left:-1.224000pt;}
._1{width:1.024533pt;}
._6{width:2.388267pt;}
._7{width:3.489600pt;}
._8{width:4.742400pt;}
._4{width:6.081600pt;}
._d{width:7.477333pt;}
._c{width:8.445333pt;}
._11{width:9.840000pt;}
._b{width:11.136000pt;}
._4f{width:12.096000pt;}
._8b{width:13.296000pt;}
._14{width:14.464000pt;}
._a{width:15.386667pt;}
._12{width:16.528000pt;}
._13{width:17.488000pt;}
._9{width:18.469333pt;}
._8c{width:19.887467pt;}
._71{width:21.291733pt;}
._4e{width:22.181867pt;}
._70{width:23.307200pt;}
._8d{width:25.022400pt;}
._8e{width:26.097600pt;}
._10{width:27.888000pt;}
._90{width:28.797333pt;}
._50{width:29.738667pt;}
._89{width:37.638400pt;}
._8a{width:38.802667pt;}
._3a{width:42.154667pt;}
._4c{width:43.989333pt;}
._31{width:48.624533pt;}
._7b{width:52.906667pt;}
._1b{width:58.780800pt;}
._18{width:59.946667pt;}
._7c{width:60.970667pt;}
._52{width:64.266133pt;}
._82{width:67.498667pt;}
._7d{width:68.522667pt;}
._73{width:72.746667pt;}
._72{width:77.760000pt;}
._39{width:80.981333pt;}
._2b{width:98.005333pt;}
._79{width:102.698667pt;}
._78{width:107.264000pt;}
._77{width:111.829333pt;}
._22{width:123.904000pt;}
._51{width:134.570667pt;}
._1c{width:135.893333pt;}
._2c{width:166.656000pt;}
._23{width:180.565333pt;}
._27{width:182.597867pt;}
._4a{width:188.117333pt;}
._7e{width:189.383467pt;}
._2a{width:190.890667pt;}
._1e{width:192.554667pt;}
._34{width:196.208533pt;}
._30{width:199.792533pt;}
._80{width:204.074667pt;}
._2d{width:208.085333pt;}
._86{width:210.773333pt;}
._38{width:215.594667pt;}
._1f{width:216.789333pt;}
._87{width:218.368000pt;}
._17{width:221.568000pt;}
._1a{width:222.762667pt;}
._32{width:226.986667pt;}
._1d{width:229.788800pt;}
._24{width:234.053867pt;}
._4b{width:239.474667pt;}
._3e{width:242.944000pt;}
._40{width:249.714667pt;}
._48{width:255.104000pt;}
._36{width:267.008000pt;}
._47{width:271.445333pt;}
._3b{width:276.949333pt;}
._20{width:280.789333pt;}
._2e{width:282.197333pt;}
._37{width:291.584000pt;}
._49{width:293.546667pt;}
._15{width:296.704000pt;}
._3c{width:301.610667pt;}
._42{width:305.024000pt;}
._60{width:305.962667pt;}
._3f{width:308.266667pt;}
._5f{width:309.888000pt;}
._45{width:313.600000pt;}
._6b{width:315.178667pt;}
._46{width:317.482667pt;}
._2f{width:320.384000pt;}
._5e{width:321.493333pt;}
._41{width:327.722667pt;}
._28{width:328.648000pt;}
._61{width:331.093333pt;}
._5b{width:333.098667pt;}
._19{width:338.645333pt;}
._5c{width:343.082667pt;}
._69{width:348.373333pt;}
._25{width:352.128000pt;}
._26{width:355.200000pt;}
._43{width:359.237867pt;}
._16{width:364.800000pt;}
._58{width:366.619200pt;}
._3d{width:369.408000pt;}
._29{width:372.053333pt;}
._35{width:375.381333pt;}
._53{width:377.301333pt;}
._7f{width:393.544000pt;}
._68{width:395.093333pt;}
._44{width:398.506667pt;}
._21{width:408.917333pt;}
._54{width:413.397333pt;}
._33{width:416.640000pt;}
._59{width:425.386667pt;}
._67{width:427.349333pt;}
._7a{width:433.605867pt;}
._64{width:436.480000pt;}
._65{width:437.376000pt;}
._85{width:478.122667pt;}
._4d{width:485.418667pt;}
._6e{width:522.665067pt;}
._56{width:524.586667pt;}
._63{width:525.994667pt;}
._6c{width:536.917333pt;}
._62{width:537.898667pt;}
._5d{width:549.888000pt;}
._6a{width:555.178667pt;}
._84{width:562.248000pt;}
._88{width:568.960000pt;}
._81{width:570.368000pt;}
._83{width:581.632000pt;}
._55{width:623.829333pt;}
._5a{width:647.808000pt;}
._66{width:671.786667pt;}
._6f{width:766.464000pt;}
._57{width:769.706667pt;}
._6d{width:793.685333pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.702267pt;}
.y39{bottom:83.838400pt;}
.y197{bottom:100.258533pt;}
.y167{bottom:100.285200pt;}
.ybf{bottom:100.509867pt;}
.y6b{bottom:100.514400pt;}
.yd8{bottom:100.514533pt;}
.y9d{bottom:104.599200pt;}
.y11c{bottom:107.103733pt;}
.yfb{bottom:107.103867pt;}
.yf6{bottom:107.107733pt;}
.yf8{bottom:107.107867pt;}
.yef{bottom:112.159867pt;}
.y196{bottom:118.930533pt;}
.y166{bottom:118.957200pt;}
.y13a{bottom:119.175733pt;}
.ybe{bottom:119.176533pt;}
.y6a{bottom:119.181067pt;}
.yd7{bottom:119.181200pt;}
.y29{bottom:122.855600pt;}
.yc{bottom:122.862000pt;}
.y9c{bottom:123.180533pt;}
.y11b{bottom:124.707733pt;}
.yfa{bottom:124.707867pt;}
.yf5{bottom:124.711733pt;}
.yf7{bottom:124.711867pt;}
.y114{bottom:126.105733pt;}
.y11f{bottom:128.017200pt;}
.yee{bottom:129.763867pt;}
.yb{bottom:135.658800pt;}
.y195{bottom:137.602533pt;}
.y165{bottom:137.629200pt;}
.y139{bottom:137.842400pt;}
.ybd{bottom:137.843200pt;}
.y69{bottom:137.847733pt;}
.yd6{bottom:137.847867pt;}
.y28{bottom:141.522267pt;}
.y9b{bottom:141.761867pt;}
.y11a{bottom:142.311733pt;}
.yf9{bottom:142.311867pt;}
.y113{bottom:143.709733pt;}
.y11e{bottom:145.621200pt;}
.ya{bottom:148.455600pt;}
.y194{bottom:156.274533pt;}
.y164{bottom:156.301200pt;}
.ybc{bottom:156.509867pt;}
.yf0{bottom:156.514400pt;}
.yd5{bottom:156.514533pt;}
.y27{bottom:160.188933pt;}
.y9a{bottom:160.343200pt;}
.y9{bottom:161.255600pt;}
.y11d{bottom:163.225200pt;}
.y68{bottom:169.280800pt;}
.y193{bottom:174.946533pt;}
.y163{bottom:174.973200pt;}
.ybb{bottom:175.176533pt;}
.y100{bottom:175.181067pt;}
.yd4{bottom:175.181200pt;}
.y26{bottom:178.855600pt;}
.y99{bottom:178.924533pt;}
.y138{bottom:180.026000pt;}
.y115{bottom:185.535467pt;}
.y192{bottom:193.618533pt;}
.y162{bottom:193.645200pt;}
.yba{bottom:193.843200pt;}
.yff{bottom:193.847733pt;}
.yd3{bottom:193.847867pt;}
.y98{bottom:197.505867pt;}
.y25{bottom:197.522267pt;}
.yfe{bottom:199.092267pt;}
.y36{bottom:199.524133pt;}
.yf4{bottom:210.432400pt;}
.y191{bottom:212.290533pt;}
.y161{bottom:212.317200pt;}
.yb9{bottom:212.509867pt;}
.y67{bottom:212.514400pt;}
.yd2{bottom:212.514533pt;}
.y35{bottom:215.520133pt;}
.y97{bottom:216.087200pt;}
.y24{bottom:216.188933pt;}
.yfd{bottom:216.696267pt;}
.y103{bottom:226.286533pt;}
.yf3{bottom:228.036400pt;}
.y190{bottom:230.962533pt;}
.y160{bottom:230.989200pt;}
.yb8{bottom:231.176533pt;}
.y66{bottom:231.181067pt;}
.yd1{bottom:231.181200pt;}
.y34{bottom:231.516133pt;}
.y118{bottom:233.267733pt;}
.yfc{bottom:234.300267pt;}
.y96{bottom:234.668533pt;}
.y23{bottom:234.855600pt;}
.y137{bottom:236.026000pt;}
.y102{bottom:243.890533pt;}
.y33{bottom:247.512133pt;}
.y18f{bottom:249.634533pt;}
.y15f{bottom:249.661200pt;}
.yb7{bottom:249.843200pt;}
.y65{bottom:249.847733pt;}
.yd0{bottom:249.847867pt;}
.y110{bottom:252.948933pt;}
.y95{bottom:253.249867pt;}
.y22{bottom:253.522267pt;}
.y101{bottom:261.494533pt;}
.y32{bottom:263.508133pt;}
.y18e{bottom:268.306533pt;}
.y15e{bottom:268.333200pt;}
.y136{bottom:268.503733pt;}
.yb6{bottom:268.509867pt;}
.y64{bottom:268.514400pt;}
.ycf{bottom:268.514533pt;}
.y10f{bottom:270.552933pt;}
.y94{bottom:271.831200pt;}
.y21{bottom:272.188933pt;}
.y31{bottom:279.504133pt;}
.y18d{bottom:286.978533pt;}
.y15d{bottom:287.005200pt;}
.y135{bottom:287.175733pt;}
.yb5{bottom:287.176533pt;}
.y63{bottom:287.181067pt;}
.yce{bottom:287.181200pt;}
.y93{bottom:290.412533pt;}
.y20{bottom:290.855600pt;}
.y10e{bottom:293.841333pt;}
.y18c{bottom:305.650533pt;}
.y15c{bottom:305.677200pt;}
.yb4{bottom:305.843200pt;}
.y62{bottom:305.847733pt;}
.ycd{bottom:305.847867pt;}
.y92{bottom:308.993867pt;}
.y1f{bottom:309.522267pt;}
.y30{bottom:310.620133pt;}
.y10d{bottom:311.445333pt;}
.y18b{bottom:324.322533pt;}
.y15b{bottom:324.349200pt;}
.yb3{bottom:324.509867pt;}
.y61{bottom:324.514400pt;}
.ycc{bottom:324.514533pt;}
.y2f{bottom:326.616133pt;}
.y91{bottom:327.575200pt;}
.y1e{bottom:328.188933pt;}
.y134{bottom:329.359333pt;}
.y2e{bottom:342.612133pt;}
.y18a{bottom:342.994533pt;}
.y15a{bottom:343.021200pt;}
.yb2{bottom:343.176533pt;}
.y60{bottom:343.181067pt;}
.ycb{bottom:343.181200pt;}
.y90{bottom:346.156533pt;}
.y1d{bottom:346.855600pt;}
.y189{bottom:361.666533pt;}
.y159{bottom:361.693200pt;}
.yb1{bottom:361.843200pt;}
.y5f{bottom:361.847733pt;}
.yca{bottom:361.847867pt;}
.y8f{bottom:364.737867pt;}
.y1c{bottom:365.522267pt;}
.y2d{bottom:373.728133pt;}
.y188{bottom:380.338533pt;}
.y158{bottom:380.365200pt;}
.yb0{bottom:380.509867pt;}
.y5e{bottom:380.514400pt;}
.yc9{bottom:380.514533pt;}
.y8e{bottom:383.319200pt;}
.y1b{bottom:384.188933pt;}
.y133{bottom:385.359333pt;}
.y2c{bottom:389.728133pt;}
.y187{bottom:399.010533pt;}
.y157{bottom:399.037200pt;}
.yaf{bottom:399.176533pt;}
.y5d{bottom:399.181067pt;}
.yc8{bottom:399.181200pt;}
.y119{bottom:400.676667pt;}
.y8d{bottom:401.900533pt;}
.y1a{bottom:402.855600pt;}
.y2b{bottom:405.728133pt;}
.y186{bottom:417.682533pt;}
.y156{bottom:417.709200pt;}
.yae{bottom:417.843200pt;}
.y5c{bottom:417.847733pt;}
.yc7{bottom:417.847867pt;}
.y8c{bottom:420.481867pt;}
.y2a{bottom:421.728133pt;}
.y19{bottom:433.195067pt;}
.y185{bottom:436.354533pt;}
.y155{bottom:436.381200pt;}
.yad{bottom:436.509867pt;}
.y5b{bottom:436.514400pt;}
.yc6{bottom:436.514533pt;}
.y8b{bottom:439.063200pt;}
.y132{bottom:441.359333pt;}
.y184{bottom:455.026533pt;}
.y154{bottom:455.053200pt;}
.yac{bottom:455.176533pt;}
.y5a{bottom:455.181067pt;}
.yc5{bottom:455.181200pt;}
.y8a{bottom:457.644533pt;}
.y183{bottom:473.698533pt;}
.y153{bottom:473.725200pt;}
.yab{bottom:473.843200pt;}
.y59{bottom:473.847733pt;}
.yc4{bottom:473.847867pt;}
.y89{bottom:476.225867pt;}
.y182{bottom:492.370533pt;}
.y152{bottom:492.397200pt;}
.y58{bottom:492.514400pt;}
.yc3{bottom:492.514533pt;}
.y88{bottom:494.807200pt;}
.y131{bottom:497.721733pt;}
.y181{bottom:511.042533pt;}
.y151{bottom:511.069200pt;}
.yaa{bottom:511.176533pt;}
.y57{bottom:511.181067pt;}
.yc2{bottom:511.181200pt;}
.y87{bottom:513.388533pt;}
.y18{bottom:516.113733pt;}
.y130{bottom:523.947467pt;}
.y180{bottom:529.714533pt;}
.y150{bottom:529.741200pt;}
.ya9{bottom:529.843200pt;}
.y56{bottom:529.847733pt;}
.yc1{bottom:529.847867pt;}
.y86{bottom:531.969867pt;}
.y12e{bottom:545.976933pt;}
.y17f{bottom:548.386533pt;}
.y14f{bottom:548.413200pt;}
.ya8{bottom:548.509867pt;}
.y55{bottom:548.514400pt;}
.yc0{bottom:548.514533pt;}
.y85{bottom:550.551200pt;}
.y17{bottom:552.579333pt;}
.y17e{bottom:567.058533pt;}
.y14e{bottom:567.085200pt;}
.ya7{bottom:567.176533pt;}
.y54{bottom:567.181067pt;}
.y10c{bottom:567.181200pt;}
.y12d{bottom:567.587600pt;}
.y84{bottom:569.132533pt;}
.y16{bottom:570.183333pt;}
.y83{bottom:574.380533pt;}
.y17d{bottom:585.730533pt;}
.y14d{bottom:585.757200pt;}
.ya6{bottom:585.843200pt;}
.y53{bottom:585.847733pt;}
.y10b{bottom:585.847867pt;}
.y82{bottom:587.713867pt;}
.y15{bottom:587.787333pt;}
.y12c{bottom:589.198267pt;}
.yed{bottom:590.637333pt;}
.y17c{bottom:604.402533pt;}
.y14c{bottom:604.429200pt;}
.ya5{bottom:604.509867pt;}
.y52{bottom:604.514400pt;}
.y10a{bottom:604.514533pt;}
.y14{bottom:605.391333pt;}
.y81{bottom:606.561867pt;}
.yec{bottom:610.509333pt;}
.y12b{bottom:610.808933pt;}
.y80{bottom:619.895200pt;}
.y13{bottom:622.995333pt;}
.y17b{bottom:623.074533pt;}
.y14b{bottom:623.101200pt;}
.ya4{bottom:623.176533pt;}
.y51{bottom:623.181067pt;}
.y109{bottom:623.181200pt;}
.y7d{bottom:626.561867pt;}
.yeb{bottom:630.381333pt;}
.yf2{bottom:631.881600pt;}
.y12a{bottom:632.419600pt;}
.y7f{bottom:633.228533pt;}
.y12{bottom:640.599333pt;}
.y17a{bottom:641.746533pt;}
.y14a{bottom:641.773200pt;}
.y50{bottom:641.847733pt;}
.y108{bottom:641.847867pt;}
.y7e{bottom:646.561867pt;}
.yf1{bottom:649.485600pt;}
.yea{bottom:650.253333pt;}
.y129{bottom:654.030267pt;}
.y11{bottom:658.203333pt;}
.y179{bottom:660.418533pt;}
.y149{bottom:660.445200pt;}
.ya3{bottom:660.509867pt;}
.y4f{bottom:660.514400pt;}
.y107{bottom:660.514533pt;}
.ye9{bottom:670.125333pt;}
.y7c{bottom:673.652800pt;}
.y128{bottom:675.640933pt;}
.y10{bottom:675.807333pt;}
.y178{bottom:679.090533pt;}
.y148{bottom:679.117200pt;}
.ya2{bottom:679.176533pt;}
.y4e{bottom:679.181067pt;}
.y106{bottom:679.181200pt;}
.ye8{bottom:689.997333pt;}
.y117{bottom:690.790933pt;}
.y7b{bottom:691.256800pt;}
.y112{bottom:691.943600pt;}
.yf{bottom:693.411333pt;}
.y127{bottom:697.251600pt;}
.y177{bottom:697.762533pt;}
.y147{bottom:697.789200pt;}
.ya1{bottom:697.843200pt;}
.y4d{bottom:697.847733pt;}
.y105{bottom:697.847867pt;}
.y116{bottom:708.394933pt;}
.ye7{bottom:709.869333pt;}
.y111{bottom:710.614267pt;}
.y176{bottom:716.434533pt;}
.y146{bottom:716.461200pt;}
.y4c{bottom:716.514400pt;}
.y104{bottom:716.514533pt;}
.y126{bottom:718.862267pt;}
.ye{bottom:721.053600pt;}
.ya0{bottom:728.456533pt;}
.ye6{bottom:729.741333pt;}
.y175{bottom:735.106533pt;}
.y145{bottom:735.133200pt;}
.y4b{bottom:735.181067pt;}
.y7a{bottom:735.181200pt;}
.y125{bottom:740.472933pt;}
.y9f{bottom:747.123200pt;}
.ye5{bottom:749.613333pt;}
.y174{bottom:753.778533pt;}
.y144{bottom:753.805200pt;}
.y4a{bottom:753.847733pt;}
.y79{bottom:753.847867pt;}
.y124{bottom:762.083600pt;}
.ye4{bottom:769.485333pt;}
.y173{bottom:772.450533pt;}
.y143{bottom:772.477200pt;}
.y49{bottom:772.514400pt;}
.y78{bottom:772.514533pt;}
.y9e{bottom:775.832000pt;}
.y123{bottom:783.694267pt;}
.ye3{bottom:789.357333pt;}
.y172{bottom:791.122533pt;}
.y142{bottom:791.149200pt;}
.y48{bottom:791.181067pt;}
.y77{bottom:791.181200pt;}
.y8{bottom:791.526000pt;}
.y122{bottom:805.571600pt;}
.y7{bottom:807.526000pt;}
.ye2{bottom:809.229333pt;}
.y171{bottom:809.794533pt;}
.y141{bottom:809.821200pt;}
.y47{bottom:809.847733pt;}
.y76{bottom:809.847867pt;}
.y6{bottom:823.526000pt;}
.y170{bottom:828.466533pt;}
.y140{bottom:828.493200pt;}
.y46{bottom:828.514400pt;}
.y75{bottom:828.514533pt;}
.ye1{bottom:829.101333pt;}
.y121{bottom:832.662667pt;}
.y5{bottom:839.526000pt;}
.y16f{bottom:847.138533pt;}
.y13f{bottom:847.165200pt;}
.y45{bottom:847.181067pt;}
.y74{bottom:847.181200pt;}
.ye0{bottom:848.973333pt;}
.y120{bottom:850.266667pt;}
.y16e{bottom:865.810533pt;}
.y13e{bottom:865.837200pt;}
.y44{bottom:865.847733pt;}
.y73{bottom:865.847867pt;}
.ydf{bottom:868.845333pt;}
.y4{bottom:870.644267pt;}
.y16d{bottom:884.482533pt;}
.y13d{bottom:884.509200pt;}
.y43{bottom:884.514400pt;}
.y72{bottom:884.514533pt;}
.yde{bottom:888.717333pt;}
.y16c{bottom:903.154533pt;}
.y42{bottom:903.181067pt;}
.y71{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.ydd{bottom:908.589333pt;}
.y16b{bottom:921.826533pt;}
.y41{bottom:921.847733pt;}
.y70{bottom:921.847867pt;}
.ydc{bottom:928.461333pt;}
.y2{bottom:932.695600pt;}
.y13c{bottom:934.614133pt;}
.y16a{bottom:940.498533pt;}
.y40{bottom:940.514400pt;}
.y6f{bottom:940.514533pt;}
.ydb{bottom:948.333333pt;}
.y169{bottom:959.170533pt;}
.y3f{bottom:959.181067pt;}
.y6e{bottom:959.181200pt;}
.yda{bottom:977.314133pt;}
.y168{bottom:977.842533pt;}
.y3e{bottom:977.847733pt;}
.y6d{bottom:977.847867pt;}
.yd{bottom:986.502667pt;}
.y12f{bottom:988.062933pt;}
.yd9{bottom:994.918133pt;}
.y3d{bottom:996.514400pt;}
.y6c{bottom:996.514533pt;}
.y13b{bottom:1000.401600pt;}
.y38{bottom:1030.390667pt;}
.y37{bottom:1047.724000pt;}
.y3c{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h12{height:32.437500pt;}
.h10{height:33.979167pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.h11{height:38.708333pt;}
.h9{height:40.546875pt;}
.h13{height:42.786458pt;}
.ha{height:43.546875pt;}
.h15{height:43.568208pt;}
.h14{height:44.601562pt;}
.hc{height:48.385417pt;}
.hb{height:48.656250pt;}
.h4{height:53.223958pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.xa{left:95.174800pt;}
.xc{left:96.253733pt;}
.x13{left:99.794400pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x16{left:112.426800pt;}
.xd{left:130.439733pt;}
.x4{left:266.834667pt;}
.xb{left:281.952800pt;}
.x17{left:297.101333pt;}
.x18{left:311.047467pt;}
.x3{left:352.045067pt;}
.x14{left:467.015733pt;}
.x15{left:511.730400pt;}
.x9{left:576.810133pt;}
.x10{left:582.130400pt;}
.xf{left:585.245067pt;}
.xe{left:586.141067pt;}
.x11{left:588.690400pt;}
.x8{left:605.834133pt;}
.x12{left:658.407733pt;}
.x1{left:717.405733pt;}
}




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