
    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_6b4761d1d4dbefe62cc504d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.190000;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_0fd5ca7cfeb55007f02483ba.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.105000;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_9f918a2e41763de92ef07f93.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089000;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_e15c517c7d56b7f49ab0d2b4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.109000;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_c4ee8bed05b2cec79f7d9a8d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.100000;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.205000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.205000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.205000,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.205020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.205020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.205020,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-21.780000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.819760px;}
.v1{vertical-align:21.779700px;}
.ls4{letter-spacing:-1.200000px;}
.ls26{letter-spacing:-0.990000px;}
.ls27{letter-spacing:-0.858000px;}
.ls8d{letter-spacing:-0.855000px;}
.ls29{letter-spacing:-0.666600px;}
.ls23{letter-spacing:-0.660000px;}
.ls28{letter-spacing:-0.594000px;}
.lsa1{letter-spacing:-0.570000px;}
.ls64{letter-spacing:-0.528000px;}
.ls25{letter-spacing:-0.330000px;}
.ls8{letter-spacing:-0.300000px;}
.ls68{letter-spacing:-0.264000px;}
.ls5{letter-spacing:-0.244800px;}
.ls22{letter-spacing:-0.026400px;}
.ls7{letter-spacing:-0.019800px;}
.ls16{letter-spacing:-0.014850px;}
.ls2e{letter-spacing:-0.013200px;}
.ls1c{letter-spacing:-0.006600px;}
.ls3{letter-spacing:0.000000px;}
.ls75{letter-spacing:0.054000px;}
.ls8e{letter-spacing:0.057000px;}
.ls1e{letter-spacing:0.066000px;}
.ls56{letter-spacing:0.099000px;}
.ls13{letter-spacing:0.132000px;}
.ls41{letter-spacing:0.148500px;}
.ls2{letter-spacing:0.180000px;}
.lsf{letter-spacing:0.183480px;}
.ls21{letter-spacing:0.198000px;}
.ls6{letter-spacing:0.240000px;}
.ls4d{letter-spacing:0.247500px;}
.ls72{letter-spacing:0.255000px;}
.ls12{letter-spacing:0.264000px;}
.ls6b{letter-spacing:0.270000px;}
.ls7b{letter-spacing:0.285000px;}
.lsb{letter-spacing:0.300000px;}
.ls9{letter-spacing:0.306000px;}
.ls59{letter-spacing:0.310200px;}
.ls1d{letter-spacing:0.324000px;}
.ls58{letter-spacing:0.330000px;}
.ls9c{letter-spacing:0.342000px;}
.ls63{letter-spacing:0.346500px;}
.ls11{letter-spacing:0.396000px;}
.ls7a{letter-spacing:0.399000px;}
.ls36{letter-spacing:0.412683px;}
.ls91{letter-spacing:0.456000px;}
.lse{letter-spacing:0.462000px;}
.ls5e{letter-spacing:0.512820px;}
.ls19{letter-spacing:0.528000px;}
.ls79{letter-spacing:0.540000px;}
.ls43{letter-spacing:0.594000px;}
.ls60{letter-spacing:0.612000px;}
.ls9a{letter-spacing:0.627000px;}
.ls48{letter-spacing:0.643500px;}
.ls10{letter-spacing:0.660000px;}
.ls42{letter-spacing:0.726000px;}
.ls18{letter-spacing:0.792000px;}
.ls2f{letter-spacing:0.924000px;}
.ls4e{letter-spacing:0.990000px;}
.ls49{letter-spacing:1.056000px;}
.ls74{letter-spacing:1.122000px;}
.lsc{letter-spacing:1.188000px;}
.ls17{letter-spacing:1.200000px;}
.ls32{letter-spacing:1.254000px;}
.ls84{letter-spacing:1.311000px;}
.ls5a{letter-spacing:1.320000px;}
.ls8c{letter-spacing:1.368000px;}
.ls3b{letter-spacing:1.386000px;}
.ls93{letter-spacing:1.539000px;}
.ls82{letter-spacing:1.710000px;}
.ls31{letter-spacing:1.914000px;}
.ls98{letter-spacing:1.938000px;}
.lsa2{letter-spacing:1.995000px;}
.ls3a{letter-spacing:2.046000px;}
.ls86{letter-spacing:2.280000px;}
.ls47{letter-spacing:2.376000px;}
.ls67{letter-spacing:2.574000px;}
.ls15{letter-spacing:3.366000px;}
.ls89{letter-spacing:3.420000px;}
.ls88{letter-spacing:3.477000px;}
.ls5b{letter-spacing:4.092000px;}
.ls90{letter-spacing:15.600000px;}
.ls80{letter-spacing:15.608880px;}
.ls1a{letter-spacing:16.401420px;}
.ls8a{letter-spacing:16.506585px;}
.ls8b{letter-spacing:16.518030px;}
.ls9d{letter-spacing:16.657317px;}
.ls70{letter-spacing:17.264880px;}
.ls7e{letter-spacing:18.216585px;}
.ls99{letter-spacing:18.217317px;}
.ls7f{letter-spacing:18.220620px;}
.ls7c{letter-spacing:18.222900px;}
.ls96{letter-spacing:18.223470px;}
.ls92{letter-spacing:18.224610px;}
.ls97{letter-spacing:18.228600px;}
.ls1{letter-spacing:18.451463px;}
.lsa{letter-spacing:18.459540px;}
.ls81{letter-spacing:18.527280px;}
.lsa0{letter-spacing:19.149150px;}
.ls9e{letter-spacing:19.456950px;}
.ls1b{letter-spacing:20.157660px;}
.lsa4{letter-spacing:20.204634px;}
.lsa5{letter-spacing:20.209350px;}
.lsa3{letter-spacing:20.412270px;}
.ls24{letter-spacing:20.442840px;}
.lsa7{letter-spacing:20.557050px;}
.ls6a{letter-spacing:21.099540px;}
.ls50{letter-spacing:21.108120px;}
.ls78{letter-spacing:21.194580px;}
.ls35{letter-spacing:21.236160px;}
.ls6c{letter-spacing:21.627540px;}
.ls1f{letter-spacing:21.688260px;}
.lsd{letter-spacing:21.712680px;}
.ls46{letter-spacing:21.750300px;}
.ls3d{letter-spacing:22.004400px;}
.ls6e{letter-spacing:22.081620px;}
.ls55{letter-spacing:22.401060px;}
.ls54{letter-spacing:22.402380px;}
.ls3e{letter-spacing:22.449900px;}
.ls73{letter-spacing:22.969980px;}
.ls9f{letter-spacing:23.000070px;}
.ls69{letter-spacing:23.047200px;}
.ls2b{letter-spacing:23.053140px;}
.ls2a{letter-spacing:23.203620px;}
.ls20{letter-spacing:23.624040px;}
.ls6d{letter-spacing:23.627700px;}
.lsa6{letter-spacing:23.967360px;}
.ls76{letter-spacing:24.053700px;}
.ls0{letter-spacing:24.155400px;}
.ls2d{letter-spacing:24.197561px;}
.ls5f{letter-spacing:24.381570px;}
.ls4b{letter-spacing:24.612720px;}
.ls33{letter-spacing:25.031820px;}
.ls62{letter-spacing:25.064970px;}
.ls61{letter-spacing:25.065480px;}
.ls34{letter-spacing:25.214640px;}
.ls53{letter-spacing:26.221800px;}
.ls77{letter-spacing:26.285820px;}
.ls4a{letter-spacing:26.799960px;}
.ls65{letter-spacing:26.925360px;}
.ls8f{letter-spacing:27.410160px;}
.ls7d{letter-spacing:27.651840px;}
.ls95{letter-spacing:27.819990px;}
.ls9b{letter-spacing:27.980730px;}
.ls52{letter-spacing:28.213680px;}
.ls66{letter-spacing:28.215000px;}
.ls4f{letter-spacing:28.260540px;}
.ls5c{letter-spacing:28.328520px;}
.ls85{letter-spacing:28.631100px;}
.ls71{letter-spacing:28.857180px;}
.ls94{letter-spacing:28.857960px;}
.ls38{letter-spacing:28.886341px;}
.ls83{letter-spacing:29.045490px;}
.ls2c{letter-spacing:29.132195px;}
.ls6f{letter-spacing:29.245260px;}
.ls40{letter-spacing:29.588460px;}
.ls87{letter-spacing:29.610360px;}
.ls5d{letter-spacing:30.628620px;}
.ls57{letter-spacing:30.958620px;}
.ls4c{letter-spacing:31.697160px;}
.ls51{letter-spacing:31.749960px;}
.ls3f{letter-spacing:31.782300px;}
.ls14{letter-spacing:31.796160px;}
.ls37{letter-spacing:32.065440px;}
.ls3c{letter-spacing:32.075340px;}
.ls30{letter-spacing:32.208660px;}
.ls45{letter-spacing:32.275980px;}
.ls44{letter-spacing:32.292480px;}
.ls39{letter-spacing:34.349040px;}
.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;}
}
.ws1c{word-spacing:-21.516000px;}
.wsb9{word-spacing:-21.450000px;}
.wsba{word-spacing:-21.430200px;}
.ws1d{word-spacing:-21.252000px;}
.ws8f{word-spacing:-21.186000px;}
.ws1b{word-spacing:-21.120000px;}
.wsce{word-spacing:-20.856000px;}
.ws82{word-spacing:-20.790000px;}
.ws66{word-spacing:-20.460000px;}
.ws2{word-spacing:-18.480000px;}
.ws77{word-spacing:-18.084000px;}
.wsdf{word-spacing:-17.754000px;}
.wsa0{word-spacing:-16.483500px;}
.wsc0{word-spacing:-16.186500px;}
.ws90{word-spacing:-15.988500px;}
.wsb3{word-spacing:-15.939000px;}
.ws53{word-spacing:-15.840000px;}
.ws106{word-spacing:-15.618000px;}
.ws108{word-spacing:-14.763000px;}
.ws5{word-spacing:-14.280000px;}
.ws3{word-spacing:-13.860000px;}
.ws17{word-spacing:-13.845150px;}
.ws19{word-spacing:-13.840200px;}
.wsf2{word-spacing:-12.960000px;}
.ws105{word-spacing:-2.751070px;}
.ws67{word-spacing:-0.005280px;}
.ws18{word-spacing:-0.001980px;}
.ws7{word-spacing:0.000000px;}
.ws0{word-spacing:0.001440px;}
.ws4{word-spacing:0.001980px;}
.ws112{word-spacing:0.057000px;}
.ws97{word-spacing:0.066000px;}
.ws111{word-spacing:0.114000px;}
.ws8a{word-spacing:0.132000px;}
.ws73{word-spacing:0.198000px;}
.wsdc{word-spacing:0.216000px;}
.ws147{word-spacing:0.228000px;}
.wsc8{word-spacing:0.255000px;}
.ws76{word-spacing:0.264000px;}
.wse1{word-spacing:0.270000px;}
.ws116{word-spacing:0.285000px;}
.ws16{word-spacing:0.306000px;}
.ws4d{word-spacing:0.330000px;}
.wscf{word-spacing:0.378000px;}
.ws6c{word-spacing:0.396000px;}
.ws130{word-spacing:0.399000px;}
.ws12f{word-spacing:0.456000px;}
.wse2{word-spacing:0.462000px;}
.wsfd{word-spacing:0.528000px;}
.ws27{word-spacing:0.594000px;}
.ws10{word-spacing:0.600000px;}
.wse3{word-spacing:0.648000px;}
.wsb{word-spacing:0.660000px;}
.ws126{word-spacing:0.741000px;}
.ws32{word-spacing:0.792000px;}
.ws134{word-spacing:0.798000px;}
.ws141{word-spacing:0.855000px;}
.ws8e{word-spacing:0.858000px;}
.wsda{word-spacing:0.864000px;}
.ws133{word-spacing:0.912000px;}
.wse7{word-spacing:0.918000px;}
.ws2a{word-spacing:0.924000px;}
.wsd1{word-spacing:0.972000px;}
.ws57{word-spacing:0.990000px;}
.wsfa{word-spacing:1.026000px;}
.ws5f{word-spacing:1.056000px;}
.ws131{word-spacing:1.083000px;}
.wsab{word-spacing:1.122000px;}
.ws146{word-spacing:1.140000px;}
.ws5c{word-spacing:1.188000px;}
.ws47{word-spacing:1.242000px;}
.ws52{word-spacing:1.254000px;}
.ws6b{word-spacing:1.320000px;}
.ws3e{word-spacing:1.386000px;}
.ws33{word-spacing:1.452000px;}
.wsee{word-spacing:1.458000px;}
.wsa1{word-spacing:1.503480px;}
.ws51{word-spacing:1.518000px;}
.wsef{word-spacing:1.566000px;}
.wsaa{word-spacing:1.584000px;}
.ws120{word-spacing:1.596000px;}
.ws46{word-spacing:1.620000px;}
.ws69{word-spacing:1.650000px;}
.ws12b{word-spacing:1.710000px;}
.ws5e{word-spacing:1.716000px;}
.wsea{word-spacing:1.728000px;}
.ws87{word-spacing:1.782000px;}
.ws139{word-spacing:1.824000px;}
.wsc7{word-spacing:1.836000px;}
.ws62{word-spacing:1.848000px;}
.ws13b{word-spacing:1.881000px;}
.ws45{word-spacing:1.890000px;}
.ws64{word-spacing:1.914000px;}
.ws143{word-spacing:1.938000px;}
.wsdd{word-spacing:1.944000px;}
.ws4e{word-spacing:1.980000px;}
.ws13c{word-spacing:1.995000px;}
.wsc6{word-spacing:2.040000px;}
.ws70{word-spacing:2.046000px;}
.wsf5{word-spacing:2.052000px;}
.ws138{word-spacing:2.109000px;}
.ws43{word-spacing:2.112000px;}
.ws78{word-spacing:2.116620px;}
.ws13{word-spacing:2.160000px;}
.ws13a{word-spacing:2.166000px;}
.ws8d{word-spacing:2.178000px;}
.ws7b{word-spacing:2.244000px;}
.ws12a{word-spacing:2.280000px;}
.ws1a{word-spacing:2.312927px;}
.wse0{word-spacing:2.322000px;}
.ws13f{word-spacing:2.337000px;}
.ws6f{word-spacing:2.376000px;}
.wsc5{word-spacing:2.397000px;}
.wsd5{word-spacing:2.430000px;}
.ws71{word-spacing:2.442000px;}
.wsf1{word-spacing:2.448000px;}
.ws48{word-spacing:2.484000px;}
.ws63{word-spacing:2.508000px;}
.wscb{word-spacing:2.550000px;}
.ws7d{word-spacing:2.574000px;}
.ws107{word-spacing:2.583022px;}
.wsae{word-spacing:2.640000px;}
.ws148{word-spacing:2.679000px;}
.ws68{word-spacing:2.706000px;}
.ws9a{word-spacing:2.772000px;}
.ws36{word-spacing:2.838000px;}
.wsd6{word-spacing:2.862000px;}
.wsbc{word-spacing:2.904000px;}
.ws122{word-spacing:2.907000px;}
.ws49{word-spacing:2.916000px;}
.wsb2{word-spacing:2.970000px;}
.ws11{word-spacing:3.000000px;}
.ws102{word-spacing:3.021000px;}
.ws4b{word-spacing:3.078000px;}
.ws81{word-spacing:3.102000px;}
.ws110{word-spacing:3.135000px;}
.ws9b{word-spacing:3.234000px;}
.ws8{word-spacing:3.240000px;}
.ws113{word-spacing:3.249000px;}
.wsc4{word-spacing:3.300000px;}
.ws115{word-spacing:3.306000px;}
.wsa6{word-spacing:3.366000px;}
.ws4a{word-spacing:3.402000px;}
.ws59{word-spacing:3.432000px;}
.wsc{word-spacing:3.480000px;}
.ws3b{word-spacing:3.498000px;}
.wsb8{word-spacing:3.521760px;}
.ws101{word-spacing:3.534000px;}
.ws1f{word-spacing:3.540000px;}
.ws2c{word-spacing:3.564000px;}
.ws11f{word-spacing:3.591000px;}
.wsb4{word-spacing:3.630000px;}
.ws10f{word-spacing:3.648000px;}
.ws5d{word-spacing:3.696000px;}
.wsf7{word-spacing:3.726000px;}
.wsc3{word-spacing:3.762000px;}
.ws80{word-spacing:3.828000px;}
.wse5{word-spacing:3.834000px;}
.ws114{word-spacing:3.876000px;}
.ws135{word-spacing:3.933000px;}
.ws34{word-spacing:3.960000px;}
.ws5a{word-spacing:4.026000px;}
.ws58{word-spacing:4.092000px;}
.wse4{word-spacing:4.104000px;}
.wsd3{word-spacing:4.158000px;}
.ws26{word-spacing:4.224000px;}
.ws61{word-spacing:4.290000px;}
.ws7a{word-spacing:4.311780px;}
.ws12{word-spacing:4.320000px;}
.ws10e{word-spacing:4.332000px;}
.ws88{word-spacing:4.356000px;}
.ws9c{word-spacing:4.422000px;}
.wsf9{word-spacing:4.428000px;}
.ws3c{word-spacing:4.488000px;}
.wsb7{word-spacing:4.554000px;}
.ws11a{word-spacing:4.560000px;}
.ws1{word-spacing:4.603500px;}
.ws149{word-spacing:4.617000px;}
.wsd8{word-spacing:4.620000px;}
.ws145{word-spacing:4.674000px;}
.wsb0{word-spacing:4.686000px;}
.wsc2{word-spacing:4.752000px;}
.ws132{word-spacing:4.788000px;}
.ws6e{word-spacing:4.818000px;}
.wsf0{word-spacing:4.860000px;}
.wseb{word-spacing:4.884000px;}
.ws13e{word-spacing:4.902000px;}
.ws20{word-spacing:4.920000px;}
.ws99{word-spacing:4.950000px;}
.ws9{word-spacing:4.980000px;}
.ws91{word-spacing:5.016000px;}
.wsf8{word-spacing:5.022000px;}
.ws10d{word-spacing:5.073000px;}
.ws54{word-spacing:5.082000px;}
.wsac{word-spacing:5.148000px;}
.ws14{word-spacing:5.160000px;}
.wsa9{word-spacing:5.214000px;}
.ws44{word-spacing:5.280000px;}
.ws38{word-spacing:5.332800px;}
.ws40{word-spacing:5.346000px;}
.ws42{word-spacing:5.412000px;}
.ws137{word-spacing:5.415000px;}
.wse9{word-spacing:5.454000px;}
.ws144{word-spacing:5.472000px;}
.ws28{word-spacing:5.478000px;}
.ws11d{word-spacing:5.529000px;}
.ws39{word-spacing:5.544000px;}
.wsbd{word-spacing:5.610000px;}
.ws11e{word-spacing:5.643000px;}
.wsb1{word-spacing:5.676000px;}
.ws98{word-spacing:5.742000px;}
.ws13d{word-spacing:5.757000px;}
.wsa7{word-spacing:5.808000px;}
.ws140{word-spacing:5.814000px;}
.ws10c{word-spacing:5.871000px;}
.ws50{word-spacing:5.940000px;}
.wsf4{word-spacing:5.994000px;}
.ws83{word-spacing:6.006000px;}
.wsd0{word-spacing:6.048000px;}
.wsaf{word-spacing:6.072000px;}
.ws117{word-spacing:6.099000px;}
.wse8{word-spacing:6.102000px;}
.wsf{word-spacing:6.180000px;}
.ws60{word-spacing:6.204000px;}
.ws127{word-spacing:6.270000px;}
.ws136{word-spacing:6.327000px;}
.wse6{word-spacing:6.372000px;}
.wscc{word-spacing:6.375000px;}
.ws10b{word-spacing:6.384000px;}
.wsf3{word-spacing:6.402000px;}
.wsd9{word-spacing:6.426000px;}
.wsbf{word-spacing:6.468000px;}
.ws119{word-spacing:6.498000px;}
.wsb6{word-spacing:6.534000px;}
.wsc1{word-spacing:6.600000px;}
.ws8b{word-spacing:6.666000px;}
.wsfe{word-spacing:6.721463px;}
.wsa2{word-spacing:6.732000px;}
.wsd7{word-spacing:6.750000px;}
.ws129{word-spacing:6.783000px;}
.wsbe{word-spacing:6.798000px;}
.ws100{word-spacing:6.804000px;}
.ws11c{word-spacing:6.840000px;}
.ws29{word-spacing:6.864000px;}
.wsa8{word-spacing:6.930000px;}
.wsca{word-spacing:6.936000px;}
.wsed{word-spacing:6.966000px;}
.ws6d{word-spacing:6.996000px;}
.wsd{word-spacing:7.020000px;}
.ws72{word-spacing:7.062000px;}
.ws12c{word-spacing:7.125000px;}
.ws55{word-spacing:7.128000px;}
.ws12e{word-spacing:7.182000px;}
.ws37{word-spacing:7.194000px;}
.ws95{word-spacing:7.260000px;}
.wsf6{word-spacing:7.290000px;}
.wsd4{word-spacing:7.326000px;}
.ws125{word-spacing:7.353000px;}
.ws79{word-spacing:7.372200px;}
.ws3f{word-spacing:7.392000px;}
.ws103{word-spacing:7.410000px;}
.ws6{word-spacing:7.433415px;}
.ws23{word-spacing:7.458000px;}
.ws10a{word-spacing:7.467000px;}
.ws24{word-spacing:7.524000px;}
.wscd{word-spacing:7.548000px;}
.ws2d{word-spacing:7.590000px;}
.ws21{word-spacing:7.620000px;}
.ws74{word-spacing:7.656000px;}
.ws7e{word-spacing:7.722000px;}
.ws11b{word-spacing:7.752000px;}
.ws92{word-spacing:7.788000px;}
.ws118{word-spacing:7.809000px;}
.ws15{word-spacing:7.854000px;}
.ws121{word-spacing:7.866000px;}
.wsfc{word-spacing:7.905000px;}
.ws3a{word-spacing:7.920000px;}
.ws128{word-spacing:7.923000px;}
.wsd2{word-spacing:7.986000px;}
.ws7f{word-spacing:8.052000px;}
.wsc9{word-spacing:8.058000px;}
.ws85{word-spacing:8.118000px;}
.wsa4{word-spacing:8.184000px;}
.ws9e{word-spacing:8.250000px;}
.ws4c{word-spacing:8.262000px;}
.ws56{word-spacing:8.316000px;}
.wsde{word-spacing:8.370000px;}
.wsa5{word-spacing:8.382000px;}
.ws22{word-spacing:8.400000px;}
.ws12d{word-spacing:8.436000px;}
.ws86{word-spacing:8.448000px;}
.ws96{word-spacing:8.514000px;}
.wsfb{word-spacing:8.532000px;}
.ws142{word-spacing:8.550000px;}
.ws124{word-spacing:8.607000px;}
.ws75{word-spacing:8.646000px;}
.ws104{word-spacing:8.721000px;}
.wsbb{word-spacing:8.778000px;}
.ws109{word-spacing:8.835000px;}
.wsec{word-spacing:8.844000px;}
.wsb5{word-spacing:8.910000px;}
.ws6a{word-spacing:8.976000px;}
.ws8c{word-spacing:9.042000px;}
.ws123{word-spacing:9.063000px;}
.wse{word-spacing:9.120000px;}
.ws93{word-spacing:9.174000px;}
.ws1e{word-spacing:9.300000px;}
.ws89{word-spacing:9.306000px;}
.wsa{word-spacing:9.360000px;}
.ws25{word-spacing:9.372000px;}
.ws3d{word-spacing:9.438000px;}
.wsff{word-spacing:9.504000px;}
.ws9d{word-spacing:9.570000px;}
.ws84{word-spacing:9.636000px;}
.ws2e{word-spacing:9.702000px;}
.wsdb{word-spacing:9.768000px;}
.ws94{word-spacing:9.834000px;}
.ws2f{word-spacing:9.900000px;}
.ws7c{word-spacing:9.966000px;}
.ws41{word-spacing:10.032000px;}
.ws2b{word-spacing:10.098000px;}
.ws30{word-spacing:10.164000px;}
.ws31{word-spacing:10.230000px;}
.ws65{word-spacing:10.296000px;}
.wsa3{word-spacing:10.362000px;}
.ws35{word-spacing:10.428000px;}
.ws5b{word-spacing:10.494000px;}
.ws4f{word-spacing:10.560000px;}
.ws9f{word-spacing:11.970000px;}
.wsad{word-spacing:15.613354px;}
._1{margin-left:-9.480000px;}
._7{margin-left:-7.722000px;}
._0{margin-left:-5.520000px;}
._3{margin-left:-2.978324px;}
._5{margin-left:-1.123800px;}
._9{width:1.000218px;}
._2{width:2.040000px;}
._8{width:3.208958px;}
._4{width:7.821951px;}
._b{width:18.131122px;}
._c{width:20.131891px;}
._6{width:23.348665px;}
._a{width:26.981577px;}
._d{width:28.043669px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs0{font-size:36.000000px;}
.fs8{font-size:38.250000px;}
.fsa{font-size:40.500000px;}
.fs3{font-size:48.000000px;}
.fs6{font-size:49.500000px;}
.fs7{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:65.239950px;}
.y21f{bottom:118.642125px;}
.y239{bottom:118.850955px;}
.yf6{bottom:119.013900px;}
.y5{bottom:119.055150px;}
.y173{bottom:119.055450px;}
.y192{bottom:119.055675px;}
.y1b0{bottom:119.152695px;}
.y1d{bottom:119.187375px;}
.y137{bottom:119.214600px;}
.y117{bottom:119.563200px;}
.y205{bottom:119.563425px;}
.y251{bottom:120.276825px;}
.y28c{bottom:122.090025px;}
.y278{bottom:122.090168px;}
.y7e{bottom:122.964600px;}
.yb6{bottom:123.201000px;}
.yf5{bottom:123.221550px;}
.y172{bottom:123.262950px;}
.y1e7{bottom:123.350955px;}
.y136{bottom:123.422250px;}
.y116{bottom:123.770850px;}
.y7d{bottom:127.172250px;}
.yb5{bottom:127.408500px;}
.y1cd{bottom:127.552650px;}
.y3d{bottom:129.202560px;}
.y5c{bottom:129.650565px;}
.y21e{bottom:135.141900px;}
.yf4{bottom:135.513900px;}
.y191{bottom:135.555900px;}
.y1c{bottom:135.687150px;}
.y135{bottom:135.714600px;}
.y115{bottom:136.063200px;}
.y21d{bottom:139.349400px;}
.y250{bottom:139.401825px;}
.y238{bottom:139.551690px;}
.yb4{bottom:139.700850px;}
.yf3{bottom:139.721550px;}
.y1af{bottom:139.851945px;}
.y1b{bottom:139.894800px;}
.y134{bottom:139.922250px;}
.y114{bottom:140.270850px;}
.y277{bottom:141.215100px;}
.yb3{bottom:143.908500px;}
.y1e6{bottom:144.051690px;}
.y1cc{bottom:144.052350px;}
.y3c{bottom:149.901810px;}
.y5b{bottom:150.350970px;}
.yf2{bottom:152.013900px;}
.y190{bottom:152.055675px;}
.y1a{bottom:152.187375px;}
.y133{bottom:152.214600px;}
.yb2{bottom:156.201000px;}
.yf1{bottom:156.221550px;}
.y132{bottom:156.422250px;}
.y24f{bottom:158.526750px;}
.y237{bottom:160.250940px;}
.y276{bottom:160.340025px;}
.yb1{bottom:160.408500px;}
.y1ae{bottom:160.551195px;}
.y1cb{bottom:160.552050px;}
.y94{bottom:164.152500px;}
.y7c{bottom:164.153310px;}
.y1e5{bottom:164.750940px;}
.yf0{bottom:168.513900px;}
.y18f{bottom:168.555360px;}
.y19{bottom:168.687150px;}
.y3b{bottom:170.602050px;}
.y5a{bottom:171.051705px;}
.yef{bottom:172.721550px;}
.y18{bottom:172.894800px;}
.y1ca{bottom:177.051750px;}
.y275{bottom:179.464957px;}
.y236{bottom:180.951840px;}
.y1ad{bottom:181.251930px;}
.y93{bottom:184.851750px;}
.y153{bottom:184.851840px;}
.y7b{bottom:184.852560px;}
.yee{bottom:185.013900px;}
.y18e{bottom:185.055390px;}
.y171{bottom:185.407020px;}
.y1e4{bottom:185.451840px;}
.yed{bottom:189.221550px;}
.y21c{bottom:189.951735px;}
.y3a{bottom:191.302620px;}
.y59{bottom:191.751780px;}
.y131{bottom:195.201945px;}
.yd3{bottom:195.350880px;}
.y24e{bottom:195.651750px;}
.y274{bottom:198.589882px;}
.y18d{bottom:201.555420px;}
.y235{bottom:201.651915px;}
.y1ac{bottom:201.951840px;}
.y152{bottom:205.551840px;}
.y7a{bottom:205.552305px;}
.yb0{bottom:206.063265px;}
.y170{bottom:206.107095px;}
.y1e3{bottom:206.151840px;}
.y21b{bottom:206.451705px;}
.y39{bottom:212.002530px;}
.y58{bottom:212.451855px;}
.y1c9{bottom:214.251540px;}
.y130{bottom:215.901855px;}
.yd2{bottom:216.050955px;}
.y204{bottom:216.669420px;}
.y28b{bottom:217.714815px;}
.y273{bottom:217.714950px;}
.y18c{bottom:218.055450px;}
.y17{bottom:218.446500px;}
.y18b{bottom:222.262950px;}
.y234{bottom:222.351825px;}
.y1ab{bottom:222.651750px;}
.y21a{bottom:222.951810px;}
.y92{bottom:226.251750px;}
.y151{bottom:226.251930px;}
.y79{bottom:226.252050px;}
.yaf{bottom:226.763175px;}
.y16f{bottom:226.807170px;}
.y1e2{bottom:226.851750px;}
.y38{bottom:232.702605px;}
.y57{bottom:233.151930px;}
.y1c8{bottom:234.951615px;}
.y113{bottom:235.657020px;}
.y12f{bottom:236.601765px;}
.yd1{bottom:236.750865px;}
.y272{bottom:236.839815px;}
.y28a{bottom:236.839882px;}
.y16{bottom:237.196500px;}
.y203{bottom:237.369330px;}
.y219{bottom:239.451780px;}
.y233{bottom:243.051735px;}
.y150{bottom:246.952005px;}
.y78{bottom:246.952125px;}
.yec{bottom:247.100715px;}
.yae{bottom:247.463280px;}
.y16e{bottom:247.507080px;}
.y24d{bottom:249.051675px;}
.y37{bottom:253.402515px;}
.y56{bottom:253.851840px;}
.y1c7{bottom:255.651525px;}
.y218{bottom:255.951750px;}
.y271{bottom:255.964883px;}
.y112{bottom:256.357095px;}
.y12e{bottom:257.301675px;}
.yd0{bottom:257.450940px;}
.y202{bottom:258.069240px;}
.y232{bottom:263.751810px;}
.y1aa{bottom:264.051735px;}
.y15{bottom:264.946200px;}
.y24c{bottom:265.551780px;}
.y14f{bottom:267.651750px;}
.y77{bottom:267.651870px;}
.yeb{bottom:267.800790px;}
.yad{bottom:268.163355px;}
.y16d{bottom:268.207155px;}
.y1e1{bottom:268.251735px;}
.y36{bottom:274.102590px;}
.y55{bottom:274.551750px;}
.y289{bottom:275.089815px;}
.y270{bottom:275.089882px;}
.y1c6{bottom:276.351600px;}
.y111{bottom:277.057170px;}
.y12d{bottom:278.001720px;}
.ycf{bottom:278.150730px;}
.y201{bottom:278.769150px;}
.y1a9{bottom:280.551840px;}
.y24b{bottom:282.051750px;}
.y14{bottom:283.696350px;}
.y231{bottom:284.451720px;}
.y1e0{bottom:284.751705px;}
.y76{bottom:288.351945px;}
.y91{bottom:288.352350px;}
.yea{bottom:288.500865px;}
.yac{bottom:288.863430px;}
.y16c{bottom:288.907065px;}
.y18a{bottom:288.907260px;}
.y217{bottom:293.151675px;}
.y26f{bottom:294.214815px;}
.y288{bottom:294.214883px;}
.y35{bottom:294.802665px;}
.y1c5{bottom:297.051675px;}
.y1a8{bottom:297.051810px;}
.y110{bottom:297.757245px;}
.y14e{bottom:298.701750px;}
.y12c{bottom:298.701795px;}
.yce{bottom:298.850805px;}
.y1df{bottom:301.251810px;}
.y13{bottom:302.446350px;}
.y230{bottom:305.151795px;}
.y75{bottom:309.052020px;}
.y90{bottom:309.052425px;}
.ye9{bottom:309.200940px;}
.yab{bottom:309.563505px;}
.y16b{bottom:309.607140px;}
.y189{bottom:309.607335px;}
.y287{bottom:313.339747px;}
.y26e{bottom:313.339882px;}
.y1a7{bottom:313.551780px;}
.y216{bottom:313.851750px;}
.y34{bottom:315.502740px;}
.y1c4{bottom:317.751750px;}
.y1de{bottom:317.751780px;}
.y54{bottom:317.751870px;}
.y10f{bottom:318.457155px;}
.y12b{bottom:319.401870px;}
.ycd{bottom:319.550715px;}
.y200{bottom:320.169270px;}
.y12{bottom:321.196350px;}
.y22f{bottom:325.851705px;}
.y74{bottom:329.751930px;}
.y24a{bottom:329.752155px;}
.y8f{bottom:329.752335px;}
.ye8{bottom:329.900775px;}
.y1a6{bottom:330.051750px;}
.yaa{bottom:330.263415px;}
.y16a{bottom:330.307050px;}
.y188{bottom:330.307245px;}
.y26d{bottom:332.464747px;}
.y286{bottom:332.464815px;}
.y1dd{bottom:334.251750px;}
.y53{bottom:334.251840px;}
.y33{bottom:336.202650px;}
.y1ff{bottom:336.669240px;}
.y10e{bottom:339.157065px;}
.y11{bottom:339.946350px;}
.y12a{bottom:340.101945px;}
.y14d{bottom:340.102125px;}
.ycc{bottom:340.250790px;}
.y22e{bottom:346.551780px;}
.y73{bottom:350.452170px;}
.y249{bottom:350.452395px;}
.y8e{bottom:350.452410px;}
.ye7{bottom:350.600940px;}
.y52{bottom:350.751810px;}
.ya9{bottom:350.963490px;}
.y169{bottom:351.007125px;}
.y187{bottom:351.007320px;}
.y26c{bottom:351.589815px;}
.y285{bottom:351.589882px;}
.y1fe{bottom:353.169210px;}
.y215{bottom:355.251870px;}
.y32{bottom:356.902725px;}
.y10{bottom:358.696350px;}
.y1c3{bottom:359.151810px;}
.y10d{bottom:359.857140px;}
.y129{bottom:360.802020px;}
.y14c{bottom:360.802200px;}
.ycb{bottom:360.950865px;}
.y51{bottom:367.251780px;}
.y22d{bottom:367.251855px;}
.y1a5{bottom:367.252185px;}
.y1fd{bottom:369.669180px;}
.y26b{bottom:370.714882px;}
.y72{bottom:371.152245px;}
.y248{bottom:371.152470px;}
.y8d{bottom:371.152485px;}
.ye6{bottom:371.300625px;}
.y1dc{bottom:371.451765px;}
.ya8{bottom:371.663325px;}
.y168{bottom:371.706870px;}
.y186{bottom:371.707065px;}
.y214{bottom:371.751840px;}
.y1c2{bottom:375.651780px;}
.yf{bottom:377.446350px;}
.y31{bottom:377.602635px;}
.y10c{bottom:380.557050px;}
.y128{bottom:381.501930px;}
.y14b{bottom:381.502110px;}
.yca{bottom:381.650940px;}
.y50{bottom:383.751675px;}
.y1fc{bottom:386.169150px;}
.y22c{bottom:387.951765px;}
.y1a4{bottom:387.952095px;}
.y213{bottom:388.251810px;}
.y26a{bottom:389.839815px;}
.y284{bottom:389.839883px;}
.y71{bottom:391.852320px;}
.y247{bottom:391.852545px;}
.y8c{bottom:391.852560px;}
.ye5{bottom:392.000700px;}
.y1c1{bottom:392.151750px;}
.y1db{bottom:392.151840px;}
.ya7{bottom:392.363400px;}
.y167{bottom:392.406780px;}
.y185{bottom:392.406975px;}
.y30{bottom:398.302710px;}
.y4f{bottom:400.251780px;}
.y10b{bottom:401.257125px;}
.y127{bottom:402.201840px;}
.y14a{bottom:402.202020px;}
.yc9{bottom:402.350850px;}
.y212{bottom:404.751780px;}
.ye{bottom:405.196350px;}
.y22b{bottom:408.651840px;}
.y1a3{bottom:408.652170px;}
.y269{bottom:408.964882px;}
.y70{bottom:412.552065px;}
.y8b{bottom:412.552470px;}
.y246{bottom:412.552620px;}
.ye4{bottom:412.700775px;}
.y1da{bottom:412.851915px;}
.y166{bottom:413.106855px;}
.y184{bottom:413.107050px;}
.y4e{bottom:416.751750px;}
.y2f{bottom:419.002620px;}
.y211{bottom:421.251750px;}
.y10a{bottom:421.957035px;}
.y149{bottom:422.901930px;}
.y126{bottom:422.902110px;}
.y1fb{bottom:423.369525px;}
.ya6{bottom:423.413400px;}
.y268{bottom:428.089815px;}
.y283{bottom:428.089883px;}
.y22a{bottom:429.351750px;}
.y1c0{bottom:429.352050px;}
.y1a2{bottom:429.352080px;}
.y6f{bottom:433.251975px;}
.y8a{bottom:433.252380px;}
.y245{bottom:433.252530px;}
.ye3{bottom:433.400940px;}
.y1d9{bottom:433.551990px;}
.y165{bottom:433.806765px;}
.y183{bottom:433.806960px;}
.y2e{bottom:439.702530px;}
.y109{bottom:442.656945px;}
.y148{bottom:443.601840px;}
.y125{bottom:443.602020px;}
.yc8{bottom:443.750850px;}
.y1fa{bottom:444.069435px;}
.y282{bottom:447.214815px;}
.y267{bottom:447.214882px;}
.y1bf{bottom:450.052125px;}
.y1a1{bottom:450.052155px;}
.y6e{bottom:453.951885px;}
.y4d{bottom:453.952125px;}
.y244{bottom:453.952275px;}
.ye2{bottom:454.100850px;}
.y1d8{bottom:454.251900px;}
.y164{bottom:454.506840px;}
.y182{bottom:454.507035px;}
.y210{bottom:458.451675px;}
.y2d{bottom:460.402440px;}
.yd{bottom:461.446350px;}
.y108{bottom:463.356855px;}
.y124{bottom:464.302095px;}
.y147{bottom:464.302350px;}
.y1f9{bottom:464.769345px;}
.ya5{bottom:464.813340px;}
.y297{bottom:466.339748px;}
.y266{bottom:466.339815px;}
.y281{bottom:466.339883px;}
.y229{bottom:470.751750px;}
.y1be{bottom:470.752035px;}
.y1a0{bottom:470.752065px;}
.y6d{bottom:474.651795px;}
.y4c{bottom:474.652035px;}
.y243{bottom:474.652185px;}
.y1d7{bottom:474.951810px;}
.y163{bottom:475.206840px;}
.y181{bottom:475.206945px;}
.y20f{bottom:479.151750px;}
.y2c{bottom:481.102350px;}
.y107{bottom:484.056765px;}
.y123{bottom:485.002005px;}
.y146{bottom:485.002260px;}
.ye1{bottom:485.150850px;}
.y296{bottom:485.464815px;}
.y265{bottom:485.464882px;}
.y1f8{bottom:485.469090px;}
.ya4{bottom:485.513415px;}
.yc{bottom:489.196350px;}
.y1bd{bottom:491.451945px;}
.y19f{bottom:491.451975px;}
.y6c{bottom:495.351705px;}
.y4b{bottom:495.351945px;}
.y242{bottom:495.352095px;}
.y1d6{bottom:495.651885px;}
.y180{bottom:495.906855px;}
.y162{bottom:495.906930px;}
.y2b{bottom:501.802260px;}
.y264{bottom:504.589883px;}
.y106{bottom:504.756840px;}
.y122{bottom:505.701750px;}
.y145{bottom:505.702170px;}
.yc7{bottom:505.851030px;}
.y1f7{bottom:506.169165px;}
.ya3{bottom:506.213490px;}
.yb{bottom:507.946350px;}
.y1bc{bottom:512.151855px;}
.y19e{bottom:512.152050px;}
.y6b{bottom:516.051615px;}
.y4a{bottom:516.051855px;}
.y241{bottom:516.052005px;}
.y1d5{bottom:516.351795px;}
.y17f{bottom:516.606765px;}
.y161{bottom:516.606840px;}
.y20e{bottom:520.551810px;}
.y2a{bottom:522.502005px;}
.y263{bottom:523.714882px;}
.y105{bottom:525.456840px;}
.y144{bottom:526.402080px;}
.ye0{bottom:526.550550px;}
.yc6{bottom:526.550940px;}
.ya{bottom:526.696350px;}
.y1f6{bottom:526.869240px;}
.ya2{bottom:526.913175px;}
.y1bb{bottom:532.851765px;}
.y228{bottom:532.851870px;}
.y19d{bottom:532.851960px;}
.y6a{bottom:536.751525px;}
.y121{bottom:536.751750px;}
.y49{bottom:536.751765px;}
.y240{bottom:536.751915px;}
.y20d{bottom:537.051780px;}
.y1d4{bottom:537.051870px;}
.y17e{bottom:537.306675px;}
.y160{bottom:537.306750px;}
.y262{bottom:542.839883px;}
.y29{bottom:543.201915px;}
.y9{bottom:545.446350px;}
.y104{bottom:546.156615px;}
.y143{bottom:547.102155px;}
.ydf{bottom:547.250625px;}
.yc5{bottom:547.251015px;}
.y1f5{bottom:547.569315px;}
.ya1{bottom:547.613250px;}
.y20c{bottom:553.551750px;}
.y1ba{bottom:553.551840px;}
.y227{bottom:553.551945px;}
.y19c{bottom:553.552035px;}
.y69{bottom:557.451600px;}
.y48{bottom:557.451840px;}
.y23f{bottom:557.451990px;}
.y1d3{bottom:557.751780px;}
.y17d{bottom:558.006750px;}
.y280{bottom:561.964747px;}
.y295{bottom:561.964815px;}
.y261{bottom:561.964882px;}
.y28{bottom:563.901990px;}
.y8{bottom:564.196350px;}
.y103{bottom:566.856690px;}
.y142{bottom:567.802065px;}
.yde{bottom:567.950700px;}
.yc4{bottom:567.951090px;}
.y1f4{bottom:568.269060px;}
.ya0{bottom:568.313325px;}
.y1b9{bottom:574.251750px;}
.y226{bottom:574.251855px;}
.y19b{bottom:574.251945px;}
.y68{bottom:578.151510px;}
.y89{bottom:578.151585px;}
.y120{bottom:578.151645px;}
.y47{bottom:578.151750px;}
.y23e{bottom:578.151900px;}
.y1d2{bottom:578.451690px;}
.y15f{bottom:578.706750px;}
.y27f{bottom:581.089815px;}
.y294{bottom:581.089883px;}
.y260{bottom:581.089950px;}
.y7{bottom:582.946350px;}
.y27{bottom:584.601900px;}
.y102{bottom:587.556600px;}
.y141{bottom:588.501975px;}
.ydd{bottom:588.650775px;}
.yc3{bottom:588.651000px;}
.y1f3{bottom:588.969300px;}
.y9f{bottom:589.013400px;}
.y20b{bottom:590.751765px;}
.y225{bottom:594.951765px;}
.y19a{bottom:594.951855px;}
.y67{bottom:598.851585px;}
.y88{bottom:598.851660px;}
.y11f{bottom:598.851720px;}
.y23d{bottom:598.851975px;}
.y1d1{bottom:599.151765px;}
.y17c{bottom:599.406750px;}
.y25f{bottom:600.214882px;}
.y293{bottom:600.214890px;}
.y6{bottom:601.696350px;}
.y101{bottom:608.256675px;}
.y140{bottom:609.201720px;}
.ydc{bottom:609.350865px;}
.yc2{bottom:609.351075px;}
.y9e{bottom:609.713325px;}
.y20a{bottom:611.451840px;}
.y1b8{bottom:615.651705px;}
.y224{bottom:615.651840px;}
.y199{bottom:615.651930px;}
.y25e{bottom:619.339957px;}
.y27e{bottom:619.340025px;}
.y66{bottom:619.551495px;}
.y87{bottom:619.551570px;}
.y11e{bottom:619.551630px;}
.y46{bottom:619.551750px;}
.y23c{bottom:619.551885px;}
.y1d0{bottom:619.851675px;}
.y26{bottom:626.301900px;}
.y100{bottom:628.956780px;}
.y13f{bottom:629.901630px;}
.ydb{bottom:630.050775px;}
.yc1{bottom:630.050985px;}
.y1f2{bottom:630.369390px;}
.y9d{bottom:630.413415px;}
.y1b7{bottom:632.151675px;}
.y209{bottom:632.151750px;}
.y223{bottom:636.351750px;}
.y198{bottom:636.351840px;}
.y27d{bottom:638.464815px;}
.y25d{bottom:638.464882px;}
.y65{bottom:640.251570px;}
.y86{bottom:640.251645px;}
.y11d{bottom:640.251705px;}
.y23b{bottom:640.251960px;}
.y1cf{bottom:640.551750px;}
.y15e{bottom:640.806900px;}
.y1f1{bottom:646.869360px;}
.y1b6{bottom:648.651645px;}
.yff{bottom:649.656690px;}
.y13e{bottom:650.601705px;}
.yda{bottom:650.750940px;}
.yc0{bottom:650.751060px;}
.y9c{bottom:651.113490px;}
.y197{bottom:657.051750px;}
.y292{bottom:657.589815px;}
.y25c{bottom:657.589883px;}
.y64{bottom:660.951645px;}
.y85{bottom:660.951720px;}
.y11c{bottom:660.951780px;}
.y23a{bottom:660.952035px;}
.y17b{bottom:661.506735px;}
.y15d{bottom:661.506810px;}
.y1f0{bottom:663.369330px;}
.y1b5{bottom:665.151750px;}
.yfe{bottom:670.356765px;}
.y13d{bottom:671.301615px;}
.yd9{bottom:671.450865px;}
.ybf{bottom:671.450970px;}
.y9b{bottom:671.813400px;}
.y208{bottom:673.551810px;}
.y25b{bottom:676.714882px;}
.y222{bottom:677.751810px;}
.y1ef{bottom:679.869300px;}
.y63{bottom:681.651555px;}
.y84{bottom:681.651630px;}
.y11b{bottom:681.651690px;}
.y45{bottom:681.651945px;}
.y1ce{bottom:681.951600px;}
.y17a{bottom:682.206810px;}
.y15c{bottom:682.206885px;}
.y207{bottom:690.051780px;}
.yfd{bottom:691.056675px;}
.y13c{bottom:692.001690px;}
.yd8{bottom:692.150775px;}
.ybe{bottom:692.150880px;}
.y221{bottom:694.251780px;}
.y25{bottom:695.001900px;}
.y291{bottom:695.839815px;}
.y25a{bottom:695.839883px;}
.y196{bottom:698.451705px;}
.y62{bottom:702.351630px;}
.y83{bottom:702.351705px;}
.y11a{bottom:702.351765px;}
.y44{bottom:702.352020px;}
.y9a{bottom:702.863400px;}
.y179{bottom:702.906885px;}
.y15b{bottom:702.906960px;}
.y206{bottom:706.551750px;}
.y220{bottom:710.751750px;}
.yfc{bottom:711.756765px;}
.y13b{bottom:712.701765px;}
.yd7{bottom:712.850775px;}
.ybd{bottom:712.850955px;}
.y195{bottom:714.951675px;}
.y259{bottom:714.964680px;}
.y27c{bottom:714.964815px;}
.y290{bottom:714.964882px;}
.y1ee{bottom:717.069315px;}
.y61{bottom:723.051540px;}
.y82{bottom:723.051615px;}
.y119{bottom:723.051675px;}
.y43{bottom:723.051930px;}
.y178{bottom:723.606795px;}
.y15a{bottom:723.606870px;}
.y24{bottom:724.251750px;}
.y194{bottom:731.451645px;}
.yfb{bottom:732.456675px;}
.y13a{bottom:733.401675px;}
.yd6{bottom:733.550940px;}
.ybc{bottom:733.551030px;}
.y258{bottom:734.089748px;}
.y28f{bottom:734.089815px;}
.y27b{bottom:734.089883px;}
.y1ed{bottom:737.769390px;}
.y23{bottom:743.001750px;}
.y60{bottom:743.751615px;}
.y81{bottom:743.751690px;}
.y1b4{bottom:743.751915px;}
.y42{bottom:743.752005px;}
.y99{bottom:744.263340px;}
.y177{bottom:744.306705px;}
.y159{bottom:744.306780px;}
.y193{bottom:747.951750px;}
.yfa{bottom:753.156750px;}
.y257{bottom:753.214815px;}
.y28e{bottom:753.214883px;}
.y27a{bottom:753.214950px;}
.y139{bottom:754.101750px;}
.ybb{bottom:754.250940px;}
.yd5{bottom:754.250955px;}
.y1ec{bottom:758.469300px;}
.y22{bottom:761.751900px;}
.y5f{bottom:764.451525px;}
.y80{bottom:764.451600px;}
.y1b3{bottom:764.451825px;}
.y41{bottom:764.451915px;}
.y98{bottom:764.963415px;}
.y176{bottom:765.006615px;}
.y158{bottom:765.006690px;}
.y28d{bottom:772.339815px;}
.y256{bottom:772.339883px;}
.yd4{bottom:774.950865px;}
.yba{bottom:774.950940px;}
.y21{bottom:780.501900px;}
.yf9{bottom:784.206750px;}
.y5e{bottom:785.151600px;}
.y7f{bottom:785.151675px;}
.y138{bottom:785.151750px;}
.y1b2{bottom:785.151900px;}
.y40{bottom:785.151990px;}
.y97{bottom:785.663325px;}
.y175{bottom:785.706690px;}
.y157{bottom:785.706765px;}
.y255{bottom:791.464883px;}
.yb9{bottom:795.650775px;}
.y20{bottom:799.251900px;}
.y1eb{bottom:799.869255px;}
.y5d{bottom:805.851675px;}
.y118{bottom:805.851750px;}
.y3f{bottom:805.852065px;}
.y96{bottom:806.363400px;}
.y174{bottom:806.406765px;}
.y156{bottom:806.406840px;}
.y279{bottom:810.589815px;}
.y254{bottom:810.589883px;}
.yb8{bottom:816.350850px;}
.y1ea{bottom:816.369225px;}
.y1f{bottom:818.002050px;}
.y2{bottom:819.076200px;}
.yf8{bottom:825.606840px;}
.y3e{bottom:826.551975px;}
.y1b1{bottom:826.552140px;}
.y155{bottom:827.106675px;}
.y253{bottom:829.714883px;}
.y1e9{bottom:832.869330px;}
.yf7{bottom:846.306750px;}
.y1e{bottom:847.252050px;}
.yb7{bottom:847.400850px;}
.y95{bottom:847.763400px;}
.y154{bottom:847.806750px;}
.y252{bottom:848.839950px;}
.y1e8{bottom:849.369300px;}
.y4{bottom:860.007300px;}
.y3{bottom:899.007300px;}
.h9{height:32.971500px;}
.h2{height:34.632000px;}
.h5{height:40.944000px;}
.h2a{height:43.961100px;}
.ha{height:43.962000px;}
.h28{height:43.962360px;}
.h11{height:46.062000px;}
.h2b{height:46.386000px;}
.h10{height:46.548000px;}
.h12{height:46.548300px;}
.h32{height:49.133130px;}
.h2d{height:49.133700px;}
.h2c{height:49.134000px;}
.h33{height:49.134240px;}
.h2e{height:49.134270px;}
.h30{height:49.134540px;}
.h31{height:49.134810px;}
.h2f{height:49.135080px;}
.h3{height:49.875000px;}
.h7{height:51.720000px;}
.h6{height:52.500000px;}
.h29{height:52.730760px;}
.h17{height:56.298000px;}
.h16{height:56.694000px;}
.h1c{height:56.891640px;}
.hb{height:56.892000px;}
.h26{height:56.892300px;}
.hd{height:56.892660px;}
.h19{height:56.892900px;}
.he{height:56.893320px;}
.hc{height:56.893980px;}
.hf{height:56.894640px;}
.h8{height:57.750000px;}
.h15{height:57.750660px;}
.h24{height:64.446600px;}
.h22{height:64.447560px;}
.h25{height:64.448280px;}
.h14{height:64.448340px;}
.h1d{height:64.448580px;}
.h1e{height:64.448640px;}
.h13{height:64.448700px;}
.h18{height:64.449000px;}
.h23{height:64.449120px;}
.h1a{height:64.449300px;}
.h1b{height:64.449480px;}
.h27{height:64.449600px;}
.h21{height:64.449840px;}
.h1f{height:64.449900px;}
.h20{height:64.450200px;}
.h4{height:105.000000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835015px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x5{left:51.578250px;}
.x3{left:85.039350px;}
.x2{left:96.184200px;}
.x7{left:102.047250px;}
.x6{left:106.299150px;}
.x4{left:112.840650px;}
.x8{left:353.807700px;}
.x1{left:356.474700px;}
@media print{
.v2{vertical-align:-19.360000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.839787pt;}
.v1{vertical-align:19.359733pt;}
.ls4{letter-spacing:-1.066667pt;}
.ls26{letter-spacing:-0.880000pt;}
.ls27{letter-spacing:-0.762667pt;}
.ls8d{letter-spacing:-0.760000pt;}
.ls29{letter-spacing:-0.592533pt;}
.ls23{letter-spacing:-0.586667pt;}
.ls28{letter-spacing:-0.528000pt;}
.lsa1{letter-spacing:-0.506667pt;}
.ls64{letter-spacing:-0.469333pt;}
.ls25{letter-spacing:-0.293333pt;}
.ls8{letter-spacing:-0.266667pt;}
.ls68{letter-spacing:-0.234667pt;}
.ls5{letter-spacing:-0.217600pt;}
.ls22{letter-spacing:-0.023467pt;}
.ls7{letter-spacing:-0.017600pt;}
.ls16{letter-spacing:-0.013200pt;}
.ls2e{letter-spacing:-0.011733pt;}
.ls1c{letter-spacing:-0.005867pt;}
.ls3{letter-spacing:0.000000pt;}
.ls75{letter-spacing:0.048000pt;}
.ls8e{letter-spacing:0.050667pt;}
.ls1e{letter-spacing:0.058667pt;}
.ls56{letter-spacing:0.088000pt;}
.ls13{letter-spacing:0.117333pt;}
.ls41{letter-spacing:0.132000pt;}
.ls2{letter-spacing:0.160000pt;}
.lsf{letter-spacing:0.163093pt;}
.ls21{letter-spacing:0.176000pt;}
.ls6{letter-spacing:0.213333pt;}
.ls4d{letter-spacing:0.220000pt;}
.ls72{letter-spacing:0.226667pt;}
.ls12{letter-spacing:0.234667pt;}
.ls6b{letter-spacing:0.240000pt;}
.ls7b{letter-spacing:0.253333pt;}
.lsb{letter-spacing:0.266667pt;}
.ls9{letter-spacing:0.272000pt;}
.ls59{letter-spacing:0.275733pt;}
.ls1d{letter-spacing:0.288000pt;}
.ls58{letter-spacing:0.293333pt;}
.ls9c{letter-spacing:0.304000pt;}
.ls63{letter-spacing:0.308000pt;}
.ls11{letter-spacing:0.352000pt;}
.ls7a{letter-spacing:0.354667pt;}
.ls36{letter-spacing:0.366829pt;}
.ls91{letter-spacing:0.405333pt;}
.lse{letter-spacing:0.410667pt;}
.ls5e{letter-spacing:0.455840pt;}
.ls19{letter-spacing:0.469333pt;}
.ls79{letter-spacing:0.480000pt;}
.ls43{letter-spacing:0.528000pt;}
.ls60{letter-spacing:0.544000pt;}
.ls9a{letter-spacing:0.557333pt;}
.ls48{letter-spacing:0.572000pt;}
.ls10{letter-spacing:0.586667pt;}
.ls42{letter-spacing:0.645333pt;}
.ls18{letter-spacing:0.704000pt;}
.ls2f{letter-spacing:0.821333pt;}
.ls4e{letter-spacing:0.880000pt;}
.ls49{letter-spacing:0.938667pt;}
.ls74{letter-spacing:0.997333pt;}
.lsc{letter-spacing:1.056000pt;}
.ls17{letter-spacing:1.066667pt;}
.ls32{letter-spacing:1.114667pt;}
.ls84{letter-spacing:1.165333pt;}
.ls5a{letter-spacing:1.173333pt;}
.ls8c{letter-spacing:1.216000pt;}
.ls3b{letter-spacing:1.232000pt;}
.ls93{letter-spacing:1.368000pt;}
.ls82{letter-spacing:1.520000pt;}
.ls31{letter-spacing:1.701333pt;}
.ls98{letter-spacing:1.722667pt;}
.lsa2{letter-spacing:1.773333pt;}
.ls3a{letter-spacing:1.818667pt;}
.ls86{letter-spacing:2.026667pt;}
.ls47{letter-spacing:2.112000pt;}
.ls67{letter-spacing:2.288000pt;}
.ls15{letter-spacing:2.992000pt;}
.ls89{letter-spacing:3.040000pt;}
.ls88{letter-spacing:3.090667pt;}
.ls5b{letter-spacing:3.637333pt;}
.ls90{letter-spacing:13.866667pt;}
.ls80{letter-spacing:13.874560pt;}
.ls1a{letter-spacing:14.579040pt;}
.ls8a{letter-spacing:14.672520pt;}
.ls8b{letter-spacing:14.682693pt;}
.ls9d{letter-spacing:14.806504pt;}
.ls70{letter-spacing:15.346560pt;}
.ls7e{letter-spacing:16.192520pt;}
.ls99{letter-spacing:16.193171pt;}
.ls7f{letter-spacing:16.196107pt;}
.ls7c{letter-spacing:16.198133pt;}
.ls96{letter-spacing:16.198640pt;}
.ls92{letter-spacing:16.199653pt;}
.ls97{letter-spacing:16.203200pt;}
.ls1{letter-spacing:16.401301pt;}
.lsa{letter-spacing:16.408480pt;}
.ls81{letter-spacing:16.468693pt;}
.lsa0{letter-spacing:17.021467pt;}
.ls9e{letter-spacing:17.295067pt;}
.ls1b{letter-spacing:17.917920pt;}
.lsa4{letter-spacing:17.959675pt;}
.lsa5{letter-spacing:17.963867pt;}
.lsa3{letter-spacing:18.144240pt;}
.ls24{letter-spacing:18.171413pt;}
.lsa7{letter-spacing:18.272933pt;}
.ls6a{letter-spacing:18.755147pt;}
.ls50{letter-spacing:18.762773pt;}
.ls78{letter-spacing:18.839627pt;}
.ls35{letter-spacing:18.876587pt;}
.ls6c{letter-spacing:19.224480pt;}
.ls1f{letter-spacing:19.278453pt;}
.lsd{letter-spacing:19.300160pt;}
.ls46{letter-spacing:19.333600pt;}
.ls3d{letter-spacing:19.559467pt;}
.ls6e{letter-spacing:19.628107pt;}
.ls55{letter-spacing:19.912053pt;}
.ls54{letter-spacing:19.913227pt;}
.ls3e{letter-spacing:19.955467pt;}
.ls73{letter-spacing:20.417760pt;}
.ls9f{letter-spacing:20.444507pt;}
.ls69{letter-spacing:20.486400pt;}
.ls2b{letter-spacing:20.491680pt;}
.ls2a{letter-spacing:20.625440pt;}
.ls20{letter-spacing:20.999147pt;}
.ls6d{letter-spacing:21.002400pt;}
.lsa6{letter-spacing:21.304320pt;}
.ls76{letter-spacing:21.381067pt;}
.ls0{letter-spacing:21.471467pt;}
.ls2d{letter-spacing:21.508943pt;}
.ls5f{letter-spacing:21.672507pt;}
.ls4b{letter-spacing:21.877973pt;}
.ls33{letter-spacing:22.250507pt;}
.ls62{letter-spacing:22.279973pt;}
.ls61{letter-spacing:22.280427pt;}
.ls34{letter-spacing:22.413013pt;}
.ls53{letter-spacing:23.308267pt;}
.ls77{letter-spacing:23.365173pt;}
.ls4a{letter-spacing:23.822187pt;}
.ls65{letter-spacing:23.933653pt;}
.ls8f{letter-spacing:24.364587pt;}
.ls7d{letter-spacing:24.579413pt;}
.ls95{letter-spacing:24.728880pt;}
.ls9b{letter-spacing:24.871760pt;}
.ls52{letter-spacing:25.078827pt;}
.ls66{letter-spacing:25.080000pt;}
.ls4f{letter-spacing:25.120480pt;}
.ls5c{letter-spacing:25.180907pt;}
.ls85{letter-spacing:25.449867pt;}
.ls71{letter-spacing:25.650827pt;}
.ls94{letter-spacing:25.651520pt;}
.ls38{letter-spacing:25.676748pt;}
.ls83{letter-spacing:25.818213pt;}
.ls2c{letter-spacing:25.895285pt;}
.ls6f{letter-spacing:25.995787pt;}
.ls40{letter-spacing:26.300853pt;}
.ls87{letter-spacing:26.320320pt;}
.ls5d{letter-spacing:27.225440pt;}
.ls57{letter-spacing:27.518773pt;}
.ls4c{letter-spacing:28.175253pt;}
.ls51{letter-spacing:28.222187pt;}
.ls3f{letter-spacing:28.250933pt;}
.ls14{letter-spacing:28.263253pt;}
.ls37{letter-spacing:28.502613pt;}
.ls3c{letter-spacing:28.511413pt;}
.ls30{letter-spacing:28.629920pt;}
.ls45{letter-spacing:28.689760pt;}
.ls44{letter-spacing:28.704427pt;}
.ls39{letter-spacing:30.532480pt;}
.ws1c{word-spacing:-19.125333pt;}
.wsb9{word-spacing:-19.066667pt;}
.wsba{word-spacing:-19.049067pt;}
.ws1d{word-spacing:-18.890667pt;}
.ws8f{word-spacing:-18.832000pt;}
.ws1b{word-spacing:-18.773333pt;}
.wsce{word-spacing:-18.538667pt;}
.ws82{word-spacing:-18.480000pt;}
.ws66{word-spacing:-18.186667pt;}
.ws2{word-spacing:-16.426667pt;}
.ws77{word-spacing:-16.074667pt;}
.wsdf{word-spacing:-15.781333pt;}
.wsa0{word-spacing:-14.652000pt;}
.wsc0{word-spacing:-14.388000pt;}
.ws90{word-spacing:-14.212000pt;}
.wsb3{word-spacing:-14.168000pt;}
.ws53{word-spacing:-14.080000pt;}
.ws106{word-spacing:-13.882667pt;}
.ws108{word-spacing:-13.122667pt;}
.ws5{word-spacing:-12.693333pt;}
.ws3{word-spacing:-12.320000pt;}
.ws17{word-spacing:-12.306800pt;}
.ws19{word-spacing:-12.302400pt;}
.wsf2{word-spacing:-11.520000pt;}
.ws105{word-spacing:-2.445396pt;}
.ws67{word-spacing:-0.004693pt;}
.ws18{word-spacing:-0.001760pt;}
.ws7{word-spacing:0.000000pt;}
.ws0{word-spacing:0.001280pt;}
.ws4{word-spacing:0.001760pt;}
.ws112{word-spacing:0.050667pt;}
.ws97{word-spacing:0.058667pt;}
.ws111{word-spacing:0.101333pt;}
.ws8a{word-spacing:0.117333pt;}
.ws73{word-spacing:0.176000pt;}
.wsdc{word-spacing:0.192000pt;}
.ws147{word-spacing:0.202667pt;}
.wsc8{word-spacing:0.226667pt;}
.ws76{word-spacing:0.234667pt;}
.wse1{word-spacing:0.240000pt;}
.ws116{word-spacing:0.253333pt;}
.ws16{word-spacing:0.272000pt;}
.ws4d{word-spacing:0.293333pt;}
.wscf{word-spacing:0.336000pt;}
.ws6c{word-spacing:0.352000pt;}
.ws130{word-spacing:0.354667pt;}
.ws12f{word-spacing:0.405333pt;}
.wse2{word-spacing:0.410667pt;}
.wsfd{word-spacing:0.469333pt;}
.ws27{word-spacing:0.528000pt;}
.ws10{word-spacing:0.533333pt;}
.wse3{word-spacing:0.576000pt;}
.wsb{word-spacing:0.586667pt;}
.ws126{word-spacing:0.658667pt;}
.ws32{word-spacing:0.704000pt;}
.ws134{word-spacing:0.709333pt;}
.ws141{word-spacing:0.760000pt;}
.ws8e{word-spacing:0.762667pt;}
.wsda{word-spacing:0.768000pt;}
.ws133{word-spacing:0.810667pt;}
.wse7{word-spacing:0.816000pt;}
.ws2a{word-spacing:0.821333pt;}
.wsd1{word-spacing:0.864000pt;}
.ws57{word-spacing:0.880000pt;}
.wsfa{word-spacing:0.912000pt;}
.ws5f{word-spacing:0.938667pt;}
.ws131{word-spacing:0.962667pt;}
.wsab{word-spacing:0.997333pt;}
.ws146{word-spacing:1.013333pt;}
.ws5c{word-spacing:1.056000pt;}
.ws47{word-spacing:1.104000pt;}
.ws52{word-spacing:1.114667pt;}
.ws6b{word-spacing:1.173333pt;}
.ws3e{word-spacing:1.232000pt;}
.ws33{word-spacing:1.290667pt;}
.wsee{word-spacing:1.296000pt;}
.wsa1{word-spacing:1.336427pt;}
.ws51{word-spacing:1.349333pt;}
.wsef{word-spacing:1.392000pt;}
.wsaa{word-spacing:1.408000pt;}
.ws120{word-spacing:1.418667pt;}
.ws46{word-spacing:1.440000pt;}
.ws69{word-spacing:1.466667pt;}
.ws12b{word-spacing:1.520000pt;}
.ws5e{word-spacing:1.525333pt;}
.wsea{word-spacing:1.536000pt;}
.ws87{word-spacing:1.584000pt;}
.ws139{word-spacing:1.621333pt;}
.wsc7{word-spacing:1.632000pt;}
.ws62{word-spacing:1.642667pt;}
.ws13b{word-spacing:1.672000pt;}
.ws45{word-spacing:1.680000pt;}
.ws64{word-spacing:1.701333pt;}
.ws143{word-spacing:1.722667pt;}
.wsdd{word-spacing:1.728000pt;}
.ws4e{word-spacing:1.760000pt;}
.ws13c{word-spacing:1.773333pt;}
.wsc6{word-spacing:1.813333pt;}
.ws70{word-spacing:1.818667pt;}
.wsf5{word-spacing:1.824000pt;}
.ws138{word-spacing:1.874667pt;}
.ws43{word-spacing:1.877333pt;}
.ws78{word-spacing:1.881440pt;}
.ws13{word-spacing:1.920000pt;}
.ws13a{word-spacing:1.925333pt;}
.ws8d{word-spacing:1.936000pt;}
.ws7b{word-spacing:1.994667pt;}
.ws12a{word-spacing:2.026667pt;}
.ws1a{word-spacing:2.055935pt;}
.wse0{word-spacing:2.064000pt;}
.ws13f{word-spacing:2.077333pt;}
.ws6f{word-spacing:2.112000pt;}
.wsc5{word-spacing:2.130667pt;}
.wsd5{word-spacing:2.160000pt;}
.ws71{word-spacing:2.170667pt;}
.wsf1{word-spacing:2.176000pt;}
.ws48{word-spacing:2.208000pt;}
.ws63{word-spacing:2.229333pt;}
.wscb{word-spacing:2.266667pt;}
.ws7d{word-spacing:2.288000pt;}
.ws107{word-spacing:2.296020pt;}
.wsae{word-spacing:2.346667pt;}
.ws148{word-spacing:2.381333pt;}
.ws68{word-spacing:2.405333pt;}
.ws9a{word-spacing:2.464000pt;}
.ws36{word-spacing:2.522667pt;}
.wsd6{word-spacing:2.544000pt;}
.wsbc{word-spacing:2.581333pt;}
.ws122{word-spacing:2.584000pt;}
.ws49{word-spacing:2.592000pt;}
.wsb2{word-spacing:2.640000pt;}
.ws11{word-spacing:2.666667pt;}
.ws102{word-spacing:2.685333pt;}
.ws4b{word-spacing:2.736000pt;}
.ws81{word-spacing:2.757333pt;}
.ws110{word-spacing:2.786667pt;}
.ws9b{word-spacing:2.874667pt;}
.ws8{word-spacing:2.880000pt;}
.ws113{word-spacing:2.888000pt;}
.wsc4{word-spacing:2.933333pt;}
.ws115{word-spacing:2.938667pt;}
.wsa6{word-spacing:2.992000pt;}
.ws4a{word-spacing:3.024000pt;}
.ws59{word-spacing:3.050667pt;}
.wsc{word-spacing:3.093333pt;}
.ws3b{word-spacing:3.109333pt;}
.wsb8{word-spacing:3.130453pt;}
.ws101{word-spacing:3.141333pt;}
.ws1f{word-spacing:3.146667pt;}
.ws2c{word-spacing:3.168000pt;}
.ws11f{word-spacing:3.192000pt;}
.wsb4{word-spacing:3.226667pt;}
.ws10f{word-spacing:3.242667pt;}
.ws5d{word-spacing:3.285333pt;}
.wsf7{word-spacing:3.312000pt;}
.wsc3{word-spacing:3.344000pt;}
.ws80{word-spacing:3.402667pt;}
.wse5{word-spacing:3.408000pt;}
.ws114{word-spacing:3.445333pt;}
.ws135{word-spacing:3.496000pt;}
.ws34{word-spacing:3.520000pt;}
.ws5a{word-spacing:3.578667pt;}
.ws58{word-spacing:3.637333pt;}
.wse4{word-spacing:3.648000pt;}
.wsd3{word-spacing:3.696000pt;}
.ws26{word-spacing:3.754667pt;}
.ws61{word-spacing:3.813333pt;}
.ws7a{word-spacing:3.832693pt;}
.ws12{word-spacing:3.840000pt;}
.ws10e{word-spacing:3.850667pt;}
.ws88{word-spacing:3.872000pt;}
.ws9c{word-spacing:3.930667pt;}
.wsf9{word-spacing:3.936000pt;}
.ws3c{word-spacing:3.989333pt;}
.wsb7{word-spacing:4.048000pt;}
.ws11a{word-spacing:4.053333pt;}
.ws1{word-spacing:4.092000pt;}
.ws149{word-spacing:4.104000pt;}
.wsd8{word-spacing:4.106667pt;}
.ws145{word-spacing:4.154667pt;}
.wsb0{word-spacing:4.165333pt;}
.wsc2{word-spacing:4.224000pt;}
.ws132{word-spacing:4.256000pt;}
.ws6e{word-spacing:4.282667pt;}
.wsf0{word-spacing:4.320000pt;}
.wseb{word-spacing:4.341333pt;}
.ws13e{word-spacing:4.357333pt;}
.ws20{word-spacing:4.373333pt;}
.ws99{word-spacing:4.400000pt;}
.ws9{word-spacing:4.426667pt;}
.ws91{word-spacing:4.458667pt;}
.wsf8{word-spacing:4.464000pt;}
.ws10d{word-spacing:4.509333pt;}
.ws54{word-spacing:4.517333pt;}
.wsac{word-spacing:4.576000pt;}
.ws14{word-spacing:4.586667pt;}
.wsa9{word-spacing:4.634667pt;}
.ws44{word-spacing:4.693333pt;}
.ws38{word-spacing:4.740267pt;}
.ws40{word-spacing:4.752000pt;}
.ws42{word-spacing:4.810667pt;}
.ws137{word-spacing:4.813333pt;}
.wse9{word-spacing:4.848000pt;}
.ws144{word-spacing:4.864000pt;}
.ws28{word-spacing:4.869333pt;}
.ws11d{word-spacing:4.914667pt;}
.ws39{word-spacing:4.928000pt;}
.wsbd{word-spacing:4.986667pt;}
.ws11e{word-spacing:5.016000pt;}
.wsb1{word-spacing:5.045333pt;}
.ws98{word-spacing:5.104000pt;}
.ws13d{word-spacing:5.117333pt;}
.wsa7{word-spacing:5.162667pt;}
.ws140{word-spacing:5.168000pt;}
.ws10c{word-spacing:5.218667pt;}
.ws50{word-spacing:5.280000pt;}
.wsf4{word-spacing:5.328000pt;}
.ws83{word-spacing:5.338667pt;}
.wsd0{word-spacing:5.376000pt;}
.wsaf{word-spacing:5.397333pt;}
.ws117{word-spacing:5.421333pt;}
.wse8{word-spacing:5.424000pt;}
.wsf{word-spacing:5.493333pt;}
.ws60{word-spacing:5.514667pt;}
.ws127{word-spacing:5.573333pt;}
.ws136{word-spacing:5.624000pt;}
.wse6{word-spacing:5.664000pt;}
.wscc{word-spacing:5.666667pt;}
.ws10b{word-spacing:5.674667pt;}
.wsf3{word-spacing:5.690667pt;}
.wsd9{word-spacing:5.712000pt;}
.wsbf{word-spacing:5.749333pt;}
.ws119{word-spacing:5.776000pt;}
.wsb6{word-spacing:5.808000pt;}
.wsc1{word-spacing:5.866667pt;}
.ws8b{word-spacing:5.925333pt;}
.wsfe{word-spacing:5.974634pt;}
.wsa2{word-spacing:5.984000pt;}
.wsd7{word-spacing:6.000000pt;}
.ws129{word-spacing:6.029333pt;}
.wsbe{word-spacing:6.042667pt;}
.ws100{word-spacing:6.048000pt;}
.ws11c{word-spacing:6.080000pt;}
.ws29{word-spacing:6.101333pt;}
.wsa8{word-spacing:6.160000pt;}
.wsca{word-spacing:6.165333pt;}
.wsed{word-spacing:6.192000pt;}
.ws6d{word-spacing:6.218667pt;}
.wsd{word-spacing:6.240000pt;}
.ws72{word-spacing:6.277333pt;}
.ws12c{word-spacing:6.333333pt;}
.ws55{word-spacing:6.336000pt;}
.ws12e{word-spacing:6.384000pt;}
.ws37{word-spacing:6.394667pt;}
.ws95{word-spacing:6.453333pt;}
.wsf6{word-spacing:6.480000pt;}
.wsd4{word-spacing:6.512000pt;}
.ws125{word-spacing:6.536000pt;}
.ws79{word-spacing:6.553067pt;}
.ws3f{word-spacing:6.570667pt;}
.ws103{word-spacing:6.586667pt;}
.ws6{word-spacing:6.607480pt;}
.ws23{word-spacing:6.629333pt;}
.ws10a{word-spacing:6.637333pt;}
.ws24{word-spacing:6.688000pt;}
.wscd{word-spacing:6.709333pt;}
.ws2d{word-spacing:6.746667pt;}
.ws21{word-spacing:6.773333pt;}
.ws74{word-spacing:6.805333pt;}
.ws7e{word-spacing:6.864000pt;}
.ws11b{word-spacing:6.890667pt;}
.ws92{word-spacing:6.922667pt;}
.ws118{word-spacing:6.941333pt;}
.ws15{word-spacing:6.981333pt;}
.ws121{word-spacing:6.992000pt;}
.wsfc{word-spacing:7.026667pt;}
.ws3a{word-spacing:7.040000pt;}
.ws128{word-spacing:7.042667pt;}
.wsd2{word-spacing:7.098667pt;}
.ws7f{word-spacing:7.157333pt;}
.wsc9{word-spacing:7.162667pt;}
.ws85{word-spacing:7.216000pt;}
.wsa4{word-spacing:7.274667pt;}
.ws9e{word-spacing:7.333333pt;}
.ws4c{word-spacing:7.344000pt;}
.ws56{word-spacing:7.392000pt;}
.wsde{word-spacing:7.440000pt;}
.wsa5{word-spacing:7.450667pt;}
.ws22{word-spacing:7.466667pt;}
.ws12d{word-spacing:7.498667pt;}
.ws86{word-spacing:7.509333pt;}
.ws96{word-spacing:7.568000pt;}
.wsfb{word-spacing:7.584000pt;}
.ws142{word-spacing:7.600000pt;}
.ws124{word-spacing:7.650667pt;}
.ws75{word-spacing:7.685333pt;}
.ws104{word-spacing:7.752000pt;}
.wsbb{word-spacing:7.802667pt;}
.ws109{word-spacing:7.853333pt;}
.wsec{word-spacing:7.861333pt;}
.wsb5{word-spacing:7.920000pt;}
.ws6a{word-spacing:7.978667pt;}
.ws8c{word-spacing:8.037333pt;}
.ws123{word-spacing:8.056000pt;}
.wse{word-spacing:8.106667pt;}
.ws93{word-spacing:8.154667pt;}
.ws1e{word-spacing:8.266667pt;}
.ws89{word-spacing:8.272000pt;}
.wsa{word-spacing:8.320000pt;}
.ws25{word-spacing:8.330667pt;}
.ws3d{word-spacing:8.389333pt;}
.wsff{word-spacing:8.448000pt;}
.ws9d{word-spacing:8.506667pt;}
.ws84{word-spacing:8.565333pt;}
.ws2e{word-spacing:8.624000pt;}
.wsdb{word-spacing:8.682667pt;}
.ws94{word-spacing:8.741333pt;}
.ws2f{word-spacing:8.800000pt;}
.ws7c{word-spacing:8.858667pt;}
.ws41{word-spacing:8.917333pt;}
.ws2b{word-spacing:8.976000pt;}
.ws30{word-spacing:9.034667pt;}
.ws31{word-spacing:9.093333pt;}
.ws65{word-spacing:9.152000pt;}
.wsa3{word-spacing:9.210667pt;}
.ws35{word-spacing:9.269333pt;}
.ws5b{word-spacing:9.328000pt;}
.ws4f{word-spacing:9.386667pt;}
.ws9f{word-spacing:10.640000pt;}
.wsad{word-spacing:13.878537pt;}
._1{margin-left:-8.426667pt;}
._7{margin-left:-6.864000pt;}
._0{margin-left:-4.906667pt;}
._3{margin-left:-2.647399pt;}
._5{margin-left:-0.998933pt;}
._9{width:0.889082pt;}
._2{width:1.813333pt;}
._8{width:2.852407pt;}
._4{width:6.952846pt;}
._b{width:16.116553pt;}
._c{width:17.895014pt;}
._6{width:20.754369pt;}
._a{width:23.983624pt;}
._d{width:24.927705pt;}
.fs0{font-size:32.000000pt;}
.fs8{font-size:34.000000pt;}
.fsa{font-size:36.000000pt;}
.fs3{font-size:42.666667pt;}
.fs6{font-size:44.000000pt;}
.fs7{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:57.991067pt;}
.y21f{bottom:105.459667pt;}
.y239{bottom:105.645293pt;}
.yf6{bottom:105.790133pt;}
.y5{bottom:105.826800pt;}
.y173{bottom:105.827067pt;}
.y192{bottom:105.827267pt;}
.y1b0{bottom:105.913507pt;}
.y1d{bottom:105.944333pt;}
.y137{bottom:105.968533pt;}
.y117{bottom:106.278400pt;}
.y205{bottom:106.278600pt;}
.y251{bottom:106.912733pt;}
.y28c{bottom:108.524467pt;}
.y278{bottom:108.524593pt;}
.y7e{bottom:109.301867pt;}
.yb6{bottom:109.512000pt;}
.yf5{bottom:109.530267pt;}
.y172{bottom:109.567067pt;}
.y1e7{bottom:109.645293pt;}
.y136{bottom:109.708667pt;}
.y116{bottom:110.018533pt;}
.y7d{bottom:113.042000pt;}
.yb5{bottom:113.252000pt;}
.y1cd{bottom:113.380133pt;}
.y3d{bottom:114.846720pt;}
.y5c{bottom:115.244947pt;}
.y21e{bottom:120.126133pt;}
.yf4{bottom:120.456800pt;}
.y191{bottom:120.494133pt;}
.y1c{bottom:120.610800pt;}
.y135{bottom:120.635200pt;}
.y115{bottom:120.945067pt;}
.y21d{bottom:123.866133pt;}
.y250{bottom:123.912733pt;}
.y238{bottom:124.045947pt;}
.yb4{bottom:124.178533pt;}
.yf3{bottom:124.196933pt;}
.y1af{bottom:124.312840pt;}
.y1b{bottom:124.350933pt;}
.y134{bottom:124.375333pt;}
.y114{bottom:124.685200pt;}
.y277{bottom:125.524533pt;}
.yb3{bottom:127.918667pt;}
.y1e6{bottom:128.045947pt;}
.y1cc{bottom:128.046533pt;}
.y3c{bottom:133.246053pt;}
.y5b{bottom:133.645307pt;}
.yf2{bottom:135.123467pt;}
.y190{bottom:135.160600pt;}
.y1a{bottom:135.277667pt;}
.y133{bottom:135.301867pt;}
.yb2{bottom:138.845333pt;}
.yf1{bottom:138.863600pt;}
.y132{bottom:139.042000pt;}
.y24f{bottom:140.912667pt;}
.y237{bottom:142.445280pt;}
.y276{bottom:142.524467pt;}
.yb1{bottom:142.585333pt;}
.y1ae{bottom:142.712173pt;}
.y1cb{bottom:142.712933pt;}
.y94{bottom:145.913333pt;}
.y7c{bottom:145.914053pt;}
.y1e5{bottom:146.445280pt;}
.yf0{bottom:149.790133pt;}
.y18f{bottom:149.826987pt;}
.y19{bottom:149.944133pt;}
.y3b{bottom:151.646267pt;}
.y5a{bottom:152.045960pt;}
.yef{bottom:153.530267pt;}
.y18{bottom:153.684267pt;}
.y1ca{bottom:157.379333pt;}
.y275{bottom:159.524407pt;}
.y236{bottom:160.846080pt;}
.y1ad{bottom:161.112827pt;}
.y93{bottom:164.312667pt;}
.y153{bottom:164.312747pt;}
.y7b{bottom:164.313387pt;}
.yee{bottom:164.456800pt;}
.y18e{bottom:164.493680pt;}
.y171{bottom:164.806240pt;}
.y1e4{bottom:164.846080pt;}
.yed{bottom:168.196933pt;}
.y21c{bottom:168.845987pt;}
.y3a{bottom:170.046773pt;}
.y59{bottom:170.446027pt;}
.y131{bottom:173.512840pt;}
.yd3{bottom:173.645227pt;}
.y24e{bottom:173.912667pt;}
.y274{bottom:176.524340pt;}
.y18d{bottom:179.160373pt;}
.y235{bottom:179.246147pt;}
.y1ac{bottom:179.512747pt;}
.y152{bottom:182.712747pt;}
.y7a{bottom:182.713160pt;}
.yb0{bottom:183.167347pt;}
.y170{bottom:183.206307pt;}
.y1e3{bottom:183.246080pt;}
.y21b{bottom:183.512627pt;}
.y39{bottom:188.446693pt;}
.y58{bottom:188.846093pt;}
.y1c9{bottom:190.445813pt;}
.y130{bottom:191.912760pt;}
.yd2{bottom:192.045293pt;}
.y204{bottom:192.595040pt;}
.y28b{bottom:193.524280pt;}
.y273{bottom:193.524400pt;}
.y18c{bottom:193.827067pt;}
.y17{bottom:194.174667pt;}
.y18b{bottom:197.567067pt;}
.y234{bottom:197.646067pt;}
.y1ab{bottom:197.912667pt;}
.y21a{bottom:198.179387pt;}
.y92{bottom:201.112667pt;}
.y151{bottom:201.112827pt;}
.y79{bottom:201.112933pt;}
.yaf{bottom:201.567267pt;}
.y16f{bottom:201.606373pt;}
.y1e2{bottom:201.646000pt;}
.y38{bottom:206.846760pt;}
.y57{bottom:207.246160pt;}
.y1c8{bottom:208.845880pt;}
.y113{bottom:209.472907pt;}
.y12f{bottom:210.312680pt;}
.yd1{bottom:210.445213pt;}
.y272{bottom:210.524280pt;}
.y28a{bottom:210.524340pt;}
.y16{bottom:210.841333pt;}
.y203{bottom:210.994960pt;}
.y219{bottom:212.846027pt;}
.y233{bottom:216.045987pt;}
.y150{bottom:219.512893pt;}
.y78{bottom:219.513000pt;}
.yec{bottom:219.645080pt;}
.yae{bottom:219.967360pt;}
.y16e{bottom:220.006293pt;}
.y24d{bottom:221.379267pt;}
.y37{bottom:225.246680pt;}
.y56{bottom:225.646080pt;}
.y1c7{bottom:227.245800pt;}
.y218{bottom:227.512667pt;}
.y271{bottom:227.524340pt;}
.y112{bottom:227.872973pt;}
.y12e{bottom:228.712600pt;}
.yd0{bottom:228.845280pt;}
.y202{bottom:229.394880pt;}
.y232{bottom:234.446053pt;}
.y1aa{bottom:234.712653pt;}
.y15{bottom:235.507733pt;}
.y24c{bottom:236.046027pt;}
.y14f{bottom:237.912667pt;}
.y77{bottom:237.912773pt;}
.yeb{bottom:238.045147pt;}
.yad{bottom:238.367427pt;}
.y16d{bottom:238.406360pt;}
.y1e1{bottom:238.445987pt;}
.y36{bottom:243.646747pt;}
.y55{bottom:244.046000pt;}
.y289{bottom:244.524280pt;}
.y270{bottom:244.524340pt;}
.y1c6{bottom:245.645867pt;}
.y111{bottom:246.273040pt;}
.y12d{bottom:247.112640pt;}
.ycf{bottom:247.245093pt;}
.y201{bottom:247.794800pt;}
.y1a9{bottom:249.379413pt;}
.y24b{bottom:250.712667pt;}
.y14{bottom:252.174533pt;}
.y231{bottom:252.845973pt;}
.y1e0{bottom:253.112627pt;}
.y76{bottom:256.312840pt;}
.y91{bottom:256.313200pt;}
.yea{bottom:256.445213pt;}
.yac{bottom:256.767493pt;}
.y16c{bottom:256.806280pt;}
.y18a{bottom:256.806453pt;}
.y217{bottom:260.579267pt;}
.y26f{bottom:261.524280pt;}
.y288{bottom:261.524340pt;}
.y35{bottom:262.046813pt;}
.y1c5{bottom:264.045933pt;}
.y1a8{bottom:264.046053pt;}
.y110{bottom:264.673107pt;}
.y14e{bottom:265.512667pt;}
.y12c{bottom:265.512707pt;}
.yce{bottom:265.645160pt;}
.y1df{bottom:267.779387pt;}
.y13{bottom:268.841200pt;}
.y230{bottom:271.246040pt;}
.y75{bottom:274.712907pt;}
.y90{bottom:274.713267pt;}
.ye9{bottom:274.845280pt;}
.yab{bottom:275.167560pt;}
.y16b{bottom:275.206347pt;}
.y189{bottom:275.206520pt;}
.y287{bottom:278.524220pt;}
.y26e{bottom:278.524340pt;}
.y1a7{bottom:278.712693pt;}
.y216{bottom:278.979333pt;}
.y34{bottom:280.446880pt;}
.y1c4{bottom:282.446000pt;}
.y1de{bottom:282.446027pt;}
.y54{bottom:282.446107pt;}
.y10f{bottom:283.073027pt;}
.y12b{bottom:283.912773pt;}
.ycd{bottom:284.045080pt;}
.y200{bottom:284.594907pt;}
.y12{bottom:285.507867pt;}
.y22f{bottom:289.645960pt;}
.y74{bottom:293.112827pt;}
.y24a{bottom:293.113027pt;}
.y8f{bottom:293.113187pt;}
.ye8{bottom:293.245133pt;}
.y1a6{bottom:293.379333pt;}
.yaa{bottom:293.567480pt;}
.y16a{bottom:293.606267pt;}
.y188{bottom:293.606440pt;}
.y26d{bottom:295.524220pt;}
.y286{bottom:295.524280pt;}
.y1dd{bottom:297.112667pt;}
.y53{bottom:297.112747pt;}
.y33{bottom:298.846800pt;}
.y1ff{bottom:299.261547pt;}
.y10e{bottom:301.472947pt;}
.y11{bottom:302.174533pt;}
.y12a{bottom:302.312840pt;}
.y14d{bottom:302.313000pt;}
.ycc{bottom:302.445147pt;}
.y22e{bottom:308.046027pt;}
.y73{bottom:311.513040pt;}
.y249{bottom:311.513240pt;}
.y8e{bottom:311.513253pt;}
.ye7{bottom:311.645280pt;}
.y52{bottom:311.779387pt;}
.ya9{bottom:311.967547pt;}
.y169{bottom:312.006333pt;}
.y187{bottom:312.006507pt;}
.y26c{bottom:312.524280pt;}
.y285{bottom:312.524340pt;}
.y1fe{bottom:313.928187pt;}
.y215{bottom:315.779440pt;}
.y32{bottom:317.246867pt;}
.y10{bottom:318.841200pt;}
.y1c3{bottom:319.246053pt;}
.y10d{bottom:319.873013pt;}
.y129{bottom:320.712907pt;}
.y14c{bottom:320.713067pt;}
.ycb{bottom:320.845213pt;}
.y51{bottom:326.446027pt;}
.y22d{bottom:326.446093pt;}
.y1a5{bottom:326.446387pt;}
.y1fd{bottom:328.594827pt;}
.y26b{bottom:329.524340pt;}
.y72{bottom:329.913107pt;}
.y248{bottom:329.913307pt;}
.y8d{bottom:329.913320pt;}
.ye6{bottom:330.045000pt;}
.y1dc{bottom:330.179347pt;}
.ya8{bottom:330.367400pt;}
.y168{bottom:330.406107pt;}
.y186{bottom:330.406280pt;}
.y214{bottom:330.446080pt;}
.y1c2{bottom:333.912693pt;}
.yf{bottom:335.507867pt;}
.y31{bottom:335.646787pt;}
.y10c{bottom:338.272933pt;}
.y128{bottom:339.112827pt;}
.y14b{bottom:339.112987pt;}
.yca{bottom:339.245280pt;}
.y50{bottom:341.112600pt;}
.y1fc{bottom:343.261467pt;}
.y22c{bottom:344.846013pt;}
.y1a4{bottom:344.846307pt;}
.y213{bottom:345.112720pt;}
.y26a{bottom:346.524280pt;}
.y284{bottom:346.524340pt;}
.y71{bottom:348.313173pt;}
.y247{bottom:348.313373pt;}
.y8c{bottom:348.313387pt;}
.ye5{bottom:348.445067pt;}
.y1c1{bottom:348.579333pt;}
.y1db{bottom:348.579413pt;}
.ya7{bottom:348.767467pt;}
.y167{bottom:348.806027pt;}
.y185{bottom:348.806200pt;}
.y30{bottom:354.046853pt;}
.y4f{bottom:355.779360pt;}
.y10b{bottom:356.673000pt;}
.y127{bottom:357.512747pt;}
.y14a{bottom:357.512907pt;}
.yc9{bottom:357.645200pt;}
.y212{bottom:359.779360pt;}
.ye{bottom:360.174533pt;}
.y22b{bottom:363.246080pt;}
.y1a3{bottom:363.246373pt;}
.y269{bottom:363.524340pt;}
.y70{bottom:366.712947pt;}
.y8b{bottom:366.713307pt;}
.y246{bottom:366.713440pt;}
.ye4{bottom:366.845133pt;}
.y1da{bottom:366.979480pt;}
.y166{bottom:367.206093pt;}
.y184{bottom:367.206267pt;}
.y4e{bottom:370.446000pt;}
.y2f{bottom:372.446773pt;}
.y211{bottom:374.446000pt;}
.y10a{bottom:375.072920pt;}
.y149{bottom:375.912827pt;}
.y126{bottom:375.912987pt;}
.y1fb{bottom:376.328467pt;}
.ya6{bottom:376.367467pt;}
.y268{bottom:380.524280pt;}
.y283{bottom:380.524340pt;}
.y22a{bottom:381.646000pt;}
.y1c0{bottom:381.646267pt;}
.y1a2{bottom:381.646293pt;}
.y6f{bottom:385.112867pt;}
.y8a{bottom:385.113227pt;}
.y245{bottom:385.113360pt;}
.ye3{bottom:385.245280pt;}
.y1d9{bottom:385.379547pt;}
.y165{bottom:385.606013pt;}
.y183{bottom:385.606187pt;}
.y2e{bottom:390.846693pt;}
.y109{bottom:393.472840pt;}
.y148{bottom:394.312747pt;}
.y125{bottom:394.312907pt;}
.yc8{bottom:394.445200pt;}
.y1fa{bottom:394.728387pt;}
.y282{bottom:397.524280pt;}
.y267{bottom:397.524340pt;}
.y1bf{bottom:400.046333pt;}
.y1a1{bottom:400.046360pt;}
.y6e{bottom:403.512787pt;}
.y4d{bottom:403.513000pt;}
.y244{bottom:403.513133pt;}
.ye2{bottom:403.645200pt;}
.y1d8{bottom:403.779467pt;}
.y164{bottom:404.006080pt;}
.y182{bottom:404.006253pt;}
.y210{bottom:407.512600pt;}
.y2d{bottom:409.246613pt;}
.yd{bottom:410.174533pt;}
.y108{bottom:411.872760pt;}
.y124{bottom:412.712973pt;}
.y147{bottom:412.713200pt;}
.y1f9{bottom:413.128307pt;}
.ya5{bottom:413.167413pt;}
.y297{bottom:414.524220pt;}
.y266{bottom:414.524280pt;}
.y281{bottom:414.524340pt;}
.y229{bottom:418.446000pt;}
.y1be{bottom:418.446253pt;}
.y1a0{bottom:418.446280pt;}
.y6d{bottom:421.912707pt;}
.y4c{bottom:421.912920pt;}
.y243{bottom:421.913053pt;}
.y1d7{bottom:422.179387pt;}
.y163{bottom:422.406080pt;}
.y181{bottom:422.406173pt;}
.y20f{bottom:425.912667pt;}
.y2c{bottom:427.646533pt;}
.y107{bottom:430.272680pt;}
.y123{bottom:431.112893pt;}
.y146{bottom:431.113120pt;}
.ye1{bottom:431.245200pt;}
.y296{bottom:431.524280pt;}
.y265{bottom:431.524340pt;}
.y1f8{bottom:431.528080pt;}
.ya4{bottom:431.567480pt;}
.yc{bottom:434.841200pt;}
.y1bd{bottom:436.846173pt;}
.y19f{bottom:436.846200pt;}
.y6c{bottom:440.312627pt;}
.y4b{bottom:440.312840pt;}
.y242{bottom:440.312973pt;}
.y1d6{bottom:440.579453pt;}
.y180{bottom:440.806093pt;}
.y162{bottom:440.806160pt;}
.y2b{bottom:446.046453pt;}
.y264{bottom:448.524340pt;}
.y106{bottom:448.672747pt;}
.y122{bottom:449.512667pt;}
.y145{bottom:449.513040pt;}
.yc7{bottom:449.645360pt;}
.y1f7{bottom:449.928147pt;}
.ya3{bottom:449.967547pt;}
.yb{bottom:451.507867pt;}
.y1bc{bottom:455.246093pt;}
.y19e{bottom:455.246267pt;}
.y6b{bottom:458.712547pt;}
.y4a{bottom:458.712760pt;}
.y241{bottom:458.712893pt;}
.y1d5{bottom:458.979373pt;}
.y17f{bottom:459.206013pt;}
.y161{bottom:459.206080pt;}
.y20e{bottom:462.712720pt;}
.y2a{bottom:464.446227pt;}
.y263{bottom:465.524340pt;}
.y105{bottom:467.072747pt;}
.y144{bottom:467.912960pt;}
.ye0{bottom:468.044933pt;}
.yc6{bottom:468.045280pt;}
.ya{bottom:468.174533pt;}
.y1f6{bottom:468.328213pt;}
.ya2{bottom:468.367267pt;}
.y1bb{bottom:473.646013pt;}
.y228{bottom:473.646107pt;}
.y19d{bottom:473.646187pt;}
.y6a{bottom:477.112467pt;}
.y121{bottom:477.112667pt;}
.y49{bottom:477.112680pt;}
.y240{bottom:477.112813pt;}
.y20d{bottom:477.379360pt;}
.y1d4{bottom:477.379440pt;}
.y17e{bottom:477.605933pt;}
.y160{bottom:477.606000pt;}
.y262{bottom:482.524340pt;}
.y29{bottom:482.846147pt;}
.y9{bottom:484.841200pt;}
.y104{bottom:485.472547pt;}
.y143{bottom:486.313027pt;}
.ydf{bottom:486.445000pt;}
.yc5{bottom:486.445347pt;}
.y1f5{bottom:486.728280pt;}
.ya1{bottom:486.767333pt;}
.y20c{bottom:492.046000pt;}
.y1ba{bottom:492.046080pt;}
.y227{bottom:492.046173pt;}
.y19c{bottom:492.046253pt;}
.y69{bottom:495.512533pt;}
.y48{bottom:495.512747pt;}
.y23f{bottom:495.512880pt;}
.y1d3{bottom:495.779360pt;}
.y17d{bottom:496.006000pt;}
.y280{bottom:499.524220pt;}
.y295{bottom:499.524280pt;}
.y261{bottom:499.524340pt;}
.y28{bottom:501.246213pt;}
.y8{bottom:501.507867pt;}
.y103{bottom:503.872613pt;}
.y142{bottom:504.712947pt;}
.yde{bottom:504.845067pt;}
.yc4{bottom:504.845413pt;}
.y1f4{bottom:505.128053pt;}
.ya0{bottom:505.167400pt;}
.y1b9{bottom:510.446000pt;}
.y226{bottom:510.446093pt;}
.y19b{bottom:510.446173pt;}
.y68{bottom:513.912453pt;}
.y89{bottom:513.912520pt;}
.y120{bottom:513.912573pt;}
.y47{bottom:513.912667pt;}
.y23e{bottom:513.912800pt;}
.y1d2{bottom:514.179280pt;}
.y15f{bottom:514.406000pt;}
.y27f{bottom:516.524280pt;}
.y294{bottom:516.524340pt;}
.y260{bottom:516.524400pt;}
.y7{bottom:518.174533pt;}
.y27{bottom:519.646133pt;}
.y102{bottom:522.272533pt;}
.y141{bottom:523.112867pt;}
.ydd{bottom:523.245133pt;}
.yc3{bottom:523.245333pt;}
.y1f3{bottom:523.528267pt;}
.y9f{bottom:523.567467pt;}
.y20b{bottom:525.112680pt;}
.y225{bottom:528.846013pt;}
.y19a{bottom:528.846093pt;}
.y67{bottom:532.312520pt;}
.y88{bottom:532.312587pt;}
.y11f{bottom:532.312640pt;}
.y23d{bottom:532.312867pt;}
.y1d1{bottom:532.579347pt;}
.y17c{bottom:532.806000pt;}
.y25f{bottom:533.524340pt;}
.y293{bottom:533.524347pt;}
.y6{bottom:534.841200pt;}
.y101{bottom:540.672600pt;}
.y140{bottom:541.512640pt;}
.ydc{bottom:541.645213pt;}
.yc2{bottom:541.645400pt;}
.y9e{bottom:541.967400pt;}
.y20a{bottom:543.512747pt;}
.y1b8{bottom:547.245960pt;}
.y224{bottom:547.246080pt;}
.y199{bottom:547.246160pt;}
.y25e{bottom:550.524407pt;}
.y27e{bottom:550.524467pt;}
.y66{bottom:550.712440pt;}
.y87{bottom:550.712507pt;}
.y11e{bottom:550.712560pt;}
.y46{bottom:550.712667pt;}
.y23c{bottom:550.712787pt;}
.y1d0{bottom:550.979267pt;}
.y26{bottom:556.712800pt;}
.y100{bottom:559.072693pt;}
.y13f{bottom:559.912560pt;}
.ydb{bottom:560.045133pt;}
.yc1{bottom:560.045320pt;}
.y1f2{bottom:560.328347pt;}
.y9d{bottom:560.367480pt;}
.y1b7{bottom:561.912600pt;}
.y209{bottom:561.912667pt;}
.y223{bottom:565.646000pt;}
.y198{bottom:565.646080pt;}
.y27d{bottom:567.524280pt;}
.y25d{bottom:567.524340pt;}
.y65{bottom:569.112507pt;}
.y86{bottom:569.112573pt;}
.y11d{bottom:569.112627pt;}
.y23b{bottom:569.112853pt;}
.y1cf{bottom:569.379333pt;}
.y15e{bottom:569.606133pt;}
.y1f1{bottom:574.994987pt;}
.y1b6{bottom:576.579240pt;}
.yff{bottom:577.472613pt;}
.y13e{bottom:578.312627pt;}
.yda{bottom:578.445280pt;}
.yc0{bottom:578.445387pt;}
.y9c{bottom:578.767547pt;}
.y197{bottom:584.046000pt;}
.y292{bottom:584.524280pt;}
.y25c{bottom:584.524340pt;}
.y64{bottom:587.512573pt;}
.y85{bottom:587.512640pt;}
.y11c{bottom:587.512693pt;}
.y23a{bottom:587.512920pt;}
.y17b{bottom:588.005987pt;}
.y15d{bottom:588.006053pt;}
.y1f0{bottom:589.661627pt;}
.y1b5{bottom:591.246000pt;}
.yfe{bottom:595.872680pt;}
.y13d{bottom:596.712547pt;}
.yd9{bottom:596.845213pt;}
.ybf{bottom:596.845307pt;}
.y9b{bottom:597.167467pt;}
.y208{bottom:598.712720pt;}
.y25b{bottom:601.524340pt;}
.y222{bottom:602.446053pt;}
.y1ef{bottom:604.328267pt;}
.y63{bottom:605.912493pt;}
.y84{bottom:605.912560pt;}
.y11b{bottom:605.912613pt;}
.y45{bottom:605.912840pt;}
.y1ce{bottom:606.179200pt;}
.y17a{bottom:606.406053pt;}
.y15c{bottom:606.406120pt;}
.y207{bottom:613.379360pt;}
.yfd{bottom:614.272600pt;}
.y13c{bottom:615.112613pt;}
.yd8{bottom:615.245133pt;}
.ybe{bottom:615.245227pt;}
.y221{bottom:617.112693pt;}
.y25{bottom:617.779467pt;}
.y291{bottom:618.524280pt;}
.y25a{bottom:618.524340pt;}
.y196{bottom:620.845960pt;}
.y62{bottom:624.312560pt;}
.y83{bottom:624.312627pt;}
.y11a{bottom:624.312680pt;}
.y44{bottom:624.312907pt;}
.y9a{bottom:624.767467pt;}
.y179{bottom:624.806120pt;}
.y15b{bottom:624.806187pt;}
.y206{bottom:628.046000pt;}
.y220{bottom:631.779333pt;}
.yfc{bottom:632.672680pt;}
.y13b{bottom:633.512680pt;}
.yd7{bottom:633.645133pt;}
.ybd{bottom:633.645293pt;}
.y195{bottom:635.512600pt;}
.y259{bottom:635.524160pt;}
.y27c{bottom:635.524280pt;}
.y290{bottom:635.524340pt;}
.y1ee{bottom:637.394947pt;}
.y61{bottom:642.712480pt;}
.y82{bottom:642.712547pt;}
.y119{bottom:642.712600pt;}
.y43{bottom:642.712827pt;}
.y178{bottom:643.206040pt;}
.y15a{bottom:643.206107pt;}
.y24{bottom:643.779333pt;}
.y194{bottom:650.179240pt;}
.yfb{bottom:651.072600pt;}
.y13a{bottom:651.912600pt;}
.yd6{bottom:652.045280pt;}
.ybc{bottom:652.045360pt;}
.y258{bottom:652.524220pt;}
.y28f{bottom:652.524280pt;}
.y27b{bottom:652.524340pt;}
.y1ed{bottom:655.795013pt;}
.y23{bottom:660.446000pt;}
.y60{bottom:661.112547pt;}
.y81{bottom:661.112613pt;}
.y1b4{bottom:661.112813pt;}
.y42{bottom:661.112893pt;}
.y99{bottom:661.567413pt;}
.y177{bottom:661.605960pt;}
.y159{bottom:661.606027pt;}
.y193{bottom:664.846000pt;}
.yfa{bottom:669.472667pt;}
.y257{bottom:669.524280pt;}
.y28e{bottom:669.524340pt;}
.y27a{bottom:669.524400pt;}
.y139{bottom:670.312667pt;}
.ybb{bottom:670.445280pt;}
.yd5{bottom:670.445293pt;}
.y1ec{bottom:674.194933pt;}
.y22{bottom:677.112800pt;}
.y5f{bottom:679.512467pt;}
.y80{bottom:679.512533pt;}
.y1b3{bottom:679.512733pt;}
.y41{bottom:679.512813pt;}
.y98{bottom:679.967480pt;}
.y176{bottom:680.005880pt;}
.y158{bottom:680.005947pt;}
.y28d{bottom:686.524280pt;}
.y256{bottom:686.524340pt;}
.yd4{bottom:688.845213pt;}
.yba{bottom:688.845280pt;}
.y21{bottom:693.779467pt;}
.yf9{bottom:697.072667pt;}
.y5e{bottom:697.912533pt;}
.y7f{bottom:697.912600pt;}
.y138{bottom:697.912667pt;}
.y1b2{bottom:697.912800pt;}
.y40{bottom:697.912880pt;}
.y97{bottom:698.367400pt;}
.y175{bottom:698.405947pt;}
.y157{bottom:698.406013pt;}
.y255{bottom:703.524340pt;}
.yb9{bottom:707.245133pt;}
.y20{bottom:710.446133pt;}
.y1eb{bottom:710.994893pt;}
.y5d{bottom:716.312600pt;}
.y118{bottom:716.312667pt;}
.y3f{bottom:716.312947pt;}
.y96{bottom:716.767467pt;}
.y174{bottom:716.806013pt;}
.y156{bottom:716.806080pt;}
.y279{bottom:720.524280pt;}
.y254{bottom:720.524340pt;}
.yb8{bottom:725.645200pt;}
.y1ea{bottom:725.661533pt;}
.y1f{bottom:727.112933pt;}
.y2{bottom:728.067733pt;}
.yf8{bottom:733.872747pt;}
.y3e{bottom:734.712867pt;}
.y1b1{bottom:734.713013pt;}
.y155{bottom:735.205933pt;}
.y253{bottom:737.524340pt;}
.y1e9{bottom:740.328293pt;}
.yf7{bottom:752.272667pt;}
.y1e{bottom:753.112933pt;}
.yb7{bottom:753.245200pt;}
.y95{bottom:753.567467pt;}
.y154{bottom:753.606000pt;}
.y252{bottom:754.524400pt;}
.y1e8{bottom:754.994933pt;}
.y4{bottom:764.450933pt;}
.y3{bottom:799.117600pt;}
.h9{height:29.308000pt;}
.h2{height:30.784000pt;}
.h5{height:36.394667pt;}
.h2a{height:39.076533pt;}
.ha{height:39.077333pt;}
.h28{height:39.077653pt;}
.h11{height:40.944000pt;}
.h2b{height:41.232000pt;}
.h10{height:41.376000pt;}
.h12{height:41.376267pt;}
.h32{height:43.673893pt;}
.h2d{height:43.674400pt;}
.h2c{height:43.674667pt;}
.h33{height:43.674880pt;}
.h2e{height:43.674907pt;}
.h30{height:43.675147pt;}
.h31{height:43.675387pt;}
.h2f{height:43.675627pt;}
.h3{height:44.333333pt;}
.h7{height:45.973333pt;}
.h6{height:46.666667pt;}
.h29{height:46.871787pt;}
.h17{height:50.042667pt;}
.h16{height:50.394667pt;}
.h1c{height:50.570347pt;}
.hb{height:50.570667pt;}
.h26{height:50.570933pt;}
.hd{height:50.571253pt;}
.h19{height:50.571467pt;}
.he{height:50.571840pt;}
.hc{height:50.572427pt;}
.hf{height:50.573013pt;}
.h8{height:51.333333pt;}
.h15{height:51.333920pt;}
.h24{height:57.285867pt;}
.h22{height:57.286720pt;}
.h25{height:57.287360pt;}
.h14{height:57.287413pt;}
.h1d{height:57.287627pt;}
.h1e{height:57.287680pt;}
.h13{height:57.287733pt;}
.h18{height:57.288000pt;}
.h23{height:57.288107pt;}
.h1a{height:57.288267pt;}
.h1b{height:57.288427pt;}
.h27{height:57.288533pt;}
.h21{height:57.288747pt;}
.h1f{height:57.288800pt;}
.h20{height:57.289067pt;}
.h4{height:93.333333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520013pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x5{left:45.847333pt;}
.x3{left:75.590533pt;}
.x2{left:85.497067pt;}
.x7{left:90.708667pt;}
.x6{left:94.488133pt;}
.x4{left:100.302800pt;}
.x8{left:314.495733pt;}
.x1{left:316.866400pt;}
}




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