
    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_ff4ee97add922347eb86e0e3.woff')format("woff");}.ff1{font-family:ff1;line-height:1.124512;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_6e5820922a86e16e11ef1775.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e1d747dcbe0a56d739d96151.woff')format("woff");}.ff3{font-family:ff3;line-height:1.377930;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_3a7b950a371059ab8a798bbf.woff')format("woff");}.ff4{font-family:ff4;line-height:1.099609;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_07cb31e1aa860cb2989fc0c3.woff')format("woff");}.ff5{font-family:ff5;line-height:1.124512;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_472b32c80a78552dc2e56f3a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.057129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.va{vertical-align:-20.982000px;}
.v2{vertical-align:-16.980000px;}
.v3{vertical-align:-11.982000px;}
.v5{vertical-align:-10.716000px;}
.v9{vertical-align:-9.024000px;}
.v7{vertical-align:-5.970000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:8.979000px;}
.v6{vertical-align:10.980000px;}
.v4{vertical-align:11.994000px;}
.v1{vertical-align:17.142000px;}
.v8{vertical-align:20.925000px;}
.ls83{letter-spacing:-17.043000px;}
.ls60{letter-spacing:-6.831000px;}
.ls3a{letter-spacing:-6.555000px;}
.lsdd{letter-spacing:-6.048000px;}
.ls5c{letter-spacing:-5.658000px;}
.ls67{letter-spacing:-4.968000px;}
.lsaf{letter-spacing:-4.914000px;}
.ls5d{letter-spacing:-4.899000px;}
.ls34{letter-spacing:-4.761000px;}
.lse3{letter-spacing:-4.347000px;}
.ls1{letter-spacing:-4.275000px;}
.lse1{letter-spacing:-4.221000px;}
.ls76{letter-spacing:-4.002000px;}
.lse8{letter-spacing:-3.906000px;}
.lsa5{letter-spacing:-3.864000px;}
.ls17{letter-spacing:-3.795000px;}
.ls28{letter-spacing:-3.657000px;}
.ls8a{letter-spacing:-3.519000px;}
.lsbe{letter-spacing:-3.402000px;}
.ls8b{letter-spacing:-3.381000px;}
.ls6e{letter-spacing:-3.174000px;}
.ls90{letter-spacing:-3.105000px;}
.ls8f{letter-spacing:-3.036000px;}
.ls79{letter-spacing:-2.967000px;}
.ls2d{letter-spacing:-2.898000px;}
.ls40{letter-spacing:-2.829000px;}
.ls46{letter-spacing:-2.760000px;}
.ls63{letter-spacing:-2.691000px;}
.ls32{letter-spacing:-2.622000px;}
.ls39{letter-spacing:-2.553000px;}
.ls42{letter-spacing:-2.484000px;}
.ls85{letter-spacing:-2.415000px;}
.ls3b{letter-spacing:-2.346000px;}
.lsee{letter-spacing:-2.340000px;}
.ls47{letter-spacing:-2.277000px;}
.ls4b{letter-spacing:-2.268000px;}
.ls2b{letter-spacing:-2.208000px;}
.ls26{letter-spacing:-2.175000px;}
.lsb2{letter-spacing:-2.142000px;}
.ls48{letter-spacing:-2.139000px;}
.ls1b{letter-spacing:-2.070000px;}
.lsf{letter-spacing:-2.001000px;}
.ls69{letter-spacing:-1.932000px;}
.lsb1{letter-spacing:-1.890000px;}
.ls5f{letter-spacing:-1.863000px;}
.ls2a{letter-spacing:-1.794000px;}
.ls66{letter-spacing:-1.725000px;}
.ls33{letter-spacing:-1.656000px;}
.ls3f{letter-spacing:-1.587000px;}
.ls52{letter-spacing:-1.518000px;}
.lsbb{letter-spacing:-1.512000px;}
.ls14{letter-spacing:-1.449000px;}
.lsc1{letter-spacing:-1.386000px;}
.ls1c{letter-spacing:-1.380000px;}
.ls51{letter-spacing:-1.350000px;}
.lsb9{letter-spacing:-1.323000px;}
.ls18{letter-spacing:-1.311000px;}
.lsb4{letter-spacing:-1.260000px;}
.ls16{letter-spacing:-1.242000px;}
.lsb8{letter-spacing:-1.197000px;}
.ls10{letter-spacing:-1.173000px;}
.lsc7{letter-spacing:-1.134000px;}
.ls2c{letter-spacing:-1.104000px;}
.ls92{letter-spacing:-1.086129px;}
.lsd5{letter-spacing:-1.071000px;}
.ls12{letter-spacing:-1.035000px;}
.lsd2{letter-spacing:-1.008000px;}
.ls20{letter-spacing:-0.966000px;}
.lsf2{letter-spacing:-0.960000px;}
.lsad{letter-spacing:-0.945000px;}
.ls77{letter-spacing:-0.925221px;}
.lsc{letter-spacing:-0.900000px;}
.ls27{letter-spacing:-0.897000px;}
.lsc8{letter-spacing:-0.882000px;}
.ls1f{letter-spacing:-0.828000px;}
.lsb7{letter-spacing:-0.819000px;}
.ls70{letter-spacing:-0.810000px;}
.lsf1{letter-spacing:-0.780000px;}
.ls19{letter-spacing:-0.759000px;}
.lsde{letter-spacing:-0.756000px;}
.ls93{letter-spacing:-0.724086px;}
.lsb3{letter-spacing:-0.693000px;}
.ls13{letter-spacing:-0.690000px;}
.ls9e{letter-spacing:-0.683859px;}
.ls81{letter-spacing:-0.675000px;}
.lsaa{letter-spacing:-0.630000px;}
.ls53{letter-spacing:-0.621000px;}
.ls9b{letter-spacing:-0.603405px;}
.ls7c{letter-spacing:-0.598158px;}
.ls95{letter-spacing:-0.594000px;}
.lsd0{letter-spacing:-0.567000px;}
.ls61{letter-spacing:-0.552000px;}
.lsbc{letter-spacing:-0.504000px;}
.ls5b{letter-spacing:-0.483000px;}
.lsa2{letter-spacing:-0.442497px;}
.lsb6{letter-spacing:-0.441000px;}
.ls62{letter-spacing:-0.414000px;}
.lsa1{letter-spacing:-0.409266px;}
.lsba{letter-spacing:-0.378000px;}
.ls7{letter-spacing:-0.360000px;}
.lsa0{letter-spacing:-0.346302px;}
.ls1e{letter-spacing:-0.345000px;}
.ls4a{letter-spacing:-0.324000px;}
.lsd{letter-spacing:-0.300000px;}
.ls30{letter-spacing:-0.276000px;}
.lsd1{letter-spacing:-0.252000px;}
.ls74{letter-spacing:-0.241362px;}
.lsa{letter-spacing:-0.240000px;}
.lsa6{letter-spacing:-0.220374px;}
.ls75{letter-spacing:-0.207000px;}
.ls91{letter-spacing:-0.201135px;}
.lsc3{letter-spacing:-0.189000px;}
.ls2e{letter-spacing:-0.138000px;}
.lsd3{letter-spacing:-0.126000px;}
.ls96{letter-spacing:-0.108000px;}
.lsa4{letter-spacing:-0.081000px;}
.ls54{letter-spacing:-0.069000px;}
.lsb5{letter-spacing:-0.063000px;}
.ls7b{letter-spacing:-0.062964px;}
.ls49{letter-spacing:-0.054000px;}
.ls9a{letter-spacing:-0.040227px;}
.ls4{letter-spacing:0.000000px;}
.lscf{letter-spacing:0.001701px;}
.ls7f{letter-spacing:0.001863px;}
.lsd6{letter-spacing:0.002301px;}
.lscc{letter-spacing:0.002958px;}
.ls23{letter-spacing:0.004500px;}
.ls22{letter-spacing:0.004770px;}
.ls4e{letter-spacing:0.004863px;}
.lsca{letter-spacing:0.007221px;}
.lsb{letter-spacing:0.060000px;}
.ls15{letter-spacing:0.069000px;}
.ls9f{letter-spacing:0.094446px;}
.lseb{letter-spacing:0.120000px;}
.lsdf{letter-spacing:0.126000px;}
.ls5e{letter-spacing:0.138000px;}
.lsc4{letter-spacing:0.189000px;}
.ls78{letter-spacing:0.207000px;}
.ls3d{letter-spacing:0.276000px;}
.lsac{letter-spacing:0.315000px;}
.ls64{letter-spacing:0.345000px;}
.lscb{letter-spacing:0.355221px;}
.lse0{letter-spacing:0.404019px;}
.ls57{letter-spacing:0.414000px;}
.ls6d{letter-spacing:0.450000px;}
.ls2f{letter-spacing:0.552000px;}
.ls86{letter-spacing:0.563178px;}
.ls87{letter-spacing:0.566676px;}
.ls44{letter-spacing:0.621000px;}
.lse2{letter-spacing:0.630000px;}
.ls43{letter-spacing:0.690000px;}
.lsa8{letter-spacing:0.756000px;}
.ls1a{letter-spacing:0.759000px;}
.lsda{letter-spacing:0.771309px;}
.lsd9{letter-spacing:0.863100px;}
.lsed{letter-spacing:0.900000px;}
.lsab{letter-spacing:0.945000px;}
.ls72{letter-spacing:0.954000px;}
.lsea{letter-spacing:1.020000px;}
.ls98{letter-spacing:1.035000px;}
.ls80{letter-spacing:1.101870px;}
.ls1d{letter-spacing:1.104000px;}
.lsc2{letter-spacing:1.134000px;}
.ls6f{letter-spacing:1.173000px;}
.ls88{letter-spacing:1.188000px;}
.lsae{letter-spacing:1.197000px;}
.ls3c{letter-spacing:1.242000px;}
.lsd8{letter-spacing:1.248786px;}
.ls5{letter-spacing:1.260000px;}
.ls55{letter-spacing:1.287264px;}
.ls37{letter-spacing:1.306500px;}
.lsec{letter-spacing:1.320000px;}
.ls3{letter-spacing:1.344000px;}
.ls56{letter-spacing:1.449000px;}
.ls5a{letter-spacing:1.587000px;}
.lsf0{letter-spacing:1.620000px;}
.ls38{letter-spacing:1.636500px;}
.ls41{letter-spacing:1.725000px;}
.ls94{letter-spacing:1.782000px;}
.ls29{letter-spacing:1.794000px;}
.lscd{letter-spacing:1.827000px;}
.lse4{letter-spacing:1.909908px;}
.lsef{letter-spacing:1.920000px;}
.ls84{letter-spacing:1.932000px;}
.lsd4{letter-spacing:1.953000px;}
.ls82{letter-spacing:1.971123px;}
.ls50{letter-spacing:2.002500px;}
.ls59{letter-spacing:2.008500px;}
.ls9c{letter-spacing:2.070000px;}
.lsbf{letter-spacing:2.205000px;}
.ls36{letter-spacing:2.344500px;}
.ls25{letter-spacing:2.400000px;}
.lsa3{letter-spacing:2.415000px;}
.ls24{letter-spacing:2.484000px;}
.ls4f{letter-spacing:2.775000px;}
.ls8e{letter-spacing:2.829000px;}
.ls3e{letter-spacing:3.174000px;}
.ls9d{letter-spacing:3.381000px;}
.lsb0{letter-spacing:3.591000px;}
.lse{letter-spacing:3.696000px;}
.ls8{letter-spacing:4.200000px;}
.ls8d{letter-spacing:4.830000px;}
.ls7a{letter-spacing:4.899000px;}
.ls6{letter-spacing:5.760000px;}
.lsc6{letter-spacing:5.859000px;}
.ls9{letter-spacing:5.880000px;}
.lsce{letter-spacing:5.922000px;}
.ls65{letter-spacing:5.934000px;}
.ls2{letter-spacing:6.000000px;}
.lsa9{letter-spacing:6.300000px;}
.ls45{letter-spacing:6.348000px;}
.lsc5{letter-spacing:6.426000px;}
.ls31{letter-spacing:6.762000px;}
.lsbd{letter-spacing:7.497000px;}
.lsc0{letter-spacing:8.001000px;}
.ls73{letter-spacing:8.160156px;}
.lse7{letter-spacing:8.505000px;}
.lse9{letter-spacing:8.640000px;}
.lsd7{letter-spacing:9.135000px;}
.ls6c{letter-spacing:9.936000px;}
.ls4d{letter-spacing:10.005000px;}
.ls68{letter-spacing:10.212000px;}
.ls6b{letter-spacing:12.075000px;}
.lsdb{letter-spacing:12.600000px;}
.ls7e{letter-spacing:12.627000px;}
.ls99{letter-spacing:12.834000px;}
.lse6{letter-spacing:15.435000px;}
.lsdc{letter-spacing:19.215000px;}
.ls6a{letter-spacing:466.076400px;}
.ls8c{letter-spacing:466.481400px;}
.lsa7{letter-spacing:466.489200px;}
.ls97{letter-spacing:466.871400px;}
.lsc9{letter-spacing:467.021400px;}
.ls7d{letter-spacing:468.169200px;}
.lse5{letter-spacing:468.889200px;}
.ls4c{letter-spacing:470.366400px;}
.ls21{letter-spacing:471.484200px;}
.ls0{letter-spacing:473.524200px;}
.ls58{letter-spacing:952.524000px;}
.ls89{letter-spacing:953.022000px;}
.ls11{letter-spacing:955.644000px;}
.ls35{letter-spacing:959.694000px;}
.ls71{letter-spacing:961.674000px;}
.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;}
}
.wsff{word-spacing:-25.500000px;}
.ws4{word-spacing:-22.740000px;}
.wsbc{word-spacing:-22.680000px;}
.ws2{word-spacing:-22.620000px;}
.ws77{word-spacing:-21.525000px;}
.wsaf{word-spacing:-20.631000px;}
.ws88{word-spacing:-20.400000px;}
.ws7c{word-spacing:-20.010000px;}
.ws50{word-spacing:-19.725000px;}
.ws55{word-spacing:-19.389000px;}
.ws20{word-spacing:-18.900000px;}
.wsb1{word-spacing:-18.699000px;}
.wsda{word-spacing:-18.459000px;}
.ws17{word-spacing:-18.285000px;}
.wsae{word-spacing:-18.078000px;}
.wsd9{word-spacing:-18.018000px;}
.wsf4{word-spacing:-17.892000px;}
.wsdb{word-spacing:-17.703000px;}
.ws56{word-spacing:-17.457000px;}
.ws64{word-spacing:-17.388000px;}
.ws3a{word-spacing:-17.319000px;}
.wsc2{word-spacing:-17.262000px;}
.ws80{word-spacing:-17.250000px;}
.wsec{word-spacing:-17.199000px;}
.ws8a{word-spacing:-17.181000px;}
.ws11{word-spacing:-17.112000px;}
.wsea{word-spacing:-17.073000px;}
.ws93{word-spacing:-16.974000px;}
.wseb{word-spacing:-16.884000px;}
.ws0{word-spacing:-16.800000px;}
.ws23{word-spacing:-16.767000px;}
.ws6{word-spacing:-16.629000px;}
.ws5f{word-spacing:-16.560000px;}
.wsc4{word-spacing:-16.506000px;}
.wsc1{word-spacing:-16.443000px;}
.ws15{word-spacing:-16.353000px;}
.ws14{word-spacing:-16.284000px;}
.ws3b{word-spacing:-16.215000px;}
.ws21{word-spacing:-16.146000px;}
.ws3f{word-spacing:-16.077000px;}
.ws24{word-spacing:-16.008000px;}
.ws61{word-spacing:-15.939000px;}
.wsad{word-spacing:-15.870000px;}
.ws3c{word-spacing:-15.801000px;}
.ws13{word-spacing:-15.732000px;}
.ws16{word-spacing:-15.663000px;}
.ws10{word-spacing:-15.594000px;}
.wsdc{word-spacing:-15.561000px;}
.ws52{word-spacing:-15.525000px;}
.wsab{word-spacing:-15.456000px;}
.ws26{word-spacing:-15.387000px;}
.wse9{word-spacing:-15.309000px;}
.ws3e{word-spacing:-15.249000px;}
.ws60{word-spacing:-15.180000px;}
.ws40{word-spacing:-15.120000px;}
.ws9c{word-spacing:-15.111000px;}
.wsc6{word-spacing:-15.057000px;}
.ws63{word-spacing:-15.042000px;}
.wsac{word-spacing:-14.973000px;}
.ws51{word-spacing:-14.904000px;}
.ws22{word-spacing:-14.835000px;}
.ws5e{word-spacing:-14.766000px;}
.wsc3{word-spacing:-14.742000px;}
.ws78{word-spacing:-14.697000px;}
.ws5{word-spacing:-14.580000px;}
.ws100{word-spacing:-14.520000px;}
.ws7e{word-spacing:-14.490000px;}
.ws3{word-spacing:-14.460000px;}
.ws25{word-spacing:-14.421000px;}
.ws62{word-spacing:-14.352000px;}
.ws3d{word-spacing:-14.283000px;}
.wsc5{word-spacing:-14.049000px;}
.ws108{word-spacing:-14.040000px;}
.ws107{word-spacing:-13.920000px;}
.ws109{word-spacing:-13.860000px;}
.ws95{word-spacing:-13.524000px;}
.wsf8{word-spacing:-13.482000px;}
.ws89{word-spacing:-13.274910px;}
.ws12{word-spacing:-13.248000px;}
.ws1{word-spacing:-13.146000px;}
.ws41{word-spacing:-13.014000px;}
.wsb4{word-spacing:-12.834000px;}
.ws9f{word-spacing:-12.744000px;}
.ws54{word-spacing:-12.591051px;}
.ws79{word-spacing:-12.528000px;}
.ws27{word-spacing:-12.282000px;}
.wsf9{word-spacing:-12.230757px;}
.ws94{word-spacing:-12.144000px;}
.ws8b{word-spacing:-11.866965px;}
.wsf5{word-spacing:-11.569635px;}
.ws53{word-spacing:-11.303787px;}
.wsb0{word-spacing:-11.263560px;}
.ws9d{word-spacing:-11.102652px;}
.ws7d{word-spacing:-11.062425px;}
.wsbb{word-spacing:-10.861290px;}
.wsb2{word-spacing:-10.700382px;}
.wsc0{word-spacing:-10.647000px;}
.wsb3{word-spacing:-10.619928px;}
.ws39{word-spacing:-10.488000px;}
.ws7f{word-spacing:-10.378566px;}
.wsfe{word-spacing:-10.320849px;}
.ws9e{word-spacing:-10.217658px;}
.ws75{word-spacing:-10.212000px;}
.ws8c{word-spacing:-9.948312px;}
.wsf7{word-spacing:-9.843372px;}
.wsf3{word-spacing:-9.513000px;}
.wsf6{word-spacing:-9.476082px;}
.wsdf{word-spacing:-8.001000px;}
.wsd7{word-spacing:-7.497000px;}
.ws38{word-spacing:-6.762000px;}
.wse5{word-spacing:-6.426000px;}
.ws4c{word-spacing:-6.348000px;}
.wsc7{word-spacing:-6.300000px;}
.ws8{word-spacing:-6.000000px;}
.ws72{word-spacing:-5.934000px;}
.wse6{word-spacing:-5.859000px;}
.ws85{word-spacing:-4.899000px;}
.wsa{word-spacing:-4.200000px;}
.ws99{word-spacing:-3.726000px;}
.wse{word-spacing:-3.696000px;}
.wscd{word-spacing:-3.591000px;}
.wsb7{word-spacing:-3.381000px;}
.ws46{word-spacing:-3.174000px;}
.ws9a{word-spacing:-2.829000px;}
.wsbe{word-spacing:-2.553000px;}
.wsbd{word-spacing:-2.415000px;}
.ws28{word-spacing:-2.400000px;}
.wsde{word-spacing:-2.205000px;}
.wsb6{word-spacing:-2.070000px;}
.wsf0{word-spacing:-1.953000px;}
.ws8e{word-spacing:-1.932000px;}
.ws10a{word-spacing:-1.920000px;}
.ws2a{word-spacing:-1.794000px;}
.wsa9{word-spacing:-1.782000px;}
.ws49{word-spacing:-1.725000px;}
.ws10c{word-spacing:-1.620000px;}
.ws65{word-spacing:-1.587000px;}
.ws98{word-spacing:-1.518000px;}
.ws5b{word-spacing:-1.449000px;}
.ws105{word-spacing:-1.320000px;}
.ws9{word-spacing:-1.260000px;}
.ws44{word-spacing:-1.242000px;}
.wscc{word-spacing:-1.197000px;}
.ws92{word-spacing:-1.188000px;}
.ws32{word-spacing:-1.173000px;}
.wse1{word-spacing:-1.134000px;}
.ws1d{word-spacing:-1.104000px;}
.ws102{word-spacing:-1.020000px;}
.wsc9{word-spacing:-0.945000px;}
.ws106{word-spacing:-0.900000px;}
.ws5a{word-spacing:-0.897000px;}
.ws1b{word-spacing:-0.759000px;}
.ws4a{word-spacing:-0.690000px;}
.wsfc{word-spacing:-0.630000px;}
.ws4b{word-spacing:-0.621000px;}
.ws91{word-spacing:-0.566676px;}
.ws33{word-spacing:-0.552000px;}
.ws9b{word-spacing:-0.483000px;}
.ws5c{word-spacing:-0.414000px;}
.ws6f{word-spacing:-0.345000px;}
.wsca{word-spacing:-0.315000px;}
.ws90{word-spacing:-0.276000px;}
.wse4{word-spacing:-0.189000px;}
.ws6a{word-spacing:-0.138000px;}
.wsfb{word-spacing:-0.126000px;}
.ws104{word-spacing:-0.120000px;}
.wsb8{word-spacing:-0.094446px;}
.wsa6{word-spacing:-0.069000px;}
.wsb{word-spacing:-0.060000px;}
.ws7{word-spacing:0.000000px;}
.ws86{word-spacing:0.062964px;}
.wsd1{word-spacing:0.063000px;}
.ws59{word-spacing:0.069000px;}
.wsaa{word-spacing:0.108000px;}
.wsef{word-spacing:0.126000px;}
.ws31{word-spacing:0.138000px;}
.wse3{word-spacing:0.189000px;}
.ws81{word-spacing:0.207000px;}
.wsbf{word-spacing:0.220374px;}
.ws2c{word-spacing:0.276000px;}
.wsd{word-spacing:0.300000px;}
.ws36{word-spacing:0.345000px;}
.wsb9{word-spacing:0.346302px;}
.ws103{word-spacing:0.360000px;}
.wsd4{word-spacing:0.378000px;}
.wsba{word-spacing:0.409266px;}
.ws6e{word-spacing:0.414000px;}
.wse2{word-spacing:0.441000px;}
.ws67{word-spacing:0.483000px;}
.wsd6{word-spacing:0.504000px;}
.ws6d{word-spacing:0.552000px;}
.wsed{word-spacing:0.567000px;}
.ws87{word-spacing:0.598158px;}
.ws58{word-spacing:0.621000px;}
.wsc8{word-spacing:0.630000px;}
.ws19{word-spacing:0.690000px;}
.wsd0{word-spacing:0.693000px;}
.wsa8{word-spacing:0.724086px;}
.wsfa{word-spacing:0.756000px;}
.ws2e{word-spacing:0.759000px;}
.wsd2{word-spacing:0.819000px;}
.ws1e{word-spacing:0.828000px;}
.wse8{word-spacing:0.882000px;}
.ws29{word-spacing:0.897000px;}
.wsc{word-spacing:0.900000px;}
.wscb{word-spacing:0.945000px;}
.ws1f{word-spacing:0.966000px;}
.wsee{word-spacing:1.008000px;}
.ws18{word-spacing:1.035000px;}
.wsf1{word-spacing:1.071000px;}
.ws2f{word-spacing:1.104000px;}
.wse7{word-spacing:1.134000px;}
.wsf{word-spacing:1.173000px;}
.wsf2{word-spacing:1.197000px;}
.ws1a{word-spacing:1.242000px;}
.wsd5{word-spacing:1.260000px;}
.ws2b{word-spacing:1.311000px;}
.wsd3{word-spacing:1.323000px;}
.ws34{word-spacing:1.380000px;}
.wse0{word-spacing:1.386000px;}
.ws45{word-spacing:1.449000px;}
.wsdd{word-spacing:1.512000px;}
.ws57{word-spacing:1.518000px;}
.ws47{word-spacing:1.587000px;}
.ws66{word-spacing:1.656000px;}
.ws73{word-spacing:1.725000px;}
.ws2d{word-spacing:1.794000px;}
.ws10b{word-spacing:1.800000px;}
.ws6c{word-spacing:1.863000px;}
.wsce{word-spacing:1.890000px;}
.ws76{word-spacing:1.932000px;}
.ws1c{word-spacing:2.070000px;}
.ws4e{word-spacing:2.139000px;}
.wscf{word-spacing:2.142000px;}
.ws71{word-spacing:2.208000px;}
.ws4f{word-spacing:2.268000px;}
.ws4d{word-spacing:2.277000px;}
.ws43{word-spacing:2.346000px;}
.ws8f{word-spacing:2.415000px;}
.ws35{word-spacing:2.484000px;}
.ws42{word-spacing:2.553000px;}
.ws7b{word-spacing:2.760000px;}
.ws48{word-spacing:2.829000px;}
.ws30{word-spacing:2.898000px;}
.ws84{word-spacing:2.967000px;}
.wsa4{word-spacing:3.036000px;}
.wsa5{word-spacing:3.105000px;}
.ws7a{word-spacing:3.174000px;}
.ws37{word-spacing:3.243000px;}
.ws96{word-spacing:3.381000px;}
.wsd8{word-spacing:3.402000px;}
.ws83{word-spacing:3.657000px;}
.ws101{word-spacing:3.906000px;}
.ws82{word-spacing:4.002000px;}
.wsfd{word-spacing:4.347000px;}
.ws69{word-spacing:4.899000px;}
.ws74{word-spacing:4.968000px;}
.wsa7{word-spacing:5.451000px;}
.ws68{word-spacing:5.658000px;}
.wsa0{word-spacing:5.796000px;}
.ws70{word-spacing:5.934000px;}
.ws6b{word-spacing:6.831000px;}
.wsa1{word-spacing:7.659000px;}
.ws97{word-spacing:8.349000px;}
.wsb5{word-spacing:8.487000px;}
.wsa2{word-spacing:11.592000px;}
.wsa3{word-spacing:14.007000px;}
.ws8d{word-spacing:17.043000px;}
.ws5d{word-spacing:43.445160px;}
._23{margin-left:-19.170600px;}
._22{margin-left:-17.955300px;}
._1b{margin-left:-15.491400px;}
._24{margin-left:-14.340300px;}
._1a{margin-left:-12.957000px;}
._19{margin-left:-11.719500px;}
._6{margin-left:-10.141200px;}
._13{margin-left:-8.711700px;}
._12{margin-left:-7.574700px;}
._f{margin-left:-6.447000px;}
._7{margin-left:-4.994400px;}
._9{margin-left:-3.349200px;}
._4{margin-left:-2.269200px;}
._5{margin-left:-1.132800px;}
._2{width:1.056000px;}
._0{width:2.955000px;}
._1{width:4.297200px;}
._e{width:5.298300px;}
._3{width:6.318000px;}
._8{width:8.246400px;}
._10{width:9.414000px;}
._d{width:11.061000px;}
._11{width:12.672000px;}
._15{width:13.798200px;}
._20{width:14.949300px;}
._25{width:16.292400px;}
._18{width:18.287100px;}
._2a{width:19.367400px;}
._1f{width:20.541000px;}
._1d{width:22.304100px;}
._1e{width:23.315700px;}
._16{width:25.244100px;}
._17{width:26.888700px;}
._21{width:28.302318px;}
._1c{width:29.378700px;}
._26{width:32.397000px;}
._28{width:38.242140px;}
._14{width:43.445160px;}
._29{width:44.448600px;}
._27{width:49.727100px;}
._2c{width:51.583200px;}
._2b{width:58.298400px;}
._a{width:71.400000px;}
._b{width:253.008000px;}
._c{width:578.400000px;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.482000px;}
.fsd{font-size:36.729000px;}
.fs9{font-size:40.227000px;}
.fs3{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs7{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fsc{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1da{bottom:106.119000px;}
.y16b{bottom:106.165500px;}
.y45{bottom:106.269000px;}
.y69{bottom:106.293300px;}
.y236{bottom:106.296000px;}
.y8f{bottom:106.296300px;}
.y1d{bottom:106.306500px;}
.y253{bottom:106.348500px;}
.yb5{bottom:109.294800px;}
.y68{bottom:123.546300px;}
.y252{bottom:125.938500px;}
.y8e{bottom:126.544800px;}
.y16a{bottom:126.589500px;}
.y1c{bottom:126.747750px;}
.y216{bottom:126.860250px;}
.y44{bottom:127.227750px;}
.y235{bottom:127.752750px;}
.yb4{bottom:127.798200px;}
.y1d9{bottom:127.885500px;}
.yd9{bottom:130.796700px;}
.y67{bottom:143.794800px;}
.y8d{bottom:145.048500px;}
.yb3{bottom:145.051200px;}
.y251{bottom:145.528500px;}
.y169{bottom:147.013500px;}
.y215{bottom:147.414000px;}
.yb2{bottom:148.046700px;}
.y43{bottom:148.186500px;}
.y1a1{bottom:152.299500px;}
.yfe{bottom:153.357000px;}
.y234{bottom:157.725000px;}
.y1d8{bottom:158.157000px;}
.y250{bottom:165.118500px;}
.y8c{bottom:165.297000px;}
.y168{bottom:167.437500px;}
.y1b{bottom:167.649000px;}
.y42{bottom:169.145250px;}
.y144{bottom:170.559000px;}
.yfd{bottom:173.608500px;}
.yd8{bottom:174.795000px;}
.y214{bottom:176.472750px;}
.y233{bottom:179.192250px;}
.y1d7{bottom:179.923500px;}
.y8b{bottom:183.799500px;}
.y24f{bottom:184.708500px;}
.y66{bottom:187.774500px;}
.y167{bottom:187.861500px;}
.y1a{bottom:188.844000px;}
.y41{bottom:190.104000px;}
.y143{bottom:190.896750px;}
.yb1{bottom:192.012000px;}
.y180{bottom:192.018000px;}
.yfc{bottom:193.860000px;}
.yd7{bottom:195.598500px;}
.y1a0{bottom:196.300500px;}
.y213{bottom:197.029500px;}
.y232{bottom:200.652000px;}
.y8a{bottom:204.049500px;}
.y24e{bottom:204.298500px;}
.y166{bottom:208.285500px;}
.y120{bottom:209.328000px;}
.y65{bottom:209.440500px;}
.y1d6{bottom:210.195000px;}
.y40{bottom:211.062750px;}
.y142{bottom:211.234500px;}
.yb0{bottom:212.919000px;}
.y17f{bottom:212.925000px;}
.yfb{bottom:214.111500px;}
.yd6{bottom:216.402000px;}
.y19f{bottom:218.380500px;}
.y24d{bottom:223.888500px;}
.y212{bottom:226.088250px;}
.y165{bottom:228.709500px;}
.y11f{bottom:229.717500px;}
.y231{bottom:230.624250px;}
.y64{bottom:231.106500px;}
.y19{bottom:231.328500px;}
.y141{bottom:231.572250px;}
.y1d5{bottom:231.961500px;}
.y3f{bottom:232.021500px;}
.y1bc{bottom:232.633500px;}
.yaf{bottom:233.826000px;}
.y17e{bottom:233.832000px;}
.yfa{bottom:234.363000px;}
.y1f6{bottom:234.513000px;}
.yd5{bottom:237.178500px;}
.y19e{bottom:240.460500px;}
.y24c{bottom:243.478500px;}
.y211{bottom:246.644250px;}
.y89{bottom:248.059500px;}
.y164{bottom:249.133500px;}
.y11e{bottom:250.107000px;}
.y18{bottom:251.023500px;}
.y140{bottom:251.910000px;}
.y230{bottom:252.087750px;}
.y63{bottom:252.772500px;}
.y3e{bottom:252.980250px;}
.yf9{bottom:254.614500px;}
.yae{bottom:254.733000px;}
.y17d{bottom:254.739000px;}
.y1f5{bottom:254.767500px;}
.y1bb{bottom:255.110250px;}
.yd4{bottom:257.982000px;}
.y1d4{bottom:262.233000px;}
.y19d{bottom:262.530000px;}
.y24b{bottom:263.068500px;}
.y210{bottom:267.210000px;}
.y88{bottom:268.518000px;}
.y163{bottom:269.557500px;}
.y11d{bottom:270.513000px;}
.y17{bottom:270.718500px;}
.y13f{bottom:272.247750px;}
.y22f{bottom:273.543750px;}
.y3d{bottom:273.939000px;}
.y62{bottom:274.438500px;}
.yf8{bottom:274.866000px;}
.yad{bottom:275.640000px;}
.y17c{bottom:275.646000px;}
.y1ba{bottom:277.587000px;}
.yd3{bottom:278.785500px;}
.y1f4{bottom:283.527000px;}
.y19c{bottom:284.610000px;}
.y87{bottom:288.976500px;}
.y162{bottom:289.981500px;}
.y16{bottom:290.413500px;}
.y11c{bottom:290.902500px;}
.y1d3{bottom:292.504500px;}
.y13e{bottom:292.583250px;}
.y3c{bottom:294.897750px;}
.yf7{bottom:295.117500px;}
.y24a{bottom:295.423500px;}
.y61{bottom:296.104500px;}
.y20f{bottom:296.268750px;}
.yac{bottom:296.547000px;}
.y17b{bottom:296.553000px;}
.yd2{bottom:299.589000px;}
.y1b9{bottom:300.063750px;}
.y22e{bottom:303.516000px;}
.y1f3{bottom:303.781500px;}
.y19b{bottom:306.541500px;}
.y86{bottom:309.435000px;}
.y15{bottom:310.108500px;}
.y161{bottom:310.405500px;}
.y11b{bottom:311.292000px;}
.y13d{bottom:312.921000px;}
.y1d2{bottom:314.271000px;}
.yf6{bottom:315.369000px;}
.y3b{bottom:315.856500px;}
.yab{bottom:317.454000px;}
.y17a{bottom:317.460000px;}
.y60{bottom:317.770500px;}
.yd1{bottom:320.344500px;}
.y1b8{bottom:322.540500px;}
.y22d{bottom:324.983250px;}
.y20e{bottom:325.327500px;}
.y19a{bottom:328.621500px;}
.y14{bottom:329.803500px;}
.y85{bottom:329.893500px;}
.y160{bottom:330.829500px;}
.y11a{bottom:331.681500px;}
.y1f2{bottom:332.541000px;}
.y13c{bottom:333.258750px;}
.yf5{bottom:335.620500px;}
.y3a{bottom:336.815250px;}
.yaa{bottom:338.361000px;}
.y179{bottom:338.367000px;}
.y5f{bottom:339.436500px;}
.yd0{bottom:341.148000px;}
.y1d1{bottom:344.542500px;}
.y1b7{bottom:345.017250px;}
.y20d{bottom:345.881250px;}
.y22c{bottom:346.440750px;}
.y13{bottom:349.498500px;}
.y84{bottom:350.352000px;}
.y199{bottom:350.701500px;}
.y15f{bottom:351.253500px;}
.y119{bottom:352.096500px;}
.y1f1{bottom:352.795500px;}
.y249{bottom:353.293500px;}
.y13b{bottom:353.596500px;}
.yf4{bottom:355.872000px;}
.y39{bottom:357.774000px;}
.y178{bottom:359.256000px;}
.ya9{bottom:359.268000px;}
.y5e{bottom:361.102500px;}
.ycf{bottom:361.951500px;}
.y1d0{bottom:366.309000px;}
.y1b6{bottom:367.494000px;}
.y83{bottom:370.810500px;}
.y15e{bottom:371.677500px;}
.y118{bottom:372.486000px;}
.y198{bottom:372.781500px;}
.y13a{bottom:373.934250px;}
.y20c{bottom:374.940000px;}
.yf3{bottom:376.123500px;}
.y22b{bottom:376.413000px;}
.y38{bottom:378.732750px;}
.ya8{bottom:380.151000px;}
.y177{bottom:380.163000px;}
.y248{bottom:380.383500px;}
.y1f0{bottom:381.555000px;}
.y12{bottom:381.958500px;}
.yce{bottom:382.755000px;}
.y5d{bottom:382.768500px;}
.y1b5{bottom:389.970750px;}
.y82{bottom:391.267500px;}
.y15d{bottom:392.101500px;}
.y117{bottom:392.875500px;}
.y139{bottom:394.269750px;}
.y197{bottom:394.861500px;}
.y20b{bottom:395.493750px;}
.yf2{bottom:396.375000px;}
.y1cf{bottom:396.580500px;}
.y22a{bottom:397.880250px;}
.y37{bottom:399.691500px;}
.ya7{bottom:401.058000px;}
.y176{bottom:401.070000px;}
.y1ef{bottom:401.809500px;}
.ycd{bottom:403.558500px;}
.y5c{bottom:404.434500px;}
.y81{bottom:411.697500px;}
.y1b4{bottom:412.447500px;}
.y15c{bottom:412.525500px;}
.y116{bottom:413.265000px;}
.y138{bottom:414.607500px;}
.yf1{bottom:416.626500px;}
.y196{bottom:416.941500px;}
.y1ce{bottom:418.347000px;}
.y229{bottom:419.340000px;}
.y36{bottom:420.650250px;}
.ya6{bottom:421.965000px;}
.ycc{bottom:424.362000px;}
.y20a{bottom:424.552500px;}
.y5b{bottom:426.100500px;}
.y1ee{bottom:430.569000px;}
.y11{bottom:431.413500px;}
.y80{bottom:432.156000px;}
.y15b{bottom:432.949500px;}
.y115{bottom:433.654500px;}
.y1b3{bottom:434.924250px;}
.y137{bottom:434.945250px;}
.yf0{bottom:436.878000px;}
.y195{bottom:439.021500px;}
.y35{bottom:441.609000px;}
.ya5{bottom:442.872000px;}
.y209{bottom:445.106250px;}
.ycb{bottom:445.165500px;}
.y5a{bottom:447.766500px;}
.y1cd{bottom:448.618500px;}
.y228{bottom:449.312250px;}
.y1ed{bottom:450.823500px;}
.y10{bottom:452.608500px;}
.y7f{bottom:452.614500px;}
.y15a{bottom:453.373500px;}
.y114{bottom:454.044000px;}
.y136{bottom:455.283000px;}
.yef{bottom:457.129500px;}
.y1b2{bottom:457.401000px;}
.y194{bottom:461.101500px;}
.y34{bottom:462.567750px;}
.ya4{bottom:463.737000px;}
.y175{bottom:463.779000px;}
.yca{bottom:465.942000px;}
.y59{bottom:469.432500px;}
.y227{bottom:470.742000px;}
.y7e{bottom:473.073000px;}
.y159{bottom:473.797500px;}
.y208{bottom:474.167250px;}
.y113{bottom:474.441000px;}
.y135{bottom:475.620750px;}
.yee{bottom:477.381000px;}
.y1cc{bottom:478.890000px;}
.y1ec{bottom:479.583000px;}
.y1b1{bottom:479.877750px;}
.y193{bottom:483.181500px;}
.y33{bottom:483.526500px;}
.y174{bottom:484.561500px;}
.ya3{bottom:484.644000px;}
.yc9{bottom:486.745500px;}
.y247{bottom:489.753000px;}
.y58{bottom:491.088000px;}
.y226{bottom:492.209250px;}
.y7d{bottom:493.531500px;}
.y158{bottom:494.221500px;}
.y207{bottom:494.736000px;}
.y112{bottom:494.830500px;}
.yf{bottom:495.079500px;}
.y134{bottom:495.956250px;}
.yed{bottom:497.632500px;}
.y1eb{bottom:499.837500px;}
.y1cb{bottom:500.656500px;}
.y1b0{bottom:502.354500px;}
.y32{bottom:504.485250px;}
.y192{bottom:505.261500px;}
.y173{bottom:505.468500px;}
.ya2{bottom:505.551000px;}
.yc8{bottom:507.549000px;}
.y57{bottom:512.754000px;}
.y225{bottom:513.676500px;}
.y7c{bottom:513.990000px;}
.y157{bottom:514.645500px;}
.ye{bottom:514.774500px;}
.y111{bottom:515.263500px;}
.y206{bottom:515.289750px;}
.y133{bottom:516.294000px;}
.yec{bottom:517.884000px;}
.y246{bottom:518.607000px;}
.y1af{bottom:524.831250px;}
.y31{bottom:525.444000px;}
.y172{bottom:526.375500px;}
.ya1{bottom:526.458000px;}
.y191{bottom:527.341500px;}
.yc7{bottom:528.352500px;}
.y1ea{bottom:528.597000px;}
.y1ca{bottom:530.928000px;}
.y56{bottom:534.420000px;}
.y7b{bottom:534.448500px;}
.yd{bottom:534.469500px;}
.y156{bottom:535.069500px;}
.y224{bottom:535.143750px;}
.y110{bottom:535.653000px;}
.y205{bottom:535.843500px;}
.y132{bottom:536.631750px;}
.yeb{bottom:538.135500px;}
.y30{bottom:546.402750px;}
.y171{bottom:547.282500px;}
.y1ae{bottom:547.308000px;}
.ya0{bottom:547.365000px;}
.y245{bottom:547.461000px;}
.y1e9{bottom:548.851500px;}
.yc6{bottom:549.069000px;}
.y190{bottom:549.421500px;}
.y1c9{bottom:552.694500px;}
.yc{bottom:554.164500px;}
.y7a{bottom:554.907000px;}
.y155{bottom:555.493500px;}
.y10f{bottom:556.042500px;}
.y55{bottom:556.086000px;}
.y204{bottom:556.397250px;}
.y131{bottom:556.968000px;}
.yea{bottom:558.394500px;}
.y223{bottom:565.116000px;}
.y2f{bottom:567.361500px;}
.y170{bottom:568.189500px;}
.y9f{bottom:568.272000px;}
.y1e8{bottom:569.106000px;}
.y1ad{bottom:569.784750px;}
.yc5{bottom:569.872500px;}
.y18f{bottom:571.501500px;}
.yb{bottom:573.859500px;}
.y79{bottom:575.365500px;}
.y154{bottom:575.917500px;}
.y244{bottom:576.315000px;}
.y10e{bottom:576.432000px;}
.y203{bottom:576.951000px;}
.y130{bottom:577.305750px;}
.y54{bottom:577.711500px;}
.ye9{bottom:578.646000px;}
.y1c8{bottom:582.966000px;}
.y222{bottom:586.583250px;}
.y2e{bottom:588.320250px;}
.y16f{bottom:589.096500px;}
.y9e{bottom:589.179000px;}
.yc4{bottom:590.676000px;}
.y1ac{bottom:592.261500px;}
.ya{bottom:593.554500px;}
.y18e{bottom:593.581500px;}
.y78{bottom:595.824000px;}
.y153{bottom:596.341500px;}
.y243{bottom:596.664000px;}
.y10d{bottom:596.821500px;}
.y12f{bottom:597.642000px;}
.y1e7{bottom:597.865500px;}
.ye8{bottom:598.897500px;}
.y53{bottom:599.377500px;}
.y202{bottom:606.009750px;}
.y2d{bottom:609.279000px;}
.y16e{bottom:610.003500px;}
.y9d{bottom:610.068000px;}
.yc3{bottom:611.479500px;}
.y261{bottom:612.943500px;}
.y1c7{bottom:613.237500px;}
.y18d{bottom:615.661500px;}
.y77{bottom:616.282500px;}
.y221{bottom:616.555500px;}
.y152{bottom:616.765500px;}
.y242{bottom:617.013000px;}
.y10c{bottom:617.211000px;}
.y12e{bottom:617.979750px;}
.y1e6{bottom:618.120000px;}
.ye7{bottom:619.174500px;}
.y52{bottom:621.043500px;}
.y9{bottom:626.014500px;}
.y201{bottom:626.563500px;}
.y2c{bottom:630.237750px;}
.y16d{bottom:630.910500px;}
.y9c{bottom:630.975000px;}
.yc2{bottom:632.283000px;}
.y260{bottom:633.193500px;}
.y1c6{bottom:635.004000px;}
.y1ab{bottom:635.989500px;}
.y76{bottom:636.741000px;}
.y151{bottom:637.189500px;}
.y10b{bottom:637.600500px;}
.y18c{bottom:637.741500px;}
.y220{bottom:638.022750px;}
.y12d{bottom:638.317500px;}
.ye6{bottom:639.426000px;}
.y51{bottom:642.709500px;}
.y241{bottom:645.867000px;}
.y1e5{bottom:646.879500px;}
.y2b{bottom:651.196500px;}
.y16c{bottom:651.817500px;}
.y9b{bottom:651.882000px;}
.yc1{bottom:653.086500px;}
.y25f{bottom:653.443500px;}
.y200{bottom:655.622250px;}
.y75{bottom:657.199500px;}
.y150{bottom:657.613500px;}
.y10a{bottom:657.990000px;}
.y12c{bottom:658.655250px;}
.y21f{bottom:659.490000px;}
.ye5{bottom:659.677500px;}
.y18b{bottom:659.821500px;}
.y50{bottom:664.375500px;}
.y1c5{bottom:665.275500px;}
.y1e4{bottom:667.134000px;}
.y2a{bottom:672.155250px;}
.y9a{bottom:672.724500px;}
.y25e{bottom:673.693500px;}
.yc0{bottom:673.890000px;}
.y240{bottom:674.721000px;}
.y1ff{bottom:676.190250px;}
.y74{bottom:677.658000px;}
.y14f{bottom:678.037500px;}
.y109{bottom:678.379500px;}
.y12b{bottom:678.989250px;}
.ye4{bottom:679.929000px;}
.y18a{bottom:681.901500px;}
.y8{bottom:683.983500px;}
.y4f{bottom:686.041500px;}
.y21e{bottom:689.462250px;}
.y29{bottom:693.114000px;}
.y99{bottom:693.631500px;}
.ybf{bottom:694.693500px;}
.y23f{bottom:695.061000px;}
.y1c4{bottom:695.547000px;}
.y1e3{bottom:695.893500px;}
.y1fe{bottom:696.744000px;}
.y73{bottom:698.116500px;}
.y14e{bottom:698.461500px;}
.y108{bottom:698.769000px;}
.y12a{bottom:699.327000px;}
.ye3{bottom:700.180500px;}
.y1aa{bottom:700.410750px;}
.y189{bottom:703.981500px;}
.y25d{bottom:706.693500px;}
.y4e{bottom:707.707500px;}
.y7{bottom:711.178500px;}
.y28{bottom:714.072750px;}
.y98{bottom:714.538500px;}
.ybe{bottom:715.497000px;}
.y1e2{bottom:716.148000px;}
.y1c3{bottom:717.313500px;}
.y72{bottom:718.575000px;}
.y14d{bottom:718.885500px;}
.y107{bottom:719.196000px;}
.y21d{bottom:719.430750px;}
.y129{bottom:719.664750px;}
.ye2{bottom:720.432000px;}
.y1a9{bottom:722.887500px;}
.y23e{bottom:723.915000px;}
.y1fd{bottom:725.802750px;}
.y188{bottom:726.061500px;}
.y4d{bottom:729.373500px;}
.y27{bottom:735.031500px;}
.y97{bottom:735.445500px;}
.ybd{bottom:736.300500px;}
.y71{bottom:739.033500px;}
.y14c{bottom:739.309500px;}
.y106{bottom:739.585500px;}
.y128{bottom:740.002500px;}
.ye1{bottom:740.683500px;}
.y23d{bottom:744.264000px;}
.y1e1{bottom:744.907500px;}
.y1a8{bottom:745.364250px;}
.y1fc{bottom:746.356500px;}
.y1c2{bottom:747.585000px;}
.y187{bottom:748.141500px;}
.y25c{bottom:748.198500px;}
.y21c{bottom:749.395500px;}
.y4c{bottom:751.039500px;}
.y26{bottom:755.990250px;}
.y96{bottom:756.352500px;}
.ybc{bottom:757.104000px;}
.y70{bottom:759.492000px;}
.y6{bottom:759.637500px;}
.y14b{bottom:759.733500px;}
.y105{bottom:759.975000px;}
.y127{bottom:760.340250px;}
.ye0{bottom:760.935000px;}
.y23c{bottom:764.604000px;}
.y1e0{bottom:765.162000px;}
.y1fb{bottom:766.910250px;}
.y25b{bottom:767.698500px;}
.y1a7{bottom:767.841000px;}
.y1c1{bottom:769.351500px;}
.y186{bottom:770.221500px;}
.y4b{bottom:772.705500px;}
.y25{bottom:776.949000px;}
.y95{bottom:777.259500px;}
.ybb{bottom:777.907500px;}
.y21b{bottom:779.367750px;}
.y6f{bottom:779.950500px;}
.y14a{bottom:780.157500px;}
.y104{bottom:780.364500px;}
.y126{bottom:780.675000px;}
.ydf{bottom:781.186500px;}
.y25a{bottom:787.198500px;}
.y1fa{bottom:787.464000px;}
.y1a6{bottom:790.317750px;}
.y5{bottom:791.335500px;}
.y185{bottom:792.301500px;}
.y23b{bottom:793.458000px;}
.y1df{bottom:793.921500px;}
.y4a{bottom:794.371500px;}
.y24{bottom:797.907750px;}
.y94{bottom:798.166500px;}
.yba{bottom:798.711000px;}
.y1c0{bottom:799.623000px;}
.y6e{bottom:800.409000px;}
.y149{bottom:800.581500px;}
.y103{bottom:800.754000px;}
.y21a{bottom:800.820000px;}
.y125{bottom:801.012750px;}
.yde{bottom:801.438000px;}
.y259{bottom:806.698500px;}
.y1a5{bottom:812.794500px;}
.y23a{bottom:813.807000px;}
.y1de{bottom:814.176000px;}
.y184{bottom:814.381500px;}
.y49{bottom:816.037500px;}
.y1f9{bottom:816.522750px;}
.y23{bottom:818.866500px;}
.y93{bottom:819.073500px;}
.yb9{bottom:819.487500px;}
.y6d{bottom:820.867500px;}
.y148{bottom:821.005500px;}
.y102{bottom:821.143500px;}
.y124{bottom:821.350500px;}
.y1bf{bottom:821.389500px;}
.ydd{bottom:821.689500px;}
.y258{bottom:826.198500px;}
.y219{bottom:830.792250px;}
.y239{bottom:834.147000px;}
.y1a4{bottom:835.271250px;}
.y183{bottom:836.461500px;}
.y48{bottom:837.703500px;}
.y22{bottom:839.825250px;}
.y92{bottom:839.980500px;}
.yb8{bottom:840.291000px;}
.y6c{bottom:841.326000px;}
.y147{bottom:841.429500px;}
.y101{bottom:841.533000px;}
.y123{bottom:841.688250px;}
.ydc{bottom:841.947000px;}
.y1dd{bottom:842.935500px;}
.y1f8{bottom:845.581500px;}
.y257{bottom:845.698500px;}
.y1be{bottom:851.661000px;}
.y4{bottom:852.801000px;}
.y1a3{bottom:857.748000px;}
.y182{bottom:858.541500px;}
.y47{bottom:859.369500px;}
.y218{bottom:860.764500px;}
.y21{bottom:860.784000px;}
.y91{bottom:860.887500px;}
.yb7{bottom:861.094500px;}
.y6b{bottom:861.784500px;}
.y146{bottom:861.853500px;}
.y100{bottom:861.922500px;}
.y122{bottom:862.026000px;}
.ydb{bottom:862.198500px;}
.y238{bottom:863.001000px;}
.y1dc{bottom:863.190000px;}
.y256{bottom:865.198500px;}
.y1bd{bottom:873.427500px;}
.y1f7{bottom:874.640250px;}
.y1a2{bottom:880.224750px;}
.y181{bottom:880.621500px;}
.y46{bottom:881.035500px;}
.y20{bottom:881.742750px;}
.y90{bottom:881.794500px;}
.yb6{bottom:881.898000px;}
.y217{bottom:882.231750px;}
.y6a{bottom:882.243000px;}
.y145{bottom:882.277500px;}
.yff{bottom:882.312000px;}
.y121{bottom:882.363750px;}
.yda{bottom:882.450000px;}
.y3{bottom:882.501000px;}
.y237{bottom:883.350000px;}
.y1db{bottom:883.444500px;}
.y255{bottom:884.698500px;}
.y1f{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y254{bottom:904.198500px;}
.y1e{bottom:948.189000px;}
.h14{height:26.732030px;}
.h11{height:34.866492px;}
.h1e{height:34.869492px;}
.hd{height:34.872492px;}
.ha{height:41.648438px;}
.he{height:46.854492px;}
.h19{height:46.866492px;}
.h12{height:48.530695px;}
.h4{height:52.060547px;}
.h3{height:54.663574px;}
.h8{height:59.869629px;}
.h10{height:59.875629px;}
.h18{height:59.878629px;}
.h1c{height:59.911629px;}
.h1d{height:59.935629px;}
.h13{height:59.965629px;}
.hf{height:59.983629px;}
.h15{height:60.512695px;}
.h2{height:65.075684px;}
.h7{height:67.236328px;}
.h1f{height:68.778809px;}
.h21{height:70.550145px;}
.h22{height:70.586145px;}
.h20{height:70.598145px;}
.h25{height:70.613145px;}
.h24{height:70.628145px;}
.h2a{height:70.634145px;}
.h27{height:70.637145px;}
.h29{height:70.640145px;}
.h28{height:70.643145px;}
.h23{height:70.658145px;}
.h26{height:70.748145px;}
.h6{height:72.884766px;}
.h17{height:77.255777px;}
.h9{height:77.321777px;}
.hc{height:77.363777px;}
.h1a{height:77.393777px;}
.h16{height:77.429777px;}
.hb{height:77.483777px;}
.h1b{height:77.915777px;}
.h5{height:93.708984px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:80.602500px;}
.x8{left:82.551000px;}
.x1{left:83.686650px;}
.x5{left:85.200000px;}
.xa{left:96.251550px;}
.x7{left:104.019150px;}
.x6{left:105.028500px;}
.x4{left:106.365000px;}
.xd{left:111.241800px;}
.xc{left:113.432550px;}
.xb{left:114.622800px;}
.x3{left:230.001000px;}
.x2{left:233.415000px;}
@media print{
.va{vertical-align:-18.650667pt;}
.v2{vertical-align:-15.093333pt;}
.v3{vertical-align:-10.650667pt;}
.v5{vertical-align:-9.525333pt;}
.v9{vertical-align:-8.021333pt;}
.v7{vertical-align:-5.306667pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:7.981333pt;}
.v6{vertical-align:9.760000pt;}
.v4{vertical-align:10.661333pt;}
.v1{vertical-align:15.237333pt;}
.v8{vertical-align:18.600000pt;}
.ls83{letter-spacing:-15.149333pt;}
.ls60{letter-spacing:-6.072000pt;}
.ls3a{letter-spacing:-5.826667pt;}
.lsdd{letter-spacing:-5.376000pt;}
.ls5c{letter-spacing:-5.029333pt;}
.ls67{letter-spacing:-4.416000pt;}
.lsaf{letter-spacing:-4.368000pt;}
.ls5d{letter-spacing:-4.354667pt;}
.ls34{letter-spacing:-4.232000pt;}
.lse3{letter-spacing:-3.864000pt;}
.ls1{letter-spacing:-3.800000pt;}
.lse1{letter-spacing:-3.752000pt;}
.ls76{letter-spacing:-3.557333pt;}
.lse8{letter-spacing:-3.472000pt;}
.lsa5{letter-spacing:-3.434667pt;}
.ls17{letter-spacing:-3.373333pt;}
.ls28{letter-spacing:-3.250667pt;}
.ls8a{letter-spacing:-3.128000pt;}
.lsbe{letter-spacing:-3.024000pt;}
.ls8b{letter-spacing:-3.005333pt;}
.ls6e{letter-spacing:-2.821333pt;}
.ls90{letter-spacing:-2.760000pt;}
.ls8f{letter-spacing:-2.698667pt;}
.ls79{letter-spacing:-2.637333pt;}
.ls2d{letter-spacing:-2.576000pt;}
.ls40{letter-spacing:-2.514667pt;}
.ls46{letter-spacing:-2.453333pt;}
.ls63{letter-spacing:-2.392000pt;}
.ls32{letter-spacing:-2.330667pt;}
.ls39{letter-spacing:-2.269333pt;}
.ls42{letter-spacing:-2.208000pt;}
.ls85{letter-spacing:-2.146667pt;}
.ls3b{letter-spacing:-2.085333pt;}
.lsee{letter-spacing:-2.080000pt;}
.ls47{letter-spacing:-2.024000pt;}
.ls4b{letter-spacing:-2.016000pt;}
.ls2b{letter-spacing:-1.962667pt;}
.ls26{letter-spacing:-1.933333pt;}
.lsb2{letter-spacing:-1.904000pt;}
.ls48{letter-spacing:-1.901333pt;}
.ls1b{letter-spacing:-1.840000pt;}
.lsf{letter-spacing:-1.778667pt;}
.ls69{letter-spacing:-1.717333pt;}
.lsb1{letter-spacing:-1.680000pt;}
.ls5f{letter-spacing:-1.656000pt;}
.ls2a{letter-spacing:-1.594667pt;}
.ls66{letter-spacing:-1.533333pt;}
.ls33{letter-spacing:-1.472000pt;}
.ls3f{letter-spacing:-1.410667pt;}
.ls52{letter-spacing:-1.349333pt;}
.lsbb{letter-spacing:-1.344000pt;}
.ls14{letter-spacing:-1.288000pt;}
.lsc1{letter-spacing:-1.232000pt;}
.ls1c{letter-spacing:-1.226667pt;}
.ls51{letter-spacing:-1.200000pt;}
.lsb9{letter-spacing:-1.176000pt;}
.ls18{letter-spacing:-1.165333pt;}
.lsb4{letter-spacing:-1.120000pt;}
.ls16{letter-spacing:-1.104000pt;}
.lsb8{letter-spacing:-1.064000pt;}
.ls10{letter-spacing:-1.042667pt;}
.lsc7{letter-spacing:-1.008000pt;}
.ls2c{letter-spacing:-0.981333pt;}
.ls92{letter-spacing:-0.965448pt;}
.lsd5{letter-spacing:-0.952000pt;}
.ls12{letter-spacing:-0.920000pt;}
.lsd2{letter-spacing:-0.896000pt;}
.ls20{letter-spacing:-0.858667pt;}
.lsf2{letter-spacing:-0.853333pt;}
.lsad{letter-spacing:-0.840000pt;}
.ls77{letter-spacing:-0.822419pt;}
.lsc{letter-spacing:-0.800000pt;}
.ls27{letter-spacing:-0.797333pt;}
.lsc8{letter-spacing:-0.784000pt;}
.ls1f{letter-spacing:-0.736000pt;}
.lsb7{letter-spacing:-0.728000pt;}
.ls70{letter-spacing:-0.720000pt;}
.lsf1{letter-spacing:-0.693333pt;}
.ls19{letter-spacing:-0.674667pt;}
.lsde{letter-spacing:-0.672000pt;}
.ls93{letter-spacing:-0.643632pt;}
.lsb3{letter-spacing:-0.616000pt;}
.ls13{letter-spacing:-0.613333pt;}
.ls9e{letter-spacing:-0.607875pt;}
.ls81{letter-spacing:-0.600000pt;}
.lsaa{letter-spacing:-0.560000pt;}
.ls53{letter-spacing:-0.552000pt;}
.ls9b{letter-spacing:-0.536360pt;}
.ls7c{letter-spacing:-0.531696pt;}
.ls95{letter-spacing:-0.528000pt;}
.lsd0{letter-spacing:-0.504000pt;}
.ls61{letter-spacing:-0.490667pt;}
.lsbc{letter-spacing:-0.448000pt;}
.ls5b{letter-spacing:-0.429333pt;}
.lsa2{letter-spacing:-0.393331pt;}
.lsb6{letter-spacing:-0.392000pt;}
.ls62{letter-spacing:-0.368000pt;}
.lsa1{letter-spacing:-0.363792pt;}
.lsba{letter-spacing:-0.336000pt;}
.ls7{letter-spacing:-0.320000pt;}
.lsa0{letter-spacing:-0.307824pt;}
.ls1e{letter-spacing:-0.306667pt;}
.ls4a{letter-spacing:-0.288000pt;}
.lsd{letter-spacing:-0.266667pt;}
.ls30{letter-spacing:-0.245333pt;}
.lsd1{letter-spacing:-0.224000pt;}
.ls74{letter-spacing:-0.214544pt;}
.lsa{letter-spacing:-0.213333pt;}
.lsa6{letter-spacing:-0.195888pt;}
.ls75{letter-spacing:-0.184000pt;}
.ls91{letter-spacing:-0.178787pt;}
.lsc3{letter-spacing:-0.168000pt;}
.ls2e{letter-spacing:-0.122667pt;}
.lsd3{letter-spacing:-0.112000pt;}
.ls96{letter-spacing:-0.096000pt;}
.lsa4{letter-spacing:-0.072000pt;}
.ls54{letter-spacing:-0.061333pt;}
.lsb5{letter-spacing:-0.056000pt;}
.ls7b{letter-spacing:-0.055968pt;}
.ls49{letter-spacing:-0.048000pt;}
.ls9a{letter-spacing:-0.035757pt;}
.ls4{letter-spacing:0.000000pt;}
.lscf{letter-spacing:0.001512pt;}
.ls7f{letter-spacing:0.001656pt;}
.lsd6{letter-spacing:0.002045pt;}
.lscc{letter-spacing:0.002629pt;}
.ls23{letter-spacing:0.004000pt;}
.ls22{letter-spacing:0.004240pt;}
.ls4e{letter-spacing:0.004323pt;}
.lsca{letter-spacing:0.006419pt;}
.lsb{letter-spacing:0.053333pt;}
.ls15{letter-spacing:0.061333pt;}
.ls9f{letter-spacing:0.083952pt;}
.lseb{letter-spacing:0.106667pt;}
.lsdf{letter-spacing:0.112000pt;}
.ls5e{letter-spacing:0.122667pt;}
.lsc4{letter-spacing:0.168000pt;}
.ls78{letter-spacing:0.184000pt;}
.ls3d{letter-spacing:0.245333pt;}
.lsac{letter-spacing:0.280000pt;}
.ls64{letter-spacing:0.306667pt;}
.lscb{letter-spacing:0.315752pt;}
.lse0{letter-spacing:0.359128pt;}
.ls57{letter-spacing:0.368000pt;}
.ls6d{letter-spacing:0.400000pt;}
.ls2f{letter-spacing:0.490667pt;}
.ls86{letter-spacing:0.500603pt;}
.ls87{letter-spacing:0.503712pt;}
.ls44{letter-spacing:0.552000pt;}
.lse2{letter-spacing:0.560000pt;}
.ls43{letter-spacing:0.613333pt;}
.lsa8{letter-spacing:0.672000pt;}
.ls1a{letter-spacing:0.674667pt;}
.lsda{letter-spacing:0.685608pt;}
.lsd9{letter-spacing:0.767200pt;}
.lsed{letter-spacing:0.800000pt;}
.lsab{letter-spacing:0.840000pt;}
.ls72{letter-spacing:0.848000pt;}
.lsea{letter-spacing:0.906667pt;}
.ls98{letter-spacing:0.920000pt;}
.ls80{letter-spacing:0.979440pt;}
.ls1d{letter-spacing:0.981333pt;}
.lsc2{letter-spacing:1.008000pt;}
.ls6f{letter-spacing:1.042667pt;}
.ls88{letter-spacing:1.056000pt;}
.lsae{letter-spacing:1.064000pt;}
.ls3c{letter-spacing:1.104000pt;}
.lsd8{letter-spacing:1.110032pt;}
.ls5{letter-spacing:1.120000pt;}
.ls55{letter-spacing:1.144235pt;}
.ls37{letter-spacing:1.161333pt;}
.lsec{letter-spacing:1.173333pt;}
.ls3{letter-spacing:1.194667pt;}
.ls56{letter-spacing:1.288000pt;}
.ls5a{letter-spacing:1.410667pt;}
.lsf0{letter-spacing:1.440000pt;}
.ls38{letter-spacing:1.454667pt;}
.ls41{letter-spacing:1.533333pt;}
.ls94{letter-spacing:1.584000pt;}
.ls29{letter-spacing:1.594667pt;}
.lscd{letter-spacing:1.624000pt;}
.lse4{letter-spacing:1.697696pt;}
.lsef{letter-spacing:1.706667pt;}
.ls84{letter-spacing:1.717333pt;}
.lsd4{letter-spacing:1.736000pt;}
.ls82{letter-spacing:1.752109pt;}
.ls50{letter-spacing:1.780000pt;}
.ls59{letter-spacing:1.785333pt;}
.ls9c{letter-spacing:1.840000pt;}
.lsbf{letter-spacing:1.960000pt;}
.ls36{letter-spacing:2.084000pt;}
.ls25{letter-spacing:2.133333pt;}
.lsa3{letter-spacing:2.146667pt;}
.ls24{letter-spacing:2.208000pt;}
.ls4f{letter-spacing:2.466667pt;}
.ls8e{letter-spacing:2.514667pt;}
.ls3e{letter-spacing:2.821333pt;}
.ls9d{letter-spacing:3.005333pt;}
.lsb0{letter-spacing:3.192000pt;}
.lse{letter-spacing:3.285333pt;}
.ls8{letter-spacing:3.733333pt;}
.ls8d{letter-spacing:4.293333pt;}
.ls7a{letter-spacing:4.354667pt;}
.ls6{letter-spacing:5.120000pt;}
.lsc6{letter-spacing:5.208000pt;}
.ls9{letter-spacing:5.226667pt;}
.lsce{letter-spacing:5.264000pt;}
.ls65{letter-spacing:5.274667pt;}
.ls2{letter-spacing:5.333333pt;}
.lsa9{letter-spacing:5.600000pt;}
.ls45{letter-spacing:5.642667pt;}
.lsc5{letter-spacing:5.712000pt;}
.ls31{letter-spacing:6.010667pt;}
.lsbd{letter-spacing:6.664000pt;}
.lsc0{letter-spacing:7.112000pt;}
.ls73{letter-spacing:7.253472pt;}
.lse7{letter-spacing:7.560000pt;}
.lse9{letter-spacing:7.680000pt;}
.lsd7{letter-spacing:8.120000pt;}
.ls6c{letter-spacing:8.832000pt;}
.ls4d{letter-spacing:8.893333pt;}
.ls68{letter-spacing:9.077333pt;}
.ls6b{letter-spacing:10.733333pt;}
.lsdb{letter-spacing:11.200000pt;}
.ls7e{letter-spacing:11.224000pt;}
.ls99{letter-spacing:11.408000pt;}
.lse6{letter-spacing:13.720000pt;}
.lsdc{letter-spacing:17.080000pt;}
.ls6a{letter-spacing:414.290133pt;}
.ls8c{letter-spacing:414.650133pt;}
.lsa7{letter-spacing:414.657067pt;}
.ls97{letter-spacing:414.996800pt;}
.lsc9{letter-spacing:415.130133pt;}
.ls7d{letter-spacing:416.150400pt;}
.lse5{letter-spacing:416.790400pt;}
.ls4c{letter-spacing:418.103467pt;}
.ls21{letter-spacing:419.097067pt;}
.ls0{letter-spacing:420.910400pt;}
.ls58{letter-spacing:846.688000pt;}
.ls89{letter-spacing:847.130667pt;}
.ls11{letter-spacing:849.461333pt;}
.ls35{letter-spacing:853.061333pt;}
.ls71{letter-spacing:854.821333pt;}
.wsff{word-spacing:-22.666667pt;}
.ws4{word-spacing:-20.213333pt;}
.wsbc{word-spacing:-20.160000pt;}
.ws2{word-spacing:-20.106667pt;}
.ws77{word-spacing:-19.133333pt;}
.wsaf{word-spacing:-18.338667pt;}
.ws88{word-spacing:-18.133333pt;}
.ws7c{word-spacing:-17.786667pt;}
.ws50{word-spacing:-17.533333pt;}
.ws55{word-spacing:-17.234667pt;}
.ws20{word-spacing:-16.800000pt;}
.wsb1{word-spacing:-16.621333pt;}
.wsda{word-spacing:-16.408000pt;}
.ws17{word-spacing:-16.253333pt;}
.wsae{word-spacing:-16.069333pt;}
.wsd9{word-spacing:-16.016000pt;}
.wsf4{word-spacing:-15.904000pt;}
.wsdb{word-spacing:-15.736000pt;}
.ws56{word-spacing:-15.517333pt;}
.ws64{word-spacing:-15.456000pt;}
.ws3a{word-spacing:-15.394667pt;}
.wsc2{word-spacing:-15.344000pt;}
.ws80{word-spacing:-15.333333pt;}
.wsec{word-spacing:-15.288000pt;}
.ws8a{word-spacing:-15.272000pt;}
.ws11{word-spacing:-15.210667pt;}
.wsea{word-spacing:-15.176000pt;}
.ws93{word-spacing:-15.088000pt;}
.wseb{word-spacing:-15.008000pt;}
.ws0{word-spacing:-14.933333pt;}
.ws23{word-spacing:-14.904000pt;}
.ws6{word-spacing:-14.781333pt;}
.ws5f{word-spacing:-14.720000pt;}
.wsc4{word-spacing:-14.672000pt;}
.wsc1{word-spacing:-14.616000pt;}
.ws15{word-spacing:-14.536000pt;}
.ws14{word-spacing:-14.474667pt;}
.ws3b{word-spacing:-14.413333pt;}
.ws21{word-spacing:-14.352000pt;}
.ws3f{word-spacing:-14.290667pt;}
.ws24{word-spacing:-14.229333pt;}
.ws61{word-spacing:-14.168000pt;}
.wsad{word-spacing:-14.106667pt;}
.ws3c{word-spacing:-14.045333pt;}
.ws13{word-spacing:-13.984000pt;}
.ws16{word-spacing:-13.922667pt;}
.ws10{word-spacing:-13.861333pt;}
.wsdc{word-spacing:-13.832000pt;}
.ws52{word-spacing:-13.800000pt;}
.wsab{word-spacing:-13.738667pt;}
.ws26{word-spacing:-13.677333pt;}
.wse9{word-spacing:-13.608000pt;}
.ws3e{word-spacing:-13.554667pt;}
.ws60{word-spacing:-13.493333pt;}
.ws40{word-spacing:-13.440000pt;}
.ws9c{word-spacing:-13.432000pt;}
.wsc6{word-spacing:-13.384000pt;}
.ws63{word-spacing:-13.370667pt;}
.wsac{word-spacing:-13.309333pt;}
.ws51{word-spacing:-13.248000pt;}
.ws22{word-spacing:-13.186667pt;}
.ws5e{word-spacing:-13.125333pt;}
.wsc3{word-spacing:-13.104000pt;}
.ws78{word-spacing:-13.064000pt;}
.ws5{word-spacing:-12.960000pt;}
.ws100{word-spacing:-12.906667pt;}
.ws7e{word-spacing:-12.880000pt;}
.ws3{word-spacing:-12.853333pt;}
.ws25{word-spacing:-12.818667pt;}
.ws62{word-spacing:-12.757333pt;}
.ws3d{word-spacing:-12.696000pt;}
.wsc5{word-spacing:-12.488000pt;}
.ws108{word-spacing:-12.480000pt;}
.ws107{word-spacing:-12.373333pt;}
.ws109{word-spacing:-12.320000pt;}
.ws95{word-spacing:-12.021333pt;}
.wsf8{word-spacing:-11.984000pt;}
.ws89{word-spacing:-11.799920pt;}
.ws12{word-spacing:-11.776000pt;}
.ws1{word-spacing:-11.685333pt;}
.ws41{word-spacing:-11.568000pt;}
.wsb4{word-spacing:-11.408000pt;}
.ws9f{word-spacing:-11.328000pt;}
.ws54{word-spacing:-11.192045pt;}
.ws79{word-spacing:-11.136000pt;}
.ws27{word-spacing:-10.917333pt;}
.wsf9{word-spacing:-10.871784pt;}
.ws94{word-spacing:-10.794667pt;}
.ws8b{word-spacing:-10.548413pt;}
.wsf5{word-spacing:-10.284120pt;}
.ws53{word-spacing:-10.047811pt;}
.wsb0{word-spacing:-10.012053pt;}
.ws9d{word-spacing:-9.869024pt;}
.ws7d{word-spacing:-9.833267pt;}
.wsbb{word-spacing:-9.654480pt;}
.wsb2{word-spacing:-9.511451pt;}
.wsc0{word-spacing:-9.464000pt;}
.wsb3{word-spacing:-9.439936pt;}
.ws39{word-spacing:-9.322667pt;}
.ws7f{word-spacing:-9.225392pt;}
.wsfe{word-spacing:-9.174088pt;}
.ws9e{word-spacing:-9.082363pt;}
.ws75{word-spacing:-9.077333pt;}
.ws8c{word-spacing:-8.842944pt;}
.wsf7{word-spacing:-8.749664pt;}
.wsf3{word-spacing:-8.456000pt;}
.wsf6{word-spacing:-8.423184pt;}
.wsdf{word-spacing:-7.112000pt;}
.wsd7{word-spacing:-6.664000pt;}
.ws38{word-spacing:-6.010667pt;}
.wse5{word-spacing:-5.712000pt;}
.ws4c{word-spacing:-5.642667pt;}
.wsc7{word-spacing:-5.600000pt;}
.ws8{word-spacing:-5.333333pt;}
.ws72{word-spacing:-5.274667pt;}
.wse6{word-spacing:-5.208000pt;}
.ws85{word-spacing:-4.354667pt;}
.wsa{word-spacing:-3.733333pt;}
.ws99{word-spacing:-3.312000pt;}
.wse{word-spacing:-3.285333pt;}
.wscd{word-spacing:-3.192000pt;}
.wsb7{word-spacing:-3.005333pt;}
.ws46{word-spacing:-2.821333pt;}
.ws9a{word-spacing:-2.514667pt;}
.wsbe{word-spacing:-2.269333pt;}
.wsbd{word-spacing:-2.146667pt;}
.ws28{word-spacing:-2.133333pt;}
.wsde{word-spacing:-1.960000pt;}
.wsb6{word-spacing:-1.840000pt;}
.wsf0{word-spacing:-1.736000pt;}
.ws8e{word-spacing:-1.717333pt;}
.ws10a{word-spacing:-1.706667pt;}
.ws2a{word-spacing:-1.594667pt;}
.wsa9{word-spacing:-1.584000pt;}
.ws49{word-spacing:-1.533333pt;}
.ws10c{word-spacing:-1.440000pt;}
.ws65{word-spacing:-1.410667pt;}
.ws98{word-spacing:-1.349333pt;}
.ws5b{word-spacing:-1.288000pt;}
.ws105{word-spacing:-1.173333pt;}
.ws9{word-spacing:-1.120000pt;}
.ws44{word-spacing:-1.104000pt;}
.wscc{word-spacing:-1.064000pt;}
.ws92{word-spacing:-1.056000pt;}
.ws32{word-spacing:-1.042667pt;}
.wse1{word-spacing:-1.008000pt;}
.ws1d{word-spacing:-0.981333pt;}
.ws102{word-spacing:-0.906667pt;}
.wsc9{word-spacing:-0.840000pt;}
.ws106{word-spacing:-0.800000pt;}
.ws5a{word-spacing:-0.797333pt;}
.ws1b{word-spacing:-0.674667pt;}
.ws4a{word-spacing:-0.613333pt;}
.wsfc{word-spacing:-0.560000pt;}
.ws4b{word-spacing:-0.552000pt;}
.ws91{word-spacing:-0.503712pt;}
.ws33{word-spacing:-0.490667pt;}
.ws9b{word-spacing:-0.429333pt;}
.ws5c{word-spacing:-0.368000pt;}
.ws6f{word-spacing:-0.306667pt;}
.wsca{word-spacing:-0.280000pt;}
.ws90{word-spacing:-0.245333pt;}
.wse4{word-spacing:-0.168000pt;}
.ws6a{word-spacing:-0.122667pt;}
.wsfb{word-spacing:-0.112000pt;}
.ws104{word-spacing:-0.106667pt;}
.wsb8{word-spacing:-0.083952pt;}
.wsa6{word-spacing:-0.061333pt;}
.wsb{word-spacing:-0.053333pt;}
.ws7{word-spacing:0.000000pt;}
.ws86{word-spacing:0.055968pt;}
.wsd1{word-spacing:0.056000pt;}
.ws59{word-spacing:0.061333pt;}
.wsaa{word-spacing:0.096000pt;}
.wsef{word-spacing:0.112000pt;}
.ws31{word-spacing:0.122667pt;}
.wse3{word-spacing:0.168000pt;}
.ws81{word-spacing:0.184000pt;}
.wsbf{word-spacing:0.195888pt;}
.ws2c{word-spacing:0.245333pt;}
.wsd{word-spacing:0.266667pt;}
.ws36{word-spacing:0.306667pt;}
.wsb9{word-spacing:0.307824pt;}
.ws103{word-spacing:0.320000pt;}
.wsd4{word-spacing:0.336000pt;}
.wsba{word-spacing:0.363792pt;}
.ws6e{word-spacing:0.368000pt;}
.wse2{word-spacing:0.392000pt;}
.ws67{word-spacing:0.429333pt;}
.wsd6{word-spacing:0.448000pt;}
.ws6d{word-spacing:0.490667pt;}
.wsed{word-spacing:0.504000pt;}
.ws87{word-spacing:0.531696pt;}
.ws58{word-spacing:0.552000pt;}
.wsc8{word-spacing:0.560000pt;}
.ws19{word-spacing:0.613333pt;}
.wsd0{word-spacing:0.616000pt;}
.wsa8{word-spacing:0.643632pt;}
.wsfa{word-spacing:0.672000pt;}
.ws2e{word-spacing:0.674667pt;}
.wsd2{word-spacing:0.728000pt;}
.ws1e{word-spacing:0.736000pt;}
.wse8{word-spacing:0.784000pt;}
.ws29{word-spacing:0.797333pt;}
.wsc{word-spacing:0.800000pt;}
.wscb{word-spacing:0.840000pt;}
.ws1f{word-spacing:0.858667pt;}
.wsee{word-spacing:0.896000pt;}
.ws18{word-spacing:0.920000pt;}
.wsf1{word-spacing:0.952000pt;}
.ws2f{word-spacing:0.981333pt;}
.wse7{word-spacing:1.008000pt;}
.wsf{word-spacing:1.042667pt;}
.wsf2{word-spacing:1.064000pt;}
.ws1a{word-spacing:1.104000pt;}
.wsd5{word-spacing:1.120000pt;}
.ws2b{word-spacing:1.165333pt;}
.wsd3{word-spacing:1.176000pt;}
.ws34{word-spacing:1.226667pt;}
.wse0{word-spacing:1.232000pt;}
.ws45{word-spacing:1.288000pt;}
.wsdd{word-spacing:1.344000pt;}
.ws57{word-spacing:1.349333pt;}
.ws47{word-spacing:1.410667pt;}
.ws66{word-spacing:1.472000pt;}
.ws73{word-spacing:1.533333pt;}
.ws2d{word-spacing:1.594667pt;}
.ws10b{word-spacing:1.600000pt;}
.ws6c{word-spacing:1.656000pt;}
.wsce{word-spacing:1.680000pt;}
.ws76{word-spacing:1.717333pt;}
.ws1c{word-spacing:1.840000pt;}
.ws4e{word-spacing:1.901333pt;}
.wscf{word-spacing:1.904000pt;}
.ws71{word-spacing:1.962667pt;}
.ws4f{word-spacing:2.016000pt;}
.ws4d{word-spacing:2.024000pt;}
.ws43{word-spacing:2.085333pt;}
.ws8f{word-spacing:2.146667pt;}
.ws35{word-spacing:2.208000pt;}
.ws42{word-spacing:2.269333pt;}
.ws7b{word-spacing:2.453333pt;}
.ws48{word-spacing:2.514667pt;}
.ws30{word-spacing:2.576000pt;}
.ws84{word-spacing:2.637333pt;}
.wsa4{word-spacing:2.698667pt;}
.wsa5{word-spacing:2.760000pt;}
.ws7a{word-spacing:2.821333pt;}
.ws37{word-spacing:2.882667pt;}
.ws96{word-spacing:3.005333pt;}
.wsd8{word-spacing:3.024000pt;}
.ws83{word-spacing:3.250667pt;}
.ws101{word-spacing:3.472000pt;}
.ws82{word-spacing:3.557333pt;}
.wsfd{word-spacing:3.864000pt;}
.ws69{word-spacing:4.354667pt;}
.ws74{word-spacing:4.416000pt;}
.wsa7{word-spacing:4.845333pt;}
.ws68{word-spacing:5.029333pt;}
.wsa0{word-spacing:5.152000pt;}
.ws70{word-spacing:5.274667pt;}
.ws6b{word-spacing:6.072000pt;}
.wsa1{word-spacing:6.808000pt;}
.ws97{word-spacing:7.421333pt;}
.wsb5{word-spacing:7.544000pt;}
.wsa2{word-spacing:10.304000pt;}
.wsa3{word-spacing:12.450667pt;}
.ws8d{word-spacing:15.149333pt;}
.ws5d{word-spacing:38.617920pt;}
._23{margin-left:-17.040533pt;}
._22{margin-left:-15.960267pt;}
._1b{margin-left:-13.770133pt;}
._24{margin-left:-12.746933pt;}
._1a{margin-left:-11.517333pt;}
._19{margin-left:-10.417333pt;}
._6{margin-left:-9.014400pt;}
._13{margin-left:-7.743733pt;}
._12{margin-left:-6.733067pt;}
._f{margin-left:-5.730667pt;}
._7{margin-left:-4.439467pt;}
._9{margin-left:-2.977067pt;}
._4{margin-left:-2.017067pt;}
._5{margin-left:-1.006933pt;}
._2{width:0.938667pt;}
._0{width:2.626667pt;}
._1{width:3.819733pt;}
._e{width:4.709600pt;}
._3{width:5.616000pt;}
._8{width:7.330133pt;}
._10{width:8.368000pt;}
._d{width:9.832000pt;}
._11{width:11.264000pt;}
._15{width:12.265067pt;}
._20{width:13.288267pt;}
._25{width:14.482133pt;}
._18{width:16.255200pt;}
._2a{width:17.215467pt;}
._1f{width:18.258667pt;}
._1d{width:19.825867pt;}
._1e{width:20.725067pt;}
._16{width:22.439200pt;}
._17{width:23.901067pt;}
._21{width:25.157616pt;}
._1c{width:26.114400pt;}
._26{width:28.797333pt;}
._28{width:33.993013pt;}
._14{width:38.617920pt;}
._29{width:39.509867pt;}
._27{width:44.201867pt;}
._2c{width:45.851733pt;}
._2b{width:51.820800pt;}
._a{width:63.466667pt;}
._b{width:224.896000pt;}
._c{width:514.133333pt;}
.fsa{font-size:27.984000pt;}
.fsd{font-size:32.648000pt;}
.fs9{font-size:35.757333pt;}
.fs3{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs7{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fsc{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1da{bottom:94.328000pt;}
.y16b{bottom:94.369333pt;}
.y45{bottom:94.461333pt;}
.y69{bottom:94.482933pt;}
.y236{bottom:94.485333pt;}
.y8f{bottom:94.485600pt;}
.y1d{bottom:94.494667pt;}
.y253{bottom:94.532000pt;}
.yb5{bottom:97.150933pt;}
.y68{bottom:109.818933pt;}
.y252{bottom:111.945333pt;}
.y8e{bottom:112.484267pt;}
.y16a{bottom:112.524000pt;}
.y1c{bottom:112.664667pt;}
.y216{bottom:112.764667pt;}
.y44{bottom:113.091333pt;}
.y235{bottom:113.558000pt;}
.yb4{bottom:113.598400pt;}
.y1d9{bottom:113.676000pt;}
.yd9{bottom:116.263733pt;}
.y67{bottom:127.817600pt;}
.y8d{bottom:128.932000pt;}
.yb3{bottom:128.934400pt;}
.y251{bottom:129.358667pt;}
.y169{bottom:130.678667pt;}
.y215{bottom:131.034667pt;}
.yb2{bottom:131.597067pt;}
.y43{bottom:131.721333pt;}
.y1a1{bottom:135.377333pt;}
.yfe{bottom:136.317333pt;}
.y234{bottom:140.200000pt;}
.y1d8{bottom:140.584000pt;}
.y250{bottom:146.772000pt;}
.y8c{bottom:146.930667pt;}
.y168{bottom:148.833333pt;}
.y1b{bottom:149.021333pt;}
.y42{bottom:150.351333pt;}
.y144{bottom:151.608000pt;}
.yfd{bottom:154.318667pt;}
.yd8{bottom:155.373333pt;}
.y214{bottom:156.864667pt;}
.y233{bottom:159.282000pt;}
.y1d7{bottom:159.932000pt;}
.y8b{bottom:163.377333pt;}
.y24f{bottom:164.185333pt;}
.y66{bottom:166.910667pt;}
.y167{bottom:166.988000pt;}
.y1a{bottom:167.861333pt;}
.y41{bottom:168.981333pt;}
.y143{bottom:169.686000pt;}
.yb1{bottom:170.677333pt;}
.y180{bottom:170.682667pt;}
.yfc{bottom:172.320000pt;}
.yd7{bottom:173.865333pt;}
.y1a0{bottom:174.489333pt;}
.y213{bottom:175.137333pt;}
.y232{bottom:178.357333pt;}
.y8a{bottom:181.377333pt;}
.y24e{bottom:181.598667pt;}
.y166{bottom:185.142667pt;}
.y120{bottom:186.069333pt;}
.y65{bottom:186.169333pt;}
.y1d6{bottom:186.840000pt;}
.y40{bottom:187.611333pt;}
.y142{bottom:187.764000pt;}
.yb0{bottom:189.261333pt;}
.y17f{bottom:189.266667pt;}
.yfb{bottom:190.321333pt;}
.yd6{bottom:192.357333pt;}
.y19f{bottom:194.116000pt;}
.y24d{bottom:199.012000pt;}
.y212{bottom:200.967333pt;}
.y165{bottom:203.297333pt;}
.y11f{bottom:204.193333pt;}
.y231{bottom:204.999333pt;}
.y64{bottom:205.428000pt;}
.y19{bottom:205.625333pt;}
.y141{bottom:205.842000pt;}
.y1d5{bottom:206.188000pt;}
.y3f{bottom:206.241333pt;}
.y1bc{bottom:206.785333pt;}
.yaf{bottom:207.845333pt;}
.y17e{bottom:207.850667pt;}
.yfa{bottom:208.322667pt;}
.y1f6{bottom:208.456000pt;}
.yd5{bottom:210.825333pt;}
.y19e{bottom:213.742667pt;}
.y24c{bottom:216.425333pt;}
.y211{bottom:219.239333pt;}
.y89{bottom:220.497333pt;}
.y164{bottom:221.452000pt;}
.y11e{bottom:222.317333pt;}
.y18{bottom:223.132000pt;}
.y140{bottom:223.920000pt;}
.y230{bottom:224.078000pt;}
.y63{bottom:224.686667pt;}
.y3e{bottom:224.871333pt;}
.yf9{bottom:226.324000pt;}
.yae{bottom:226.429333pt;}
.y17d{bottom:226.434667pt;}
.y1f5{bottom:226.460000pt;}
.y1bb{bottom:226.764667pt;}
.yd4{bottom:229.317333pt;}
.y1d4{bottom:233.096000pt;}
.y19d{bottom:233.360000pt;}
.y24b{bottom:233.838667pt;}
.y210{bottom:237.520000pt;}
.y88{bottom:238.682667pt;}
.y163{bottom:239.606667pt;}
.y11d{bottom:240.456000pt;}
.y17{bottom:240.638667pt;}
.y13f{bottom:241.998000pt;}
.y22f{bottom:243.150000pt;}
.y3d{bottom:243.501333pt;}
.y62{bottom:243.945333pt;}
.yf8{bottom:244.325333pt;}
.yad{bottom:245.013333pt;}
.y17c{bottom:245.018667pt;}
.y1ba{bottom:246.744000pt;}
.yd3{bottom:247.809333pt;}
.y1f4{bottom:252.024000pt;}
.y19c{bottom:252.986667pt;}
.y87{bottom:256.868000pt;}
.y162{bottom:257.761333pt;}
.y16{bottom:258.145333pt;}
.y11c{bottom:258.580000pt;}
.y1d3{bottom:260.004000pt;}
.y13e{bottom:260.074000pt;}
.y3c{bottom:262.131333pt;}
.yf7{bottom:262.326667pt;}
.y24a{bottom:262.598667pt;}
.y61{bottom:263.204000pt;}
.y20f{bottom:263.350000pt;}
.yac{bottom:263.597333pt;}
.y17b{bottom:263.602667pt;}
.yd2{bottom:266.301333pt;}
.y1b9{bottom:266.723333pt;}
.y22e{bottom:269.792000pt;}
.y1f3{bottom:270.028000pt;}
.y19b{bottom:272.481333pt;}
.y86{bottom:275.053333pt;}
.y15{bottom:275.652000pt;}
.y161{bottom:275.916000pt;}
.y11b{bottom:276.704000pt;}
.y13d{bottom:278.152000pt;}
.y1d2{bottom:279.352000pt;}
.yf6{bottom:280.328000pt;}
.y3b{bottom:280.761333pt;}
.yab{bottom:282.181333pt;}
.y17a{bottom:282.186667pt;}
.y60{bottom:282.462667pt;}
.yd1{bottom:284.750667pt;}
.y1b8{bottom:286.702667pt;}
.y22d{bottom:288.874000pt;}
.y20e{bottom:289.180000pt;}
.y19a{bottom:292.108000pt;}
.y14{bottom:293.158667pt;}
.y85{bottom:293.238667pt;}
.y160{bottom:294.070667pt;}
.y11a{bottom:294.828000pt;}
.y1f2{bottom:295.592000pt;}
.y13c{bottom:296.230000pt;}
.yf5{bottom:298.329333pt;}
.y3a{bottom:299.391333pt;}
.yaa{bottom:300.765333pt;}
.y179{bottom:300.770667pt;}
.y5f{bottom:301.721333pt;}
.yd0{bottom:303.242667pt;}
.y1d1{bottom:306.260000pt;}
.y1b7{bottom:306.682000pt;}
.y20d{bottom:307.450000pt;}
.y22c{bottom:307.947333pt;}
.y13{bottom:310.665333pt;}
.y84{bottom:311.424000pt;}
.y199{bottom:311.734667pt;}
.y15f{bottom:312.225333pt;}
.y119{bottom:312.974667pt;}
.y1f1{bottom:313.596000pt;}
.y249{bottom:314.038667pt;}
.y13b{bottom:314.308000pt;}
.yf4{bottom:316.330667pt;}
.y39{bottom:318.021333pt;}
.y178{bottom:319.338667pt;}
.ya9{bottom:319.349333pt;}
.y5e{bottom:320.980000pt;}
.ycf{bottom:321.734667pt;}
.y1d0{bottom:325.608000pt;}
.y1b6{bottom:326.661333pt;}
.y83{bottom:329.609333pt;}
.y15e{bottom:330.380000pt;}
.y118{bottom:331.098667pt;}
.y198{bottom:331.361333pt;}
.y13a{bottom:332.386000pt;}
.y20c{bottom:333.280000pt;}
.yf3{bottom:334.332000pt;}
.y22b{bottom:334.589333pt;}
.y38{bottom:336.651333pt;}
.ya8{bottom:337.912000pt;}
.y177{bottom:337.922667pt;}
.y248{bottom:338.118667pt;}
.y1f0{bottom:339.160000pt;}
.y12{bottom:339.518667pt;}
.yce{bottom:340.226667pt;}
.y5d{bottom:340.238667pt;}
.y1b5{bottom:346.640667pt;}
.y82{bottom:347.793333pt;}
.y15d{bottom:348.534667pt;}
.y117{bottom:349.222667pt;}
.y139{bottom:350.462000pt;}
.y197{bottom:350.988000pt;}
.y20b{bottom:351.550000pt;}
.yf2{bottom:352.333333pt;}
.y1cf{bottom:352.516000pt;}
.y22a{bottom:353.671333pt;}
.y37{bottom:355.281333pt;}
.ya7{bottom:356.496000pt;}
.y176{bottom:356.506667pt;}
.y1ef{bottom:357.164000pt;}
.ycd{bottom:358.718667pt;}
.y5c{bottom:359.497333pt;}
.y81{bottom:365.953333pt;}
.y1b4{bottom:366.620000pt;}
.y15c{bottom:366.689333pt;}
.y116{bottom:367.346667pt;}
.y138{bottom:368.540000pt;}
.yf1{bottom:370.334667pt;}
.y196{bottom:370.614667pt;}
.y1ce{bottom:371.864000pt;}
.y229{bottom:372.746667pt;}
.y36{bottom:373.911333pt;}
.ya6{bottom:375.080000pt;}
.ycc{bottom:377.210667pt;}
.y20a{bottom:377.380000pt;}
.y5b{bottom:378.756000pt;}
.y1ee{bottom:382.728000pt;}
.y11{bottom:383.478667pt;}
.y80{bottom:384.138667pt;}
.y15b{bottom:384.844000pt;}
.y115{bottom:385.470667pt;}
.y1b3{bottom:386.599333pt;}
.y137{bottom:386.618000pt;}
.yf0{bottom:388.336000pt;}
.y195{bottom:390.241333pt;}
.y35{bottom:392.541333pt;}
.ya5{bottom:393.664000pt;}
.y209{bottom:395.650000pt;}
.ycb{bottom:395.702667pt;}
.y5a{bottom:398.014667pt;}
.y1cd{bottom:398.772000pt;}
.y228{bottom:399.388667pt;}
.y1ed{bottom:400.732000pt;}
.y10{bottom:402.318667pt;}
.y7f{bottom:402.324000pt;}
.y15a{bottom:402.998667pt;}
.y114{bottom:403.594667pt;}
.y136{bottom:404.696000pt;}
.yef{bottom:406.337333pt;}
.y1b2{bottom:406.578667pt;}
.y194{bottom:409.868000pt;}
.y34{bottom:411.171333pt;}
.ya4{bottom:412.210667pt;}
.y175{bottom:412.248000pt;}
.yca{bottom:414.170667pt;}
.y59{bottom:417.273333pt;}
.y227{bottom:418.437333pt;}
.y7e{bottom:420.509333pt;}
.y159{bottom:421.153333pt;}
.y208{bottom:421.482000pt;}
.y113{bottom:421.725333pt;}
.y135{bottom:422.774000pt;}
.yee{bottom:424.338667pt;}
.y1cc{bottom:425.680000pt;}
.y1ec{bottom:426.296000pt;}
.y1b1{bottom:426.558000pt;}
.y193{bottom:429.494667pt;}
.y33{bottom:429.801333pt;}
.y174{bottom:430.721333pt;}
.ya3{bottom:430.794667pt;}
.yc9{bottom:432.662667pt;}
.y247{bottom:435.336000pt;}
.y58{bottom:436.522667pt;}
.y226{bottom:437.519333pt;}
.y7d{bottom:438.694667pt;}
.y158{bottom:439.308000pt;}
.y207{bottom:439.765333pt;}
.y112{bottom:439.849333pt;}
.yf{bottom:440.070667pt;}
.y134{bottom:440.850000pt;}
.yed{bottom:442.340000pt;}
.y1eb{bottom:444.300000pt;}
.y1cb{bottom:445.028000pt;}
.y1b0{bottom:446.537333pt;}
.y32{bottom:448.431333pt;}
.y192{bottom:449.121333pt;}
.y173{bottom:449.305333pt;}
.ya2{bottom:449.378667pt;}
.yc8{bottom:451.154667pt;}
.y57{bottom:455.781333pt;}
.y225{bottom:456.601333pt;}
.y7c{bottom:456.880000pt;}
.y157{bottom:457.462667pt;}
.ye{bottom:457.577333pt;}
.y111{bottom:458.012000pt;}
.y206{bottom:458.035333pt;}
.y133{bottom:458.928000pt;}
.yec{bottom:460.341333pt;}
.y246{bottom:460.984000pt;}
.y1af{bottom:466.516667pt;}
.y31{bottom:467.061333pt;}
.y172{bottom:467.889333pt;}
.ya1{bottom:467.962667pt;}
.y191{bottom:468.748000pt;}
.yc7{bottom:469.646667pt;}
.y1ea{bottom:469.864000pt;}
.y1ca{bottom:471.936000pt;}
.y56{bottom:475.040000pt;}
.y7b{bottom:475.065333pt;}
.yd{bottom:475.084000pt;}
.y156{bottom:475.617333pt;}
.y224{bottom:475.683333pt;}
.y110{bottom:476.136000pt;}
.y205{bottom:476.305333pt;}
.y132{bottom:477.006000pt;}
.yeb{bottom:478.342667pt;}
.y30{bottom:485.691333pt;}
.y171{bottom:486.473333pt;}
.y1ae{bottom:486.496000pt;}
.ya0{bottom:486.546667pt;}
.y245{bottom:486.632000pt;}
.y1e9{bottom:487.868000pt;}
.yc6{bottom:488.061333pt;}
.y190{bottom:488.374667pt;}
.y1c9{bottom:491.284000pt;}
.yc{bottom:492.590667pt;}
.y7a{bottom:493.250667pt;}
.y155{bottom:493.772000pt;}
.y10f{bottom:494.260000pt;}
.y55{bottom:494.298667pt;}
.y204{bottom:494.575333pt;}
.y131{bottom:495.082667pt;}
.yea{bottom:496.350667pt;}
.y223{bottom:502.325333pt;}
.y2f{bottom:504.321333pt;}
.y170{bottom:505.057333pt;}
.y9f{bottom:505.130667pt;}
.y1e8{bottom:505.872000pt;}
.y1ad{bottom:506.475333pt;}
.yc5{bottom:506.553333pt;}
.y18f{bottom:508.001333pt;}
.yb{bottom:510.097333pt;}
.y79{bottom:511.436000pt;}
.y154{bottom:511.926667pt;}
.y244{bottom:512.280000pt;}
.y10e{bottom:512.384000pt;}
.y203{bottom:512.845333pt;}
.y130{bottom:513.160667pt;}
.y54{bottom:513.521333pt;}
.ye9{bottom:514.352000pt;}
.y1c8{bottom:518.192000pt;}
.y222{bottom:521.407333pt;}
.y2e{bottom:522.951333pt;}
.y16f{bottom:523.641333pt;}
.y9e{bottom:523.714667pt;}
.yc4{bottom:525.045333pt;}
.y1ac{bottom:526.454667pt;}
.ya{bottom:527.604000pt;}
.y18e{bottom:527.628000pt;}
.y78{bottom:529.621333pt;}
.y153{bottom:530.081333pt;}
.y243{bottom:530.368000pt;}
.y10d{bottom:530.508000pt;}
.y12f{bottom:531.237333pt;}
.y1e7{bottom:531.436000pt;}
.ye8{bottom:532.353333pt;}
.y53{bottom:532.780000pt;}
.y202{bottom:538.675333pt;}
.y2d{bottom:541.581333pt;}
.y16e{bottom:542.225333pt;}
.y9d{bottom:542.282667pt;}
.yc3{bottom:543.537333pt;}
.y261{bottom:544.838667pt;}
.y1c7{bottom:545.100000pt;}
.y18d{bottom:547.254667pt;}
.y77{bottom:547.806667pt;}
.y221{bottom:548.049333pt;}
.y152{bottom:548.236000pt;}
.y242{bottom:548.456000pt;}
.y10c{bottom:548.632000pt;}
.y12e{bottom:549.315333pt;}
.y1e6{bottom:549.440000pt;}
.ye7{bottom:550.377333pt;}
.y52{bottom:552.038667pt;}
.y9{bottom:556.457333pt;}
.y201{bottom:556.945333pt;}
.y2c{bottom:560.211333pt;}
.y16d{bottom:560.809333pt;}
.y9c{bottom:560.866667pt;}
.yc2{bottom:562.029333pt;}
.y260{bottom:562.838667pt;}
.y1c6{bottom:564.448000pt;}
.y1ab{bottom:565.324000pt;}
.y76{bottom:565.992000pt;}
.y151{bottom:566.390667pt;}
.y10b{bottom:566.756000pt;}
.y18c{bottom:566.881333pt;}
.y220{bottom:567.131333pt;}
.y12d{bottom:567.393333pt;}
.ye6{bottom:568.378667pt;}
.y51{bottom:571.297333pt;}
.y241{bottom:574.104000pt;}
.y1e5{bottom:575.004000pt;}
.y2b{bottom:578.841333pt;}
.y16c{bottom:579.393333pt;}
.y9b{bottom:579.450667pt;}
.yc1{bottom:580.521333pt;}
.y25f{bottom:580.838667pt;}
.y200{bottom:582.775333pt;}
.y75{bottom:584.177333pt;}
.y150{bottom:584.545333pt;}
.y10a{bottom:584.880000pt;}
.y12c{bottom:585.471333pt;}
.y21f{bottom:586.213333pt;}
.ye5{bottom:586.380000pt;}
.y18b{bottom:586.508000pt;}
.y50{bottom:590.556000pt;}
.y1c5{bottom:591.356000pt;}
.y1e4{bottom:593.008000pt;}
.y2a{bottom:597.471333pt;}
.y9a{bottom:597.977333pt;}
.y25e{bottom:598.838667pt;}
.yc0{bottom:599.013333pt;}
.y240{bottom:599.752000pt;}
.y1ff{bottom:601.058000pt;}
.y74{bottom:602.362667pt;}
.y14f{bottom:602.700000pt;}
.y109{bottom:603.004000pt;}
.y12b{bottom:603.546000pt;}
.ye4{bottom:604.381333pt;}
.y18a{bottom:606.134667pt;}
.y8{bottom:607.985333pt;}
.y4f{bottom:609.814667pt;}
.y21e{bottom:612.855333pt;}
.y29{bottom:616.101333pt;}
.y99{bottom:616.561333pt;}
.ybf{bottom:617.505333pt;}
.y23f{bottom:617.832000pt;}
.y1c4{bottom:618.264000pt;}
.y1e3{bottom:618.572000pt;}
.y1fe{bottom:619.328000pt;}
.y73{bottom:620.548000pt;}
.y14e{bottom:620.854667pt;}
.y108{bottom:621.128000pt;}
.y12a{bottom:621.624000pt;}
.ye3{bottom:622.382667pt;}
.y1aa{bottom:622.587333pt;}
.y189{bottom:625.761333pt;}
.y25d{bottom:628.172000pt;}
.y4e{bottom:629.073333pt;}
.y7{bottom:632.158667pt;}
.y28{bottom:634.731333pt;}
.y98{bottom:635.145333pt;}
.ybe{bottom:635.997333pt;}
.y1e2{bottom:636.576000pt;}
.y1c3{bottom:637.612000pt;}
.y72{bottom:638.733333pt;}
.y14d{bottom:639.009333pt;}
.y107{bottom:639.285333pt;}
.y21d{bottom:639.494000pt;}
.y129{bottom:639.702000pt;}
.ye2{bottom:640.384000pt;}
.y1a9{bottom:642.566667pt;}
.y23e{bottom:643.480000pt;}
.y1fd{bottom:645.158000pt;}
.y188{bottom:645.388000pt;}
.y4d{bottom:648.332000pt;}
.y27{bottom:653.361333pt;}
.y97{bottom:653.729333pt;}
.ybd{bottom:654.489333pt;}
.y71{bottom:656.918667pt;}
.y14c{bottom:657.164000pt;}
.y106{bottom:657.409333pt;}
.y128{bottom:657.780000pt;}
.ye1{bottom:658.385333pt;}
.y23d{bottom:661.568000pt;}
.y1e1{bottom:662.140000pt;}
.y1a8{bottom:662.546000pt;}
.y1fc{bottom:663.428000pt;}
.y1c2{bottom:664.520000pt;}
.y187{bottom:665.014667pt;}
.y25c{bottom:665.065333pt;}
.y21c{bottom:666.129333pt;}
.y4c{bottom:667.590667pt;}
.y26{bottom:671.991333pt;}
.y96{bottom:672.313333pt;}
.ybc{bottom:672.981333pt;}
.y70{bottom:675.104000pt;}
.y6{bottom:675.233333pt;}
.y14b{bottom:675.318667pt;}
.y105{bottom:675.533333pt;}
.y127{bottom:675.858000pt;}
.ye0{bottom:676.386667pt;}
.y23c{bottom:679.648000pt;}
.y1e0{bottom:680.144000pt;}
.y1fb{bottom:681.698000pt;}
.y25b{bottom:682.398667pt;}
.y1a7{bottom:682.525333pt;}
.y1c1{bottom:683.868000pt;}
.y186{bottom:684.641333pt;}
.y4b{bottom:686.849333pt;}
.y25{bottom:690.621333pt;}
.y95{bottom:690.897333pt;}
.ybb{bottom:691.473333pt;}
.y21b{bottom:692.771333pt;}
.y6f{bottom:693.289333pt;}
.y14a{bottom:693.473333pt;}
.y104{bottom:693.657333pt;}
.y126{bottom:693.933333pt;}
.ydf{bottom:694.388000pt;}
.y25a{bottom:699.732000pt;}
.y1fa{bottom:699.968000pt;}
.y1a6{bottom:702.504667pt;}
.y5{bottom:703.409333pt;}
.y185{bottom:704.268000pt;}
.y23b{bottom:705.296000pt;}
.y1df{bottom:705.708000pt;}
.y4a{bottom:706.108000pt;}
.y24{bottom:709.251333pt;}
.y94{bottom:709.481333pt;}
.yba{bottom:709.965333pt;}
.y1c0{bottom:710.776000pt;}
.y6e{bottom:711.474667pt;}
.y149{bottom:711.628000pt;}
.y103{bottom:711.781333pt;}
.y21a{bottom:711.840000pt;}
.y125{bottom:712.011333pt;}
.yde{bottom:712.389333pt;}
.y259{bottom:717.065333pt;}
.y1a5{bottom:722.484000pt;}
.y23a{bottom:723.384000pt;}
.y1de{bottom:723.712000pt;}
.y184{bottom:723.894667pt;}
.y49{bottom:725.366667pt;}
.y1f9{bottom:725.798000pt;}
.y23{bottom:727.881333pt;}
.y93{bottom:728.065333pt;}
.yb9{bottom:728.433333pt;}
.y6d{bottom:729.660000pt;}
.y148{bottom:729.782667pt;}
.y102{bottom:729.905333pt;}
.y124{bottom:730.089333pt;}
.y1bf{bottom:730.124000pt;}
.ydd{bottom:730.390667pt;}
.y258{bottom:734.398667pt;}
.y219{bottom:738.482000pt;}
.y239{bottom:741.464000pt;}
.y1a4{bottom:742.463333pt;}
.y183{bottom:743.521333pt;}
.y48{bottom:744.625333pt;}
.y22{bottom:746.511333pt;}
.y92{bottom:746.649333pt;}
.yb8{bottom:746.925333pt;}
.y6c{bottom:747.845333pt;}
.y147{bottom:747.937333pt;}
.y101{bottom:748.029333pt;}
.y123{bottom:748.167333pt;}
.ydc{bottom:748.397333pt;}
.y1dd{bottom:749.276000pt;}
.y1f8{bottom:751.628000pt;}
.y257{bottom:751.732000pt;}
.y1be{bottom:757.032000pt;}
.y4{bottom:758.045333pt;}
.y1a3{bottom:762.442667pt;}
.y182{bottom:763.148000pt;}
.y47{bottom:763.884000pt;}
.y218{bottom:765.124000pt;}
.y21{bottom:765.141333pt;}
.y91{bottom:765.233333pt;}
.yb7{bottom:765.417333pt;}
.y6b{bottom:766.030667pt;}
.y146{bottom:766.092000pt;}
.y100{bottom:766.153333pt;}
.y122{bottom:766.245333pt;}
.ydb{bottom:766.398667pt;}
.y238{bottom:767.112000pt;}
.y1dc{bottom:767.280000pt;}
.y256{bottom:769.065333pt;}
.y1bd{bottom:776.380000pt;}
.y1f7{bottom:777.458000pt;}
.y1a2{bottom:782.422000pt;}
.y181{bottom:782.774667pt;}
.y46{bottom:783.142667pt;}
.y20{bottom:783.771333pt;}
.y90{bottom:783.817333pt;}
.yb6{bottom:783.909333pt;}
.y217{bottom:784.206000pt;}
.y6a{bottom:784.216000pt;}
.y145{bottom:784.246667pt;}
.yff{bottom:784.277333pt;}
.y121{bottom:784.323333pt;}
.yda{bottom:784.400000pt;}
.y3{bottom:784.445333pt;}
.y237{bottom:785.200000pt;}
.y1db{bottom:785.284000pt;}
.y255{bottom:786.398667pt;}
.y1f{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y254{bottom:803.732000pt;}
.y1e{bottom:842.834667pt;}
.h14{height:23.761805pt;}
.h11{height:30.992438pt;}
.h1e{height:30.995104pt;}
.hd{height:30.997771pt;}
.ha{height:37.020833pt;}
.he{height:41.648438pt;}
.h19{height:41.659104pt;}
.h12{height:43.138396pt;}
.h4{height:46.276042pt;}
.h3{height:48.589844pt;}
.h8{height:53.217448pt;}
.h10{height:53.222781pt;}
.h18{height:53.225448pt;}
.h1c{height:53.254781pt;}
.h1d{height:53.276115pt;}
.h13{height:53.302781pt;}
.hf{height:53.318781pt;}
.h15{height:53.789062pt;}
.h2{height:57.845052pt;}
.h7{height:59.765625pt;}
.h1f{height:61.136719pt;}
.h21{height:62.711240pt;}
.h22{height:62.743240pt;}
.h20{height:62.753906pt;}
.h25{height:62.767240pt;}
.h24{height:62.780573pt;}
.h2a{height:62.785906pt;}
.h27{height:62.788573pt;}
.h29{height:62.791240pt;}
.h28{height:62.793906pt;}
.h23{height:62.807240pt;}
.h26{height:62.887240pt;}
.h6{height:64.786458pt;}
.h17{height:68.671802pt;}
.h9{height:68.730469pt;}
.hc{height:68.767802pt;}
.h1a{height:68.794469pt;}
.h16{height:68.826469pt;}
.hb{height:68.874469pt;}
.h1b{height:69.258469pt;}
.h5{height:83.296875pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:71.646667pt;}
.x8{left:73.378667pt;}
.x1{left:74.388133pt;}
.x5{left:75.733333pt;}
.xa{left:85.556933pt;}
.x7{left:92.461467pt;}
.x6{left:93.358667pt;}
.x4{left:94.546667pt;}
.xd{left:98.881600pt;}
.xc{left:100.828933pt;}
.xb{left:101.886933pt;}
.x3{left:204.445333pt;}
.x2{left:207.480000pt;}
}




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