
    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_4146e63155a0adaadf6018f5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010000;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_fa346332cc029013878133cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.020000;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_2a1c3d0a4c31824dfc930a52.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.020000;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_ca5eade5203ebbac7b5e587e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.752000;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_1a98756f17b0ae4bf9d7da1c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_8e90edef7194b36a34a79b38.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.020000;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_8b2fc1fca82c6352beaab897.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.020000;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;}
.m4{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m6{transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.122951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.122951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.122951,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.142180,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.142180,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.142180,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,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);}
.m5{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);}
.v4{vertical-align:-21.600000px;}
.v1{vertical-align:-6.006000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:6.006000px;}
.v6{vertical-align:22.947000px;}
.v5{vertical-align:27.000000px;}
.v3{vertical-align:32.400000px;}
.ls16{letter-spacing:-0.612000px;}
.ls3{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.378000px;}
.lsf{letter-spacing:-0.360000px;}
.ls10{letter-spacing:-0.252000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.180000px;}
.ls14{letter-spacing:0.306000px;}
.ls9{letter-spacing:0.360000px;}
.ls8{letter-spacing:0.540000px;}
.ls12{letter-spacing:1.440000px;}
.lsc{letter-spacing:2.670000px;}
.lsb{letter-spacing:4.680000px;}
.ls13{letter-spacing:6.000000px;}
.ls15{letter-spacing:6.600000px;}
.lsa{letter-spacing:7.140000px;}
.ls7{letter-spacing:7.200000px;}
.lsd{letter-spacing:7.566000px;}
.lse{letter-spacing:8.700000px;}
.ls5{letter-spacing:9.600000px;}
.ls1{letter-spacing:10.800000px;}
.ls6{letter-spacing:24.318000px;}
.ls0{letter-spacing:25.830000px;}
.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;}
}
.ws19{word-spacing:-24.120000px;}
.wsa9{word-spacing:-20.100000px;}
.ws1{word-spacing:-16.920000px;}
.ws1a{word-spacing:-14.100000px;}
.ws55{word-spacing:-13.740000px;}
.ws54{word-spacing:-13.500000px;}
.ws87{word-spacing:-11.985000px;}
.ws2{word-spacing:-11.844000px;}
.wsaa{word-spacing:-11.475000px;}
.ws6{word-spacing:-11.280000px;}
.ws0{word-spacing:-9.870000px;}
.ws53{word-spacing:-9.618000px;}
.ws18{word-spacing:-9.600000px;}
.ws8{word-spacing:-9.492000px;}
.ws57{word-spacing:-8.389500px;}
.ws5{word-spacing:-7.896000px;}
.ws95{word-spacing:-7.200000px;}
.wse{word-spacing:-6.600000px;}
.ws88{word-spacing:-5.610000px;}
.wsb8{word-spacing:-5.580000px;}
.wsad{word-spacing:-4.380000px;}
.ws4f{word-spacing:-4.080000px;}
.ws7e{word-spacing:-4.020000px;}
.wsb5{word-spacing:-3.420000px;}
.ws73{word-spacing:-3.240000px;}
.wseb{word-spacing:-2.907000px;}
.wsa4{word-spacing:-2.820000px;}
.ws1f{word-spacing:-2.760000px;}
.ws9f{word-spacing:-2.700000px;}
.wse4{word-spacing:-2.601000px;}
.ws4a{word-spacing:-2.580000px;}
.wsce{word-spacing:-2.397000px;}
.wscf{word-spacing:-2.295000px;}
.wsa3{word-spacing:-2.220000px;}
.ws44{word-spacing:-2.160000px;}
.ws16{word-spacing:-1.980000px;}
.wsc4{word-spacing:-1.920000px;}
.ws6d{word-spacing:-1.860000px;}
.wsc9{word-spacing:-1.836000px;}
.ws81{word-spacing:-1.800000px;}
.ws64{word-spacing:-1.740000px;}
.wsbe{word-spacing:-1.680000px;}
.wsdb{word-spacing:-1.581000px;}
.wsbd{word-spacing:-1.560000px;}
.ws9b{word-spacing:-1.440000px;}
.ws9e{word-spacing:-1.380000px;}
.wsfb{word-spacing:-1.377000px;}
.wsf8{word-spacing:-1.326000px;}
.ws33{word-spacing:-1.320000px;}
.ws14{word-spacing:-1.260000px;}
.wsb7{word-spacing:-1.080000px;}
.wsca{word-spacing:-1.071000px;}
.wsb{word-spacing:-1.020000px;}
.wsc3{word-spacing:-0.960000px;}
.wsd0{word-spacing:-0.918000px;}
.ws5e{word-spacing:-0.840000px;}
.ws3e{word-spacing:-0.780000px;}
.wsab{word-spacing:-0.720000px;}
.wsb1{word-spacing:-0.660000px;}
.ws27{word-spacing:-0.540000px;}
.wse6{word-spacing:-0.510000px;}
.ws72{word-spacing:-0.480000px;}
.wse1{word-spacing:-0.459000px;}
.ws3d{word-spacing:-0.420000px;}
.wsd7{word-spacing:-0.306000px;}
.ws6c{word-spacing:-0.300000px;}
.wsd1{word-spacing:-0.204000px;}
.ws9a{word-spacing:-0.180000px;}
.wsb3{word-spacing:-0.120000px;}
.ws7{word-spacing:-0.060000px;}
.ws52{word-spacing:-0.051000px;}
.ws9{word-spacing:0.000000px;}
.wsa2{word-spacing:0.060000px;}
.wsb0{word-spacing:0.120000px;}
.wsb2{word-spacing:0.180000px;}
.ws97{word-spacing:0.240000px;}
.ws3f{word-spacing:0.360000px;}
.wse5{word-spacing:0.459000px;}
.wsc1{word-spacing:0.480000px;}
.wsa{word-spacing:0.540000px;}
.ws8c{word-spacing:0.600000px;}
.ws80{word-spacing:0.660000px;}
.ws17{word-spacing:0.840000px;}
.ws4e{word-spacing:0.900000px;}
.ws13{word-spacing:0.960000px;}
.ws9d{word-spacing:1.080000px;}
.wse9{word-spacing:1.224000px;}
.ws4d{word-spacing:1.320000px;}
.ws66{word-spacing:1.440000px;}
.ws2e{word-spacing:1.560000px;}
.wsd{word-spacing:1.620000px;}
.wsae{word-spacing:1.740000px;}
.ws77{word-spacing:1.980000px;}
.ws39{word-spacing:2.040000px;}
.ws8e{word-spacing:2.160000px;}
.wsf6{word-spacing:2.244000px;}
.ws38{word-spacing:2.280000px;}
.ws94{word-spacing:2.460000px;}
.wsbf{word-spacing:2.520000px;}
.ws37{word-spacing:2.580000px;}
.ws3b{word-spacing:2.640000px;}
.wsd4{word-spacing:2.652000px;}
.ws2b{word-spacing:2.700000px;}
.ws25{word-spacing:2.760000px;}
.wsa6{word-spacing:3.000000px;}
.ws7c{word-spacing:3.060000px;}
.ws48{word-spacing:3.240000px;}
.wsa0{word-spacing:3.300000px;}
.ws28{word-spacing:3.360000px;}
.ws6b{word-spacing:3.420000px;}
.wsaf{word-spacing:3.480000px;}
.wsa7{word-spacing:3.600000px;}
.ws15{word-spacing:3.660000px;}
.wsee{word-spacing:3.774000px;}
.ws67{word-spacing:3.780000px;}
.wsd9{word-spacing:3.825000px;}
.ws22{word-spacing:3.840000px;}
.ws32{word-spacing:3.900000px;}
.ws1d{word-spacing:4.020000px;}
.wsb9{word-spacing:4.080000px;}
.ws4c{word-spacing:4.140000px;}
.wsec{word-spacing:4.233000px;}
.ws6f{word-spacing:4.320000px;}
.ws2c{word-spacing:4.500000px;}
.ws6a{word-spacing:4.560000px;}
.wsf7{word-spacing:4.590000px;}
.wsf{word-spacing:4.620000px;}
.ws2a{word-spacing:4.740000px;}
.wsdd{word-spacing:4.947000px;}
.ws46{word-spacing:5.100000px;}
.ws26{word-spacing:5.160000px;}
.wse8{word-spacing:5.355000px;}
.wsb6{word-spacing:5.400000px;}
.ws4b{word-spacing:5.460000px;}
.wsfc{word-spacing:5.508000px;}
.wsfa{word-spacing:5.559000px;}
.wsb4{word-spacing:5.580000px;}
.ws8f{word-spacing:5.700000px;}
.wsfe{word-spacing:5.712000px;}
.wsc5{word-spacing:5.760000px;}
.ws86{word-spacing:5.820000px;}
.wsf1{word-spacing:5.865000px;}
.wsa1{word-spacing:5.880000px;}
.ws6e{word-spacing:5.940000px;}
.wsdc{word-spacing:5.967000px;}
.wsd2{word-spacing:6.018000px;}
.ws74{word-spacing:6.240000px;}
.ws42{word-spacing:6.360000px;}
.ws10{word-spacing:6.480000px;}
.wsbb{word-spacing:6.660000px;}
.ws79{word-spacing:6.720000px;}
.wsf3{word-spacing:6.783000px;}
.ws7a{word-spacing:6.840000px;}
.ws29{word-spacing:6.960000px;}
.wsac{word-spacing:7.080000px;}
.wsf5{word-spacing:7.140000px;}
.wse2{word-spacing:7.191000px;}
.ws7f{word-spacing:7.440000px;}
.wsf4{word-spacing:7.446000px;}
.ws91{word-spacing:7.500000px;}
.ws7b{word-spacing:7.560000px;}
.wscd{word-spacing:7.599000px;}
.wsa8{word-spacing:7.620000px;}
.wsde{word-spacing:7.854000px;}
.wse0{word-spacing:7.905000px;}
.wscc{word-spacing:8.007000px;}
.wsc7{word-spacing:8.040000px;}
.wsf9{word-spacing:8.109000px;}
.ws69{word-spacing:8.160000px;}
.ws3c{word-spacing:8.220000px;}
.wsdf{word-spacing:8.262000px;}
.ws47{word-spacing:8.340000px;}
.ws99{word-spacing:8.400000px;}
.ws12{word-spacing:8.460000px;}
.ws85{word-spacing:8.700000px;}
.wsbc{word-spacing:8.760000px;}
.ws30{word-spacing:8.820000px;}
.wsd8{word-spacing:8.925000px;}
.ws41{word-spacing:9.240000px;}
.ws83{word-spacing:9.300000px;}
.wsf0{word-spacing:9.384000px;}
.ws40{word-spacing:9.420000px;}
.ws2f{word-spacing:9.480000px;}
.wsef{word-spacing:9.792000px;}
.wsfd{word-spacing:9.843000px;}
.ws11{word-spacing:10.080000px;}
.ws8d{word-spacing:10.200000px;}
.wsed{word-spacing:10.506000px;}
.ws20{word-spacing:10.560000px;}
.wsc6{word-spacing:10.800000px;}
.ws1e{word-spacing:10.920000px;}
.ws82{word-spacing:10.980000px;}
.wse3{word-spacing:11.016000px;}
.wsf2{word-spacing:11.067000px;}
.wsc2{word-spacing:11.220000px;}
.ws51{word-spacing:11.520000px;}
.ws50{word-spacing:11.580000px;}
.ws35{word-spacing:11.640000px;}
.ws5f{word-spacing:11.760000px;}
.wsda{word-spacing:11.832000px;}
.ws31{word-spacing:11.880000px;}
.ws78{word-spacing:12.360000px;}
.ws101{word-spacing:12.444000px;}
.ws34{word-spacing:12.540000px;}
.ws96{word-spacing:13.020000px;}
.ws2d{word-spacing:13.200000px;}
.ws68{word-spacing:13.260000px;}
.ws75{word-spacing:13.380000px;}
.wsea{word-spacing:13.719000px;}
.ws70{word-spacing:13.740000px;}
.ws61{word-spacing:13.800000px;}
.ws63{word-spacing:14.220000px;}
.ws103{word-spacing:14.841000px;}
.wsd3{word-spacing:14.892000px;}
.ws65{word-spacing:15.120000px;}
.ws90{word-spacing:15.180000px;}
.ws23{word-spacing:15.240000px;}
.ws100{word-spacing:15.555000px;}
.ws43{word-spacing:15.600000px;}
.wsc8{word-spacing:15.720000px;}
.ws21{word-spacing:15.900000px;}
.ws92{word-spacing:15.960000px;}
.wsc{word-spacing:16.560000px;}
.ws60{word-spacing:16.680000px;}
.wsff{word-spacing:16.728000px;}
.ws71{word-spacing:16.800000px;}
.ws36{word-spacing:17.160000px;}
.wsc0{word-spacing:17.460000px;}
.ws3a{word-spacing:17.820000px;}
.ws7d{word-spacing:18.360000px;}
.ws24{word-spacing:18.420000px;}
.ws84{word-spacing:18.780000px;}
.ws45{word-spacing:18.900000px;}
.ws9c{word-spacing:18.960000px;}
.wsd5{word-spacing:19.380000px;}
.wscb{word-spacing:19.584000px;}
.ws102{word-spacing:19.992000px;}
.ws93{word-spacing:20.520000px;}
.wsd6{word-spacing:20.961000px;}
.ws76{word-spacing:21.240000px;}
.wsa5{word-spacing:25.380000px;}
.ws5d{word-spacing:27.300000px;}
.ws62{word-spacing:28.920000px;}
.wse7{word-spacing:29.478000px;}
.ws1c{word-spacing:32.130000px;}
.wsba{word-spacing:42.360000px;}
.ws49{word-spacing:43.500000px;}
.ws98{word-spacing:47.220000px;}
.ws4{word-spacing:51.153600px;}
.ws3{word-spacing:51.154200px;}
.ws56{word-spacing:130.254000px;}
.ws5a{word-spacing:133.875000px;}
.ws1b{word-spacing:256.734000px;}
.ws59{word-spacing:263.925000px;}
.ws5c{word-spacing:267.546000px;}
.ws58{word-spacing:273.411000px;}
.ws5b{word-spacing:277.032000px;}
.ws89{word-spacing:418.200000px;}
.ws8a{word-spacing:426.156000px;}
.ws8b{word-spacing:451.401000px;}
._1d{margin-left:-56.970000px;}
._1c{margin-left:-32.888400px;}
._16{margin-left:-30.856800px;}
._22{margin-left:-28.327200px;}
._17{margin-left:-26.901600px;}
._8{margin-left:-24.570000px;}
._18{margin-left:-22.590000px;}
._11{margin-left:-20.224800px;}
._50{margin-left:-18.709800px;}
._15{margin-left:-17.618400px;}
._b{margin-left:-16.538400px;}
._10{margin-left:-15.180000px;}
._f{margin-left:-14.160000px;}
._13{margin-left:-12.331200px;}
._e{margin-left:-11.280000px;}
._19{margin-left:-9.780000px;}
._1b{margin-left:-8.760000px;}
._9{margin-left:-6.480000px;}
._12{margin-left:-5.280000px;}
._2{margin-left:-3.998400px;}
._4{margin-left:-2.430000px;}
._6{margin-left:-1.371600px;}
._a{width:1.058400px;}
._7{width:2.430000px;}
._d{width:3.600000px;}
._5{width:5.389200px;}
._4e{width:6.936000px;}
._3d{width:8.713200px;}
._25{width:11.985000px;}
._1a{width:14.227200px;}
._c{width:15.480000px;}
._3e{width:18.000000px;}
._23{width:23.964000px;}
._24{width:25.920000px;}
._3{width:27.720000px;}
._1e{width:35.445000px;}
._4f{width:51.008400px;}
._21{width:80.427000px;}
._1f{width:105.672000px;}
._49{width:120.819000px;}
._20{width:130.917000px;}
._28{width:135.609000px;}
._2a{width:137.700000px;}
._33{width:139.230000px;}
._3f{width:141.321000px;}
._2c{width:159.630000px;}
._2b{width:161.200200px;}
._30{width:162.945000px;}
._36{width:164.821200px;}
._35{width:166.566000px;}
._39{width:176.970000px;}
._2e{width:188.190000px;}
._3c{width:191.811000px;}
._2d{width:206.244000px;}
._37{width:209.865000px;}
._2f{width:219.912000px;}
._3b{width:223.533000px;}
._3a{width:226.746000px;}
._29{width:257.244000px;}
._38{width:260.865000px;}
._42{width:280.511100px;}
._34{width:311.355000px;}
._27{width:342.465000px;}
._32{width:346.086000px;}
._4c{width:420.189000px;}
._48{width:423.708000px;}
._43{width:430.185000px;}
._40{width:436.815000px;}
._4a{width:455.634000px;}
._4b{width:468.945000px;}
._41{width:474.147000px;}
._4d{width:488.631000px;}
._45{width:495.261000px;}
._46{width:500.820000px;}
._47{width:514.488000px;}
._44{width:551.820000px;}
._0{width:849.072000px;}
._26{width:956.102400px;}
._31{width:1003.795200px;}
._1{width:1321.530000px;}
._14{width:2457.936600px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(102,102,102);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:33.600000px;}
.fsd{font-size:35.700000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:50.400000px;}
.fsb{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs5{font-size:72.000000px;}
.fsc{font-size:84.000000px;}
.fs1{font-size:88.620000px;}
.fs7{font-size:93.600000px;}
.fs2{font-size:102.480000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:38.367300px;}
.y2{bottom:38.517300px;}
.y1{bottom:39.867300px;}
.y16{bottom:69.984000px;}
.yaa{bottom:69.993300px;}
.ya9{bottom:76.740450px;}
.ydc{bottom:81.220050px;}
.y15{bottom:84.988500px;}
.y7a{bottom:89.493300px;}
.ya8{bottom:98.453700px;}
.ydb{bottom:98.470800px;}
.y14{bottom:99.993000px;}
.y79{bottom:108.993300px;}
.yda{bottom:115.721550px;}
.ya7{bottom:120.166950px;}
.y78{bottom:128.493300px;}
.y1b{bottom:129.393000px;}
.yd9{bottom:132.972300px;}
.ya5{bottom:145.488450px;}
.ya2{bottom:145.489200px;}
.y1a{bottom:145.893000px;}
.y77{bottom:147.993300px;}
.yd8{bottom:150.223050px;}
.y19{bottom:162.393000px;}
.ya6{bottom:162.739200px;}
.ya4{bottom:162.739950px;}
.yd7{bottom:167.473800px;}
.y76{bottom:167.493300px;}
.y18{bottom:178.893000px;}
.yd6{bottom:184.724550px;}
.y75{bottom:186.993300px;}
.ya3{bottom:190.904700px;}
.y17{bottom:195.393000px;}
.yd5{bottom:201.975300px;}
.y74{bottom:206.493300px;}
.yd4{bottom:219.226050px;}
.ya1{bottom:219.971250px;}
.y73{bottom:225.993300px;}
.y42{bottom:232.775700px;}
.yd3{bottom:236.476800px;}
.y72{bottom:245.493300px;}
.y41{bottom:250.026450px;}
.yd2{bottom:253.727550px;}
.y71{bottom:264.993300px;}
.yd1{bottom:270.978300px;}
.y40{bottom:271.026450px;}
.ya0{bottom:273.240750px;}
.y47{bottom:279.099450px;}
.y70{bottom:284.493300px;}
.yd0{bottom:288.229050px;}
.y9f{bottom:294.954000px;}
.y46{bottom:295.599450px;}
.y6f{bottom:303.993300px;}
.ycf{bottom:305.479800px;}
.y3f{bottom:307.026450px;}
.y45{bottom:312.099450px;}
.y9e{bottom:316.667250px;}
.yce{bottom:322.730550px;}
.y6e{bottom:323.493300px;}
.y44{bottom:328.599450px;}
.y3e{bottom:329.526450px;}
.ycd{bottom:339.981300px;}
.y9c{bottom:341.988750px;}
.y99{bottom:341.989500px;}
.y6d{bottom:342.993300px;}
.y43{bottom:345.099450px;}
.y3d{bottom:352.026450px;}
.ycc{bottom:357.232050px;}
.y9d{bottom:359.239500px;}
.y9b{bottom:359.240250px;}
.y6c{bottom:362.493300px;}
.y2d{bottom:372.312450px;}
.ycb{bottom:374.482800px;}
.y3c{bottom:374.526450px;}
.y6b{bottom:381.993300px;}
.y9a{bottom:387.405000px;}
.y2c{bottom:388.812450px;}
.yca{bottom:391.733550px;}
.y3b{bottom:397.026450px;}
.y6a{bottom:401.493300px;}
.y2b{bottom:405.312450px;}
.yc9{bottom:408.984300px;}
.y98{bottom:416.470350px;}
.y3a{bottom:419.526450px;}
.y7d{bottom:420.993300px;}
.y2a{bottom:421.812450px;}
.yc8{bottom:426.235050px;}
.y69{bottom:440.493300px;}
.y39{bottom:442.026450px;}
.yc7{bottom:443.485800px;}
.y29{bottom:454.812450px;}
.y7c{bottom:459.993300px;}
.yc6{bottom:460.736550px;}
.y38{bottom:464.526450px;}
.y28{bottom:476.712450px;}
.yc5{bottom:477.987300px;}
.y7b{bottom:479.493300px;}
.y37{bottom:487.026450px;}
.y27{bottom:492.312450px;}
.yc4{bottom:495.238050px;}
.y68{bottom:498.993300px;}
.y36{bottom:509.526450px;}
.yc3{bottom:512.488800px;}
.y26{bottom:514.212450px;}
.y67{bottom:518.493300px;}
.yc2{bottom:529.739550px;}
.y25{bottom:529.812450px;}
.y35{bottom:532.026450px;}
.y66{bottom:537.993300px;}
.yc1{bottom:546.990300px;}
.y24{bottom:551.712450px;}
.y34{bottom:554.526450px;}
.y65{bottom:557.493300px;}
.yc0{bottom:564.241050px;}
.y23{bottom:567.312450px;}
.y64{bottom:576.993300px;}
.y33{bottom:577.026450px;}
.ybf{bottom:581.491800px;}
.y22{bottom:583.812450px;}
.y63{bottom:596.493300px;}
.ybe{bottom:598.742550px;}
.y32{bottom:599.526450px;}
.y21{bottom:605.712450px;}
.yf8{bottom:610.756800px;}
.y62{bottom:615.993300px;}
.y20{bottom:621.312450px;}
.y31{bottom:622.026450px;}
.yf7{bottom:628.007550px;}
.y61{bottom:635.493300px;}
.ybd{bottom:635.964450px;}
.y1f{bottom:643.212450px;}
.y30{bottom:644.526450px;}
.yf6{bottom:645.258300px;}
.y60{bottom:654.993300px;}
.ybc{bottom:657.677700px;}
.y1e{bottom:658.812450px;}
.y101{bottom:660.277800px;}
.yf5{bottom:662.509050px;}
.y2f{bottom:667.026450px;}
.y5f{bottom:674.493300px;}
.y1d{bottom:675.312450px;}
.ybb{bottom:679.390950px;}
.yf4{bottom:679.759800px;}
.y100{bottom:679.777800px;}
.y95{bottom:689.314050px;}
.y2e{bottom:689.526450px;}
.y5e{bottom:693.993300px;}
.yf3{bottom:697.010550px;}
.y1c{bottom:697.212450px;}
.yff{bottom:699.277800px;}
.yba{bottom:704.712450px;}
.y94{bottom:706.564800px;}
.y5d{bottom:713.493300px;}
.yf2{bottom:714.261300px;}
.yfe{bottom:718.777800px;}
.y93{bottom:723.815550px;}
.yf1{bottom:731.512050px;}
.y5c{bottom:732.993300px;}
.yb9{bottom:733.774800px;}
.yfd{bottom:738.277800px;}
.y92{bottom:741.066300px;}
.y13{bottom:742.206450px;}
.y12{bottom:744.456450px;}
.yf0{bottom:748.762800px;}
.yb8{bottom:751.777800px;}
.y5b{bottom:752.493300px;}
.yfc{bottom:757.777800px;}
.y91{bottom:758.317050px;}
.yef{bottom:766.013550px;}
.y11{bottom:769.206450px;}
.y10{bottom:771.456450px;}
.y5a{bottom:771.993300px;}
.yfb{bottom:777.277800px;}
.y90{bottom:780.030300px;}
.yee{bottom:783.264300px;}
.y59{bottom:791.493300px;}
.yb7{bottom:795.714300px;}
.yf{bottom:796.206450px;}
.yfa{bottom:796.777800px;}
.y8f{bottom:797.281050px;}
.ye{bottom:798.456450px;}
.yed{bottom:800.515050px;}
.y58{bottom:810.993300px;}
.y8e{bottom:814.531800px;}
.yf9{bottom:816.277800px;}
.yb6{bottom:817.427550px;}
.yec{bottom:817.765800px;}
.yd{bottom:823.206450px;}
.yc{bottom:825.456450px;}
.y57{bottom:830.493300px;}
.y8d{bottom:831.782550px;}
.yeb{bottom:835.016550px;}
.yb5{bottom:839.140800px;}
.y8c{bottom:849.033300px;}
.y56{bottom:849.993300px;}
.yea{bottom:852.267300px;}
.yb4{bottom:864.462300px;}
.y48{bottom:866.445000px;}
.y55{bottom:869.493300px;}
.ye9{bottom:869.518050px;}
.y8b{bottom:870.746550px;}
.yb{bottom:883.938450px;}
.ye8{bottom:886.768800px;}
.y54{bottom:888.993300px;}
.y8a{bottom:892.459800px;}
.yb3{bottom:893.530350px;}
.ye7{bottom:904.019550px;}
.y53{bottom:908.493300px;}
.y89{bottom:909.710550px;}
.ya{bottom:918.444450px;}
.ye6{bottom:921.270300px;}
.y88{bottom:926.961300px;}
.y52{bottom:927.993300px;}
.ye5{bottom:938.521050px;}
.y51{bottom:947.493300px;}
.y87{bottom:948.674550px;}
.yb2{bottom:950.548350px;}
.y9{bottom:952.950450px;}
.ye4{bottom:955.771800px;}
.y86{bottom:965.925300px;}
.y50{bottom:966.993300px;}
.yb1{bottom:972.261600px;}
.ye3{bottom:973.022550px;}
.y85{bottom:983.176050px;}
.y4f{bottom:986.493300px;}
.y8{bottom:987.456450px;}
.ye2{bottom:990.273300px;}
.yb0{bottom:993.974850px;}
.y84{bottom:1004.889300px;}
.y4e{bottom:1005.993300px;}
.ye1{bottom:1007.524050px;}
.yae{bottom:1019.296350px;}
.yab{bottom:1019.296950px;}
.ye0{bottom:1024.774800px;}
.y4d{bottom:1025.493300px;}
.y83{bottom:1030.210800px;}
.y7f{bottom:1030.212300px;}
.yaf{bottom:1036.547100px;}
.yad{bottom:1036.547700px;}
.ydf{bottom:1042.025550px;}
.y4c{bottom:1044.993300px;}
.y81{bottom:1047.463050px;}
.y7{bottom:1057.956450px;}
.yde{bottom:1059.276300px;}
.y97{bottom:1064.493300px;}
.y82{bottom:1064.712300px;}
.yac{bottom:1064.712450px;}
.y80{bottom:1064.713800px;}
.ydd{bottom:1076.527050px;}
.y4b{bottom:1083.993300px;}
.y7e{bottom:1093.777800px;}
.y6{bottom:1098.398550px;}
.y5{bottom:1114.301550px;}
.y4{bottom:1120.301550px;}
.y4a{bottom:1127.842800px;}
.y49{bottom:1130.917800px;}
.y96{bottom:1130.943300px;}
.hc{height:26.376000px;}
.h2{height:32.970000px;}
.h12{height:33.072000px;}
.h10{height:34.945312px;}
.hb{height:37.680000px;}
.h4{height:38.976000px;}
.hf{height:40.035000px;}
.h6{height:42.390000px;}
.hd{height:47.100000px;}
.h13{height:50.971500px;}
.h14{height:50.972100px;}
.h15{height:50.974500px;}
.ha{height:56.520000px;}
.he{height:59.970000px;}
.h11{height:65.940000px;}
.h3{height:69.566700px;}
.h8{height:71.964000px;}
.h9{height:73.476000px;}
.h5{height:80.446800px;}
.h7{height:84.780000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:68.456700px;}
.x2c{left:77.831700px;}
.x25{left:87.956700px;}
.x34{left:95.461200px;}
.x23{left:98.360550px;}
.x24{left:100.975500px;}
.x5{left:176.657100px;}
.x6{left:180.021300px;}
.x17{left:206.591100px;}
.x18{left:211.397100px;}
.x9{left:218.218800px;}
.xa{left:223.024650px;}
.x1f{left:237.527400px;}
.x20{left:242.333400px;}
.x2d{left:244.051050px;}
.x30{left:245.479200px;}
.x7{left:287.318850px;}
.x8{left:290.683050px;}
.x21{left:294.235500px;}
.x11{left:308.979300px;}
.x12{left:313.785300px;}
.x2e{left:336.387900px;}
.x31{left:338.723250px;}
.x19{left:363.030900px;}
.x1a{left:367.836900px;}
.xb{left:387.996300px;}
.xc{left:392.802300px;}
.x27{left:460.271700px;}
.x13{left:465.351900px;}
.x14{left:470.157900px;}
.x35{left:478.275600px;}
.x26{left:479.771700px;}
.x33{left:487.280100px;}
.x1b{left:560.149500px;}
.x1c{left:564.955500px;}
.x28{left:567.004200px;}
.x2a{left:585.007500px;}
.x4{left:620.407200px;}
.xd{left:648.180450px;}
.xe{left:652.986450px;}
.x29{left:657.185250px;}
.x32{left:658.234050px;}
.x2f{left:659.499900px;}
.x15{left:700.089900px;}
.x16{left:704.895900px;}
.x1d{left:742.238550px;}
.x1e{left:747.044550px;}
.x2b{left:766.506900px;}
.x2{left:791.305800px;}
.x3{left:794.670000px;}
.xf{left:802.141350px;}
.x10{left:806.947200px;}
.x22{left:859.650000px;}
@media print{
.v4{vertical-align:-19.200000pt;}
.v1{vertical-align:-5.338667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.338667pt;}
.v6{vertical-align:20.397333pt;}
.v5{vertical-align:24.000000pt;}
.v3{vertical-align:28.800000pt;}
.ls16{letter-spacing:-0.544000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.336000pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls10{letter-spacing:-0.224000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.160000pt;}
.ls14{letter-spacing:0.272000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls12{letter-spacing:1.280000pt;}
.lsc{letter-spacing:2.373333pt;}
.lsb{letter-spacing:4.160000pt;}
.ls13{letter-spacing:5.333333pt;}
.ls15{letter-spacing:5.866667pt;}
.lsa{letter-spacing:6.346667pt;}
.ls7{letter-spacing:6.400000pt;}
.lsd{letter-spacing:6.725333pt;}
.lse{letter-spacing:7.733333pt;}
.ls5{letter-spacing:8.533333pt;}
.ls1{letter-spacing:9.600000pt;}
.ls6{letter-spacing:21.616000pt;}
.ls0{letter-spacing:22.960000pt;}
.ws19{word-spacing:-21.440000pt;}
.wsa9{word-spacing:-17.866667pt;}
.ws1{word-spacing:-15.040000pt;}
.ws1a{word-spacing:-12.533333pt;}
.ws55{word-spacing:-12.213333pt;}
.ws54{word-spacing:-12.000000pt;}
.ws87{word-spacing:-10.653333pt;}
.ws2{word-spacing:-10.528000pt;}
.wsaa{word-spacing:-10.200000pt;}
.ws6{word-spacing:-10.026667pt;}
.ws0{word-spacing:-8.773333pt;}
.ws53{word-spacing:-8.549333pt;}
.ws18{word-spacing:-8.533333pt;}
.ws8{word-spacing:-8.437333pt;}
.ws57{word-spacing:-7.457333pt;}
.ws5{word-spacing:-7.018667pt;}
.ws95{word-spacing:-6.400000pt;}
.wse{word-spacing:-5.866667pt;}
.ws88{word-spacing:-4.986667pt;}
.wsb8{word-spacing:-4.960000pt;}
.wsad{word-spacing:-3.893333pt;}
.ws4f{word-spacing:-3.626667pt;}
.ws7e{word-spacing:-3.573333pt;}
.wsb5{word-spacing:-3.040000pt;}
.ws73{word-spacing:-2.880000pt;}
.wseb{word-spacing:-2.584000pt;}
.wsa4{word-spacing:-2.506667pt;}
.ws1f{word-spacing:-2.453333pt;}
.ws9f{word-spacing:-2.400000pt;}
.wse4{word-spacing:-2.312000pt;}
.ws4a{word-spacing:-2.293333pt;}
.wsce{word-spacing:-2.130667pt;}
.wscf{word-spacing:-2.040000pt;}
.wsa3{word-spacing:-1.973333pt;}
.ws44{word-spacing:-1.920000pt;}
.ws16{word-spacing:-1.760000pt;}
.wsc4{word-spacing:-1.706667pt;}
.ws6d{word-spacing:-1.653333pt;}
.wsc9{word-spacing:-1.632000pt;}
.ws81{word-spacing:-1.600000pt;}
.ws64{word-spacing:-1.546667pt;}
.wsbe{word-spacing:-1.493333pt;}
.wsdb{word-spacing:-1.405333pt;}
.wsbd{word-spacing:-1.386667pt;}
.ws9b{word-spacing:-1.280000pt;}
.ws9e{word-spacing:-1.226667pt;}
.wsfb{word-spacing:-1.224000pt;}
.wsf8{word-spacing:-1.178667pt;}
.ws33{word-spacing:-1.173333pt;}
.ws14{word-spacing:-1.120000pt;}
.wsb7{word-spacing:-0.960000pt;}
.wsca{word-spacing:-0.952000pt;}
.wsb{word-spacing:-0.906667pt;}
.wsc3{word-spacing:-0.853333pt;}
.wsd0{word-spacing:-0.816000pt;}
.ws5e{word-spacing:-0.746667pt;}
.ws3e{word-spacing:-0.693333pt;}
.wsab{word-spacing:-0.640000pt;}
.wsb1{word-spacing:-0.586667pt;}
.ws27{word-spacing:-0.480000pt;}
.wse6{word-spacing:-0.453333pt;}
.ws72{word-spacing:-0.426667pt;}
.wse1{word-spacing:-0.408000pt;}
.ws3d{word-spacing:-0.373333pt;}
.wsd7{word-spacing:-0.272000pt;}
.ws6c{word-spacing:-0.266667pt;}
.wsd1{word-spacing:-0.181333pt;}
.ws9a{word-spacing:-0.160000pt;}
.wsb3{word-spacing:-0.106667pt;}
.ws7{word-spacing:-0.053333pt;}
.ws52{word-spacing:-0.045333pt;}
.ws9{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.053333pt;}
.wsb0{word-spacing:0.106667pt;}
.wsb2{word-spacing:0.160000pt;}
.ws97{word-spacing:0.213333pt;}
.ws3f{word-spacing:0.320000pt;}
.wse5{word-spacing:0.408000pt;}
.wsc1{word-spacing:0.426667pt;}
.wsa{word-spacing:0.480000pt;}
.ws8c{word-spacing:0.533333pt;}
.ws80{word-spacing:0.586667pt;}
.ws17{word-spacing:0.746667pt;}
.ws4e{word-spacing:0.800000pt;}
.ws13{word-spacing:0.853333pt;}
.ws9d{word-spacing:0.960000pt;}
.wse9{word-spacing:1.088000pt;}
.ws4d{word-spacing:1.173333pt;}
.ws66{word-spacing:1.280000pt;}
.ws2e{word-spacing:1.386667pt;}
.wsd{word-spacing:1.440000pt;}
.wsae{word-spacing:1.546667pt;}
.ws77{word-spacing:1.760000pt;}
.ws39{word-spacing:1.813333pt;}
.ws8e{word-spacing:1.920000pt;}
.wsf6{word-spacing:1.994667pt;}
.ws38{word-spacing:2.026667pt;}
.ws94{word-spacing:2.186667pt;}
.wsbf{word-spacing:2.240000pt;}
.ws37{word-spacing:2.293333pt;}
.ws3b{word-spacing:2.346667pt;}
.wsd4{word-spacing:2.357333pt;}
.ws2b{word-spacing:2.400000pt;}
.ws25{word-spacing:2.453333pt;}
.wsa6{word-spacing:2.666667pt;}
.ws7c{word-spacing:2.720000pt;}
.ws48{word-spacing:2.880000pt;}
.wsa0{word-spacing:2.933333pt;}
.ws28{word-spacing:2.986667pt;}
.ws6b{word-spacing:3.040000pt;}
.wsaf{word-spacing:3.093333pt;}
.wsa7{word-spacing:3.200000pt;}
.ws15{word-spacing:3.253333pt;}
.wsee{word-spacing:3.354667pt;}
.ws67{word-spacing:3.360000pt;}
.wsd9{word-spacing:3.400000pt;}
.ws22{word-spacing:3.413333pt;}
.ws32{word-spacing:3.466667pt;}
.ws1d{word-spacing:3.573333pt;}
.wsb9{word-spacing:3.626667pt;}
.ws4c{word-spacing:3.680000pt;}
.wsec{word-spacing:3.762667pt;}
.ws6f{word-spacing:3.840000pt;}
.ws2c{word-spacing:4.000000pt;}
.ws6a{word-spacing:4.053333pt;}
.wsf7{word-spacing:4.080000pt;}
.wsf{word-spacing:4.106667pt;}
.ws2a{word-spacing:4.213333pt;}
.wsdd{word-spacing:4.397333pt;}
.ws46{word-spacing:4.533333pt;}
.ws26{word-spacing:4.586667pt;}
.wse8{word-spacing:4.760000pt;}
.wsb6{word-spacing:4.800000pt;}
.ws4b{word-spacing:4.853333pt;}
.wsfc{word-spacing:4.896000pt;}
.wsfa{word-spacing:4.941333pt;}
.wsb4{word-spacing:4.960000pt;}
.ws8f{word-spacing:5.066667pt;}
.wsfe{word-spacing:5.077333pt;}
.wsc5{word-spacing:5.120000pt;}
.ws86{word-spacing:5.173333pt;}
.wsf1{word-spacing:5.213333pt;}
.wsa1{word-spacing:5.226667pt;}
.ws6e{word-spacing:5.280000pt;}
.wsdc{word-spacing:5.304000pt;}
.wsd2{word-spacing:5.349333pt;}
.ws74{word-spacing:5.546667pt;}
.ws42{word-spacing:5.653333pt;}
.ws10{word-spacing:5.760000pt;}
.wsbb{word-spacing:5.920000pt;}
.ws79{word-spacing:5.973333pt;}
.wsf3{word-spacing:6.029333pt;}
.ws7a{word-spacing:6.080000pt;}
.ws29{word-spacing:6.186667pt;}
.wsac{word-spacing:6.293333pt;}
.wsf5{word-spacing:6.346667pt;}
.wse2{word-spacing:6.392000pt;}
.ws7f{word-spacing:6.613333pt;}
.wsf4{word-spacing:6.618667pt;}
.ws91{word-spacing:6.666667pt;}
.ws7b{word-spacing:6.720000pt;}
.wscd{word-spacing:6.754667pt;}
.wsa8{word-spacing:6.773333pt;}
.wsde{word-spacing:6.981333pt;}
.wse0{word-spacing:7.026667pt;}
.wscc{word-spacing:7.117333pt;}
.wsc7{word-spacing:7.146667pt;}
.wsf9{word-spacing:7.208000pt;}
.ws69{word-spacing:7.253333pt;}
.ws3c{word-spacing:7.306667pt;}
.wsdf{word-spacing:7.344000pt;}
.ws47{word-spacing:7.413333pt;}
.ws99{word-spacing:7.466667pt;}
.ws12{word-spacing:7.520000pt;}
.ws85{word-spacing:7.733333pt;}
.wsbc{word-spacing:7.786667pt;}
.ws30{word-spacing:7.840000pt;}
.wsd8{word-spacing:7.933333pt;}
.ws41{word-spacing:8.213333pt;}
.ws83{word-spacing:8.266667pt;}
.wsf0{word-spacing:8.341333pt;}
.ws40{word-spacing:8.373333pt;}
.ws2f{word-spacing:8.426667pt;}
.wsef{word-spacing:8.704000pt;}
.wsfd{word-spacing:8.749333pt;}
.ws11{word-spacing:8.960000pt;}
.ws8d{word-spacing:9.066667pt;}
.wsed{word-spacing:9.338667pt;}
.ws20{word-spacing:9.386667pt;}
.wsc6{word-spacing:9.600000pt;}
.ws1e{word-spacing:9.706667pt;}
.ws82{word-spacing:9.760000pt;}
.wse3{word-spacing:9.792000pt;}
.wsf2{word-spacing:9.837333pt;}
.wsc2{word-spacing:9.973333pt;}
.ws51{word-spacing:10.240000pt;}
.ws50{word-spacing:10.293333pt;}
.ws35{word-spacing:10.346667pt;}
.ws5f{word-spacing:10.453333pt;}
.wsda{word-spacing:10.517333pt;}
.ws31{word-spacing:10.560000pt;}
.ws78{word-spacing:10.986667pt;}
.ws101{word-spacing:11.061333pt;}
.ws34{word-spacing:11.146667pt;}
.ws96{word-spacing:11.573333pt;}
.ws2d{word-spacing:11.733333pt;}
.ws68{word-spacing:11.786667pt;}
.ws75{word-spacing:11.893333pt;}
.wsea{word-spacing:12.194667pt;}
.ws70{word-spacing:12.213333pt;}
.ws61{word-spacing:12.266667pt;}
.ws63{word-spacing:12.640000pt;}
.ws103{word-spacing:13.192000pt;}
.wsd3{word-spacing:13.237333pt;}
.ws65{word-spacing:13.440000pt;}
.ws90{word-spacing:13.493333pt;}
.ws23{word-spacing:13.546667pt;}
.ws100{word-spacing:13.826667pt;}
.ws43{word-spacing:13.866667pt;}
.wsc8{word-spacing:13.973333pt;}
.ws21{word-spacing:14.133333pt;}
.ws92{word-spacing:14.186667pt;}
.wsc{word-spacing:14.720000pt;}
.ws60{word-spacing:14.826667pt;}
.wsff{word-spacing:14.869333pt;}
.ws71{word-spacing:14.933333pt;}
.ws36{word-spacing:15.253333pt;}
.wsc0{word-spacing:15.520000pt;}
.ws3a{word-spacing:15.840000pt;}
.ws7d{word-spacing:16.320000pt;}
.ws24{word-spacing:16.373333pt;}
.ws84{word-spacing:16.693333pt;}
.ws45{word-spacing:16.800000pt;}
.ws9c{word-spacing:16.853333pt;}
.wsd5{word-spacing:17.226667pt;}
.wscb{word-spacing:17.408000pt;}
.ws102{word-spacing:17.770667pt;}
.ws93{word-spacing:18.240000pt;}
.wsd6{word-spacing:18.632000pt;}
.ws76{word-spacing:18.880000pt;}
.wsa5{word-spacing:22.560000pt;}
.ws5d{word-spacing:24.266667pt;}
.ws62{word-spacing:25.706667pt;}
.wse7{word-spacing:26.202667pt;}
.ws1c{word-spacing:28.560000pt;}
.wsba{word-spacing:37.653333pt;}
.ws49{word-spacing:38.666667pt;}
.ws98{word-spacing:41.973333pt;}
.ws4{word-spacing:45.469867pt;}
.ws3{word-spacing:45.470400pt;}
.ws56{word-spacing:115.781333pt;}
.ws5a{word-spacing:119.000000pt;}
.ws1b{word-spacing:228.208000pt;}
.ws59{word-spacing:234.600000pt;}
.ws5c{word-spacing:237.818667pt;}
.ws58{word-spacing:243.032000pt;}
.ws5b{word-spacing:246.250667pt;}
.ws89{word-spacing:371.733333pt;}
.ws8a{word-spacing:378.805333pt;}
.ws8b{word-spacing:401.245333pt;}
._1d{margin-left:-50.640000pt;}
._1c{margin-left:-29.234133pt;}
._16{margin-left:-27.428267pt;}
._22{margin-left:-25.179733pt;}
._17{margin-left:-23.912533pt;}
._8{margin-left:-21.840000pt;}
._18{margin-left:-20.080000pt;}
._11{margin-left:-17.977600pt;}
._50{margin-left:-16.630933pt;}
._15{margin-left:-15.660800pt;}
._b{margin-left:-14.700800pt;}
._10{margin-left:-13.493333pt;}
._f{margin-left:-12.586667pt;}
._13{margin-left:-10.961067pt;}
._e{margin-left:-10.026667pt;}
._19{margin-left:-8.693333pt;}
._1b{margin-left:-7.786667pt;}
._9{margin-left:-5.760000pt;}
._12{margin-left:-4.693333pt;}
._2{margin-left:-3.554133pt;}
._4{margin-left:-2.160000pt;}
._6{margin-left:-1.219200pt;}
._a{width:0.940800pt;}
._7{width:2.160000pt;}
._d{width:3.200000pt;}
._5{width:4.790400pt;}
._4e{width:6.165333pt;}
._3d{width:7.745067pt;}
._25{width:10.653333pt;}
._1a{width:12.646400pt;}
._c{width:13.760000pt;}
._3e{width:16.000000pt;}
._23{width:21.301333pt;}
._24{width:23.040000pt;}
._3{width:24.640000pt;}
._1e{width:31.506667pt;}
._4f{width:45.340800pt;}
._21{width:71.490667pt;}
._1f{width:93.930667pt;}
._49{width:107.394667pt;}
._20{width:116.370667pt;}
._28{width:120.541333pt;}
._2a{width:122.400000pt;}
._33{width:123.760000pt;}
._3f{width:125.618667pt;}
._2c{width:141.893333pt;}
._2b{width:143.289067pt;}
._30{width:144.840000pt;}
._36{width:146.507733pt;}
._35{width:148.058667pt;}
._39{width:157.306667pt;}
._2e{width:167.280000pt;}
._3c{width:170.498667pt;}
._2d{width:183.328000pt;}
._37{width:186.546667pt;}
._2f{width:195.477333pt;}
._3b{width:198.696000pt;}
._3a{width:201.552000pt;}
._29{width:228.661333pt;}
._38{width:231.880000pt;}
._42{width:249.343200pt;}
._34{width:276.760000pt;}
._27{width:304.413333pt;}
._32{width:307.632000pt;}
._4c{width:373.501333pt;}
._48{width:376.629333pt;}
._43{width:382.386667pt;}
._40{width:388.280000pt;}
._4a{width:405.008000pt;}
._4b{width:416.840000pt;}
._41{width:421.464000pt;}
._4d{width:434.338667pt;}
._45{width:440.232000pt;}
._46{width:445.173333pt;}
._47{width:457.322667pt;}
._44{width:490.506667pt;}
._0{width:754.730667pt;}
._26{width:849.868800pt;}
._31{width:892.262400pt;}
._1{width:1174.693333pt;}
._14{width:2184.832533pt;}
.fs9{font-size:29.866667pt;}
.fsd{font-size:31.733333pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:44.800000pt;}
.fsb{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs5{font-size:64.000000pt;}
.fsc{font-size:74.666667pt;}
.fs1{font-size:78.773333pt;}
.fs7{font-size:83.200000pt;}
.fs2{font-size:91.093333pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:34.104267pt;}
.y2{bottom:34.237600pt;}
.y1{bottom:35.437600pt;}
.y16{bottom:62.208000pt;}
.yaa{bottom:62.216267pt;}
.ya9{bottom:68.213733pt;}
.ydc{bottom:72.195600pt;}
.y15{bottom:75.545333pt;}
.y7a{bottom:79.549600pt;}
.ya8{bottom:87.514400pt;}
.ydb{bottom:87.529600pt;}
.y14{bottom:88.882667pt;}
.y79{bottom:96.882933pt;}
.yda{bottom:102.863600pt;}
.ya7{bottom:106.815067pt;}
.y78{bottom:114.216267pt;}
.y1b{bottom:115.016000pt;}
.yd9{bottom:118.197600pt;}
.ya5{bottom:129.323067pt;}
.ya2{bottom:129.323733pt;}
.y1a{bottom:129.682667pt;}
.y77{bottom:131.549600pt;}
.yd8{bottom:133.531600pt;}
.y19{bottom:144.349333pt;}
.ya6{bottom:144.657067pt;}
.ya4{bottom:144.657733pt;}
.yd7{bottom:148.865600pt;}
.y76{bottom:148.882933pt;}
.y18{bottom:159.016000pt;}
.yd6{bottom:164.199600pt;}
.y75{bottom:166.216267pt;}
.ya3{bottom:169.693067pt;}
.y17{bottom:173.682667pt;}
.yd5{bottom:179.533600pt;}
.y74{bottom:183.549600pt;}
.yd4{bottom:194.867600pt;}
.ya1{bottom:195.530000pt;}
.y73{bottom:200.882933pt;}
.y42{bottom:206.911733pt;}
.yd3{bottom:210.201600pt;}
.y72{bottom:218.216267pt;}
.y41{bottom:222.245733pt;}
.yd2{bottom:225.535600pt;}
.y71{bottom:235.549600pt;}
.yd1{bottom:240.869600pt;}
.y40{bottom:240.912400pt;}
.ya0{bottom:242.880667pt;}
.y47{bottom:248.088400pt;}
.y70{bottom:252.882933pt;}
.yd0{bottom:256.203600pt;}
.y9f{bottom:262.181333pt;}
.y46{bottom:262.755067pt;}
.y6f{bottom:270.216267pt;}
.ycf{bottom:271.537600pt;}
.y3f{bottom:272.912400pt;}
.y45{bottom:277.421733pt;}
.y9e{bottom:281.482000pt;}
.yce{bottom:286.871600pt;}
.y6e{bottom:287.549600pt;}
.y44{bottom:292.088400pt;}
.y3e{bottom:292.912400pt;}
.ycd{bottom:302.205600pt;}
.y9c{bottom:303.990000pt;}
.y99{bottom:303.990667pt;}
.y6d{bottom:304.882933pt;}
.y43{bottom:306.755067pt;}
.y3d{bottom:312.912400pt;}
.ycc{bottom:317.539600pt;}
.y9d{bottom:319.324000pt;}
.y9b{bottom:319.324667pt;}
.y6c{bottom:322.216267pt;}
.y2d{bottom:330.944400pt;}
.ycb{bottom:332.873600pt;}
.y3c{bottom:332.912400pt;}
.y6b{bottom:339.549600pt;}
.y9a{bottom:344.360000pt;}
.y2c{bottom:345.611067pt;}
.yca{bottom:348.207600pt;}
.y3b{bottom:352.912400pt;}
.y6a{bottom:356.882933pt;}
.y2b{bottom:360.277733pt;}
.yc9{bottom:363.541600pt;}
.y98{bottom:370.195867pt;}
.y3a{bottom:372.912400pt;}
.y7d{bottom:374.216267pt;}
.y2a{bottom:374.944400pt;}
.yc8{bottom:378.875600pt;}
.y69{bottom:391.549600pt;}
.y39{bottom:392.912400pt;}
.yc7{bottom:394.209600pt;}
.y29{bottom:404.277733pt;}
.y7c{bottom:408.882933pt;}
.yc6{bottom:409.543600pt;}
.y38{bottom:412.912400pt;}
.y28{bottom:423.744400pt;}
.yc5{bottom:424.877600pt;}
.y7b{bottom:426.216267pt;}
.y37{bottom:432.912400pt;}
.y27{bottom:437.611067pt;}
.yc4{bottom:440.211600pt;}
.y68{bottom:443.549600pt;}
.y36{bottom:452.912400pt;}
.yc3{bottom:455.545600pt;}
.y26{bottom:457.077733pt;}
.y67{bottom:460.882933pt;}
.yc2{bottom:470.879600pt;}
.y25{bottom:470.944400pt;}
.y35{bottom:472.912400pt;}
.y66{bottom:478.216267pt;}
.yc1{bottom:486.213600pt;}
.y24{bottom:490.411067pt;}
.y34{bottom:492.912400pt;}
.y65{bottom:495.549600pt;}
.yc0{bottom:501.547600pt;}
.y23{bottom:504.277733pt;}
.y64{bottom:512.882933pt;}
.y33{bottom:512.912400pt;}
.ybf{bottom:516.881600pt;}
.y22{bottom:518.944400pt;}
.y63{bottom:530.216267pt;}
.ybe{bottom:532.215600pt;}
.y32{bottom:532.912400pt;}
.y21{bottom:538.411067pt;}
.yf8{bottom:542.894933pt;}
.y62{bottom:547.549600pt;}
.y20{bottom:552.277733pt;}
.y31{bottom:552.912400pt;}
.yf7{bottom:558.228933pt;}
.y61{bottom:564.882933pt;}
.ybd{bottom:565.301733pt;}
.y1f{bottom:571.744400pt;}
.y30{bottom:572.912400pt;}
.yf6{bottom:573.562933pt;}
.y60{bottom:582.216267pt;}
.ybc{bottom:584.602400pt;}
.y1e{bottom:585.611067pt;}
.y101{bottom:586.913600pt;}
.yf5{bottom:588.896933pt;}
.y2f{bottom:592.912400pt;}
.y5f{bottom:599.549600pt;}
.y1d{bottom:600.277733pt;}
.ybb{bottom:603.903067pt;}
.yf4{bottom:604.230933pt;}
.y100{bottom:604.246933pt;}
.y95{bottom:612.723600pt;}
.y2e{bottom:612.912400pt;}
.y5e{bottom:616.882933pt;}
.yf3{bottom:619.564933pt;}
.y1c{bottom:619.744400pt;}
.yff{bottom:621.580267pt;}
.yba{bottom:626.411067pt;}
.y94{bottom:628.057600pt;}
.y5d{bottom:634.216267pt;}
.yf2{bottom:634.898933pt;}
.yfe{bottom:638.913600pt;}
.y93{bottom:643.391600pt;}
.yf1{bottom:650.232933pt;}
.y5c{bottom:651.549600pt;}
.yb9{bottom:652.244267pt;}
.yfd{bottom:656.246933pt;}
.y92{bottom:658.725600pt;}
.y13{bottom:659.739067pt;}
.y12{bottom:661.739067pt;}
.yf0{bottom:665.566933pt;}
.yb8{bottom:668.246933pt;}
.y5b{bottom:668.882933pt;}
.yfc{bottom:673.580267pt;}
.y91{bottom:674.059600pt;}
.yef{bottom:680.900933pt;}
.y11{bottom:683.739067pt;}
.y10{bottom:685.739067pt;}
.y5a{bottom:686.216267pt;}
.yfb{bottom:690.913600pt;}
.y90{bottom:693.360267pt;}
.yee{bottom:696.234933pt;}
.y59{bottom:703.549600pt;}
.yb7{bottom:707.301600pt;}
.yf{bottom:707.739067pt;}
.yfa{bottom:708.246933pt;}
.y8f{bottom:708.694267pt;}
.ye{bottom:709.739067pt;}
.yed{bottom:711.568933pt;}
.y58{bottom:720.882933pt;}
.y8e{bottom:724.028267pt;}
.yf9{bottom:725.580267pt;}
.yb6{bottom:726.602267pt;}
.yec{bottom:726.902933pt;}
.yd{bottom:731.739067pt;}
.yc{bottom:733.739067pt;}
.y57{bottom:738.216267pt;}
.y8d{bottom:739.362267pt;}
.yeb{bottom:742.236933pt;}
.yb5{bottom:745.902933pt;}
.y8c{bottom:754.696267pt;}
.y56{bottom:755.549600pt;}
.yea{bottom:757.570933pt;}
.yb4{bottom:768.410933pt;}
.y48{bottom:770.173333pt;}
.y55{bottom:772.882933pt;}
.ye9{bottom:772.904933pt;}
.y8b{bottom:773.996933pt;}
.yb{bottom:785.723067pt;}
.ye8{bottom:788.238933pt;}
.y54{bottom:790.216267pt;}
.y8a{bottom:793.297600pt;}
.yb3{bottom:794.249200pt;}
.ye7{bottom:803.572933pt;}
.y53{bottom:807.549600pt;}
.y89{bottom:808.631600pt;}
.ya{bottom:816.395067pt;}
.ye6{bottom:818.906933pt;}
.y88{bottom:823.965600pt;}
.y52{bottom:824.882933pt;}
.ye5{bottom:834.240933pt;}
.y51{bottom:842.216267pt;}
.y87{bottom:843.266267pt;}
.yb2{bottom:844.931867pt;}
.y9{bottom:847.067067pt;}
.ye4{bottom:849.574933pt;}
.y86{bottom:858.600267pt;}
.y50{bottom:859.549600pt;}
.yb1{bottom:864.232533pt;}
.ye3{bottom:864.908933pt;}
.y85{bottom:873.934267pt;}
.y4f{bottom:876.882933pt;}
.y8{bottom:877.739067pt;}
.ye2{bottom:880.242933pt;}
.yb0{bottom:883.533200pt;}
.y84{bottom:893.234933pt;}
.y4e{bottom:894.216267pt;}
.ye1{bottom:895.576933pt;}
.yae{bottom:906.041200pt;}
.yab{bottom:906.041733pt;}
.ye0{bottom:910.910933pt;}
.y4d{bottom:911.549600pt;}
.y83{bottom:915.742933pt;}
.y7f{bottom:915.744267pt;}
.yaf{bottom:921.375200pt;}
.yad{bottom:921.375733pt;}
.ydf{bottom:926.244933pt;}
.y4c{bottom:928.882933pt;}
.y81{bottom:931.078267pt;}
.y7{bottom:940.405733pt;}
.yde{bottom:941.578933pt;}
.y97{bottom:946.216267pt;}
.y82{bottom:946.410933pt;}
.yac{bottom:946.411067pt;}
.y80{bottom:946.412267pt;}
.ydd{bottom:956.912933pt;}
.y4b{bottom:963.549600pt;}
.y7e{bottom:972.246933pt;}
.y6{bottom:976.354267pt;}
.y5{bottom:990.490267pt;}
.y4{bottom:995.823600pt;}
.y4a{bottom:1002.526933pt;}
.y49{bottom:1005.260267pt;}
.y96{bottom:1005.282933pt;}
.hc{height:23.445333pt;}
.h2{height:29.306667pt;}
.h12{height:29.397333pt;}
.h10{height:31.062500pt;}
.hb{height:33.493333pt;}
.h4{height:34.645333pt;}
.hf{height:35.586667pt;}
.h6{height:37.680000pt;}
.hd{height:41.866667pt;}
.h13{height:45.308000pt;}
.h14{height:45.308533pt;}
.h15{height:45.310667pt;}
.ha{height:50.240000pt;}
.he{height:53.306667pt;}
.h11{height:58.613333pt;}
.h3{height:61.837067pt;}
.h8{height:63.968000pt;}
.h9{height:65.312000pt;}
.h5{height:71.508267pt;}
.h7{height:75.360000pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:60.850400pt;}
.x2c{left:69.183733pt;}
.x25{left:78.183733pt;}
.x34{left:84.854400pt;}
.x23{left:87.431600pt;}
.x24{left:89.756000pt;}
.x5{left:157.028533pt;}
.x6{left:160.018933pt;}
.x17{left:183.636533pt;}
.x18{left:187.908533pt;}
.x9{left:193.972267pt;}
.xa{left:198.244133pt;}
.x1f{left:211.135467pt;}
.x20{left:215.407467pt;}
.x2d{left:216.934267pt;}
.x30{left:218.203733pt;}
.x7{left:255.394533pt;}
.x8{left:258.384933pt;}
.x21{left:261.542667pt;}
.x11{left:274.648267pt;}
.x12{left:278.920267pt;}
.x2e{left:299.011467pt;}
.x31{left:301.087333pt;}
.x19{left:322.694133pt;}
.x1a{left:326.966133pt;}
.xb{left:344.885600pt;}
.xc{left:349.157600pt;}
.x27{left:409.130400pt;}
.x13{left:413.646133pt;}
.x14{left:417.918133pt;}
.x35{left:425.133867pt;}
.x26{left:426.463733pt;}
.x33{left:433.137867pt;}
.x1b{left:497.910667pt;}
.x1c{left:502.182667pt;}
.x28{left:504.003733pt;}
.x2a{left:520.006667pt;}
.x4{left:551.473067pt;}
.xd{left:576.160400pt;}
.xe{left:580.432400pt;}
.x29{left:584.164667pt;}
.x32{left:585.096933pt;}
.x2f{left:586.222133pt;}
.x15{left:622.302133pt;}
.x16{left:626.574133pt;}
.x1d{left:659.767600pt;}
.x1e{left:664.039600pt;}
.x2b{left:681.339467pt;}
.x2{left:703.382933pt;}
.x3{left:706.373333pt;}
.xf{left:713.014533pt;}
.x10{left:717.286400pt;}
.x22{left:764.133333pt;}
}




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