
    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_7df22b13a13c2561fd5dea26.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_b2c8ce2ab0a5c4c7672724a8.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_d7bc1847d8711126c2ab8620.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4ffce16c2ad12c76179e9486.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.925781;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_27d99c030f0ca392efb62729.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_f6411c76a26647db6f33697d.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_83e16b61b7c43907f00850a4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.909000;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_63eb70d7d0b894b92eb72a91.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.430000;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_56831f2bca78f4b26726134f.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.999000;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_332d166ae670db6ee4a012c5.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_79974c13cad01e3a76cff5dc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.921000;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_6a2187b62ff1ac07577cdcb1.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.001000;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_3d67c102f92045f0a81fc8c2.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0d96dfd1b8c8b93163fca470.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.430000;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:ff11;src:url('chunks/assets/font_28f2f51a2bc728c07b712a14.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_b6494ab960deb37c6ec084c2.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_7600ec3ef69ec6c7e48a3fed.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.738000;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:ff14;src:url('chunks/assets/font_16c35ae433b30e1025628669.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.389000;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:ff15;src:url('chunks/assets/font_b00c117310bf396518a42ca2.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.911000;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:ff16;src:url('chunks/assets/font_b2cecaf3dfe6b244b63cfe2f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.866000;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:ff17;src:url('chunks/assets/font_69132e92a8f7ed37042838bc.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_d5e3052dfc4929099865c999.woff2')format("woff");}.ff18{font-family:ff18;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-23.754000px;}
.v4{vertical-align:-9.822000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:11.574000px;}
.v3{vertical-align:23.754000px;}
.v1{vertical-align:26.028000px;}
.lsc{letter-spacing:-0.239040px;}
.ls9{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.131760px;}
.lsa{letter-spacing:-0.119520px;}
.ls8{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.ls1e{letter-spacing:0.000520px;}
.ls1f{letter-spacing:0.001059px;}
.ls1b{letter-spacing:0.002692px;}
.ls26{letter-spacing:0.003791px;}
.lsb{letter-spacing:0.059760px;}
.ls3{letter-spacing:0.144000px;}
.ls4{letter-spacing:0.239040px;}
.ls2{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.918000px;}
.ls5{letter-spacing:1.080000px;}
.ls1{letter-spacing:1.374480px;}
.ls7{letter-spacing:1.673280px;}
.lsf{letter-spacing:2.984915px;}
.ls11{letter-spacing:2.986118px;}
.ls12{letter-spacing:2.988532px;}
.ls13{letter-spacing:2.990915px;}
.ls25{letter-spacing:3.454878px;}
.ls24{letter-spacing:6.371412px;}
.ls16{letter-spacing:9.956338px;}
.ls18{letter-spacing:9.962338px;}
.ls1d{letter-spacing:14.543412px;}
.ls1c{letter-spacing:17.528915px;}
.ls28{letter-spacing:21.858557px;}
.ls27{letter-spacing:24.522305px;}
.ls21{letter-spacing:26.498698px;}
.ls23{letter-spacing:26.500344px;}
.ls20{letter-spacing:26.500890px;}
.ls19{letter-spacing:26.652305px;}
.ls22{letter-spacing:30.249796px;}
.ls15{letter-spacing:32.562305px;}
.ls17{letter-spacing:32.568305px;}
.ls14{letter-spacing:32.723973px;}
.lse{letter-spacing:35.354915px;}
.ls10{letter-spacing:44.492915px;}
.ls1a{letter-spacing:119.549412px;}
.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;}
}
.wsba{word-spacing:-42.637126px;}
.ws5{word-spacing:-20.304000px;}
.ws2{word-spacing:-20.016000px;}
.ws3{word-spacing:-19.944000px;}
.ws4{word-spacing:-19.872000px;}
.ws1{word-spacing:-18.286560px;}
.ws62{word-spacing:-18.183288px;}
.ws6{word-spacing:-16.493760px;}
.wsd3{word-spacing:-3.652367px;}
.wsf7{word-spacing:-3.325094px;}
.wsd9{word-spacing:-3.259639px;}
.wsd7{word-spacing:-2.932366px;}
.ws87{word-spacing:-2.801457px;}
.wsea{word-spacing:-2.605093px;}
.ws10a{word-spacing:-2.539638px;}
.ws74{word-spacing:-2.474184px;}
.ws7d{word-spacing:-2.408729px;}
.ws76{word-spacing:-2.343275px;}
.wsd1{word-spacing:-2.277820px;}
.ws53{word-spacing:-2.212365px;}
.ws60{word-spacing:-2.146911px;}
.ws47{word-spacing:-2.125037px;}
.wsda{word-spacing:-2.081456px;}
.wsfd{word-spacing:-1.885092px;}
.wsa8{word-spacing:-1.754183px;}
.wsaf{word-spacing:-1.688729px;}
.ws11a{word-spacing:-1.557819px;}
.wse3{word-spacing:-1.492365px;}
.ws5f{word-spacing:-1.296001px;}
.wse4{word-spacing:-1.264262px;}
.ws72{word-spacing:-1.165092px;}
.ws10f{word-spacing:-1.099637px;}
.wsa{word-spacing:-1.015920px;}
.wsb1{word-spacing:-0.968728px;}
.ws99{word-spacing:-0.903273px;}
.wsb2{word-spacing:-0.884679px;}
.wsa1{word-spacing:-0.837819px;}
.wsed{word-spacing:-0.772364px;}
.wsa7{word-spacing:-0.576000px;}
.wsca{word-spacing:-0.445091px;}
.wsdb{word-spacing:-0.379637px;}
.ws7{word-spacing:-0.298800px;}
.ws16{word-spacing:-0.286923px;}
.wsc{word-spacing:-0.144000px;}
.ws4d{word-spacing:-0.134496px;}
.ws92{word-spacing:-0.080698px;}
.ws10e{word-spacing:-0.065455px;}
.ws131{word-spacing:-0.059776px;}
.wse{word-spacing:-0.059760px;}
.ws9{word-spacing:-0.054000px;}
.wscc{word-spacing:-0.052364px;}
.wsbd{word-spacing:-0.047821px;}
.wsd5{word-spacing:-0.035866px;}
.ws0{word-spacing:0.000000px;}
.ws14{word-spacing:0.011955px;}
.ws56{word-spacing:0.013091px;}
.ws86{word-spacing:0.078546px;}
.ws3e{word-spacing:0.144000px;}
.wsf{word-spacing:0.179280px;}
.wsb0{word-spacing:0.188294px;}
.ws113{word-spacing:0.209455px;}
.wsb{word-spacing:0.216000px;}
.ws10{word-spacing:0.263520px;}
.ws57{word-spacing:0.340364px;}
.ws3f{word-spacing:0.405819px;}
.ws3d{word-spacing:0.471273px;}
.ws8{word-spacing:0.486000px;}
.ws10b{word-spacing:0.667637px;}
.wsd2{word-spacing:0.733092px;}
.wsd{word-spacing:0.776880px;}
.ws4f{word-spacing:0.833875px;}
.wsf3{word-spacing:0.864001px;}
.ws49{word-spacing:0.887674px;}
.wsb3{word-spacing:0.908589px;}
.wsf0{word-spacing:0.929455px;}
.wsf2{word-spacing:0.994910px;}
.wsab{word-spacing:1.060365px;}
.ws36{word-spacing:1.125819px;}
.ws24{word-spacing:1.256728px;}
.ws2a{word-spacing:1.371859px;}
.ws122{word-spacing:1.386794px;}
.ws9d{word-spacing:1.518547px;}
.wsc9{word-spacing:1.584001px;}
.ws83{word-spacing:1.649456px;}
.ws40{word-spacing:1.714911px;}
.ws133{word-spacing:1.805223px;}
.ws31{word-spacing:1.845820px;}
.ws12d{word-spacing:1.856045px;}
.ws42{word-spacing:1.909843px;}
.wsae{word-spacing:1.911274px;}
.wsdc{word-spacing:2.042184px;}
.ws9e{word-spacing:2.107638px;}
.wse7{word-spacing:2.232634px;}
.ws7f{word-spacing:2.238547px;}
.ws41{word-spacing:2.286432px;}
.ws22{word-spacing:2.304002px;}
.ws3a{word-spacing:2.500366px;}
.wsc7{word-spacing:2.631275px;}
.wsa2{word-spacing:2.696730px;}
.ws10c{word-spacing:2.762184px;}
.ws137{word-spacing:2.824416px;}
.wsec{word-spacing:2.827639px;}
.ws139{word-spacing:2.878214px;}
.ws94{word-spacing:2.893093px;}
.ws26{word-spacing:3.039610px;}
.ws130{word-spacing:3.060511px;}
.ws6f{word-spacing:3.089457px;}
.ws4b{word-spacing:3.093408px;}
.ws2d{word-spacing:3.220366px;}
.ws17{word-spacing:3.299613px;}
.ws7c{word-spacing:3.351276px;}
.ws4c{word-spacing:3.416198px;}
.ws2b{word-spacing:3.416730px;}
.wsf5{word-spacing:3.482185px;}
.wsb7{word-spacing:3.538716px;}
.ws35{word-spacing:3.547639px;}
.ws19{word-spacing:3.613094px;}
.ws105{word-spacing:3.631392px;}
.wsc4{word-spacing:3.678549px;}
.ws29{word-spacing:3.738989px;}
.ws2f{word-spacing:3.744003px;}
.ws9f{word-spacing:3.809458px;}
.ws4e{word-spacing:3.846586px;}
.ws61{word-spacing:3.874912px;}
.ws64{word-spacing:3.940367px;}
.ws5d{word-spacing:3.990355px;}
.ws2c{word-spacing:4.005822px;}
.ws102{word-spacing:4.071276px;}
.ws123{word-spacing:4.136472px;}
.ws80{word-spacing:4.136731px;}
.ws28{word-spacing:4.169376px;}
.ws90{word-spacing:4.202185px;}
.ws54{word-spacing:4.267640px;}
.ws112{word-spacing:4.333095px;}
.wscd{word-spacing:4.382130px;}
.wsd6{word-spacing:4.384570px;}
.wsce{word-spacing:4.398549px;}
.ws117{word-spacing:4.464004px;}
.ws75{word-spacing:4.483200px;}
.ws15{word-spacing:4.495125px;}
.wsc5{word-spacing:4.529458px;}
.ws93{word-spacing:4.545965px;}
.ws118{word-spacing:4.594913px;}
.wse5{word-spacing:4.653562px;}
.ws104{word-spacing:4.660368px;}
.ws95{word-spacing:4.725822px;}
.ws8e{word-spacing:4.791277px;}
.ws116{word-spacing:4.856731px;}
.wsfb{word-spacing:4.922186px;}
.ws78{word-spacing:4.987641px;}
.ws6b{word-spacing:5.053095px;}
.ws34{word-spacing:5.118550px;}
.ws96{word-spacing:5.184004px;}
.ws20{word-spacing:5.249459px;}
.wsef{word-spacing:5.314914px;}
.ws82{word-spacing:5.379825px;}
.ws5b{word-spacing:5.380368px;}
.wsb6{word-spacing:5.427088px;}
.wsb8{word-spacing:5.451535px;}
.wsa6{word-spacing:5.511277px;}
.ws32{word-spacing:5.576732px;}
.wsc8{word-spacing:5.642187px;}
.ws13e{word-spacing:5.750413px;}
.ws67{word-spacing:5.773096px;}
.ws12b{word-spacing:5.783328px;}
.wsff{word-spacing:5.838550px;}
.ws120{word-spacing:5.869964px;}
.ws46{word-spacing:5.890925px;}
.ws48{word-spacing:5.944723px;}
.wsf6{word-spacing:5.969460px;}
.wsf1{word-spacing:6.034914px;}
.wsb9{word-spacing:6.100369px;}
.wsd0{word-spacing:6.165823px;}
.ws111{word-spacing:6.231278px;}
.ws30{word-spacing:6.296733px;}
.ws13b{word-spacing:6.348169px;}
.wsa0{word-spacing:6.362187px;}
.ws81{word-spacing:6.427642px;}
.wsfa{word-spacing:6.493096px;}
.ws115{word-spacing:6.624006px;}
.ws6a{word-spacing:6.754915px;}
.wsfe{word-spacing:6.820369px;}
.ws126{word-spacing:6.885824px;}
.ws13{word-spacing:6.945925px;}
.ws1e{word-spacing:6.951279px;}
.ws70{word-spacing:7.016733px;}
.ws65{word-spacing:7.082188px;}
.ws85{word-spacing:7.147642px;}
.wsa4{word-spacing:7.185027px;}
.ws7b{word-spacing:7.213097px;}
.wse8{word-spacing:7.235885px;}
.wsd4{word-spacing:7.278552px;}
.ws136{word-spacing:7.304578px;}
.ws68{word-spacing:7.344006px;}
.ws100{word-spacing:7.409461px;}
.ws58{word-spacing:7.474915px;}
.ws5e{word-spacing:7.540370px;}
.ws9b{word-spacing:7.605825px;}
.wseb{word-spacing:7.671279px;}
.ws25{word-spacing:7.802188px;}
.wsa3{word-spacing:7.867643px;}
.ws121{word-spacing:7.902334px;}
.ws98{word-spacing:7.933098px;}
.ws27{word-spacing:7.935264px;}
.ws66{word-spacing:7.998552px;}
.ws91{word-spacing:8.064007px;}
.wsac{word-spacing:8.129461px;}
.ws6c{word-spacing:8.194916px;}
.ws69{word-spacing:8.260371px;}
.wsc2{word-spacing:8.291204px;}
.wsc3{word-spacing:8.303223px;}
.ws33{word-spacing:8.325825px;}
.ws88{word-spacing:8.391280px;}
.ws79{word-spacing:8.456734px;}
.ws7a{word-spacing:8.653098px;}
.ws140{word-spacing:8.688442px;}
.ws1c{word-spacing:8.784007px;}
.ws43{word-spacing:8.796038px;}
.wsb5{word-spacing:8.978295px;}
.ws51{word-spacing:8.980371px;}
.ws7e{word-spacing:9.011232px;}
.ws11e{word-spacing:9.045826px;}
.ws2e{word-spacing:9.111280px;}
.ws132{word-spacing:9.217398px;}
.ws77{word-spacing:9.242190px;}
.wscb{word-spacing:9.298651px;}
.ws63{word-spacing:9.307644px;}
.wsc0{word-spacing:9.328209px;}
.ws1d{word-spacing:9.373099px;}
.ws89{word-spacing:9.438553px;}
.wsb4{word-spacing:9.456500px;}
.ws44{word-spacing:9.549216px;}
.ws11c{word-spacing:9.569463px;}
.ws37{word-spacing:9.634917px;}
.ws125{word-spacing:9.765826px;}
.ws8d{word-spacing:9.831281px;}
.ws12f{word-spacing:9.874929px;}
.ws109{word-spacing:9.896736px;}
.wsc6{word-spacing:9.962190px;}
.ws73{word-spacing:10.027645px;}
.ws50{word-spacing:10.087200px;}
.wse9{word-spacing:10.158554px;}
.wsa9{word-spacing:10.224009px;}
.wsee{word-spacing:10.289463px;}
.ws6e{word-spacing:10.354918px;}
.ws45{word-spacing:10.356192px;}
.ws8f{word-spacing:10.485827px;}
.wsf9{word-spacing:10.682191px;}
.ws97{word-spacing:10.747645px;}
.ws12e{word-spacing:10.813100px;}
.wsd8{word-spacing:10.878555px;}
.wsfc{word-spacing:10.944009px;}
.ws9a{word-spacing:11.074918px;}
.ws103{word-spacing:11.140373px;}
.wsf4{word-spacing:11.271282px;}
.ws101{word-spacing:11.467646px;}
.wscf{word-spacing:11.533101px;}
.wsad{word-spacing:11.664010px;}
.ws110{word-spacing:11.729464px;}
.ws21{word-spacing:11.794919px;}
.ws108{word-spacing:11.860374px;}
.wsa5{word-spacing:11.991283px;}
.ws23{word-spacing:12.056737px;}
.ws38{word-spacing:12.187647px;}
.ws114{word-spacing:12.449465px;}
.ws119{word-spacing:12.580374px;}
.wsf8{word-spacing:12.645829px;}
.ws12a{word-spacing:12.711283px;}
.ws52{word-spacing:13.038556px;}
.ws5a{word-spacing:13.169466px;}
.ws1f{word-spacing:13.234920px;}
.ws39{word-spacing:13.496739px;}
.ws59{word-spacing:13.627648px;}
.ws9c{word-spacing:14.151285px;}
.ws1b{word-spacing:14.216739px;}
.ws71{word-spacing:14.347648px;}
.wsaa{word-spacing:14.413103px;}
.ws13a{word-spacing:16.049468px;}
.wsbc{word-spacing:17.464651px;}
.wsbe{word-spacing:17.470651px;}
.wsde{word-spacing:17.685833px;}
.ws4a{word-spacing:17.699674px;}
.ws142{word-spacing:18.614246px;}
.ws138{word-spacing:20.927578px;}
.wsbb{word-spacing:21.106651px;}
.ws124{word-spacing:21.142771px;}
.ws134{word-spacing:21.160562px;}
.ws18{word-spacing:21.339889px;}
.ws84{word-spacing:21.534563px;}
.ws141{word-spacing:21.573158px;}
.wse6{word-spacing:22.971917px;}
.ws12{word-spacing:23.312640px;}
.ws3c{word-spacing:23.367292px;}
.ws5c{word-spacing:23.694565px;}
.ws55{word-spacing:23.956384px;}
.wsdf{word-spacing:24.231293px;}
.ws12c{word-spacing:24.316877px;}
.ws106{word-spacing:25.003657px;}
.ws3b{word-spacing:25.134566px;}
.ws13d{word-spacing:25.643732px;}
.ws13c{word-spacing:26.301264px;}
.ws10d{word-spacing:26.378204px;}
.ws135{word-spacing:27.437000px;}
.ws6d{word-spacing:27.556387px;}
.ws8c{word-spacing:27.621841px;}
.ws8a{word-spacing:28.669115px;}
.wsc1{word-spacing:30.430651px;}
.ws11{word-spacing:31.091012px;}
.ws11d{word-spacing:31.221844px;}
.ws8b{word-spacing:31.752291px;}
.ws11b{word-spacing:31.876390px;}
.ws128{word-spacing:53.293135px;}
.ws107{word-spacing:53.554954px;}
.ws127{word-spacing:54.080018px;}
.wse1{word-spacing:58.791322px;}
.ws1a{word-spacing:69.937725px;}
.ws13f{word-spacing:75.154972px;}
.wse0{word-spacing:94.202260px;}
.wse2{word-spacing:126.013196px;}
.ws129{word-spacing:126.078651px;}
.wsdd{word-spacing:140.609572px;}
.ws11f{word-spacing:148.803264px;}
.wsbf{word-spacing:323.284651px;}
._72{margin-left:-42.049270px;}
._73{margin-left:-35.585594px;}
._1d{margin-left:-34.067155px;}
._5b{margin-left:-32.999803px;}
._5a{margin-left:-31.138706px;}
._d{margin-left:-5.572360px;}
._7{margin-left:-4.510476px;}
._3{margin-left:-2.685602px;}
._1{margin-left:-1.302768px;}
._0{width:1.274400px;}
._2{width:2.685602px;}
._28{width:4.243103px;}
._58{width:6.390707px;}
._19{width:14.967562px;}
._59{width:16.032043px;}
._5{width:17.435363px;}
._1a{width:18.852889px;}
._13{width:20.542493px;}
._f{width:21.667436px;}
._21{width:22.845619px;}
._12{width:23.994086px;}
._11{width:25.292537px;}
._10{width:27.241910px;}
._8{width:29.061842px;}
._4{width:30.346892px;}
._c{width:31.669342px;}
._23{width:32.934348px;}
._b{width:34.036392px;}
._14{width:35.320387px;}
._26{width:36.591085px;}
._27{width:37.615964px;}
._9{width:38.642654px;}
._57{width:39.665488px;}
._1c{width:40.778216px;}
._17{width:41.996275px;}
._15{width:43.233291px;}
._6{width:44.799314px;}
._18{width:46.871389px;}
._1f{width:48.468559px;}
._24{width:49.614587px;}
._4b{width:51.245060px;}
._e{width:53.476408px;}
._16{width:55.444499px;}
._a{width:57.534593px;}
._1b{width:58.712776px;}
._25{width:60.482014px;}
._1e{width:62.183834px;}
._63{width:65.085948px;}
._37{width:66.960056px;}
._5c{width:71.061488px;}
._2e{width:72.175275px;}
._75{width:73.341337px;}
._4d{width:79.592794px;}
._20{width:80.697600px;}
._34{width:82.407341px;}
._50{width:85.352798px;}
._3f{width:93.338260px;}
._22{width:96.836850px;}
._4c{width:102.443572px;}
._4e{width:104.400087px;}
._33{width:106.952816px;}
._3d{width:112.385548px;}
._55{width:115.478201px;}
._43{width:117.883735px;}
._2f{width:122.465557px;}
._40{width:133.331020px;}
._53{width:134.573272px;}
._36{width:137.847388px;}
._39{width:152.443763px;}
._51{width:161.198476px;}
._6e{width:162.395550px;}
._32{width:166.909230px;}
._4a{width:168.938323px;}
._35{width:170.443778px;}
._70{width:172.407416px;}
._30{width:174.109236px;}
._64{width:177.840148px;}
._46{width:181.505606px;}
._2d{width:183.338335px;}
._56{width:184.713668px;}
._71{width:187.175225px;}
._42{width:188.771066px;}
._3a{width:193.221979px;}
._29{width:198.785620px;}
._6f{width:204.218352px;}
._3b{width:207.949264px;}
._31{width:209.716538px;}
._45{width:213.316541px;}
._52{width:216.242941px;}
._41{width:220.582002px;}
._62{width:222.516274px;}
._48{width:225.949279px;}
._54{width:233.867900px;}
._2a{width:239.563836px;}
._2c{width:254.225666px;}
._3e{width:259.247785px;}
._3c{width:260.548679px;}
._38{width:266.910657px;}
._49{width:271.505681px;}
._5e{width:283.156600px;}
._6b{width:284.885785px;}
._2b{width:286.036602px;}
._4f{width:287.451209px;}
._6a{width:292.548657px;}
._67{width:306.521785px;}
._66{width:307.822679px;}
._65{width:314.184657px;}
._47{width:321.779271px;}
._6d{width:347.411271px;}
._69{width:369.053271px;}
._44{width:387.409542px;}
._6c{width:413.047542px;}
._68{width:434.683542px;}
._74{width:451.045542px;}
._61{width:494.628718px;}
._5d{width:800.275518px;}
._5f{width:812.999892px;}
._60{width:819.362080px;}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:35.865600px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:47.820600px;}
.fs10{font-size:53.798400px;}
.fs5{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fsc{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsd{font-size:65.454600px;}
.fs7{font-size:66.240000px;}
.fsa{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fse{font-size:86.077200px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:103.292400px;}
.fs8{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y16f{bottom:5.470500px;}
.y16e{bottom:25.795500px;}
.y38{bottom:27.180000px;}
.y16d{bottom:46.119000px;}
.y33{bottom:48.240000px;}
.y26{bottom:54.540000px;}
.y25{bottom:63.540000px;}
.y16c{bottom:66.442500px;}
.y5{bottom:66.525004px;}
.y23{bottom:78.480000px;}
.y34{bottom:82.980000px;}
.y22{bottom:93.420000px;}
.y36{bottom:96.834420px;}
.y4{bottom:97.125005px;}
.y59{bottom:108.222000px;}
.y35{bottom:114.120000px;}
.y172{bottom:122.164500px;}
.ybe{bottom:122.980500px;}
.y1f{bottom:139.264499px;}
.ybd{bottom:140.913000px;}
.y171{bottom:142.488000px;}
.y58{bottom:153.054000px;}
.y1c7{bottom:155.959500px;}
.y137{bottom:156.448500px;}
.y8c{bottom:157.477500px;}
.ybc{bottom:158.713500px;}
.yf7{bottom:160.192500px;}
.y170{bottom:162.811500px;}
.ya0{bottom:164.616000px;}
.ye5{bottom:165.439500px;}
.y16b{bottom:168.285000px;}
.y57{bottom:169.492500px;}
.y1c6{bottom:173.892000px;}
.ybb{bottom:175.152000px;}
.y112{bottom:177.231000px;}
.y81{bottom:179.433000px;}
.y133{bottom:179.953500px;}
.yf6{bottom:182.344500px;}
.y136{bottom:183.348000px;}
.y8b{bottom:184.377000px;}
.y9f{bottom:186.768000px;}
.ye4{bottom:187.591500px;}
.y1de{bottom:190.783500px;}
.y56{bottom:191.644500px;}
.y1c5{bottom:191.824500px;}
.y16a{bottom:195.184500px;}
.y80{bottom:195.871500px;}
.y16{bottom:196.933500px;}
.yba{bottom:197.302500px;}
.y111{bottom:199.383000px;}
.y55{bottom:202.369500px;}
.yf5{bottom:203.082000px;}
.y132{bottom:206.851500px;}
.y1dd{bottom:208.716000px;}
.y1e{bottom:209.518500px;}
.y15{bottom:209.533503px;}
.y1c4{bottom:209.758500px;}
.y9e{bottom:210.687000px;}
.y8a{bottom:211.276500px;}
.ye3{bottom:211.510500px;}
.y7f{bottom:212.310000px;}
.yb9{bottom:213.741000px;}
.y54{bottom:218.806500px;}
.y150{bottom:219.481500px;}
.y1d{bottom:222.118502px;}
.y14{bottom:222.133505px;}
.yc5{bottom:223.767000px;}
.y110{bottom:224.211000px;}
.y135{bottom:226.452000px;}
.y1dc{bottom:226.648500px;}
.y7e{bottom:228.748500px;}
.yf4{bottom:229.981500px;}
.y131{bottom:233.751000px;}
.y169{bottom:234.631500px;}
.y1c{bottom:234.718504px;}
.y13{bottom:234.733496px;}
.y9d{bottom:237.586500px;}
.yb8{bottom:237.660000px;}
.y89{bottom:238.176000px;}
.ye2{bottom:238.410000px;}
.y53{bottom:240.958500px;}
.yc4{bottom:241.699500px;}
.y1db{bottom:244.581000px;}
.y7d{bottom:245.187000px;}
.y14f{bottom:246.379500px;}
.y10f{bottom:251.110500px;}
.yf3{bottom:256.881000px;}
.y52{bottom:257.397000px;}
.yc3{bottom:259.633500px;}
.y1b{bottom:259.918497px;}
.y12{bottom:259.933500px;}
.y130{bottom:260.650500px;}
.y168{bottom:261.531000px;}
.y9c{bottom:264.486000px;}
.yb7{bottom:264.559500px;}
.y88{bottom:265.074000px;}
.ye1{bottom:265.308000px;}
.y7c{bottom:267.339000px;}
.y1a{bottom:272.518500px;}
.y11{bottom:272.533503px;}
.y14e{bottom:273.279000px;}
.y51{bottom:273.835500px;}
.yc2{bottom:277.566000px;}
.y10e{bottom:278.010000px;}
.y7b{bottom:278.064000px;}
.y19{bottom:285.118502px;}
.y10{bottom:285.133499px;}
.y12f{bottom:287.550000px;}
.y9b{bottom:291.384000px;}
.yb6{bottom:291.459000px;}
.y87{bottom:291.973500px;}
.ye0{bottom:292.207500px;}
.y7a{bottom:294.502500px;}
.yc1{bottom:295.498500px;}
.y50{bottom:297.354000px;}
.yc0{bottom:299.701500px;}
.y167{bottom:300.979500px;}
.yf2{bottom:304.327500px;}
.y10d{bottom:304.908000px;}
.y18{bottom:310.318501px;}
.yf{bottom:310.333501px;}
.y79{bottom:310.939500px;}
.y14d{bottom:312.807000px;}
.y12e{bottom:314.448000px;}
.y19e{bottom:315.358500px;}
.y9a{bottom:318.283500px;}
.yb5{bottom:318.358500px;}
.y86{bottom:318.873000px;}
.ydf{bottom:319.107000px;}
.yf1{bottom:320.766000px;}
.ybf{bottom:321.853500px;}
.y17{bottom:322.918500px;}
.ye{bottom:322.933500px;}
.y4f{bottom:324.253500px;}
.y78{bottom:327.378000px;}
.y166{bottom:327.879000px;}
.y10c{bottom:331.807500px;}
.yf0{bottom:337.204500px;}
.y14c{bottom:339.706500px;}
.y12d{bottom:341.347500px;}
.y19d{bottom:342.258000px;}
.y77{bottom:343.816500px;}
.y99{bottom:345.183000px;}
.yb4{bottom:345.256500px;}
.y85{bottom:345.772500px;}
.yde{bottom:346.006500px;}
.yd{bottom:348.133500px;}
.y1da{bottom:348.762000px;}
.y4e{bottom:351.151500px;}
.yef{bottom:353.643000px;}
.y10b{bottom:358.707000px;}
.y76{bottom:360.255000px;}
.y165{bottom:367.326000px;}
.y12c{bottom:368.247000px;}
.y1c2{bottom:368.820000px;}
.y1d9{bottom:369.087000px;}
.y19c{bottom:369.157500px;}
.y98{bottom:372.082500px;}
.yb3{bottom:372.156000px;}
.y84{bottom:372.670500px;}
.ydd{bottom:372.904500px;}
.y75{bottom:376.693500px;}
.y17f{bottom:377.865000px;}
.y4d{bottom:378.051000px;}
.y14b{bottom:379.234500px;}
.y1c1{bottom:385.258500px;}
.y10a{bottom:385.606500px;}
.yee{bottom:386.644500px;}
.yc{bottom:386.785499px;}
.y74{bottom:393.132000px;}
.y164{bottom:394.225500px;}
.y12b{bottom:395.146500px;}
.y17e{bottom:395.797500px;}
.y19b{bottom:396.055500px;}
.y97{bottom:398.980500px;}
.yb2{bottom:399.055500px;}
.y83{bottom:399.570000px;}
.ydc{bottom:399.804000px;}
.y1c0{bottom:401.697000px;}
.y4c{bottom:404.950500px;}
.y1d8{bottom:405.618000px;}
.y14a{bottom:406.134000px;}
.yed{bottom:406.969500px;}
.yb{bottom:408.044999px;}
.y73{bottom:409.570500px;}
.y109{bottom:412.504500px;}
.y17d{bottom:413.730000px;}
.y1bf{bottom:418.135500px;}
.y12a{bottom:422.044500px;}
.y19a{bottom:422.955000px;}
.y96{bottom:425.880000px;}
.y1d7{bottom:425.941500px;}
.yb1{bottom:425.955000px;}
.y82{bottom:426.469500px;}
.ydb{bottom:426.703500px;}
.yec{bottom:427.293000px;}
.y37{bottom:430.200000px;}
.y17c{bottom:431.662500px;}
.y72{bottom:431.722500px;}
.y4b{bottom:431.850000px;}
.y149{bottom:433.033500px;}
.y163{bottom:433.674000px;}
.y108{bottom:439.404000px;}
.y1d6{bottom:446.266500px;}
.yeb{bottom:448.215000px;}
.y129{bottom:448.944000px;}
.y17b{bottom:449.595000px;}
.y1be{bottom:451.138500px;}
.y95{bottom:452.779500px;}
.yb0{bottom:452.853000px;}
.y71{bottom:453.369000px;}
.yda{bottom:453.603000px;}
.y4a{bottom:458.748000px;}
.y162{bottom:460.573500px;}
.y107{bottom:466.303500px;}
.y1d5{bottom:466.590000px;}
.yea{bottom:468.538500px;}
.y199{bottom:470.403000px;}
.y1bd{bottom:471.462000px;}
.y148{bottom:472.561500px;}
.y128{bottom:475.843500px;}
.y94{bottom:479.679000px;}
.yaf{bottom:479.752500px;}
.y70{bottom:480.267000px;}
.yd9{bottom:480.501000px;}
.y49{bottom:485.647500px;}
.y198{bottom:486.840000px;}
.y1d4{bottom:486.913500px;}
.y161{bottom:487.471500px;}
.ye9{bottom:488.862000px;}
.y1bc{bottom:491.785500px;}
.y106{bottom:493.203000px;}
.y147{bottom:499.461000px;}
.y127{bottom:502.743000px;}
.y197{bottom:503.278500px;}
.y93{bottom:506.577000px;}
.yae{bottom:506.652000px;}
.y6f{bottom:507.166500px;}
.y1d3{bottom:507.237000px;}
.yd8{bottom:507.400500px;}
.ye8{bottom:509.185500px;}
.y48{bottom:512.547000px;}
.y1bb{bottom:512.707500px;}
.y196{bottom:519.717000px;}
.y105{bottom:520.101000px;}
.y160{bottom:526.920000px;}
.y1d2{bottom:527.560500px;}
.y126{bottom:529.641000px;}
.ye7{bottom:530.107500px;}
.y1ba{bottom:533.031000px;}
.y92{bottom:533.476500px;}
.yad{bottom:533.551500px;}
.y6e{bottom:534.066000px;}
.yd7{bottom:534.300000px;}
.ya{bottom:538.864499px;}
.y146{bottom:538.989000px;}
.y47{bottom:539.446500px;}
.y104{bottom:547.000500px;}
.ye6{bottom:550.431000px;}
.y195{bottom:552.720000px;}
.y1b9{bottom:553.354500px;}
.y15f{bottom:553.819500px;}
.y1d1{bottom:556.101000px;}
.y125{bottom:556.540500px;}
.y9{bottom:556.864499px;}
.y91{bottom:560.376000px;}
.yac{bottom:560.449500px;}
.y6d{bottom:560.965500px;}
.yd6{bottom:561.199500px;}
.y145{bottom:565.888500px;}
.y46{bottom:566.344500px;}
.y194{bottom:573.043500px;}
.y1b8{bottom:573.678000px;}
.y103{bottom:573.900000px;}
.y1d0{bottom:584.640000px;}
.y90{bottom:587.275500px;}
.yab{bottom:587.349000px;}
.y6c{bottom:587.863500px;}
.yd5{bottom:588.097500px;}
.y15e{bottom:593.268000px;}
.y193{bottom:593.367000px;}
.y1b7{bottom:594.600000px;}
.y45{bottom:599.182500px;}
.y102{bottom:600.799500px;}
.y124{bottom:604.299000px;}
.y1cf{bottom:604.963500px;}
.y144{bottom:605.416500px;}
.y8f{bottom:614.173500px;}
.yaa{bottom:614.248500px;}
.y192{bottom:614.289000px;}
.y6b{bottom:614.763000px;}
.y1b6{bottom:614.923500px;}
.yd4{bottom:614.997000px;}
.y15d{bottom:620.166000px;}
.y1ce{bottom:625.287000px;}
.y101{bottom:627.697500px;}
.y143{bottom:632.314500px;}
.y32{bottom:633.420000px;}
.y191{bottom:634.612500px;}
.y44{bottom:636.348000px;}
.y123{bottom:640.830000px;}
.y8e{bottom:641.073000px;}
.ya9{bottom:641.148000px;}
.y6a{bottom:641.662500px;}
.yd3{bottom:641.896500px;}
.y8{bottom:645.510000px;}
.y1cd{bottom:645.612000px;}
.y1b5{bottom:652.357500px;}
.y31{bottom:653.762880px;}
.y100{bottom:654.597000px;}
.y190{bottom:654.936000px;}
.y15c{bottom:659.614500px;}
.y122{bottom:661.155000px;}
.y1cc{bottom:665.935500px;}
.y7{bottom:666.771000px;}
.ya8{bottom:668.046000px;}
.y69{bottom:668.562000px;}
.yd2{bottom:668.796000px;}
.y142{bottom:671.844000px;}
.y30{bottom:672.840000px;}
.y18f{bottom:675.259500px;}
.y8d{bottom:678.540000px;}
.y1b4{bottom:679.255500px;}
.y121{bottom:681.478500px;}
.yff{bottom:681.496500px;}
.y1cb{bottom:686.259000px;}
.y15b{bottom:686.514000px;}
.y43{bottom:687.717000px;}
.y2f{bottom:692.100000px;}
.ya7{bottom:694.945500px;}
.y68{bottom:695.460000px;}
.yd1{bottom:695.694000px;}
.y18e{bottom:696.181500px;}
.y141{bottom:698.742000px;}
.y120{bottom:701.802000px;}
.y1b3{bottom:706.155000px;}
.y1ca{bottom:706.582500px;}
.yfe{bottom:708.396000px;}
.y2e{bottom:712.800000px;}
.y42{bottom:714.616500px;}
.y18d{bottom:716.505000px;}
.ya6{bottom:721.845000px;}
.y11f{bottom:722.125500px;}
.y67{bottom:722.359500px;}
.yd0{bottom:722.593500px;}
.y140{bottom:725.641500px;}
.y15a{bottom:725.962500px;}
.y6{bottom:726.298500px;}
.y1b2{bottom:733.054500px;}
.y2d{bottom:733.500000px;}
.y1c9{bottom:735.123000px;}
.yfd{bottom:735.294000px;}
.y11e{bottom:742.449000px;}
.y66{bottom:749.259000px;}
.ycf{bottom:749.493000px;}
.y134{bottom:751.498500px;}
.y3{bottom:752.599495px;}
.y159{bottom:752.860500px;}
.y2c{bottom:754.200000px;}
.y41{bottom:754.363500px;}
.y1b1{bottom:759.954000px;}
.yfc{bottom:762.193500px;}
.y11d{bottom:762.772500px;}
.ya5{bottom:764.949000px;}
.y13f{bottom:765.169500px;}
.y1c8{bottom:767.469000px;}
.y18c{bottom:771.304500px;}
.y40{bottom:772.296000px;}
.y2b{bottom:774.545040px;}
.y65{bottom:776.158500px;}
.yce{bottom:776.392500px;}
.y1b0{bottom:786.852000px;}
.y18b{bottom:787.743000px;}
.yfb{bottom:789.093000px;}
.y3f{bottom:790.228500px;}
.y11c{bottom:791.313000px;}
.y13e{bottom:792.069000px;}
.y158{bottom:792.309000px;}
.y2a{bottom:793.440000px;}
.y64{bottom:803.056500px;}
.ycd{bottom:803.290500px;}
.y18a{bottom:804.181500px;}
.y3e{bottom:808.161000px;}
.y29{bottom:812.700000px;}
.y1af{bottom:813.751500px;}
.yfa{bottom:815.992500px;}
.ya4{bottom:816.507000px;}
.y157{bottom:819.208500px;}
.y11b{bottom:819.852000px;}
.y189{bottom:820.620000px;}
.y3d{bottom:826.093500px;}
.y1a8{bottom:827.559000px;}
.y63{bottom:829.956000px;}
.ycc{bottom:830.190000px;}
.y13d{bottom:831.597000px;}
.y28{bottom:833.400000px;}
.y11a{bottom:840.175500px;}
.y1ae{bottom:840.651000px;}
.yf9{bottom:842.890500px;}
.ya3{bottom:843.406500px;}
.y1a7{bottom:843.997500px;}
.y156{bottom:846.108000px;}
.y3c{bottom:852.163500px;}
.y188{bottom:853.623000px;}
.y62{bottom:856.855500px;}
.ycb{bottom:857.089500px;}
.y13c{bottom:858.496500px;}
.y1a6{bottom:860.436000px;}
.y119{bottom:860.500500px;}
.y1ad{bottom:867.550500px;}
.y187{bottom:873.946500px;}
.y1a5{bottom:876.874500px;}
.y2{bottom:879.369000px;}
.y118{bottom:880.824000px;}
.y61{bottom:883.755000px;}
.yca{bottom:883.989000px;}
.y13b{bottom:885.396000px;}
.y155{bottom:885.555000px;}
.yf8{bottom:885.994500px;}
.y21{bottom:889.380000px;}
.y186{bottom:894.270000px;}
.y1ac{bottom:894.448500px;}
.y17a{bottom:898.393500px;}
.y117{bottom:901.147500px;}
.y1a4{bottom:909.877500px;}
.y60{bottom:910.653000px;}
.y13a{bottom:912.294000px;}
.y154{bottom:912.454500px;}
.y185{bottom:915.192000px;}
.y1ab{bottom:921.348000px;}
.y116{bottom:921.471000px;}
.yc9{bottom:927.325500px;}
.y3b{bottom:928.101000px;}
.y1a3{bottom:930.201000px;}
.y184{bottom:935.515500px;}
.y5f{bottom:937.552500px;}
.y115{bottom:941.794500px;}
.y27{bottom:943.920000px;}
.y1aa{bottom:948.247500px;}
.y1a2{bottom:950.524500px;}
.ya2{bottom:951.003000px;}
.y179{bottom:951.121500px;}
.y139{bottom:951.823500px;}
.y153{bottom:951.903000px;}
.y183{bottom:955.839000px;}
.yc8{bottom:958.708500px;}
.y5e{bottom:964.452000px;}
.y1{bottom:966.726000px;}
.y24{bottom:967.860000px;}
.y114{bottom:970.335000px;}
.y178{bottom:971.446500px;}
.y3a{bottom:973.567500px;}
.y1a9{bottom:975.147000px;}
.y182{bottom:976.162500px;}
.ya1{bottom:977.901000px;}
.y138{bottom:978.721500px;}
.y152{bottom:978.802500px;}
.y5d{bottom:991.351500px;}
.y177{bottom:991.770000px;}
.y181{bottom:997.084500px;}
.yc7{bottom:1002.045000px;}
.y113{bottom:1002.681000px;}
.y151{bottom:1005.700500px;}
.y39{bottom:1006.444500px;}
.y1a1{bottom:1012.093500px;}
.y176{bottom:1012.690500px;}
.y180{bottom:1017.408000px;}
.y5c{bottom:1018.249500px;}
.yc6{bottom:1028.944500px;}
.y1a0{bottom:1032.417000px;}
.y175{bottom:1033.015500px;}
.y1c3{bottom:1034.922000px;}
.y5b{bottom:1045.149000px;}
.y174{bottom:1053.339000px;}
.y5a{bottom:1072.048500px;}
.y19f{bottom:1073.662500px;}
.y173{bottom:1074.261000px;}
.y20{bottom:1172.880000px;}
.h1a{height:17.494800px;}
.h1b{height:24.245146px;}
.h7{height:32.130000px;}
.h18{height:32.326726px;}
.hb{height:39.313477px;}
.h1c{height:40.348800px;}
.hc{height:43.506914px;}
.h15{height:44.831700px;}
.h6{height:45.900000px;}
.hf{height:48.010601px;}
.h3{height:48.195000px;}
.hd{height:48.224531px;}
.h16{height:49.090950px;}
.h14{height:50.498765px;}
.h9{height:52.417969px;}
.h1d{height:53.798400px;}
.h2{height:55.080000px;}
.h1e{height:56.074726px;}
.h19{height:56.080726px;}
.h10{height:58.138500px;}
.h1f{height:60.664950px;}
.h17{height:64.557900px;}
.h13{height:72.511265px;}
.h5{height:78.030000px;}
.h11{height:95.924883px;}
.he{height:97.020000px;}
.ha{height:105.480000px;}
.h4{height:119.055004px;}
.h12{height:1188.000000px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:215.820000px;}
.w4{width:236.880000px;}
.w6{width:634.500000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.w7{width:918.000000px;}
.x0{left:0.000000px;}
.xf{left:10.800000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x11{left:137.700000px;}
.x12{left:142.020000px;}
.x21{left:146.499000px;}
.x25{left:153.834000px;}
.x1d{left:155.191500px;}
.x19{left:160.672500px;}
.x24{left:162.016500px;}
.x27{left:164.116500px;}
.x18{left:167.421000px;}
.x22{left:171.057000px;}
.x28{left:178.120500px;}
.x23{left:181.800000px;}
.x17{left:182.925000px;}
.x4{left:203.484001px;}
.x1b{left:243.015000px;}
.x20{left:268.420500px;}
.x2b{left:274.828500px;}
.x13{left:280.530000px;}
.x1f{left:283.897500px;}
.x2a{left:290.305500px;}
.x29{left:295.716000px;}
.x9{left:301.500000px;}
.x1c{left:321.907500px;}
.x14{left:333.232500px;}
.xa{left:345.060000px;}
.xb{left:385.920000px;}
.x15{left:395.265000px;}
.x26{left:399.640500px;}
.xd{left:414.000000px;}
.x16{left:428.035500px;}
.xc{left:432.000000px;}
.x1e{left:452.731500px;}
.x3{left:454.959000px;}
.x1a{left:456.822000px;}
.x5{left:473.040000px;}
.x6{left:636.840000px;}
.xe{left:640.620000px;}
.x10{left:651.420000px;}
.x8{left:742.500000px;}
.x7{left:764.100000px;}
@media print{
.v2{vertical-align:-21.114667pt;}
.v4{vertical-align:-8.730667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:10.288000pt;}
.v3{vertical-align:21.114667pt;}
.v1{vertical-align:23.136000pt;}
.lsc{letter-spacing:-0.212480pt;}
.ls9{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.117120pt;}
.lsa{letter-spacing:-0.106240pt;}
.ls8{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1e{letter-spacing:0.000462pt;}
.ls1f{letter-spacing:0.000942pt;}
.ls1b{letter-spacing:0.002393pt;}
.ls26{letter-spacing:0.003370pt;}
.lsb{letter-spacing:0.053120pt;}
.ls3{letter-spacing:0.128000pt;}
.ls4{letter-spacing:0.212480pt;}
.ls2{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.816000pt;}
.ls5{letter-spacing:0.960000pt;}
.ls1{letter-spacing:1.221760pt;}
.ls7{letter-spacing:1.487360pt;}
.lsf{letter-spacing:2.653258pt;}
.ls11{letter-spacing:2.654327pt;}
.ls12{letter-spacing:2.656473pt;}
.ls13{letter-spacing:2.658591pt;}
.ls25{letter-spacing:3.071003pt;}
.ls24{letter-spacing:5.663477pt;}
.ls16{letter-spacing:8.850079pt;}
.ls18{letter-spacing:8.855412pt;}
.ls1d{letter-spacing:12.927477pt;}
.ls1c{letter-spacing:15.581258pt;}
.ls28{letter-spacing:19.429828pt;}
.ls27{letter-spacing:21.797605pt;}
.ls21{letter-spacing:23.554399pt;}
.ls23{letter-spacing:23.555861pt;}
.ls20{letter-spacing:23.556347pt;}
.ls19{letter-spacing:23.690938pt;}
.ls22{letter-spacing:26.888707pt;}
.ls15{letter-spacing:28.944271pt;}
.ls17{letter-spacing:28.949605pt;}
.ls14{letter-spacing:29.087976pt;}
.lse{letter-spacing:31.426591pt;}
.ls10{letter-spacing:39.549258pt;}
.ls1a{letter-spacing:106.266144pt;}
.wsba{word-spacing:-37.899668pt;}
.ws5{word-spacing:-18.048000pt;}
.ws2{word-spacing:-17.792000pt;}
.ws3{word-spacing:-17.728000pt;}
.ws4{word-spacing:-17.664000pt;}
.ws1{word-spacing:-16.254720pt;}
.ws62{word-spacing:-16.162923pt;}
.ws6{word-spacing:-14.661120pt;}
.wsd3{word-spacing:-3.246548pt;}
.wsf7{word-spacing:-2.955639pt;}
.wsd9{word-spacing:-2.897457pt;}
.wsd7{word-spacing:-2.606548pt;}
.ws87{word-spacing:-2.490184pt;}
.wsea{word-spacing:-2.315638pt;}
.ws10a{word-spacing:-2.257456pt;}
.ws74{word-spacing:-2.199275pt;}
.ws7d{word-spacing:-2.141093pt;}
.ws76{word-spacing:-2.082911pt;}
.wsd1{word-spacing:-2.024729pt;}
.ws53{word-spacing:-1.966547pt;}
.ws60{word-spacing:-1.908365pt;}
.ws47{word-spacing:-1.888922pt;}
.wsda{word-spacing:-1.850183pt;}
.wsfd{word-spacing:-1.675638pt;}
.wsa8{word-spacing:-1.559274pt;}
.wsaf{word-spacing:-1.501092pt;}
.ws11a{word-spacing:-1.384728pt;}
.wse3{word-spacing:-1.326547pt;}
.ws5f{word-spacing:-1.152001pt;}
.wse4{word-spacing:-1.123789pt;}
.ws72{word-spacing:-1.035637pt;}
.ws10f{word-spacing:-0.977455pt;}
.wsa{word-spacing:-0.903040pt;}
.wsb1{word-spacing:-0.861092pt;}
.ws99{word-spacing:-0.802910pt;}
.wsb2{word-spacing:-0.786381pt;}
.wsa1{word-spacing:-0.744728pt;}
.wsed{word-spacing:-0.686546pt;}
.wsa7{word-spacing:-0.512000pt;}
.wsca{word-spacing:-0.395637pt;}
.wsdb{word-spacing:-0.337455pt;}
.ws7{word-spacing:-0.265600pt;}
.ws16{word-spacing:-0.255043pt;}
.wsc{word-spacing:-0.128000pt;}
.ws4d{word-spacing:-0.119552pt;}
.ws92{word-spacing:-0.071731pt;}
.ws10e{word-spacing:-0.058182pt;}
.ws131{word-spacing:-0.053134pt;}
.wse{word-spacing:-0.053120pt;}
.ws9{word-spacing:-0.048000pt;}
.wscc{word-spacing:-0.046545pt;}
.wsbd{word-spacing:-0.042507pt;}
.wsd5{word-spacing:-0.031881pt;}
.ws0{word-spacing:0.000000pt;}
.ws14{word-spacing:0.010627pt;}
.ws56{word-spacing:0.011636pt;}
.ws86{word-spacing:0.069818pt;}
.ws3e{word-spacing:0.128000pt;}
.wsf{word-spacing:0.159360pt;}
.wsb0{word-spacing:0.167373pt;}
.ws113{word-spacing:0.186182pt;}
.wsb{word-spacing:0.192000pt;}
.ws10{word-spacing:0.234240pt;}
.ws57{word-spacing:0.302546pt;}
.ws3f{word-spacing:0.360728pt;}
.ws3d{word-spacing:0.418909pt;}
.ws8{word-spacing:0.432000pt;}
.ws10b{word-spacing:0.593455pt;}
.wsd2{word-spacing:0.651637pt;}
.wsd{word-spacing:0.690560pt;}
.ws4f{word-spacing:0.741222pt;}
.wsf3{word-spacing:0.768001pt;}
.ws49{word-spacing:0.789043pt;}
.wsb3{word-spacing:0.807635pt;}
.wsf0{word-spacing:0.826183pt;}
.wsf2{word-spacing:0.884364pt;}
.wsab{word-spacing:0.942546pt;}
.ws36{word-spacing:1.000728pt;}
.ws24{word-spacing:1.117092pt;}
.ws2a{word-spacing:1.219430pt;}
.ws122{word-spacing:1.232706pt;}
.ws9d{word-spacing:1.349819pt;}
.wsc9{word-spacing:1.408001pt;}
.ws83{word-spacing:1.466183pt;}
.ws40{word-spacing:1.524365pt;}
.ws133{word-spacing:1.604643pt;}
.ws31{word-spacing:1.640729pt;}
.ws12d{word-spacing:1.649818pt;}
.ws42{word-spacing:1.697638pt;}
.wsae{word-spacing:1.698911pt;}
.wsdc{word-spacing:1.815274pt;}
.ws9e{word-spacing:1.873456pt;}
.wse7{word-spacing:1.984563pt;}
.ws7f{word-spacing:1.989820pt;}
.ws41{word-spacing:2.032384pt;}
.ws22{word-spacing:2.048002pt;}
.ws3a{word-spacing:2.222547pt;}
.wsc7{word-spacing:2.338911pt;}
.wsa2{word-spacing:2.397093pt;}
.ws10c{word-spacing:2.455275pt;}
.ws137{word-spacing:2.510592pt;}
.wsec{word-spacing:2.513457pt;}
.ws139{word-spacing:2.558413pt;}
.ws94{word-spacing:2.571639pt;}
.ws26{word-spacing:2.701875pt;}
.ws130{word-spacing:2.720454pt;}
.ws6f{word-spacing:2.746184pt;}
.ws4b{word-spacing:2.749696pt;}
.ws2d{word-spacing:2.862548pt;}
.ws17{word-spacing:2.932989pt;}
.ws7c{word-spacing:2.978912pt;}
.ws4c{word-spacing:3.036621pt;}
.ws2b{word-spacing:3.037093pt;}
.wsf5{word-spacing:3.095275pt;}
.wsb7{word-spacing:3.145525pt;}
.ws35{word-spacing:3.153457pt;}
.ws19{word-spacing:3.211639pt;}
.ws105{word-spacing:3.227904pt;}
.wsc4{word-spacing:3.269821pt;}
.ws29{word-spacing:3.323546pt;}
.ws2f{word-spacing:3.328003pt;}
.ws9f{word-spacing:3.386185pt;}
.ws4e{word-spacing:3.419187pt;}
.ws61{word-spacing:3.444367pt;}
.ws64{word-spacing:3.502548pt;}
.ws5d{word-spacing:3.546982pt;}
.ws2c{word-spacing:3.560730pt;}
.ws102{word-spacing:3.618912pt;}
.ws123{word-spacing:3.676864pt;}
.ws80{word-spacing:3.677094pt;}
.ws28{word-spacing:3.706112pt;}
.ws90{word-spacing:3.735276pt;}
.ws54{word-spacing:3.793458pt;}
.ws112{word-spacing:3.851640pt;}
.wscd{word-spacing:3.895227pt;}
.wsd6{word-spacing:3.897395pt;}
.wsce{word-spacing:3.909821pt;}
.ws117{word-spacing:3.968003pt;}
.ws75{word-spacing:3.985067pt;}
.ws15{word-spacing:3.995667pt;}
.wsc5{word-spacing:4.026185pt;}
.ws93{word-spacing:4.040858pt;}
.ws118{word-spacing:4.084367pt;}
.wse5{word-spacing:4.136499pt;}
.ws104{word-spacing:4.142549pt;}
.ws95{word-spacing:4.200731pt;}
.ws8e{word-spacing:4.258913pt;}
.ws116{word-spacing:4.317095pt;}
.wsfb{word-spacing:4.375276pt;}
.ws78{word-spacing:4.433458pt;}
.ws6b{word-spacing:4.491640pt;}
.ws34{word-spacing:4.549822pt;}
.ws96{word-spacing:4.608004pt;}
.ws20{word-spacing:4.666186pt;}
.wsef{word-spacing:4.724368pt;}
.ws82{word-spacing:4.782067pt;}
.ws5b{word-spacing:4.782549pt;}
.wsb6{word-spacing:4.824078pt;}
.wsb8{word-spacing:4.845809pt;}
.wsa6{word-spacing:4.898913pt;}
.ws32{word-spacing:4.957095pt;}
.wsc8{word-spacing:5.015277pt;}
.ws13e{word-spacing:5.111478pt;}
.ws67{word-spacing:5.131641pt;}
.ws12b{word-spacing:5.140736pt;}
.wsff{word-spacing:5.189823pt;}
.ws120{word-spacing:5.217746pt;}
.ws46{word-spacing:5.236378pt;}
.ws48{word-spacing:5.284198pt;}
.wsf6{word-spacing:5.306186pt;}
.wsf1{word-spacing:5.364368pt;}
.wsb9{word-spacing:5.422550pt;}
.wsd0{word-spacing:5.480732pt;}
.ws111{word-spacing:5.538914pt;}
.ws30{word-spacing:5.597096pt;}
.ws13b{word-spacing:5.642817pt;}
.wsa0{word-spacing:5.655277pt;}
.ws81{word-spacing:5.713459pt;}
.wsfa{word-spacing:5.771641pt;}
.ws115{word-spacing:5.888005pt;}
.ws6a{word-spacing:6.004369pt;}
.wsfe{word-spacing:6.062551pt;}
.ws126{word-spacing:6.120732pt;}
.ws13{word-spacing:6.174155pt;}
.ws1e{word-spacing:6.178914pt;}
.ws70{word-spacing:6.237096pt;}
.ws65{word-spacing:6.295278pt;}
.ws85{word-spacing:6.353460pt;}
.wsa4{word-spacing:6.386691pt;}
.ws7b{word-spacing:6.411642pt;}
.wse8{word-spacing:6.431898pt;}
.wsd4{word-spacing:6.469824pt;}
.ws136{word-spacing:6.492959pt;}
.ws68{word-spacing:6.528005pt;}
.ws100{word-spacing:6.586187pt;}
.ws58{word-spacing:6.644369pt;}
.ws5e{word-spacing:6.702551pt;}
.ws9b{word-spacing:6.760733pt;}
.wseb{word-spacing:6.818915pt;}
.ws25{word-spacing:6.935279pt;}
.wsa3{word-spacing:6.993460pt;}
.ws121{word-spacing:7.024297pt;}
.ws98{word-spacing:7.051642pt;}
.ws27{word-spacing:7.053568pt;}
.ws66{word-spacing:7.109824pt;}
.ws91{word-spacing:7.168006pt;}
.wsac{word-spacing:7.226188pt;}
.ws6c{word-spacing:7.284370pt;}
.ws69{word-spacing:7.342552pt;}
.wsc2{word-spacing:7.369959pt;}
.wsc3{word-spacing:7.380643pt;}
.ws33{word-spacing:7.400733pt;}
.ws88{word-spacing:7.458915pt;}
.ws79{word-spacing:7.517097pt;}
.ws7a{word-spacing:7.691643pt;}
.ws140{word-spacing:7.723059pt;}
.ws1c{word-spacing:7.808007pt;}
.ws43{word-spacing:7.818701pt;}
.wsb5{word-spacing:7.980707pt;}
.ws51{word-spacing:7.982552pt;}
.ws7e{word-spacing:8.009984pt;}
.ws11e{word-spacing:8.040734pt;}
.ws2e{word-spacing:8.098916pt;}
.ws132{word-spacing:8.193242pt;}
.ws77{word-spacing:8.215280pt;}
.wscb{word-spacing:8.265467pt;}
.ws63{word-spacing:8.273461pt;}
.wsc0{word-spacing:8.291741pt;}
.ws1d{word-spacing:8.331643pt;}
.ws89{word-spacing:8.389825pt;}
.wsb4{word-spacing:8.405778pt;}
.ws44{word-spacing:8.488192pt;}
.ws11c{word-spacing:8.506189pt;}
.ws37{word-spacing:8.564371pt;}
.ws125{word-spacing:8.680735pt;}
.ws8d{word-spacing:8.738916pt;}
.ws12f{word-spacing:8.777715pt;}
.ws109{word-spacing:8.797098pt;}
.wsc6{word-spacing:8.855280pt;}
.ws73{word-spacing:8.913462pt;}
.ws50{word-spacing:8.966400pt;}
.wse9{word-spacing:9.029826pt;}
.wsa9{word-spacing:9.088008pt;}
.wsee{word-spacing:9.146189pt;}
.ws6e{word-spacing:9.204371pt;}
.ws45{word-spacing:9.205504pt;}
.ws8f{word-spacing:9.320735pt;}
.wsf9{word-spacing:9.495281pt;}
.ws97{word-spacing:9.553463pt;}
.ws12e{word-spacing:9.611644pt;}
.wsd8{word-spacing:9.669826pt;}
.wsfc{word-spacing:9.728008pt;}
.ws9a{word-spacing:9.844372pt;}
.ws103{word-spacing:9.902554pt;}
.wsf4{word-spacing:10.018917pt;}
.ws101{word-spacing:10.193463pt;}
.wscf{word-spacing:10.251645pt;}
.wsad{word-spacing:10.368009pt;}
.ws110{word-spacing:10.426191pt;}
.ws21{word-spacing:10.484372pt;}
.ws108{word-spacing:10.542554pt;}
.wsa5{word-spacing:10.658918pt;}
.ws23{word-spacing:10.717100pt;}
.ws38{word-spacing:10.833464pt;}
.ws114{word-spacing:11.066191pt;}
.ws119{word-spacing:11.182555pt;}
.wsf8{word-spacing:11.240737pt;}
.ws12a{word-spacing:11.298919pt;}
.ws52{word-spacing:11.589828pt;}
.ws5a{word-spacing:11.706192pt;}
.ws1f{word-spacing:11.764373pt;}
.ws39{word-spacing:11.997101pt;}
.ws59{word-spacing:12.113465pt;}
.ws9c{word-spacing:12.578920pt;}
.ws1b{word-spacing:12.637101pt;}
.ws71{word-spacing:12.753465pt;}
.wsaa{word-spacing:12.811647pt;}
.ws13a{word-spacing:14.266194pt;}
.wsbc{word-spacing:15.524134pt;}
.wsbe{word-spacing:15.529467pt;}
.wsde{word-spacing:15.720740pt;}
.ws4a{word-spacing:15.733043pt;}
.ws142{word-spacing:16.545997pt;}
.ws138{word-spacing:18.602291pt;}
.wsbb{word-spacing:18.761467pt;}
.ws124{word-spacing:18.793574pt;}
.ws134{word-spacing:18.809389pt;}
.ws18{word-spacing:18.968790pt;}
.ws84{word-spacing:19.141834pt;}
.ws141{word-spacing:19.176141pt;}
.wse6{word-spacing:20.419482pt;}
.ws12{word-spacing:20.722347pt;}
.ws3c{word-spacing:20.770926pt;}
.ws5c{word-spacing:21.061836pt;}
.ws55{word-spacing:21.294563pt;}
.wsdf{word-spacing:21.538927pt;}
.ws12c{word-spacing:21.615002pt;}
.ws106{word-spacing:22.225473pt;}
.ws3b{word-spacing:22.341837pt;}
.ws13d{word-spacing:22.794429pt;}
.ws13c{word-spacing:23.378901pt;}
.ws10d{word-spacing:23.447292pt;}
.ws135{word-spacing:24.388445pt;}
.ws6d{word-spacing:24.494566pt;}
.ws8c{word-spacing:24.552748pt;}
.ws8a{word-spacing:25.483658pt;}
.wsc1{word-spacing:27.049467pt;}
.ws11{word-spacing:27.636455pt;}
.ws11d{word-spacing:27.752750pt;}
.ws8b{word-spacing:28.224259pt;}
.ws11b{word-spacing:28.334569pt;}
.ws128{word-spacing:47.371676pt;}
.ws107{word-spacing:47.604403pt;}
.ws127{word-spacing:48.071127pt;}
.wse1{word-spacing:52.258953pt;}
.ws1a{word-spacing:62.166867pt;}
.ws13f{word-spacing:66.804419pt;}
.wse0{word-spacing:83.735343pt;}
.wse2{word-spacing:112.011730pt;}
.ws129{word-spacing:112.069912pt;}
.wsdd{word-spacing:124.986286pt;}
.ws11f{word-spacing:132.269568pt;}
.wsbf{word-spacing:287.364134pt;}
._72{margin-left:-37.377129pt;}
._73{margin-left:-31.631639pt;}
._1d{margin-left:-30.281915pt;}
._5b{margin-left:-29.333158pt;}
._5a{margin-left:-27.678850pt;}
._d{margin-left:-4.953209pt;}
._7{margin-left:-4.009312pt;}
._3{margin-left:-2.387202pt;}
._1{margin-left:-1.158016pt;}
._0{width:1.132800pt;}
._2{width:2.387202pt;}
._28{width:3.771647pt;}
._58{width:5.680629pt;}
._19{width:13.304499pt;}
._59{width:14.250705pt;}
._5{width:15.498100pt;}
._1a{width:16.758123pt;}
._13{width:18.259994pt;}
._f{width:19.259943pt;}
._21{width:20.307217pt;}
._12{width:21.328077pt;}
._11{width:22.482255pt;}
._10{width:24.215031pt;}
._8{width:25.832749pt;}
._4{width:26.975015pt;}
._c{width:28.150526pt;}
._23{width:29.274976pt;}
._b{width:30.254571pt;}
._14{width:31.395899pt;}
._26{width:32.525409pt;}
._27{width:33.436412pt;}
._9{width:34.349026pt;}
._57{width:35.258211pt;}
._1c{width:36.247303pt;}
._17{width:37.330022pt;}
._15{width:38.429592pt;}
._6{width:39.821613pt;}
._18{width:41.663457pt;}
._1f{width:43.083164pt;}
._24{width:44.101855pt;}
._4b{width:45.551165pt;}
._e{width:47.534585pt;}
._16{width:49.283999pt;}
._a{width:51.141861pt;}
._1b{width:52.189134pt;}
._25{width:53.761790pt;}
._1e{width:55.274519pt;}
._63{width:57.854176pt;}
._37{width:59.520050pt;}
._5c{width:63.165767pt;}
._2e{width:64.155800pt;}
._75{width:65.192299pt;}
._4d{width:70.749150pt;}
._20{width:71.731200pt;}
._34{width:73.250970pt;}
._50{width:75.869154pt;}
._3f{width:82.967342pt;}
._22{width:86.077200pt;}
._4c{width:91.060953pt;}
._4e{width:92.800077pt;}
._33{width:95.069170pt;}
._3d{width:99.898265pt;}
._55{width:102.647290pt;}
._43{width:104.785542pt;}
._2f{width:108.858273pt;}
._40{width:118.516462pt;}
._53{width:119.620687pt;}
._36{width:122.531011pt;}
._39{width:135.505567pt;}
._51{width:143.287534pt;}
._6e{width:144.351600pt;}
._32{width:148.363760pt;}
._4a{width:150.167398pt;}
._35{width:151.505581pt;}
._70{width:153.251037pt;}
._30{width:154.763765pt;}
._64{width:158.080132pt;}
._46{width:161.338316pt;}
._2d{width:162.967409pt;}
._56{width:164.189927pt;}
._71{width:166.377978pt;}
._42{width:167.796503pt;}
._3a{width:171.752870pt;}
._29{width:176.698329pt;}
._6f{width:181.527424pt;}
._3b{width:184.843790pt;}
._31{width:186.414701pt;}
._45{width:189.614703pt;}
._52{width:192.215947pt;}
._41{width:196.072891pt;}
._62{width:197.792244pt;}
._48{width:200.843804pt;}
._54{width:207.882578pt;}
._2a{width:212.945632pt;}
._2c{width:225.978370pt;}
._3e{width:230.442476pt;}
._3c{width:231.598826pt;}
._38{width:237.253917pt;}
._49{width:241.338383pt;}
._5e{width:251.694755pt;}
._6b{width:253.231809pt;}
._2b{width:254.254757pt;}
._4f{width:255.512185pt;}
._6a{width:260.043250pt;}
._67{width:272.463809pt;}
._66{width:273.620159pt;}
._65{width:279.275250pt;}
._47{width:286.026018pt;}
._6d{width:308.810018pt;}
._69{width:328.047352pt;}
._44{width:344.364037pt;}
._6c{width:367.153371pt;}
._68{width:386.385371pt;}
._74{width:400.929371pt;}
._61{width:439.669972pt;}
._5d{width:711.356016pt;}
._5f{width:722.666571pt;}
._60{width:728.321848pt;}
.fsf{font-size:31.880533pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:42.507200pt;}
.fs10{font-size:47.820800pt;}
.fs5{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fsc{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsd{font-size:58.181867pt;}
.fs7{font-size:58.880000pt;}
.fsa{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fse{font-size:76.513067pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:91.815467pt;}
.fs8{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y16f{bottom:4.862667pt;}
.y16e{bottom:22.929333pt;}
.y38{bottom:24.160000pt;}
.y16d{bottom:40.994667pt;}
.y33{bottom:42.880000pt;}
.y26{bottom:48.480000pt;}
.y25{bottom:56.480000pt;}
.y16c{bottom:59.060000pt;}
.y5{bottom:59.133337pt;}
.y23{bottom:69.760000pt;}
.y34{bottom:73.760000pt;}
.y22{bottom:83.040000pt;}
.y36{bottom:86.075040pt;}
.y4{bottom:86.333337pt;}
.y59{bottom:96.197333pt;}
.y35{bottom:101.440000pt;}
.y172{bottom:108.590667pt;}
.ybe{bottom:109.316000pt;}
.y1f{bottom:123.790666pt;}
.ybd{bottom:125.256000pt;}
.y171{bottom:126.656000pt;}
.y58{bottom:136.048000pt;}
.y1c7{bottom:138.630667pt;}
.y137{bottom:139.065333pt;}
.y8c{bottom:139.980000pt;}
.ybc{bottom:141.078667pt;}
.yf7{bottom:142.393333pt;}
.y170{bottom:144.721333pt;}
.ya0{bottom:146.325333pt;}
.ye5{bottom:147.057333pt;}
.y16b{bottom:149.586667pt;}
.y57{bottom:150.660000pt;}
.y1c6{bottom:154.570667pt;}
.ybb{bottom:155.690667pt;}
.y112{bottom:157.538667pt;}
.y81{bottom:159.496000pt;}
.y133{bottom:159.958667pt;}
.yf6{bottom:162.084000pt;}
.y136{bottom:162.976000pt;}
.y8b{bottom:163.890667pt;}
.y9f{bottom:166.016000pt;}
.ye4{bottom:166.748000pt;}
.y1de{bottom:169.585333pt;}
.y56{bottom:170.350667pt;}
.y1c5{bottom:170.510667pt;}
.y16a{bottom:173.497333pt;}
.y80{bottom:174.108000pt;}
.y16{bottom:175.052000pt;}
.yba{bottom:175.380000pt;}
.y111{bottom:177.229333pt;}
.y55{bottom:179.884000pt;}
.yf5{bottom:180.517333pt;}
.y132{bottom:183.868000pt;}
.y1dd{bottom:185.525333pt;}
.y1e{bottom:186.238666pt;}
.y15{bottom:186.252002pt;}
.y1c4{bottom:186.452000pt;}
.y9e{bottom:187.277333pt;}
.y8a{bottom:187.801333pt;}
.ye3{bottom:188.009333pt;}
.y7f{bottom:188.720000pt;}
.yb9{bottom:189.992000pt;}
.y54{bottom:194.494667pt;}
.y150{bottom:195.094667pt;}
.y1d{bottom:197.438668pt;}
.y14{bottom:197.452004pt;}
.yc5{bottom:198.904000pt;}
.y110{bottom:199.298667pt;}
.y135{bottom:201.290667pt;}
.y1dc{bottom:201.465333pt;}
.y7e{bottom:203.332000pt;}
.yf4{bottom:204.428000pt;}
.y131{bottom:207.778667pt;}
.y169{bottom:208.561333pt;}
.y1c{bottom:208.638670pt;}
.y13{bottom:208.651996pt;}
.y9d{bottom:211.188000pt;}
.yb8{bottom:211.253333pt;}
.y89{bottom:211.712000pt;}
.ye2{bottom:211.920000pt;}
.y53{bottom:214.185333pt;}
.yc4{bottom:214.844000pt;}
.y1db{bottom:217.405333pt;}
.y7d{bottom:217.944000pt;}
.y14f{bottom:219.004000pt;}
.y10f{bottom:223.209333pt;}
.yf3{bottom:228.338667pt;}
.y52{bottom:228.797333pt;}
.yc3{bottom:230.785333pt;}
.y1b{bottom:231.038664pt;}
.y12{bottom:231.052000pt;}
.y130{bottom:231.689333pt;}
.y168{bottom:232.472000pt;}
.y9c{bottom:235.098667pt;}
.yb7{bottom:235.164000pt;}
.y88{bottom:235.621333pt;}
.ye1{bottom:235.829333pt;}
.y7c{bottom:237.634667pt;}
.y1a{bottom:242.238666pt;}
.y11{bottom:242.252002pt;}
.y14e{bottom:242.914667pt;}
.y51{bottom:243.409333pt;}
.yc2{bottom:246.725333pt;}
.y10e{bottom:247.120000pt;}
.y7b{bottom:247.168000pt;}
.y19{bottom:253.438668pt;}
.y10{bottom:253.451999pt;}
.y12f{bottom:255.600000pt;}
.y9b{bottom:259.008000pt;}
.yb6{bottom:259.074667pt;}
.y87{bottom:259.532000pt;}
.ye0{bottom:259.740000pt;}
.y7a{bottom:261.780000pt;}
.yc1{bottom:262.665333pt;}
.y50{bottom:264.314667pt;}
.yc0{bottom:266.401333pt;}
.y167{bottom:267.537333pt;}
.yf2{bottom:270.513333pt;}
.y10d{bottom:271.029333pt;}
.y18{bottom:275.838667pt;}
.yf{bottom:275.852001pt;}
.y79{bottom:276.390667pt;}
.y14d{bottom:278.050667pt;}
.y12e{bottom:279.509333pt;}
.y19e{bottom:280.318667pt;}
.y9a{bottom:282.918667pt;}
.yb5{bottom:282.985333pt;}
.y86{bottom:283.442667pt;}
.ydf{bottom:283.650667pt;}
.yf1{bottom:285.125333pt;}
.ybf{bottom:286.092000pt;}
.y17{bottom:287.038667pt;}
.ye{bottom:287.052000pt;}
.y4f{bottom:288.225333pt;}
.y78{bottom:291.002667pt;}
.y166{bottom:291.448000pt;}
.y10c{bottom:294.940000pt;}
.yf0{bottom:299.737333pt;}
.y14c{bottom:301.961333pt;}
.y12d{bottom:303.420000pt;}
.y19d{bottom:304.229333pt;}
.y77{bottom:305.614667pt;}
.y99{bottom:306.829333pt;}
.yb4{bottom:306.894667pt;}
.y85{bottom:307.353333pt;}
.yde{bottom:307.561333pt;}
.yd{bottom:309.452000pt;}
.y1da{bottom:310.010667pt;}
.y4e{bottom:312.134667pt;}
.yef{bottom:314.349333pt;}
.y10b{bottom:318.850667pt;}
.y76{bottom:320.226667pt;}
.y165{bottom:326.512000pt;}
.y12c{bottom:327.330667pt;}
.y1c2{bottom:327.840000pt;}
.y1d9{bottom:328.077333pt;}
.y19c{bottom:328.140000pt;}
.y98{bottom:330.740000pt;}
.yb3{bottom:330.805333pt;}
.y84{bottom:331.262667pt;}
.ydd{bottom:331.470667pt;}
.y75{bottom:334.838667pt;}
.y17f{bottom:335.880000pt;}
.y4d{bottom:336.045333pt;}
.y14b{bottom:337.097333pt;}
.y1c1{bottom:342.452000pt;}
.y10a{bottom:342.761333pt;}
.yee{bottom:343.684000pt;}
.yc{bottom:343.809333pt;}
.y74{bottom:349.450667pt;}
.y164{bottom:350.422667pt;}
.y12b{bottom:351.241333pt;}
.y17e{bottom:351.820000pt;}
.y19b{bottom:352.049333pt;}
.y97{bottom:354.649333pt;}
.yb2{bottom:354.716000pt;}
.y83{bottom:355.173333pt;}
.ydc{bottom:355.381333pt;}
.y1c0{bottom:357.064000pt;}
.y4c{bottom:359.956000pt;}
.y1d8{bottom:360.549333pt;}
.y14a{bottom:361.008000pt;}
.yed{bottom:361.750667pt;}
.yb{bottom:362.706666pt;}
.y73{bottom:364.062667pt;}
.y109{bottom:366.670667pt;}
.y17d{bottom:367.760000pt;}
.y1bf{bottom:371.676000pt;}
.y12a{bottom:375.150667pt;}
.y19a{bottom:375.960000pt;}
.y96{bottom:378.560000pt;}
.y1d7{bottom:378.614667pt;}
.yb1{bottom:378.626667pt;}
.y82{bottom:379.084000pt;}
.ydb{bottom:379.292000pt;}
.yec{bottom:379.816000pt;}
.y37{bottom:382.400000pt;}
.y17c{bottom:383.700000pt;}
.y72{bottom:383.753333pt;}
.y4b{bottom:383.866667pt;}
.y149{bottom:384.918667pt;}
.y163{bottom:385.488000pt;}
.y108{bottom:390.581333pt;}
.y1d6{bottom:396.681333pt;}
.yeb{bottom:398.413333pt;}
.y129{bottom:399.061333pt;}
.y17b{bottom:399.640000pt;}
.y1be{bottom:401.012000pt;}
.y95{bottom:402.470667pt;}
.yb0{bottom:402.536000pt;}
.y71{bottom:402.994667pt;}
.yda{bottom:403.202667pt;}
.y4a{bottom:407.776000pt;}
.y162{bottom:409.398667pt;}
.y107{bottom:414.492000pt;}
.y1d5{bottom:414.746667pt;}
.yea{bottom:416.478667pt;}
.y199{bottom:418.136000pt;}
.y1bd{bottom:419.077333pt;}
.y148{bottom:420.054667pt;}
.y128{bottom:422.972000pt;}
.y94{bottom:426.381333pt;}
.yaf{bottom:426.446667pt;}
.y70{bottom:426.904000pt;}
.yd9{bottom:427.112000pt;}
.y49{bottom:431.686667pt;}
.y198{bottom:432.746667pt;}
.y1d4{bottom:432.812000pt;}
.y161{bottom:433.308000pt;}
.ye9{bottom:434.544000pt;}
.y1bc{bottom:437.142667pt;}
.y106{bottom:438.402667pt;}
.y147{bottom:443.965333pt;}
.y127{bottom:446.882667pt;}
.y197{bottom:447.358667pt;}
.y93{bottom:450.290667pt;}
.yae{bottom:450.357333pt;}
.y6f{bottom:450.814667pt;}
.y1d3{bottom:450.877333pt;}
.yd8{bottom:451.022667pt;}
.ye8{bottom:452.609333pt;}
.y48{bottom:455.597333pt;}
.y1bb{bottom:455.740000pt;}
.y196{bottom:461.970667pt;}
.y105{bottom:462.312000pt;}
.y160{bottom:468.373333pt;}
.y1d2{bottom:468.942667pt;}
.y126{bottom:470.792000pt;}
.ye7{bottom:471.206667pt;}
.y1ba{bottom:473.805333pt;}
.y92{bottom:474.201333pt;}
.yad{bottom:474.268000pt;}
.y6e{bottom:474.725333pt;}
.yd7{bottom:474.933333pt;}
.ya{bottom:478.990666pt;}
.y146{bottom:479.101333pt;}
.y47{bottom:479.508000pt;}
.y104{bottom:486.222667pt;}
.ye6{bottom:489.272000pt;}
.y195{bottom:491.306667pt;}
.y1b9{bottom:491.870667pt;}
.y15f{bottom:492.284000pt;}
.y1d1{bottom:494.312000pt;}
.y125{bottom:494.702667pt;}
.y9{bottom:494.990666pt;}
.y91{bottom:498.112000pt;}
.yac{bottom:498.177333pt;}
.y6d{bottom:498.636000pt;}
.yd6{bottom:498.844000pt;}
.y145{bottom:503.012000pt;}
.y46{bottom:503.417333pt;}
.y194{bottom:509.372000pt;}
.y1b8{bottom:509.936000pt;}
.y103{bottom:510.133333pt;}
.y1d0{bottom:519.680000pt;}
.y90{bottom:522.022667pt;}
.yab{bottom:522.088000pt;}
.y6c{bottom:522.545333pt;}
.yd5{bottom:522.753333pt;}
.y15e{bottom:527.349333pt;}
.y193{bottom:527.437333pt;}
.y1b7{bottom:528.533333pt;}
.y45{bottom:532.606667pt;}
.y102{bottom:534.044000pt;}
.y124{bottom:537.154667pt;}
.y1cf{bottom:537.745333pt;}
.y144{bottom:538.148000pt;}
.y8f{bottom:545.932000pt;}
.yaa{bottom:545.998667pt;}
.y192{bottom:546.034667pt;}
.y6b{bottom:546.456000pt;}
.y1b6{bottom:546.598667pt;}
.yd4{bottom:546.664000pt;}
.y15d{bottom:551.258667pt;}
.y1ce{bottom:555.810667pt;}
.y101{bottom:557.953333pt;}
.y143{bottom:562.057333pt;}
.y32{bottom:563.040000pt;}
.y191{bottom:564.100000pt;}
.y44{bottom:565.642667pt;}
.y123{bottom:569.626667pt;}
.y8e{bottom:569.842667pt;}
.ya9{bottom:569.909333pt;}
.y6a{bottom:570.366667pt;}
.yd3{bottom:570.574667pt;}
.y8{bottom:573.786667pt;}
.y1cd{bottom:573.877333pt;}
.y1b5{bottom:579.873333pt;}
.y31{bottom:581.122560pt;}
.y100{bottom:581.864000pt;}
.y190{bottom:582.165333pt;}
.y15c{bottom:586.324000pt;}
.y122{bottom:587.693333pt;}
.y1cc{bottom:591.942667pt;}
.y7{bottom:592.685334pt;}
.ya8{bottom:593.818667pt;}
.y69{bottom:594.277333pt;}
.yd2{bottom:594.485333pt;}
.y142{bottom:597.194667pt;}
.y30{bottom:598.080000pt;}
.y18f{bottom:600.230667pt;}
.y8d{bottom:603.146667pt;}
.y1b4{bottom:603.782667pt;}
.y121{bottom:605.758667pt;}
.yff{bottom:605.774667pt;}
.y1cb{bottom:610.008000pt;}
.y15b{bottom:610.234667pt;}
.y43{bottom:611.304000pt;}
.y2f{bottom:615.200000pt;}
.ya7{bottom:617.729333pt;}
.y68{bottom:618.186667pt;}
.yd1{bottom:618.394667pt;}
.y18e{bottom:618.828000pt;}
.y141{bottom:621.104000pt;}
.y120{bottom:623.824000pt;}
.y1b3{bottom:627.693333pt;}
.y1ca{bottom:628.073333pt;}
.yfe{bottom:629.685333pt;}
.y2e{bottom:633.600000pt;}
.y42{bottom:635.214667pt;}
.y18d{bottom:636.893333pt;}
.ya6{bottom:641.640000pt;}
.y11f{bottom:641.889333pt;}
.y67{bottom:642.097333pt;}
.yd0{bottom:642.305333pt;}
.y140{bottom:645.014667pt;}
.y15a{bottom:645.300000pt;}
.y6{bottom:645.598667pt;}
.y1b2{bottom:651.604000pt;}
.y2d{bottom:652.000000pt;}
.y1c9{bottom:653.442667pt;}
.yfd{bottom:653.594667pt;}
.y11e{bottom:659.954667pt;}
.y66{bottom:666.008000pt;}
.ycf{bottom:666.216000pt;}
.y134{bottom:667.998667pt;}
.y3{bottom:668.977329pt;}
.y159{bottom:669.209333pt;}
.y2c{bottom:670.400000pt;}
.y41{bottom:670.545333pt;}
.y1b1{bottom:675.514667pt;}
.yfc{bottom:677.505333pt;}
.y11d{bottom:678.020000pt;}
.ya5{bottom:679.954667pt;}
.y13f{bottom:680.150667pt;}
.y1c8{bottom:682.194667pt;}
.y18c{bottom:685.604000pt;}
.y40{bottom:686.485333pt;}
.y2b{bottom:688.484480pt;}
.y65{bottom:689.918667pt;}
.yce{bottom:690.126667pt;}
.y1b0{bottom:699.424000pt;}
.y18b{bottom:700.216000pt;}
.yfb{bottom:701.416000pt;}
.y3f{bottom:702.425333pt;}
.y11c{bottom:703.389333pt;}
.y13e{bottom:704.061333pt;}
.y158{bottom:704.274667pt;}
.y2a{bottom:705.280000pt;}
.y64{bottom:713.828000pt;}
.ycd{bottom:714.036000pt;}
.y18a{bottom:714.828000pt;}
.y3e{bottom:718.365333pt;}
.y29{bottom:722.400000pt;}
.y1af{bottom:723.334667pt;}
.yfa{bottom:725.326667pt;}
.ya4{bottom:725.784000pt;}
.y157{bottom:728.185333pt;}
.y11b{bottom:728.757333pt;}
.y189{bottom:729.440000pt;}
.y3d{bottom:734.305333pt;}
.y1a8{bottom:735.608000pt;}
.y63{bottom:737.738667pt;}
.ycc{bottom:737.946667pt;}
.y13d{bottom:739.197333pt;}
.y28{bottom:740.800000pt;}
.y11a{bottom:746.822667pt;}
.y1ae{bottom:747.245333pt;}
.yf9{bottom:749.236000pt;}
.ya3{bottom:749.694667pt;}
.y1a7{bottom:750.220000pt;}
.y156{bottom:752.096000pt;}
.y3c{bottom:757.478667pt;}
.y188{bottom:758.776000pt;}
.y62{bottom:761.649333pt;}
.ycb{bottom:761.857333pt;}
.y13c{bottom:763.108000pt;}
.y1a6{bottom:764.832000pt;}
.y119{bottom:764.889333pt;}
.y1ad{bottom:771.156000pt;}
.y187{bottom:776.841333pt;}
.y1a5{bottom:779.444000pt;}
.y2{bottom:781.661334pt;}
.y118{bottom:782.954667pt;}
.y61{bottom:785.560000pt;}
.yca{bottom:785.768000pt;}
.y13b{bottom:787.018667pt;}
.y155{bottom:787.160000pt;}
.yf8{bottom:787.550667pt;}
.y21{bottom:790.560000pt;}
.y186{bottom:794.906667pt;}
.y1ac{bottom:795.065333pt;}
.y17a{bottom:798.572000pt;}
.y117{bottom:801.020000pt;}
.y1a4{bottom:808.780000pt;}
.y60{bottom:809.469333pt;}
.y13a{bottom:810.928000pt;}
.y154{bottom:811.070667pt;}
.y185{bottom:813.504000pt;}
.y1ab{bottom:818.976000pt;}
.y116{bottom:819.085333pt;}
.yc9{bottom:824.289333pt;}
.y3b{bottom:824.978667pt;}
.y1a3{bottom:826.845333pt;}
.y184{bottom:831.569333pt;}
.y5f{bottom:833.380000pt;}
.y115{bottom:837.150667pt;}
.y27{bottom:839.040000pt;}
.y1aa{bottom:842.886667pt;}
.y1a2{bottom:844.910667pt;}
.ya2{bottom:845.336000pt;}
.y179{bottom:845.441333pt;}
.y139{bottom:846.065333pt;}
.y153{bottom:846.136000pt;}
.y183{bottom:849.634667pt;}
.yc8{bottom:852.185333pt;}
.y5e{bottom:857.290667pt;}
.y1{bottom:859.312000pt;}
.y24{bottom:860.320000pt;}
.y114{bottom:862.520000pt;}
.y178{bottom:863.508000pt;}
.y3a{bottom:865.393333pt;}
.y1a9{bottom:866.797333pt;}
.y182{bottom:867.700000pt;}
.ya1{bottom:869.245333pt;}
.y138{bottom:869.974667pt;}
.y152{bottom:870.046667pt;}
.y5d{bottom:881.201333pt;}
.y177{bottom:881.573333pt;}
.y181{bottom:886.297333pt;}
.yc7{bottom:890.706667pt;}
.y113{bottom:891.272000pt;}
.y151{bottom:893.956000pt;}
.y39{bottom:894.617333pt;}
.y1a1{bottom:899.638667pt;}
.y176{bottom:900.169333pt;}
.y180{bottom:904.362667pt;}
.y5c{bottom:905.110667pt;}
.yc6{bottom:914.617333pt;}
.y1a0{bottom:917.704000pt;}
.y175{bottom:918.236000pt;}
.y1c3{bottom:919.930667pt;}
.y5b{bottom:929.021333pt;}
.y174{bottom:936.301333pt;}
.y5a{bottom:952.932000pt;}
.y19f{bottom:954.366667pt;}
.y173{bottom:954.898667pt;}
.y20{bottom:1042.560000pt;}
.h1a{height:15.550933pt;}
.h1b{height:21.551241pt;}
.h7{height:28.560000pt;}
.h18{height:28.734867pt;}
.hb{height:34.945312pt;}
.h1c{height:35.865600pt;}
.hc{height:38.672812pt;}
.h15{height:39.850400pt;}
.h6{height:40.800000pt;}
.hf{height:42.676090pt;}
.h3{height:42.840000pt;}
.hd{height:42.866250pt;}
.h16{height:43.636400pt;}
.h14{height:44.887791pt;}
.h9{height:46.593750pt;}
.h1d{height:47.820800pt;}
.h2{height:48.960000pt;}
.h1e{height:49.844201pt;}
.h19{height:49.849534pt;}
.h10{height:51.678667pt;}
.h1f{height:53.924400pt;}
.h17{height:57.384800pt;}
.h13{height:64.454458pt;}
.h5{height:69.360000pt;}
.h11{height:85.266562pt;}
.he{height:86.240000pt;}
.ha{height:93.760000pt;}
.h4{height:105.826671pt;}
.h12{height:1056.000000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:191.840000pt;}
.w4{width:210.560000pt;}
.w6{width:564.000000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.w7{width:816.000000pt;}
.x0{left:0.000000pt;}
.xf{left:9.600000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x11{left:122.400000pt;}
.x12{left:126.240000pt;}
.x21{left:130.221333pt;}
.x25{left:136.741333pt;}
.x1d{left:137.948000pt;}
.x19{left:142.820000pt;}
.x24{left:144.014667pt;}
.x27{left:145.881333pt;}
.x18{left:148.818667pt;}
.x22{left:152.050667pt;}
.x28{left:158.329333pt;}
.x23{left:161.600000pt;}
.x17{left:162.600000pt;}
.x4{left:180.874667pt;}
.x1b{left:216.013333pt;}
.x20{left:238.596000pt;}
.x2b{left:244.292000pt;}
.x13{left:249.360000pt;}
.x1f{left:252.353333pt;}
.x2a{left:258.049333pt;}
.x29{left:262.858667pt;}
.x9{left:268.000000pt;}
.x1c{left:286.140000pt;}
.x14{left:296.206667pt;}
.xa{left:306.720000pt;}
.xb{left:343.040000pt;}
.x15{left:351.346667pt;}
.x26{left:355.236000pt;}
.xd{left:368.000000pt;}
.x16{left:380.476000pt;}
.xc{left:384.000000pt;}
.x1e{left:402.428000pt;}
.x3{left:404.408000pt;}
.x1a{left:406.064000pt;}
.x5{left:420.480000pt;}
.x6{left:566.080000pt;}
.xe{left:569.440000pt;}
.x10{left:579.040000pt;}
.x8{left:660.000000pt;}
.x7{left:679.200000pt;}
}




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