
    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_cf959fd5b1241f7b26f34849.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.907715;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_83747363d3d6ea1967bd2804.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.086914;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_67b2365339bbba779f955005.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.957031;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_1bd2283331eab5e7b73bf669.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.155762;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_db2206a374909ed6a3ba02bb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.967773;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_539937d4fe9306f5fc06101c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958008;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_cfc844518e99b7b610df07ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.283203;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_c9d596c6b19ea9ad4f10d94e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.083496;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_c9d596c6b19ea9ad4f10d94e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.083496;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_06f3f70eafcf4d8c6fdeac49.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.136230;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;}
.m3{transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.175000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.200000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.200000,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);}
.v3{vertical-align:-36.000000px;}
.v1{vertical-align:-19.980000px;}
.v7{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:15.984000px;}
.v5{vertical-align:19.980000px;}
.v4{vertical-align:30.000000px;}
.v2{vertical-align:36.000000px;}
.ls0{letter-spacing:-7.920000px;}
.ls4{letter-spacing:-5.400000px;}
.ls5{letter-spacing:-5.040000px;}
.ls1{letter-spacing:-3.900000px;}
.ls8{letter-spacing:-3.600000px;}
.ls18{letter-spacing:-1.500000px;}
.ls3{letter-spacing:-0.300000px;}
.ls2{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.004146px;}
.ls9{letter-spacing:0.004620px;}
.ls6{letter-spacing:0.005370px;}
.lsb{letter-spacing:213.552000px;}
.lsc{letter-spacing:217.488000px;}
.lsa{letter-spacing:218.736000px;}
.ls10{letter-spacing:260.784000px;}
.ls12{letter-spacing:290.112000px;}
.ls14{letter-spacing:303.696000px;}
.ls7{letter-spacing:365.664000px;}
.ls11{letter-spacing:418.224000px;}
.ls13{letter-spacing:428.880000px;}
.lsd{letter-spacing:774.559146px;}
.lsf{letter-spacing:794.608896px;}
.lse{letter-spacing:825.229896px;}
.ls16{letter-spacing:972.912000px;}
.ls15{letter-spacing:980.034396px;}
.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;}
}
.ws89{word-spacing:-22.932000px;}
.ws3f{word-spacing:-20.016000px;}
.wsc{word-spacing:-19.680000px;}
.ws88{word-spacing:-16.680000px;}
.ws69{word-spacing:-13.344000px;}
.wsa0{word-spacing:-5.040000px;}
.ws9d{word-spacing:-3.240000px;}
.ws75{word-spacing:-3.120000px;}
.ws2f{word-spacing:-3.060000px;}
.ws46{word-spacing:-3.000000px;}
.ws3{word-spacing:-2.916000px;}
.ws74{word-spacing:-2.880000px;}
.ws7c{word-spacing:-2.820000px;}
.wse{word-spacing:-2.760000px;}
.ws11{word-spacing:-2.640000px;}
.ws4b{word-spacing:-2.520000px;}
.ws30{word-spacing:-2.280000px;}
.ws99{word-spacing:-2.220000px;}
.ws56{word-spacing:-2.100000px;}
.ws77{word-spacing:-2.040000px;}
.ws5c{word-spacing:-1.980000px;}
.ws1d{word-spacing:-1.920000px;}
.ws3b{word-spacing:-1.860000px;}
.ws14{word-spacing:-1.740000px;}
.ws9e{word-spacing:-1.620000px;}
.ws1c{word-spacing:-1.560000px;}
.ws34{word-spacing:-1.500000px;}
.ws8a{word-spacing:-1.380000px;}
.ws84{word-spacing:-1.260000px;}
.ws78{word-spacing:-1.200000px;}
.ws3a{word-spacing:-1.140000px;}
.ws23{word-spacing:-1.020000px;}
.ws96{word-spacing:-0.960000px;}
.ws33{word-spacing:-0.900000px;}
.ws12{word-spacing:-0.840000px;}
.ws83{word-spacing:-0.780000px;}
.ws24{word-spacing:-0.720000px;}
.wsf{word-spacing:-0.660000px;}
.ws79{word-spacing:-0.600000px;}
.ws7{word-spacing:-0.540000px;}
.ws35{word-spacing:-0.480000px;}
.ws27{word-spacing:-0.420000px;}
.ws4a{word-spacing:-0.360000px;}
.ws37{word-spacing:-0.240000px;}
.ws2b{word-spacing:-0.180000px;}
.wsa{word-spacing:-0.162000px;}
.ws0{word-spacing:0.000000px;}
.ws13{word-spacing:0.060000px;}
.ws91{word-spacing:0.120000px;}
.ws44{word-spacing:0.240000px;}
.ws2d{word-spacing:0.300000px;}
.ws59{word-spacing:0.360000px;}
.ws4c{word-spacing:0.420000px;}
.ws58{word-spacing:0.480000px;}
.ws5d{word-spacing:0.540000px;}
.ws8c{word-spacing:0.600000px;}
.ws8e{word-spacing:0.660000px;}
.ws21{word-spacing:0.720000px;}
.wsa3{word-spacing:0.780000px;}
.ws5a{word-spacing:0.840000px;}
.ws97{word-spacing:0.900000px;}
.ws3e{word-spacing:0.960000px;}
.ws40{word-spacing:1.020000px;}
.ws76{word-spacing:1.080000px;}
.ws2a{word-spacing:1.140000px;}
.ws8{word-spacing:1.188000px;}
.ws29{word-spacing:1.200000px;}
.ws6{word-spacing:1.296000px;}
.ws80{word-spacing:1.380000px;}
.ws4d{word-spacing:1.500000px;}
.ws5b{word-spacing:1.560000px;}
.ws10{word-spacing:1.620000px;}
.ws82{word-spacing:1.680000px;}
.ws31{word-spacing:1.860000px;}
.ws18{word-spacing:1.920000px;}
.ws41{word-spacing:1.980000px;}
.ws9{word-spacing:1.998000px;}
.ws8d{word-spacing:2.040000px;}
.ws95{word-spacing:2.100000px;}
.ws22{word-spacing:2.220000px;}
.ws7f{word-spacing:2.280000px;}
.ws28{word-spacing:2.340000px;}
.wsa1{word-spacing:2.400000px;}
.wsb{word-spacing:2.484000px;}
.ws49{word-spacing:2.520000px;}
.ws1e{word-spacing:2.580000px;}
.ws39{word-spacing:2.640000px;}
.ws48{word-spacing:2.700000px;}
.ws45{word-spacing:2.760000px;}
.ws2e{word-spacing:2.880000px;}
.ws47{word-spacing:2.940000px;}
.ws16{word-spacing:3.120000px;}
.ws4{word-spacing:3.186000px;}
.ws9a{word-spacing:3.240000px;}
.ws7b{word-spacing:3.360000px;}
.ws26{word-spacing:3.420000px;}
.ws57{word-spacing:3.600000px;}
.ws9b{word-spacing:3.660000px;}
.ws2c{word-spacing:3.840000px;}
.ws2{word-spacing:3.900000px;}
.ws7e{word-spacing:3.960000px;}
.ws72{word-spacing:4.020000px;}
.ws93{word-spacing:4.080000px;}
.ws19{word-spacing:4.140000px;}
.ws8f{word-spacing:4.200000px;}
.ws86{word-spacing:4.260000px;}
.ws3d{word-spacing:4.320000px;}
.ws73{word-spacing:4.440000px;}
.ws81{word-spacing:4.560000px;}
.ws71{word-spacing:4.680000px;}
.ws98{word-spacing:4.800000px;}
.ws8b{word-spacing:4.920000px;}
.ws25{word-spacing:5.040000px;}
.ws1f{word-spacing:5.160000px;}
.ws5{word-spacing:5.184000px;}
.ws7a{word-spacing:5.280000px;}
.wsd{word-spacing:5.400000px;}
.ws90{word-spacing:5.580000px;}
.ws36{word-spacing:5.700000px;}
.ws87{word-spacing:6.000000px;}
.ws42{word-spacing:6.480000px;}
.ws3c{word-spacing:6.660000px;}
.ws9f{word-spacing:6.840000px;}
.ws15{word-spacing:6.960000px;}
.ws85{word-spacing:7.140000px;}
.ws1b{word-spacing:7.380000px;}
.ws1a{word-spacing:7.440000px;}
.ws1{word-spacing:7.920000px;}
.ws38{word-spacing:7.980000px;}
.ws17{word-spacing:8.160000px;}
.ws32{word-spacing:8.400000px;}
.ws7d{word-spacing:8.640000px;}
.ws92{word-spacing:8.760000px;}
.ws20{word-spacing:8.940000px;}
.ws43{word-spacing:9.840000px;}
.ws94{word-spacing:10.980000px;}
.wsa2{word-spacing:18.000000px;}
.ws9c{word-spacing:19.740000px;}
.ws66{word-spacing:61.392000px;}
.ws64{word-spacing:78.768000px;}
.ws63{word-spacing:85.200000px;}
.ws60{word-spacing:85.776000px;}
.ws62{word-spacing:93.312000px;}
.ws61{word-spacing:96.316800px;}
.ws65{word-spacing:136.128000px;}
.ws5f{word-spacing:195.936000px;}
.ws4f{word-spacing:211.872000px;}
.ws6e{word-spacing:215.424000px;}
.ws6f{word-spacing:226.080000px;}
.ws70{word-spacing:230.304000px;}
.ws51{word-spacing:265.584000px;}
.ws6a{word-spacing:298.128000px;}
.ws50{word-spacing:304.320000px;}
.ws6b{word-spacing:308.784000px;}
.ws6c{word-spacing:313.008000px;}
.ws55{word-spacing:319.008000px;}
.ws53{word-spacing:332.352000px;}
.ws52{word-spacing:347.616000px;}
.ws54{word-spacing:351.888000px;}
.ws67{word-spacing:463.857600px;}
.ws5e{word-spacing:480.033600px;}
.ws4e{word-spacing:487.521600px;}
.ws68{word-spacing:728.736000px;}
.ws6d{word-spacing:765.888000px;}
._3{margin-left:-15.338400px;}
._1{margin-left:-8.382000px;}
._2{margin-left:-7.075200px;}
._a{margin-left:-5.956800px;}
._4{margin-left:-4.017000px;}
._8{margin-left:-2.964600px;}
._5{margin-left:-1.663200px;}
._7{width:1.258200px;}
._c{width:2.489400px;}
._6{width:3.574800px;}
._e{width:4.578000px;}
._9{width:5.648400px;}
._0{width:7.233600px;}
._b{width:8.626200px;}
._f{width:9.792000px;}
._53{width:11.493000px;}
._55{width:12.739200px;}
._56{width:18.120000px;}
._54{width:20.040000px;}
._4d{width:90.060750px;}
._40{width:92.448000px;}
._4e{width:100.704000px;}
._4f{width:104.928000px;}
._3b{width:106.656000px;}
._38{width:109.680000px;}
._37{width:111.396600px;}
._33{width:117.360000px;}
._3f{width:121.248000px;}
._4b{width:130.034250px;}
._3e{width:138.672000px;}
._48{width:140.551050px;}
._49{width:142.977000px;}
._4c{width:145.144950px;}
._45{width:147.840000px;}
._4a{width:152.976000px;}
._41{width:154.944000px;}
._36{width:157.204200px;}
._46{width:158.961000px;}
._47{width:160.944000px;}
._34{width:162.576000px;}
._39{width:167.708400px;}
._30{width:172.032000px;}
._14{width:194.977800px;}
._17{width:208.127400px;}
._31{width:209.328000px;}
._28{width:211.919400px;}
._24{width:214.116600px;}
._2b{width:218.736000px;}
._29{width:222.960000px;}
._11{width:224.980200px;}
._2c{width:226.363800px;}
._3c{width:229.968000px;}
._42{width:234.623400px;}
._2d{width:237.504000px;}
._2e{width:242.976000px;}
._43{width:244.800000px;}
._44{width:249.024000px;}
._3a{width:251.364600px;}
._12{width:254.988000px;}
._18{width:256.416000px;}
._50{width:282.372600px;}
._25{width:332.352000px;}
._3d{width:348.528000px;}
._1d{width:351.888000px;}
._26{width:358.116600px;}
._20{width:360.960000px;}
._1a{width:365.232000px;}
._1b{width:366.336000px;}
._23{width:368.577000px;}
._22{width:380.352000px;}
._1e{width:394.320000px;}
._51{width:413.028600px;}
._27{width:445.920000px;}
._52{width:500.832000px;}
._13{width:539.551800px;}
._1f{width:645.936000px;}
._2f{width:707.683200px;}
._2a{width:779.328000px;}
._35{width:787.296000px;}
._1c{width:790.612800px;}
._19{width:816.672000px;}
._32{width:817.920000px;}
._15{width:833.668200px;}
._16{width:860.668200px;}
._21{width:912.720000px;}
._10{width:941.220000px;}
._d{width:1312.420200px;}
.fc4{color:rgb(255,0,0);}
.fc1{color:rgb(79,76,77);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:27.984000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:42.000000px;}
.fs4{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:78.000000px;}
.fs7{font-size:84.000000px;}
.fs6{font-size:90.000000px;}
.fs0{font-size:132.000000px;}
.y0{bottom:0.000000px;}
.y21{bottom:28.103550px;}
.y1e{bottom:28.114050px;}
.y20{bottom:41.606550px;}
.y1d{bottom:41.617050px;}
.y23{bottom:41.620050px;}
.y1f{bottom:55.109550px;}
.y1c{bottom:55.120050px;}
.yf4{bottom:87.083850px;}
.y8e{bottom:90.672150px;}
.y44{bottom:90.825450px;}
.y138{bottom:91.681950px;}
.y19a{bottom:95.318850px;}
.y65{bottom:97.883850px;}
.y1a6{bottom:104.813850px;}
.yf3{bottom:105.083850px;}
.y8d{bottom:107.922150px;}
.ye8{bottom:108.683850px;}
.y43{bottom:108.825450px;}
.y1b{bottom:109.408200px;}
.y137{bottom:109.681950px;}
.y15c{bottom:112.283850px;}
.y18a{bottom:113.318850px;}
.y64{bottom:115.883850px;}
.yc6{bottom:116.933850px;}
.y190{bottom:121.823850px;}
.y1a5{bottom:122.813850px;}
.yf2{bottom:123.083850px;}
.y1a{bottom:125.162700px;}
.y8c{bottom:125.172150px;}
.ye7{bottom:126.683850px;}
.y42{bottom:126.825450px;}
.y169{bottom:127.673850px;}
.y136{bottom:127.681950px;}
.y100{bottom:130.283850px;}
.y1b7{bottom:131.318850px;}
.y151{bottom:132.433800px;}
.y63{bottom:133.883850px;}
.yc5{bottom:134.933850px;}
.y189{bottom:139.823850px;}
.y19{bottom:140.917200px;}
.yf1{bottom:141.083850px;}
.y8b{bottom:142.422150px;}
.ye3{bottom:144.683850px;}
.y41{bottom:144.825450px;}
.y168{bottom:145.673850px;}
.yff{bottom:148.283850px;}
.y1a4{bottom:149.318850px;}
.y150{bottom:151.429800px;}
.yc9{bottom:151.883850px;}
.yc4{bottom:152.933850px;}
.y18{bottom:156.671700px;}
.y188{bottom:157.823850px;}
.yf0{bottom:159.083850px;}
.y8a{bottom:159.672150px;}
.y14f{bottom:162.433800px;}
.ye2{bottom:162.683850px;}
.y40{bottom:162.825450px;}
.y167{bottom:163.673850px;}
.yfe{bottom:166.283850px;}
.y18f{bottom:166.328850px;}
.y1a3{bottom:167.318850px;}
.y62{bottom:169.883850px;}
.yc3{bottom:170.933850px;}
.y17{bottom:172.426200px;}
.y1b6{bottom:175.823850px;}
.yef{bottom:177.083850px;}
.ye1{bottom:180.683850px;}
.y3f{bottom:180.825450px;}
.y135{bottom:182.056950px;}
.y14e{bottom:183.433800px;}
.y118{bottom:183.833850px;}
.yfd{bottom:184.283850px;}
.y187{bottom:184.328850px;}
.y1a2{bottom:185.318850px;}
.y12a{bottom:185.633850px;}
.y61{bottom:187.883850px;}
.y16{bottom:188.140200px;}
.yc2{bottom:188.933850px;}
.y166{bottom:190.178850px;}
.y1b5{bottom:193.823850px;}
.y89{bottom:194.172150px;}
.yee{bottom:195.083850px;}
.yae{bottom:196.883850px;}
.ye0{bottom:198.683850px;}
.y3e{bottom:198.825450px;}
.y134{bottom:200.056950px;}
.y117{bottom:201.833850px;}
.yfc{bottom:202.283850px;}
.y186{bottom:202.328850px;}
.y129{bottom:203.633850px;}
.y15{bottom:203.894700px;}
.y14d{bottom:204.433800px;}
.y60{bottom:205.883850px;}
.y165{bottom:208.178850px;}
.y88{bottom:211.422150px;}
.y1a1{bottom:211.823850px;}
.yed{bottom:213.083850px;}
.yad{bottom:214.133850px;}
.ye6{bottom:216.683850px;}
.y3d{bottom:216.825450px;}
.y14{bottom:219.649200px;}
.yfb{bottom:220.283850px;}
.y185{bottom:220.328850px;}
.y133{bottom:221.056950px;}
.y128{bottom:221.633850px;}
.y6c{bottom:223.883850px;}
.yc1{bottom:224.933850px;}
.y14c{bottom:225.433800px;}
.y87{bottom:228.672150px;}
.y18e{bottom:228.833850px;}
.y1a0{bottom:229.823850px;}
.yec{bottom:231.083850px;}
.yac{bottom:231.383850px;}
.ydf{bottom:234.683850px;}
.y3c{bottom:234.825450px;}
.y13{bottom:235.403700px;}
.y15b{bottom:238.283850px;}
.y1b4{bottom:238.328850px;}
.y127{bottom:239.633850px;}
.y5f{bottom:241.883850px;}
.y132{bottom:242.056950px;}
.yc0{bottom:242.933850px;}
.y86{bottom:245.922150px;}
.y14b{bottom:246.433800px;}
.y184{bottom:246.833850px;}
.y116{bottom:246.847350px;}
.yab{bottom:248.633850px;}
.yeb{bottom:249.083850px;}
.y12{bottom:251.158200px;}
.yde{bottom:252.683850px;}
.yfa{bottom:256.283850px;}
.y19f{bottom:256.328850px;}
.yc8{bottom:259.883850px;}
.ybf{bottom:260.933850px;}
.y131{bottom:263.056950px;}
.y85{bottom:263.172150px;}
.y183{bottom:264.833850px;}
.y115{bottom:264.842850px;}
.yaa{bottom:265.883850px;}
.y11{bottom:266.912700px;}
.yea{bottom:267.083850px;}
.y14a{bottom:267.433800px;}
.ydd{bottom:270.683850px;}
.y3b{bottom:270.825450px;}
.yf9{bottom:274.283850px;}
.y1b3{bottom:274.328850px;}
.y126{bottom:275.633850px;}
.y5e{bottom:277.883850px;}
.y84{bottom:280.422150px;}
.y10{bottom:282.667200px;}
.y19e{bottom:282.833850px;}
.ya9{bottom:283.133850px;}
.y130{bottom:285.556950px;}
.y149{bottom:288.433800px;}
.ydc{bottom:288.683850px;}
.y182{bottom:291.338850px;}
.yf8{bottom:292.283850px;}
.y1c8{bottom:292.328850px;}
.y125{bottom:293.633850px;}
.y5d{bottom:295.883850px;}
.ybe{bottom:296.933850px;}
.y83{bottom:297.672150px;}
.yf{bottom:298.421700px;}
.ya8{bottom:300.383850px;}
.y19d{bottom:300.833850px;}
.ye9{bottom:303.083850px;}
.y12f{bottom:306.556950px;}
.ye5{bottom:306.683850px;}
.y3a{bottom:306.825450px;}
.y181{bottom:309.338850px;}
.y148{bottom:309.433800px;}
.yf7{bottom:310.283850px;}
.y1c7{bottom:310.328850px;}
.y5c{bottom:313.883850px;}
.ye{bottom:314.176200px;}
.y82{bottom:314.922150px;}
.ybd{bottom:314.933850px;}
.y114{bottom:317.033850px;}
.ya7{bottom:317.633850px;}
.y1b2{bottom:318.833850px;}
.ydb{bottom:324.683850px;}
.y39{bottom:324.825450px;}
.y18d{bottom:327.338850px;}
.y12e{bottom:327.556950px;}
.y15a{bottom:328.283850px;}
.y124{bottom:329.633850px;}
.yd{bottom:329.921700px;}
.y147{bottom:330.433800px;}
.y6b{bottom:331.883850px;}
.y81{bottom:332.172150px;}
.ybc{bottom:332.933850px;}
.y112{bottom:335.033850px;}
.y180{bottom:335.843850px;}
.y1c6{bottom:336.833850px;}
.yda{bottom:342.683850px;}
.y38{bottom:342.825450px;}
.y113{bottom:344.033850px;}
.y1b1{bottom:345.338850px;}
.yc{bottom:345.676200px;}
.yf6{bottom:346.283850px;}
.y12d{bottom:348.556950px;}
.y80{bottom:349.422150px;}
.y5b{bottom:349.883850px;}
.ybb{bottom:350.933850px;}
.y146{bottom:351.433800px;}
.ya6{bottom:352.133850px;}
.y17f{bottom:353.843850px;}
.y1c5{bottom:354.833850px;}
.yd9{bottom:360.683850px;}
.y37{bottom:360.825450px;}
.yb{bottom:361.408200px;}
.y1b0{bottom:363.338850px;}
.ye4{bottom:364.283850px;}
.y123{bottom:365.633850px;}
.y7f{bottom:366.672150px;}
.y5a{bottom:367.883850px;}
.yba{bottom:368.933850px;}
.ya5{bottom:369.383850px;}
.y12c{bottom:369.556950px;}
.y199{bottom:371.843850px;}
.y145{bottom:372.433800px;}
.y1c4{bottom:372.833850px;}
.y122{bottom:376.133850px;}
.ya{bottom:377.162700px;}
.yd8{bottom:378.683850px;}
.y16a{bottom:378.933150px;}
.y17e{bottom:380.348850px;}
.y1af{bottom:381.338850px;}
.y159{bottom:382.283850px;}
.y111{bottom:383.638350px;}
.y59{bottom:385.883850px;}
.ya4{bottom:386.633850px;}
.yb9{bottom:386.933850px;}
.y198{bottom:389.843850px;}
.y9{bottom:392.917200px;}
.y144{bottom:393.433800px;}
.yd7{bottom:396.683850px;}
.y36{bottom:396.825450px;}
.y17d{bottom:398.348850px;}
.y1c3{bottom:399.338850px;}
.y158{bottom:400.283850px;}
.y12b{bottom:400.883850px;}
.y7e{bottom:401.172150px;}
.y110{bottom:401.633850px;}
.y58{bottom:403.883850px;}
.yf5{bottom:406.783500px;}
.y1ae{bottom:407.843850px;}
.y8{bottom:408.671700px;}
.yd6{bottom:414.683850px;}
.y143{bottom:414.808800px;}
.y35{bottom:414.825450px;}
.y17c{bottom:416.348850px;}
.y1c2{bottom:417.338850px;}
.y157{bottom:418.283850px;}
.y7d{bottom:418.422150px;}
.y121{bottom:419.633850px;}
.y57{bottom:421.883850px;}
.yb8{bottom:422.933850px;}
.y7{bottom:424.426200px;}
.y1ad{bottom:425.843850px;}
.y164{bottom:432.683850px;}
.y34{bottom:432.825450px;}
.y197{bottom:434.348850px;}
.y7c{bottom:435.672150px;}
.y156{bottom:436.283850px;}
.y120{bottom:437.633850px;}
.ya3{bottom:438.383850px;}
.y56{bottom:439.883850px;}
.yb7{bottom:440.933850px;}
.y17b{bottom:442.853850px;}
.y1c1{bottom:443.843850px;}
.y10f{bottom:444.833850px;}
.yd5{bottom:450.683850px;}
.y33{bottom:450.825450px;}
.y196{bottom:452.348850px;}
.y7b{bottom:452.922150px;}
.y155{bottom:454.283850px;}
.ya2{bottom:455.633850px;}
.y6a{bottom:457.883850px;}
.yb6{bottom:458.933850px;}
.y17a{bottom:460.853850px;}
.y1c0{bottom:461.843850px;}
.y10e{bottom:462.833850px;}
.yd4{bottom:468.683850px;}
.y32{bottom:468.825450px;}
.y7a{bottom:470.172150px;}
.y1ac{bottom:470.348850px;}
.y154{bottom:472.283850px;}
.ya1{bottom:472.883850px;}
.y11f{bottom:473.633850px;}
.y55{bottom:475.883850px;}
.yb5{bottom:476.933850px;}
.y195{bottom:478.853850px;}
.y1bf{bottom:479.843850px;}
.y10d{bottom:480.833850px;}
.y142{bottom:481.508850px;}
.yd3{bottom:486.683850px;}
.y31{bottom:486.825450px;}
.y179{bottom:487.358850px;}
.y79{bottom:487.422150px;}
.y1ab{bottom:488.348850px;}
.ya0{bottom:490.133850px;}
.y153{bottom:490.283850px;}
.y54{bottom:493.883850px;}
.yb4{bottom:494.933850px;}
.y194{bottom:496.853850px;}
.y141{bottom:502.508850px;}
.y78{bottom:504.672150px;}
.yd2{bottom:504.683850px;}
.y178{bottom:505.358850px;}
.y1be{bottom:506.348850px;}
.y9f{bottom:507.383850px;}
.y162{bottom:508.283850px;}
.y11e{bottom:509.633850px;}
.y53{bottom:511.883850px;}
.yb3{bottom:512.933850px;}
.y193{bottom:514.853850px;}
.y10c{bottom:516.833850px;}
.y77{bottom:521.922150px;}
.yd1{bottom:522.683850px;}
.y30{bottom:522.825450px;}
.y177{bottom:523.358850px;}
.y140{bottom:523.508850px;}
.y1bd{bottom:524.348850px;}
.y9e{bottom:524.633850px;}
.y152{bottom:526.283850px;}
.y11d{bottom:527.633850px;}
.y52{bottom:529.883850px;}
.yb2{bottom:530.933850px;}
.y1aa{bottom:532.853850px;}
.y76{bottom:539.172150px;}
.y163{bottom:540.683850px;}
.y2f{bottom:540.825450px;}
.y176{bottom:541.358850px;}
.y161{bottom:544.283850px;}
.y13f{bottom:544.508850px;}
.y11c{bottom:545.633850px;}
.y69{bottom:547.883850px;}
.y18c{bottom:549.863850px;}
.y1bc{bottom:550.853850px;}
.y75{bottom:556.422150px;}
.yd0{bottom:558.683850px;}
.y2e{bottom:558.825450px;}
.y9d{bottom:559.133850px;}
.y192{bottom:559.358850px;}
.y11b{bottom:563.633850px;}
.y13e{bottom:565.508850px;}
.y51{bottom:565.883850px;}
.yb1{bottom:566.933850px;}
.y175{bottom:567.863850px;}
.y1bb{bottom:568.853850px;}
.y74{bottom:573.672150px;}
.y9c{bottom:576.383850px;}
.ycf{bottom:576.683850px;}
.y1a9{bottom:577.358850px;}
.y160{bottom:580.283850px;}
.y10b{bottom:581.633850px;}
.y50{bottom:583.883850px;}
.y174{bottom:585.863850px;}
.y13d{bottom:586.508850px;}
.yb0{bottom:588.533850px;}
.y10a{bottom:590.633850px;}
.y73{bottom:590.922150px;}
.y9b{bottom:593.633850px;}
.yce{bottom:594.683850px;}
.y2d{bottom:594.825450px;}
.y1ba{bottom:595.358850px;}
.y15f{bottom:598.283850px;}
.y11a{bottom:599.633850px;}
.y4f{bottom:601.883850px;}
.y173{bottom:603.863850px;}
.y6{bottom:604.750350px;}
.y13c{bottom:607.508850px;}
.y72{bottom:608.172150px;}
.y9a{bottom:610.883850px;}
.ycd{bottom:612.683850px;}
.y2c{bottom:612.825450px;}
.y1b9{bottom:613.358850px;}
.y15e{bottom:616.283850px;}
.y4e{bottom:619.883850px;}
.y19c{bottom:621.863850px;}
.y5{bottom:625.751850px;}
.y99{bottom:628.133850px;}
.y13b{bottom:628.508850px;}
.y172{bottom:630.368850px;}
.ycc{bottom:630.683850px;}
.y2b{bottom:630.825450px;}
.y109{bottom:635.633850px;}
.y4d{bottom:637.883850px;}
.y1a8{bottom:639.863850px;}
.y71{bottom:642.672150px;}
.y98{bottom:645.383850px;}
.y171{bottom:648.368850px;}
.y2a{bottom:648.825450px;}
.y13a{bottom:649.508850px;}
.y15d{bottom:652.283850px;}
.y108{bottom:653.633850px;}
.y68{bottom:655.883850px;}
.y70{bottom:659.922150px;}
.y97{bottom:662.633850px;}
.y191{bottom:666.368850px;}
.ycb{bottom:666.683850px;}
.y139{bottom:670.883850px;}
.y107{bottom:671.633850px;}
.y4c{bottom:673.883850px;}
.y170{bottom:674.873850px;}
.y6f{bottom:677.172150px;}
.y96{bottom:679.883850px;}
.y19b{bottom:684.368850px;}
.y29{bottom:684.825450px;}
.yca{bottom:688.283850px;}
.y106{bottom:689.633850px;}
.y67{bottom:691.883850px;}
.y16f{bottom:692.873850px;}
.y6e{bottom:694.422150px;}
.y95{bottom:697.133850px;}
.yc7{bottom:705.059100px;}
.y105{bottom:707.633850px;}
.y4b{bottom:709.883850px;}
.y16e{bottom:710.873850px;}
.y6d{bottom:711.672150px;}
.y4{bottom:711.822300px;}
.y94{bottom:714.383850px;}
.y28{bottom:720.825450px;}
.y104{bottom:725.633850px;}
.y4a{bottom:727.883850px;}
.y16d{bottom:728.873850px;}
.y93{bottom:731.633850px;}
.y18b{bottom:737.378850px;}
.y27{bottom:742.425450px;}
.y3{bottom:743.337300px;}
.y119{bottom:743.633850px;}
.y49{bottom:745.883850px;}
.y1b8{bottom:746.873850px;}
.y92{bottom:748.883850px;}
.y16c{bottom:755.378850px;}
.y103{bottom:761.633850px;}
.y26{bottom:763.417950px;}
.y48{bottom:763.883850px;}
.yaf{bottom:766.133850px;}
.y16b{bottom:773.378850px;}
.y2{bottom:774.852300px;}
.y102{bottom:779.633850px;}
.y47{bottom:781.883850px;}
.y91{bottom:783.383850px;}
.y1a7{bottom:791.378850px;}
.y66{bottom:799.883850px;}
.y90{bottom:800.633850px;}
.y25{bottom:805.425450px;}
.y8f{bottom:806.256000px;}
.y1{bottom:806.367300px;}
.y101{bottom:815.633850px;}
.y46{bottom:817.883850px;}
.y45{bottom:865.268850px;}
.y24{bottom:866.607750px;}
.y22{bottom:880.268850px;}
.h1c{height:20.591742px;}
.h9{height:34.637695px;}
.h5{height:39.735352px;}
.h18{height:39.788086px;}
.h6{height:39.807352px;}
.h8{height:43.025391px;}
.h10{height:43.037391px;}
.ha{height:43.546875px;}
.hb{height:43.681641px;}
.he{height:44.150391px;}
.h16{height:44.208984px;}
.h1b{height:44.859375px;}
.hd{height:45.000000px;}
.h7{height:50.466797px;}
.h13{height:52.980469px;}
.h14{height:54.902344px;}
.hf{height:56.074219px;}
.h1a{height:65.320312px;}
.h12{height:67.289062px;}
.h4{height:70.763672px;}
.h19{height:74.208984px;}
.h17{height:75.806086px;}
.h11{height:76.207031px;}
.h15{height:80.208984px;}
.hc{height:81.650391px;}
.h2{height:96.099609px;}
.h3{height:119.753906px;}
.h1{height:935.250000px;}
.h0{height:935.433000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xb{left:48.858150px;}
.x8{left:85.039350px;}
.x15{left:91.408050px;}
.xf{left:95.518800px;}
.x2{left:101.734200px;}
.x4{left:102.802650px;}
.xc{left:106.299150px;}
.x1{left:108.750000px;}
.xe{left:112.901550px;}
.x3{left:124.057050px;}
.x14{left:155.286450px;}
.x17{left:157.650150px;}
.x16{left:161.051700px;}
.x10{left:182.643150px;}
.x12{left:284.839050px;}
.x9{left:295.438200px;}
.x13{left:353.923050px;}
.x6{left:447.098250px;}
.x5{left:468.455250px;}
.x7{left:472.707750px;}
.xa{left:496.207650px;}
.x11{left:561.751350px;}
.xd{left:644.133750px;}
@media print{
.v3{vertical-align:-32.000000pt;}
.v1{vertical-align:-17.760000pt;}
.v7{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:14.208000pt;}
.v5{vertical-align:17.760000pt;}
.v4{vertical-align:26.666667pt;}
.v2{vertical-align:32.000000pt;}
.ls0{letter-spacing:-7.040000pt;}
.ls4{letter-spacing:-4.800000pt;}
.ls5{letter-spacing:-4.480000pt;}
.ls1{letter-spacing:-3.466667pt;}
.ls8{letter-spacing:-3.200000pt;}
.ls18{letter-spacing:-1.333333pt;}
.ls3{letter-spacing:-0.266667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.003685pt;}
.ls9{letter-spacing:0.004107pt;}
.ls6{letter-spacing:0.004773pt;}
.lsb{letter-spacing:189.824000pt;}
.lsc{letter-spacing:193.322667pt;}
.lsa{letter-spacing:194.432000pt;}
.ls10{letter-spacing:231.808000pt;}
.ls12{letter-spacing:257.877333pt;}
.ls14{letter-spacing:269.952000pt;}
.ls7{letter-spacing:325.034667pt;}
.ls11{letter-spacing:371.754667pt;}
.ls13{letter-spacing:381.226667pt;}
.lsd{letter-spacing:688.497019pt;}
.lsf{letter-spacing:706.319019pt;}
.lse{letter-spacing:733.537685pt;}
.ls16{letter-spacing:864.810667pt;}
.ls15{letter-spacing:871.141685pt;}
.ws89{word-spacing:-20.384000pt;}
.ws3f{word-spacing:-17.792000pt;}
.wsc{word-spacing:-17.493333pt;}
.ws88{word-spacing:-14.826667pt;}
.ws69{word-spacing:-11.861333pt;}
.wsa0{word-spacing:-4.480000pt;}
.ws9d{word-spacing:-2.880000pt;}
.ws75{word-spacing:-2.773333pt;}
.ws2f{word-spacing:-2.720000pt;}
.ws46{word-spacing:-2.666667pt;}
.ws3{word-spacing:-2.592000pt;}
.ws74{word-spacing:-2.560000pt;}
.ws7c{word-spacing:-2.506667pt;}
.wse{word-spacing:-2.453333pt;}
.ws11{word-spacing:-2.346667pt;}
.ws4b{word-spacing:-2.240000pt;}
.ws30{word-spacing:-2.026667pt;}
.ws99{word-spacing:-1.973333pt;}
.ws56{word-spacing:-1.866667pt;}
.ws77{word-spacing:-1.813333pt;}
.ws5c{word-spacing:-1.760000pt;}
.ws1d{word-spacing:-1.706667pt;}
.ws3b{word-spacing:-1.653333pt;}
.ws14{word-spacing:-1.546667pt;}
.ws9e{word-spacing:-1.440000pt;}
.ws1c{word-spacing:-1.386667pt;}
.ws34{word-spacing:-1.333333pt;}
.ws8a{word-spacing:-1.226667pt;}
.ws84{word-spacing:-1.120000pt;}
.ws78{word-spacing:-1.066667pt;}
.ws3a{word-spacing:-1.013333pt;}
.ws23{word-spacing:-0.906667pt;}
.ws96{word-spacing:-0.853333pt;}
.ws33{word-spacing:-0.800000pt;}
.ws12{word-spacing:-0.746667pt;}
.ws83{word-spacing:-0.693333pt;}
.ws24{word-spacing:-0.640000pt;}
.wsf{word-spacing:-0.586667pt;}
.ws79{word-spacing:-0.533333pt;}
.ws7{word-spacing:-0.480000pt;}
.ws35{word-spacing:-0.426667pt;}
.ws27{word-spacing:-0.373333pt;}
.ws4a{word-spacing:-0.320000pt;}
.ws37{word-spacing:-0.213333pt;}
.ws2b{word-spacing:-0.160000pt;}
.wsa{word-spacing:-0.144000pt;}
.ws0{word-spacing:0.000000pt;}
.ws13{word-spacing:0.053333pt;}
.ws91{word-spacing:0.106667pt;}
.ws44{word-spacing:0.213333pt;}
.ws2d{word-spacing:0.266667pt;}
.ws59{word-spacing:0.320000pt;}
.ws4c{word-spacing:0.373333pt;}
.ws58{word-spacing:0.426667pt;}
.ws5d{word-spacing:0.480000pt;}
.ws8c{word-spacing:0.533333pt;}
.ws8e{word-spacing:0.586667pt;}
.ws21{word-spacing:0.640000pt;}
.wsa3{word-spacing:0.693333pt;}
.ws5a{word-spacing:0.746667pt;}
.ws97{word-spacing:0.800000pt;}
.ws3e{word-spacing:0.853333pt;}
.ws40{word-spacing:0.906667pt;}
.ws76{word-spacing:0.960000pt;}
.ws2a{word-spacing:1.013333pt;}
.ws8{word-spacing:1.056000pt;}
.ws29{word-spacing:1.066667pt;}
.ws6{word-spacing:1.152000pt;}
.ws80{word-spacing:1.226667pt;}
.ws4d{word-spacing:1.333333pt;}
.ws5b{word-spacing:1.386667pt;}
.ws10{word-spacing:1.440000pt;}
.ws82{word-spacing:1.493333pt;}
.ws31{word-spacing:1.653333pt;}
.ws18{word-spacing:1.706667pt;}
.ws41{word-spacing:1.760000pt;}
.ws9{word-spacing:1.776000pt;}
.ws8d{word-spacing:1.813333pt;}
.ws95{word-spacing:1.866667pt;}
.ws22{word-spacing:1.973333pt;}
.ws7f{word-spacing:2.026667pt;}
.ws28{word-spacing:2.080000pt;}
.wsa1{word-spacing:2.133333pt;}
.wsb{word-spacing:2.208000pt;}
.ws49{word-spacing:2.240000pt;}
.ws1e{word-spacing:2.293333pt;}
.ws39{word-spacing:2.346667pt;}
.ws48{word-spacing:2.400000pt;}
.ws45{word-spacing:2.453333pt;}
.ws2e{word-spacing:2.560000pt;}
.ws47{word-spacing:2.613333pt;}
.ws16{word-spacing:2.773333pt;}
.ws4{word-spacing:2.832000pt;}
.ws9a{word-spacing:2.880000pt;}
.ws7b{word-spacing:2.986667pt;}
.ws26{word-spacing:3.040000pt;}
.ws57{word-spacing:3.200000pt;}
.ws9b{word-spacing:3.253333pt;}
.ws2c{word-spacing:3.413333pt;}
.ws2{word-spacing:3.466667pt;}
.ws7e{word-spacing:3.520000pt;}
.ws72{word-spacing:3.573333pt;}
.ws93{word-spacing:3.626667pt;}
.ws19{word-spacing:3.680000pt;}
.ws8f{word-spacing:3.733333pt;}
.ws86{word-spacing:3.786667pt;}
.ws3d{word-spacing:3.840000pt;}
.ws73{word-spacing:3.946667pt;}
.ws81{word-spacing:4.053333pt;}
.ws71{word-spacing:4.160000pt;}
.ws98{word-spacing:4.266667pt;}
.ws8b{word-spacing:4.373333pt;}
.ws25{word-spacing:4.480000pt;}
.ws1f{word-spacing:4.586667pt;}
.ws5{word-spacing:4.608000pt;}
.ws7a{word-spacing:4.693333pt;}
.wsd{word-spacing:4.800000pt;}
.ws90{word-spacing:4.960000pt;}
.ws36{word-spacing:5.066667pt;}
.ws87{word-spacing:5.333333pt;}
.ws42{word-spacing:5.760000pt;}
.ws3c{word-spacing:5.920000pt;}
.ws9f{word-spacing:6.080000pt;}
.ws15{word-spacing:6.186667pt;}
.ws85{word-spacing:6.346667pt;}
.ws1b{word-spacing:6.560000pt;}
.ws1a{word-spacing:6.613333pt;}
.ws1{word-spacing:7.040000pt;}
.ws38{word-spacing:7.093333pt;}
.ws17{word-spacing:7.253333pt;}
.ws32{word-spacing:7.466667pt;}
.ws7d{word-spacing:7.680000pt;}
.ws92{word-spacing:7.786667pt;}
.ws20{word-spacing:7.946667pt;}
.ws43{word-spacing:8.746667pt;}
.ws94{word-spacing:9.760000pt;}
.wsa2{word-spacing:16.000000pt;}
.ws9c{word-spacing:17.546667pt;}
.ws66{word-spacing:54.570667pt;}
.ws64{word-spacing:70.016000pt;}
.ws63{word-spacing:75.733333pt;}
.ws60{word-spacing:76.245333pt;}
.ws62{word-spacing:82.944000pt;}
.ws61{word-spacing:85.614933pt;}
.ws65{word-spacing:121.002667pt;}
.ws5f{word-spacing:174.165333pt;}
.ws4f{word-spacing:188.330667pt;}
.ws6e{word-spacing:191.488000pt;}
.ws6f{word-spacing:200.960000pt;}
.ws70{word-spacing:204.714667pt;}
.ws51{word-spacing:236.074667pt;}
.ws6a{word-spacing:265.002667pt;}
.ws50{word-spacing:270.506667pt;}
.ws6b{word-spacing:274.474667pt;}
.ws6c{word-spacing:278.229333pt;}
.ws55{word-spacing:283.562667pt;}
.ws53{word-spacing:295.424000pt;}
.ws52{word-spacing:308.992000pt;}
.ws54{word-spacing:312.789333pt;}
.ws67{word-spacing:412.317867pt;}
.ws5e{word-spacing:426.696533pt;}
.ws4e{word-spacing:433.352533pt;}
.ws68{word-spacing:647.765333pt;}
.ws6d{word-spacing:680.789333pt;}
._3{margin-left:-13.634133pt;}
._1{margin-left:-7.450667pt;}
._2{margin-left:-6.289067pt;}
._a{margin-left:-5.294933pt;}
._4{margin-left:-3.570667pt;}
._8{margin-left:-2.635200pt;}
._5{margin-left:-1.478400pt;}
._7{width:1.118400pt;}
._c{width:2.212800pt;}
._6{width:3.177600pt;}
._e{width:4.069333pt;}
._9{width:5.020800pt;}
._0{width:6.429867pt;}
._b{width:7.667733pt;}
._f{width:8.704000pt;}
._53{width:10.216000pt;}
._55{width:11.323733pt;}
._56{width:16.106667pt;}
._54{width:17.813333pt;}
._4d{width:80.054000pt;}
._40{width:82.176000pt;}
._4e{width:89.514667pt;}
._4f{width:93.269333pt;}
._3b{width:94.805333pt;}
._38{width:97.493333pt;}
._37{width:99.019200pt;}
._33{width:104.320000pt;}
._3f{width:107.776000pt;}
._4b{width:115.586000pt;}
._3e{width:123.264000pt;}
._48{width:124.934267pt;}
._49{width:127.090667pt;}
._4c{width:129.017733pt;}
._45{width:131.413333pt;}
._4a{width:135.978667pt;}
._41{width:137.728000pt;}
._36{width:139.737067pt;}
._46{width:141.298667pt;}
._47{width:143.061333pt;}
._34{width:144.512000pt;}
._39{width:149.074133pt;}
._30{width:152.917333pt;}
._14{width:173.313600pt;}
._17{width:185.002133pt;}
._31{width:186.069333pt;}
._28{width:188.372800pt;}
._24{width:190.325867pt;}
._2b{width:194.432000pt;}
._29{width:198.186667pt;}
._11{width:199.982400pt;}
._2c{width:201.212267pt;}
._3c{width:204.416000pt;}
._42{width:208.554133pt;}
._2d{width:211.114667pt;}
._2e{width:215.978667pt;}
._43{width:217.600000pt;}
._44{width:221.354667pt;}
._3a{width:223.435200pt;}
._12{width:226.656000pt;}
._18{width:227.925333pt;}
._50{width:250.997867pt;}
._25{width:295.424000pt;}
._3d{width:309.802667pt;}
._1d{width:312.789333pt;}
._26{width:318.325867pt;}
._20{width:320.853333pt;}
._1a{width:324.650667pt;}
._1b{width:325.632000pt;}
._23{width:327.624000pt;}
._22{width:338.090667pt;}
._1e{width:350.506667pt;}
._51{width:367.136533pt;}
._27{width:396.373333pt;}
._52{width:445.184000pt;}
._13{width:479.601600pt;}
._1f{width:574.165333pt;}
._2f{width:629.051733pt;}
._2a{width:692.736000pt;}
._35{width:699.818667pt;}
._1c{width:702.766933pt;}
._19{width:725.930667pt;}
._32{width:727.040000pt;}
._15{width:741.038400pt;}
._16{width:765.038400pt;}
._21{width:811.306667pt;}
._10{width:836.640000pt;}
._d{width:1166.595733pt;}
.fsa{font-size:24.874667pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:37.333333pt;}
.fs4{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:69.333333pt;}
.fs7{font-size:74.666667pt;}
.fs6{font-size:80.000000pt;}
.fs0{font-size:117.333333pt;}
.y0{bottom:0.000000pt;}
.y21{bottom:24.980933pt;}
.y1e{bottom:24.990267pt;}
.y20{bottom:36.983600pt;}
.y1d{bottom:36.992933pt;}
.y23{bottom:36.995600pt;}
.y1f{bottom:48.986267pt;}
.y1c{bottom:48.995600pt;}
.yf4{bottom:77.407867pt;}
.y8e{bottom:80.597467pt;}
.y44{bottom:80.733733pt;}
.y138{bottom:81.495067pt;}
.y19a{bottom:84.727867pt;}
.y65{bottom:87.007867pt;}
.y1a6{bottom:93.167867pt;}
.yf3{bottom:93.407867pt;}
.y8d{bottom:95.930800pt;}
.ye8{bottom:96.607867pt;}
.y43{bottom:96.733733pt;}
.y1b{bottom:97.251733pt;}
.y137{bottom:97.495067pt;}
.y15c{bottom:99.807867pt;}
.y18a{bottom:100.727867pt;}
.y64{bottom:103.007867pt;}
.yc6{bottom:103.941200pt;}
.y190{bottom:108.287867pt;}
.y1a5{bottom:109.167867pt;}
.yf2{bottom:109.407867pt;}
.y1a{bottom:111.255733pt;}
.y8c{bottom:111.264133pt;}
.ye7{bottom:112.607867pt;}
.y42{bottom:112.733733pt;}
.y169{bottom:113.487867pt;}
.y136{bottom:113.495067pt;}
.y100{bottom:115.807867pt;}
.y1b7{bottom:116.727867pt;}
.y151{bottom:117.718933pt;}
.y63{bottom:119.007867pt;}
.yc5{bottom:119.941200pt;}
.y189{bottom:124.287867pt;}
.y19{bottom:125.259733pt;}
.yf1{bottom:125.407867pt;}
.y8b{bottom:126.597467pt;}
.ye3{bottom:128.607867pt;}
.y41{bottom:128.733733pt;}
.y168{bottom:129.487867pt;}
.yff{bottom:131.807867pt;}
.y1a4{bottom:132.727867pt;}
.y150{bottom:134.604267pt;}
.yc9{bottom:135.007867pt;}
.yc4{bottom:135.941200pt;}
.y18{bottom:139.263733pt;}
.y188{bottom:140.287867pt;}
.yf0{bottom:141.407867pt;}
.y8a{bottom:141.930800pt;}
.y14f{bottom:144.385600pt;}
.ye2{bottom:144.607867pt;}
.y40{bottom:144.733733pt;}
.y167{bottom:145.487867pt;}
.yfe{bottom:147.807867pt;}
.y18f{bottom:147.847867pt;}
.y1a3{bottom:148.727867pt;}
.y62{bottom:151.007867pt;}
.yc3{bottom:151.941200pt;}
.y17{bottom:153.267733pt;}
.y1b6{bottom:156.287867pt;}
.yef{bottom:157.407867pt;}
.ye1{bottom:160.607867pt;}
.y3f{bottom:160.733733pt;}
.y135{bottom:161.828400pt;}
.y14e{bottom:163.052267pt;}
.y118{bottom:163.407867pt;}
.yfd{bottom:163.807867pt;}
.y187{bottom:163.847867pt;}
.y1a2{bottom:164.727867pt;}
.y12a{bottom:165.007867pt;}
.y61{bottom:167.007867pt;}
.y16{bottom:167.235733pt;}
.yc2{bottom:167.941200pt;}
.y166{bottom:169.047867pt;}
.y1b5{bottom:172.287867pt;}
.y89{bottom:172.597467pt;}
.yee{bottom:173.407867pt;}
.yae{bottom:175.007867pt;}
.ye0{bottom:176.607867pt;}
.y3e{bottom:176.733733pt;}
.y134{bottom:177.828400pt;}
.y117{bottom:179.407867pt;}
.yfc{bottom:179.807867pt;}
.y186{bottom:179.847867pt;}
.y129{bottom:181.007867pt;}
.y15{bottom:181.239733pt;}
.y14d{bottom:181.718933pt;}
.y60{bottom:183.007867pt;}
.y165{bottom:185.047867pt;}
.y88{bottom:187.930800pt;}
.y1a1{bottom:188.287867pt;}
.yed{bottom:189.407867pt;}
.yad{bottom:190.341200pt;}
.ye6{bottom:192.607867pt;}
.y3d{bottom:192.733733pt;}
.y14{bottom:195.243733pt;}
.yfb{bottom:195.807867pt;}
.y185{bottom:195.847867pt;}
.y133{bottom:196.495067pt;}
.y128{bottom:197.007867pt;}
.y6c{bottom:199.007867pt;}
.yc1{bottom:199.941200pt;}
.y14c{bottom:200.385600pt;}
.y87{bottom:203.264133pt;}
.y18e{bottom:203.407867pt;}
.y1a0{bottom:204.287867pt;}
.yec{bottom:205.407867pt;}
.yac{bottom:205.674533pt;}
.ydf{bottom:208.607867pt;}
.y3c{bottom:208.733733pt;}
.y13{bottom:209.247733pt;}
.y15b{bottom:211.807867pt;}
.y1b4{bottom:211.847867pt;}
.y127{bottom:213.007867pt;}
.y5f{bottom:215.007867pt;}
.y132{bottom:215.161733pt;}
.yc0{bottom:215.941200pt;}
.y86{bottom:218.597467pt;}
.y14b{bottom:219.052267pt;}
.y184{bottom:219.407867pt;}
.y116{bottom:219.419867pt;}
.yab{bottom:221.007867pt;}
.yeb{bottom:221.407867pt;}
.y12{bottom:223.251733pt;}
.yde{bottom:224.607867pt;}
.yfa{bottom:227.807867pt;}
.y19f{bottom:227.847867pt;}
.yc8{bottom:231.007867pt;}
.ybf{bottom:231.941200pt;}
.y131{bottom:233.828400pt;}
.y85{bottom:233.930800pt;}
.y183{bottom:235.407867pt;}
.y115{bottom:235.415867pt;}
.yaa{bottom:236.341200pt;}
.y11{bottom:237.255733pt;}
.yea{bottom:237.407867pt;}
.y14a{bottom:237.718933pt;}
.ydd{bottom:240.607867pt;}
.y3b{bottom:240.733733pt;}
.yf9{bottom:243.807867pt;}
.y1b3{bottom:243.847867pt;}
.y126{bottom:245.007867pt;}
.y5e{bottom:247.007867pt;}
.y84{bottom:249.264133pt;}
.y10{bottom:251.259733pt;}
.y19e{bottom:251.407867pt;}
.ya9{bottom:251.674533pt;}
.y130{bottom:253.828400pt;}
.y149{bottom:256.385600pt;}
.ydc{bottom:256.607867pt;}
.y182{bottom:258.967867pt;}
.yf8{bottom:259.807867pt;}
.y1c8{bottom:259.847867pt;}
.y125{bottom:261.007867pt;}
.y5d{bottom:263.007867pt;}
.ybe{bottom:263.941200pt;}
.y83{bottom:264.597467pt;}
.yf{bottom:265.263733pt;}
.ya8{bottom:267.007867pt;}
.y19d{bottom:267.407867pt;}
.ye9{bottom:269.407867pt;}
.y12f{bottom:272.495067pt;}
.ye5{bottom:272.607867pt;}
.y3a{bottom:272.733733pt;}
.y181{bottom:274.967867pt;}
.y148{bottom:275.052267pt;}
.yf7{bottom:275.807867pt;}
.y1c7{bottom:275.847867pt;}
.y5c{bottom:279.007867pt;}
.ye{bottom:279.267733pt;}
.y82{bottom:279.930800pt;}
.ybd{bottom:279.941200pt;}
.y114{bottom:281.807867pt;}
.ya7{bottom:282.341200pt;}
.y1b2{bottom:283.407867pt;}
.ydb{bottom:288.607867pt;}
.y39{bottom:288.733733pt;}
.y18d{bottom:290.967867pt;}
.y12e{bottom:291.161733pt;}
.y15a{bottom:291.807867pt;}
.y124{bottom:293.007867pt;}
.yd{bottom:293.263733pt;}
.y147{bottom:293.718933pt;}
.y6b{bottom:295.007867pt;}
.y81{bottom:295.264133pt;}
.ybc{bottom:295.941200pt;}
.y112{bottom:297.807867pt;}
.y180{bottom:298.527867pt;}
.y1c6{bottom:299.407867pt;}
.yda{bottom:304.607867pt;}
.y38{bottom:304.733733pt;}
.y113{bottom:305.807867pt;}
.y1b1{bottom:306.967867pt;}
.yc{bottom:307.267733pt;}
.yf6{bottom:307.807867pt;}
.y12d{bottom:309.828400pt;}
.y80{bottom:310.597467pt;}
.y5b{bottom:311.007867pt;}
.ybb{bottom:311.941200pt;}
.y146{bottom:312.385600pt;}
.ya6{bottom:313.007867pt;}
.y17f{bottom:314.527867pt;}
.y1c5{bottom:315.407867pt;}
.yd9{bottom:320.607867pt;}
.y37{bottom:320.733733pt;}
.yb{bottom:321.251733pt;}
.y1b0{bottom:322.967867pt;}
.ye4{bottom:323.807867pt;}
.y123{bottom:325.007867pt;}
.y7f{bottom:325.930800pt;}
.y5a{bottom:327.007867pt;}
.yba{bottom:327.941200pt;}
.ya5{bottom:328.341200pt;}
.y12c{bottom:328.495067pt;}
.y199{bottom:330.527867pt;}
.y145{bottom:331.052267pt;}
.y1c4{bottom:331.407867pt;}
.y122{bottom:334.341200pt;}
.ya{bottom:335.255733pt;}
.yd8{bottom:336.607867pt;}
.y16a{bottom:336.829467pt;}
.y17e{bottom:338.087867pt;}
.y1af{bottom:338.967867pt;}
.y159{bottom:339.807867pt;}
.y111{bottom:341.011867pt;}
.y59{bottom:343.007867pt;}
.ya4{bottom:343.674533pt;}
.yb9{bottom:343.941200pt;}
.y198{bottom:346.527867pt;}
.y9{bottom:349.259733pt;}
.y144{bottom:349.718933pt;}
.yd7{bottom:352.607867pt;}
.y36{bottom:352.733733pt;}
.y17d{bottom:354.087867pt;}
.y1c3{bottom:354.967867pt;}
.y158{bottom:355.807867pt;}
.y12b{bottom:356.341200pt;}
.y7e{bottom:356.597467pt;}
.y110{bottom:357.007867pt;}
.y58{bottom:359.007867pt;}
.yf5{bottom:361.585333pt;}
.y1ae{bottom:362.527867pt;}
.y8{bottom:363.263733pt;}
.yd6{bottom:368.607867pt;}
.y143{bottom:368.718933pt;}
.y35{bottom:368.733733pt;}
.y17c{bottom:370.087867pt;}
.y1c2{bottom:370.967867pt;}
.y157{bottom:371.807867pt;}
.y7d{bottom:371.930800pt;}
.y121{bottom:373.007867pt;}
.y57{bottom:375.007867pt;}
.yb8{bottom:375.941200pt;}
.y7{bottom:377.267733pt;}
.y1ad{bottom:378.527867pt;}
.y164{bottom:384.607867pt;}
.y34{bottom:384.733733pt;}
.y197{bottom:386.087867pt;}
.y7c{bottom:387.264133pt;}
.y156{bottom:387.807867pt;}
.y120{bottom:389.007867pt;}
.ya3{bottom:389.674533pt;}
.y56{bottom:391.007867pt;}
.yb7{bottom:391.941200pt;}
.y17b{bottom:393.647867pt;}
.y1c1{bottom:394.527867pt;}
.y10f{bottom:395.407867pt;}
.yd5{bottom:400.607867pt;}
.y33{bottom:400.733733pt;}
.y196{bottom:402.087867pt;}
.y7b{bottom:402.597467pt;}
.y155{bottom:403.807867pt;}
.ya2{bottom:405.007867pt;}
.y6a{bottom:407.007867pt;}
.yb6{bottom:407.941200pt;}
.y17a{bottom:409.647867pt;}
.y1c0{bottom:410.527867pt;}
.y10e{bottom:411.407867pt;}
.yd4{bottom:416.607867pt;}
.y32{bottom:416.733733pt;}
.y7a{bottom:417.930800pt;}
.y1ac{bottom:418.087867pt;}
.y154{bottom:419.807867pt;}
.ya1{bottom:420.341200pt;}
.y11f{bottom:421.007867pt;}
.y55{bottom:423.007867pt;}
.yb5{bottom:423.941200pt;}
.y195{bottom:425.647867pt;}
.y1bf{bottom:426.527867pt;}
.y10d{bottom:427.407867pt;}
.y142{bottom:428.007867pt;}
.yd3{bottom:432.607867pt;}
.y31{bottom:432.733733pt;}
.y179{bottom:433.207867pt;}
.y79{bottom:433.264133pt;}
.y1ab{bottom:434.087867pt;}
.ya0{bottom:435.674533pt;}
.y153{bottom:435.807867pt;}
.y54{bottom:439.007867pt;}
.yb4{bottom:439.941200pt;}
.y194{bottom:441.647867pt;}
.y141{bottom:446.674533pt;}
.y78{bottom:448.597467pt;}
.yd2{bottom:448.607867pt;}
.y178{bottom:449.207867pt;}
.y1be{bottom:450.087867pt;}
.y9f{bottom:451.007867pt;}
.y162{bottom:451.807867pt;}
.y11e{bottom:453.007867pt;}
.y53{bottom:455.007867pt;}
.yb3{bottom:455.941200pt;}
.y193{bottom:457.647867pt;}
.y10c{bottom:459.407867pt;}
.y77{bottom:463.930800pt;}
.yd1{bottom:464.607867pt;}
.y30{bottom:464.733733pt;}
.y177{bottom:465.207867pt;}
.y140{bottom:465.341200pt;}
.y1bd{bottom:466.087867pt;}
.y9e{bottom:466.341200pt;}
.y152{bottom:467.807867pt;}
.y11d{bottom:469.007867pt;}
.y52{bottom:471.007867pt;}
.yb2{bottom:471.941200pt;}
.y1aa{bottom:473.647867pt;}
.y76{bottom:479.264133pt;}
.y163{bottom:480.607867pt;}
.y2f{bottom:480.733733pt;}
.y176{bottom:481.207867pt;}
.y161{bottom:483.807867pt;}
.y13f{bottom:484.007867pt;}
.y11c{bottom:485.007867pt;}
.y69{bottom:487.007867pt;}
.y18c{bottom:488.767867pt;}
.y1bc{bottom:489.647867pt;}
.y75{bottom:494.597467pt;}
.yd0{bottom:496.607867pt;}
.y2e{bottom:496.733733pt;}
.y9d{bottom:497.007867pt;}
.y192{bottom:497.207867pt;}
.y11b{bottom:501.007867pt;}
.y13e{bottom:502.674533pt;}
.y51{bottom:503.007867pt;}
.yb1{bottom:503.941200pt;}
.y175{bottom:504.767867pt;}
.y1bb{bottom:505.647867pt;}
.y74{bottom:509.930800pt;}
.y9c{bottom:512.341200pt;}
.ycf{bottom:512.607867pt;}
.y1a9{bottom:513.207867pt;}
.y160{bottom:515.807867pt;}
.y10b{bottom:517.007867pt;}
.y50{bottom:519.007867pt;}
.y174{bottom:520.767867pt;}
.y13d{bottom:521.341200pt;}
.yb0{bottom:523.141200pt;}
.y10a{bottom:525.007867pt;}
.y73{bottom:525.264133pt;}
.y9b{bottom:527.674533pt;}
.yce{bottom:528.607867pt;}
.y2d{bottom:528.733733pt;}
.y1ba{bottom:529.207867pt;}
.y15f{bottom:531.807867pt;}
.y11a{bottom:533.007867pt;}
.y4f{bottom:535.007867pt;}
.y173{bottom:536.767867pt;}
.y6{bottom:537.555867pt;}
.y13c{bottom:540.007867pt;}
.y72{bottom:540.597467pt;}
.y9a{bottom:543.007867pt;}
.ycd{bottom:544.607867pt;}
.y2c{bottom:544.733733pt;}
.y1b9{bottom:545.207867pt;}
.y15e{bottom:547.807867pt;}
.y4e{bottom:551.007867pt;}
.y19c{bottom:552.767867pt;}
.y5{bottom:556.223867pt;}
.y99{bottom:558.341200pt;}
.y13b{bottom:558.674533pt;}
.y172{bottom:560.327867pt;}
.ycc{bottom:560.607867pt;}
.y2b{bottom:560.733733pt;}
.y109{bottom:565.007867pt;}
.y4d{bottom:567.007867pt;}
.y1a8{bottom:568.767867pt;}
.y71{bottom:571.264133pt;}
.y98{bottom:573.674533pt;}
.y171{bottom:576.327867pt;}
.y2a{bottom:576.733733pt;}
.y13a{bottom:577.341200pt;}
.y15d{bottom:579.807867pt;}
.y108{bottom:581.007867pt;}
.y68{bottom:583.007867pt;}
.y70{bottom:586.597467pt;}
.y97{bottom:589.007867pt;}
.y191{bottom:592.327867pt;}
.ycb{bottom:592.607867pt;}
.y139{bottom:596.341200pt;}
.y107{bottom:597.007867pt;}
.y4c{bottom:599.007867pt;}
.y170{bottom:599.887867pt;}
.y6f{bottom:601.930800pt;}
.y96{bottom:604.341200pt;}
.y19b{bottom:608.327867pt;}
.y29{bottom:608.733733pt;}
.yca{bottom:611.807867pt;}
.y106{bottom:613.007867pt;}
.y67{bottom:615.007867pt;}
.y16f{bottom:615.887867pt;}
.y6e{bottom:617.264133pt;}
.y95{bottom:619.674533pt;}
.yc7{bottom:626.719200pt;}
.y105{bottom:629.007867pt;}
.y4b{bottom:631.007867pt;}
.y16e{bottom:631.887867pt;}
.y6d{bottom:632.597467pt;}
.y4{bottom:632.730933pt;}
.y94{bottom:635.007867pt;}
.y28{bottom:640.733733pt;}
.y104{bottom:645.007867pt;}
.y4a{bottom:647.007867pt;}
.y16d{bottom:647.887867pt;}
.y93{bottom:650.341200pt;}
.y18b{bottom:655.447867pt;}
.y27{bottom:659.933733pt;}
.y3{bottom:660.744267pt;}
.y119{bottom:661.007867pt;}
.y49{bottom:663.007867pt;}
.y1b8{bottom:663.887867pt;}
.y92{bottom:665.674533pt;}
.y16c{bottom:671.447867pt;}
.y103{bottom:677.007867pt;}
.y26{bottom:678.593733pt;}
.y48{bottom:679.007867pt;}
.yaf{bottom:681.007867pt;}
.y16b{bottom:687.447867pt;}
.y2{bottom:688.757600pt;}
.y102{bottom:693.007867pt;}
.y47{bottom:695.007867pt;}
.y91{bottom:696.341200pt;}
.y1a7{bottom:703.447867pt;}
.y66{bottom:711.007867pt;}
.y90{bottom:711.674533pt;}
.y25{bottom:715.933733pt;}
.y8f{bottom:716.672000pt;}
.y1{bottom:716.770933pt;}
.y101{bottom:725.007867pt;}
.y46{bottom:727.007867pt;}
.y45{bottom:769.127867pt;}
.y24{bottom:770.318000pt;}
.y22{bottom:782.461200pt;}
.h1c{height:18.303771pt;}
.h9{height:30.789062pt;}
.h5{height:35.320312pt;}
.h18{height:35.367188pt;}
.h6{height:35.384313pt;}
.h8{height:38.244792pt;}
.h10{height:38.255458pt;}
.ha{height:38.708333pt;}
.hb{height:38.828125pt;}
.he{height:39.244792pt;}
.h16{height:39.296875pt;}
.h1b{height:39.875000pt;}
.hd{height:40.000000pt;}
.h7{height:44.859375pt;}
.h13{height:47.093750pt;}
.h14{height:48.802083pt;}
.hf{height:49.843750pt;}
.h1a{height:58.062500pt;}
.h12{height:59.812500pt;}
.h4{height:62.901042pt;}
.h19{height:65.963542pt;}
.h17{height:67.383188pt;}
.h11{height:67.739583pt;}
.h15{height:71.296875pt;}
.hc{height:72.578125pt;}
.h2{height:85.421875pt;}
.h3{height:106.447917pt;}
.h1{height:831.333333pt;}
.h0{height:831.496000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xb{left:43.429467pt;}
.x8{left:75.590533pt;}
.x15{left:81.251600pt;}
.xf{left:84.905600pt;}
.x2{left:90.430400pt;}
.x4{left:91.380133pt;}
.xc{left:94.488133pt;}
.x1{left:96.666667pt;}
.xe{left:100.356933pt;}
.x3{left:110.272933pt;}
.x14{left:138.032400pt;}
.x17{left:140.133467pt;}
.x16{left:143.157067pt;}
.x10{left:162.349467pt;}
.x12{left:253.190267pt;}
.x9{left:262.611733pt;}
.x13{left:314.598267pt;}
.x6{left:397.420667pt;}
.x5{left:416.404667pt;}
.x7{left:420.184667pt;}
.xa{left:441.073467pt;}
.x11{left:499.334533pt;}
.xd{left:572.563333pt;}
}




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