
    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_fc9714ebcab0ad923596d940.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.207031;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_cec6acd0daa77455b90f69c7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.002930;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_349d03bd155764db1edc81b4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.024902;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_aee83eec27c8e8b0a9cc418f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.900391;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_395cfab1b82e1455e95675a8.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_49795a17cf50d3ec0d99a0f1.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_e2bfd40a36918bbf0a38ca0d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.002930;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_3aa33f9af7b175d5504275d9.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;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_237687a89b68709b8c57114d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-28.530600px;}
.vc{vertical-align:-16.457400px;}
.v6{vertical-align:-11.889600px;}
.vb{vertical-align:-7.662600px;}
.ve{vertical-align:-4.875000px;}
.vd{vertical-align:-1.125000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:7.664400px;}
.va{vertical-align:8.795400px;}
.v5{vertical-align:29.262000px;}
.v9{vertical-align:39.888600px;}
.v4{vertical-align:45.600000px;}
.v3{vertical-align:50.400000px;}
.v2{vertical-align:52.724400px;}
.v1{vertical-align:55.275600px;}
.ls23{letter-spacing:-10.000800px;}
.ls3f{letter-spacing:-9.763200px;}
.ls49{letter-spacing:-7.531200px;}
.ls77{letter-spacing:-6.825600px;}
.ls46{letter-spacing:-6.292800px;}
.ls48{letter-spacing:-6.177600px;}
.ls81{letter-spacing:-6.141600px;}
.ls83{letter-spacing:-5.421600px;}
.ls65{letter-spacing:-4.620000px;}
.ls4e{letter-spacing:-4.586400px;}
.ls37{letter-spacing:-4.440000px;}
.ls7a{letter-spacing:-4.284000px;}
.ls9b{letter-spacing:-3.866400px;}
.ls6e{letter-spacing:-3.765600px;}
.ls92{letter-spacing:-3.738000px;}
.lsa3{letter-spacing:-3.614400px;}
.ls47{letter-spacing:-3.506400px;}
.ls79{letter-spacing:-3.297600px;}
.ls58{letter-spacing:-2.980800px;}
.ls56{letter-spacing:-2.494800px;}
.lsad{letter-spacing:-1.993200px;}
.ls6d{letter-spacing:-1.948800px;}
.lsab{letter-spacing:-1.894200px;}
.lsa9{letter-spacing:-1.762200px;}
.ls3b{letter-spacing:-1.749600px;}
.ls20{letter-spacing:-1.706400px;}
.lsae{letter-spacing:-1.643400px;}
.lsa8{letter-spacing:-1.577400px;}
.lsa6{letter-spacing:-1.570800px;}
.ls3c{letter-spacing:-1.555200px;}
.lsa5{letter-spacing:-1.544400px;}
.ls10{letter-spacing:-1.476000px;}
.lsa7{letter-spacing:-1.458600px;}
.lsb2{letter-spacing:-1.432800px;}
.lsac{letter-spacing:-1.346400px;}
.lsb3{letter-spacing:-1.324800px;}
.ls87{letter-spacing:-1.317600px;}
.lsa4{letter-spacing:-1.302000px;}
.lsaa{letter-spacing:-1.227600px;}
.ls86{letter-spacing:-1.224000px;}
.lsb1{letter-spacing:-1.219200px;}
.ls70{letter-spacing:-1.195200px;}
.ls5c{letter-spacing:-1.184400px;}
.ls9c{letter-spacing:-1.166400px;}
.ls98{letter-spacing:-1.142400px;}
.ls99{letter-spacing:-1.092000px;}
.lsf{letter-spacing:-1.065600px;}
.lsb4{letter-spacing:-1.058400px;}
.ls9f{letter-spacing:-0.936000px;}
.ls73{letter-spacing:-0.907200px;}
.ls60{letter-spacing:-0.892800px;}
.ls55{letter-spacing:-0.799200px;}
.ls5d{letter-spacing:-0.789600px;}
.ls22{letter-spacing:-0.410400px;}
.lsc{letter-spacing:-0.383400px;}
.lsa0{letter-spacing:-0.369600px;}
.lsbd{letter-spacing:-0.360000px;}
.ls57{letter-spacing:-0.334800px;}
.ls64{letter-spacing:-0.326400px;}
.ls75{letter-spacing:-0.324000px;}
.ls71{letter-spacing:-0.309600px;}
.ls84{letter-spacing:-0.302400px;}
.ls61{letter-spacing:-0.300000px;}
.ls1c{letter-spacing:-0.288000px;}
.ls33{letter-spacing:-0.280800px;}
.lsc1{letter-spacing:-0.276000px;}
.ls3{letter-spacing:-0.268800px;}
.ls93{letter-spacing:-0.260400px;}
.ls82{letter-spacing:-0.244800px;}
.ls85{letter-spacing:-0.237600px;}
.ls1a{letter-spacing:-0.230400px;}
.ls52{letter-spacing:-0.226800px;}
.ls1d{letter-spacing:-0.216000px;}
.ls68{letter-spacing:-0.205200px;}
.ls76{letter-spacing:-0.201600px;}
.ls5f{letter-spacing:-0.192000px;}
.ls6a{letter-spacing:-0.183600px;}
.lsc0{letter-spacing:-0.180000px;}
.ls9a{letter-spacing:-0.168000px;}
.ls80{letter-spacing:-0.165600px;}
.ls63{letter-spacing:-0.153600px;}
.ls7d{letter-spacing:-0.144000px;}
.ls24{letter-spacing:-0.140400px;}
.ls1{letter-spacing:-0.134400px;}
.ls12{letter-spacing:-0.129600px;}
.lsbc{letter-spacing:-0.120000px;}
.ls9{letter-spacing:-0.115200px;}
.ls14{letter-spacing:-0.100800px;}
.ls35{letter-spacing:-0.096000px;}
.ls89{letter-spacing:-0.093600px;}
.ls39{letter-spacing:-0.086400px;}
.ls2d{letter-spacing:-0.060000px;}
.ls7{letter-spacing:-0.057600px;}
.ls2{letter-spacing:-0.050400px;}
.ls1b{letter-spacing:-0.043200px;}
.ls4d{letter-spacing:-0.042000px;}
.ls28{letter-spacing:-0.038400px;}
.ls45{letter-spacing:-0.036000px;}
.ls25{letter-spacing:-0.032400px;}
.ls2f{letter-spacing:-0.028800px;}
.ls96{letter-spacing:-0.026400px;}
.ls5b{letter-spacing:-0.025200px;}
.ls43{letter-spacing:-0.021600px;}
.ls4c{letter-spacing:-0.016800px;}
.lsd{letter-spacing:-0.016200px;}
.ls88{letter-spacing:-0.014400px;}
.ls8f{letter-spacing:-0.013200px;}
.ls3d{letter-spacing:-0.010800px;}
.ls2a{letter-spacing:-0.009600px;}
.ls6{letter-spacing:-0.008400px;}
.ls44{letter-spacing:-0.007200px;}
.ls97{letter-spacing:-0.006600px;}
.ls4{letter-spacing:0.000000px;}
.ls9d{letter-spacing:0.006600px;}
.ls4b{letter-spacing:0.008400px;}
.ls27{letter-spacing:0.009600px;}
.ls95{letter-spacing:0.013200px;}
.ls42{letter-spacing:0.014400px;}
.ls29{letter-spacing:0.019200px;}
.ls8a{letter-spacing:0.019800px;}
.ls40{letter-spacing:0.021600px;}
.ls5a{letter-spacing:0.025200px;}
.ls13{letter-spacing:0.028800px;}
.ls34{letter-spacing:0.030000px;}
.ls21{letter-spacing:0.032400px;}
.ls8b{letter-spacing:0.033000px;}
.ls59{letter-spacing:0.033600px;}
.ls41{letter-spacing:0.036000px;}
.ls2b{letter-spacing:0.038400px;}
.ls4f{letter-spacing:0.043200px;}
.ls3a{letter-spacing:0.054000px;}
.ls2c{letter-spacing:0.057600px;}
.ls4a{letter-spacing:0.060000px;}
.ls11{letter-spacing:0.072000px;}
.ls38{letter-spacing:0.075600px;}
.lsb5{letter-spacing:0.079200px;}
.ls69{letter-spacing:0.086400px;}
.ls36{letter-spacing:0.096000px;}
.ls50{letter-spacing:0.097200px;}
.ls19{letter-spacing:0.100800px;}
.ls3e{letter-spacing:0.108000px;}
.ls74{letter-spacing:0.115200px;}
.lse{letter-spacing:0.124200px;}
.ls30{letter-spacing:0.129600px;}
.ls15{letter-spacing:0.144000px;}
.ls91{letter-spacing:0.151200px;}
.ls6f{letter-spacing:0.165600px;}
.lsb{letter-spacing:0.167400px;}
.lsa{letter-spacing:0.168000px;}
.lsbb{letter-spacing:0.180000px;}
.ls51{letter-spacing:0.183600px;}
.ls16{letter-spacing:0.216000px;}
.ls31{letter-spacing:0.218400px;}
.ls66{letter-spacing:0.220800px;}
.ls2e{letter-spacing:0.228000px;}
.ls8{letter-spacing:0.230400px;}
.ls78{letter-spacing:0.237600px;}
.ls62{letter-spacing:0.240000px;}
.ls90{letter-spacing:0.243600px;}
.ls6c{letter-spacing:0.244800px;}
.lsaf{letter-spacing:0.260400px;}
.ls8e{letter-spacing:0.268800px;}
.ls17{letter-spacing:0.273600px;}
.lsbf{letter-spacing:0.276000px;}
.ls26{letter-spacing:0.280800px;}
.ls18{letter-spacing:0.285600px;}
.ls1e{letter-spacing:0.288000px;}
.ls53{letter-spacing:0.291600px;}
.ls9e{letter-spacing:0.295200px;}
.lsbe{letter-spacing:0.300000px;}
.ls54{letter-spacing:0.302400px;}
.ls7b{letter-spacing:0.309600px;}
.ls5{letter-spacing:0.310800px;}
.ls72{letter-spacing:0.316800px;}
.ls32{letter-spacing:0.334800px;}
.ls7c{letter-spacing:0.338400px;}
.ls6b{letter-spacing:0.345600px;}
.ls8d{letter-spacing:0.347400px;}
.ls0{letter-spacing:0.352800px;}
.ls5e{letter-spacing:0.355200px;}
.ls1f{letter-spacing:0.360000px;}
.ls94{letter-spacing:0.361200px;}
.ls7f{letter-spacing:0.388800px;}
.lsb9{letter-spacing:0.420000px;}
.lsa2{letter-spacing:13.344000px;}
.ls7e{letter-spacing:16.134000px;}
.lsb0{letter-spacing:16.218000px;}
.ls8c{letter-spacing:18.600000px;}
.ls67{letter-spacing:24.768000px;}
.lsba{letter-spacing:41.880000px;}
.lsa1{letter-spacing:96.765000px;}
.lsb8{letter-spacing:170.400000px;}
.lsb7{letter-spacing:1251.125400px;}
.lsb6{letter-spacing:1340.001600px;}
.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;}
}
.ws121{word-spacing:-96.831000px;}
.ws15{word-spacing:-45.216000px;}
.ws2a{word-spacing:-45.144000px;}
.ws27{word-spacing:-45.072000px;}
.ws1e{word-spacing:-44.971200px;}
.ws1d{word-spacing:-44.942400px;}
.ws5b{word-spacing:-44.784000px;}
.ws32{word-spacing:-42.292800px;}
.ws70{word-spacing:-42.192000px;}
.ws132{word-spacing:-41.947200px;}
.ws15f{word-spacing:-41.904000px;}
.ws150{word-spacing:-37.740000px;}
.ws13a{word-spacing:-37.560000px;}
.ws164{word-spacing:-37.440000px;}
.ws13f{word-spacing:-37.344000px;}
.ws170{word-spacing:-37.260000px;}
.ws146{word-spacing:-37.200000px;}
.ws7a{word-spacing:-35.256000px;}
.ws44{word-spacing:-33.836400px;}
.ws43{word-spacing:-33.804000px;}
.ws46{word-spacing:-33.663600px;}
.ws45{word-spacing:-33.393600px;}
.ws42{word-spacing:-32.097600px;}
.ws79{word-spacing:-31.644000px;}
.ws7c{word-spacing:-30.000000px;}
.ws7b{word-spacing:-25.560000px;}
.ws1{word-spacing:-24.612000px;}
.ws0{word-spacing:-24.603600px;}
.ws77{word-spacing:-21.218400px;}
.ws4{word-spacing:-21.096000px;}
.ws3{word-spacing:-21.038400px;}
.ws73{word-spacing:-21.000000px;}
.ws5{word-spacing:-20.980800px;}
.ws7{word-spacing:-15.989400px;}
.ws8{word-spacing:-15.822000px;}
.ws9{word-spacing:-15.805800px;}
.ws163{word-spacing:-1.200000px;}
.ws15d{word-spacing:-0.954000px;}
.ws41{word-spacing:-0.618000px;}
.ws13c{word-spacing:-0.540000px;}
.wse2{word-spacing:-0.460800px;}
.ws71{word-spacing:-0.454800px;}
.wsc9{word-spacing:-0.451200px;}
.wsfa{word-spacing:-0.445200px;}
.wsca{word-spacing:-0.441600px;}
.ws115{word-spacing:-0.432000px;}
.wsa9{word-spacing:-0.410400px;}
.wsa5{word-spacing:-0.399600px;}
.wsd0{word-spacing:-0.388800px;}
.wsdf{word-spacing:-0.381600px;}
.ws6a{word-spacing:-0.378300px;}
.ws116{word-spacing:-0.367200px;}
.wsee{word-spacing:-0.364800px;}
.wsde{word-spacing:-0.352800px;}
.wsd8{word-spacing:-0.345600px;}
.ws12f{word-spacing:-0.344400px;}
.ws15e{word-spacing:-0.336000px;}
.ws2{word-spacing:-0.330000px;}
.wsf5{word-spacing:-0.327600px;}
.wsc0{word-spacing:-0.316800px;}
.ws162{word-spacing:-0.312000px;}
.wsda{word-spacing:-0.309600px;}
.wsa1{word-spacing:-0.291600px;}
.ws16a{word-spacing:-0.282000px;}
.ws12e{word-spacing:-0.252000px;}
.wsd6{word-spacing:-0.237600px;}
.wsf6{word-spacing:-0.235200px;}
.wsd3{word-spacing:-0.216000px;}
.wsa0{word-spacing:-0.205200px;}
.ws51{word-spacing:-0.201600px;}
.wsc2{word-spacing:-0.194400px;}
.wsd4{word-spacing:-0.187200px;}
.ws7e{word-spacing:-0.183600px;}
.ws9b{word-spacing:-0.180000px;}
.ws6c{word-spacing:-0.167400px;}
.ws80{word-spacing:-0.162000px;}
.ws11a{word-spacing:-0.159600px;}
.ws4f{word-spacing:-0.153600px;}
.wsa3{word-spacing:-0.151200px;}
.ws47{word-spacing:-0.144000px;}
.ws4d{word-spacing:-0.134400px;}
.wsa7{word-spacing:-0.129600px;}
.ws6e{word-spacing:-0.124800px;}
.wsb{word-spacing:-0.120000px;}
.wsac{word-spacing:-0.117600px;}
.ws4e{word-spacing:-0.115200px;}
.wsae{word-spacing:-0.109200px;}
.ws31{word-spacing:-0.108000px;}
.ws6d{word-spacing:-0.106800px;}
.ws48{word-spacing:-0.105600px;}
.ws50{word-spacing:-0.100800px;}
.wsf4{word-spacing:-0.099000px;}
.wsb4{word-spacing:-0.097200px;}
.wsa4{word-spacing:-0.096000px;}
.ws9c{word-spacing:-0.092400px;}
.ws4c{word-spacing:-0.086400px;}
.wsf3{word-spacing:-0.085800px;}
.ws100{word-spacing:-0.084000px;}
.wsfe{word-spacing:-0.079200px;}
.wsad{word-spacing:-0.075600px;}
.ws114{word-spacing:-0.072600px;}
.ws8f{word-spacing:-0.072000px;}
.ws9d{word-spacing:-0.067200px;}
.wsf0{word-spacing:-0.066000px;}
.ws91{word-spacing:-0.064800px;}
.ws56{word-spacing:-0.060000px;}
.wsfd{word-spacing:-0.059400px;}
.ws4b{word-spacing:-0.057600px;}
.wsf1{word-spacing:-0.052800px;}
.ws90{word-spacing:-0.050400px;}
.ws93{word-spacing:-0.043200px;}
.ws9e{word-spacing:-0.042000px;}
.wsfc{word-spacing:-0.039600px;}
.ws99{word-spacing:-0.036000px;}
.ws13b{word-spacing:-0.030000px;}
.ws96{word-spacing:-0.028800px;}
.ws7f{word-spacing:-0.021600px;}
.wsd1{word-spacing:-0.014400px;}
.ws6f{word-spacing:-0.008400px;}
.ws6{word-spacing:0.000000px;}
.wsed{word-spacing:0.021600px;}
.ws151{word-spacing:0.024000px;}
.ws40{word-spacing:0.032400px;}
.wsbc{word-spacing:0.038400px;}
.ws10e{word-spacing:0.043200px;}
.wsbd{word-spacing:0.057600px;}
.wse1{word-spacing:0.072000px;}
.wsc8{word-spacing:0.075600px;}
.ws102{word-spacing:0.084000px;}
.wse4{word-spacing:0.093600px;}
.wsb2{word-spacing:0.096000px;}
.wsc1{word-spacing:0.097200px;}
.wsa2{word-spacing:0.118800px;}
.wsd7{word-spacing:0.129600px;}
.wsec{word-spacing:0.165600px;}
.ws153{word-spacing:0.168000px;}
.wse6{word-spacing:0.172800px;}
.wsf9{word-spacing:0.176400px;}
.ws15b{word-spacing:0.180000px;}
.ws29{word-spacing:0.190800px;}
.ws6b{word-spacing:0.208800px;}
.wsf7{word-spacing:0.218400px;}
.ws3f{word-spacing:0.221760px;}
.wsaa{word-spacing:0.226800px;}
.ws161{word-spacing:0.228000px;}
.wsbe{word-spacing:0.230400px;}
.wsdb{word-spacing:0.237600px;}
.ws28{word-spacing:0.240180px;}
.wsd5{word-spacing:0.252000px;}
.ws119{word-spacing:0.285600px;}
.ws16b{word-spacing:0.300000px;}
.ws152{word-spacing:0.540000px;}
.ws15a{word-spacing:0.600000px;}
.wsa6{word-spacing:0.691200px;}
.wsb0{word-spacing:0.705600px;}
.wsb3{word-spacing:0.796800px;}
.ws15c{word-spacing:0.810000px;}
.wsd2{word-spacing:0.835200px;}
.ws118{word-spacing:0.864000px;}
.wsa{word-spacing:0.921600px;}
.ws131{word-spacing:0.986400px;}
.ws101{word-spacing:1.008000px;}
.wsff{word-spacing:1.058400px;}
.ws10c{word-spacing:1.094400px;}
.wsaf{word-spacing:1.100400px;}
.wsce{word-spacing:1.123200px;}
.wsea{word-spacing:1.152000px;}
.ws126{word-spacing:1.161600px;}
.ws11c{word-spacing:1.218000px;}
.wseb{word-spacing:1.245600px;}
.ws12d{word-spacing:1.252800px;}
.ws128{word-spacing:1.280400px;}
.wsc{word-spacing:1.356000px;}
.ws123{word-spacing:1.392600px;}
.ws12b{word-spacing:1.478400px;}
.ws122{word-spacing:1.504800px;}
.ws124{word-spacing:1.511400px;}
.ws12a{word-spacing:1.577400px;}
.ws125{word-spacing:1.696200px;}
.ws3c{word-spacing:1.824000px;}
.ws127{word-spacing:1.828200px;}
.wscb{word-spacing:1.852800px;}
.ws129{word-spacing:1.927200px;}
.ws38{word-spacing:2.202000px;}
.ws3d{word-spacing:2.232000px;}
.ws3b{word-spacing:2.355600px;}
.ws39{word-spacing:2.385600px;}
.wsa8{word-spacing:2.386800px;}
.ws37{word-spacing:2.453760px;}
.ws3e{word-spacing:2.519400px;}
.ws3a{word-spacing:2.580000px;}
.wsab{word-spacing:2.872800px;}
.wsdc{word-spacing:3.225600px;}
.ws97{word-spacing:3.434400px;}
.ws142{word-spacing:3.522000px;}
.ws11b{word-spacing:3.542400px;}
.ws13e{word-spacing:3.570000px;}
.ws13d{word-spacing:3.600000px;}
.wsf8{word-spacing:3.654000px;}
.ws109{word-spacing:3.794400px;}
.ws2b{word-spacing:3.852180px;}
.ws2f{word-spacing:3.912000px;}
.ws145{word-spacing:4.116000px;}
.ws2c{word-spacing:4.174800px;}
.wsdd{word-spacing:4.212000px;}
.ws2e{word-spacing:4.225800px;}
.ws143{word-spacing:4.230000px;}
.ws2d{word-spacing:4.357200px;}
.ws140{word-spacing:4.362000px;}
.ws144{word-spacing:4.458000px;}
.ws9f{word-spacing:4.502400px;}
.wsbf{word-spacing:4.536000px;}
.ws141{word-spacing:4.680000px;}
.wsd{word-spacing:5.290560px;}
.wse7{word-spacing:5.349600px;}
.ws12{word-spacing:5.382000px;}
.wsf{word-spacing:5.535600px;}
.ws10{word-spacing:5.607600px;}
.wse{word-spacing:5.710800px;}
.ws14{word-spacing:5.758800px;}
.ws11{word-spacing:5.790000px;}
.ws13{word-spacing:6.034800px;}
.wse5{word-spacing:6.069600px;}
.ws98{word-spacing:6.105600px;}
.ws95{word-spacing:6.220800px;}
.wsd9{word-spacing:6.753600px;}
.ws65{word-spacing:7.137000px;}
.ws69{word-spacing:7.157400px;}
.ws68{word-spacing:7.189800px;}
.ws62{word-spacing:7.231500px;}
.ws66{word-spacing:7.271400px;}
.ws9a{word-spacing:7.387200px;}
.ws64{word-spacing:7.455600px;}
.ws67{word-spacing:7.466400px;}
.ws63{word-spacing:7.657800px;}
.ws8e{word-spacing:9.619200px;}
.ws157{word-spacing:10.188000px;}
.ws58{word-spacing:10.211400px;}
.ws154{word-spacing:10.230000px;}
.ws159{word-spacing:10.236000px;}
.ws16d{word-spacing:10.542000px;}
.ws57{word-spacing:10.692300px;}
.ws5c{word-spacing:10.722000px;}
.ws155{word-spacing:10.734000px;}
.ws16c{word-spacing:10.818000px;}
.ws16e{word-spacing:10.884000px;}
.ws156{word-spacing:11.040000px;}
.ws158{word-spacing:11.070000px;}
.ws59{word-spacing:11.100000px;}
.ws5d{word-spacing:11.211600px;}
.ws5a{word-spacing:11.381400px;}
.ws16f{word-spacing:12.090000px;}
.ws138{word-spacing:14.808000px;}
.ws133{word-spacing:14.970000px;}
.ws135{word-spacing:15.030000px;}
.ws106{word-spacing:15.532800px;}
.ws136{word-spacing:15.534000px;}
.ws134{word-spacing:15.612000px;}
.ws137{word-spacing:15.690000px;}
.ws139{word-spacing:16.140000px;}
.ws92{word-spacing:16.215600px;}
.ws94{word-spacing:16.230000px;}
.ws10b{word-spacing:16.408800px;}
.ws10d{word-spacing:16.587600px;}
.ws107{word-spacing:16.880400px;}
.wse9{word-spacing:16.912800px;}
.ws10a{word-spacing:17.061600px;}
.wse8{word-spacing:17.179200px;}
.ws117{word-spacing:17.179260px;}
.ws108{word-spacing:17.210400px;}
.wsb1{word-spacing:20.723940px;}
.ws1a{word-spacing:22.590000px;}
.ws18{word-spacing:22.978800px;}
.ws19{word-spacing:23.055600px;}
.ws16{word-spacing:23.228160px;}
.ws1b{word-spacing:23.230800px;}
.ws1c{word-spacing:23.245200px;}
.ws17{word-spacing:23.288400px;}
.wsc6{word-spacing:24.074400px;}
.wsc3{word-spacing:24.436620px;}
.wsc4{word-spacing:24.613200px;}
.wsc7{word-spacing:24.662400px;}
.wsc5{word-spacing:25.530000px;}
.wsba{word-spacing:26.400000px;}
.wsb9{word-spacing:26.628000px;}
.wsb8{word-spacing:26.670000px;}
.wsb5{word-spacing:27.060240px;}
.wsb6{word-spacing:27.120000px;}
.wsb7{word-spacing:27.144000px;}
.wsbb{word-spacing:27.210600px;}
.ws30{word-spacing:37.699200px;}
.ws111{word-spacing:40.188000px;}
.ws14e{word-spacing:40.446000px;}
.ws14a{word-spacing:40.560000px;}
.ws148{word-spacing:40.800000px;}
.ws14f{word-spacing:41.028000px;}
.ws147{word-spacing:41.322000px;}
.ws14b{word-spacing:41.370000px;}
.ws149{word-spacing:41.610000px;}
.ws14c{word-spacing:41.874000px;}
.ws14d{word-spacing:41.940000px;}
.ws169{word-spacing:49.440000px;}
.ws167{word-spacing:50.292000px;}
.ws168{word-spacing:50.550000px;}
.ws166{word-spacing:50.964000px;}
.ws165{word-spacing:51.090000px;}
.ws120{word-spacing:52.861200px;}
.ws11f{word-spacing:52.861800px;}
.wsfb{word-spacing:64.127400px;}
.ws104{word-spacing:66.880800px;}
.ws21{word-spacing:66.889200px;}
.ws23{word-spacing:67.206000px;}
.ws1f{word-spacing:67.332180px;}
.ws22{word-spacing:67.459800px;}
.ws20{word-spacing:67.695000px;}
.ws25{word-spacing:70.630800px;}
.ws24{word-spacing:70.662000px;}
.ws26{word-spacing:70.717200px;}
.ws160{word-spacing:73.788000px;}
.ws11e{word-spacing:80.971560px;}
.ws110{word-spacing:81.967200px;}
.ws105{word-spacing:86.484000px;}
.ws5f{word-spacing:95.262600px;}
.ws61{word-spacing:95.271000px;}
.ws5e{word-spacing:95.467500px;}
.ws60{word-spacing:95.602800px;}
.ws36{word-spacing:108.872400px;}
.ws34{word-spacing:108.880800px;}
.ws35{word-spacing:108.913200px;}
.ws33{word-spacing:108.959760px;}
.ws10f{word-spacing:122.035200px;}
.wse3{word-spacing:138.661800px;}
.ws112{word-spacing:154.332420px;}
.ws113{word-spacing:154.332600px;}
.ws130{word-spacing:155.368200px;}
.wsf2{word-spacing:160.631400px;}
.ws55{word-spacing:179.014200px;}
.ws49{word-spacing:202.707360px;}
.ws103{word-spacing:207.217200px;}
.ws76{word-spacing:209.838000px;}
.ws11d{word-spacing:216.845400px;}
.ws4a{word-spacing:237.980400px;}
.ws12c{word-spacing:286.090260px;}
.ws78{word-spacing:313.023000px;}
.ws52{word-spacing:337.513200px;}
.ws8b{word-spacing:349.882920px;}
.ws54{word-spacing:362.090400px;}
.ws72{word-spacing:369.397800px;}
.ws7d{word-spacing:397.324800px;}
.wsef{word-spacing:403.752000px;}
.ws53{word-spacing:411.707400px;}
.ws74{word-spacing:415.779600px;}
.ws8c{word-spacing:454.428720px;}
.ws85{word-spacing:457.359000px;}
.ws81{word-spacing:475.508400px;}
.ws87{word-spacing:495.770040px;}
.ws83{word-spacing:503.833920px;}
.ws89{word-spacing:506.685120px;}
.ws75{word-spacing:537.224400px;}
.wscd{word-spacing:653.590800px;}
.wscc{word-spacing:683.761200px;}
.wse0{word-spacing:683.922600px;}
.ws84{word-spacing:749.807400px;}
.ws86{word-spacing:749.834400px;}
.ws82{word-spacing:777.183000px;}
.ws8a{word-spacing:804.558000px;}
.ws88{word-spacing:818.084400px;}
.wscf{word-spacing:824.269800px;}
.ws8d{word-spacing:872.807400px;}
._44{margin-left:-15.000000px;}
._38{margin-left:-11.934000px;}
._2d{margin-left:-10.009200px;}
._2{margin-left:-8.634000px;}
._7{margin-left:-7.194000px;}
._10{margin-left:-6.115200px;}
._4b{margin-left:-4.512000px;}
._6{margin-left:-3.264000px;}
._0{margin-left:-1.344000px;}
._1{width:1.146000px;}
._3{width:2.388000px;}
._41{width:4.230000px;}
._48{width:5.256000px;}
._47{width:6.336000px;}
._46{width:8.136000px;}
._4{width:9.720000px;}
._5{width:10.800000px;}
._4d{width:38.760000px;}
._4e{width:49.656000px;}
._4a{width:80.904600px;}
._49{width:97.629000px;}
._1b{width:182.094000px;}
._24{width:184.389600px;}
._4c{width:200.184840px;}
._15{width:208.278000px;}
._16{width:214.138800px;}
._e{width:220.987800px;}
._1c{width:229.278000px;}
._d{width:230.838000px;}
._11{width:250.777200px;}
._20{width:251.838000px;}
._33{width:267.132000px;}
._a{width:269.838000px;}
._32{width:292.770900px;}
._1a{width:295.833780px;}
._36{width:313.023000px;}
._1f{width:334.893000px;}
._18{width:359.079000px;}
._28{width:368.016660px;}
._12{width:376.514400px;}
._19{width:382.015200px;}
._21{width:384.218400px;}
._26{width:395.403000px;}
._23{width:407.046000px;}
._2a{width:408.273000px;}
._1e{width:426.978780px;}
._1d{width:436.138800px;}
._17{width:451.458780px;}
._27{width:459.388800px;}
._29{width:480.891660px;}
._22{width:499.083780px;}
._f{width:504.654900px;}
._25{width:508.458780px;}
._9{width:532.506000px;}
._14{width:541.926000px;}
._c{width:544.689000px;}
._2e{width:578.793000px;}
._b{width:632.259900px;}
._34{width:654.027660px;}
._13{width:677.103780px;}
._35{width:679.503000px;}
._2c{width:700.503000px;}
._31{width:721.503000px;}
._2b{width:723.243900px;}
._30{width:750.978780px;}
._8{width:765.078780px;}
._2f{width:792.690780px;}
._39{width:811.160400px;}
._43{width:918.425400px;}
._3c{width:948.263400px;}
._3b{width:1044.353400px;}
._3a{width:1057.196400px;}
._42{width:1078.058400px;}
._3f{width:1141.064400px;}
._45{width:1200.803400px;}
._40{width:1271.948400px;}
._3d{width:1275.977400px;}
._3e{width:1330.892400px;}
._37{width:1534.523400px;}
.fc6{color:rgb(0,51,153);}
.fc5{color:rgb(0,0,153);}
.fc4{color:transparent;}
.fc9{color:rgb(192,0,0);}
.fc3{color:rgb(153,0,0);}
.fc8{color:rgb(0,0,0);}
.fc7{color:rgb(38,38,38);}
.fc1{color:rgb(255,255,255);}
.fc2{color:rgb(55,144,211);}
.fc0{color:rgb(0,0,255);}
.fs4{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:60.000000px;}
.fsa{font-size:66.000000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs8{font-size:96.000000px;}
.fs1{font-size:108.000000px;}
.fs7{font-size:120.000000px;}
.fs6{font-size:144.000000px;}
.fs0{font-size:168.000000px;}
.y0{bottom:0.000000px;}
.yef{bottom:2.649078px;}
.y1e3{bottom:4.765050px;}
.y1d3{bottom:4.765155px;}
.y1d5{bottom:4.765170px;}
.y1d9{bottom:4.765200px;}
.y1a2{bottom:7.005930px;}
.y13b{bottom:7.219950px;}
.y12e{bottom:7.220100px;}
.y58{bottom:7.342162px;}
.y9{bottom:7.909881px;}
.y1cc{bottom:10.212750px;}
.y15c{bottom:10.853400px;}
.y187{bottom:13.857622px;}
.yee{bottom:15.729120px;}
.y12c{bottom:16.389300px;}
.y1a5{bottom:16.900455px;}
.y195{bottom:17.155200px;}
.y1d1{bottom:19.445025px;}
.y6b{bottom:20.002170px;}
.y1ba{bottom:20.191740px;}
.y120{bottom:20.798490px;}
.y11b{bottom:22.036500px;}
.y1a1{bottom:28.005930px;}
.yf0{bottom:28.149075px;}
.y1c7{bottom:30.812700px;}
.yb5{bottom:30.934020px;}
.y154{bottom:31.468350px;}
.y1d0{bottom:31.500000px;}
.y1a4{bottom:36.400455px;}
.y66{bottom:36.907110px;}
.y185{bottom:37.242615px;}
.y194{bottom:38.155200px;}
.y196{bottom:38.155350px;}
.y57{bottom:40.154475px;}
.y11f{bottom:40.298490px;}
.y1a0{bottom:40.964715px;}
.y11a{bottom:41.739600px;}
.y1b8{bottom:43.576785px;}
.y217{bottom:45.706395px;}
.y1e6{bottom:51.987300px;}
.y13c{bottom:52.685100px;}
.yed{bottom:52.869090px;}
.y28{bottom:53.406825px;}
.y19b{bottom:57.000000px;}
.y1a3{bottom:57.400455px;}
.y18c{bottom:58.764300px;}
.yb4{bottom:59.434020px;}
.y19f{bottom:60.464715px;}
.y183{bottom:60.627615px;}
.y11e{bottom:61.298490px;}
.y155{bottom:61.996200px;}
.y1cd{bottom:62.723850px;}
.y119{bottom:62.739600px;}
.y1c8{bottom:63.073500px;}
.y6a{bottom:64.137180px;}
.y1b7{bottom:66.961785px;}
.y162{bottom:67.956300px;}
.y215{bottom:69.091440px;}
.y56{bottom:72.966795px;}
.y1e7{bottom:74.287440px;}
.y24a{bottom:74.536515px;}
.y20e{bottom:75.539940px;}
.y17e{bottom:75.539955px;}
.yf5{bottom:75.540000px;}
.y188{bottom:75.540008px;}
.y186{bottom:75.540015px;}
.y1b4{bottom:75.540030px;}
.y1b2{bottom:75.540045px;}
.y211{bottom:75.540075px;}
.y100{bottom:75.540150px;}
.yec{bottom:76.869090px;}
.y1d2{bottom:76.990515px;}
.y11d{bottom:79.500000px;}
.y18d{bottom:79.855350px;}
.y13d{bottom:79.861350px;}
.y19e{bottom:81.464715px;}
.y78{bottom:82.992645px;}
.y112{bottom:83.287050px;}
.y41{bottom:83.441625px;}
.y182{bottom:84.012645px;}
.y19{bottom:84.412440px;}
.y1ce{bottom:87.597900px;}
.yb3{bottom:87.934020px;}
.y189{bottom:89.397630px;}
.y1b6{bottom:90.346770px;}
.y161{bottom:91.692150px;}
.y213{bottom:92.476425px;}
.y156{bottom:92.523900px;}
.y88{bottom:94.279260px;}
.y1c9{bottom:95.334450px;}
.yc7{bottom:95.486430px;}
.y1bb{bottom:95.731755px;}
.y1e8{bottom:96.587730px;}
.y1d4{bottom:99.290790px;}
.y18e{bottom:100.946400px;}
.y24{bottom:102.206085px;}
.yeb{bottom:102.369090px;}
.y55{bottom:105.779115px;}
.y13e{bottom:107.037750px;}
.y180{bottom:107.397645px;}
.y69{bottom:108.272145px;}
.y249{bottom:110.536515px;}
.y225{bottom:110.700945px;}
.y1c1{bottom:112.997505px;}
.y1b3{bottom:113.731770px;}
.y67{bottom:115.499940px;}
.y210{bottom:115.861425px;}
.y40{bottom:116.441625px;}
.y1e9{bottom:118.888050px;}
.y1b9{bottom:119.116785px;}
.y1d6{bottom:121.590930px;}
.y18f{bottom:122.037600px;}
.y113{bottom:122.425350px;}
.y157{bottom:123.051750px;}
.yba{bottom:125.606010px;}
.yea{bottom:126.369090px;}
.y1ca{bottom:127.595250px;}
.y129{bottom:127.645380px;}
.y18{bottom:127.912440px;}
.y90{bottom:129.163740px;}
.y198{bottom:129.261750px;}
.y23b{bottom:129.322305px;}
.y17d{bottom:130.782645px;}
.y214{bottom:132.938925px;}
.y13f{bottom:134.214000px;}
.y87{bottom:136.021410px;}
.y184{bottom:136.167615px;}
.yb2{bottom:136.301100px;}
.y1b1{bottom:137.116755px;}
.yc8{bottom:137.501085px;}
.y54{bottom:138.591435px;}
.y77{bottom:139.108470px;}
.y230{bottom:139.193850px;}
.y20d{bottom:139.246410px;}
.ye5{bottom:139.929105px;}
.y1ea{bottom:141.188100px;}
.y1c0{bottom:141.497505px;}
.y190{bottom:143.128650px;}
.y1d7{bottom:143.891220px;}
.y216{bottom:144.631440px;}
.y23{bottom:145.706085px;}
.y248{bottom:146.536515px;}
.y20a{bottom:150.938850px;}
.ye9{bottom:151.869150px;}
.y108{bottom:152.038050px;}
.y68{bottom:152.407050px;}
.y158{bottom:153.579600px;}
.y17c{bottom:154.167600px;}
.y224{bottom:154.200900px;}
.y160{bottom:154.459500px;}
.yd0{bottom:155.220000px;}
.y1cf{bottom:156.127500px;}
.y128{bottom:156.145350px;}
.y1d{bottom:158.192400px;}
.y15d{bottom:159.254400px;}
.y1cb{bottom:159.856200px;}
.y1b0{bottom:160.501800px;}
.y140{bottom:161.390400px;}
.y114{bottom:161.563800px;}
.yb9{bottom:161.605950px;}
.y8f{bottom:162.163800px;}
.y20b{bottom:162.631350px;}
.y1eb{bottom:163.488450px;}
.y191{bottom:164.219850px;}
.y1a9{bottom:164.894850px;}
.y197{bottom:166.158600px;}
.y1d8{bottom:166.191450px;}
.y1bf{bottom:169.997550px;}
.y2e{bottom:171.249150px;}
.y53{bottom:171.403800px;}
.y23a{bottom:172.822350px;}
.y101{bottom:175.423050px;}
.y12b{bottom:175.500000px;}
.ye8{bottom:175.869150px;}
.y17b{bottom:177.552600px;}
.y86{bottom:177.763650px;}
.y2c{bottom:179.286450px;}
.y20f{bottom:179.708850px;}
.ycf{bottom:180.720000px;}
.y247{bottom:182.536500px;}
.y22f{bottom:182.693850px;}
.y181{bottom:182.937600px;}
.y1ae{bottom:183.886800px;}
.y159{bottom:184.107300px;}
.y192{bottom:185.310900px;}
.y1ec{bottom:185.788650px;}
.y1a8{bottom:185.894850px;}
.y209{bottom:186.016350px;}
.y127{bottom:186.145350px;}
.y1da{bottom:188.491650px;}
.y141{bottom:188.566650px;}
.y1b5{bottom:189.271800px;}
.y212{bottom:191.401500px;}
.y8e{bottom:193.663800px;}
.y1c4{bottom:195.039300px;}
.y76{bottom:195.224250px;}
.y65{bottom:196.542000px;}
.y9a{bottom:196.656600px;}
.y223{bottom:197.700900px;}
.yff{bottom:198.807900px;}
.y1be{bottom:199.997550px;}
.y111{bottom:200.370000px;}
.y115{bottom:200.702100px;}
.y19d{bottom:200.719800px;}
.y17a{bottom:200.937600px;}
.y10e{bottom:201.284400px;}
.ye7{bottom:201.369150px;}
.y52{bottom:201.609900px;}
.ya8{bottom:202.007250px;}
.y22{bottom:202.706100px;}
.y7{bottom:203.315700px;}
.y2d{bottom:204.249150px;}
.y1a7{bottom:205.394850px;}
.y17f{bottom:206.322600px;}
.y193{bottom:206.402100px;}
.y1ed{bottom:208.088850px;}
.y207{bottom:209.401350px;}
.y1db{bottom:210.791850px;}
.y2b{bottom:212.286450px;}
.y51{bottom:213.009900px;}
.y15a{bottom:214.635150px;}
.y142{bottom:215.742900px;}
.y1ab{bottom:216.196350px;}
.y239{bottom:216.322350px;}
.y246{bottom:218.536500px;}
.y12d{bottom:218.854650px;}
.y122{bottom:219.210900px;}
.y85{bottom:219.505800px;}
.y11{bottom:220.961400px;}
.y19c{bottom:221.719800px;}
.yfe{bottom:222.192900px;}
.y178{bottom:224.322600px;}
.y1c3{bottom:225.039300px;}
.y22e{bottom:226.193850px;}
.y1a6{bottom:226.394850px;}
.y99{bottom:226.656600px;}
.y8d{bottom:226.663800px;}
.ye6{bottom:226.869150px;}
.y109{bottom:227.578050px;}
.y15f{bottom:228.570150px;}
.y6{bottom:228.815700px;}
.y1ee{bottom:230.389050px;}
.y1dc{bottom:233.092200px;}
.y10d{bottom:233.290050px;}
.y199{bottom:234.047700px;}
.yac{bottom:234.342000px;}
.ya7{bottom:235.007250px;}
.y1aa{bottom:237.196350px;}
.y20c{bottom:238.171350px;}
.y116{bottom:239.840400px;}
.y121{bottom:240.210900px;}
.y64{bottom:240.676950px;}
.y222{bottom:241.200900px;}
.y143{bottom:242.919300px;}
.y15b{bottom:245.163000px;}
.yfd{bottom:245.578050px;}
.y12f{bottom:246.031050px;}
.y37{bottom:246.307800px;}
.y176{bottom:247.707600px;}
.ye4{bottom:250.569150px;}
.y6f{bottom:251.284050px;}
.y75{bottom:251.340150px;}
.y1ef{bottom:252.689250px;}
.y10{bottom:253.961400px;}
.y5{bottom:254.315700px;}
.y245{bottom:254.536500px;}
.yc6{bottom:254.596350px;}
.y50{bottom:254.616000px;}
.y1dd{bottom:255.392400px;}
.y15e{bottom:257.685150px;}
.y152{bottom:258.271950px;}
.y1af{bottom:259.426800px;}
.y1c{bottom:259.548000px;}
.y8c{bottom:259.663800px;}
.y21{bottom:259.706100px;}
.y238{bottom:259.822350px;}
.yca{bottom:260.670450px;}
.y84{bottom:261.247950px;}
.y10f{bottom:261.637800px;}
.y34{bottom:264.030300px;}
.ya6{bottom:266.507250px;}
.y39{bottom:267.033900px;}
.yfc{bottom:268.963050px;}
.y70{bottom:269.580000px;}
.y17{bottom:269.662500px;}
.y22d{bottom:269.693850px;}
.y144{bottom:270.095550px;}
.y174{bottom:271.092600px;}
.y130{bottom:273.207450px;}
.y206{bottom:273.249000px;}
.y1f0{bottom:274.989600px;}
.y10c{bottom:276.000000px;}
.ye3{bottom:276.069150px;}
.y31{bottom:276.348900px;}
.yab{bottom:276.710100px;}
.y1de{bottom:277.692600px;}
.y117{bottom:278.978850px;}
.y4{bottom:279.815700px;}
.y14f{bottom:283.194000px;}
.y221{bottom:283.200900px;}
.y63{bottom:284.811900px;}
.y208{bottom:284.941350px;}
.y36{bottom:286.807800px;}
.yf{bottom:286.961400px;}
.y4f{bottom:287.428350px;}
.y110{bottom:288.156750px;}
.y151{bottom:288.271950px;}
.y33{bottom:289.530300px;}
.y1bd{bottom:292.139100px;}
.yfb{bottom:292.348050px;}
.y8b{bottom:292.663800px;}
.y172{bottom:294.477600px;}
.y145{bottom:297.271950px;}
.y1f1{bottom:297.289800px;}
.y179{bottom:299.862600px;}
.y1df{bottom:299.992800px;}
.ye2{bottom:300.069150px;}
.y131{bottom:300.383700px;}
.ydf{bottom:301.389150px;}
.y237{bottom:301.822350px;}
.y83{bottom:302.990100px;}
.y30{bottom:303.348900px;}
.yc5{bottom:305.653650px;}
.y38{bottom:306.033900px;}
.y74{bottom:307.455900px;}
.y1b{bottom:307.548000px;}
.y16{bottom:311.662500px;}
.y22c{bottom:311.693850px;}
.y14e{bottom:311.694000px;}
.y1bc{bottom:314.639100px;}
.yfa{bottom:315.733050px;}
.y32{bottom:316.530300px;}
.y218{bottom:317.653650px;}
.y171{bottom:317.862600px;}
.y118{bottom:318.117150px;}
.y20{bottom:318.206100px;}
.y1f2{bottom:319.590000px;}
.y4e{bottom:320.240700px;}
.y244{bottom:320.461350px;}
.y107{bottom:321.118050px;}
.yaa{bottom:321.810450px;}
.yb8{bottom:322.075050px;}
.y1e0{bottom:322.293000px;}
.y2a{bottom:322.724850px;}
.y177{bottom:323.247600px;}
.y146{bottom:324.448350px;}
.y3f{bottom:324.672000px;}
.ye1{bottom:325.569150px;}
.y8a{bottom:325.663800px;}
.y35{bottom:325.807800px;}
.y1ad{bottom:326.158650px;}
.y220{bottom:326.700900px;}
.y132{bottom:327.560100px;}
.y62{bottom:328.946850px;}
.y153{bottom:337.500000px;}
.y27{bottom:338.849700px;}
.yf9{bottom:339.118050px;}
.y14d{bottom:340.194000px;}
.y170{bottom:341.247600px;}
.y1f3{bottom:341.890200px;}
.y93{bottom:341.905200px;}
.y106{bottom:344.503050px;}
.y1e1{bottom:344.593350px;}
.y82{bottom:344.732250px;}
.y236{bottom:345.322350px;}
.y175{bottom:346.632600px;}
.y1ac{bottom:348.658650px;}
.ye0{bottom:351.069150px;}
.y147{bottom:351.624600px;}
.y133{bottom:354.736350px;}
.y15{bottom:355.162500px;}
.y22b{bottom:355.193850px;}
.y29{bottom:355.724850px;}
.y3e{bottom:357.672000px;}
.ya3{bottom:359.347500px;}
.yc4{bottom:359.991150px;}
.y4d{bottom:361.515150px;}
.yf8{bottom:362.503050px;}
.y73{bottom:363.571800px;}
.y1f4{bottom:364.190400px;}
.y92{bottom:364.405200px;}
.y16e{bottom:364.632600px;}
.y1e2{bottom:366.893550px;}
.y14c{bottom:368.694000px;}
.y173{bottom:370.017600px;}
.y21f{bottom:370.200900px;}
.y11c{bottom:371.878050px;}
.yb7{bottom:372.889650px;}
.y61{bottom:373.081950px;}
.yb{bottom:373.192800px;}
.yde{bottom:374.769150px;}
.y1f{bottom:375.206100px;}
.ya9{bottom:375.631800px;}
.y205{bottom:376.197600px;}
.y81{bottom:376.863150px;}
.y148{bottom:378.801000px;}
.y1fd{bottom:379.512750px;}
.y9d{bottom:380.091150px;}
.ya0{bottom:381.225750px;}
.y134{bottom:381.912750px;}
.y18b{bottom:385.500000px;}
.yf7{bottom:385.888050px;}
.y1f5{bottom:386.490750px;}
.y91{bottom:386.905200px;}
.y16c{bottom:388.017600px;}
.y235{bottom:388.822350px;}
.y1e4{bottom:389.193750px;}
.y242{bottom:390.430050px;}
.y3d{bottom:390.672000px;}
.ya2{bottom:392.347500px;}
.y80{bottom:396.363150px;}
.y14b{bottom:397.194000px;}
.y22a{bottom:398.693850px;}
.ydd{bottom:400.269150px;}
.y4c{bottom:402.789600px;}
.y1fc{bottom:402.897750px;}
.y204{bottom:404.697600px;}
.y9c{bottom:405.591150px;}
.y9f{bottom:406.725750px;}
.y135{bottom:409.089150px;}
.yf6{bottom:409.273050px;}
.yc3{bottom:410.108850px;}
.y45{bottom:411.155250px;}
.y16a{bottom:411.402600px;}
.y1e5{bottom:411.494100px;}
.y21e{bottom:413.700900px;}
.y60{bottom:417.216900px;}
.y72{bottom:419.687550px;}
.ya1{bottom:423.847500px;}
.ydc{bottom:424.269150px;}
.yd9{bottom:425.589150px;}
.y14a{bottom:425.694000px;}
.y1fb{bottom:426.282750px;}
.y241{bottom:426.430050px;}
.y1a{bottom:428.194350px;}
.y7f{bottom:428.216550px;}
.yb6{bottom:428.944800px;}
.y3{bottom:431.474400px;}
.y234{bottom:432.322350px;}
.y9b{bottom:432.591150px;}
.yf4{bottom:432.658050px;}
.y203{bottom:433.197600px;}
.y9e{bottom:433.725900px;}
.y168{bottom:434.787600px;}
.y4b{bottom:435.601950px;}
.y136{bottom:436.265400px;}
.y105{bottom:438.043050px;}
.y1c6{bottom:439.500000px;}
.y16f{bottom:440.172600px;}
.y229{bottom:442.193850px;}
.y1fa{bottom:449.667750px;}
.ydb{bottom:449.769150px;}
.y44{bottom:454.655250px;}
.y149{bottom:455.694000px;}
.y102{bottom:456.043050px;}
.y21d{bottom:457.200900px;}
.yb1{bottom:457.246500px;}
.y166{bottom:458.172600px;}
.y7e{bottom:460.347450px;}
.y5f{bottom:461.351850px;}
.y202{bottom:461.697600px;}
.y1c5{bottom:462.236700px;}
.y240{bottom:462.430050px;}
.y137{bottom:463.441800px;}
.y16d{bottom:463.557600px;}
.y4a{bottom:468.414300px;}
.y14{bottom:472.164450px;}
.yda{bottom:475.269150px;}
.y233{bottom:475.822350px;}
.yb0{bottom:479.746500px;}
.y7d{bottom:479.847450px;}
.y126{bottom:480.082650px;}
.y164{bottom:481.557600px;}
.y2{bottom:482.474400px;}
.y104{bottom:484.813050px;}
.y71{bottom:484.864050px;}
.y228{bottom:485.693850px;}
.y16b{bottom:486.942600px;}
.y201{bottom:490.197600px;}
.y138{bottom:490.618050px;}
.yc2{bottom:491.383050px;}
.y5c{bottom:492.064200px;}
.y43{bottom:496.655250px;}
.y23f{bottom:498.430050px;}
.yd8{bottom:499.149150px;}
.y21c{bottom:499.200900px;}
.y49{bottom:501.226650px;}
.y6e{bottom:502.234050px;}
.yaf{bottom:502.246500px;}
.y2f{bottom:503.287500px;}
.y5e{bottom:505.486800px;}
.y103{bottom:508.198050px;}
.y125{bottom:508.582650px;}
.y169{bottom:510.327600px;}
.y7c{bottom:511.700850px;}
.y13{bottom:514.164450px;}
.y139{bottom:517.794450px;}
.y232{bottom:517.822350px;}
.yce{bottom:518.109150px;}
.y200{bottom:518.697600px;}
.yc1{bottom:524.383050px;}
.yd7{bottom:524.649150px;}
.y227{bottom:527.693850px;}
.y5b{bottom:528.064200px;}
.ye{bottom:530.440950px;}
.yf3{bottom:531.583050px;}
.y1f7{bottom:531.969000px;}
.y1{bottom:531.974400px;}
.y167{bottom:533.712600px;}
.y23e{bottom:534.430050px;}
.ybc{bottom:535.887900px;}
.y124{bottom:537.082650px;}
.y26{bottom:537.317550px;}
.y42{bottom:540.155250px;}
.y95{bottom:540.998100px;}
.y1e{bottom:541.293750px;}
.y21b{bottom:542.700900px;}
.y48{bottom:543.535200px;}
.y13a{bottom:544.970850px;}
.y1f9{bottom:548.592750px;}
.yd6{bottom:548.649150px;}
.y1ff{bottom:548.697600px;}
.y5d{bottom:549.621750px;}
.ybd{bottom:550.197600px;}
.y7b{bottom:553.443150px;}
.y47{bottom:554.935200px;}
.y165{bottom:557.097600px;}
.yc0{bottom:557.383050px;}
.y12{bottom:557.664450px;}
.y231{bottom:561.322350px;}
.y1f6{bottom:561.969000px;}
.yd{bottom:563.440950px;}
.y94{bottom:563.498100px;}
.y5a{bottom:564.064200px;}
.ybb{bottom:564.387900px;}
.y123{bottom:567.082650px;}
.y98{bottom:567.097800px;}
.y23d{bottom:570.430050px;}
.y226{bottom:571.193850px;}
.y1fe{bottom:572.800200px;}
.yd5{bottom:574.149150px;}
.y19a{bottom:574.212300px;}
.yd1{bottom:574.629150px;}
.yf2{bottom:576.417300px;}
.y10a{bottom:578.190300px;}
.y25{bottom:580.817550px;}
.y3c{bottom:582.420900px;}
.y21a{bottom:586.200900px;}
.ybf{bottom:588.883050px;}
.y163{bottom:589.809900px;}
.y7a{bottom:595.185300px;}
.yc{bottom:596.440950px;}
.yd4{bottom:598.149150px;}
.y97{bottom:600.097800px;}
.y12a{bottom:601.509900px;}
.y6d{bottom:601.848150px;}
.y23c{bottom:606.430050px;}
.y46{bottom:608.025600px;}
.ya5{bottom:610.031850px;}
.y150{bottom:615.324600px;}
.y3b{bottom:615.420900px;}
.y59{bottom:617.289150px;}
.yd3{bottom:623.649150px;}
.y10b{bottom:627.024600px;}
.y1c2{bottom:632.334300px;}
.y79{bottom:636.927450px;}
.y18a{bottom:637.824600px;}
.y96{bottom:640.597800px;}
.ya4{bottom:641.531850px;}
.y219{bottom:644.328450px;}
.y3a{bottom:648.420900px;}
.yd2{bottom:649.149150px;}
.yae{bottom:655.628850px;}
.y243{bottom:658.525800px;}
.ybe{bottom:665.804100px;}
.yc9{bottom:671.325900px;}
.y1f8{bottom:672.242400px;}
.ycd{bottom:673.329150px;}
.yad{bottom:678.128850px;}
.ycc{bottom:686.409150px;}
.y8{bottom:687.775800px;}
.yf1{bottom:697.756950px;}
.ycb{bottom:723.669150px;}
.y89{bottom:738.182400px;}
.ya{bottom:739.481850px;}
.y6c{bottom:793.200000px;}
.h2f{height:20.300310px;}
.h28{height:24.295155px;}
.h18{height:43.681641px;}
.h5{height:48.023438px;}
.h6{height:54.026367px;}
.h24{height:54.430664px;}
.h11{height:58.365234px;}
.h1b{height:59.378906px;}
.h2d{height:63.226064px;}
.h1c{height:69.275391px;}
.h4{height:72.035156px;}
.hc{height:79.171875px;}
.h15{height:82.148438px;}
.h16{height:83.378906px;}
.h25{height:83.692664px;}
.h3{height:84.041016px;}
.hb{height:88.382812px;}
.h19{height:89.068359px;}
.h2a{height:94.319264px;}
.h30{height:98.203125px;}
.h8{height:98.964844px;}
.h10{height:103.103906px;}
.h13{height:103.965234px;}
.hf{height:107.903906px;}
.h2{height:108.052734px;}
.h12{height:108.765234px;}
.h20{height:109.058726px;}
.h1d{height:109.058906px;}
.h9{height:117.843750px;}
.h7{height:118.757812px;}
.h14{height:120.058594px;}
.he{height:134.447475px;}
.ha{height:144.070312px;}
.h22{height:163.695000px;}
.h1{height:168.082031px;}
.hd{height:187.171875px;}
.h21{height:195.189150px;}
.h2c{height:196.500000px;}
.h17{height:252.000000px;}
.h2b{height:255.000000px;}
.h26{height:258.000000px;}
.h29{height:280.500000px;}
.h1e{height:291.890850px;}
.h23{height:334.500000px;}
.h27{height:409.500000px;}
.h2e{height:433.500000px;}
.h1a{height:521.640000px;}
.h1f{height:741.669000px;}
.h0{height:810.000000px;}
.w28{width:102.674640px;}
.w26{width:102.674655px;}
.w4{width:110.563470px;}
.w25{width:110.700000px;}
.w27{width:116.977440px;}
.w23{width:127.650015px;}
.w7{width:128.565000px;}
.w8{width:128.565015px;}
.w22{width:128.700000px;}
.w24{width:130.387440px;}
.w5{width:136.078110px;}
.w18{width:168.457500px;}
.w6{width:190.027500px;}
.w15{width:211.200000px;}
.w3{width:224.210400px;}
.w11{width:261.502950px;}
.w2{width:358.401000px;}
.w10{width:369.232950px;}
.w13{width:383.092950px;}
.w1d{width:394.222050px;}
.wa{width:426.000000px;}
.w17{width:436.500000px;}
.w19{width:487.500000px;}
.w9{width:555.000000px;}
.w1f{width:556.035300px;}
.w20{width:577.365300px;}
.w12{width:591.969600px;}
.w14{width:598.500000px;}
.w16{width:600.000000px;}
.w1b{width:605.512650px;}
.w21{width:633.682650px;}
.wf{width:644.552100px;}
.wc{width:649.119750px;}
.w1e{width:651.862650px;}
.w1c{width:656.790000px;}
.wd{width:661.652100px;}
.we{width:677.604750px;}
.w1a{width:682.500000px;}
.w1{width:722.108700px;}
.wb{width:729.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xb0{left:5.250000px;}
.x62{left:6.828000px;}
.xb2{left:8.100000px;}
.x60{left:10.800000px;}
.x10e{left:13.770150px;}
.xfe{left:14.828550px;}
.xff{left:15.983550px;}
.x5e{left:18.285600px;}
.xba{left:21.000000px;}
.xfc{left:23.630100px;}
.x54{left:24.882285px;}
.xfd{left:26.720100px;}
.xd3{left:28.500000px;}
.xe7{left:29.797080px;}
.xc1{left:31.670850px;}
.x107{left:32.912355px;}
.x56{left:36.091470px;}
.x53{left:37.819725px;}
.xc0{left:40.033335px;}
.x51{left:42.319725px;}
.x52{left:44.101005px;}
.x86{left:45.406470px;}
.xf8{left:46.519950px;}
.x2b{left:52.256160px;}
.x4e{left:53.569725px;}
.x4f{left:55.257285px;}
.x102{left:56.677200px;}
.x40{left:59.760000px;}
.x123{left:62.475000px;}
.x2a{left:65.261160px;}
.x125{left:68.167905px;}
.x1f{left:70.685730px;}
.x22{left:72.410550px;}
.x126{left:73.695420px;}
.x9d{left:75.012690px;}
.xe5{left:76.387080px;}
.x41{left:78.285000px;}
.x4d{left:80.925120px;}
.x66{left:82.016220px;}
.x1a{left:84.562500px;}
.x103{left:86.016495px;}
.x87{left:87.263970px;}
.xb6{left:88.350000px;}
.xb1{left:89.437500px;}
.xe8{left:91.246530px;}
.x128{left:92.542905px;}
.x96{left:93.618720px;}
.x1d{left:95.338230px;}
.xbb{left:97.112235px;}
.x93{left:98.332965px;}
.x67{left:100.323720px;}
.x1e{left:102.373230px;}
.x39{left:104.865645px;}
.x63{left:108.105000px;}
.x9a{left:110.848830px;}
.x4c{left:112.046925px;}
.x65{left:113.606220px;}
.x38{left:115.890645px;}
.x64{left:118.417440px;}
.x15{left:120.962010px;}
.xd9{left:122.964510px;}
.xc9{left:125.838600px;}
.x7f{left:127.339665px;}
.x80{left:129.147165px;}
.xd6{left:130.884495px;}
.x61{left:132.675000px;}
.x9b{left:135.268530px;}
.xe9{left:137.923800px;}
.x7d{left:139.849725px;}
.x124{left:142.980405px;}
.x7e{left:144.049665px;}
.x127{left:148.605405px;}
.xbe{left:150.345300px;}
.x58{left:151.920750px;}
.x10b{left:155.850150px;}
.x3f{left:157.935000px;}
.xaf{left:161.086050px;}
.xae{left:162.347850px;}
.xda{left:164.182740px;}
.x57{left:165.189000px;}
.x28{left:167.654250px;}
.x10d{left:168.952350px;}
.x98{left:172.151400px;}
.xd8{left:174.324750px;}
.xb9{left:175.798050px;}
.x1b{left:177.838200px;}
.x10a{left:184.920150px;}
.x5a{left:186.207000px;}
.x9c{left:187.698450px;}
.xcb{left:189.831900px;}
.xca{left:191.654400px;}
.xa7{left:196.043700px;}
.xa9{left:197.363700px;}
.xe6{left:200.407950px;}
.xd4{left:201.459600px;}
.xd5{left:202.982250px;}
.x4a{left:209.868300px;}
.xac{left:210.957450px;}
.x59{left:213.533250px;}
.x99{left:216.364800px;}
.x5f{left:218.738250px;}
.xd7{left:220.509600px;}
.x42{left:224.488500px;}
.x119{left:226.446150px;}
.xd2{left:227.582850px;}
.x9e{left:229.358700px;}
.x1c{left:231.560700px;}
.x5d{left:234.300750px;}
.x29{left:236.084250px;}
.xa1{left:241.647450px;}
.x9f{left:242.697450px;}
.x55{left:243.844200px;}
.x19{left:245.156250px;}
.x4b{left:246.798300px;}
.x17{left:250.125000px;}
.xea{left:257.479800px;}
.xbc{left:260.928150px;}
.x21{left:266.531250px;}
.x5b{left:268.137000px;}
.x108{left:269.251500px;}
.x5c{left:281.918250px;}
.xc2{left:289.074900px;}
.x97{left:297.468900px;}
.x81{left:300.075900px;}
.x82{left:303.675900px;}
.x14{left:311.607750px;}
.x109{left:313.558050px;}
.xbf{left:315.661350px;}
.x83{left:317.018400px;}
.x20{left:319.213200px;}
.xeb{left:322.664100px;}
.x121{left:328.101300px;}
.x13{left:333.635250px;}
.x16{left:337.125000px;}
.x94{left:338.512950px;}
.x7a{left:340.437150px;}
.x12{left:343.917750px;}
.x2c{left:345.653700px;}
.x78{left:348.364650px;}
.xdb{left:350.352750px;}
.xfb{left:351.525000px;}
.xb{left:352.536900px;}
.x50{left:354.570450px;}
.xdc{left:356.599950px;}
.xc6{left:361.406250px;}
.xc8{left:365.808750px;}
.xc7{left:368.351250px;}
.xd0{left:370.767150px;}
.x79{left:373.804650px;}
.x131{left:375.845250px;}
.x104{left:377.485950px;}
.x91{left:379.166850px;}
.x8f{left:381.484350px;}
.xdd{left:383.671350px;}
.x90{left:384.791850px;}
.x18{left:389.250000px;}
.x129{left:391.045200px;}
.x105{left:393.415950px;}
.x88{left:397.137150px;}
.x12a{left:398.447700px;}
.xd1{left:402.229650px;}
.x3a{left:405.153600px;}
.xaa{left:408.274650px;}
.x37{left:411.123600px;}
.xbd{left:415.744200px;}
.x89{left:416.832150px;}
.x3b{left:418.886100px;}
.x92{left:422.842950px;}
.xcf{left:424.257150px;}
.x12b{left:427.045200px;}
.x122{left:430.775850px;}
.xa8{left:434.944650px;}
.xc3{left:443.894400px;}
.xa5{left:445.549650px;}
.x132{left:450.263550px;}
.x10c{left:455.617800px;}
.x49{left:458.429700px;}
.x44{left:461.557200px;}
.x45{left:462.584700px;}
.xf9{left:464.110050px;}
.xad{left:465.578400px;}
.x4{left:467.751900px;}
.x1{left:469.701450px;}
.xa3{left:473.187150px;}
.xab{left:475.047300px;}
.x3c{left:476.118600px;}
.xa2{left:478.527150px;}
.xa4{left:479.952150px;}
.x46{left:483.472200px;}
.xa6{left:484.782150px;}
.x2e{left:489.176250px;}
.xe{left:490.285800px;}
.x8d{left:491.317500px;}
.x2d{left:492.963750px;}
.x23{left:496.785000px;}
.x7b{left:498.422100px;}
.xd{left:504.010800px;}
.x11e{left:507.270150px;}
.xde{left:508.616250px;}
.x11c{left:511.740300px;}
.xc{left:514.180800px;}
.x3{left:516.013950px;}
.x11f{left:517.110150px;}
.x11a{left:518.902800px;}
.x117{left:526.653600px;}
.x2{left:528.951450px;}
.x120{left:533.450550px;}
.x6{left:537.314400px;}
.x11b{left:543.090300px;}
.x68{left:551.406900px;}
.x116{left:560.512500px;}
.x11d{left:561.787650px;}
.x115{left:568.326150px;}
.x114{left:569.953950px;}
.x6c{left:571.379400px;}
.x113{left:572.558550px;}
.x6f{left:575.673150px;}
.x7{left:579.029400px;}
.x118{left:580.165800px;}
.x112{left:587.860200px;}
.xdf{left:589.830450px;}
.x85{left:591.099000px;}
.x5{left:593.376900px;}
.x8b{left:595.494000px;}
.x111{left:598.278450px;}
.x69{left:599.391900px;}
.x110{left:600.557400px;}
.x77{left:603.023250px;}
.x6a{left:604.465650px;}
.xc5{left:607.500000px;}
.x72{left:608.864400px;}
.x8a{left:612.519000px;}
.xfa{left:616.500000px;}
.x6e{left:619.510650px;}
.x10f{left:622.044750px;}
.x76{left:623.483250px;}
.x8c{left:624.879000px;}
.x30{left:625.884900px;}
.x84{left:630.054000px;}
.xb7{left:632.129250px;}
.x74{left:633.415650px;}
.x8e{left:636.190500px;}
.xce{left:638.067150px;}
.x2f{left:639.632400px;}
.x26{left:643.611900px;}
.x6d{left:646.821900px;}
.x95{left:647.846850px;}
.xb5{left:651.246750px;}
.xb8{left:655.371750px;}
.xe0{left:656.467650px;}
.xcc{left:661.812300px;}
.xa{left:669.868350px;}
.xa0{left:672.994800px;}
.xed{left:676.078050px;}
.x10{left:678.560400px;}
.x6b{left:681.528150px;}
.x11{left:686.907900px;}
.x73{left:689.095650px;}
.xf3{left:701.240550px;}
.x71{left:704.073150px;}
.xf{left:709.550400px;}
.x27{left:711.299400px;}
.x75{left:715.506900px;}
.xec{left:717.463650px;}
.x48{left:721.327350px;}
.x47{left:722.399850px;}
.x43{left:724.842750px;}
.xf5{left:728.240550px;}
.xcd{left:730.257150px;}
.xf6{left:732.598050px;}
.x106{left:733.902450px;}
.x12c{left:735.655050px;}
.xf1{left:738.740550px;}
.xc4{left:740.594700px;}
.x12f{left:742.967550px;}
.x24{left:745.641300px;}
.xf4{left:749.098050px;}
.x70{left:750.828150px;}
.x3d{left:751.941600px;}
.x3e{left:753.111750px;}
.x8{left:754.367100px;}
.x12d{left:760.690050px;}
.xf2{left:763.115550px;}
.x12e{left:764.627550px;}
.xe4{left:765.846750px;}
.xf7{left:768.028050px;}
.x33{left:769.932450px;}
.xf0{left:772.535550px;}
.x101{left:774.537300px;}
.xb3{left:781.056900px;}
.x32{left:782.742300px;}
.x31{left:794.629950px;}
.x7c{left:798.400800px;}
.xe1{left:799.806750px;}
.xe2{left:804.696750px;}
.x25{left:812.518800px;}
.x100{left:816.132300px;}
.x9{left:831.461100px;}
.x130{left:842.065050px;}
.xe3{left:847.769250px;}
.xb4{left:873.036750px;}
.xee{left:887.278200px;}
.x36{left:913.364850px;}
.x35{left:917.519850px;}
.x34{left:939.314850px;}
.xef{left:979.258050px;}
@media print{
.v7{vertical-align:-25.360533pt;}
.vc{vertical-align:-14.628800pt;}
.v6{vertical-align:-10.568533pt;}
.vb{vertical-align:-6.811200pt;}
.ve{vertical-align:-4.333333pt;}
.vd{vertical-align:-1.000000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:6.812800pt;}
.va{vertical-align:7.818133pt;}
.v5{vertical-align:26.010667pt;}
.v9{vertical-align:35.456533pt;}
.v4{vertical-align:40.533333pt;}
.v3{vertical-align:44.800000pt;}
.v2{vertical-align:46.866133pt;}
.v1{vertical-align:49.133867pt;}
.ls23{letter-spacing:-8.889600pt;}
.ls3f{letter-spacing:-8.678400pt;}
.ls49{letter-spacing:-6.694400pt;}
.ls77{letter-spacing:-6.067200pt;}
.ls46{letter-spacing:-5.593600pt;}
.ls48{letter-spacing:-5.491200pt;}
.ls81{letter-spacing:-5.459200pt;}
.ls83{letter-spacing:-4.819200pt;}
.ls65{letter-spacing:-4.106667pt;}
.ls4e{letter-spacing:-4.076800pt;}
.ls37{letter-spacing:-3.946667pt;}
.ls7a{letter-spacing:-3.808000pt;}
.ls9b{letter-spacing:-3.436800pt;}
.ls6e{letter-spacing:-3.347200pt;}
.ls92{letter-spacing:-3.322667pt;}
.lsa3{letter-spacing:-3.212800pt;}
.ls47{letter-spacing:-3.116800pt;}
.ls79{letter-spacing:-2.931200pt;}
.ls58{letter-spacing:-2.649600pt;}
.ls56{letter-spacing:-2.217600pt;}
.lsad{letter-spacing:-1.771733pt;}
.ls6d{letter-spacing:-1.732267pt;}
.lsab{letter-spacing:-1.683733pt;}
.lsa9{letter-spacing:-1.566400pt;}
.ls3b{letter-spacing:-1.555200pt;}
.ls20{letter-spacing:-1.516800pt;}
.lsae{letter-spacing:-1.460800pt;}
.lsa8{letter-spacing:-1.402133pt;}
.lsa6{letter-spacing:-1.396267pt;}
.ls3c{letter-spacing:-1.382400pt;}
.lsa5{letter-spacing:-1.372800pt;}
.ls10{letter-spacing:-1.312000pt;}
.lsa7{letter-spacing:-1.296533pt;}
.lsb2{letter-spacing:-1.273600pt;}
.lsac{letter-spacing:-1.196800pt;}
.lsb3{letter-spacing:-1.177600pt;}
.ls87{letter-spacing:-1.171200pt;}
.lsa4{letter-spacing:-1.157333pt;}
.lsaa{letter-spacing:-1.091200pt;}
.ls86{letter-spacing:-1.088000pt;}
.lsb1{letter-spacing:-1.083733pt;}
.ls70{letter-spacing:-1.062400pt;}
.ls5c{letter-spacing:-1.052800pt;}
.ls9c{letter-spacing:-1.036800pt;}
.ls98{letter-spacing:-1.015467pt;}
.ls99{letter-spacing:-0.970667pt;}
.lsf{letter-spacing:-0.947200pt;}
.lsb4{letter-spacing:-0.940800pt;}
.ls9f{letter-spacing:-0.832000pt;}
.ls73{letter-spacing:-0.806400pt;}
.ls60{letter-spacing:-0.793600pt;}
.ls55{letter-spacing:-0.710400pt;}
.ls5d{letter-spacing:-0.701867pt;}
.ls22{letter-spacing:-0.364800pt;}
.lsc{letter-spacing:-0.340800pt;}
.lsa0{letter-spacing:-0.328533pt;}
.lsbd{letter-spacing:-0.320000pt;}
.ls57{letter-spacing:-0.297600pt;}
.ls64{letter-spacing:-0.290133pt;}
.ls75{letter-spacing:-0.288000pt;}
.ls71{letter-spacing:-0.275200pt;}
.ls84{letter-spacing:-0.268800pt;}
.ls61{letter-spacing:-0.266667pt;}
.ls1c{letter-spacing:-0.256000pt;}
.ls33{letter-spacing:-0.249600pt;}
.lsc1{letter-spacing:-0.245333pt;}
.ls3{letter-spacing:-0.238933pt;}
.ls93{letter-spacing:-0.231467pt;}
.ls82{letter-spacing:-0.217600pt;}
.ls85{letter-spacing:-0.211200pt;}
.ls1a{letter-spacing:-0.204800pt;}
.ls52{letter-spacing:-0.201600pt;}
.ls1d{letter-spacing:-0.192000pt;}
.ls68{letter-spacing:-0.182400pt;}
.ls76{letter-spacing:-0.179200pt;}
.ls5f{letter-spacing:-0.170667pt;}
.ls6a{letter-spacing:-0.163200pt;}
.lsc0{letter-spacing:-0.160000pt;}
.ls9a{letter-spacing:-0.149333pt;}
.ls80{letter-spacing:-0.147200pt;}
.ls63{letter-spacing:-0.136533pt;}
.ls7d{letter-spacing:-0.128000pt;}
.ls24{letter-spacing:-0.124800pt;}
.ls1{letter-spacing:-0.119467pt;}
.ls12{letter-spacing:-0.115200pt;}
.lsbc{letter-spacing:-0.106667pt;}
.ls9{letter-spacing:-0.102400pt;}
.ls14{letter-spacing:-0.089600pt;}
.ls35{letter-spacing:-0.085333pt;}
.ls89{letter-spacing:-0.083200pt;}
.ls39{letter-spacing:-0.076800pt;}
.ls2d{letter-spacing:-0.053333pt;}
.ls7{letter-spacing:-0.051200pt;}
.ls2{letter-spacing:-0.044800pt;}
.ls1b{letter-spacing:-0.038400pt;}
.ls4d{letter-spacing:-0.037333pt;}
.ls28{letter-spacing:-0.034133pt;}
.ls45{letter-spacing:-0.032000pt;}
.ls25{letter-spacing:-0.028800pt;}
.ls2f{letter-spacing:-0.025600pt;}
.ls96{letter-spacing:-0.023467pt;}
.ls5b{letter-spacing:-0.022400pt;}
.ls43{letter-spacing:-0.019200pt;}
.ls4c{letter-spacing:-0.014933pt;}
.lsd{letter-spacing:-0.014400pt;}
.ls88{letter-spacing:-0.012800pt;}
.ls8f{letter-spacing:-0.011733pt;}
.ls3d{letter-spacing:-0.009600pt;}
.ls2a{letter-spacing:-0.008533pt;}
.ls6{letter-spacing:-0.007467pt;}
.ls44{letter-spacing:-0.006400pt;}
.ls97{letter-spacing:-0.005867pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9d{letter-spacing:0.005867pt;}
.ls4b{letter-spacing:0.007467pt;}
.ls27{letter-spacing:0.008533pt;}
.ls95{letter-spacing:0.011733pt;}
.ls42{letter-spacing:0.012800pt;}
.ls29{letter-spacing:0.017067pt;}
.ls8a{letter-spacing:0.017600pt;}
.ls40{letter-spacing:0.019200pt;}
.ls5a{letter-spacing:0.022400pt;}
.ls13{letter-spacing:0.025600pt;}
.ls34{letter-spacing:0.026667pt;}
.ls21{letter-spacing:0.028800pt;}
.ls8b{letter-spacing:0.029333pt;}
.ls59{letter-spacing:0.029867pt;}
.ls41{letter-spacing:0.032000pt;}
.ls2b{letter-spacing:0.034133pt;}
.ls4f{letter-spacing:0.038400pt;}
.ls3a{letter-spacing:0.048000pt;}
.ls2c{letter-spacing:0.051200pt;}
.ls4a{letter-spacing:0.053333pt;}
.ls11{letter-spacing:0.064000pt;}
.ls38{letter-spacing:0.067200pt;}
.lsb5{letter-spacing:0.070400pt;}
.ls69{letter-spacing:0.076800pt;}
.ls36{letter-spacing:0.085333pt;}
.ls50{letter-spacing:0.086400pt;}
.ls19{letter-spacing:0.089600pt;}
.ls3e{letter-spacing:0.096000pt;}
.ls74{letter-spacing:0.102400pt;}
.lse{letter-spacing:0.110400pt;}
.ls30{letter-spacing:0.115200pt;}
.ls15{letter-spacing:0.128000pt;}
.ls91{letter-spacing:0.134400pt;}
.ls6f{letter-spacing:0.147200pt;}
.lsb{letter-spacing:0.148800pt;}
.lsa{letter-spacing:0.149333pt;}
.lsbb{letter-spacing:0.160000pt;}
.ls51{letter-spacing:0.163200pt;}
.ls16{letter-spacing:0.192000pt;}
.ls31{letter-spacing:0.194133pt;}
.ls66{letter-spacing:0.196267pt;}
.ls2e{letter-spacing:0.202667pt;}
.ls8{letter-spacing:0.204800pt;}
.ls78{letter-spacing:0.211200pt;}
.ls62{letter-spacing:0.213333pt;}
.ls90{letter-spacing:0.216533pt;}
.ls6c{letter-spacing:0.217600pt;}
.lsaf{letter-spacing:0.231467pt;}
.ls8e{letter-spacing:0.238933pt;}
.ls17{letter-spacing:0.243200pt;}
.lsbf{letter-spacing:0.245333pt;}
.ls26{letter-spacing:0.249600pt;}
.ls18{letter-spacing:0.253867pt;}
.ls1e{letter-spacing:0.256000pt;}
.ls53{letter-spacing:0.259200pt;}
.ls9e{letter-spacing:0.262400pt;}
.lsbe{letter-spacing:0.266667pt;}
.ls54{letter-spacing:0.268800pt;}
.ls7b{letter-spacing:0.275200pt;}
.ls5{letter-spacing:0.276267pt;}
.ls72{letter-spacing:0.281600pt;}
.ls32{letter-spacing:0.297600pt;}
.ls7c{letter-spacing:0.300800pt;}
.ls6b{letter-spacing:0.307200pt;}
.ls8d{letter-spacing:0.308800pt;}
.ls0{letter-spacing:0.313600pt;}
.ls5e{letter-spacing:0.315733pt;}
.ls1f{letter-spacing:0.320000pt;}
.ls94{letter-spacing:0.321067pt;}
.ls7f{letter-spacing:0.345600pt;}
.lsb9{letter-spacing:0.373333pt;}
.lsa2{letter-spacing:11.861333pt;}
.ls7e{letter-spacing:14.341333pt;}
.lsb0{letter-spacing:14.416000pt;}
.ls8c{letter-spacing:16.533333pt;}
.ls67{letter-spacing:22.016000pt;}
.lsba{letter-spacing:37.226667pt;}
.lsa1{letter-spacing:86.013333pt;}
.lsb8{letter-spacing:151.466667pt;}
.lsb7{letter-spacing:1112.111467pt;}
.lsb6{letter-spacing:1191.112533pt;}
.ws121{word-spacing:-86.072000pt;}
.ws15{word-spacing:-40.192000pt;}
.ws2a{word-spacing:-40.128000pt;}
.ws27{word-spacing:-40.064000pt;}
.ws1e{word-spacing:-39.974400pt;}
.ws1d{word-spacing:-39.948800pt;}
.ws5b{word-spacing:-39.808000pt;}
.ws32{word-spacing:-37.593600pt;}
.ws70{word-spacing:-37.504000pt;}
.ws132{word-spacing:-37.286400pt;}
.ws15f{word-spacing:-37.248000pt;}
.ws150{word-spacing:-33.546667pt;}
.ws13a{word-spacing:-33.386667pt;}
.ws164{word-spacing:-33.280000pt;}
.ws13f{word-spacing:-33.194667pt;}
.ws170{word-spacing:-33.120000pt;}
.ws146{word-spacing:-33.066667pt;}
.ws7a{word-spacing:-31.338667pt;}
.ws44{word-spacing:-30.076800pt;}
.ws43{word-spacing:-30.048000pt;}
.ws46{word-spacing:-29.923200pt;}
.ws45{word-spacing:-29.683200pt;}
.ws42{word-spacing:-28.531200pt;}
.ws79{word-spacing:-28.128000pt;}
.ws7c{word-spacing:-26.666667pt;}
.ws7b{word-spacing:-22.720000pt;}
.ws1{word-spacing:-21.877333pt;}
.ws0{word-spacing:-21.869867pt;}
.ws77{word-spacing:-18.860800pt;}
.ws4{word-spacing:-18.752000pt;}
.ws3{word-spacing:-18.700800pt;}
.ws73{word-spacing:-18.666667pt;}
.ws5{word-spacing:-18.649600pt;}
.ws7{word-spacing:-14.212800pt;}
.ws8{word-spacing:-14.064000pt;}
.ws9{word-spacing:-14.049600pt;}
.ws163{word-spacing:-1.066667pt;}
.ws15d{word-spacing:-0.848000pt;}
.ws41{word-spacing:-0.549333pt;}
.ws13c{word-spacing:-0.480000pt;}
.wse2{word-spacing:-0.409600pt;}
.ws71{word-spacing:-0.404267pt;}
.wsc9{word-spacing:-0.401067pt;}
.wsfa{word-spacing:-0.395733pt;}
.wsca{word-spacing:-0.392533pt;}
.ws115{word-spacing:-0.384000pt;}
.wsa9{word-spacing:-0.364800pt;}
.wsa5{word-spacing:-0.355200pt;}
.wsd0{word-spacing:-0.345600pt;}
.wsdf{word-spacing:-0.339200pt;}
.ws6a{word-spacing:-0.336267pt;}
.ws116{word-spacing:-0.326400pt;}
.wsee{word-spacing:-0.324267pt;}
.wsde{word-spacing:-0.313600pt;}
.wsd8{word-spacing:-0.307200pt;}
.ws12f{word-spacing:-0.306133pt;}
.ws15e{word-spacing:-0.298667pt;}
.ws2{word-spacing:-0.293333pt;}
.wsf5{word-spacing:-0.291200pt;}
.wsc0{word-spacing:-0.281600pt;}
.ws162{word-spacing:-0.277333pt;}
.wsda{word-spacing:-0.275200pt;}
.wsa1{word-spacing:-0.259200pt;}
.ws16a{word-spacing:-0.250667pt;}
.ws12e{word-spacing:-0.224000pt;}
.wsd6{word-spacing:-0.211200pt;}
.wsf6{word-spacing:-0.209067pt;}
.wsd3{word-spacing:-0.192000pt;}
.wsa0{word-spacing:-0.182400pt;}
.ws51{word-spacing:-0.179200pt;}
.wsc2{word-spacing:-0.172800pt;}
.wsd4{word-spacing:-0.166400pt;}
.ws7e{word-spacing:-0.163200pt;}
.ws9b{word-spacing:-0.160000pt;}
.ws6c{word-spacing:-0.148800pt;}
.ws80{word-spacing:-0.144000pt;}
.ws11a{word-spacing:-0.141867pt;}
.ws4f{word-spacing:-0.136533pt;}
.wsa3{word-spacing:-0.134400pt;}
.ws47{word-spacing:-0.128000pt;}
.ws4d{word-spacing:-0.119467pt;}
.wsa7{word-spacing:-0.115200pt;}
.ws6e{word-spacing:-0.110933pt;}
.wsb{word-spacing:-0.106667pt;}
.wsac{word-spacing:-0.104533pt;}
.ws4e{word-spacing:-0.102400pt;}
.wsae{word-spacing:-0.097067pt;}
.ws31{word-spacing:-0.096000pt;}
.ws6d{word-spacing:-0.094933pt;}
.ws48{word-spacing:-0.093867pt;}
.ws50{word-spacing:-0.089600pt;}
.wsf4{word-spacing:-0.088000pt;}
.wsb4{word-spacing:-0.086400pt;}
.wsa4{word-spacing:-0.085333pt;}
.ws9c{word-spacing:-0.082133pt;}
.ws4c{word-spacing:-0.076800pt;}
.wsf3{word-spacing:-0.076267pt;}
.ws100{word-spacing:-0.074667pt;}
.wsfe{word-spacing:-0.070400pt;}
.wsad{word-spacing:-0.067200pt;}
.ws114{word-spacing:-0.064533pt;}
.ws8f{word-spacing:-0.064000pt;}
.ws9d{word-spacing:-0.059733pt;}
.wsf0{word-spacing:-0.058667pt;}
.ws91{word-spacing:-0.057600pt;}
.ws56{word-spacing:-0.053333pt;}
.wsfd{word-spacing:-0.052800pt;}
.ws4b{word-spacing:-0.051200pt;}
.wsf1{word-spacing:-0.046933pt;}
.ws90{word-spacing:-0.044800pt;}
.ws93{word-spacing:-0.038400pt;}
.ws9e{word-spacing:-0.037333pt;}
.wsfc{word-spacing:-0.035200pt;}
.ws99{word-spacing:-0.032000pt;}
.ws13b{word-spacing:-0.026667pt;}
.ws96{word-spacing:-0.025600pt;}
.ws7f{word-spacing:-0.019200pt;}
.wsd1{word-spacing:-0.012800pt;}
.ws6f{word-spacing:-0.007467pt;}
.ws6{word-spacing:0.000000pt;}
.wsed{word-spacing:0.019200pt;}
.ws151{word-spacing:0.021333pt;}
.ws40{word-spacing:0.028800pt;}
.wsbc{word-spacing:0.034133pt;}
.ws10e{word-spacing:0.038400pt;}
.wsbd{word-spacing:0.051200pt;}
.wse1{word-spacing:0.064000pt;}
.wsc8{word-spacing:0.067200pt;}
.ws102{word-spacing:0.074667pt;}
.wse4{word-spacing:0.083200pt;}
.wsb2{word-spacing:0.085333pt;}
.wsc1{word-spacing:0.086400pt;}
.wsa2{word-spacing:0.105600pt;}
.wsd7{word-spacing:0.115200pt;}
.wsec{word-spacing:0.147200pt;}
.ws153{word-spacing:0.149333pt;}
.wse6{word-spacing:0.153600pt;}
.wsf9{word-spacing:0.156800pt;}
.ws15b{word-spacing:0.160000pt;}
.ws29{word-spacing:0.169600pt;}
.ws6b{word-spacing:0.185600pt;}
.wsf7{word-spacing:0.194133pt;}
.ws3f{word-spacing:0.197120pt;}
.wsaa{word-spacing:0.201600pt;}
.ws161{word-spacing:0.202667pt;}
.wsbe{word-spacing:0.204800pt;}
.wsdb{word-spacing:0.211200pt;}
.ws28{word-spacing:0.213493pt;}
.wsd5{word-spacing:0.224000pt;}
.ws119{word-spacing:0.253867pt;}
.ws16b{word-spacing:0.266667pt;}
.ws152{word-spacing:0.480000pt;}
.ws15a{word-spacing:0.533333pt;}
.wsa6{word-spacing:0.614400pt;}
.wsb0{word-spacing:0.627200pt;}
.wsb3{word-spacing:0.708267pt;}
.ws15c{word-spacing:0.720000pt;}
.wsd2{word-spacing:0.742400pt;}
.ws118{word-spacing:0.768000pt;}
.wsa{word-spacing:0.819200pt;}
.ws131{word-spacing:0.876800pt;}
.ws101{word-spacing:0.896000pt;}
.wsff{word-spacing:0.940800pt;}
.ws10c{word-spacing:0.972800pt;}
.wsaf{word-spacing:0.978133pt;}
.wsce{word-spacing:0.998400pt;}
.wsea{word-spacing:1.024000pt;}
.ws126{word-spacing:1.032533pt;}
.ws11c{word-spacing:1.082667pt;}
.wseb{word-spacing:1.107200pt;}
.ws12d{word-spacing:1.113600pt;}
.ws128{word-spacing:1.138133pt;}
.wsc{word-spacing:1.205333pt;}
.ws123{word-spacing:1.237867pt;}
.ws12b{word-spacing:1.314133pt;}
.ws122{word-spacing:1.337600pt;}
.ws124{word-spacing:1.343467pt;}
.ws12a{word-spacing:1.402133pt;}
.ws125{word-spacing:1.507733pt;}
.ws3c{word-spacing:1.621333pt;}
.ws127{word-spacing:1.625067pt;}
.wscb{word-spacing:1.646933pt;}
.ws129{word-spacing:1.713067pt;}
.ws38{word-spacing:1.957333pt;}
.ws3d{word-spacing:1.984000pt;}
.ws3b{word-spacing:2.093867pt;}
.ws39{word-spacing:2.120533pt;}
.wsa8{word-spacing:2.121600pt;}
.ws37{word-spacing:2.181120pt;}
.ws3e{word-spacing:2.239467pt;}
.ws3a{word-spacing:2.293333pt;}
.wsab{word-spacing:2.553600pt;}
.wsdc{word-spacing:2.867200pt;}
.ws97{word-spacing:3.052800pt;}
.ws142{word-spacing:3.130667pt;}
.ws11b{word-spacing:3.148800pt;}
.ws13e{word-spacing:3.173333pt;}
.ws13d{word-spacing:3.200000pt;}
.wsf8{word-spacing:3.248000pt;}
.ws109{word-spacing:3.372800pt;}
.ws2b{word-spacing:3.424160pt;}
.ws2f{word-spacing:3.477333pt;}
.ws145{word-spacing:3.658667pt;}
.ws2c{word-spacing:3.710933pt;}
.wsdd{word-spacing:3.744000pt;}
.ws2e{word-spacing:3.756267pt;}
.ws143{word-spacing:3.760000pt;}
.ws2d{word-spacing:3.873067pt;}
.ws140{word-spacing:3.877333pt;}
.ws144{word-spacing:3.962667pt;}
.ws9f{word-spacing:4.002133pt;}
.wsbf{word-spacing:4.032000pt;}
.ws141{word-spacing:4.160000pt;}
.wsd{word-spacing:4.702720pt;}
.wse7{word-spacing:4.755200pt;}
.ws12{word-spacing:4.784000pt;}
.wsf{word-spacing:4.920533pt;}
.ws10{word-spacing:4.984533pt;}
.wse{word-spacing:5.076267pt;}
.ws14{word-spacing:5.118933pt;}
.ws11{word-spacing:5.146667pt;}
.ws13{word-spacing:5.364267pt;}
.wse5{word-spacing:5.395200pt;}
.ws98{word-spacing:5.427200pt;}
.ws95{word-spacing:5.529600pt;}
.wsd9{word-spacing:6.003200pt;}
.ws65{word-spacing:6.344000pt;}
.ws69{word-spacing:6.362133pt;}
.ws68{word-spacing:6.390933pt;}
.ws62{word-spacing:6.428000pt;}
.ws66{word-spacing:6.463467pt;}
.ws9a{word-spacing:6.566400pt;}
.ws64{word-spacing:6.627200pt;}
.ws67{word-spacing:6.636800pt;}
.ws63{word-spacing:6.806933pt;}
.ws8e{word-spacing:8.550400pt;}
.ws157{word-spacing:9.056000pt;}
.ws58{word-spacing:9.076800pt;}
.ws154{word-spacing:9.093333pt;}
.ws159{word-spacing:9.098667pt;}
.ws16d{word-spacing:9.370667pt;}
.ws57{word-spacing:9.504267pt;}
.ws5c{word-spacing:9.530667pt;}
.ws155{word-spacing:9.541333pt;}
.ws16c{word-spacing:9.616000pt;}
.ws16e{word-spacing:9.674667pt;}
.ws156{word-spacing:9.813333pt;}
.ws158{word-spacing:9.840000pt;}
.ws59{word-spacing:9.866667pt;}
.ws5d{word-spacing:9.965867pt;}
.ws5a{word-spacing:10.116800pt;}
.ws16f{word-spacing:10.746667pt;}
.ws138{word-spacing:13.162667pt;}
.ws133{word-spacing:13.306667pt;}
.ws135{word-spacing:13.360000pt;}
.ws106{word-spacing:13.806933pt;}
.ws136{word-spacing:13.808000pt;}
.ws134{word-spacing:13.877333pt;}
.ws137{word-spacing:13.946667pt;}
.ws139{word-spacing:14.346667pt;}
.ws92{word-spacing:14.413867pt;}
.ws94{word-spacing:14.426667pt;}
.ws10b{word-spacing:14.585600pt;}
.ws10d{word-spacing:14.744533pt;}
.ws107{word-spacing:15.004800pt;}
.wse9{word-spacing:15.033600pt;}
.ws10a{word-spacing:15.165867pt;}
.wse8{word-spacing:15.270400pt;}
.ws117{word-spacing:15.270453pt;}
.ws108{word-spacing:15.298133pt;}
.wsb1{word-spacing:18.421280pt;}
.ws1a{word-spacing:20.080000pt;}
.ws18{word-spacing:20.425600pt;}
.ws19{word-spacing:20.493867pt;}
.ws16{word-spacing:20.647253pt;}
.ws1b{word-spacing:20.649600pt;}
.ws1c{word-spacing:20.662400pt;}
.ws17{word-spacing:20.700800pt;}
.wsc6{word-spacing:21.399467pt;}
.wsc3{word-spacing:21.721440pt;}
.wsc4{word-spacing:21.878400pt;}
.wsc7{word-spacing:21.922133pt;}
.wsc5{word-spacing:22.693333pt;}
.wsba{word-spacing:23.466667pt;}
.wsb9{word-spacing:23.669333pt;}
.wsb8{word-spacing:23.706667pt;}
.wsb5{word-spacing:24.053547pt;}
.wsb6{word-spacing:24.106667pt;}
.wsb7{word-spacing:24.128000pt;}
.wsbb{word-spacing:24.187200pt;}
.ws30{word-spacing:33.510400pt;}
.ws111{word-spacing:35.722667pt;}
.ws14e{word-spacing:35.952000pt;}
.ws14a{word-spacing:36.053333pt;}
.ws148{word-spacing:36.266667pt;}
.ws14f{word-spacing:36.469333pt;}
.ws147{word-spacing:36.730667pt;}
.ws14b{word-spacing:36.773333pt;}
.ws149{word-spacing:36.986667pt;}
.ws14c{word-spacing:37.221333pt;}
.ws14d{word-spacing:37.280000pt;}
.ws169{word-spacing:43.946667pt;}
.ws167{word-spacing:44.704000pt;}
.ws168{word-spacing:44.933333pt;}
.ws166{word-spacing:45.301333pt;}
.ws165{word-spacing:45.413333pt;}
.ws120{word-spacing:46.987733pt;}
.ws11f{word-spacing:46.988267pt;}
.wsfb{word-spacing:57.002133pt;}
.ws104{word-spacing:59.449600pt;}
.ws21{word-spacing:59.457067pt;}
.ws23{word-spacing:59.738667pt;}
.ws1f{word-spacing:59.850827pt;}
.ws22{word-spacing:59.964267pt;}
.ws20{word-spacing:60.173333pt;}
.ws25{word-spacing:62.782933pt;}
.ws24{word-spacing:62.810667pt;}
.ws26{word-spacing:62.859733pt;}
.ws160{word-spacing:65.589333pt;}
.ws11e{word-spacing:71.974720pt;}
.ws110{word-spacing:72.859733pt;}
.ws105{word-spacing:76.874667pt;}
.ws5f{word-spacing:84.677867pt;}
.ws61{word-spacing:84.685333pt;}
.ws5e{word-spacing:84.860000pt;}
.ws60{word-spacing:84.980267pt;}
.ws36{word-spacing:96.775467pt;}
.ws34{word-spacing:96.782933pt;}
.ws35{word-spacing:96.811733pt;}
.ws33{word-spacing:96.853120pt;}
.ws10f{word-spacing:108.475733pt;}
.wse3{word-spacing:123.254933pt;}
.ws112{word-spacing:137.184373pt;}
.ws113{word-spacing:137.184533pt;}
.ws130{word-spacing:138.105067pt;}
.wsf2{word-spacing:142.783467pt;}
.ws55{word-spacing:159.123733pt;}
.ws49{word-spacing:180.184320pt;}
.ws103{word-spacing:184.193067pt;}
.ws76{word-spacing:186.522667pt;}
.ws11d{word-spacing:192.751467pt;}
.ws4a{word-spacing:211.538133pt;}
.ws12c{word-spacing:254.302453pt;}
.ws78{word-spacing:278.242667pt;}
.ws52{word-spacing:300.011733pt;}
.ws8b{word-spacing:311.007040pt;}
.ws54{word-spacing:321.858133pt;}
.ws72{word-spacing:328.353600pt;}
.ws7d{word-spacing:353.177600pt;}
.wsef{word-spacing:358.890667pt;}
.ws53{word-spacing:365.962133pt;}
.ws74{word-spacing:369.581867pt;}
.ws8c{word-spacing:403.936640pt;}
.ws85{word-spacing:406.541333pt;}
.ws81{word-spacing:422.674133pt;}
.ws87{word-spacing:440.684480pt;}
.ws83{word-spacing:447.852373pt;}
.ws89{word-spacing:450.386773pt;}
.ws75{word-spacing:477.532800pt;}
.wscd{word-spacing:580.969600pt;}
.wscc{word-spacing:607.787733pt;}
.wse0{word-spacing:607.931200pt;}
.ws84{word-spacing:666.495467pt;}
.ws86{word-spacing:666.519467pt;}
.ws82{word-spacing:690.829333pt;}
.ws8a{word-spacing:715.162667pt;}
.ws88{word-spacing:727.186133pt;}
.wscf{word-spacing:732.684267pt;}
.ws8d{word-spacing:775.828800pt;}
._44{margin-left:-13.333333pt;}
._38{margin-left:-10.608000pt;}
._2d{margin-left:-8.897067pt;}
._2{margin-left:-7.674667pt;}
._7{margin-left:-6.394667pt;}
._10{margin-left:-5.435733pt;}
._4b{margin-left:-4.010667pt;}
._6{margin-left:-2.901333pt;}
._0{margin-left:-1.194667pt;}
._1{width:1.018667pt;}
._3{width:2.122667pt;}
._41{width:3.760000pt;}
._48{width:4.672000pt;}
._47{width:5.632000pt;}
._46{width:7.232000pt;}
._4{width:8.640000pt;}
._5{width:9.600000pt;}
._4d{width:34.453333pt;}
._4e{width:44.138667pt;}
._4a{width:71.915200pt;}
._49{width:86.781333pt;}
._1b{width:161.861333pt;}
._24{width:163.901867pt;}
._4c{width:177.942080pt;}
._15{width:185.136000pt;}
._16{width:190.345600pt;}
._e{width:196.433600pt;}
._1c{width:203.802667pt;}
._d{width:205.189333pt;}
._11{width:222.913067pt;}
._20{width:223.856000pt;}
._33{width:237.450667pt;}
._a{width:239.856000pt;}
._32{width:260.240800pt;}
._1a{width:262.963360pt;}
._36{width:278.242667pt;}
._1f{width:297.682667pt;}
._18{width:319.181333pt;}
._28{width:327.125920pt;}
._12{width:334.679467pt;}
._19{width:339.569067pt;}
._21{width:341.527467pt;}
._26{width:351.469333pt;}
._23{width:361.818667pt;}
._2a{width:362.909333pt;}
._1e{width:379.536693pt;}
._1d{width:387.678933pt;}
._17{width:401.296693pt;}
._27{width:408.345600pt;}
._29{width:427.459253pt;}
._22{width:443.630027pt;}
._f{width:448.582133pt;}
._25{width:451.963360pt;}
._9{width:473.338667pt;}
._14{width:481.712000pt;}
._c{width:484.168000pt;}
._2e{width:514.482667pt;}
._b{width:562.008800pt;}
._34{width:581.357920pt;}
._13{width:601.870027pt;}
._35{width:604.002667pt;}
._2c{width:622.669333pt;}
._31{width:641.336000pt;}
._2b{width:642.883467pt;}
._30{width:667.536693pt;}
._8{width:680.070027pt;}
._2f{width:704.614027pt;}
._39{width:721.031467pt;}
._43{width:816.378133pt;}
._3c{width:842.900800pt;}
._3b{width:928.314133pt;}
._3a{width:939.730133pt;}
._42{width:958.274133pt;}
._3f{width:1014.279467pt;}
._45{width:1067.380800pt;}
._40{width:1130.620800pt;}
._3d{width:1134.202133pt;}
._3e{width:1183.015467pt;}
._37{width:1364.020800pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:53.333333pt;}
.fsa{font-size:58.666667pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs8{font-size:85.333333pt;}
.fs1{font-size:96.000000pt;}
.fs7{font-size:106.666667pt;}
.fs6{font-size:128.000000pt;}
.fs0{font-size:149.333333pt;}
.y0{bottom:0.000000pt;}
.yef{bottom:2.354736pt;}
.y1e3{bottom:4.235600pt;}
.y1d3{bottom:4.235693pt;}
.y1d5{bottom:4.235707pt;}
.y1d9{bottom:4.235733pt;}
.y1a2{bottom:6.227493pt;}
.y13b{bottom:6.417733pt;}
.y12e{bottom:6.417867pt;}
.y58{bottom:6.526367pt;}
.y9{bottom:7.031005pt;}
.y1cc{bottom:9.078000pt;}
.y15c{bottom:9.647467pt;}
.y187{bottom:12.317887pt;}
.yee{bottom:13.981440pt;}
.y12c{bottom:14.568267pt;}
.y1a5{bottom:15.022627pt;}
.y195{bottom:15.249067pt;}
.y1d1{bottom:17.284467pt;}
.y6b{bottom:17.779707pt;}
.y1ba{bottom:17.948213pt;}
.y120{bottom:18.487547pt;}
.y11b{bottom:19.588000pt;}
.y1a1{bottom:24.894160pt;}
.yf0{bottom:25.021400pt;}
.y1c7{bottom:27.389067pt;}
.yb5{bottom:27.496907pt;}
.y154{bottom:27.971867pt;}
.y1d0{bottom:28.000000pt;}
.y1a4{bottom:32.355960pt;}
.y66{bottom:32.806320pt;}
.y185{bottom:33.104547pt;}
.y194{bottom:33.915733pt;}
.y196{bottom:33.915867pt;}
.y57{bottom:35.692867pt;}
.y11f{bottom:35.820880pt;}
.y1a0{bottom:36.413080pt;}
.y11a{bottom:37.101867pt;}
.y1b8{bottom:38.734920pt;}
.y217{bottom:40.627907pt;}
.y1e6{bottom:46.210933pt;}
.y13c{bottom:46.831200pt;}
.yed{bottom:46.994747pt;}
.y28{bottom:47.472733pt;}
.y19b{bottom:50.666667pt;}
.y1a3{bottom:51.022627pt;}
.y18c{bottom:52.234933pt;}
.yb4{bottom:52.830240pt;}
.y19f{bottom:53.746413pt;}
.y183{bottom:53.891213pt;}
.y11e{bottom:54.487547pt;}
.y155{bottom:55.107733pt;}
.y1cd{bottom:55.754533pt;}
.y119{bottom:55.768533pt;}
.y1c8{bottom:56.065333pt;}
.y6a{bottom:57.010827pt;}
.y1b7{bottom:59.521587pt;}
.y162{bottom:60.405600pt;}
.y215{bottom:61.414613pt;}
.y56{bottom:64.859373pt;}
.y1e7{bottom:66.033280pt;}
.y24a{bottom:66.254680pt;}
.y20e{bottom:67.146613pt;}
.y17e{bottom:67.146627pt;}
.yf5{bottom:67.146667pt;}
.y188{bottom:67.146673pt;}
.y186{bottom:67.146680pt;}
.y1b4{bottom:67.146693pt;}
.y1b2{bottom:67.146707pt;}
.y211{bottom:67.146733pt;}
.y100{bottom:67.146800pt;}
.yec{bottom:68.328080pt;}
.y1d2{bottom:68.436013pt;}
.y11d{bottom:70.666667pt;}
.y18d{bottom:70.982533pt;}
.y13d{bottom:70.987867pt;}
.y19e{bottom:72.413080pt;}
.y78{bottom:73.771240pt;}
.y112{bottom:74.032933pt;}
.y41{bottom:74.170333pt;}
.y182{bottom:74.677907pt;}
.y19{bottom:75.033280pt;}
.y1ce{bottom:77.864800pt;}
.yb3{bottom:78.163573pt;}
.y189{bottom:79.464560pt;}
.y1b6{bottom:80.308240pt;}
.y161{bottom:81.504133pt;}
.y213{bottom:82.201267pt;}
.y156{bottom:82.243467pt;}
.y88{bottom:83.803787pt;}
.y1c9{bottom:84.741733pt;}
.yc7{bottom:84.876827pt;}
.y1bb{bottom:85.094893pt;}
.y1e8{bottom:85.855760pt;}
.y1d4{bottom:88.258480pt;}
.y18e{bottom:89.730133pt;}
.y24{bottom:90.849853pt;}
.yeb{bottom:90.994747pt;}
.y55{bottom:94.025880pt;}
.y13e{bottom:95.144667pt;}
.y180{bottom:95.464573pt;}
.y69{bottom:96.241907pt;}
.y249{bottom:98.254680pt;}
.y225{bottom:98.400840pt;}
.y1c1{bottom:100.442227pt;}
.y1b3{bottom:101.094907pt;}
.y67{bottom:102.666613pt;}
.y210{bottom:102.987933pt;}
.y40{bottom:103.503667pt;}
.y1e9{bottom:105.678267pt;}
.y1b9{bottom:105.881587pt;}
.y1d6{bottom:108.080827pt;}
.y18f{bottom:108.477867pt;}
.y113{bottom:108.822533pt;}
.y157{bottom:109.379333pt;}
.yba{bottom:111.649787pt;}
.yea{bottom:112.328080pt;}
.y1ca{bottom:113.418000pt;}
.y129{bottom:113.462560pt;}
.y18{bottom:113.699947pt;}
.y90{bottom:114.812213pt;}
.y198{bottom:114.899333pt;}
.y23b{bottom:114.953160pt;}
.y17d{bottom:116.251240pt;}
.y214{bottom:118.167933pt;}
.y13f{bottom:119.301333pt;}
.y87{bottom:120.907920pt;}
.y184{bottom:121.037880pt;}
.yb2{bottom:121.156533pt;}
.y1b1{bottom:121.881560pt;}
.yc8{bottom:122.223187pt;}
.y54{bottom:123.192387pt;}
.y77{bottom:123.651973pt;}
.y230{bottom:123.727867pt;}
.y20d{bottom:123.774587pt;}
.ye5{bottom:124.381427pt;}
.y1ea{bottom:125.500533pt;}
.y1c0{bottom:125.775560pt;}
.y190{bottom:127.225467pt;}
.y1d7{bottom:127.903307pt;}
.y216{bottom:128.561280pt;}
.y23{bottom:129.516520pt;}
.y248{bottom:130.254680pt;}
.y20a{bottom:134.167867pt;}
.ye9{bottom:134.994800pt;}
.y108{bottom:135.144933pt;}
.y68{bottom:135.472933pt;}
.y158{bottom:136.515200pt;}
.y17c{bottom:137.037867pt;}
.y224{bottom:137.067467pt;}
.y160{bottom:137.297333pt;}
.yd0{bottom:137.973333pt;}
.y1cf{bottom:138.780000pt;}
.y128{bottom:138.795867pt;}
.y1d{bottom:140.615467pt;}
.y15d{bottom:141.559467pt;}
.y1cb{bottom:142.094400pt;}
.y1b0{bottom:142.668267pt;}
.y140{bottom:143.458133pt;}
.y114{bottom:143.612267pt;}
.yb9{bottom:143.649733pt;}
.y8f{bottom:144.145600pt;}
.y20b{bottom:144.561200pt;}
.y1eb{bottom:145.323067pt;}
.y191{bottom:145.973200pt;}
.y1a9{bottom:146.573200pt;}
.y197{bottom:147.696533pt;}
.y1d8{bottom:147.725733pt;}
.y1bf{bottom:151.108933pt;}
.y2e{bottom:152.221467pt;}
.y53{bottom:152.358933pt;}
.y23a{bottom:153.619867pt;}
.y101{bottom:155.931600pt;}
.y12b{bottom:156.000000pt;}
.ye8{bottom:156.328133pt;}
.y17b{bottom:157.824533pt;}
.y86{bottom:158.012133pt;}
.y2c{bottom:159.365733pt;}
.y20f{bottom:159.741200pt;}
.ycf{bottom:160.640000pt;}
.y247{bottom:162.254667pt;}
.y22f{bottom:162.394533pt;}
.y181{bottom:162.611200pt;}
.y1ae{bottom:163.454933pt;}
.y159{bottom:163.650933pt;}
.y192{bottom:164.720800pt;}
.y1ec{bottom:165.145467pt;}
.y1a8{bottom:165.239867pt;}
.y209{bottom:165.347867pt;}
.y127{bottom:165.462533pt;}
.y1da{bottom:167.548133pt;}
.y141{bottom:167.614800pt;}
.y1b5{bottom:168.241600pt;}
.y212{bottom:170.134667pt;}
.y8e{bottom:172.145600pt;}
.y1c4{bottom:173.368267pt;}
.y76{bottom:173.532667pt;}
.y65{bottom:174.704000pt;}
.y9a{bottom:174.805867pt;}
.y223{bottom:175.734133pt;}
.yff{bottom:176.718133pt;}
.y1be{bottom:177.775600pt;}
.y111{bottom:178.106667pt;}
.y115{bottom:178.401867pt;}
.y19d{bottom:178.417600pt;}
.y17a{bottom:178.611200pt;}
.y10e{bottom:178.919467pt;}
.ye7{bottom:178.994800pt;}
.y52{bottom:179.208800pt;}
.ya8{bottom:179.562000pt;}
.y22{bottom:180.183200pt;}
.y7{bottom:180.725067pt;}
.y2d{bottom:181.554800pt;}
.y1a7{bottom:182.573200pt;}
.y17f{bottom:183.397867pt;}
.y193{bottom:183.468533pt;}
.y1ed{bottom:184.967867pt;}
.y207{bottom:186.134533pt;}
.y1db{bottom:187.370533pt;}
.y2b{bottom:188.699067pt;}
.y51{bottom:189.342133pt;}
.y15a{bottom:190.786800pt;}
.y142{bottom:191.771467pt;}
.y1ab{bottom:192.174533pt;}
.y239{bottom:192.286533pt;}
.y246{bottom:194.254667pt;}
.y12d{bottom:194.537467pt;}
.y122{bottom:194.854133pt;}
.y85{bottom:195.116267pt;}
.y11{bottom:196.410133pt;}
.y19c{bottom:197.084267pt;}
.yfe{bottom:197.504800pt;}
.y178{bottom:199.397867pt;}
.y1c3{bottom:200.034933pt;}
.y22e{bottom:201.061200pt;}
.y1a6{bottom:201.239867pt;}
.y99{bottom:201.472533pt;}
.y8d{bottom:201.478933pt;}
.ye6{bottom:201.661467pt;}
.y109{bottom:202.291600pt;}
.y15f{bottom:203.173467pt;}
.y6{bottom:203.391733pt;}
.y1ee{bottom:204.790267pt;}
.y1dc{bottom:207.193067pt;}
.y10d{bottom:207.368933pt;}
.y199{bottom:208.042400pt;}
.yac{bottom:208.304000pt;}
.ya7{bottom:208.895333pt;}
.y1aa{bottom:210.841200pt;}
.y20c{bottom:211.707867pt;}
.y116{bottom:213.191467pt;}
.y121{bottom:213.520800pt;}
.y64{bottom:213.935067pt;}
.y222{bottom:214.400800pt;}
.y143{bottom:215.928267pt;}
.y15b{bottom:217.922667pt;}
.yfd{bottom:218.291600pt;}
.y12f{bottom:218.694267pt;}
.y37{bottom:218.940267pt;}
.y176{bottom:220.184533pt;}
.ye4{bottom:222.728133pt;}
.y6f{bottom:223.363600pt;}
.y75{bottom:223.413467pt;}
.y1ef{bottom:224.612667pt;}
.y10{bottom:225.743467pt;}
.y5{bottom:226.058400pt;}
.y245{bottom:226.254667pt;}
.yc6{bottom:226.307867pt;}
.y50{bottom:226.325333pt;}
.y1dd{bottom:227.015467pt;}
.y15e{bottom:229.053467pt;}
.y152{bottom:229.575067pt;}
.y1af{bottom:230.601600pt;}
.y1c{bottom:230.709333pt;}
.y8c{bottom:230.812267pt;}
.y21{bottom:230.849867pt;}
.y238{bottom:230.953200pt;}
.yca{bottom:231.707067pt;}
.y84{bottom:232.220400pt;}
.y10f{bottom:232.566933pt;}
.y34{bottom:234.693600pt;}
.ya6{bottom:236.895333pt;}
.y39{bottom:237.363467pt;}
.yfc{bottom:239.078267pt;}
.y70{bottom:239.626667pt;}
.y17{bottom:239.700000pt;}
.y22d{bottom:239.727867pt;}
.y144{bottom:240.084933pt;}
.y174{bottom:240.971200pt;}
.y130{bottom:242.851067pt;}
.y206{bottom:242.888000pt;}
.y1f0{bottom:244.435200pt;}
.y10c{bottom:245.333333pt;}
.ye3{bottom:245.394800pt;}
.y31{bottom:245.643467pt;}
.yab{bottom:245.964533pt;}
.y1de{bottom:246.837867pt;}
.y117{bottom:247.981200pt;}
.y4{bottom:248.725067pt;}
.y14f{bottom:251.728000pt;}
.y221{bottom:251.734133pt;}
.y63{bottom:253.166133pt;}
.y208{bottom:253.281200pt;}
.y36{bottom:254.940267pt;}
.yf{bottom:255.076800pt;}
.y4f{bottom:255.491867pt;}
.y110{bottom:256.139333pt;}
.y151{bottom:256.241733pt;}
.y33{bottom:257.360267pt;}
.y1bd{bottom:259.679200pt;}
.yfb{bottom:259.864933pt;}
.y8b{bottom:260.145600pt;}
.y172{bottom:261.757867pt;}
.y145{bottom:264.241733pt;}
.y1f1{bottom:264.257600pt;}
.y179{bottom:266.544533pt;}
.y1df{bottom:266.660267pt;}
.ye2{bottom:266.728133pt;}
.y131{bottom:267.007733pt;}
.ydf{bottom:267.901467pt;}
.y237{bottom:268.286533pt;}
.y83{bottom:269.324533pt;}
.y30{bottom:269.643467pt;}
.yc5{bottom:271.692133pt;}
.y38{bottom:272.030133pt;}
.y74{bottom:273.294133pt;}
.y1b{bottom:273.376000pt;}
.y16{bottom:277.033333pt;}
.y22c{bottom:277.061200pt;}
.y14e{bottom:277.061333pt;}
.y1bc{bottom:279.679200pt;}
.yfa{bottom:280.651600pt;}
.y32{bottom:281.360267pt;}
.y218{bottom:282.358800pt;}
.y171{bottom:282.544533pt;}
.y118{bottom:282.770800pt;}
.y20{bottom:282.849867pt;}
.y1f2{bottom:284.080000pt;}
.y4e{bottom:284.658400pt;}
.y244{bottom:284.854533pt;}
.y107{bottom:285.438267pt;}
.yaa{bottom:286.053733pt;}
.yb8{bottom:286.288933pt;}
.y1e0{bottom:286.482667pt;}
.y2a{bottom:286.866533pt;}
.y177{bottom:287.331200pt;}
.y146{bottom:288.398533pt;}
.y3f{bottom:288.597333pt;}
.ye1{bottom:289.394800pt;}
.y8a{bottom:289.478933pt;}
.y35{bottom:289.606933pt;}
.y1ad{bottom:289.918800pt;}
.y220{bottom:290.400800pt;}
.y132{bottom:291.164533pt;}
.y62{bottom:292.397200pt;}
.y153{bottom:300.000000pt;}
.y27{bottom:301.199733pt;}
.yf9{bottom:301.438267pt;}
.y14d{bottom:302.394667pt;}
.y170{bottom:303.331200pt;}
.y1f3{bottom:303.902400pt;}
.y93{bottom:303.915733pt;}
.y106{bottom:306.224933pt;}
.y1e1{bottom:306.305200pt;}
.y82{bottom:306.428667pt;}
.y236{bottom:306.953200pt;}
.y175{bottom:308.117867pt;}
.y1ac{bottom:309.918800pt;}
.ye0{bottom:312.061467pt;}
.y147{bottom:312.555200pt;}
.y133{bottom:315.321200pt;}
.y15{bottom:315.700000pt;}
.y22b{bottom:315.727867pt;}
.y29{bottom:316.199867pt;}
.y3e{bottom:317.930667pt;}
.ya3{bottom:319.420000pt;}
.yc4{bottom:319.992133pt;}
.y4d{bottom:321.346800pt;}
.yf8{bottom:322.224933pt;}
.y73{bottom:323.174933pt;}
.y1f4{bottom:323.724800pt;}
.y92{bottom:323.915733pt;}
.y16e{bottom:324.117867pt;}
.y1e2{bottom:326.127600pt;}
.y14c{bottom:327.728000pt;}
.y173{bottom:328.904533pt;}
.y21f{bottom:329.067467pt;}
.y11c{bottom:330.558267pt;}
.yb7{bottom:331.457467pt;}
.y61{bottom:331.628400pt;}
.yb{bottom:331.726933pt;}
.yde{bottom:333.128133pt;}
.y1f{bottom:333.516533pt;}
.ya9{bottom:333.894933pt;}
.y205{bottom:334.397867pt;}
.y81{bottom:334.989467pt;}
.y148{bottom:336.712000pt;}
.y1fd{bottom:337.344667pt;}
.y9d{bottom:337.858800pt;}
.ya0{bottom:338.867333pt;}
.y134{bottom:339.478000pt;}
.y18b{bottom:342.666667pt;}
.yf7{bottom:343.011600pt;}
.y1f5{bottom:343.547333pt;}
.y91{bottom:343.915733pt;}
.y16c{bottom:344.904533pt;}
.y235{bottom:345.619867pt;}
.y1e4{bottom:345.950000pt;}
.y242{bottom:347.048933pt;}
.y3d{bottom:347.264000pt;}
.ya2{bottom:348.753333pt;}
.y80{bottom:352.322800pt;}
.y14b{bottom:353.061333pt;}
.y22a{bottom:354.394533pt;}
.ydd{bottom:355.794800pt;}
.y4c{bottom:358.035200pt;}
.y1fc{bottom:358.131333pt;}
.y204{bottom:359.731200pt;}
.y9c{bottom:360.525467pt;}
.y9f{bottom:361.534000pt;}
.y135{bottom:363.634800pt;}
.yf6{bottom:363.798267pt;}
.yc3{bottom:364.541200pt;}
.y45{bottom:365.471333pt;}
.y16a{bottom:365.691200pt;}
.y1e5{bottom:365.772533pt;}
.y21e{bottom:367.734133pt;}
.y60{bottom:370.859467pt;}
.y72{bottom:373.055600pt;}
.ya1{bottom:376.753333pt;}
.ydc{bottom:377.128133pt;}
.yd9{bottom:378.301467pt;}
.y14a{bottom:378.394667pt;}
.y1fb{bottom:378.918000pt;}
.y241{bottom:379.048933pt;}
.y1a{bottom:380.617200pt;}
.y7f{bottom:380.636933pt;}
.yb6{bottom:381.284267pt;}
.y3{bottom:383.532800pt;}
.y234{bottom:384.286533pt;}
.y9b{bottom:384.525467pt;}
.yf4{bottom:384.584933pt;}
.y203{bottom:385.064533pt;}
.y9e{bottom:385.534133pt;}
.y168{bottom:386.477867pt;}
.y4b{bottom:387.201733pt;}
.y136{bottom:387.791467pt;}
.y105{bottom:389.371600pt;}
.y1c6{bottom:390.666667pt;}
.y16f{bottom:391.264533pt;}
.y229{bottom:393.061200pt;}
.y1fa{bottom:399.704667pt;}
.ydb{bottom:399.794800pt;}
.y44{bottom:404.138000pt;}
.y149{bottom:405.061333pt;}
.y102{bottom:405.371600pt;}
.y21d{bottom:406.400800pt;}
.yb1{bottom:406.441333pt;}
.y166{bottom:407.264533pt;}
.y7e{bottom:409.197733pt;}
.y5f{bottom:410.090533pt;}
.y202{bottom:410.397867pt;}
.y1c5{bottom:410.877067pt;}
.y240{bottom:411.048933pt;}
.y137{bottom:411.948267pt;}
.y16d{bottom:412.051200pt;}
.y4a{bottom:416.368267pt;}
.y14{bottom:419.701733pt;}
.yda{bottom:422.461467pt;}
.y233{bottom:422.953200pt;}
.yb0{bottom:426.441333pt;}
.y7d{bottom:426.531067pt;}
.y126{bottom:426.740133pt;}
.y164{bottom:428.051200pt;}
.y2{bottom:428.866133pt;}
.y104{bottom:430.944933pt;}
.y71{bottom:430.990267pt;}
.y228{bottom:431.727867pt;}
.y16b{bottom:432.837867pt;}
.y201{bottom:435.731200pt;}
.y138{bottom:436.104933pt;}
.yc2{bottom:436.784933pt;}
.y5c{bottom:437.390400pt;}
.y43{bottom:441.471333pt;}
.y23f{bottom:443.048933pt;}
.yd8{bottom:443.688133pt;}
.y21c{bottom:443.734133pt;}
.y49{bottom:445.534800pt;}
.y6e{bottom:446.430267pt;}
.yaf{bottom:446.441333pt;}
.y2f{bottom:447.366667pt;}
.y5e{bottom:449.321600pt;}
.y103{bottom:451.731600pt;}
.y125{bottom:452.073467pt;}
.y169{bottom:453.624533pt;}
.y7c{bottom:454.845200pt;}
.y13{bottom:457.035067pt;}
.y139{bottom:460.261733pt;}
.y232{bottom:460.286533pt;}
.yce{bottom:460.541467pt;}
.y200{bottom:461.064533pt;}
.yc1{bottom:466.118267pt;}
.yd7{bottom:466.354800pt;}
.y227{bottom:469.061200pt;}
.y5b{bottom:469.390400pt;}
.ye{bottom:471.503067pt;}
.yf3{bottom:472.518267pt;}
.y1f7{bottom:472.861333pt;}
.y1{bottom:472.866133pt;}
.y167{bottom:474.411200pt;}
.y23e{bottom:475.048933pt;}
.ybc{bottom:476.344800pt;}
.y124{bottom:477.406800pt;}
.y26{bottom:477.615600pt;}
.y42{bottom:480.138000pt;}
.y95{bottom:480.887200pt;}
.y1e{bottom:481.150000pt;}
.y21b{bottom:482.400800pt;}
.y48{bottom:483.142400pt;}
.y13a{bottom:484.418533pt;}
.y1f9{bottom:487.638000pt;}
.yd6{bottom:487.688133pt;}
.y1ff{bottom:487.731200pt;}
.y5d{bottom:488.552667pt;}
.ybd{bottom:489.064533pt;}
.y7b{bottom:491.949467pt;}
.y47{bottom:493.275733pt;}
.y165{bottom:495.197867pt;}
.yc0{bottom:495.451600pt;}
.y12{bottom:495.701733pt;}
.y231{bottom:498.953200pt;}
.y1f6{bottom:499.528000pt;}
.yd{bottom:500.836400pt;}
.y94{bottom:500.887200pt;}
.y5a{bottom:501.390400pt;}
.ybb{bottom:501.678133pt;}
.y123{bottom:504.073467pt;}
.y98{bottom:504.086933pt;}
.y23d{bottom:507.048933pt;}
.y226{bottom:507.727867pt;}
.y1fe{bottom:509.155733pt;}
.yd5{bottom:510.354800pt;}
.y19a{bottom:510.410933pt;}
.yd1{bottom:510.781467pt;}
.yf2{bottom:512.370933pt;}
.y10a{bottom:513.946933pt;}
.y25{bottom:516.282267pt;}
.y3c{bottom:517.707467pt;}
.y21a{bottom:521.067467pt;}
.ybf{bottom:523.451600pt;}
.y163{bottom:524.275467pt;}
.y7a{bottom:529.053600pt;}
.yc{bottom:530.169733pt;}
.yd4{bottom:531.688133pt;}
.y97{bottom:533.420267pt;}
.y12a{bottom:534.675467pt;}
.y6d{bottom:534.976133pt;}
.y23c{bottom:539.048933pt;}
.y46{bottom:540.467200pt;}
.ya5{bottom:542.250533pt;}
.y150{bottom:546.955200pt;}
.y3b{bottom:547.040800pt;}
.y59{bottom:548.701467pt;}
.yd3{bottom:554.354800pt;}
.y10b{bottom:557.355200pt;}
.y1c2{bottom:562.074933pt;}
.y79{bottom:566.157733pt;}
.y18a{bottom:566.955200pt;}
.y96{bottom:569.420267pt;}
.ya4{bottom:570.250533pt;}
.y219{bottom:572.736400pt;}
.y3a{bottom:576.374133pt;}
.yd2{bottom:577.021467pt;}
.yae{bottom:582.781200pt;}
.y243{bottom:585.356267pt;}
.ybe{bottom:591.825867pt;}
.yc9{bottom:596.734133pt;}
.y1f8{bottom:597.548800pt;}
.ycd{bottom:598.514800pt;}
.yad{bottom:602.781200pt;}
.ycc{bottom:610.141467pt;}
.y8{bottom:611.356267pt;}
.yf1{bottom:620.228400pt;}
.ycb{bottom:643.261467pt;}
.y89{bottom:656.162133pt;}
.ya{bottom:657.317200pt;}
.y6c{bottom:705.066667pt;}
.h2f{height:18.044720pt;}
.h28{height:21.595693pt;}
.h18{height:38.828125pt;}
.h5{height:42.687500pt;}
.h6{height:48.023438pt;}
.h24{height:48.382812pt;}
.h11{height:51.880208pt;}
.h1b{height:52.781250pt;}
.h2d{height:56.200946pt;}
.h1c{height:61.578125pt;}
.h4{height:64.031250pt;}
.hc{height:70.375000pt;}
.h15{height:73.020833pt;}
.h16{height:74.114583pt;}
.h25{height:74.393479pt;}
.h3{height:74.703125pt;}
.hb{height:78.562500pt;}
.h19{height:79.171875pt;}
.h2a{height:83.839346pt;}
.h30{height:87.291667pt;}
.h8{height:87.968750pt;}
.h10{height:91.647917pt;}
.h13{height:92.413542pt;}
.hf{height:95.914583pt;}
.h2{height:96.046875pt;}
.h12{height:96.680208pt;}
.h20{height:96.941090pt;}
.h1d{height:96.941250pt;}
.h9{height:104.750000pt;}
.h7{height:105.562500pt;}
.h14{height:106.718750pt;}
.he{height:119.508867pt;}
.ha{height:128.062500pt;}
.h22{height:145.506667pt;}
.h1{height:149.406250pt;}
.hd{height:166.375000pt;}
.h21{height:173.501467pt;}
.h2c{height:174.666667pt;}
.h17{height:224.000000pt;}
.h2b{height:226.666667pt;}
.h26{height:229.333333pt;}
.h29{height:249.333333pt;}
.h1e{height:259.458533pt;}
.h23{height:297.333333pt;}
.h27{height:364.000000pt;}
.h2e{height:385.333333pt;}
.h1a{height:463.680000pt;}
.h1f{height:659.261333pt;}
.h0{height:720.000000pt;}
.w28{width:91.266347pt;}
.w26{width:91.266360pt;}
.w4{width:98.278640pt;}
.w25{width:98.400000pt;}
.w27{width:103.979947pt;}
.w23{width:113.466680pt;}
.w7{width:114.280000pt;}
.w8{width:114.280013pt;}
.w22{width:114.400000pt;}
.w24{width:115.899947pt;}
.w5{width:120.958320pt;}
.w18{width:149.740000pt;}
.w6{width:168.913333pt;}
.w15{width:187.733333pt;}
.w3{width:199.298133pt;}
.w11{width:232.447067pt;}
.w2{width:318.578667pt;}
.w10{width:328.207067pt;}
.w13{width:340.527067pt;}
.w1d{width:350.419600pt;}
.wa{width:378.666667pt;}
.w17{width:388.000000pt;}
.w19{width:433.333333pt;}
.w9{width:493.333333pt;}
.w1f{width:494.253600pt;}
.w20{width:513.213600pt;}
.w12{width:526.195200pt;}
.w14{width:532.000000pt;}
.w16{width:533.333333pt;}
.w1b{width:538.233467pt;}
.w21{width:563.273467pt;}
.wf{width:572.935200pt;}
.wc{width:576.995333pt;}
.w1e{width:579.433467pt;}
.w1c{width:583.813333pt;}
.wd{width:588.135200pt;}
.we{width:602.315333pt;}
.w1a{width:606.666667pt;}
.w1{width:641.874400pt;}
.wb{width:648.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xb0{left:4.666667pt;}
.x62{left:6.069333pt;}
.xb2{left:7.200000pt;}
.x60{left:9.600000pt;}
.x10e{left:12.240133pt;}
.xfe{left:13.180933pt;}
.xff{left:14.207600pt;}
.x5e{left:16.253867pt;}
.xba{left:18.666667pt;}
.xfc{left:21.004533pt;}
.x54{left:22.117587pt;}
.xfd{left:23.751200pt;}
.xd3{left:25.333333pt;}
.xe7{left:26.486293pt;}
.xc1{left:28.151867pt;}
.x107{left:29.255427pt;}
.x56{left:32.081307pt;}
.x53{left:33.617533pt;}
.xc0{left:35.585187pt;}
.x51{left:37.617533pt;}
.x52{left:39.200893pt;}
.x86{left:40.361307pt;}
.xf8{left:41.351067pt;}
.x2b{left:46.449920pt;}
.x4e{left:47.617533pt;}
.x4f{left:49.117587pt;}
.x102{left:50.379733pt;}
.x40{left:53.120000pt;}
.x123{left:55.533333pt;}
.x2a{left:58.009920pt;}
.x125{left:60.593693pt;}
.x1f{left:62.831760pt;}
.x22{left:64.364933pt;}
.x126{left:65.507040pt;}
.x9d{left:66.677947pt;}
.xe5{left:67.899627pt;}
.x41{left:69.586667pt;}
.x4d{left:71.933440pt;}
.x66{left:72.903307pt;}
.x1a{left:75.166667pt;}
.x103{left:76.459107pt;}
.x87{left:77.567973pt;}
.xb6{left:78.533333pt;}
.xb1{left:79.500000pt;}
.xe8{left:81.108027pt;}
.x128{left:82.260360pt;}
.x96{left:83.216640pt;}
.x1d{left:84.745093pt;}
.xbb{left:86.321987pt;}
.x93{left:87.407080pt;}
.x67{left:89.176640pt;}
.x1e{left:90.998427pt;}
.x39{left:93.213907pt;}
.x63{left:96.093333pt;}
.x9a{left:98.532293pt;}
.x4c{left:99.597267pt;}
.x65{left:100.983307pt;}
.x38{left:103.013907pt;}
.x64{left:105.259947pt;}
.x15{left:107.521787pt;}
.xd9{left:109.301787pt;}
.xc9{left:111.856533pt;}
.x7f{left:113.190813pt;}
.x80{left:114.797480pt;}
.xd6{left:116.341773pt;}
.x61{left:117.933333pt;}
.x9b{left:120.238693pt;}
.xe9{left:122.598933pt;}
.x7d{left:124.310867pt;}
.x124{left:127.093693pt;}
.x7e{left:128.044147pt;}
.x127{left:132.093693pt;}
.xbe{left:133.640267pt;}
.x58{left:135.040667pt;}
.x10b{left:138.533467pt;}
.x3f{left:140.386667pt;}
.xaf{left:143.187600pt;}
.xae{left:144.309200pt;}
.xda{left:145.940213pt;}
.x57{left:146.834667pt;}
.x28{left:149.026000pt;}
.x10d{left:150.179867pt;}
.x98{left:153.023467pt;}
.xd8{left:154.955333pt;}
.xb9{left:156.264933pt;}
.x1b{left:158.078400pt;}
.x10a{left:164.373467pt;}
.x5a{left:165.517333pt;}
.x9c{left:166.843067pt;}
.xcb{left:168.739467pt;}
.xca{left:170.359467pt;}
.xa7{left:174.261067pt;}
.xa9{left:175.434400pt;}
.xe6{left:178.140400pt;}
.xd4{left:179.075200pt;}
.xd5{left:180.428667pt;}
.x4a{left:186.549600pt;}
.xac{left:187.517733pt;}
.x59{left:189.807333pt;}
.x99{left:192.324267pt;}
.x5f{left:194.434000pt;}
.xd7{left:196.008533pt;}
.x42{left:199.545333pt;}
.x119{left:201.285467pt;}
.xd2{left:202.295867pt;}
.x9e{left:203.874400pt;}
.x1c{left:205.831733pt;}
.x5d{left:208.267333pt;}
.x29{left:209.852667pt;}
.xa1{left:214.797733pt;}
.x9f{left:215.731067pt;}
.x55{left:216.750400pt;}
.x19{left:217.916667pt;}
.x4b{left:219.376267pt;}
.x17{left:222.333333pt;}
.xea{left:228.870933pt;}
.xbc{left:231.936133pt;}
.x21{left:236.916667pt;}
.x5b{left:238.344000pt;}
.x108{left:239.334667pt;}
.x5c{left:250.594000pt;}
.xc2{left:256.955467pt;}
.x97{left:264.416800pt;}
.x81{left:266.734133pt;}
.x82{left:269.934133pt;}
.x14{left:276.984667pt;}
.x109{left:278.718267pt;}
.xbf{left:280.587867pt;}
.x83{left:281.794133pt;}
.x20{left:283.745067pt;}
.xeb{left:286.812533pt;}
.x121{left:291.645600pt;}
.x13{left:296.564667pt;}
.x16{left:299.666667pt;}
.x94{left:300.900400pt;}
.x7a{left:302.610800pt;}
.x12{left:305.704667pt;}
.x2c{left:307.247733pt;}
.x78{left:309.657467pt;}
.xdb{left:311.424667pt;}
.xfb{left:312.466667pt;}
.xb{left:313.366133pt;}
.x50{left:315.173733pt;}
.xdc{left:316.977733pt;}
.xc6{left:321.250000pt;}
.xc8{left:325.163333pt;}
.xc7{left:327.423333pt;}
.xd0{left:329.570800pt;}
.x79{left:332.270800pt;}
.x131{left:334.084667pt;}
.x104{left:335.543067pt;}
.x91{left:337.037200pt;}
.x8f{left:339.097200pt;}
.xdd{left:341.041200pt;}
.x90{left:342.037200pt;}
.x18{left:346.000000pt;}
.x129{left:347.595733pt;}
.x105{left:349.703067pt;}
.x88{left:353.010800pt;}
.x12a{left:354.175733pt;}
.xd1{left:357.537467pt;}
.x3a{left:360.136533pt;}
.xaa{left:362.910800pt;}
.x37{left:365.443200pt;}
.xbd{left:369.550400pt;}
.x89{left:370.517467pt;}
.x3b{left:372.343200pt;}
.x92{left:375.860400pt;}
.xcf{left:377.117467pt;}
.x12b{left:379.595733pt;}
.x122{left:382.911867pt;}
.xa8{left:386.617467pt;}
.xc3{left:394.572800pt;}
.xa5{left:396.044133pt;}
.x132{left:400.234267pt;}
.x10c{left:404.993600pt;}
.x49{left:407.493067pt;}
.x44{left:410.273067pt;}
.x45{left:411.186400pt;}
.xf9{left:412.542267pt;}
.xad{left:413.847467pt;}
.x4{left:415.779467pt;}
.x1{left:417.512400pt;}
.xa3{left:420.610800pt;}
.xab{left:422.264267pt;}
.x3c{left:423.216533pt;}
.xa2{left:425.357467pt;}
.xa4{left:426.624133pt;}
.x46{left:429.753067pt;}
.xa6{left:430.917467pt;}
.x2e{left:434.823333pt;}
.xe{left:435.809600pt;}
.x8d{left:436.726667pt;}
.x2d{left:438.190000pt;}
.x23{left:441.586667pt;}
.x7b{left:443.041867pt;}
.xd{left:448.009600pt;}
.x11e{left:450.906800pt;}
.xde{left:452.103333pt;}
.x11c{left:454.880267pt;}
.xc{left:457.049600pt;}
.x3{left:458.679067pt;}
.x11f{left:459.653467pt;}
.x11a{left:461.246933pt;}
.x117{left:468.136533pt;}
.x2{left:470.179067pt;}
.x120{left:474.178267pt;}
.x6{left:477.612800pt;}
.x11b{left:482.746933pt;}
.x68{left:490.139467pt;}
.x116{left:498.233333pt;}
.x11d{left:499.366800pt;}
.x115{left:505.178800pt;}
.x114{left:506.625733pt;}
.x6c{left:507.892800pt;}
.x113{left:508.940933pt;}
.x6f{left:511.709467pt;}
.x7{left:514.692800pt;}
.x118{left:515.702933pt;}
.x112{left:522.542400pt;}
.xdf{left:524.293733pt;}
.x85{left:525.421333pt;}
.x5{left:527.446133pt;}
.x8b{left:529.328000pt;}
.x111{left:531.803067pt;}
.x69{left:532.792800pt;}
.x110{left:533.828800pt;}
.x77{left:536.020667pt;}
.x6a{left:537.302800pt;}
.xc5{left:540.000000pt;}
.x72{left:541.212800pt;}
.x8a{left:544.461333pt;}
.xfa{left:548.000000pt;}
.x6e{left:550.676133pt;}
.x10f{left:552.928667pt;}
.x76{left:554.207333pt;}
.x8c{left:555.448000pt;}
.x30{left:556.342133pt;}
.x84{left:560.048000pt;}
.xb7{left:561.892667pt;}
.x74{left:563.036133pt;}
.x8e{left:565.502667pt;}
.xce{left:567.170800pt;}
.x2f{left:568.562133pt;}
.x26{left:572.099467pt;}
.x6d{left:574.952800pt;}
.x95{left:575.863867pt;}
.xb5{left:578.886000pt;}
.xb8{left:582.552667pt;}
.xe0{left:583.526800pt;}
.xcc{left:588.277600pt;}
.xa{left:595.438533pt;}
.xa0{left:598.217600pt;}
.xed{left:600.958267pt;}
.x10{left:603.164800pt;}
.x6b{left:605.802800pt;}
.x11{left:610.584800pt;}
.x73{left:612.529467pt;}
.xf3{left:623.324933pt;}
.x71{left:625.842800pt;}
.xf{left:630.711467pt;}
.x27{left:632.266133pt;}
.x75{left:636.006133pt;}
.xec{left:637.745467pt;}
.x48{left:641.179867pt;}
.x47{left:642.133200pt;}
.x43{left:644.304667pt;}
.xf5{left:647.324933pt;}
.xcd{left:649.117467pt;}
.xf6{left:651.198267pt;}
.x106{left:652.357733pt;}
.x12c{left:653.915600pt;}
.xf1{left:656.658267pt;}
.xc4{left:658.306400pt;}
.x12f{left:660.415600pt;}
.x24{left:662.792267pt;}
.xf4{left:665.864933pt;}
.x70{left:667.402800pt;}
.x3d{left:668.392533pt;}
.x3e{left:669.432667pt;}
.x8{left:670.548533pt;}
.x12d{left:676.168933pt;}
.xf2{left:678.324933pt;}
.x12e{left:679.668933pt;}
.xe4{left:680.752667pt;}
.xf7{left:682.691600pt;}
.x33{left:684.384400pt;}
.xf0{left:686.698267pt;}
.x101{left:688.477600pt;}
.xb3{left:694.272800pt;}
.x32{left:695.770933pt;}
.x31{left:706.337733pt;}
.x7c{left:709.689600pt;}
.xe1{left:710.939333pt;}
.xe2{left:715.286000pt;}
.x25{left:722.238933pt;}
.x100{left:725.450933pt;}
.x9{left:739.076533pt;}
.x130{left:748.502267pt;}
.xe3{left:753.572667pt;}
.xb4{left:776.032667pt;}
.xee{left:788.691733pt;}
.x36{left:811.879867pt;}
.x35{left:815.573200pt;}
.x34{left:834.946533pt;}
.xef{left:870.451600pt;}
}




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