
    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_72c03a02731caf5852135c52.woff')format("woff");}.ff1{font-family:ff1;line-height:1.020000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_ee98dc8482430f973b9d6deb.woff')format("woff");}.ff2{font-family:ff2;line-height:1.007000;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_8f11727fc7697c2da8bc0c80.woff')format("woff");}.ff3{font-family:ff3;line-height:1.007000;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_54754fb4690f94bb28b67b44.woff')format("woff");}.ff4{font-family:ff4;line-height:1.028000;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_38453e191614fb843136d727.woff')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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;}
.m2{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.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);}
.v2{vertical-align:-14.985000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.982000px;}
.ls23{letter-spacing:-12.690000px;}
.ls5c{letter-spacing:-11.280000px;}
.ls42{letter-spacing:-5.940000px;}
.ls4b{letter-spacing:-5.400000px;}
.ls56{letter-spacing:-4.158000px;}
.ls5e{letter-spacing:-3.456000px;}
.ls65{letter-spacing:-3.264000px;}
.ls59{letter-spacing:-3.132000px;}
.ls49{letter-spacing:-3.024000px;}
.ls3f{letter-spacing:-2.808000px;}
.ls1b{letter-spacing:-2.700000px;}
.ls77{letter-spacing:-2.544000px;}
.ls53{letter-spacing:-2.538000px;}
.ls14{letter-spacing:-2.484000px;}
.ls4f{letter-spacing:-2.430000px;}
.ls55{letter-spacing:-2.322000px;}
.ls19{letter-spacing:-2.268000px;}
.ls36{letter-spacing:-2.160000px;}
.ls78{letter-spacing:-2.016000px;}
.ls17{letter-spacing:-1.998000px;}
.ls2e{letter-spacing:-1.836000px;}
.ls38{letter-spacing:-1.728000px;}
.ls2f{letter-spacing:-1.620000px;}
.ls52{letter-spacing:-1.566000px;}
.ls2a{letter-spacing:-1.512000px;}
.ls2c{letter-spacing:-1.458000px;}
.ls33{letter-spacing:-1.404000px;}
.ls21{letter-spacing:-1.350000px;}
.ls1f{letter-spacing:-1.296000px;}
.lsc{letter-spacing:-1.260000px;}
.ls3a{letter-spacing:-1.248000px;}
.ls43{letter-spacing:-1.242000px;}
.ls73{letter-spacing:-1.200000px;}
.ls57{letter-spacing:-1.188000px;}
.ls62{letter-spacing:-1.152000px;}
.ls4c{letter-spacing:-1.134000px;}
.ls46{letter-spacing:-1.080000px;}
.ls45{letter-spacing:-1.026000px;}
.ls6d{letter-spacing:-1.008000px;}
.ls51{letter-spacing:-0.972000px;}
.ls40{letter-spacing:-0.864000px;}
.ls50{letter-spacing:-0.810000px;}
.ls20{letter-spacing:-0.756000px;}
.ls69{letter-spacing:-0.720000px;}
.ls58{letter-spacing:-0.702000px;}
.ls1c{letter-spacing:-0.648000px;}
.ls10{letter-spacing:-0.594000px;}
.ls66{letter-spacing:-0.576000px;}
.ls3c{letter-spacing:-0.540000px;}
.ls76{letter-spacing:-0.528000px;}
.ls11{letter-spacing:-0.486000px;}
.ls6f{letter-spacing:-0.480000px;}
.ls26{letter-spacing:-0.432000px;}
.ls64{letter-spacing:-0.384000px;}
.ls44{letter-spacing:-0.378000px;}
.ls6e{letter-spacing:-0.336000px;}
.ls37{letter-spacing:-0.324000px;}
.ls8{letter-spacing:-0.315000px;}
.ls60{letter-spacing:-0.288000px;}
.ls15{letter-spacing:-0.270000px;}
.ls5b{letter-spacing:-0.240000px;}
.ls24{letter-spacing:-0.216000px;}
.ls68{letter-spacing:-0.192000px;}
.ls29{letter-spacing:-0.162000px;}
.ls6c{letter-spacing:-0.144000px;}
.ls1d{letter-spacing:-0.108000px;}
.ls67{letter-spacing:-0.096000px;}
.ls22{letter-spacing:-0.054000px;}
.ls5{letter-spacing:0.000000px;}
.ls72{letter-spacing:0.096000px;}
.lse{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.135000px;}
.ls47{letter-spacing:0.144000px;}
.ls3e{letter-spacing:0.162000px;}
.ls1a{letter-spacing:0.216000px;}
.ls63{letter-spacing:0.240000px;}
.ls4d{letter-spacing:0.270000px;}
.ls32{letter-spacing:0.324000px;}
.ls3d{letter-spacing:0.336000px;}
.ls9{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.378000px;}
.ls61{letter-spacing:0.384000px;}
.ls3b{letter-spacing:0.432000px;}
.ls41{letter-spacing:0.462000px;}
.ls2d{letter-spacing:0.486000px;}
.ls16{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.585000px;}
.lsd{letter-spacing:0.594000px;}
.ls0{letter-spacing:0.600000px;}
.ls5d{letter-spacing:0.624000px;}
.ls1e{letter-spacing:0.648000px;}
.ls5f{letter-spacing:0.672000px;}
.lsb{letter-spacing:0.675000px;}
.ls27{letter-spacing:0.702000px;}
.ls48{letter-spacing:0.720000px;}
.ls3{letter-spacing:0.755700px;}
.ls18{letter-spacing:0.756000px;}
.lsf{letter-spacing:0.810000px;}
.ls70{letter-spacing:0.816000px;}
.ls74{letter-spacing:0.864000px;}
.ls6a{letter-spacing:0.912000px;}
.ls4a{letter-spacing:0.918000px;}
.ls39{letter-spacing:0.960000px;}
.ls12{letter-spacing:0.972000px;}
.ls4{letter-spacing:0.983100px;}
.ls71{letter-spacing:1.056000px;}
.ls54{letter-spacing:1.134000px;}
.ls35{letter-spacing:1.242000px;}
.lsa{letter-spacing:1.260000px;}
.ls28{letter-spacing:1.296000px;}
.ls2b{letter-spacing:1.404000px;}
.ls25{letter-spacing:1.512000px;}
.ls30{letter-spacing:1.566000px;}
.ls4e{letter-spacing:1.620000px;}
.ls5a{letter-spacing:1.728000px;}
.ls31{letter-spacing:1.836000px;}
.ls6b{letter-spacing:2.160000px;}
.ls13{letter-spacing:2.214000px;}
.ls75{letter-spacing:3.024000px;}
.ls2{letter-spacing:74.999400px;}
.ls1{letter-spacing:75.000000px;}
.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;}
}
.ws9{word-spacing:-14.904000px;}
.ws96{word-spacing:-14.418000px;}
.ws1f{word-spacing:-14.202000px;}
.ws30{word-spacing:-14.094000px;}
.ws37{word-spacing:-13.986000px;}
.ws8d{word-spacing:-13.824000px;}
.ws8{word-spacing:-13.662000px;}
.ws70{word-spacing:-13.608000px;}
.ws1a{word-spacing:-13.500000px;}
.ws36{word-spacing:-13.284000px;}
.ws50{word-spacing:-13.230000px;}
.ws33{word-spacing:-13.176000px;}
.ws47{word-spacing:-13.122000px;}
.ws7a{word-spacing:-13.014000px;}
.ws71{word-spacing:-12.960000px;}
.ws81{word-spacing:-12.906000px;}
.ws90{word-spacing:-12.852000px;}
.ws6{word-spacing:-12.840000px;}
.ws1b{word-spacing:-12.690000px;}
.ws95{word-spacing:-12.582000px;}
.ws35{word-spacing:-12.528000px;}
.ws1e{word-spacing:-12.474000px;}
.ws72{word-spacing:-12.420000px;}
.ws67{word-spacing:-12.366000px;}
.ws2f{word-spacing:-12.258000px;}
.ws1d{word-spacing:-12.204000px;}
.ws9b{word-spacing:-12.192000px;}
.ws7{word-spacing:-12.096000px;}
.ws19{word-spacing:-12.042000px;}
.ws1c{word-spacing:-11.934000px;}
.ws5{word-spacing:-11.835000px;}
.ws94{word-spacing:-11.826000px;}
.ws8f{word-spacing:-11.502000px;}
.ws99{word-spacing:-11.424000px;}
.ws20{word-spacing:-11.394000px;}
.ws31{word-spacing:-11.340000px;}
.ws97{word-spacing:-11.280000px;}
.ws32{word-spacing:-11.232000px;}
.ws44{word-spacing:-11.178000px;}
.ws1{word-spacing:-11.160000px;}
.ws9c{word-spacing:-11.136000px;}
.ws34{word-spacing:-11.070000px;}
.ws4{word-spacing:-10.935000px;}
.ws9a{word-spacing:-10.896000px;}
.ws2{word-spacing:-10.710000px;}
.ws52{word-spacing:-10.626000px;}
.ws98{word-spacing:-10.560000px;}
.ws69{word-spacing:-10.422000px;}
.ws8e{word-spacing:-10.368000px;}
.ws9d{word-spacing:-10.320000px;}
.ws3{word-spacing:-10.260000px;}
.wsa{word-spacing:-10.206000px;}
.ws8c{word-spacing:-10.152000px;}
.ws18{word-spacing:-9.990000px;}
.ws0{word-spacing:-9.870000px;}
.ws4b{word-spacing:-9.786000px;}
.ws6f{word-spacing:-9.666000px;}
.wsb2{word-spacing:-8.256000px;}
.ws91{word-spacing:-3.839400px;}
.wsbb{word-spacing:-3.024000px;}
.wsae{word-spacing:-2.160000px;}
.ws3b{word-spacing:-1.836000px;}
.ws76{word-spacing:-1.620000px;}
.ws3a{word-spacing:-1.566000px;}
.ws2c{word-spacing:-1.296000px;}
.ws42{word-spacing:-1.242000px;}
.wsb6{word-spacing:-1.056000px;}
.ws25{word-spacing:-0.972000px;}
.ws4e{word-spacing:-0.960000px;}
.wsad{word-spacing:-0.912000px;}
.wsba{word-spacing:-0.864000px;}
.wsb3{word-spacing:-0.816000px;}
.ws10{word-spacing:-0.810000px;}
.ws15{word-spacing:-0.756000px;}
.ws6e{word-spacing:-0.720000px;}
.ws2b{word-spacing:-0.702000px;}
.wsd{word-spacing:-0.675000px;}
.wsa3{word-spacing:-0.672000px;}
.ws23{word-spacing:-0.648000px;}
.wsc{word-spacing:-0.600000px;}
.wse{word-spacing:-0.594000px;}
.ws13{word-spacing:-0.540000px;}
.ws4d{word-spacing:-0.486000px;}
.ws57{word-spacing:-0.462000px;}
.ws9f{word-spacing:-0.432000px;}
.wsa5{word-spacing:-0.384000px;}
.ws40{word-spacing:-0.378000px;}
.ws3c{word-spacing:-0.324000px;}
.ws8b{word-spacing:-0.270000px;}
.wsa7{word-spacing:-0.240000px;}
.ws17{word-spacing:-0.216000px;}
.ws53{word-spacing:-0.162000px;}
.ws6d{word-spacing:-0.144000px;}
.wsf{word-spacing:-0.108000px;}
.wsb7{word-spacing:-0.096000px;}
.wsb{word-spacing:0.000000px;}
.ws28{word-spacing:0.054000px;}
.wsaa{word-spacing:0.096000px;}
.ws22{word-spacing:0.108000px;}
.wsaf{word-spacing:0.144000px;}
.ws2d{word-spacing:0.162000px;}
.wsab{word-spacing:0.192000px;}
.ws3f{word-spacing:0.216000px;}
.wsa1{word-spacing:0.240000px;}
.ws12{word-spacing:0.270000px;}
.wsa4{word-spacing:0.288000px;}
.ws43{word-spacing:0.324000px;}
.wsb1{word-spacing:0.336000px;}
.wsb5{word-spacing:0.384000px;}
.ws2a{word-spacing:0.432000px;}
.wsb4{word-spacing:0.480000px;}
.ws11{word-spacing:0.486000px;}
.wsbc{word-spacing:0.528000px;}
.ws56{word-spacing:0.540000px;}
.wsa9{word-spacing:0.576000px;}
.ws27{word-spacing:0.594000px;}
.ws21{word-spacing:0.648000px;}
.ws93{word-spacing:0.702000px;}
.wsac{word-spacing:0.720000px;}
.ws78{word-spacing:0.810000px;}
.ws55{word-spacing:0.864000px;}
.ws79{word-spacing:0.972000px;}
.wsb0{word-spacing:1.008000px;}
.ws74{word-spacing:1.134000px;}
.wsa6{word-spacing:1.152000px;}
.wsb9{word-spacing:1.200000px;}
.ws75{word-spacing:1.242000px;}
.ws4f{word-spacing:1.248000px;}
.ws24{word-spacing:1.296000px;}
.ws26{word-spacing:1.350000px;}
.ws3e{word-spacing:1.404000px;}
.ws3d{word-spacing:1.458000px;}
.ws2e{word-spacing:1.512000px;}
.ws4c{word-spacing:1.728000px;}
.ws39{word-spacing:1.836000px;}
.ws14{word-spacing:1.998000px;}
.wsbd{word-spacing:2.016000px;}
.wsb8{word-spacing:2.160000px;}
.ws16{word-spacing:2.268000px;}
.ws77{word-spacing:2.430000px;}
.ws41{word-spacing:2.484000px;}
.ws54{word-spacing:2.808000px;}
.ws9e{word-spacing:3.132000px;}
.wsa8{word-spacing:3.264000px;}
.wsa2{word-spacing:3.456000px;}
.ws92{word-spacing:4.158000px;}
.ws38{word-spacing:4.530600px;}
.ws73{word-spacing:5.400000px;}
.ws6c{word-spacing:5.940000px;}
.wsa0{word-spacing:11.280000px;}
.ws29{word-spacing:12.690000px;}
.ws7d{word-spacing:70.410600px;}
.ws5a{word-spacing:89.758800px;}
.ws48{word-spacing:147.803400px;}
.ws4a{word-spacing:237.281400px;}
.ws82{word-spacing:239.592600px;}
.ws5e{word-spacing:244.684800px;}
.ws85{word-spacing:266.765400px;}
.ws49{word-spacing:267.051600px;}
.ws7f{word-spacing:267.861600px;}
.ws80{word-spacing:268.466400px;}
.ws7e{word-spacing:268.979400px;}
.ws86{word-spacing:271.506600px;}
.ws84{word-spacing:272.359800px;}
.ws60{word-spacing:275.875200px;}
.ws62{word-spacing:276.663600px;}
.ws61{word-spacing:278.877600px;}
.ws5d{word-spacing:280.087200px;}
.ws5b{word-spacing:280.897200px;}
.ws5c{word-spacing:283.602600px;}
.ws88{word-spacing:284.806800px;}
.ws8a{word-spacing:286.119000px;}
.ws66{word-spacing:287.782200px;}
.ws89{word-spacing:289.013400px;}
.ws64{word-spacing:295.245000px;}
.ws65{word-spacing:309.371400px;}
.ws63{word-spacing:322.785000px;}
.ws46{word-spacing:335.939400px;}
.ws87{word-spacing:367.443000px;}
.ws68{word-spacing:381.477600px;}
.ws59{word-spacing:381.622800px;}
.ws5f{word-spacing:394.259400px;}
.ws7c{word-spacing:410.791800px;}
.ws83{word-spacing:428.279400px;}
.ws51{word-spacing:577.319400px;}
.ws6b{word-spacing:693.981000px;}
.ws6a{word-spacing:753.035400px;}
.ws45{word-spacing:920.743200px;}
.ws7b{word-spacing:1333.435200px;}
.ws58{word-spacing:1339.933800px;}
._5{margin-left:-12.954000px;}
._e{margin-left:-11.706000px;}
._8{margin-left:-10.428000px;}
._1e{margin-left:-6.375000px;}
._1c{margin-left:-5.259600px;}
._4{margin-left:-3.391200px;}
._3{margin-left:-2.100000px;}
._1{margin-left:-1.050000px;}
._2{width:1.146000px;}
._0{width:2.700000px;}
._9{width:4.512000px;}
._a{width:6.070800px;}
._c{width:7.169400px;}
._b{width:8.957400px;}
._d{width:10.203600px;}
._7{width:12.114000px;}
._3d{width:13.126200px;}
._6{width:14.427000px;}
._10{width:16.042200px;}
._13{width:17.420400px;}
._11{width:19.008000px;}
._12{width:20.221200px;}
._23{width:21.685200px;}
._22{width:22.743600px;}
._26{width:23.917200px;}
._29{width:25.134600px;}
._28{width:26.488200px;}
._27{width:27.658800px;}
._3a{width:29.256600px;}
._36{width:30.276600px;}
._3e{width:31.600800px;}
._3f{width:32.716800px;}
._37{width:35.282400px;}
._3c{width:38.409000px;}
._39{width:40.305000px;}
._38{width:41.346600px;}
._2b{width:43.353000px;}
._2a{width:45.000000px;}
._3b{width:52.360800px;}
._2c{width:72.471000px;}
._2d{width:73.768200px;}
._32{width:78.896400px;}
._30{width:81.893400px;}
._31{width:82.980000px;}
._1f{width:91.122000px;}
._1d{width:95.062800px;}
._20{width:228.024000px;}
._33{width:259.992000px;}
._2e{width:311.127600px;}
._1a{width:323.790600px;}
._16{width:329.904000px;}
._2f{width:366.069600px;}
._1b{width:377.057400px;}
._17{width:542.034000px;}
._25{width:544.650000px;}
._24{width:586.746000px;}
._19{width:593.142000px;}
._14{width:709.782000px;}
._15{width:748.554000px;}
._18{width:758.760000px;}
._21{width:1854.528000px;}
._34{width:1860.954000px;}
._35{width:2198.592600px;}
._f{width:2225.322600px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs8{font-size:28.140000px;}
.fs5{font-size:31.500000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:37.800000px;}
.fs1{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:28.993350px;}
.y1{bottom:41.558550px;}
.y2{bottom:41.593350px;}
.y3a{bottom:74.035800px;}
.y13e{bottom:77.355000px;}
.y28b{bottom:78.270450px;}
.y273{bottom:78.348450px;}
.y6f{bottom:78.469800px;}
.ya7{bottom:78.634800px;}
.y25b{bottom:78.793800px;}
.y22c{bottom:79.495800px;}
.y2c4{bottom:79.530450px;}
.y2a8{bottom:79.611450px;}
.y19a{bottom:86.355000px;}
.y1fe{bottom:87.855000px;}
.y350{bottom:90.507300px;}
.y314{bottom:91.657800px;}
.y39{bottom:92.035800px;}
.y2d9{bottom:92.257800px;}
.y17e{bottom:95.355000px;}
.y28a{bottom:95.523450px;}
.y272{bottom:95.601450px;}
.ydf{bottom:95.720550px;}
.y6e{bottom:95.722800px;}
.y114{bottom:95.872800px;}
.ya6{bottom:95.887800px;}
.y22b{bottom:96.748800px;}
.y2c3{bottom:96.783450px;}
.y2a7{bottom:96.864450px;}
.y25a{bottom:98.287800px;}
.y13d{bottom:100.267050px;}
.y34f{bottom:105.507300px;}
.y313{bottom:106.657800px;}
.y38{bottom:107.038800px;}
.y2d8{bottom:107.257800px;}
.y13b{bottom:108.299550px;}
.y289{bottom:112.776450px;}
.yde{bottom:112.973550px;}
.y6d{bottom:112.975800px;}
.y113{bottom:113.125800px;}
.ya5{bottom:113.140800px;}
.y22a{bottom:114.001800px;}
.y2c2{bottom:114.036450px;}
.y2a6{bottom:114.117450px;}
.y13c{bottom:117.520050px;}
.y259{bottom:117.781800px;}
.y17d{bottom:118.287450px;}
.y2d7{bottom:122.257800px;}
.y13a{bottom:125.552550px;}
.y34e{bottom:128.007300px;}
.y312{bottom:129.301800px;}
.y288{bottom:130.029450px;}
.y271{bottom:130.107450px;}
.ydd{bottom:130.226550px;}
.y6c{bottom:130.228800px;}
.y112{bottom:130.378800px;}
.ya4{bottom:130.393800px;}
.y229{bottom:131.254800px;}
.y2c1{bottom:131.289450px;}
.y2a5{bottom:131.370450px;}
.y258{bottom:137.275800px;}
.y139{bottom:142.805550px;}
.y34d{bottom:143.007300px;}
.y17c{bottom:143.572950px;}
.y311{bottom:144.301800px;}
.y2d6{bottom:145.669800px;}
.y287{bottom:147.282450px;}
.ydc{bottom:147.479550px;}
.y6b{bottom:147.481800px;}
.y111{bottom:147.631800px;}
.ya3{bottom:147.646800px;}
.y228{bottom:148.507800px;}
.y2c0{bottom:148.542450px;}
.y2a4{bottom:148.623450px;}
.y270{bottom:149.601450px;}
.y37{bottom:150.319800px;}
.y28{bottom:150.360300px;}
.y257{bottom:156.769800px;}
.y34c{bottom:158.007300px;}
.y310{bottom:159.301800px;}
.y2d5{bottom:160.669800px;}
.y286{bottom:164.535450px;}
.y6a{bottom:164.734800px;}
.y110{bottom:164.884800px;}
.ya2{bottom:164.899800px;}
.y227{bottom:165.760800px;}
.y2a3{bottom:165.876450px;}
.y36{bottom:167.572800px;}
.y27{bottom:167.613300px;}
.y138{bottom:168.091050px;}
.y17b{bottom:168.858450px;}
.y2d4{bottom:175.669800px;}
.y256{bottom:176.263800px;}
.y34b{bottom:180.507300px;}
.y285{bottom:181.788450px;}
.y30f{bottom:181.945800px;}
.ydb{bottom:181.985550px;}
.y69{bottom:181.987800px;}
.y10f{bottom:182.137800px;}
.y2bf{bottom:182.292450px;}
.y226{bottom:183.013800px;}
.y2a2{bottom:183.129450px;}
.y35{bottom:184.825800px;}
.y26{bottom:184.866300px;}
.y137{bottom:185.344050px;}
.y26f{bottom:186.348450px;}
.y136{bottom:193.376550px;}
.y17a{bottom:194.143950px;}
.y34a{bottom:195.507300px;}
.y255{bottom:195.757800px;}
.y30e{bottom:196.945800px;}
.y284{bottom:199.041450px;}
.y2d3{bottom:199.081800px;}
.yda{bottom:199.238550px;}
.y68{bottom:199.240800px;}
.y10e{bottom:199.390800px;}
.ya1{bottom:199.399800px;}
.y2be{bottom:199.545450px;}
.y2a1{bottom:200.382450px;}
.y34{bottom:202.078800px;}
.y25{bottom:202.119300px;}
.y26e{bottom:203.601450px;}
.y349{bottom:210.507300px;}
.y135{bottom:210.629550px;}
.y30d{bottom:211.945800px;}
.y2d2{bottom:214.081800px;}
.y254{bottom:215.251800px;}
.y283{bottom:216.294450px;}
.yd9{bottom:216.491550px;}
.y10d{bottom:216.643800px;}
.ya0{bottom:216.649800px;}
.y2bd{bottom:216.798450px;}
.y2a0{bottom:217.635450px;}
.y225{bottom:218.262300px;}
.y33{bottom:219.331800px;}
.y24{bottom:219.372300px;}
.y179{bottom:219.429450px;}
.y178{bottom:227.461950px;}
.y134{bottom:227.882550px;}
.y2d1{bottom:229.081800px;}
.y348{bottom:233.007300px;}
.y282{bottom:233.547450px;}
.yd8{bottom:233.744550px;}
.y67{bottom:233.746800px;}
.y10c{bottom:233.896800px;}
.y9f{bottom:233.899800px;}
.y2bc{bottom:234.051450px;}
.y30c{bottom:234.601800px;}
.y29f{bottom:234.888450px;}
.y32{bottom:236.584800px;}
.y23{bottom:236.625300px;}
.y224{bottom:237.756300px;}
.y26d{bottom:238.107450px;}
.y177{bottom:244.714950px;}
.y347{bottom:248.007300px;}
.y30b{bottom:249.601800px;}
.y281{bottom:250.800450px;}
.yd7{bottom:250.997550px;}
.y66{bottom:250.999800px;}
.y10b{bottom:251.149800px;}
.y2bb{bottom:251.304450px;}
.y29e{bottom:252.141450px;}
.y2d0{bottom:252.493800px;}
.y253{bottom:252.754800px;}
.y132{bottom:253.465050px;}
.y31{bottom:253.837800px;}
.y22{bottom:253.878300px;}
.y223{bottom:257.250300px;}
.y26c{bottom:257.601450px;}
.y30a{bottom:264.601800px;}
.y2cf{bottom:267.493800px;}
.yd6{bottom:268.250550px;}
.y65{bottom:268.252800px;}
.y2ba{bottom:268.557450px;}
.y176{bottom:270.000450px;}
.y346{bottom:270.507300px;}
.y133{bottom:270.718050px;}
.y30{bottom:271.090800px;}
.y21{bottom:271.131300px;}
.y252{bottom:272.248800px;}
.y222{bottom:276.744300px;}
.y26b{bottom:277.095450px;}
.y309{bottom:279.601800px;}
.y2ce{bottom:282.493800px;}
.y280{bottom:285.306450px;}
.y9e{bottom:285.330300px;}
.yd5{bottom:285.503550px;}
.y64{bottom:285.505800px;}
.y345{bottom:285.507300px;}
.y10a{bottom:285.649800px;}
.y2b9{bottom:285.810450px;}
.y29d{bottom:285.891450px;}
.y2f{bottom:288.343800px;}
.y20{bottom:288.384300px;}
.y251{bottom:291.742800px;}
.y175{bottom:295.285950px;}
.y221{bottom:296.238300px;}
.y131{bottom:299.264550px;}
.y308{bottom:302.245800px;}
.y27f{bottom:302.559450px;}
.y9d{bottom:302.583300px;}
.yd4{bottom:302.756550px;}
.y63{bottom:302.758800px;}
.y2b8{bottom:303.063450px;}
.y29c{bottom:303.144450px;}
.y2e{bottom:305.596800px;}
.y1f{bottom:305.637300px;}
.y2cd{bottom:305.905800px;}
.y344{bottom:308.007300px;}
.y250{bottom:311.236800px;}
.y26a{bottom:313.842450px;}
.y220{bottom:315.732300px;}
.y307{bottom:317.245800px;}
.y27e{bottom:319.812450px;}
.y9c{bottom:319.836300px;}
.yd3{bottom:320.009550px;}
.y62{bottom:320.011800px;}
.y2b7{bottom:320.316450px;}
.y29b{bottom:320.397450px;}
.y174{bottom:320.571450px;}
.y2cc{bottom:320.905800px;}
.y2d{bottom:322.849800px;}
.y1e{bottom:322.890300px;}
.y343{bottom:323.007300px;}
.y24f{bottom:330.730800px;}
.y269{bottom:333.336450px;}
.y21f{bottom:335.226300px;}
.y27d{bottom:337.065450px;}
.y109{bottom:337.087050px;}
.y9b{bottom:337.089300px;}
.yd2{bottom:337.262550px;}
.y61{bottom:337.264800px;}
.y2b6{bottom:337.569450px;}
.y29a{bottom:337.650450px;}
.y342{bottom:338.007300px;}
.y306{bottom:339.901800px;}
.y2c{bottom:340.102800px;}
.y1d{bottom:340.143300px;}
.y2cb{bottom:344.149800px;}
.y130{bottom:344.483550px;}
.y173{bottom:345.856950px;}
.y24e{bottom:350.224800px;}
.y268{bottom:352.830450px;}
.y341{bottom:353.007300px;}
.y27c{bottom:354.318450px;}
.y108{bottom:354.340050px;}
.y9a{bottom:354.342300px;}
.yd1{bottom:354.515550px;}
.y2b5{bottom:354.822450px;}
.y305{bottom:354.901800px;}
.y299{bottom:354.903450px;}
.y24d{bottom:369.718800px;}
.y304{bottom:369.901800px;}
.y172{bottom:371.142450px;}
.y27b{bottom:371.571450px;}
.y107{bottom:371.593050px;}
.y99{bottom:371.595300px;}
.yd0{bottom:371.768550px;}
.y60{bottom:371.770800px;}
.y298{bottom:372.156450px;}
.y267{bottom:372.324450px;}
.y21e{bottom:372.729300px;}
.y2b{bottom:374.608800px;}
.y1c{bottom:374.643300px;}
.y340{bottom:375.507300px;}
.y2b4{bottom:388.572450px;}
.y106{bottom:388.846050px;}
.y98{bottom:388.848300px;}
.ycf{bottom:389.021550px;}
.y5f{bottom:389.023800px;}
.y2ca{bottom:389.149800px;}
.y297{bottom:389.409450px;}
.y21d{bottom:389.982300px;}
.y33f{bottom:390.507300px;}
.y2a{bottom:391.861800px;}
.y1b{bottom:391.893300px;}
.y303{bottom:392.545800px;}
.y171{bottom:396.427950px;}
.y2c9{bottom:404.149800px;}
.y2b3{bottom:405.825450px;}
.y27a{bottom:406.071450px;}
.y105{bottom:406.099050px;}
.y97{bottom:406.101300px;}
.yce{bottom:406.274550px;}
.y5e{bottom:406.276800px;}
.y24c{bottom:407.221800px;}
.y302{bottom:407.545800px;}
.y266{bottom:409.071450px;}
.y29{bottom:409.114800px;}
.y1a{bottom:409.143300px;}
.y33e{bottom:413.007300px;}
.y170{bottom:422.010450px;}
.y301{bottom:422.545800px;}
.y2b2{bottom:423.078450px;}
.y296{bottom:423.159450px;}
.y104{bottom:423.352050px;}
.y96{bottom:423.354300px;}
.y5d{bottom:423.529800px;}
.y24b{bottom:424.474800px;}
.y21c{bottom:425.230800px;}
.y2c8{bottom:426.649800px;}
.y33d{bottom:428.007300px;}
.y265{bottom:428.565450px;}
.y300{bottom:437.545800px;}
.y2b1{bottom:440.331450px;}
.y295{bottom:440.412450px;}
.y103{bottom:440.605050px;}
.y95{bottom:440.607300px;}
.ycd{bottom:440.780550px;}
.y5c{bottom:440.782800px;}
.y24a{bottom:441.727800px;}
.y33c{bottom:443.007300px;}
.y21b{bottom:444.724800px;}
.y264{bottom:448.059450px;}
.y16f{bottom:450.559800px;}
.y279{bottom:456.348450px;}
.y2b0{bottom:457.584450px;}
.y294{bottom:457.665450px;}
.y102{bottom:457.858050px;}
.y94{bottom:457.860300px;}
.y33b{bottom:458.007300px;}
.ycc{bottom:458.033550px;}
.y249{bottom:458.980800px;}
.y2ff{bottom:460.189800px;}
.y19{bottom:460.941300px;}
.y2c7{bottom:464.149800px;}
.y21a{bottom:464.218800px;}
.y263{bottom:467.553450px;}
.y33a{bottom:473.007300px;}
.y2af{bottom:474.837450px;}
.y293{bottom:474.918450px;}
.y101{bottom:475.111050px;}
.y93{bottom:475.113300px;}
.y2fe{bottom:475.189800px;}
.ycb{bottom:475.286550px;}
.y5b{bottom:475.288800px;}
.y278{bottom:475.842450px;}
.y18{bottom:480.435300px;}
.y219{bottom:483.712800px;}
.y2c6{bottom:486.649800px;}
.y2fd{bottom:490.189800px;}
.y2ae{bottom:492.090450px;}
.y292{bottom:492.171450px;}
.y100{bottom:492.364050px;}
.y92{bottom:492.366300px;}
.yca{bottom:492.539550px;}
.y5a{bottom:492.541800px;}
.y150{bottom:492.598800px;}
.y16e{bottom:492.610800px;}
.y248{bottom:494.229300px;}
.y277{bottom:495.336450px;}
.y339{bottom:495.507300px;}
.y17{bottom:499.929300px;}
.y218{bottom:503.206800px;}
.y262{bottom:504.300450px;}
.y2ad{bottom:509.343450px;}
.y291{bottom:509.424450px;}
.yff{bottom:509.617050px;}
.y91{bottom:509.619300px;}
.yc9{bottom:509.792550px;}
.y59{bottom:509.794800px;}
.y14f{bottom:509.851800px;}
.y16d{bottom:509.863800px;}
.y338{bottom:510.507300px;}
.y2fc{bottom:512.845800px;}
.y247{bottom:513.723300px;}
.y16{bottom:519.423300px;}
.y261{bottom:521.553450px;}
.y217{bottom:522.700800px;}
.y337{bottom:525.507300px;}
.y2ac{bottom:526.596450px;}
.y290{bottom:526.677450px;}
.y90{bottom:526.872300px;}
.yc8{bottom:527.045550px;}
.y58{bottom:527.047800px;}
.y16c{bottom:527.116800px;}
.y2fb{bottom:527.845800px;}
.y276{bottom:532.083450px;}
.y246{bottom:533.217300px;}
.y260{bottom:538.806450px;}
.y15{bottom:538.917300px;}
.y336{bottom:540.507300px;}
.y2fa{bottom:542.845800px;}
.y2ab{bottom:543.849450px;}
.y28f{bottom:543.930450px;}
.yfe{bottom:544.123050px;}
.y8f{bottom:544.125300px;}
.y57{bottom:544.300800px;}
.y14e{bottom:544.357800px;}
.y16b{bottom:544.369800px;}
.y275{bottom:551.577450px;}
.y245{bottom:552.711300px;}
.y199{bottom:555.231900px;}
.y14{bottom:558.411300px;}
.y216{bottom:560.203800px;}
.y2aa{bottom:561.102450px;}
.y28e{bottom:561.183450px;}
.yfd{bottom:561.376050px;}
.y8e{bottom:561.378300px;}
.yc7{bottom:561.551550px;}
.y56{bottom:561.553800px;}
.y14d{bottom:561.610800px;}
.y16a{bottom:561.622800px;}
.y335{bottom:563.007300px;}
.y1bb{bottom:563.200800px;}
.y2f9{bottom:565.489800px;}
.y1d1{bottom:566.170800px;}
.y274{bottom:571.071450px;}
.y244{bottom:572.205300px;}
.y25f{bottom:573.312450px;}
.y215{bottom:577.456800px;}
.y13{bottom:577.905300px;}
.y334{bottom:578.007300px;}
.y198{bottom:578.154450px;}
.y2a9{bottom:578.355450px;}
.y28d{bottom:578.436450px;}
.yfc{bottom:578.629050px;}
.y8d{bottom:578.631300px;}
.yc6{bottom:578.804550px;}
.y55{bottom:578.806800px;}
.y14c{bottom:578.863800px;}
.y169{bottom:578.875800px;}
.y1ba{bottom:580.453800px;}
.y1d0{bottom:583.423800px;}
.y2f8{bottom:588.133800px;}
.y25e{bottom:590.565450px;}
.y243{bottom:591.699300px;}
.y333{bottom:593.007300px;}
.y214{bottom:594.709800px;}
.yfb{bottom:595.882050px;}
.y8c{bottom:595.884300px;}
.yc5{bottom:596.057550px;}
.y54{bottom:596.059800px;}
.y14b{bottom:596.116800px;}
.y12{bottom:597.399300px;}
.y1cf{bottom:600.676800px;}
.y2f7{bottom:603.133800px;}
.y197{bottom:603.439950px;}
.y25d{bottom:607.818450px;}
.y332{bottom:608.007300px;}
.y242{bottom:611.193300px;}
.y213{bottom:611.962800px;}
.yfa{bottom:613.135050px;}
.y8b{bottom:613.137300px;}
.y2c5{bottom:613.240950px;}
.yc4{bottom:613.310550px;}
.y53{bottom:613.312800px;}
.y14a{bottom:613.369800px;}
.y168{bottom:613.381800px;}
.y1b9{bottom:614.203800px;}
.y11{bottom:616.893300px;}
.y1ce{bottom:617.929800px;}
.y1fd{bottom:621.990450px;}
.y25c{bottom:625.071450px;}
.y2f6{bottom:625.777800px;}
.y196{bottom:628.725450px;}
.yf9{bottom:630.388050px;}
.y8a{bottom:630.390300px;}
.y331{bottom:630.507300px;}
.yc3{bottom:630.563550px;}
.y52{bottom:630.565800px;}
.y149{bottom:630.622800px;}
.y167{bottom:630.634800px;}
.y241{bottom:630.687300px;}
.y1b8{bottom:633.697800px;}
.y10{bottom:636.393300px;}
.y2f5{bottom:640.777800px;}
.y1fc{bottom:644.913000px;}
.y330{bottom:645.507300px;}
.y212{bottom:647.211300px;}
.yf8{bottom:647.641050px;}
.y89{bottom:647.643300px;}
.yc2{bottom:647.816550px;}
.y51{bottom:647.818800px;}
.y148{bottom:647.875800px;}
.y166{bottom:647.887800px;}
.y12f{bottom:649.357800px;}
.y1cd{bottom:653.178300px;}
.y1b7{bottom:653.191800px;}
.y195{bottom:654.010950px;}
.y28c{bottom:656.440950px;}
.y32f{bottom:660.507300px;}
.y2f4{bottom:663.421800px;}
.yf7{bottom:664.894050px;}
.y88{bottom:664.896300px;}
.yc1{bottom:665.069550px;}
.y119{bottom:665.071800px;}
.y165{bottom:665.140800px;}
.y12e{bottom:666.610800px;}
.y211{bottom:666.705300px;}
.y240{bottom:668.190300px;}
.y1fb{bottom:670.198500px;}
.y1cc{bottom:672.672300px;}
.y1b6{bottom:672.685800px;}
.y1e6{bottom:675.655800px;}
.y2f3{bottom:678.421800px;}
.y194{bottom:679.296450px;}
.yf{bottom:679.893300px;}
.yf6{bottom:682.147050px;}
.y87{bottom:682.149300px;}
.yc0{bottom:682.322550px;}
.y50{bottom:682.324800px;}
.y147{bottom:682.381800px;}
.y164{bottom:682.393800px;}
.y32e{bottom:683.523300px;}
.y12d{bottom:683.863800px;}
.y23f{bottom:685.443300px;}
.y210{bottom:686.199300px;}
.y1cb{bottom:692.166300px;}
.y1b5{bottom:692.179800px;}
.y1e5{bottom:692.908800px;}
.y1fa{bottom:695.484000px;}
.y32d{bottom:698.523300px;}
.yf5{bottom:699.400050px;}
.y86{bottom:699.402300px;}
.ybf{bottom:699.575550px;}
.y4f{bottom:699.577800px;}
.y146{bottom:699.634800px;}
.y163{bottom:699.646800px;}
.y2f2{bottom:701.077800px;}
.y12c{bottom:701.116800px;}
.y23e{bottom:702.696300px;}
.ye{bottom:704.643300px;}
.y193{bottom:704.877300px;}
.y20f{bottom:705.693300px;}
.y1e4{bottom:710.161800px;}
.y1ca{bottom:711.660300px;}
.y1b4{bottom:711.673800px;}
.y2f1{bottom:716.077800px;}
.yf4{bottom:716.653050px;}
.y85{bottom:716.655300px;}
.ybe{bottom:716.828550px;}
.y4e{bottom:716.830800px;}
.y145{bottom:716.887800px;}
.y162{bottom:716.899800px;}
.y12b{bottom:718.369800px;}
.y23d{bottom:719.949300px;}
.y1f9{bottom:720.769500px;}
.y32c{bottom:721.539300px;}
.y192{bottom:722.130300px;}
.y20e{bottom:725.187300px;}
.yd{bottom:728.639550px;}
.y1c9{bottom:731.154300px;}
.y1b3{bottom:731.167800px;}
.y84{bottom:733.908300px;}
.ybd{bottom:734.081550px;}
.y4d{bottom:734.083800px;}
.y144{bottom:734.140800px;}
.y12a{bottom:735.622800px;}
.y32b{bottom:736.539300px;}
.y23c{bottom:737.202300px;}
.y2f0{bottom:738.721800px;}
.y20d{bottom:744.681300px;}
.y1e3{bottom:745.410300px;}
.y1f8{bottom:746.055000px;}
.y191{bottom:747.415800px;}
.y1c8{bottom:750.648300px;}
.y1b2{bottom:750.661800px;}
.yf3{bottom:751.159050px;}
.y83{bottom:751.161300px;}
.ybc{bottom:751.334550px;}
.y4c{bottom:751.336800px;}
.y143{bottom:751.393800px;}
.y161{bottom:751.399800px;}
.y32a{bottom:751.539300px;}
.yc{bottom:752.635800px;}
.y129{bottom:752.875800px;}
.y2ef{bottom:753.721800px;}
.y23b{bottom:754.455300px;}
.y20c{bottom:764.175300px;}
.y1e2{bottom:764.904300px;}
.yf2{bottom:768.412050px;}
.y82{bottom:768.414300px;}
.y4b{bottom:768.589800px;}
.y142{bottom:768.646800px;}
.y2ee{bottom:768.721800px;}
.y128{bottom:770.128800px;}
.y1c7{bottom:770.142300px;}
.y1b1{bottom:770.155800px;}
.y1f7{bottom:771.636000px;}
.y23a{bottom:771.708300px;}
.y329{bottom:774.555300px;}
.y190{bottom:775.965300px;}
.yb{bottom:780.389550px;}
.y1e1{bottom:784.398300px;}
.yf1{bottom:785.665050px;}
.y81{bottom:785.667300px;}
.ybb{bottom:785.840550px;}
.y4a{bottom:785.842800px;}
.y141{bottom:785.899800px;}
.y127{bottom:787.381800px;}
.y1f6{bottom:788.889000px;}
.y328{bottom:789.555300px;}
.y1b0{bottom:789.649800px;}
.y2ed{bottom:791.377800px;}
.ya{bottom:800.639550px;}
.y20b{bottom:801.678300px;}
.y80{bottom:802.920300px;}
.y160{bottom:803.044800px;}
.yba{bottom:803.093550px;}
.y49{bottom:803.095800px;}
.y1e0{bottom:803.892300px;}
.y327{bottom:804.555300px;}
.y2ec{bottom:806.377800px;}
.y239{bottom:806.956800px;}
.y1c6{bottom:807.645300px;}
.y1af{bottom:809.143800px;}
.y1a2{bottom:813.640350px;}
.y1f5{bottom:814.174500px;}
.y20a{bottom:818.931300px;}
.yf0{bottom:820.171050px;}
.y7f{bottom:820.173300px;}
.y15f{bottom:820.297800px;}
.y18f{bottom:820.335300px;}
.yb9{bottom:820.346550px;}
.y48{bottom:820.348800px;}
.y140{bottom:820.399800px;}
.y2eb{bottom:821.377800px;}
.y126{bottom:821.887800px;}
.y1c5{bottom:824.898300px;}
.y1d9{bottom:825.654300px;}
.y238{bottom:826.450800px;}
.y326{bottom:827.571300px;}
.y9{bottom:828.393300px;}
.y209{bottom:836.184300px;}
.y1a1{bottom:836.561850px;}
.yef{bottom:837.424050px;}
.y15e{bottom:837.550800px;}
.y18e{bottom:837.588300px;}
.yb8{bottom:837.599550px;}
.y118{bottom:837.601800px;}
.y125{bottom:839.140800px;}
.y1df{bottom:841.395300px;}
.y1c4{bottom:842.151300px;}
.y325{bottom:842.571300px;}
.y1f4{bottom:842.723850px;}
.y1d8{bottom:842.907300px;}
.y2ea{bottom:844.021800px;}
.y1ae{bottom:845.148300px;}
.y237{bottom:845.944800px;}
.yee{bottom:854.677050px;}
.y7e{bottom:854.679300px;}
.y15d{bottom:854.803800px;}
.y18d{bottom:854.841300px;}
.yb7{bottom:854.852550px;}
.y47{bottom:854.854800px;}
.y124{bottom:856.393800px;}
.y324{bottom:857.571300px;}
.y1de{bottom:858.648300px;}
.y2e9{bottom:859.021800px;}
.y1c3{bottom:859.404300px;}
.y8{bottom:859.875300px;}
.y1d7{bottom:860.160300px;}
.y1a0{bottom:861.847350px;}
.y1ad{bottom:862.401300px;}
.y236{bottom:865.438800px;}
.y208{bottom:871.432800px;}
.yed{bottom:871.930050px;}
.y7d{bottom:871.932300px;}
.yb6{bottom:872.105550px;}
.y46{bottom:872.107800px;}
.y323{bottom:872.571300px;}
.y123{bottom:873.646800px;}
.y2e8{bottom:874.021800px;}
.y1dd{bottom:875.901300px;}
.y1c2{bottom:876.657300px;}
.y1d6{bottom:877.413300px;}
.y1ac{bottom:879.654300px;}
.y235{bottom:884.932800px;}
.y19f{bottom:887.132850px;}
.yec{bottom:889.183050px;}
.y7c{bottom:889.185300px;}
.y15c{bottom:889.309800px;}
.y18c{bottom:889.347300px;}
.yb5{bottom:889.358550px;}
.y45{bottom:889.360800px;}
.y122{bottom:890.899800px;}
.y207{bottom:890.926800px;}
.y7{bottom:891.384300px;}
.y1c1{bottom:893.910300px;}
.y1d5{bottom:894.666300px;}
.y322{bottom:895.587300px;}
.y1f3{bottom:896.151300px;}
.y2e7{bottom:896.665800px;}
.y1ab{bottom:896.907300px;}
.y1ef{bottom:898.392300px;}
.y234{bottom:904.426800px;}
.yeb{bottom:906.436050px;}
.y7b{bottom:906.438300px;}
.y15b{bottom:906.562800px;}
.y18b{bottom:906.600300px;}
.yb4{bottom:906.611550px;}
.y44{bottom:906.613800px;}
.y206{bottom:910.420800px;}
.y321{bottom:910.587300px;}
.y1dc{bottom:911.149800px;}
.y2e6{bottom:911.665800px;}
.y1d4{bottom:911.919300px;}
.y19e{bottom:912.418350px;}
.y1aa{bottom:914.160300px;}
.y1ee{bottom:915.645300px;}
.y6{bottom:922.893300px;}
.yea{bottom:923.689050px;}
.y7a{bottom:923.691300px;}
.y15a{bottom:923.815800px;}
.y18a{bottom:923.853300px;}
.yb3{bottom:923.864550px;}
.y117{bottom:923.866800px;}
.y233{bottom:923.920800px;}
.y121{bottom:925.399800px;}
.y320{bottom:925.587300px;}
.y2e5{bottom:926.665800px;}
.y35c{bottom:927.123300px;}
.y1c0{bottom:929.158800px;}
.y1d3{bottom:929.172300px;}
.y205{bottom:929.914800px;}
.y1db{bottom:930.643800px;}
.y1a9{bottom:931.413300px;}
.y43{bottom:932.493300px;}
.y1ed{bottom:932.898300px;}
.y1f2{bottom:935.139300px;}
.y19d{bottom:938.000850px;}
.y31f{bottom:940.587300px;}
.ye9{bottom:940.942050px;}
.y79{bottom:940.944300px;}
.y159{bottom:941.068800px;}
.y189{bottom:941.106300px;}
.yb2{bottom:941.117550px;}
.y116{bottom:941.119800px;}
.y35b{bottom:942.123300px;}
.y1bf{bottom:948.652800px;}
.y1a8{bottom:948.666300px;}
.y2e4{bottom:949.321800px;}
.y204{bottom:949.408800px;}
.y1da{bottom:950.137800px;}
.y1ec{bottom:950.151300px;}
.y1f1{bottom:954.633300px;}
.y35a{bottom:957.123300px;}
.ye8{bottom:958.195050px;}
.y78{bottom:958.197300px;}
.y158{bottom:958.321800px;}
.y188{bottom:958.359300px;}
.yb1{bottom:958.370550px;}
.y42{bottom:958.372800px;}
.y232{bottom:961.423800px;}
.y1d2{bottom:962.922300px;}
.y31e{bottom:963.603300px;}
.y2e3{bottom:964.321800px;}
.y19c{bottom:966.556200px;}
.y1eb{bottom:967.404300px;}
.y1be{bottom:968.146800px;}
.y203{bottom:968.902800px;}
.y359{bottom:972.123300px;}
.y1f0{bottom:974.127300px;}
.ye7{bottom:975.448050px;}
.y77{bottom:975.450300px;}
.y120{bottom:975.544800px;}
.y187{bottom:975.612300px;}
.yb0{bottom:975.623550px;}
.y41{bottom:975.625800px;}
.y31d{bottom:978.603300px;}
.y2e2{bottom:979.321800px;}
.y231{bottom:980.917800px;}
.y1a7{bottom:982.416300px;}
.y19b{bottom:983.800200px;}
.y1ea{bottom:984.657300px;}
.y1bd{bottom:987.640800px;}
.y202{bottom:988.396800px;}
.y5{bottom:992.043300px;}
.y76{bottom:992.703300px;}
.y11f{bottom:992.797800px;}
.y157{bottom:992.827800px;}
.yaf{bottom:992.876550px;}
.y40{bottom:992.878800px;}
.y31c{bottom:993.603300px;}
.y2e1{bottom:994.321800px;}
.y358{bottom:994.623300px;}
.y230{bottom:1000.411800px;}
.y1a6{bottom:1001.910300px;}
.y1bc{bottom:1007.134800px;}
.y31b{bottom:1008.603300px;}
.y357{bottom:1009.623300px;}
.ye6{bottom:1009.954050px;}
.y11e{bottom:1010.050800px;}
.y156{bottom:1010.080800px;}
.y186{bottom:1010.118300px;}
.yae{bottom:1010.129550px;}
.y115{bottom:1010.131800px;}
.y2e0{bottom:1016.965800px;}
.y22f{bottom:1019.905800px;}
.y1a5{bottom:1021.404300px;}
.y356{bottom:1024.623300px;}
.y201{bottom:1025.143800px;}
.ye5{bottom:1027.207050px;}
.y75{bottom:1027.209300px;}
.y155{bottom:1027.333800px;}
.y185{bottom:1027.371300px;}
.y13f{bottom:1027.382550px;}
.y3f{bottom:1027.384800px;}
.y31a{bottom:1031.619300px;}
.y2df{bottom:1031.965800px;}
.y1e9{bottom:1037.158800px;}
.y22e{bottom:1039.399800px;}
.y1a4{bottom:1040.898300px;}
.y200{bottom:1042.396800px;}
.ye4{bottom:1044.460050px;}
.y74{bottom:1044.462300px;}
.y11d{bottom:1044.556800px;}
.y154{bottom:1044.586800px;}
.y184{bottom:1044.624300px;}
.yad{bottom:1044.635550px;}
.y17f{bottom:1044.637800px;}
.y319{bottom:1046.619300px;}
.y2de{bottom:1046.965800px;}
.y355{bottom:1047.123300px;}
.y1e8{bottom:1056.652800px;}
.y22d{bottom:1058.893800px;}
.y1ff{bottom:1059.649800px;}
.y1a3{bottom:1060.392300px;}
.y318{bottom:1061.619300px;}
.ye3{bottom:1061.713050px;}
.y73{bottom:1061.715300px;}
.y11c{bottom:1061.809800px;}
.y153{bottom:1061.839800px;}
.y183{bottom:1061.877300px;}
.yac{bottom:1061.888550px;}
.y3e{bottom:1061.890800px;}
.y354{bottom:1062.123300px;}
.y2dd{bottom:1069.621800px;}
.y317{bottom:1076.619300px;}
.y353{bottom:1077.123300px;}
.ye2{bottom:1078.966050px;}
.y72{bottom:1078.968300px;}
.y11b{bottom:1079.062800px;}
.y182{bottom:1079.130300px;}
.yab{bottom:1079.141550px;}
.y3d{bottom:1079.143800px;}
.y2dc{bottom:1084.621800px;}
.y1e7{bottom:1094.155800px;}
.ye1{bottom:1096.219050px;}
.y71{bottom:1096.221300px;}
.y152{bottom:1096.345800px;}
.y181{bottom:1096.383300px;}
.yaa{bottom:1096.394550px;}
.y3c{bottom:1096.396800px;}
.y2db{bottom:1099.621800px;}
.y352{bottom:1099.623300px;}
.y316{bottom:1099.635300px;}
.y4{bottom:1112.139750px;}
.ye0{bottom:1113.472050px;}
.y70{bottom:1113.474300px;}
.y11a{bottom:1113.568800px;}
.y151{bottom:1113.598800px;}
.y180{bottom:1113.636300px;}
.ya9{bottom:1113.647550px;}
.y3b{bottom:1113.649800px;}
.y2da{bottom:1114.621800px;}
.y351{bottom:1114.623300px;}
.y315{bottom:1114.635300px;}
.ya8{bottom:1150.065000px;}
.h7{height:24.727500px;}
.hb{height:27.617871px;}
.h9{height:28.260000px;}
.h3{height:32.970000px;}
.h8{height:35.325000px;}
.hc{height:37.680000px;}
.h2{height:42.390000px;}
.he{height:42.396000px;}
.hd{height:42.396600px;}
.h4{height:47.100000px;}
.h6{height:47.655000px;}
.h5{height:84.780000px;}
.ha{height:1173.540000px;}
.h0{height:1173.543000px;}
.h1{height:1173.750000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:68.031450px;}
.x9{left:77.031450px;}
.x6{left:79.425450px;}
.x4{left:80.787000px;}
.x3{left:82.281000px;}
.x7{left:93.519450px;}
.x1c{left:104.440950px;}
.x15{left:317.074950px;}
.x19{left:335.353950px;}
.x16{left:344.749950px;}
.xc{left:371.520450px;}
.x5{left:459.193500px;}
.xd{left:476.563950px;}
.x1d{left:495.622200px;}
.x11{left:498.001950px;}
.x17{left:510.246450px;}
.x18{left:520.168950px;}
.x1a{left:545.427450px;}
.x1b{left:559.305450px;}
.x14{left:571.617450px;}
.x13{left:588.694950px;}
.x12{left:597.294450px;}
.xe{left:669.627450px;}
.xa{left:673.960950px;}
.xf{left:678.780450px;}
.x10{left:684.463950px;}
.xb{left:693.724950px;}
.x1e{left:780.049500px;}
.x1{left:786.732000px;}
.x8{left:870.885000px;}
@media print{
.v2{vertical-align:-13.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.984000pt;}
.ls23{letter-spacing:-11.280000pt;}
.ls5c{letter-spacing:-10.026667pt;}
.ls42{letter-spacing:-5.280000pt;}
.ls4b{letter-spacing:-4.800000pt;}
.ls56{letter-spacing:-3.696000pt;}
.ls5e{letter-spacing:-3.072000pt;}
.ls65{letter-spacing:-2.901333pt;}
.ls59{letter-spacing:-2.784000pt;}
.ls49{letter-spacing:-2.688000pt;}
.ls3f{letter-spacing:-2.496000pt;}
.ls1b{letter-spacing:-2.400000pt;}
.ls77{letter-spacing:-2.261333pt;}
.ls53{letter-spacing:-2.256000pt;}
.ls14{letter-spacing:-2.208000pt;}
.ls4f{letter-spacing:-2.160000pt;}
.ls55{letter-spacing:-2.064000pt;}
.ls19{letter-spacing:-2.016000pt;}
.ls36{letter-spacing:-1.920000pt;}
.ls78{letter-spacing:-1.792000pt;}
.ls17{letter-spacing:-1.776000pt;}
.ls2e{letter-spacing:-1.632000pt;}
.ls38{letter-spacing:-1.536000pt;}
.ls2f{letter-spacing:-1.440000pt;}
.ls52{letter-spacing:-1.392000pt;}
.ls2a{letter-spacing:-1.344000pt;}
.ls2c{letter-spacing:-1.296000pt;}
.ls33{letter-spacing:-1.248000pt;}
.ls21{letter-spacing:-1.200000pt;}
.ls1f{letter-spacing:-1.152000pt;}
.lsc{letter-spacing:-1.120000pt;}
.ls3a{letter-spacing:-1.109333pt;}
.ls43{letter-spacing:-1.104000pt;}
.ls73{letter-spacing:-1.066667pt;}
.ls57{letter-spacing:-1.056000pt;}
.ls62{letter-spacing:-1.024000pt;}
.ls4c{letter-spacing:-1.008000pt;}
.ls46{letter-spacing:-0.960000pt;}
.ls45{letter-spacing:-0.912000pt;}
.ls6d{letter-spacing:-0.896000pt;}
.ls51{letter-spacing:-0.864000pt;}
.ls40{letter-spacing:-0.768000pt;}
.ls50{letter-spacing:-0.720000pt;}
.ls20{letter-spacing:-0.672000pt;}
.ls69{letter-spacing:-0.640000pt;}
.ls58{letter-spacing:-0.624000pt;}
.ls1c{letter-spacing:-0.576000pt;}
.ls10{letter-spacing:-0.528000pt;}
.ls66{letter-spacing:-0.512000pt;}
.ls3c{letter-spacing:-0.480000pt;}
.ls76{letter-spacing:-0.469333pt;}
.ls11{letter-spacing:-0.432000pt;}
.ls6f{letter-spacing:-0.426667pt;}
.ls26{letter-spacing:-0.384000pt;}
.ls64{letter-spacing:-0.341333pt;}
.ls44{letter-spacing:-0.336000pt;}
.ls6e{letter-spacing:-0.298667pt;}
.ls37{letter-spacing:-0.288000pt;}
.ls8{letter-spacing:-0.280000pt;}
.ls60{letter-spacing:-0.256000pt;}
.ls15{letter-spacing:-0.240000pt;}
.ls5b{letter-spacing:-0.213333pt;}
.ls24{letter-spacing:-0.192000pt;}
.ls68{letter-spacing:-0.170667pt;}
.ls29{letter-spacing:-0.144000pt;}
.ls6c{letter-spacing:-0.128000pt;}
.ls1d{letter-spacing:-0.096000pt;}
.ls67{letter-spacing:-0.085333pt;}
.ls22{letter-spacing:-0.048000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls72{letter-spacing:0.085333pt;}
.lse{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.120000pt;}
.ls47{letter-spacing:0.128000pt;}
.ls3e{letter-spacing:0.144000pt;}
.ls1a{letter-spacing:0.192000pt;}
.ls63{letter-spacing:0.213333pt;}
.ls4d{letter-spacing:0.240000pt;}
.ls32{letter-spacing:0.288000pt;}
.ls3d{letter-spacing:0.298667pt;}
.ls9{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.336000pt;}
.ls61{letter-spacing:0.341333pt;}
.ls3b{letter-spacing:0.384000pt;}
.ls41{letter-spacing:0.410667pt;}
.ls2d{letter-spacing:0.432000pt;}
.ls16{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.520000pt;}
.lsd{letter-spacing:0.528000pt;}
.ls0{letter-spacing:0.533333pt;}
.ls5d{letter-spacing:0.554667pt;}
.ls1e{letter-spacing:0.576000pt;}
.ls5f{letter-spacing:0.597333pt;}
.lsb{letter-spacing:0.600000pt;}
.ls27{letter-spacing:0.624000pt;}
.ls48{letter-spacing:0.640000pt;}
.ls3{letter-spacing:0.671733pt;}
.ls18{letter-spacing:0.672000pt;}
.lsf{letter-spacing:0.720000pt;}
.ls70{letter-spacing:0.725333pt;}
.ls74{letter-spacing:0.768000pt;}
.ls6a{letter-spacing:0.810667pt;}
.ls4a{letter-spacing:0.816000pt;}
.ls39{letter-spacing:0.853333pt;}
.ls12{letter-spacing:0.864000pt;}
.ls4{letter-spacing:0.873867pt;}
.ls71{letter-spacing:0.938667pt;}
.ls54{letter-spacing:1.008000pt;}
.ls35{letter-spacing:1.104000pt;}
.lsa{letter-spacing:1.120000pt;}
.ls28{letter-spacing:1.152000pt;}
.ls2b{letter-spacing:1.248000pt;}
.ls25{letter-spacing:1.344000pt;}
.ls30{letter-spacing:1.392000pt;}
.ls4e{letter-spacing:1.440000pt;}
.ls5a{letter-spacing:1.536000pt;}
.ls31{letter-spacing:1.632000pt;}
.ls6b{letter-spacing:1.920000pt;}
.ls13{letter-spacing:1.968000pt;}
.ls75{letter-spacing:2.688000pt;}
.ls2{letter-spacing:66.666133pt;}
.ls1{letter-spacing:66.666667pt;}
.ws9{word-spacing:-13.248000pt;}
.ws96{word-spacing:-12.816000pt;}
.ws1f{word-spacing:-12.624000pt;}
.ws30{word-spacing:-12.528000pt;}
.ws37{word-spacing:-12.432000pt;}
.ws8d{word-spacing:-12.288000pt;}
.ws8{word-spacing:-12.144000pt;}
.ws70{word-spacing:-12.096000pt;}
.ws1a{word-spacing:-12.000000pt;}
.ws36{word-spacing:-11.808000pt;}
.ws50{word-spacing:-11.760000pt;}
.ws33{word-spacing:-11.712000pt;}
.ws47{word-spacing:-11.664000pt;}
.ws7a{word-spacing:-11.568000pt;}
.ws71{word-spacing:-11.520000pt;}
.ws81{word-spacing:-11.472000pt;}
.ws90{word-spacing:-11.424000pt;}
.ws6{word-spacing:-11.413333pt;}
.ws1b{word-spacing:-11.280000pt;}
.ws95{word-spacing:-11.184000pt;}
.ws35{word-spacing:-11.136000pt;}
.ws1e{word-spacing:-11.088000pt;}
.ws72{word-spacing:-11.040000pt;}
.ws67{word-spacing:-10.992000pt;}
.ws2f{word-spacing:-10.896000pt;}
.ws1d{word-spacing:-10.848000pt;}
.ws9b{word-spacing:-10.837333pt;}
.ws7{word-spacing:-10.752000pt;}
.ws19{word-spacing:-10.704000pt;}
.ws1c{word-spacing:-10.608000pt;}
.ws5{word-spacing:-10.520000pt;}
.ws94{word-spacing:-10.512000pt;}
.ws8f{word-spacing:-10.224000pt;}
.ws99{word-spacing:-10.154667pt;}
.ws20{word-spacing:-10.128000pt;}
.ws31{word-spacing:-10.080000pt;}
.ws97{word-spacing:-10.026667pt;}
.ws32{word-spacing:-9.984000pt;}
.ws44{word-spacing:-9.936000pt;}
.ws1{word-spacing:-9.920000pt;}
.ws9c{word-spacing:-9.898667pt;}
.ws34{word-spacing:-9.840000pt;}
.ws4{word-spacing:-9.720000pt;}
.ws9a{word-spacing:-9.685333pt;}
.ws2{word-spacing:-9.520000pt;}
.ws52{word-spacing:-9.445333pt;}
.ws98{word-spacing:-9.386667pt;}
.ws69{word-spacing:-9.264000pt;}
.ws8e{word-spacing:-9.216000pt;}
.ws9d{word-spacing:-9.173333pt;}
.ws3{word-spacing:-9.120000pt;}
.wsa{word-spacing:-9.072000pt;}
.ws8c{word-spacing:-9.024000pt;}
.ws18{word-spacing:-8.880000pt;}
.ws0{word-spacing:-8.773333pt;}
.ws4b{word-spacing:-8.698667pt;}
.ws6f{word-spacing:-8.592000pt;}
.wsb2{word-spacing:-7.338667pt;}
.ws91{word-spacing:-3.412800pt;}
.wsbb{word-spacing:-2.688000pt;}
.wsae{word-spacing:-1.920000pt;}
.ws3b{word-spacing:-1.632000pt;}
.ws76{word-spacing:-1.440000pt;}
.ws3a{word-spacing:-1.392000pt;}
.ws2c{word-spacing:-1.152000pt;}
.ws42{word-spacing:-1.104000pt;}
.wsb6{word-spacing:-0.938667pt;}
.ws25{word-spacing:-0.864000pt;}
.ws4e{word-spacing:-0.853333pt;}
.wsad{word-spacing:-0.810667pt;}
.wsba{word-spacing:-0.768000pt;}
.wsb3{word-spacing:-0.725333pt;}
.ws10{word-spacing:-0.720000pt;}
.ws15{word-spacing:-0.672000pt;}
.ws6e{word-spacing:-0.640000pt;}
.ws2b{word-spacing:-0.624000pt;}
.wsd{word-spacing:-0.600000pt;}
.wsa3{word-spacing:-0.597333pt;}
.ws23{word-spacing:-0.576000pt;}
.wsc{word-spacing:-0.533333pt;}
.wse{word-spacing:-0.528000pt;}
.ws13{word-spacing:-0.480000pt;}
.ws4d{word-spacing:-0.432000pt;}
.ws57{word-spacing:-0.410667pt;}
.ws9f{word-spacing:-0.384000pt;}
.wsa5{word-spacing:-0.341333pt;}
.ws40{word-spacing:-0.336000pt;}
.ws3c{word-spacing:-0.288000pt;}
.ws8b{word-spacing:-0.240000pt;}
.wsa7{word-spacing:-0.213333pt;}
.ws17{word-spacing:-0.192000pt;}
.ws53{word-spacing:-0.144000pt;}
.ws6d{word-spacing:-0.128000pt;}
.wsf{word-spacing:-0.096000pt;}
.wsb7{word-spacing:-0.085333pt;}
.wsb{word-spacing:0.000000pt;}
.ws28{word-spacing:0.048000pt;}
.wsaa{word-spacing:0.085333pt;}
.ws22{word-spacing:0.096000pt;}
.wsaf{word-spacing:0.128000pt;}
.ws2d{word-spacing:0.144000pt;}
.wsab{word-spacing:0.170667pt;}
.ws3f{word-spacing:0.192000pt;}
.wsa1{word-spacing:0.213333pt;}
.ws12{word-spacing:0.240000pt;}
.wsa4{word-spacing:0.256000pt;}
.ws43{word-spacing:0.288000pt;}
.wsb1{word-spacing:0.298667pt;}
.wsb5{word-spacing:0.341333pt;}
.ws2a{word-spacing:0.384000pt;}
.wsb4{word-spacing:0.426667pt;}
.ws11{word-spacing:0.432000pt;}
.wsbc{word-spacing:0.469333pt;}
.ws56{word-spacing:0.480000pt;}
.wsa9{word-spacing:0.512000pt;}
.ws27{word-spacing:0.528000pt;}
.ws21{word-spacing:0.576000pt;}
.ws93{word-spacing:0.624000pt;}
.wsac{word-spacing:0.640000pt;}
.ws78{word-spacing:0.720000pt;}
.ws55{word-spacing:0.768000pt;}
.ws79{word-spacing:0.864000pt;}
.wsb0{word-spacing:0.896000pt;}
.ws74{word-spacing:1.008000pt;}
.wsa6{word-spacing:1.024000pt;}
.wsb9{word-spacing:1.066667pt;}
.ws75{word-spacing:1.104000pt;}
.ws4f{word-spacing:1.109333pt;}
.ws24{word-spacing:1.152000pt;}
.ws26{word-spacing:1.200000pt;}
.ws3e{word-spacing:1.248000pt;}
.ws3d{word-spacing:1.296000pt;}
.ws2e{word-spacing:1.344000pt;}
.ws4c{word-spacing:1.536000pt;}
.ws39{word-spacing:1.632000pt;}
.ws14{word-spacing:1.776000pt;}
.wsbd{word-spacing:1.792000pt;}
.wsb8{word-spacing:1.920000pt;}
.ws16{word-spacing:2.016000pt;}
.ws77{word-spacing:2.160000pt;}
.ws41{word-spacing:2.208000pt;}
.ws54{word-spacing:2.496000pt;}
.ws9e{word-spacing:2.784000pt;}
.wsa8{word-spacing:2.901333pt;}
.wsa2{word-spacing:3.072000pt;}
.ws92{word-spacing:3.696000pt;}
.ws38{word-spacing:4.027200pt;}
.ws73{word-spacing:4.800000pt;}
.ws6c{word-spacing:5.280000pt;}
.wsa0{word-spacing:10.026667pt;}
.ws29{word-spacing:11.280000pt;}
.ws7d{word-spacing:62.587200pt;}
.ws5a{word-spacing:79.785600pt;}
.ws48{word-spacing:131.380800pt;}
.ws4a{word-spacing:210.916800pt;}
.ws82{word-spacing:212.971200pt;}
.ws5e{word-spacing:217.497600pt;}
.ws85{word-spacing:237.124800pt;}
.ws49{word-spacing:237.379200pt;}
.ws7f{word-spacing:238.099200pt;}
.ws80{word-spacing:238.636800pt;}
.ws7e{word-spacing:239.092800pt;}
.ws86{word-spacing:241.339200pt;}
.ws84{word-spacing:242.097600pt;}
.ws60{word-spacing:245.222400pt;}
.ws62{word-spacing:245.923200pt;}
.ws61{word-spacing:247.891200pt;}
.ws5d{word-spacing:248.966400pt;}
.ws5b{word-spacing:249.686400pt;}
.ws5c{word-spacing:252.091200pt;}
.ws88{word-spacing:253.161600pt;}
.ws8a{word-spacing:254.328000pt;}
.ws66{word-spacing:255.806400pt;}
.ws89{word-spacing:256.900800pt;}
.ws64{word-spacing:262.440000pt;}
.ws65{word-spacing:274.996800pt;}
.ws63{word-spacing:286.920000pt;}
.ws46{word-spacing:298.612800pt;}
.ws87{word-spacing:326.616000pt;}
.ws68{word-spacing:339.091200pt;}
.ws59{word-spacing:339.220267pt;}
.ws5f{word-spacing:350.452800pt;}
.ws7c{word-spacing:365.148267pt;}
.ws83{word-spacing:380.692800pt;}
.ws51{word-spacing:513.172800pt;}
.ws6b{word-spacing:616.872000pt;}
.ws6a{word-spacing:669.364800pt;}
.ws45{word-spacing:818.438400pt;}
.ws7b{word-spacing:1185.275733pt;}
.ws58{word-spacing:1191.052267pt;}
._5{margin-left:-11.514667pt;}
._e{margin-left:-10.405333pt;}
._8{margin-left:-9.269333pt;}
._1e{margin-left:-5.666667pt;}
._1c{margin-left:-4.675200pt;}
._4{margin-left:-3.014400pt;}
._3{margin-left:-1.866667pt;}
._1{margin-left:-0.933333pt;}
._2{width:1.018667pt;}
._0{width:2.400000pt;}
._9{width:4.010667pt;}
._a{width:5.396267pt;}
._c{width:6.372800pt;}
._b{width:7.962133pt;}
._d{width:9.069867pt;}
._7{width:10.768000pt;}
._3d{width:11.667733pt;}
._6{width:12.824000pt;}
._10{width:14.259733pt;}
._13{width:15.484800pt;}
._11{width:16.896000pt;}
._12{width:17.974400pt;}
._23{width:19.275733pt;}
._22{width:20.216533pt;}
._26{width:21.259733pt;}
._29{width:22.341867pt;}
._28{width:23.545067pt;}
._27{width:24.585600pt;}
._3a{width:26.005867pt;}
._36{width:26.912533pt;}
._3e{width:28.089600pt;}
._3f{width:29.081600pt;}
._37{width:31.362133pt;}
._3c{width:34.141333pt;}
._39{width:35.826667pt;}
._38{width:36.752533pt;}
._2b{width:38.536000pt;}
._2a{width:40.000000pt;}
._3b{width:46.542933pt;}
._2c{width:64.418667pt;}
._2d{width:65.571733pt;}
._32{width:70.130133pt;}
._30{width:72.794133pt;}
._31{width:73.760000pt;}
._1f{width:80.997333pt;}
._1d{width:84.500267pt;}
._20{width:202.688000pt;}
._33{width:231.104000pt;}
._2e{width:276.557867pt;}
._1a{width:287.813867pt;}
._16{width:293.248000pt;}
._2f{width:325.395200pt;}
._1b{width:335.162133pt;}
._17{width:481.808000pt;}
._25{width:484.133333pt;}
._24{width:521.552000pt;}
._19{width:527.237333pt;}
._14{width:630.917333pt;}
._15{width:665.381333pt;}
._18{width:674.453333pt;}
._21{width:1648.469333pt;}
._34{width:1654.181333pt;}
._35{width:1954.304533pt;}
._f{width:1978.064533pt;}
.fs8{font-size:25.013333pt;}
.fs5{font-size:28.000000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:33.600000pt;}
.fs1{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:25.771867pt;}
.y1{bottom:36.940933pt;}
.y2{bottom:36.971867pt;}
.y3a{bottom:65.809600pt;}
.y13e{bottom:68.760000pt;}
.y28b{bottom:69.573733pt;}
.y273{bottom:69.643067pt;}
.y6f{bottom:69.750933pt;}
.ya7{bottom:69.897600pt;}
.y25b{bottom:70.038933pt;}
.y22c{bottom:70.662933pt;}
.y2c4{bottom:70.693733pt;}
.y2a8{bottom:70.765733pt;}
.y19a{bottom:76.760000pt;}
.y1fe{bottom:78.093333pt;}
.y350{bottom:80.450933pt;}
.y314{bottom:81.473600pt;}
.y39{bottom:81.809600pt;}
.y2d9{bottom:82.006933pt;}
.y17e{bottom:84.760000pt;}
.y28a{bottom:84.909733pt;}
.y272{bottom:84.979067pt;}
.ydf{bottom:85.084933pt;}
.y6e{bottom:85.086933pt;}
.y114{bottom:85.220267pt;}
.ya6{bottom:85.233600pt;}
.y22b{bottom:85.998933pt;}
.y2c3{bottom:86.029733pt;}
.y2a7{bottom:86.101733pt;}
.y25a{bottom:87.366933pt;}
.y13d{bottom:89.126267pt;}
.y34f{bottom:93.784267pt;}
.y313{bottom:94.806933pt;}
.y38{bottom:95.145600pt;}
.y2d8{bottom:95.340267pt;}
.y13b{bottom:96.266267pt;}
.y289{bottom:100.245733pt;}
.yde{bottom:100.420933pt;}
.y6d{bottom:100.422933pt;}
.y113{bottom:100.556267pt;}
.ya5{bottom:100.569600pt;}
.y22a{bottom:101.334933pt;}
.y2c2{bottom:101.365733pt;}
.y2a6{bottom:101.437733pt;}
.y13c{bottom:104.462267pt;}
.y259{bottom:104.694933pt;}
.y17d{bottom:105.144400pt;}
.y2d7{bottom:108.673600pt;}
.y13a{bottom:111.602267pt;}
.y34e{bottom:113.784267pt;}
.y312{bottom:114.934933pt;}
.y288{bottom:115.581733pt;}
.y271{bottom:115.651067pt;}
.ydd{bottom:115.756933pt;}
.y6c{bottom:115.758933pt;}
.y112{bottom:115.892267pt;}
.ya4{bottom:115.905600pt;}
.y229{bottom:116.670933pt;}
.y2c1{bottom:116.701733pt;}
.y2a5{bottom:116.773733pt;}
.y258{bottom:122.022933pt;}
.y139{bottom:126.938267pt;}
.y34d{bottom:127.117600pt;}
.y17c{bottom:127.620400pt;}
.y311{bottom:128.268267pt;}
.y2d6{bottom:129.484267pt;}
.y287{bottom:130.917733pt;}
.ydc{bottom:131.092933pt;}
.y6b{bottom:131.094933pt;}
.y111{bottom:131.228267pt;}
.ya3{bottom:131.241600pt;}
.y228{bottom:132.006933pt;}
.y2c0{bottom:132.037733pt;}
.y2a4{bottom:132.109733pt;}
.y270{bottom:132.979067pt;}
.y37{bottom:133.617600pt;}
.y28{bottom:133.653600pt;}
.y257{bottom:139.350933pt;}
.y34c{bottom:140.450933pt;}
.y310{bottom:141.601600pt;}
.y2d5{bottom:142.817600pt;}
.y286{bottom:146.253733pt;}
.y6a{bottom:146.430933pt;}
.y110{bottom:146.564267pt;}
.ya2{bottom:146.577600pt;}
.y227{bottom:147.342933pt;}
.y2a3{bottom:147.445733pt;}
.y36{bottom:148.953600pt;}
.y27{bottom:148.989600pt;}
.y138{bottom:149.414267pt;}
.y17b{bottom:150.096400pt;}
.y2d4{bottom:156.150933pt;}
.y256{bottom:156.678933pt;}
.y34b{bottom:160.450933pt;}
.y285{bottom:161.589733pt;}
.y30f{bottom:161.729600pt;}
.ydb{bottom:161.764933pt;}
.y69{bottom:161.766933pt;}
.y10f{bottom:161.900267pt;}
.y2bf{bottom:162.037733pt;}
.y226{bottom:162.678933pt;}
.y2a2{bottom:162.781733pt;}
.y35{bottom:164.289600pt;}
.y26{bottom:164.325600pt;}
.y137{bottom:164.750267pt;}
.y26f{bottom:165.643067pt;}
.y136{bottom:171.890267pt;}
.y17a{bottom:172.572400pt;}
.y34a{bottom:173.784267pt;}
.y255{bottom:174.006933pt;}
.y30e{bottom:175.062933pt;}
.y284{bottom:176.925733pt;}
.y2d3{bottom:176.961600pt;}
.yda{bottom:177.100933pt;}
.y68{bottom:177.102933pt;}
.y10e{bottom:177.236267pt;}
.ya1{bottom:177.244267pt;}
.y2be{bottom:177.373733pt;}
.y2a1{bottom:178.117733pt;}
.y34{bottom:179.625600pt;}
.y25{bottom:179.661600pt;}
.y26e{bottom:180.979067pt;}
.y349{bottom:187.117600pt;}
.y135{bottom:187.226267pt;}
.y30d{bottom:188.396267pt;}
.y2d2{bottom:190.294933pt;}
.y254{bottom:191.334933pt;}
.y283{bottom:192.261733pt;}
.yd9{bottom:192.436933pt;}
.y10d{bottom:192.572267pt;}
.ya0{bottom:192.577600pt;}
.y2bd{bottom:192.709733pt;}
.y2a0{bottom:193.453733pt;}
.y225{bottom:194.010933pt;}
.y33{bottom:194.961600pt;}
.y24{bottom:194.997600pt;}
.y179{bottom:195.048400pt;}
.y178{bottom:202.188400pt;}
.y134{bottom:202.562267pt;}
.y2d1{bottom:203.628267pt;}
.y348{bottom:207.117600pt;}
.y282{bottom:207.597733pt;}
.yd8{bottom:207.772933pt;}
.y67{bottom:207.774933pt;}
.y10c{bottom:207.908267pt;}
.y9f{bottom:207.910933pt;}
.y2bc{bottom:208.045733pt;}
.y30c{bottom:208.534933pt;}
.y29f{bottom:208.789733pt;}
.y32{bottom:210.297600pt;}
.y23{bottom:210.333600pt;}
.y224{bottom:211.338933pt;}
.y26d{bottom:211.651067pt;}
.y177{bottom:217.524400pt;}
.y347{bottom:220.450933pt;}
.y30b{bottom:221.868267pt;}
.y281{bottom:222.933733pt;}
.yd7{bottom:223.108933pt;}
.y66{bottom:223.110933pt;}
.y10b{bottom:223.244267pt;}
.y2bb{bottom:223.381733pt;}
.y29e{bottom:224.125733pt;}
.y2d0{bottom:224.438933pt;}
.y253{bottom:224.670933pt;}
.y132{bottom:225.302267pt;}
.y31{bottom:225.633600pt;}
.y22{bottom:225.669600pt;}
.y223{bottom:228.666933pt;}
.y26c{bottom:228.979067pt;}
.y30a{bottom:235.201600pt;}
.y2cf{bottom:237.772267pt;}
.yd6{bottom:238.444933pt;}
.y65{bottom:238.446933pt;}
.y2ba{bottom:238.717733pt;}
.y176{bottom:240.000400pt;}
.y346{bottom:240.450933pt;}
.y133{bottom:240.638267pt;}
.y30{bottom:240.969600pt;}
.y21{bottom:241.005600pt;}
.y252{bottom:241.998933pt;}
.y222{bottom:245.994933pt;}
.y26b{bottom:246.307067pt;}
.y309{bottom:248.534933pt;}
.y2ce{bottom:251.105600pt;}
.y280{bottom:253.605733pt;}
.y9e{bottom:253.626933pt;}
.yd5{bottom:253.780933pt;}
.y64{bottom:253.782933pt;}
.y345{bottom:253.784267pt;}
.y10a{bottom:253.910933pt;}
.y2b9{bottom:254.053733pt;}
.y29d{bottom:254.125733pt;}
.y2f{bottom:256.305600pt;}
.y20{bottom:256.341600pt;}
.y251{bottom:259.326933pt;}
.y175{bottom:262.476400pt;}
.y221{bottom:263.322933pt;}
.y131{bottom:266.012933pt;}
.y308{bottom:268.662933pt;}
.y27f{bottom:268.941733pt;}
.y9d{bottom:268.962933pt;}
.yd4{bottom:269.116933pt;}
.y63{bottom:269.118933pt;}
.y2b8{bottom:269.389733pt;}
.y29c{bottom:269.461733pt;}
.y2e{bottom:271.641600pt;}
.y1f{bottom:271.677600pt;}
.y2cd{bottom:271.916267pt;}
.y344{bottom:273.784267pt;}
.y250{bottom:276.654933pt;}
.y26a{bottom:278.971067pt;}
.y220{bottom:280.650933pt;}
.y307{bottom:281.996267pt;}
.y27e{bottom:284.277733pt;}
.y9c{bottom:284.298933pt;}
.yd3{bottom:284.452933pt;}
.y62{bottom:284.454933pt;}
.y2b7{bottom:284.725733pt;}
.y29b{bottom:284.797733pt;}
.y174{bottom:284.952400pt;}
.y2cc{bottom:285.249600pt;}
.y2d{bottom:286.977600pt;}
.y1e{bottom:287.013600pt;}
.y343{bottom:287.117600pt;}
.y24f{bottom:293.982933pt;}
.y269{bottom:296.299067pt;}
.y21f{bottom:297.978933pt;}
.y27d{bottom:299.613733pt;}
.y109{bottom:299.632933pt;}
.y9b{bottom:299.634933pt;}
.yd2{bottom:299.788933pt;}
.y61{bottom:299.790933pt;}
.y2b6{bottom:300.061733pt;}
.y29a{bottom:300.133733pt;}
.y342{bottom:300.450933pt;}
.y306{bottom:302.134933pt;}
.y2c{bottom:302.313600pt;}
.y1d{bottom:302.349600pt;}
.y2cb{bottom:305.910933pt;}
.y130{bottom:306.207600pt;}
.y173{bottom:307.428400pt;}
.y24e{bottom:311.310933pt;}
.y268{bottom:313.627067pt;}
.y341{bottom:313.784267pt;}
.y27c{bottom:314.949733pt;}
.y108{bottom:314.968933pt;}
.y9a{bottom:314.970933pt;}
.yd1{bottom:315.124933pt;}
.y2b5{bottom:315.397733pt;}
.y305{bottom:315.468267pt;}
.y299{bottom:315.469733pt;}
.y24d{bottom:328.638933pt;}
.y304{bottom:328.801600pt;}
.y172{bottom:329.904400pt;}
.y27b{bottom:330.285733pt;}
.y107{bottom:330.304933pt;}
.y99{bottom:330.306933pt;}
.yd0{bottom:330.460933pt;}
.y60{bottom:330.462933pt;}
.y298{bottom:330.805733pt;}
.y267{bottom:330.955067pt;}
.y21e{bottom:331.314933pt;}
.y2b{bottom:332.985600pt;}
.y1c{bottom:333.016267pt;}
.y340{bottom:333.784267pt;}
.y2b4{bottom:345.397733pt;}
.y106{bottom:345.640933pt;}
.y98{bottom:345.642933pt;}
.ycf{bottom:345.796933pt;}
.y5f{bottom:345.798933pt;}
.y2ca{bottom:345.910933pt;}
.y297{bottom:346.141733pt;}
.y21d{bottom:346.650933pt;}
.y33f{bottom:347.117600pt;}
.y2a{bottom:348.321600pt;}
.y1b{bottom:348.349600pt;}
.y303{bottom:348.929600pt;}
.y171{bottom:352.380400pt;}
.y2c9{bottom:359.244267pt;}
.y2b3{bottom:360.733733pt;}
.y27a{bottom:360.952400pt;}
.y105{bottom:360.976933pt;}
.y97{bottom:360.978933pt;}
.yce{bottom:361.132933pt;}
.y5e{bottom:361.134933pt;}
.y24c{bottom:361.974933pt;}
.y302{bottom:362.262933pt;}
.y266{bottom:363.619067pt;}
.y29{bottom:363.657600pt;}
.y1a{bottom:363.682933pt;}
.y33e{bottom:367.117600pt;}
.y170{bottom:375.120400pt;}
.y301{bottom:375.596267pt;}
.y2b2{bottom:376.069733pt;}
.y296{bottom:376.141733pt;}
.y104{bottom:376.312933pt;}
.y96{bottom:376.314933pt;}
.y5d{bottom:376.470933pt;}
.y24b{bottom:377.310933pt;}
.y21c{bottom:377.982933pt;}
.y2c8{bottom:379.244267pt;}
.y33d{bottom:380.450933pt;}
.y265{bottom:380.947067pt;}
.y300{bottom:388.929600pt;}
.y2b1{bottom:391.405733pt;}
.y295{bottom:391.477733pt;}
.y103{bottom:391.648933pt;}
.y95{bottom:391.650933pt;}
.ycd{bottom:391.804933pt;}
.y5c{bottom:391.806933pt;}
.y24a{bottom:392.646933pt;}
.y33c{bottom:393.784267pt;}
.y21b{bottom:395.310933pt;}
.y264{bottom:398.275067pt;}
.y16f{bottom:400.497600pt;}
.y279{bottom:405.643067pt;}
.y2b0{bottom:406.741733pt;}
.y294{bottom:406.813733pt;}
.y102{bottom:406.984933pt;}
.y94{bottom:406.986933pt;}
.y33b{bottom:407.117600pt;}
.ycc{bottom:407.140933pt;}
.y249{bottom:407.982933pt;}
.y2ff{bottom:409.057600pt;}
.y19{bottom:409.725600pt;}
.y2c7{bottom:412.577600pt;}
.y21a{bottom:412.638933pt;}
.y263{bottom:415.603067pt;}
.y33a{bottom:420.450933pt;}
.y2af{bottom:422.077733pt;}
.y293{bottom:422.149733pt;}
.y101{bottom:422.320933pt;}
.y93{bottom:422.322933pt;}
.y2fe{bottom:422.390933pt;}
.ycb{bottom:422.476933pt;}
.y5b{bottom:422.478933pt;}
.y278{bottom:422.971067pt;}
.y18{bottom:427.053600pt;}
.y219{bottom:429.966933pt;}
.y2c6{bottom:432.577600pt;}
.y2fd{bottom:435.724267pt;}
.y2ae{bottom:437.413733pt;}
.y292{bottom:437.485733pt;}
.y100{bottom:437.656933pt;}
.y92{bottom:437.658933pt;}
.yca{bottom:437.812933pt;}
.y5a{bottom:437.814933pt;}
.y150{bottom:437.865600pt;}
.y16e{bottom:437.876267pt;}
.y248{bottom:439.314933pt;}
.y277{bottom:440.299067pt;}
.y339{bottom:440.450933pt;}
.y17{bottom:444.381600pt;}
.y218{bottom:447.294933pt;}
.y262{bottom:448.267067pt;}
.y2ad{bottom:452.749733pt;}
.y291{bottom:452.821733pt;}
.yff{bottom:452.992933pt;}
.y91{bottom:452.994933pt;}
.yc9{bottom:453.148933pt;}
.y59{bottom:453.150933pt;}
.y14f{bottom:453.201600pt;}
.y16d{bottom:453.212267pt;}
.y338{bottom:453.784267pt;}
.y2fc{bottom:455.862933pt;}
.y247{bottom:456.642933pt;}
.y16{bottom:461.709600pt;}
.y261{bottom:463.603067pt;}
.y217{bottom:464.622933pt;}
.y337{bottom:467.117600pt;}
.y2ac{bottom:468.085733pt;}
.y290{bottom:468.157733pt;}
.y90{bottom:468.330933pt;}
.yc8{bottom:468.484933pt;}
.y58{bottom:468.486933pt;}
.y16c{bottom:468.548267pt;}
.y2fb{bottom:469.196267pt;}
.y276{bottom:472.963067pt;}
.y246{bottom:473.970933pt;}
.y260{bottom:478.939067pt;}
.y15{bottom:479.037600pt;}
.y336{bottom:480.450933pt;}
.y2fa{bottom:482.529600pt;}
.y2ab{bottom:483.421733pt;}
.y28f{bottom:483.493733pt;}
.yfe{bottom:483.664933pt;}
.y8f{bottom:483.666933pt;}
.y57{bottom:483.822933pt;}
.y14e{bottom:483.873600pt;}
.y16b{bottom:483.884267pt;}
.y275{bottom:490.291067pt;}
.y245{bottom:491.298933pt;}
.y199{bottom:493.539467pt;}
.y14{bottom:496.365600pt;}
.y216{bottom:497.958933pt;}
.y2aa{bottom:498.757733pt;}
.y28e{bottom:498.829733pt;}
.yfd{bottom:499.000933pt;}
.y8e{bottom:499.002933pt;}
.yc7{bottom:499.156933pt;}
.y56{bottom:499.158933pt;}
.y14d{bottom:499.209600pt;}
.y16a{bottom:499.220267pt;}
.y335{bottom:500.450933pt;}
.y1bb{bottom:500.622933pt;}
.y2f9{bottom:502.657600pt;}
.y1d1{bottom:503.262933pt;}
.y274{bottom:507.619067pt;}
.y244{bottom:508.626933pt;}
.y25f{bottom:509.611067pt;}
.y215{bottom:513.294933pt;}
.y13{bottom:513.693600pt;}
.y334{bottom:513.784267pt;}
.y198{bottom:513.915067pt;}
.y2a9{bottom:514.093733pt;}
.y28d{bottom:514.165733pt;}
.yfc{bottom:514.336933pt;}
.y8d{bottom:514.338933pt;}
.yc6{bottom:514.492933pt;}
.y55{bottom:514.494933pt;}
.y14c{bottom:514.545600pt;}
.y169{bottom:514.556267pt;}
.y1ba{bottom:515.958933pt;}
.y1d0{bottom:518.598933pt;}
.y2f8{bottom:522.785600pt;}
.y25e{bottom:524.947067pt;}
.y243{bottom:525.954933pt;}
.y333{bottom:527.117600pt;}
.y214{bottom:528.630933pt;}
.yfb{bottom:529.672933pt;}
.y8c{bottom:529.674933pt;}
.yc5{bottom:529.828933pt;}
.y54{bottom:529.830933pt;}
.y14b{bottom:529.881600pt;}
.y12{bottom:531.021600pt;}
.y1cf{bottom:533.934933pt;}
.y2f7{bottom:536.118933pt;}
.y197{bottom:536.391067pt;}
.y25d{bottom:540.283067pt;}
.y332{bottom:540.450933pt;}
.y242{bottom:543.282933pt;}
.y213{bottom:543.966933pt;}
.yfa{bottom:545.008933pt;}
.y8b{bottom:545.010933pt;}
.y2c5{bottom:545.103067pt;}
.yc4{bottom:545.164933pt;}
.y53{bottom:545.166933pt;}
.y14a{bottom:545.217600pt;}
.y168{bottom:545.228267pt;}
.y1b9{bottom:545.958933pt;}
.y11{bottom:548.349600pt;}
.y1ce{bottom:549.270933pt;}
.y1fd{bottom:552.880400pt;}
.y25c{bottom:555.619067pt;}
.y2f6{bottom:556.246933pt;}
.y196{bottom:558.867067pt;}
.yf9{bottom:560.344933pt;}
.y8a{bottom:560.346933pt;}
.y331{bottom:560.450933pt;}
.yc3{bottom:560.500933pt;}
.y52{bottom:560.502933pt;}
.y149{bottom:560.553600pt;}
.y167{bottom:560.564267pt;}
.y241{bottom:560.610933pt;}
.y1b8{bottom:563.286933pt;}
.y10{bottom:565.682933pt;}
.y2f5{bottom:569.580267pt;}
.y1fc{bottom:573.256000pt;}
.y330{bottom:573.784267pt;}
.y212{bottom:575.298933pt;}
.yf8{bottom:575.680933pt;}
.y89{bottom:575.682933pt;}
.yc2{bottom:575.836933pt;}
.y51{bottom:575.838933pt;}
.y148{bottom:575.889600pt;}
.y166{bottom:575.900267pt;}
.y12f{bottom:577.206933pt;}
.y1cd{bottom:580.602933pt;}
.y1b7{bottom:580.614933pt;}
.y195{bottom:581.343067pt;}
.y28c{bottom:583.503067pt;}
.y32f{bottom:587.117600pt;}
.y2f4{bottom:589.708267pt;}
.yf7{bottom:591.016933pt;}
.y88{bottom:591.018933pt;}
.yc1{bottom:591.172933pt;}
.y119{bottom:591.174933pt;}
.y165{bottom:591.236267pt;}
.y12e{bottom:592.542933pt;}
.y211{bottom:592.626933pt;}
.y240{bottom:593.946933pt;}
.y1fb{bottom:595.732000pt;}
.y1cc{bottom:597.930933pt;}
.y1b6{bottom:597.942933pt;}
.y1e6{bottom:600.582933pt;}
.y2f3{bottom:603.041600pt;}
.y194{bottom:603.819067pt;}
.yf{bottom:604.349600pt;}
.yf6{bottom:606.352933pt;}
.y87{bottom:606.354933pt;}
.yc0{bottom:606.508933pt;}
.y50{bottom:606.510933pt;}
.y147{bottom:606.561600pt;}
.y164{bottom:606.572267pt;}
.y32e{bottom:607.576267pt;}
.y12d{bottom:607.878933pt;}
.y23f{bottom:609.282933pt;}
.y210{bottom:609.954933pt;}
.y1cb{bottom:615.258933pt;}
.y1b5{bottom:615.270933pt;}
.y1e5{bottom:615.918933pt;}
.y1fa{bottom:618.208000pt;}
.y32d{bottom:620.909600pt;}
.yf5{bottom:621.688933pt;}
.y86{bottom:621.690933pt;}
.ybf{bottom:621.844933pt;}
.y4f{bottom:621.846933pt;}
.y146{bottom:621.897600pt;}
.y163{bottom:621.908267pt;}
.y2f2{bottom:623.180267pt;}
.y12c{bottom:623.214933pt;}
.y23e{bottom:624.618933pt;}
.ye{bottom:626.349600pt;}
.y193{bottom:626.557600pt;}
.y20f{bottom:627.282933pt;}
.y1e4{bottom:631.254933pt;}
.y1ca{bottom:632.586933pt;}
.y1b4{bottom:632.598933pt;}
.y2f1{bottom:636.513600pt;}
.yf4{bottom:637.024933pt;}
.y85{bottom:637.026933pt;}
.ybe{bottom:637.180933pt;}
.y4e{bottom:637.182933pt;}
.y145{bottom:637.233600pt;}
.y162{bottom:637.244267pt;}
.y12b{bottom:638.550933pt;}
.y23d{bottom:639.954933pt;}
.y1f9{bottom:640.684000pt;}
.y32c{bottom:641.368267pt;}
.y192{bottom:641.893600pt;}
.y20e{bottom:644.610933pt;}
.yd{bottom:647.679600pt;}
.y1c9{bottom:649.914933pt;}
.y1b3{bottom:649.926933pt;}
.y84{bottom:652.362933pt;}
.ybd{bottom:652.516933pt;}
.y4d{bottom:652.518933pt;}
.y144{bottom:652.569600pt;}
.y12a{bottom:653.886933pt;}
.y32b{bottom:654.701600pt;}
.y23c{bottom:655.290933pt;}
.y2f0{bottom:656.641600pt;}
.y20d{bottom:661.938933pt;}
.y1e3{bottom:662.586933pt;}
.y1f8{bottom:663.160000pt;}
.y191{bottom:664.369600pt;}
.y1c8{bottom:667.242933pt;}
.y1b2{bottom:667.254933pt;}
.yf3{bottom:667.696933pt;}
.y83{bottom:667.698933pt;}
.ybc{bottom:667.852933pt;}
.y4c{bottom:667.854933pt;}
.y143{bottom:667.905600pt;}
.y161{bottom:667.910933pt;}
.y32a{bottom:668.034933pt;}
.yc{bottom:669.009600pt;}
.y129{bottom:669.222933pt;}
.y2ef{bottom:669.974933pt;}
.y23b{bottom:670.626933pt;}
.y20c{bottom:679.266933pt;}
.y1e2{bottom:679.914933pt;}
.yf2{bottom:683.032933pt;}
.y82{bottom:683.034933pt;}
.y4b{bottom:683.190933pt;}
.y142{bottom:683.241600pt;}
.y2ee{bottom:683.308267pt;}
.y128{bottom:684.558933pt;}
.y1c7{bottom:684.570933pt;}
.y1b1{bottom:684.582933pt;}
.y1f7{bottom:685.898667pt;}
.y23a{bottom:685.962933pt;}
.y329{bottom:688.493600pt;}
.y190{bottom:689.746933pt;}
.yb{bottom:693.679600pt;}
.y1e1{bottom:697.242933pt;}
.yf1{bottom:698.368933pt;}
.y81{bottom:698.370933pt;}
.ybb{bottom:698.524933pt;}
.y4a{bottom:698.526933pt;}
.y141{bottom:698.577600pt;}
.y127{bottom:699.894933pt;}
.y1f6{bottom:701.234667pt;}
.y328{bottom:701.826933pt;}
.y1b0{bottom:701.910933pt;}
.y2ed{bottom:703.446933pt;}
.ya{bottom:711.679600pt;}
.y20b{bottom:712.602933pt;}
.y80{bottom:713.706933pt;}
.y160{bottom:713.817600pt;}
.yba{bottom:713.860933pt;}
.y49{bottom:713.862933pt;}
.y1e0{bottom:714.570933pt;}
.y327{bottom:715.160267pt;}
.y2ec{bottom:716.780267pt;}
.y239{bottom:717.294933pt;}
.y1c6{bottom:717.906933pt;}
.y1af{bottom:719.238933pt;}
.y1a2{bottom:723.235867pt;}
.y1f5{bottom:723.710667pt;}
.y20a{bottom:727.938933pt;}
.yf0{bottom:729.040933pt;}
.y7f{bottom:729.042933pt;}
.y15f{bottom:729.153600pt;}
.y18f{bottom:729.186933pt;}
.yb9{bottom:729.196933pt;}
.y48{bottom:729.198933pt;}
.y140{bottom:729.244267pt;}
.y2eb{bottom:730.113600pt;}
.y126{bottom:730.566933pt;}
.y1c5{bottom:733.242933pt;}
.y1d9{bottom:733.914933pt;}
.y238{bottom:734.622933pt;}
.y326{bottom:735.618933pt;}
.y9{bottom:736.349600pt;}
.y209{bottom:743.274933pt;}
.y1a1{bottom:743.610533pt;}
.yef{bottom:744.376933pt;}
.y15e{bottom:744.489600pt;}
.y18e{bottom:744.522933pt;}
.yb8{bottom:744.532933pt;}
.y118{bottom:744.534933pt;}
.y125{bottom:745.902933pt;}
.y1df{bottom:747.906933pt;}
.y1c4{bottom:748.578933pt;}
.y325{bottom:748.952267pt;}
.y1f4{bottom:749.087867pt;}
.y1d8{bottom:749.250933pt;}
.y2ea{bottom:750.241600pt;}
.y1ae{bottom:751.242933pt;}
.y237{bottom:751.950933pt;}
.yee{bottom:759.712933pt;}
.y7e{bottom:759.714933pt;}
.y15d{bottom:759.825600pt;}
.y18d{bottom:759.858933pt;}
.yb7{bottom:759.868933pt;}
.y47{bottom:759.870933pt;}
.y124{bottom:761.238933pt;}
.y324{bottom:762.285600pt;}
.y1de{bottom:763.242933pt;}
.y2e9{bottom:763.574933pt;}
.y1c3{bottom:763.914933pt;}
.y8{bottom:764.333600pt;}
.y1d7{bottom:764.586933pt;}
.y1a0{bottom:766.086533pt;}
.y1ad{bottom:766.578933pt;}
.y236{bottom:769.278933pt;}
.y208{bottom:774.606933pt;}
.yed{bottom:775.048933pt;}
.y7d{bottom:775.050933pt;}
.yb6{bottom:775.204933pt;}
.y46{bottom:775.206933pt;}
.y323{bottom:775.618933pt;}
.y123{bottom:776.574933pt;}
.y2e8{bottom:776.908267pt;}
.y1dd{bottom:778.578933pt;}
.y1c2{bottom:779.250933pt;}
.y1d6{bottom:779.922933pt;}
.y1ac{bottom:781.914933pt;}
.y235{bottom:786.606933pt;}
.y19f{bottom:788.562533pt;}
.yec{bottom:790.384933pt;}
.y7c{bottom:790.386933pt;}
.y15c{bottom:790.497600pt;}
.y18c{bottom:790.530933pt;}
.yb5{bottom:790.540933pt;}
.y45{bottom:790.542933pt;}
.y122{bottom:791.910933pt;}
.y207{bottom:791.934933pt;}
.y7{bottom:792.341600pt;}
.y1c1{bottom:794.586933pt;}
.y1d5{bottom:795.258933pt;}
.y322{bottom:796.077600pt;}
.y1f3{bottom:796.578933pt;}
.y2e7{bottom:797.036267pt;}
.y1ab{bottom:797.250933pt;}
.y1ef{bottom:798.570933pt;}
.y234{bottom:803.934933pt;}
.yeb{bottom:805.720933pt;}
.y7b{bottom:805.722933pt;}
.y15b{bottom:805.833600pt;}
.y18b{bottom:805.866933pt;}
.yb4{bottom:805.876933pt;}
.y44{bottom:805.878933pt;}
.y206{bottom:809.262933pt;}
.y321{bottom:809.410933pt;}
.y1dc{bottom:809.910933pt;}
.y2e6{bottom:810.369600pt;}
.y1d4{bottom:810.594933pt;}
.y19e{bottom:811.038533pt;}
.y1aa{bottom:812.586933pt;}
.y1ee{bottom:813.906933pt;}
.y6{bottom:820.349600pt;}
.yea{bottom:821.056933pt;}
.y7a{bottom:821.058933pt;}
.y15a{bottom:821.169600pt;}
.y18a{bottom:821.202933pt;}
.yb3{bottom:821.212933pt;}
.y117{bottom:821.214933pt;}
.y233{bottom:821.262933pt;}
.y121{bottom:822.577600pt;}
.y320{bottom:822.744267pt;}
.y2e5{bottom:823.702933pt;}
.y35c{bottom:824.109600pt;}
.y1c0{bottom:825.918933pt;}
.y1d3{bottom:825.930933pt;}
.y205{bottom:826.590933pt;}
.y1db{bottom:827.238933pt;}
.y1a9{bottom:827.922933pt;}
.y43{bottom:828.882933pt;}
.y1ed{bottom:829.242933pt;}
.y1f2{bottom:831.234933pt;}
.y19d{bottom:833.778533pt;}
.y31f{bottom:836.077600pt;}
.ye9{bottom:836.392933pt;}
.y79{bottom:836.394933pt;}
.y159{bottom:836.505600pt;}
.y189{bottom:836.538933pt;}
.yb2{bottom:836.548933pt;}
.y116{bottom:836.550933pt;}
.y35b{bottom:837.442933pt;}
.y1bf{bottom:843.246933pt;}
.y1a8{bottom:843.258933pt;}
.y2e4{bottom:843.841600pt;}
.y204{bottom:843.918933pt;}
.y1da{bottom:844.566933pt;}
.y1ec{bottom:844.578933pt;}
.y1f1{bottom:848.562933pt;}
.y35a{bottom:850.776267pt;}
.ye8{bottom:851.728933pt;}
.y78{bottom:851.730933pt;}
.y158{bottom:851.841600pt;}
.y188{bottom:851.874933pt;}
.yb1{bottom:851.884933pt;}
.y42{bottom:851.886933pt;}
.y232{bottom:854.598933pt;}
.y1d2{bottom:855.930933pt;}
.y31e{bottom:856.536267pt;}
.y2e3{bottom:857.174933pt;}
.y19c{bottom:859.161067pt;}
.y1eb{bottom:859.914933pt;}
.y1be{bottom:860.574933pt;}
.y203{bottom:861.246933pt;}
.y359{bottom:864.109600pt;}
.y1f0{bottom:865.890933pt;}
.ye7{bottom:867.064933pt;}
.y77{bottom:867.066933pt;}
.y120{bottom:867.150933pt;}
.y187{bottom:867.210933pt;}
.yb0{bottom:867.220933pt;}
.y41{bottom:867.222933pt;}
.y31d{bottom:869.869600pt;}
.y2e2{bottom:870.508267pt;}
.y231{bottom:871.926933pt;}
.y1a7{bottom:873.258933pt;}
.y19b{bottom:874.489067pt;}
.y1ea{bottom:875.250933pt;}
.y1bd{bottom:877.902933pt;}
.y202{bottom:878.574933pt;}
.y5{bottom:881.816267pt;}
.y76{bottom:882.402933pt;}
.y11f{bottom:882.486933pt;}
.y157{bottom:882.513600pt;}
.yaf{bottom:882.556933pt;}
.y40{bottom:882.558933pt;}
.y31c{bottom:883.202933pt;}
.y2e1{bottom:883.841600pt;}
.y358{bottom:884.109600pt;}
.y230{bottom:889.254933pt;}
.y1a6{bottom:890.586933pt;}
.y1bc{bottom:895.230933pt;}
.y31b{bottom:896.536267pt;}
.y357{bottom:897.442933pt;}
.ye6{bottom:897.736933pt;}
.y11e{bottom:897.822933pt;}
.y156{bottom:897.849600pt;}
.y186{bottom:897.882933pt;}
.yae{bottom:897.892933pt;}
.y115{bottom:897.894933pt;}
.y2e0{bottom:903.969600pt;}
.y22f{bottom:906.582933pt;}
.y1a5{bottom:907.914933pt;}
.y356{bottom:910.776267pt;}
.y201{bottom:911.238933pt;}
.ye5{bottom:913.072933pt;}
.y75{bottom:913.074933pt;}
.y155{bottom:913.185600pt;}
.y185{bottom:913.218933pt;}
.y13f{bottom:913.228933pt;}
.y3f{bottom:913.230933pt;}
.y31a{bottom:916.994933pt;}
.y2df{bottom:917.302933pt;}
.y1e9{bottom:921.918933pt;}
.y22e{bottom:923.910933pt;}
.y1a4{bottom:925.242933pt;}
.y200{bottom:926.574933pt;}
.ye4{bottom:928.408933pt;}
.y74{bottom:928.410933pt;}
.y11d{bottom:928.494933pt;}
.y154{bottom:928.521600pt;}
.y184{bottom:928.554933pt;}
.yad{bottom:928.564933pt;}
.y17f{bottom:928.566933pt;}
.y319{bottom:930.328267pt;}
.y2de{bottom:930.636267pt;}
.y355{bottom:930.776267pt;}
.y1e8{bottom:939.246933pt;}
.y22d{bottom:941.238933pt;}
.y1ff{bottom:941.910933pt;}
.y1a3{bottom:942.570933pt;}
.y318{bottom:943.661600pt;}
.ye3{bottom:943.744933pt;}
.y73{bottom:943.746933pt;}
.y11c{bottom:943.830933pt;}
.y153{bottom:943.857600pt;}
.y183{bottom:943.890933pt;}
.yac{bottom:943.900933pt;}
.y3e{bottom:943.902933pt;}
.y354{bottom:944.109600pt;}
.y2dd{bottom:950.774933pt;}
.y317{bottom:956.994933pt;}
.y353{bottom:957.442933pt;}
.ye2{bottom:959.080933pt;}
.y72{bottom:959.082933pt;}
.y11b{bottom:959.166933pt;}
.y182{bottom:959.226933pt;}
.yab{bottom:959.236933pt;}
.y3d{bottom:959.238933pt;}
.y2dc{bottom:964.108267pt;}
.y1e7{bottom:972.582933pt;}
.ye1{bottom:974.416933pt;}
.y71{bottom:974.418933pt;}
.y152{bottom:974.529600pt;}
.y181{bottom:974.562933pt;}
.yaa{bottom:974.572933pt;}
.y3c{bottom:974.574933pt;}
.y2db{bottom:977.441600pt;}
.y352{bottom:977.442933pt;}
.y316{bottom:977.453600pt;}
.y4{bottom:988.568667pt;}
.ye0{bottom:989.752933pt;}
.y70{bottom:989.754933pt;}
.y11a{bottom:989.838933pt;}
.y151{bottom:989.865600pt;}
.y180{bottom:989.898933pt;}
.ya9{bottom:989.908933pt;}
.y3b{bottom:989.910933pt;}
.y2da{bottom:990.774933pt;}
.y351{bottom:990.776267pt;}
.y315{bottom:990.786933pt;}
.ya8{bottom:1022.280000pt;}
.h7{height:21.980000pt;}
.hb{height:24.549219pt;}
.h9{height:25.120000pt;}
.h3{height:29.306667pt;}
.h8{height:31.400000pt;}
.hc{height:33.493333pt;}
.h2{height:37.680000pt;}
.he{height:37.685333pt;}
.hd{height:37.685867pt;}
.h4{height:41.866667pt;}
.h6{height:42.360000pt;}
.h5{height:75.360000pt;}
.ha{height:1043.146667pt;}
.h0{height:1043.149333pt;}
.h1{height:1043.333333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:60.472400pt;}
.x9{left:68.472400pt;}
.x6{left:70.600400pt;}
.x4{left:71.810667pt;}
.x3{left:73.138667pt;}
.x7{left:83.128400pt;}
.x1c{left:92.836400pt;}
.x15{left:281.844400pt;}
.x19{left:298.092400pt;}
.x16{left:306.444400pt;}
.xc{left:330.240400pt;}
.x5{left:408.172000pt;}
.xd{left:423.612400pt;}
.x1d{left:440.553067pt;}
.x11{left:442.668400pt;}
.x17{left:453.552400pt;}
.x18{left:462.372400pt;}
.x1a{left:484.824400pt;}
.x1b{left:497.160400pt;}
.x14{left:508.104400pt;}
.x13{left:523.284400pt;}
.x12{left:530.928400pt;}
.xe{left:595.224400pt;}
.xa{left:599.076400pt;}
.xf{left:603.360400pt;}
.x10{left:608.412400pt;}
.xb{left:616.644400pt;}
.x1e{left:693.377333pt;}
.x1{left:699.317333pt;}
.x8{left:774.120000pt;}
}




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