
    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_97754c794953325f4f2db7e1.woff')format("woff");}.ff1{font-family:ff1;line-height:0.814000;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_f5ba08877b304015f78d0826.woff')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_52c080337c6cbcda2c226543.woff')format("woff");}.ff3{font-family:ff3;line-height:1.093262;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_deb0cd28286dfb5cabc3135e.woff')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_2cd680f37a73087370fb11bf.woff')format("woff");}.ff5{font-family:ff5;line-height:0.893555;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_a58d9edc628525c905e6a637.woff')format("woff");}.ff6{font-family:ff6;line-height:1.095703;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_12a3eddedacecb1a4d0e254c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.127000;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_a58ef15fb7428d3e217f003f.woff')format("woff");}.ff8{font-family:ff8;line-height:0.930000;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_eff35b4895e19f536489a6fb.woff')format("woff");}.ff9{font-family:ff9;line-height:0.967000;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_85f3ac2ede7eb142196acbff.woff')format("woff");}.ffa{font-family:ffa;line-height:0.957000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_12a3eddedacecb1a4d0e254c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.127000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_66e535f407293ad1cfa8a977.woff')format("woff");}.ffc{font-family:ffc;line-height:1.095703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_12a3eddedacecb1a4d0e254c.woff')format("woff");}.ffd{font-family:ffd;line-height:1.127000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_d3fb0c69a28bbf906c3936b2.woff')format("woff");}.ffe{font-family:ffe;line-height:0.900391;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-3.000000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:3.000000px;}
.lsf{letter-spacing:-6.966000px;}
.ls13{letter-spacing:-3.996000px;}
.lsb{letter-spacing:-1.080000px;}
.ls2{letter-spacing:-0.960000px;}
.ls3{letter-spacing:-0.720000px;}
.ls5{letter-spacing:-0.540000px;}
.ls1{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.270000px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000600px;}
.ls4{letter-spacing:0.270000px;}
.ls9{letter-spacing:0.540000px;}
.ls8{letter-spacing:1.813800px;}
.lsa{letter-spacing:2.160000px;}
.lse{letter-spacing:2.268000px;}
.ls11{letter-spacing:3.618000px;}
.lsd{letter-spacing:5.896800px;}
.ls10{letter-spacing:13.193400px;}
.lsc{letter-spacing:22.598400px;}
.ls12{letter-spacing:50.247600px;}
.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;}
}
.wse5{word-spacing:-17.118000px;}
.ws5{word-spacing:-13.770000px;}
.ws4{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.230000px;}
.wse6{word-spacing:-12.960000px;}
.ws0{word-spacing:-12.000000px;}
.ws1{word-spacing:-11.040000px;}
.ws2{word-spacing:-10.008000px;}
.wse4{word-spacing:-9.504000px;}
.wsae{word-spacing:-4.158000px;}
.wsc9{word-spacing:-3.888000px;}
.wse3{word-spacing:-3.510000px;}
.wsb7{word-spacing:-3.078000px;}
.wsef{word-spacing:-2.970000px;}
.wsa6{word-spacing:-2.754000px;}
.wsd{word-spacing:-2.592000px;}
.ws24{word-spacing:-2.538000px;}
.ws77{word-spacing:-2.484000px;}
.ws51{word-spacing:-2.268000px;}
.ws1b{word-spacing:-2.214000px;}
.wsad{word-spacing:-2.160000px;}
.ws3f{word-spacing:-2.106000px;}
.ws78{word-spacing:-2.052000px;}
.ws9a{word-spacing:-1.998000px;}
.ws23{word-spacing:-1.890000px;}
.ws81{word-spacing:-1.836000px;}
.ws94{word-spacing:-1.782000px;}
.ws44{word-spacing:-1.674000px;}
.wsbe{word-spacing:-1.620000px;}
.wsbf{word-spacing:-1.566000px;}
.ws15{word-spacing:-1.512000px;}
.ws3e{word-spacing:-1.404000px;}
.ws74{word-spacing:-1.350000px;}
.ws97{word-spacing:-1.296000px;}
.ws87{word-spacing:-1.242000px;}
.wsab{word-spacing:-1.188000px;}
.ws73{word-spacing:-1.134000px;}
.wsc2{word-spacing:-1.080000px;}
.ws2c{word-spacing:-1.026000px;}
.wsaf{word-spacing:-0.972000px;}
.ws4e{word-spacing:-0.918000px;}
.ws8c{word-spacing:-0.864000px;}
.ws22{word-spacing:-0.810000px;}
.ws5b{word-spacing:-0.756000px;}
.ws6e{word-spacing:-0.702000px;}
.ws48{word-spacing:-0.648000px;}
.ws55{word-spacing:-0.594000px;}
.ws65{word-spacing:-0.540000px;}
.ws84{word-spacing:-0.486000px;}
.wsa3{word-spacing:-0.432000px;}
.ws14{word-spacing:-0.378000px;}
.ws29{word-spacing:-0.270000px;}
.ws80{word-spacing:-0.216000px;}
.ws5c{word-spacing:-0.162000px;}
.ws31{word-spacing:-0.108000px;}
.ws90{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.wscf{word-spacing:0.054000px;}
.ws36{word-spacing:0.108000px;}
.ws75{word-spacing:0.162000px;}
.ws96{word-spacing:0.216000px;}
.ws33{word-spacing:0.270000px;}
.ws86{word-spacing:0.324000px;}
.ws99{word-spacing:0.432000px;}
.ws9c{word-spacing:0.486000px;}
.ws19{word-spacing:0.540000px;}
.ws58{word-spacing:0.594000px;}
.ws9{word-spacing:0.648000px;}
.ws16{word-spacing:0.702000px;}
.ws32{word-spacing:0.756000px;}
.ws83{word-spacing:0.810000px;}
.ws8{word-spacing:0.864000px;}
.ws39{word-spacing:0.918000px;}
.wsc{word-spacing:0.972000px;}
.ws3d{word-spacing:1.080000px;}
.ws40{word-spacing:1.188000px;}
.ws45{word-spacing:1.296000px;}
.ws61{word-spacing:1.350000px;}
.wsde{word-spacing:1.404000px;}
.ws72{word-spacing:1.458000px;}
.ws35{word-spacing:1.512000px;}
.ws1c{word-spacing:1.566000px;}
.ws25{word-spacing:1.620000px;}
.ws4a{word-spacing:1.674000px;}
.ws11{word-spacing:1.728000px;}
.ws7e{word-spacing:1.782000px;}
.ws28{word-spacing:1.836000px;}
.ws88{word-spacing:1.890000px;}
.ws49{word-spacing:1.944000px;}
.ws1d{word-spacing:1.998000px;}
.ws18{word-spacing:2.052000px;}
.ws27{word-spacing:2.106000px;}
.ws93{word-spacing:2.160000px;}
.wsa4{word-spacing:2.214000px;}
.ws66{word-spacing:2.268000px;}
.ws70{word-spacing:2.322000px;}
.ws37{word-spacing:2.376000px;}
.ws20{word-spacing:2.430000px;}
.wsa9{word-spacing:2.484000px;}
.ws50{word-spacing:2.538000px;}
.ws85{word-spacing:2.592000px;}
.wsb8{word-spacing:2.700000px;}
.ws2e{word-spacing:2.754000px;}
.wsa7{word-spacing:2.808000px;}
.ws17{word-spacing:2.862000px;}
.wsc1{word-spacing:2.916000px;}
.ws4b{word-spacing:2.970000px;}
.wsbd{word-spacing:3.024000px;}
.ws91{word-spacing:3.078000px;}
.ws101{word-spacing:3.132000px;}
.ws5d{word-spacing:3.186000px;}
.ws9d{word-spacing:3.240000px;}
.ws2a{word-spacing:3.294000px;}
.wsa{word-spacing:3.348000px;}
.ws54{word-spacing:3.402000px;}
.ws64{word-spacing:3.456000px;}
.ws7a{word-spacing:3.510000px;}
.ws59{word-spacing:3.564000px;}
.ws41{word-spacing:3.618000px;}
.wsaa{word-spacing:3.672000px;}
.wsbc{word-spacing:3.726000px;}
.ws7{word-spacing:3.780000px;}
.wsa8{word-spacing:3.834000px;}
.ws1a{word-spacing:3.888000px;}
.ws8e{word-spacing:3.942000px;}
.ws3a{word-spacing:3.996000px;}
.ws52{word-spacing:4.050000px;}
.ws63{word-spacing:4.104000px;}
.ws82{word-spacing:4.158000px;}
.ws6f{word-spacing:4.212000px;}
.ws8a{word-spacing:4.266000px;}
.ws8d{word-spacing:4.320000px;}
.ws1e{word-spacing:4.374000px;}
.wsfd{word-spacing:4.428000px;}
.ws3b{word-spacing:4.482000px;}
.ws47{word-spacing:4.536000px;}
.ws53{word-spacing:4.590000px;}
.ws92{word-spacing:4.644000px;}
.wsea{word-spacing:4.698000px;}
.ws2d{word-spacing:4.752000px;}
.ws4c{word-spacing:4.806000px;}
.wsa2{word-spacing:4.860000px;}
.ws68{word-spacing:4.914000px;}
.ws89{word-spacing:4.968000px;}
.ws21{word-spacing:5.022000px;}
.wsd4{word-spacing:5.130000px;}
.ws4f{word-spacing:5.184000px;}
.ws67{word-spacing:5.238000px;}
.ws1f{word-spacing:5.346000px;}
.ws5a{word-spacing:5.400000px;}
.wsbb{word-spacing:5.454000px;}
.wse2{word-spacing:5.508000px;}
.ws71{word-spacing:5.562000px;}
.ws6b{word-spacing:5.616000px;}
.ws46{word-spacing:5.670000px;}
.ws3c{word-spacing:5.832000px;}
.ws9e{word-spacing:5.886000px;}
.ws6a{word-spacing:5.940000px;}
.wsb6{word-spacing:5.994000px;}
.ws62{word-spacing:6.048000px;}
.ws76{word-spacing:6.156000px;}
.ws34{word-spacing:6.210000px;}
.wsf6{word-spacing:6.264000px;}
.ws56{word-spacing:6.318000px;}
.wsa5{word-spacing:6.372000px;}
.ws60{word-spacing:6.426000px;}
.wsb{word-spacing:6.480000px;}
.wsee{word-spacing:6.534000px;}
.wsc0{word-spacing:6.588000px;}
.wsac{word-spacing:6.696000px;}
.ws95{word-spacing:6.750000px;}
.ws9f{word-spacing:6.804000px;}
.ws7d{word-spacing:6.912000px;}
.ws2f{word-spacing:6.966000px;}
.ws4d{word-spacing:7.020000px;}
.wsa0{word-spacing:7.074000px;}
.ws26{word-spacing:7.128000px;}
.ws7f{word-spacing:7.182000px;}
.wsf2{word-spacing:7.236000px;}
.ws42{word-spacing:7.290000px;}
.wse1{word-spacing:7.344000px;}
.ws6d{word-spacing:7.452000px;}
.wsba{word-spacing:7.506000px;}
.ws69{word-spacing:7.560000px;}
.wsf{word-spacing:7.614000px;}
.ws5e{word-spacing:7.668000px;}
.wsa1{word-spacing:7.722000px;}
.ws8b{word-spacing:7.830000px;}
.ws6c{word-spacing:7.938000px;}
.wsb9{word-spacing:7.992000px;}
.ws30{word-spacing:8.100000px;}
.ws79{word-spacing:8.208000px;}
.ws43{word-spacing:8.694000px;}
.ws2b{word-spacing:8.748000px;}
.wsd0{word-spacing:9.018000px;}
.ws98{word-spacing:9.126000px;}
.ws57{word-spacing:9.180000px;}
.wsc6{word-spacing:9.288000px;}
.wsda{word-spacing:9.396000px;}
.ws5f{word-spacing:9.558000px;}
.wse7{word-spacing:9.828000px;}
.ws10{word-spacing:9.990000px;}
.wscd{word-spacing:10.044000px;}
.ws8f{word-spacing:10.098000px;}
.wsf0{word-spacing:10.206000px;}
.wscb{word-spacing:10.476000px;}
.wsc8{word-spacing:10.584000px;}
.wsfb{word-spacing:10.638000px;}
.wsf9{word-spacing:10.692000px;}
.wsfc{word-spacing:10.962000px;}
.ws9b{word-spacing:11.016000px;}
.wsb2{word-spacing:11.070000px;}
.wsb1{word-spacing:11.340000px;}
.wsd2{word-spacing:11.448000px;}
.wsfa{word-spacing:11.610000px;}
.wse9{word-spacing:11.772000px;}
.wsf5{word-spacing:11.826000px;}
.ws7b{word-spacing:11.880000px;}
.wsd1{word-spacing:12.204000px;}
.ws7c{word-spacing:12.366000px;}
.wsc5{word-spacing:12.420000px;}
.wsc4{word-spacing:12.528000px;}
.ws38{word-spacing:12.636000px;}
.wsf1{word-spacing:13.176000px;}
.wsfe{word-spacing:13.230000px;}
.wsd7{word-spacing:13.824000px;}
.wsd6{word-spacing:14.040000px;}
.ws13{word-spacing:14.202000px;}
.wse{word-spacing:14.580000px;}
.wsff{word-spacing:14.688000px;}
.wsf3{word-spacing:14.958000px;}
.wse0{word-spacing:15.228000px;}
.wsd3{word-spacing:15.660000px;}
.wsb0{word-spacing:15.714000px;}
.wse8{word-spacing:16.146000px;}
.ws12{word-spacing:16.740000px;}
.wsc7{word-spacing:17.118000px;}
.wsf4{word-spacing:17.388000px;}
.wsd8{word-spacing:18.360000px;}
.wsb3{word-spacing:19.494000px;}
.wsdb{word-spacing:19.602000px;}
.wsb5{word-spacing:20.790000px;}
.wsf8{word-spacing:21.924000px;}
.wsc3{word-spacing:22.248000px;}
.wscc{word-spacing:22.626000px;}
.wsce{word-spacing:22.734000px;}
.wsec{word-spacing:23.382000px;}
.wsd9{word-spacing:24.516000px;}
.wsed{word-spacing:27.108000px;}
.wsd5{word-spacing:27.486000px;}
.wsf7{word-spacing:27.702000px;}
.wseb{word-spacing:29.916000px;}
.wsca{word-spacing:30.456000px;}
.wsdc{word-spacing:30.780000px;}
.wsb4{word-spacing:30.942000px;}
.ws100{word-spacing:31.698000px;}
.wsdf{word-spacing:34.776000px;}
.wsdd{word-spacing:44.874000px;}
._f{margin-left:-6.250800px;}
._1{margin-left:-5.217000px;}
._6{margin-left:-4.159800px;}
._5{margin-left:-3.110400px;}
._0{margin-left:-1.776000px;}
._3{width:1.656000px;}
._4{width:2.664000px;}
._2{width:3.993600px;}
._7{width:5.323200px;}
._b{width:6.972600px;}
._a{width:8.062200px;}
._e{width:9.088200px;}
._16{width:10.789800px;}
._9{width:12.092400px;}
._8{width:14.828400px;}
._11{width:16.429200px;}
._13{width:18.163200px;}
._c{width:19.408800px;}
._19{width:21.137400px;}
._10{width:22.589400px;}
._17{width:25.971000px;}
._18{width:27.202800px;}
._14{width:30.774600px;}
._1c{width:34.093800px;}
._1b{width:35.204400px;}
._12{width:40.401600px;}
._1a{width:51.119400px;}
._15{width:62.398200px;}
._d{width:156.654600px;}
.fc1{color:rgb(39,91,155);}
.fc2{color:rgb(35,35,35);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:36.000000px;}
.fs6{font-size:44.100000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.fs4{font-size:114.000000px;}
.y0{bottom:0.000000px;}
.y38{bottom:42.246900px;}
.y1{bottom:42.247500px;}
.y6b{bottom:103.750350px;}
.y34{bottom:104.307000px;}
.y1c5{bottom:104.564100px;}
.ye9{bottom:104.714100px;}
.y11b{bottom:105.868050px;}
.y1f6{bottom:105.923400px;}
.y220{bottom:106.615500px;}
.y159{bottom:108.164100px;}
.y17b{bottom:108.954300px;}
.y9f{bottom:109.333500px;}
.y194{bottom:109.553100px;}
.yb6{bottom:109.836600px;}
.y33{bottom:118.707000px;}
.y6a{bottom:121.600350px;}
.y1c4{bottom:122.564100px;}
.ye8{bottom:122.714100px;}
.y1f5{bottom:123.773400px;}
.y11a{bottom:123.868050px;}
.y21f{bottom:124.615500px;}
.y158{bottom:126.314100px;}
.y17a{bottom:126.954300px;}
.y9e{bottom:127.333500px;}
.y193{bottom:127.553100px;}
.yb5{bottom:127.836600px;}
.y32{bottom:133.107000px;}
.y69{bottom:139.600350px;}
.y1c3{bottom:140.414100px;}
.ye7{bottom:140.714100px;}
.y1f4{bottom:141.623400px;}
.y119{bottom:141.868050px;}
.y21e{bottom:142.315500px;}
.y157{bottom:144.464100px;}
.y179{bottom:144.954300px;}
.y9d{bottom:145.183650px;}
.y31{bottom:147.507000px;}
.y192{bottom:154.057050px;}
.y68{bottom:157.600350px;}
.y1c2{bottom:158.264100px;}
.ye6{bottom:158.564100px;}
.yb4{bottom:158.592450px;}
.y1f3{bottom:159.323400px;}
.y118{bottom:159.868050px;}
.y21d{bottom:160.015500px;}
.y156{bottom:162.614100px;}
.y178{bottom:162.954300px;}
.y9c{bottom:163.033650px;}
.y191{bottom:172.057050px;}
.y67{bottom:175.600350px;}
.y1c1{bottom:176.114100px;}
.ye5{bottom:176.414100px;}
.y1f2{bottom:177.023400px;}
.y21c{bottom:177.715500px;}
.y117{bottom:177.868050px;}
.y155{bottom:180.764100px;}
.y9b{bottom:180.883650px;}
.y177{bottom:180.954300px;}
.y190{bottom:190.057050px;}
.y66{bottom:193.600350px;}
.y1c0{bottom:193.964100px;}
.ye4{bottom:194.264100px;}
.y1f1{bottom:194.723400px;}
.y116{bottom:195.868050px;}
.y9a{bottom:198.733650px;}
.y154{bottom:198.914100px;}
.y176{bottom:198.954300px;}
.yb3{bottom:202.104150px;}
.y21b{bottom:203.919450px;}
.y65{bottom:211.600350px;}
.y1bf{bottom:211.814100px;}
.y115{bottom:213.868050px;}
.y18f{bottom:216.561000px;}
.y99{bottom:216.583500px;}
.y175{bottom:216.954300px;}
.y153{bottom:217.064100px;}
.yb2{bottom:220.104150px;}
.ye3{bottom:220.618050px;}
.y1f0{bottom:220.927350px;}
.y21a{bottom:221.619450px;}
.y129{bottom:222.372000px;}
.y1be{bottom:229.664100px;}
.y114{bottom:231.868050px;}
.y98{bottom:234.433650px;}
.y18e{bottom:234.561000px;}
.y174{bottom:234.954300px;}
.y152{bottom:235.214100px;}
.y64{bottom:238.104150px;}
.ye2{bottom:238.468050px;}
.y1ef{bottom:238.627200px;}
.y219{bottom:239.319450px;}
.y128{bottom:240.372000px;}
.y1e{bottom:243.771000px;}
.y1bd{bottom:247.514100px;}
.y113{bottom:249.868050px;}
.y97{bottom:252.283650px;}
.y173{bottom:252.954300px;}
.y151{bottom:253.364100px;}
.y63{bottom:256.104150px;}
.ye1{bottom:256.318050px;}
.y1ee{bottom:256.327350px;}
.y1d{bottom:258.171000px;}
.y127{bottom:258.372000px;}
.y18d{bottom:261.064950px;}
.y1bc{bottom:265.364100px;}
.y218{bottom:265.523400px;}
.y112{bottom:267.868050px;}
.y96{bottom:270.133650px;}
.y172{bottom:270.954300px;}
.y150{bottom:271.514100px;}
.y1c{bottom:272.571000px;}
.y1ed{bottom:274.027350px;}
.y62{bottom:274.104150px;}
.ye0{bottom:274.168050px;}
.y126{bottom:276.372000px;}
.y18c{bottom:279.064950px;}
.y1bb{bottom:283.214100px;}
.y217{bottom:283.223400px;}
.y111{bottom:285.868050px;}
.y1b{bottom:286.971000px;}
.y95{bottom:287.983650px;}
.y171{bottom:288.954300px;}
.ydf{bottom:292.018050px;}
.y61{bottom:292.104150px;}
.y125{bottom:294.372000px;}
.y18b{bottom:297.064950px;}
.y14f{bottom:298.168050px;}
.y1ec{bottom:300.231150px;}
.y1ba{bottom:301.064100px;}
.y1a{bottom:301.371000px;}
.y94{bottom:305.833650px;}
.y170{bottom:306.954300px;}
.y216{bottom:309.427350px;}
.yde{bottom:309.868050px;}
.y60{bottom:310.104300px;}
.y110{bottom:312.372000px;}
.y30{bottom:312.684000px;}
.y19{bottom:315.771000px;}
.y14e{bottom:316.318050px;}
.y1eb{bottom:317.931300px;}
.y1b9{bottom:318.914100px;}
.y18a{bottom:323.568900px;}
.y93{bottom:323.683650px;}
.y2f{bottom:327.084000px;}
.y215{bottom:327.127350px;}
.ydd{bottom:327.718050px;}
.y5f{bottom:328.104300px;}
.y18{bottom:330.171000px;}
.y10f{bottom:330.372000px;}
.y16f{bottom:333.458250px;}
.y14d{bottom:334.468050px;}
.y1ea{bottom:335.631300px;}
.y1b8{bottom:336.764100px;}
.y2e{bottom:341.484000px;}
.y189{bottom:341.568900px;}
.y17{bottom:344.571000px;}
.y214{bottom:344.827350px;}
.ydc{bottom:345.568050px;}
.y5e{bottom:346.104300px;}
.y10e{bottom:348.372000px;}
.y92{bottom:350.037600px;}
.y16e{bottom:351.608250px;}
.y14c{bottom:352.618050px;}
.y1e9{bottom:353.331300px;}
.y1b7{bottom:354.614100px;}
.y2d{bottom:355.884000px;}
.y16{bottom:358.971000px;}
.y188{bottom:359.568900px;}
.ydb{bottom:363.418050px;}
.y5d{bottom:364.104300px;}
.y10d{bottom:366.372000px;}
.y91{bottom:367.887600px;}
.y16d{bottom:369.758250px;}
.y2c{bottom:370.284000px;}
.y14b{bottom:370.768050px;}
.y1e8{bottom:371.031300px;}
.y1b6{bottom:372.464100px;}
.yb1{bottom:372.608250px;}
.y15{bottom:373.371000px;}
.y259{bottom:379.144350px;}
.yda{bottom:381.268050px;}
.y5c{bottom:382.104300px;}
.y10c{bottom:384.372000px;}
.y2b{bottom:384.684000px;}
.y90{bottom:385.737600px;}
.y187{bottom:386.072700px;}
.y14{bottom:387.771000px;}
.y16c{bottom:387.908250px;}
.y1e7{bottom:388.731150px;}
.y14a{bottom:388.918050px;}
.y1b5{bottom:390.314100px;}
.yb0{bottom:390.608250px;}
.y258{bottom:397.144350px;}
.yd9{bottom:399.118050px;}
.y13{bottom:402.171000px;}
.y10b{bottom:402.372000px;}
.y8f{bottom:403.587450px;}
.y186{bottom:404.072700px;}
.y16b{bottom:406.058250px;}
.y23a{bottom:406.340400px;}
.y213{bottom:406.431300px;}
.y149{bottom:407.068050px;}
.y5b{bottom:408.608250px;}
.y1e6{bottom:414.935100px;}
.y257{bottom:415.144350px;}
.y1b4{bottom:416.668050px;}
.yd8{bottom:416.968050px;}
.y10a{bottom:420.372000px;}
.y8e{bottom:421.437600px;}
.y185{bottom:422.072700px;}
.y212{bottom:424.131300px;}
.y16a{bottom:424.208250px;}
.y239{bottom:424.340400px;}
.y148{bottom:425.218050px;}
.y5a{bottom:426.608250px;}
.y1b3{bottom:434.518050px;}
.y21{bottom:434.733000px;}
.yd7{bottom:434.818050px;}
.y109{bottom:438.372000px;}
.y8d{bottom:439.287600px;}
.y1e5{bottom:441.139050px;}
.y256{bottom:441.648450px;}
.y211{bottom:441.831300px;}
.y238{bottom:442.340400px;}
.y169{bottom:442.358250px;}
.y147{bottom:443.368050px;}
.y59{bottom:444.608250px;}
.y184{bottom:448.576650px;}
.y1b2{bottom:452.368050px;}
.yd6{bottom:452.668050px;}
.y108{bottom:456.372000px;}
.y8c{bottom:457.137600px;}
.y1e4{bottom:458.839050px;}
.y168{bottom:460.508250px;}
.y146{bottom:461.518050px;}
.y58{bottom:462.608250px;}
.y183{bottom:466.576650px;}
.y210{bottom:468.035100px;}
.y255{bottom:468.152250px;}
.y237{bottom:468.844500px;}
.y1b1{bottom:470.218050px;}
.yd5{bottom:470.518050px;}
.y124{bottom:474.372000px;}
.y8b{bottom:474.987600px;}
.y1e3{bottom:476.539050px;}
.y145{bottom:479.668050px;}
.y12{bottom:479.727000px;}
.y57{bottom:480.608250px;}
.y107{bottom:482.875950px;}
.y182{bottom:484.576650px;}
.y20f{bottom:485.735250px;}
.y254{bottom:486.152250px;}
.y236{bottom:486.844500px;}
.y167{bottom:487.162050px;}
.y1b0{bottom:488.068050px;}
.yd4{bottom:488.368050px;}
.y123{bottom:492.372000px;}
.y8a{bottom:492.837450px;}
.y144{bottom:497.818050px;}
.yaf{bottom:498.608250px;}
.y106{bottom:500.875950px;}
.y1e2{bottom:502.743000px;}
.y20e{bottom:503.435100px;}
.y166{bottom:505.312200px;}
.y1af{bottom:505.918050px;}
.yd3{bottom:506.218050px;}
.y56{bottom:507.112200px;}
.y122{bottom:510.372000px;}
.y89{bottom:510.687600px;}
.y253{bottom:512.656200px;}
.y235{bottom:513.348300px;}
.y181{bottom:515.332650px;}
.y143{bottom:515.968050px;}
.yae{bottom:516.608250px;}
.y105{bottom:518.875950px;}
.y20d{bottom:521.135250px;}
.y165{bottom:523.462200px;}
.y1ae{bottom:523.768050px;}
.y55{bottom:525.112200px;}
.y121{bottom:528.372000px;}
.y88{bottom:528.537600px;}
.y1e1{bottom:528.946950px;}
.y252{bottom:530.656200px;}
.y234{bottom:531.348300px;}
.yd2{bottom:532.572000px;}
.y142{bottom:534.118050px;}
.yad{bottom:534.608250px;}
.y104{bottom:536.875950px;}
.y164{bottom:541.612200px;}
.y1ad{bottom:541.618050px;}
.y54{bottom:543.112200px;}
.y11{bottom:545.427000px;}
.y120{bottom:546.372000px;}
.y87{bottom:546.387600px;}
.y1e0{bottom:546.646950px;}
.y20c{bottom:547.339050px;}
.y251{bottom:548.656200px;}
.yd1{bottom:550.422000px;}
.y141{bottom:552.268050px;}
.yac{bottom:552.608250px;}
.y103{bottom:554.875950px;}
.y233{bottom:557.852250px;}
.y180{bottom:558.844500px;}
.y163{bottom:559.762050px;}
.y10{bottom:559.827000px;}
.y53{bottom:561.112200px;}
.y20b{bottom:565.039050px;}
.y1ac{bottom:567.972000px;}
.yd0{bottom:568.272000px;}
.yab{bottom:570.608250px;}
.y86{bottom:572.741400px;}
.y1df{bottom:572.850900px;}
.y102{bottom:572.875950px;}
.yf{bottom:574.227000px;}
.y250{bottom:575.160150px;}
.y232{bottom:575.852250px;}
.y2a{bottom:576.240000px;}
.y17f{bottom:576.844500px;}
.y162{bottom:577.912050px;}
.y140{bottom:578.922000px;}
.y52{bottom:579.112200px;}
.y20a{bottom:582.739050px;}
.y1ab{bottom:585.822000px;}
.ycf{bottom:586.122000px;}
.ye{bottom:588.627000px;}
.y1de{bottom:590.550900px;}
.y85{bottom:590.591550px;}
.y29{bottom:590.640000px;}
.y101{bottom:590.875950px;}
.y24f{bottom:593.160150px;}
.y231{bottom:593.852250px;}
.y17e{bottom:594.844500px;}
.y161{bottom:596.062200px;}
.y13f{bottom:597.072000px;}
.y51{bottom:597.112200px;}
.y209{bottom:600.439050px;}
.yd{bottom:603.027000px;}
.y1aa{bottom:603.672000px;}
.yce{bottom:603.972000px;}
.y28{bottom:605.040000px;}
.y84{bottom:608.441550px;}
.y100{bottom:608.875950px;}
.y24e{bottom:611.160150px;}
.y230{bottom:611.852250px;}
.y160{bottom:614.212200px;}
.y50{bottom:615.112200px;}
.y13e{bottom:615.222000px;}
.y1dd{bottom:616.754850px;}
.yc{bottom:617.427000px;}
.y27{bottom:619.440000px;}
.y1a9{bottom:621.522000px;}
.ycd{bottom:621.822000px;}
.y17d{bottom:625.600350px;}
.y83{bottom:626.291400px;}
.y208{bottom:626.643000px;}
.yff{bottom:626.875950px;}
.yb{bottom:631.827000px;}
.y15f{bottom:632.362200px;}
.y4f{bottom:633.112200px;}
.y13d{bottom:633.372000px;}
.y26{bottom:633.840000px;}
.y1dc{bottom:634.454850px;}
.y24d{bottom:637.664100px;}
.y22f{bottom:638.356200px;}
.y1a8{bottom:639.372000px;}
.ycc{bottom:639.672000px;}
.y82{bottom:644.141400px;}
.y207{bottom:644.343000px;}
.y11f{bottom:644.875950px;}
.ya{bottom:646.227000px;}
.y25{bottom:648.240000px;}
.y15e{bottom:650.512050px;}
.y4e{bottom:651.112200px;}
.y13c{bottom:651.522000px;}
.y1db{bottom:652.154850px;}
.yfe{bottom:653.379900px;}
.y24c{bottom:655.664100px;}
.ycb{bottom:657.522000px;}
.y9{bottom:660.627000px;}
.y81{bottom:661.991400px;}
.y206{bottom:662.043000px;}
.y24{bottom:662.640000px;}
.y11e{bottom:662.875950px;}
.y22e{bottom:664.860150px;}
.y1a7{bottom:665.725950px;}
.y15d{bottom:668.662050px;}
.y4d{bottom:669.112200px;}
.y13b{bottom:669.672000px;}
.y1da{bottom:669.854850px;}
.yfd{bottom:671.379900px;}
.y24b{bottom:673.664100px;}
.y8{bottom:675.027000px;}
.yca{bottom:675.372000px;}
.y80{bottom:679.841550px;}
.y11d{bottom:680.875950px;}
.y22d{bottom:682.860150px;}
.y1a6{bottom:683.575950px;}
.y15c{bottom:686.812200px;}
.y4c{bottom:687.112200px;}
.y13a{bottom:687.822000px;}
.y205{bottom:688.246950px;}
.yfc{bottom:689.379750px;}
.y7{bottom:689.427000px;}
.y1d9{bottom:696.058800px;}
.y7f{bottom:697.691550px;}
.y24a{bottom:700.168050px;}
.y22c{bottom:700.860150px;}
.y1a5{bottom:701.425950px;}
.yc9{bottom:701.725950px;}
.y23{bottom:703.303500px;}
.y6{bottom:703.827000px;}
.y15b{bottom:704.962200px;}
.yaa{bottom:705.112200px;}
.y204{bottom:705.946950px;}
.y139{bottom:705.972000px;}
.yfb{bottom:707.379750px;}
.y4b{bottom:713.616000px;}
.y1d8{bottom:713.758800px;}
.y7e{bottom:715.541400px;}
.y22{bottom:717.703500px;}
.y17c{bottom:717.868050px;}
.y249{bottom:718.168050px;}
.y5{bottom:718.227000px;}
.y22b{bottom:718.860150px;}
.y1a4{bottom:719.275950px;}
.yc8{bottom:719.575950px;}
.ya9{bottom:723.112200px;}
.y138{bottom:724.122000px;}
.yfa{bottom:725.379750px;}
.y1d7{bottom:731.458800px;}
.y4a{bottom:731.616000px;}
.y203{bottom:732.150900px;}
.y7d{bottom:733.391550px;}
.y15a{bottom:735.868050px;}
.y248{bottom:736.168050px;}
.y22a{bottom:736.860150px;}
.y1a3{bottom:737.125950px;}
.yc7{bottom:737.425950px;}
.ya8{bottom:741.112200px;}
.yf9{bottom:743.379750px;}
.y1d6{bottom:749.158800px;}
.y49{bottom:749.616000px;}
.y137{bottom:750.775950px;}
.y7c{bottom:751.241400px;}
.y20{bottom:752.278500px;}
.y247{bottom:754.168050px;}
.y1a2{bottom:754.975950px;}
.yc6{bottom:755.275950px;}
.y202{bottom:758.354850px;}
.ya7{bottom:759.112200px;}
.yf8{bottom:761.379750px;}
.y229{bottom:763.364100px;}
.y1d5{bottom:766.858800px;}
.y48{bottom:767.616000px;}
.y136{bottom:768.925950px;}
.y7b{bottom:769.091550px;}
.y1a1{bottom:772.825950px;}
.yc5{bottom:773.125950px;}
.y201{bottom:776.054850px;}
.ya6{bottom:777.112200px;}
.yf7{bottom:779.379750px;}
.y246{bottom:780.672000px;}
.y228{bottom:781.364100px;}
.y47{bottom:785.616000px;}
.y7a{bottom:786.941550px;}
.y135{bottom:787.075950px;}
.y1a0{bottom:790.675950px;}
.yc4{bottom:790.975950px;}
.y1d4{bottom:793.062750px;}
.y200{bottom:793.754850px;}
.yf6{bottom:797.379750px;}
.y245{bottom:798.672000px;}
.y227{bottom:799.364100px;}
.y46{bottom:803.616000px;}
.y134{bottom:805.225950px;}
.y1d3{bottom:810.762750px;}
.y1ff{bottom:811.454850px;}
.y79{bottom:813.295500px;}
.yf5{bottom:815.379750px;}
.y19f{bottom:817.029900px;}
.yc3{bottom:817.329900px;}
.y45{bottom:821.616000px;}
.y133{bottom:823.375950px;}
.y4{bottom:823.786500px;}
.y244{bottom:825.175950px;}
.y226{bottom:825.868050px;}
.y1d2{bottom:828.462750px;}
.y78{bottom:831.145350px;}
.yf4{bottom:833.379750px;}
.y19e{bottom:834.879750px;}
.yc2{bottom:835.179900px;}
.y1fe{bottom:837.658800px;}
.y44{bottom:839.616000px;}
.y132{bottom:841.525950px;}
.y243{bottom:843.175950px;}
.y225{bottom:843.868050px;}
.y1d1{bottom:846.162750px;}
.y77{bottom:848.995350px;}
.yf3{bottom:851.379750px;}
.y19d{bottom:852.729900px;}
.yc1{bottom:853.029900px;}
.y1fd{bottom:855.358800px;}
.y3{bottom:856.995000px;}
.ya5{bottom:857.616000px;}
.y131{bottom:859.675950px;}
.y224{bottom:861.868050px;}
.y76{bottom:866.845500px;}
.yf2{bottom:869.379750px;}
.y242{bottom:869.679900px;}
.y43{bottom:870.372000px;}
.y19c{bottom:870.579900px;}
.yc0{bottom:870.879750px;}
.y1d0{bottom:872.366700px;}
.y1fc{bottom:873.058800px;}
.ya4{bottom:875.616000px;}
.y75{bottom:884.695350px;}
.y130{bottom:886.329900px;}
.yf1{bottom:887.379750px;}
.y241{bottom:887.679900px;}
.y223{bottom:888.372000px;}
.y19b{bottom:888.429900px;}
.ybf{bottom:888.729900px;}
.y1cf{bottom:890.066700px;}
.ya3{bottom:893.616000px;}
.y11c{bottom:895.883850px;}
.y2{bottom:896.502000px;}
.y1fb{bottom:899.262750px;}
.y74{bottom:902.545500px;}
.y12f{bottom:904.479900px;}
.yf0{bottom:905.379750px;}
.y240{bottom:905.679900px;}
.y19a{bottom:906.279900px;}
.y222{bottom:906.372000px;}
.ybe{bottom:906.579900px;}
.y1ce{bottom:907.766700px;}
.ya2{bottom:911.616000px;}
.y42{bottom:913.883850px;}
.y1fa{bottom:916.962750px;}
.y73{bottom:920.395350px;}
.y12e{bottom:922.629750px;}
.yef{bottom:923.379750px;}
.y23f{bottom:923.679900px;}
.y199{bottom:924.129750px;}
.ybd{bottom:924.429900px;}
.y1cd{bottom:925.466700px;}
.ya1{bottom:929.616000px;}
.y41{bottom:931.883850px;}
.y221{bottom:932.875950px;}
.y1f9{bottom:934.662750px;}
.y1f{bottom:936.325500px;}
.y72{bottom:938.245350px;}
.y12d{bottom:940.779900px;}
.yee{bottom:941.379750px;}
.y198{bottom:941.979900px;}
.ybc{bottom:942.279900px;}
.y1cc{bottom:943.166700px;}
.y40{bottom:949.883850px;}
.y23e{bottom:950.183850px;}
.y1f8{bottom:952.362750px;}
.y71{bottom:956.095500px;}
.y12c{bottom:958.929900px;}
.yed{bottom:959.379750px;}
.y197{bottom:959.829900px;}
.ybb{bottom:960.129750px;}
.ya0{bottom:960.372000px;}
.y1cb{bottom:960.866700px;}
.y3f{bottom:967.883850px;}
.y23d{bottom:968.183850px;}
.y70{bottom:973.945350px;}
.y12b{bottom:977.079900px;}
.yec{bottom:977.379750px;}
.y196{bottom:977.679900px;}
.y1ca{bottom:978.566700px;}
.y3e{bottom:985.883850px;}
.y23c{bottom:986.183850px;}
.yba{bottom:986.483850px;}
.y6f{bottom:991.795500px;}
.y37{bottom:993.742500px;}
.y12a{bottom:995.229900px;}
.yeb{bottom:995.379750px;}
.y195{bottom:995.529900px;}
.y1c9{bottom:996.266700px;}
.y3d{bottom:1003.883850px;}
.y23b{bottom:1004.183850px;}
.yb9{bottom:1004.333700px;}
.y6e{bottom:1009.645350px;}
.yea{bottom:1013.379750px;}
.y1f7{bottom:1013.966700px;}
.y3c{bottom:1021.883850px;}
.yb8{bottom:1022.183850px;}
.y1c8{bottom:1022.470650px;}
.y36{bottom:1024.021500px;}
.y6d{bottom:1027.495350px;}
.y3b{bottom:1039.883850px;}
.yb7{bottom:1040.033700px;}
.y1c7{bottom:1040.170650px;}
.y1c6{bottom:1057.870650px;}
.y3a{bottom:1057.883850px;}
.y6c{bottom:1058.101350px;}
.y35{bottom:1064.286000px;}
.y39{bottom:1108.994850px;}
.hf{height:26.532000px;}
.ha{height:32.531250px;}
.h6{height:33.351562px;}
.h13{height:36.966797px;}
.h12{height:37.520508px;}
.h2{height:37.632000px;}
.h10{height:40.351500px;}
.h7{height:42.117188px;}
.hc{height:42.234375px;}
.hb{height:42.632812px;}
.hd{height:43.920000px;}
.h5{height:47.381836px;}
.h11{height:47.513672px;}
.h9{height:47.961914px;}
.h4{height:57.911133px;}
.h8{height:58.620117px;}
.h3{height:85.265625px;}
.he{height:85.500000px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x14{left:63.779550px;}
.xd{left:72.926100px;}
.x13{left:76.535400px;}
.x1b{left:88.035000px;}
.x9{left:89.292000px;}
.x6{left:90.556500px;}
.x7{left:97.795500px;}
.x1c{left:100.790850px;}
.x1a{left:101.853900px;}
.x23{left:115.672800px;}
.x2{left:195.432000px;}
.x12{left:204.980100px;}
.x1d{left:212.363850px;}
.x5{left:275.121000px;}
.xe{left:282.769800px;}
.x8{left:286.299000px;}
.xc{left:304.921500px;}
.xb{left:306.171000px;}
.x15{left:329.222700px;}
.xa{left:346.744500px;}
.x4{left:372.945000px;}
.x3{left:380.563500px;}
.x10{left:446.456700px;}
.xf{left:459.212550px;}
.x16{left:470.712150px;}
.x21{left:471.968400px;}
.x18{left:483.468000px;}
.x22{left:496.223850px;}
.x19{left:525.583800px;}
.x1e{left:562.918200px;}
.x11{left:579.921750px;}
.x1f{left:587.911050px;}
.x17{left:589.250700px;}
.x20{left:591.427800px;}
.x1{left:803.202000px;}
@media print{
.v1{vertical-align:-2.666667pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.666667pt;}
.lsf{letter-spacing:-6.192000pt;}
.ls13{letter-spacing:-3.552000pt;}
.lsb{letter-spacing:-0.960000pt;}
.ls2{letter-spacing:-0.853333pt;}
.ls3{letter-spacing:-0.640000pt;}
.ls5{letter-spacing:-0.480000pt;}
.ls1{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000533pt;}
.ls4{letter-spacing:0.240000pt;}
.ls9{letter-spacing:0.480000pt;}
.ls8{letter-spacing:1.612267pt;}
.lsa{letter-spacing:1.920000pt;}
.lse{letter-spacing:2.016000pt;}
.ls11{letter-spacing:3.216000pt;}
.lsd{letter-spacing:5.241600pt;}
.ls10{letter-spacing:11.727467pt;}
.lsc{letter-spacing:20.087467pt;}
.ls12{letter-spacing:44.664533pt;}
.wse5{word-spacing:-15.216000pt;}
.ws5{word-spacing:-12.240000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.760000pt;}
.wse6{word-spacing:-11.520000pt;}
.ws0{word-spacing:-10.666667pt;}
.ws1{word-spacing:-9.813333pt;}
.ws2{word-spacing:-8.896000pt;}
.wse4{word-spacing:-8.448000pt;}
.wsae{word-spacing:-3.696000pt;}
.wsc9{word-spacing:-3.456000pt;}
.wse3{word-spacing:-3.120000pt;}
.wsb7{word-spacing:-2.736000pt;}
.wsef{word-spacing:-2.640000pt;}
.wsa6{word-spacing:-2.448000pt;}
.wsd{word-spacing:-2.304000pt;}
.ws24{word-spacing:-2.256000pt;}
.ws77{word-spacing:-2.208000pt;}
.ws51{word-spacing:-2.016000pt;}
.ws1b{word-spacing:-1.968000pt;}
.wsad{word-spacing:-1.920000pt;}
.ws3f{word-spacing:-1.872000pt;}
.ws78{word-spacing:-1.824000pt;}
.ws9a{word-spacing:-1.776000pt;}
.ws23{word-spacing:-1.680000pt;}
.ws81{word-spacing:-1.632000pt;}
.ws94{word-spacing:-1.584000pt;}
.ws44{word-spacing:-1.488000pt;}
.wsbe{word-spacing:-1.440000pt;}
.wsbf{word-spacing:-1.392000pt;}
.ws15{word-spacing:-1.344000pt;}
.ws3e{word-spacing:-1.248000pt;}
.ws74{word-spacing:-1.200000pt;}
.ws97{word-spacing:-1.152000pt;}
.ws87{word-spacing:-1.104000pt;}
.wsab{word-spacing:-1.056000pt;}
.ws73{word-spacing:-1.008000pt;}
.wsc2{word-spacing:-0.960000pt;}
.ws2c{word-spacing:-0.912000pt;}
.wsaf{word-spacing:-0.864000pt;}
.ws4e{word-spacing:-0.816000pt;}
.ws8c{word-spacing:-0.768000pt;}
.ws22{word-spacing:-0.720000pt;}
.ws5b{word-spacing:-0.672000pt;}
.ws6e{word-spacing:-0.624000pt;}
.ws48{word-spacing:-0.576000pt;}
.ws55{word-spacing:-0.528000pt;}
.ws65{word-spacing:-0.480000pt;}
.ws84{word-spacing:-0.432000pt;}
.wsa3{word-spacing:-0.384000pt;}
.ws14{word-spacing:-0.336000pt;}
.ws29{word-spacing:-0.240000pt;}
.ws80{word-spacing:-0.192000pt;}
.ws5c{word-spacing:-0.144000pt;}
.ws31{word-spacing:-0.096000pt;}
.ws90{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.wscf{word-spacing:0.048000pt;}
.ws36{word-spacing:0.096000pt;}
.ws75{word-spacing:0.144000pt;}
.ws96{word-spacing:0.192000pt;}
.ws33{word-spacing:0.240000pt;}
.ws86{word-spacing:0.288000pt;}
.ws99{word-spacing:0.384000pt;}
.ws9c{word-spacing:0.432000pt;}
.ws19{word-spacing:0.480000pt;}
.ws58{word-spacing:0.528000pt;}
.ws9{word-spacing:0.576000pt;}
.ws16{word-spacing:0.624000pt;}
.ws32{word-spacing:0.672000pt;}
.ws83{word-spacing:0.720000pt;}
.ws8{word-spacing:0.768000pt;}
.ws39{word-spacing:0.816000pt;}
.wsc{word-spacing:0.864000pt;}
.ws3d{word-spacing:0.960000pt;}
.ws40{word-spacing:1.056000pt;}
.ws45{word-spacing:1.152000pt;}
.ws61{word-spacing:1.200000pt;}
.wsde{word-spacing:1.248000pt;}
.ws72{word-spacing:1.296000pt;}
.ws35{word-spacing:1.344000pt;}
.ws1c{word-spacing:1.392000pt;}
.ws25{word-spacing:1.440000pt;}
.ws4a{word-spacing:1.488000pt;}
.ws11{word-spacing:1.536000pt;}
.ws7e{word-spacing:1.584000pt;}
.ws28{word-spacing:1.632000pt;}
.ws88{word-spacing:1.680000pt;}
.ws49{word-spacing:1.728000pt;}
.ws1d{word-spacing:1.776000pt;}
.ws18{word-spacing:1.824000pt;}
.ws27{word-spacing:1.872000pt;}
.ws93{word-spacing:1.920000pt;}
.wsa4{word-spacing:1.968000pt;}
.ws66{word-spacing:2.016000pt;}
.ws70{word-spacing:2.064000pt;}
.ws37{word-spacing:2.112000pt;}
.ws20{word-spacing:2.160000pt;}
.wsa9{word-spacing:2.208000pt;}
.ws50{word-spacing:2.256000pt;}
.ws85{word-spacing:2.304000pt;}
.wsb8{word-spacing:2.400000pt;}
.ws2e{word-spacing:2.448000pt;}
.wsa7{word-spacing:2.496000pt;}
.ws17{word-spacing:2.544000pt;}
.wsc1{word-spacing:2.592000pt;}
.ws4b{word-spacing:2.640000pt;}
.wsbd{word-spacing:2.688000pt;}
.ws91{word-spacing:2.736000pt;}
.ws101{word-spacing:2.784000pt;}
.ws5d{word-spacing:2.832000pt;}
.ws9d{word-spacing:2.880000pt;}
.ws2a{word-spacing:2.928000pt;}
.wsa{word-spacing:2.976000pt;}
.ws54{word-spacing:3.024000pt;}
.ws64{word-spacing:3.072000pt;}
.ws7a{word-spacing:3.120000pt;}
.ws59{word-spacing:3.168000pt;}
.ws41{word-spacing:3.216000pt;}
.wsaa{word-spacing:3.264000pt;}
.wsbc{word-spacing:3.312000pt;}
.ws7{word-spacing:3.360000pt;}
.wsa8{word-spacing:3.408000pt;}
.ws1a{word-spacing:3.456000pt;}
.ws8e{word-spacing:3.504000pt;}
.ws3a{word-spacing:3.552000pt;}
.ws52{word-spacing:3.600000pt;}
.ws63{word-spacing:3.648000pt;}
.ws82{word-spacing:3.696000pt;}
.ws6f{word-spacing:3.744000pt;}
.ws8a{word-spacing:3.792000pt;}
.ws8d{word-spacing:3.840000pt;}
.ws1e{word-spacing:3.888000pt;}
.wsfd{word-spacing:3.936000pt;}
.ws3b{word-spacing:3.984000pt;}
.ws47{word-spacing:4.032000pt;}
.ws53{word-spacing:4.080000pt;}
.ws92{word-spacing:4.128000pt;}
.wsea{word-spacing:4.176000pt;}
.ws2d{word-spacing:4.224000pt;}
.ws4c{word-spacing:4.272000pt;}
.wsa2{word-spacing:4.320000pt;}
.ws68{word-spacing:4.368000pt;}
.ws89{word-spacing:4.416000pt;}
.ws21{word-spacing:4.464000pt;}
.wsd4{word-spacing:4.560000pt;}
.ws4f{word-spacing:4.608000pt;}
.ws67{word-spacing:4.656000pt;}
.ws1f{word-spacing:4.752000pt;}
.ws5a{word-spacing:4.800000pt;}
.wsbb{word-spacing:4.848000pt;}
.wse2{word-spacing:4.896000pt;}
.ws71{word-spacing:4.944000pt;}
.ws6b{word-spacing:4.992000pt;}
.ws46{word-spacing:5.040000pt;}
.ws3c{word-spacing:5.184000pt;}
.ws9e{word-spacing:5.232000pt;}
.ws6a{word-spacing:5.280000pt;}
.wsb6{word-spacing:5.328000pt;}
.ws62{word-spacing:5.376000pt;}
.ws76{word-spacing:5.472000pt;}
.ws34{word-spacing:5.520000pt;}
.wsf6{word-spacing:5.568000pt;}
.ws56{word-spacing:5.616000pt;}
.wsa5{word-spacing:5.664000pt;}
.ws60{word-spacing:5.712000pt;}
.wsb{word-spacing:5.760000pt;}
.wsee{word-spacing:5.808000pt;}
.wsc0{word-spacing:5.856000pt;}
.wsac{word-spacing:5.952000pt;}
.ws95{word-spacing:6.000000pt;}
.ws9f{word-spacing:6.048000pt;}
.ws7d{word-spacing:6.144000pt;}
.ws2f{word-spacing:6.192000pt;}
.ws4d{word-spacing:6.240000pt;}
.wsa0{word-spacing:6.288000pt;}
.ws26{word-spacing:6.336000pt;}
.ws7f{word-spacing:6.384000pt;}
.wsf2{word-spacing:6.432000pt;}
.ws42{word-spacing:6.480000pt;}
.wse1{word-spacing:6.528000pt;}
.ws6d{word-spacing:6.624000pt;}
.wsba{word-spacing:6.672000pt;}
.ws69{word-spacing:6.720000pt;}
.wsf{word-spacing:6.768000pt;}
.ws5e{word-spacing:6.816000pt;}
.wsa1{word-spacing:6.864000pt;}
.ws8b{word-spacing:6.960000pt;}
.ws6c{word-spacing:7.056000pt;}
.wsb9{word-spacing:7.104000pt;}
.ws30{word-spacing:7.200000pt;}
.ws79{word-spacing:7.296000pt;}
.ws43{word-spacing:7.728000pt;}
.ws2b{word-spacing:7.776000pt;}
.wsd0{word-spacing:8.016000pt;}
.ws98{word-spacing:8.112000pt;}
.ws57{word-spacing:8.160000pt;}
.wsc6{word-spacing:8.256000pt;}
.wsda{word-spacing:8.352000pt;}
.ws5f{word-spacing:8.496000pt;}
.wse7{word-spacing:8.736000pt;}
.ws10{word-spacing:8.880000pt;}
.wscd{word-spacing:8.928000pt;}
.ws8f{word-spacing:8.976000pt;}
.wsf0{word-spacing:9.072000pt;}
.wscb{word-spacing:9.312000pt;}
.wsc8{word-spacing:9.408000pt;}
.wsfb{word-spacing:9.456000pt;}
.wsf9{word-spacing:9.504000pt;}
.wsfc{word-spacing:9.744000pt;}
.ws9b{word-spacing:9.792000pt;}
.wsb2{word-spacing:9.840000pt;}
.wsb1{word-spacing:10.080000pt;}
.wsd2{word-spacing:10.176000pt;}
.wsfa{word-spacing:10.320000pt;}
.wse9{word-spacing:10.464000pt;}
.wsf5{word-spacing:10.512000pt;}
.ws7b{word-spacing:10.560000pt;}
.wsd1{word-spacing:10.848000pt;}
.ws7c{word-spacing:10.992000pt;}
.wsc5{word-spacing:11.040000pt;}
.wsc4{word-spacing:11.136000pt;}
.ws38{word-spacing:11.232000pt;}
.wsf1{word-spacing:11.712000pt;}
.wsfe{word-spacing:11.760000pt;}
.wsd7{word-spacing:12.288000pt;}
.wsd6{word-spacing:12.480000pt;}
.ws13{word-spacing:12.624000pt;}
.wse{word-spacing:12.960000pt;}
.wsff{word-spacing:13.056000pt;}
.wsf3{word-spacing:13.296000pt;}
.wse0{word-spacing:13.536000pt;}
.wsd3{word-spacing:13.920000pt;}
.wsb0{word-spacing:13.968000pt;}
.wse8{word-spacing:14.352000pt;}
.ws12{word-spacing:14.880000pt;}
.wsc7{word-spacing:15.216000pt;}
.wsf4{word-spacing:15.456000pt;}
.wsd8{word-spacing:16.320000pt;}
.wsb3{word-spacing:17.328000pt;}
.wsdb{word-spacing:17.424000pt;}
.wsb5{word-spacing:18.480000pt;}
.wsf8{word-spacing:19.488000pt;}
.wsc3{word-spacing:19.776000pt;}
.wscc{word-spacing:20.112000pt;}
.wsce{word-spacing:20.208000pt;}
.wsec{word-spacing:20.784000pt;}
.wsd9{word-spacing:21.792000pt;}
.wsed{word-spacing:24.096000pt;}
.wsd5{word-spacing:24.432000pt;}
.wsf7{word-spacing:24.624000pt;}
.wseb{word-spacing:26.592000pt;}
.wsca{word-spacing:27.072000pt;}
.wsdc{word-spacing:27.360000pt;}
.wsb4{word-spacing:27.504000pt;}
.ws100{word-spacing:28.176000pt;}
.wsdf{word-spacing:30.912000pt;}
.wsdd{word-spacing:39.888000pt;}
._f{margin-left:-5.556267pt;}
._1{margin-left:-4.637333pt;}
._6{margin-left:-3.697600pt;}
._5{margin-left:-2.764800pt;}
._0{margin-left:-1.578667pt;}
._3{width:1.472000pt;}
._4{width:2.368000pt;}
._2{width:3.549867pt;}
._7{width:4.731733pt;}
._b{width:6.197867pt;}
._a{width:7.166400pt;}
._e{width:8.078400pt;}
._16{width:9.590933pt;}
._9{width:10.748800pt;}
._8{width:13.180800pt;}
._11{width:14.603733pt;}
._13{width:16.145067pt;}
._c{width:17.252267pt;}
._19{width:18.788800pt;}
._10{width:20.079467pt;}
._17{width:23.085333pt;}
._18{width:24.180267pt;}
._14{width:27.355200pt;}
._1c{width:30.305600pt;}
._1b{width:31.292800pt;}
._12{width:35.912533pt;}
._1a{width:45.439467pt;}
._15{width:55.465067pt;}
._d{width:139.248533pt;}
.fs5{font-size:32.000000pt;}
.fs6{font-size:39.200000pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.fs4{font-size:101.333333pt;}
.y0{bottom:0.000000pt;}
.y38{bottom:37.552800pt;}
.y1{bottom:37.553333pt;}
.y6b{bottom:92.222533pt;}
.y34{bottom:92.717333pt;}
.y1c5{bottom:92.945867pt;}
.ye9{bottom:93.079200pt;}
.y11b{bottom:94.104933pt;}
.y1f6{bottom:94.154133pt;}
.y220{bottom:94.769333pt;}
.y159{bottom:96.145867pt;}
.y17b{bottom:96.848267pt;}
.y9f{bottom:97.185333pt;}
.y194{bottom:97.380533pt;}
.yb6{bottom:97.632533pt;}
.y33{bottom:105.517333pt;}
.y6a{bottom:108.089200pt;}
.y1c4{bottom:108.945867pt;}
.ye8{bottom:109.079200pt;}
.y1f5{bottom:110.020800pt;}
.y11a{bottom:110.104933pt;}
.y21f{bottom:110.769333pt;}
.y158{bottom:112.279200pt;}
.y17a{bottom:112.848267pt;}
.y9e{bottom:113.185333pt;}
.y193{bottom:113.380533pt;}
.yb5{bottom:113.632533pt;}
.y32{bottom:118.317333pt;}
.y69{bottom:124.089200pt;}
.y1c3{bottom:124.812533pt;}
.ye7{bottom:125.079200pt;}
.y1f4{bottom:125.887467pt;}
.y119{bottom:126.104933pt;}
.y21e{bottom:126.502667pt;}
.y157{bottom:128.412533pt;}
.y179{bottom:128.848267pt;}
.y9d{bottom:129.052133pt;}
.y31{bottom:131.117333pt;}
.y192{bottom:136.939600pt;}
.y68{bottom:140.089200pt;}
.y1c2{bottom:140.679200pt;}
.ye6{bottom:140.945867pt;}
.yb4{bottom:140.971067pt;}
.y1f3{bottom:141.620800pt;}
.y118{bottom:142.104933pt;}
.y21d{bottom:142.236000pt;}
.y156{bottom:144.545867pt;}
.y178{bottom:144.848267pt;}
.y9c{bottom:144.918800pt;}
.y191{bottom:152.939600pt;}
.y67{bottom:156.089200pt;}
.y1c1{bottom:156.545867pt;}
.ye5{bottom:156.812533pt;}
.y1f2{bottom:157.354133pt;}
.y21c{bottom:157.969333pt;}
.y117{bottom:158.104933pt;}
.y155{bottom:160.679200pt;}
.y9b{bottom:160.785467pt;}
.y177{bottom:160.848267pt;}
.y190{bottom:168.939600pt;}
.y66{bottom:172.089200pt;}
.y1c0{bottom:172.412533pt;}
.ye4{bottom:172.679200pt;}
.y1f1{bottom:173.087467pt;}
.y116{bottom:174.104933pt;}
.y9a{bottom:176.652133pt;}
.y154{bottom:176.812533pt;}
.y176{bottom:176.848267pt;}
.yb3{bottom:179.648133pt;}
.y21b{bottom:181.261733pt;}
.y65{bottom:188.089200pt;}
.y1bf{bottom:188.279200pt;}
.y115{bottom:190.104933pt;}
.y18f{bottom:192.498667pt;}
.y99{bottom:192.518667pt;}
.y175{bottom:192.848267pt;}
.y153{bottom:192.945867pt;}
.yb2{bottom:195.648133pt;}
.ye3{bottom:196.104933pt;}
.y1f0{bottom:196.379867pt;}
.y21a{bottom:196.995067pt;}
.y129{bottom:197.664000pt;}
.y1be{bottom:204.145867pt;}
.y114{bottom:206.104933pt;}
.y98{bottom:208.385467pt;}
.y18e{bottom:208.498667pt;}
.y174{bottom:208.848267pt;}
.y152{bottom:209.079200pt;}
.y64{bottom:211.648133pt;}
.ye2{bottom:211.971600pt;}
.y1ef{bottom:212.113067pt;}
.y219{bottom:212.728400pt;}
.y128{bottom:213.664000pt;}
.y1e{bottom:216.685333pt;}
.y1bd{bottom:220.012533pt;}
.y113{bottom:222.104933pt;}
.y97{bottom:224.252133pt;}
.y173{bottom:224.848267pt;}
.y151{bottom:225.212533pt;}
.y63{bottom:227.648133pt;}
.ye1{bottom:227.838267pt;}
.y1ee{bottom:227.846533pt;}
.y1d{bottom:229.485333pt;}
.y127{bottom:229.664000pt;}
.y18d{bottom:232.057733pt;}
.y1bc{bottom:235.879200pt;}
.y218{bottom:236.020800pt;}
.y112{bottom:238.104933pt;}
.y96{bottom:240.118800pt;}
.y172{bottom:240.848267pt;}
.y150{bottom:241.345867pt;}
.y1c{bottom:242.285333pt;}
.y1ed{bottom:243.579867pt;}
.y62{bottom:243.648133pt;}
.ye0{bottom:243.704933pt;}
.y126{bottom:245.664000pt;}
.y18c{bottom:248.057733pt;}
.y1bb{bottom:251.745867pt;}
.y217{bottom:251.754133pt;}
.y111{bottom:254.104933pt;}
.y1b{bottom:255.085333pt;}
.y95{bottom:255.985467pt;}
.y171{bottom:256.848267pt;}
.ydf{bottom:259.571600pt;}
.y61{bottom:259.648133pt;}
.y125{bottom:261.664000pt;}
.y18b{bottom:264.057733pt;}
.y14f{bottom:265.038267pt;}
.y1ec{bottom:266.872133pt;}
.y1ba{bottom:267.612533pt;}
.y1a{bottom:267.885333pt;}
.y94{bottom:271.852133pt;}
.y170{bottom:272.848267pt;}
.y216{bottom:275.046533pt;}
.yde{bottom:275.438267pt;}
.y60{bottom:275.648267pt;}
.y110{bottom:277.664000pt;}
.y30{bottom:277.941333pt;}
.y19{bottom:280.685333pt;}
.y14e{bottom:281.171600pt;}
.y1eb{bottom:282.605600pt;}
.y1b9{bottom:283.479200pt;}
.y18a{bottom:287.616800pt;}
.y93{bottom:287.718800pt;}
.y2f{bottom:290.741333pt;}
.y215{bottom:290.779867pt;}
.ydd{bottom:291.304933pt;}
.y5f{bottom:291.648267pt;}
.y18{bottom:293.485333pt;}
.y10f{bottom:293.664000pt;}
.y16f{bottom:296.407333pt;}
.y14d{bottom:297.304933pt;}
.y1ea{bottom:298.338933pt;}
.y1b8{bottom:299.345867pt;}
.y2e{bottom:303.541333pt;}
.y189{bottom:303.616800pt;}
.y17{bottom:306.285333pt;}
.y214{bottom:306.513200pt;}
.ydc{bottom:307.171600pt;}
.y5e{bottom:307.648267pt;}
.y10e{bottom:309.664000pt;}
.y92{bottom:311.144533pt;}
.y16e{bottom:312.540667pt;}
.y14c{bottom:313.438267pt;}
.y1e9{bottom:314.072267pt;}
.y1b7{bottom:315.212533pt;}
.y2d{bottom:316.341333pt;}
.y16{bottom:319.085333pt;}
.y188{bottom:319.616800pt;}
.ydb{bottom:323.038267pt;}
.y5d{bottom:323.648267pt;}
.y10d{bottom:325.664000pt;}
.y91{bottom:327.011200pt;}
.y16d{bottom:328.674000pt;}
.y2c{bottom:329.141333pt;}
.y14b{bottom:329.571600pt;}
.y1e8{bottom:329.805600pt;}
.y1b6{bottom:331.079200pt;}
.yb1{bottom:331.207333pt;}
.y15{bottom:331.885333pt;}
.y259{bottom:337.017200pt;}
.yda{bottom:338.904933pt;}
.y5c{bottom:339.648267pt;}
.y10c{bottom:341.664000pt;}
.y2b{bottom:341.941333pt;}
.y90{bottom:342.877867pt;}
.y187{bottom:343.175733pt;}
.y14{bottom:344.685333pt;}
.y16c{bottom:344.807333pt;}
.y1e7{bottom:345.538800pt;}
.y14a{bottom:345.704933pt;}
.y1b5{bottom:346.945867pt;}
.yb0{bottom:347.207333pt;}
.y258{bottom:353.017200pt;}
.yd9{bottom:354.771600pt;}
.y13{bottom:357.485333pt;}
.y10b{bottom:357.664000pt;}
.y8f{bottom:358.744400pt;}
.y186{bottom:359.175733pt;}
.y16b{bottom:360.940667pt;}
.y23a{bottom:361.191467pt;}
.y213{bottom:361.272267pt;}
.y149{bottom:361.838267pt;}
.y5b{bottom:363.207333pt;}
.y1e6{bottom:368.831200pt;}
.y257{bottom:369.017200pt;}
.y1b4{bottom:370.371600pt;}
.yd8{bottom:370.638267pt;}
.y10a{bottom:373.664000pt;}
.y8e{bottom:374.611200pt;}
.y185{bottom:375.175733pt;}
.y212{bottom:377.005600pt;}
.y16a{bottom:377.074000pt;}
.y239{bottom:377.191467pt;}
.y148{bottom:377.971600pt;}
.y5a{bottom:379.207333pt;}
.y1b3{bottom:386.238267pt;}
.y21{bottom:386.429333pt;}
.yd7{bottom:386.504933pt;}
.y109{bottom:389.664000pt;}
.y8d{bottom:390.477867pt;}
.y1e5{bottom:392.123600pt;}
.y256{bottom:392.576400pt;}
.y211{bottom:392.738933pt;}
.y238{bottom:393.191467pt;}
.y169{bottom:393.207333pt;}
.y147{bottom:394.104933pt;}
.y59{bottom:395.207333pt;}
.y184{bottom:398.734800pt;}
.y1b2{bottom:402.104933pt;}
.yd6{bottom:402.371600pt;}
.y108{bottom:405.664000pt;}
.y8c{bottom:406.344533pt;}
.y1e4{bottom:407.856933pt;}
.y168{bottom:409.340667pt;}
.y146{bottom:410.238267pt;}
.y58{bottom:411.207333pt;}
.y183{bottom:414.734800pt;}
.y210{bottom:416.031200pt;}
.y255{bottom:416.135333pt;}
.y237{bottom:416.750667pt;}
.y1b1{bottom:417.971600pt;}
.yd5{bottom:418.238267pt;}
.y124{bottom:421.664000pt;}
.y8b{bottom:422.211200pt;}
.y1e3{bottom:423.590267pt;}
.y145{bottom:426.371600pt;}
.y12{bottom:426.424000pt;}
.y57{bottom:427.207333pt;}
.y107{bottom:429.223067pt;}
.y182{bottom:430.734800pt;}
.y20f{bottom:431.764667pt;}
.y254{bottom:432.135333pt;}
.y236{bottom:432.750667pt;}
.y167{bottom:433.032933pt;}
.y1b0{bottom:433.838267pt;}
.yd4{bottom:434.104933pt;}
.y123{bottom:437.664000pt;}
.y8a{bottom:438.077733pt;}
.y144{bottom:442.504933pt;}
.yaf{bottom:443.207333pt;}
.y106{bottom:445.223067pt;}
.y1e2{bottom:446.882667pt;}
.y20e{bottom:447.497867pt;}
.y166{bottom:449.166400pt;}
.y1af{bottom:449.704933pt;}
.yd3{bottom:449.971600pt;}
.y56{bottom:450.766400pt;}
.y122{bottom:453.664000pt;}
.y89{bottom:453.944533pt;}
.y253{bottom:455.694400pt;}
.y235{bottom:456.309600pt;}
.y181{bottom:458.073467pt;}
.y143{bottom:458.638267pt;}
.yae{bottom:459.207333pt;}
.y105{bottom:461.223067pt;}
.y20d{bottom:463.231333pt;}
.y165{bottom:465.299733pt;}
.y1ae{bottom:465.571600pt;}
.y55{bottom:466.766400pt;}
.y121{bottom:469.664000pt;}
.y88{bottom:469.811200pt;}
.y1e1{bottom:470.175067pt;}
.y252{bottom:471.694400pt;}
.y234{bottom:472.309600pt;}
.yd2{bottom:473.397333pt;}
.y142{bottom:474.771600pt;}
.yad{bottom:475.207333pt;}
.y104{bottom:477.223067pt;}
.y164{bottom:481.433067pt;}
.y1ad{bottom:481.438267pt;}
.y54{bottom:482.766400pt;}
.y11{bottom:484.824000pt;}
.y120{bottom:485.664000pt;}
.y87{bottom:485.677867pt;}
.y1e0{bottom:485.908400pt;}
.y20c{bottom:486.523600pt;}
.y251{bottom:487.694400pt;}
.yd1{bottom:489.264000pt;}
.y141{bottom:490.904933pt;}
.yac{bottom:491.207333pt;}
.y103{bottom:493.223067pt;}
.y233{bottom:495.868667pt;}
.y180{bottom:496.750667pt;}
.y163{bottom:497.566267pt;}
.y10{bottom:497.624000pt;}
.y53{bottom:498.766400pt;}
.y20b{bottom:502.256933pt;}
.y1ac{bottom:504.864000pt;}
.yd0{bottom:505.130667pt;}
.yab{bottom:507.207333pt;}
.y86{bottom:509.103467pt;}
.y1df{bottom:509.200800pt;}
.y102{bottom:509.223067pt;}
.yf{bottom:510.424000pt;}
.y250{bottom:511.253467pt;}
.y232{bottom:511.868667pt;}
.y2a{bottom:512.213333pt;}
.y17f{bottom:512.750667pt;}
.y162{bottom:513.699600pt;}
.y140{bottom:514.597333pt;}
.y52{bottom:514.766400pt;}
.y20a{bottom:517.990267pt;}
.y1ab{bottom:520.730667pt;}
.ycf{bottom:520.997333pt;}
.ye{bottom:523.224000pt;}
.y1de{bottom:524.934133pt;}
.y85{bottom:524.970267pt;}
.y29{bottom:525.013333pt;}
.y101{bottom:525.223067pt;}
.y24f{bottom:527.253467pt;}
.y231{bottom:527.868667pt;}
.y17e{bottom:528.750667pt;}
.y161{bottom:529.833067pt;}
.y13f{bottom:530.730667pt;}
.y51{bottom:530.766400pt;}
.y209{bottom:533.723600pt;}
.yd{bottom:536.024000pt;}
.y1aa{bottom:536.597333pt;}
.yce{bottom:536.864000pt;}
.y28{bottom:537.813333pt;}
.y84{bottom:540.836933pt;}
.y100{bottom:541.223067pt;}
.y24e{bottom:543.253467pt;}
.y230{bottom:543.868667pt;}
.y160{bottom:545.966400pt;}
.y50{bottom:546.766400pt;}
.y13e{bottom:546.864000pt;}
.y1dd{bottom:548.226533pt;}
.yc{bottom:548.824000pt;}
.y27{bottom:550.613333pt;}
.y1a9{bottom:552.464000pt;}
.ycd{bottom:552.730667pt;}
.y17d{bottom:556.089200pt;}
.y83{bottom:556.703467pt;}
.y208{bottom:557.016000pt;}
.yff{bottom:557.223067pt;}
.yb{bottom:561.624000pt;}
.y15f{bottom:562.099733pt;}
.y4f{bottom:562.766400pt;}
.y13d{bottom:562.997333pt;}
.y26{bottom:563.413333pt;}
.y1dc{bottom:563.959867pt;}
.y24d{bottom:566.812533pt;}
.y22f{bottom:567.427733pt;}
.y1a8{bottom:568.330667pt;}
.ycc{bottom:568.597333pt;}
.y82{bottom:572.570133pt;}
.y207{bottom:572.749333pt;}
.y11f{bottom:573.223067pt;}
.ya{bottom:574.424000pt;}
.y25{bottom:576.213333pt;}
.y15e{bottom:578.232933pt;}
.y4e{bottom:578.766400pt;}
.y13c{bottom:579.130667pt;}
.y1db{bottom:579.693200pt;}
.yfe{bottom:580.782133pt;}
.y24c{bottom:582.812533pt;}
.ycb{bottom:584.464000pt;}
.y9{bottom:587.224000pt;}
.y81{bottom:588.436800pt;}
.y206{bottom:588.482667pt;}
.y24{bottom:589.013333pt;}
.y11e{bottom:589.223067pt;}
.y22e{bottom:590.986800pt;}
.y1a7{bottom:591.756400pt;}
.y15d{bottom:594.366267pt;}
.y4d{bottom:594.766400pt;}
.y13b{bottom:595.264000pt;}
.y1da{bottom:595.426533pt;}
.yfd{bottom:596.782133pt;}
.y24b{bottom:598.812533pt;}
.y8{bottom:600.024000pt;}
.yca{bottom:600.330667pt;}
.y80{bottom:604.303600pt;}
.y11d{bottom:605.223067pt;}
.y22d{bottom:606.986800pt;}
.y1a6{bottom:607.623067pt;}
.y15c{bottom:610.499733pt;}
.y4c{bottom:610.766400pt;}
.y13a{bottom:611.397333pt;}
.y205{bottom:611.775067pt;}
.yfc{bottom:612.782000pt;}
.y7{bottom:612.824000pt;}
.y1d9{bottom:618.718933pt;}
.y7f{bottom:620.170267pt;}
.y24a{bottom:622.371600pt;}
.y22c{bottom:622.986800pt;}
.y1a5{bottom:623.489733pt;}
.yc9{bottom:623.756400pt;}
.y23{bottom:625.158667pt;}
.y6{bottom:625.624000pt;}
.y15b{bottom:626.633067pt;}
.yaa{bottom:626.766400pt;}
.y204{bottom:627.508400pt;}
.y139{bottom:627.530667pt;}
.yfb{bottom:628.782000pt;}
.y4b{bottom:634.325333pt;}
.y1d8{bottom:634.452267pt;}
.y7e{bottom:636.036800pt;}
.y22{bottom:637.958667pt;}
.y17c{bottom:638.104933pt;}
.y249{bottom:638.371600pt;}
.y5{bottom:638.424000pt;}
.y22b{bottom:638.986800pt;}
.y1a4{bottom:639.356400pt;}
.yc8{bottom:639.623067pt;}
.ya9{bottom:642.766400pt;}
.y138{bottom:643.664000pt;}
.yfa{bottom:644.782000pt;}
.y1d7{bottom:650.185600pt;}
.y4a{bottom:650.325333pt;}
.y203{bottom:650.800800pt;}
.y7d{bottom:651.903600pt;}
.y15a{bottom:654.104933pt;}
.y248{bottom:654.371600pt;}
.y22a{bottom:654.986800pt;}
.y1a3{bottom:655.223067pt;}
.yc7{bottom:655.489733pt;}
.ya8{bottom:658.766400pt;}
.yf9{bottom:660.782000pt;}
.y1d6{bottom:665.918933pt;}
.y49{bottom:666.325333pt;}
.y137{bottom:667.356400pt;}
.y7c{bottom:667.770133pt;}
.y20{bottom:668.692000pt;}
.y247{bottom:670.371600pt;}
.y1a2{bottom:671.089733pt;}
.yc6{bottom:671.356400pt;}
.y202{bottom:674.093200pt;}
.ya7{bottom:674.766400pt;}
.yf8{bottom:676.782000pt;}
.y229{bottom:678.545867pt;}
.y1d5{bottom:681.652267pt;}
.y48{bottom:682.325333pt;}
.y136{bottom:683.489733pt;}
.y7b{bottom:683.636933pt;}
.y1a1{bottom:686.956400pt;}
.yc5{bottom:687.223067pt;}
.y201{bottom:689.826533pt;}
.ya6{bottom:690.766400pt;}
.yf7{bottom:692.782000pt;}
.y246{bottom:693.930667pt;}
.y228{bottom:694.545867pt;}
.y47{bottom:698.325333pt;}
.y7a{bottom:699.503600pt;}
.y135{bottom:699.623067pt;}
.y1a0{bottom:702.823067pt;}
.yc4{bottom:703.089733pt;}
.y1d4{bottom:704.944667pt;}
.y200{bottom:705.559867pt;}
.yf6{bottom:708.782000pt;}
.y245{bottom:709.930667pt;}
.y227{bottom:710.545867pt;}
.y46{bottom:714.325333pt;}
.y134{bottom:715.756400pt;}
.y1d3{bottom:720.678000pt;}
.y1ff{bottom:721.293200pt;}
.y79{bottom:722.929333pt;}
.yf5{bottom:724.782000pt;}
.y19f{bottom:726.248800pt;}
.yc3{bottom:726.515467pt;}
.y45{bottom:730.325333pt;}
.y133{bottom:731.889733pt;}
.y4{bottom:732.254667pt;}
.y244{bottom:733.489733pt;}
.y226{bottom:734.104933pt;}
.y1d2{bottom:736.411333pt;}
.y78{bottom:738.795867pt;}
.yf4{bottom:740.782000pt;}
.y19e{bottom:742.115333pt;}
.yc2{bottom:742.382133pt;}
.y1fe{bottom:744.585600pt;}
.y44{bottom:746.325333pt;}
.y132{bottom:748.023067pt;}
.y243{bottom:749.489733pt;}
.y225{bottom:750.104933pt;}
.y1d1{bottom:752.144667pt;}
.y77{bottom:754.662533pt;}
.yf3{bottom:756.782000pt;}
.y19d{bottom:757.982133pt;}
.yc1{bottom:758.248800pt;}
.y1fd{bottom:760.318933pt;}
.y3{bottom:761.773333pt;}
.ya5{bottom:762.325333pt;}
.y131{bottom:764.156400pt;}
.y224{bottom:766.104933pt;}
.y76{bottom:770.529333pt;}
.yf2{bottom:772.782000pt;}
.y242{bottom:773.048800pt;}
.y43{bottom:773.664000pt;}
.y19c{bottom:773.848800pt;}
.yc0{bottom:774.115333pt;}
.y1d0{bottom:775.437067pt;}
.y1fc{bottom:776.052267pt;}
.ya4{bottom:778.325333pt;}
.y75{bottom:786.395867pt;}
.y130{bottom:787.848800pt;}
.yf1{bottom:788.782000pt;}
.y241{bottom:789.048800pt;}
.y223{bottom:789.664000pt;}
.y19b{bottom:789.715467pt;}
.ybf{bottom:789.982133pt;}
.y1cf{bottom:791.170400pt;}
.ya3{bottom:794.325333pt;}
.y11c{bottom:796.341200pt;}
.y2{bottom:796.890667pt;}
.y1fb{bottom:799.344667pt;}
.y74{bottom:802.262667pt;}
.y12f{bottom:803.982133pt;}
.yf0{bottom:804.782000pt;}
.y240{bottom:805.048800pt;}
.y19a{bottom:805.582133pt;}
.y222{bottom:805.664000pt;}
.ybe{bottom:805.848800pt;}
.y1ce{bottom:806.903733pt;}
.ya2{bottom:810.325333pt;}
.y42{bottom:812.341200pt;}
.y1fa{bottom:815.078000pt;}
.y73{bottom:818.129200pt;}
.y12e{bottom:820.115333pt;}
.yef{bottom:820.782000pt;}
.y23f{bottom:821.048800pt;}
.y199{bottom:821.448667pt;}
.ybd{bottom:821.715467pt;}
.y1cd{bottom:822.637067pt;}
.ya1{bottom:826.325333pt;}
.y41{bottom:828.341200pt;}
.y221{bottom:829.223067pt;}
.y1f9{bottom:830.811333pt;}
.y1f{bottom:832.289333pt;}
.y72{bottom:833.995867pt;}
.y12d{bottom:836.248800pt;}
.yee{bottom:836.782000pt;}
.y198{bottom:837.315467pt;}
.ybc{bottom:837.582133pt;}
.y1cc{bottom:838.370400pt;}
.y40{bottom:844.341200pt;}
.y23e{bottom:844.607867pt;}
.y1f8{bottom:846.544667pt;}
.y71{bottom:849.862667pt;}
.y12c{bottom:852.382133pt;}
.yed{bottom:852.782000pt;}
.y197{bottom:853.182133pt;}
.ybb{bottom:853.448667pt;}
.ya0{bottom:853.664000pt;}
.y1cb{bottom:854.103733pt;}
.y3f{bottom:860.341200pt;}
.y23d{bottom:860.607867pt;}
.y70{bottom:865.729200pt;}
.y12b{bottom:868.515467pt;}
.yec{bottom:868.782000pt;}
.y196{bottom:869.048800pt;}
.y1ca{bottom:869.837067pt;}
.y3e{bottom:876.341200pt;}
.y23c{bottom:876.607867pt;}
.yba{bottom:876.874533pt;}
.y6f{bottom:881.596000pt;}
.y37{bottom:883.326667pt;}
.y12a{bottom:884.648800pt;}
.yeb{bottom:884.782000pt;}
.y195{bottom:884.915467pt;}
.y1c9{bottom:885.570400pt;}
.y3d{bottom:892.341200pt;}
.y23b{bottom:892.607867pt;}
.yb9{bottom:892.741067pt;}
.y6e{bottom:897.462533pt;}
.yea{bottom:900.782000pt;}
.y1f7{bottom:901.303733pt;}
.y3c{bottom:908.341200pt;}
.yb8{bottom:908.607867pt;}
.y1c8{bottom:908.862800pt;}
.y36{bottom:910.241333pt;}
.y6d{bottom:913.329200pt;}
.y3b{bottom:924.341200pt;}
.yb7{bottom:924.474400pt;}
.y1c7{bottom:924.596133pt;}
.y1c6{bottom:940.329467pt;}
.y3a{bottom:940.341200pt;}
.y6c{bottom:940.534533pt;}
.y35{bottom:946.032000pt;}
.y39{bottom:985.773200pt;}
.hf{height:23.584000pt;}
.ha{height:28.916667pt;}
.h6{height:29.645833pt;}
.h13{height:32.859375pt;}
.h12{height:33.351562pt;}
.h2{height:33.450667pt;}
.h10{height:35.868000pt;}
.h7{height:37.437500pt;}
.hc{height:37.541667pt;}
.hb{height:37.895833pt;}
.hd{height:39.040000pt;}
.h5{height:42.117188pt;}
.h11{height:42.234375pt;}
.h9{height:42.632812pt;}
.h4{height:51.476562pt;}
.h8{height:52.106771pt;}
.h3{height:75.791667pt;}
.he{height:76.000000pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x14{left:56.692933pt;}
.xd{left:64.823200pt;}
.x13{left:68.031467pt;}
.x1b{left:78.253333pt;}
.x9{left:79.370667pt;}
.x6{left:80.494667pt;}
.x7{left:86.929333pt;}
.x1c{left:89.591867pt;}
.x1a{left:90.536800pt;}
.x23{left:102.820267pt;}
.x2{left:173.717333pt;}
.x12{left:182.204533pt;}
.x1d{left:188.767867pt;}
.x5{left:244.552000pt;}
.xe{left:251.350933pt;}
.x8{left:254.488000pt;}
.xc{left:271.041333pt;}
.xb{left:272.152000pt;}
.x15{left:292.642400pt;}
.xa{left:308.217333pt;}
.x4{left:331.506667pt;}
.x3{left:338.278667pt;}
.x10{left:396.850400pt;}
.xf{left:408.188933pt;}
.x16{left:418.410800pt;}
.x21{left:419.527467pt;}
.x18{left:429.749333pt;}
.x22{left:441.087867pt;}
.x19{left:467.185600pt;}
.x1e{left:500.371733pt;}
.x11{left:515.486000pt;}
.x1f{left:522.587600pt;}
.x17{left:523.778400pt;}
.x20{left:525.713600pt;}
.x1{left:713.957333pt;}
}




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