
    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_e3ffd6454286031c49d025af.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_6217648743eb3845abe13ad1.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_c1edfbbb9a39c4aa7b2d8d7f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_e14b2c6e410601c57535e448.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_2749e933ef651b6990ee57c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939453;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_184b9a134fc7bb724e788fb7.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_e76f219fe8f69b8fd8b75548.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_784860b6b9ab753760b9b1ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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:ff9;src:url('chunks/assets/font_a158627dafaabeee62353541.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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:ffa;src:url('chunks/assets/font_9f6bb613a486e5f4bf088b37.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.893555;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:ffb;src:url('chunks/assets/font_9ca7ec6d2a2e1260c5b4a37f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.810000;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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.701400px;}
.v4{vertical-align:-2.940000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:1.620000px;}
.v3{vertical-align:28.203000px;}
.v1{vertical-align:30.381600px;}
.ls49{letter-spacing:-7.800000px;}
.ls12{letter-spacing:-1.266000px;}
.ls11{letter-spacing:-0.780000px;}
.ls5c{letter-spacing:-0.540000px;}
.ls4a{letter-spacing:-0.360000px;}
.ls6f{letter-spacing:-0.288000px;}
.ls66{letter-spacing:-0.240000px;}
.lsa4{letter-spacing:-0.192000px;}
.ls4b{letter-spacing:-0.180000px;}
.lsa6{letter-spacing:-0.144000px;}
.ls4c{letter-spacing:-0.120000px;}
.ls98{letter-spacing:-0.096000px;}
.ls15{letter-spacing:-0.090000px;}
.ls48{letter-spacing:-0.060000px;}
.lsa5{letter-spacing:-0.048000px;}
.ls10{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.003540px;}
.ls0{letter-spacing:0.005676px;}
.ls5e{letter-spacing:0.048000px;}
.ls34{letter-spacing:0.060000px;}
.ls2{letter-spacing:0.069600px;}
.ls97{letter-spacing:0.096000px;}
.lsb{letter-spacing:0.120000px;}
.ls7c{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.180000px;}
.ls8f{letter-spacing:0.192000px;}
.ls4e{letter-spacing:0.240000px;}
.ls9e{letter-spacing:0.288000px;}
.ls46{letter-spacing:0.300000px;}
.ls9c{letter-spacing:0.336000px;}
.ls2a{letter-spacing:0.360000px;}
.ls99{letter-spacing:0.384000px;}
.ls40{letter-spacing:0.420000px;}
.ls87{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.480000px;}
.ls8e{letter-spacing:0.528000px;}
.ls52{letter-spacing:0.540000px;}
.ls8c{letter-spacing:0.576000px;}
.ls16{letter-spacing:0.600000px;}
.ls7e{letter-spacing:0.624000px;}
.ls18{letter-spacing:0.660000px;}
.ls8d{letter-spacing:0.672000px;}
.lse{letter-spacing:0.720000px;}
.ls83{letter-spacing:0.768000px;}
.ls4f{letter-spacing:0.780000px;}
.ls65{letter-spacing:0.816000px;}
.ls41{letter-spacing:0.840000px;}
.ls45{letter-spacing:0.851400px;}
.ls64{letter-spacing:0.864000px;}
.ls5f{letter-spacing:0.900000px;}
.ls93{letter-spacing:0.912000px;}
.ls23{letter-spacing:0.960000px;}
.lsa2{letter-spacing:1.008000px;}
.ls37{letter-spacing:1.020000px;}
.ls82{letter-spacing:1.056000px;}
.ls3a{letter-spacing:1.080000px;}
.ls92{letter-spacing:1.104000px;}
.lsa{letter-spacing:1.140000px;}
.ls90{letter-spacing:1.152000px;}
.ls2f{letter-spacing:1.200000px;}
.ls81{letter-spacing:1.248000px;}
.ls54{letter-spacing:1.260000px;}
.ls7d{letter-spacing:1.296000px;}
.ls1b{letter-spacing:1.320000px;}
.ls7f{letter-spacing:1.344000px;}
.ls47{letter-spacing:1.380000px;}
.ls3c{letter-spacing:1.440000px;}
.ls32{letter-spacing:1.500000px;}
.ls96{letter-spacing:1.536000px;}
.ls2e{letter-spacing:1.560000px;}
.ls8b{letter-spacing:1.584000px;}
.ls30{letter-spacing:1.620000px;}
.ls80{letter-spacing:1.632000px;}
.ls28{letter-spacing:1.680000px;}
.ls94{letter-spacing:1.728000px;}
.ls7{letter-spacing:1.740000px;}
.ls84{letter-spacing:1.776000px;}
.ls3{letter-spacing:1.800000px;}
.ls13{letter-spacing:1.860000px;}
.lsa1{letter-spacing:1.872000px;}
.ls27{letter-spacing:1.920000px;}
.ls89{letter-spacing:1.968000px;}
.ls1d{letter-spacing:1.980000px;}
.ls29{letter-spacing:2.040000px;}
.ls85{letter-spacing:2.064000px;}
.ls1e{letter-spacing:2.100000px;}
.ls50{letter-spacing:2.160000px;}
.ls9b{letter-spacing:2.208000px;}
.ls17{letter-spacing:2.220000px;}
.ls9{letter-spacing:2.280000px;}
.ls88{letter-spacing:2.304000px;}
.ls2b{letter-spacing:2.340000px;}
.ls2d{letter-spacing:2.400000px;}
.ls4{letter-spacing:2.460000px;}
.ls3f{letter-spacing:2.520000px;}
.ls70{letter-spacing:2.580000px;}
.ls95{letter-spacing:2.592000px;}
.ls5d{letter-spacing:2.640000px;}
.ls5{letter-spacing:2.700000px;}
.ls8{letter-spacing:2.760000px;}
.ls38{letter-spacing:2.820000px;}
.ls39{letter-spacing:2.880000px;}
.ls9f{letter-spacing:2.928000px;}
.ls44{letter-spacing:2.940000px;}
.ls8a{letter-spacing:2.976000px;}
.ls73{letter-spacing:3.000000px;}
.ls57{letter-spacing:3.060000px;}
.ls3b{letter-spacing:3.120000px;}
.ls20{letter-spacing:3.180000px;}
.ls62{letter-spacing:3.240000px;}
.ls1f{letter-spacing:3.300000px;}
.ls9a{letter-spacing:3.312000px;}
.ls55{letter-spacing:3.360000px;}
.ls35{letter-spacing:3.420000px;}
.ls24{letter-spacing:3.480000px;}
.ls2c{letter-spacing:3.540000px;}
.ls1a{letter-spacing:3.660000px;}
.ls56{letter-spacing:3.720000px;}
.ls91{letter-spacing:3.744000px;}
.ls21{letter-spacing:3.780000px;}
.ls9d{letter-spacing:3.792000px;}
.ls79{letter-spacing:3.840000px;}
.ls51{letter-spacing:3.900000px;}
.ls6{letter-spacing:3.960000px;}
.ls4d{letter-spacing:4.020000px;}
.ls60{letter-spacing:4.080000px;}
.ls19{letter-spacing:4.140000px;}
.ls1c{letter-spacing:4.200000px;}
.ls76{letter-spacing:4.260000px;}
.ls61{letter-spacing:4.320000px;}
.ls3d{letter-spacing:4.380000px;}
.ls6b{letter-spacing:4.440000px;}
.ls72{letter-spacing:4.500000px;}
.ls86{letter-spacing:4.512000px;}
.ls5a{letter-spacing:4.560000px;}
.ls42{letter-spacing:4.620000px;}
.ls43{letter-spacing:4.680000px;}
.ls33{letter-spacing:4.800000px;}
.ls78{letter-spacing:4.860000px;}
.ls74{letter-spacing:4.980000px;}
.ls25{letter-spacing:5.040000px;}
.lsc{letter-spacing:5.100000px;}
.ls7a{letter-spacing:5.220000px;}
.lsa0{letter-spacing:5.232000px;}
.lsa3{letter-spacing:5.280000px;}
.ls7b{letter-spacing:5.400000px;}
.ls26{letter-spacing:5.580000px;}
.lsd{letter-spacing:5.640000px;}
.ls22{letter-spacing:5.700000px;}
.ls36{letter-spacing:5.760000px;}
.ls63{letter-spacing:5.880000px;}
.ls71{letter-spacing:5.940000px;}
.ls69{letter-spacing:6.000000px;}
.ls31{letter-spacing:6.060000px;}
.ls68{letter-spacing:6.180000px;}
.ls77{letter-spacing:6.240000px;}
.ls53{letter-spacing:6.600000px;}
.ls59{letter-spacing:6.660000px;}
.ls58{letter-spacing:6.720000px;}
.ls6e{letter-spacing:6.900000px;}
.ls6c{letter-spacing:6.960000px;}
.ls75{letter-spacing:7.020000px;}
.ls3e{letter-spacing:7.140000px;}
.ls6d{letter-spacing:7.620000px;}
.ls6a{letter-spacing:7.860000px;}
.ls67{letter-spacing:9.300000px;}
.ls5b{letter-spacing:132.624000px;}
.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;}
}
.ws56{word-spacing:-60.000000px;}
.ws1{word-spacing:-35.194800px;}
.ws0{word-spacing:-33.928800px;}
.ws74{word-spacing:-21.720000px;}
.wsb1{word-spacing:-21.240000px;}
.ws29{word-spacing:-21.060000px;}
.ws1e{word-spacing:-20.700000px;}
.ws1b{word-spacing:-20.640000px;}
.ws21{word-spacing:-20.580000px;}
.wsc8{word-spacing:-19.980000px;}
.wsad{word-spacing:-19.500000px;}
.wsac{word-spacing:-19.440000px;}
.ws92{word-spacing:-19.320000px;}
.wsb0{word-spacing:-19.260000px;}
.ws2a{word-spacing:-19.200000px;}
.ws58{word-spacing:-18.900000px;}
.ws20{word-spacing:-18.660000px;}
.wsb2{word-spacing:-18.420000px;}
.wsca{word-spacing:-18.360000px;}
.ws1d{word-spacing:-18.300000px;}
.wsc9{word-spacing:-18.180000px;}
.ws94{word-spacing:-18.120000px;}
.ws9c{word-spacing:-17.940000px;}
.ws9d{word-spacing:-17.880000px;}
.wsc4{word-spacing:-17.820000px;}
.wsa5{word-spacing:-17.700000px;}
.wsa4{word-spacing:-17.640000px;}
.wsc7{word-spacing:-17.580000px;}
.wsc6{word-spacing:-17.520000px;}
.ws27{word-spacing:-17.400000px;}
.ws22{word-spacing:-17.280000px;}
.ws24{word-spacing:-17.220000px;}
.ws57{word-spacing:-17.160000px;}
.ws1c{word-spacing:-17.100000px;}
.ws25{word-spacing:-17.040000px;}
.ws23{word-spacing:-16.920000px;}
.ws5{word-spacing:-16.860000px;}
.ws53{word-spacing:-16.800000px;}
.ws3f{word-spacing:-16.740000px;}
.ws4{word-spacing:-16.680000px;}
.ws28{word-spacing:-16.560000px;}
.wsc5{word-spacing:-16.440000px;}
.ws8a{word-spacing:-16.380000px;}
.wsaf{word-spacing:-16.320000px;}
.ws73{word-spacing:-16.260000px;}
.wsa3{word-spacing:-16.200000px;}
.ws88{word-spacing:-16.140000px;}
.ws54{word-spacing:-16.020000px;}
.ws89{word-spacing:-15.960000px;}
.ws87{word-spacing:-15.900000px;}
.ws42{word-spacing:-15.840000px;}
.ws59{word-spacing:-15.780000px;}
.ws8{word-spacing:-15.720000px;}
.ws1f{word-spacing:-15.660000px;}
.ws9{word-spacing:-15.480000px;}
.ws9b{word-spacing:-15.420000px;}
.ws26{word-spacing:-15.360000px;}
.ws9e{word-spacing:-15.300000px;}
.wsae{word-spacing:-15.240000px;}
.ws6{word-spacing:-15.180000px;}
.ws7{word-spacing:-15.120000px;}
.ws2b{word-spacing:-15.060000px;}
.ws1a{word-spacing:-15.000000px;}
.wsd3{word-spacing:-14.976000px;}
.ws41{word-spacing:-14.940000px;}
.ws93{word-spacing:-14.820000px;}
.wsd5{word-spacing:-14.400000px;}
.wsf3{word-spacing:-14.304000px;}
.wsd1{word-spacing:-14.160000px;}
.wsd7{word-spacing:-13.728000px;}
.wsd8{word-spacing:-13.536000px;}
.ws55{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.344000px;}
.wsf0{word-spacing:-13.248000px;}
.wsf2{word-spacing:-13.008000px;}
.wsd2{word-spacing:-12.960000px;}
.wsd6{word-spacing:-12.720000px;}
.wsd4{word-spacing:-12.528000px;}
.ws3{word-spacing:-12.510000px;}
.wsf1{word-spacing:-12.480000px;}
.wsf4{word-spacing:-12.432000px;}
.wsa{word-spacing:-12.420000px;}
.wsef{word-spacing:-12.384000px;}
.wsf5{word-spacing:-12.240000px;}
.wsee{word-spacing:-12.144000px;}
.wsf6{word-spacing:-12.048000px;}
.ws2c{word-spacing:-12.000000px;}
.wsf7{word-spacing:-11.856000px;}
.ws2{word-spacing:-10.210662px;}
.ws40{word-spacing:-7.200000px;}
.ws7a{word-spacing:-6.720000px;}
.ws2f{word-spacing:-5.640000px;}
.ws32{word-spacing:-5.580000px;}
.wsbb{word-spacing:-4.980000px;}
.ws4b{word-spacing:-4.620000px;}
.wsbe{word-spacing:-4.560000px;}
.wsba{word-spacing:-4.320000px;}
.ws8c{word-spacing:-4.020000px;}
.ws65{word-spacing:-3.900000px;}
.wscf{word-spacing:-3.480000px;}
.ws11{word-spacing:-3.300000px;}
.ws31{word-spacing:-3.240000px;}
.ws97{word-spacing:-3.120000px;}
.wsb9{word-spacing:-3.000000px;}
.ws78{word-spacing:-2.940000px;}
.ws101{word-spacing:-2.928000px;}
.wsd{word-spacing:-2.886000px;}
.wsbd{word-spacing:-2.880000px;}
.wsa7{word-spacing:-2.700000px;}
.wsd0{word-spacing:-2.580000px;}
.ws8e{word-spacing:-2.520000px;}
.ws8d{word-spacing:-2.460000px;}
.wsfa{word-spacing:-2.400000px;}
.ws9f{word-spacing:-2.340000px;}
.ws33{word-spacing:-2.280000px;}
.ws3b{word-spacing:-2.220000px;}
.wse8{word-spacing:-2.160000px;}
.wsdf{word-spacing:-2.064000px;}
.ws35{word-spacing:-2.040000px;}
.wsab{word-spacing:-1.980000px;}
.wsa8{word-spacing:-1.920000px;}
.wsfd{word-spacing:-1.776000px;}
.wsec{word-spacing:-1.728000px;}
.ws5b{word-spacing:-1.680000px;}
.ws51{word-spacing:-1.665000px;}
.ws6e{word-spacing:-1.620000px;}
.wsb5{word-spacing:-1.560000px;}
.ws81{word-spacing:-1.380000px;}
.ws106{word-spacing:-1.296000px;}
.wsa2{word-spacing:-1.260000px;}
.ws100{word-spacing:-1.248000px;}
.wsa0{word-spacing:-1.200000px;}
.ws96{word-spacing:-1.140000px;}
.wsf{word-spacing:-1.134000px;}
.wsea{word-spacing:-1.104000px;}
.ws10{word-spacing:-1.080000px;}
.ws104{word-spacing:-1.008000px;}
.wsa1{word-spacing:-0.960000px;}
.wseb{word-spacing:-0.912000px;}
.ws8f{word-spacing:-0.900000px;}
.ws5a{word-spacing:-0.864000px;}
.wscd{word-spacing:-0.840000px;}
.ws50{word-spacing:-0.810000px;}
.ws18{word-spacing:-0.720000px;}
.wsb8{word-spacing:-0.660000px;}
.wse0{word-spacing:-0.624000px;}
.wse7{word-spacing:-0.576000px;}
.ws95{word-spacing:-0.480000px;}
.ws5f{word-spacing:-0.420000px;}
.ws48{word-spacing:-0.360000px;}
.ws61{word-spacing:-0.300000px;}
.ws5d{word-spacing:-0.240000px;}
.ws17{word-spacing:-0.180000px;}
.ws4e{word-spacing:-0.120000px;}
.wsed{word-spacing:-0.096000px;}
.ws3c{word-spacing:-0.060000px;}
.ws109{word-spacing:-0.048000px;}
.wsc{word-spacing:0.000000px;}
.ws47{word-spacing:0.060000px;}
.ws19{word-spacing:0.090000px;}
.wsde{word-spacing:0.096000px;}
.wsdb{word-spacing:0.120000px;}
.wsfc{word-spacing:0.144000px;}
.ws76{word-spacing:0.180000px;}
.wse3{word-spacing:0.192000px;}
.ws7d{word-spacing:0.240000px;}
.ws82{word-spacing:0.300000px;}
.ws99{word-spacing:0.336000px;}
.wsa9{word-spacing:0.360000px;}
.wsdd{word-spacing:0.432000px;}
.ws105{word-spacing:0.528000px;}
.wsc0{word-spacing:0.660000px;}
.wsff{word-spacing:0.672000px;}
.wsf9{word-spacing:0.720000px;}
.ws2d{word-spacing:0.780000px;}
.wse4{word-spacing:0.816000px;}
.ws91{word-spacing:0.864000px;}
.ws8b{word-spacing:0.900000px;}
.ws2e{word-spacing:0.960000px;}
.ws108{word-spacing:1.008000px;}
.ws79{word-spacing:1.020000px;}
.wsaa{word-spacing:1.080000px;}
.wsc1{word-spacing:1.140000px;}
.ws98{word-spacing:1.200000px;}
.ws6c{word-spacing:1.260000px;}
.wse{word-spacing:1.266000px;}
.wsfb{word-spacing:1.344000px;}
.ws62{word-spacing:1.380000px;}
.wse6{word-spacing:1.392000px;}
.ws3d{word-spacing:1.440000px;}
.wse1{word-spacing:1.488000px;}
.ws36{word-spacing:1.500000px;}
.wse9{word-spacing:1.536000px;}
.wscc{word-spacing:1.560000px;}
.ws3e{word-spacing:1.584000px;}
.ws39{word-spacing:1.620000px;}
.wsfe{word-spacing:1.632000px;}
.ws30{word-spacing:1.680000px;}
.wscb{word-spacing:1.740000px;}
.ws67{word-spacing:1.800000px;}
.ws107{word-spacing:1.872000px;}
.ws64{word-spacing:1.920000px;}
.wsc3{word-spacing:1.980000px;}
.ws86{word-spacing:2.016000px;}
.ws7c{word-spacing:2.040000px;}
.ws7e{word-spacing:2.100000px;}
.ws75{word-spacing:2.160000px;}
.ws6a{word-spacing:2.280000px;}
.wsdc{word-spacing:2.304000px;}
.ws60{word-spacing:2.400000px;}
.wse5{word-spacing:2.496000px;}
.ws103{word-spacing:2.544000px;}
.ws46{word-spacing:2.580000px;}
.ws9a{word-spacing:2.592000px;}
.ws6d{word-spacing:2.640000px;}
.ws52{word-spacing:2.688000px;}
.ws49{word-spacing:2.700000px;}
.ws15{word-spacing:2.760000px;}
.ws69{word-spacing:2.820000px;}
.ws10b{word-spacing:2.832000px;}
.ws4d{word-spacing:2.880000px;}
.ws7f{word-spacing:2.940000px;}
.wsa6{word-spacing:3.000000px;}
.ws10a{word-spacing:3.024000px;}
.ws83{word-spacing:3.060000px;}
.wse2{word-spacing:3.072000px;}
.wsbf{word-spacing:3.120000px;}
.ws72{word-spacing:3.216000px;}
.ws63{word-spacing:3.240000px;}
.ws102{word-spacing:3.264000px;}
.ws80{word-spacing:3.300000px;}
.ws16{word-spacing:3.360000px;}
.ws3a{word-spacing:3.420000px;}
.ws4a{word-spacing:3.480000px;}
.ws7b{word-spacing:3.600000px;}
.ws77{word-spacing:3.720000px;}
.ws13{word-spacing:3.840000px;}
.wsf8{word-spacing:3.888000px;}
.ws34{word-spacing:3.900000px;}
.ws84{word-spacing:3.936000px;}
.ws66{word-spacing:3.960000px;}
.ws70{word-spacing:3.984000px;}
.ws85{word-spacing:4.032000px;}
.ws68{word-spacing:4.080000px;}
.ws4c{word-spacing:4.200000px;}
.ws71{word-spacing:4.224000px;}
.ws4f{word-spacing:4.260000px;}
.ws5c{word-spacing:4.320000px;}
.wsb7{word-spacing:4.380000px;}
.ws37{word-spacing:4.500000px;}
.ws5e{word-spacing:4.560000px;}
.wsb6{word-spacing:4.620000px;}
.ws6b{word-spacing:4.680000px;}
.wsce{word-spacing:4.740000px;}
.ws90{word-spacing:4.860000px;}
.ws12{word-spacing:4.920000px;}
.ws14{word-spacing:4.980000px;}
.wsc2{word-spacing:5.280000px;}
.wsd9{word-spacing:5.460000px;}
.wsda{word-spacing:5.520000px;}
.ws38{word-spacing:7.320000px;}
.wsbc{word-spacing:7.680000px;}
.wsb3{word-spacing:119.136000px;}
.ws43{word-spacing:151.335000px;}
.ws44{word-spacing:161.415000px;}
.ws45{word-spacing:168.840000px;}
.wsb4{word-spacing:289.200000px;}
.ws6f{word-spacing:718.416000px;}
._10{margin-left:-2898.096000px;}
._3b{margin-left:-2874.288000px;}
._3{margin-left:-9.368400px;}
._6{margin-left:-7.560000px;}
._b{margin-left:-6.435000px;}
._1{margin-left:-5.376000px;}
._5{margin-left:-3.465000px;}
._0{margin-left:-2.310000px;}
._2{margin-left:-1.266000px;}
._4{width:1.050414px;}
._7{width:2.220000px;}
._8{width:3.300000px;}
._f{width:4.320000px;}
._9{width:5.820000px;}
._4b{width:6.855000px;}
._e{width:7.919586px;}
._c{width:9.240000px;}
._a{width:10.680000px;}
._d{width:11.685000px;}
._16{width:34.560000px;}
._4d{width:39.375000px;}
._2a{width:42.975000px;}
._4e{width:46.035000px;}
._30{width:47.385000px;}
._2c{width:48.870000px;}
._13{width:63.900000px;}
._25{width:87.030000px;}
._36{width:105.165000px;}
._1a{width:110.700000px;}
._38{width:112.995000px;}
._23{width:122.670000px;}
._39{width:129.300000px;}
._58{width:131.136000px;}
._2e{width:132.930000px;}
._48{width:133.968000px;}
._33{width:136.815000px;}
._2b{width:139.500000px;}
._29{width:144.810000px;}
._3e{width:145.968000px;}
._4c{width:147.504000px;}
._28{width:151.335000px;}
._4f{width:154.800000px;}
._34{width:157.275000px;}
._17{width:162.585000px;}
._31{width:164.024586px;}
._35{width:165.075000px;}
._2f{width:167.580000px;}
._44{width:168.642000px;}
._1d{width:170.235000px;}
._3c{width:182.226000px;}
._3f{width:183.870000px;}
._21{width:190.755000px;}
._20{width:193.845000px;}
._46{width:201.120000px;}
._22{width:207.585000px;}
._49{width:209.751000px;}
._1b{width:211.545000px;}
._55{width:216.192000px;}
._45{width:218.976000px;}
._1e{width:225.765000px;}
._27{width:226.815000px;}
._18{width:228.600000px;}
._51{width:240.528000px;}
._1f{width:241.605000px;}
._26{width:254.250000px;}
._3a{width:262.575000px;}
._11{width:265.500000px;}
._2d{width:269.256000px;}
._4a{width:270.864000px;}
._47{width:274.176000px;}
._52{width:282.489000px;}
._15{width:294.255000px;}
._56{width:301.200000px;}
._53{width:325.200000px;}
._50{width:333.177000px;}
._24{width:344.085000px;}
._37{width:345.465000px;}
._32{width:355.635000px;}
._19{width:359.775000px;}
._14{width:377.280000px;}
._12{width:408.240000px;}
._54{width:411.072000px;}
._1c{width:420.435000px;}
._57{width:506.742000px;}
._41{width:718.176000px;}
._40{width:728.880000px;}
._3d{width:863.472000px;}
._42{width:871.488000px;}
._43{width:879.504000px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:26.235000px;}
.fsa{font-size:34.980000px;}
.fs4{font-size:36.729000px;}
.fs7{font-size:39.000000px;}
.fs0{font-size:42.000000px;}
.fs6{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fsb{font-size:54.000000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.000000px;}
.fs1{font-size:78.000000px;}
.fs2{font-size:126.600000px;}
.y0{bottom:0.000000px;}
.y1{bottom:46.264950px;}
.y2d{bottom:47.777250px;}
.y53{bottom:82.928850px;}
.y198{bottom:83.023350px;}
.y1b3{bottom:83.237400px;}
.y9c{bottom:83.522550px;}
.y210{bottom:83.635350px;}
.y104{bottom:83.770350px;}
.y16b{bottom:83.863500px;}
.y15e{bottom:83.873850px;}
.y1e6{bottom:83.922600px;}
.y187{bottom:84.298950px;}
.y181{bottom:85.161150px;}
.yce{bottom:88.395600px;}
.y2a{bottom:90.293400px;}
.y193{bottom:92.154900px;}
.y10d{bottom:92.261250px;}
.y151{bottom:92.792700px;}
.y268{bottom:95.263500px;}
.y52{bottom:98.672850px;}
.y197{bottom:98.767350px;}
.y15d{bottom:99.617850px;}
.y9b{bottom:100.022550px;}
.y186{bottom:100.042950px;}
.y180{bottom:100.905150px;}
.y228{bottom:101.121900px;}
.y20f{bottom:101.635350px;}
.y103{bottom:101.770350px;}
.y1e5{bottom:101.922600px;}
.y29{bottom:105.289650px;}
.ycd{bottom:106.395600px;}
.y192{bottom:108.402900px;}
.y10c{bottom:108.509250px;}
.y1b2{bottom:108.749400px;}
.y150{bottom:109.040700px;}
.y16a{bottom:109.375500px;}
.y267{bottom:110.263500px;}
.y196{bottom:114.511350px;}
.y15c{bottom:115.361850px;}
.y185{bottom:115.786950px;}
.y227{bottom:116.121900px;}
.y20e{bottom:119.635350px;}
.y102{bottom:119.770350px;}
.y1e4{bottom:119.922600px;}
.y28{bottom:120.285900px;}
.ycc{bottom:124.395600px;}
.y191{bottom:124.650900px;}
.y10b{bottom:124.757250px;}
.y1b1{bottom:124.997400px;}
.y266{bottom:125.263500px;}
.y14f{bottom:125.288700px;}
.y9a{bottom:125.393100px;}
.y169{bottom:125.623500px;}
.y226{bottom:131.121900px;}
.y20d{bottom:137.230350px;}
.y101{bottom:137.770350px;}
.y1e3{bottom:137.922600px;}
.y265{bottom:140.263500px;}
.y99{bottom:140.895600px;}
.y190{bottom:140.898900px;}
.y10a{bottom:141.005250px;}
.y1b0{bottom:141.245400px;}
.y14e{bottom:141.536700px;}
.y168{bottom:141.871500px;}
.ycb{bottom:142.395600px;}
.y225{bottom:146.121900px;}
.y264{bottom:155.263500px;}
.y100{bottom:155.770350px;}
.y1e2{bottom:155.922600px;}
.y98{bottom:156.398100px;}
.y18f{bottom:157.146900px;}
.y109{bottom:157.253250px;}
.y1af{bottom:157.493400px;}
.y14d{bottom:157.784700px;}
.y167{bottom:158.119500px;}
.yca{bottom:160.395600px;}
.y224{bottom:161.121900px;}
.y263{bottom:170.263500px;}
.y25{bottom:170.581500px;}
.y97{bottom:171.900600px;}
.y20c{bottom:173.635350px;}
.y1ae{bottom:173.741400px;}
.yff{bottom:173.770350px;}
.y1e1{bottom:173.922600px;}
.y166{bottom:174.367500px;}
.y223{bottom:176.121900px;}
.yc9{bottom:178.395600px;}
.y262{bottom:185.263500px;}
.y18e{bottom:186.150900px;}
.y108{bottom:186.257250px;}
.y14c{bottom:186.788700px;}
.y96{bottom:187.403100px;}
.y24{bottom:188.581500px;}
.y1ad{bottom:189.989400px;}
.y222{bottom:191.121900px;}
.y20b{bottom:191.635350px;}
.yfe{bottom:191.770350px;}
.y1e0{bottom:191.922600px;}
.y261{bottom:200.263500px;}
.y18c{bottom:200.646900px;}
.y106{bottom:200.753250px;}
.y14a{bottom:201.284700px;}
.y95{bottom:202.905600px;}
.y165{bottom:203.371500px;}
.y221{bottom:206.121900px;}
.y23{bottom:206.581500px;}
.y20a{bottom:209.635350px;}
.yfd{bottom:209.770350px;}
.y1df{bottom:209.922600px;}
.yc8{bottom:213.236250px;}
.y18d{bottom:215.154900px;}
.y107{bottom:215.261250px;}
.y260{bottom:215.263500px;}
.y14b{bottom:215.792700px;}
.y163{bottom:217.867500px;}
.y94{bottom:218.408100px;}
.y1ac{bottom:218.993400px;}
.y220{bottom:221.121900px;}
.y22{bottom:224.581500px;}
.y209{bottom:227.635350px;}
.yfc{bottom:227.770350px;}
.yc7{bottom:228.842250px;}
.y25f{bottom:230.263500px;}
.y164{bottom:232.375500px;}
.y93{bottom:233.910600px;}
.y21f{bottom:236.121900px;}
.y21{bottom:242.581500px;}
.yc6{bottom:243.203850px;}
.y25e{bottom:245.263500px;}
.y1de{bottom:245.517600px;}
.y208{bottom:245.635350px;}
.yfb{bottom:245.770350px;}
.y18b{bottom:247.542000px;}
.y105{bottom:247.648350px;}
.y1ab{bottom:247.997400px;}
.y149{bottom:248.192100px;}
.y92{bottom:249.413100px;}
.y21e{bottom:251.121900px;}
.y25d{bottom:260.263500px;}
.y27{bottom:260.581500px;}
.yc5{bottom:260.798850px;}
.y207{bottom:263.635350px;}
.yfa{bottom:263.770350px;}
.y162{bottom:264.762600px;}
.y91{bottom:264.915600px;}
.y21d{bottom:266.121900px;}
.y25c{bottom:275.263500px;}
.y20{bottom:278.178600px;}
.y26{bottom:278.581500px;}
.yc4{bottom:278.798850px;}
.y1aa{bottom:280.390350px;}
.y90{bottom:280.418100px;}
.y21c{bottom:281.121900px;}
.y206{bottom:281.635350px;}
.yf9{bottom:281.770350px;}
.y1dd{bottom:281.772600px;}
.y25b{bottom:290.263500px;}
.y110{bottom:294.161250px;}
.y8f{bottom:295.920600px;}
.y21b{bottom:296.121900px;}
.y205{bottom:299.635350px;}
.yf8{bottom:299.770350px;}
.y1dc{bottom:299.772600px;}
.y148{bottom:299.777100px;}
.y18a{bottom:302.011500px;}
.y25a{bottom:305.263500px;}
.y11e{bottom:307.112100px;}
.y10f{bottom:309.905250px;}
.y161{bottom:310.291200px;}
.y21a{bottom:311.121900px;}
.yc3{bottom:315.053850px;}
.y204{bottom:317.635350px;}
.y189{bottom:317.755500px;}
.yf7{bottom:317.770350px;}
.y1db{bottom:317.772600px;}
.y147{bottom:317.777100px;}
.y259{bottom:320.263500px;}
.y11d{bottom:325.112100px;}
.y10e{bottom:325.649250px;}
.y160{bottom:326.035200px;}
.y219{bottom:326.121900px;}
.y8e{bottom:327.060600px;}
.yc2{bottom:333.053850px;}
.y258{bottom:335.263500px;}
.y203{bottom:335.635350px;}
.yf6{bottom:335.770350px;}
.y1da{bottom:335.772600px;}
.y146{bottom:335.777100px;}
.y1a9{bottom:335.785350px;}
.y218{bottom:341.121900px;}
.y15f{bottom:341.779200px;}
.y11c{bottom:343.112100px;}
.y257{bottom:350.263500px;}
.yc1{bottom:351.053850px;}
.y1f{bottom:353.614200px;}
.y202{bottom:353.635350px;}
.yf5{bottom:353.770350px;}
.y1d9{bottom:353.772600px;}
.y145{bottom:353.777100px;}
.y1a8{bottom:353.785350px;}
.y217{bottom:356.121900px;}
.y11b{bottom:361.112100px;}
.y8d{bottom:361.705350px;}
.y256{bottom:365.263500px;}
.yc0{bottom:369.053850px;}
.y201{bottom:371.635350px;}
.yf4{bottom:371.770350px;}
.y1d8{bottom:371.772600px;}
.y144{bottom:371.777100px;}
.y1a7{bottom:371.785350px;}
.y11a{bottom:379.112100px;}
.y255{bottom:380.263500px;}
.y1e{bottom:380.959200px;}
.ybf{bottom:387.053850px;}
.y216{bottom:389.230350px;}
.y200{bottom:389.635350px;}
.yf3{bottom:389.770350px;}
.y1d7{bottom:389.772600px;}
.y143{bottom:389.777100px;}
.y1a6{bottom:389.785350px;}
.y254{bottom:395.263500px;}
.y119{bottom:397.112100px;}
.y1d{bottom:398.959200px;}
.ybe{bottom:405.053850px;}
.y1ff{bottom:407.635350px;}
.y8c{bottom:407.770350px;}
.y1d6{bottom:407.772600px;}
.yf2{bottom:407.775600px;}
.y142{bottom:407.777100px;}
.y1a5{bottom:407.785350px;}
.y70{bottom:408.070350px;}
.y253{bottom:410.263500px;}
.y118{bottom:415.112100px;}
.y1c{bottom:416.959200px;}
.ybd{bottom:423.053850px;}
.y252{bottom:425.263500px;}
.y1fe{bottom:425.635350px;}
.y8b{bottom:425.770350px;}
.y1d5{bottom:425.772600px;}
.yf1{bottom:425.775600px;}
.y141{bottom:425.777100px;}
.y1a4{bottom:425.785350px;}
.y6f{bottom:426.070350px;}
.y17f{bottom:428.320350px;}
.y117{bottom:433.112100px;}
.y1b{bottom:434.959200px;}
.y251{bottom:440.263500px;}
.ybc{bottom:441.053850px;}
.y4f{bottom:443.770350px;}
.y1d4{bottom:443.772600px;}
.yf0{bottom:443.775600px;}
.y140{bottom:443.777100px;}
.y1a3{bottom:443.785350px;}
.y6e{bottom:444.070350px;}
.y17e{bottom:446.320350px;}
.y116{bottom:451.112100px;}
.y1a{bottom:452.959200px;}
.y291{bottom:455.263500px;}
.y250{bottom:455.265900px;}
.ybb{bottom:459.053850px;}
.y1fd{bottom:461.230350px;}
.y4e{bottom:461.770350px;}
.y1d3{bottom:461.772600px;}
.yef{bottom:461.775600px;}
.y13f{bottom:461.777100px;}
.y1a2{bottom:461.785350px;}
.y6d{bottom:462.070350px;}
.y17d{bottom:464.320350px;}
.y290{bottom:470.263500px;}
.y24f{bottom:470.265900px;}
.y19{bottom:470.959200px;}
.yba{bottom:477.053850px;}
.y4d{bottom:479.770350px;}
.y1d2{bottom:479.772600px;}
.yee{bottom:479.775600px;}
.y13e{bottom:479.777100px;}
.y1a1{bottom:479.785350px;}
.y6c{bottom:480.070350px;}
.y17c{bottom:482.320350px;}
.y28f{bottom:485.263500px;}
.y24e{bottom:485.265900px;}
.y115{bottom:485.952750px;}
.y18{bottom:488.959200px;}
.yb9{bottom:495.053850px;}
.y215{bottom:497.365350px;}
.y4c{bottom:497.770350px;}
.y1d1{bottom:497.772600px;}
.yed{bottom:497.775600px;}
.y13d{bottom:497.777100px;}
.y1a0{bottom:497.785350px;}
.y6b{bottom:498.070350px;}
.y28e{bottom:500.263500px;}
.y24d{bottom:500.265900px;}
.y17b{bottom:500.320350px;}
.y114{bottom:501.558750px;}
.y17{bottom:506.959200px;}
.yb8{bottom:513.053850px;}
.y28d{bottom:515.263500px;}
.y24c{bottom:515.265900px;}
.y51{bottom:515.365350px;}
.y4b{bottom:515.770350px;}
.y1d0{bottom:515.772600px;}
.yec{bottom:515.775600px;}
.y13c{bottom:515.777100px;}
.y19f{bottom:515.785350px;}
.y113{bottom:515.920350px;}
.y6a{bottom:516.070350px;}
.y17a{bottom:518.320350px;}
.y16{bottom:524.959200px;}
.y28c{bottom:530.263500px;}
.y24b{bottom:530.265900px;}
.yb7{bottom:531.053850px;}
.y112{bottom:533.515350px;}
.y4a{bottom:533.770350px;}
.y1cf{bottom:533.772600px;}
.yeb{bottom:533.775600px;}
.y13b{bottom:533.777100px;}
.y19e{bottom:533.785350px;}
.y69{bottom:534.070350px;}
.y179{bottom:536.320350px;}
.y15{bottom:542.959200px;}
.y28b{bottom:545.263500px;}
.y24a{bottom:545.265900px;}
.yb6{bottom:549.053850px;}
.y50{bottom:551.230350px;}
.y214{bottom:551.365350px;}
.y111{bottom:551.515350px;}
.y49{bottom:551.770350px;}
.y1ce{bottom:551.772600px;}
.yea{bottom:551.775600px;}
.y13a{bottom:551.777100px;}
.y19d{bottom:551.785350px;}
.y68{bottom:552.070350px;}
.y178{bottom:554.320350px;}
.y28a{bottom:560.263500px;}
.y249{bottom:560.265900px;}
.y14{bottom:560.959200px;}
.yb5{bottom:567.053850px;}
.y48{bottom:569.770350px;}
.y1cd{bottom:569.772600px;}
.ye9{bottom:569.775600px;}
.y139{bottom:569.777100px;}
.y19c{bottom:569.785350px;}
.y67{bottom:570.070350px;}
.y177{bottom:572.320350px;}
.y289{bottom:575.263500px;}
.y248{bottom:575.265900px;}
.y13{bottom:578.959200px;}
.yb4{bottom:585.053850px;}
.y47{bottom:587.770350px;}
.y1cc{bottom:587.772600px;}
.ye8{bottom:587.775600px;}
.y138{bottom:587.777100px;}
.y8a{bottom:587.785350px;}
.y66{bottom:588.070350px;}
.y288{bottom:590.263500px;}
.y247{bottom:590.265900px;}
.y176{bottom:590.320350px;}
.y12{bottom:596.959200px;}
.yb3{bottom:603.053850px;}
.y287{bottom:605.263500px;}
.y246{bottom:605.265900px;}
.y46{bottom:605.770350px;}
.y1cb{bottom:605.772600px;}
.ye7{bottom:605.775600px;}
.y137{bottom:605.777100px;}
.y89{bottom:605.785350px;}
.y65{bottom:606.070350px;}
.y175{bottom:608.320350px;}
.y11{bottom:614.959200px;}
.y286{bottom:620.263500px;}
.y245{bottom:620.265900px;}
.yb2{bottom:621.053850px;}
.y213{bottom:623.365350px;}
.y45{bottom:623.770350px;}
.y1ca{bottom:623.772600px;}
.ye6{bottom:623.775600px;}
.y136{bottom:623.777100px;}
.y88{bottom:623.785350px;}
.y174{bottom:626.320350px;}
.y10{bottom:632.959200px;}
.y285{bottom:635.263500px;}
.y244{bottom:635.265900px;}
.yb1{bottom:639.053850px;}
.y19b{bottom:641.380350px;}
.y64{bottom:641.665350px;}
.y44{bottom:641.770350px;}
.y1c9{bottom:641.772600px;}
.ye5{bottom:641.775600px;}
.y135{bottom:641.777100px;}
.y87{bottom:641.785350px;}
.y173{bottom:644.320350px;}
.y284{bottom:650.263500px;}
.y243{bottom:650.265900px;}
.yf{bottom:650.959200px;}
.yb0{bottom:657.053850px;}
.y43{bottom:659.770350px;}
.y1c8{bottom:659.772600px;}
.ye4{bottom:659.775600px;}
.y134{bottom:659.777100px;}
.y86{bottom:659.785350px;}
.y1fc{bottom:659.787600px;}
.y172{bottom:662.320350px;}
.y283{bottom:665.263500px;}
.y242{bottom:665.265900px;}
.yaf{bottom:675.053850px;}
.y19a{bottom:677.230350px;}
.y212{bottom:677.365350px;}
.y42{bottom:677.770350px;}
.y1c7{bottom:677.772600px;}
.ye3{bottom:677.775600px;}
.y133{bottom:677.777100px;}
.y85{bottom:677.785350px;}
.y1fb{bottom:677.787600px;}
.y63{bottom:677.920350px;}
.y282{bottom:680.263500px;}
.y241{bottom:680.265900px;}
.y171{bottom:680.320350px;}
.yae{bottom:693.053850px;}
.y281{bottom:695.263500px;}
.y240{bottom:695.265900px;}
.y41{bottom:695.770350px;}
.y1c6{bottom:695.772600px;}
.ye2{bottom:695.775600px;}
.y132{bottom:695.777100px;}
.y84{bottom:695.785350px;}
.y1fa{bottom:695.787600px;}
.y62{bottom:695.920350px;}
.ye{bottom:696.117300px;}
.y170{bottom:698.320350px;}
.yd{bottom:708.568050px;}
.y280{bottom:710.263500px;}
.y23f{bottom:710.265900px;}
.yad{bottom:711.053850px;}
.y40{bottom:713.770350px;}
.y1c5{bottom:713.772600px;}
.ye1{bottom:713.775600px;}
.y131{bottom:713.777100px;}
.y83{bottom:713.785350px;}
.y1f9{bottom:713.787600px;}
.y61{bottom:713.920350px;}
.y16f{bottom:716.320350px;}
.y27f{bottom:725.263500px;}
.y23e{bottom:725.265900px;}
.yac{bottom:729.053850px;}
.y3f{bottom:731.770350px;}
.y1c4{bottom:731.772600px;}
.ye0{bottom:731.775600px;}
.y130{bottom:731.777100px;}
.y82{bottom:731.785350px;}
.y1f8{bottom:731.787600px;}
.y60{bottom:731.920350px;}
.y16e{bottom:734.320350px;}
.y27e{bottom:740.263500px;}
.y23d{bottom:740.265900px;}
.yc{bottom:740.283600px;}
.yab{bottom:747.053850px;}
.y3e{bottom:749.770350px;}
.y1c3{bottom:749.772600px;}
.ydf{bottom:749.775600px;}
.y12f{bottom:749.777100px;}
.y81{bottom:749.785350px;}
.y1f7{bottom:749.787600px;}
.y5f{bottom:749.920350px;}
.y27d{bottom:755.263500px;}
.y23c{bottom:755.265900px;}
.yb{bottom:759.208950px;}
.yaa{bottom:765.053850px;}
.ya{bottom:767.283600px;}
.y3d{bottom:767.770350px;}
.y1c2{bottom:767.772600px;}
.yde{bottom:767.775600px;}
.y12e{bottom:767.777100px;}
.y80{bottom:767.785350px;}
.y1f6{bottom:767.787600px;}
.y5e{bottom:767.920350px;}
.y27c{bottom:770.263500px;}
.y23b{bottom:770.265900px;}
.ya9{bottom:783.053850px;}
.y27b{bottom:785.263500px;}
.y23a{bottom:785.265900px;}
.y211{bottom:785.365350px;}
.y16d{bottom:785.515350px;}
.y3c{bottom:785.770350px;}
.y1c1{bottom:785.772600px;}
.ydd{bottom:785.775600px;}
.y12d{bottom:785.777100px;}
.y7f{bottom:785.785350px;}
.y1f5{bottom:785.787600px;}
.y5d{bottom:785.920350px;}
.y9{bottom:786.208950px;}
.y27a{bottom:800.263500px;}
.y239{bottom:800.265900px;}
.y3b{bottom:803.770350px;}
.y1c0{bottom:803.772600px;}
.ydc{bottom:803.775600px;}
.y12c{bottom:803.777100px;}
.y7e{bottom:803.785350px;}
.y1f4{bottom:803.787600px;}
.y5c{bottom:803.920350px;}
.y8{bottom:814.930800px;}
.y279{bottom:815.263500px;}
.y238{bottom:815.265900px;}
.ya8{bottom:818.547000px;}
.y195{bottom:821.515350px;}
.y3a{bottom:821.770350px;}
.y1bf{bottom:821.772600px;}
.ydb{bottom:821.775600px;}
.y12b{bottom:821.777100px;}
.y7d{bottom:821.785350px;}
.y1f3{bottom:821.787600px;}
.y5b{bottom:821.920350px;}
.y278{bottom:830.263500px;}
.y237{bottom:830.265900px;}
.ya7{bottom:833.547000px;}
.y39{bottom:839.770350px;}
.y1be{bottom:839.772600px;}
.yda{bottom:839.775600px;}
.y12a{bottom:839.777100px;}
.y7c{bottom:839.785350px;}
.y1f2{bottom:839.787600px;}
.y5a{bottom:839.920350px;}
.y277{bottom:845.263500px;}
.y236{bottom:845.265900px;}
.y15b{bottom:847.112100px;}
.ya6{bottom:848.547000px;}
.y38{bottom:857.770350px;}
.y1bd{bottom:857.772600px;}
.yd9{bottom:857.775600px;}
.y129{bottom:857.777100px;}
.y7b{bottom:857.785350px;}
.y1f1{bottom:857.787600px;}
.y59{bottom:857.920350px;}
.y276{bottom:860.263500px;}
.y235{bottom:860.265900px;}
.y7{bottom:861.082800px;}
.ya5{bottom:863.547000px;}
.y15a{bottom:865.112100px;}
.y275{bottom:875.263500px;}
.y234{bottom:875.265900px;}
.y37{bottom:875.770350px;}
.y1bc{bottom:875.772600px;}
.yd8{bottom:875.775600px;}
.y128{bottom:875.777100px;}
.y7a{bottom:875.785350px;}
.y1f0{bottom:875.787600px;}
.y58{bottom:875.920350px;}
.ya4{bottom:878.547000px;}
.y159{bottom:883.112100px;}
.y274{bottom:890.263500px;}
.y233{bottom:890.265900px;}
.y36{bottom:893.770350px;}
.y1bb{bottom:893.772600px;}
.yd7{bottom:893.775600px;}
.y127{bottom:893.777100px;}
.y79{bottom:893.785350px;}
.y1ef{bottom:893.787600px;}
.y57{bottom:893.920350px;}
.y6{bottom:897.543600px;}
.y158{bottom:901.112100px;}
.y273{bottom:905.263500px;}
.y232{bottom:905.265900px;}
.ya3{bottom:911.637600px;}
.y35{bottom:911.770350px;}
.y1ba{bottom:911.772600px;}
.yd6{bottom:911.775600px;}
.y126{bottom:911.777100px;}
.y78{bottom:911.785350px;}
.y1ee{bottom:911.787600px;}
.y56{bottom:911.920350px;}
.y272{bottom:920.263500px;}
.y231{bottom:920.265900px;}
.ya2{bottom:929.637600px;}
.y34{bottom:929.770350px;}
.y1b9{bottom:929.772600px;}
.yd5{bottom:929.775600px;}
.y125{bottom:929.777100px;}
.y77{bottom:929.785350px;}
.y1ed{bottom:929.787600px;}
.y184{bottom:929.920350px;}
.y5{bottom:934.004400px;}
.y271{bottom:935.263500px;}
.y230{bottom:935.265900px;}
.y157{bottom:935.952600px;}
.y55{bottom:947.515350px;}
.ya1{bottom:947.637600px;}
.y33{bottom:947.770350px;}
.y1b8{bottom:947.772600px;}
.yd4{bottom:947.775600px;}
.y124{bottom:947.777100px;}
.y76{bottom:947.785350px;}
.y1ec{bottom:947.787600px;}
.y183{bottom:947.920350px;}
.y270{bottom:950.263500px;}
.y22f{bottom:950.265900px;}
.y156{bottom:951.558600px;}
.y26f{bottom:965.263500px;}
.y22e{bottom:965.265900px;}
.ya0{bottom:965.637600px;}
.y32{bottom:965.770350px;}
.y1b7{bottom:965.772600px;}
.yd3{bottom:965.775600px;}
.y123{bottom:965.777100px;}
.y75{bottom:965.785350px;}
.y1eb{bottom:965.787600px;}
.y155{bottom:965.920350px;}
.y4{bottom:970.465200px;}
.y26e{bottom:980.263500px;}
.y22d{bottom:980.265900px;}
.y154{bottom:983.515350px;}
.y31{bottom:983.770350px;}
.y1b6{bottom:983.772600px;}
.yd2{bottom:983.775600px;}
.y122{bottom:983.777100px;}
.y74{bottom:983.785350px;}
.y1ea{bottom:983.787600px;}
.y26d{bottom:995.263500px;}
.y22c{bottom:995.265900px;}
.y9f{bottom:1001.502600px;}
.y153{bottom:1001.515350px;}
.y30{bottom:1001.770350px;}
.yd1{bottom:1001.775600px;}
.y121{bottom:1001.777100px;}
.y73{bottom:1001.785350px;}
.y1e9{bottom:1001.787600px;}
.y3{bottom:1006.926000px;}
.y26c{bottom:1010.263500px;}
.y22b{bottom:1010.265900px;}
.y1b5{bottom:1019.367600px;}
.y2f{bottom:1019.770350px;}
.yd0{bottom:1019.775600px;}
.y120{bottom:1019.777100px;}
.y72{bottom:1019.785350px;}
.y1e8{bottom:1019.787600px;}
.y26b{bottom:1025.263500px;}
.y22a{bottom:1025.265900px;}
.y9e{bottom:1037.367600px;}
.y2e{bottom:1037.770350px;}
.ycf{bottom:1037.775600px;}
.y11f{bottom:1037.777100px;}
.y71{bottom:1037.785350px;}
.y1e7{bottom:1037.787600px;}
.y26a{bottom:1040.263500px;}
.y229{bottom:1040.265900px;}
.y2{bottom:1069.300350px;}
.y9d{bottom:1132.418550px;}
.y54{bottom:1132.418700px;}
.y269{bottom:1132.423500px;}
.y182{bottom:1132.425150px;}
.y188{bottom:1132.426950px;}
.y199{bottom:1132.435350px;}
.y16c{bottom:1132.435500px;}
.y1b4{bottom:1132.445400px;}
.y194{bottom:1132.446900px;}
.y152{bottom:1132.448700px;}
.y2c{bottom:1136.092500px;}
.y2b{bottom:1150.492500px;}
.h6{height:19.099797px;}
.h8{height:28.412109px;}
.h2{height:30.597656px;}
.h12{height:31.267090px;}
.hd{height:32.783203px;}
.h7{height:32.805176px;}
.h15{height:33.328125px;}
.h10{height:33.351562px;}
.he{height:34.968750px;}
.h13{height:37.520508px;}
.hf{height:41.660156px;}
.hc{height:41.689453px;}
.hb{height:43.681641px;}
.ha{height:43.688137px;}
.h9{height:43.710938px;}
.h14{height:44.100000px;}
.h11{height:52.507951px;}
.h3{height:56.786133px;}
.h5{height:57.121316px;}
.h4{height:92.168262px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:76.535400px;}
.x23{left:78.661350px;}
.x1f{left:86.656200px;}
.x22{left:93.257550px;}
.x8{left:96.094500px;}
.x1{left:97.795200px;}
.x13{left:99.921300px;}
.x34{left:102.047250px;}
.x4{left:106.299300px;}
.xb{left:110.555400px;}
.x18{left:113.005350px;}
.x32{left:123.307200px;}
.x3{left:125.427900px;}
.x19{left:129.985350px;}
.x6{left:131.811000px;}
.x17{left:141.355350px;}
.x21{left:149.986200px;}
.x1b{left:159.136200px;}
.x1c{left:198.665550px;}
.x16{left:202.915350px;}
.x20{left:204.046200px;}
.x15{left:211.105350px;}
.x5{left:212.876400px;}
.x31{left:215.545350px;}
.x1a{left:219.436200px;}
.x2f{left:278.581500px;}
.x2e{left:294.073500px;}
.x25{left:388.189350px;}
.x1e{left:409.449300px;}
.x9{left:455.041500px;}
.xc{left:457.070400px;}
.x24{left:463.897350px;}
.x12{left:478.345350px;}
.x7{left:480.486000px;}
.x35{left:482.579250px;}
.x2a{left:483.895350px;}
.x1d{left:485.157300px;}
.xd{left:491.090400px;}
.x28{left:492.810900px;}
.x33{left:503.863200px;}
.x11{left:512.365350px;}
.xe{left:525.276600px;}
.x27{left:563.020350px;}
.x30{left:570.666600px;}
.x2b{left:598.900350px;}
.x29{left:603.483900px;}
.x26{left:605.830350px;}
.x10{left:663.492300px;}
.x2{left:693.365400px;}
.x2c{left:721.739400px;}
.xf{left:728.391600px;}
.x2d{left:743.925300px;}
.x14{left:749.647200px;}
@media print{
.v2{vertical-align:-19.290133pt;}
.v4{vertical-align:-2.613333pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:1.440000pt;}
.v3{vertical-align:25.069333pt;}
.v1{vertical-align:27.005867pt;}
.ls49{letter-spacing:-6.933333pt;}
.ls12{letter-spacing:-1.125333pt;}
.ls11{letter-spacing:-0.693333pt;}
.ls5c{letter-spacing:-0.480000pt;}
.ls4a{letter-spacing:-0.320000pt;}
.ls6f{letter-spacing:-0.256000pt;}
.ls66{letter-spacing:-0.213333pt;}
.lsa4{letter-spacing:-0.170667pt;}
.ls4b{letter-spacing:-0.160000pt;}
.lsa6{letter-spacing:-0.128000pt;}
.ls4c{letter-spacing:-0.106667pt;}
.ls98{letter-spacing:-0.085333pt;}
.ls15{letter-spacing:-0.080000pt;}
.ls48{letter-spacing:-0.053333pt;}
.lsa5{letter-spacing:-0.042667pt;}
.ls10{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.003147pt;}
.ls0{letter-spacing:0.005045pt;}
.ls5e{letter-spacing:0.042667pt;}
.ls34{letter-spacing:0.053333pt;}
.ls2{letter-spacing:0.061867pt;}
.ls97{letter-spacing:0.085333pt;}
.lsb{letter-spacing:0.106667pt;}
.ls7c{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.160000pt;}
.ls8f{letter-spacing:0.170667pt;}
.ls4e{letter-spacing:0.213333pt;}
.ls9e{letter-spacing:0.256000pt;}
.ls46{letter-spacing:0.266667pt;}
.ls9c{letter-spacing:0.298667pt;}
.ls2a{letter-spacing:0.320000pt;}
.ls99{letter-spacing:0.341333pt;}
.ls40{letter-spacing:0.373333pt;}
.ls87{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.426667pt;}
.ls8e{letter-spacing:0.469333pt;}
.ls52{letter-spacing:0.480000pt;}
.ls8c{letter-spacing:0.512000pt;}
.ls16{letter-spacing:0.533333pt;}
.ls7e{letter-spacing:0.554667pt;}
.ls18{letter-spacing:0.586667pt;}
.ls8d{letter-spacing:0.597333pt;}
.lse{letter-spacing:0.640000pt;}
.ls83{letter-spacing:0.682667pt;}
.ls4f{letter-spacing:0.693333pt;}
.ls65{letter-spacing:0.725333pt;}
.ls41{letter-spacing:0.746667pt;}
.ls45{letter-spacing:0.756800pt;}
.ls64{letter-spacing:0.768000pt;}
.ls5f{letter-spacing:0.800000pt;}
.ls93{letter-spacing:0.810667pt;}
.ls23{letter-spacing:0.853333pt;}
.lsa2{letter-spacing:0.896000pt;}
.ls37{letter-spacing:0.906667pt;}
.ls82{letter-spacing:0.938667pt;}
.ls3a{letter-spacing:0.960000pt;}
.ls92{letter-spacing:0.981333pt;}
.lsa{letter-spacing:1.013333pt;}
.ls90{letter-spacing:1.024000pt;}
.ls2f{letter-spacing:1.066667pt;}
.ls81{letter-spacing:1.109333pt;}
.ls54{letter-spacing:1.120000pt;}
.ls7d{letter-spacing:1.152000pt;}
.ls1b{letter-spacing:1.173333pt;}
.ls7f{letter-spacing:1.194667pt;}
.ls47{letter-spacing:1.226667pt;}
.ls3c{letter-spacing:1.280000pt;}
.ls32{letter-spacing:1.333333pt;}
.ls96{letter-spacing:1.365333pt;}
.ls2e{letter-spacing:1.386667pt;}
.ls8b{letter-spacing:1.408000pt;}
.ls30{letter-spacing:1.440000pt;}
.ls80{letter-spacing:1.450667pt;}
.ls28{letter-spacing:1.493333pt;}
.ls94{letter-spacing:1.536000pt;}
.ls7{letter-spacing:1.546667pt;}
.ls84{letter-spacing:1.578667pt;}
.ls3{letter-spacing:1.600000pt;}
.ls13{letter-spacing:1.653333pt;}
.lsa1{letter-spacing:1.664000pt;}
.ls27{letter-spacing:1.706667pt;}
.ls89{letter-spacing:1.749333pt;}
.ls1d{letter-spacing:1.760000pt;}
.ls29{letter-spacing:1.813333pt;}
.ls85{letter-spacing:1.834667pt;}
.ls1e{letter-spacing:1.866667pt;}
.ls50{letter-spacing:1.920000pt;}
.ls9b{letter-spacing:1.962667pt;}
.ls17{letter-spacing:1.973333pt;}
.ls9{letter-spacing:2.026667pt;}
.ls88{letter-spacing:2.048000pt;}
.ls2b{letter-spacing:2.080000pt;}
.ls2d{letter-spacing:2.133333pt;}
.ls4{letter-spacing:2.186667pt;}
.ls3f{letter-spacing:2.240000pt;}
.ls70{letter-spacing:2.293333pt;}
.ls95{letter-spacing:2.304000pt;}
.ls5d{letter-spacing:2.346667pt;}
.ls5{letter-spacing:2.400000pt;}
.ls8{letter-spacing:2.453333pt;}
.ls38{letter-spacing:2.506667pt;}
.ls39{letter-spacing:2.560000pt;}
.ls9f{letter-spacing:2.602667pt;}
.ls44{letter-spacing:2.613333pt;}
.ls8a{letter-spacing:2.645333pt;}
.ls73{letter-spacing:2.666667pt;}
.ls57{letter-spacing:2.720000pt;}
.ls3b{letter-spacing:2.773333pt;}
.ls20{letter-spacing:2.826667pt;}
.ls62{letter-spacing:2.880000pt;}
.ls1f{letter-spacing:2.933333pt;}
.ls9a{letter-spacing:2.944000pt;}
.ls55{letter-spacing:2.986667pt;}
.ls35{letter-spacing:3.040000pt;}
.ls24{letter-spacing:3.093333pt;}
.ls2c{letter-spacing:3.146667pt;}
.ls1a{letter-spacing:3.253333pt;}
.ls56{letter-spacing:3.306667pt;}
.ls91{letter-spacing:3.328000pt;}
.ls21{letter-spacing:3.360000pt;}
.ls9d{letter-spacing:3.370667pt;}
.ls79{letter-spacing:3.413333pt;}
.ls51{letter-spacing:3.466667pt;}
.ls6{letter-spacing:3.520000pt;}
.ls4d{letter-spacing:3.573333pt;}
.ls60{letter-spacing:3.626667pt;}
.ls19{letter-spacing:3.680000pt;}
.ls1c{letter-spacing:3.733333pt;}
.ls76{letter-spacing:3.786667pt;}
.ls61{letter-spacing:3.840000pt;}
.ls3d{letter-spacing:3.893333pt;}
.ls6b{letter-spacing:3.946667pt;}
.ls72{letter-spacing:4.000000pt;}
.ls86{letter-spacing:4.010667pt;}
.ls5a{letter-spacing:4.053333pt;}
.ls42{letter-spacing:4.106667pt;}
.ls43{letter-spacing:4.160000pt;}
.ls33{letter-spacing:4.266667pt;}
.ls78{letter-spacing:4.320000pt;}
.ls74{letter-spacing:4.426667pt;}
.ls25{letter-spacing:4.480000pt;}
.lsc{letter-spacing:4.533333pt;}
.ls7a{letter-spacing:4.640000pt;}
.lsa0{letter-spacing:4.650667pt;}
.lsa3{letter-spacing:4.693333pt;}
.ls7b{letter-spacing:4.800000pt;}
.ls26{letter-spacing:4.960000pt;}
.lsd{letter-spacing:5.013333pt;}
.ls22{letter-spacing:5.066667pt;}
.ls36{letter-spacing:5.120000pt;}
.ls63{letter-spacing:5.226667pt;}
.ls71{letter-spacing:5.280000pt;}
.ls69{letter-spacing:5.333333pt;}
.ls31{letter-spacing:5.386667pt;}
.ls68{letter-spacing:5.493333pt;}
.ls77{letter-spacing:5.546667pt;}
.ls53{letter-spacing:5.866667pt;}
.ls59{letter-spacing:5.920000pt;}
.ls58{letter-spacing:5.973333pt;}
.ls6e{letter-spacing:6.133333pt;}
.ls6c{letter-spacing:6.186667pt;}
.ls75{letter-spacing:6.240000pt;}
.ls3e{letter-spacing:6.346667pt;}
.ls6d{letter-spacing:6.773333pt;}
.ls6a{letter-spacing:6.986667pt;}
.ls67{letter-spacing:8.266667pt;}
.ls5b{letter-spacing:117.888000pt;}
.ws56{word-spacing:-53.333333pt;}
.ws1{word-spacing:-31.284267pt;}
.ws0{word-spacing:-30.158933pt;}
.ws74{word-spacing:-19.306667pt;}
.wsb1{word-spacing:-18.880000pt;}
.ws29{word-spacing:-18.720000pt;}
.ws1e{word-spacing:-18.400000pt;}
.ws1b{word-spacing:-18.346667pt;}
.ws21{word-spacing:-18.293333pt;}
.wsc8{word-spacing:-17.760000pt;}
.wsad{word-spacing:-17.333333pt;}
.wsac{word-spacing:-17.280000pt;}
.ws92{word-spacing:-17.173333pt;}
.wsb0{word-spacing:-17.120000pt;}
.ws2a{word-spacing:-17.066667pt;}
.ws58{word-spacing:-16.800000pt;}
.ws20{word-spacing:-16.586667pt;}
.wsb2{word-spacing:-16.373333pt;}
.wsca{word-spacing:-16.320000pt;}
.ws1d{word-spacing:-16.266667pt;}
.wsc9{word-spacing:-16.160000pt;}
.ws94{word-spacing:-16.106667pt;}
.ws9c{word-spacing:-15.946667pt;}
.ws9d{word-spacing:-15.893333pt;}
.wsc4{word-spacing:-15.840000pt;}
.wsa5{word-spacing:-15.733333pt;}
.wsa4{word-spacing:-15.680000pt;}
.wsc7{word-spacing:-15.626667pt;}
.wsc6{word-spacing:-15.573333pt;}
.ws27{word-spacing:-15.466667pt;}
.ws22{word-spacing:-15.360000pt;}
.ws24{word-spacing:-15.306667pt;}
.ws57{word-spacing:-15.253333pt;}
.ws1c{word-spacing:-15.200000pt;}
.ws25{word-spacing:-15.146667pt;}
.ws23{word-spacing:-15.040000pt;}
.ws5{word-spacing:-14.986667pt;}
.ws53{word-spacing:-14.933333pt;}
.ws3f{word-spacing:-14.880000pt;}
.ws4{word-spacing:-14.826667pt;}
.ws28{word-spacing:-14.720000pt;}
.wsc5{word-spacing:-14.613333pt;}
.ws8a{word-spacing:-14.560000pt;}
.wsaf{word-spacing:-14.506667pt;}
.ws73{word-spacing:-14.453333pt;}
.wsa3{word-spacing:-14.400000pt;}
.ws88{word-spacing:-14.346667pt;}
.ws54{word-spacing:-14.240000pt;}
.ws89{word-spacing:-14.186667pt;}
.ws87{word-spacing:-14.133333pt;}
.ws42{word-spacing:-14.080000pt;}
.ws59{word-spacing:-14.026667pt;}
.ws8{word-spacing:-13.973333pt;}
.ws1f{word-spacing:-13.920000pt;}
.ws9{word-spacing:-13.760000pt;}
.ws9b{word-spacing:-13.706667pt;}
.ws26{word-spacing:-13.653333pt;}
.ws9e{word-spacing:-13.600000pt;}
.wsae{word-spacing:-13.546667pt;}
.ws6{word-spacing:-13.493333pt;}
.ws7{word-spacing:-13.440000pt;}
.ws2b{word-spacing:-13.386667pt;}
.ws1a{word-spacing:-13.333333pt;}
.wsd3{word-spacing:-13.312000pt;}
.ws41{word-spacing:-13.280000pt;}
.ws93{word-spacing:-13.173333pt;}
.wsd5{word-spacing:-12.800000pt;}
.wsf3{word-spacing:-12.714667pt;}
.wsd1{word-spacing:-12.586667pt;}
.wsd7{word-spacing:-12.202667pt;}
.wsd8{word-spacing:-12.032000pt;}
.ws55{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.861333pt;}
.wsf0{word-spacing:-11.776000pt;}
.wsf2{word-spacing:-11.562667pt;}
.wsd2{word-spacing:-11.520000pt;}
.wsd6{word-spacing:-11.306667pt;}
.wsd4{word-spacing:-11.136000pt;}
.ws3{word-spacing:-11.120000pt;}
.wsf1{word-spacing:-11.093333pt;}
.wsf4{word-spacing:-11.050667pt;}
.wsa{word-spacing:-11.040000pt;}
.wsef{word-spacing:-11.008000pt;}
.wsf5{word-spacing:-10.880000pt;}
.wsee{word-spacing:-10.794667pt;}
.wsf6{word-spacing:-10.709333pt;}
.ws2c{word-spacing:-10.666667pt;}
.wsf7{word-spacing:-10.538667pt;}
.ws2{word-spacing:-9.076144pt;}
.ws40{word-spacing:-6.400000pt;}
.ws7a{word-spacing:-5.973333pt;}
.ws2f{word-spacing:-5.013333pt;}
.ws32{word-spacing:-4.960000pt;}
.wsbb{word-spacing:-4.426667pt;}
.ws4b{word-spacing:-4.106667pt;}
.wsbe{word-spacing:-4.053333pt;}
.wsba{word-spacing:-3.840000pt;}
.ws8c{word-spacing:-3.573333pt;}
.ws65{word-spacing:-3.466667pt;}
.wscf{word-spacing:-3.093333pt;}
.ws11{word-spacing:-2.933333pt;}
.ws31{word-spacing:-2.880000pt;}
.ws97{word-spacing:-2.773333pt;}
.wsb9{word-spacing:-2.666667pt;}
.ws78{word-spacing:-2.613333pt;}
.ws101{word-spacing:-2.602667pt;}
.wsd{word-spacing:-2.565333pt;}
.wsbd{word-spacing:-2.560000pt;}
.wsa7{word-spacing:-2.400000pt;}
.wsd0{word-spacing:-2.293333pt;}
.ws8e{word-spacing:-2.240000pt;}
.ws8d{word-spacing:-2.186667pt;}
.wsfa{word-spacing:-2.133333pt;}
.ws9f{word-spacing:-2.080000pt;}
.ws33{word-spacing:-2.026667pt;}
.ws3b{word-spacing:-1.973333pt;}
.wse8{word-spacing:-1.920000pt;}
.wsdf{word-spacing:-1.834667pt;}
.ws35{word-spacing:-1.813333pt;}
.wsab{word-spacing:-1.760000pt;}
.wsa8{word-spacing:-1.706667pt;}
.wsfd{word-spacing:-1.578667pt;}
.wsec{word-spacing:-1.536000pt;}
.ws5b{word-spacing:-1.493333pt;}
.ws51{word-spacing:-1.480000pt;}
.ws6e{word-spacing:-1.440000pt;}
.wsb5{word-spacing:-1.386667pt;}
.ws81{word-spacing:-1.226667pt;}
.ws106{word-spacing:-1.152000pt;}
.wsa2{word-spacing:-1.120000pt;}
.ws100{word-spacing:-1.109333pt;}
.wsa0{word-spacing:-1.066667pt;}
.ws96{word-spacing:-1.013333pt;}
.wsf{word-spacing:-1.008000pt;}
.wsea{word-spacing:-0.981333pt;}
.ws10{word-spacing:-0.960000pt;}
.ws104{word-spacing:-0.896000pt;}
.wsa1{word-spacing:-0.853333pt;}
.wseb{word-spacing:-0.810667pt;}
.ws8f{word-spacing:-0.800000pt;}
.ws5a{word-spacing:-0.768000pt;}
.wscd{word-spacing:-0.746667pt;}
.ws50{word-spacing:-0.720000pt;}
.ws18{word-spacing:-0.640000pt;}
.wsb8{word-spacing:-0.586667pt;}
.wse0{word-spacing:-0.554667pt;}
.wse7{word-spacing:-0.512000pt;}
.ws95{word-spacing:-0.426667pt;}
.ws5f{word-spacing:-0.373333pt;}
.ws48{word-spacing:-0.320000pt;}
.ws61{word-spacing:-0.266667pt;}
.ws5d{word-spacing:-0.213333pt;}
.ws17{word-spacing:-0.160000pt;}
.ws4e{word-spacing:-0.106667pt;}
.wsed{word-spacing:-0.085333pt;}
.ws3c{word-spacing:-0.053333pt;}
.ws109{word-spacing:-0.042667pt;}
.wsc{word-spacing:0.000000pt;}
.ws47{word-spacing:0.053333pt;}
.ws19{word-spacing:0.080000pt;}
.wsde{word-spacing:0.085333pt;}
.wsdb{word-spacing:0.106667pt;}
.wsfc{word-spacing:0.128000pt;}
.ws76{word-spacing:0.160000pt;}
.wse3{word-spacing:0.170667pt;}
.ws7d{word-spacing:0.213333pt;}
.ws82{word-spacing:0.266667pt;}
.ws99{word-spacing:0.298667pt;}
.wsa9{word-spacing:0.320000pt;}
.wsdd{word-spacing:0.384000pt;}
.ws105{word-spacing:0.469333pt;}
.wsc0{word-spacing:0.586667pt;}
.wsff{word-spacing:0.597333pt;}
.wsf9{word-spacing:0.640000pt;}
.ws2d{word-spacing:0.693333pt;}
.wse4{word-spacing:0.725333pt;}
.ws91{word-spacing:0.768000pt;}
.ws8b{word-spacing:0.800000pt;}
.ws2e{word-spacing:0.853333pt;}
.ws108{word-spacing:0.896000pt;}
.ws79{word-spacing:0.906667pt;}
.wsaa{word-spacing:0.960000pt;}
.wsc1{word-spacing:1.013333pt;}
.ws98{word-spacing:1.066667pt;}
.ws6c{word-spacing:1.120000pt;}
.wse{word-spacing:1.125333pt;}
.wsfb{word-spacing:1.194667pt;}
.ws62{word-spacing:1.226667pt;}
.wse6{word-spacing:1.237333pt;}
.ws3d{word-spacing:1.280000pt;}
.wse1{word-spacing:1.322667pt;}
.ws36{word-spacing:1.333333pt;}
.wse9{word-spacing:1.365333pt;}
.wscc{word-spacing:1.386667pt;}
.ws3e{word-spacing:1.408000pt;}
.ws39{word-spacing:1.440000pt;}
.wsfe{word-spacing:1.450667pt;}
.ws30{word-spacing:1.493333pt;}
.wscb{word-spacing:1.546667pt;}
.ws67{word-spacing:1.600000pt;}
.ws107{word-spacing:1.664000pt;}
.ws64{word-spacing:1.706667pt;}
.wsc3{word-spacing:1.760000pt;}
.ws86{word-spacing:1.792000pt;}
.ws7c{word-spacing:1.813333pt;}
.ws7e{word-spacing:1.866667pt;}
.ws75{word-spacing:1.920000pt;}
.ws6a{word-spacing:2.026667pt;}
.wsdc{word-spacing:2.048000pt;}
.ws60{word-spacing:2.133333pt;}
.wse5{word-spacing:2.218667pt;}
.ws103{word-spacing:2.261333pt;}
.ws46{word-spacing:2.293333pt;}
.ws9a{word-spacing:2.304000pt;}
.ws6d{word-spacing:2.346667pt;}
.ws52{word-spacing:2.389333pt;}
.ws49{word-spacing:2.400000pt;}
.ws15{word-spacing:2.453333pt;}
.ws69{word-spacing:2.506667pt;}
.ws10b{word-spacing:2.517333pt;}
.ws4d{word-spacing:2.560000pt;}
.ws7f{word-spacing:2.613333pt;}
.wsa6{word-spacing:2.666667pt;}
.ws10a{word-spacing:2.688000pt;}
.ws83{word-spacing:2.720000pt;}
.wse2{word-spacing:2.730667pt;}
.wsbf{word-spacing:2.773333pt;}
.ws72{word-spacing:2.858667pt;}
.ws63{word-spacing:2.880000pt;}
.ws102{word-spacing:2.901333pt;}
.ws80{word-spacing:2.933333pt;}
.ws16{word-spacing:2.986667pt;}
.ws3a{word-spacing:3.040000pt;}
.ws4a{word-spacing:3.093333pt;}
.ws7b{word-spacing:3.200000pt;}
.ws77{word-spacing:3.306667pt;}
.ws13{word-spacing:3.413333pt;}
.wsf8{word-spacing:3.456000pt;}
.ws34{word-spacing:3.466667pt;}
.ws84{word-spacing:3.498667pt;}
.ws66{word-spacing:3.520000pt;}
.ws70{word-spacing:3.541333pt;}
.ws85{word-spacing:3.584000pt;}
.ws68{word-spacing:3.626667pt;}
.ws4c{word-spacing:3.733333pt;}
.ws71{word-spacing:3.754667pt;}
.ws4f{word-spacing:3.786667pt;}
.ws5c{word-spacing:3.840000pt;}
.wsb7{word-spacing:3.893333pt;}
.ws37{word-spacing:4.000000pt;}
.ws5e{word-spacing:4.053333pt;}
.wsb6{word-spacing:4.106667pt;}
.ws6b{word-spacing:4.160000pt;}
.wsce{word-spacing:4.213333pt;}
.ws90{word-spacing:4.320000pt;}
.ws12{word-spacing:4.373333pt;}
.ws14{word-spacing:4.426667pt;}
.wsc2{word-spacing:4.693333pt;}
.wsd9{word-spacing:4.853333pt;}
.wsda{word-spacing:4.906667pt;}
.ws38{word-spacing:6.506667pt;}
.wsbc{word-spacing:6.826667pt;}
.wsb3{word-spacing:105.898667pt;}
.ws43{word-spacing:134.520000pt;}
.ws44{word-spacing:143.480000pt;}
.ws45{word-spacing:150.080000pt;}
.wsb4{word-spacing:257.066667pt;}
.ws6f{word-spacing:638.592000pt;}
._10{margin-left:-2576.085333pt;}
._3b{margin-left:-2554.922667pt;}
._3{margin-left:-8.327467pt;}
._6{margin-left:-6.720000pt;}
._b{margin-left:-5.720000pt;}
._1{margin-left:-4.778667pt;}
._5{margin-left:-3.080000pt;}
._0{margin-left:-2.053333pt;}
._2{margin-left:-1.125333pt;}
._4{width:0.933701pt;}
._7{width:1.973333pt;}
._8{width:2.933333pt;}
._f{width:3.840000pt;}
._9{width:5.173333pt;}
._4b{width:6.093333pt;}
._e{width:7.039632pt;}
._c{width:8.213333pt;}
._a{width:9.493333pt;}
._d{width:10.386667pt;}
._16{width:30.720000pt;}
._4d{width:35.000000pt;}
._2a{width:38.200000pt;}
._4e{width:40.920000pt;}
._30{width:42.120000pt;}
._2c{width:43.440000pt;}
._13{width:56.800000pt;}
._25{width:77.360000pt;}
._36{width:93.480000pt;}
._1a{width:98.400000pt;}
._38{width:100.440000pt;}
._23{width:109.040000pt;}
._39{width:114.933333pt;}
._58{width:116.565333pt;}
._2e{width:118.160000pt;}
._48{width:119.082667pt;}
._33{width:121.613333pt;}
._2b{width:124.000000pt;}
._29{width:128.720000pt;}
._3e{width:129.749333pt;}
._4c{width:131.114667pt;}
._28{width:134.520000pt;}
._4f{width:137.600000pt;}
._34{width:139.800000pt;}
._17{width:144.520000pt;}
._31{width:145.799632pt;}
._35{width:146.733333pt;}
._2f{width:148.960000pt;}
._44{width:149.904000pt;}
._1d{width:151.320000pt;}
._3c{width:161.978667pt;}
._3f{width:163.440000pt;}
._21{width:169.560000pt;}
._20{width:172.306667pt;}
._46{width:178.773333pt;}
._22{width:184.520000pt;}
._49{width:186.445333pt;}
._1b{width:188.040000pt;}
._55{width:192.170667pt;}
._45{width:194.645333pt;}
._1e{width:200.680000pt;}
._27{width:201.613333pt;}
._18{width:203.200000pt;}
._51{width:213.802667pt;}
._1f{width:214.760000pt;}
._26{width:226.000000pt;}
._3a{width:233.400000pt;}
._11{width:236.000000pt;}
._2d{width:239.338667pt;}
._4a{width:240.768000pt;}
._47{width:243.712000pt;}
._52{width:251.101333pt;}
._15{width:261.560000pt;}
._56{width:267.733333pt;}
._53{width:289.066667pt;}
._50{width:296.157333pt;}
._24{width:305.853333pt;}
._37{width:307.080000pt;}
._32{width:316.120000pt;}
._19{width:319.800000pt;}
._14{width:335.360000pt;}
._12{width:362.880000pt;}
._54{width:365.397333pt;}
._1c{width:373.720000pt;}
._57{width:450.437333pt;}
._41{width:638.378667pt;}
._40{width:647.893333pt;}
._3d{width:767.530667pt;}
._42{width:774.656000pt;}
._43{width:781.781333pt;}
.fs5{font-size:23.320000pt;}
.fsa{font-size:31.093333pt;}
.fs4{font-size:32.648000pt;}
.fs7{font-size:34.666667pt;}
.fs0{font-size:37.333333pt;}
.fs6{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fsb{font-size:48.000000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.000000pt;}
.fs1{font-size:69.333333pt;}
.fs2{font-size:112.533333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:41.124400pt;}
.y2d{bottom:42.468667pt;}
.y53{bottom:73.714533pt;}
.y198{bottom:73.798533pt;}
.y1b3{bottom:73.988800pt;}
.y9c{bottom:74.242267pt;}
.y210{bottom:74.342533pt;}
.y104{bottom:74.462533pt;}
.y16b{bottom:74.545333pt;}
.y15e{bottom:74.554533pt;}
.y1e6{bottom:74.597867pt;}
.y187{bottom:74.932400pt;}
.y181{bottom:75.698800pt;}
.yce{bottom:78.573867pt;}
.y2a{bottom:80.260800pt;}
.y193{bottom:81.915467pt;}
.y10d{bottom:82.010000pt;}
.y151{bottom:82.482400pt;}
.y268{bottom:84.678667pt;}
.y52{bottom:87.709200pt;}
.y197{bottom:87.793200pt;}
.y15d{bottom:88.549200pt;}
.y9b{bottom:88.908933pt;}
.y186{bottom:88.927067pt;}
.y180{bottom:89.693467pt;}
.y228{bottom:89.886133pt;}
.y20f{bottom:90.342533pt;}
.y103{bottom:90.462533pt;}
.y1e5{bottom:90.597867pt;}
.y29{bottom:93.590800pt;}
.ycd{bottom:94.573867pt;}
.y192{bottom:96.358133pt;}
.y10c{bottom:96.452667pt;}
.y1b2{bottom:96.666133pt;}
.y150{bottom:96.925067pt;}
.y16a{bottom:97.222667pt;}
.y267{bottom:98.012000pt;}
.y196{bottom:101.787867pt;}
.y15c{bottom:102.543867pt;}
.y185{bottom:102.921733pt;}
.y227{bottom:103.219467pt;}
.y20e{bottom:106.342533pt;}
.y102{bottom:106.462533pt;}
.y1e4{bottom:106.597867pt;}
.y28{bottom:106.920800pt;}
.ycc{bottom:110.573867pt;}
.y191{bottom:110.800800pt;}
.y10b{bottom:110.895333pt;}
.y1b1{bottom:111.108800pt;}
.y266{bottom:111.345333pt;}
.y14f{bottom:111.367733pt;}
.y9a{bottom:111.460533pt;}
.y169{bottom:111.665333pt;}
.y226{bottom:116.552800pt;}
.y20d{bottom:121.982533pt;}
.y101{bottom:122.462533pt;}
.y1e3{bottom:122.597867pt;}
.y265{bottom:124.678667pt;}
.y99{bottom:125.240533pt;}
.y190{bottom:125.243467pt;}
.y10a{bottom:125.338000pt;}
.y1b0{bottom:125.551467pt;}
.y14e{bottom:125.810400pt;}
.y168{bottom:126.108000pt;}
.ycb{bottom:126.573867pt;}
.y225{bottom:129.886133pt;}
.y264{bottom:138.012000pt;}
.y100{bottom:138.462533pt;}
.y1e2{bottom:138.597867pt;}
.y98{bottom:139.020533pt;}
.y18f{bottom:139.686133pt;}
.y109{bottom:139.780667pt;}
.y1af{bottom:139.994133pt;}
.y14d{bottom:140.253067pt;}
.y167{bottom:140.550667pt;}
.yca{bottom:142.573867pt;}
.y224{bottom:143.219467pt;}
.y263{bottom:151.345333pt;}
.y25{bottom:151.628000pt;}
.y97{bottom:152.800533pt;}
.y20c{bottom:154.342533pt;}
.y1ae{bottom:154.436800pt;}
.yff{bottom:154.462533pt;}
.y1e1{bottom:154.597867pt;}
.y166{bottom:154.993333pt;}
.y223{bottom:156.552800pt;}
.yc9{bottom:158.573867pt;}
.y262{bottom:164.678667pt;}
.y18e{bottom:165.467467pt;}
.y108{bottom:165.562000pt;}
.y14c{bottom:166.034400pt;}
.y96{bottom:166.580533pt;}
.y24{bottom:167.628000pt;}
.y1ad{bottom:168.879467pt;}
.y222{bottom:169.886133pt;}
.y20b{bottom:170.342533pt;}
.yfe{bottom:170.462533pt;}
.y1e0{bottom:170.597867pt;}
.y261{bottom:178.012000pt;}
.y18c{bottom:178.352800pt;}
.y106{bottom:178.447333pt;}
.y14a{bottom:178.919733pt;}
.y95{bottom:180.360533pt;}
.y165{bottom:180.774667pt;}
.y221{bottom:183.219467pt;}
.y23{bottom:183.628000pt;}
.y20a{bottom:186.342533pt;}
.yfd{bottom:186.462533pt;}
.y1df{bottom:186.597867pt;}
.yc8{bottom:189.543333pt;}
.y18d{bottom:191.248800pt;}
.y107{bottom:191.343333pt;}
.y260{bottom:191.345333pt;}
.y14b{bottom:191.815733pt;}
.y163{bottom:193.660000pt;}
.y94{bottom:194.140533pt;}
.y1ac{bottom:194.660800pt;}
.y220{bottom:196.552800pt;}
.y22{bottom:199.628000pt;}
.y209{bottom:202.342533pt;}
.yfc{bottom:202.462533pt;}
.yc7{bottom:203.415333pt;}
.y25f{bottom:204.678667pt;}
.y164{bottom:206.556000pt;}
.y93{bottom:207.920533pt;}
.y21f{bottom:209.886133pt;}
.y21{bottom:215.628000pt;}
.yc6{bottom:216.181200pt;}
.y25e{bottom:218.012000pt;}
.y1de{bottom:218.237867pt;}
.y208{bottom:218.342533pt;}
.yfb{bottom:218.462533pt;}
.y18b{bottom:220.037333pt;}
.y105{bottom:220.131867pt;}
.y1ab{bottom:220.442133pt;}
.y149{bottom:220.615200pt;}
.y92{bottom:221.700533pt;}
.y21e{bottom:223.219467pt;}
.y25d{bottom:231.345333pt;}
.y27{bottom:231.628000pt;}
.yc5{bottom:231.821200pt;}
.y207{bottom:234.342533pt;}
.yfa{bottom:234.462533pt;}
.y162{bottom:235.344533pt;}
.y91{bottom:235.480533pt;}
.y21d{bottom:236.552800pt;}
.y25c{bottom:244.678667pt;}
.y20{bottom:247.269867pt;}
.y26{bottom:247.628000pt;}
.yc4{bottom:247.821200pt;}
.y1aa{bottom:249.235867pt;}
.y90{bottom:249.260533pt;}
.y21c{bottom:249.886133pt;}
.y206{bottom:250.342533pt;}
.yf9{bottom:250.462533pt;}
.y1dd{bottom:250.464533pt;}
.y25b{bottom:258.012000pt;}
.y110{bottom:261.476667pt;}
.y8f{bottom:263.040533pt;}
.y21b{bottom:263.219467pt;}
.y205{bottom:266.342533pt;}
.yf8{bottom:266.462533pt;}
.y1dc{bottom:266.464533pt;}
.y148{bottom:266.468533pt;}
.y18a{bottom:268.454667pt;}
.y25a{bottom:271.345333pt;}
.y11e{bottom:272.988533pt;}
.y10f{bottom:275.471333pt;}
.y161{bottom:275.814400pt;}
.y21a{bottom:276.552800pt;}
.yc3{bottom:280.047867pt;}
.y204{bottom:282.342533pt;}
.y189{bottom:282.449333pt;}
.yf7{bottom:282.462533pt;}
.y1db{bottom:282.464533pt;}
.y147{bottom:282.468533pt;}
.y259{bottom:284.678667pt;}
.y11d{bottom:288.988533pt;}
.y10e{bottom:289.466000pt;}
.y160{bottom:289.809067pt;}
.y219{bottom:289.886133pt;}
.y8e{bottom:290.720533pt;}
.yc2{bottom:296.047867pt;}
.y258{bottom:298.012000pt;}
.y203{bottom:298.342533pt;}
.yf6{bottom:298.462533pt;}
.y1da{bottom:298.464533pt;}
.y146{bottom:298.468533pt;}
.y1a9{bottom:298.475867pt;}
.y218{bottom:303.219467pt;}
.y15f{bottom:303.803733pt;}
.y11c{bottom:304.988533pt;}
.y257{bottom:311.345333pt;}
.yc1{bottom:312.047867pt;}
.y1f{bottom:314.323733pt;}
.y202{bottom:314.342533pt;}
.yf5{bottom:314.462533pt;}
.y1d9{bottom:314.464533pt;}
.y145{bottom:314.468533pt;}
.y1a8{bottom:314.475867pt;}
.y217{bottom:316.552800pt;}
.y11b{bottom:320.988533pt;}
.y8d{bottom:321.515867pt;}
.y256{bottom:324.678667pt;}
.yc0{bottom:328.047867pt;}
.y201{bottom:330.342533pt;}
.yf4{bottom:330.462533pt;}
.y1d8{bottom:330.464533pt;}
.y144{bottom:330.468533pt;}
.y1a7{bottom:330.475867pt;}
.y11a{bottom:336.988533pt;}
.y255{bottom:338.012000pt;}
.y1e{bottom:338.630400pt;}
.ybf{bottom:344.047867pt;}
.y216{bottom:345.982533pt;}
.y200{bottom:346.342533pt;}
.yf3{bottom:346.462533pt;}
.y1d7{bottom:346.464533pt;}
.y143{bottom:346.468533pt;}
.y1a6{bottom:346.475867pt;}
.y254{bottom:351.345333pt;}
.y119{bottom:352.988533pt;}
.y1d{bottom:354.630400pt;}
.ybe{bottom:360.047867pt;}
.y1ff{bottom:362.342533pt;}
.y8c{bottom:362.462533pt;}
.y1d6{bottom:362.464533pt;}
.yf2{bottom:362.467200pt;}
.y142{bottom:362.468533pt;}
.y1a5{bottom:362.475867pt;}
.y70{bottom:362.729200pt;}
.y253{bottom:364.678667pt;}
.y118{bottom:368.988533pt;}
.y1c{bottom:370.630400pt;}
.ybd{bottom:376.047867pt;}
.y252{bottom:378.012000pt;}
.y1fe{bottom:378.342533pt;}
.y8b{bottom:378.462533pt;}
.y1d5{bottom:378.464533pt;}
.yf1{bottom:378.467200pt;}
.y141{bottom:378.468533pt;}
.y1a4{bottom:378.475867pt;}
.y6f{bottom:378.729200pt;}
.y17f{bottom:380.729200pt;}
.y117{bottom:384.988533pt;}
.y1b{bottom:386.630400pt;}
.y251{bottom:391.345333pt;}
.ybc{bottom:392.047867pt;}
.y4f{bottom:394.462533pt;}
.y1d4{bottom:394.464533pt;}
.yf0{bottom:394.467200pt;}
.y140{bottom:394.468533pt;}
.y1a3{bottom:394.475867pt;}
.y6e{bottom:394.729200pt;}
.y17e{bottom:396.729200pt;}
.y116{bottom:400.988533pt;}
.y1a{bottom:402.630400pt;}
.y291{bottom:404.678667pt;}
.y250{bottom:404.680800pt;}
.ybb{bottom:408.047867pt;}
.y1fd{bottom:409.982533pt;}
.y4e{bottom:410.462533pt;}
.y1d3{bottom:410.464533pt;}
.yef{bottom:410.467200pt;}
.y13f{bottom:410.468533pt;}
.y1a2{bottom:410.475867pt;}
.y6d{bottom:410.729200pt;}
.y17d{bottom:412.729200pt;}
.y290{bottom:418.012000pt;}
.y24f{bottom:418.014133pt;}
.y19{bottom:418.630400pt;}
.yba{bottom:424.047867pt;}
.y4d{bottom:426.462533pt;}
.y1d2{bottom:426.464533pt;}
.yee{bottom:426.467200pt;}
.y13e{bottom:426.468533pt;}
.y1a1{bottom:426.475867pt;}
.y6c{bottom:426.729200pt;}
.y17c{bottom:428.729200pt;}
.y28f{bottom:431.345333pt;}
.y24e{bottom:431.347467pt;}
.y115{bottom:431.958000pt;}
.y18{bottom:434.630400pt;}
.yb9{bottom:440.047867pt;}
.y215{bottom:442.102533pt;}
.y4c{bottom:442.462533pt;}
.y1d1{bottom:442.464533pt;}
.yed{bottom:442.467200pt;}
.y13d{bottom:442.468533pt;}
.y1a0{bottom:442.475867pt;}
.y6b{bottom:442.729200pt;}
.y28e{bottom:444.678667pt;}
.y24d{bottom:444.680800pt;}
.y17b{bottom:444.729200pt;}
.y114{bottom:445.830000pt;}
.y17{bottom:450.630400pt;}
.yb8{bottom:456.047867pt;}
.y28d{bottom:458.012000pt;}
.y24c{bottom:458.014133pt;}
.y51{bottom:458.102533pt;}
.y4b{bottom:458.462533pt;}
.y1d0{bottom:458.464533pt;}
.yec{bottom:458.467200pt;}
.y13c{bottom:458.468533pt;}
.y19f{bottom:458.475867pt;}
.y113{bottom:458.595867pt;}
.y6a{bottom:458.729200pt;}
.y17a{bottom:460.729200pt;}
.y16{bottom:466.630400pt;}
.y28c{bottom:471.345333pt;}
.y24b{bottom:471.347467pt;}
.yb7{bottom:472.047867pt;}
.y112{bottom:474.235867pt;}
.y4a{bottom:474.462533pt;}
.y1cf{bottom:474.464533pt;}
.yeb{bottom:474.467200pt;}
.y13b{bottom:474.468533pt;}
.y19e{bottom:474.475867pt;}
.y69{bottom:474.729200pt;}
.y179{bottom:476.729200pt;}
.y15{bottom:482.630400pt;}
.y28b{bottom:484.678667pt;}
.y24a{bottom:484.680800pt;}
.yb6{bottom:488.047867pt;}
.y50{bottom:489.982533pt;}
.y214{bottom:490.102533pt;}
.y111{bottom:490.235867pt;}
.y49{bottom:490.462533pt;}
.y1ce{bottom:490.464533pt;}
.yea{bottom:490.467200pt;}
.y13a{bottom:490.468533pt;}
.y19d{bottom:490.475867pt;}
.y68{bottom:490.729200pt;}
.y178{bottom:492.729200pt;}
.y28a{bottom:498.012000pt;}
.y249{bottom:498.014133pt;}
.y14{bottom:498.630400pt;}
.yb5{bottom:504.047867pt;}
.y48{bottom:506.462533pt;}
.y1cd{bottom:506.464533pt;}
.ye9{bottom:506.467200pt;}
.y139{bottom:506.468533pt;}
.y19c{bottom:506.475867pt;}
.y67{bottom:506.729200pt;}
.y177{bottom:508.729200pt;}
.y289{bottom:511.345333pt;}
.y248{bottom:511.347467pt;}
.y13{bottom:514.630400pt;}
.yb4{bottom:520.047867pt;}
.y47{bottom:522.462533pt;}
.y1cc{bottom:522.464533pt;}
.ye8{bottom:522.467200pt;}
.y138{bottom:522.468533pt;}
.y8a{bottom:522.475867pt;}
.y66{bottom:522.729200pt;}
.y288{bottom:524.678667pt;}
.y247{bottom:524.680800pt;}
.y176{bottom:524.729200pt;}
.y12{bottom:530.630400pt;}
.yb3{bottom:536.047867pt;}
.y287{bottom:538.012000pt;}
.y246{bottom:538.014133pt;}
.y46{bottom:538.462533pt;}
.y1cb{bottom:538.464533pt;}
.ye7{bottom:538.467200pt;}
.y137{bottom:538.468533pt;}
.y89{bottom:538.475867pt;}
.y65{bottom:538.729200pt;}
.y175{bottom:540.729200pt;}
.y11{bottom:546.630400pt;}
.y286{bottom:551.345333pt;}
.y245{bottom:551.347467pt;}
.yb2{bottom:552.047867pt;}
.y213{bottom:554.102533pt;}
.y45{bottom:554.462533pt;}
.y1ca{bottom:554.464533pt;}
.ye6{bottom:554.467200pt;}
.y136{bottom:554.468533pt;}
.y88{bottom:554.475867pt;}
.y174{bottom:556.729200pt;}
.y10{bottom:562.630400pt;}
.y285{bottom:564.678667pt;}
.y244{bottom:564.680800pt;}
.yb1{bottom:568.047867pt;}
.y19b{bottom:570.115867pt;}
.y64{bottom:570.369200pt;}
.y44{bottom:570.462533pt;}
.y1c9{bottom:570.464533pt;}
.ye5{bottom:570.467200pt;}
.y135{bottom:570.468533pt;}
.y87{bottom:570.475867pt;}
.y173{bottom:572.729200pt;}
.y284{bottom:578.012000pt;}
.y243{bottom:578.014133pt;}
.yf{bottom:578.630400pt;}
.yb0{bottom:584.047867pt;}
.y43{bottom:586.462533pt;}
.y1c8{bottom:586.464533pt;}
.ye4{bottom:586.467200pt;}
.y134{bottom:586.468533pt;}
.y86{bottom:586.475867pt;}
.y1fc{bottom:586.477867pt;}
.y172{bottom:588.729200pt;}
.y283{bottom:591.345333pt;}
.y242{bottom:591.347467pt;}
.yaf{bottom:600.047867pt;}
.y19a{bottom:601.982533pt;}
.y212{bottom:602.102533pt;}
.y42{bottom:602.462533pt;}
.y1c7{bottom:602.464533pt;}
.ye3{bottom:602.467200pt;}
.y133{bottom:602.468533pt;}
.y85{bottom:602.475867pt;}
.y1fb{bottom:602.477867pt;}
.y63{bottom:602.595867pt;}
.y282{bottom:604.678667pt;}
.y241{bottom:604.680800pt;}
.y171{bottom:604.729200pt;}
.yae{bottom:616.047867pt;}
.y281{bottom:618.012000pt;}
.y240{bottom:618.014133pt;}
.y41{bottom:618.462533pt;}
.y1c6{bottom:618.464533pt;}
.ye2{bottom:618.467200pt;}
.y132{bottom:618.468533pt;}
.y84{bottom:618.475867pt;}
.y1fa{bottom:618.477867pt;}
.y62{bottom:618.595867pt;}
.ye{bottom:618.770933pt;}
.y170{bottom:620.729200pt;}
.yd{bottom:629.838267pt;}
.y280{bottom:631.345333pt;}
.y23f{bottom:631.347467pt;}
.yad{bottom:632.047867pt;}
.y40{bottom:634.462533pt;}
.y1c5{bottom:634.464533pt;}
.ye1{bottom:634.467200pt;}
.y131{bottom:634.468533pt;}
.y83{bottom:634.475867pt;}
.y1f9{bottom:634.477867pt;}
.y61{bottom:634.595867pt;}
.y16f{bottom:636.729200pt;}
.y27f{bottom:644.678667pt;}
.y23e{bottom:644.680800pt;}
.yac{bottom:648.047867pt;}
.y3f{bottom:650.462533pt;}
.y1c4{bottom:650.464533pt;}
.ye0{bottom:650.467200pt;}
.y130{bottom:650.468533pt;}
.y82{bottom:650.475867pt;}
.y1f8{bottom:650.477867pt;}
.y60{bottom:650.595867pt;}
.y16e{bottom:652.729200pt;}
.y27e{bottom:658.012000pt;}
.y23d{bottom:658.014133pt;}
.yc{bottom:658.029867pt;}
.yab{bottom:664.047867pt;}
.y3e{bottom:666.462533pt;}
.y1c3{bottom:666.464533pt;}
.ydf{bottom:666.467200pt;}
.y12f{bottom:666.468533pt;}
.y81{bottom:666.475867pt;}
.y1f7{bottom:666.477867pt;}
.y5f{bottom:666.595867pt;}
.y27d{bottom:671.345333pt;}
.y23c{bottom:671.347467pt;}
.yb{bottom:674.852400pt;}
.yaa{bottom:680.047867pt;}
.ya{bottom:682.029867pt;}
.y3d{bottom:682.462533pt;}
.y1c2{bottom:682.464533pt;}
.yde{bottom:682.467200pt;}
.y12e{bottom:682.468533pt;}
.y80{bottom:682.475867pt;}
.y1f6{bottom:682.477867pt;}
.y5e{bottom:682.595867pt;}
.y27c{bottom:684.678667pt;}
.y23b{bottom:684.680800pt;}
.ya9{bottom:696.047867pt;}
.y27b{bottom:698.012000pt;}
.y23a{bottom:698.014133pt;}
.y211{bottom:698.102533pt;}
.y16d{bottom:698.235867pt;}
.y3c{bottom:698.462533pt;}
.y1c1{bottom:698.464533pt;}
.ydd{bottom:698.467200pt;}
.y12d{bottom:698.468533pt;}
.y7f{bottom:698.475867pt;}
.y1f5{bottom:698.477867pt;}
.y5d{bottom:698.595867pt;}
.y9{bottom:698.852400pt;}
.y27a{bottom:711.345333pt;}
.y239{bottom:711.347467pt;}
.y3b{bottom:714.462533pt;}
.y1c0{bottom:714.464533pt;}
.ydc{bottom:714.467200pt;}
.y12c{bottom:714.468533pt;}
.y7e{bottom:714.475867pt;}
.y1f4{bottom:714.477867pt;}
.y5c{bottom:714.595867pt;}
.y8{bottom:724.382933pt;}
.y279{bottom:724.678667pt;}
.y238{bottom:724.680800pt;}
.ya8{bottom:727.597333pt;}
.y195{bottom:730.235867pt;}
.y3a{bottom:730.462533pt;}
.y1bf{bottom:730.464533pt;}
.ydb{bottom:730.467200pt;}
.y12b{bottom:730.468533pt;}
.y7d{bottom:730.475867pt;}
.y1f3{bottom:730.477867pt;}
.y5b{bottom:730.595867pt;}
.y278{bottom:738.012000pt;}
.y237{bottom:738.014133pt;}
.ya7{bottom:740.930667pt;}
.y39{bottom:746.462533pt;}
.y1be{bottom:746.464533pt;}
.yda{bottom:746.467200pt;}
.y12a{bottom:746.468533pt;}
.y7c{bottom:746.475867pt;}
.y1f2{bottom:746.477867pt;}
.y5a{bottom:746.595867pt;}
.y277{bottom:751.345333pt;}
.y236{bottom:751.347467pt;}
.y15b{bottom:752.988533pt;}
.ya6{bottom:754.264000pt;}
.y38{bottom:762.462533pt;}
.y1bd{bottom:762.464533pt;}
.yd9{bottom:762.467200pt;}
.y129{bottom:762.468533pt;}
.y7b{bottom:762.475867pt;}
.y1f1{bottom:762.477867pt;}
.y59{bottom:762.595867pt;}
.y276{bottom:764.678667pt;}
.y235{bottom:764.680800pt;}
.y7{bottom:765.406933pt;}
.ya5{bottom:767.597333pt;}
.y15a{bottom:768.988533pt;}
.y275{bottom:778.012000pt;}
.y234{bottom:778.014133pt;}
.y37{bottom:778.462533pt;}
.y1bc{bottom:778.464533pt;}
.yd8{bottom:778.467200pt;}
.y128{bottom:778.468533pt;}
.y7a{bottom:778.475867pt;}
.y1f0{bottom:778.477867pt;}
.y58{bottom:778.595867pt;}
.ya4{bottom:780.930667pt;}
.y159{bottom:784.988533pt;}
.y274{bottom:791.345333pt;}
.y233{bottom:791.347467pt;}
.y36{bottom:794.462533pt;}
.y1bb{bottom:794.464533pt;}
.yd7{bottom:794.467200pt;}
.y127{bottom:794.468533pt;}
.y79{bottom:794.475867pt;}
.y1ef{bottom:794.477867pt;}
.y57{bottom:794.595867pt;}
.y6{bottom:797.816533pt;}
.y158{bottom:800.988533pt;}
.y273{bottom:804.678667pt;}
.y232{bottom:804.680800pt;}
.ya3{bottom:810.344533pt;}
.y35{bottom:810.462533pt;}
.y1ba{bottom:810.464533pt;}
.yd6{bottom:810.467200pt;}
.y126{bottom:810.468533pt;}
.y78{bottom:810.475867pt;}
.y1ee{bottom:810.477867pt;}
.y56{bottom:810.595867pt;}
.y272{bottom:818.012000pt;}
.y231{bottom:818.014133pt;}
.ya2{bottom:826.344533pt;}
.y34{bottom:826.462533pt;}
.y1b9{bottom:826.464533pt;}
.yd5{bottom:826.467200pt;}
.y125{bottom:826.468533pt;}
.y77{bottom:826.475867pt;}
.y1ed{bottom:826.477867pt;}
.y184{bottom:826.595867pt;}
.y5{bottom:830.226133pt;}
.y271{bottom:831.345333pt;}
.y230{bottom:831.347467pt;}
.y157{bottom:831.957867pt;}
.y55{bottom:842.235867pt;}
.ya1{bottom:842.344533pt;}
.y33{bottom:842.462533pt;}
.y1b8{bottom:842.464533pt;}
.yd4{bottom:842.467200pt;}
.y124{bottom:842.468533pt;}
.y76{bottom:842.475867pt;}
.y1ec{bottom:842.477867pt;}
.y183{bottom:842.595867pt;}
.y270{bottom:844.678667pt;}
.y22f{bottom:844.680800pt;}
.y156{bottom:845.829867pt;}
.y26f{bottom:858.012000pt;}
.y22e{bottom:858.014133pt;}
.ya0{bottom:858.344533pt;}
.y32{bottom:858.462533pt;}
.y1b7{bottom:858.464533pt;}
.yd3{bottom:858.467200pt;}
.y123{bottom:858.468533pt;}
.y75{bottom:858.475867pt;}
.y1eb{bottom:858.477867pt;}
.y155{bottom:858.595867pt;}
.y4{bottom:862.635733pt;}
.y26e{bottom:871.345333pt;}
.y22d{bottom:871.347467pt;}
.y154{bottom:874.235867pt;}
.y31{bottom:874.462533pt;}
.y1b6{bottom:874.464533pt;}
.yd2{bottom:874.467200pt;}
.y122{bottom:874.468533pt;}
.y74{bottom:874.475867pt;}
.y1ea{bottom:874.477867pt;}
.y26d{bottom:884.678667pt;}
.y22c{bottom:884.680800pt;}
.y9f{bottom:890.224533pt;}
.y153{bottom:890.235867pt;}
.y30{bottom:890.462533pt;}
.yd1{bottom:890.467200pt;}
.y121{bottom:890.468533pt;}
.y73{bottom:890.475867pt;}
.y1e9{bottom:890.477867pt;}
.y3{bottom:895.045333pt;}
.y26c{bottom:898.012000pt;}
.y22b{bottom:898.014133pt;}
.y1b5{bottom:906.104533pt;}
.y2f{bottom:906.462533pt;}
.yd0{bottom:906.467200pt;}
.y120{bottom:906.468533pt;}
.y72{bottom:906.475867pt;}
.y1e8{bottom:906.477867pt;}
.y26b{bottom:911.345333pt;}
.y22a{bottom:911.347467pt;}
.y9e{bottom:922.104533pt;}
.y2e{bottom:922.462533pt;}
.ycf{bottom:922.467200pt;}
.y11f{bottom:922.468533pt;}
.y71{bottom:922.475867pt;}
.y1e7{bottom:922.477867pt;}
.y26a{bottom:924.678667pt;}
.y229{bottom:924.680800pt;}
.y2{bottom:950.489200pt;}
.y9d{bottom:1006.594267pt;}
.y54{bottom:1006.594400pt;}
.y269{bottom:1006.598667pt;}
.y182{bottom:1006.600133pt;}
.y188{bottom:1006.601733pt;}
.y199{bottom:1006.609200pt;}
.y16c{bottom:1006.609333pt;}
.y1b4{bottom:1006.618133pt;}
.y194{bottom:1006.619467pt;}
.y152{bottom:1006.621067pt;}
.y2c{bottom:1009.860000pt;}
.y2b{bottom:1022.660000pt;}
.h6{height:16.977598pt;}
.h8{height:25.255208pt;}
.h2{height:27.197917pt;}
.h12{height:27.792969pt;}
.hd{height:29.140625pt;}
.h7{height:29.160156pt;}
.h15{height:29.625000pt;}
.h10{height:29.645833pt;}
.he{height:31.083333pt;}
.h13{height:33.351562pt;}
.hf{height:37.031250pt;}
.hc{height:37.057292pt;}
.hb{height:38.828125pt;}
.ha{height:38.833900pt;}
.h9{height:38.854167pt;}
.h14{height:39.200000pt;}
.h11{height:46.673734pt;}
.h3{height:50.476562pt;}
.h5{height:50.774503pt;}
.h4{height:81.927344pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:68.031467pt;}
.x23{left:69.921200pt;}
.x1f{left:77.027733pt;}
.x22{left:82.895600pt;}
.x8{left:85.417333pt;}
.x1{left:86.929067pt;}
.x13{left:88.818933pt;}
.x34{left:90.708667pt;}
.x4{left:94.488267pt;}
.xb{left:98.271467pt;}
.x18{left:100.449200pt;}
.x32{left:109.606400pt;}
.x3{left:111.491467pt;}
.x19{left:115.542533pt;}
.x6{left:117.165333pt;}
.x17{left:125.649200pt;}
.x21{left:133.321067pt;}
.x1b{left:141.454400pt;}
.x1c{left:176.591600pt;}
.x16{left:180.369200pt;}
.x20{left:181.374400pt;}
.x15{left:187.649200pt;}
.x5{left:189.223467pt;}
.x31{left:191.595867pt;}
.x1a{left:195.054400pt;}
.x2f{left:247.628000pt;}
.x2e{left:261.398667pt;}
.x25{left:345.057200pt;}
.x1e{left:363.954933pt;}
.x9{left:404.481333pt;}
.xc{left:406.284800pt;}
.x24{left:412.353200pt;}
.x12{left:425.195867pt;}
.x7{left:427.098667pt;}
.x35{left:428.959333pt;}
.x2a{left:430.129200pt;}
.x1d{left:431.250933pt;}
.xd{left:436.524800pt;}
.x28{left:438.054133pt;}
.x33{left:447.878400pt;}
.x11{left:455.435867pt;}
.xe{left:466.912533pt;}
.x27{left:500.462533pt;}
.x30{left:507.259200pt;}
.x2b{left:532.355867pt;}
.x29{left:536.430133pt;}
.x26{left:538.515867pt;}
.x10{left:589.770933pt;}
.x2{left:616.324800pt;}
.x2c{left:641.546133pt;}
.xf{left:647.459200pt;}
.x2d{left:661.266933pt;}
.x14{left:666.353067pt;}
}




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