
    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_85b4c7705787ed9f0709acb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.906000;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_2b8de83939e24058eac9a0d8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.713000;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_10382516b953f8d0b7ce4692.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.900000;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_251d078f302a4453c772dd44.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.892000;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_0c9108d2e990ed275c881ef3.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.429000;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_30ce4a0ed856d8aa4a85c022.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.697000;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_0ef824a56d9d2d369fa05003.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.708000;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_25716c071e222267ac96643c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758000;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_90cf1feeb8675775a087e447.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.810000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_fa3bbb29104fd7a4a0e45d81.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.726000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a6a9741ffbcfae5a8b40d5d7.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.900000;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:ffc;src:url('chunks/assets/font_1a3ee66d73e978701ed76c49.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;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:ffd;src:url('chunks/assets/font_5a9d53dbeda2d8cf07a2a4d5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.482000;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:ffe;src:url('chunks/assets/font_51b9b6df9fb4b25a929f5c0f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.684000;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:fff;src:url('chunks/assets/font_31e27d24005a65a37cf88675.woff2')format("woff");}.fff{font-family:fff;line-height:0.666000;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:ff10;src:url('chunks/assets/font_769a70201f11329707acf712.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.673000;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);}
.v3{vertical-align:-8.964000px;}
.v1{vertical-align:-3.593533px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:21.696000px;}
.ls1{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.010128px;}
.ls14{letter-spacing:0.028729px;}
.ls6{letter-spacing:2.371909px;}
.ls7{letter-spacing:2.391030px;}
.ls5{letter-spacing:2.410166px;}
.ls2{letter-spacing:2.486671px;}
.ls0{letter-spacing:2.964877px;}
.ls17{letter-spacing:2.984525px;}
.lsd{letter-spacing:2.985089px;}
.ls19{letter-spacing:2.988648px;}
.ls3{letter-spacing:2.988780px;}
.ls15{letter-spacing:2.990525px;}
.ls1f{letter-spacing:3.012698px;}
.lsa{letter-spacing:8.464246px;}
.ls13{letter-spacing:10.460730px;}
.ls9{letter-spacing:11.285662px;}
.lsc{letter-spacing:13.270183px;}
.ls12{letter-spacing:13.472525px;}
.ls18{letter-spacing:13.476648px;}
.ls16{letter-spacing:13.477140px;}
.ls11{letter-spacing:14.107077px;}
.ls8{letter-spacing:14.346225px;}
.lsf{letter-spacing:16.617617px;}
.lsb{letter-spacing:22.415850px;}
.ls1c{letter-spacing:23.024525px;}
.ls1e{letter-spacing:25.225303px;}
.ls1a{letter-spacing:25.882835px;}
.lse{letter-spacing:29.887800px;}
.ls1d{letter-spacing:30.950525px;}
.ls4{letter-spacing:35.865360px;}
.ls10{letter-spacing:42.739554px;}
.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;}
}
.wsf8{word-spacing:-55.555443px;}
.ws10f{word-spacing:-38.937826px;}
.wsfc{word-spacing:-29.015076px;}
.wsf7{word-spacing:-28.955301px;}
.ws2{word-spacing:-14.943900px;}
.ws1d{word-spacing:-14.920027px;}
.ws9b{word-spacing:-14.346180px;}
.ws115{word-spacing:-14.310279px;}
.ws5a{word-spacing:-11.955150px;}
.ws9d{word-spacing:-11.936059px;}
.ws9c{word-spacing:-9.564150px;}
.wsac{word-spacing:-5.921186px;}
.ws12a{word-spacing:-1.195512px;}
.wsbb{word-spacing:-1.135736px;}
.ws150{word-spacing:-1.016185px;}
.ws13a{word-spacing:-0.956410px;}
.ws5f{word-spacing:-0.896634px;}
.ws17d{word-spacing:-0.812950px;}
.ws8c{word-spacing:-0.777083px;}
.ws18f{word-spacing:-0.669488px;}
.ws55{word-spacing:-0.657532px;}
.ws1aa{word-spacing:-0.573847px;}
.ws51{word-spacing:-0.537980px;}
.ws12d{word-spacing:-0.478205px;}
.ws4c{word-spacing:-0.418429px;}
.ws10a{word-spacing:-0.382565px;}
.wsf0{word-spacing:-0.179327px;}
.wsb3{word-spacing:-0.119551px;}
.ws109{word-spacing:-0.095641px;}
.wsd9{word-spacing:-0.059776px;}
.ws4{word-spacing:-0.053798px;}
.ws152{word-spacing:-0.012000px;}
.ws9f{word-spacing:-0.009609px;}
.ws97{word-spacing:0.000000px;}
.ws9a{word-spacing:0.038212px;}
.ws13f{word-spacing:0.119551px;}
.wse8{word-spacing:0.179327px;}
.ws23{word-spacing:0.298878px;}
.ws14{word-spacing:0.322790px;}
.wsb5{word-spacing:0.358654px;}
.wsb4{word-spacing:0.418429px;}
.ws1ae{word-spacing:0.478206px;}
.ws18c{word-spacing:0.765130px;}
.wsdf{word-spacing:0.777083px;}
.ws11d{word-spacing:0.836858px;}
.wsef{word-spacing:0.896634px;}
.wscc{word-spacing:0.956410px;}
.ws146{word-spacing:1.016185px;}
.ws13{word-spacing:1.129766px;}
.ws2e{word-spacing:1.135736px;}
.ws1a5{word-spacing:1.147694px;}
.ws19a{word-spacing:1.243336px;}
.wsa8{word-spacing:1.255288px;}
.wsed{word-spacing:1.315063px;}
.wsa7{word-spacing:1.494390px;}
.ws21{word-spacing:1.554166px;}
.ws153{word-spacing:1.613941px;}
.ws156{word-spacing:1.673717px;}
.ws19e{word-spacing:1.673721px;}
.ws72{word-spacing:1.733492px;}
.ws178{word-spacing:1.769362px;}
.ws123{word-spacing:1.793268px;}
.ws18b{word-spacing:1.817183px;}
.ws197{word-spacing:1.865003px;}
.ws1a2{word-spacing:1.960645px;}
.wsd4{word-spacing:1.972595px;}
.ws11c{word-spacing:2.032370px;}
.wse7{word-spacing:2.092146px;}
.ws1a3{word-spacing:2.104106px;}
.wsd3{word-spacing:2.151922px;}
.ws1a4{word-spacing:2.151927px;}
.ws17b{word-spacing:2.199748px;}
.ws155{word-spacing:2.211697px;}
.ws54{word-spacing:2.271473px;}
.ws78{word-spacing:2.331248px;}
.wsab{word-spacing:2.368475px;}
.ws66{word-spacing:2.391024px;}
.ws9e{word-spacing:2.391030px;}
.ws126{word-spacing:2.450800px;}
.ws182{word-spacing:2.582312px;}
.ws93{word-spacing:2.630126px;}
.ws10c{word-spacing:2.677954px;}
.ws7e{word-spacing:2.749678px;}
.ws13d{word-spacing:2.809453px;}
.ws196{word-spacing:2.821415px;}
.ws12f{word-spacing:2.869229px;}
.ws4b{word-spacing:2.929004px;}
.ws85{word-spacing:3.048556px;}
.ws86{word-spacing:3.108331px;}
.ws16d{word-spacing:3.156160px;}
.wse9{word-spacing:3.168107px;}
.ws18a{word-spacing:3.203980px;}
.ws22{word-spacing:3.227882px;}
.wsdb{word-spacing:3.283601px;}
.ws88{word-spacing:3.287658px;}
.wsfe{word-spacing:3.347434px;}
.ws16c{word-spacing:3.395263px;}
.ws24{word-spacing:3.407209px;}
.ws100{word-spacing:3.466985px;}
.ws144{word-spacing:3.526760px;}
.wsc9{word-spacing:3.548160px;}
.ws33{word-spacing:3.586536px;}
.ws8e{word-spacing:3.646312px;}
.ws12e{word-spacing:3.706087px;}
.ws1ab{word-spacing:3.730007px;}
.ws6b{word-spacing:3.765863px;}
.ws65{word-spacing:3.825638px;}
.wsd1{word-spacing:3.885414px;}
.wscb{word-spacing:3.945190px;}
.wsad{word-spacing:3.969110px;}
.ws4a{word-spacing:4.004965px;}
.ws1a7{word-spacing:4.016930px;}
.ws1a6{word-spacing:4.064751px;}
.ws25{word-spacing:4.124516px;}
.ws174{word-spacing:4.208213px;}
.ws43{word-spacing:4.244068px;}
.ws175{word-spacing:4.256033px;}
.wsea{word-spacing:4.303843px;}
.ws1ac{word-spacing:4.399495px;}
.wsd2{word-spacing:4.423394px;}
.ws80{word-spacing:4.483170px;}
.wsec{word-spacing:4.542946px;}
.ws16b{word-spacing:4.542957px;}
.wsf9{word-spacing:4.602721px;}
.ws58{word-spacing:4.662497px;}
.ws125{word-spacing:4.722272px;}
.ws99{word-spacing:4.734209px;}
.ws64{word-spacing:4.782048px;}
.ws98{word-spacing:4.782060px;}
.ws8b{word-spacing:4.841824px;}
.ws1b{word-spacing:4.895654px;}
.ws148{word-spacing:4.901599px;}
.ws68{word-spacing:4.961375px;}
.ws190{word-spacing:4.973342px;}
.wsc7{word-spacing:5.021150px;}
.ws113{word-spacing:5.080926px;}
.ws56{word-spacing:5.260253px;}
.ws14f{word-spacing:5.320028px;}
.ws19b{word-spacing:5.355907px;}
.ws90{word-spacing:5.379804px;}
.ws17c{word-spacing:5.403728px;}
.ws17e{word-spacing:5.451548px;}
.ws105{word-spacing:5.499355px;}
.ws183{word-spacing:5.499369px;}
.wsb7{word-spacing:5.618906px;}
.ws194{word-spacing:5.642831px;}
.ws133{word-spacing:5.678682px;}
.ws137{word-spacing:5.738458px;}
.ws59{word-spacing:5.917754px;}
.ws96{word-spacing:5.917784px;}
.ws177{word-spacing:5.929754px;}
.ws3{word-spacing:5.977560px;}
.wsa0{word-spacing:5.977575px;}
.ws75{word-spacing:6.037336px;}
.ws95{word-spacing:6.097111px;}
.ws1af{word-spacing:6.121037px;}
.ws5e{word-spacing:6.156887px;}
.ws11b{word-spacing:6.216662px;}
.ws176{word-spacing:6.264499px;}
.wsc8{word-spacing:6.395989px;}
.ws1a1{word-spacing:6.455781px;}
.ws2d{word-spacing:6.515540px;}
.ws8{word-spacing:6.563405px;}
.ws2b{word-spacing:6.575316px;}
.ws1{word-spacing:6.575340px;}
.wscf{word-spacing:6.694867px;}
.ws139{word-spacing:6.754643px;}
.ws16a{word-spacing:6.790525px;}
.ws70{word-spacing:6.814418px;}
.ws132{word-spacing:6.933970px;}
.ws32{word-spacing:6.993745px;}
.ws81{word-spacing:7.053521px;}
.ws6f{word-spacing:7.113296px;}
.ws11e{word-spacing:7.173072px;}
.ws6a{word-spacing:7.232848px;}
.wsf3{word-spacing:7.292623px;}
.ws3f{word-spacing:7.352399px;}
.ws40{word-spacing:7.412174px;}
.ws10b{word-spacing:7.460014px;}
.ws36{word-spacing:7.471950px;}
.wse1{word-spacing:7.591501px;}
.wse2{word-spacing:7.651277px;}
.ws18d{word-spacing:7.651296px;}
.ws168{word-spacing:7.770828px;}
.ws161{word-spacing:7.830604px;}
.ws49{word-spacing:7.890379px;}
.ws79{word-spacing:7.950155px;}
.ws130{word-spacing:8.009930px;}
.ws1f{word-spacing:8.129482px;}
.ws89{word-spacing:8.189257px;}
.ws7d{word-spacing:8.249033px;}
.ws8d{word-spacing:8.308808px;}
.ws41{word-spacing:8.428360px;}
.ws19c{word-spacing:8.464246px;}
.wsaf{word-spacing:8.547911px;}
.ws191{word-spacing:8.559887px;}
.wsc3{word-spacing:8.607686px;}
.ws19d{word-spacing:8.655529px;}
.wse3{word-spacing:8.667462px;}
.wse4{word-spacing:8.727238px;}
.ws173{word-spacing:8.798990px;}
.ws26{word-spacing:8.846789px;}
.ws7a{word-spacing:8.906564px;}
.ws127{word-spacing:9.026116px;}
.ws1a{word-spacing:9.038131px;}
.wse5{word-spacing:9.085891px;}
.ws199{word-spacing:9.085914px;}
.ws172{word-spacing:9.133735px;}
.ws1ad{word-spacing:9.181555px;}
.ws129{word-spacing:9.205442px;}
.ws31{word-spacing:9.265218px;}
.ws159{word-spacing:9.324994px;}
.ws124{word-spacing:9.384769px;}
.ws149{word-spacing:9.444545px;}
.wscd{word-spacing:9.623872px;}
.ws74{word-spacing:9.683647px;}
.wsb9{word-spacing:9.743423px;}
.ws20{word-spacing:9.803198px;}
.ws121{word-spacing:9.862974px;}
.ws83{word-spacing:9.922750px;}
.ws5d{word-spacing:9.982525px;}
.ws2a{word-spacing:10.042301px;}
.ws67{word-spacing:10.102076px;}
.ws171{word-spacing:10.137967px;}
.ws10{word-spacing:10.167898px;}
.ws4d{word-spacing:10.221628px;}
.ws10e{word-spacing:10.281403px;}
.ws16e{word-spacing:10.329250px;}
.ws114{word-spacing:10.341179px;}
.wsf4{word-spacing:10.400954px;}
.ws192{word-spacing:10.424891px;}
.ws7f{word-spacing:10.460730px;}
.ws17a{word-spacing:10.520532px;}
.ws179{word-spacing:10.568353px;}
.ws76{word-spacing:10.580281px;}
.wsee{word-spacing:10.640057px;}
.ws160{word-spacing:10.699832px;}
.ws29{word-spacing:10.759608px;}
.wsba{word-spacing:10.819384px;}
.ws73{word-spacing:10.879159px;}
.wsc4{word-spacing:10.938935px;}
.ws158{word-spacing:10.998710px;}
.ws170{word-spacing:10.998738px;}
.ws16f{word-spacing:11.046559px;}
.wsae{word-spacing:11.058486px;}
.ws6c{word-spacing:11.118262px;}
.ws193{word-spacing:11.142200px;}
.ws1e{word-spacing:11.178037px;}
.ws37{word-spacing:11.237813px;}
.wsa1{word-spacing:11.237841px;}
.ws19f{word-spacing:11.285662px;}
.wsfd{word-spacing:11.297588px;}
.ws8a{word-spacing:11.357364px;}
.ws3b{word-spacing:11.417140px;}
.ws195{word-spacing:11.524765px;}
.wsf1{word-spacing:11.536691px;}
.wsa{word-spacing:11.566656px;}
.wsf2{word-spacing:11.596466px;}
.ws34{word-spacing:11.716018px;}
.wsc0{word-spacing:11.775793px;}
.wsd{word-spacing:11.835648px;}
.ws13e{word-spacing:11.895344px;}
.ws12{word-spacing:11.943245px;}
.ws186{word-spacing:11.946776px;}
.ws39{word-spacing:11.955120px;}
.ws42{word-spacing:12.014896px;}
.wsbc{word-spacing:12.074671px;}
.ws18e{word-spacing:12.146432px;}
.ws2c{word-spacing:12.253998px;}
.ws9{word-spacing:12.266035px;}
.ws2f{word-spacing:12.313774px;}
.wsf{word-spacing:12.319834px;}
.ws6e{word-spacing:12.373549px;}
.ws48{word-spacing:12.433325px;}
.ws166{word-spacing:12.493100px;}
.ws28{word-spacing:12.552876px;}
.ws104{word-spacing:12.612652px;}
.wsca{word-spacing:12.624638px;}
.wsd0{word-spacing:12.672427px;}
.ws141{word-spacing:12.732203px;}
.ws11f{word-spacing:12.791978px;}
.ws15e{word-spacing:12.851754px;}
.ws82{word-spacing:12.911530px;}
.ws13b{word-spacing:12.971305px;}
.wsc6{word-spacing:13.031081px;}
.ws140{word-spacing:13.090856px;}
.wsc2{word-spacing:13.150632px;}
.wsc1{word-spacing:13.210408px;}
.ws147{word-spacing:13.270183px;}
.wse6{word-spacing:13.389734px;}
.wsd7{word-spacing:13.449510px;}
.wsd6{word-spacing:13.509286px;}
.ws15d{word-spacing:13.569061px;}
.ws53{word-spacing:13.628837px;}
.ws167{word-spacing:13.808164px;}
.ws6d{word-spacing:13.927715px;}
.wsf6{word-spacing:13.987490px;}
.ws11{word-spacing:13.987584px;}
.wsf5{word-spacing:14.047266px;}
.ws13c{word-spacing:14.107042px;}
.ws116{word-spacing:14.166817px;}
.wsb8{word-spacing:14.286368px;}
.ws0{word-spacing:14.346180px;}
.ws94{word-spacing:14.405920px;}
.ws118{word-spacing:14.465695px;}
.ws4f{word-spacing:14.645022px;}
.ws45{word-spacing:14.704798px;}
.ws138{word-spacing:14.884124px;}
.ws69{word-spacing:14.943900px;}
.wsfa{word-spacing:15.003676px;}
.wse{word-spacing:15.009754px;}
.ws62{word-spacing:15.063451px;}
.ws19{word-spacing:15.117350px;}
.ws35{word-spacing:15.123227px;}
.ws101{word-spacing:15.183002px;}
.ws5b{word-spacing:15.242778px;}
.ws44{word-spacing:15.422105px;}
.wsce{word-spacing:15.541656px;}
.ws12c{word-spacing:15.601432px;}
.ws157{word-spacing:15.661207px;}
.ws46{word-spacing:15.720983px;}
.wsaa{word-spacing:15.840534px;}
.ws7b{word-spacing:15.900310px;}
.ws77{word-spacing:15.960085px;}
.wsd8{word-spacing:16.079636px;}
.ws8f{word-spacing:16.199188px;}
.ws145{word-spacing:16.258963px;}
.ws142{word-spacing:16.318739px;}
.wsbd{word-spacing:16.438290px;}
.wse0{word-spacing:16.557841px;}
.ws47{word-spacing:16.617617px;}
.ws5c{word-spacing:16.677392px;}
.wsde{word-spacing:16.737168px;}
.ws15b{word-spacing:16.796944px;}
.ws61{word-spacing:16.916495px;}
.wsbe{word-spacing:17.036046px;}
.ws52{word-spacing:17.095822px;}
.ws3d{word-spacing:17.215373px;}
.ws162{word-spacing:17.275148px;}
.ws3a{word-spacing:17.574026px;}
.ws102{word-spacing:17.633802px;}
.ws198{word-spacing:17.645801px;}
.ws14c{word-spacing:17.693578px;}
.ws143{word-spacing:17.753353px;}
.ws92{word-spacing:17.813129px;}
.ws1a0{word-spacing:17.884904px;}
.ws1c{word-spacing:17.932680px;}
.ws38{word-spacing:18.052231px;}
.ws57{word-spacing:18.112007px;}
.ws17f{word-spacing:18.124007px;}
.wsdd{word-spacing:18.231558px;}
.wsb0{word-spacing:18.351109px;}
.ws164{word-spacing:18.470660px;}
.ws103{word-spacing:18.590212px;}
.ws15a{word-spacing:18.649987px;}
.wsa6{word-spacing:18.709763px;}
.ws7{word-spacing:18.775642px;}
.ws16{word-spacing:18.883238px;}
.ws14b{word-spacing:18.889090px;}
.ws180{word-spacing:18.936958px;}
.wsff{word-spacing:18.948865px;}
.ws27{word-spacing:19.008641px;}
.ws119{word-spacing:19.247743px;}
.ws60{word-spacing:19.307519px;}
.ws63{word-spacing:19.427070px;}
.ws110{word-spacing:19.549945px;}
.wsb2{word-spacing:19.666172px;}
.wseb{word-spacing:19.725948px;}
.ws3e{word-spacing:19.785724px;}
.ws136{word-spacing:19.845499px;}
.ws3c{word-spacing:19.965050px;}
.ws117{word-spacing:20.084602px;}
.ws151{word-spacing:20.144377px;}
.wsbf{word-spacing:20.204153px;}
.ws50{word-spacing:20.263928px;}
.ws6{word-spacing:20.335795px;}
.ws17{word-spacing:20.389594px;}
.ws71{word-spacing:20.503031px;}
.ws165{word-spacing:20.682358px;}
.ws120{word-spacing:20.801909px;}
.ws30{word-spacing:20.861684px;}
.ws11a{word-spacing:20.921460px;}
.ws4e{word-spacing:21.041011px;}
.wsc{word-spacing:21.142771px;}
.ws14e{word-spacing:21.160562px;}
.ws135{word-spacing:21.339889px;}
.wsa9{word-spacing:21.459440px;}
.ws128{word-spacing:21.578992px;}
.ws169{word-spacing:21.614911px;}
.ws12b{word-spacing:21.698543px;}
.ws15c{word-spacing:21.818094px;}
.ws14a{word-spacing:22.116972px;}
.wsc5{word-spacing:22.236523px;}
.ws7c{word-spacing:22.356074px;}
.wsb6{word-spacing:22.654952px;}
.ws87{word-spacing:22.714728px;}
.ws14d{word-spacing:22.774504px;}
.wsb{word-spacing:22.810522px;}
.wsd5{word-spacing:23.073382px;}
.ws91{word-spacing:23.133157px;}
.ws84{word-spacing:23.312484px;}
.ws134{word-spacing:23.551586px;}
.ws5{word-spacing:23.886490px;}
.ws163{word-spacing:24.149342px;}
.ws131{word-spacing:24.747098px;}
.ws122{word-spacing:24.926425px;}
.ws154{word-spacing:25.225303px;}
.ws1a8{word-spacing:25.918765px;}
.ws10d{word-spacing:26.899020px;}
.ws18{word-spacing:27.060595px;}
.ws15{word-spacing:28.405555px;}
.ws112{word-spacing:28.813945px;}
.wsfb{word-spacing:29.469371px;}
.ws15f{word-spacing:31.740844px;}
.ws111{word-spacing:32.833945px;}
.wsb1{word-spacing:33.235234px;}
.ws181{word-spacing:42.703796px;}
.ws1a9{word-spacing:50.881118px;}
.ws189{word-spacing:63.936142px;}
.ws187{word-spacing:64.414348px;}
.ws108{word-spacing:65.153452px;}
.ws184{word-spacing:71.539618px;}
.wsa3{word-spacing:74.075298px;}
.wsa4{word-spacing:74.081298px;}
.wsa5{word-spacing:98.064488px;}
.ws188{word-spacing:117.543035px;}
.ws185{word-spacing:148.817707px;}
.wsa2{word-spacing:175.458488px;}
.wsda{word-spacing:187.013164px;}
.ws106{word-spacing:221.899201px;}
.wsdc{word-spacing:286.582492px;}
.ws107{word-spacing:410.491204px;}
._2{margin-left:-7.298627px;}
._1{margin-left:-5.738472px;}
._8{margin-left:-4.716263px;}
._4{margin-left:-3.550694px;}
._0{margin-left:-2.151927px;}
._3{margin-left:-1.022179px;}
._d{width:1.716782px;}
._6{width:2.988780px;}
._2f{width:7.029628px;}
._30{width:12.385610px;}
._2c{width:15.720983px;}
._a{width:17.334924px;}
._b{width:18.410885px;}
._2b{width:19.965065px;}
._9{width:21.818094px;}
._7{width:24.687323px;}
._2a{width:26.600162px;}
._16{width:28.333634px;}
._c{width:29.887800px;}
._15{width:31.800699px;}
._5{width:34.861291px;}
._17{width:38.375935px;}
._2e{width:47.700943px;}
._1a{width:49.207397px;}
._21{width:55.066188px;}
._25{width:75.192386px;}
._29{width:78.099581px;}
._12{width:82.155591px;}
._26{width:89.247659px;}
._22{width:91.526128px;}
._10{width:98.115730px;}
._1f{width:100.378123px;}
._1e{width:104.601212px;}
._28{width:109.640699px;}
._11{width:122.106309px;}
._e{width:138.333038px;}
._20{width:144.607944px;}
._f{width:146.112944px;}
._13{width:148.566463px;}
._14{width:206.423354px;}
._23{width:208.629928px;}
._1c{width:235.979201px;}
._2d{width:244.398472px;}
._27{width:250.946220px;}
._1d{width:261.519800px;}
._24{width:307.750415px;}
._18{width:312.381129px;}
._19{width:351.094096px;}
._1b{width:412.092799px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:23.684746px;}
.fs9{font-size:32.836015px;}
.fs8{font-size:35.481601px;}
.fs6{font-size:38.256600px;}
.fs5{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:65.753400px;}
.fs0{font-size:143.461800px;}
.y0{bottom:0.000000px;}
.y34{bottom:113.332500px;}
.y1b5{bottom:113.334000px;}
.y27d{bottom:126.783000px;}
.y33{bottom:131.265000px;}
.y10c{bottom:131.266500px;}
.y27c{bottom:140.232000px;}
.y55{bottom:149.197500px;}
.y32{bottom:149.199000px;}
.y27b{bottom:154.065000px;}
.y2bf{bottom:155.109000px;}
.y54{bottom:167.130000px;}
.y31{bottom:167.131500px;}
.y27a{bottom:167.515500px;}
.y18e{bottom:168.423000px;}
.y2be{bottom:168.558000px;}
.y137{bottom:170.143500px;}
.y10b{bottom:170.457000px;}
.yb3{bottom:172.342500px;}
.y1b4{bottom:177.766500px;}
.y279{bottom:180.964500px;}
.y2bd{bottom:182.007000px;}
.y30{bottom:185.064000px;}
.ye1{bottom:185.998500px;}
.y18d{bottom:186.355500px;}
.y136{bottom:188.076000px;}
.y10a{bottom:193.654500px;}
.y278{bottom:194.413500px;}
.y2bc{bottom:196.884000px;}
.yb2{bottom:201.586500px;}
.y2f{bottom:202.996500px;}
.y208{bottom:203.467500px;}
.ye0{bottom:203.932500px;}
.y18c{bottom:204.288000px;}
.y135{bottom:206.008500px;}
.y277{bottom:208.246500px;}
.y237{bottom:208.812000px;}
.y2bb{bottom:210.333000px;}
.y1b3{bottom:214.183500px;}
.yb1{bottom:219.519000px;}
.y2e{bottom:220.929000px;}
.y207{bottom:221.400000px;}
.y276{bottom:221.697000px;}
.ydf{bottom:221.865000px;}
.y85{bottom:222.010500px;}
.y161{bottom:222.333000px;}
.y18b{bottom:223.512000px;}
.y2ba{bottom:223.783500px;}
.y134{bottom:223.942500px;}
.y1dd{bottom:226.765500px;}
.y1b2{bottom:232.116000px;}
.y275{bottom:235.146000px;}
.yb0{bottom:237.451500px;}
.y109{bottom:237.889500px;}
.y236{bottom:238.401000px;}
.y2b9{bottom:238.659000px;}
.y2d{bottom:238.861500px;}
.y206{bottom:239.332500px;}
.yde{bottom:239.797500px;}
.y84{bottom:239.943000px;}
.y160{bottom:240.265500px;}
.y18a{bottom:241.444500px;}
.y133{bottom:244.887000px;}
.y274{bottom:248.979000px;}
.y1b1{bottom:250.050000px;}
.y108{bottom:251.340000px;}
.y2b8{bottom:252.108000px;}
.yaf{bottom:255.384000px;}
.y235{bottom:256.333500px;}
.y53{bottom:256.794000px;}
.y2c{bottom:256.795500px;}
.y205{bottom:257.266500px;}
.y1dc{bottom:257.527500px;}
.ydd{bottom:257.730000px;}
.y83{bottom:257.875500px;}
.y189{bottom:259.377000px;}
.y244{bottom:262.417500px;}
.y273{bottom:262.428000px;}
.y132{bottom:262.819500px;}
.y2b7{bottom:265.558500px;}
.y15f{bottom:267.816000px;}
.y1b0{bottom:267.982500px;}
.yae{bottom:273.318000px;}
.y234{bottom:274.266000px;}
.y2b{bottom:274.728000px;}
.y204{bottom:275.199000px;}
.y1db{bottom:275.460000px;}
.y82{bottom:275.808000px;}
.y272{bottom:275.878500px;}
.y188{bottom:277.309500px;}
.y2b6{bottom:280.434000px;}
.y131{bottom:280.752000px;}
.ydc{bottom:283.644000px;}
.y1af{bottom:285.915000px;}
.y271{bottom:289.327500px;}
.yad{bottom:291.250500px;}
.y106{bottom:291.663889px;}
.y233{bottom:292.198500px;}
.y2a{bottom:292.660500px;}
.y203{bottom:293.131500px;}
.y1da{bottom:293.392500px;}
.y81{bottom:293.740500px;}
.y2b5{bottom:293.883000px;}
.y270{bottom:303.160500px;}
.y130{bottom:303.430500px;}
.y1ae{bottom:303.847500px;}
.y187{bottom:304.468500px;}
.y2b4{bottom:307.333500px;}
.y15e{bottom:307.761000px;}
.y232{bottom:310.315500px;}
.y29{bottom:310.593000px;}
.y202{bottom:311.064000px;}
.y1d9{bottom:311.326500px;}
.y80{bottom:311.673000px;}
.yac{bottom:312.475500px;}
.y26f{bottom:316.611000px;}
.ydb{bottom:319.614000px;}
.y1ad{bottom:321.780000px;}
.y2b3{bottom:322.209000px;}
.y107{bottom:324.585320px;}
.y15d{bottom:325.693500px;}
.y231{bottom:328.249500px;}
.y52{bottom:328.525500px;}
.y201{bottom:328.996500px;}
.y28{bottom:329.188500px;}
.y1d8{bottom:329.581500px;}
.y7f{bottom:329.607000px;}
.yab{bottom:330.408000px;}
.y26e{bottom:330.444000px;}
.y2b2{bottom:335.658000px;}
.yda{bottom:337.546500px;}
.y1ac{bottom:340.701000px;}
.y186{bottom:343.462500px;}
.y15c{bottom:343.626000px;}
.y26d{bottom:343.893000px;}
.y230{bottom:346.182000px;}
.y51{bottom:346.458000px;}
.y12f{bottom:346.752080px;}
.y27{bottom:347.121000px;}
.y1d7{bottom:347.514000px;}
.y7e{bottom:347.539500px;}
.y2b1{bottom:349.108500px;}
.y200{bottom:353.287500px;}
.yaa{bottom:353.553000px;}
.yd9{bottom:355.479000px;}
.y12e{bottom:355.986836px;}
.y26c{bottom:357.342000px;}
.y1ab{bottom:358.633500px;}
.y185{bottom:361.396500px;}
.y2b0{bottom:363.984000px;}
.y22f{bottom:364.114500px;}
.y50{bottom:364.390500px;}
.y26{bottom:365.055000px;}
.y12d{bottom:365.222622px;}
.y1d6{bottom:365.446500px;}
.y7d{bottom:366.552000px;}
.y15b{bottom:367.509000px;}
.y26b{bottom:371.175000px;}
.yd8{bottom:373.411500px;}
.y12c{bottom:374.457378px;}
.y2af{bottom:377.434500px;}
.y184{bottom:379.329000px;}
.y105{bottom:380.465832px;}
.y22e{bottom:382.047000px;}
.y243{bottom:382.323000px;}
.y4f{bottom:382.324500px;}
.ya9{bottom:382.797000px;}
.y25{bottom:382.987500px;}
.y1d5{bottom:383.379000px;}
.y12b{bottom:383.693164px;}
.y7c{bottom:384.484500px;}
.y26a{bottom:384.625500px;}
.y1ff{bottom:385.314000px;}
.y15a{bottom:385.443000px;}
.y2ae{bottom:390.883500px;}
.yd7{bottom:391.344000px;}
.y1aa{bottom:392.032500px;}
.y12a{bottom:393.337850px;}
.y183{bottom:397.261500px;}
.y269{bottom:398.074500px;}
.y22d{bottom:399.979500px;}
.y4e{bottom:400.257000px;}
.ya8{bottom:400.729500px;}
.y24{bottom:400.920000px;}
.y1d4{bottom:401.313000px;}
.y7b{bottom:402.418500px;}
.y1fe{bottom:403.246500px;}
.y159{bottom:403.375500px;}
.y2ad{bottom:405.759000px;}
.yd6{bottom:410.212500px;}
.y268{bottom:411.907500px;}
.y129{bottom:416.053500px;}
.y22c{bottom:417.912000px;}
.y4d{bottom:418.189500px;}
.ya7{bottom:418.662000px;}
.y23{bottom:418.852500px;}
.y2ac{bottom:419.209500px;}
.y104{bottom:419.610000px;}
.y7a{bottom:420.351000px;}
.y182{bottom:420.909000px;}
.y1fd{bottom:421.179000px;}
.y158{bottom:421.308000px;}
.y1d3{bottom:425.082000px;}
.y267{bottom:425.356500px;}
.yd5{bottom:428.145000px;}
.y128{bottom:429.502500px;}
.y2ab{bottom:432.658500px;}
.y22b{bottom:435.846000px;}
.y4c{bottom:436.122000px;}
.ya6{bottom:436.596000px;}
.y22{bottom:436.785000px;}
.y103{bottom:437.542500px;}
.y79{bottom:438.283500px;}
.y266{bottom:438.807000px;}
.y181{bottom:438.841500px;}
.y1fc{bottom:439.113000px;}
.y1a9{bottom:443.364000px;}
.y157{bottom:445.191000px;}
.yd4{bottom:446.077500px;}
.y2aa{bottom:446.107500px;}
.y265{bottom:452.256000px;}
.y22a{bottom:453.963000px;}
.y4b{bottom:454.054500px;}
.ya5{bottom:454.528500px;}
.y21{bottom:454.719000px;}
.y102{bottom:455.476500px;}
.y1d2{bottom:455.844000px;}
.y78{bottom:456.216000px;}
.y180{bottom:456.774000px;}
.y1fb{bottom:457.045500px;}
.y242{bottom:459.678000px;}
.y2a9{bottom:460.984500px;}
.y1a8{bottom:461.296500px;}
.y156{bottom:463.123500px;}
.yd3{bottom:464.011500px;}
.y127{bottom:465.943500px;}
.y264{bottom:466.089000px;}
.y229{bottom:471.895500px;}
.y4a{bottom:471.987000px;}
.ya4{bottom:472.461000px;}
.y20{bottom:472.651500px;}
.y101{bottom:473.409000px;}
.y1d1{bottom:473.776500px;}
.y77{bottom:474.148500px;}
.y2a8{bottom:474.433500px;}
.y1fa{bottom:474.978000px;}
.y1a7{bottom:479.229000px;}
.y263{bottom:479.539500px;}
.y17f{bottom:480.421500px;}
.yd2{bottom:481.944000px;}
.y126{bottom:483.876000px;}
.y2a7{bottom:487.884000px;}
.y228{bottom:489.828000px;}
.y241{bottom:489.919500px;}
.y49{bottom:489.921000px;}
.ya3{bottom:490.393500px;}
.y1f{bottom:490.584000px;}
.y155{bottom:490.674000px;}
.y1d0{bottom:491.709000px;}
.y76{bottom:492.082500px;}
.y1f9{bottom:492.910500px;}
.y262{bottom:492.988500px;}
.y100{bottom:496.606500px;}
.y1a6{bottom:497.161500px;}
.y17e{bottom:498.354000px;}
.yd1{bottom:499.876500px;}
.y2a6{bottom:502.759500px;}
.y261{bottom:506.437500px;}
.y125{bottom:506.554500px;}
.y227{bottom:507.760500px;}
.y48{bottom:507.853500px;}
.y1cf{bottom:509.641500px;}
.y75{bottom:510.015000px;}
.y1f8{bottom:510.843000px;}
.ya2{bottom:513.898500px;}
.y1a5{bottom:515.095500px;}
.y2a5{bottom:516.208500px;}
.y1e{bottom:517.201500px;}
.yd0{bottom:518.745000px;}
.y260{bottom:519.888000px;}
.y17d{bottom:525.513000px;}
.y226{bottom:525.694500px;}
.y47{bottom:525.786000px;}
.yff{bottom:525.981000px;}
.y1ce{bottom:527.574000px;}
.y74{bottom:527.947500px;}
.y1f7{bottom:528.777000px;}
.y2a4{bottom:529.659000px;}
.y154{bottom:530.620500px;}
.y1a4{bottom:533.028000px;}
.y124{bottom:534.669000px;}
.ycf{bottom:536.677500px;}
.ya1{bottom:543.142500px;}
.y225{bottom:543.627000px;}
.y46{bottom:543.718500px;}
.yfe{bottom:543.913500px;}
.y2a3{bottom:544.534500px;}
.y25f{bottom:546.220500px;}
.y1f6{bottom:546.709500px;}
.y73{bottom:546.960000px;}
.y153{bottom:548.553000px;}
.y1cd{bottom:549.177000px;}
.y1a3{bottom:550.960500px;}
.y123{bottom:552.601500px;}
.yce{bottom:554.610000px;}
.y1d{bottom:555.010500px;}
.y2a2{bottom:557.983500px;}
.ya0{bottom:561.075000px;}
.y224{bottom:561.559500px;}
.y45{bottom:561.651000px;}
.yfd{bottom:561.846000px;}
.y17c{bottom:564.507000px;}
.y1f5{bottom:564.642000px;}
.y72{bottom:564.894000px;}
.y152{bottom:566.485500px;}
.y1cc{bottom:567.109500px;}
.y1c{bottom:569.955000px;}
.y2a1{bottom:571.434000px;}
.ycd{bottom:572.542500px;}
.y122{bottom:573.546000px;}
.y1a2{bottom:577.057500px;}
.y9f{bottom:579.007500px;}
.y44{bottom:579.583500px;}
.y223{bottom:579.676500px;}
.yfc{bottom:579.778500px;}
.y25e{bottom:580.107000px;}
.y17b{bottom:582.439500px;}
.y1f4{bottom:582.574500px;}
.y71{bottom:582.826500px;}
.y151{bottom:584.418000px;}
.y1b{bottom:584.899500px;}
.y1cb{bottom:585.042000px;}
.y2a0{bottom:586.309500px;}
.ycc{bottom:590.475000px;}
.y121{bottom:591.480000px;}
.y9e{bottom:596.940000px;}
.y43{bottom:597.517500px;}
.y222{bottom:597.609000px;}
.yfb{bottom:597.712500px;}
.y25d{bottom:598.039500px;}
.y29f{bottom:599.758500px;}
.y1a{bottom:599.842500px;}
.y17a{bottom:600.373500px;}
.y1f3{bottom:600.507000px;}
.y70{bottom:600.759000px;}
.y150{bottom:602.350500px;}
.y1ca{bottom:602.974500px;}
.y120{bottom:609.412500px;}
.y29e{bottom:613.209000px;}
.y19{bottom:614.787000px;}
.y9d{bottom:614.874000px;}
.y42{bottom:615.450000px;}
.y221{bottom:615.543000px;}
.yfa{bottom:615.645000px;}
.y25c{bottom:615.972000px;}
.ycb{bottom:616.389000px;}
.y179{bottom:618.306000px;}
.y1f2{bottom:618.439500px;}
.y6f{bottom:618.691500px;}
.y14f{bottom:620.283000px;}
.y1c9{bottom:620.908500px;}
.y11f{bottom:627.345000px;}
.y1a1{bottom:628.009500px;}
.y29d{bottom:628.084500px;}
.y18{bottom:629.731500px;}
.y9c{bottom:632.806500px;}
.y41{bottom:633.382500px;}
.y220{bottom:633.475500px;}
.y25b{bottom:633.904500px;}
.y178{bottom:636.238500px;}
.y1f1{bottom:636.373500px;}
.y6e{bottom:636.624000px;}
.yf9{bottom:636.903000px;}
.y1c8{bottom:638.841000px;}
.y1a0{bottom:641.458500px;}
.y29c{bottom:641.535000px;}
.y17{bottom:644.674500px;}
.y11e{bottom:645.277500px;}
.y9b{bottom:650.883000px;}
.y40{bottom:651.315000px;}
.y14e{bottom:651.342000px;}
.y21f{bottom:651.408000px;}
.y25a{bottom:651.838500px;}
.y177{bottom:654.171000px;}
.y6d{bottom:654.556500px;}
.yf8{bottom:654.835500px;}
.y19f{bottom:654.909000px;}
.y29b{bottom:654.984000px;}
.y240{bottom:656.937000px;}
.y1f0{bottom:658.290000px;}
.y16{bottom:660.282000px;}
.y1c7{bottom:660.442500px;}
.y11d{bottom:663.210000px;}
.y19e{bottom:668.358000px;}
.yca{bottom:668.514000px;}
.y9a{bottom:668.815500px;}
.y3f{bottom:669.247500px;}
.y21e{bottom:669.340500px;}
.y259{bottom:669.771000px;}
.y29a{bottom:669.859500px;}
.y176{bottom:672.103500px;}
.y6c{bottom:672.490500px;}
.yf7{bottom:672.768000px;}
.y15{bottom:675.226500px;}
.y1ef{bottom:676.222500px;}
.y1c6{bottom:678.376500px;}
.y19d{bottom:681.807000px;}
.yc9{bottom:681.963000px;}
.y299{bottom:683.310000px;}
.y11c{bottom:684.156000px;}
.y99{bottom:686.748000px;}
.y23f{bottom:687.180000px;}
.y3e{bottom:687.181500px;}
.y21d{bottom:687.273000px;}
.y258{bottom:687.703500px;}
.y14{bottom:690.169500px;}
.yf6{bottom:690.700500px;}
.y14d{bottom:691.287000px;}
.y6b{bottom:691.503000px;}
.y1ee{bottom:694.155000px;}
.y298{bottom:696.759000px;}
.y175{bottom:699.262500px;}
.y11b{bottom:702.088500px;}
.y1c5{bottom:702.145500px;}
.y98{bottom:704.680500px;}
.y13{bottom:705.114000px;}
.y21c{bottom:705.205500px;}
.yf5{bottom:708.633000px;}
.y14c{bottom:709.219500px;}
.y6a{bottom:709.435500px;}
.y297{bottom:711.634500px;}
.y1ed{bottom:712.087500px;}
.y257{bottom:712.759500px;}
.yc6{bottom:713.078994px;}
.yc8{bottom:713.685879px;}
.y19c{bottom:716.926500px;}
.yc5{bottom:719.658310px;}
.y12{bottom:720.058500px;}
.yc7{bottom:720.265195px;}
.y97{bottom:722.758500px;}
.y3d{bottom:723.046500px;}
.y21b{bottom:723.324000px;}
.y11a{bottom:724.767000px;}
.y296{bottom:725.085000px;}
.yf4{bottom:726.567000px;}
.y14b{bottom:727.152000px;}
.y69{bottom:727.369500px;}
.y1ec{bottom:730.492500px;}
.y1c4{bottom:732.907500px;}
.y11{bottom:735.001500px;}
.y174{bottom:738.256500px;}
.y295{bottom:739.960500px;}
.y96{bottom:740.691000px;}
.y3c{bottom:740.979000px;}
.y21a{bottom:741.256500px;}
.yf3{bottom:744.499500px;}
.y14a{bottom:745.086000px;}
.y68{bottom:745.302000px;}
.y256{bottom:746.646000px;}
.y1eb{bottom:748.425000px;}
.y10{bottom:749.946000px;}
.y1c3{bottom:750.840000px;}
.y119{bottom:752.881500px;}
.y294{bottom:753.409500px;}
.yc4{bottom:754.197000px;}
.y173{bottom:756.190500px;}
.y95{bottom:758.623500px;}
.y3b{bottom:758.911500px;}
.y219{bottom:759.189000px;}
.yf2{bottom:762.432000px;}
.y149{bottom:763.018500px;}
.y67{bottom:763.234500px;}
.y255{bottom:764.578500px;}
.yf{bottom:764.889000px;}
.y1ea{bottom:766.357500px;}
.y293{bottom:766.860000px;}
.y18f{bottom:768.378000px;}
.y1c2{bottom:768.772500px;}
.y118{bottom:770.814000px;}
.yc3{bottom:772.129500px;}
.y172{bottom:774.123000px;}
.y94{bottom:776.556000px;}
.y3a{bottom:776.844000px;}
.y218{bottom:777.121500px;}
.ye{bottom:779.833500px;}
.y292{bottom:780.309000px;}
.y148{bottom:780.951000px;}
.y66{bottom:781.167000px;}
.y254{bottom:782.511000px;}
.yf1{bottom:783.690000px;}
.y1e9{bottom:788.274000px;}
.y117{bottom:788.746500px;}
.yc2{bottom:790.062000px;}
.y1c1{bottom:790.375500px;}
.y93{bottom:794.488500px;}
.y23e{bottom:794.776500px;}
.yd{bottom:794.778000px;}
.y217{bottom:795.054000px;}
.y291{bottom:795.186000px;}
.y171{bottom:797.770500px;}
.y147{bottom:798.883500px;}
.y65{bottom:799.099500px;}
.y253{bottom:800.443500px;}
.yf0{bottom:801.622500px;}
.y1e8{bottom:806.206500px;}
.yc1{bottom:807.994500px;}
.y1c0{bottom:808.308000px;}
.y290{bottom:808.635000px;}
.y116{bottom:809.691000px;}
.yc{bottom:809.721000px;}
.y92{bottom:812.422500px;}
.y39{bottom:812.710500px;}
.y216{bottom:812.988000px;}
.y170{bottom:815.703000px;}
.y190{bottom:815.938500px;}
.y146{bottom:816.816000px;}
.y64{bottom:817.032000px;}
.y252{bottom:818.376000px;}
.yef{bottom:819.555000px;}
.y28f{bottom:822.084000px;}
.y1e7{bottom:824.140500px;}
.yb{bottom:824.665500px;}
.y1bf{bottom:826.240500px;}
.y115{bottom:827.623500px;}
.y91{bottom:830.355000px;}
.y38{bottom:830.643000px;}
.y215{bottom:830.920500px;}
.y16f{bottom:833.635500px;}
.yc0{bottom:833.908500px;}
.y63{bottom:834.966000px;}
.y251{bottom:836.308500px;}
.y145{bottom:836.853000px;}
.y28e{bottom:836.961000px;}
.yee{bottom:837.487500px;}
.ya{bottom:839.610000px;}
.y1e6{bottom:842.073000px;}
.y1be{bottom:844.173000px;}
.y114{bottom:845.557500px;}
.y90{bottom:848.431500px;}
.y37{bottom:848.575500px;}
.y214{bottom:848.853000px;}
.y28d{bottom:850.410000px;}
.y16e{bottom:851.568000px;}
.y62{bottom:853.978500px;}
.y23d{bottom:854.197500px;}
.y250{bottom:854.242500px;}
.y9{bottom:854.553000px;}
.y144{bottom:854.787000px;}
.y1e5{bottom:860.005500px;}
.yed{bottom:861.084000px;}
.y1bd{bottom:862.105500px;}
.y191{bottom:862.189500px;}
.y113{bottom:863.490000px;}
.y28c{bottom:863.859000px;}
.y8f{bottom:866.364000px;}
.y36{bottom:866.508000px;}
.y213{bottom:866.785500px;}
.y8{bottom:869.497500px;}
.y16d{bottom:869.500500px;}
.ybf{bottom:869.878500px;}
.y61{bottom:871.911000px;}
.y24f{bottom:872.175000px;}
.y143{bottom:872.719500px;}
.y1e4{bottom:877.938000px;}
.y28b{bottom:878.736000px;}
.y1bc{bottom:880.039500px;}
.y112{bottom:881.422500px;}
.y8e{bottom:884.296500px;}
.y35{bottom:884.440500px;}
.y7{bottom:884.442000px;}
.y16c{bottom:887.433000px;}
.ybe{bottom:887.811000px;}
.y60{bottom:889.843500px;}
.y24e{bottom:890.107500px;}
.yec{bottom:890.458500px;}
.y212{bottom:890.533500px;}
.y142{bottom:890.652000px;}
.y19b{bottom:891.112500px;}
.y28a{bottom:892.185000px;}
.y1e3{bottom:895.870500px;}
.y1bb{bottom:897.972000px;}
.y8d{bottom:902.229000px;}
.y111{bottom:902.367000px;}
.y23c{bottom:902.373000px;}
.y16b{bottom:905.367000px;}
.y289{bottom:905.635500px;}
.ybd{bottom:905.743500px;}
.y5f{bottom:907.777500px;}
.yeb{bottom:908.391000px;}
.y192{bottom:908.440500px;}
.y141{bottom:908.584500px;}
.y1e2{bottom:913.803000px;}
.y24d{bottom:915.163500px;}
.y1ba{bottom:915.904500px;}
.y288{bottom:919.084500px;}
.y211{bottom:920.122500px;}
.y8c{bottom:920.163000px;}
.y23b{bottom:920.307000px;}
.y16a{bottom:923.299500px;}
.ybc{bottom:923.677500px;}
.y110{bottom:925.045500px;}
.y5e{bottom:925.710000px;}
.yea{bottom:926.323500px;}
.y140{bottom:926.517000px;}
.y199{bottom:927.252000px;}
.y1e1{bottom:931.737000px;}
.y1b9{bottom:933.837000px;}
.y287{bottom:933.960000px;}
.y6{bottom:936.534000px;}
.y210{bottom:938.055000px;}
.y8b{bottom:938.095500px;}
.y23a{bottom:938.239500px;}
.y169{bottom:941.232000px;}
.y5d{bottom:943.642500px;}
.y13f{bottom:944.449500px;}
.y286{bottom:947.410500px;}
.ye9{bottom:947.581500px;}
.y24c{bottom:949.050000px;}
.y1e0{bottom:949.669500px;}
.y10f{bottom:953.160000px;}
.y193{bottom:954.691500px;}
.y5{bottom:955.027500px;}
.y1b8{bottom:955.440000px;}
.y20f{bottom:955.987500px;}
.y8a{bottom:956.028000px;}
.y239{bottom:956.172000px;}
.y285{bottom:960.859500px;}
.y198{bottom:961.939500px;}
.y13e{bottom:962.383500px;}
.y168{bottom:964.879500px;}
.ye8{bottom:965.514000px;}
.y24b{bottom:966.982500px;}
.y10e{bottom:971.092500px;}
.y1df{bottom:971.586000px;}
.y5c{bottom:972.766500px;}
.y1b7{bottom:973.372500px;}
.y4{bottom:973.521000px;}
.y20e{bottom:973.920000px;}
.y89{bottom:974.104500px;}
.y284{bottom:975.735000px;}
.ybb{bottom:976.531500px;}
.y19a{bottom:978.127500px;}
.y13d{bottom:980.316000px;}
.y167{bottom:982.812000px;}
.ye7{bottom:983.448000px;}
.y24a{bottom:984.915000px;}
.y283{bottom:989.185500px;}
.yba{bottom:990.579000px;}
.y20d{bottom:991.854000px;}
.y88{bottom:992.037000px;}
.y10d{bottom:992.038500px;}
.y3{bottom:992.235000px;}
.y1de{bottom:995.875500px;}
.y1b6{bottom:997.141500px;}
.y13c{bottom:1000.353000px;}
.y166{bottom:1000.744500px;}
.y194{bottom:1000.942500px;}
.ye6{bottom:1001.380500px;}
.y282{bottom:1002.634500px;}
.y249{bottom:1002.847500px;}
.yb9{bottom:1004.626500px;}
.y20c{bottom:1009.786500px;}
.y87{bottom:1009.969500px;}
.y5b{bottom:1009.971000px;}
.y281{bottom:1017.510000px;}
.y13b{bottom:1018.285500px;}
.yb8{bottom:1018.674000px;}
.y165{bottom:1018.677000px;}
.ye5{bottom:1019.313000px;}
.y248{bottom:1020.780000px;}
.y20b{bottom:1027.719000px;}
.y5a{bottom:1027.903500px;}
.y280{bottom:1030.960500px;}
.yb7{bottom:1032.721500px;}
.y13a{bottom:1036.218000px;}
.y164{bottom:1036.609500px;}
.ye4{bottom:1037.245500px;}
.y247{bottom:1038.714000px;}
.y2{bottom:1039.309500px;}
.y27f{bottom:1044.409500px;}
.y20a{bottom:1045.651500px;}
.y59{bottom:1045.836000px;}
.yb6{bottom:1046.769000px;}
.y195{bottom:1047.193500px;}
.y197{bottom:1049.817000px;}
.y238{bottom:1051.458000px;}
.y139{bottom:1054.150500px;}
.y163{bottom:1054.543500px;}
.y246{bottom:1056.646500px;}
.y27e{bottom:1057.860000px;}
.ye3{bottom:1058.503500px;}
.y2c0{bottom:1059.286500px;}
.y209{bottom:1063.584000px;}
.y58{bottom:1063.768500px;}
.y138{bottom:1072.084500px;}
.y162{bottom:1072.476000px;}
.yb5{bottom:1072.735500px;}
.y245{bottom:1074.579000px;}
.ye2{bottom:1076.436000px;}
.y1{bottom:1081.152000px;}
.y57{bottom:1081.701000px;}
.yb4{bottom:1086.184500px;}
.y196{bottom:1093.444500px;}
.y86{bottom:1099.633500px;}
.y56{bottom:1099.635000px;}
.ha{height:16.295105px;}
.he{height:22.591178px;}
.hd{height:22.788194px;}
.hf{height:22.952374px;}
.hc{height:24.411341px;}
.h7{height:32.900573px;}
.h9{height:33.091855px;}
.h14{height:33.134573px;}
.h15{height:33.140573px;}
.h8{height:33.187496px;}
.h12{height:35.829734px;}
.h5{height:37.336090px;}
.h4{height:37.605082px;}
.h6{height:40.826735px;}
.h3{height:41.125613px;}
.hb{height:41.484266px;}
.h13{height:42.201574px;}
.h10{height:44.831700px;}
.h2{height:45.238339px;}
.h11{height:49.479619px;}
.h1{height:98.701718px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x8{left:73.446000px;}
.x32{left:79.423500px;}
.x10{left:82.414500px;}
.x7{left:88.390500px;}
.x1{left:90.754500px;}
.x12{left:93.123000px;}
.x34{left:100.834500px;}
.x1f{left:103.479000px;}
.x21{left:133.510500px;}
.x11{left:135.579000px;}
.x14{left:178.964644px;}
.x13{left:186.336410px;}
.x30{left:192.535500px;}
.xc{left:197.317500px;}
.x2f{left:201.433500px;}
.x9{left:203.430000px;}
.x31{left:219.897000px;}
.x20{left:236.962500px;}
.xf{left:238.953000px;}
.x15{left:250.034202px;}
.x2{left:256.200000px;}
.x16{left:257.367006px;}
.x33{left:324.909000px;}
.x17{left:331.402968px;}
.x18{left:334.319184px;}
.x6{left:371.781000px;}
.x19{left:402.020168px;}
.x3{left:407.277000px;}
.x1a{left:412.911733px;}
.x5{left:415.782000px;}
.x4{left:450.751500px;}
.xb{left:467.967000px;}
.x2d{left:475.438500px;}
.xa{left:482.910000px;}
.x1c{left:484.226736px;}
.x35{left:495.355500px;}
.x2b{left:496.806000px;}
.xe{left:498.000000px;}
.x26{left:510.303000px;}
.x25{left:517.774500px;}
.x24{left:525.246000px;}
.x23{left:535.350000px;}
.x27{left:545.889000px;}
.x2c{left:570.217500px;}
.x28{left:575.776500px;}
.x1b{left:585.082500px;}
.xd{left:590.202000px;}
.x2e{left:602.052000px;}
.x1e{left:613.460380px;}
.x22{left:616.914000px;}
.x36{left:634.764000px;}
.x29{left:685.326000px;}
.x1d{left:777.621458px;}
.x2a{left:794.874000px;}
@media print{
.v3{vertical-align:-7.968000pt;}
.v1{vertical-align:-3.194252pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:19.285333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.009003pt;}
.ls14{letter-spacing:0.025537pt;}
.ls6{letter-spacing:2.108364pt;}
.ls7{letter-spacing:2.125360pt;}
.ls5{letter-spacing:2.142370pt;}
.ls2{letter-spacing:2.210374pt;}
.ls0{letter-spacing:2.635446pt;}
.ls17{letter-spacing:2.652911pt;}
.lsd{letter-spacing:2.653413pt;}
.ls19{letter-spacing:2.656576pt;}
.ls3{letter-spacing:2.656693pt;}
.ls15{letter-spacing:2.658245pt;}
.ls1f{letter-spacing:2.677954pt;}
.lsa{letter-spacing:7.523774pt;}
.ls13{letter-spacing:9.298427pt;}
.ls9{letter-spacing:10.031699pt;}
.lsc{letter-spacing:11.795718pt;}
.ls12{letter-spacing:11.975578pt;}
.ls18{letter-spacing:11.979242pt;}
.ls16{letter-spacing:11.979680pt;}
.ls11{letter-spacing:12.539624pt;}
.ls8{letter-spacing:12.752200pt;}
.lsf{letter-spacing:14.771215pt;}
.lsb{letter-spacing:19.925200pt;}
.ls1c{letter-spacing:20.466245pt;}
.ls1e{letter-spacing:22.422492pt;}
.ls1a{letter-spacing:23.006964pt;}
.lse{letter-spacing:26.566933pt;}
.ls1d{letter-spacing:27.511578pt;}
.ls4{letter-spacing:31.880320pt;}
.ls10{letter-spacing:37.990715pt;}
.wsf8{word-spacing:-49.382616pt;}
.ws10f{word-spacing:-34.611401pt;}
.wsfc{word-spacing:-25.791179pt;}
.wsf7{word-spacing:-25.738045pt;}
.ws2{word-spacing:-13.283467pt;}
.ws1d{word-spacing:-13.262246pt;}
.ws9b{word-spacing:-12.752160pt;}
.ws115{word-spacing:-12.720248pt;}
.ws5a{word-spacing:-10.626800pt;}
.ws9d{word-spacing:-10.609830pt;}
.ws9c{word-spacing:-8.501467pt;}
.wsac{word-spacing:-5.263277pt;}
.ws12a{word-spacing:-1.062677pt;}
.wsbb{word-spacing:-1.009543pt;}
.ws150{word-spacing:-0.903276pt;}
.ws13a{word-spacing:-0.850142pt;}
.ws5f{word-spacing:-0.797008pt;}
.ws17d{word-spacing:-0.722622pt;}
.ws8c{word-spacing:-0.690740pt;}
.ws18f{word-spacing:-0.595101pt;}
.ws55{word-spacing:-0.584473pt;}
.ws1aa{word-spacing:-0.510086pt;}
.ws51{word-spacing:-0.478205pt;}
.ws12d{word-spacing:-0.425071pt;}
.ws4c{word-spacing:-0.371937pt;}
.ws10a{word-spacing:-0.340058pt;}
.wsf0{word-spacing:-0.159402pt;}
.wsb3{word-spacing:-0.106268pt;}
.ws109{word-spacing:-0.085014pt;}
.wsd9{word-spacing:-0.053134pt;}
.ws4{word-spacing:-0.047821pt;}
.ws152{word-spacing:-0.010667pt;}
.ws9f{word-spacing:-0.008541pt;}
.ws97{word-spacing:0.000000pt;}
.ws9a{word-spacing:0.033966pt;}
.ws13f{word-spacing:0.106268pt;}
.wse8{word-spacing:0.159402pt;}
.ws23{word-spacing:0.265669pt;}
.ws14{word-spacing:0.286925pt;}
.wsb5{word-spacing:0.318803pt;}
.wsb4{word-spacing:0.371937pt;}
.ws1ae{word-spacing:0.425072pt;}
.ws18c{word-spacing:0.680115pt;}
.wsdf{word-spacing:0.690740pt;}
.ws11d{word-spacing:0.743874pt;}
.wsef{word-spacing:0.797008pt;}
.wscc{word-spacing:0.850142pt;}
.ws146{word-spacing:0.903276pt;}
.ws13{word-spacing:1.004237pt;}
.ws2e{word-spacing:1.009543pt;}
.ws1a5{word-spacing:1.020173pt;}
.ws19a{word-spacing:1.105187pt;}
.wsa8{word-spacing:1.115811pt;}
.wsed{word-spacing:1.168945pt;}
.wsa7{word-spacing:1.328347pt;}
.ws21{word-spacing:1.381481pt;}
.ws153{word-spacing:1.434614pt;}
.ws156{word-spacing:1.487748pt;}
.ws19e{word-spacing:1.487752pt;}
.ws72{word-spacing:1.540882pt;}
.ws178{word-spacing:1.572766pt;}
.ws123{word-spacing:1.594016pt;}
.ws18b{word-spacing:1.615274pt;}
.ws197{word-spacing:1.657781pt;}
.ws1a2{word-spacing:1.742795pt;}
.wsd4{word-spacing:1.753418pt;}
.ws11c{word-spacing:1.806551pt;}
.wse7{word-spacing:1.859685pt;}
.ws1a3{word-spacing:1.870317pt;}
.wsd3{word-spacing:1.912819pt;}
.ws1a4{word-spacing:1.912824pt;}
.ws17b{word-spacing:1.955331pt;}
.ws155{word-spacing:1.965953pt;}
.ws54{word-spacing:2.019087pt;}
.ws78{word-spacing:2.072221pt;}
.wsab{word-spacing:2.105311pt;}
.ws66{word-spacing:2.125355pt;}
.ws9e{word-spacing:2.125360pt;}
.ws126{word-spacing:2.178489pt;}
.ws182{word-spacing:2.295389pt;}
.ws93{word-spacing:2.337890pt;}
.ws10c{word-spacing:2.380403pt;}
.ws7e{word-spacing:2.444158pt;}
.ws13d{word-spacing:2.497292pt;}
.ws196{word-spacing:2.507925pt;}
.ws12f{word-spacing:2.550426pt;}
.ws4b{word-spacing:2.603559pt;}
.ws85{word-spacing:2.709827pt;}
.ws86{word-spacing:2.762961pt;}
.ws16d{word-spacing:2.805475pt;}
.wse9{word-spacing:2.816095pt;}
.ws18a{word-spacing:2.847982pt;}
.ws22{word-spacing:2.869229pt;}
.wsdb{word-spacing:2.918757pt;}
.ws88{word-spacing:2.922363pt;}
.wsfe{word-spacing:2.975497pt;}
.ws16c{word-spacing:3.018011pt;}
.ws24{word-spacing:3.028630pt;}
.ws100{word-spacing:3.081764pt;}
.ws144{word-spacing:3.134898pt;}
.wsc9{word-spacing:3.153920pt;}
.ws33{word-spacing:3.188032pt;}
.ws8e{word-spacing:3.241166pt;}
.ws12e{word-spacing:3.294300pt;}
.ws1ab{word-spacing:3.315562pt;}
.ws6b{word-spacing:3.347434pt;}
.ws65{word-spacing:3.400567pt;}
.wsd1{word-spacing:3.453701pt;}
.wscb{word-spacing:3.506835pt;}
.wsad{word-spacing:3.528098pt;}
.ws4a{word-spacing:3.559969pt;}
.ws1a7{word-spacing:3.570605pt;}
.ws1a6{word-spacing:3.613112pt;}
.ws25{word-spacing:3.666237pt;}
.ws174{word-spacing:3.740634pt;}
.ws43{word-spacing:3.772505pt;}
.ws175{word-spacing:3.783141pt;}
.wsea{word-spacing:3.825638pt;}
.ws1ac{word-spacing:3.910662pt;}
.wsd2{word-spacing:3.931906pt;}
.ws80{word-spacing:3.985040pt;}
.wsec{word-spacing:4.038174pt;}
.ws16b{word-spacing:4.038184pt;}
.wsf9{word-spacing:4.091308pt;}
.ws58{word-spacing:4.144442pt;}
.ws125{word-spacing:4.197575pt;}
.ws99{word-spacing:4.208186pt;}
.ws64{word-spacing:4.250709pt;}
.ws98{word-spacing:4.250720pt;}
.ws8b{word-spacing:4.303843pt;}
.ws1b{word-spacing:4.351693pt;}
.ws148{word-spacing:4.356977pt;}
.ws68{word-spacing:4.410111pt;}
.ws190{word-spacing:4.420749pt;}
.wsc7{word-spacing:4.463245pt;}
.ws113{word-spacing:4.516379pt;}
.ws56{word-spacing:4.675780pt;}
.ws14f{word-spacing:4.728914pt;}
.ws19b{word-spacing:4.760806pt;}
.ws90{word-spacing:4.782048pt;}
.ws17c{word-spacing:4.803314pt;}
.ws17e{word-spacing:4.845821pt;}
.ws105{word-spacing:4.888316pt;}
.ws183{word-spacing:4.888328pt;}
.wsb7{word-spacing:4.994583pt;}
.ws194{word-spacing:5.015850pt;}
.ws133{word-spacing:5.047717pt;}
.ws137{word-spacing:5.100851pt;}
.ws59{word-spacing:5.260226pt;}
.ws96{word-spacing:5.260253pt;}
.ws177{word-spacing:5.270893pt;}
.ws3{word-spacing:5.313387pt;}
.wsa0{word-spacing:5.313400pt;}
.ws75{word-spacing:5.366521pt;}
.ws95{word-spacing:5.419654pt;}
.ws1af{word-spacing:5.440922pt;}
.ws5e{word-spacing:5.472788pt;}
.ws11b{word-spacing:5.525922pt;}
.ws176{word-spacing:5.568443pt;}
.wsc8{word-spacing:5.685324pt;}
.ws1a1{word-spacing:5.738472pt;}
.ws2d{word-spacing:5.791591pt;}
.ws8{word-spacing:5.834138pt;}
.ws2b{word-spacing:5.844725pt;}
.ws1{word-spacing:5.844747pt;}
.wscf{word-spacing:5.950993pt;}
.ws139{word-spacing:6.004127pt;}
.ws16a{word-spacing:6.036022pt;}
.ws70{word-spacing:6.057261pt;}
.ws132{word-spacing:6.163529pt;}
.ws32{word-spacing:6.216662pt;}
.ws81{word-spacing:6.269796pt;}
.ws6f{word-spacing:6.322930pt;}
.ws11e{word-spacing:6.376064pt;}
.ws6a{word-spacing:6.429198pt;}
.wsf3{word-spacing:6.482332pt;}
.ws3f{word-spacing:6.535466pt;}
.ws40{word-spacing:6.588599pt;}
.ws10b{word-spacing:6.631123pt;}
.ws36{word-spacing:6.641733pt;}
.wse1{word-spacing:6.748001pt;}
.wse2{word-spacing:6.801135pt;}
.ws18d{word-spacing:6.801152pt;}
.ws168{word-spacing:6.907403pt;}
.ws161{word-spacing:6.960537pt;}
.ws49{word-spacing:7.013670pt;}
.ws79{word-spacing:7.066804pt;}
.ws130{word-spacing:7.119938pt;}
.ws1f{word-spacing:7.226206pt;}
.ws89{word-spacing:7.279340pt;}
.ws7d{word-spacing:7.332474pt;}
.ws8d{word-spacing:7.385607pt;}
.ws41{word-spacing:7.491875pt;}
.ws19c{word-spacing:7.523774pt;}
.wsaf{word-spacing:7.598143pt;}
.ws191{word-spacing:7.608789pt;}
.wsc3{word-spacing:7.651277pt;}
.ws19d{word-spacing:7.693803pt;}
.wse3{word-spacing:7.704411pt;}
.wse4{word-spacing:7.757545pt;}
.ws173{word-spacing:7.821325pt;}
.ws26{word-spacing:7.863812pt;}
.ws7a{word-spacing:7.916946pt;}
.ws127{word-spacing:8.023214pt;}
.ws1a{word-spacing:8.033894pt;}
.wse5{word-spacing:8.076348pt;}
.ws199{word-spacing:8.076368pt;}
.ws172{word-spacing:8.118875pt;}
.ws1ad{word-spacing:8.161382pt;}
.ws129{word-spacing:8.182615pt;}
.ws31{word-spacing:8.235749pt;}
.ws159{word-spacing:8.288883pt;}
.ws124{word-spacing:8.342017pt;}
.ws149{word-spacing:8.395151pt;}
.wscd{word-spacing:8.554553pt;}
.ws74{word-spacing:8.607686pt;}
.wsb9{word-spacing:8.660820pt;}
.ws20{word-spacing:8.713954pt;}
.ws121{word-spacing:8.767088pt;}
.ws83{word-spacing:8.820222pt;}
.ws5d{word-spacing:8.873356pt;}
.ws2a{word-spacing:8.926490pt;}
.ws67{word-spacing:8.979623pt;}
.ws171{word-spacing:9.011526pt;}
.ws10{word-spacing:9.038131pt;}
.ws4d{word-spacing:9.085891pt;}
.ws10e{word-spacing:9.139025pt;}
.ws16e{word-spacing:9.181555pt;}
.ws114{word-spacing:9.192159pt;}
.wsf4{word-spacing:9.245293pt;}
.ws192{word-spacing:9.266570pt;}
.ws7f{word-spacing:9.298427pt;}
.ws17a{word-spacing:9.351584pt;}
.ws179{word-spacing:9.394091pt;}
.ws76{word-spacing:9.404694pt;}
.wsee{word-spacing:9.457828pt;}
.ws160{word-spacing:9.510962pt;}
.ws29{word-spacing:9.564096pt;}
.wsba{word-spacing:9.617230pt;}
.ws73{word-spacing:9.670364pt;}
.wsc4{word-spacing:9.723498pt;}
.ws158{word-spacing:9.776631pt;}
.ws170{word-spacing:9.776656pt;}
.ws16f{word-spacing:9.819163pt;}
.wsae{word-spacing:9.829765pt;}
.ws6c{word-spacing:9.882899pt;}
.ws193{word-spacing:9.904178pt;}
.ws1e{word-spacing:9.936033pt;}
.ws37{word-spacing:9.989167pt;}
.wsa1{word-spacing:9.989192pt;}
.ws19f{word-spacing:10.031699pt;}
.wsfd{word-spacing:10.042301pt;}
.ws8a{word-spacing:10.095435pt;}
.ws3b{word-spacing:10.148569pt;}
.ws195{word-spacing:10.244235pt;}
.wsf1{word-spacing:10.254836pt;}
.wsa{word-spacing:10.281472pt;}
.wsf2{word-spacing:10.307970pt;}
.ws34{word-spacing:10.414238pt;}
.wsc0{word-spacing:10.467372pt;}
.wsd{word-spacing:10.520576pt;}
.ws13e{word-spacing:10.573639pt;}
.ws12{word-spacing:10.616218pt;}
.ws186{word-spacing:10.619356pt;}
.ws39{word-spacing:10.626773pt;}
.ws42{word-spacing:10.679907pt;}
.wsbc{word-spacing:10.733041pt;}
.ws18e{word-spacing:10.796829pt;}
.ws2c{word-spacing:10.892443pt;}
.ws9{word-spacing:10.903142pt;}
.ws2f{word-spacing:10.945577pt;}
.wsf{word-spacing:10.950963pt;}
.ws6e{word-spacing:10.998710pt;}
.ws48{word-spacing:11.051844pt;}
.ws166{word-spacing:11.104978pt;}
.ws28{word-spacing:11.158112pt;}
.ws104{word-spacing:11.211246pt;}
.wsca{word-spacing:11.221901pt;}
.wsd0{word-spacing:11.264380pt;}
.ws141{word-spacing:11.317514pt;}
.ws11f{word-spacing:11.370647pt;}
.ws15e{word-spacing:11.423781pt;}
.ws82{word-spacing:11.476915pt;}
.ws13b{word-spacing:11.530049pt;}
.wsc6{word-spacing:11.583183pt;}
.ws140{word-spacing:11.636317pt;}
.wsc2{word-spacing:11.689451pt;}
.wsc1{word-spacing:11.742585pt;}
.ws147{word-spacing:11.795718pt;}
.wse6{word-spacing:11.901986pt;}
.wsd7{word-spacing:11.955120pt;}
.wsd6{word-spacing:12.008254pt;}
.ws15d{word-spacing:12.061388pt;}
.ws53{word-spacing:12.114522pt;}
.ws167{word-spacing:12.273923pt;}
.ws6d{word-spacing:12.380191pt;}
.wsf6{word-spacing:12.433325pt;}
.ws11{word-spacing:12.433408pt;}
.wsf5{word-spacing:12.486459pt;}
.ws13c{word-spacing:12.539593pt;}
.ws116{word-spacing:12.592726pt;}
.wsb8{word-spacing:12.698994pt;}
.ws0{word-spacing:12.752160pt;}
.ws94{word-spacing:12.805262pt;}
.ws118{word-spacing:12.858396pt;}
.ws4f{word-spacing:13.017797pt;}
.ws45{word-spacing:13.070931pt;}
.ws138{word-spacing:13.230333pt;}
.ws69{word-spacing:13.283467pt;}
.wsfa{word-spacing:13.336601pt;}
.wse{word-spacing:13.342003pt;}
.ws62{word-spacing:13.389734pt;}
.ws19{word-spacing:13.437645pt;}
.ws35{word-spacing:13.442868pt;}
.ws101{word-spacing:13.496002pt;}
.ws5b{word-spacing:13.549136pt;}
.ws44{word-spacing:13.708538pt;}
.wsce{word-spacing:13.814805pt;}
.ws12c{word-spacing:13.867939pt;}
.ws157{word-spacing:13.921073pt;}
.ws46{word-spacing:13.974207pt;}
.wsaa{word-spacing:14.080475pt;}
.ws7b{word-spacing:14.133609pt;}
.ws77{word-spacing:14.186742pt;}
.wsd8{word-spacing:14.293010pt;}
.ws8f{word-spacing:14.399278pt;}
.ws145{word-spacing:14.452412pt;}
.ws142{word-spacing:14.505546pt;}
.wsbd{word-spacing:14.611813pt;}
.wse0{word-spacing:14.718081pt;}
.ws47{word-spacing:14.771215pt;}
.ws5c{word-spacing:14.824349pt;}
.wsde{word-spacing:14.877483pt;}
.ws15b{word-spacing:14.930617pt;}
.ws61{word-spacing:15.036884pt;}
.wsbe{word-spacing:15.143152pt;}
.ws52{word-spacing:15.196286pt;}
.ws3d{word-spacing:15.302554pt;}
.ws162{word-spacing:15.355687pt;}
.ws3a{word-spacing:15.621357pt;}
.ws102{word-spacing:15.674491pt;}
.ws198{word-spacing:15.685157pt;}
.ws14c{word-spacing:15.727625pt;}
.ws143{word-spacing:15.780758pt;}
.ws92{word-spacing:15.833892pt;}
.ws1a0{word-spacing:15.897693pt;}
.ws1c{word-spacing:15.940160pt;}
.ws38{word-spacing:16.046428pt;}
.ws57{word-spacing:16.099562pt;}
.ws17f{word-spacing:16.110229pt;}
.wsdd{word-spacing:16.205829pt;}
.wsb0{word-spacing:16.312097pt;}
.ws164{word-spacing:16.418365pt;}
.ws103{word-spacing:16.524633pt;}
.ws15a{word-spacing:16.577766pt;}
.wsa6{word-spacing:16.630900pt;}
.ws7{word-spacing:16.689459pt;}
.ws16{word-spacing:16.785101pt;}
.ws14b{word-spacing:16.790302pt;}
.ws180{word-spacing:16.832851pt;}
.wsff{word-spacing:16.843436pt;}
.ws27{word-spacing:16.896570pt;}
.ws119{word-spacing:17.109105pt;}
.ws60{word-spacing:17.162239pt;}
.ws63{word-spacing:17.268507pt;}
.ws110{word-spacing:17.377729pt;}
.wsb2{word-spacing:17.481042pt;}
.wseb{word-spacing:17.534176pt;}
.ws3e{word-spacing:17.587310pt;}
.ws136{word-spacing:17.640444pt;}
.ws3c{word-spacing:17.746711pt;}
.ws117{word-spacing:17.852979pt;}
.ws151{word-spacing:17.906113pt;}
.wsbf{word-spacing:17.959247pt;}
.ws50{word-spacing:18.012381pt;}
.ws6{word-spacing:18.076262pt;}
.ws17{word-spacing:18.124083pt;}
.ws71{word-spacing:18.224916pt;}
.ws165{word-spacing:18.384318pt;}
.ws120{word-spacing:18.490586pt;}
.ws30{word-spacing:18.543719pt;}
.ws11a{word-spacing:18.596853pt;}
.ws4e{word-spacing:18.703121pt;}
.wsc{word-spacing:18.793574pt;}
.ws14e{word-spacing:18.809389pt;}
.ws135{word-spacing:18.968790pt;}
.wsa9{word-spacing:19.075058pt;}
.ws128{word-spacing:19.181326pt;}
.ws169{word-spacing:19.213254pt;}
.ws12b{word-spacing:19.287594pt;}
.ws15c{word-spacing:19.393861pt;}
.ws14a{word-spacing:19.659531pt;}
.wsc5{word-spacing:19.765798pt;}
.ws7c{word-spacing:19.872066pt;}
.wsb6{word-spacing:20.137735pt;}
.ws87{word-spacing:20.190869pt;}
.ws14d{word-spacing:20.244003pt;}
.wsb{word-spacing:20.276019pt;}
.wsd5{word-spacing:20.509673pt;}
.ws91{word-spacing:20.562806pt;}
.ws84{word-spacing:20.722208pt;}
.ws134{word-spacing:20.934743pt;}
.ws5{word-spacing:21.232435pt;}
.ws163{word-spacing:21.466082pt;}
.ws131{word-spacing:21.997421pt;}
.ws122{word-spacing:22.156822pt;}
.ws154{word-spacing:22.422492pt;}
.ws1a8{word-spacing:23.038902pt;}
.ws10d{word-spacing:23.910240pt;}
.ws18{word-spacing:24.053862pt;}
.ws15{word-spacing:25.249382pt;}
.ws112{word-spacing:25.612396pt;}
.wsfb{word-spacing:26.194996pt;}
.ws15f{word-spacing:28.214083pt;}
.ws111{word-spacing:29.185729pt;}
.wsb1{word-spacing:29.542430pt;}
.ws181{word-spacing:37.958930pt;}
.ws1a9{word-spacing:45.227661pt;}
.ws189{word-spacing:56.832126pt;}
.ws187{word-spacing:57.257198pt;}
.ws108{word-spacing:57.914179pt;}
.ws184{word-spacing:63.590771pt;}
.wsa3{word-spacing:65.844710pt;}
.wsa4{word-spacing:65.850043pt;}
.wsa5{word-spacing:87.168434pt;}
.ws188{word-spacing:104.482698pt;}
.ws185{word-spacing:132.282406pt;}
.wsa2{word-spacing:155.963101pt;}
.wsda{word-spacing:166.233923pt;}
.ws106{word-spacing:197.243734pt;}
.wsdc{word-spacing:254.739993pt;}
.ws107{word-spacing:364.881070pt;}
._2{margin-left:-6.487669pt;}
._1{margin-left:-5.100864pt;}
._8{margin-left:-4.192234pt;}
._4{margin-left:-3.156173pt;}
._0{margin-left:-1.912824pt;}
._3{margin-left:-0.908603pt;}
._d{width:1.526028pt;}
._6{width:2.656693pt;}
._2f{width:6.248558pt;}
._30{width:11.009431pt;}
._2c{width:13.974207pt;}
._a{width:15.408821pt;}
._b{width:16.365231pt;}
._2b{width:17.746724pt;}
._9{width:19.393861pt;}
._7{width:21.944287pt;}
._2a{width:23.644588pt;}
._16{width:25.185453pt;}
._c{width:26.566933pt;}
._15{width:28.267288pt;}
._5{width:30.987814pt;}
._17{width:34.111942pt;}
._2e{width:42.400838pt;}
._1a{width:43.739909pt;}
._21{width:48.947723pt;}
._25{width:66.837676pt;}
._29{width:69.421850pt;}
._12{width:73.027192pt;}
._26{width:79.331253pt;}
._22{width:81.356558pt;}
._10{width:87.213982pt;}
._1f{width:89.224998pt;}
._1e{width:92.978856pt;}
._28{width:97.458400pt;}
._11{width:108.538941pt;}
._e{width:122.962700pt;}
._20{width:128.540394pt;}
._f{width:129.878173pt;}
._13{width:132.059078pt;}
._14{width:183.487426pt;}
._23{width:185.448825pt;}
._1c{width:209.759290pt;}
._2d{width:217.243086pt;}
._27{width:223.063307pt;}
._1d{width:232.462044pt;}
._24{width:273.555924pt;}
._18{width:277.672115pt;}
._19{width:312.083641pt;}
._1b{width:366.304710pt;}
.fs7{font-size:21.053107pt;}
.fs9{font-size:29.187569pt;}
.fs8{font-size:31.539201pt;}
.fs6{font-size:34.005867pt;}
.fs5{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:58.447467pt;}
.fs0{font-size:127.521600pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:100.740000pt;}
.y1b5{bottom:100.741333pt;}
.y27d{bottom:112.696000pt;}
.y33{bottom:116.680000pt;}
.y10c{bottom:116.681333pt;}
.y27c{bottom:124.650667pt;}
.y55{bottom:132.620000pt;}
.y32{bottom:132.621333pt;}
.y27b{bottom:136.946667pt;}
.y2bf{bottom:137.874667pt;}
.y54{bottom:148.560000pt;}
.y31{bottom:148.561333pt;}
.y27a{bottom:148.902667pt;}
.y18e{bottom:149.709333pt;}
.y2be{bottom:149.829333pt;}
.y137{bottom:151.238667pt;}
.y10b{bottom:151.517333pt;}
.yb3{bottom:153.193333pt;}
.y1b4{bottom:158.014667pt;}
.y279{bottom:160.857333pt;}
.y2bd{bottom:161.784000pt;}
.y30{bottom:164.501333pt;}
.ye1{bottom:165.332000pt;}
.y18d{bottom:165.649333pt;}
.y136{bottom:167.178667pt;}
.y10a{bottom:172.137333pt;}
.y278{bottom:172.812000pt;}
.y2bc{bottom:175.008000pt;}
.yb2{bottom:179.188000pt;}
.y2f{bottom:180.441333pt;}
.y208{bottom:180.860000pt;}
.ye0{bottom:181.273333pt;}
.y18c{bottom:181.589333pt;}
.y135{bottom:183.118667pt;}
.y277{bottom:185.108000pt;}
.y237{bottom:185.610667pt;}
.y2bb{bottom:186.962667pt;}
.y1b3{bottom:190.385333pt;}
.yb1{bottom:195.128000pt;}
.y2e{bottom:196.381333pt;}
.y207{bottom:196.800000pt;}
.y276{bottom:197.064000pt;}
.ydf{bottom:197.213333pt;}
.y85{bottom:197.342667pt;}
.y161{bottom:197.629333pt;}
.y18b{bottom:198.677333pt;}
.y2ba{bottom:198.918667pt;}
.y134{bottom:199.060000pt;}
.y1dd{bottom:201.569333pt;}
.y1b2{bottom:206.325333pt;}
.y275{bottom:209.018667pt;}
.yb0{bottom:211.068000pt;}
.y109{bottom:211.457333pt;}
.y236{bottom:211.912000pt;}
.y2b9{bottom:212.141333pt;}
.y2d{bottom:212.321333pt;}
.y206{bottom:212.740000pt;}
.yde{bottom:213.153333pt;}
.y84{bottom:213.282667pt;}
.y160{bottom:213.569333pt;}
.y18a{bottom:214.617333pt;}
.y133{bottom:217.677333pt;}
.y274{bottom:221.314667pt;}
.y1b1{bottom:222.266667pt;}
.y108{bottom:223.413333pt;}
.y2b8{bottom:224.096000pt;}
.yaf{bottom:227.008000pt;}
.y235{bottom:227.852000pt;}
.y53{bottom:228.261333pt;}
.y2c{bottom:228.262667pt;}
.y205{bottom:228.681333pt;}
.y1dc{bottom:228.913333pt;}
.ydd{bottom:229.093333pt;}
.y83{bottom:229.222667pt;}
.y189{bottom:230.557333pt;}
.y244{bottom:233.260000pt;}
.y273{bottom:233.269333pt;}
.y132{bottom:233.617333pt;}
.y2b7{bottom:236.052000pt;}
.y15f{bottom:238.058667pt;}
.y1b0{bottom:238.206667pt;}
.yae{bottom:242.949333pt;}
.y234{bottom:243.792000pt;}
.y2b{bottom:244.202667pt;}
.y204{bottom:244.621333pt;}
.y1db{bottom:244.853333pt;}
.y82{bottom:245.162667pt;}
.y272{bottom:245.225333pt;}
.y188{bottom:246.497333pt;}
.y2b6{bottom:249.274667pt;}
.y131{bottom:249.557333pt;}
.ydc{bottom:252.128000pt;}
.y1af{bottom:254.146667pt;}
.y271{bottom:257.180000pt;}
.yad{bottom:258.889333pt;}
.y106{bottom:259.256790pt;}
.y233{bottom:259.732000pt;}
.y2a{bottom:260.142667pt;}
.y203{bottom:260.561333pt;}
.y1da{bottom:260.793333pt;}
.y81{bottom:261.102667pt;}
.y2b5{bottom:261.229333pt;}
.y270{bottom:269.476000pt;}
.y130{bottom:269.716000pt;}
.y1ae{bottom:270.086667pt;}
.y187{bottom:270.638667pt;}
.y2b4{bottom:273.185333pt;}
.y15e{bottom:273.565333pt;}
.y232{bottom:275.836000pt;}
.y29{bottom:276.082667pt;}
.y202{bottom:276.501333pt;}
.y1d9{bottom:276.734667pt;}
.y80{bottom:277.042667pt;}
.yac{bottom:277.756000pt;}
.y26f{bottom:281.432000pt;}
.ydb{bottom:284.101333pt;}
.y1ad{bottom:286.026667pt;}
.y2b3{bottom:286.408000pt;}
.y107{bottom:288.520284pt;}
.y15d{bottom:289.505333pt;}
.y231{bottom:291.777333pt;}
.y52{bottom:292.022667pt;}
.y201{bottom:292.441333pt;}
.y28{bottom:292.612000pt;}
.y1d8{bottom:292.961333pt;}
.y7f{bottom:292.984000pt;}
.yab{bottom:293.696000pt;}
.y26e{bottom:293.728000pt;}
.y2b2{bottom:298.362667pt;}
.yda{bottom:300.041333pt;}
.y1ac{bottom:302.845333pt;}
.y186{bottom:305.300000pt;}
.y15c{bottom:305.445333pt;}
.y26d{bottom:305.682667pt;}
.y230{bottom:307.717333pt;}
.y51{bottom:307.962667pt;}
.y12f{bottom:308.224071pt;}
.y27{bottom:308.552000pt;}
.y1d7{bottom:308.901333pt;}
.y7e{bottom:308.924000pt;}
.y2b1{bottom:310.318667pt;}
.y200{bottom:314.033333pt;}
.yaa{bottom:314.269333pt;}
.yd9{bottom:315.981333pt;}
.y12e{bottom:316.432743pt;}
.y26c{bottom:317.637333pt;}
.y1ab{bottom:318.785333pt;}
.y185{bottom:321.241333pt;}
.y2b0{bottom:323.541333pt;}
.y22f{bottom:323.657333pt;}
.y50{bottom:323.902667pt;}
.y26{bottom:324.493333pt;}
.y12d{bottom:324.642331pt;}
.y1d6{bottom:324.841333pt;}
.y7d{bottom:325.824000pt;}
.y15b{bottom:326.674667pt;}
.y26b{bottom:329.933333pt;}
.yd8{bottom:331.921333pt;}
.y12c{bottom:332.851003pt;}
.y2af{bottom:335.497333pt;}
.y184{bottom:337.181333pt;}
.y105{bottom:338.191850pt;}
.y22e{bottom:339.597333pt;}
.y243{bottom:339.842667pt;}
.y4f{bottom:339.844000pt;}
.ya9{bottom:340.264000pt;}
.y25{bottom:340.433333pt;}
.y1d5{bottom:340.781333pt;}
.y12b{bottom:341.060590pt;}
.y7c{bottom:341.764000pt;}
.y26a{bottom:341.889333pt;}
.y1ff{bottom:342.501333pt;}
.y15a{bottom:342.616000pt;}
.y2ae{bottom:347.452000pt;}
.yd7{bottom:347.861333pt;}
.y1aa{bottom:348.473333pt;}
.y12a{bottom:349.633644pt;}
.y183{bottom:353.121333pt;}
.y269{bottom:353.844000pt;}
.y22d{bottom:355.537333pt;}
.y4e{bottom:355.784000pt;}
.ya8{bottom:356.204000pt;}
.y24{bottom:356.373333pt;}
.y1d4{bottom:356.722667pt;}
.y7b{bottom:357.705333pt;}
.y1fe{bottom:358.441333pt;}
.y159{bottom:358.556000pt;}
.y2ad{bottom:360.674667pt;}
.yd6{bottom:364.633333pt;}
.y268{bottom:366.140000pt;}
.y129{bottom:369.825333pt;}
.y22c{bottom:371.477333pt;}
.y4d{bottom:371.724000pt;}
.ya7{bottom:372.144000pt;}
.y23{bottom:372.313333pt;}
.y2ac{bottom:372.630667pt;}
.y104{bottom:372.986667pt;}
.y7a{bottom:373.645333pt;}
.y182{bottom:374.141333pt;}
.y1fd{bottom:374.381333pt;}
.y158{bottom:374.496000pt;}
.y1d3{bottom:377.850667pt;}
.y267{bottom:378.094667pt;}
.yd5{bottom:380.573333pt;}
.y128{bottom:381.780000pt;}
.y2ab{bottom:384.585333pt;}
.y22b{bottom:387.418667pt;}
.y4c{bottom:387.664000pt;}
.ya6{bottom:388.085333pt;}
.y22{bottom:388.253333pt;}
.y103{bottom:388.926667pt;}
.y79{bottom:389.585333pt;}
.y266{bottom:390.050667pt;}
.y181{bottom:390.081333pt;}
.y1fc{bottom:390.322667pt;}
.y1a9{bottom:394.101333pt;}
.y157{bottom:395.725333pt;}
.yd4{bottom:396.513333pt;}
.y2aa{bottom:396.540000pt;}
.y265{bottom:402.005333pt;}
.y22a{bottom:403.522667pt;}
.y4b{bottom:403.604000pt;}
.ya5{bottom:404.025333pt;}
.y21{bottom:404.194667pt;}
.y102{bottom:404.868000pt;}
.y1d2{bottom:405.194667pt;}
.y78{bottom:405.525333pt;}
.y180{bottom:406.021333pt;}
.y1fb{bottom:406.262667pt;}
.y242{bottom:408.602667pt;}
.y2a9{bottom:409.764000pt;}
.y1a8{bottom:410.041333pt;}
.y156{bottom:411.665333pt;}
.yd3{bottom:412.454667pt;}
.y127{bottom:414.172000pt;}
.y264{bottom:414.301333pt;}
.y229{bottom:419.462667pt;}
.y4a{bottom:419.544000pt;}
.ya4{bottom:419.965333pt;}
.y20{bottom:420.134667pt;}
.y101{bottom:420.808000pt;}
.y1d1{bottom:421.134667pt;}
.y77{bottom:421.465333pt;}
.y2a8{bottom:421.718667pt;}
.y1fa{bottom:422.202667pt;}
.y1a7{bottom:425.981333pt;}
.y263{bottom:426.257333pt;}
.y17f{bottom:427.041333pt;}
.yd2{bottom:428.394667pt;}
.y126{bottom:430.112000pt;}
.y2a7{bottom:433.674667pt;}
.y228{bottom:435.402667pt;}
.y241{bottom:435.484000pt;}
.y49{bottom:435.485333pt;}
.ya3{bottom:435.905333pt;}
.y1f{bottom:436.074667pt;}
.y155{bottom:436.154667pt;}
.y1d0{bottom:437.074667pt;}
.y76{bottom:437.406667pt;}
.y1f9{bottom:438.142667pt;}
.y262{bottom:438.212000pt;}
.y100{bottom:441.428000pt;}
.y1a6{bottom:441.921333pt;}
.y17e{bottom:442.981333pt;}
.yd1{bottom:444.334667pt;}
.y2a6{bottom:446.897333pt;}
.y261{bottom:450.166667pt;}
.y125{bottom:450.270667pt;}
.y227{bottom:451.342667pt;}
.y48{bottom:451.425333pt;}
.y1cf{bottom:453.014667pt;}
.y75{bottom:453.346667pt;}
.y1f8{bottom:454.082667pt;}
.ya2{bottom:456.798667pt;}
.y1a5{bottom:457.862667pt;}
.y2a5{bottom:458.852000pt;}
.y1e{bottom:459.734667pt;}
.yd0{bottom:461.106667pt;}
.y260{bottom:462.122667pt;}
.y17d{bottom:467.122667pt;}
.y226{bottom:467.284000pt;}
.y47{bottom:467.365333pt;}
.yff{bottom:467.538667pt;}
.y1ce{bottom:468.954667pt;}
.y74{bottom:469.286667pt;}
.y1f7{bottom:470.024000pt;}
.y2a4{bottom:470.808000pt;}
.y154{bottom:471.662667pt;}
.y1a4{bottom:473.802667pt;}
.y124{bottom:475.261333pt;}
.ycf{bottom:477.046667pt;}
.ya1{bottom:482.793333pt;}
.y225{bottom:483.224000pt;}
.y46{bottom:483.305333pt;}
.yfe{bottom:483.478667pt;}
.y2a3{bottom:484.030667pt;}
.y25f{bottom:485.529333pt;}
.y1f6{bottom:485.964000pt;}
.y73{bottom:486.186667pt;}
.y153{bottom:487.602667pt;}
.y1cd{bottom:488.157333pt;}
.y1a3{bottom:489.742667pt;}
.y123{bottom:491.201333pt;}
.yce{bottom:492.986667pt;}
.y1d{bottom:493.342667pt;}
.y2a2{bottom:495.985333pt;}
.ya0{bottom:498.733333pt;}
.y224{bottom:499.164000pt;}
.y45{bottom:499.245333pt;}
.yfd{bottom:499.418667pt;}
.y17c{bottom:501.784000pt;}
.y1f5{bottom:501.904000pt;}
.y72{bottom:502.128000pt;}
.y152{bottom:503.542667pt;}
.y1cc{bottom:504.097333pt;}
.y1c{bottom:506.626667pt;}
.y2a1{bottom:507.941333pt;}
.ycd{bottom:508.926667pt;}
.y122{bottom:509.818667pt;}
.y1a2{bottom:512.940000pt;}
.y9f{bottom:514.673333pt;}
.y44{bottom:515.185333pt;}
.y223{bottom:515.268000pt;}
.yfc{bottom:515.358667pt;}
.y25e{bottom:515.650667pt;}
.y17b{bottom:517.724000pt;}
.y1f4{bottom:517.844000pt;}
.y71{bottom:518.068000pt;}
.y151{bottom:519.482667pt;}
.y1b{bottom:519.910667pt;}
.y1cb{bottom:520.037333pt;}
.y2a0{bottom:521.164000pt;}
.ycc{bottom:524.866667pt;}
.y121{bottom:525.760000pt;}
.y9e{bottom:530.613333pt;}
.y43{bottom:531.126667pt;}
.y222{bottom:531.208000pt;}
.yfb{bottom:531.300000pt;}
.y25d{bottom:531.590667pt;}
.y29f{bottom:533.118667pt;}
.y1a{bottom:533.193333pt;}
.y17a{bottom:533.665333pt;}
.y1f3{bottom:533.784000pt;}
.y70{bottom:534.008000pt;}
.y150{bottom:535.422667pt;}
.y1ca{bottom:535.977333pt;}
.y120{bottom:541.700000pt;}
.y29e{bottom:545.074667pt;}
.y19{bottom:546.477333pt;}
.y9d{bottom:546.554667pt;}
.y42{bottom:547.066667pt;}
.y221{bottom:547.149333pt;}
.yfa{bottom:547.240000pt;}
.y25c{bottom:547.530667pt;}
.ycb{bottom:547.901333pt;}
.y179{bottom:549.605333pt;}
.y1f2{bottom:549.724000pt;}
.y6f{bottom:549.948000pt;}
.y14f{bottom:551.362667pt;}
.y1c9{bottom:551.918667pt;}
.y11f{bottom:557.640000pt;}
.y1a1{bottom:558.230667pt;}
.y29d{bottom:558.297333pt;}
.y18{bottom:559.761333pt;}
.y9c{bottom:562.494667pt;}
.y41{bottom:563.006667pt;}
.y220{bottom:563.089333pt;}
.y25b{bottom:563.470667pt;}
.y178{bottom:565.545333pt;}
.y1f1{bottom:565.665333pt;}
.y6e{bottom:565.888000pt;}
.yf9{bottom:566.136000pt;}
.y1c8{bottom:567.858667pt;}
.y1a0{bottom:570.185333pt;}
.y29c{bottom:570.253333pt;}
.y17{bottom:573.044000pt;}
.y11e{bottom:573.580000pt;}
.y9b{bottom:578.562667pt;}
.y40{bottom:578.946667pt;}
.y14e{bottom:578.970667pt;}
.y21f{bottom:579.029333pt;}
.y25a{bottom:579.412000pt;}
.y177{bottom:581.485333pt;}
.y6d{bottom:581.828000pt;}
.yf8{bottom:582.076000pt;}
.y19f{bottom:582.141333pt;}
.y29b{bottom:582.208000pt;}
.y240{bottom:583.944000pt;}
.y1f0{bottom:585.146667pt;}
.y16{bottom:586.917333pt;}
.y1c7{bottom:587.060000pt;}
.y11d{bottom:589.520000pt;}
.y19e{bottom:594.096000pt;}
.yca{bottom:594.234667pt;}
.y9a{bottom:594.502667pt;}
.y3f{bottom:594.886667pt;}
.y21e{bottom:594.969333pt;}
.y259{bottom:595.352000pt;}
.y29a{bottom:595.430667pt;}
.y176{bottom:597.425333pt;}
.y6c{bottom:597.769333pt;}
.yf7{bottom:598.016000pt;}
.y15{bottom:600.201333pt;}
.y1ef{bottom:601.086667pt;}
.y1c6{bottom:603.001333pt;}
.y19d{bottom:606.050667pt;}
.yc9{bottom:606.189333pt;}
.y299{bottom:607.386667pt;}
.y11c{bottom:608.138667pt;}
.y99{bottom:610.442667pt;}
.y23f{bottom:610.826667pt;}
.y3e{bottom:610.828000pt;}
.y21d{bottom:610.909333pt;}
.y258{bottom:611.292000pt;}
.y14{bottom:613.484000pt;}
.yf6{bottom:613.956000pt;}
.y14d{bottom:614.477333pt;}
.y6b{bottom:614.669333pt;}
.y1ee{bottom:617.026667pt;}
.y298{bottom:619.341333pt;}
.y175{bottom:621.566667pt;}
.y11b{bottom:624.078667pt;}
.y1c5{bottom:624.129333pt;}
.y98{bottom:626.382667pt;}
.y13{bottom:626.768000pt;}
.y21c{bottom:626.849333pt;}
.yf5{bottom:629.896000pt;}
.y14c{bottom:630.417333pt;}
.y6a{bottom:630.609333pt;}
.y297{bottom:632.564000pt;}
.y1ed{bottom:632.966667pt;}
.y257{bottom:633.564000pt;}
.yc6{bottom:633.847995pt;}
.yc8{bottom:634.387448pt;}
.y19c{bottom:637.268000pt;}
.yc5{bottom:639.696276pt;}
.y12{bottom:640.052000pt;}
.yc7{bottom:640.235729pt;}
.y97{bottom:642.452000pt;}
.y3d{bottom:642.708000pt;}
.y21b{bottom:642.954667pt;}
.y11a{bottom:644.237333pt;}
.y296{bottom:644.520000pt;}
.yf4{bottom:645.837333pt;}
.y14b{bottom:646.357333pt;}
.y69{bottom:646.550667pt;}
.y1ec{bottom:649.326667pt;}
.y1c4{bottom:651.473333pt;}
.y11{bottom:653.334667pt;}
.y174{bottom:656.228000pt;}
.y295{bottom:657.742667pt;}
.y96{bottom:658.392000pt;}
.y3c{bottom:658.648000pt;}
.y21a{bottom:658.894667pt;}
.yf3{bottom:661.777333pt;}
.y14a{bottom:662.298667pt;}
.y68{bottom:662.490667pt;}
.y256{bottom:663.685333pt;}
.y1eb{bottom:665.266667pt;}
.y10{bottom:666.618667pt;}
.y1c3{bottom:667.413333pt;}
.y119{bottom:669.228000pt;}
.y294{bottom:669.697333pt;}
.yc4{bottom:670.397333pt;}
.y173{bottom:672.169333pt;}
.y95{bottom:674.332000pt;}
.y3b{bottom:674.588000pt;}
.y219{bottom:674.834667pt;}
.yf2{bottom:677.717333pt;}
.y149{bottom:678.238667pt;}
.y67{bottom:678.430667pt;}
.y255{bottom:679.625333pt;}
.yf{bottom:679.901333pt;}
.y1ea{bottom:681.206667pt;}
.y293{bottom:681.653333pt;}
.y18f{bottom:683.002667pt;}
.y1c2{bottom:683.353333pt;}
.y118{bottom:685.168000pt;}
.yc3{bottom:686.337333pt;}
.y172{bottom:688.109333pt;}
.y94{bottom:690.272000pt;}
.y3a{bottom:690.528000pt;}
.y218{bottom:690.774667pt;}
.ye{bottom:693.185333pt;}
.y292{bottom:693.608000pt;}
.y148{bottom:694.178667pt;}
.y66{bottom:694.370667pt;}
.y254{bottom:695.565333pt;}
.yf1{bottom:696.613333pt;}
.y1e9{bottom:700.688000pt;}
.y117{bottom:701.108000pt;}
.yc2{bottom:702.277333pt;}
.y1c1{bottom:702.556000pt;}
.y93{bottom:706.212000pt;}
.y23e{bottom:706.468000pt;}
.yd{bottom:706.469333pt;}
.y217{bottom:706.714667pt;}
.y291{bottom:706.832000pt;}
.y171{bottom:709.129333pt;}
.y147{bottom:710.118667pt;}
.y65{bottom:710.310667pt;}
.y253{bottom:711.505333pt;}
.yf0{bottom:712.553333pt;}
.y1e8{bottom:716.628000pt;}
.yc1{bottom:718.217333pt;}
.y1c0{bottom:718.496000pt;}
.y290{bottom:718.786667pt;}
.y116{bottom:719.725333pt;}
.yc{bottom:719.752000pt;}
.y92{bottom:722.153333pt;}
.y39{bottom:722.409333pt;}
.y216{bottom:722.656000pt;}
.y170{bottom:725.069333pt;}
.y190{bottom:725.278667pt;}
.y146{bottom:726.058667pt;}
.y64{bottom:726.250667pt;}
.y252{bottom:727.445333pt;}
.yef{bottom:728.493333pt;}
.y28f{bottom:730.741333pt;}
.y1e7{bottom:732.569333pt;}
.yb{bottom:733.036000pt;}
.y1bf{bottom:734.436000pt;}
.y115{bottom:735.665333pt;}
.y91{bottom:738.093333pt;}
.y38{bottom:738.349333pt;}
.y215{bottom:738.596000pt;}
.y16f{bottom:741.009333pt;}
.yc0{bottom:741.252000pt;}
.y63{bottom:742.192000pt;}
.y251{bottom:743.385333pt;}
.y145{bottom:743.869333pt;}
.y28e{bottom:743.965333pt;}
.yee{bottom:744.433333pt;}
.ya{bottom:746.320000pt;}
.y1e6{bottom:748.509333pt;}
.y1be{bottom:750.376000pt;}
.y114{bottom:751.606667pt;}
.y90{bottom:754.161333pt;}
.y37{bottom:754.289333pt;}
.y214{bottom:754.536000pt;}
.y28d{bottom:755.920000pt;}
.y16e{bottom:756.949333pt;}
.y62{bottom:759.092000pt;}
.y23d{bottom:759.286667pt;}
.y250{bottom:759.326667pt;}
.y9{bottom:759.602667pt;}
.y144{bottom:759.810667pt;}
.y1e5{bottom:764.449333pt;}
.yed{bottom:765.408000pt;}
.y1bd{bottom:766.316000pt;}
.y191{bottom:766.390667pt;}
.y113{bottom:767.546667pt;}
.y28c{bottom:767.874667pt;}
.y8f{bottom:770.101333pt;}
.y36{bottom:770.229333pt;}
.y213{bottom:770.476000pt;}
.y8{bottom:772.886667pt;}
.y16d{bottom:772.889333pt;}
.ybf{bottom:773.225333pt;}
.y61{bottom:775.032000pt;}
.y24f{bottom:775.266667pt;}
.y143{bottom:775.750667pt;}
.y1e4{bottom:780.389333pt;}
.y28b{bottom:781.098667pt;}
.y1bc{bottom:782.257333pt;}
.y112{bottom:783.486667pt;}
.y8e{bottom:786.041333pt;}
.y35{bottom:786.169333pt;}
.y7{bottom:786.170667pt;}
.y16c{bottom:788.829333pt;}
.ybe{bottom:789.165333pt;}
.y60{bottom:790.972000pt;}
.y24e{bottom:791.206667pt;}
.yec{bottom:791.518667pt;}
.y212{bottom:791.585333pt;}
.y142{bottom:791.690667pt;}
.y19b{bottom:792.100000pt;}
.y28a{bottom:793.053333pt;}
.y1e3{bottom:796.329333pt;}
.y1bb{bottom:798.197333pt;}
.y8d{bottom:801.981333pt;}
.y111{bottom:802.104000pt;}
.y23c{bottom:802.109333pt;}
.y16b{bottom:804.770667pt;}
.y289{bottom:805.009333pt;}
.ybd{bottom:805.105333pt;}
.y5f{bottom:806.913333pt;}
.yeb{bottom:807.458667pt;}
.y192{bottom:807.502667pt;}
.y141{bottom:807.630667pt;}
.y1e2{bottom:812.269333pt;}
.y24d{bottom:813.478667pt;}
.y1ba{bottom:814.137333pt;}
.y288{bottom:816.964000pt;}
.y211{bottom:817.886667pt;}
.y8c{bottom:817.922667pt;}
.y23b{bottom:818.050667pt;}
.y16a{bottom:820.710667pt;}
.ybc{bottom:821.046667pt;}
.y110{bottom:822.262667pt;}
.y5e{bottom:822.853333pt;}
.yea{bottom:823.398667pt;}
.y140{bottom:823.570667pt;}
.y199{bottom:824.224000pt;}
.y1e1{bottom:828.210667pt;}
.y1b9{bottom:830.077333pt;}
.y287{bottom:830.186667pt;}
.y6{bottom:832.474667pt;}
.y210{bottom:833.826667pt;}
.y8b{bottom:833.862667pt;}
.y23a{bottom:833.990667pt;}
.y169{bottom:836.650667pt;}
.y5d{bottom:838.793333pt;}
.y13f{bottom:839.510667pt;}
.y286{bottom:842.142667pt;}
.ye9{bottom:842.294667pt;}
.y24c{bottom:843.600000pt;}
.y1e0{bottom:844.150667pt;}
.y10f{bottom:847.253333pt;}
.y193{bottom:848.614667pt;}
.y5{bottom:848.913333pt;}
.y1b8{bottom:849.280000pt;}
.y20f{bottom:849.766667pt;}
.y8a{bottom:849.802667pt;}
.y239{bottom:849.930667pt;}
.y285{bottom:854.097333pt;}
.y198{bottom:855.057333pt;}
.y13e{bottom:855.452000pt;}
.y168{bottom:857.670667pt;}
.ye8{bottom:858.234667pt;}
.y24b{bottom:859.540000pt;}
.y10e{bottom:863.193333pt;}
.y1df{bottom:863.632000pt;}
.y5c{bottom:864.681333pt;}
.y1b7{bottom:865.220000pt;}
.y4{bottom:865.352000pt;}
.y20e{bottom:865.706667pt;}
.y89{bottom:865.870667pt;}
.y284{bottom:867.320000pt;}
.ybb{bottom:868.028000pt;}
.y19a{bottom:869.446667pt;}
.y13d{bottom:871.392000pt;}
.y167{bottom:873.610667pt;}
.ye7{bottom:874.176000pt;}
.y24a{bottom:875.480000pt;}
.y283{bottom:879.276000pt;}
.yba{bottom:880.514667pt;}
.y20d{bottom:881.648000pt;}
.y88{bottom:881.810667pt;}
.y10d{bottom:881.812000pt;}
.y3{bottom:881.986667pt;}
.y1de{bottom:885.222667pt;}
.y1b6{bottom:886.348000pt;}
.y13c{bottom:889.202667pt;}
.y166{bottom:889.550667pt;}
.y194{bottom:889.726667pt;}
.ye6{bottom:890.116000pt;}
.y282{bottom:891.230667pt;}
.y249{bottom:891.420000pt;}
.yb9{bottom:893.001333pt;}
.y20c{bottom:897.588000pt;}
.y87{bottom:897.750667pt;}
.y5b{bottom:897.752000pt;}
.y281{bottom:904.453333pt;}
.y13b{bottom:905.142667pt;}
.yb8{bottom:905.488000pt;}
.y165{bottom:905.490667pt;}
.ye5{bottom:906.056000pt;}
.y248{bottom:907.360000pt;}
.y20b{bottom:913.528000pt;}
.y5a{bottom:913.692000pt;}
.y280{bottom:916.409333pt;}
.yb7{bottom:917.974667pt;}
.y13a{bottom:921.082667pt;}
.y164{bottom:921.430667pt;}
.ye4{bottom:921.996000pt;}
.y247{bottom:923.301333pt;}
.y2{bottom:923.830667pt;}
.y27f{bottom:928.364000pt;}
.y20a{bottom:929.468000pt;}
.y59{bottom:929.632000pt;}
.yb6{bottom:930.461333pt;}
.y195{bottom:930.838667pt;}
.y197{bottom:933.170667pt;}
.y238{bottom:934.629333pt;}
.y139{bottom:937.022667pt;}
.y163{bottom:937.372000pt;}
.y246{bottom:939.241333pt;}
.y27e{bottom:940.320000pt;}
.ye3{bottom:940.892000pt;}
.y2c0{bottom:941.588000pt;}
.y209{bottom:945.408000pt;}
.y58{bottom:945.572000pt;}
.y138{bottom:952.964000pt;}
.y162{bottom:953.312000pt;}
.yb5{bottom:953.542667pt;}
.y245{bottom:955.181333pt;}
.ye2{bottom:956.832000pt;}
.y1{bottom:961.024000pt;}
.y57{bottom:961.512000pt;}
.yb4{bottom:965.497333pt;}
.y196{bottom:971.950667pt;}
.y86{bottom:977.452000pt;}
.y56{bottom:977.453333pt;}
.ha{height:14.484538pt;}
.he{height:20.081047pt;}
.hd{height:20.256173pt;}
.hf{height:20.402111pt;}
.hc{height:21.698970pt;}
.h7{height:29.244954pt;}
.h9{height:29.414982pt;}
.h14{height:29.452954pt;}
.h15{height:29.458287pt;}
.h8{height:29.499997pt;}
.h12{height:31.848653pt;}
.h5{height:33.187635pt;}
.h4{height:33.426739pt;}
.h6{height:36.290431pt;}
.h3{height:36.556100pt;}
.hb{height:36.874903pt;}
.h13{height:37.512510pt;}
.h10{height:39.850400pt;}
.h2{height:40.211857pt;}
.h11{height:43.981884pt;}
.h1{height:87.734861pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x8{left:65.285333pt;}
.x32{left:70.598667pt;}
.x10{left:73.257333pt;}
.x7{left:78.569333pt;}
.x1{left:80.670667pt;}
.x12{left:82.776000pt;}
.x34{left:89.630667pt;}
.x1f{left:91.981333pt;}
.x21{left:118.676000pt;}
.x11{left:120.514667pt;}
.x14{left:159.079684pt;}
.x13{left:165.632365pt;}
.x30{left:171.142667pt;}
.xc{left:175.393333pt;}
.x2f{left:179.052000pt;}
.x9{left:180.826667pt;}
.x31{left:195.464000pt;}
.x20{left:210.633333pt;}
.xf{left:212.402667pt;}
.x15{left:222.252624pt;}
.x2{left:227.733333pt;}
.x16{left:228.770672pt;}
.x33{left:288.808000pt;}
.x17{left:294.580416pt;}
.x18{left:297.172608pt;}
.x6{left:330.472000pt;}
.x19{left:357.351261pt;}
.x3{left:362.024000pt;}
.x1a{left:367.032652pt;}
.x5{left:369.584000pt;}
.x4{left:400.668000pt;}
.xb{left:415.970667pt;}
.x2d{left:422.612000pt;}
.xa{left:429.253333pt;}
.x1c{left:430.423765pt;}
.x35{left:440.316000pt;}
.x2b{left:441.605333pt;}
.xe{left:442.666667pt;}
.x26{left:453.602667pt;}
.x25{left:460.244000pt;}
.x24{left:466.885333pt;}
.x23{left:475.866667pt;}
.x27{left:485.234667pt;}
.x2c{left:506.860000pt;}
.x28{left:511.801333pt;}
.x1b{left:520.073333pt;}
.xd{left:524.624000pt;}
.x2e{left:535.157333pt;}
.x1e{left:545.298116pt;}
.x22{left:548.368000pt;}
.x36{left:564.234667pt;}
.x29{left:609.178667pt;}
.x1d{left:691.219074pt;}
.x2a{left:706.554667pt;}
}




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