
    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_9c1ee4347290ae77415e1ba1.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_77629bb89e2a8e4e028fb171.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_d8094e5cb596a55615f24864.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.976603;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_07af55453fe42d34244ac238.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5f35aceb7ceafbad66efcf88.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_0f29b63128ccd9351308ae18.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_86ba7b1d392126d641b0c1ef.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_de2d51627b2b3a68914396a2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.102051;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_5f97894d859d3df580a97b7b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.976118;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_dc8923ec8f33e1fed7d89871.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_342a63696a20f6b168c16485.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.953125;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_c2d7ff7c5bc80be5d5723f77.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976113;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_aad2e9e931fc2073559a2852.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.968262;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:-21.978000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.ls25{letter-spacing:-9.480000px;}
.ls16{letter-spacing:-7.236000px;}
.ls22{letter-spacing:-7.020000px;}
.lsc{letter-spacing:-6.960000px;}
.ls24{letter-spacing:-6.360000px;}
.ls21{letter-spacing:-3.420000px;}
.ls15{letter-spacing:-3.240000px;}
.ls13{letter-spacing:-1.080000px;}
.lsb{letter-spacing:-1.020000px;}
.ls18{letter-spacing:-0.960000px;}
.ls7{letter-spacing:-0.918000px;}
.lsa{letter-spacing:-0.900000px;}
.ls5{letter-spacing:-0.691200px;}
.ls20{letter-spacing:-0.660000px;}
.ls6{letter-spacing:-0.600000px;}
.ls1f{letter-spacing:-0.540000px;}
.ls1a{letter-spacing:-0.480000px;}
.ls26{letter-spacing:-0.360000px;}
.ls9{letter-spacing:-0.349800px;}
.ls4{letter-spacing:-0.306000px;}
.ls3{letter-spacing:-0.102000px;}
.ls1b{letter-spacing:-0.060000px;}
.ls2{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.012000px;}
.ls27{letter-spacing:0.240000px;}
.ls14{letter-spacing:0.378000px;}
.ls1{letter-spacing:4.314600px;}
.lsf{letter-spacing:4.560000px;}
.ls1e{letter-spacing:4.752000px;}
.ls17{letter-spacing:6.858000px;}
.lse{letter-spacing:7.560000px;}
.ls1c{letter-spacing:10.044000px;}
.ls19{letter-spacing:10.140000px;}
.ls8{letter-spacing:10.428000px;}
.ls23{letter-spacing:38.337600px;}
.ls0{letter-spacing:43.181364px;}
.ls10{letter-spacing:660.240000px;}
.ls12{letter-spacing:673.680000px;}
.ls1d{letter-spacing:687.168000px;}
.ls11{letter-spacing:716.400000px;}
.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;}
}
.ws0{word-spacing:-25.092000px;}
.ws8{word-spacing:-17.928000px;}
.ws8e{word-spacing:-16.434000px;}
.ws7e{word-spacing:-16.302000px;}
.ws6{word-spacing:-14.940000px;}
.ws39{word-spacing:-14.880000px;}
.ws38{word-spacing:-14.820000px;}
.ws9{word-spacing:-14.700000px;}
.ws56{word-spacing:-14.640000px;}
.ws55{word-spacing:-14.460000px;}
.wsa{word-spacing:-14.100000px;}
.ws69{word-spacing:-14.040000px;}
.ws4e{word-spacing:-13.980000px;}
.ws53{word-spacing:-13.740000px;}
.ws46{word-spacing:-13.446000px;}
.ws8f{word-spacing:-13.392000px;}
.ws7{word-spacing:-13.230000px;}
.ws68{word-spacing:-12.906000px;}
.ws92{word-spacing:-12.852000px;}
.wsb{word-spacing:-12.366000px;}
.wsf{word-spacing:-12.150000px;}
.wsc{word-spacing:-11.448000px;}
.wsd{word-spacing:-11.232000px;}
.ws10{word-spacing:-10.992000px;}
.ws81{word-spacing:-10.944000px;}
.ws4{word-spacing:-10.896000px;}
.ws1d{word-spacing:-10.800000px;}
.ws47{word-spacing:-10.206000px;}
.ws5{word-spacing:-9.892800px;}
.ws3{word-spacing:-9.618000px;}
.ws1{word-spacing:-9.542544px;}
.ws7a{word-spacing:-8.340000px;}
.ws1f{word-spacing:-8.325240px;}
.ws20{word-spacing:-7.740000px;}
.ws6d{word-spacing:-7.680000px;}
.ws48{word-spacing:-6.210000px;}
.ws36{word-spacing:-3.402000px;}
.ws6f{word-spacing:-2.760000px;}
.ws51{word-spacing:-2.538000px;}
.ws2e{word-spacing:-2.520000px;}
.ws52{word-spacing:-2.484000px;}
.ws5a{word-spacing:-2.214000px;}
.ws90{word-spacing:-2.052000px;}
.ws37{word-spacing:-1.836000px;}
.ws64{word-spacing:-1.728000px;}
.ws43{word-spacing:-1.458000px;}
.ws31{word-spacing:-1.140000px;}
.ws8b{word-spacing:-1.080000px;}
.ws27{word-spacing:-1.020000px;}
.ws62{word-spacing:-0.972000px;}
.ws63{word-spacing:-0.918000px;}
.ws60{word-spacing:-0.594000px;}
.ws4d{word-spacing:-0.270000px;}
.ws95{word-spacing:-0.240000px;}
.ws13{word-spacing:-0.216000px;}
.ws67{word-spacing:-0.108000px;}
.wse{word-spacing:-0.054000px;}
.ws1e{word-spacing:-0.048000px;}
.ws11{word-spacing:0.000000px;}
.ws59{word-spacing:0.060000px;}
.ws12{word-spacing:0.306000px;}
.ws15{word-spacing:0.324000px;}
.ws8d{word-spacing:0.360000px;}
.ws49{word-spacing:0.378000px;}
.ws57{word-spacing:0.480000px;}
.ws6a{word-spacing:0.540000px;}
.ws1b{word-spacing:0.600000px;}
.ws6b{word-spacing:0.660000px;}
.ws14{word-spacing:0.691200px;}
.ws2a{word-spacing:0.720000px;}
.ws25{word-spacing:0.900000px;}
.ws1c{word-spacing:0.918000px;}
.ws50{word-spacing:0.960000px;}
.ws8c{word-spacing:1.020000px;}
.ws44{word-spacing:1.080000px;}
.ws2b{word-spacing:1.560000px;}
.ws73{word-spacing:1.620000px;}
.ws72{word-spacing:1.680000px;}
.ws22{word-spacing:1.920000px;}
.ws2c{word-spacing:2.100000px;}
.ws2d{word-spacing:2.160000px;}
.ws28{word-spacing:2.400000px;}
.ws21{word-spacing:2.940000px;}
.ws18{word-spacing:3.078000px;}
.ws54{word-spacing:3.120000px;}
.ws4c{word-spacing:3.240000px;}
.ws70{word-spacing:3.420000px;}
.ws6e{word-spacing:3.780000px;}
.ws7c{word-spacing:4.260000px;}
.ws7b{word-spacing:4.278000px;}
.ws7d{word-spacing:4.290000px;}
.ws16{word-spacing:4.320000px;}
.ws17{word-spacing:4.374000px;}
.ws24{word-spacing:4.380000px;}
.ws8a{word-spacing:4.680000px;}
.ws84{word-spacing:4.740000px;}
.ws66{word-spacing:4.752000px;}
.ws83{word-spacing:4.800000px;}
.ws65{word-spacing:4.806000px;}
.ws85{word-spacing:5.280000px;}
.ws33{word-spacing:5.340000px;}
.ws19{word-spacing:5.346000px;}
.ws32{word-spacing:5.400000px;}
.ws76{word-spacing:5.640000px;}
.ws26{word-spacing:5.700000px;}
.ws71{word-spacing:6.360000px;}
.ws35{word-spacing:6.372000px;}
.ws34{word-spacing:6.480000px;}
.ws42{word-spacing:6.600000px;}
.ws79{word-spacing:6.642000px;}
.ws4b{word-spacing:6.804000px;}
.ws4a{word-spacing:6.912000px;}
.ws4f{word-spacing:7.260000px;}
.ws29{word-spacing:7.500000px;}
.ws3a{word-spacing:7.620000px;}
.ws78{word-spacing:7.980000px;}
.ws77{word-spacing:8.040000px;}
.ws74{word-spacing:8.100000px;}
.ws75{word-spacing:8.160000px;}
.ws1a{word-spacing:8.760000px;}
.ws5c{word-spacing:9.936000px;}
.ws89{word-spacing:9.960000px;}
.ws5b{word-spacing:10.098000px;}
.ws58{word-spacing:10.200000px;}
.ws23{word-spacing:10.980000px;}
.ws88{word-spacing:11.640000px;}
.ws6c{word-spacing:12.480000px;}
.ws87{word-spacing:13.020000px;}
.ws86{word-spacing:13.140000px;}
.ws45{word-spacing:13.608000px;}
.ws30{word-spacing:15.480000px;}
.ws2f{word-spacing:15.660000px;}
.ws61{word-spacing:15.930000px;}
.ws94{word-spacing:16.254000px;}
.ws91{word-spacing:18.468000px;}
.ws93{word-spacing:27.972000px;}
.ws2{word-spacing:33.651135px;}
.ws82{word-spacing:328.944000px;}
.ws80{word-spacing:330.768000px;}
.ws7f{word-spacing:433.200000px;}
.ws3d{word-spacing:621.360000px;}
.ws3c{word-spacing:648.336000px;}
.ws5d{word-spacing:661.776000px;}
.ws40{word-spacing:689.136000px;}
.ws41{word-spacing:702.240000px;}
.ws5f{word-spacing:702.624000px;}
.ws3b{word-spacing:716.112000px;}
.ws3f{word-spacing:729.600000px;}
.ws5e{word-spacing:756.576000px;}
.ws3e{word-spacing:828.528000px;}
._23{margin-left:-13.026000px;}
._e{margin-left:-10.890000px;}
._0{margin-left:-8.904600px;}
._4{margin-left:-6.946200px;}
._13{margin-left:-5.748600px;}
._3{margin-left:-4.661400px;}
._6{margin-left:-3.499200px;}
._1{margin-left:-1.734000px;}
._2{width:1.030200px;}
._9{width:2.749200px;}
._7{width:3.871800px;}
._8{width:5.022600px;}
._a{width:6.068400px;}
._b{width:7.229400px;}
._c{width:8.241000px;}
._12{width:9.607800px;}
._11{width:11.394000px;}
._1f{width:12.753600px;}
._21{width:13.834200px;}
._1d{width:15.003600px;}
._d{width:16.356000px;}
._1e{width:17.868000px;}
._f{width:19.920000px;}
._10{width:20.965200px;}
._3d{width:22.121400px;}
._3e{width:24.726600px;}
._3a{width:26.287200px;}
._3b{width:27.354000px;}
._3f{width:28.821000px;}
._5{width:36.369600px;}
._2d{width:37.470000px;}
._3c{width:43.072800px;}
._22{width:81.840000px;}
._24{width:85.566000px;}
._20{width:87.480000px;}
._26{width:116.647800px;}
._25{width:131.074200px;}
._27{width:140.784000px;}
._2c{width:145.782000px;}
._28{width:206.160000px;}
._29{width:299.328000px;}
._35{width:313.296000px;}
._2e{width:317.736000px;}
._36{width:327.600000px;}
._33{width:331.362000px;}
._17{width:355.830000px;}
._38{width:356.832000px;}
._2f{width:358.752000px;}
._30{width:362.976000px;}
._39{width:382.800000px;}
._32{width:399.984000px;}
._31{width:439.788000px;}
._37{width:447.954000px;}
._14{width:479.424000px;}
._18{width:552.096000px;}
._2b{width:576.108000px;}
._15{width:691.589400px;}
._19{width:701.040000px;}
._1a{width:714.528000px;}
._16{width:728.016000px;}
._1c{width:741.504000px;}
._34{width:748.044000px;}
._2a{width:763.536000px;}
._1b{width:808.944000px;}
.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;}
.y3c{bottom:71.212050px;}
.y3d{bottom:75.040050px;}
.y14d{bottom:112.790850px;}
.y159{bottom:113.018850px;}
.y11d{bottom:113.042700px;}
.y6c{bottom:113.078700px;}
.ydb{bottom:113.078850px;}
.y89{bottom:113.083500px;}
.yab{bottom:117.052350px;}
.ye{bottom:117.205050px;}
.y2a{bottom:117.212700px;}
.yb8{bottom:119.498400px;}
.y79{bottom:120.469350px;}
.ybb{bottom:120.491850px;}
.yf2{bottom:120.496200px;}
.ye0{bottom:120.496350px;}
.yd{bottom:131.601450px;}
.y14c{bottom:133.796850px;}
.y158{bottom:134.024850px;}
.y11c{bottom:134.048700px;}
.y6b{bottom:134.078700px;}
.yda{bottom:134.078850px;}
.y88{bottom:134.083500px;}
.yaa{bottom:137.536350px;}
.y29{bottom:138.212700px;}
.yb7{bottom:139.302900px;}
.y78{bottom:140.273850px;}
.yba{bottom:140.296350px;}
.yf1{bottom:140.300700px;}
.ydf{bottom:140.300850px;}
.yc{bottom:145.997850px;}
.y14b{bottom:154.802850px;}
.y157{bottom:155.030850px;}
.y11b{bottom:155.054700px;}
.y6a{bottom:155.078700px;}
.yd9{bottom:155.078850px;}
.y87{bottom:155.083500px;}
.ya9{bottom:158.020350px;}
.y28{bottom:159.212700px;}
.y77{bottom:160.078350px;}
.yb9{bottom:160.100850px;}
.yb{bottom:160.397850px;}
.y14a{bottom:175.808850px;}
.y17d{bottom:176.012850px;}
.y156{bottom:176.036850px;}
.y11a{bottom:176.060700px;}
.y69{bottom:176.078700px;}
.yd8{bottom:176.078850px;}
.y86{bottom:176.083500px;}
.ya8{bottom:178.504350px;}
.y76{bottom:179.882850px;}
.y27{bottom:180.212700px;}
.yef{bottom:190.440900px;}
.y149{bottom:196.814850px;}
.y17c{bottom:197.018850px;}
.y155{bottom:197.042850px;}
.y119{bottom:197.066700px;}
.y68{bottom:197.078700px;}
.yd7{bottom:197.078850px;}
.y85{bottom:197.083500px;}
.ya7{bottom:198.988350px;}
.y75{bottom:199.687350px;}
.y26{bottom:201.212700px;}
.y39{bottom:203.458800px;}
.y148{bottom:217.820850px;}
.y17b{bottom:218.024850px;}
.y154{bottom:218.048850px;}
.y118{bottom:218.072700px;}
.y67{bottom:218.078700px;}
.yd6{bottom:218.078850px;}
.y84{bottom:218.083500px;}
.ya6{bottom:219.472350px;}
.y74{bottom:219.491850px;}
.y38{bottom:221.454300px;}
.y25{bottom:222.212700px;}
.y147{bottom:238.826850px;}
.y17a{bottom:239.030850px;}
.y153{bottom:239.054850px;}
.y66{bottom:239.078700px;}
.yd5{bottom:239.078850px;}
.y83{bottom:239.083500px;}
.y73{bottom:239.296350px;}
.y37{bottom:239.449800px;}
.ya5{bottom:239.956350px;}
.y24{bottom:243.212700px;}
.yf3{bottom:253.440900px;}
.y36{bottom:257.445300px;}
.y72{bottom:259.100850px;}
.y146{bottom:259.832850px;}
.y179{bottom:260.036850px;}
.y152{bottom:260.060850px;}
.y65{bottom:260.078700px;}
.yd4{bottom:260.078850px;}
.ya4{bottom:260.440350px;}
.y23{bottom:264.212700px;}
.y117{bottom:274.440900px;}
.y35{bottom:275.440800px;}
.y145{bottom:280.838850px;}
.ya3{bottom:280.924350px;}
.y178{bottom:281.042850px;}
.y151{bottom:281.066850px;}
.y8e{bottom:281.078700px;}
.yd3{bottom:281.078850px;}
.y82{bottom:281.083500px;}
.y22{bottom:285.212700px;}
.y34{bottom:293.436300px;}
.y64{bottom:294.513450px;}
.ya2{bottom:301.408350px;}
.y144{bottom:301.844850px;}
.y177{bottom:302.048850px;}
.y150{bottom:302.072850px;}
.y8d{bottom:302.078700px;}
.yd2{bottom:302.078850px;}
.y81{bottom:302.083500px;}
.y21{bottom:306.212700px;}
.y33{bottom:311.431800px;}
.ya1{bottom:321.892350px;}
.y143{bottom:322.850850px;}
.y176{bottom:323.054850px;}
.y116{bottom:323.072700px;}
.y8c{bottom:323.078700px;}
.yd1{bottom:323.078850px;}
.y80{bottom:323.083500px;}
.y63{bottom:326.811000px;}
.y20{bottom:327.212700px;}
.y32{bottom:329.427300px;}
.ybd{bottom:341.690250px;}
.ya0{bottom:342.376350px;}
.y142{bottom:343.856850px;}
.y175{bottom:344.060850px;}
.y8b{bottom:344.078700px;}
.yd0{bottom:344.078850px;}
.y1f{bottom:348.212700px;}
.yed{bottom:357.146700px;}
.y14f{bottom:357.513600px;}
.ybc{bottom:361.494750px;}
.y9f{bottom:362.860350px;}
.y31{bottom:364.432800px;}
.y141{bottom:364.862850px;}
.y174{bottom:365.066850px;}
.ybe{bottom:365.078700px;}
.ycf{bottom:365.078850px;}
.y7f{bottom:368.143500px;}
.y115{bottom:370.529250px;}
.yec{bottom:376.951200px;}
.y30{bottom:382.428300px;}
.y9e{bottom:383.344350px;}
.y1e{bottom:383.648550px;}
.y140{bottom:385.868850px;}
.y173{bottom:386.072850px;}
.y62{bottom:386.078700px;}
.yce{bottom:386.078850px;}
.y8a{bottom:387.607350px;}
.y7e{bottom:389.143500px;}
.y14e{bottom:389.811150px;}
.y2f{bottom:400.423800px;}
.y9d{bottom:403.828350px;}
.y13f{bottom:406.874850px;}
.y114{bottom:407.072700px;}
.y61{bottom:407.078700px;}
.ycd{bottom:407.078850px;}
.y7d{bottom:410.143500px;}
.y13e{bottom:427.880850px;}
.y113{bottom:428.072700px;}
.y60{bottom:428.078700px;}
.ycc{bottom:428.078850px;}
.y7c{bottom:431.143500px;}
.y9c{bottom:434.310300px;}
.y2e{bottom:435.429300px;}
.y172{bottom:441.513600px;}
.y13d{bottom:448.886850px;}
.y112{bottom:449.072700px;}
.y5f{bottom:449.078700px;}
.ycb{bottom:449.078850px;}
.y2d{bottom:453.429300px;}
.y7b{bottom:463.440900px;}
.y1d{bottom:468.427950px;}
.y13c{bottom:469.892850px;}
.y5e{bottom:470.078700px;}
.yca{bottom:470.078850px;}
.y2c{bottom:471.429300px;}
.y171{bottom:473.811150px;}
.yeb{bottom:484.879200px;}
.y2b{bottom:489.429300px;}
.y13b{bottom:490.898850px;}
.y5d{bottom:491.078700px;}
.yc9{bottom:491.078850px;}
.yb6{bottom:495.379200px;}
.y111{bottom:496.529250px;}
.yea{bottom:505.363200px;}
.y1c{bottom:509.438400px;}
.y13a{bottom:511.904850px;}
.y5c{bottom:512.078700px;}
.yc8{bottom:512.078850px;}
.yb5{bottom:515.863200px;}
.yee{bottom:521.213550px;}
.ye9{bottom:525.847200px;}
.y1b{bottom:529.242900px;}
.y139{bottom:532.910850px;}
.y170{bottom:533.024850px;}
.y110{bottom:533.042700px;}
.y5b{bottom:533.078700px;}
.yc7{bottom:533.078850px;}
.yb4{bottom:536.347200px;}
.ye8{bottom:546.331200px;}
.y1a{bottom:549.047400px;}
.y138{bottom:553.916850px;}
.y16f{bottom:554.030850px;}
.y10f{bottom:554.048700px;}
.y5a{bottom:554.078700px;}
.ydd{bottom:554.078850px;}
.ybf{bottom:554.095650px;}
.yb3{bottom:556.831200px;}
.ye7{bottom:566.815200px;}
.y19{bottom:568.851900px;}
.y137{bottom:574.922850px;}
.y16e{bottom:575.036850px;}
.y10e{bottom:575.054700px;}
.y59{bottom:575.078700px;}
.yc6{bottom:575.078850px;}
.yb2{bottom:577.315200px;}
.ye6{bottom:587.299200px;}
.y18{bottom:588.656400px;}
.y136{bottom:595.928850px;}
.y16d{bottom:596.042850px;}
.y10d{bottom:596.060700px;}
.y58{bottom:596.078700px;}
.yc5{bottom:596.078850px;}
.yb1{bottom:597.799200px;}
.ye5{bottom:607.783200px;}
.y17{bottom:608.460900px;}
.y135{bottom:616.934850px;}
.y16c{bottom:617.048850px;}
.y10c{bottom:617.066700px;}
.y57{bottom:617.078700px;}
.yc4{bottom:617.078850px;}
.yb0{bottom:618.283200px;}
.y16{bottom:628.265400px;}
.ye4{bottom:628.267200px;}
.y134{bottom:637.940850px;}
.y16b{bottom:638.054850px;}
.y10b{bottom:638.072700px;}
.y56{bottom:638.078700px;}
.ydc{bottom:638.078850px;}
.yaf{bottom:638.767200px;}
.y15{bottom:648.069900px;}
.ye3{bottom:648.751200px;}
.y133{bottom:658.946850px;}
.y16a{bottom:659.060850px;}
.y55{bottom:659.078700px;}
.yae{bottom:659.251200px;}
.y14{bottom:667.874400px;}
.ye2{bottom:679.228650px;}
.y132{bottom:679.952850px;}
.y169{bottom:680.066850px;}
.y54{bottom:680.078700px;}
.yc3{bottom:680.078850px;}
.y10a{bottom:685.529250px;}
.y13{bottom:687.678900px;}
.yde{bottom:689.602350px;}
.yad{bottom:689.728500px;}
.ye1{bottom:699.033150px;}
.y131{bottom:700.958850px;}
.y168{bottom:701.072850px;}
.y53{bottom:701.078700px;}
.yc2{bottom:701.078850px;}
.y12{bottom:707.483400px;}
.yac{bottom:709.533000px;}
.y130{bottom:721.964850px;}
.y109{bottom:722.072700px;}
.y52{bottom:722.078700px;}
.yc1{bottom:722.078850px;}
.y11{bottom:727.287900px;}
.y12f{bottom:742.970850px;}
.y51{bottom:743.078700px;}
.yc0{bottom:743.078850px;}
.y167{bottom:756.513600px;}
.y10{bottom:758.385300px;}
.y12e{bottom:763.976850px;}
.y50{bottom:764.078700px;}
.y9b{bottom:764.078850px;}
.y108{bottom:769.529250px;}
.y12d{bottom:784.982850px;}
.y4f{bottom:785.078700px;}
.y9a{bottom:785.078850px;}
.y166{bottom:788.811000px;}
.y12c{bottom:805.988850px;}
.y4e{bottom:806.078700px;}
.y99{bottom:806.078850px;}
.y102{bottom:825.390750px;}
.y12b{bottom:826.994850px;}
.y4d{bottom:827.078700px;}
.y98{bottom:827.078850px;}
.y107{bottom:832.529250px;}
.ya{bottom:837.666900px;}
.y101{bottom:840.390750px;}
.y12a{bottom:848.000850px;}
.y165{bottom:848.018850px;}
.y4c{bottom:848.078700px;}
.y97{bottom:848.078850px;}
.y9{bottom:855.666900px;}
.y100{bottom:862.146750px;}
.y129{bottom:869.006850px;}
.y164{bottom:869.024850px;}
.y4b{bottom:869.078700px;}
.y96{bottom:869.078850px;}
.y8{bottom:873.666900px;}
.yff{bottom:877.146750px;}
.y128{bottom:890.012850px;}
.y163{bottom:890.030850px;}
.y4a{bottom:890.078700px;}
.y95{bottom:890.078850px;}
.y7{bottom:891.666900px;}
.y106{bottom:895.529250px;}
.yfe{bottom:898.902750px;}
.y127{bottom:911.018850px;}
.y162{bottom:911.036850px;}
.y49{bottom:911.078700px;}
.y94{bottom:911.078850px;}
.yfd{bottom:920.658750px;}
.y6{bottom:926.674800px;}
.y126{bottom:932.024850px;}
.y161{bottom:932.042850px;}
.y48{bottom:932.078700px;}
.y93{bottom:932.078850px;}
.yfc{bottom:942.414750px;}
.yf0{bottom:946.441050px;}
.y5{bottom:946.474800px;}
.y125{bottom:953.030850px;}
.y160{bottom:953.048850px;}
.y47{bottom:953.078700px;}
.y92{bottom:953.078850px;}
.y105{bottom:958.936950px;}
.yfb{bottom:964.170750px;}
.y124{bottom:974.036850px;}
.y15f{bottom:974.054850px;}
.y46{bottom:974.078700px;}
.y91{bottom:974.078850px;}
.y4{bottom:983.288550px;}
.yfa{bottom:985.926750px;}
.y104{bottom:988.440900px;}
.y123{bottom:995.042850px;}
.y15e{bottom:995.060850px;}
.y45{bottom:995.078700px;}
.y90{bottom:995.078850px;}
.yf9{bottom:1007.682750px;}
.y122{bottom:1016.048850px;}
.y15d{bottom:1016.066850px;}
.y44{bottom:1016.078700px;}
.y8f{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yf8{bottom:1029.438750px;}
.y121{bottom:1037.054850px;}
.y15c{bottom:1037.072850px;}
.y43{bottom:1037.078700px;}
.y71{bottom:1037.078850px;}
.yf7{bottom:1044.438750px;}
.y2{bottom:1049.282550px;}
.y120{bottom:1058.060850px;}
.y42{bottom:1058.078700px;}
.y70{bottom:1058.078850px;}
.yf6{bottom:1066.194750px;}
.y11f{bottom:1079.066850px;}
.y41{bottom:1079.078700px;}
.y6f{bottom:1079.078850px;}
.yf5{bottom:1087.950750px;}
.y15b{bottom:1092.029250px;}
.y11e{bottom:1100.072850px;}
.y40{bottom:1100.078700px;}
.y6e{bottom:1100.078850px;}
.yf{bottom:1109.815500px;}
.y103{bottom:1111.570800px;}
.y7a{bottom:1112.695800px;}
.yf4{bottom:1119.282900px;}
.y3f{bottom:1121.078700px;}
.y6d{bottom:1121.078850px;}
.y15a{bottom:1124.326800px;}
.y3b{bottom:1159.189500px;}
.y3a{bottom:1178.689500px;}
.y3e{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h13{height:38.226562px;}
.h10{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h14{height:41.882812px;}
.h8{height:43.004883px;}
.hf{height:43.057617px;}
.ha{height:43.321289px;}
.h9{height:45.615234px;}
.h12{height:45.674994px;}
.hb{height:47.118164px;}
.h16{height:47.142164px;}
.he{height:48.134766px;}
.h11{height:50.176758px;}
.h15{height:50.242494px;}
.hd{height:52.353516px;}
.h4{height:52.948242px;}
.hc{height:54.738281px;}
.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;}
.xb{left:107.063850px;}
.xc{left:108.289650px;}
.x11{left:112.251000px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.x10{left:214.119000px;}
.x4{left:300.189000px;}
.xe{left:304.449450px;}
.x5{left:317.199000px;}
.xf{left:320.809200px;}
.xd{left:332.841450px;}
.x19{left:381.279000px;}
.x3{left:396.050700px;}
.x12{left:424.095000px;}
.x1e{left:433.407000px;}
.x13{left:523.299000px;}
.x1a{left:548.511000px;}
.x14{left:551.655000px;}
.x15{left:640.191000px;}
.x16{left:644.055000px;}
.xa{left:648.907800px;}
.x1b{left:661.179000px;}
.x9{left:669.715800px;}
.x17{left:737.631000px;}
.x1c{left:751.011000px;}
.x1d{left:754.023000px;}
.x18{left:760.839000px;}
.x1{left:801.157500px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.ls25{letter-spacing:-8.426667pt;}
.ls16{letter-spacing:-6.432000pt;}
.ls22{letter-spacing:-6.240000pt;}
.lsc{letter-spacing:-6.186667pt;}
.ls24{letter-spacing:-5.653333pt;}
.ls21{letter-spacing:-3.040000pt;}
.ls15{letter-spacing:-2.880000pt;}
.ls13{letter-spacing:-0.960000pt;}
.lsb{letter-spacing:-0.906667pt;}
.ls18{letter-spacing:-0.853333pt;}
.ls7{letter-spacing:-0.816000pt;}
.lsa{letter-spacing:-0.800000pt;}
.ls5{letter-spacing:-0.614400pt;}
.ls20{letter-spacing:-0.586667pt;}
.ls6{letter-spacing:-0.533333pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls1a{letter-spacing:-0.426667pt;}
.ls26{letter-spacing:-0.320000pt;}
.ls9{letter-spacing:-0.310933pt;}
.ls4{letter-spacing:-0.272000pt;}
.ls3{letter-spacing:-0.090667pt;}
.ls1b{letter-spacing:-0.053333pt;}
.ls2{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.010667pt;}
.ls27{letter-spacing:0.213333pt;}
.ls14{letter-spacing:0.336000pt;}
.ls1{letter-spacing:3.835200pt;}
.lsf{letter-spacing:4.053333pt;}
.ls1e{letter-spacing:4.224000pt;}
.ls17{letter-spacing:6.096000pt;}
.lse{letter-spacing:6.720000pt;}
.ls1c{letter-spacing:8.928000pt;}
.ls19{letter-spacing:9.013333pt;}
.ls8{letter-spacing:9.269333pt;}
.ls23{letter-spacing:34.077867pt;}
.ls0{letter-spacing:38.383435pt;}
.ls10{letter-spacing:586.880000pt;}
.ls12{letter-spacing:598.826667pt;}
.ls1d{letter-spacing:610.816000pt;}
.ls11{letter-spacing:636.800000pt;}
.ws0{word-spacing:-22.304000pt;}
.ws8{word-spacing:-15.936000pt;}
.ws8e{word-spacing:-14.608000pt;}
.ws7e{word-spacing:-14.490667pt;}
.ws6{word-spacing:-13.280000pt;}
.ws39{word-spacing:-13.226667pt;}
.ws38{word-spacing:-13.173333pt;}
.ws9{word-spacing:-13.066667pt;}
.ws56{word-spacing:-13.013333pt;}
.ws55{word-spacing:-12.853333pt;}
.wsa{word-spacing:-12.533333pt;}
.ws69{word-spacing:-12.480000pt;}
.ws4e{word-spacing:-12.426667pt;}
.ws53{word-spacing:-12.213333pt;}
.ws46{word-spacing:-11.952000pt;}
.ws8f{word-spacing:-11.904000pt;}
.ws7{word-spacing:-11.760000pt;}
.ws68{word-spacing:-11.472000pt;}
.ws92{word-spacing:-11.424000pt;}
.wsb{word-spacing:-10.992000pt;}
.wsf{word-spacing:-10.800000pt;}
.wsc{word-spacing:-10.176000pt;}
.wsd{word-spacing:-9.984000pt;}
.ws10{word-spacing:-9.770667pt;}
.ws81{word-spacing:-9.728000pt;}
.ws4{word-spacing:-9.685333pt;}
.ws1d{word-spacing:-9.600000pt;}
.ws47{word-spacing:-9.072000pt;}
.ws5{word-spacing:-8.793600pt;}
.ws3{word-spacing:-8.549333pt;}
.ws1{word-spacing:-8.482261pt;}
.ws7a{word-spacing:-7.413333pt;}
.ws1f{word-spacing:-7.400213pt;}
.ws20{word-spacing:-6.880000pt;}
.ws6d{word-spacing:-6.826667pt;}
.ws48{word-spacing:-5.520000pt;}
.ws36{word-spacing:-3.024000pt;}
.ws6f{word-spacing:-2.453333pt;}
.ws51{word-spacing:-2.256000pt;}
.ws2e{word-spacing:-2.240000pt;}
.ws52{word-spacing:-2.208000pt;}
.ws5a{word-spacing:-1.968000pt;}
.ws90{word-spacing:-1.824000pt;}
.ws37{word-spacing:-1.632000pt;}
.ws64{word-spacing:-1.536000pt;}
.ws43{word-spacing:-1.296000pt;}
.ws31{word-spacing:-1.013333pt;}
.ws8b{word-spacing:-0.960000pt;}
.ws27{word-spacing:-0.906667pt;}
.ws62{word-spacing:-0.864000pt;}
.ws63{word-spacing:-0.816000pt;}
.ws60{word-spacing:-0.528000pt;}
.ws4d{word-spacing:-0.240000pt;}
.ws95{word-spacing:-0.213333pt;}
.ws13{word-spacing:-0.192000pt;}
.ws67{word-spacing:-0.096000pt;}
.wse{word-spacing:-0.048000pt;}
.ws1e{word-spacing:-0.042667pt;}
.ws11{word-spacing:0.000000pt;}
.ws59{word-spacing:0.053333pt;}
.ws12{word-spacing:0.272000pt;}
.ws15{word-spacing:0.288000pt;}
.ws8d{word-spacing:0.320000pt;}
.ws49{word-spacing:0.336000pt;}
.ws57{word-spacing:0.426667pt;}
.ws6a{word-spacing:0.480000pt;}
.ws1b{word-spacing:0.533333pt;}
.ws6b{word-spacing:0.586667pt;}
.ws14{word-spacing:0.614400pt;}
.ws2a{word-spacing:0.640000pt;}
.ws25{word-spacing:0.800000pt;}
.ws1c{word-spacing:0.816000pt;}
.ws50{word-spacing:0.853333pt;}
.ws8c{word-spacing:0.906667pt;}
.ws44{word-spacing:0.960000pt;}
.ws2b{word-spacing:1.386667pt;}
.ws73{word-spacing:1.440000pt;}
.ws72{word-spacing:1.493333pt;}
.ws22{word-spacing:1.706667pt;}
.ws2c{word-spacing:1.866667pt;}
.ws2d{word-spacing:1.920000pt;}
.ws28{word-spacing:2.133333pt;}
.ws21{word-spacing:2.613333pt;}
.ws18{word-spacing:2.736000pt;}
.ws54{word-spacing:2.773333pt;}
.ws4c{word-spacing:2.880000pt;}
.ws70{word-spacing:3.040000pt;}
.ws6e{word-spacing:3.360000pt;}
.ws7c{word-spacing:3.786667pt;}
.ws7b{word-spacing:3.802667pt;}
.ws7d{word-spacing:3.813333pt;}
.ws16{word-spacing:3.840000pt;}
.ws17{word-spacing:3.888000pt;}
.ws24{word-spacing:3.893333pt;}
.ws8a{word-spacing:4.160000pt;}
.ws84{word-spacing:4.213333pt;}
.ws66{word-spacing:4.224000pt;}
.ws83{word-spacing:4.266667pt;}
.ws65{word-spacing:4.272000pt;}
.ws85{word-spacing:4.693333pt;}
.ws33{word-spacing:4.746667pt;}
.ws19{word-spacing:4.752000pt;}
.ws32{word-spacing:4.800000pt;}
.ws76{word-spacing:5.013333pt;}
.ws26{word-spacing:5.066667pt;}
.ws71{word-spacing:5.653333pt;}
.ws35{word-spacing:5.664000pt;}
.ws34{word-spacing:5.760000pt;}
.ws42{word-spacing:5.866667pt;}
.ws79{word-spacing:5.904000pt;}
.ws4b{word-spacing:6.048000pt;}
.ws4a{word-spacing:6.144000pt;}
.ws4f{word-spacing:6.453333pt;}
.ws29{word-spacing:6.666667pt;}
.ws3a{word-spacing:6.773333pt;}
.ws78{word-spacing:7.093333pt;}
.ws77{word-spacing:7.146667pt;}
.ws74{word-spacing:7.200000pt;}
.ws75{word-spacing:7.253333pt;}
.ws1a{word-spacing:7.786667pt;}
.ws5c{word-spacing:8.832000pt;}
.ws89{word-spacing:8.853333pt;}
.ws5b{word-spacing:8.976000pt;}
.ws58{word-spacing:9.066667pt;}
.ws23{word-spacing:9.760000pt;}
.ws88{word-spacing:10.346667pt;}
.ws6c{word-spacing:11.093333pt;}
.ws87{word-spacing:11.573333pt;}
.ws86{word-spacing:11.680000pt;}
.ws45{word-spacing:12.096000pt;}
.ws30{word-spacing:13.760000pt;}
.ws2f{word-spacing:13.920000pt;}
.ws61{word-spacing:14.160000pt;}
.ws94{word-spacing:14.448000pt;}
.ws91{word-spacing:16.416000pt;}
.ws93{word-spacing:24.864000pt;}
.ws2{word-spacing:29.912120pt;}
.ws82{word-spacing:292.394667pt;}
.ws80{word-spacing:294.016000pt;}
.ws7f{word-spacing:385.066667pt;}
.ws3d{word-spacing:552.320000pt;}
.ws3c{word-spacing:576.298667pt;}
.ws5d{word-spacing:588.245333pt;}
.ws40{word-spacing:612.565333pt;}
.ws41{word-spacing:624.213333pt;}
.ws5f{word-spacing:624.554667pt;}
.ws3b{word-spacing:636.544000pt;}
.ws3f{word-spacing:648.533333pt;}
.ws5e{word-spacing:672.512000pt;}
.ws3e{word-spacing:736.469333pt;}
._23{margin-left:-11.578667pt;}
._e{margin-left:-9.680000pt;}
._0{margin-left:-7.915200pt;}
._4{margin-left:-6.174400pt;}
._13{margin-left:-5.109867pt;}
._3{margin-left:-4.143467pt;}
._6{margin-left:-3.110400pt;}
._1{margin-left:-1.541333pt;}
._2{width:0.915733pt;}
._9{width:2.443733pt;}
._7{width:3.441600pt;}
._8{width:4.464533pt;}
._a{width:5.394133pt;}
._b{width:6.426133pt;}
._c{width:7.325333pt;}
._12{width:8.540267pt;}
._11{width:10.128000pt;}
._1f{width:11.336533pt;}
._21{width:12.297067pt;}
._1d{width:13.336533pt;}
._d{width:14.538667pt;}
._1e{width:15.882667pt;}
._f{width:17.706667pt;}
._10{width:18.635733pt;}
._3d{width:19.663467pt;}
._3e{width:21.979200pt;}
._3a{width:23.366400pt;}
._3b{width:24.314667pt;}
._3f{width:25.618667pt;}
._5{width:32.328533pt;}
._2d{width:33.306667pt;}
._3c{width:38.286933pt;}
._22{width:72.746667pt;}
._24{width:76.058667pt;}
._20{width:77.760000pt;}
._26{width:103.686933pt;}
._25{width:116.510400pt;}
._27{width:125.141333pt;}
._2c{width:129.584000pt;}
._28{width:183.253333pt;}
._29{width:266.069333pt;}
._35{width:278.485333pt;}
._2e{width:282.432000pt;}
._36{width:291.200000pt;}
._33{width:294.544000pt;}
._17{width:316.293333pt;}
._38{width:317.184000pt;}
._2f{width:318.890667pt;}
._30{width:322.645333pt;}
._39{width:340.266667pt;}
._32{width:355.541333pt;}
._31{width:390.922667pt;}
._37{width:398.181333pt;}
._14{width:426.154667pt;}
._18{width:490.752000pt;}
._2b{width:512.096000pt;}
._15{width:614.746133pt;}
._19{width:623.146667pt;}
._1a{width:635.136000pt;}
._16{width:647.125333pt;}
._1c{width:659.114667pt;}
._34{width:664.928000pt;}
._2a{width:678.698667pt;}
._1b{width:719.061333pt;}
.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;}
.y3c{bottom:63.299600pt;}
.y3d{bottom:66.702267pt;}
.y14d{bottom:100.258533pt;}
.y159{bottom:100.461200pt;}
.y11d{bottom:100.482400pt;}
.y6c{bottom:100.514400pt;}
.ydb{bottom:100.514533pt;}
.y89{bottom:100.518667pt;}
.yab{bottom:104.046533pt;}
.ye{bottom:104.182267pt;}
.y2a{bottom:104.189067pt;}
.yb8{bottom:106.220800pt;}
.y79{bottom:107.083867pt;}
.ybb{bottom:107.103867pt;}
.yf2{bottom:107.107733pt;}
.ye0{bottom:107.107867pt;}
.yd{bottom:116.979067pt;}
.y14c{bottom:118.930533pt;}
.y158{bottom:119.133200pt;}
.y11c{bottom:119.154400pt;}
.y6b{bottom:119.181067pt;}
.yda{bottom:119.181200pt;}
.y88{bottom:119.185333pt;}
.yaa{bottom:122.254533pt;}
.y29{bottom:122.855733pt;}
.yb7{bottom:123.824800pt;}
.y78{bottom:124.687867pt;}
.yba{bottom:124.707867pt;}
.yf1{bottom:124.711733pt;}
.ydf{bottom:124.711867pt;}
.yc{bottom:129.775867pt;}
.y14b{bottom:137.602533pt;}
.y157{bottom:137.805200pt;}
.y11b{bottom:137.826400pt;}
.y6a{bottom:137.847733pt;}
.yd9{bottom:137.847867pt;}
.y87{bottom:137.852000pt;}
.ya9{bottom:140.462533pt;}
.y28{bottom:141.522400pt;}
.y77{bottom:142.291867pt;}
.yb9{bottom:142.311867pt;}
.yb{bottom:142.575867pt;}
.y14a{bottom:156.274533pt;}
.y17d{bottom:156.455867pt;}
.y156{bottom:156.477200pt;}
.y11a{bottom:156.498400pt;}
.y69{bottom:156.514400pt;}
.yd8{bottom:156.514533pt;}
.y86{bottom:156.518667pt;}
.ya8{bottom:158.670533pt;}
.y76{bottom:159.895867pt;}
.y27{bottom:160.189067pt;}
.yef{bottom:169.280800pt;}
.y149{bottom:174.946533pt;}
.y17c{bottom:175.127867pt;}
.y155{bottom:175.149200pt;}
.y119{bottom:175.170400pt;}
.y68{bottom:175.181067pt;}
.yd7{bottom:175.181200pt;}
.y85{bottom:175.185333pt;}
.ya7{bottom:176.878533pt;}
.y75{bottom:177.499867pt;}
.y26{bottom:178.855733pt;}
.y39{bottom:180.852267pt;}
.y148{bottom:193.618533pt;}
.y17b{bottom:193.799867pt;}
.y154{bottom:193.821200pt;}
.y118{bottom:193.842400pt;}
.y67{bottom:193.847733pt;}
.yd6{bottom:193.847867pt;}
.y84{bottom:193.852000pt;}
.ya6{bottom:195.086533pt;}
.y74{bottom:195.103867pt;}
.y38{bottom:196.848267pt;}
.y25{bottom:197.522400pt;}
.y147{bottom:212.290533pt;}
.y17a{bottom:212.471867pt;}
.y153{bottom:212.493200pt;}
.y66{bottom:212.514400pt;}
.yd5{bottom:212.514533pt;}
.y83{bottom:212.518667pt;}
.y73{bottom:212.707867pt;}
.y37{bottom:212.844267pt;}
.ya5{bottom:213.294533pt;}
.y24{bottom:216.189067pt;}
.yf3{bottom:225.280800pt;}
.y36{bottom:228.840267pt;}
.y72{bottom:230.311867pt;}
.y146{bottom:230.962533pt;}
.y179{bottom:231.143867pt;}
.y152{bottom:231.165200pt;}
.y65{bottom:231.181067pt;}
.yd4{bottom:231.181200pt;}
.ya4{bottom:231.502533pt;}
.y23{bottom:234.855733pt;}
.y117{bottom:243.947467pt;}
.y35{bottom:244.836267pt;}
.y145{bottom:249.634533pt;}
.ya3{bottom:249.710533pt;}
.y178{bottom:249.815867pt;}
.y151{bottom:249.837200pt;}
.y8e{bottom:249.847733pt;}
.yd3{bottom:249.847867pt;}
.y82{bottom:249.852000pt;}
.y22{bottom:253.522400pt;}
.y34{bottom:260.832267pt;}
.y64{bottom:261.789733pt;}
.ya2{bottom:267.918533pt;}
.y144{bottom:268.306533pt;}
.y177{bottom:268.487867pt;}
.y150{bottom:268.509200pt;}
.y8d{bottom:268.514400pt;}
.yd2{bottom:268.514533pt;}
.y81{bottom:268.518667pt;}
.y21{bottom:272.189067pt;}
.y33{bottom:276.828267pt;}
.ya1{bottom:286.126533pt;}
.y143{bottom:286.978533pt;}
.y176{bottom:287.159867pt;}
.y116{bottom:287.175733pt;}
.y8c{bottom:287.181067pt;}
.yd1{bottom:287.181200pt;}
.y80{bottom:287.185333pt;}
.y63{bottom:290.498667pt;}
.y20{bottom:290.855733pt;}
.y32{bottom:292.824267pt;}
.ybd{bottom:303.724667pt;}
.ya0{bottom:304.334533pt;}
.y142{bottom:305.650533pt;}
.y175{bottom:305.831867pt;}
.y8b{bottom:305.847733pt;}
.yd0{bottom:305.847867pt;}
.y1f{bottom:309.522400pt;}
.yed{bottom:317.463733pt;}
.y14f{bottom:317.789867pt;}
.ybc{bottom:321.328667pt;}
.y9f{bottom:322.542533pt;}
.y31{bottom:323.940267pt;}
.y141{bottom:324.322533pt;}
.y174{bottom:324.503867pt;}
.ybe{bottom:324.514400pt;}
.ycf{bottom:324.514533pt;}
.y7f{bottom:327.238667pt;}
.y115{bottom:329.359333pt;}
.yec{bottom:335.067733pt;}
.y30{bottom:339.936267pt;}
.y9e{bottom:340.750533pt;}
.y1e{bottom:341.020933pt;}
.y140{bottom:342.994533pt;}
.y173{bottom:343.175867pt;}
.y62{bottom:343.181067pt;}
.yce{bottom:343.181200pt;}
.y8a{bottom:344.539867pt;}
.y7e{bottom:345.905333pt;}
.y14e{bottom:346.498800pt;}
.y2f{bottom:355.932267pt;}
.y9d{bottom:358.958533pt;}
.y13f{bottom:361.666533pt;}
.y114{bottom:361.842400pt;}
.y61{bottom:361.847733pt;}
.ycd{bottom:361.847867pt;}
.y7d{bottom:364.572000pt;}
.y13e{bottom:380.338533pt;}
.y113{bottom:380.509067pt;}
.y60{bottom:380.514400pt;}
.ycc{bottom:380.514533pt;}
.y7c{bottom:383.238667pt;}
.y9c{bottom:386.053600pt;}
.y2e{bottom:387.048267pt;}
.y172{bottom:392.456533pt;}
.y13d{bottom:399.010533pt;}
.y112{bottom:399.175733pt;}
.y5f{bottom:399.181067pt;}
.ycb{bottom:399.181200pt;}
.y2d{bottom:403.048267pt;}
.y7b{bottom:411.947467pt;}
.y1d{bottom:416.380400pt;}
.y13c{bottom:417.682533pt;}
.y5e{bottom:417.847733pt;}
.yca{bottom:417.847867pt;}
.y2c{bottom:419.048267pt;}
.y171{bottom:421.165467pt;}
.yeb{bottom:431.003733pt;}
.y2b{bottom:435.048267pt;}
.y13b{bottom:436.354533pt;}
.y5d{bottom:436.514400pt;}
.yc9{bottom:436.514533pt;}
.yb6{bottom:440.337067pt;}
.y111{bottom:441.359333pt;}
.yea{bottom:449.211733pt;}
.y1c{bottom:452.834133pt;}
.y13a{bottom:455.026533pt;}
.y5c{bottom:455.181067pt;}
.yc8{bottom:455.181200pt;}
.yb5{bottom:458.545067pt;}
.yee{bottom:463.300933pt;}
.ye9{bottom:467.419733pt;}
.y1b{bottom:470.438133pt;}
.y139{bottom:473.698533pt;}
.y170{bottom:473.799867pt;}
.y110{bottom:473.815733pt;}
.y5b{bottom:473.847733pt;}
.yc7{bottom:473.847867pt;}
.yb4{bottom:476.753067pt;}
.ye8{bottom:485.627733pt;}
.y1a{bottom:488.042133pt;}
.y138{bottom:492.370533pt;}
.y16f{bottom:492.471867pt;}
.y10f{bottom:492.487733pt;}
.y5a{bottom:492.514400pt;}
.ydd{bottom:492.514533pt;}
.ybf{bottom:492.529467pt;}
.yb3{bottom:494.961067pt;}
.ye7{bottom:503.835733pt;}
.y19{bottom:505.646133pt;}
.y137{bottom:511.042533pt;}
.y16e{bottom:511.143867pt;}
.y10e{bottom:511.159733pt;}
.y59{bottom:511.181067pt;}
.yc6{bottom:511.181200pt;}
.yb2{bottom:513.169067pt;}
.ye6{bottom:522.043733pt;}
.y18{bottom:523.250133pt;}
.y136{bottom:529.714533pt;}
.y16d{bottom:529.815867pt;}
.y10d{bottom:529.831733pt;}
.y58{bottom:529.847733pt;}
.yc5{bottom:529.847867pt;}
.yb1{bottom:531.377067pt;}
.ye5{bottom:540.251733pt;}
.y17{bottom:540.854133pt;}
.y135{bottom:548.386533pt;}
.y16c{bottom:548.487867pt;}
.y10c{bottom:548.503733pt;}
.y57{bottom:548.514400pt;}
.yc4{bottom:548.514533pt;}
.yb0{bottom:549.585067pt;}
.y16{bottom:558.458133pt;}
.ye4{bottom:558.459733pt;}
.y134{bottom:567.058533pt;}
.y16b{bottom:567.159867pt;}
.y10b{bottom:567.175733pt;}
.y56{bottom:567.181067pt;}
.ydc{bottom:567.181200pt;}
.yaf{bottom:567.793067pt;}
.y15{bottom:576.062133pt;}
.ye3{bottom:576.667733pt;}
.y133{bottom:585.730533pt;}
.y16a{bottom:585.831867pt;}
.y55{bottom:585.847733pt;}
.yae{bottom:586.001067pt;}
.y14{bottom:593.666133pt;}
.ye2{bottom:603.758800pt;}
.y132{bottom:604.402533pt;}
.y169{bottom:604.503867pt;}
.y54{bottom:604.514400pt;}
.yc3{bottom:604.514533pt;}
.y10a{bottom:609.359333pt;}
.y13{bottom:611.270133pt;}
.yde{bottom:612.979867pt;}
.yad{bottom:613.092000pt;}
.ye1{bottom:621.362800pt;}
.y131{bottom:623.074533pt;}
.y168{bottom:623.175867pt;}
.y53{bottom:623.181067pt;}
.yc2{bottom:623.181200pt;}
.y12{bottom:628.874133pt;}
.yac{bottom:630.696000pt;}
.y130{bottom:641.746533pt;}
.y109{bottom:641.842400pt;}
.y52{bottom:641.847733pt;}
.yc1{bottom:641.847867pt;}
.y11{bottom:646.478133pt;}
.y12f{bottom:660.418533pt;}
.y51{bottom:660.514400pt;}
.yc0{bottom:660.514533pt;}
.y167{bottom:672.456533pt;}
.y10{bottom:674.120267pt;}
.y12e{bottom:679.090533pt;}
.y50{bottom:679.181067pt;}
.y9b{bottom:679.181200pt;}
.y108{bottom:684.026000pt;}
.y12d{bottom:697.762533pt;}
.y4f{bottom:697.847733pt;}
.y9a{bottom:697.847867pt;}
.y166{bottom:701.165333pt;}
.y12c{bottom:716.434533pt;}
.y4e{bottom:716.514400pt;}
.y99{bottom:716.514533pt;}
.y102{bottom:733.680667pt;}
.y12b{bottom:735.106533pt;}
.y4d{bottom:735.181067pt;}
.y98{bottom:735.181200pt;}
.y107{bottom:740.026000pt;}
.ya{bottom:744.592800pt;}
.y101{bottom:747.014000pt;}
.y12a{bottom:753.778533pt;}
.y165{bottom:753.794533pt;}
.y4c{bottom:753.847733pt;}
.y97{bottom:753.847867pt;}
.y9{bottom:760.592800pt;}
.y100{bottom:766.352667pt;}
.y129{bottom:772.450533pt;}
.y164{bottom:772.466533pt;}
.y4b{bottom:772.514400pt;}
.y96{bottom:772.514533pt;}
.y8{bottom:776.592800pt;}
.yff{bottom:779.686000pt;}
.y128{bottom:791.122533pt;}
.y163{bottom:791.138533pt;}
.y4a{bottom:791.181067pt;}
.y95{bottom:791.181200pt;}
.y7{bottom:792.592800pt;}
.y106{bottom:796.026000pt;}
.yfe{bottom:799.024667pt;}
.y127{bottom:809.794533pt;}
.y162{bottom:809.810533pt;}
.y49{bottom:809.847733pt;}
.y94{bottom:809.847867pt;}
.yfd{bottom:818.363333pt;}
.y6{bottom:823.710933pt;}
.y126{bottom:828.466533pt;}
.y161{bottom:828.482533pt;}
.y48{bottom:828.514400pt;}
.y93{bottom:828.514533pt;}
.yfc{bottom:837.702000pt;}
.yf0{bottom:841.280933pt;}
.y5{bottom:841.310933pt;}
.y125{bottom:847.138533pt;}
.y160{bottom:847.154533pt;}
.y47{bottom:847.181067pt;}
.y92{bottom:847.181200pt;}
.y105{bottom:852.388400pt;}
.yfb{bottom:857.040667pt;}
.y124{bottom:865.810533pt;}
.y15f{bottom:865.826533pt;}
.y46{bottom:865.847733pt;}
.y91{bottom:865.847867pt;}
.y4{bottom:874.034267pt;}
.yfa{bottom:876.379333pt;}
.y104{bottom:878.614133pt;}
.y123{bottom:884.482533pt;}
.y15e{bottom:884.498533pt;}
.y45{bottom:884.514400pt;}
.y90{bottom:884.514533pt;}
.yf9{bottom:895.718000pt;}
.y122{bottom:903.154533pt;}
.y15d{bottom:903.170533pt;}
.y44{bottom:903.181067pt;}
.y8f{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yf8{bottom:915.056667pt;}
.y121{bottom:921.826533pt;}
.y15c{bottom:921.842533pt;}
.y43{bottom:921.847733pt;}
.y71{bottom:921.847867pt;}
.yf7{bottom:928.390000pt;}
.y2{bottom:932.695600pt;}
.y120{bottom:940.498533pt;}
.y42{bottom:940.514400pt;}
.y70{bottom:940.514533pt;}
.yf6{bottom:947.728667pt;}
.y11f{bottom:959.170533pt;}
.y41{bottom:959.181067pt;}
.y6f{bottom:959.181200pt;}
.yf5{bottom:967.067333pt;}
.y15b{bottom:970.692667pt;}
.y11e{bottom:977.842533pt;}
.y40{bottom:977.847733pt;}
.y6e{bottom:977.847867pt;}
.yf{bottom:986.502667pt;}
.y103{bottom:988.062933pt;}
.y7a{bottom:989.062933pt;}
.yf4{bottom:994.918133pt;}
.y3f{bottom:996.514400pt;}
.y6d{bottom:996.514533pt;}
.y15a{bottom:999.401600pt;}
.y3b{bottom:1030.390667pt;}
.y3a{bottom:1047.724000pt;}
.y3e{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h13{height:33.979167pt;}
.h10{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h14{height:37.229167pt;}
.h8{height:38.226562pt;}
.hf{height:38.273438pt;}
.ha{height:38.507812pt;}
.h9{height:40.546875pt;}
.h12{height:40.599995pt;}
.hb{height:41.882812pt;}
.h16{height:41.904146pt;}
.he{height:42.786458pt;}
.h11{height:44.601562pt;}
.h15{height:44.659994pt;}
.hd{height:46.536458pt;}
.h4{height:47.065104pt;}
.hc{height:48.656250pt;}
.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;}
.xb{left:95.167867pt;}
.xc{left:96.257467pt;}
.x11{left:99.778667pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.x10{left:190.328000pt;}
.x4{left:266.834667pt;}
.xe{left:270.621733pt;}
.x5{left:281.954667pt;}
.xf{left:285.163733pt;}
.xd{left:295.859067pt;}
.x19{left:338.914667pt;}
.x3{left:352.045067pt;}
.x12{left:376.973333pt;}
.x1e{left:385.250667pt;}
.x13{left:465.154667pt;}
.x1a{left:487.565333pt;}
.x14{left:490.360000pt;}
.x15{left:569.058667pt;}
.x16{left:572.493333pt;}
.xa{left:576.806933pt;}
.x1b{left:587.714667pt;}
.x9{left:595.302933pt;}
.x17{left:655.672000pt;}
.x1c{left:667.565333pt;}
.x1d{left:670.242667pt;}
.x18{left:676.301333pt;}
.x1{left:712.140000pt;}
}




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