
    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_c480c7b964a6240475a1ead3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082000;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_000b7aedcc97f837a656e265.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082000;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_165d572f2ec79d49d5f2ca64.woff')format("woff");}.ff3{font-family:ff3;line-height:1.090000;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_81c135af58f7ecf1e9844780.woff')format("woff");}.ff4{font-family:ff4;line-height:0.911000;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-22.199400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v5{vertical-align:24.382200px;}
.v4{vertical-align:27.282600px;}
.v2{vertical-align:37.823400px;}
.ls7e{letter-spacing:-7.200000px;}
.ls80{letter-spacing:-3.168000px;}
.ls49{letter-spacing:-1.778400px;}
.ls4a{letter-spacing:-1.591200px;}
.ls18{letter-spacing:-1.166400px;}
.ls89{letter-spacing:-1.080000px;}
.ls3b{letter-spacing:-0.936000px;}
.ls46{letter-spacing:-0.888300px;}
.ls8b{letter-spacing:-0.856800px;}
.ls8a{letter-spacing:-0.806400px;}
.ls1d{letter-spacing:-0.799200px;}
.ls39{letter-spacing:-0.777600px;}
.ls8d{letter-spacing:-0.727200px;}
.ls28{letter-spacing:-0.720000px;}
.ls73{letter-spacing:-0.676800px;}
.lsc0{letter-spacing:-0.653400px;}
.ls1f{letter-spacing:-0.648000px;}
.lsc1{letter-spacing:-0.600600px;}
.ls7d{letter-spacing:-0.597600px;}
.ls17{letter-spacing:-0.561600px;}
.ls4c{letter-spacing:-0.554400px;}
.ls44{letter-spacing:-0.525600px;}
.lsc2{letter-spacing:-0.521400px;}
.ls62{letter-spacing:-0.504000px;}
.ls2b{letter-spacing:-0.496800px;}
.lsb7{letter-spacing:-0.462000px;}
.lsb6{letter-spacing:-0.455400px;}
.ls4b{letter-spacing:-0.453600px;}
.ls7f{letter-spacing:-0.446400px;}
.ls19{letter-spacing:-0.439200px;}
.ls20{letter-spacing:-0.424800px;}
.ls3c{letter-spacing:-0.403200px;}
.ls12{letter-spacing:-0.367200px;}
.ls1e{letter-spacing:-0.360000px;}
.lsa5{letter-spacing:-0.356400px;}
.ls52{letter-spacing:-0.352800px;}
.lsa4{letter-spacing:-0.349800px;}
.ls1a{letter-spacing:-0.338400px;}
.lsa2{letter-spacing:-0.336600px;}
.ls87{letter-spacing:-0.331200px;}
.lsb4{letter-spacing:-0.330000px;}
.ls81{letter-spacing:-0.324000px;}
.lsa3{letter-spacing:-0.323400px;}
.ls61{letter-spacing:-0.321300px;}
.lsa8{letter-spacing:-0.316800px;}
.ls60{letter-spacing:-0.315000px;}
.ls31{letter-spacing:-0.302400px;}
.ls25{letter-spacing:-0.288000px;}
.lsba{letter-spacing:-0.277200px;}
.ls26{letter-spacing:-0.273600px;}
.lsbc{letter-spacing:-0.270600px;}
.lsbb{letter-spacing:-0.244200px;}
.lsb8{letter-spacing:-0.231000px;}
.ls2d{letter-spacing:-0.223200px;}
.ls3a{letter-spacing:-0.216000px;}
.ls27{letter-spacing:-0.208800px;}
.lsb9{letter-spacing:-0.204600px;}
.lsad{letter-spacing:-0.198000px;}
.ls47{letter-spacing:-0.195300px;}
.ls84{letter-spacing:-0.194400px;}
.ls8c{letter-spacing:-0.187200px;}
.lsbe{letter-spacing:-0.184800px;}
.ls88{letter-spacing:-0.180000px;}
.lsc8{letter-spacing:-0.178200px;}
.lsa7{letter-spacing:-0.165000px;}
.ls48{letter-spacing:-0.158400px;}
.lsbf{letter-spacing:-0.151800px;}
.lsa6{letter-spacing:-0.145200px;}
.ls34{letter-spacing:-0.144000px;}
.lsb5{letter-spacing:-0.138600px;}
.ls2a{letter-spacing:-0.136800px;}
.lsa9{letter-spacing:-0.132000px;}
.ls1b{letter-spacing:-0.129600px;}
.ls75{letter-spacing:-0.126000px;}
.ls67{letter-spacing:-0.119700px;}
.ls68{letter-spacing:-0.113400px;}
.lsbd{letter-spacing:-0.112200px;}
.ls69{letter-spacing:-0.107100px;}
.ls65{letter-spacing:-0.100800px;}
.lsc4{letter-spacing:-0.099000px;}
.ls38{letter-spacing:-0.093600px;}
.ls66{letter-spacing:-0.088200px;}
.ls29{letter-spacing:-0.086400px;}
.lsc3{letter-spacing:-0.085800px;}
.ls64{letter-spacing:-0.081900px;}
.ls10{letter-spacing:-0.079200px;}
.lsac{letter-spacing:-0.072600px;}
.ls1c{letter-spacing:-0.072000px;}
.lsab{letter-spacing:-0.066000px;}
.ls32{letter-spacing:-0.057600px;}
.ls11{letter-spacing:-0.050400px;}
.ls9{letter-spacing:-0.039600px;}
.lsae{letter-spacing:-0.026400px;}
.ls37{letter-spacing:-0.021600px;}
.ls33{letter-spacing:-0.014400px;}
.lsc5{letter-spacing:-0.013200px;}
.ls2c{letter-spacing:-0.007200px;}
.lsaa{letter-spacing:-0.006600px;}
.ls74{letter-spacing:-0.006300px;}
.lsf{letter-spacing:-0.004800px;}
.ls8{letter-spacing:0.000000px;}
.ls4f{letter-spacing:0.006300px;}
.ls6d{letter-spacing:0.007200px;}
.ls6a{letter-spacing:0.012600px;}
.ls14{letter-spacing:0.014400px;}
.ls53{letter-spacing:0.018900px;}
.lse{letter-spacing:0.021600px;}
.ls4d{letter-spacing:0.025200px;}
.ls41{letter-spacing:0.028800px;}
.ls76{letter-spacing:0.036000px;}
.ls5a{letter-spacing:0.037800px;}
.ls42{letter-spacing:0.050400px;}
.ls43{letter-spacing:0.057600px;}
.lsc7{letter-spacing:0.059400px;}
.ls35{letter-spacing:0.064800px;}
.ls13{letter-spacing:0.072000px;}
.lscb{letter-spacing:0.085800px;}
.lscd{letter-spacing:0.099000px;}
.ls6c{letter-spacing:0.115200px;}
.ls58{letter-spacing:0.144000px;}
.ls94{letter-spacing:0.171600px;}
.ls5{letter-spacing:0.184800px;}
.ls7{letter-spacing:0.191400px;}
.ls93{letter-spacing:0.198000px;}
.ls5b{letter-spacing:0.201600px;}
.ls59{letter-spacing:0.208800px;}
.ls21{letter-spacing:0.216000px;}
.lsca{letter-spacing:0.244200px;}
.lsd{letter-spacing:0.244800px;}
.ls5f{letter-spacing:0.245700px;}
.ls5c{letter-spacing:0.252000px;}
.ls24{letter-spacing:0.259200px;}
.lsa1{letter-spacing:0.270600px;}
.ls3e{letter-spacing:0.273600px;}
.ls22{letter-spacing:0.280800px;}
.ls36{letter-spacing:0.288000px;}
.ls5d{letter-spacing:0.289800px;}
.ls85{letter-spacing:0.295200px;}
.ls5e{letter-spacing:0.308700px;}
.ls9a{letter-spacing:0.330000px;}
.lsc9{letter-spacing:0.336600px;}
.ls57{letter-spacing:0.338400px;}
.lsa{letter-spacing:0.343200px;}
.ls50{letter-spacing:0.360000px;}
.ls54{letter-spacing:0.371700px;}
.ls56{letter-spacing:0.378000px;}
.lsb{letter-spacing:0.382800px;}
.ls71{letter-spacing:0.390600px;}
.ls2f{letter-spacing:0.424800px;}
.ls77{letter-spacing:0.428400px;}
.ls72{letter-spacing:0.441000px;}
.ls55{letter-spacing:0.459900px;}
.ls91{letter-spacing:0.462000px;}
.ls16{letter-spacing:0.482400px;}
.ls45{letter-spacing:0.485100px;}
.ls6{letter-spacing:0.547800px;}
.ls6b{letter-spacing:0.568800px;}
.ls3d{letter-spacing:0.576000px;}
.ls98{letter-spacing:0.594000px;}
.ls97{letter-spacing:0.633600px;}
.ls99{letter-spacing:0.660000px;}
.ls78{letter-spacing:0.662400px;}
.ls86{letter-spacing:0.705600px;}
.ls30{letter-spacing:0.734400px;}
.ls7b{letter-spacing:0.763200px;}
.ls15{letter-spacing:0.770400px;}
.lsc{letter-spacing:0.792000px;}
.ls7c{letter-spacing:0.864000px;}
.ls23{letter-spacing:1.123200px;}
.ls51{letter-spacing:1.130400px;}
.ls40{letter-spacing:1.440000px;}
.lsc6{letter-spacing:1.471800px;}
.ls7a{letter-spacing:1.584000px;}
.ls3f{letter-spacing:1.641600px;}
.ls79{letter-spacing:1.800000px;}
.ls70{letter-spacing:1.890000px;}
.ls8f{letter-spacing:2.092200px;}
.ls9d{letter-spacing:2.382600px;}
.ls9e{letter-spacing:2.706000px;}
.ls9c{letter-spacing:2.719200px;}
.ls2e{letter-spacing:3.600000px;}
.ls6f{letter-spacing:3.843000px;}
.ls6e{letter-spacing:3.849300px;}
.ls63{letter-spacing:3.906000px;}
.ls0{letter-spacing:4.200000px;}
.ls83{letter-spacing:4.276800px;}
.ls4e{letter-spacing:5.292000px;}
.ls3{letter-spacing:6.000000px;}
.lscc{letter-spacing:6.108000px;}
.ls1{letter-spacing:6.600000px;}
.ls4{letter-spacing:7.200000px;}
.ls2{letter-spacing:10.200000px;}
.lsb2{letter-spacing:10.296000px;}
.ls8e{letter-spacing:10.612800px;}
.lsb0{letter-spacing:10.619400px;}
.lsaf{letter-spacing:10.626000px;}
.ls96{letter-spacing:10.744800px;}
.lsb1{letter-spacing:10.784400px;}
.ls9b{letter-spacing:10.876800px;}
.ls95{letter-spacing:10.883400px;}
.lsa0{letter-spacing:10.949400px;}
.ls90{letter-spacing:10.956000px;}
.ls92{letter-spacing:11.154000px;}
.ls9f{letter-spacing:11.734800px;}
.ls82{letter-spacing:11.736000px;}
.lsb3{letter-spacing:19.800000px;}
.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;}
}
.ws3{word-spacing:-38.862000px;}
.ws82{word-spacing:-31.968000px;}
.ws97{word-spacing:-29.700000px;}
.ws93{word-spacing:-29.502000px;}
.wsae{word-spacing:-29.495400px;}
.ws9e{word-spacing:-29.429400px;}
.wsaa{word-spacing:-29.422800px;}
.wsbe{word-spacing:-29.330400px;}
.wsa2{word-spacing:-29.290800px;}
.wsb0{word-spacing:-29.172000px;}
.ws8e{word-spacing:-29.158800px;}
.wsc2{word-spacing:-28.842000px;}
.ws5{word-spacing:-27.432000px;}
.ws2{word-spacing:-25.146000px;}
.ws85{word-spacing:-24.508800px;}
.ws32{word-spacing:-23.832000px;}
.wsd0{word-spacing:-22.968000px;}
.ws4{word-spacing:-22.860000px;}
.ws60{word-spacing:-21.609000px;}
.ws54{word-spacing:-21.362400px;}
.ws2e{word-spacing:-21.355200px;}
.ws86{word-spacing:-21.096000px;}
.ws11{word-spacing:-21.024000px;}
.ws1a{word-spacing:-21.002400px;}
.ws3f{word-spacing:-20.808000px;}
.ws20{word-spacing:-20.714400px;}
.ws35{word-spacing:-20.656800px;}
.ws92{word-spacing:-20.638200px;}
.ws53{word-spacing:-20.592000px;}
.ws5c{word-spacing:-20.570400px;}
.ws45{word-spacing:-20.520000px;}
.ws2d{word-spacing:-20.512800px;}
.ws2f{word-spacing:-20.491200px;}
.ws12{word-spacing:-20.476800px;}
.ws5f{word-spacing:-20.440800px;}
.ws5d{word-spacing:-20.376000px;}
.ws76{word-spacing:-20.347200px;}
.ws55{word-spacing:-20.304000px;}
.ws43{word-spacing:-20.282400px;}
.ws42{word-spacing:-20.260800px;}
.ws13{word-spacing:-20.253600px;}
.ws77{word-spacing:-20.239200px;}
.ws14{word-spacing:-20.232000px;}
.ws75{word-spacing:-20.217600px;}
.wsf{word-spacing:-20.181600px;}
.ws36{word-spacing:-20.174400px;}
.ws1c{word-spacing:-20.160000px;}
.ws2b{word-spacing:-20.145600px;}
.ws39{word-spacing:-20.138400px;}
.ws1b{word-spacing:-20.102400px;}
.ws2c{word-spacing:-20.095200px;}
.ws37{word-spacing:-20.088000px;}
.ws29{word-spacing:-20.023200px;}
.wsca{word-spacing:-20.017800px;}
.ws3b{word-spacing:-20.016000px;}
.ws33{word-spacing:-20.008800px;}
.ws28{word-spacing:-19.958400px;}
.ws27{word-spacing:-19.944000px;}
.ws8a{word-spacing:-19.900800px;}
.ws50{word-spacing:-19.879200px;}
.ws1d{word-spacing:-19.872000px;}
.ws10{word-spacing:-19.864800px;}
.ws19{word-spacing:-19.792800px;}
.ws7f{word-spacing:-19.785600px;}
.ws5e{word-spacing:-19.728000px;}
.ws4f{word-spacing:-19.677600px;}
.ws1e{word-spacing:-19.584000px;}
.ws74{word-spacing:-19.555200px;}
.ws2a{word-spacing:-19.512000px;}
.ws8d{word-spacing:-19.504800px;}
.ws3a{word-spacing:-19.454400px;}
.ws8b{word-spacing:-19.425600px;}
.ws8c{word-spacing:-19.375200px;}
.ws41{word-spacing:-19.224000px;}
.wsa6{word-spacing:-19.206000px;}
.wsa4{word-spacing:-19.179600px;}
.ws96{word-spacing:-19.008000px;}
.wse{word-spacing:-18.928800px;}
.wsa7{word-spacing:-18.876000px;}
.wsce{word-spacing:-18.790200px;}
.ws98{word-spacing:-18.744000px;}
.ws8{word-spacing:-18.737400px;}
.wscf{word-spacing:-18.631800px;}
.wscb{word-spacing:-18.605400px;}
.ws84{word-spacing:-18.547200px;}
.ws6{word-spacing:-18.546000px;}
.ws9d{word-spacing:-18.539400px;}
.wsa8{word-spacing:-18.519600px;}
.ws9f{word-spacing:-18.480000px;}
.wsa1{word-spacing:-18.473400px;}
.wsc7{word-spacing:-18.447000px;}
.wsbd{word-spacing:-18.433800px;}
.ws9c{word-spacing:-18.414000px;}
.wsb2{word-spacing:-18.407400px;}
.wsc1{word-spacing:-18.387600px;}
.ws95{word-spacing:-18.381000px;}
.wsbf{word-spacing:-18.361200px;}
.wsa3{word-spacing:-18.348000px;}
.wsb6{word-spacing:-18.315000px;}
.wsbc{word-spacing:-18.275400px;}
.wsba{word-spacing:-18.268800px;}
.wsb9{word-spacing:-18.222600px;}
.wsb1{word-spacing:-18.216000px;}
.ws8f{word-spacing:-18.209400px;}
.ws91{word-spacing:-18.196200px;}
.ws5a{word-spacing:-18.162900px;}
.ws7b{word-spacing:-18.144000px;}
.ws7e{word-spacing:-18.131400px;}
.wsb5{word-spacing:-18.084000px;}
.wsc5{word-spacing:-18.024600px;}
.ws66{word-spacing:-18.011700px;}
.ws65{word-spacing:-17.992800px;}
.ws63{word-spacing:-17.955000px;}
.wsc3{word-spacing:-17.892600px;}
.ws44{word-spacing:-17.856000px;}
.ws87{word-spacing:-17.791200px;}
.ws34{word-spacing:-17.784000px;}
.ws61{word-spacing:-17.740800px;}
.ws52{word-spacing:-17.709300px;}
.ws49{word-spacing:-17.703000px;}
.ws78{word-spacing:-17.696700px;}
.ws6c{word-spacing:-17.614800px;}
.ws68{word-spacing:-17.602200px;}
.ws6d{word-spacing:-17.595900px;}
.ws6b{word-spacing:-17.589600px;}
.ws6a{word-spacing:-17.583300px;}
.ws7d{word-spacing:-17.577000px;}
.ws4c{word-spacing:-17.507700px;}
.ws4e{word-spacing:-17.424000px;}
.ws57{word-spacing:-17.388000px;}
.ws80{word-spacing:-17.064000px;}
.wsa5{word-spacing:-16.896000px;}
.ws0{word-spacing:-16.860000px;}
.ws99{word-spacing:-16.473600px;}
.ws7{word-spacing:-16.302000px;}
.wsa9{word-spacing:-16.275600px;}
.wsa0{word-spacing:-16.236000px;}
.wsc6{word-spacing:-16.216200px;}
.ws4d{word-spacing:-16.192800px;}
.wsb3{word-spacing:-16.163400px;}
.ws94{word-spacing:-16.156800px;}
.wsc0{word-spacing:-16.150200px;}
.wsb7{word-spacing:-16.097400px;}
.wsbb{word-spacing:-16.057800px;}
.ws4a{word-spacing:-16.046100px;}
.wsc8{word-spacing:-16.017000px;}
.ws1{word-spacing:-16.002000px;}
.ws9b{word-spacing:-15.985200px;}
.ws90{word-spacing:-15.978600px;}
.ws7a{word-spacing:-15.951600px;}
.ws5b{word-spacing:-15.939000px;}
.ws59{word-spacing:-15.932700px;}
.wsb4{word-spacing:-15.846600px;}
.ws64{word-spacing:-15.813000px;}
.ws67{word-spacing:-15.806700px;}
.ws62{word-spacing:-15.762600px;}
.wsc4{word-spacing:-15.701400px;}
.ws51{word-spacing:-15.586200px;}
.ws79{word-spacing:-15.567300px;}
.ws48{word-spacing:-15.561000px;}
.ws7c{word-spacing:-15.479100px;}
.ws69{word-spacing:-15.472800px;}
.ws58{word-spacing:-15.258600px;}
.ws56{word-spacing:-15.246000px;}
.wscc{word-spacing:-14.820000px;}
.ws4b{word-spacing:-14.672700px;}
.ws46{word-spacing:-12.139200px;}
.wsb8{word-spacing:-9.781200px;}
.ws3e{word-spacing:-8.740800px;}
.ws21{word-spacing:-8.661600px;}
.ws40{word-spacing:-8.596800px;}
.wscd{word-spacing:-8.012400px;}
.ws81{word-spacing:-7.927200px;}
.wsaf{word-spacing:-7.867200px;}
.ws9a{word-spacing:-7.246800px;}
.ws83{word-spacing:-7.048800px;}
.wsab{word-spacing:-6.811200px;}
.wsad{word-spacing:-2.963400px;}
.ws31{word-spacing:-2.894400px;}
.ws18{word-spacing:-2.880000px;}
.wsac{word-spacing:-2.706000px;}
.ws30{word-spacing:-0.576000px;}
.ws88{word-spacing:-0.036000px;}
.ws17{word-spacing:-0.028800px;}
.wsc{word-spacing:-0.026400px;}
.ws24{word-spacing:-0.021600px;}
.wsd{word-spacing:-0.019800px;}
.ws22{word-spacing:-0.014400px;}
.ws15{word-spacing:-0.013200px;}
.ws26{word-spacing:-0.007200px;}
.wsd1{word-spacing:-0.006600px;}
.ws71{word-spacing:-0.006300px;}
.wsa{word-spacing:0.000000px;}
.ws6e{word-spacing:0.006300px;}
.wsc9{word-spacing:0.006600px;}
.ws16{word-spacing:0.007200px;}
.wsb{word-spacing:0.013200px;}
.ws23{word-spacing:0.014400px;}
.ws38{word-spacing:0.021600px;}
.ws70{word-spacing:0.056700px;}
.ws25{word-spacing:0.180000px;}
.ws89{word-spacing:0.201600px;}
.ws47{word-spacing:1.893600px;}
.ws6f{word-spacing:4.359600px;}
.ws72{word-spacing:4.447800px;}
.ws73{word-spacing:5.808600px;}
.ws3d{word-spacing:10.130400px;}
.ws1f{word-spacing:18.720000px;}
.ws3c{word-spacing:19.800000px;}
.ws9{word-spacing:46.807800px;}
._11{margin-left:-13.622400px;}
._12{margin-left:-11.957400px;}
._8{margin-left:-10.220400px;}
._c{margin-left:-8.605800px;}
._1{margin-left:-6.593400px;}
._5{margin-left:-5.190000px;}
._7{margin-left:-3.423600px;}
._3{margin-left:-2.151000px;}
._a{margin-left:-1.137000px;}
._4{width:1.230000px;}
._d{width:2.337000px;}
._2{width:3.372000px;}
._0{width:4.653000px;}
._e{width:5.893800px;}
._6{width:6.924000px;}
._9{width:8.738400px;}
._b{width:9.860400px;}
._f{width:10.873200px;}
._10{width:12.471000px;}
._13{width:18.275400px;}
._14{width:20.885400px;}
.fc1{color:rgb(57,83,164);}
.fc0{color:rgb(8,9,9);}
.fs7{font-size:36.000000px;}
.fsb{font-size:39.600000px;}
.fs2{font-size:42.000000px;}
.fs9{font-size:43.200000px;}
.fs1{font-size:48.000000px;}
.fs8{font-size:57.000000px;}
.fs0{font-size:60.000000px;}
.fs5{font-size:61.200000px;}
.fsa{font-size:63.000000px;}
.fs3{font-size:66.000000px;}
.fs6{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y24{bottom:182.309100px;}
.y23{bottom:196.709100px;}
.y1{bottom:197.706600px;}
.y22{bottom:261.677400px;}
.y1c0{bottom:263.428800px;}
.y1a1{bottom:264.156000px;}
.yae{bottom:265.032300px;}
.y17f{bottom:265.118400px;}
.y47{bottom:265.155150px;}
.y20b{bottom:265.445550px;}
.y6b{bottom:265.720950px;}
.y117{bottom:266.045400px;}
.y22f{bottom:266.223750px;}
.yf5{bottom:266.333700px;}
.y8e{bottom:266.389200px;}
.yd1{bottom:266.779050px;}
.y13a{bottom:266.947350px;}
.y1e7{bottom:267.893250px;}
.y15f{bottom:268.381500px;}
.y252{bottom:276.176400px;}
.y21{bottom:278.178900px;}
.y17e{bottom:283.719150px;}
.y1bf{bottom:284.434800px;}
.y22e{bottom:284.523900px;}
.y20a{bottom:285.394050px;}
.y1a0{bottom:286.062000px;}
.y15e{bottom:286.525500px;}
.y116{bottom:287.051400px;}
.y46{bottom:287.061150px;}
.yad{bottom:287.082300px;}
.y6a{bottom:287.320950px;}
.yf4{bottom:287.933700px;}
.y1e6{bottom:288.287250px;}
.y8d{bottom:288.439200px;}
.y139{bottom:288.547350px;}
.yd0{bottom:288.685050px;}
.y20{bottom:294.680400px;}
.y251{bottom:295.976400px;}
.y22d{bottom:302.673900px;}
.y1be{bottom:305.440800px;}
.y209{bottom:305.491050px;}
.y19f{bottom:307.968000px;}
.y115{bottom:308.057400px;}
.y1e5{bottom:308.681250px;}
.y69{bottom:308.920950px;}
.y45{bottom:308.967150px;}
.yac{bottom:309.132300px;}
.yf3{bottom:309.389700px;}
.y138{bottom:310.147350px;}
.y8c{bottom:310.489200px;}
.ycf{bottom:310.591050px;}
.y17d{bottom:315.077400px;}
.y1f{bottom:316.731750px;}
.y15d{bottom:317.427000px;}
.y208{bottom:325.588050px;}
.y1bd{bottom:326.446800px;}
.y1e4{bottom:329.075250px;}
.y22c{bottom:329.328900px;}
.y68{bottom:330.520950px;}
.yf2{bottom:330.845700px;}
.y44{bottom:330.873150px;}
.yab{bottom:331.182300px;}
.y137{bottom:331.747350px;}
.yce{bottom:332.497050px;}
.y8b{bottom:332.539200px;}
.y17c{bottom:333.678150px;}
.y15c{bottom:335.571000px;}
.y250{bottom:337.507950px;}
.y19e{bottom:340.674000px;}
.y114{bottom:343.458900px;}
.y207{bottom:345.685050px;}
.y1bc{bottom:347.452800px;}
.y22b{bottom:347.479200px;}
.y1e3{bottom:349.469250px;}
.y67{bottom:352.120950px;}
.y17b{bottom:352.278900px;}
.yf1{bottom:352.301700px;}
.y1e{bottom:352.601850px;}
.y43{bottom:352.779150px;}
.yaa{bottom:353.232300px;}
.y136{bottom:353.347350px;}
.y15b{bottom:353.715000px;}
.ycd{bottom:354.403050px;}
.y8a{bottom:354.589200px;}
.y24f{bottom:357.753450px;}
.y19d{bottom:362.580000px;}
.y22a{bottom:365.629200px;}
.y206{bottom:365.782050px;}
.y1bb{bottom:368.458800px;}
.y1e2{bottom:369.863250px;}
.y1d{bottom:371.659350px;}
.y66{bottom:373.720950px;}
.yf0{bottom:373.757700px;}
.y42{bottom:374.685150px;}
.y135{bottom:374.947350px;}
.ya9{bottom:375.282300px;}
.ycc{bottom:376.309050px;}
.y89{bottom:376.639200px;}
.y24e{bottom:377.998950px;}
.y17a{bottom:383.635050px;}
.y229{bottom:383.779200px;}
.y19c{bottom:384.486000px;}
.y15a{bottom:384.616500px;}
.y205{bottom:385.879050px;}
.y1ba{bottom:389.464800px;}
.y1e1{bottom:390.257250px;}
.y1c{bottom:390.716850px;}
.y113{bottom:393.150300px;}
.yef{bottom:395.213700px;}
.y65{bottom:395.320950px;}
.y134{bottom:396.547350px;}
.y41{bottom:396.591150px;}
.ya8{bottom:397.332300px;}
.ycb{bottom:398.215050px;}
.y24d{bottom:398.244450px;}
.y88{bottom:398.689200px;}
.y159{bottom:402.760500px;}
.y19b{bottom:406.392000px;}
.y1b{bottom:409.774350px;}
.y1b9{bottom:410.470800px;}
.y1e0{bottom:410.651250px;}
.y112{bottom:414.156300px;}
.yee{bottom:416.669700px;}
.y64{bottom:416.920950px;}
.y133{bottom:418.147350px;}
.y24c{bottom:418.489950px;}
.y40{bottom:418.497150px;}
.y179{bottom:418.572675px;}
.ya7{bottom:419.382300px;}
.yca{bottom:420.121050px;}
.y87{bottom:420.739200px;}
.y158{bottom:420.904500px;}
.y228{bottom:423.679200px;}
.y204{bottom:427.879050px;}
.y19a{bottom:428.298000px;}
.y1a{bottom:428.831850px;}
.y1df{bottom:431.045250px;}
.y1b8{bottom:431.476800px;}
.y111{bottom:435.162300px;}
.y178{bottom:437.173425px;}
.yed{bottom:438.125700px;}
.y63{bottom:438.520950px;}
.y24b{bottom:438.735450px;}
.y157{bottom:439.048500px;}
.y132{bottom:439.747350px;}
.y3f{bottom:440.403150px;}
.ya6{bottom:441.432300px;}
.y227{bottom:441.829200px;}
.yc9{bottom:442.027050px;}
.y86{bottom:442.789200px;}
.y19{bottom:447.889350px;}
.y199{bottom:450.204000px;}
.y1de{bottom:451.439250px;}
.y1b7{bottom:452.482800px;}
.y177{bottom:455.775750px;}
.y110{bottom:456.168300px;}
.y156{bottom:457.192500px;}
.y24a{bottom:458.980950px;}
.yec{bottom:459.421050px;}
.y226{bottom:459.979200px;}
.y62{bottom:460.120950px;}
.y131{bottom:461.347350px;}
.y3e{bottom:462.309150px;}
.ya5{bottom:463.482300px;}
.yc8{bottom:463.933050px;}
.y85{bottom:464.839200px;}
.y18{bottom:466.946850px;}
.y203{bottom:469.873200px;}
.y1dd{bottom:471.536250px;}
.y198{bottom:472.110000px;}
.y1b6{bottom:473.488800px;}
.y155{bottom:475.336500px;}
.y10f{bottom:477.174300px;}
.y225{bottom:478.129200px;}
.y249{bottom:479.226450px;}
.yeb{bottom:480.877050px;}
.y61{bottom:481.720950px;}
.y130{bottom:482.947350px;}
.y3d{bottom:484.215150px;}
.ya4{bottom:485.532300px;}
.yc7{bottom:485.839050px;}
.y17{bottom:486.004350px;}
.y84{bottom:486.889200px;}
.y176{bottom:487.134000px;}
.y202{bottom:491.779200px;}
.y1dc{bottom:491.930250px;}
.y197{bottom:494.016000px;}
.y1b5{bottom:494.494800px;}
.y10e{bottom:498.180300px;}
.y248{bottom:499.471950px;}
.yea{bottom:502.333050px;}
.y60{bottom:503.176950px;}
.y12f{bottom:504.547350px;}
.y16{bottom:505.061850px;}
.y3c{bottom:506.121150px;}
.y154{bottom:506.238000px;}
.ya3{bottom:507.582300px;}
.yc6{bottom:507.745050px;}
.y83{bottom:508.939200px;}
.y1db{bottom:512.324250px;}
.y201{bottom:513.679350px;}
.y1b4{bottom:515.500800px;}
.y196{bottom:515.922000px;}
.y224{bottom:518.030850px;}
.y175{bottom:518.492250px;}
.y10d{bottom:519.186300px;}
.y247{bottom:519.717450px;}
.ye9{bottom:523.789050px;}
.y15{bottom:524.119350px;}
.y153{bottom:524.382000px;}
.y5f{bottom:524.632950px;}
.y12e{bottom:526.147350px;}
.y3b{bottom:528.027150px;}
.ya2{bottom:529.632300px;}
.yc5{bottom:529.651050px;}
.y82{bottom:530.989200px;}
.y1da{bottom:532.718250px;}
.y1b3{bottom:536.506800px;}
.y174{bottom:537.093000px;}
.y195{bottom:537.828000px;}
.y223{bottom:537.979350px;}
.y246{bottom:539.962950px;}
.y10c{bottom:540.192300px;}
.y14{bottom:543.176850px;}
.ye8{bottom:545.245050px;}
.y5e{bottom:546.088950px;}
.y12d{bottom:547.747350px;}
.y3a{bottom:549.933150px;}
.yc4{bottom:551.557050px;}
.ya1{bottom:551.682300px;}
.y81{bottom:553.039200px;}
.y1d9{bottom:553.112250px;}
.y152{bottom:555.283500px;}
.y1b2{bottom:557.512800px;}
.y194{bottom:559.734000px;}
.y245{bottom:560.208450px;}
.y10b{bottom:561.198300px;}
.y13{bottom:562.234350px;}
.y200{bottom:562.581525px;}
.ye7{bottom:566.701050px;}
.y5d{bottom:567.544950px;}
.y173{bottom:568.451250px;}
.y39{bottom:571.839150px;}
.y151{bottom:573.427500px;}
.yc3{bottom:573.463050px;}
.y1d8{bottom:573.506250px;}
.ya0{bottom:573.732300px;}
.y80{bottom:575.089200px;}
.y1b1{bottom:578.518800px;}
.y222{bottom:579.830550px;}
.y1ff{bottom:579.979350px;}
.y244{bottom:580.453950px;}
.y12{bottom:581.291850px;}
.y193{bottom:581.640000px;}
.y12c{bottom:582.065625px;}
.y10a{bottom:582.204300px;}
.ye6{bottom:588.157050px;}
.y5c{bottom:589.000950px;}
.y38{bottom:593.745150px;}
.y1d7{bottom:593.900250px;}
.yc2{bottom:595.369050px;}
.y9f{bottom:595.782300px;}
.y7f{bottom:597.139200px;}
.y1fe{bottom:597.379500px;}
.y1b0{bottom:599.524800px;}
.y172{bottom:599.809500px;}
.y12b{bottom:600.067875px;}
.y221{bottom:600.373050px;}
.y243{bottom:600.699450px;}
.y109{bottom:603.210300px;}
.y192{bottom:603.546000px;}
.y150{bottom:604.329000px;}
.y1fd{bottom:608.234100px;}
.y11{bottom:608.845500px;}
.ye5{bottom:609.613050px;}
.y5b{bottom:610.456950px;}
.y1d6{bottom:614.294250px;}
.y37{bottom:615.651150px;}
.yc1{bottom:617.275050px;}
.y9e{bottom:617.832300px;}
.y7e{bottom:619.189200px;}
.y1af{bottom:620.530800px;}
.y220{bottom:620.915550px;}
.y242{bottom:620.944950px;}
.y14f{bottom:622.473000px;}
.y108{bottom:624.216300px;}
.y191{bottom:625.452000px;}
.y1fc{bottom:628.331100px;}
.y12a{bottom:630.827625px;}
.ye4{bottom:631.069050px;}
.y171{bottom:631.167750px;}
.y5a{bottom:631.912950px;}
.y1d5{bottom:634.688250px;}
.y36{bottom:637.557150px;}
.yc0{bottom:639.181050px;}
.y9d{bottom:639.882300px;}
.y14e{bottom:640.617000px;}
.y241{bottom:641.190450px;}
.y21f{bottom:641.458050px;}
.y1ae{bottom:641.536800px;}
.y107{bottom:645.222300px;}
.y190{bottom:647.358000px;}
.y1fb{bottom:648.428100px;}
.y129{bottom:648.829875px;}
.y7d{bottom:652.183200px;}
.ye3{bottom:652.525050px;}
.y59{bottom:653.368950px;}
.y1d4{bottom:655.082250px;}
.y35{bottom:659.463150px;}
.ybf{bottom:661.087050px;}
.y240{bottom:661.435950px;}
.y9c{bottom:661.932300px;}
.y21e{bottom:662.000550px;}
.y170{bottom:662.526000px;}
.y1ad{bottom:662.542800px;}
.y106{bottom:666.228300px;}
.y1fa{bottom:668.525100px;}
.y10{bottom:671.388150px;}
.y14d{bottom:671.583450px;}
.ye2{bottom:673.981050px;}
.y7c{bottom:674.233200px;}
.y58{bottom:674.824950px;}
.y1d3{bottom:675.476250px;}
.y128{bottom:679.591200px;}
.y34{bottom:681.369150px;}
.y23f{bottom:681.681450px;}
.y18f{bottom:682.003800px;}
.y21d{bottom:682.543050px;}
.ybe{bottom:682.993050px;}
.y1ac{bottom:683.548800px;}
.y9b{bottom:683.982300px;}
.y105{bottom:687.234300px;}
.y1f9{bottom:688.622100px;}
.yf{bottom:690.445650px;}
.y14c{bottom:693.327450px;}
.y16f{bottom:693.979050px;}
.ye1{bottom:695.437050px;}
.y1d2{bottom:695.870250px;}
.y57{bottom:696.280950px;}
.y7b{bottom:696.283200px;}
.y127{bottom:697.591875px;}
.y18e{bottom:700.305300px;}
.y23e{bottom:701.926950px;}
.y21c{bottom:703.085550px;}
.y33{bottom:703.275150px;}
.y1ab{bottom:704.554800px;}
.ybd{bottom:704.899050px;}
.y9a{bottom:706.032300px;}
.y104{bottom:708.240300px;}
.y1f8{bottom:708.719100px;}
.y14b{bottom:715.071450px;}
.y126{bottom:715.594125px;}
.y16e{bottom:716.173050px;}
.y1d1{bottom:716.264250px;}
.ye0{bottom:716.893050px;}
.y56{bottom:717.736950px;}
.y7a{bottom:718.333200px;}
.y23d{bottom:722.172450px;}
.y21b{bottom:723.628050px;}
.y1aa{bottom:725.560800px;}
.ybc{bottom:726.805050px;}
.y99{bottom:728.082300px;}
.y1f7{bottom:728.816100px;}
.y103{bottom:729.246300px;}
.ye{bottom:730.324800px;}
.y18d{bottom:731.364300px;}
.y32{bottom:733.678650px;}
.y1d0{bottom:736.658250px;}
.y14a{bottom:736.815450px;}
.ydf{bottom:738.349050px;}
.y16d{bottom:738.367050px;}
.y55{bottom:739.192950px;}
.y79{bottom:740.383200px;}
.y23c{bottom:742.417950px;}
.y21a{bottom:744.170550px;}
.y125{bottom:746.353875px;}
.y1a9{bottom:746.566800px;}
.ybb{bottom:748.711050px;}
.y1f6{bottom:748.913100px;}
.y18c{bottom:749.665800px;}
.y98{bottom:750.132300px;}
.y102{bottom:750.252300px;}
.y1cf{bottom:757.052250px;}
.y149{bottom:758.559450px;}
.yde{bottom:759.805050px;}
.yd{bottom:760.185300px;}
.y16c{bottom:760.561050px;}
.y54{bottom:760.648950px;}
.y78{bottom:762.433200px;}
.y23b{bottom:762.663450px;}
.y124{bottom:764.357700px;}
.y219{bottom:764.564550px;}
.y1a8{bottom:767.572800px;}
.y1f5{bottom:769.010100px;}
.yba{bottom:770.617050px;}
.y101{bottom:771.258300px;}
.y97{bottom:772.182300px;}
.y1ce{bottom:777.446250px;}
.y148{bottom:780.303450px;}
.y18b{bottom:780.724800px;}
.ydd{bottom:781.261050px;}
.y53{bottom:782.104950px;}
.y123{bottom:782.359950px;}
.y16b{bottom:782.755050px;}
.y23a{bottom:782.908950px;}
.y77{bottom:784.483200px;}
.y218{bottom:784.958550px;}
.y1a7{bottom:788.578800px;}
.y1f4{bottom:789.107100px;}
.yc{bottom:790.045800px;}
.yb9{bottom:792.523050px;}
.y96{bottom:794.232300px;}
.y1cd{bottom:797.840250px;}
.y18a{bottom:799.026300px;}
.y31{bottom:799.412100px;}
.y147{bottom:802.047450px;}
.ydc{bottom:802.717050px;}
.y239{bottom:803.154450px;}
.y52{bottom:803.560950px;}
.y16a{bottom:804.949050px;}
.y25f{bottom:804.967800px;}
.y100{bottom:804.987525px;}
.y217{bottom:805.352550px;}
.y76{bottom:806.533200px;}
.y1f3{bottom:809.204100px;}
.y122{bottom:813.119700px;}
.yb8{bottom:814.429050px;}
.y95{bottom:816.282300px;}
.y1a6{bottom:818.082300px;}
.y1cc{bottom:818.234250px;}
.y30{bottom:819.509100px;}
.yff{bottom:822.392850px;}
.y25e{bottom:822.967950px;}
.y238{bottom:823.399950px;}
.y146{bottom:823.791450px;}
.ydb{bottom:824.173050px;}
.y51{bottom:825.016950px;}
.y216{bottom:825.746550px;}
.y169{bottom:827.143050px;}
.y75{bottom:828.583200px;}
.y1f2{bottom:829.301100px;}
.y189{bottom:830.023050px;}
.y121{bottom:831.121950px;}
.yb7{bottom:836.335050px;}
.y1cb{bottom:838.628250px;}
.y2f{bottom:839.606100px;}
.yfe{bottom:839.795025px;}
.y25d{bottom:840.967950px;}
.y237{bottom:843.645450px;}
.yb{bottom:844.560450px;}
.y145{bottom:845.535450px;}
.yda{bottom:845.629050px;}
.y215{bottom:846.140550px;}
.y50{bottom:846.472950px;}
.y120{bottom:849.124200px;}
.y168{bottom:849.337050px;}
.y1f1{bottom:849.398100px;}
.y74{bottom:850.633200px;}
.y188{bottom:851.929050px;}
.y94{bottom:853.338600px;}
.yb6{bottom:858.241050px;}
.y25c{bottom:858.967950px;}
.y1ca{bottom:859.022250px;}
.y2e{bottom:859.703100px;}
.ya{bottom:861.810450px;}
.y236{bottom:863.890950px;}
.y214{bottom:866.534550px;}
.y11f{bottom:867.126450px;}
.y144{bottom:867.279450px;}
.y4f{bottom:867.928950px;}
.y1f0{bottom:869.495100px;}
.yfd{bottom:869.957850px;}
.y167{bottom:871.531050px;}
.y73{bottom:872.683200px;}
.y187{bottom:873.835050px;}
.yd9{bottom:877.435050px;}
.y9{bottom:879.060600px;}
.y1c9{bottom:879.416250px;}
.y2d{bottom:879.800100px;}
.yb5{bottom:880.147050px;}
.y1a5{bottom:881.035050px;}
.y235{bottom:884.136450px;}
.y25b{bottom:885.472950px;}
.y213{bottom:886.928550px;}
.yfc{bottom:887.361600px;}
.y143{bottom:889.023450px;}
.y1ef{bottom:889.592100px;}
.y166{bottom:893.725050px;}
.y72{bottom:894.733200px;}
.y186{bottom:895.741050px;}
.y93{bottom:896.844600px;}
.y4e{bottom:897.882450px;}
.y11e{bottom:897.883050px;}
.yd8{bottom:898.891050px;}
.y1c8{bottom:899.810250px;}
.y2c{bottom:899.897100px;}
.y1a4{bottom:902.041050px;}
.yb4{bottom:902.053050px;}
.y25a{bottom:903.472950px;}
.y234{bottom:904.381950px;}
.y212{bottom:907.322550px;}
.y1ee{bottom:909.689100px;}
.y8{bottom:912.465600px;}
.y165{bottom:915.919050px;}
.y71{bottom:916.783200px;}
.yfb{bottom:917.522850px;}
.y185{bottom:917.647050px;}
.y92{bottom:918.588600px;}
.y4d{bottom:919.482450px;}
.y11d{bottom:919.483050px;}
.y2b{bottom:919.994100px;}
.y1c7{bottom:920.204250px;}
.yd7{bottom:920.347050px;}
.y259{bottom:921.472950px;}
.y1a3{bottom:923.047050px;}
.y142{bottom:923.571600px;}
.yb3{bottom:923.959050px;}
.y233{bottom:924.627450px;}
.y211{bottom:927.716550px;}
.y7{bottom:929.715600px;}
.y1ed{bottom:929.786100px;}
.yfa{bottom:934.926600px;}
.y164{bottom:938.113050px;}
.y70{bottom:938.833200px;}
.y258{bottom:939.472950px;}
.y184{bottom:939.553050px;}
.y2a{bottom:940.091100px;}
.y91{bottom:940.332600px;}
.y1c6{bottom:940.598250px;}
.y11c{bottom:941.083050px;}
.y4c{bottom:941.083200px;}
.y141{bottom:941.715600px;}
.yd6{bottom:941.803050px;}
.y1a2{bottom:944.053050px;}
.yb2{bottom:945.865050px;}
.y210{bottom:948.110550px;}
.y1ec{bottom:949.883100px;}
.y257{bottom:957.472950px;}
.y140{bottom:959.859600px;}
.y29{bottom:960.188100px;}
.y163{bottom:960.307050px;}
.y6f{bottom:960.883200px;}
.y1c5{bottom:960.992250px;}
.y183{bottom:961.459050px;}
.y11b{bottom:962.683050px;}
.yd5{bottom:963.259050px;}
.y6{bottom:964.925100px;}
.yf9{bottom:965.059050px;}
.y232{bottom:966.477600px;}
.yb1{bottom:967.771050px;}
.y20f{bottom:968.504550px;}
.y1eb{bottom:969.989550px;}
.y13f{bottom:978.003600px;}
.y28{bottom:980.285100px;}
.y1c4{bottom:981.386250px;}
.y5{bottom:982.175100px;}
.y162{bottom:982.501050px;}
.y6e{bottom:982.933200px;}
.y182{bottom:983.365050px;}
.y11a{bottom:984.283050px;}
.y4b{bottom:984.283200px;}
.yd4{bottom:984.715050px;}
.yf8{bottom:986.065050px;}
.y20e{bottom:988.898550px;}
.yb0{bottom:989.677050px;}
.y1ea{bottom:990.086550px;}
.y13e{bottom:996.147600px;}
.y256{bottom:997.072950px;}
.y4{bottom:999.425550px;}
.y27{bottom:1000.382100px;}
.y1c3{bottom:1001.780250px;}
.y161{bottom:1004.695050px;}
.y6d{bottom:1004.983200px;}
.y181{bottom:1005.271050px;}
.y90{bottom:1005.595050px;}
.y119{bottom:1005.883050px;}
.y4a{bottom:1005.883200px;}
.yd3{bottom:1006.171050px;}
.yf7{bottom:1007.071050px;}
.y231{bottom:1007.878050px;}
.y20d{bottom:1009.292550px;}
.y1e9{bottom:1010.183550px;}
.yaf{bottom:1011.583050px;}
.y13d{bottom:1014.291600px;}
.y255{bottom:1015.071600px;}
.y26{bottom:1020.479100px;}
.y1c2{bottom:1022.174250px;}
.y160{bottom:1026.889050px;}
.y6c{bottom:1027.033200px;}
.y180{bottom:1027.177050px;}
.y8f{bottom:1027.339050px;}
.y118{bottom:1027.483050px;}
.y49{bottom:1027.483200px;}
.yd2{bottom:1027.627050px;}
.yf6{bottom:1028.077050px;}
.y230{bottom:1029.478050px;}
.y20c{bottom:1029.686550px;}
.y1e8{bottom:1030.280550px;}
.y13c{bottom:1032.435600px;}
.y3{bottom:1032.830550px;}
.y254{bottom:1033.071600px;}
.y25{bottom:1049.083050px;}
.y48{bottom:1049.083200px;}
.y2{bottom:1050.080550px;}
.y13b{bottom:1050.579600px;}
.y253{bottom:1051.071600px;}
.y1c1{bottom:1051.078200px;}
.h7{height:30.564000px;}
.h9{height:35.658000px;}
.h2{height:38.640000px;}
.ha{height:40.752000px;}
.h8{height:48.393000px;}
.h1{height:50.940000px;}
.hc{height:53.487000px;}
.h3{height:56.034000px;}
.hd{height:58.002600px;}
.h6{height:61.128000px;}
.hb{height:63.959400px;}
.h4{height:86.598000px;}
.h5{height:89.782200px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.xa{left:161.383200px;}
.x1{left:182.643150px;}
.x4{left:203.895150px;}
.xb{left:225.159150px;}
.x2{left:235.518450px;}
.xe{left:263.599950px;}
.x3{left:284.859600px;}
.xf{left:348.101100px;}
.x5{left:380.438250px;}
.x8{left:443.080050px;}
.x6{left:546.467550px;}
.x7{left:552.268050px;}
.xd{left:616.089450px;}
.xc{left:625.052700px;}
.x9{left:687.388350px;}
@media print{
.v3{vertical-align:-19.732800pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v5{vertical-align:21.673067pt;}
.v4{vertical-align:24.251200pt;}
.v2{vertical-align:33.620800pt;}
.ls7e{letter-spacing:-6.400000pt;}
.ls80{letter-spacing:-2.816000pt;}
.ls49{letter-spacing:-1.580800pt;}
.ls4a{letter-spacing:-1.414400pt;}
.ls18{letter-spacing:-1.036800pt;}
.ls89{letter-spacing:-0.960000pt;}
.ls3b{letter-spacing:-0.832000pt;}
.ls46{letter-spacing:-0.789600pt;}
.ls8b{letter-spacing:-0.761600pt;}
.ls8a{letter-spacing:-0.716800pt;}
.ls1d{letter-spacing:-0.710400pt;}
.ls39{letter-spacing:-0.691200pt;}
.ls8d{letter-spacing:-0.646400pt;}
.ls28{letter-spacing:-0.640000pt;}
.ls73{letter-spacing:-0.601600pt;}
.lsc0{letter-spacing:-0.580800pt;}
.ls1f{letter-spacing:-0.576000pt;}
.lsc1{letter-spacing:-0.533867pt;}
.ls7d{letter-spacing:-0.531200pt;}
.ls17{letter-spacing:-0.499200pt;}
.ls4c{letter-spacing:-0.492800pt;}
.ls44{letter-spacing:-0.467200pt;}
.lsc2{letter-spacing:-0.463467pt;}
.ls62{letter-spacing:-0.448000pt;}
.ls2b{letter-spacing:-0.441600pt;}
.lsb7{letter-spacing:-0.410667pt;}
.lsb6{letter-spacing:-0.404800pt;}
.ls4b{letter-spacing:-0.403200pt;}
.ls7f{letter-spacing:-0.396800pt;}
.ls19{letter-spacing:-0.390400pt;}
.ls20{letter-spacing:-0.377600pt;}
.ls3c{letter-spacing:-0.358400pt;}
.ls12{letter-spacing:-0.326400pt;}
.ls1e{letter-spacing:-0.320000pt;}
.lsa5{letter-spacing:-0.316800pt;}
.ls52{letter-spacing:-0.313600pt;}
.lsa4{letter-spacing:-0.310933pt;}
.ls1a{letter-spacing:-0.300800pt;}
.lsa2{letter-spacing:-0.299200pt;}
.ls87{letter-spacing:-0.294400pt;}
.lsb4{letter-spacing:-0.293333pt;}
.ls81{letter-spacing:-0.288000pt;}
.lsa3{letter-spacing:-0.287467pt;}
.ls61{letter-spacing:-0.285600pt;}
.lsa8{letter-spacing:-0.281600pt;}
.ls60{letter-spacing:-0.280000pt;}
.ls31{letter-spacing:-0.268800pt;}
.ls25{letter-spacing:-0.256000pt;}
.lsba{letter-spacing:-0.246400pt;}
.ls26{letter-spacing:-0.243200pt;}
.lsbc{letter-spacing:-0.240533pt;}
.lsbb{letter-spacing:-0.217067pt;}
.lsb8{letter-spacing:-0.205333pt;}
.ls2d{letter-spacing:-0.198400pt;}
.ls3a{letter-spacing:-0.192000pt;}
.ls27{letter-spacing:-0.185600pt;}
.lsb9{letter-spacing:-0.181867pt;}
.lsad{letter-spacing:-0.176000pt;}
.ls47{letter-spacing:-0.173600pt;}
.ls84{letter-spacing:-0.172800pt;}
.ls8c{letter-spacing:-0.166400pt;}
.lsbe{letter-spacing:-0.164267pt;}
.ls88{letter-spacing:-0.160000pt;}
.lsc8{letter-spacing:-0.158400pt;}
.lsa7{letter-spacing:-0.146667pt;}
.ls48{letter-spacing:-0.140800pt;}
.lsbf{letter-spacing:-0.134933pt;}
.lsa6{letter-spacing:-0.129067pt;}
.ls34{letter-spacing:-0.128000pt;}
.lsb5{letter-spacing:-0.123200pt;}
.ls2a{letter-spacing:-0.121600pt;}
.lsa9{letter-spacing:-0.117333pt;}
.ls1b{letter-spacing:-0.115200pt;}
.ls75{letter-spacing:-0.112000pt;}
.ls67{letter-spacing:-0.106400pt;}
.ls68{letter-spacing:-0.100800pt;}
.lsbd{letter-spacing:-0.099733pt;}
.ls69{letter-spacing:-0.095200pt;}
.ls65{letter-spacing:-0.089600pt;}
.lsc4{letter-spacing:-0.088000pt;}
.ls38{letter-spacing:-0.083200pt;}
.ls66{letter-spacing:-0.078400pt;}
.ls29{letter-spacing:-0.076800pt;}
.lsc3{letter-spacing:-0.076267pt;}
.ls64{letter-spacing:-0.072800pt;}
.ls10{letter-spacing:-0.070400pt;}
.lsac{letter-spacing:-0.064533pt;}
.ls1c{letter-spacing:-0.064000pt;}
.lsab{letter-spacing:-0.058667pt;}
.ls32{letter-spacing:-0.051200pt;}
.ls11{letter-spacing:-0.044800pt;}
.ls9{letter-spacing:-0.035200pt;}
.lsae{letter-spacing:-0.023467pt;}
.ls37{letter-spacing:-0.019200pt;}
.ls33{letter-spacing:-0.012800pt;}
.lsc5{letter-spacing:-0.011733pt;}
.ls2c{letter-spacing:-0.006400pt;}
.lsaa{letter-spacing:-0.005867pt;}
.ls74{letter-spacing:-0.005600pt;}
.lsf{letter-spacing:-0.004267pt;}
.ls8{letter-spacing:0.000000pt;}
.ls4f{letter-spacing:0.005600pt;}
.ls6d{letter-spacing:0.006400pt;}
.ls6a{letter-spacing:0.011200pt;}
.ls14{letter-spacing:0.012800pt;}
.ls53{letter-spacing:0.016800pt;}
.lse{letter-spacing:0.019200pt;}
.ls4d{letter-spacing:0.022400pt;}
.ls41{letter-spacing:0.025600pt;}
.ls76{letter-spacing:0.032000pt;}
.ls5a{letter-spacing:0.033600pt;}
.ls42{letter-spacing:0.044800pt;}
.ls43{letter-spacing:0.051200pt;}
.lsc7{letter-spacing:0.052800pt;}
.ls35{letter-spacing:0.057600pt;}
.ls13{letter-spacing:0.064000pt;}
.lscb{letter-spacing:0.076267pt;}
.lscd{letter-spacing:0.088000pt;}
.ls6c{letter-spacing:0.102400pt;}
.ls58{letter-spacing:0.128000pt;}
.ls94{letter-spacing:0.152533pt;}
.ls5{letter-spacing:0.164267pt;}
.ls7{letter-spacing:0.170133pt;}
.ls93{letter-spacing:0.176000pt;}
.ls5b{letter-spacing:0.179200pt;}
.ls59{letter-spacing:0.185600pt;}
.ls21{letter-spacing:0.192000pt;}
.lsca{letter-spacing:0.217067pt;}
.lsd{letter-spacing:0.217600pt;}
.ls5f{letter-spacing:0.218400pt;}
.ls5c{letter-spacing:0.224000pt;}
.ls24{letter-spacing:0.230400pt;}
.lsa1{letter-spacing:0.240533pt;}
.ls3e{letter-spacing:0.243200pt;}
.ls22{letter-spacing:0.249600pt;}
.ls36{letter-spacing:0.256000pt;}
.ls5d{letter-spacing:0.257600pt;}
.ls85{letter-spacing:0.262400pt;}
.ls5e{letter-spacing:0.274400pt;}
.ls9a{letter-spacing:0.293333pt;}
.lsc9{letter-spacing:0.299200pt;}
.ls57{letter-spacing:0.300800pt;}
.lsa{letter-spacing:0.305067pt;}
.ls50{letter-spacing:0.320000pt;}
.ls54{letter-spacing:0.330400pt;}
.ls56{letter-spacing:0.336000pt;}
.lsb{letter-spacing:0.340267pt;}
.ls71{letter-spacing:0.347200pt;}
.ls2f{letter-spacing:0.377600pt;}
.ls77{letter-spacing:0.380800pt;}
.ls72{letter-spacing:0.392000pt;}
.ls55{letter-spacing:0.408800pt;}
.ls91{letter-spacing:0.410667pt;}
.ls16{letter-spacing:0.428800pt;}
.ls45{letter-spacing:0.431200pt;}
.ls6{letter-spacing:0.486933pt;}
.ls6b{letter-spacing:0.505600pt;}
.ls3d{letter-spacing:0.512000pt;}
.ls98{letter-spacing:0.528000pt;}
.ls97{letter-spacing:0.563200pt;}
.ls99{letter-spacing:0.586667pt;}
.ls78{letter-spacing:0.588800pt;}
.ls86{letter-spacing:0.627200pt;}
.ls30{letter-spacing:0.652800pt;}
.ls7b{letter-spacing:0.678400pt;}
.ls15{letter-spacing:0.684800pt;}
.lsc{letter-spacing:0.704000pt;}
.ls7c{letter-spacing:0.768000pt;}
.ls23{letter-spacing:0.998400pt;}
.ls51{letter-spacing:1.004800pt;}
.ls40{letter-spacing:1.280000pt;}
.lsc6{letter-spacing:1.308267pt;}
.ls7a{letter-spacing:1.408000pt;}
.ls3f{letter-spacing:1.459200pt;}
.ls79{letter-spacing:1.600000pt;}
.ls70{letter-spacing:1.680000pt;}
.ls8f{letter-spacing:1.859733pt;}
.ls9d{letter-spacing:2.117867pt;}
.ls9e{letter-spacing:2.405333pt;}
.ls9c{letter-spacing:2.417067pt;}
.ls2e{letter-spacing:3.200000pt;}
.ls6f{letter-spacing:3.416000pt;}
.ls6e{letter-spacing:3.421600pt;}
.ls63{letter-spacing:3.472000pt;}
.ls0{letter-spacing:3.733333pt;}
.ls83{letter-spacing:3.801600pt;}
.ls4e{letter-spacing:4.704000pt;}
.ls3{letter-spacing:5.333333pt;}
.lscc{letter-spacing:5.429333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls4{letter-spacing:6.400000pt;}
.ls2{letter-spacing:9.066667pt;}
.lsb2{letter-spacing:9.152000pt;}
.ls8e{letter-spacing:9.433600pt;}
.lsb0{letter-spacing:9.439467pt;}
.lsaf{letter-spacing:9.445333pt;}
.ls96{letter-spacing:9.550933pt;}
.lsb1{letter-spacing:9.586133pt;}
.ls9b{letter-spacing:9.668267pt;}
.ls95{letter-spacing:9.674133pt;}
.lsa0{letter-spacing:9.732800pt;}
.ls90{letter-spacing:9.738667pt;}
.ls92{letter-spacing:9.914667pt;}
.ls9f{letter-spacing:10.430933pt;}
.ls82{letter-spacing:10.432000pt;}
.lsb3{letter-spacing:17.600000pt;}
.ws3{word-spacing:-34.544000pt;}
.ws82{word-spacing:-28.416000pt;}
.ws97{word-spacing:-26.400000pt;}
.ws93{word-spacing:-26.224000pt;}
.wsae{word-spacing:-26.218133pt;}
.ws9e{word-spacing:-26.159467pt;}
.wsaa{word-spacing:-26.153600pt;}
.wsbe{word-spacing:-26.071467pt;}
.wsa2{word-spacing:-26.036267pt;}
.wsb0{word-spacing:-25.930667pt;}
.ws8e{word-spacing:-25.918933pt;}
.wsc2{word-spacing:-25.637333pt;}
.ws5{word-spacing:-24.384000pt;}
.ws2{word-spacing:-22.352000pt;}
.ws85{word-spacing:-21.785600pt;}
.ws32{word-spacing:-21.184000pt;}
.wsd0{word-spacing:-20.416000pt;}
.ws4{word-spacing:-20.320000pt;}
.ws60{word-spacing:-19.208000pt;}
.ws54{word-spacing:-18.988800pt;}
.ws2e{word-spacing:-18.982400pt;}
.ws86{word-spacing:-18.752000pt;}
.ws11{word-spacing:-18.688000pt;}
.ws1a{word-spacing:-18.668800pt;}
.ws3f{word-spacing:-18.496000pt;}
.ws20{word-spacing:-18.412800pt;}
.ws35{word-spacing:-18.361600pt;}
.ws92{word-spacing:-18.345067pt;}
.ws53{word-spacing:-18.304000pt;}
.ws5c{word-spacing:-18.284800pt;}
.ws45{word-spacing:-18.240000pt;}
.ws2d{word-spacing:-18.233600pt;}
.ws2f{word-spacing:-18.214400pt;}
.ws12{word-spacing:-18.201600pt;}
.ws5f{word-spacing:-18.169600pt;}
.ws5d{word-spacing:-18.112000pt;}
.ws76{word-spacing:-18.086400pt;}
.ws55{word-spacing:-18.048000pt;}
.ws43{word-spacing:-18.028800pt;}
.ws42{word-spacing:-18.009600pt;}
.ws13{word-spacing:-18.003200pt;}
.ws77{word-spacing:-17.990400pt;}
.ws14{word-spacing:-17.984000pt;}
.ws75{word-spacing:-17.971200pt;}
.wsf{word-spacing:-17.939200pt;}
.ws36{word-spacing:-17.932800pt;}
.ws1c{word-spacing:-17.920000pt;}
.ws2b{word-spacing:-17.907200pt;}
.ws39{word-spacing:-17.900800pt;}
.ws1b{word-spacing:-17.868800pt;}
.ws2c{word-spacing:-17.862400pt;}
.ws37{word-spacing:-17.856000pt;}
.ws29{word-spacing:-17.798400pt;}
.wsca{word-spacing:-17.793600pt;}
.ws3b{word-spacing:-17.792000pt;}
.ws33{word-spacing:-17.785600pt;}
.ws28{word-spacing:-17.740800pt;}
.ws27{word-spacing:-17.728000pt;}
.ws8a{word-spacing:-17.689600pt;}
.ws50{word-spacing:-17.670400pt;}
.ws1d{word-spacing:-17.664000pt;}
.ws10{word-spacing:-17.657600pt;}
.ws19{word-spacing:-17.593600pt;}
.ws7f{word-spacing:-17.587200pt;}
.ws5e{word-spacing:-17.536000pt;}
.ws4f{word-spacing:-17.491200pt;}
.ws1e{word-spacing:-17.408000pt;}
.ws74{word-spacing:-17.382400pt;}
.ws2a{word-spacing:-17.344000pt;}
.ws8d{word-spacing:-17.337600pt;}
.ws3a{word-spacing:-17.292800pt;}
.ws8b{word-spacing:-17.267200pt;}
.ws8c{word-spacing:-17.222400pt;}
.ws41{word-spacing:-17.088000pt;}
.wsa6{word-spacing:-17.072000pt;}
.wsa4{word-spacing:-17.048533pt;}
.ws96{word-spacing:-16.896000pt;}
.wse{word-spacing:-16.825600pt;}
.wsa7{word-spacing:-16.778667pt;}
.wsce{word-spacing:-16.702400pt;}
.ws98{word-spacing:-16.661333pt;}
.ws8{word-spacing:-16.655467pt;}
.wscf{word-spacing:-16.561600pt;}
.wscb{word-spacing:-16.538133pt;}
.ws84{word-spacing:-16.486400pt;}
.ws6{word-spacing:-16.485333pt;}
.ws9d{word-spacing:-16.479467pt;}
.wsa8{word-spacing:-16.461867pt;}
.ws9f{word-spacing:-16.426667pt;}
.wsa1{word-spacing:-16.420800pt;}
.wsc7{word-spacing:-16.397333pt;}
.wsbd{word-spacing:-16.385600pt;}
.ws9c{word-spacing:-16.368000pt;}
.wsb2{word-spacing:-16.362133pt;}
.wsc1{word-spacing:-16.344533pt;}
.ws95{word-spacing:-16.338667pt;}
.wsbf{word-spacing:-16.321067pt;}
.wsa3{word-spacing:-16.309333pt;}
.wsb6{word-spacing:-16.280000pt;}
.wsbc{word-spacing:-16.244800pt;}
.wsba{word-spacing:-16.238933pt;}
.wsb9{word-spacing:-16.197867pt;}
.wsb1{word-spacing:-16.192000pt;}
.ws8f{word-spacing:-16.186133pt;}
.ws91{word-spacing:-16.174400pt;}
.ws5a{word-spacing:-16.144800pt;}
.ws7b{word-spacing:-16.128000pt;}
.ws7e{word-spacing:-16.116800pt;}
.wsb5{word-spacing:-16.074667pt;}
.wsc5{word-spacing:-16.021867pt;}
.ws66{word-spacing:-16.010400pt;}
.ws65{word-spacing:-15.993600pt;}
.ws63{word-spacing:-15.960000pt;}
.wsc3{word-spacing:-15.904533pt;}
.ws44{word-spacing:-15.872000pt;}
.ws87{word-spacing:-15.814400pt;}
.ws34{word-spacing:-15.808000pt;}
.ws61{word-spacing:-15.769600pt;}
.ws52{word-spacing:-15.741600pt;}
.ws49{word-spacing:-15.736000pt;}
.ws78{word-spacing:-15.730400pt;}
.ws6c{word-spacing:-15.657600pt;}
.ws68{word-spacing:-15.646400pt;}
.ws6d{word-spacing:-15.640800pt;}
.ws6b{word-spacing:-15.635200pt;}
.ws6a{word-spacing:-15.629600pt;}
.ws7d{word-spacing:-15.624000pt;}
.ws4c{word-spacing:-15.562400pt;}
.ws4e{word-spacing:-15.488000pt;}
.ws57{word-spacing:-15.456000pt;}
.ws80{word-spacing:-15.168000pt;}
.wsa5{word-spacing:-15.018667pt;}
.ws0{word-spacing:-14.986667pt;}
.ws99{word-spacing:-14.643200pt;}
.ws7{word-spacing:-14.490667pt;}
.wsa9{word-spacing:-14.467200pt;}
.wsa0{word-spacing:-14.432000pt;}
.wsc6{word-spacing:-14.414400pt;}
.ws4d{word-spacing:-14.393600pt;}
.wsb3{word-spacing:-14.367467pt;}
.ws94{word-spacing:-14.361600pt;}
.wsc0{word-spacing:-14.355733pt;}
.wsb7{word-spacing:-14.308800pt;}
.wsbb{word-spacing:-14.273600pt;}
.ws4a{word-spacing:-14.263200pt;}
.wsc8{word-spacing:-14.237333pt;}
.ws1{word-spacing:-14.224000pt;}
.ws9b{word-spacing:-14.209067pt;}
.ws90{word-spacing:-14.203200pt;}
.ws7a{word-spacing:-14.179200pt;}
.ws5b{word-spacing:-14.168000pt;}
.ws59{word-spacing:-14.162400pt;}
.wsb4{word-spacing:-14.085867pt;}
.ws64{word-spacing:-14.056000pt;}
.ws67{word-spacing:-14.050400pt;}
.ws62{word-spacing:-14.011200pt;}
.wsc4{word-spacing:-13.956800pt;}
.ws51{word-spacing:-13.854400pt;}
.ws79{word-spacing:-13.837600pt;}
.ws48{word-spacing:-13.832000pt;}
.ws7c{word-spacing:-13.759200pt;}
.ws69{word-spacing:-13.753600pt;}
.ws58{word-spacing:-13.563200pt;}
.ws56{word-spacing:-13.552000pt;}
.wscc{word-spacing:-13.173333pt;}
.ws4b{word-spacing:-13.042400pt;}
.ws46{word-spacing:-10.790400pt;}
.wsb8{word-spacing:-8.694400pt;}
.ws3e{word-spacing:-7.769600pt;}
.ws21{word-spacing:-7.699200pt;}
.ws40{word-spacing:-7.641600pt;}
.wscd{word-spacing:-7.122133pt;}
.ws81{word-spacing:-7.046400pt;}
.wsaf{word-spacing:-6.993067pt;}
.ws9a{word-spacing:-6.441600pt;}
.ws83{word-spacing:-6.265600pt;}
.wsab{word-spacing:-6.054400pt;}
.wsad{word-spacing:-2.634133pt;}
.ws31{word-spacing:-2.572800pt;}
.ws18{word-spacing:-2.560000pt;}
.wsac{word-spacing:-2.405333pt;}
.ws30{word-spacing:-0.512000pt;}
.ws88{word-spacing:-0.032000pt;}
.ws17{word-spacing:-0.025600pt;}
.wsc{word-spacing:-0.023467pt;}
.ws24{word-spacing:-0.019200pt;}
.wsd{word-spacing:-0.017600pt;}
.ws22{word-spacing:-0.012800pt;}
.ws15{word-spacing:-0.011733pt;}
.ws26{word-spacing:-0.006400pt;}
.wsd1{word-spacing:-0.005867pt;}
.ws71{word-spacing:-0.005600pt;}
.wsa{word-spacing:0.000000pt;}
.ws6e{word-spacing:0.005600pt;}
.wsc9{word-spacing:0.005867pt;}
.ws16{word-spacing:0.006400pt;}
.wsb{word-spacing:0.011733pt;}
.ws23{word-spacing:0.012800pt;}
.ws38{word-spacing:0.019200pt;}
.ws70{word-spacing:0.050400pt;}
.ws25{word-spacing:0.160000pt;}
.ws89{word-spacing:0.179200pt;}
.ws47{word-spacing:1.683200pt;}
.ws6f{word-spacing:3.875200pt;}
.ws72{word-spacing:3.953600pt;}
.ws73{word-spacing:5.163200pt;}
.ws3d{word-spacing:9.004800pt;}
.ws1f{word-spacing:16.640000pt;}
.ws3c{word-spacing:17.600000pt;}
.ws9{word-spacing:41.606933pt;}
._11{margin-left:-12.108800pt;}
._12{margin-left:-10.628800pt;}
._8{margin-left:-9.084800pt;}
._c{margin-left:-7.649600pt;}
._1{margin-left:-5.860800pt;}
._5{margin-left:-4.613333pt;}
._7{margin-left:-3.043200pt;}
._3{margin-left:-1.912000pt;}
._a{margin-left:-1.010667pt;}
._4{width:1.093333pt;}
._d{width:2.077333pt;}
._2{width:2.997333pt;}
._0{width:4.136000pt;}
._e{width:5.238933pt;}
._6{width:6.154667pt;}
._9{width:7.767467pt;}
._b{width:8.764800pt;}
._f{width:9.665067pt;}
._10{width:11.085333pt;}
._13{width:16.244800pt;}
._14{width:18.564800pt;}
.fs7{font-size:32.000000pt;}
.fsb{font-size:35.200000pt;}
.fs2{font-size:37.333333pt;}
.fs9{font-size:38.400000pt;}
.fs1{font-size:42.666667pt;}
.fs8{font-size:50.666667pt;}
.fs0{font-size:53.333333pt;}
.fs5{font-size:54.400000pt;}
.fsa{font-size:56.000000pt;}
.fs3{font-size:58.666667pt;}
.fs6{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:162.052533pt;}
.y23{bottom:174.852533pt;}
.y1{bottom:175.739200pt;}
.y22{bottom:232.602133pt;}
.y1c0{bottom:234.158933pt;}
.y1a1{bottom:234.805333pt;}
.yae{bottom:235.584267pt;}
.y17f{bottom:235.660800pt;}
.y47{bottom:235.693467pt;}
.y20b{bottom:235.951600pt;}
.y6b{bottom:236.196400pt;}
.y117{bottom:236.484800pt;}
.y22f{bottom:236.643333pt;}
.yf5{bottom:236.741067pt;}
.y8e{bottom:236.790400pt;}
.yd1{bottom:237.136933pt;}
.y13a{bottom:237.286533pt;}
.y1e7{bottom:238.127333pt;}
.y15f{bottom:238.561333pt;}
.y252{bottom:245.490133pt;}
.y21{bottom:247.270133pt;}
.y17e{bottom:252.194800pt;}
.y1bf{bottom:252.830933pt;}
.y22e{bottom:252.910133pt;}
.y20a{bottom:253.683600pt;}
.y1a0{bottom:254.277333pt;}
.y15e{bottom:254.689333pt;}
.y116{bottom:255.156800pt;}
.y46{bottom:255.165467pt;}
.yad{bottom:255.184267pt;}
.y6a{bottom:255.396400pt;}
.yf4{bottom:255.941067pt;}
.y1e6{bottom:256.255333pt;}
.y8d{bottom:256.390400pt;}
.y139{bottom:256.486533pt;}
.yd0{bottom:256.608933pt;}
.y20{bottom:261.938133pt;}
.y251{bottom:263.090133pt;}
.y22d{bottom:269.043467pt;}
.y1be{bottom:271.502933pt;}
.y209{bottom:271.547600pt;}
.y19f{bottom:273.749333pt;}
.y115{bottom:273.828800pt;}
.y1e5{bottom:274.383333pt;}
.y69{bottom:274.596400pt;}
.y45{bottom:274.637467pt;}
.yac{bottom:274.784267pt;}
.yf3{bottom:275.013067pt;}
.y138{bottom:275.686533pt;}
.y8c{bottom:275.990400pt;}
.ycf{bottom:276.080933pt;}
.y17d{bottom:280.068800pt;}
.y1f{bottom:281.539333pt;}
.y15d{bottom:282.157333pt;}
.y208{bottom:289.411600pt;}
.y1bd{bottom:290.174933pt;}
.y1e4{bottom:292.511333pt;}
.y22c{bottom:292.736800pt;}
.y68{bottom:293.796400pt;}
.yf2{bottom:294.085067pt;}
.y44{bottom:294.109467pt;}
.yab{bottom:294.384267pt;}
.y137{bottom:294.886533pt;}
.yce{bottom:295.552933pt;}
.y8b{bottom:295.590400pt;}
.y17c{bottom:296.602800pt;}
.y15c{bottom:298.285333pt;}
.y250{bottom:300.007067pt;}
.y19e{bottom:302.821333pt;}
.y114{bottom:305.296800pt;}
.y207{bottom:307.275600pt;}
.y1bc{bottom:308.846933pt;}
.y22b{bottom:308.870400pt;}
.y1e3{bottom:310.639333pt;}
.y67{bottom:312.996400pt;}
.y17b{bottom:313.136800pt;}
.yf1{bottom:313.157067pt;}
.y1e{bottom:313.423867pt;}
.y43{bottom:313.581467pt;}
.yaa{bottom:313.984267pt;}
.y136{bottom:314.086533pt;}
.y15b{bottom:314.413333pt;}
.ycd{bottom:315.024933pt;}
.y8a{bottom:315.190400pt;}
.y24f{bottom:318.003067pt;}
.y19d{bottom:322.293333pt;}
.y22a{bottom:325.003733pt;}
.y206{bottom:325.139600pt;}
.y1bb{bottom:327.518933pt;}
.y1e2{bottom:328.767333pt;}
.y1d{bottom:330.363867pt;}
.y66{bottom:332.196400pt;}
.yf0{bottom:332.229067pt;}
.y42{bottom:333.053467pt;}
.y135{bottom:333.286533pt;}
.ya9{bottom:333.584267pt;}
.ycc{bottom:334.496933pt;}
.y89{bottom:334.790400pt;}
.y24e{bottom:335.999067pt;}
.y17a{bottom:341.008933pt;}
.y229{bottom:341.137067pt;}
.y19c{bottom:341.765333pt;}
.y15a{bottom:341.881333pt;}
.y205{bottom:343.003600pt;}
.y1ba{bottom:346.190933pt;}
.y1e1{bottom:346.895333pt;}
.y1c{bottom:347.303867pt;}
.y113{bottom:349.466933pt;}
.yef{bottom:351.301067pt;}
.y65{bottom:351.396400pt;}
.y134{bottom:352.486533pt;}
.y41{bottom:352.525467pt;}
.ya8{bottom:353.184267pt;}
.ycb{bottom:353.968933pt;}
.y24d{bottom:353.995067pt;}
.y88{bottom:354.390400pt;}
.y159{bottom:358.009333pt;}
.y19b{bottom:361.237333pt;}
.y1b{bottom:364.243867pt;}
.y1b9{bottom:364.862933pt;}
.y1e0{bottom:365.023333pt;}
.y112{bottom:368.138933pt;}
.yee{bottom:370.373067pt;}
.y64{bottom:370.596400pt;}
.y133{bottom:371.686533pt;}
.y24c{bottom:371.991067pt;}
.y40{bottom:371.997467pt;}
.y179{bottom:372.064600pt;}
.ya7{bottom:372.784267pt;}
.yca{bottom:373.440933pt;}
.y87{bottom:373.990400pt;}
.y158{bottom:374.137333pt;}
.y228{bottom:376.603733pt;}
.y204{bottom:380.336933pt;}
.y19a{bottom:380.709333pt;}
.y1a{bottom:381.183867pt;}
.y1df{bottom:383.151333pt;}
.y1b8{bottom:383.534933pt;}
.y111{bottom:386.810933pt;}
.y178{bottom:388.598600pt;}
.yed{bottom:389.445067pt;}
.y63{bottom:389.796400pt;}
.y24b{bottom:389.987067pt;}
.y157{bottom:390.265333pt;}
.y132{bottom:390.886533pt;}
.y3f{bottom:391.469467pt;}
.ya6{bottom:392.384267pt;}
.y227{bottom:392.737067pt;}
.yc9{bottom:392.912933pt;}
.y86{bottom:393.590400pt;}
.y19{bottom:398.123867pt;}
.y199{bottom:400.181333pt;}
.y1de{bottom:401.279333pt;}
.y1b7{bottom:402.206933pt;}
.y177{bottom:405.134000pt;}
.y110{bottom:405.482933pt;}
.y156{bottom:406.393333pt;}
.y24a{bottom:407.983067pt;}
.yec{bottom:408.374267pt;}
.y226{bottom:408.870400pt;}
.y62{bottom:408.996400pt;}
.y131{bottom:410.086533pt;}
.y3e{bottom:410.941467pt;}
.ya5{bottom:411.984267pt;}
.yc8{bottom:412.384933pt;}
.y85{bottom:413.190400pt;}
.y18{bottom:415.063867pt;}
.y203{bottom:417.665067pt;}
.y1dd{bottom:419.143333pt;}
.y198{bottom:419.653333pt;}
.y1b6{bottom:420.878933pt;}
.y155{bottom:422.521333pt;}
.y10f{bottom:424.154933pt;}
.y225{bottom:425.003733pt;}
.y249{bottom:425.979067pt;}
.yeb{bottom:427.446267pt;}
.y61{bottom:428.196400pt;}
.y130{bottom:429.286533pt;}
.y3d{bottom:430.413467pt;}
.ya4{bottom:431.584267pt;}
.yc7{bottom:431.856933pt;}
.y17{bottom:432.003867pt;}
.y84{bottom:432.790400pt;}
.y176{bottom:433.008000pt;}
.y202{bottom:437.137067pt;}
.y1dc{bottom:437.271333pt;}
.y197{bottom:439.125333pt;}
.y1b5{bottom:439.550933pt;}
.y10e{bottom:442.826933pt;}
.y248{bottom:443.975067pt;}
.yea{bottom:446.518267pt;}
.y60{bottom:447.268400pt;}
.y12f{bottom:448.486533pt;}
.y16{bottom:448.943867pt;}
.y3c{bottom:449.885467pt;}
.y154{bottom:449.989333pt;}
.ya3{bottom:451.184267pt;}
.yc6{bottom:451.328933pt;}
.y83{bottom:452.390400pt;}
.y1db{bottom:455.399333pt;}
.y201{bottom:456.603867pt;}
.y1b4{bottom:458.222933pt;}
.y196{bottom:458.597333pt;}
.y224{bottom:460.471867pt;}
.y175{bottom:460.882000pt;}
.y10d{bottom:461.498933pt;}
.y247{bottom:461.971067pt;}
.ye9{bottom:465.590267pt;}
.y15{bottom:465.883867pt;}
.y153{bottom:466.117333pt;}
.y5f{bottom:466.340400pt;}
.y12e{bottom:467.686533pt;}
.y3b{bottom:469.357467pt;}
.ya2{bottom:470.784267pt;}
.yc5{bottom:470.800933pt;}
.y82{bottom:471.990400pt;}
.y1da{bottom:473.527333pt;}
.y1b3{bottom:476.894933pt;}
.y174{bottom:477.416000pt;}
.y195{bottom:478.069333pt;}
.y223{bottom:478.203867pt;}
.y246{bottom:479.967067pt;}
.y10c{bottom:480.170933pt;}
.y14{bottom:482.823867pt;}
.ye8{bottom:484.662267pt;}
.y5e{bottom:485.412400pt;}
.y12d{bottom:486.886533pt;}
.y3a{bottom:488.829467pt;}
.yc4{bottom:490.272933pt;}
.ya1{bottom:490.384267pt;}
.y81{bottom:491.590400pt;}
.y1d9{bottom:491.655333pt;}
.y152{bottom:493.585333pt;}
.y1b2{bottom:495.566933pt;}
.y194{bottom:497.541333pt;}
.y245{bottom:497.963067pt;}
.y10b{bottom:498.842933pt;}
.y13{bottom:499.763867pt;}
.y200{bottom:500.072467pt;}
.ye7{bottom:503.734267pt;}
.y5d{bottom:504.484400pt;}
.y173{bottom:505.290000pt;}
.y39{bottom:508.301467pt;}
.y151{bottom:509.713333pt;}
.yc3{bottom:509.744933pt;}
.y1d8{bottom:509.783333pt;}
.ya0{bottom:509.984267pt;}
.y80{bottom:511.190400pt;}
.y1b1{bottom:514.238933pt;}
.y222{bottom:515.404933pt;}
.y1ff{bottom:515.537200pt;}
.y244{bottom:515.959067pt;}
.y12{bottom:516.703867pt;}
.y193{bottom:517.013333pt;}
.y12c{bottom:517.391667pt;}
.y10a{bottom:517.514933pt;}
.ye6{bottom:522.806267pt;}
.y5c{bottom:523.556400pt;}
.y38{bottom:527.773467pt;}
.y1d7{bottom:527.911333pt;}
.yc2{bottom:529.216933pt;}
.y9f{bottom:529.584267pt;}
.y7f{bottom:530.790400pt;}
.y1fe{bottom:531.004000pt;}
.y1b0{bottom:532.910933pt;}
.y172{bottom:533.164000pt;}
.y12b{bottom:533.393667pt;}
.y221{bottom:533.664933pt;}
.y243{bottom:533.955067pt;}
.y109{bottom:536.186933pt;}
.y192{bottom:536.485333pt;}
.y150{bottom:537.181333pt;}
.y1fd{bottom:540.652533pt;}
.y11{bottom:541.196000pt;}
.ye5{bottom:541.878267pt;}
.y5b{bottom:542.628400pt;}
.y1d6{bottom:546.039333pt;}
.y37{bottom:547.245467pt;}
.yc1{bottom:548.688933pt;}
.y9e{bottom:549.184267pt;}
.y7e{bottom:550.390400pt;}
.y1af{bottom:551.582933pt;}
.y220{bottom:551.924933pt;}
.y242{bottom:551.951067pt;}
.y14f{bottom:553.309333pt;}
.y108{bottom:554.858933pt;}
.y191{bottom:555.957333pt;}
.y1fc{bottom:558.516533pt;}
.y12a{bottom:560.735667pt;}
.ye4{bottom:560.950267pt;}
.y171{bottom:561.038000pt;}
.y5a{bottom:561.700400pt;}
.y1d5{bottom:564.167333pt;}
.y36{bottom:566.717467pt;}
.yc0{bottom:568.160933pt;}
.y9d{bottom:568.784267pt;}
.y14e{bottom:569.437333pt;}
.y241{bottom:569.947067pt;}
.y21f{bottom:570.184933pt;}
.y1ae{bottom:570.254933pt;}
.y107{bottom:573.530933pt;}
.y190{bottom:575.429333pt;}
.y1fb{bottom:576.380533pt;}
.y129{bottom:576.737667pt;}
.y7d{bottom:579.718400pt;}
.ye3{bottom:580.022267pt;}
.y59{bottom:580.772400pt;}
.y1d4{bottom:582.295333pt;}
.y35{bottom:586.189467pt;}
.ybf{bottom:587.632933pt;}
.y240{bottom:587.943067pt;}
.y9c{bottom:588.384267pt;}
.y21e{bottom:588.444933pt;}
.y170{bottom:588.912000pt;}
.y1ad{bottom:588.926933pt;}
.y106{bottom:592.202933pt;}
.y1fa{bottom:594.244533pt;}
.y10{bottom:596.789467pt;}
.y14d{bottom:596.963067pt;}
.ye2{bottom:599.094267pt;}
.y7c{bottom:599.318400pt;}
.y58{bottom:599.844400pt;}
.y1d3{bottom:600.423333pt;}
.y128{bottom:604.081067pt;}
.y34{bottom:605.661467pt;}
.y23f{bottom:605.939067pt;}
.y18f{bottom:606.225600pt;}
.y21d{bottom:606.704933pt;}
.ybe{bottom:607.104933pt;}
.y1ac{bottom:607.598933pt;}
.y9b{bottom:607.984267pt;}
.y105{bottom:610.874933pt;}
.y1f9{bottom:612.108533pt;}
.yf{bottom:613.729467pt;}
.y14c{bottom:616.291067pt;}
.y16f{bottom:616.870267pt;}
.ye1{bottom:618.166267pt;}
.y1d2{bottom:618.551333pt;}
.y57{bottom:618.916400pt;}
.y7b{bottom:618.918400pt;}
.y127{bottom:620.081667pt;}
.y18e{bottom:622.493600pt;}
.y23e{bottom:623.935067pt;}
.y21c{bottom:624.964933pt;}
.y33{bottom:625.133467pt;}
.y1ab{bottom:626.270933pt;}
.ybd{bottom:626.576933pt;}
.y9a{bottom:627.584267pt;}
.y104{bottom:629.546933pt;}
.y1f8{bottom:629.972533pt;}
.y14b{bottom:635.619067pt;}
.y126{bottom:636.083667pt;}
.y16e{bottom:636.598267pt;}
.y1d1{bottom:636.679333pt;}
.ye0{bottom:637.238267pt;}
.y56{bottom:637.988400pt;}
.y7a{bottom:638.518400pt;}
.y23d{bottom:641.931067pt;}
.y21b{bottom:643.224933pt;}
.y1aa{bottom:644.942933pt;}
.ybc{bottom:646.048933pt;}
.y99{bottom:647.184267pt;}
.y1f7{bottom:647.836533pt;}
.y103{bottom:648.218933pt;}
.ye{bottom:649.177600pt;}
.y18d{bottom:650.101600pt;}
.y32{bottom:652.158800pt;}
.y1d0{bottom:654.807333pt;}
.y14a{bottom:654.947067pt;}
.ydf{bottom:656.310267pt;}
.y16d{bottom:656.326267pt;}
.y55{bottom:657.060400pt;}
.y79{bottom:658.118400pt;}
.y23c{bottom:659.927067pt;}
.y21a{bottom:661.484933pt;}
.y125{bottom:663.425667pt;}
.y1a9{bottom:663.614933pt;}
.ybb{bottom:665.520933pt;}
.y1f6{bottom:665.700533pt;}
.y18c{bottom:666.369600pt;}
.y98{bottom:666.784267pt;}
.y102{bottom:666.890933pt;}
.y1cf{bottom:672.935333pt;}
.y149{bottom:674.275067pt;}
.yde{bottom:675.382267pt;}
.yd{bottom:675.720267pt;}
.y16c{bottom:676.054267pt;}
.y54{bottom:676.132400pt;}
.y78{bottom:677.718400pt;}
.y23b{bottom:677.923067pt;}
.y124{bottom:679.429067pt;}
.y219{bottom:679.612933pt;}
.y1a8{bottom:682.286933pt;}
.y1f5{bottom:683.564533pt;}
.yba{bottom:684.992933pt;}
.y101{bottom:685.562933pt;}
.y97{bottom:686.384267pt;}
.y1ce{bottom:691.063333pt;}
.y148{bottom:693.603067pt;}
.y18b{bottom:693.977600pt;}
.ydd{bottom:694.454267pt;}
.y53{bottom:695.204400pt;}
.y123{bottom:695.431067pt;}
.y16b{bottom:695.782267pt;}
.y23a{bottom:695.919067pt;}
.y77{bottom:697.318400pt;}
.y218{bottom:697.740933pt;}
.y1a7{bottom:700.958933pt;}
.y1f4{bottom:701.428533pt;}
.yc{bottom:702.262933pt;}
.yb9{bottom:704.464933pt;}
.y96{bottom:705.984267pt;}
.y1cd{bottom:709.191333pt;}
.y18a{bottom:710.245600pt;}
.y31{bottom:710.588533pt;}
.y147{bottom:712.931067pt;}
.ydc{bottom:713.526267pt;}
.y239{bottom:713.915067pt;}
.y52{bottom:714.276400pt;}
.y16a{bottom:715.510267pt;}
.y25f{bottom:715.526933pt;}
.y100{bottom:715.544467pt;}
.y217{bottom:715.868933pt;}
.y76{bottom:716.918400pt;}
.y1f3{bottom:719.292533pt;}
.y122{bottom:722.773067pt;}
.yb8{bottom:723.936933pt;}
.y95{bottom:725.584267pt;}
.y1a6{bottom:727.184267pt;}
.y1cc{bottom:727.319333pt;}
.y30{bottom:728.452533pt;}
.yff{bottom:731.015867pt;}
.y25e{bottom:731.527067pt;}
.y238{bottom:731.911067pt;}
.y146{bottom:732.259067pt;}
.ydb{bottom:732.598267pt;}
.y51{bottom:733.348400pt;}
.y216{bottom:733.996933pt;}
.y169{bottom:735.238267pt;}
.y75{bottom:736.518400pt;}
.y1f2{bottom:737.156533pt;}
.y189{bottom:737.798267pt;}
.y121{bottom:738.775067pt;}
.yb7{bottom:743.408933pt;}
.y1cb{bottom:745.447333pt;}
.y2f{bottom:746.316533pt;}
.yfe{bottom:746.484467pt;}
.y25d{bottom:747.527067pt;}
.y237{bottom:749.907067pt;}
.yb{bottom:750.720400pt;}
.y145{bottom:751.587067pt;}
.yda{bottom:751.670267pt;}
.y215{bottom:752.124933pt;}
.y50{bottom:752.420400pt;}
.y120{bottom:754.777067pt;}
.y168{bottom:754.966267pt;}
.y1f1{bottom:755.020533pt;}
.y74{bottom:756.118400pt;}
.y188{bottom:757.270267pt;}
.y94{bottom:758.523200pt;}
.yb6{bottom:762.880933pt;}
.y25c{bottom:763.527067pt;}
.y1ca{bottom:763.575333pt;}
.y2e{bottom:764.180533pt;}
.ya{bottom:766.053733pt;}
.y236{bottom:767.903067pt;}
.y214{bottom:770.252933pt;}
.y11f{bottom:770.779067pt;}
.y144{bottom:770.915067pt;}
.y4f{bottom:771.492400pt;}
.y1f0{bottom:772.884533pt;}
.yfd{bottom:773.295867pt;}
.y167{bottom:774.694267pt;}
.y73{bottom:775.718400pt;}
.y187{bottom:776.742267pt;}
.yd9{bottom:779.942267pt;}
.y9{bottom:781.387200pt;}
.y1c9{bottom:781.703333pt;}
.y2d{bottom:782.044533pt;}
.yb5{bottom:782.352933pt;}
.y1a5{bottom:783.142267pt;}
.y235{bottom:785.899067pt;}
.y25b{bottom:787.087067pt;}
.y213{bottom:788.380933pt;}
.yfc{bottom:788.765867pt;}
.y143{bottom:790.243067pt;}
.y1ef{bottom:790.748533pt;}
.y166{bottom:794.422267pt;}
.y72{bottom:795.318400pt;}
.y186{bottom:796.214267pt;}
.y93{bottom:797.195200pt;}
.y4e{bottom:798.117733pt;}
.y11e{bottom:798.118267pt;}
.yd8{bottom:799.014267pt;}
.y1c8{bottom:799.831333pt;}
.y2c{bottom:799.908533pt;}
.y1a4{bottom:801.814267pt;}
.yb4{bottom:801.824933pt;}
.y25a{bottom:803.087067pt;}
.y234{bottom:803.895067pt;}
.y212{bottom:806.508933pt;}
.y1ee{bottom:808.612533pt;}
.y8{bottom:811.080533pt;}
.y165{bottom:814.150267pt;}
.y71{bottom:814.918400pt;}
.yfb{bottom:815.575867pt;}
.y185{bottom:815.686267pt;}
.y92{bottom:816.523200pt;}
.y4d{bottom:817.317733pt;}
.y11d{bottom:817.318267pt;}
.y2b{bottom:817.772533pt;}
.y1c7{bottom:817.959333pt;}
.yd7{bottom:818.086267pt;}
.y259{bottom:819.087067pt;}
.y1a3{bottom:820.486267pt;}
.y142{bottom:820.952533pt;}
.yb3{bottom:821.296933pt;}
.y233{bottom:821.891067pt;}
.y211{bottom:824.636933pt;}
.y7{bottom:826.413867pt;}
.y1ed{bottom:826.476533pt;}
.yfa{bottom:831.045867pt;}
.y164{bottom:833.878267pt;}
.y70{bottom:834.518400pt;}
.y258{bottom:835.087067pt;}
.y184{bottom:835.158267pt;}
.y2a{bottom:835.636533pt;}
.y91{bottom:835.851200pt;}
.y1c6{bottom:836.087333pt;}
.y11c{bottom:836.518267pt;}
.y4c{bottom:836.518400pt;}
.y141{bottom:837.080533pt;}
.yd6{bottom:837.158267pt;}
.y1a2{bottom:839.158267pt;}
.yb2{bottom:840.768933pt;}
.y210{bottom:842.764933pt;}
.y1ec{bottom:844.340533pt;}
.y257{bottom:851.087067pt;}
.y140{bottom:853.208533pt;}
.y29{bottom:853.500533pt;}
.y163{bottom:853.606267pt;}
.y6f{bottom:854.118400pt;}
.y1c5{bottom:854.215333pt;}
.y183{bottom:854.630267pt;}
.y11b{bottom:855.718267pt;}
.yd5{bottom:856.230267pt;}
.y6{bottom:857.711200pt;}
.yf9{bottom:857.830267pt;}
.y232{bottom:859.091200pt;}
.yb1{bottom:860.240933pt;}
.y20f{bottom:860.892933pt;}
.y1eb{bottom:862.212933pt;}
.y13f{bottom:869.336533pt;}
.y28{bottom:871.364533pt;}
.y1c4{bottom:872.343333pt;}
.y5{bottom:873.044533pt;}
.y162{bottom:873.334267pt;}
.y6e{bottom:873.718400pt;}
.y182{bottom:874.102267pt;}
.y11a{bottom:874.918267pt;}
.y4b{bottom:874.918400pt;}
.yd4{bottom:875.302267pt;}
.yf8{bottom:876.502267pt;}
.y20e{bottom:879.020933pt;}
.yb0{bottom:879.712933pt;}
.y1ea{bottom:880.076933pt;}
.y13e{bottom:885.464533pt;}
.y256{bottom:886.287067pt;}
.y4{bottom:888.378267pt;}
.y27{bottom:889.228533pt;}
.y1c3{bottom:890.471333pt;}
.y161{bottom:893.062267pt;}
.y6d{bottom:893.318400pt;}
.y181{bottom:893.574267pt;}
.y90{bottom:893.862267pt;}
.y119{bottom:894.118267pt;}
.y4a{bottom:894.118400pt;}
.yd3{bottom:894.374267pt;}
.yf7{bottom:895.174267pt;}
.y231{bottom:895.891600pt;}
.y20d{bottom:897.148933pt;}
.y1e9{bottom:897.940933pt;}
.yaf{bottom:899.184933pt;}
.y13d{bottom:901.592533pt;}
.y255{bottom:902.285867pt;}
.y26{bottom:907.092533pt;}
.y1c2{bottom:908.599333pt;}
.y160{bottom:912.790267pt;}
.y6c{bottom:912.918400pt;}
.y180{bottom:913.046267pt;}
.y8f{bottom:913.190267pt;}
.y118{bottom:913.318267pt;}
.y49{bottom:913.318400pt;}
.yd2{bottom:913.446267pt;}
.yf6{bottom:913.846267pt;}
.y230{bottom:915.091600pt;}
.y20c{bottom:915.276933pt;}
.y1e8{bottom:915.804933pt;}
.y13c{bottom:917.720533pt;}
.y3{bottom:918.071600pt;}
.y254{bottom:918.285867pt;}
.y25{bottom:932.518267pt;}
.y48{bottom:932.518400pt;}
.y2{bottom:933.404933pt;}
.y13b{bottom:933.848533pt;}
.y253{bottom:934.285867pt;}
.y1c1{bottom:934.291733pt;}
.h7{height:27.168000pt;}
.h9{height:31.696000pt;}
.h2{height:34.346667pt;}
.ha{height:36.224000pt;}
.h8{height:43.016000pt;}
.h1{height:45.280000pt;}
.hc{height:47.544000pt;}
.h3{height:49.808000pt;}
.hd{height:51.557867pt;}
.h6{height:54.336000pt;}
.hb{height:56.852800pt;}
.h4{height:76.976000pt;}
.h5{height:79.806400pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.xa{left:143.451733pt;}
.x1{left:162.349467pt;}
.x4{left:181.240133pt;}
.xb{left:200.141467pt;}
.x2{left:209.349733pt;}
.xe{left:234.311067pt;}
.x3{left:253.208533pt;}
.xf{left:309.423200pt;}
.x5{left:338.167333pt;}
.x8{left:393.848933pt;}
.x6{left:485.748933pt;}
.x7{left:490.904933pt;}
.xd{left:547.635067pt;}
.xc{left:555.602400pt;}
.x9{left:611.011867pt;}
}




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