
    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_8beeb28dafa148eee80fb04e.woff')format("woff");}.ff1{font-family:ff1;line-height:1.105957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_caf6d15a8f00566558ba89dd.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922852;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_dc93052c49b83b0b6165ea81.woff')format("woff");}.ff3{font-family:ff3;line-height:1.105957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_726bd078af04bc3995a6c4be.woff')format("woff");}.ff4{font-family:ff4;line-height:0.922852;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_e5b8d46c3a0836c3b4e263e8.woff')format("woff");}.ff5{font-family:ff5;line-height:1.182129;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_231297bd4d605dda930e1430.woff')format("woff");}.ff6{font-family:ff6;line-height:1.105957;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:-16.980000px;}
.v2{vertical-align:-11.982000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:16.980000px;}
.ls99{letter-spacing:-7.935000px;}
.ls6d{letter-spacing:-7.371000px;}
.ls82{letter-spacing:-6.693000px;}
.lsaa{letter-spacing:-6.486000px;}
.lse0{letter-spacing:-6.111000px;}
.ls7e{letter-spacing:-6.072000px;}
.lse1{letter-spacing:-5.481000px;}
.ls41{letter-spacing:-5.451000px;}
.ls2e{letter-spacing:-5.382000px;}
.ls64{letter-spacing:-4.968000px;}
.ls67{letter-spacing:-4.623000px;}
.lsb8{letter-spacing:-4.140000px;}
.ls98{letter-spacing:-3.933000px;}
.lsc7{letter-spacing:-3.819000px;}
.lsa1{letter-spacing:-3.726000px;}
.lscc{letter-spacing:-3.510000px;}
.lse3{letter-spacing:-3.402000px;}
.ls9c{letter-spacing:-3.312000px;}
.lsba{letter-spacing:-2.829000px;}
.lsa5{letter-spacing:-2.754000px;}
.lscb{letter-spacing:-2.700000px;}
.ls1a{letter-spacing:-2.622000px;}
.lsec{letter-spacing:-2.520000px;}
.ls9b{letter-spacing:-2.484000px;}
.lsf5{letter-spacing:-2.475000px;}
.ls63{letter-spacing:-2.346000px;}
.ls4c{letter-spacing:-2.277000px;}
.ls4f{letter-spacing:-2.208000px;}
.ls87{letter-spacing:-2.139000px;}
.ls49{letter-spacing:-2.070000px;}
.lsa4{letter-spacing:-1.944000px;}
.ls48{letter-spacing:-1.932000px;}
.lsae{letter-spacing:-1.890000px;}
.ls2d{letter-spacing:-1.863000px;}
.lsf1{letter-spacing:-1.800000px;}
.ls46{letter-spacing:-1.794000px;}
.ls40{letter-spacing:-1.725000px;}
.ls70{letter-spacing:-1.656000px;}
.lsc8{letter-spacing:-1.539000px;}
.ls47{letter-spacing:-1.518000px;}
.ls90{letter-spacing:-1.512000px;}
.lsb4{letter-spacing:-1.458000px;}
.ls83{letter-spacing:-1.449000px;}
.lsdb{letter-spacing:-1.386000px;}
.ls16{letter-spacing:-1.380000px;}
.lse9{letter-spacing:-1.320000px;}
.ls29{letter-spacing:-1.311000px;}
.lsd5{letter-spacing:-1.260000px;}
.ls45{letter-spacing:-1.242000px;}
.lsd6{letter-spacing:-1.197000px;}
.ls2c{letter-spacing:-1.173000px;}
.lsf3{letter-spacing:-1.140000px;}
.lsc2{letter-spacing:-1.134000px;}
.ls2a{letter-spacing:-1.104000px;}
.ls71{letter-spacing:-1.086129px;}
.lse7{letter-spacing:-1.080000px;}
.ls44{letter-spacing:-1.035000px;}
.lsad{letter-spacing:-1.005675px;}
.ls5f{letter-spacing:-0.972000px;}
.ls18{letter-spacing:-0.966000px;}
.lsea{letter-spacing:-0.960000px;}
.lsda{letter-spacing:-0.945000px;}
.ls65{letter-spacing:-0.925221px;}
.ls33{letter-spacing:-0.918000px;}
.ls15{letter-spacing:-0.897000px;}
.lsdd{letter-spacing:-0.882000px;}
.ls55{letter-spacing:-0.864000px;}
.lsf{letter-spacing:-0.855000px;}
.lseb{letter-spacing:-0.840000px;}
.ls2b{letter-spacing:-0.828000px;}
.ls8c{letter-spacing:-0.810000px;}
.lsee{letter-spacing:-0.780000px;}
.ls7b{letter-spacing:-0.759000px;}
.ls5c{letter-spacing:-0.756000px;}
.ls76{letter-spacing:-0.724086px;}
.ls43{letter-spacing:-0.690000px;}
.ls81{letter-spacing:-0.683859px;}
.ls1{letter-spacing:-0.675000px;}
.lsb3{letter-spacing:-0.661122px;}
.lsed{letter-spacing:-0.660000px;}
.ls59{letter-spacing:-0.648000px;}
.ls89{letter-spacing:-0.643632px;}
.lsd9{letter-spacing:-0.630000px;}
.ls28{letter-spacing:-0.627000px;}
.ls66{letter-spacing:-0.621000px;}
.ls80{letter-spacing:-0.603405px;}
.lsf2{letter-spacing:-0.600000px;}
.ls68{letter-spacing:-0.598158px;}
.ls75{letter-spacing:-0.594000px;}
.ls7a{letter-spacing:-0.570000px;}
.lsd8{letter-spacing:-0.567000px;}
.ls4b{letter-spacing:-0.552000px;}
.ls54{letter-spacing:-0.540000px;}
.lsdf{letter-spacing:-0.504000px;}
.ls52{letter-spacing:-0.486000px;}
.ls42{letter-spacing:-0.483000px;}
.ls7{letter-spacing:-0.480000px;}
.ls85{letter-spacing:-0.442497px;}
.lsdc{letter-spacing:-0.441000px;}
.ls5a{letter-spacing:-0.432000px;}
.lse8{letter-spacing:-0.420000px;}
.ls2f{letter-spacing:-0.414000px;}
.ls8d{letter-spacing:-0.409266px;}
.ls53{letter-spacing:-0.378000px;}
.lse6{letter-spacing:-0.360000px;}
.ls8b{letter-spacing:-0.346302px;}
.ls4e{letter-spacing:-0.345000px;}
.ls50{letter-spacing:-0.324000px;}
.lsde{letter-spacing:-0.315000px;}
.lsef{letter-spacing:-0.300000px;}
.ls84{letter-spacing:-0.276000px;}
.lsa3{letter-spacing:-0.270000px;}
.ls4a{letter-spacing:-0.241362px;}
.ls95{letter-spacing:-0.225000px;}
.ls8f{letter-spacing:-0.220374px;}
.ls58{letter-spacing:-0.216000px;}
.ls1e{letter-spacing:-0.207000px;}
.ls6f{letter-spacing:-0.201135px;}
.lsb{letter-spacing:-0.180000px;}
.ls6c{letter-spacing:-0.171000px;}
.ls30{letter-spacing:-0.162000px;}
.lsbd{letter-spacing:-0.160908px;}
.ls23{letter-spacing:-0.138000px;}
.lse5{letter-spacing:-0.120000px;}
.ls69{letter-spacing:-0.108000px;}
.ls5d{letter-spacing:-0.062964px;}
.lsf0{letter-spacing:-0.060000px;}
.ls56{letter-spacing:-0.054000px;}
.ls7f{letter-spacing:-0.040227px;}
.ls4{letter-spacing:0.000000px;}
.ls26{letter-spacing:0.004500px;}
.ls86{letter-spacing:0.040227px;}
.ls32{letter-spacing:0.054000px;}
.lsd{letter-spacing:0.060000px;}
.ls8a{letter-spacing:0.094446px;}
.ls74{letter-spacing:0.108000px;}
.ls91{letter-spacing:0.125928px;}
.ls1c{letter-spacing:0.138000px;}
.lsb6{letter-spacing:0.150000px;}
.ls57{letter-spacing:0.162000px;}
.lsb9{letter-spacing:0.201135px;}
.lsbb{letter-spacing:0.251856px;}
.lsd7{letter-spacing:0.252000px;}
.ls79{letter-spacing:0.276000px;}
.ls97{letter-spacing:0.281589px;}
.lsa0{letter-spacing:0.314820px;}
.lsa8{letter-spacing:0.321816px;}
.ls8{letter-spacing:0.360000px;}
.lsaf{letter-spacing:0.377784px;}
.ls4d{letter-spacing:0.414000px;}
.lsc1{letter-spacing:0.472230px;}
.lsbf{letter-spacing:0.482724px;}
.lsc4{letter-spacing:0.505800px;}
.ls10{letter-spacing:0.552000px;}
.ls6e{letter-spacing:0.563178px;}
.ls72{letter-spacing:0.566676px;}
.lsb1{letter-spacing:0.598158px;}
.ls27{letter-spacing:0.600000px;}
.ls9d{letter-spacing:0.603405px;}
.lsab{letter-spacing:0.643632px;}
.lscf{letter-spacing:0.675000px;}
.ls9e{letter-spacing:0.755568px;}
.lsc5{letter-spacing:0.825000px;}
.ls96{letter-spacing:0.844767px;}
.lsa2{letter-spacing:0.881496px;}
.ls25{letter-spacing:0.903000px;}
.ls6b{letter-spacing:0.909000px;}
.lsa7{letter-spacing:0.965448px;}
.ls73{letter-spacing:0.972000px;}
.ls14{letter-spacing:0.975000px;}
.lsca{letter-spacing:0.975942px;}
.ls9a{letter-spacing:1.005675px;}
.lsbc{letter-spacing:1.035000px;}
.lsb0{letter-spacing:1.038906px;}
.lsc9{letter-spacing:1.086129px;}
.ls21{letter-spacing:1.104000px;}
.ls92{letter-spacing:1.133352px;}
.ls20{letter-spacing:1.173000px;}
.ls5b{letter-spacing:1.188000px;}
.lsa9{letter-spacing:1.206810px;}
.ls36{letter-spacing:1.210500px;}
.lsc0{letter-spacing:1.227798px;}
.ls1d{letter-spacing:1.242000px;}
.ls3{letter-spacing:1.260000px;}
.ls88{letter-spacing:1.287264px;}
.lsb2{letter-spacing:1.290762px;}
.ls5e{letter-spacing:1.350000px;}
.ls60{letter-spacing:1.404000px;}
.lsbe{letter-spacing:1.448172px;}
.lscd{letter-spacing:1.449000px;}
.ls8e{letter-spacing:1.458000px;}
.lsac{letter-spacing:1.488399px;}
.ls31{letter-spacing:1.512000px;}
.ls37{letter-spacing:1.546500px;}
.ls19{letter-spacing:1.587000px;}
.ls78{letter-spacing:1.650000px;}
.ls94{letter-spacing:1.725000px;}
.ls51{letter-spacing:1.782000px;}
.lsb7{letter-spacing:1.794000px;}
.lsa6{letter-spacing:1.989000px;}
.ls35{letter-spacing:1.995000px;}
.ls3a{letter-spacing:2.002500px;}
.ls3d{letter-spacing:2.008500px;}
.ls22{letter-spacing:2.187000px;}
.ls11{letter-spacing:2.277000px;}
.ls3b{letter-spacing:2.367000px;}
.ls13{letter-spacing:2.400000px;}
.ls7d{letter-spacing:2.493000px;}
.ls9f{letter-spacing:2.592000px;}
.ls38{letter-spacing:2.685000px;}
.ls3e{letter-spacing:3.093000px;}
.ls39{letter-spacing:3.213000px;}
.ls3c{letter-spacing:3.237000px;}
.lsd2{letter-spacing:3.528000px;}
.lse{letter-spacing:3.696000px;}
.ls9{letter-spacing:4.200000px;}
.ls1b{letter-spacing:4.416000px;}
.lsc6{letter-spacing:5.382000px;}
.lsd4{letter-spacing:5.481000px;}
.ls6{letter-spacing:5.760000px;}
.lsd3{letter-spacing:5.859000px;}
.lsa{letter-spacing:5.880000px;}
.ls2{letter-spacing:6.000000px;}
.lsd1{letter-spacing:6.300000px;}
.lse2{letter-spacing:6.426000px;}
.ls5{letter-spacing:7.260000px;}
.ls3f{letter-spacing:8.161158px;}
.ls62{letter-spacing:8.161758px;}
.lse4{letter-spacing:8.640000px;}
.lsd0{letter-spacing:8.820000px;}
.ls17{letter-spacing:10.212000px;}
.lsf4{letter-spacing:473.901000px;}
.ls12{letter-spacing:499.811400px;}
.ls61{letter-spacing:499.819200px;}
.ls24{letter-spacing:500.201400px;}
.ls77{letter-spacing:501.172800px;}
.ls0{letter-spacing:501.499200px;}
.lsc3{letter-spacing:501.967800px;}
.lsce{letter-spacing:502.155600px;}
.lsb5{letter-spacing:502.627800px;}
.ls93{letter-spacing:503.040600px;}
.ls6a{letter-spacing:990.024000px;}
.lsc{letter-spacing:990.522000px;}
.ls1f{letter-spacing:993.144000px;}
.ls34{letter-spacing:997.194000px;}
.ls7c{letter-spacing:999.174000px;}
.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;}
}
.wsd6{word-spacing:-26.523000px;}
.wse9{word-spacing:-25.500000px;}
.wsd3{word-spacing:-24.219000px;}
.ws3{word-spacing:-22.740000px;}
.ws72{word-spacing:-22.725000px;}
.ws2{word-spacing:-22.620000px;}
.ws11{word-spacing:-22.050000px;}
.wsc8{word-spacing:-21.900000px;}
.wsd5{word-spacing:-21.750000px;}
.ws21{word-spacing:-21.675000px;}
.wsb8{word-spacing:-21.225000px;}
.wsd7{word-spacing:-21.042000px;}
.ws8d{word-spacing:-20.850000px;}
.ws0{word-spacing:-20.400000px;}
.ws57{word-spacing:-19.389000px;}
.wsc1{word-spacing:-19.044000px;}
.ws105{word-spacing:-18.600000px;}
.ws3a{word-spacing:-17.457000px;}
.wse8{word-spacing:-17.325000px;}
.wsa7{word-spacing:-17.043000px;}
.ws90{word-spacing:-16.905000px;}
.wsf8{word-spacing:-16.860000px;}
.ws7b{word-spacing:-16.767000px;}
.ws3b{word-spacing:-16.698000px;}
.ws2b{word-spacing:-16.629000px;}
.ws49{word-spacing:-16.578000px;}
.ws31{word-spacing:-16.560000px;}
.wsd8{word-spacing:-16.506000px;}
.ws65{word-spacing:-16.491000px;}
.ws62{word-spacing:-16.422000px;}
.ws32{word-spacing:-16.353000px;}
.ws74{word-spacing:-16.284000px;}
.ws26{word-spacing:-16.215000px;}
.ws25{word-spacing:-16.146000px;}
.ws23{word-spacing:-16.077000px;}
.ws33{word-spacing:-16.008000px;}
.ws24{word-spacing:-15.939000px;}
.ws27{word-spacing:-15.870000px;}
.ws34{word-spacing:-15.801000px;}
.ws22{word-spacing:-15.732000px;}
.ws12{word-spacing:-15.663000px;}
.ws7a{word-spacing:-15.594000px;}
.wsdb{word-spacing:-15.561000px;}
.ws36{word-spacing:-15.525000px;}
.ws60{word-spacing:-15.390000px;}
.ws64{word-spacing:-15.387000px;}
.ws73{word-spacing:-15.318000px;}
.ws35{word-spacing:-15.249000px;}
.ws98{word-spacing:-15.228000px;}
.ws28{word-spacing:-15.180000px;}
.wsae{word-spacing:-15.174000px;}
.ws37{word-spacing:-15.111000px;}
.wsc2{word-spacing:-15.066000px;}
.wse7{word-spacing:-14.994000px;}
.ws38{word-spacing:-14.973000px;}
.ws7e{word-spacing:-14.904000px;}
.ws3c{word-spacing:-14.835000px;}
.wsf9{word-spacing:-14.820000px;}
.wse6{word-spacing:-14.805000px;}
.ws66{word-spacing:-14.766000px;}
.wsf3{word-spacing:-14.760000px;}
.wsf2{word-spacing:-14.700000px;}
.ws54{word-spacing:-14.697000px;}
.wsdc{word-spacing:-14.679000px;}
.ws92{word-spacing:-14.559000px;}
.ws81{word-spacing:-14.526000px;}
.wsf0{word-spacing:-14.520000px;}
.wsea{word-spacing:-14.460000px;}
.ws13{word-spacing:-14.421000px;}
.wseb{word-spacing:-14.400000px;}
.wsf1{word-spacing:-14.340000px;}
.wsf4{word-spacing:-14.280000px;}
.wsf6{word-spacing:-14.220000px;}
.wsda{word-spacing:-14.175000px;}
.wsee{word-spacing:-14.160000px;}
.wsd9{word-spacing:-14.049000px;}
.wsef{word-spacing:-14.040000px;}
.ws2a{word-spacing:-14.007000px;}
.wsed{word-spacing:-13.980000px;}
.wsec{word-spacing:-13.860000px;}
.ws93{word-spacing:-13.731000px;}
.wsf7{word-spacing:-13.680000px;}
.ws44{word-spacing:-13.500000px;}
.ws68{word-spacing:-13.446000px;}
.ws2d{word-spacing:-13.392000px;}
.ws43{word-spacing:-13.338000px;}
.ws42{word-spacing:-13.284000px;}
.ws58{word-spacing:-13.230000px;}
.ws2c{word-spacing:-13.176000px;}
.ws69{word-spacing:-13.122000px;}
.ws96{word-spacing:-13.068000px;}
.ws1{word-spacing:-13.062000px;}
.wsf5{word-spacing:-13.020000px;}
.ws3d{word-spacing:-13.014000px;}
.ws3f{word-spacing:-12.960000px;}
.ws46{word-spacing:-12.906000px;}
.ws3e{word-spacing:-12.852000px;}
.ws40{word-spacing:-12.798000px;}
.wsa9{word-spacing:-12.792186px;}
.wsbf{word-spacing:-12.751959px;}
.ws6a{word-spacing:-12.744000px;}
.ws45{word-spacing:-12.690000px;}
.ws7f{word-spacing:-12.591051px;}
.ws47{word-spacing:-12.582000px;}
.wsa5{word-spacing:-12.510597px;}
.ws41{word-spacing:-12.474000px;}
.ws2e{word-spacing:-12.420000px;}
.wsc9{word-spacing:-12.389916px;}
.ws48{word-spacing:-12.366000px;}
.ws91{word-spacing:-12.309462px;}
.wsa3{word-spacing:-12.269235px;}
.ws8e{word-spacing:-12.148554px;}
.wsac{word-spacing:-12.096000px;}
.ws55{word-spacing:-12.075000px;}
.wsa8{word-spacing:-11.947419px;}
.ws94{word-spacing:-11.907192px;}
.wsad{word-spacing:-11.880000px;}
.ws61{word-spacing:-11.866965px;}
.wsc0{word-spacing:-11.786511px;}
.wsa4{word-spacing:-11.625603px;}
.ws8f{word-spacing:-11.585376px;}
.wsb9{word-spacing:-11.504922px;}
.wsab{word-spacing:-11.448000px;}
.ws97{word-spacing:-11.394000px;}
.ws7d{word-spacing:-11.344014px;}
.ws29{word-spacing:-11.303787px;}
.ws77{word-spacing:-11.263560px;}
.wsbe{word-spacing:-11.142879px;}
.ws63{word-spacing:-11.102652px;}
.ws39{word-spacing:-11.062425px;}
.ws7c{word-spacing:-10.861290px;}
.ws78{word-spacing:-10.700382px;}
.ws80{word-spacing:-10.660155px;}
.ws79{word-spacing:-10.619928px;}
.wsa6{word-spacing:-10.557000px;}
.ws56{word-spacing:-10.378566px;}
.wsaa{word-spacing:-10.298112px;}
.ws67{word-spacing:-10.217658px;}
.ws16{word-spacing:-10.212000px;}
.ws95{word-spacing:-9.612000px;}
.ws6{word-spacing:-7.260000px;}
.wsff{word-spacing:-6.426000px;}
.wsdd{word-spacing:-6.300000px;}
.ws5{word-spacing:-6.000000px;}
.wsdf{word-spacing:-5.859000px;}
.wsca{word-spacing:-5.382000px;}
.ws19{word-spacing:-4.416000px;}
.wsa{word-spacing:-4.200000px;}
.wsd{word-spacing:-3.696000px;}
.wsde{word-spacing:-3.528000px;}
.ws9d{word-spacing:-2.592000px;}
.ws14{word-spacing:-2.400000px;}
.ws10{word-spacing:-2.277000px;}
.ws1f{word-spacing:-2.187000px;}
.wsfb{word-spacing:-1.953000px;}
.wsba{word-spacing:-1.794000px;}
.ws4e{word-spacing:-1.782000px;}
.ws18{word-spacing:-1.587000px;}
.ws30{word-spacing:-1.512000px;}
.ws88{word-spacing:-1.458000px;}
.wsd4{word-spacing:-1.449000px;}
.wsb0{word-spacing:-1.404000px;}
.ws53{word-spacing:-1.350000px;}
.wsb4{word-spacing:-1.290762px;}
.ws7{word-spacing:-1.260000px;}
.ws1b{word-spacing:-1.242000px;}
.wsc5{word-spacing:-1.227798px;}
.ws50{word-spacing:-1.188000px;}
.ws1d{word-spacing:-1.173000px;}
.ws8c{word-spacing:-1.133352px;}
.ws1e{word-spacing:-1.104000px;}
.wsb2{word-spacing:-1.038906px;}
.wsc3{word-spacing:-1.035000px;}
.wsd0{word-spacing:-0.975942px;}
.ws6e{word-spacing:-0.972000px;}
.wsa0{word-spacing:-0.881496px;}
.ws9c{word-spacing:-0.755568px;}
.wsb3{word-spacing:-0.598158px;}
.ws6d{word-spacing:-0.566676px;}
.wsf{word-spacing:-0.552000px;}
.wsc6{word-spacing:-0.472230px;}
.wsb1{word-spacing:-0.377784px;}
.ws9{word-spacing:-0.360000px;}
.ws9e{word-spacing:-0.314820px;}
.ws75{word-spacing:-0.276000px;}
.wse1{word-spacing:-0.252000px;}
.wsbd{word-spacing:-0.251856px;}
.ws1a{word-spacing:-0.138000px;}
.ws8b{word-spacing:-0.125928px;}
.ws84{word-spacing:-0.094446px;}
.wsc{word-spacing:-0.060000px;}
.ws4{word-spacing:0.000000px;}
.ws52{word-spacing:0.054000px;}
.ws51{word-spacing:0.062964px;}
.wsb5{word-spacing:0.108000px;}
.ws102{word-spacing:0.120000px;}
.ws20{word-spacing:0.138000px;}
.wsb6{word-spacing:0.162000px;}
.ws6b{word-spacing:0.171000px;}
.wsb{word-spacing:0.180000px;}
.ws1c{word-spacing:0.207000px;}
.ws4f{word-spacing:0.216000px;}
.ws89{word-spacing:0.220374px;}
.wscb{word-spacing:0.276000px;}
.wsfa{word-spacing:0.315000px;}
.ws85{word-spacing:0.346302px;}
.ws6f{word-spacing:0.378000px;}
.ws87{word-spacing:0.409266px;}
.wscf{word-spacing:0.414000px;}
.wse5{word-spacing:0.441000px;}
.ws8{word-spacing:0.480000px;}
.ws70{word-spacing:0.486000px;}
.wsfc{word-spacing:0.504000px;}
.ws101{word-spacing:0.540000px;}
.ws4c{word-spacing:0.552000px;}
.wse2{word-spacing:0.567000px;}
.ws76{word-spacing:0.570000px;}
.ws5f{word-spacing:0.598158px;}
.ws5d{word-spacing:0.621000px;}
.ws2f{word-spacing:0.627000px;}
.wse3{word-spacing:0.630000px;}
.ws9f{word-spacing:0.648000px;}
.wsb7{word-spacing:0.661122px;}
.ws5a{word-spacing:0.690000px;}
.ws71{word-spacing:0.724086px;}
.ws86{word-spacing:0.810000px;}
.wsaf{word-spacing:0.828000px;}
.wse{word-spacing:0.855000px;}
.ws15{word-spacing:0.897000px;}
.wse4{word-spacing:0.945000px;}
.ws17{word-spacing:0.966000px;}
.wsa2{word-spacing:0.972000px;}
.ws9b{word-spacing:1.035000px;}
.ws103{word-spacing:1.080000px;}
.wsc7{word-spacing:1.134000px;}
.ws6c{word-spacing:1.173000px;}
.wsce{word-spacing:1.242000px;}
.wse0{word-spacing:1.260000px;}
.ws5b{word-spacing:1.380000px;}
.ws8a{word-spacing:1.512000px;}
.ws5c{word-spacing:1.518000px;}
.wscd{word-spacing:1.539000px;}
.ws4a{word-spacing:1.725000px;}
.ws59{word-spacing:1.863000px;}
.wsc4{word-spacing:2.070000px;}
.ws4d{word-spacing:2.277000px;}
.ws104{word-spacing:2.520000px;}
.wsd1{word-spacing:2.700000px;}
.wsa1{word-spacing:2.754000px;}
.wsbc{word-spacing:2.829000px;}
.ws100{word-spacing:3.402000px;}
.wsd2{word-spacing:3.510000px;}
.wscc{word-spacing:3.819000px;}
.ws99{word-spacing:3.933000px;}
.wsbb{word-spacing:4.140000px;}
.ws5e{word-spacing:4.623000px;}
.ws4b{word-spacing:5.451000px;}
.wsfe{word-spacing:5.481000px;}
.ws82{word-spacing:6.072000px;}
.wsfd{word-spacing:6.111000px;}
.ws83{word-spacing:6.693000px;}
.ws9a{word-spacing:7.935000px;}
._18{margin-left:-15.173100px;}
._15{margin-left:-13.998300px;}
._16{margin-left:-11.847300px;}
._a{margin-left:-10.141200px;}
._17{margin-left:-8.628600px;}
._7{margin-left:-6.664800px;}
._8{margin-left:-5.633100px;}
._3{margin-left:-4.555200px;}
._2{margin-left:-2.765700px;}
._4{margin-left:-1.254000px;}
._0{width:1.723200px;}
._6{width:2.739600px;}
._9{width:3.865200px;}
._1{width:5.644800px;}
._5{width:6.755700px;}
._d{width:8.098200px;}
._13{width:9.141600px;}
._12{width:10.227600px;}
._11{width:11.324700px;}
._14{width:12.473700px;}
._1a{width:13.640100px;}
._10{width:14.709000px;}
._1b{width:16.044300px;}
._b{width:18.501600px;}
._1f{width:20.841000px;}
._19{width:23.893800px;}
._1e{width:26.570808px;}
._1d{width:27.767124px;}
._21{width:38.471100px;}
._1c{width:43.445160px;}
._20{width:44.499300px;}
._c{width:71.442000px;}
._f{width:253.008000px;}
._e{width:578.400000px;}
.fc0{color:rgb(36,31,31);}
.fsc{font-size:31.482000px;}
.fsb{font-size:40.227000px;}
.fs3{font-size:42.000000px;}
.fsa{font-size:48.000000px;}
.fsd{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs9{font-size:69.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:75.000000px;}
.fs8{font-size:81.000000px;}
.fs6{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:51.310050px;}
.y1f{bottom:106.299150px;}
.yd1{bottom:106.299300px;}
.yad{bottom:109.294800px;}
.yf6{bottom:123.549300px;}
.y1e{bottom:125.818950px;}
.y254{bottom:126.184800px;}
.yd0{bottom:126.544800px;}
.y218{bottom:126.663900px;}
.y6a{bottom:126.719850px;}
.y43{bottom:126.809550px;}
.y237{bottom:127.044300px;}
.y8c{bottom:127.138500px;}
.yac{bottom:127.801200px;}
.y12e{bottom:130.611750px;}
.y151{bottom:130.796700px;}
.yf5{bottom:140.799300px;}
.y192{bottom:143.794800px;}
.yab{bottom:145.051200px;}
.y1d{bottom:145.338450px;}
.y253{bottom:146.070450px;}
.y217{bottom:147.028350px;}
.y69{bottom:147.140400px;}
.y42{bottom:147.319950px;}
.y8b{bottom:147.977850px;}
.y1f5{bottom:148.046700px;}
.y150{bottom:152.299500px;}
.y1b5{bottom:153.313500px;}
.y12d{bottom:154.924500px;}
.y236{bottom:156.292500px;}
.yf4{bottom:158.049000px;}
.yaa{bottom:162.301500px;}
.y1c{bottom:164.857500px;}
.y114{bottom:165.297000px;}
.y252{bottom:165.955500px;}
.y216{bottom:167.392500px;}
.y68{bottom:167.560500px;}
.y41{bottom:167.830500px;}
.y8a{bottom:168.817500px;}
.y14f{bottom:170.805000px;}
.y1b4{bottom:174.724500px;}
.yf3{bottom:175.299000px;}
.y235{bottom:177.037500px;}
.y12c{bottom:179.236500px;}
.ya9{bottom:182.547000px;}
.y113{bottom:183.804000px;}
.y1b{bottom:184.378500px;}
.y251{bottom:185.841000px;}
.y1d5{bottom:186.799500px;}
.y215{bottom:187.758000px;}
.y67{bottom:187.981500px;}
.y14e{bottom:188.055000px;}
.y40{bottom:188.340000px;}
.y89{bottom:189.657000px;}
.y1f4{bottom:192.064500px;}
.yf2{bottom:192.549000px;}
.y174{bottom:195.544500px;}
.y1b3{bottom:196.135500px;}
.ycf{bottom:201.052500px;}
.y12b{bottom:203.548500px;}
.y1a{bottom:203.898000px;}
.y14d{bottom:205.305000px;}
.y250{bottom:205.728000px;}
.y234{bottom:206.287500px;}
.y214{bottom:208.122000px;}
.y1d4{bottom:208.300500px;}
.y66{bottom:208.402500px;}
.y3f{bottom:208.851000px;}
.y88{bottom:210.495000px;}
.y1f3{bottom:212.706000px;}
.yf1{bottom:212.794500px;}
.y173{bottom:214.051500px;}
.y1b2{bottom:217.546500px;}
.y191{bottom:218.302500px;}
.yce{bottom:221.299500px;}
.y14c{bottom:222.555000px;}
.y24f{bottom:225.613500px;}
.ya8{bottom:226.564500px;}
.y1d3{bottom:226.807500px;}
.y233{bottom:227.032500px;}
.y12a{bottom:227.862000px;}
.y213{bottom:228.486000px;}
.y65{bottom:228.822000px;}
.y3e{bottom:229.360500px;}
.y172{bottom:231.301500px;}
.y87{bottom:231.334500px;}
.y1f2{bottom:233.346000px;}
.y19{bottom:236.173500px;}
.y190{bottom:238.548000px;}
.y1b1{bottom:238.957500px;}
.ycd{bottom:239.805000px;}
.y1d2{bottom:244.057500px;}
.y24e{bottom:245.499000px;}
.ya7{bottom:248.319000px;}
.y171{bottom:248.551500px;}
.y212{bottom:248.851500px;}
.y64{bottom:249.243000px;}
.y3d{bottom:249.871500px;}
.y86{bottom:252.174000px;}
.y1f1{bottom:253.987500px;}
.y232{bottom:256.281000px;}
.yf0{bottom:256.813500px;}
.ycc{bottom:257.055000px;}
.y18f{bottom:260.050500px;}
.y1b0{bottom:260.368500px;}
.y1d1{bottom:264.303000px;}
.y112{bottom:265.317000px;}
.y24d{bottom:265.384500px;}
.y170{bottom:265.801500px;}
.y211{bottom:269.215500px;}
.y63{bottom:269.664000px;}
.ya6{bottom:270.072000px;}
.y3c{bottom:270.381000px;}
.y85{bottom:273.013500px;}
.y14b{bottom:274.305000px;}
.y1f0{bottom:274.627500px;}
.y129{bottom:276.486000px;}
.y231{bottom:277.026000px;}
.ycb{bottom:277.300500px;}
.yef{bottom:277.648500px;}
.y18e{bottom:278.557500px;}
.y1af{bottom:281.779500px;}
.y16f{bottom:283.051500px;}
.y24c{bottom:285.270000px;}
.y18{bottom:285.456000px;}
.y111{bottom:285.687000px;}
.y210{bottom:289.581000px;}
.y62{bottom:290.085000px;}
.y3b{bottom:290.892000px;}
.ya5{bottom:291.826500px;}
.y84{bottom:293.853000px;}
.y14a{bottom:294.550500px;}
.y1ef{bottom:295.267500px;}
.yca{bottom:295.807500px;}
.yee{bottom:298.483500px;}
.y16e{bottom:300.301500px;}
.y128{bottom:300.799500px;}
.y1ae{bottom:303.190500px;}
.y110{bottom:306.057000px;}
.y230{bottom:306.274500px;}
.y17{bottom:306.475500px;}
.y1d0{bottom:308.320500px;}
.y20f{bottom:309.945000px;}
.y61{bottom:310.504500px;}
.y3a{bottom:311.403000px;}
.yc9{bottom:313.057500px;}
.ya4{bottom:313.581000px;}
.y83{bottom:314.692500px;}
.y1ee{bottom:315.909000px;}
.y149{bottom:316.053000px;}
.y16d{bottom:317.551500px;}
.y24b{bottom:317.911500px;}
.yed{bottom:319.318500px;}
.y1ad{bottom:324.601500px;}
.y127{bottom:325.111500px;}
.y10f{bottom:326.427000px;}
.y1cf{bottom:330.142500px;}
.yc8{bottom:330.307500px;}
.y20e{bottom:330.309000px;}
.y60{bottom:330.925500px;}
.y39{bottom:331.912500px;}
.y18d{bottom:333.303000px;}
.y148{bottom:334.558500px;}
.ya3{bottom:335.334000px;}
.y22f{bottom:335.524500px;}
.y82{bottom:335.530500px;}
.y1ed{bottom:336.549000px;}
.y16c{bottom:337.797000px;}
.yec{bottom:340.153500px;}
.y1ac{bottom:346.012500px;}
.y10e{bottom:346.797000px;}
.y16{bottom:348.756000px;}
.y126{bottom:349.423500px;}
.yc7{bottom:350.553000px;}
.y20d{bottom:350.674500px;}
.y5f{bottom:351.346500px;}
.y147{bottom:351.808500px;}
.y1ce{bottom:351.964500px;}
.y38{bottom:352.423500px;}
.y22e{bottom:356.269500px;}
.y16b{bottom:356.302500px;}
.y81{bottom:356.370000px;}
.ya2{bottom:357.088500px;}
.y1ec{bottom:357.190500px;}
.yeb{bottom:360.988500px;}
.y10d{bottom:367.167000px;}
.y1ab{bottom:367.423500px;}
.y15{bottom:368.275500px;}
.yc6{bottom:369.058500px;}
.y20c{bottom:371.038500px;}
.y5e{bottom:371.766000px;}
.y18c{bottom:372.054000px;}
.y37{bottom:372.933000px;}
.y16a{bottom:373.552500px;}
.y125{bottom:373.737000px;}
.y1cd{bottom:373.788000px;}
.y24a{bottom:376.063500px;}
.y80{bottom:377.209500px;}
.y1eb{bottom:377.830500px;}
.ya1{bottom:378.841500px;}
.yea{bottom:381.823500px;}
.y22d{bottom:385.518000px;}
.y146{bottom:386.308500px;}
.y10c{bottom:387.535500px;}
.y14{bottom:387.795000px;}
.y1aa{bottom:388.834500px;}
.yc5{bottom:389.304000px;}
.y169{bottom:390.802500px;}
.y20b{bottom:391.402500px;}
.y5d{bottom:392.187000px;}
.y36{bottom:393.444000px;}
.y1cc{bottom:395.610000px;}
.y7f{bottom:398.049000px;}
.y1ea{bottom:398.470500px;}
.ya0{bottom:400.596000px;}
.ye9{bottom:402.658500px;}
.y249{bottom:403.450500px;}
.y22c{bottom:406.263000px;}
.y145{bottom:406.554000px;}
.y13{bottom:407.314500px;}
.y10b{bottom:407.905500px;}
.y168{bottom:408.052500px;}
.y1a9{bottom:410.245500px;}
.yc4{bottom:410.806500px;}
.y20a{bottom:411.768000px;}
.y5c{bottom:412.608000px;}
.y35{bottom:413.953500px;}
.y18b{bottom:416.073000px;}
.y1cb{bottom:417.432000px;}
.y7e{bottom:418.888500px;}
.y1e9{bottom:419.112000px;}
.y9f{bottom:422.350500px;}
.y124{bottom:422.361000px;}
.ye8{bottom:423.493500px;}
.y144{bottom:425.061000px;}
.y167{bottom:425.302500px;}
.y12{bottom:426.834000px;}
.y10a{bottom:428.275500px;}
.yc3{bottom:429.313500px;}
.y1a8{bottom:431.656500px;}
.y209{bottom:432.132000px;}
.y5b{bottom:433.027500px;}
.y34{bottom:434.464500px;}
.y22b{bottom:435.511500px;}
.y18a{bottom:437.230500px;}
.y1ca{bottom:439.254000px;}
.y7d{bottom:439.728000px;}
.y1e8{bottom:439.752000px;}
.y143{bottom:442.311000px;}
.y166{bottom:442.552500px;}
.y9e{bottom:444.103500px;}
.ye7{bottom:444.328500px;}
.y11{bottom:446.353500px;}
.yc2{bottom:446.563500px;}
.y123{bottom:446.674500px;}
.y109{bottom:448.645500px;}
.y208{bottom:452.497500px;}
.y1a7{bottom:453.069000px;}
.y5a{bottom:453.448500px;}
.y33{bottom:454.974000px;}
.y22a{bottom:456.256500px;}
.y189{bottom:458.388000px;}
.y1e7{bottom:460.393500px;}
.y7c{bottom:460.567500px;}
.y1c9{bottom:461.076000px;}
.y142{bottom:462.556500px;}
.y165{bottom:462.798000px;}
.yc1{bottom:463.813500px;}
.ye6{bottom:465.163500px;}
.y9d{bottom:465.858000px;}
.y10{bottom:465.873000px;}
.y108{bottom:469.015500px;}
.y122{bottom:470.986500px;}
.y207{bottom:472.861500px;}
.y59{bottom:473.869500px;}
.y1a6{bottom:474.480000px;}
.y32{bottom:475.485000px;}
.y188{bottom:479.545500px;}
.y1e6{bottom:481.033500px;}
.y164{bottom:481.305000px;}
.y7b{bottom:481.405500px;}
.y1c8{bottom:482.898000px;}
.yc0{bottom:484.059000px;}
.yf{bottom:485.392500px;}
.y229{bottom:485.506500px;}
.ye5{bottom:485.998500px;}
.y9c{bottom:487.611000px;}
.y107{bottom:489.385500px;}
.y206{bottom:493.225500px;}
.y248{bottom:493.366500px;}
.y58{bottom:494.290500px;}
.y121{bottom:495.298500px;}
.y1a5{bottom:495.891000px;}
.y31{bottom:495.994500px;}
.y163{bottom:498.555000px;}
.y187{bottom:500.704500px;}
.y1e5{bottom:501.673500px;}
.y7a{bottom:502.245000px;}
.y1c7{bottom:504.720000px;}
.ye{bottom:504.912000px;}
.y228{bottom:506.251500px;}
.y141{bottom:506.575500px;}
.ye4{bottom:506.835000px;}
.y9b{bottom:509.365500px;}
.y106{bottom:509.755500px;}
.y205{bottom:513.591000px;}
.y247{bottom:514.002000px;}
.y57{bottom:514.710000px;}
.y30{bottom:516.505500px;}
.y1a4{bottom:517.302000px;}
.y162{bottom:518.800500px;}
.y120{bottom:519.612000px;}
.y186{bottom:521.862000px;}
.y1e4{bottom:522.315000px;}
.y79{bottom:523.084500px;}
.yd{bottom:524.431500px;}
.y1c6{bottom:526.542000px;}
.y140{bottom:527.424000px;}
.ye3{bottom:527.670000px;}
.ybf{bottom:528.076500px;}
.y105{bottom:530.125500px;}
.y9a{bottom:531.120000px;}
.y204{bottom:533.955000px;}
.y56{bottom:535.131000px;}
.y227{bottom:535.500000px;}
.y2f{bottom:537.016500px;}
.y1a3{bottom:538.713000px;}
.y1e3{bottom:542.955000px;}
.y185{bottom:543.019500px;}
.y246{bottom:543.141000px;}
.y78{bottom:543.924000px;}
.yc{bottom:543.951000px;}
.y13f{bottom:548.272500px;}
.y1c5{bottom:548.364000px;}
.ye2{bottom:548.505000px;}
.ybe{bottom:548.889000px;}
.y104{bottom:550.495500px;}
.y99{bottom:552.873000px;}
.y203{bottom:554.319000px;}
.y55{bottom:555.552000px;}
.y226{bottom:556.245000px;}
.y2e{bottom:557.526000px;}
.y1a2{bottom:560.124000px;}
.y161{bottom:562.819500px;}
.yb{bottom:563.472000px;}
.y1e2{bottom:563.596500px;}
.y245{bottom:563.776500px;}
.y184{bottom:564.177000px;}
.y11f{bottom:565.183500px;}
.y13e{bottom:569.121000px;}
.ye1{bottom:569.340000px;}
.ybd{bottom:569.701500px;}
.y1c4{bottom:570.186000px;}
.y103{bottom:570.865500px;}
.y98{bottom:574.627500px;}
.y202{bottom:574.684500px;}
.y54{bottom:575.971500px;}
.y1a1{bottom:581.535000px;}
.y160{bottom:584.061000px;}
.y1e1{bottom:584.236500px;}
.y183{bottom:585.334500px;}
.y225{bottom:585.493500px;}
.y77{bottom:586.023000px;}
.y13d{bottom:589.969500px;}
.ye0{bottom:590.175000px;}
.ybc{bottom:590.514000px;}
.y102{bottom:591.235500px;}
.y1c3{bottom:592.008000px;}
.y244{bottom:592.917000px;}
.y11e{bottom:593.247000px;}
.y262{bottom:593.431500px;}
.y201{bottom:595.048500px;}
.ya{bottom:595.747500px;}
.y97{bottom:596.380500px;}
.y53{bottom:596.392500px;}
.y2d{bottom:599.296500px;}
.y1a0{bottom:602.946000px;}
.y15f{bottom:605.304000px;}
.y224{bottom:606.238500px;}
.y182{bottom:606.492000px;}
.y76{bottom:610.612500px;}
.y13c{bottom:610.818000px;}
.ydf{bottom:611.010000px;}
.ybb{bottom:611.326500px;}
.y101{bottom:611.605500px;}
.y243{bottom:613.552500px;}
.y261{bottom:613.681500px;}
.y1c2{bottom:613.830000px;}
.y200{bottom:615.414000px;}
.y52{bottom:616.813500px;}
.y96{bottom:618.135000px;}
.y19f{bottom:624.357000px;}
.y1e0{bottom:626.137500px;}
.y15e{bottom:626.547000px;}
.y181{bottom:627.651000px;}
.y13b{bottom:631.668000px;}
.yde{bottom:631.845000px;}
.y100{bottom:631.975500px;}
.yba{bottom:632.139000px;}
.y260{bottom:633.931500px;}
.y223{bottom:635.488500px;}
.y1c1{bottom:635.653500px;}
.y1ff{bottom:635.778000px;}
.y51{bottom:637.234500px;}
.y95{bottom:639.889500px;}
.y242{bottom:642.691500px;}
.y19e{bottom:645.768000px;}
.y15d{bottom:647.790000px;}
.y180{bottom:648.808500px;}
.y1df{bottom:650.527500px;}
.yff{bottom:652.344000px;}
.y13a{bottom:652.516500px;}
.ydd{bottom:652.680000px;}
.yb9{bottom:652.951500px;}
.y9{bottom:653.533500px;}
.y25f{bottom:654.181500px;}
.y1fe{bottom:656.142000px;}
.y1c0{bottom:657.475500px;}
.y50{bottom:657.654000px;}
.y11d{bottom:659.577000px;}
.y241{bottom:663.327000px;}
.y222{bottom:664.737000px;}
.y19d{bottom:667.179000px;}
.y15c{bottom:669.031500px;}
.y17f{bottom:669.966000px;}
.yfe{bottom:672.714000px;}
.y139{bottom:673.365000px;}
.y75{bottom:673.470000px;}
.ydc{bottom:673.515000px;}
.yb8{bottom:673.764000px;}
.y1de{bottom:674.917500px;}
.y4f{bottom:678.075000px;}
.y1bf{bottom:679.297500px;}
.y8{bottom:680.553000px;}
.y2c{bottom:682.335000px;}
.y94{bottom:682.902000px;}
.y11c{bottom:683.889000px;}
.y240{bottom:683.962500px;}
.y25e{bottom:687.187500px;}
.y19c{bottom:688.590000px;}
.y15b{bottom:690.274500px;}
.y17e{bottom:691.123500px;}
.yfd{bottom:693.084000px;}
.y138{bottom:694.213500px;}
.y74{bottom:694.308000px;}
.ydb{bottom:694.350000px;}
.yb7{bottom:694.576500px;}
.y1fd{bottom:697.767000px;}
.y4e{bottom:698.496000px;}
.y1be{bottom:701.119500px;}
.y2b{bottom:703.594500px;}
.y11b{bottom:708.201000px;}
.y93{bottom:708.406500px;}
.y19b{bottom:710.001000px;}
.y15a{bottom:711.517500px;}
.y17d{bottom:712.281000px;}
.y23f{bottom:713.103000px;}
.yfc{bottom:713.454000px;}
.y137{bottom:715.062000px;}
.y73{bottom:715.147500px;}
.yda{bottom:715.185000px;}
.yb6{bottom:715.389000px;}
.y221{bottom:715.996500px;}
.y4d{bottom:718.915500px;}
.y1bd{bottom:722.941500px;}
.y25d{bottom:728.697000px;}
.y7{bottom:728.833500px;}
.y19a{bottom:731.412000px;}
.y11a{bottom:732.514500px;}
.y159{bottom:732.760500px;}
.y17c{bottom:733.438500px;}
.yfb{bottom:733.824000px;}
.y136{bottom:735.912000px;}
.y72{bottom:735.987000px;}
.yd9{bottom:736.020000px;}
.yb5{bottom:736.201500px;}
.y220{bottom:736.741500px;}
.y1dd{bottom:737.577000px;}
.y4c{bottom:739.336500px;}
.y23e{bottom:742.242000px;}
.y1bc{bottom:744.763500px;}
.y2a{bottom:746.115000px;}
.y25c{bottom:748.197000px;}
.y199{bottom:752.823000px;}
.y158{bottom:754.002000px;}
.yfa{bottom:754.194000px;}
.y17b{bottom:754.597500px;}
.y135{bottom:756.760500px;}
.y71{bottom:756.826500px;}
.yd8{bottom:756.855000px;}
.yb4{bottom:757.014000px;}
.y21f{bottom:757.486500px;}
.y1dc{bottom:758.217000px;}
.y4b{bottom:759.757500px;}
.y1fc{bottom:760.149000px;}
.y6{bottom:760.353000px;}
.y23d{bottom:762.877500px;}
.y29{bottom:765.876000px;}
.y1bb{bottom:766.585500px;}
.y25b{bottom:767.697000px;}
.y92{bottom:772.177500px;}
.y198{bottom:774.234000px;}
.y157{bottom:775.245000px;}
.y17a{bottom:775.755000px;}
.y134{bottom:777.609000px;}
.y70{bottom:777.666000px;}
.yd7{bottom:777.690000px;}
.yb3{bottom:777.826500px;}
.y21e{bottom:778.231500px;}
.y1db{bottom:778.858500px;}
.y4a{bottom:780.178500px;}
.y1fb{bottom:780.514500px;}
.y119{bottom:781.138500px;}
.y23c{bottom:783.513000px;}
.y28{bottom:785.635500px;}
.y25a{bottom:787.198500px;}
.y1ba{bottom:788.407500px;}
.y5{bottom:791.872500px;}
.y91{bottom:793.932000px;}
.y197{bottom:795.646500px;}
.yf9{bottom:795.823500px;}
.y156{bottom:796.488000px;}
.y179{bottom:796.912500px;}
.y133{bottom:798.457500px;}
.y6f{bottom:798.505500px;}
.yd6{bottom:798.525000px;}
.yb2{bottom:798.639000px;}
.y21d{bottom:798.976500px;}
.y1da{bottom:799.498500px;}
.y49{bottom:800.598000px;}
.y1fa{bottom:800.878500px;}
.y27{bottom:805.396500px;}
.y118{bottom:805.452000px;}
.y259{bottom:806.698500px;}
.y1b9{bottom:810.229500px;}
.y23b{bottom:812.652000px;}
.y90{bottom:815.686500px;}
.y196{bottom:817.057500px;}
.y155{bottom:817.731000px;}
.y178{bottom:818.070000px;}
.y132{bottom:819.306000px;}
.y6e{bottom:819.343500px;}
.yd5{bottom:819.361500px;}
.yb1{bottom:819.451500px;}
.y21c{bottom:819.721500px;}
.yf8{bottom:819.943500px;}
.y1d9{bottom:820.138500px;}
.y48{bottom:821.019000px;}
.y1f9{bottom:821.242500px;}
.y26{bottom:825.156000px;}
.y258{bottom:826.198500px;}
.y117{bottom:829.764000px;}
.y1b8{bottom:832.051500px;}
.y23a{bottom:833.287500px;}
.y8f{bottom:837.439500px;}
.y195{bottom:838.468500px;}
.y154{bottom:838.974000px;}
.y177{bottom:839.227500px;}
.y131{bottom:840.154500px;}
.y6d{bottom:840.183000px;}
.yd4{bottom:840.196500px;}
.yb0{bottom:840.264000px;}
.y21b{bottom:840.466500px;}
.y1d8{bottom:840.780000px;}
.y47{bottom:841.440000px;}
.y1f8{bottom:841.608000px;}
.y25{bottom:844.917000px;}
.y257{bottom:845.698500px;}
.y4{bottom:853.156500px;}
.y239{bottom:853.923000px;}
.y116{bottom:854.076000px;}
.y8e{bottom:859.194000px;}
.y194{bottom:859.879500px;}
.y153{bottom:860.215500px;}
.y176{bottom:860.386500px;}
.y130{bottom:861.004500px;}
.y6c{bottom:861.022500px;}
.yd3{bottom:861.031500px;}
.yaf{bottom:861.076500px;}
.y21a{bottom:861.211500px;}
.y1d7{bottom:861.420000px;}
.y46{bottom:861.861000px;}
.y1f7{bottom:861.972000px;}
.y24{bottom:864.676500px;}
.y256{bottom:865.198500px;}
.y1b7{bottom:875.134500px;}
.y115{bottom:878.389500px;}
.y8d{bottom:880.947000px;}
.y193{bottom:881.290500px;}
.y152{bottom:881.458500px;}
.y175{bottom:881.544000px;}
.y12f{bottom:881.853000px;}
.y6b{bottom:881.862000px;}
.yd2{bottom:881.866500px;}
.yae{bottom:881.889000px;}
.y219{bottom:881.956500px;}
.y1d6{bottom:882.060000px;}
.y45{bottom:882.280500px;}
.yf7{bottom:882.331500px;}
.y1f6{bottom:882.336000px;}
.y3{bottom:882.679500px;}
.y238{bottom:883.063500px;}
.y23{bottom:884.437500px;}
.y255{bottom:884.698500px;}
.y1b6{bottom:900.706500px;}
.y44{bottom:902.701500px;}
.y2{bottom:903.699000px;}
.y22{bottom:904.198500px;}
.y21{bottom:948.189000px;}
.y20{bottom:966.189000px;}
.h10{height:33.870539px;}
.hf{height:37.951453px;}
.h12{height:37.954453px;}
.hc{height:37.957453px;}
.ha{height:40.757812px;}
.h7{height:41.396484px;}
.hd{height:45.852539px;}
.h11{height:46.696289px;}
.he{height:49.939453px;}
.h4{height:50.947266px;}
.h3{height:53.494629px;}
.h14{height:54.479004px;}
.h15{height:55.488281px;}
.h13{height:58.262695px;}
.h9{height:58.589355px;}
.h2{height:63.684082px;}
.hb{height:63.811523px;}
.h8{height:68.778809px;}
.h6{height:71.326172px;}
.h5{height:91.705078px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x9{left:81.429450px;}
.x6{left:82.963050px;}
.x1{left:84.845400px;}
.x8{left:104.060850px;}
.x5{left:105.983400px;}
.x7{left:212.665500px;}
.x4{left:230.694000px;}
.x3{left:232.218000px;}
.x2{left:233.344500px;}
@media print{
.v3{vertical-align:-15.093333pt;}
.v2{vertical-align:-10.650667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.093333pt;}
.ls99{letter-spacing:-7.053333pt;}
.ls6d{letter-spacing:-6.552000pt;}
.ls82{letter-spacing:-5.949333pt;}
.lsaa{letter-spacing:-5.765333pt;}
.lse0{letter-spacing:-5.432000pt;}
.ls7e{letter-spacing:-5.397333pt;}
.lse1{letter-spacing:-4.872000pt;}
.ls41{letter-spacing:-4.845333pt;}
.ls2e{letter-spacing:-4.784000pt;}
.ls64{letter-spacing:-4.416000pt;}
.ls67{letter-spacing:-4.109333pt;}
.lsb8{letter-spacing:-3.680000pt;}
.ls98{letter-spacing:-3.496000pt;}
.lsc7{letter-spacing:-3.394667pt;}
.lsa1{letter-spacing:-3.312000pt;}
.lscc{letter-spacing:-3.120000pt;}
.lse3{letter-spacing:-3.024000pt;}
.ls9c{letter-spacing:-2.944000pt;}
.lsba{letter-spacing:-2.514667pt;}
.lsa5{letter-spacing:-2.448000pt;}
.lscb{letter-spacing:-2.400000pt;}
.ls1a{letter-spacing:-2.330667pt;}
.lsec{letter-spacing:-2.240000pt;}
.ls9b{letter-spacing:-2.208000pt;}
.lsf5{letter-spacing:-2.200000pt;}
.ls63{letter-spacing:-2.085333pt;}
.ls4c{letter-spacing:-2.024000pt;}
.ls4f{letter-spacing:-1.962667pt;}
.ls87{letter-spacing:-1.901333pt;}
.ls49{letter-spacing:-1.840000pt;}
.lsa4{letter-spacing:-1.728000pt;}
.ls48{letter-spacing:-1.717333pt;}
.lsae{letter-spacing:-1.680000pt;}
.ls2d{letter-spacing:-1.656000pt;}
.lsf1{letter-spacing:-1.600000pt;}
.ls46{letter-spacing:-1.594667pt;}
.ls40{letter-spacing:-1.533333pt;}
.ls70{letter-spacing:-1.472000pt;}
.lsc8{letter-spacing:-1.368000pt;}
.ls47{letter-spacing:-1.349333pt;}
.ls90{letter-spacing:-1.344000pt;}
.lsb4{letter-spacing:-1.296000pt;}
.ls83{letter-spacing:-1.288000pt;}
.lsdb{letter-spacing:-1.232000pt;}
.ls16{letter-spacing:-1.226667pt;}
.lse9{letter-spacing:-1.173333pt;}
.ls29{letter-spacing:-1.165333pt;}
.lsd5{letter-spacing:-1.120000pt;}
.ls45{letter-spacing:-1.104000pt;}
.lsd6{letter-spacing:-1.064000pt;}
.ls2c{letter-spacing:-1.042667pt;}
.lsf3{letter-spacing:-1.013333pt;}
.lsc2{letter-spacing:-1.008000pt;}
.ls2a{letter-spacing:-0.981333pt;}
.ls71{letter-spacing:-0.965448pt;}
.lse7{letter-spacing:-0.960000pt;}
.ls44{letter-spacing:-0.920000pt;}
.lsad{letter-spacing:-0.893933pt;}
.ls5f{letter-spacing:-0.864000pt;}
.ls18{letter-spacing:-0.858667pt;}
.lsea{letter-spacing:-0.853333pt;}
.lsda{letter-spacing:-0.840000pt;}
.ls65{letter-spacing:-0.822419pt;}
.ls33{letter-spacing:-0.816000pt;}
.ls15{letter-spacing:-0.797333pt;}
.lsdd{letter-spacing:-0.784000pt;}
.ls55{letter-spacing:-0.768000pt;}
.lsf{letter-spacing:-0.760000pt;}
.lseb{letter-spacing:-0.746667pt;}
.ls2b{letter-spacing:-0.736000pt;}
.ls8c{letter-spacing:-0.720000pt;}
.lsee{letter-spacing:-0.693333pt;}
.ls7b{letter-spacing:-0.674667pt;}
.ls5c{letter-spacing:-0.672000pt;}
.ls76{letter-spacing:-0.643632pt;}
.ls43{letter-spacing:-0.613333pt;}
.ls81{letter-spacing:-0.607875pt;}
.ls1{letter-spacing:-0.600000pt;}
.lsb3{letter-spacing:-0.587664pt;}
.lsed{letter-spacing:-0.586667pt;}
.ls59{letter-spacing:-0.576000pt;}
.ls89{letter-spacing:-0.572117pt;}
.lsd9{letter-spacing:-0.560000pt;}
.ls28{letter-spacing:-0.557333pt;}
.ls66{letter-spacing:-0.552000pt;}
.ls80{letter-spacing:-0.536360pt;}
.lsf2{letter-spacing:-0.533333pt;}
.ls68{letter-spacing:-0.531696pt;}
.ls75{letter-spacing:-0.528000pt;}
.ls7a{letter-spacing:-0.506667pt;}
.lsd8{letter-spacing:-0.504000pt;}
.ls4b{letter-spacing:-0.490667pt;}
.ls54{letter-spacing:-0.480000pt;}
.lsdf{letter-spacing:-0.448000pt;}
.ls52{letter-spacing:-0.432000pt;}
.ls42{letter-spacing:-0.429333pt;}
.ls7{letter-spacing:-0.426667pt;}
.ls85{letter-spacing:-0.393331pt;}
.lsdc{letter-spacing:-0.392000pt;}
.ls5a{letter-spacing:-0.384000pt;}
.lse8{letter-spacing:-0.373333pt;}
.ls2f{letter-spacing:-0.368000pt;}
.ls8d{letter-spacing:-0.363792pt;}
.ls53{letter-spacing:-0.336000pt;}
.lse6{letter-spacing:-0.320000pt;}
.ls8b{letter-spacing:-0.307824pt;}
.ls4e{letter-spacing:-0.306667pt;}
.ls50{letter-spacing:-0.288000pt;}
.lsde{letter-spacing:-0.280000pt;}
.lsef{letter-spacing:-0.266667pt;}
.ls84{letter-spacing:-0.245333pt;}
.lsa3{letter-spacing:-0.240000pt;}
.ls4a{letter-spacing:-0.214544pt;}
.ls95{letter-spacing:-0.200000pt;}
.ls8f{letter-spacing:-0.195888pt;}
.ls58{letter-spacing:-0.192000pt;}
.ls1e{letter-spacing:-0.184000pt;}
.ls6f{letter-spacing:-0.178787pt;}
.lsb{letter-spacing:-0.160000pt;}
.ls6c{letter-spacing:-0.152000pt;}
.ls30{letter-spacing:-0.144000pt;}
.lsbd{letter-spacing:-0.143029pt;}
.ls23{letter-spacing:-0.122667pt;}
.lse5{letter-spacing:-0.106667pt;}
.ls69{letter-spacing:-0.096000pt;}
.ls5d{letter-spacing:-0.055968pt;}
.lsf0{letter-spacing:-0.053333pt;}
.ls56{letter-spacing:-0.048000pt;}
.ls7f{letter-spacing:-0.035757pt;}
.ls4{letter-spacing:0.000000pt;}
.ls26{letter-spacing:0.004000pt;}
.ls86{letter-spacing:0.035757pt;}
.ls32{letter-spacing:0.048000pt;}
.lsd{letter-spacing:0.053333pt;}
.ls8a{letter-spacing:0.083952pt;}
.ls74{letter-spacing:0.096000pt;}
.ls91{letter-spacing:0.111936pt;}
.ls1c{letter-spacing:0.122667pt;}
.lsb6{letter-spacing:0.133333pt;}
.ls57{letter-spacing:0.144000pt;}
.lsb9{letter-spacing:0.178787pt;}
.lsbb{letter-spacing:0.223872pt;}
.lsd7{letter-spacing:0.224000pt;}
.ls79{letter-spacing:0.245333pt;}
.ls97{letter-spacing:0.250301pt;}
.lsa0{letter-spacing:0.279840pt;}
.lsa8{letter-spacing:0.286059pt;}
.ls8{letter-spacing:0.320000pt;}
.lsaf{letter-spacing:0.335808pt;}
.ls4d{letter-spacing:0.368000pt;}
.lsc1{letter-spacing:0.419760pt;}
.lsbf{letter-spacing:0.429088pt;}
.lsc4{letter-spacing:0.449600pt;}
.ls10{letter-spacing:0.490667pt;}
.ls6e{letter-spacing:0.500603pt;}
.ls72{letter-spacing:0.503712pt;}
.lsb1{letter-spacing:0.531696pt;}
.ls27{letter-spacing:0.533333pt;}
.ls9d{letter-spacing:0.536360pt;}
.lsab{letter-spacing:0.572117pt;}
.lscf{letter-spacing:0.600000pt;}
.ls9e{letter-spacing:0.671616pt;}
.lsc5{letter-spacing:0.733333pt;}
.ls96{letter-spacing:0.750904pt;}
.lsa2{letter-spacing:0.783552pt;}
.ls25{letter-spacing:0.802667pt;}
.ls6b{letter-spacing:0.808000pt;}
.lsa7{letter-spacing:0.858176pt;}
.ls73{letter-spacing:0.864000pt;}
.ls14{letter-spacing:0.866667pt;}
.lsca{letter-spacing:0.867504pt;}
.ls9a{letter-spacing:0.893933pt;}
.lsbc{letter-spacing:0.920000pt;}
.lsb0{letter-spacing:0.923472pt;}
.lsc9{letter-spacing:0.965448pt;}
.ls21{letter-spacing:0.981333pt;}
.ls92{letter-spacing:1.007424pt;}
.ls20{letter-spacing:1.042667pt;}
.ls5b{letter-spacing:1.056000pt;}
.lsa9{letter-spacing:1.072720pt;}
.ls36{letter-spacing:1.076000pt;}
.lsc0{letter-spacing:1.091376pt;}
.ls1d{letter-spacing:1.104000pt;}
.ls3{letter-spacing:1.120000pt;}
.ls88{letter-spacing:1.144235pt;}
.lsb2{letter-spacing:1.147344pt;}
.ls5e{letter-spacing:1.200000pt;}
.ls60{letter-spacing:1.248000pt;}
.lsbe{letter-spacing:1.287264pt;}
.lscd{letter-spacing:1.288000pt;}
.ls8e{letter-spacing:1.296000pt;}
.lsac{letter-spacing:1.323021pt;}
.ls31{letter-spacing:1.344000pt;}
.ls37{letter-spacing:1.374667pt;}
.ls19{letter-spacing:1.410667pt;}
.ls78{letter-spacing:1.466667pt;}
.ls94{letter-spacing:1.533333pt;}
.ls51{letter-spacing:1.584000pt;}
.lsb7{letter-spacing:1.594667pt;}
.lsa6{letter-spacing:1.768000pt;}
.ls35{letter-spacing:1.773333pt;}
.ls3a{letter-spacing:1.780000pt;}
.ls3d{letter-spacing:1.785333pt;}
.ls22{letter-spacing:1.944000pt;}
.ls11{letter-spacing:2.024000pt;}
.ls3b{letter-spacing:2.104000pt;}
.ls13{letter-spacing:2.133333pt;}
.ls7d{letter-spacing:2.216000pt;}
.ls9f{letter-spacing:2.304000pt;}
.ls38{letter-spacing:2.386667pt;}
.ls3e{letter-spacing:2.749333pt;}
.ls39{letter-spacing:2.856000pt;}
.ls3c{letter-spacing:2.877333pt;}
.lsd2{letter-spacing:3.136000pt;}
.lse{letter-spacing:3.285333pt;}
.ls9{letter-spacing:3.733333pt;}
.ls1b{letter-spacing:3.925333pt;}
.lsc6{letter-spacing:4.784000pt;}
.lsd4{letter-spacing:4.872000pt;}
.ls6{letter-spacing:5.120000pt;}
.lsd3{letter-spacing:5.208000pt;}
.lsa{letter-spacing:5.226667pt;}
.ls2{letter-spacing:5.333333pt;}
.lsd1{letter-spacing:5.600000pt;}
.lse2{letter-spacing:5.712000pt;}
.ls5{letter-spacing:6.453333pt;}
.ls3f{letter-spacing:7.254363pt;}
.ls62{letter-spacing:7.254896pt;}
.lse4{letter-spacing:7.680000pt;}
.lsd0{letter-spacing:7.840000pt;}
.ls17{letter-spacing:9.077333pt;}
.lsf4{letter-spacing:421.245333pt;}
.ls12{letter-spacing:444.276800pt;}
.ls61{letter-spacing:444.283733pt;}
.ls24{letter-spacing:444.623467pt;}
.ls77{letter-spacing:445.486933pt;}
.ls0{letter-spacing:445.777067pt;}
.lsc3{letter-spacing:446.193600pt;}
.lsce{letter-spacing:446.360533pt;}
.lsb5{letter-spacing:446.780267pt;}
.ls93{letter-spacing:447.147200pt;}
.ls6a{letter-spacing:880.021333pt;}
.lsc{letter-spacing:880.464000pt;}
.ls1f{letter-spacing:882.794667pt;}
.ls34{letter-spacing:886.394667pt;}
.ls7c{letter-spacing:888.154667pt;}
.wsd6{word-spacing:-23.576000pt;}
.wse9{word-spacing:-22.666667pt;}
.wsd3{word-spacing:-21.528000pt;}
.ws3{word-spacing:-20.213333pt;}
.ws72{word-spacing:-20.200000pt;}
.ws2{word-spacing:-20.106667pt;}
.ws11{word-spacing:-19.600000pt;}
.wsc8{word-spacing:-19.466667pt;}
.wsd5{word-spacing:-19.333333pt;}
.ws21{word-spacing:-19.266667pt;}
.wsb8{word-spacing:-18.866667pt;}
.wsd7{word-spacing:-18.704000pt;}
.ws8d{word-spacing:-18.533333pt;}
.ws0{word-spacing:-18.133333pt;}
.ws57{word-spacing:-17.234667pt;}
.wsc1{word-spacing:-16.928000pt;}
.ws105{word-spacing:-16.533333pt;}
.ws3a{word-spacing:-15.517333pt;}
.wse8{word-spacing:-15.400000pt;}
.wsa7{word-spacing:-15.149333pt;}
.ws90{word-spacing:-15.026667pt;}
.wsf8{word-spacing:-14.986667pt;}
.ws7b{word-spacing:-14.904000pt;}
.ws3b{word-spacing:-14.842667pt;}
.ws2b{word-spacing:-14.781333pt;}
.ws49{word-spacing:-14.736000pt;}
.ws31{word-spacing:-14.720000pt;}
.wsd8{word-spacing:-14.672000pt;}
.ws65{word-spacing:-14.658667pt;}
.ws62{word-spacing:-14.597333pt;}
.ws32{word-spacing:-14.536000pt;}
.ws74{word-spacing:-14.474667pt;}
.ws26{word-spacing:-14.413333pt;}
.ws25{word-spacing:-14.352000pt;}
.ws23{word-spacing:-14.290667pt;}
.ws33{word-spacing:-14.229333pt;}
.ws24{word-spacing:-14.168000pt;}
.ws27{word-spacing:-14.106667pt;}
.ws34{word-spacing:-14.045333pt;}
.ws22{word-spacing:-13.984000pt;}
.ws12{word-spacing:-13.922667pt;}
.ws7a{word-spacing:-13.861333pt;}
.wsdb{word-spacing:-13.832000pt;}
.ws36{word-spacing:-13.800000pt;}
.ws60{word-spacing:-13.680000pt;}
.ws64{word-spacing:-13.677333pt;}
.ws73{word-spacing:-13.616000pt;}
.ws35{word-spacing:-13.554667pt;}
.ws98{word-spacing:-13.536000pt;}
.ws28{word-spacing:-13.493333pt;}
.wsae{word-spacing:-13.488000pt;}
.ws37{word-spacing:-13.432000pt;}
.wsc2{word-spacing:-13.392000pt;}
.wse7{word-spacing:-13.328000pt;}
.ws38{word-spacing:-13.309333pt;}
.ws7e{word-spacing:-13.248000pt;}
.ws3c{word-spacing:-13.186667pt;}
.wsf9{word-spacing:-13.173333pt;}
.wse6{word-spacing:-13.160000pt;}
.ws66{word-spacing:-13.125333pt;}
.wsf3{word-spacing:-13.120000pt;}
.wsf2{word-spacing:-13.066667pt;}
.ws54{word-spacing:-13.064000pt;}
.wsdc{word-spacing:-13.048000pt;}
.ws92{word-spacing:-12.941333pt;}
.ws81{word-spacing:-12.912000pt;}
.wsf0{word-spacing:-12.906667pt;}
.wsea{word-spacing:-12.853333pt;}
.ws13{word-spacing:-12.818667pt;}
.wseb{word-spacing:-12.800000pt;}
.wsf1{word-spacing:-12.746667pt;}
.wsf4{word-spacing:-12.693333pt;}
.wsf6{word-spacing:-12.640000pt;}
.wsda{word-spacing:-12.600000pt;}
.wsee{word-spacing:-12.586667pt;}
.wsd9{word-spacing:-12.488000pt;}
.wsef{word-spacing:-12.480000pt;}
.ws2a{word-spacing:-12.450667pt;}
.wsed{word-spacing:-12.426667pt;}
.wsec{word-spacing:-12.320000pt;}
.ws93{word-spacing:-12.205333pt;}
.wsf7{word-spacing:-12.160000pt;}
.ws44{word-spacing:-12.000000pt;}
.ws68{word-spacing:-11.952000pt;}
.ws2d{word-spacing:-11.904000pt;}
.ws43{word-spacing:-11.856000pt;}
.ws42{word-spacing:-11.808000pt;}
.ws58{word-spacing:-11.760000pt;}
.ws2c{word-spacing:-11.712000pt;}
.ws69{word-spacing:-11.664000pt;}
.ws96{word-spacing:-11.616000pt;}
.ws1{word-spacing:-11.610667pt;}
.wsf5{word-spacing:-11.573333pt;}
.ws3d{word-spacing:-11.568000pt;}
.ws3f{word-spacing:-11.520000pt;}
.ws46{word-spacing:-11.472000pt;}
.ws3e{word-spacing:-11.424000pt;}
.ws40{word-spacing:-11.376000pt;}
.wsa9{word-spacing:-11.370832pt;}
.wsbf{word-spacing:-11.335075pt;}
.ws6a{word-spacing:-11.328000pt;}
.ws45{word-spacing:-11.280000pt;}
.ws7f{word-spacing:-11.192045pt;}
.ws47{word-spacing:-11.184000pt;}
.wsa5{word-spacing:-11.120531pt;}
.ws41{word-spacing:-11.088000pt;}
.ws2e{word-spacing:-11.040000pt;}
.wsc9{word-spacing:-11.013259pt;}
.ws48{word-spacing:-10.992000pt;}
.ws91{word-spacing:-10.941744pt;}
.wsa3{word-spacing:-10.905987pt;}
.ws8e{word-spacing:-10.798715pt;}
.wsac{word-spacing:-10.752000pt;}
.ws55{word-spacing:-10.733333pt;}
.wsa8{word-spacing:-10.619928pt;}
.ws94{word-spacing:-10.584171pt;}
.wsad{word-spacing:-10.560000pt;}
.ws61{word-spacing:-10.548413pt;}
.wsc0{word-spacing:-10.476899pt;}
.wsa4{word-spacing:-10.333869pt;}
.ws8f{word-spacing:-10.298112pt;}
.wsb9{word-spacing:-10.226597pt;}
.wsab{word-spacing:-10.176000pt;}
.ws97{word-spacing:-10.128000pt;}
.ws7d{word-spacing:-10.083568pt;}
.ws29{word-spacing:-10.047811pt;}
.ws77{word-spacing:-10.012053pt;}
.wsbe{word-spacing:-9.904781pt;}
.ws63{word-spacing:-9.869024pt;}
.ws39{word-spacing:-9.833267pt;}
.ws7c{word-spacing:-9.654480pt;}
.ws78{word-spacing:-9.511451pt;}
.ws80{word-spacing:-9.475693pt;}
.ws79{word-spacing:-9.439936pt;}
.wsa6{word-spacing:-9.384000pt;}
.ws56{word-spacing:-9.225392pt;}
.wsaa{word-spacing:-9.153877pt;}
.ws67{word-spacing:-9.082363pt;}
.ws16{word-spacing:-9.077333pt;}
.ws95{word-spacing:-8.544000pt;}
.ws6{word-spacing:-6.453333pt;}
.wsff{word-spacing:-5.712000pt;}
.wsdd{word-spacing:-5.600000pt;}
.ws5{word-spacing:-5.333333pt;}
.wsdf{word-spacing:-5.208000pt;}
.wsca{word-spacing:-4.784000pt;}
.ws19{word-spacing:-3.925333pt;}
.wsa{word-spacing:-3.733333pt;}
.wsd{word-spacing:-3.285333pt;}
.wsde{word-spacing:-3.136000pt;}
.ws9d{word-spacing:-2.304000pt;}
.ws14{word-spacing:-2.133333pt;}
.ws10{word-spacing:-2.024000pt;}
.ws1f{word-spacing:-1.944000pt;}
.wsfb{word-spacing:-1.736000pt;}
.wsba{word-spacing:-1.594667pt;}
.ws4e{word-spacing:-1.584000pt;}
.ws18{word-spacing:-1.410667pt;}
.ws30{word-spacing:-1.344000pt;}
.ws88{word-spacing:-1.296000pt;}
.wsd4{word-spacing:-1.288000pt;}
.wsb0{word-spacing:-1.248000pt;}
.ws53{word-spacing:-1.200000pt;}
.wsb4{word-spacing:-1.147344pt;}
.ws7{word-spacing:-1.120000pt;}
.ws1b{word-spacing:-1.104000pt;}
.wsc5{word-spacing:-1.091376pt;}
.ws50{word-spacing:-1.056000pt;}
.ws1d{word-spacing:-1.042667pt;}
.ws8c{word-spacing:-1.007424pt;}
.ws1e{word-spacing:-0.981333pt;}
.wsb2{word-spacing:-0.923472pt;}
.wsc3{word-spacing:-0.920000pt;}
.wsd0{word-spacing:-0.867504pt;}
.ws6e{word-spacing:-0.864000pt;}
.wsa0{word-spacing:-0.783552pt;}
.ws9c{word-spacing:-0.671616pt;}
.wsb3{word-spacing:-0.531696pt;}
.ws6d{word-spacing:-0.503712pt;}
.wsf{word-spacing:-0.490667pt;}
.wsc6{word-spacing:-0.419760pt;}
.wsb1{word-spacing:-0.335808pt;}
.ws9{word-spacing:-0.320000pt;}
.ws9e{word-spacing:-0.279840pt;}
.ws75{word-spacing:-0.245333pt;}
.wse1{word-spacing:-0.224000pt;}
.wsbd{word-spacing:-0.223872pt;}
.ws1a{word-spacing:-0.122667pt;}
.ws8b{word-spacing:-0.111936pt;}
.ws84{word-spacing:-0.083952pt;}
.wsc{word-spacing:-0.053333pt;}
.ws4{word-spacing:0.000000pt;}
.ws52{word-spacing:0.048000pt;}
.ws51{word-spacing:0.055968pt;}
.wsb5{word-spacing:0.096000pt;}
.ws102{word-spacing:0.106667pt;}
.ws20{word-spacing:0.122667pt;}
.wsb6{word-spacing:0.144000pt;}
.ws6b{word-spacing:0.152000pt;}
.wsb{word-spacing:0.160000pt;}
.ws1c{word-spacing:0.184000pt;}
.ws4f{word-spacing:0.192000pt;}
.ws89{word-spacing:0.195888pt;}
.wscb{word-spacing:0.245333pt;}
.wsfa{word-spacing:0.280000pt;}
.ws85{word-spacing:0.307824pt;}
.ws6f{word-spacing:0.336000pt;}
.ws87{word-spacing:0.363792pt;}
.wscf{word-spacing:0.368000pt;}
.wse5{word-spacing:0.392000pt;}
.ws8{word-spacing:0.426667pt;}
.ws70{word-spacing:0.432000pt;}
.wsfc{word-spacing:0.448000pt;}
.ws101{word-spacing:0.480000pt;}
.ws4c{word-spacing:0.490667pt;}
.wse2{word-spacing:0.504000pt;}
.ws76{word-spacing:0.506667pt;}
.ws5f{word-spacing:0.531696pt;}
.ws5d{word-spacing:0.552000pt;}
.ws2f{word-spacing:0.557333pt;}
.wse3{word-spacing:0.560000pt;}
.ws9f{word-spacing:0.576000pt;}
.wsb7{word-spacing:0.587664pt;}
.ws5a{word-spacing:0.613333pt;}
.ws71{word-spacing:0.643632pt;}
.ws86{word-spacing:0.720000pt;}
.wsaf{word-spacing:0.736000pt;}
.wse{word-spacing:0.760000pt;}
.ws15{word-spacing:0.797333pt;}
.wse4{word-spacing:0.840000pt;}
.ws17{word-spacing:0.858667pt;}
.wsa2{word-spacing:0.864000pt;}
.ws9b{word-spacing:0.920000pt;}
.ws103{word-spacing:0.960000pt;}
.wsc7{word-spacing:1.008000pt;}
.ws6c{word-spacing:1.042667pt;}
.wsce{word-spacing:1.104000pt;}
.wse0{word-spacing:1.120000pt;}
.ws5b{word-spacing:1.226667pt;}
.ws8a{word-spacing:1.344000pt;}
.ws5c{word-spacing:1.349333pt;}
.wscd{word-spacing:1.368000pt;}
.ws4a{word-spacing:1.533333pt;}
.ws59{word-spacing:1.656000pt;}
.wsc4{word-spacing:1.840000pt;}
.ws4d{word-spacing:2.024000pt;}
.ws104{word-spacing:2.240000pt;}
.wsd1{word-spacing:2.400000pt;}
.wsa1{word-spacing:2.448000pt;}
.wsbc{word-spacing:2.514667pt;}
.ws100{word-spacing:3.024000pt;}
.wsd2{word-spacing:3.120000pt;}
.wscc{word-spacing:3.394667pt;}
.ws99{word-spacing:3.496000pt;}
.wsbb{word-spacing:3.680000pt;}
.ws5e{word-spacing:4.109333pt;}
.ws4b{word-spacing:4.845333pt;}
.wsfe{word-spacing:4.872000pt;}
.ws82{word-spacing:5.397333pt;}
.wsfd{word-spacing:5.432000pt;}
.ws83{word-spacing:5.949333pt;}
.ws9a{word-spacing:7.053333pt;}
._18{margin-left:-13.487200pt;}
._15{margin-left:-12.442933pt;}
._16{margin-left:-10.530933pt;}
._a{margin-left:-9.014400pt;}
._17{margin-left:-7.669867pt;}
._7{margin-left:-5.924267pt;}
._8{margin-left:-5.007200pt;}
._3{margin-left:-4.049067pt;}
._2{margin-left:-2.458400pt;}
._4{margin-left:-1.114667pt;}
._0{width:1.531733pt;}
._6{width:2.435200pt;}
._9{width:3.435733pt;}
._1{width:5.017600pt;}
._5{width:6.005067pt;}
._d{width:7.198400pt;}
._13{width:8.125867pt;}
._12{width:9.091200pt;}
._11{width:10.066400pt;}
._14{width:11.087733pt;}
._1a{width:12.124533pt;}
._10{width:13.074667pt;}
._1b{width:14.261600pt;}
._b{width:16.445867pt;}
._1f{width:18.525333pt;}
._19{width:21.238933pt;}
._1e{width:23.618496pt;}
._1d{width:24.681888pt;}
._21{width:34.196533pt;}
._1c{width:38.617920pt;}
._20{width:39.554933pt;}
._c{width:63.504000pt;}
._f{width:224.896000pt;}
._e{width:514.133333pt;}
.fsc{font-size:27.984000pt;}
.fsb{font-size:35.757333pt;}
.fs3{font-size:37.333333pt;}
.fsa{font-size:42.666667pt;}
.fsd{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs9{font-size:61.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:66.666667pt;}
.fs8{font-size:72.000000pt;}
.fs6{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:45.608933pt;}
.y1f{bottom:94.488133pt;}
.yd1{bottom:94.488267pt;}
.yad{bottom:97.150933pt;}
.yf6{bottom:109.821600pt;}
.y1e{bottom:111.839067pt;}
.y254{bottom:112.164267pt;}
.yd0{bottom:112.484267pt;}
.y218{bottom:112.590133pt;}
.y6a{bottom:112.639867pt;}
.y43{bottom:112.719600pt;}
.y237{bottom:112.928267pt;}
.y8c{bottom:113.012000pt;}
.yac{bottom:113.601067pt;}
.y12e{bottom:116.099333pt;}
.y151{bottom:116.263733pt;}
.yf5{bottom:125.154933pt;}
.y192{bottom:127.817600pt;}
.yab{bottom:128.934400pt;}
.y1d{bottom:129.189733pt;}
.y253{bottom:129.840400pt;}
.y217{bottom:130.691867pt;}
.y69{bottom:130.791467pt;}
.y42{bottom:130.951067pt;}
.y8b{bottom:131.535867pt;}
.y1f5{bottom:131.597067pt;}
.y150{bottom:135.377333pt;}
.y1b5{bottom:136.278667pt;}
.y12d{bottom:137.710667pt;}
.y236{bottom:138.926667pt;}
.yf4{bottom:140.488000pt;}
.yaa{bottom:144.268000pt;}
.y1c{bottom:146.540000pt;}
.y114{bottom:146.930667pt;}
.y252{bottom:147.516000pt;}
.y216{bottom:148.793333pt;}
.y68{bottom:148.942667pt;}
.y41{bottom:149.182667pt;}
.y8a{bottom:150.060000pt;}
.y14f{bottom:151.826667pt;}
.y1b4{bottom:155.310667pt;}
.yf3{bottom:155.821333pt;}
.y235{bottom:157.366667pt;}
.y12c{bottom:159.321333pt;}
.ya9{bottom:162.264000pt;}
.y113{bottom:163.381333pt;}
.y1b{bottom:163.892000pt;}
.y251{bottom:165.192000pt;}
.y1d5{bottom:166.044000pt;}
.y215{bottom:166.896000pt;}
.y67{bottom:167.094667pt;}
.y14e{bottom:167.160000pt;}
.y40{bottom:167.413333pt;}
.y89{bottom:168.584000pt;}
.y1f4{bottom:170.724000pt;}
.yf2{bottom:171.154667pt;}
.y174{bottom:173.817333pt;}
.y1b3{bottom:174.342667pt;}
.ycf{bottom:178.713333pt;}
.y12b{bottom:180.932000pt;}
.y1a{bottom:181.242667pt;}
.y14d{bottom:182.493333pt;}
.y250{bottom:182.869333pt;}
.y234{bottom:183.366667pt;}
.y214{bottom:184.997333pt;}
.y1d4{bottom:185.156000pt;}
.y66{bottom:185.246667pt;}
.y3f{bottom:185.645333pt;}
.y88{bottom:187.106667pt;}
.y1f3{bottom:189.072000pt;}
.yf1{bottom:189.150667pt;}
.y173{bottom:190.268000pt;}
.y1b2{bottom:193.374667pt;}
.y191{bottom:194.046667pt;}
.yce{bottom:196.710667pt;}
.y14c{bottom:197.826667pt;}
.y24f{bottom:200.545333pt;}
.ya8{bottom:201.390667pt;}
.y1d3{bottom:201.606667pt;}
.y233{bottom:201.806667pt;}
.y12a{bottom:202.544000pt;}
.y213{bottom:203.098667pt;}
.y65{bottom:203.397333pt;}
.y3e{bottom:203.876000pt;}
.y172{bottom:205.601333pt;}
.y87{bottom:205.630667pt;}
.y1f2{bottom:207.418667pt;}
.y19{bottom:209.932000pt;}
.y190{bottom:212.042667pt;}
.y1b1{bottom:212.406667pt;}
.ycd{bottom:213.160000pt;}
.y1d2{bottom:216.940000pt;}
.y24e{bottom:218.221333pt;}
.ya7{bottom:220.728000pt;}
.y171{bottom:220.934667pt;}
.y212{bottom:221.201333pt;}
.y64{bottom:221.549333pt;}
.y3d{bottom:222.108000pt;}
.y86{bottom:224.154667pt;}
.y1f1{bottom:225.766667pt;}
.y232{bottom:227.805333pt;}
.yf0{bottom:228.278667pt;}
.ycc{bottom:228.493333pt;}
.y18f{bottom:231.156000pt;}
.y1b0{bottom:231.438667pt;}
.y1d1{bottom:234.936000pt;}
.y112{bottom:235.837333pt;}
.y24d{bottom:235.897333pt;}
.y170{bottom:236.268000pt;}
.y211{bottom:239.302667pt;}
.y63{bottom:239.701333pt;}
.ya6{bottom:240.064000pt;}
.y3c{bottom:240.338667pt;}
.y85{bottom:242.678667pt;}
.y14b{bottom:243.826667pt;}
.y1f0{bottom:244.113333pt;}
.y129{bottom:245.765333pt;}
.y231{bottom:246.245333pt;}
.ycb{bottom:246.489333pt;}
.yef{bottom:246.798667pt;}
.y18e{bottom:247.606667pt;}
.y1af{bottom:250.470667pt;}
.y16f{bottom:251.601333pt;}
.y24c{bottom:253.573333pt;}
.y18{bottom:253.738667pt;}
.y111{bottom:253.944000pt;}
.y210{bottom:257.405333pt;}
.y62{bottom:257.853333pt;}
.y3b{bottom:258.570667pt;}
.ya5{bottom:259.401333pt;}
.y84{bottom:261.202667pt;}
.y14a{bottom:261.822667pt;}
.y1ef{bottom:262.460000pt;}
.yca{bottom:262.940000pt;}
.yee{bottom:265.318667pt;}
.y16e{bottom:266.934667pt;}
.y128{bottom:267.377333pt;}
.y1ae{bottom:269.502667pt;}
.y110{bottom:272.050667pt;}
.y230{bottom:272.244000pt;}
.y17{bottom:272.422667pt;}
.y1d0{bottom:274.062667pt;}
.y20f{bottom:275.506667pt;}
.y61{bottom:276.004000pt;}
.y3a{bottom:276.802667pt;}
.yc9{bottom:278.273333pt;}
.ya4{bottom:278.738667pt;}
.y83{bottom:279.726667pt;}
.y1ee{bottom:280.808000pt;}
.y149{bottom:280.936000pt;}
.y16d{bottom:282.268000pt;}
.y24b{bottom:282.588000pt;}
.yed{bottom:283.838667pt;}
.y1ad{bottom:288.534667pt;}
.y127{bottom:288.988000pt;}
.y10f{bottom:290.157333pt;}
.y1cf{bottom:293.460000pt;}
.yc8{bottom:293.606667pt;}
.y20e{bottom:293.608000pt;}
.y60{bottom:294.156000pt;}
.y39{bottom:295.033333pt;}
.y18d{bottom:296.269333pt;}
.y148{bottom:297.385333pt;}
.ya3{bottom:298.074667pt;}
.y22f{bottom:298.244000pt;}
.y82{bottom:298.249333pt;}
.y1ed{bottom:299.154667pt;}
.y16c{bottom:300.264000pt;}
.yec{bottom:302.358667pt;}
.y1ac{bottom:307.566667pt;}
.y10e{bottom:308.264000pt;}
.y16{bottom:310.005333pt;}
.y126{bottom:310.598667pt;}
.yc7{bottom:311.602667pt;}
.y20d{bottom:311.710667pt;}
.y5f{bottom:312.308000pt;}
.y147{bottom:312.718667pt;}
.y1ce{bottom:312.857333pt;}
.y38{bottom:313.265333pt;}
.y22e{bottom:316.684000pt;}
.y16b{bottom:316.713333pt;}
.y81{bottom:316.773333pt;}
.ya2{bottom:317.412000pt;}
.y1ec{bottom:317.502667pt;}
.yeb{bottom:320.878667pt;}
.y10d{bottom:326.370667pt;}
.y1ab{bottom:326.598667pt;}
.y15{bottom:327.356000pt;}
.yc6{bottom:328.052000pt;}
.y20c{bottom:329.812000pt;}
.y5e{bottom:330.458667pt;}
.y18c{bottom:330.714667pt;}
.y37{bottom:331.496000pt;}
.y16a{bottom:332.046667pt;}
.y125{bottom:332.210667pt;}
.y1cd{bottom:332.256000pt;}
.y24a{bottom:334.278667pt;}
.y80{bottom:335.297333pt;}
.y1eb{bottom:335.849333pt;}
.ya1{bottom:336.748000pt;}
.yea{bottom:339.398667pt;}
.y22d{bottom:342.682667pt;}
.y146{bottom:343.385333pt;}
.y10c{bottom:344.476000pt;}
.y14{bottom:344.706667pt;}
.y1aa{bottom:345.630667pt;}
.yc5{bottom:346.048000pt;}
.y169{bottom:347.380000pt;}
.y20b{bottom:347.913333pt;}
.y5d{bottom:348.610667pt;}
.y36{bottom:349.728000pt;}
.y1cc{bottom:351.653333pt;}
.y7f{bottom:353.821333pt;}
.y1ea{bottom:354.196000pt;}
.ya0{bottom:356.085333pt;}
.ye9{bottom:357.918667pt;}
.y249{bottom:358.622667pt;}
.y22c{bottom:361.122667pt;}
.y145{bottom:361.381333pt;}
.y13{bottom:362.057333pt;}
.y10b{bottom:362.582667pt;}
.y168{bottom:362.713333pt;}
.y1a9{bottom:364.662667pt;}
.yc4{bottom:365.161333pt;}
.y20a{bottom:366.016000pt;}
.y5c{bottom:366.762667pt;}
.y35{bottom:367.958667pt;}
.y18b{bottom:369.842667pt;}
.y1cb{bottom:371.050667pt;}
.y7e{bottom:372.345333pt;}
.y1e9{bottom:372.544000pt;}
.y9f{bottom:375.422667pt;}
.y124{bottom:375.432000pt;}
.ye8{bottom:376.438667pt;}
.y144{bottom:377.832000pt;}
.y167{bottom:378.046667pt;}
.y12{bottom:379.408000pt;}
.y10a{bottom:380.689333pt;}
.yc3{bottom:381.612000pt;}
.y1a8{bottom:383.694667pt;}
.y209{bottom:384.117333pt;}
.y5b{bottom:384.913333pt;}
.y34{bottom:386.190667pt;}
.y22b{bottom:387.121333pt;}
.y18a{bottom:388.649333pt;}
.y1ca{bottom:390.448000pt;}
.y7d{bottom:390.869333pt;}
.y1e8{bottom:390.890667pt;}
.y143{bottom:393.165333pt;}
.y166{bottom:393.380000pt;}
.y9e{bottom:394.758667pt;}
.ye7{bottom:394.958667pt;}
.y11{bottom:396.758667pt;}
.yc2{bottom:396.945333pt;}
.y123{bottom:397.044000pt;}
.y109{bottom:398.796000pt;}
.y208{bottom:402.220000pt;}
.y1a7{bottom:402.728000pt;}
.y5a{bottom:403.065333pt;}
.y33{bottom:404.421333pt;}
.y22a{bottom:405.561333pt;}
.y189{bottom:407.456000pt;}
.y1e7{bottom:409.238667pt;}
.y7c{bottom:409.393333pt;}
.y1c9{bottom:409.845333pt;}
.y142{bottom:411.161333pt;}
.y165{bottom:411.376000pt;}
.yc1{bottom:412.278667pt;}
.ye6{bottom:413.478667pt;}
.y9d{bottom:414.096000pt;}
.y10{bottom:414.109333pt;}
.y108{bottom:416.902667pt;}
.y122{bottom:418.654667pt;}
.y207{bottom:420.321333pt;}
.y59{bottom:421.217333pt;}
.y1a6{bottom:421.760000pt;}
.y32{bottom:422.653333pt;}
.y188{bottom:426.262667pt;}
.y1e6{bottom:427.585333pt;}
.y164{bottom:427.826667pt;}
.y7b{bottom:427.916000pt;}
.y1c8{bottom:429.242667pt;}
.yc0{bottom:430.274667pt;}
.yf{bottom:431.460000pt;}
.y229{bottom:431.561333pt;}
.ye5{bottom:431.998667pt;}
.y9c{bottom:433.432000pt;}
.y107{bottom:435.009333pt;}
.y206{bottom:438.422667pt;}
.y248{bottom:438.548000pt;}
.y58{bottom:439.369333pt;}
.y121{bottom:440.265333pt;}
.y1a5{bottom:440.792000pt;}
.y31{bottom:440.884000pt;}
.y163{bottom:443.160000pt;}
.y187{bottom:445.070667pt;}
.y1e5{bottom:445.932000pt;}
.y7a{bottom:446.440000pt;}
.y1c7{bottom:448.640000pt;}
.ye{bottom:448.810667pt;}
.y228{bottom:450.001333pt;}
.y141{bottom:450.289333pt;}
.ye4{bottom:450.520000pt;}
.y9b{bottom:452.769333pt;}
.y106{bottom:453.116000pt;}
.y205{bottom:456.525333pt;}
.y247{bottom:456.890667pt;}
.y57{bottom:457.520000pt;}
.y30{bottom:459.116000pt;}
.y1a4{bottom:459.824000pt;}
.y162{bottom:461.156000pt;}
.y120{bottom:461.877333pt;}
.y186{bottom:463.877333pt;}
.y1e4{bottom:464.280000pt;}
.y79{bottom:464.964000pt;}
.yd{bottom:466.161333pt;}
.y1c6{bottom:468.037333pt;}
.y140{bottom:468.821333pt;}
.ye3{bottom:469.040000pt;}
.ybf{bottom:469.401333pt;}
.y105{bottom:471.222667pt;}
.y9a{bottom:472.106667pt;}
.y204{bottom:474.626667pt;}
.y56{bottom:475.672000pt;}
.y227{bottom:476.000000pt;}
.y2f{bottom:477.348000pt;}
.y1a3{bottom:478.856000pt;}
.y1e3{bottom:482.626667pt;}
.y185{bottom:482.684000pt;}
.y246{bottom:482.792000pt;}
.y78{bottom:483.488000pt;}
.yc{bottom:483.512000pt;}
.y13f{bottom:487.353333pt;}
.y1c5{bottom:487.434667pt;}
.ye2{bottom:487.560000pt;}
.ybe{bottom:487.901333pt;}
.y104{bottom:489.329333pt;}
.y99{bottom:491.442667pt;}
.y203{bottom:492.728000pt;}
.y55{bottom:493.824000pt;}
.y226{bottom:494.440000pt;}
.y2e{bottom:495.578667pt;}
.y1a2{bottom:497.888000pt;}
.y161{bottom:500.284000pt;}
.yb{bottom:500.864000pt;}
.y1e2{bottom:500.974667pt;}
.y245{bottom:501.134667pt;}
.y184{bottom:501.490667pt;}
.y11f{bottom:502.385333pt;}
.y13e{bottom:505.885333pt;}
.ye1{bottom:506.080000pt;}
.ybd{bottom:506.401333pt;}
.y1c4{bottom:506.832000pt;}
.y103{bottom:507.436000pt;}
.y98{bottom:510.780000pt;}
.y202{bottom:510.830667pt;}
.y54{bottom:511.974667pt;}
.y1a1{bottom:516.920000pt;}
.y160{bottom:519.165333pt;}
.y1e1{bottom:519.321333pt;}
.y183{bottom:520.297333pt;}
.y225{bottom:520.438667pt;}
.y77{bottom:520.909333pt;}
.y13d{bottom:524.417333pt;}
.ye0{bottom:524.600000pt;}
.ybc{bottom:524.901333pt;}
.y102{bottom:525.542667pt;}
.y1c3{bottom:526.229333pt;}
.y244{bottom:527.037333pt;}
.y11e{bottom:527.330667pt;}
.y262{bottom:527.494667pt;}
.y201{bottom:528.932000pt;}
.ya{bottom:529.553333pt;}
.y97{bottom:530.116000pt;}
.y53{bottom:530.126667pt;}
.y2d{bottom:532.708000pt;}
.y1a0{bottom:535.952000pt;}
.y15f{bottom:538.048000pt;}
.y224{bottom:538.878667pt;}
.y182{bottom:539.104000pt;}
.y76{bottom:542.766667pt;}
.y13c{bottom:542.949333pt;}
.ydf{bottom:543.120000pt;}
.ybb{bottom:543.401333pt;}
.y101{bottom:543.649333pt;}
.y243{bottom:545.380000pt;}
.y261{bottom:545.494667pt;}
.y1c2{bottom:545.626667pt;}
.y200{bottom:547.034667pt;}
.y52{bottom:548.278667pt;}
.y96{bottom:549.453333pt;}
.y19f{bottom:554.984000pt;}
.y1e0{bottom:556.566667pt;}
.y15e{bottom:556.930667pt;}
.y181{bottom:557.912000pt;}
.y13b{bottom:561.482667pt;}
.yde{bottom:561.640000pt;}
.y100{bottom:561.756000pt;}
.yba{bottom:561.901333pt;}
.y260{bottom:563.494667pt;}
.y223{bottom:564.878667pt;}
.y1c1{bottom:565.025333pt;}
.y1ff{bottom:565.136000pt;}
.y51{bottom:566.430667pt;}
.y95{bottom:568.790667pt;}
.y242{bottom:571.281333pt;}
.y19e{bottom:574.016000pt;}
.y15d{bottom:575.813333pt;}
.y180{bottom:576.718667pt;}
.y1df{bottom:578.246667pt;}
.yff{bottom:579.861333pt;}
.y13a{bottom:580.014667pt;}
.ydd{bottom:580.160000pt;}
.yb9{bottom:580.401333pt;}
.y9{bottom:580.918667pt;}
.y25f{bottom:581.494667pt;}
.y1fe{bottom:583.237333pt;}
.y1c0{bottom:584.422667pt;}
.y50{bottom:584.581333pt;}
.y11d{bottom:586.290667pt;}
.y241{bottom:589.624000pt;}
.y222{bottom:590.877333pt;}
.y19d{bottom:593.048000pt;}
.y15c{bottom:594.694667pt;}
.y17f{bottom:595.525333pt;}
.yfe{bottom:597.968000pt;}
.y139{bottom:598.546667pt;}
.y75{bottom:598.640000pt;}
.ydc{bottom:598.680000pt;}
.yb8{bottom:598.901333pt;}
.y1de{bottom:599.926667pt;}
.y4f{bottom:602.733333pt;}
.y1bf{bottom:603.820000pt;}
.y8{bottom:604.936000pt;}
.y2c{bottom:606.520000pt;}
.y94{bottom:607.024000pt;}
.y11c{bottom:607.901333pt;}
.y240{bottom:607.966667pt;}
.y25e{bottom:610.833333pt;}
.y19c{bottom:612.080000pt;}
.y15b{bottom:613.577333pt;}
.y17e{bottom:614.332000pt;}
.yfd{bottom:616.074667pt;}
.y138{bottom:617.078667pt;}
.y74{bottom:617.162667pt;}
.ydb{bottom:617.200000pt;}
.yb7{bottom:617.401333pt;}
.y1fd{bottom:620.237333pt;}
.y4e{bottom:620.885333pt;}
.y1be{bottom:623.217333pt;}
.y2b{bottom:625.417333pt;}
.y11b{bottom:629.512000pt;}
.y93{bottom:629.694667pt;}
.y19b{bottom:631.112000pt;}
.y15a{bottom:632.460000pt;}
.y17d{bottom:633.138667pt;}
.y23f{bottom:633.869333pt;}
.yfc{bottom:634.181333pt;}
.y137{bottom:635.610667pt;}
.y73{bottom:635.686667pt;}
.yda{bottom:635.720000pt;}
.yb6{bottom:635.901333pt;}
.y221{bottom:636.441333pt;}
.y4d{bottom:639.036000pt;}
.y1bd{bottom:642.614667pt;}
.y25d{bottom:647.730667pt;}
.y7{bottom:647.852000pt;}
.y19a{bottom:650.144000pt;}
.y11a{bottom:651.124000pt;}
.y159{bottom:651.342667pt;}
.y17c{bottom:651.945333pt;}
.yfb{bottom:652.288000pt;}
.y136{bottom:654.144000pt;}
.y72{bottom:654.210667pt;}
.yd9{bottom:654.240000pt;}
.yb5{bottom:654.401333pt;}
.y220{bottom:654.881333pt;}
.y1dd{bottom:655.624000pt;}
.y4c{bottom:657.188000pt;}
.y23e{bottom:659.770667pt;}
.y1bc{bottom:662.012000pt;}
.y2a{bottom:663.213333pt;}
.y25c{bottom:665.064000pt;}
.y199{bottom:669.176000pt;}
.y158{bottom:670.224000pt;}
.yfa{bottom:670.394667pt;}
.y17b{bottom:670.753333pt;}
.y135{bottom:672.676000pt;}
.y71{bottom:672.734667pt;}
.yd8{bottom:672.760000pt;}
.yb4{bottom:672.901333pt;}
.y21f{bottom:673.321333pt;}
.y1dc{bottom:673.970667pt;}
.y4b{bottom:675.340000pt;}
.y1fc{bottom:675.688000pt;}
.y6{bottom:675.869333pt;}
.y23d{bottom:678.113333pt;}
.y29{bottom:680.778667pt;}
.y1bb{bottom:681.409333pt;}
.y25b{bottom:682.397333pt;}
.y92{bottom:686.380000pt;}
.y198{bottom:688.208000pt;}
.y157{bottom:689.106667pt;}
.y17a{bottom:689.560000pt;}
.y134{bottom:691.208000pt;}
.y70{bottom:691.258667pt;}
.yd7{bottom:691.280000pt;}
.yb3{bottom:691.401333pt;}
.y21e{bottom:691.761333pt;}
.y1db{bottom:692.318667pt;}
.y4a{bottom:693.492000pt;}
.y1fb{bottom:693.790667pt;}
.y119{bottom:694.345333pt;}
.y23c{bottom:696.456000pt;}
.y28{bottom:698.342667pt;}
.y25a{bottom:699.732000pt;}
.y1ba{bottom:700.806667pt;}
.y5{bottom:703.886667pt;}
.y91{bottom:705.717333pt;}
.y197{bottom:707.241333pt;}
.yf9{bottom:707.398667pt;}
.y156{bottom:707.989333pt;}
.y179{bottom:708.366667pt;}
.y133{bottom:709.740000pt;}
.y6f{bottom:709.782667pt;}
.yd6{bottom:709.800000pt;}
.yb2{bottom:709.901333pt;}
.y21d{bottom:710.201333pt;}
.y1da{bottom:710.665333pt;}
.y49{bottom:711.642667pt;}
.y1fa{bottom:711.892000pt;}
.y27{bottom:715.908000pt;}
.y118{bottom:715.957333pt;}
.y259{bottom:717.065333pt;}
.y1b9{bottom:720.204000pt;}
.y23b{bottom:722.357333pt;}
.y90{bottom:725.054667pt;}
.y196{bottom:726.273333pt;}
.y155{bottom:726.872000pt;}
.y178{bottom:727.173333pt;}
.y132{bottom:728.272000pt;}
.y6e{bottom:728.305333pt;}
.yd5{bottom:728.321333pt;}
.yb1{bottom:728.401333pt;}
.y21c{bottom:728.641333pt;}
.yf8{bottom:728.838667pt;}
.y1d9{bottom:729.012000pt;}
.y48{bottom:729.794667pt;}
.y1f9{bottom:729.993333pt;}
.y26{bottom:733.472000pt;}
.y258{bottom:734.398667pt;}
.y117{bottom:737.568000pt;}
.y1b8{bottom:739.601333pt;}
.y23a{bottom:740.700000pt;}
.y8f{bottom:744.390667pt;}
.y195{bottom:745.305333pt;}
.y154{bottom:745.754667pt;}
.y177{bottom:745.980000pt;}
.y131{bottom:746.804000pt;}
.y6d{bottom:746.829333pt;}
.yd4{bottom:746.841333pt;}
.yb0{bottom:746.901333pt;}
.y21b{bottom:747.081333pt;}
.y1d8{bottom:747.360000pt;}
.y47{bottom:747.946667pt;}
.y1f8{bottom:748.096000pt;}
.y25{bottom:751.037333pt;}
.y257{bottom:751.732000pt;}
.y4{bottom:758.361333pt;}
.y239{bottom:759.042667pt;}
.y116{bottom:759.178667pt;}
.y8e{bottom:763.728000pt;}
.y194{bottom:764.337333pt;}
.y153{bottom:764.636000pt;}
.y176{bottom:764.788000pt;}
.y130{bottom:765.337333pt;}
.y6c{bottom:765.353333pt;}
.yd3{bottom:765.361333pt;}
.yaf{bottom:765.401333pt;}
.y21a{bottom:765.521333pt;}
.y1d7{bottom:765.706667pt;}
.y46{bottom:766.098667pt;}
.y1f7{bottom:766.197333pt;}
.y24{bottom:768.601333pt;}
.y256{bottom:769.065333pt;}
.y1b7{bottom:777.897333pt;}
.y115{bottom:780.790667pt;}
.y8d{bottom:783.064000pt;}
.y193{bottom:783.369333pt;}
.y152{bottom:783.518667pt;}
.y175{bottom:783.594667pt;}
.y12f{bottom:783.869333pt;}
.y6b{bottom:783.877333pt;}
.yd2{bottom:783.881333pt;}
.yae{bottom:783.901333pt;}
.y219{bottom:783.961333pt;}
.y1d6{bottom:784.053333pt;}
.y45{bottom:784.249333pt;}
.yf7{bottom:784.294667pt;}
.y1f6{bottom:784.298667pt;}
.y3{bottom:784.604000pt;}
.y238{bottom:784.945333pt;}
.y23{bottom:786.166667pt;}
.y255{bottom:786.398667pt;}
.y1b6{bottom:800.628000pt;}
.y44{bottom:802.401333pt;}
.y2{bottom:803.288000pt;}
.y22{bottom:803.732000pt;}
.y21{bottom:842.834667pt;}
.y20{bottom:858.834667pt;}
.h10{height:30.107146pt;}
.hf{height:33.734625pt;}
.h12{height:33.737292pt;}
.hc{height:33.739958pt;}
.ha{height:36.229167pt;}
.h7{height:36.796875pt;}
.hd{height:40.757812pt;}
.h11{height:41.507812pt;}
.he{height:44.390625pt;}
.h4{height:45.286458pt;}
.h3{height:47.550781pt;}
.h14{height:48.425781pt;}
.h15{height:49.322917pt;}
.h13{height:51.789062pt;}
.h9{height:52.079427pt;}
.h2{height:56.608073pt;}
.hb{height:56.721354pt;}
.h8{height:61.136719pt;}
.h6{height:63.401042pt;}
.h5{height:81.515625pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x9{left:72.381733pt;}
.x6{left:73.744933pt;}
.x1{left:75.418133pt;}
.x8{left:92.498533pt;}
.x5{left:94.207467pt;}
.x7{left:189.036000pt;}
.x4{left:205.061333pt;}
.x3{left:206.416000pt;}
.x2{left:207.417333pt;}
}




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