
    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_356fb2203bee2ddf54007d1c.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;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_2d477a14407c8e2e9b4b2304.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_a4910658da579a8e84977843.woff')format("woff");}.ff3{font-family:ff3;line-height:1.105957;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_65dfdfa7064dd4e3721cb877.woff')format("woff");}.ff4{font-family:ff4;line-height:1.105957;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_58f96e6ebd8658f1978d25de.woff')format("woff");}.ff5{font-family:ff5;line-height:1.105957;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_56e668cb1e39e4ab66ee475c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.017090;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_9d1463ca05b62b2b4ae979c8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.099609;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_19db61dca9ab095872dbf2b3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.947266;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);}
.v9{vertical-align:-25.974000px;}
.v8{vertical-align:-13.992000px;}
.v5{vertical-align:-11.982000px;}
.v3{vertical-align:-10.638000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.977000px;}
.v2{vertical-align:13.980000px;}
.va{vertical-align:15.580200px;}
.v4{vertical-align:17.025000px;}
.v1{vertical-align:21.975000px;}
.v7{vertical-align:25.947600px;}
.ls10{letter-spacing:-7.371000px;}
.ls6{letter-spacing:-6.384000px;}
.ls17{letter-spacing:-4.416000px;}
.ls1a{letter-spacing:-4.278000px;}
.ls18{letter-spacing:-3.864000px;}
.ls60{letter-spacing:-2.898000px;}
.ls13{letter-spacing:-2.829000px;}
.ls67{letter-spacing:-2.622000px;}
.ls84{letter-spacing:-2.550000px;}
.ls79{letter-spacing:-2.484000px;}
.ls11{letter-spacing:-2.208000px;}
.ls74{letter-spacing:-2.088000px;}
.ls5e{letter-spacing:-2.025000px;}
.ls2d{letter-spacing:-2.001000px;}
.ls57{letter-spacing:-1.944000px;}
.ls6a{letter-spacing:-1.932000px;}
.ls4{letter-spacing:-1.836000px;}
.ls2c{letter-spacing:-1.656000px;}
.ls7d{letter-spacing:-1.638000px;}
.ls19{letter-spacing:-1.587000px;}
.ls5f{letter-spacing:-1.539000px;}
.ls31{letter-spacing:-1.518000px;}
.ls7{letter-spacing:-1.428000px;}
.lse{letter-spacing:-1.425000px;}
.ls33{letter-spacing:-1.242000px;}
.ls2f{letter-spacing:-1.173000px;}
.ls30{letter-spacing:-1.104000px;}
.ls65{letter-spacing:-0.966000px;}
.ls81{letter-spacing:-0.945000px;}
.ls49{letter-spacing:-0.918000px;}
.ls9{letter-spacing:-0.900000px;}
.ls72{letter-spacing:-0.759000px;}
.ls80{letter-spacing:-0.750000px;}
.ls3e{letter-spacing:-0.702000px;}
.ls27{letter-spacing:-0.690000px;}
.ls4c{letter-spacing:-0.648000px;}
.ls7c{letter-spacing:-0.630000px;}
.ls2b{letter-spacing:-0.621000px;}
.ls4b{letter-spacing:-0.594000px;}
.ls43{letter-spacing:-0.486000px;}
.ls6b{letter-spacing:-0.483000px;}
.ls5c{letter-spacing:-0.432000px;}
.ls26{letter-spacing:-0.414000px;}
.ls58{letter-spacing:-0.378000px;}
.ls68{letter-spacing:-0.345000px;}
.ls29{letter-spacing:-0.276000px;}
.ls46{letter-spacing:-0.270000px;}
.ls4f{letter-spacing:-0.216000px;}
.ls2a{letter-spacing:-0.207000px;}
.ls3f{letter-spacing:-0.162000px;}
.ls28{letter-spacing:-0.138000px;}
.ls52{letter-spacing:-0.108000px;}
.ls78{letter-spacing:-0.081000px;}
.ls42{letter-spacing:-0.054000px;}
.ls2{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000300px;}
.ls45{letter-spacing:0.054000px;}
.ls48{letter-spacing:0.108000px;}
.ls76{letter-spacing:0.138000px;}
.ls4d{letter-spacing:0.162000px;}
.ls5b{letter-spacing:0.216000px;}
.ls54{letter-spacing:0.270000px;}
.ls21{letter-spacing:0.276000px;}
.ls3d{letter-spacing:0.432000px;}
.ls59{letter-spacing:0.486000px;}
.ls50{letter-spacing:0.540000px;}
.ls16{letter-spacing:0.621000px;}
.ls55{letter-spacing:0.648000px;}
.ls40{letter-spacing:0.702000px;}
.ls32{letter-spacing:0.828000px;}
.ls70{letter-spacing:0.897000px;}
.ls47{letter-spacing:0.918000px;}
.ls22{letter-spacing:0.966000px;}
.ls41{letter-spacing:0.972000px;}
.ls44{letter-spacing:1.026000px;}
.ls73{letter-spacing:1.104000px;}
.ls2e{letter-spacing:1.173000px;}
.ls1f{letter-spacing:1.242000px;}
.ls5{letter-spacing:1.322244px;}
.ls4a{letter-spacing:1.350000px;}
.ls51{letter-spacing:1.404000px;}
.ls6c{letter-spacing:1.449000px;}
.lsf{letter-spacing:1.512000px;}
.ls62{letter-spacing:1.518000px;}
.ls5a{letter-spacing:1.566000px;}
.ls1c{letter-spacing:1.587000px;}
.ls56{letter-spacing:1.782000px;}
.ls53{letter-spacing:1.836000px;}
.ls6e{letter-spacing:1.849200px;}
.ls4e{letter-spacing:1.890000px;}
.ls6f{letter-spacing:1.944000px;}
.ls7a{letter-spacing:2.142000px;}
.ls25{letter-spacing:2.208000px;}
.lsd{letter-spacing:2.400000px;}
.ls69{letter-spacing:2.898000px;}
.ls63{letter-spacing:3.036000px;}
.ls77{letter-spacing:3.243000px;}
.ls20{letter-spacing:3.450000px;}
.ls1e{letter-spacing:3.588000px;}
.ls71{letter-spacing:4.002000px;}
.ls1{letter-spacing:4.200000px;}
.ls1d{letter-spacing:4.623000px;}
.ls8{letter-spacing:5.760000px;}
.lsa{letter-spacing:5.880000px;}
.ls24{letter-spacing:5.934000px;}
.ls3{letter-spacing:6.000000px;}
.ls23{letter-spacing:6.072000px;}
.ls7f{letter-spacing:6.300000px;}
.ls7b{letter-spacing:8.316000px;}
.ls82{letter-spacing:8.820000px;}
.ls64{letter-spacing:39.512406px;}
.ls36{letter-spacing:82.026000px;}
.ls3a{letter-spacing:84.834000px;}
.ls3c{letter-spacing:85.320000px;}
.ls3b{letter-spacing:85.590000px;}
.ls39{letter-spacing:85.698000px;}
.ls37{letter-spacing:139.374000px;}
.ls35{letter-spacing:139.914000px;}
.ls38{letter-spacing:141.480000px;}
.ls66{letter-spacing:466.507200px;}
.ls1b{letter-spacing:467.032200px;}
.ls6d{letter-spacing:467.107200px;}
.ls75{letter-spacing:467.294400px;}
.ls7e{letter-spacing:468.262200px;}
.lsb{letter-spacing:468.952200px;}
.ls14{letter-spacing:469.139400px;}
.ls5d{letter-spacing:469.949400px;}
.ls83{letter-spacing:471.329400px;}
.ls15{letter-spacing:952.522800px;}
.ls61{letter-spacing:953.017800px;}
.ls0{letter-spacing:955.642800px;}
.ls12{letter-spacing:959.692800px;}
.ls34{letter-spacing:961.672800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-28.512000px;}
.ws8f{word-spacing:-26.523000px;}
.ws89{word-spacing:-26.019000px;}
.ws95{word-spacing:-22.860000px;}
.ws5{word-spacing:-22.740000px;}
.ws87{word-spacing:-22.680000px;}
.ws3{word-spacing:-22.620000px;}
.ws19{word-spacing:-21.075000px;}
.ws8e{word-spacing:-20.325000px;}
.ws7f{word-spacing:-20.232000px;}
.wsa{word-spacing:-19.650000px;}
.ws1e{word-spacing:-19.389000px;}
.ws69{word-spacing:-19.050000px;}
.ws94{word-spacing:-18.525000px;}
.ws6e{word-spacing:-18.009000px;}
.ws1f{word-spacing:-17.871000px;}
.ws7e{word-spacing:-17.784000px;}
.ws8a{word-spacing:-17.703000px;}
.ws14{word-spacing:-17.664000px;}
.ws2{word-spacing:-17.220000px;}
.wsf{word-spacing:-17.043000px;}
.ws1b{word-spacing:-16.905000px;}
.wsd{word-spacing:-16.860000px;}
.ws76{word-spacing:-16.698000px;}
.ws21{word-spacing:-16.629000px;}
.ws1c{word-spacing:-16.422000px;}
.ws1a{word-spacing:-16.353000px;}
.ws70{word-spacing:-16.077000px;}
.ws20{word-spacing:-15.801000px;}
.ws90{word-spacing:-15.561000px;}
.ws1d{word-spacing:-15.525000px;}
.wse{word-spacing:-15.390000px;}
.ws1{word-spacing:-15.083376px;}
.ws96{word-spacing:-14.820000px;}
.ws32{word-spacing:-14.688000px;}
.ws4{word-spacing:-13.920000px;}
.ws2c{word-spacing:-13.878000px;}
.wsb{word-spacing:-13.314000px;}
.ws6f{word-spacing:-12.778194px;}
.ws80{word-spacing:-11.795256px;}
.ws10{word-spacing:-11.303787px;}
.ws8b{word-spacing:-10.320849px;}
.wsc{word-spacing:-9.829380px;}
.ws71{word-spacing:-8.846442px;}
.ws92{word-spacing:-6.300000px;}
.ws7{word-spacing:-6.000000px;}
.ws9{word-spacing:-4.200000px;}
.ws83{word-spacing:-4.002000px;}
.ws6b{word-spacing:-3.519000px;}
.ws11{word-spacing:-2.400000px;}
.ws7d{word-spacing:-1.944000px;}
.ws60{word-spacing:-1.836000px;}
.ws7c{word-spacing:-1.449000px;}
.ws5f{word-spacing:-1.404000px;}
.ws5e{word-spacing:-1.350000px;}
.ws27{word-spacing:-1.173000px;}
.ws85{word-spacing:-1.104000px;}
.ws6d{word-spacing:-1.035000px;}
.ws65{word-spacing:-0.972000px;}
.ws5c{word-spacing:-0.918000px;}
.ws82{word-spacing:-0.897000px;}
.ws93{word-spacing:-0.756000px;}
.ws58{word-spacing:-0.702000px;}
.ws79{word-spacing:-0.690000px;}
.ws61{word-spacing:-0.648000px;}
.ws66{word-spacing:-0.486000px;}
.ws57{word-spacing:-0.432000px;}
.ws67{word-spacing:-0.162000px;}
.ws5b{word-spacing:-0.054000px;}
.ws6{word-spacing:0.000000px;}
.ws5a{word-spacing:0.054000px;}
.ws81{word-spacing:0.138000px;}
.ws64{word-spacing:0.162000px;}
.ws24{word-spacing:0.207000px;}
.ws5d{word-spacing:0.216000px;}
.ws59{word-spacing:0.270000px;}
.ws23{word-spacing:0.276000px;}
.ws78{word-spacing:0.345000px;}
.ws63{word-spacing:0.378000px;}
.ws22{word-spacing:0.414000px;}
.ws68{word-spacing:0.432000px;}
.ws7b{word-spacing:0.483000px;}
.ws2a{word-spacing:0.621000px;}
.ws8c{word-spacing:0.630000px;}
.ws2b{word-spacing:0.690000px;}
.ws84{word-spacing:0.759000px;}
.ws91{word-spacing:0.945000px;}
.ws29{word-spacing:1.104000px;}
.ws28{word-spacing:1.173000px;}
.ws8{word-spacing:1.428000px;}
.ws73{word-spacing:1.518000px;}
.ws6a{word-spacing:1.539000px;}
.ws17{word-spacing:1.587000px;}
.ws8d{word-spacing:1.638000px;}
.ws25{word-spacing:1.656000px;}
.ws7a{word-spacing:1.932000px;}
.ws62{word-spacing:1.944000px;}
.ws26{word-spacing:2.001000px;}
.ws86{word-spacing:2.088000px;}
.ws12{word-spacing:2.208000px;}
.ws88{word-spacing:2.484000px;}
.ws77{word-spacing:2.622000px;}
.ws13{word-spacing:2.829000px;}
.ws6c{word-spacing:2.898000px;}
.ws16{word-spacing:3.864000px;}
.ws75{word-spacing:4.229082px;}
.ws18{word-spacing:4.278000px;}
.ws15{word-spacing:4.416000px;}
.ws72{word-spacing:4.554000px;}
.ws74{word-spacing:4.623000px;}
.ws44{word-spacing:40.456800px;}
.ws47{word-spacing:51.084000px;}
.ws53{word-spacing:51.300000px;}
.ws35{word-spacing:51.570000px;}
.ws4d{word-spacing:54.216000px;}
.ws38{word-spacing:57.780000px;}
.ws4f{word-spacing:69.930000px;}
.ws3e{word-spacing:108.324000px;}
.ws34{word-spacing:110.970000px;}
.ws3c{word-spacing:114.102000px;}
.ws3a{word-spacing:115.884000px;}
.ws3d{word-spacing:196.711200px;}
.ws2f{word-spacing:253.476000px;}
.ws3b{word-spacing:298.863000px;}
.ws37{word-spacing:318.033000px;}
.ws2e{word-spacing:336.690000px;}
.ws56{word-spacing:359.661600px;}
.ws52{word-spacing:386.326800px;}
.ws31{word-spacing:400.415400px;}
.ws46{word-spacing:405.583200px;}
.ws42{word-spacing:406.414800px;}
.ws50{word-spacing:415.454400px;}
.ws41{word-spacing:416.145600px;}
.ws4c{word-spacing:432.064800px;}
.ws2d{word-spacing:449.328600px;}
.ws40{word-spacing:461.208600px;}
.ws4b{word-spacing:477.554400px;}
.ws48{word-spacing:495.795600px;}
.ws39{word-spacing:497.550600px;}
.ws4e{word-spacing:506.638800px;}
.ws4a{word-spacing:511.957800px;}
.ws51{word-spacing:513.437400px;}
.ws55{word-spacing:516.126600px;}
.ws45{word-spacing:516.547800px;}
.ws43{word-spacing:518.070600px;}
.ws54{word-spacing:535.577400px;}
.ws3f{word-spacing:539.460000px;}
.ws36{word-spacing:540.815400px;}
.ws49{word-spacing:541.317600px;}
.ws30{word-spacing:546.355800px;}
.ws33{word-spacing:548.170200px;}
._43{margin-left:-8.150400px;}
._9{margin-left:-7.095600px;}
._8{margin-left:-5.175600px;}
._a{margin-left:-3.229200px;}
._6{margin-left:-1.922400px;}
._2{width:1.392600px;}
._1{width:2.400000px;}
._7{width:3.532200px;}
._b{width:4.720800px;}
._3{width:5.998200px;}
._4{width:7.245600px;}
._5{width:8.600400px;}
._c{width:9.798000px;}
._11{width:10.831500px;}
._10{width:11.852700px;}
._f{width:12.959400px;}
._3f{width:14.835000px;}
._44{width:16.225800px;}
._40{width:18.570000px;}
._42{width:22.333500px;}
._41{width:25.515000px;}
._12{width:43.445160px;}
._22{width:70.016400px;}
._1d{width:82.026000px;}
._13{width:84.502800px;}
._d{width:85.554000px;}
._14{width:136.881600px;}
._15{width:140.184000px;}
._2f{width:147.291000px;}
._37{width:151.839600px;}
._2c{width:187.940400px;}
._18{width:213.236400px;}
._3a{width:239.113800px;}
._2b{width:240.492000px;}
._2e{width:247.414200px;}
._35{width:249.238800px;}
._25{width:251.950200px;}
._e{width:260.610000px;}
._1f{width:293.609400px;}
._16{width:297.062400px;}
._21{width:317.692200px;}
._39{width:323.059200px;}
._24{width:336.322800px;}
._1b{width:341.949600px;}
._36{width:358.939800px;}
._23{width:370.963200px;}
._26{width:377.050800px;}
._17{width:387.618000px;}
._34{width:389.329200px;}
._19{width:405.083400px;}
._30{width:417.333600px;}
._1a{width:427.887600px;}
._27{width:434.799600px;}
._2a{width:438.286800px;}
._28{width:441.028800px;}
._3e{width:443.870400px;}
._20{width:446.969400px;}
._1c{width:469.660800px;}
._32{width:474.034800px;}
._33{width:484.596000px;}
._31{width:486.173400px;}
._38{width:487.978200px;}
._3d{width:489.945000px;}
._3c{width:498.225600px;}
._3b{width:501.984000px;}
._2d{width:507.306000px;}
._1e{width:518.823600px;}
._29{width:537.354000px;}
._0{width:578.400000px;}
.fc0{color:rgb(0,0,0);}
.fsd{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs11{font-size:36.729000px;}
.fsc{font-size:40.227000px;}
.fs10{font-size:41.976000px;}
.fs7{font-size:42.000000px;}
.fsf{font-size:45.474000px;}
.fs8{font-size:48.000000px;}
.fs6{font-size:48.972000px;}
.fse{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fsb{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:75.000000px;}
.fsa{font-size:81.000000px;}
.fs5{font-size:84.000000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y6c{bottom:106.165350px;}
.y1e0{bottom:106.228500px;}
.y19e{bottom:106.276500px;}
.y223{bottom:106.286700px;}
.y43{bottom:106.288650px;}
.yb6{bottom:106.291650px;}
.y177{bottom:106.295850px;}
.y92{bottom:106.296300px;}
.y12c{bottom:106.302750px;}
.y1e{bottom:106.306500px;}
.y204{bottom:106.319100px;}
.y241{bottom:106.323600px;}
.y152{bottom:112.792800px;}
.y10b{bottom:124.268700px;}
.y1d{bottom:126.211500px;}
.y91{bottom:126.544800px;}
.y6b{bottom:126.589350px;}
.y1ba{bottom:126.633150px;}
.y12b{bottom:126.643950px;}
.yb5{bottom:126.656100px;}
.y176{bottom:126.716400px;}
.y42{bottom:126.781650px;}
.y260{bottom:126.830100px;}
.y203{bottom:127.019100px;}
.y19d{bottom:127.200750px;}
.y240{bottom:127.349850px;}
.ydc{bottom:128.017500px;}
.y1df{bottom:128.080500px;}
.y222{bottom:136.211700px;}
.y10a{bottom:141.751200px;}
.y1c{bottom:146.116500px;}
.yb4{bottom:146.974650px;}
.y12a{bottom:146.985150px;}
.y1b9{bottom:147.005400px;}
.y6a{bottom:147.013350px;}
.y175{bottom:147.133500px;}
.y25f{bottom:147.226350px;}
.y41{bottom:147.274650px;}
.y202{bottom:147.719100px;}
.y19c{bottom:148.125000px;}
.ydb{bottom:148.407000px;}
.y1de{bottom:149.932500px;}
.y151{bottom:153.315300px;}
.y23f{bottom:156.881100px;}
.y221{bottom:157.481400px;}
.y109{bottom:159.233700px;}
.y1b{bottom:166.021500px;}
.y129{bottom:167.329950px;}
.yb3{bottom:167.346900px;}
.y1b8{bottom:167.377650px;}
.y69{bottom:167.437350px;}
.y174{bottom:167.557500px;}
.y40{bottom:167.682900px;}
.y201{bottom:168.419100px;}
.yda{bottom:168.796500px;}
.y19b{bottom:169.049250px;}
.y90{bottom:170.554350px;}
.y1dd{bottom:171.784500px;}
.y150{bottom:173.569050px;}
.y25e{bottom:176.127600px;}
.y108{bottom:176.716200px;}
.y23e{bottom:177.907350px;}
.y1a{bottom:185.926500px;}
.y220{bottom:187.406400px;}
.y128{bottom:187.667700px;}
.yb2{bottom:187.719150px;}
.y1b7{bottom:187.749900px;}
.y68{bottom:187.861350px;}
.y173{bottom:187.978050px;}
.y3f{bottom:188.175900px;}
.y200{bottom:189.119100px;}
.yd9{bottom:189.186000px;}
.y19a{bottom:189.967950px;}
.y8f{bottom:190.892100px;}
.y1dc{bottom:193.636500px;}
.y14f{bottom:193.825050px;}
.y107{bottom:194.198700px;}
.y25d{bottom:205.028850px;}
.y23d{bottom:207.438600px;}
.y127{bottom:208.008900px;}
.y1b6{bottom:208.068300px;}
.yb1{bottom:208.091400px;}
.y67{bottom:208.285350px;}
.y172{bottom:208.398600px;}
.y3e{bottom:208.668900px;}
.y21f{bottom:208.826400px;}
.yd8{bottom:209.575500px;}
.y1ff{bottom:209.819100px;}
.y199{bottom:210.869400px;}
.y8e{bottom:211.229850px;}
.y27e{bottom:211.428900px;}
.y106{bottom:211.681200px;}
.y14e{bottom:214.076550px;}
.y1db{bottom:215.488500px;}
.y19{bottom:218.581500px;}
.y25c{bottom:225.425100px;}
.y126{bottom:228.350100px;}
.y1b5{bottom:228.440550px;}
.yb0{bottom:228.463650px;}
.y23c{bottom:228.464850px;}
.y66{bottom:228.709350px;}
.y171{bottom:228.819150px;}
.y3d{bottom:229.161900px;}
.y105{bottom:229.163700px;}
.yd7{bottom:229.961400px;}
.y1fe{bottom:230.519100px;}
.y8d{bottom:231.567600px;}
.y27d{bottom:231.678900px;}
.y198{bottom:231.793650px;}
.y14d{bottom:234.330300px;}
.y1da{bottom:237.340500px;}
.y21e{bottom:238.751400px;}
.y104{bottom:246.646200px;}
.y125{bottom:248.691450px;}
.y1b4{bottom:248.812800px;}
.yaf{bottom:248.835900px;}
.y65{bottom:249.133350px;}
.y170{bottom:249.239700px;}
.y3c{bottom:249.654900px;}
.yd6{bottom:250.347300px;}
.y1fd{bottom:251.219100px;}
.y8c{bottom:251.905350px;}
.y27c{bottom:251.928900px;}
.y197{bottom:252.717900px;}
.y25b{bottom:254.326350px;}
.y14c{bottom:254.601900px;}
.y23b{bottom:257.996100px;}
.y1d9{bottom:259.192500px;}
.y21d{bottom:260.171400px;}
.y103{bottom:264.128700px;}
.y18{bottom:268.246500px;}
.y124{bottom:269.032650px;}
.y1b3{bottom:269.185050px;}
.yae{bottom:269.208150px;}
.y64{bottom:269.557350px;}
.y16f{bottom:269.643150px;}
.y3b{bottom:270.147900px;}
.yd5{bottom:270.733350px;}
.y1fc{bottom:271.919100px;}
.y27b{bottom:272.178900px;}
.y8b{bottom:272.243100px;}
.y196{bottom:273.642150px;}
.y14b{bottom:274.853400px;}
.y23a{bottom:279.022350px;}
.y1d8{bottom:281.044500px;}
.y102{bottom:281.611200px;}
.y25a{bottom:283.227600px;}
.y123{bottom:289.373850px;}
.yad{bottom:289.526700px;}
.y1b2{bottom:289.557300px;}
.y17{bottom:289.653000px;}
.y63{bottom:289.981350px;}
.y16e{bottom:290.067150px;}
.y21c{bottom:290.096400px;}
.y3a{bottom:290.640900px;}
.yd4{bottom:291.119250px;}
.y8a{bottom:292.580850px;}
.y1fb{bottom:292.619100px;}
.y195{bottom:294.555000px;}
.y14a{bottom:295.104900px;}
.y101{bottom:299.093700px;}
.y1d7{bottom:302.896500px;}
.y259{bottom:303.623850px;}
.y27a{bottom:305.178900px;}
.y239{bottom:308.553600px;}
.y16{bottom:309.558000px;}
.y122{bottom:309.715050px;}
.yac{bottom:309.898950px;}
.y1b1{bottom:309.929550px;}
.y62{bottom:310.405350px;}
.y16d{bottom:310.491150px;}
.y39{bottom:311.133900px;}
.yd3{bottom:311.505300px;}
.y21b{bottom:311.516400px;}
.y89{bottom:312.918600px;}
.y1fa{bottom:313.319100px;}
.y149{bottom:315.356400px;}
.y194{bottom:315.479250px;}
.y100{bottom:317.089200px;}
.y1d6{bottom:324.748500px;}
.y15{bottom:329.463000px;}
.y238{bottom:329.579850px;}
.y121{bottom:330.056250px;}
.yab{bottom:330.271200px;}
.y1b0{bottom:330.301800px;}
.y61{bottom:330.829350px;}
.y16c{bottom:330.915150px;}
.y38{bottom:331.626900px;}
.yd2{bottom:331.884150px;}
.y258{bottom:332.525100px;}
.y21a{bottom:332.936400px;}
.y88{bottom:333.256350px;}
.y1f9{bottom:334.019100px;}
.yff{bottom:334.571700px;}
.y148{bottom:335.607900px;}
.y193{bottom:336.392250px;}
.y1d5{bottom:346.600500px;}
.y14{bottom:349.368000px;}
.y120{bottom:350.397600px;}
.yaa{bottom:350.643450px;}
.y1af{bottom:350.666400px;}
.y60{bottom:351.253350px;}
.y16b{bottom:351.339150px;}
.yfe{bottom:352.054200px;}
.y37{bottom:352.119900px;}
.yd1{bottom:352.273650px;}
.y257{bottom:352.921350px;}
.y87{bottom:353.594100px;}
.y219{bottom:354.356400px;}
.y1f8{bottom:354.719100px;}
.y147{bottom:355.859400px;}
.y192{bottom:357.316500px;}
.y237{bottom:359.111100px;}
.y279{bottom:366.183900px;}
.y1d4{bottom:368.452500px;}
.y13{bottom:369.273000px;}
.yfd{bottom:369.536700px;}
.y11f{bottom:370.738800px;}
.ya9{bottom:371.015700px;}
.y5f{bottom:371.677350px;}
.y16a{bottom:371.763150px;}
.y36{bottom:372.612900px;}
.yd0{bottom:372.663150px;}
.y86{bottom:373.931850px;}
.y1f7{bottom:375.419100px;}
.y146{bottom:376.110900px;}
.y191{bottom:378.229350px;}
.y236{bottom:380.137350px;}
.y256{bottom:381.822600px;}
.y218{bottom:384.281400px;}
.y278{bottom:385.683900px;}
.yfc{bottom:387.019200px;}
.y12{bottom:389.178000px;}
.y1d3{bottom:390.301800px;}
.y11e{bottom:391.080000px;}
.ya8{bottom:391.387950px;}
.y5e{bottom:392.101350px;}
.y169{bottom:392.180250px;}
.ycf{bottom:393.049050px;}
.y35{bottom:393.105900px;}
.y85{bottom:394.269600px;}
.y1f6{bottom:396.119100px;}
.y145{bottom:396.362400px;}
.y190{bottom:399.153600px;}
.y255{bottom:402.218850px;}
.yfb{bottom:404.501700px;}
.y277{bottom:405.183900px;}
.y217{bottom:405.701400px;}
.y11{bottom:409.083000px;}
.y235{bottom:409.668600px;}
.y1d2{bottom:410.800950px;}
.y11d{bottom:411.421200px;}
.ya7{bottom:411.760200px;}
.y5d{bottom:412.525350px;}
.y168{bottom:412.604250px;}
.yce{bottom:413.434950px;}
.y34{bottom:413.598900px;}
.y84{bottom:414.607350px;}
.y144{bottom:416.613900px;}
.y1f5{bottom:416.819100px;}
.y18f{bottom:420.072150px;}
.yfa{bottom:421.984200px;}
.y276{bottom:424.683900px;}
.y10{bottom:428.988000px;}
.y234{bottom:430.694850px;}
.y254{bottom:431.120100px;}
.y1d1{bottom:431.293950px;}
.y11c{bottom:431.762400px;}
.ya6{bottom:432.132450px;}
.y5c{bottom:432.949350px;}
.y167{bottom:433.021500px;}
.ycd{bottom:433.820850px;}
.y33{bottom:434.091900px;}
.y83{bottom:434.945100px;}
.y216{bottom:435.626400px;}
.y143{bottom:436.867650px;}
.y1f4{bottom:437.519100px;}
.yf9{bottom:439.466700px;}
.y18e{bottom:440.962350px;}
.y275{bottom:444.183900px;}
.yf{bottom:448.893000px;}
.y253{bottom:451.516350px;}
.y1d0{bottom:451.802550px;}
.y11b{bottom:452.103750px;}
.y5b{bottom:453.373350px;}
.y166{bottom:453.445500px;}
.ycc{bottom:454.206900px;}
.y32{bottom:454.584900px;}
.y82{bottom:455.282850px;}
.yf8{bottom:456.949200px;}
.y215{bottom:457.046400px;}
.y142{bottom:457.123650px;}
.y1f3{bottom:458.219100px;}
.y233{bottom:460.226100px;}
.y18d{bottom:461.886600px;}
.y274{bottom:463.683900px;}
.ye{bottom:468.798000px;}
.y1cf{bottom:472.295550px;}
.y11a{bottom:472.476300px;}
.ya5{bottom:473.756850px;}
.y5a{bottom:473.797350px;}
.y165{bottom:473.866050px;}
.yf7{bottom:474.431700px;}
.ycb{bottom:474.592800px;}
.y31{bottom:475.077900px;}
.y81{bottom:475.608600px;}
.y141{bottom:477.375150px;}
.y1f2{bottom:478.919100px;}
.y252{bottom:480.417600px;}
.y18c{bottom:482.810850px;}
.y273{bottom:483.183900px;}
.y214{bottom:486.971400px;}
.y232{bottom:489.757350px;}
.yf6{bottom:491.914200px;}
.y1ce{bottom:492.788550px;}
.y119{bottom:492.814050px;}
.y59{bottom:494.221350px;}
.y164{bottom:494.283150px;}
.yca{bottom:494.978850px;}
.y30{bottom:495.570900px;}
.y80{bottom:495.946350px;}
.y140{bottom:497.633250px;}
.y1f1{bottom:499.619100px;}
.y251{bottom:500.813850px;}
.yd{bottom:501.453000px;}
.y272{bottom:502.683900px;}
.y18b{bottom:503.735100px;}
.y213{bottom:508.391400px;}
.yf5{bottom:509.396700px;}
.y118{bottom:513.151800px;}
.y1cd{bottom:513.281550px;}
.y58{bottom:514.645350px;}
.y163{bottom:514.707150px;}
.yc9{bottom:515.364750px;}
.y2f{bottom:516.063900px;}
.y7f{bottom:516.284100px;}
.y13f{bottom:517.884750px;}
.y231{bottom:519.288600px;}
.y1f0{bottom:520.319100px;}
.y271{bottom:522.183900px;}
.y18a{bottom:524.659350px;}
.yf4{bottom:526.879200px;}
.y250{bottom:529.715100px;}
.y117{bottom:533.489550px;}
.y1cc{bottom:533.774550px;}
.y57{bottom:535.069350px;}
.y162{bottom:535.127700px;}
.yc8{bottom:535.750650px;}
.ya4{bottom:536.000850px;}
.y1ae{bottom:536.123700px;}
.y2e{bottom:536.556900px;}
.y7e{bottom:536.621850px;}
.y13e{bottom:538.136250px;}
.y212{bottom:538.316400px;}
.y230{bottom:540.314850px;}
.y1ef{bottom:541.019100px;}
.y270{bottom:541.683900px;}
.yf3{bottom:544.361700px;}
.y189{bottom:545.583600px;}
.y116{bottom:553.827300px;}
.y1cb{bottom:554.276850px;}
.y56{bottom:555.493350px;}
.y161{bottom:555.548250px;}
.yc7{bottom:556.136700px;}
.ya3{bottom:556.373100px;}
.y1ad{bottom:556.495950px;}
.y7d{bottom:556.959600px;}
.y2d{bottom:557.049900px;}
.y13d{bottom:558.399000px;}
.y24f{bottom:558.616350px;}
.yc{bottom:559.624500px;}
.y211{bottom:559.736400px;}
.y26f{bottom:561.183900px;}
.y1ee{bottom:561.719100px;}
.yf2{bottom:561.844200px;}
.y188{bottom:566.490750px;}
.y22f{bottom:569.846100px;}
.y115{bottom:574.165050px;}
.y1ca{bottom:574.769850px;}
.y55{bottom:575.917350px;}
.y160{bottom:575.965500px;}
.yc6{bottom:576.522600px;}
.ya2{bottom:576.745350px;}
.y1ac{bottom:576.845250px;}
.y7c{bottom:577.297350px;}
.y2c{bottom:577.542900px;}
.y13c{bottom:578.650500px;}
.y24e{bottom:579.012600px;}
.yf1{bottom:579.326700px;}
.y26e{bottom:580.683900px;}
.y210{bottom:581.156400px;}
.y1ed{bottom:582.419100px;}
.yb{bottom:587.029500px;}
.y187{bottom:587.415000px;}
.y22e{bottom:590.872350px;}
.y114{bottom:594.502800px;}
.y1c9{bottom:595.262850px;}
.y54{bottom:596.341350px;}
.y15f{bottom:596.389500px;}
.yf0{bottom:596.809200px;}
.yc5{bottom:596.908500px;}
.ya1{bottom:597.117600px;}
.y1ab{bottom:597.217500px;}
.y7b{bottom:597.635100px;}
.y2b{bottom:598.035900px;}
.y13b{bottom:598.902000px;}
.y26d{bottom:600.183900px;}
.y1ec{bottom:603.119100px;}
.y24d{bottom:607.913850px;}
.y186{bottom:608.339250px;}
.y20f{bottom:611.081400px;}
.yef{bottom:614.291700px;}
.ya{bottom:614.434500px;}
.y113{bottom:614.840550px;}
.y1c8{bottom:615.762000px;}
.y53{bottom:616.765350px;}
.y15e{bottom:616.810050px;}
.yc4{bottom:617.294550px;}
.ya0{bottom:617.489850px;}
.y1aa{bottom:617.589750px;}
.y7a{bottom:617.972850px;}
.y2a{bottom:618.528900px;}
.y13a{bottom:619.153500px;}
.y26c{bottom:619.683900px;}
.y22d{bottom:620.403600px;}
.y1eb{bottom:623.819100px;}
.y24c{bottom:628.310100px;}
.y185{bottom:629.252250px;}
.yee{bottom:631.774200px;}
.y20e{bottom:632.501400px;}
.y112{bottom:635.178300px;}
.y1c7{bottom:636.255000px;}
.y52{bottom:637.189350px;}
.y15d{bottom:637.230600px;}
.yc3{bottom:637.680450px;}
.y9f{bottom:637.862100px;}
.y1a9{bottom:637.931250px;}
.y79{bottom:638.310600px;}
.y29{bottom:639.021900px;}
.y26b{bottom:639.183900px;}
.y139{bottom:639.405000px;}
.y1ea{bottom:644.519100px;}
.y24b{bottom:648.706350px;}
.yed{bottom:649.256700px;}
.y22c{bottom:649.934850px;}
.y184{bottom:650.176500px;}
.y111{bottom:655.516050px;}
.y1c6{bottom:656.754300px;}
.y51{bottom:657.613350px;}
.y15c{bottom:657.637350px;}
.yc2{bottom:658.066350px;}
.y9e{bottom:658.234350px;}
.y1a8{bottom:658.303500px;}
.y78{bottom:658.648350px;}
.y26a{bottom:658.683900px;}
.y28{bottom:659.514900px;}
.y138{bottom:659.658750px;}
.y20d{bottom:662.426400px;}
.y9{bottom:663.061500px;}
.y1e9{bottom:665.219100px;}
.y22b{bottom:670.961100px;}
.y183{bottom:671.089350px;}
.yec{bottom:671.761200px;}
.y110{bottom:675.853800px;}
.y1c5{bottom:677.247300px;}
.y24a{bottom:677.607600px;}
.y50{bottom:678.037350px;}
.y15b{bottom:678.061350px;}
.y269{bottom:678.189750px;}
.yc1{bottom:678.452400px;}
.y9d{bottom:678.606600px;}
.y1a7{bottom:678.675750px;}
.y77{bottom:678.986100px;}
.y137{bottom:679.912500px;}
.y20c{bottom:683.846400px;}
.yeb{bottom:689.243700px;}
.y22a{bottom:691.987350px;}
.y182{bottom:692.013600px;}
.y8{bottom:694.975500px;}
.y268{bottom:697.689750px;}
.y1c4{bottom:697.746450px;}
.y249{bottom:698.003850px;}
.y4f{bottom:698.461350px;}
.y15a{bottom:698.485350px;}
.yc0{bottom:698.838300px;}
.y9c{bottom:698.978850px;}
.y1a6{bottom:699.048000px;}
.y76{bottom:699.323850px;}
.y136{bottom:700.166250px;}
.y27{bottom:701.264250px;}
.yea{bottom:706.726200px;}
.y1e8{bottom:707.179650px;}
.y181{bottom:712.909500px;}
.y20b{bottom:713.771400px;}
.y267{bottom:717.189750px;}
.y10f{bottom:717.448650px;}
.y1c3{bottom:718.239450px;}
.y248{bottom:718.400100px;}
.y4e{bottom:718.885350px;}
.y159{bottom:718.909350px;}
.ybf{bottom:719.224200px;}
.y9b{bottom:719.351100px;}
.y1a5{bottom:719.412600px;}
.y75{bottom:719.661600px;}
.y135{bottom:720.420000px;}
.y229{bottom:721.518600px;}
.ye9{bottom:724.208700px;}
.y7{bottom:726.889500px;}
.y180{bottom:733.833750px;}
.y20a{bottom:735.191400px;}
.y266{bottom:736.689750px;}
.y1c2{bottom:738.735600px;}
.y4d{bottom:739.309350px;}
.y158{bottom:739.333350px;}
.ybe{bottom:739.610250px;}
.y9a{bottom:739.723350px;}
.y1a4{bottom:739.777050px;}
.y74{bottom:739.999350px;}
.y134{bottom:740.673600px;}
.y10e{bottom:741.546150px;}
.ye8{bottom:741.691200px;}
.y247{bottom:747.301350px;}
.y228{bottom:751.049850px;}
.y17f{bottom:754.758000px;}
.y265{bottom:756.189750px;}
.y6{bottom:758.803500px;}
.ye7{bottom:759.173700px;}
.y1c1{bottom:759.231750px;}
.y4c{bottom:759.733350px;}
.y157{bottom:759.750600px;}
.ybd{bottom:759.996150px;}
.y99{bottom:760.095600px;}
.y1a3{bottom:760.110900px;}
.y73{bottom:760.337100px;}
.y133{bottom:760.927350px;}
.y209{bottom:765.116400px;}
.y1e7{bottom:769.900350px;}
.y17e{bottom:775.682250px;}
.y246{bottom:776.202600px;}
.ye6{bottom:776.656200px;}
.y1c0{bottom:779.727750px;}
.y4b{bottom:780.157350px;}
.y156{bottom:780.174600px;}
.ybc{bottom:780.382050px;}
.y98{bottom:780.467850px;}
.y1a2{bottom:780.483150px;}
.y72{bottom:780.674850px;}
.y132{bottom:781.181250px;}
.y26{bottom:784.260900px;}
.y264{bottom:788.439750px;}
.y5{bottom:790.717500px;}
.y1e6{bottom:791.950350px;}
.ye5{bottom:794.651700px;}
.y17d{bottom:796.606500px;}
.y1bf{bottom:800.227050px;}
.y4a{bottom:800.581350px;}
.y155{bottom:800.588250px;}
.ybb{bottom:800.768100px;}
.y97{bottom:800.840100px;}
.y1a1{bottom:800.855400px;}
.y71{bottom:801.012600px;}
.y131{bottom:801.435000px;}
.y227{bottom:802.583850px;}
.y245{bottom:805.103850px;}
.y25{bottom:805.497750px;}
.ye4{bottom:812.134200px;}
.y1e5{bottom:814.000350px;}
.y208{bottom:817.072350px;}
.y17c{bottom:817.519350px;}
.y1be{bottom:820.720050px;}
.y49{bottom:821.005350px;}
.y154{bottom:821.012250px;}
.yba{bottom:821.154000px;}
.y96{bottom:821.212350px;}
.y1a0{bottom:821.227650px;}
.y70{bottom:821.350350px;}
.y130{bottom:821.695350px;}
.y226{bottom:823.610100px;}
.y24{bottom:825.237750px;}
.ye3{bottom:829.616700px;}
.y10d{bottom:829.805700px;}
.y244{bottom:834.005100px;}
.y1e4{bottom:836.051850px;}
.y17b{bottom:838.443600px;}
.y207{bottom:838.479600px;}
.y1bd{bottom:841.216200px;}
.y48{bottom:841.429350px;}
.y153{bottom:841.436250px;}
.yb9{bottom:841.539900px;}
.y95{bottom:841.584600px;}
.y19f{bottom:841.599900px;}
.y6f{bottom:841.688100px;}
.y12f{bottom:841.946850px;}
.y23{bottom:844.977750px;}
.y263{bottom:846.195450px;}
.ye2{bottom:847.099200px;}
.y10c{bottom:847.288200px;}
.y4{bottom:852.384300px;}
.y225{bottom:853.141350px;}
.y243{bottom:854.401350px;}
.y1e3{bottom:858.101850px;}
.y17a{bottom:859.362150px;}
.y206{bottom:859.886850px;}
.y1bc{bottom:861.715350px;}
.y47{bottom:861.853350px;}
.yb8{bottom:861.925950px;}
.y94{bottom:861.956850px;}
.y6e{bottom:862.025850px;}
.y12e{bottom:862.198350px;}
.ye1{bottom:864.581700px;}
.y22{bottom:864.717750px;}
.y262{bottom:873.201450px;}
.yde{bottom:873.572700px;}
.y1e2{bottom:880.152600px;}
.y179{bottom:880.280700px;}
.y205{bottom:881.294100px;}
.y1bb{bottom:882.208350px;}
.y46{bottom:882.277350px;}
.y3{bottom:882.294300px;}
.yb7{bottom:882.311850px;}
.y93{bottom:882.329100px;}
.y6d{bottom:882.363600px;}
.y12d{bottom:882.449850px;}
.ye0{bottom:882.577200px;}
.y224{bottom:882.672600px;}
.y242{bottom:883.302600px;}
.y21{bottom:884.457750px;}
.ydd{bottom:891.568200px;}
.y261{bottom:900.207450px;}
.ydf{bottom:900.572700px;}
.y178{bottom:901.204950px;}
.y1e1{bottom:902.202600px;}
.y45{bottom:902.701350px;}
.y2{bottom:903.698850px;}
.y20{bottom:904.197750px;}
.y1f{bottom:948.189000px;}
.y44{bottom:966.189000px;}
.hf{height:33.870539px;}
.h18{height:38.416992px;}
.h22{height:38.612933px;}
.h9{height:40.757812px;}
.h10{height:45.852539px;}
.h17{height:46.643555px;}
.h4{height:50.947266px;}
.h8{height:51.884766px;}
.h3{height:53.494629px;}
.h3f{height:54.479004px;}
.h41{height:54.528804px;}
.h40{height:55.080204px;}
.hb{height:58.589355px;}
.h23{height:58.616955px;}
.h33{height:58.634955px;}
.he{height:58.637355px;}
.h35{height:58.650555px;}
.h3a{height:58.651155px;}
.h1b{height:59.632080px;}
.h19{height:59.653080px;}
.h1a{height:59.653680px;}
.h1c{height:59.657880px;}
.h1e{height:59.658480px;}
.h1d{height:59.659080px;}
.hd{height:59.667480px;}
.h15{height:59.681280px;}
.h14{height:59.681880px;}
.h31{height:59.690280px;}
.h26{height:59.694480px;}
.h27{height:59.695080px;}
.h13{height:59.697480px;}
.h37{height:59.698080px;}
.h12{height:59.698680px;}
.h24{height:59.708880px;}
.h16{height:59.710080px;}
.h32{height:59.712480px;}
.h2f{height:59.713080px;}
.h25{height:59.736480px;}
.h34{height:59.758680px;}
.h39{height:59.759280px;}
.h2e{height:59.780880px;}
.h38{height:59.790480px;}
.h30{height:59.803680px;}
.h36{height:59.821080px;}
.h11{height:59.882280px;}
.h3b{height:59.882880px;}
.hc{height:60.006480px;}
.h3d{height:61.136719px;}
.h3c{height:62.261719px;}
.h3e{height:62.544319px;}
.h2{height:63.684082px;}
.h1f{height:64.560533px;}
.h20{height:64.568933px;}
.h21{height:64.577933px;}
.h2b{height:64.586933px;}
.h29{height:64.600733px;}
.h2c{height:64.609733px;}
.h2a{height:64.614533px;}
.h2d{height:64.632533px;}
.h28{height:64.669133px;}
.ha{height:68.778809px;}
.h6{height:71.326172px;}
.h7{height:71.329772px;}
.h42{height:71.374172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:81.425550px;}
.x8{left:82.459650px;}
.x7{left:83.686650px;}
.x1{left:85.039350px;}
.x10{left:93.656100px;}
.x15{left:104.026800px;}
.x6{left:105.029250px;}
.x5{left:106.050750px;}
.x14{left:138.799050px;}
.xa{left:147.197100px;}
.x4{left:231.206550px;}
.x2{left:232.601400px;}
.x3{left:233.861700px;}
.x11{left:245.855100px;}
.x12{left:273.962100px;}
.xb{left:303.257100px;}
.xc{left:323.088600px;}
.x13{left:433.937100px;}
.xd{left:487.667100px;}
.xf{left:503.583600px;}
.xe{left:512.142600px;}
@media print{
.v9{vertical-align:-23.088000pt;}
.v8{vertical-align:-12.437333pt;}
.v5{vertical-align:-10.650667pt;}
.v3{vertical-align:-9.456000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:9.757333pt;}
.v2{vertical-align:12.426667pt;}
.va{vertical-align:13.849067pt;}
.v4{vertical-align:15.133333pt;}
.v1{vertical-align:19.533333pt;}
.v7{vertical-align:23.064533pt;}
.ls10{letter-spacing:-6.552000pt;}
.ls6{letter-spacing:-5.674667pt;}
.ls17{letter-spacing:-3.925333pt;}
.ls1a{letter-spacing:-3.802667pt;}
.ls18{letter-spacing:-3.434667pt;}
.ls60{letter-spacing:-2.576000pt;}
.ls13{letter-spacing:-2.514667pt;}
.ls67{letter-spacing:-2.330667pt;}
.ls84{letter-spacing:-2.266667pt;}
.ls79{letter-spacing:-2.208000pt;}
.ls11{letter-spacing:-1.962667pt;}
.ls74{letter-spacing:-1.856000pt;}
.ls5e{letter-spacing:-1.800000pt;}
.ls2d{letter-spacing:-1.778667pt;}
.ls57{letter-spacing:-1.728000pt;}
.ls6a{letter-spacing:-1.717333pt;}
.ls4{letter-spacing:-1.632000pt;}
.ls2c{letter-spacing:-1.472000pt;}
.ls7d{letter-spacing:-1.456000pt;}
.ls19{letter-spacing:-1.410667pt;}
.ls5f{letter-spacing:-1.368000pt;}
.ls31{letter-spacing:-1.349333pt;}
.ls7{letter-spacing:-1.269333pt;}
.lse{letter-spacing:-1.266667pt;}
.ls33{letter-spacing:-1.104000pt;}
.ls2f{letter-spacing:-1.042667pt;}
.ls30{letter-spacing:-0.981333pt;}
.ls65{letter-spacing:-0.858667pt;}
.ls81{letter-spacing:-0.840000pt;}
.ls49{letter-spacing:-0.816000pt;}
.ls9{letter-spacing:-0.800000pt;}
.ls72{letter-spacing:-0.674667pt;}
.ls80{letter-spacing:-0.666667pt;}
.ls3e{letter-spacing:-0.624000pt;}
.ls27{letter-spacing:-0.613333pt;}
.ls4c{letter-spacing:-0.576000pt;}
.ls7c{letter-spacing:-0.560000pt;}
.ls2b{letter-spacing:-0.552000pt;}
.ls4b{letter-spacing:-0.528000pt;}
.ls43{letter-spacing:-0.432000pt;}
.ls6b{letter-spacing:-0.429333pt;}
.ls5c{letter-spacing:-0.384000pt;}
.ls26{letter-spacing:-0.368000pt;}
.ls58{letter-spacing:-0.336000pt;}
.ls68{letter-spacing:-0.306667pt;}
.ls29{letter-spacing:-0.245333pt;}
.ls46{letter-spacing:-0.240000pt;}
.ls4f{letter-spacing:-0.192000pt;}
.ls2a{letter-spacing:-0.184000pt;}
.ls3f{letter-spacing:-0.144000pt;}
.ls28{letter-spacing:-0.122667pt;}
.ls52{letter-spacing:-0.096000pt;}
.ls78{letter-spacing:-0.072000pt;}
.ls42{letter-spacing:-0.048000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000267pt;}
.ls45{letter-spacing:0.048000pt;}
.ls48{letter-spacing:0.096000pt;}
.ls76{letter-spacing:0.122667pt;}
.ls4d{letter-spacing:0.144000pt;}
.ls5b{letter-spacing:0.192000pt;}
.ls54{letter-spacing:0.240000pt;}
.ls21{letter-spacing:0.245333pt;}
.ls3d{letter-spacing:0.384000pt;}
.ls59{letter-spacing:0.432000pt;}
.ls50{letter-spacing:0.480000pt;}
.ls16{letter-spacing:0.552000pt;}
.ls55{letter-spacing:0.576000pt;}
.ls40{letter-spacing:0.624000pt;}
.ls32{letter-spacing:0.736000pt;}
.ls70{letter-spacing:0.797333pt;}
.ls47{letter-spacing:0.816000pt;}
.ls22{letter-spacing:0.858667pt;}
.ls41{letter-spacing:0.864000pt;}
.ls44{letter-spacing:0.912000pt;}
.ls73{letter-spacing:0.981333pt;}
.ls2e{letter-spacing:1.042667pt;}
.ls1f{letter-spacing:1.104000pt;}
.ls5{letter-spacing:1.175328pt;}
.ls4a{letter-spacing:1.200000pt;}
.ls51{letter-spacing:1.248000pt;}
.ls6c{letter-spacing:1.288000pt;}
.lsf{letter-spacing:1.344000pt;}
.ls62{letter-spacing:1.349333pt;}
.ls5a{letter-spacing:1.392000pt;}
.ls1c{letter-spacing:1.410667pt;}
.ls56{letter-spacing:1.584000pt;}
.ls53{letter-spacing:1.632000pt;}
.ls6e{letter-spacing:1.643733pt;}
.ls4e{letter-spacing:1.680000pt;}
.ls6f{letter-spacing:1.728000pt;}
.ls7a{letter-spacing:1.904000pt;}
.ls25{letter-spacing:1.962667pt;}
.lsd{letter-spacing:2.133333pt;}
.ls69{letter-spacing:2.576000pt;}
.ls63{letter-spacing:2.698667pt;}
.ls77{letter-spacing:2.882667pt;}
.ls20{letter-spacing:3.066667pt;}
.ls1e{letter-spacing:3.189333pt;}
.ls71{letter-spacing:3.557333pt;}
.ls1{letter-spacing:3.733333pt;}
.ls1d{letter-spacing:4.109333pt;}
.ls8{letter-spacing:5.120000pt;}
.lsa{letter-spacing:5.226667pt;}
.ls24{letter-spacing:5.274667pt;}
.ls3{letter-spacing:5.333333pt;}
.ls23{letter-spacing:5.397333pt;}
.ls7f{letter-spacing:5.600000pt;}
.ls7b{letter-spacing:7.392000pt;}
.ls82{letter-spacing:7.840000pt;}
.ls64{letter-spacing:35.122139pt;}
.ls36{letter-spacing:72.912000pt;}
.ls3a{letter-spacing:75.408000pt;}
.ls3c{letter-spacing:75.840000pt;}
.ls3b{letter-spacing:76.080000pt;}
.ls39{letter-spacing:76.176000pt;}
.ls37{letter-spacing:123.888000pt;}
.ls35{letter-spacing:124.368000pt;}
.ls38{letter-spacing:125.760000pt;}
.ls66{letter-spacing:414.673067pt;}
.ls1b{letter-spacing:415.139733pt;}
.ls6d{letter-spacing:415.206400pt;}
.ls75{letter-spacing:415.372800pt;}
.ls7e{letter-spacing:416.233067pt;}
.lsb{letter-spacing:416.846400pt;}
.ls14{letter-spacing:417.012800pt;}
.ls5d{letter-spacing:417.732800pt;}
.ls83{letter-spacing:418.959467pt;}
.ls15{letter-spacing:846.686933pt;}
.ls61{letter-spacing:847.126933pt;}
.ls0{letter-spacing:849.460267pt;}
.ls12{letter-spacing:853.060267pt;}
.ls34{letter-spacing:854.820267pt;}
.ws0{word-spacing:-25.344000pt;}
.ws8f{word-spacing:-23.576000pt;}
.ws89{word-spacing:-23.128000pt;}
.ws95{word-spacing:-20.320000pt;}
.ws5{word-spacing:-20.213333pt;}
.ws87{word-spacing:-20.160000pt;}
.ws3{word-spacing:-20.106667pt;}
.ws19{word-spacing:-18.733333pt;}
.ws8e{word-spacing:-18.066667pt;}
.ws7f{word-spacing:-17.984000pt;}
.wsa{word-spacing:-17.466667pt;}
.ws1e{word-spacing:-17.234667pt;}
.ws69{word-spacing:-16.933333pt;}
.ws94{word-spacing:-16.466667pt;}
.ws6e{word-spacing:-16.008000pt;}
.ws1f{word-spacing:-15.885333pt;}
.ws7e{word-spacing:-15.808000pt;}
.ws8a{word-spacing:-15.736000pt;}
.ws14{word-spacing:-15.701333pt;}
.ws2{word-spacing:-15.306667pt;}
.wsf{word-spacing:-15.149333pt;}
.ws1b{word-spacing:-15.026667pt;}
.wsd{word-spacing:-14.986667pt;}
.ws76{word-spacing:-14.842667pt;}
.ws21{word-spacing:-14.781333pt;}
.ws1c{word-spacing:-14.597333pt;}
.ws1a{word-spacing:-14.536000pt;}
.ws70{word-spacing:-14.290667pt;}
.ws20{word-spacing:-14.045333pt;}
.ws90{word-spacing:-13.832000pt;}
.ws1d{word-spacing:-13.800000pt;}
.wse{word-spacing:-13.680000pt;}
.ws1{word-spacing:-13.407445pt;}
.ws96{word-spacing:-13.173333pt;}
.ws32{word-spacing:-13.056000pt;}
.ws4{word-spacing:-12.373333pt;}
.ws2c{word-spacing:-12.336000pt;}
.wsb{word-spacing:-11.834667pt;}
.ws6f{word-spacing:-11.358395pt;}
.ws80{word-spacing:-10.484672pt;}
.ws10{word-spacing:-10.047811pt;}
.ws8b{word-spacing:-9.174088pt;}
.wsc{word-spacing:-8.737227pt;}
.ws71{word-spacing:-7.863504pt;}
.ws92{word-spacing:-5.600000pt;}
.ws7{word-spacing:-5.333333pt;}
.ws9{word-spacing:-3.733333pt;}
.ws83{word-spacing:-3.557333pt;}
.ws6b{word-spacing:-3.128000pt;}
.ws11{word-spacing:-2.133333pt;}
.ws7d{word-spacing:-1.728000pt;}
.ws60{word-spacing:-1.632000pt;}
.ws7c{word-spacing:-1.288000pt;}
.ws5f{word-spacing:-1.248000pt;}
.ws5e{word-spacing:-1.200000pt;}
.ws27{word-spacing:-1.042667pt;}
.ws85{word-spacing:-0.981333pt;}
.ws6d{word-spacing:-0.920000pt;}
.ws65{word-spacing:-0.864000pt;}
.ws5c{word-spacing:-0.816000pt;}
.ws82{word-spacing:-0.797333pt;}
.ws93{word-spacing:-0.672000pt;}
.ws58{word-spacing:-0.624000pt;}
.ws79{word-spacing:-0.613333pt;}
.ws61{word-spacing:-0.576000pt;}
.ws66{word-spacing:-0.432000pt;}
.ws57{word-spacing:-0.384000pt;}
.ws67{word-spacing:-0.144000pt;}
.ws5b{word-spacing:-0.048000pt;}
.ws6{word-spacing:0.000000pt;}
.ws5a{word-spacing:0.048000pt;}
.ws81{word-spacing:0.122667pt;}
.ws64{word-spacing:0.144000pt;}
.ws24{word-spacing:0.184000pt;}
.ws5d{word-spacing:0.192000pt;}
.ws59{word-spacing:0.240000pt;}
.ws23{word-spacing:0.245333pt;}
.ws78{word-spacing:0.306667pt;}
.ws63{word-spacing:0.336000pt;}
.ws22{word-spacing:0.368000pt;}
.ws68{word-spacing:0.384000pt;}
.ws7b{word-spacing:0.429333pt;}
.ws2a{word-spacing:0.552000pt;}
.ws8c{word-spacing:0.560000pt;}
.ws2b{word-spacing:0.613333pt;}
.ws84{word-spacing:0.674667pt;}
.ws91{word-spacing:0.840000pt;}
.ws29{word-spacing:0.981333pt;}
.ws28{word-spacing:1.042667pt;}
.ws8{word-spacing:1.269333pt;}
.ws73{word-spacing:1.349333pt;}
.ws6a{word-spacing:1.368000pt;}
.ws17{word-spacing:1.410667pt;}
.ws8d{word-spacing:1.456000pt;}
.ws25{word-spacing:1.472000pt;}
.ws7a{word-spacing:1.717333pt;}
.ws62{word-spacing:1.728000pt;}
.ws26{word-spacing:1.778667pt;}
.ws86{word-spacing:1.856000pt;}
.ws12{word-spacing:1.962667pt;}
.ws88{word-spacing:2.208000pt;}
.ws77{word-spacing:2.330667pt;}
.ws13{word-spacing:2.514667pt;}
.ws6c{word-spacing:2.576000pt;}
.ws16{word-spacing:3.434667pt;}
.ws75{word-spacing:3.759184pt;}
.ws18{word-spacing:3.802667pt;}
.ws15{word-spacing:3.925333pt;}
.ws72{word-spacing:4.048000pt;}
.ws74{word-spacing:4.109333pt;}
.ws44{word-spacing:35.961600pt;}
.ws47{word-spacing:45.408000pt;}
.ws53{word-spacing:45.600000pt;}
.ws35{word-spacing:45.840000pt;}
.ws4d{word-spacing:48.192000pt;}
.ws38{word-spacing:51.360000pt;}
.ws4f{word-spacing:62.160000pt;}
.ws3e{word-spacing:96.288000pt;}
.ws34{word-spacing:98.640000pt;}
.ws3c{word-spacing:101.424000pt;}
.ws3a{word-spacing:103.008000pt;}
.ws3d{word-spacing:174.854400pt;}
.ws2f{word-spacing:225.312000pt;}
.ws3b{word-spacing:265.656000pt;}
.ws37{word-spacing:282.696000pt;}
.ws2e{word-spacing:299.280000pt;}
.ws56{word-spacing:319.699200pt;}
.ws52{word-spacing:343.401600pt;}
.ws31{word-spacing:355.924800pt;}
.ws46{word-spacing:360.518400pt;}
.ws42{word-spacing:361.257600pt;}
.ws50{word-spacing:369.292800pt;}
.ws41{word-spacing:369.907200pt;}
.ws4c{word-spacing:384.057600pt;}
.ws2d{word-spacing:399.403200pt;}
.ws40{word-spacing:409.963200pt;}
.ws4b{word-spacing:424.492800pt;}
.ws48{word-spacing:440.707200pt;}
.ws39{word-spacing:442.267200pt;}
.ws4e{word-spacing:450.345600pt;}
.ws4a{word-spacing:455.073600pt;}
.ws51{word-spacing:456.388800pt;}
.ws55{word-spacing:458.779200pt;}
.ws45{word-spacing:459.153600pt;}
.ws43{word-spacing:460.507200pt;}
.ws54{word-spacing:476.068800pt;}
.ws3f{word-spacing:479.520000pt;}
.ws36{word-spacing:480.724800pt;}
.ws49{word-spacing:481.171200pt;}
.ws30{word-spacing:485.649600pt;}
.ws33{word-spacing:487.262400pt;}
._43{margin-left:-7.244800pt;}
._9{margin-left:-6.307200pt;}
._8{margin-left:-4.600533pt;}
._a{margin-left:-2.870400pt;}
._6{margin-left:-1.708800pt;}
._2{width:1.237867pt;}
._1{width:2.133333pt;}
._7{width:3.139733pt;}
._b{width:4.196267pt;}
._3{width:5.331733pt;}
._4{width:6.440533pt;}
._5{width:7.644800pt;}
._c{width:8.709333pt;}
._11{width:9.628000pt;}
._10{width:10.535733pt;}
._f{width:11.519467pt;}
._3f{width:13.186667pt;}
._44{width:14.422933pt;}
._40{width:16.506667pt;}
._42{width:19.852000pt;}
._41{width:22.680000pt;}
._12{width:38.617920pt;}
._22{width:62.236800pt;}
._1d{width:72.912000pt;}
._13{width:75.113600pt;}
._d{width:76.048000pt;}
._14{width:121.672533pt;}
._15{width:124.608000pt;}
._2f{width:130.925333pt;}
._37{width:134.968533pt;}
._2c{width:167.058133pt;}
._18{width:189.543467pt;}
._3a{width:212.545600pt;}
._2b{width:213.770667pt;}
._2e{width:219.923733pt;}
._35{width:221.545600pt;}
._25{width:223.955733pt;}
._e{width:231.653333pt;}
._1f{width:260.986133pt;}
._16{width:264.055467pt;}
._21{width:282.393067pt;}
._39{width:287.163733pt;}
._24{width:298.953600pt;}
._1b{width:303.955200pt;}
._36{width:319.057600pt;}
._23{width:329.745067pt;}
._26{width:335.156267pt;}
._17{width:344.549333pt;}
._34{width:346.070400pt;}
._19{width:360.074133pt;}
._30{width:370.963200pt;}
._1a{width:380.344533pt;}
._27{width:386.488533pt;}
._2a{width:389.588267pt;}
._28{width:392.025600pt;}
._3e{width:394.551467pt;}
._20{width:397.306133pt;}
._1c{width:417.476267pt;}
._32{width:421.364267pt;}
._33{width:430.752000pt;}
._31{width:432.154133pt;}
._38{width:433.758400pt;}
._3d{width:435.506667pt;}
._3c{width:442.867200pt;}
._3b{width:446.208000pt;}
._2d{width:450.938667pt;}
._1e{width:461.176533pt;}
._29{width:477.648000pt;}
._0{width:514.133333pt;}
.fsd{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs11{font-size:32.648000pt;}
.fsc{font-size:35.757333pt;}
.fs10{font-size:37.312000pt;}
.fs7{font-size:37.333333pt;}
.fsf{font-size:40.421333pt;}
.fs8{font-size:42.666667pt;}
.fs6{font-size:43.530667pt;}
.fse{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fsb{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:66.666667pt;}
.fsa{font-size:72.000000pt;}
.fs5{font-size:74.666667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y6c{bottom:94.369200pt;}
.y1e0{bottom:94.425333pt;}
.y19e{bottom:94.468000pt;}
.y223{bottom:94.477067pt;}
.y43{bottom:94.478800pt;}
.yb6{bottom:94.481467pt;}
.y177{bottom:94.485200pt;}
.y92{bottom:94.485600pt;}
.y12c{bottom:94.491333pt;}
.y1e{bottom:94.494667pt;}
.y204{bottom:94.505867pt;}
.y241{bottom:94.509867pt;}
.y152{bottom:100.260267pt;}
.y10b{bottom:110.461067pt;}
.y1d{bottom:112.188000pt;}
.y91{bottom:112.484267pt;}
.y6b{bottom:112.523867pt;}
.y1ba{bottom:112.562800pt;}
.y12b{bottom:112.572400pt;}
.yb5{bottom:112.583200pt;}
.y176{bottom:112.636800pt;}
.y42{bottom:112.694800pt;}
.y260{bottom:112.737867pt;}
.y203{bottom:112.905867pt;}
.y19d{bottom:113.067333pt;}
.y240{bottom:113.199867pt;}
.ydc{bottom:113.793333pt;}
.y1df{bottom:113.849333pt;}
.y222{bottom:121.077067pt;}
.y10a{bottom:126.001067pt;}
.y1c{bottom:129.881333pt;}
.yb4{bottom:130.644133pt;}
.y12a{bottom:130.653467pt;}
.y1b9{bottom:130.671467pt;}
.y6a{bottom:130.678533pt;}
.y175{bottom:130.785333pt;}
.y25f{bottom:130.867867pt;}
.y41{bottom:130.910800pt;}
.y202{bottom:131.305867pt;}
.y19c{bottom:131.666667pt;}
.ydb{bottom:131.917333pt;}
.y1de{bottom:133.273333pt;}
.y151{bottom:136.280267pt;}
.y23f{bottom:139.449867pt;}
.y221{bottom:139.983467pt;}
.y109{bottom:141.541067pt;}
.y1b{bottom:147.574667pt;}
.y129{bottom:148.737733pt;}
.yb3{bottom:148.752800pt;}
.y1b8{bottom:148.780133pt;}
.y69{bottom:148.833200pt;}
.y174{bottom:148.940000pt;}
.y40{bottom:149.051467pt;}
.y201{bottom:149.705867pt;}
.yda{bottom:150.041333pt;}
.y19b{bottom:150.266000pt;}
.y90{bottom:151.603867pt;}
.y1dd{bottom:152.697333pt;}
.y150{bottom:154.283600pt;}
.y25e{bottom:156.557867pt;}
.y108{bottom:157.081067pt;}
.y23e{bottom:158.139867pt;}
.y1a{bottom:165.268000pt;}
.y220{bottom:166.583467pt;}
.y128{bottom:166.815733pt;}
.yb2{bottom:166.861467pt;}
.y1b7{bottom:166.888800pt;}
.y68{bottom:166.987867pt;}
.y173{bottom:167.091600pt;}
.y3f{bottom:167.267467pt;}
.y200{bottom:168.105867pt;}
.yd9{bottom:168.165333pt;}
.y19a{bottom:168.860400pt;}
.y8f{bottom:169.681867pt;}
.y1dc{bottom:172.121333pt;}
.y14f{bottom:172.288933pt;}
.y107{bottom:172.621067pt;}
.y25d{bottom:182.247867pt;}
.y23d{bottom:184.389867pt;}
.y127{bottom:184.896800pt;}
.y1b6{bottom:184.949600pt;}
.yb1{bottom:184.970133pt;}
.y67{bottom:185.142533pt;}
.y172{bottom:185.243200pt;}
.y3e{bottom:185.483467pt;}
.y21f{bottom:185.623467pt;}
.yd8{bottom:186.289333pt;}
.y1ff{bottom:186.505867pt;}
.y199{bottom:187.439467pt;}
.y8e{bottom:187.759867pt;}
.y27e{bottom:187.936800pt;}
.y106{bottom:188.161067pt;}
.y14e{bottom:190.290267pt;}
.y1db{bottom:191.545333pt;}
.y19{bottom:194.294667pt;}
.y25c{bottom:200.377867pt;}
.y126{bottom:202.977867pt;}
.y1b5{bottom:203.058267pt;}
.yb0{bottom:203.078800pt;}
.y23c{bottom:203.079867pt;}
.y66{bottom:203.297200pt;}
.y171{bottom:203.394800pt;}
.y3d{bottom:203.699467pt;}
.y105{bottom:203.701067pt;}
.yd7{bottom:204.410133pt;}
.y1fe{bottom:204.905867pt;}
.y8d{bottom:205.837867pt;}
.y27d{bottom:205.936800pt;}
.y198{bottom:206.038800pt;}
.y14d{bottom:208.293600pt;}
.y1da{bottom:210.969333pt;}
.y21e{bottom:212.223467pt;}
.y104{bottom:219.241067pt;}
.y125{bottom:221.059067pt;}
.y1b4{bottom:221.166933pt;}
.yaf{bottom:221.187467pt;}
.y65{bottom:221.451867pt;}
.y170{bottom:221.546400pt;}
.y3c{bottom:221.915467pt;}
.yd6{bottom:222.530933pt;}
.y1fd{bottom:223.305867pt;}
.y8c{bottom:223.915867pt;}
.y27c{bottom:223.936800pt;}
.y197{bottom:224.638133pt;}
.y25b{bottom:226.067867pt;}
.y14c{bottom:226.312800pt;}
.y23b{bottom:229.329867pt;}
.y1d9{bottom:230.393333pt;}
.y21d{bottom:231.263467pt;}
.y103{bottom:234.781067pt;}
.y18{bottom:238.441333pt;}
.y124{bottom:239.140133pt;}
.y1b3{bottom:239.275600pt;}
.yae{bottom:239.296133pt;}
.y64{bottom:239.606533pt;}
.y16f{bottom:239.682800pt;}
.y3b{bottom:240.131467pt;}
.yd5{bottom:240.651867pt;}
.y1fc{bottom:241.705867pt;}
.y27b{bottom:241.936800pt;}
.y8b{bottom:241.993867pt;}
.y196{bottom:243.237467pt;}
.y14b{bottom:244.314133pt;}
.y23a{bottom:248.019867pt;}
.y1d8{bottom:249.817333pt;}
.y102{bottom:250.321067pt;}
.y25a{bottom:251.757867pt;}
.y123{bottom:257.221200pt;}
.yad{bottom:257.357067pt;}
.y1b2{bottom:257.384267pt;}
.y17{bottom:257.469333pt;}
.y63{bottom:257.761200pt;}
.y16e{bottom:257.837467pt;}
.y21c{bottom:257.863467pt;}
.y3a{bottom:258.347467pt;}
.yd4{bottom:258.772667pt;}
.y8a{bottom:260.071867pt;}
.y1fb{bottom:260.105867pt;}
.y195{bottom:261.826667pt;}
.y14a{bottom:262.315467pt;}
.y101{bottom:265.861067pt;}
.y1d7{bottom:269.241333pt;}
.y259{bottom:269.887867pt;}
.y27a{bottom:271.270133pt;}
.y239{bottom:274.269867pt;}
.y16{bottom:275.162667pt;}
.y122{bottom:275.302267pt;}
.yac{bottom:275.465733pt;}
.y1b1{bottom:275.492933pt;}
.y62{bottom:275.915867pt;}
.y16d{bottom:275.992133pt;}
.y39{bottom:276.563467pt;}
.yd3{bottom:276.893600pt;}
.y21b{bottom:276.903467pt;}
.y89{bottom:278.149867pt;}
.y1fa{bottom:278.505867pt;}
.y149{bottom:280.316800pt;}
.y194{bottom:280.426000pt;}
.y100{bottom:281.857067pt;}
.y1d6{bottom:288.665333pt;}
.y15{bottom:292.856000pt;}
.y238{bottom:292.959867pt;}
.y121{bottom:293.383333pt;}
.yab{bottom:293.574400pt;}
.y1b0{bottom:293.601600pt;}
.y61{bottom:294.070533pt;}
.y16c{bottom:294.146800pt;}
.y38{bottom:294.779467pt;}
.yd2{bottom:295.008133pt;}
.y258{bottom:295.577867pt;}
.y21a{bottom:295.943467pt;}
.y88{bottom:296.227867pt;}
.y1f9{bottom:296.905867pt;}
.yff{bottom:297.397067pt;}
.y148{bottom:298.318133pt;}
.y193{bottom:299.015333pt;}
.y1d5{bottom:308.089333pt;}
.y14{bottom:310.549333pt;}
.y120{bottom:311.464533pt;}
.yaa{bottom:311.683067pt;}
.y1af{bottom:311.703467pt;}
.y60{bottom:312.225200pt;}
.y16b{bottom:312.301467pt;}
.yfe{bottom:312.937067pt;}
.y37{bottom:312.995467pt;}
.yd1{bottom:313.132133pt;}
.y257{bottom:313.707867pt;}
.y87{bottom:314.305867pt;}
.y219{bottom:314.983467pt;}
.y1f8{bottom:315.305867pt;}
.y147{bottom:316.319467pt;}
.y192{bottom:317.614667pt;}
.y237{bottom:319.209867pt;}
.y279{bottom:325.496800pt;}
.y1d4{bottom:327.513333pt;}
.y13{bottom:328.242667pt;}
.yfd{bottom:328.477067pt;}
.y11f{bottom:329.545600pt;}
.ya9{bottom:329.791733pt;}
.y5f{bottom:330.379867pt;}
.y16a{bottom:330.456133pt;}
.y36{bottom:331.211467pt;}
.yd0{bottom:331.256133pt;}
.y86{bottom:332.383867pt;}
.y1f7{bottom:333.705867pt;}
.y146{bottom:334.320800pt;}
.y191{bottom:336.203867pt;}
.y236{bottom:337.899867pt;}
.y256{bottom:339.397867pt;}
.y218{bottom:341.583467pt;}
.y278{bottom:342.830133pt;}
.yfc{bottom:344.017067pt;}
.y12{bottom:345.936000pt;}
.y1d3{bottom:346.934933pt;}
.y11e{bottom:347.626667pt;}
.ya8{bottom:347.900400pt;}
.y5e{bottom:348.534533pt;}
.y169{bottom:348.604667pt;}
.ycf{bottom:349.376933pt;}
.y35{bottom:349.427467pt;}
.y85{bottom:350.461867pt;}
.y1f6{bottom:352.105867pt;}
.y145{bottom:352.322133pt;}
.y190{bottom:354.803200pt;}
.y255{bottom:357.527867pt;}
.yfb{bottom:359.557067pt;}
.y277{bottom:360.163467pt;}
.y217{bottom:360.623467pt;}
.y11{bottom:363.629333pt;}
.y235{bottom:364.149867pt;}
.y1d2{bottom:365.156400pt;}
.y11d{bottom:365.707733pt;}
.ya7{bottom:366.009067pt;}
.y5d{bottom:366.689200pt;}
.y168{bottom:366.759333pt;}
.yce{bottom:367.497733pt;}
.y34{bottom:367.643467pt;}
.y84{bottom:368.539867pt;}
.y144{bottom:370.323467pt;}
.y1f5{bottom:370.505867pt;}
.y18f{bottom:373.397467pt;}
.yfa{bottom:375.097067pt;}
.y276{bottom:377.496800pt;}
.y10{bottom:381.322667pt;}
.y234{bottom:382.839867pt;}
.y254{bottom:383.217867pt;}
.y1d1{bottom:383.372400pt;}
.y11c{bottom:383.788800pt;}
.ya6{bottom:384.117733pt;}
.y5c{bottom:384.843867pt;}
.y167{bottom:384.908000pt;}
.ycd{bottom:385.618533pt;}
.y33{bottom:385.859467pt;}
.y83{bottom:386.617867pt;}
.y216{bottom:387.223467pt;}
.y143{bottom:388.326800pt;}
.y1f4{bottom:388.905867pt;}
.yf9{bottom:390.637067pt;}
.y18e{bottom:391.966533pt;}
.y275{bottom:394.830133pt;}
.yf{bottom:399.016000pt;}
.y253{bottom:401.347867pt;}
.y1d0{bottom:401.602267pt;}
.y11b{bottom:401.870000pt;}
.y5b{bottom:402.998533pt;}
.y166{bottom:403.062667pt;}
.ycc{bottom:403.739467pt;}
.y32{bottom:404.075467pt;}
.y82{bottom:404.695867pt;}
.yf8{bottom:406.177067pt;}
.y215{bottom:406.263467pt;}
.y142{bottom:406.332133pt;}
.y1f3{bottom:407.305867pt;}
.y233{bottom:409.089867pt;}
.y18d{bottom:410.565867pt;}
.y274{bottom:412.163467pt;}
.ye{bottom:416.709333pt;}
.y1cf{bottom:419.818267pt;}
.y11a{bottom:419.978933pt;}
.ya5{bottom:421.117200pt;}
.y5a{bottom:421.153200pt;}
.y165{bottom:421.214267pt;}
.yf7{bottom:421.717067pt;}
.ycb{bottom:421.860267pt;}
.y31{bottom:422.291467pt;}
.y81{bottom:422.763200pt;}
.y141{bottom:424.333467pt;}
.y1f2{bottom:425.705867pt;}
.y252{bottom:427.037867pt;}
.y18c{bottom:429.165200pt;}
.y273{bottom:429.496800pt;}
.y214{bottom:432.863467pt;}
.y232{bottom:435.339867pt;}
.yf6{bottom:437.257067pt;}
.y1ce{bottom:438.034267pt;}
.y119{bottom:438.056933pt;}
.y59{bottom:439.307867pt;}
.y164{bottom:439.362800pt;}
.yca{bottom:439.981200pt;}
.y30{bottom:440.507467pt;}
.y80{bottom:440.841200pt;}
.y140{bottom:442.340667pt;}
.y1f1{bottom:444.105867pt;}
.y251{bottom:445.167867pt;}
.yd{bottom:445.736000pt;}
.y272{bottom:446.830133pt;}
.y18b{bottom:447.764533pt;}
.y213{bottom:451.903467pt;}
.yf5{bottom:452.797067pt;}
.y118{bottom:456.134933pt;}
.y1cd{bottom:456.250267pt;}
.y58{bottom:457.462533pt;}
.y163{bottom:457.517467pt;}
.yc9{bottom:458.102000pt;}
.y2f{bottom:458.723467pt;}
.y7f{bottom:458.919200pt;}
.y13f{bottom:460.342000pt;}
.y231{bottom:461.589867pt;}
.y1f0{bottom:462.505867pt;}
.y271{bottom:464.163467pt;}
.y18a{bottom:466.363867pt;}
.yf4{bottom:468.337067pt;}
.y250{bottom:470.857867pt;}
.y117{bottom:474.212933pt;}
.y1cc{bottom:474.466267pt;}
.y57{bottom:475.617200pt;}
.y162{bottom:475.669067pt;}
.yc8{bottom:476.222800pt;}
.ya4{bottom:476.445200pt;}
.y1ae{bottom:476.554400pt;}
.y2e{bottom:476.939467pt;}
.y7e{bottom:476.997200pt;}
.y13e{bottom:478.343333pt;}
.y212{bottom:478.503467pt;}
.y230{bottom:480.279867pt;}
.y1ef{bottom:480.905867pt;}
.y270{bottom:481.496800pt;}
.yf3{bottom:483.877067pt;}
.y189{bottom:484.963200pt;}
.y116{bottom:492.290933pt;}
.y1cb{bottom:492.690533pt;}
.y56{bottom:493.771867pt;}
.y161{bottom:493.820667pt;}
.yc7{bottom:494.343733pt;}
.ya3{bottom:494.553867pt;}
.y1ad{bottom:494.663067pt;}
.y7d{bottom:495.075200pt;}
.y2d{bottom:495.155467pt;}
.y13d{bottom:496.354667pt;}
.y24f{bottom:496.547867pt;}
.yc{bottom:497.444000pt;}
.y211{bottom:497.543467pt;}
.y26f{bottom:498.830133pt;}
.y1ee{bottom:499.305867pt;}
.yf2{bottom:499.417067pt;}
.y188{bottom:503.547333pt;}
.y22f{bottom:506.529867pt;}
.y115{bottom:510.368933pt;}
.y1ca{bottom:510.906533pt;}
.y55{bottom:511.926533pt;}
.y160{bottom:511.969333pt;}
.yc6{bottom:512.464533pt;}
.ya2{bottom:512.662533pt;}
.y1ac{bottom:512.751333pt;}
.y7c{bottom:513.153200pt;}
.y2c{bottom:513.371467pt;}
.y13c{bottom:514.356000pt;}
.y24e{bottom:514.677867pt;}
.yf1{bottom:514.957067pt;}
.y26e{bottom:516.163467pt;}
.y210{bottom:516.583467pt;}
.y1ed{bottom:517.705867pt;}
.yb{bottom:521.804000pt;}
.y187{bottom:522.146667pt;}
.y22e{bottom:525.219867pt;}
.y114{bottom:528.446933pt;}
.y1c9{bottom:529.122533pt;}
.y54{bottom:530.081200pt;}
.y15f{bottom:530.124000pt;}
.yf0{bottom:530.497067pt;}
.yc5{bottom:530.585333pt;}
.ya1{bottom:530.771200pt;}
.y1ab{bottom:530.860000pt;}
.y7b{bottom:531.231200pt;}
.y2b{bottom:531.587467pt;}
.y13b{bottom:532.357333pt;}
.y26d{bottom:533.496800pt;}
.y1ec{bottom:536.105867pt;}
.y24d{bottom:540.367867pt;}
.y186{bottom:540.746000pt;}
.y20f{bottom:543.183467pt;}
.yef{bottom:546.037067pt;}
.ya{bottom:546.164000pt;}
.y113{bottom:546.524933pt;}
.y1c8{bottom:547.344000pt;}
.y53{bottom:548.235867pt;}
.y15e{bottom:548.275600pt;}
.yc4{bottom:548.706267pt;}
.ya0{bottom:548.879867pt;}
.y1aa{bottom:548.968667pt;}
.y7a{bottom:549.309200pt;}
.y2a{bottom:549.803467pt;}
.y13a{bottom:550.358667pt;}
.y26c{bottom:550.830133pt;}
.y22d{bottom:551.469867pt;}
.y1eb{bottom:554.505867pt;}
.y24c{bottom:558.497867pt;}
.y185{bottom:559.335333pt;}
.yee{bottom:561.577067pt;}
.y20e{bottom:562.223467pt;}
.y112{bottom:564.602933pt;}
.y1c7{bottom:565.560000pt;}
.y52{bottom:566.390533pt;}
.y15d{bottom:566.427200pt;}
.yc3{bottom:566.827067pt;}
.y9f{bottom:566.988533pt;}
.y1a9{bottom:567.050000pt;}
.y79{bottom:567.387200pt;}
.y29{bottom:568.019467pt;}
.y26b{bottom:568.163467pt;}
.y139{bottom:568.360000pt;}
.y1ea{bottom:572.905867pt;}
.y24b{bottom:576.627867pt;}
.yed{bottom:577.117067pt;}
.y22c{bottom:577.719867pt;}
.y184{bottom:577.934667pt;}
.y111{bottom:582.680933pt;}
.y1c6{bottom:583.781600pt;}
.y51{bottom:584.545200pt;}
.y15c{bottom:584.566533pt;}
.yc2{bottom:584.947867pt;}
.y9e{bottom:585.097200pt;}
.y1a8{bottom:585.158667pt;}
.y78{bottom:585.465200pt;}
.y26a{bottom:585.496800pt;}
.y28{bottom:586.235467pt;}
.y138{bottom:586.363333pt;}
.y20d{bottom:588.823467pt;}
.y9{bottom:589.388000pt;}
.y1e9{bottom:591.305867pt;}
.y22b{bottom:596.409867pt;}
.y183{bottom:596.523867pt;}
.yec{bottom:597.121067pt;}
.y110{bottom:600.758933pt;}
.y1c5{bottom:601.997600pt;}
.y24a{bottom:602.317867pt;}
.y50{bottom:602.699867pt;}
.y15b{bottom:602.721200pt;}
.y269{bottom:602.835333pt;}
.yc1{bottom:603.068800pt;}
.y9d{bottom:603.205867pt;}
.y1a7{bottom:603.267333pt;}
.y77{bottom:603.543200pt;}
.y137{bottom:604.366667pt;}
.y20c{bottom:607.863467pt;}
.yeb{bottom:612.661067pt;}
.y22a{bottom:615.099867pt;}
.y182{bottom:615.123200pt;}
.y8{bottom:617.756000pt;}
.y268{bottom:620.168667pt;}
.y1c4{bottom:620.219067pt;}
.y249{bottom:620.447867pt;}
.y4f{bottom:620.854533pt;}
.y15a{bottom:620.875867pt;}
.yc0{bottom:621.189600pt;}
.y9c{bottom:621.314533pt;}
.y1a6{bottom:621.376000pt;}
.y76{bottom:621.621200pt;}
.y136{bottom:622.370000pt;}
.y27{bottom:623.346000pt;}
.yea{bottom:628.201067pt;}
.y1e8{bottom:628.604133pt;}
.y181{bottom:633.697333pt;}
.y20b{bottom:634.463467pt;}
.y267{bottom:637.502000pt;}
.y10f{bottom:637.732133pt;}
.y1c3{bottom:638.435067pt;}
.y248{bottom:638.577867pt;}
.y4e{bottom:639.009200pt;}
.y159{bottom:639.030533pt;}
.ybf{bottom:639.310400pt;}
.y9b{bottom:639.423200pt;}
.y1a5{bottom:639.477867pt;}
.y75{bottom:639.699200pt;}
.y135{bottom:640.373333pt;}
.y229{bottom:641.349867pt;}
.ye9{bottom:643.741067pt;}
.y7{bottom:646.124000pt;}
.y180{bottom:652.296667pt;}
.y20a{bottom:653.503467pt;}
.y266{bottom:654.835333pt;}
.y1c2{bottom:656.653867pt;}
.y4d{bottom:657.163867pt;}
.y158{bottom:657.185200pt;}
.ybe{bottom:657.431333pt;}
.y9a{bottom:657.531867pt;}
.y1a4{bottom:657.579600pt;}
.y74{bottom:657.777200pt;}
.y134{bottom:658.376533pt;}
.y10e{bottom:659.152133pt;}
.ye8{bottom:659.281067pt;}
.y247{bottom:664.267867pt;}
.y228{bottom:667.599867pt;}
.y17f{bottom:670.896000pt;}
.y265{bottom:672.168667pt;}
.y6{bottom:674.492000pt;}
.ye7{bottom:674.821067pt;}
.y1c1{bottom:674.872667pt;}
.y4c{bottom:675.318533pt;}
.y157{bottom:675.333867pt;}
.ybd{bottom:675.552133pt;}
.y99{bottom:675.640533pt;}
.y1a3{bottom:675.654133pt;}
.y73{bottom:675.855200pt;}
.y133{bottom:676.379867pt;}
.y209{bottom:680.103467pt;}
.y1e7{bottom:684.355867pt;}
.y17e{bottom:689.495333pt;}
.y246{bottom:689.957867pt;}
.ye6{bottom:690.361067pt;}
.y1c0{bottom:693.091333pt;}
.y4b{bottom:693.473200pt;}
.y156{bottom:693.488533pt;}
.ybc{bottom:693.672933pt;}
.y98{bottom:693.749200pt;}
.y1a2{bottom:693.762800pt;}
.y72{bottom:693.933200pt;}
.y132{bottom:694.383333pt;}
.y26{bottom:697.120800pt;}
.y264{bottom:700.835333pt;}
.y5{bottom:702.860000pt;}
.y1e6{bottom:703.955867pt;}
.ye5{bottom:706.357067pt;}
.y17d{bottom:708.094667pt;}
.y1bf{bottom:711.312933pt;}
.y4a{bottom:711.627867pt;}
.y155{bottom:711.634000pt;}
.ybb{bottom:711.793867pt;}
.y97{bottom:711.857867pt;}
.y1a1{bottom:711.871467pt;}
.y71{bottom:712.011200pt;}
.y131{bottom:712.386667pt;}
.y227{bottom:713.407867pt;}
.y245{bottom:715.647867pt;}
.y25{bottom:715.998000pt;}
.ye4{bottom:721.897067pt;}
.y1e5{bottom:723.555867pt;}
.y208{bottom:726.286533pt;}
.y17c{bottom:726.683867pt;}
.y1be{bottom:729.528933pt;}
.y49{bottom:729.782533pt;}
.y154{bottom:729.788667pt;}
.yba{bottom:729.914667pt;}
.y96{bottom:729.966533pt;}
.y1a0{bottom:729.980133pt;}
.y70{bottom:730.089200pt;}
.y130{bottom:730.395867pt;}
.y226{bottom:732.097867pt;}
.y24{bottom:733.544667pt;}
.ye3{bottom:737.437067pt;}
.y10d{bottom:737.605067pt;}
.y244{bottom:741.337867pt;}
.y1e4{bottom:743.157200pt;}
.y17b{bottom:745.283200pt;}
.y207{bottom:745.315200pt;}
.y1bd{bottom:747.747733pt;}
.y48{bottom:747.937200pt;}
.y153{bottom:747.943333pt;}
.yb9{bottom:748.035467pt;}
.y95{bottom:748.075200pt;}
.y19f{bottom:748.088800pt;}
.y6f{bottom:748.167200pt;}
.y12f{bottom:748.397200pt;}
.y23{bottom:751.091333pt;}
.y263{bottom:752.173733pt;}
.ye2{bottom:752.977067pt;}
.y10c{bottom:753.145067pt;}
.y4{bottom:757.674933pt;}
.y225{bottom:758.347867pt;}
.y243{bottom:759.467867pt;}
.y1e3{bottom:762.757200pt;}
.y17a{bottom:763.877467pt;}
.y206{bottom:764.343867pt;}
.y1bc{bottom:765.969200pt;}
.y47{bottom:766.091867pt;}
.yb8{bottom:766.156400pt;}
.y94{bottom:766.183867pt;}
.y6e{bottom:766.245200pt;}
.y12e{bottom:766.398533pt;}
.ye1{bottom:768.517067pt;}
.y22{bottom:768.638000pt;}
.y262{bottom:776.179067pt;}
.yde{bottom:776.509067pt;}
.y1e2{bottom:782.357867pt;}
.y179{bottom:782.471733pt;}
.y205{bottom:783.372533pt;}
.y1bb{bottom:784.185200pt;}
.y46{bottom:784.246533pt;}
.y3{bottom:784.261600pt;}
.yb7{bottom:784.277200pt;}
.y93{bottom:784.292533pt;}
.y6d{bottom:784.323200pt;}
.y12d{bottom:784.399867pt;}
.ye0{bottom:784.513067pt;}
.y224{bottom:784.597867pt;}
.y242{bottom:785.157867pt;}
.y21{bottom:786.184667pt;}
.ydd{bottom:792.505067pt;}
.y261{bottom:800.184400pt;}
.ydf{bottom:800.509067pt;}
.y178{bottom:801.071067pt;}
.y1e1{bottom:801.957867pt;}
.y45{bottom:802.401200pt;}
.y2{bottom:803.287867pt;}
.y20{bottom:803.731333pt;}
.y1f{bottom:842.834667pt;}
.y44{bottom:858.834667pt;}
.hf{height:30.107146pt;}
.h18{height:34.148438pt;}
.h22{height:34.322607pt;}
.h9{height:36.229167pt;}
.h10{height:40.757812pt;}
.h17{height:41.460938pt;}
.h4{height:45.286458pt;}
.h8{height:46.119792pt;}
.h3{height:47.550781pt;}
.h3f{height:48.425781pt;}
.h41{height:48.470048pt;}
.h40{height:48.960181pt;}
.hb{height:52.079427pt;}
.h23{height:52.103960pt;}
.h33{height:52.119960pt;}
.he{height:52.122094pt;}
.h35{height:52.133827pt;}
.h3a{height:52.134360pt;}
.h1b{height:53.006294pt;}
.h19{height:53.024960pt;}
.h1a{height:53.025494pt;}
.h1c{height:53.029227pt;}
.h1e{height:53.029760pt;}
.h1d{height:53.030294pt;}
.hd{height:53.037760pt;}
.h15{height:53.050027pt;}
.h14{height:53.050560pt;}
.h31{height:53.058027pt;}
.h26{height:53.061760pt;}
.h27{height:53.062294pt;}
.h13{height:53.064427pt;}
.h37{height:53.064960pt;}
.h12{height:53.065494pt;}
.h24{height:53.074560pt;}
.h16{height:53.075627pt;}
.h32{height:53.077760pt;}
.h2f{height:53.078294pt;}
.h25{height:53.099094pt;}
.h34{height:53.118827pt;}
.h39{height:53.119360pt;}
.h2e{height:53.138560pt;}
.h38{height:53.147094pt;}
.h30{height:53.158827pt;}
.h36{height:53.174294pt;}
.h11{height:53.228694pt;}
.h3b{height:53.229227pt;}
.hc{height:53.339094pt;}
.h3d{height:54.343750pt;}
.h3c{height:55.343750pt;}
.h3e{height:55.594950pt;}
.h2{height:56.608073pt;}
.h1f{height:57.387140pt;}
.h20{height:57.394607pt;}
.h21{height:57.402607pt;}
.h2b{height:57.410607pt;}
.h29{height:57.422873pt;}
.h2c{height:57.430873pt;}
.h2a{height:57.435140pt;}
.h2d{height:57.451140pt;}
.h28{height:57.483673pt;}
.ha{height:61.136719pt;}
.h6{height:63.401042pt;}
.h7{height:63.404242pt;}
.h42{height:63.443708pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:72.378267pt;}
.x8{left:73.297467pt;}
.x7{left:74.388133pt;}
.x1{left:75.590533pt;}
.x10{left:83.249867pt;}
.x15{left:92.468267pt;}
.x6{left:93.359333pt;}
.x5{left:94.267333pt;}
.x14{left:123.376933pt;}
.xa{left:130.841867pt;}
.x4{left:205.516933pt;}
.x2{left:206.756800pt;}
.x3{left:207.877067pt;}
.x11{left:218.537867pt;}
.x12{left:243.521867pt;}
.xb{left:269.561867pt;}
.xc{left:287.189867pt;}
.x13{left:385.721867pt;}
.xd{left:433.481867pt;}
.xf{left:447.629867pt;}
.xe{left:455.237867pt;}
}




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