
    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_43023d02416316cd9981d8a0.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.437000;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_26900055f4fad560e789217f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.692383;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_39c3809f1dc229e57e4e9965.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.437000;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_e2fc35593b6330adb4a098a2.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.120117;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_cb80de6d83c32d4535a81c2c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;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_55053654410f3a1bdf2fe730.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_df125489e8c36069bde4b25e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.272949;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_cecd464c54951efca4b5565e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.002930;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_015bbe6c5095ad68ddc524d2.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_41d4b152146394d4af8adf3d.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.437000;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_816405badac7b3e42833a2ad.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.087891;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;}
.m4{transform:matrix(0.000000,-0.250330,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250330,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250330,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249670,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249867,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250278,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251163,0.000000,0.000000,0.250000,0,0);}
.vc{vertical-align:-33.278226px;}
.vb{vertical-align:-20.769012px;}
.v2{vertical-align:-18.719970px;}
.v3{vertical-align:-14.399778px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.719970px;}
.v4{vertical-align:52.140012px;}
.v5{vertical-align:104.280030px;}
.v6{vertical-align:156.420048px;}
.v7{vertical-align:208.500000px;}
.v8{vertical-align:260.640018px;}
.v9{vertical-align:312.780030px;}
.va{vertical-align:364.920048px;}
.ls39{letter-spacing:-3.125532px;}
.ls64{letter-spacing:-1.860480px;}
.ls18{letter-spacing:-1.586880px;}
.ls3a{letter-spacing:-1.562766px;}
.ls42{letter-spacing:-1.521055px;}
.ls5b{letter-spacing:-1.422720px;}
.ls6d{letter-spacing:-1.368000px;}
.ls65{letter-spacing:-1.258560px;}
.ls14{letter-spacing:-1.094400px;}
.ls25{letter-spacing:-0.930240px;}
.ls41{letter-spacing:-0.728640px;}
.ls6c{letter-spacing:-0.711360px;}
.ls5a{letter-spacing:-0.701480px;}
.ls5c{letter-spacing:-0.596160px;}
.ls1c{letter-spacing:-0.529920px;}
.ls12{letter-spacing:-0.463680px;}
.ls5d{letter-spacing:-0.438912px;}
.ls1e{letter-spacing:-0.397440px;}
.ls26{letter-spacing:-0.383040px;}
.ls10{letter-spacing:-0.331200px;}
.ls1d{letter-spacing:-0.328320px;}
.ls54{letter-spacing:-0.273600px;}
.ls29{letter-spacing:-0.264960px;}
.ls53{letter-spacing:-0.242392px;}
.ls24{letter-spacing:-0.218880px;}
.ls1a{letter-spacing:-0.198720px;}
.ls27{letter-spacing:-0.164160px;}
.ls11{letter-spacing:-0.132480px;}
.ls15{letter-spacing:-0.109440px;}
.lse{letter-spacing:-0.108000px;}
.ls34{letter-spacing:-0.095040px;}
.ls13{letter-spacing:-0.066240px;}
.ls17{letter-spacing:-0.054720px;}
.lsf{letter-spacing:0.000000px;}
.ls6b{letter-spacing:0.038304px;}
.ls51{letter-spacing:0.040399px;}
.lsa{letter-spacing:0.054720px;}
.ls62{letter-spacing:0.066240px;}
.ls16{letter-spacing:0.109440px;}
.lsd{letter-spacing:0.132480px;}
.ls2c{letter-spacing:0.137808px;}
.ls63{letter-spacing:0.164160px;}
.ls6{letter-spacing:0.178848px;}
.ls67{letter-spacing:0.186048px;}
.ls0{letter-spacing:0.198720px;}
.ls59{letter-spacing:0.218880px;}
.ls66{letter-spacing:0.273600px;}
.ls68{letter-spacing:0.311904px;}
.ls58{letter-spacing:0.328320px;}
.ls20{letter-spacing:0.331200px;}
.ls30{letter-spacing:0.333648px;}
.ls4{letter-spacing:0.355656px;}
.ls2a{letter-spacing:0.380160px;}
.ls61{letter-spacing:0.383040px;}
.ls69{letter-spacing:0.421344px;}
.ls35{letter-spacing:0.463600px;}
.ls21{letter-spacing:0.492480px;}
.ls5e{letter-spacing:0.497952px;}
.ls22{letter-spacing:0.498210px;}
.ls31{letter-spacing:0.522720px;}
.ls6a{letter-spacing:0.601920px;}
.ls32{letter-spacing:0.617760px;}
.ls2d{letter-spacing:0.636768px;}
.ls52{letter-spacing:0.667296px;}
.ls28{letter-spacing:0.711360px;}
.ls2f{letter-spacing:0.712800px;}
.lsc{letter-spacing:0.715392px;}
.ls1{letter-spacing:0.720006px;}
.ls2{letter-spacing:0.720096px;}
.ls1b{letter-spacing:0.728640px;}
.ls40{letter-spacing:0.768388px;}
.ls23{letter-spacing:0.820800px;}
.lsb{letter-spacing:0.861120px;}
.ls38{letter-spacing:0.875520px;}
.ls2b{letter-spacing:0.902880px;}
.ls50{letter-spacing:0.993600px;}
.ls3f{letter-spacing:1.104558px;}
.ls55{letter-spacing:1.169133px;}
.ls2e{letter-spacing:1.173744px;}
.ls1f{letter-spacing:1.258560px;}
.ls56{letter-spacing:1.319034px;}
.ls33{letter-spacing:1.378080px;}
.ls47{letter-spacing:1.391040px;}
.ls3e{letter-spacing:1.392703px;}
.ls43{letter-spacing:1.457280px;}
.ls4c{letter-spacing:1.523520px;}
.ls4e{letter-spacing:2.119680px;}
.ls4f{letter-spacing:2.185920px;}
.ls36{letter-spacing:5.034240px;}
.ls37{letter-spacing:7.948800px;}
.ls5{letter-spacing:9.359928px;}
.ls57{letter-spacing:12.240864px;}
.ls3b{letter-spacing:12.327264px;}
.ls60{letter-spacing:13.586976px;}
.ls5f{letter-spacing:13.680000px;}
.ls49{letter-spacing:13.764672px;}
.ls8{letter-spacing:13.800384px;}
.ls48{letter-spacing:14.400576px;}
.ls19{letter-spacing:15.102720px;}
.ls9{letter-spacing:15.119136px;}
.ls46{letter-spacing:15.208704px;}
.ls4a{letter-spacing:15.380928px;}
.ls3{letter-spacing:16.560000px;}
.ls3c{letter-spacing:18.083520px;}
.ls45{letter-spacing:18.719424px;}
.ls4d{letter-spacing:23.038272px;}
.ls3d{letter-spacing:23.846400px;}
.ls4b{letter-spacing:28.079136px;}
.ls44{letter-spacing:35.544384px;}
.ls7{letter-spacing:42.480024px;}
.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;}
}
.ws10{word-spacing:-49.878720px;}
.ws3d{word-spacing:-42.724800px;}
.ws3c{word-spacing:-39.810240px;}
.ws7{word-spacing:-39.677760px;}
.ws1e{word-spacing:-35.637120px;}
.ws18{word-spacing:-35.504640px;}
.ws17{word-spacing:-34.776000px;}
.ws60{word-spacing:-30.588480px;}
.ws7a{word-spacing:-28.728000px;}
.ws7d{word-spacing:-28.563840px;}
.ws79{word-spacing:-27.633600px;}
.ws7c{word-spacing:-27.305280px;}
.ws3a{word-spacing:-21.811680px;}
.ws39{word-spacing:-21.336480px;}
.ws35{word-spacing:-21.051360px;}
.ws53{word-spacing:-18.017280px;}
.ws1c{word-spacing:-17.818560px;}
.ws52{word-spacing:-17.553600px;}
.ws13{word-spacing:-17.421120px;}
.ws1{word-spacing:-16.758720px;}
.ws4{word-spacing:-16.560000px;}
.ws1b{word-spacing:-16.493760px;}
.ws5{word-spacing:-16.427520px;}
.ws3{word-spacing:-16.228800px;}
.ws6{word-spacing:-16.096320px;}
.ws25{word-spacing:-16.030080px;}
.ws27{word-spacing:-14.938560px;}
.ws6a{word-spacing:-14.555520px;}
.ws68{word-spacing:-14.391360px;}
.ws75{word-spacing:-14.281920px;}
.ws22{word-spacing:-14.172480px;}
.ws80{word-spacing:-13.844160px;}
.ws9{word-spacing:-13.789440px;}
.ws8{word-spacing:-13.734720px;}
.wsd{word-spacing:-13.680000px;}
.wsa{word-spacing:-13.625280px;}
.ws6b{word-spacing:-13.570560px;}
.ws70{word-spacing:-13.515840px;}
.ws23{word-spacing:-13.461120px;}
.ws6f{word-spacing:-13.406400px;}
.ws21{word-spacing:-13.351680px;}
.ws5b{word-spacing:-12.585600px;}
.ws5a{word-spacing:-12.366720px;}
.ws58{word-spacing:-12.257280px;}
.ws29{word-spacing:-12.093120px;}
.ws56{word-spacing:-12.003098px;}
.ws38{word-spacing:-11.642400px;}
.ws36{word-spacing:-11.357280px;}
.ws37{word-spacing:-10.739520px;}
.ws42{word-spacing:-9.669362px;}
.ws4e{word-spacing:-9.321337px;}
.ws44{word-spacing:-9.298459px;}
.ws51{word-spacing:-2.159424px;}
.ws1d{word-spacing:-2.152800px;}
.ws5c{word-spacing:-2.093184px;}
.ws1a{word-spacing:-1.881216px;}
.ws73{word-spacing:-1.685376px;}
.ws69{word-spacing:-1.428192px;}
.ws40{word-spacing:-1.378944px;}
.ws3f{word-spacing:-1.149120px;}
.ws76{word-spacing:-0.952128px;}
.ws64{word-spacing:-0.859104px;}
.ws41{word-spacing:-0.841872px;}
.ws71{word-spacing:-0.771552px;}
.ws65{word-spacing:-0.727776px;}
.ws50{word-spacing:-0.596160px;}
.ws5e{word-spacing:-0.558144px;}
.ws19{word-spacing:-0.541728px;}
.ws57{word-spacing:-0.508896px;}
.ws1f{word-spacing:-0.457056px;}
.ws6e{word-spacing:-0.443232px;}
.ws66{word-spacing:-0.399456px;}
.ws12{word-spacing:-0.298080px;}
.ws7b{word-spacing:-0.093024px;}
.ws20{word-spacing:-0.054720px;}
.ws2{word-spacing:0.000000px;}
.ws77{word-spacing:0.158688px;}
.ws81{word-spacing:0.180576px;}
.ws15{word-spacing:0.457056px;}
.ws14{word-spacing:0.556416px;}
.ws7f{word-spacing:0.705888px;}
.ws0{word-spacing:0.874368px;}
.ws26{word-spacing:0.919296px;}
.ws28{word-spacing:0.935712px;}
.wsc{word-spacing:1.001376px;}
.ws5f{word-spacing:1.154592px;}
.ws63{word-spacing:1.378944px;}
.ws16{word-spacing:1.437408px;}
.wsb{word-spacing:1.439136px;}
.ws6d{word-spacing:1.477440px;}
.ws78{word-spacing:1.647072px;}
.ws4b{word-spacing:1.728864px;}
.ws7e{word-spacing:1.789344px;}
.ws6c{word-spacing:1.893312px;}
.ws5d{word-spacing:2.132928px;}
.ws3e{word-spacing:2.166048px;}
.ws72{word-spacing:2.746944px;}
.ws67{word-spacing:2.872800px;}
.ws74{word-spacing:2.889216px;}
.ws2d{word-spacing:3.610620px;}
.ws62{word-spacing:3.715488px;}
.ws47{word-spacing:3.722688px;}
.ws2a{word-spacing:3.790614px;}
.ws61{word-spacing:4.306464px;}
.ws46{word-spacing:5.762016px;}
.ws45{word-spacing:6.692256px;}
.ws4a{word-spacing:7.922304px;}
.ws24{word-spacing:9.008640px;}
.ws4c{word-spacing:9.293472px;}
.ws48{word-spacing:9.359712px;}
.ws49{word-spacing:9.485568px;}
.wsf{word-spacing:12.678336px;}
.ws11{word-spacing:15.884352px;}
.ws2b{word-spacing:16.030482px;}
.wse{word-spacing:24.071328px;}
.ws31{word-spacing:28.277652px;}
.ws2f{word-spacing:41.110620px;}
.ws3b{word-spacing:47.147538px;}
.ws2e{word-spacing:52.870566px;}
.ws34{word-spacing:81.557682px;}
.ws30{word-spacing:89.717772px;}
.ws33{word-spacing:105.722916px;}
.ws32{word-spacing:106.030572px;}
.ws59{word-spacing:126.214476px;}
.ws2c{word-spacing:126.490500px;}
.ws55{word-spacing:150.527418px;}
.ws54{word-spacing:344.046495px;}
.ws4d{word-spacing:613.887023px;}
.ws4f{word-spacing:613.899004px;}
.ws43{word-spacing:653.982509px;}
._26{margin-left:-30.381092px;}
._25{margin-left:-25.206888px;}
._16{margin-left:-15.393744px;}
._20{margin-left:-8.661168px;}
._1f{margin-left:-6.392592px;}
._24{margin-left:-5.130576px;}
._6{margin-left:-4.100544px;}
._7{margin-left:-2.436912px;}
._2{margin-left:-1.371600px;}
._4{width:1.071360px;}
._0{width:2.160000px;}
._3{width:3.179520px;}
._c{width:4.412016px;}
._b{width:6.359040px;}
._12{width:7.583472px;}
._11{width:8.692128px;}
._a{width:10.172304px;}
._9{width:11.632752px;}
._8{width:13.148352px;}
._15{width:14.305968px;}
._5{width:15.691680px;}
._14{width:17.804592px;}
._13{width:18.866880px;}
._18{width:19.923696px;}
._17{width:20.948400px;}
._2b{width:22.138560px;}
._e{width:23.271552px;}
._10{width:24.307776px;}
._d{width:25.405200px;}
._1c{width:26.651088px;}
._1{width:28.749600px;}
._2d{width:30.181536px;}
._1b{width:31.709520px;}
._19{width:33.854976px;}
._1a{width:36.357552px;}
._27{width:37.883888px;}
._2c{width:40.409424px;}
._f{width:41.757696px;}
._28{width:46.215397px;}
._2e{width:89.072406px;}
._2f{width:90.585345px;}
._1e{width:105.030228px;}
._1d{width:117.150156px;}
._30{width:152.058240px;}
._23{width:163.154008px;}
._21{width:166.848192px;}
._22{width:194.225406px;}
._2a{width:383.203582px;}
._29{width:508.240659px;}
.fc2{color:rgb(89,89,89);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:29.978046px;}
.fsd{font-size:32.463270px;}
.fs9{font-size:33.114252px;}
.fs3{font-size:33.120000px;}
.fs2{font-size:38.880000px;}
.fsf{font-size:38.971098px;}
.fsb{font-size:39.001410px;}
.fs8{font-size:39.069156px;}
.fse{font-size:40.345320px;}
.fsc{font-size:40.398588px;}
.fs6{font-size:47.520000px;}
.fs7{font-size:47.664000px;}
.fs5{font-size:48.000000px;}
.fsa{font-size:48.024252px;}
.fs4{font-size:54.720000px;}
.fs11{font-size:54.864000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y131{bottom:2.214440px;}
.y103{bottom:2.240895px;}
.y1a1{bottom:2.252349px;}
.y26{bottom:2.544002px;}
.ya1{bottom:3.944989px;}
.ya0{bottom:3.944994px;}
.y9e{bottom:3.944997px;}
.y120{bottom:3.945033px;}
.y11e{bottom:3.945036px;}
.y11c{bottom:3.945040px;}
.y7d{bottom:3.959978px;}
.y88{bottom:3.959994px;}
.y90{bottom:3.959997px;}
.y86{bottom:3.959998px;}
.y97{bottom:3.960000px;}
.y82{bottom:3.960001px;}
.y95{bottom:3.960003px;}
.yfb{bottom:3.960015px;}
.y14c{bottom:3.960018px;}
.yff{bottom:3.960022px;}
.y14f{bottom:3.975026px;}
.y8b{bottom:4.004998px;}
.y122{bottom:4.304985px;}
.y11a{bottom:4.305030px;}
.y81{bottom:4.319991px;}
.y91{bottom:4.319992px;}
.yfd{bottom:4.320010px;}
.y8e{bottom:4.680002px;}
.y171{bottom:5.556112px;}
.y28{bottom:5.969550px;}
.y1a7{bottom:7.472067px;}
.y16c{bottom:8.124243px;}
.ydb{bottom:12.570006px;}
.y193{bottom:12.675036px;}
.yb5{bottom:12.749964px;}
.y1c3{bottom:12.990043px;}
.y7f{bottom:14.399990px;}
.y102{bottom:14.531208px;}
.y9b{bottom:14.745007px;}
.y130{bottom:16.100334px;}
.y1a6{bottom:17.264396px;}
.y16b{bottom:20.122436px;}
.y170{bottom:23.726386px;}
.y93{bottom:24.120000px;}
.y8d{bottom:24.120011px;}
.y1a8{bottom:26.517996px;}
.y101{bottom:26.821510px;}
.y12f{bottom:29.941334px;}
.y16a{bottom:32.165672px;}
.y9a{bottom:34.184995px;}
.yad{bottom:34.200036px;}
.y172{bottom:34.718482px;}
.yb6{bottom:34.845025px;}
.ybf{bottom:35.099989px;}
.ydc{bottom:35.745001px;}
.y1a4{bottom:40.069328px;}
.y25{bottom:40.595999px;}
.y189{bottom:41.399982px;}
.y194{bottom:42.090015px;}
.y1b9{bottom:43.455040px;}
.y12e{bottom:43.782344px;}
.y169{bottom:44.163862px;}
.y1c4{bottom:44.175010px;}
.y84{bottom:44.684991px;}
.yae{bottom:47.235040px;}
.y10c{bottom:49.564440px;}
.yc0{bottom:50.219992px;}
.ydd{bottom:50.910001px;}
.y10a{bottom:52.385936px;}
.y99{bottom:53.654989px;}
.y173{bottom:54.690534px;}
.y12d{bottom:57.623355px;}
.yaf{bottom:60.270043px;}
.y10d{bottom:60.884066px;}
.yb7{bottom:60.915033px;}
.yc1{bottom:65.370001px;}
.yde{bottom:66.060010px;}
.y1a9{bottom:66.766372px;}
.y18a{bottom:68.969989px;}
.y195{bottom:69.629992px;}
.y1ba{bottom:70.710015px;}
.y1c5{bottom:71.460015px;}
.yb0{bottom:73.290033px;}
.y16e{bottom:73.507046px;}
.y174{bottom:74.782772px;}
.y109{bottom:79.355906px;}
.yc2{bottom:80.535001px;}
.ydf{bottom:81.179991px;}
.y182{bottom:82.065506px;}
.y141{bottom:83.943534px;}
.y43{bottom:85.839801px;}
.yb8{bottom:86.970025px;}
.y117{bottom:88.004347px;}
.y6b{bottom:89.436048px;}
.ya5{bottom:91.964207px;}
.y187{bottom:91.964565px;}
.y10e{bottom:93.902386px;}
.y175{bottom:94.754824px;}
.yc3{bottom:95.685011px;}
.ye0{bottom:96.330000px;}
.y18b{bottom:96.509967px;}
.y142{bottom:96.737114px;}
.y196{bottom:97.200000px;}
.y1bb{bottom:97.995018px;}
.y1c6{bottom:98.745018px;}
.yb1{bottom:99.360040px;}
.y108{bottom:102.592517px;}
.y1b7{bottom:106.723859px;}
.y1aa{bottom:106.969931px;}
.y1e2{bottom:107.437698px;}
.y116{bottom:107.444995px;}
.y133{bottom:110.249220px;}
.yc4{bottom:110.849989px;}
.y42{bottom:111.400161px;}
.y149{bottom:111.404996px;}
.ye1{bottom:111.495001px;}
.yb2{bottom:112.395043px;}
.yb9{bottom:113.040033px;}
.y16f{bottom:113.991528px;}
.y136{bottom:114.289282px;}
.y176{bottom:114.831912px;}
.y6a{bottom:114.996408px;}
.y139{bottom:115.695829px;}
.ya4{bottom:117.524567px;}
.y186{bottom:117.524925px;}
.y24{bottom:122.560935px;}
.y18c{bottom:124.094990px;}
.y197{bottom:124.739978px;}
.y1bc{bottom:125.280022px;}
.yb3{bottom:125.385003px;}
.y1c7{bottom:125.999992px;}
.yc5{bottom:125.999998px;}
.ye2{bottom:126.645010px;}
.y1e1{bottom:126.878346px;}
.y10f{bottom:126.980287px;}
.y13c{bottom:128.130292px;}
.y1b6{bottom:132.328931px;}
.y107{bottom:133.234667px;}
.y10b{bottom:133.837500px;}
.y177{bottom:134.803964px;}
.y138{bottom:135.058272px;}
.yab{bottom:136.290001px;}
.y13e{bottom:136.449873px;}
.y41{bottom:137.005233px;}
.y100{bottom:139.033500px;}
.yba{bottom:139.110040px;}
.y135{bottom:139.203093px;}
.y140{bottom:139.251000px;}
.y137{bottom:140.549787px;}
.y69{bottom:140.960832px;}
.yc6{bottom:141.120001px;}
.ye3{bottom:141.810010px;}
.ya3{bottom:143.129639px;}
.y185{bottom:143.129997px;}
.y143{bottom:146.355771px;}
.y12c{bottom:146.508000px;}
.y1e0{bottom:146.723922px;}
.y1ab{bottom:147.218306px;}
.y23{bottom:148.166007px;}
.y18d{bottom:151.634967px;}
.y198{bottom:152.279957px;}
.y1bd{bottom:152.534997px;}
.y1c8{bottom:153.284997px;}
.y13d{bottom:153.956862px;}
.y178{bottom:154.896202px;}
.yc7{bottom:156.270010px;}
.ye4{bottom:156.959997px;}
.y110{bottom:160.117768px;}
.y13f{bottom:161.184126px;}
.y40{bottom:162.565593px;}
.ybe{bottom:164.295000px;}
.y1b5{bottom:164.369219px;}
.ybb{bottom:165.165033px;}
.y1df{bottom:166.164570px;}
.y15e{bottom:166.167962px;}
.y68{bottom:166.521192px;}
.y13b{bottom:167.325025px;}
.ya2{bottom:168.689999px;}
.yc8{bottom:171.435011px;}
.ye5{bottom:172.080000px;}
.y22{bottom:173.726367px;}
.y179{bottom:174.898553px;}
.y105{bottom:175.075503px;}
.y18e{bottom:179.204975px;}
.y1be{bottom:179.820000px;}
.y199{bottom:179.849964px;}
.y1c9{bottom:180.570000px;}
.y134{bottom:181.929151px;}
.y184{bottom:182.729350px;}
.y13a{bottom:183.709806px;}
.y1de{bottom:185.605218px;}
.yc9{bottom:186.584997px;}
.ye6{bottom:187.230009px;}
.y1ac{bottom:187.460837px;}
.y3f{bottom:188.485305px;}
.ybc{bottom:191.235040px;}
.y15d{bottom:191.728322px;}
.y67{bottom:192.081552px;}
.y111{bottom:193.141949px;}
.y17a{bottom:194.945342px;}
.y144{bottom:196.063273px;}
.y104{bottom:196.753500px;}
.y106{bottom:197.335428px;}
.y21{bottom:199.286727px;}
.yca{bottom:201.749998px;}
.y183{bottom:202.169998px;}
.ye7{bottom:202.395010px;}
.y1dd{bottom:205.045866px;}
.y18f{bottom:206.745044px;}
.y1bf{bottom:207.105003px;}
.y1b4{bottom:207.209939px;}
.y19a{bottom:207.390033px;}
.y1ca{bottom:207.870018px;}
.y3e{bottom:214.045665px;}
.y17b{bottom:214.954763px;}
.y98{bottom:215.865000px;}
.ycb{bottom:216.870001px;}
.ybd{bottom:217.290033px;}
.ye8{bottom:217.544997px;}
.y66{bottom:217.641912px;}
.y15c{bottom:217.648034px;}
.y1dc{bottom:224.486514px;}
.y20{bottom:224.847087px;}
.y112{bottom:226.208129px;}
.y1ad{bottom:227.703367px;}
.yb4{bottom:229.650018px;}
.y168{bottom:230.016000px;}
.y1a3{bottom:230.602013px;}
.ycc{bottom:232.019986px;}
.ye9{bottom:232.710019px;}
.y1b3{bottom:232.770299px;}
.y190{bottom:234.285022px;}
.y1c0{bottom:234.390007px;}
.y19b{bottom:234.974964px;}
.y17c{bottom:235.000542px;}
.y1cb{bottom:235.109978px;}
.y9f{bottom:236.025000px;}
.y132{bottom:239.295000px;}
.y3d{bottom:239.606025px;}
.y65{bottom:243.202272px;}
.y15b{bottom:243.208394px;}
.y1db{bottom:243.927162px;}
.y145{bottom:245.756367px;}
.ycd{bottom:247.169997px;}
.yea{bottom:247.830000px;}
.y1f{bottom:250.407447px;}
.y17d{bottom:255.009963px;}
.y9d{bottom:256.185000px;}
.y1b2{bottom:258.690011px;}
.y113{bottom:259.345611px;}
.y1c1{bottom:261.644982px;}
.y191{bottom:261.870043px;}
.yce{bottom:262.335019px;}
.y1cc{bottom:262.409997px;}
.y19c{bottom:262.515033px;}
.yeb{bottom:262.980009px;}
.y1da{bottom:263.727594px;}
.y3c{bottom:265.166385px;}
.y16d{bottom:267.736500px;}
.y1ae{bottom:267.947845px;}
.y64{bottom:268.792440px;}
.y15a{bottom:268.798562px;}
.y17e{bottom:275.055742px;}
.y1e{bottom:275.997615px;}
.y9c{bottom:276.360000px;}
.ycf{bottom:277.484983px;}
.yec{bottom:278.130018px;}
.y1d9{bottom:283.196970px;}
.y1c2{bottom:288.929985px;}
.y192{bottom:289.403979px;}
.y1cd{bottom:289.695000px;}
.y19d{bottom:290.087970px;}
.y3b{bottom:290.756553px;}
.y114{bottom:292.375652px;}
.yd0{bottom:292.605009px;}
.yed{bottom:293.294997px;}
.y63{bottom:294.352800px;}
.y159{bottom:294.358922px;}
.y17f{bottom:295.065163px;}
.y146{bottom:295.378626px;}
.y92{bottom:296.880000px;}
.y1b1{bottom:298.319346px;}
.y1d{bottom:301.557975px;}
.y1d8{bottom:302.637618px;}
.yd1{bottom:307.769986px;}
.y1af{bottom:308.262472px;}
.yee{bottom:308.445006px;}
.y180{bottom:315.146291px;}
.y3a{bottom:316.316913px;}
.y96{bottom:317.040000px;}
.y1b0{bottom:317.759994px;}
.y62{bottom:319.913160px;}
.y158{bottom:319.919282px;}
.y1d7{bottom:322.078266px;}
.yd2{bottom:322.919997px;}
.yef{bottom:323.564985px;}
.y115{bottom:325.513133px;}
.y1c{bottom:327.118335px;}
.y181{bottom:335.191060px;}
.y94{bottom:337.200000px;}
.yd3{bottom:338.070006px;}
.yf0{bottom:338.730009px;}
.y1d6{bottom:341.518914px;}
.y39{bottom:341.877273px;}
.y147{bottom:345.074122px;}
.y1a5{bottom:345.190500px;}
.y61{bottom:345.473520px;}
.y157{bottom:345.479642px;}
.y1b{bottom:353.038047px;}
.yd4{bottom:353.234983px;}
.yf1{bottom:353.880018px;}
.y8c{bottom:357.360000px;}
.y1d5{bottom:360.959562px;}
.y38{bottom:367.437633px;}
.yd5{bottom:368.355009px;}
.yf2{bottom:369.029982px;}
.y60{bottom:371.033880px;}
.y156{bottom:371.040002px;}
.y1a2{bottom:373.744500px;}
.y8f{bottom:377.880000px;}
.y1a{bottom:378.598407px;}
.y1d4{bottom:380.759994px;}
.yd6{bottom:383.505018px;}
.yf3{bottom:384.195006px;}
.y37{bottom:392.997993px;}
.y148{bottom:394.772020px;}
.y5f{bottom:396.953592px;}
.y83{bottom:398.040000px;}
.yd7{bottom:398.669997px;}
.yf4{bottom:399.314985px;}
.y19{bottom:404.203479px;}
.y1d3{bottom:410.324982px;}
.y155{bottom:410.685013px;}
.yd8{bottom:413.820006px;}
.yf5{bottom:414.464994px;}
.y8a{bottom:418.245000px;}
.y36{bottom:418.962417px;}
.y5e{bottom:422.558664px;}
.yd9{bottom:428.970015px;}
.yf6{bottom:429.630018px;}
.y18{bottom:429.763839px;}
.y89{bottom:438.405000px;}
.yda{bottom:444.134992px;}
.y35{bottom:444.522777px;}
.yf7{bottom:444.779982px;}
.y5d{bottom:448.119024px;}
.y1d2{bottom:452.445676px;}
.y17{bottom:455.324199px;}
.y87{bottom:458.925000px;}
.y34{bottom:470.083137px;}
.y5c{bottom:473.679384px;}
.yfe{bottom:475.125000px;}
.y85{bottom:479.085000px;}
.y16{bottom:480.884559px;}
.y1d1{bottom:482.325533px;}
.yfc{bottom:495.285000px;}
.y33{bottom:495.643497px;}
.y5b{bottom:499.239744px;}
.y7e{bottom:499.245000px;}
.y1d0{bottom:503.205316px;}
.y15{bottom:506.444919px;}
.yfa{bottom:515.805000px;}
.y80{bottom:519.405000px;}
.y32{bottom:521.203857px;}
.y1cf{bottom:524.085101px;}
.y5a{bottom:524.800104px;}
.yf9{bottom:535.995000px;}
.y14{bottom:538.515015px;}
.y7c{bottom:539.955000px;}
.y1ce{bottom:544.994980px;}
.y31{bottom:546.794025px;}
.y59{bottom:550.390272px;}
.y201{bottom:556.503867px;}
.y12b{bottom:558.313320px;}
.yf8{bottom:569.115006px;}
.y30{bottom:572.354385px;}
.y7b{bottom:573.074982px;}
.y200{bottom:575.944515px;}
.y58{bottom:575.950632px;}
.y12a{bottom:583.873680px;}
.y167{bottom:586.753307px;}
.y1ff{bottom:595.385163px;}
.y2f{bottom:597.914745px;}
.y57{bottom:601.510992px;}
.y13{bottom:601.872989px;}
.y7a{bottom:605.470488px;}
.y129{bottom:609.434040px;}
.y166{bottom:612.313666px;}
.y1fe{bottom:614.825811px;}
.y2e{bottom:623.475105px;}
.y56{bottom:627.430704px;}
.y1fd{bottom:634.266459px;}
.y128{bottom:634.994400px;}
.y79{bottom:637.510776px;}
.y165{bottom:637.874027px;}
.yaa{bottom:644.714130px;}
.y12{bottom:645.793421px;}
.y2d{bottom:649.394817px;}
.y55{bottom:652.991064px;}
.y1fc{bottom:654.066891px;}
.y127{bottom:660.554760px;}
.y1a0{bottom:662.245500px;}
.y164{bottom:663.434387px;}
.ya9{bottom:670.304298px;}
.y1fb{bottom:673.536267px;}
.y2c{bottom:674.984985px;}
.y54{bottom:678.581232px;}
.y78{bottom:680.381304px;}
.y126{bottom:686.504280px;}
.y11{bottom:689.023301px;}
.y163{bottom:689.024555px;}
.y19f{bottom:689.024662px;}
.y1fa{bottom:692.976915px;}
.ya8{bottom:695.864658px;}
.y53{bottom:704.141592px;}
.y77{bottom:705.941664px;}
.y125{bottom:712.064640px;}
.y1f9{bottom:712.417563px;}
.y10{bottom:714.583661px;}
.y162{bottom:714.584914px;}
.y2b{bottom:714.585022px;}
.ya7{bottom:721.425018px;}
.y52{bottom:729.701952px;}
.y76{bottom:731.502024px;}
.y1f8{bottom:731.858211px;}
.y124{bottom:737.625000px;}
.yf{bottom:740.144021px;}
.y161{bottom:740.504627px;}
.y1f7{bottom:751.298859px;}
.y19e{bottom:754.544999px;}
.y51{bottom:755.262312px;}
.y75{bottom:757.421736px;}
.ya6{bottom:761.025009px;}
.ye{bottom:765.704381px;}
.y160{bottom:766.064987px;}
.y123{bottom:767.520000px;}
.y1f6{bottom:771.099291px;}
.y50{bottom:780.822672px;}
.y154{bottom:781.543805px;}
.y1b8{bottom:782.055000px;}
.y74{bottom:782.982096px;}
.y121{bottom:787.680000px;}
.y1f5{bottom:790.539939px;}
.yd{bottom:791.264741px;}
.yac{bottom:791.775000px;}
.y15f{bottom:805.710022px;}
.y4f{bottom:806.427744px;}
.y153{bottom:807.148877px;}
.y11f{bottom:808.245000px;}
.y73{bottom:808.587168px;}
.y1f4{bottom:810.024363px;}
.yc{bottom:816.869813px;}
.y11d{bottom:828.405000px;}
.y1f3{bottom:829.463643px;}
.y4e{bottom:831.988104px;}
.y152{bottom:832.709237px;}
.y188{bottom:833.175000px;}
.y72{bottom:834.147528px;}
.yb{bottom:842.430173px;}
.y11b{bottom:848.565000px;}
.y1f2{bottom:848.904291px;}
.y4d{bottom:857.907816px;}
.y151{bottom:858.269597px;}
.y71{bottom:859.707888px;}
.ya{bottom:867.990533px;}
.y1f1{bottom:868.344939px;}
.y119{bottom:868.725000px;}
.y4c{bottom:883.468176px;}
.y150{bottom:883.829957px;}
.y70{bottom:885.268248px;}
.y1f0{bottom:888.145371px;}
.y9{bottom:893.910245px;}
.y118{bottom:902.190033px;}
.y1ef{bottom:907.586019px;}
.y4b{bottom:909.028536px;}
.y6f{bottom:910.828608px;}
.y8{bottom:919.829957px;}
.y1ee{bottom:927.026667px;}
.y14e{bottom:930.645000px;}
.y4a{bottom:934.618704px;}
.y6e{bottom:936.418776px;}
.y1ed{bottom:946.496043px;}
.y14d{bottom:951.180000px;}
.y49{bottom:960.179064px;}
.y6d{bottom:961.979136px;}
.y7{bottom:961.980201px;}
.y1ec{bottom:965.936691px;}
.y14b{bottom:971.340000px;}
.y1eb{bottom:985.377339px;}
.y48{bottom:985.739424px;}
.y6{bottom:986.460022px;}
.y6c{bottom:994.019424px;}
.y14a{bottom:1004.460022px;}
.y1ea{bottom:1005.177771px;}
.y5{bottom:1007.339997px;}
.y47{bottom:1011.299784px;}
.y1e9{bottom:1024.618419px;}
.y4{bottom:1028.219970px;}
.y46{bottom:1036.860144px;}
.y1e8{bottom:1044.059067px;}
.y3{bottom:1055.940606px;}
.y45{bottom:1062.420504px;}
.y1e7{bottom:1063.499715px;}
.y2{bottom:1081.905030px;}
.y1e6{bottom:1082.984139px;}
.y44{bottom:1088.384928px;}
.y1e5{bottom:1102.424787px;}
.y2a{bottom:1113.938664px;}
.y1e4{bottom:1122.218379px;}
.y1{bottom:1125.098968px;}
.y29{bottom:1139.499024px;}
.y1e3{bottom:1141.659027px;}
.y27{bottom:1159.243500px;}
.h2b{height:12.795000px;}
.h7{height:13.404001px;}
.h9{height:19.320000px;}
.he{height:19.425000px;}
.hb{height:19.440000px;}
.h11{height:19.470000px;}
.h10{height:19.785000px;}
.hd{height:19.830000px;}
.h2f{height:31.266165px;}
.h28{height:33.858176px;}
.h1e{height:34.537130px;}
.ha{height:35.952000px;}
.h1b{height:37.453500px;}
.h12{height:39.945000px;}
.hc{height:39.990000px;}
.h2c{height:40.645637px;}
.h23{height:40.677252px;}
.h1c{height:40.747909px;}
.h29{height:42.078908px;}
.h26{height:42.134465px;}
.h5{height:42.946410px;}
.h4{height:42.946782px;}
.h16{height:48.216094px;}
.h18{height:48.362203px;}
.h8{height:50.062500px;}
.h21{height:50.087794px;}
.h31{height:55.521563px;}
.h30{height:55.667672px;}
.h6{height:57.346560px;}
.h13{height:59.745000px;}
.h3{height:69.419520px;}
.h20{height:69.564000px;}
.h14{height:80.280000px;}
.h17{height:100.356106px;}
.hf{height:100.470000px;}
.h2{height:113.184000px;}
.h15{height:257.040000px;}
.h1d{height:265.389000px;}
.h2d{height:282.496500px;}
.h22{height:298.759500px;}
.h27{height:300.642000px;}
.h2a{height:324.000000px;}
.h2e{height:335.854500px;}
.h1f{height:338.782500px;}
.h25{height:349.179000px;}
.h24{height:411.519000px;}
.h19{height:413.136142px;}
.h1a{height:472.680000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w1{width:20.015991px;}
.w5{width:63.705000px;}
.w4{width:63.720000px;}
.w7{width:128.160000px;}
.w6{width:137.205000px;}
.w2{width:187.092000px;}
.w12{width:333.141000px;}
.w3{width:403.710000px;}
.w15{width:419.154000px;}
.wc{width:424.176000px;}
.w14{width:440.910000px;}
.wb{width:445.942500px;}
.w16{width:447.453000px;}
.wd{width:452.910000px;}
.w11{width:465.078000px;}
.w8{width:508.320000px;}
.wf{width:518.949000px;}
.wa{width:520.005000px;}
.we{width:539.964000px;}
.w17{width:540.000000px;}
.w10{width:550.122000px;}
.w13{width:627.840000px;}
.w9{width:671.760000px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:2.250000px;}
.x68{left:5.179932px;}
.x1e{left:6.471001px;}
.x14{left:8.279989px;}
.x2d{left:9.900008px;}
.x6c{left:11.145016px;}
.x7c{left:12.674940px;}
.x11{left:14.040008px;}
.x1b{left:16.551003px;}
.xb{left:18.710995px;}
.x6f{left:21.634271px;}
.x10{left:23.750995px;}
.x9{left:25.905020px;}
.x17{left:27.350999px;}
.x13{left:29.880003px;}
.x53{left:32.115003px;}
.x55{left:34.410001px;}
.x54{left:37.470003px;}
.xd{left:38.505011px;}
.x51{left:39.600000px;}
.x18{left:41.786999px;}
.x4d{left:42.809999px;}
.x58{left:43.845003px;}
.xe{left:45.720009px;}
.x1f{left:47.550003px;}
.x71{left:49.279671px;}
.x12{left:52.200019px;}
.x2e{left:53.205000px;}
.x6a{left:55.785003px;}
.x30{left:57.599989px;}
.x31{left:59.190007px;}
.x7d{left:60.825003px;}
.x50{left:63.360006px;}
.x32{left:67.245001px;}
.x92{left:69.405004px;}
.x16{left:70.559997px;}
.x2c{left:75.929991px;}
.x74{left:76.961029px;}
.x59{left:78.945005px;}
.x2f{left:82.049994px;}
.x21{left:86.415015px;}
.x56{left:92.520009px;}
.x62{left:97.908388px;}
.x52{left:99.825001px;}
.x7b{left:102.055071px;}
.x76{left:104.604943px;}
.x1{left:106.235995px;}
.x1a{left:108.764998px;}
.x4{left:110.829000px;}
.x67{left:112.571999px;}
.x80{left:114.912219px;}
.x5d{left:115.934990px;}
.x2b{left:122.580000px;}
.x5e{left:128.174994px;}
.x8a{left:129.630001px;}
.x78{left:132.242836px;}
.x15{left:134.684997px;}
.x2{left:138.274627px;}
.x57{left:139.469991px;}
.x8b{left:140.939991px;}
.x4c{left:145.110006px;}
.x5a{left:150.210000px;}
.xf{left:151.964981px;}
.x64{left:154.406701px;}
.x91{left:156.495001px;}
.x1d{left:159.524993px;}
.x7{left:161.325010px;}
.x1c{left:162.764998px;}
.x6b{left:165.615004px;}
.x7a{left:167.205000px;}
.x6d{left:172.450500px;}
.x20{left:173.565016px;}
.x25{left:175.605009px;}
.xc{left:177.915008px;}
.x23{left:179.354994px;}
.x26{left:181.724989px;}
.x69{left:183.660003px;}
.x22{left:185.114990px;}
.x24{left:187.920000px;}
.x19{left:191.235015px;}
.x6e{left:192.700500px;}
.x4e{left:194.940008px;}
.x8d{left:202.499998px;}
.x27{left:209.339994px;}
.x4f{left:210.780003px;}
.x28{left:212.429991px;}
.x8e{left:214.095015px;}
.x66{left:215.805000px;}
.x29{left:218.550016px;}
.x5f{left:219.562500px;}
.x72{left:222.032379px;}
.x5b{left:235.500023px;}
.x60{left:239.844000px;}
.x7f{left:241.781428px;}
.x6{left:244.905000px;}
.x75{left:249.670273px;}
.x61{left:253.156443px;}
.x8f{left:270.464994px;}
.x8c{left:272.192685px;}
.x77{left:277.353120px;}
.x89{left:283.574985px;}
.x79{left:305.006028px;}
.x63{left:309.672723px;}
.x4b{left:314.850010px;}
.x81{left:324.509998px;}
.x33{left:340.559987px;}
.x34{left:349.379994px;}
.x65{left:366.099009px;}
.x70{left:367.142640px;}
.x7e{left:385.760112px;}
.x35{left:392.969991px;}
.x73{left:394.780580px;}
.x82{left:403.095019px;}
.x36{left:406.770009px;}
.x83{left:419.324985px;}
.x37{left:424.799993px;}
.x38{left:426.495000px;}
.x39{left:434.129994px;}
.x3{left:436.617004px;}
.x3a{left:442.334997px;}
.x3b{left:451.049993px;}
.x3c{left:453.629994px;}
.x2a{left:458.070006px;}
.x3d{left:460.875020px;}
.x90{left:469.185010px;}
.x3e{left:477.434987px;}
.x3f{left:487.334997px;}
.x40{left:496.364981px;}
.x41{left:497.549993px;}
.x42{left:508.500019px;}
.x43{left:516.524984px;}
.x44{left:518.549993px;}
.x45{left:520.739981px;}
.x46{left:532.830023px;}
.x47{left:543.030003px;}
.x84{left:544.679997px;}
.x85{left:561.959981px;}
.x48{left:564.045018px;}
.x86{left:568.980015px;}
.x87{left:573.945010px;}
.x88{left:586.439991px;}
.x49{left:627.299993px;}
.x4a{left:636.089970px;}
.x8{left:649.350000px;}
.x5c{left:670.950000px;}
.xa{left:713.805000px;}
@media print{
.vc{vertical-align:-29.580645pt;}
.vb{vertical-align:-18.461344pt;}
.v2{vertical-align:-16.639973pt;}
.v3{vertical-align:-12.799803pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.639973pt;}
.v4{vertical-align:46.346677pt;}
.v5{vertical-align:92.693360pt;}
.v6{vertical-align:139.040043pt;}
.v7{vertical-align:185.333333pt;}
.v8{vertical-align:231.680016pt;}
.v9{vertical-align:278.026693pt;}
.va{vertical-align:324.373376pt;}
.ls39{letter-spacing:-2.778251pt;}
.ls64{letter-spacing:-1.653760pt;}
.ls18{letter-spacing:-1.410560pt;}
.ls3a{letter-spacing:-1.389126pt;}
.ls42{letter-spacing:-1.352049pt;}
.ls5b{letter-spacing:-1.264640pt;}
.ls6d{letter-spacing:-1.216000pt;}
.ls65{letter-spacing:-1.118720pt;}
.ls14{letter-spacing:-0.972800pt;}
.ls25{letter-spacing:-0.826880pt;}
.ls41{letter-spacing:-0.647680pt;}
.ls6c{letter-spacing:-0.632320pt;}
.ls5a{letter-spacing:-0.623538pt;}
.ls5c{letter-spacing:-0.529920pt;}
.ls1c{letter-spacing:-0.471040pt;}
.ls12{letter-spacing:-0.412160pt;}
.ls5d{letter-spacing:-0.390144pt;}
.ls1e{letter-spacing:-0.353280pt;}
.ls26{letter-spacing:-0.340480pt;}
.ls10{letter-spacing:-0.294400pt;}
.ls1d{letter-spacing:-0.291840pt;}
.ls54{letter-spacing:-0.243200pt;}
.ls29{letter-spacing:-0.235520pt;}
.ls53{letter-spacing:-0.215459pt;}
.ls24{letter-spacing:-0.194560pt;}
.ls1a{letter-spacing:-0.176640pt;}
.ls27{letter-spacing:-0.145920pt;}
.ls11{letter-spacing:-0.117760pt;}
.ls15{letter-spacing:-0.097280pt;}
.lse{letter-spacing:-0.096000pt;}
.ls34{letter-spacing:-0.084480pt;}
.ls13{letter-spacing:-0.058880pt;}
.ls17{letter-spacing:-0.048640pt;}
.lsf{letter-spacing:0.000000pt;}
.ls6b{letter-spacing:0.034048pt;}
.ls51{letter-spacing:0.035910pt;}
.lsa{letter-spacing:0.048640pt;}
.ls62{letter-spacing:0.058880pt;}
.ls16{letter-spacing:0.097280pt;}
.lsd{letter-spacing:0.117760pt;}
.ls2c{letter-spacing:0.122496pt;}
.ls63{letter-spacing:0.145920pt;}
.ls6{letter-spacing:0.158976pt;}
.ls67{letter-spacing:0.165376pt;}
.ls0{letter-spacing:0.176640pt;}
.ls59{letter-spacing:0.194560pt;}
.ls66{letter-spacing:0.243200pt;}
.ls68{letter-spacing:0.277248pt;}
.ls58{letter-spacing:0.291840pt;}
.ls20{letter-spacing:0.294400pt;}
.ls30{letter-spacing:0.296576pt;}
.ls4{letter-spacing:0.316139pt;}
.ls2a{letter-spacing:0.337920pt;}
.ls61{letter-spacing:0.340480pt;}
.ls69{letter-spacing:0.374528pt;}
.ls35{letter-spacing:0.412088pt;}
.ls21{letter-spacing:0.437760pt;}
.ls5e{letter-spacing:0.442624pt;}
.ls22{letter-spacing:0.442853pt;}
.ls31{letter-spacing:0.464640pt;}
.ls6a{letter-spacing:0.535040pt;}
.ls32{letter-spacing:0.549120pt;}
.ls2d{letter-spacing:0.566016pt;}
.ls52{letter-spacing:0.593152pt;}
.ls28{letter-spacing:0.632320pt;}
.ls2f{letter-spacing:0.633600pt;}
.lsc{letter-spacing:0.635904pt;}
.ls1{letter-spacing:0.640005pt;}
.ls2{letter-spacing:0.640085pt;}
.ls1b{letter-spacing:0.647680pt;}
.ls40{letter-spacing:0.683012pt;}
.ls23{letter-spacing:0.729600pt;}
.lsb{letter-spacing:0.765440pt;}
.ls38{letter-spacing:0.778240pt;}
.ls2b{letter-spacing:0.802560pt;}
.ls50{letter-spacing:0.883200pt;}
.ls3f{letter-spacing:0.981829pt;}
.ls55{letter-spacing:1.039229pt;}
.ls2e{letter-spacing:1.043328pt;}
.ls1f{letter-spacing:1.118720pt;}
.ls56{letter-spacing:1.172475pt;}
.ls33{letter-spacing:1.224960pt;}
.ls47{letter-spacing:1.236480pt;}
.ls3e{letter-spacing:1.237958pt;}
.ls43{letter-spacing:1.295360pt;}
.ls4c{letter-spacing:1.354240pt;}
.ls4e{letter-spacing:1.884160pt;}
.ls4f{letter-spacing:1.943040pt;}
.ls36{letter-spacing:4.474880pt;}
.ls37{letter-spacing:7.065600pt;}
.ls5{letter-spacing:8.319936pt;}
.ls57{letter-spacing:10.880768pt;}
.ls3b{letter-spacing:10.957568pt;}
.ls60{letter-spacing:12.077312pt;}
.ls5f{letter-spacing:12.160000pt;}
.ls49{letter-spacing:12.235264pt;}
.ls8{letter-spacing:12.267008pt;}
.ls48{letter-spacing:12.800512pt;}
.ls19{letter-spacing:13.424640pt;}
.ls9{letter-spacing:13.439232pt;}
.ls46{letter-spacing:13.518848pt;}
.ls4a{letter-spacing:13.671936pt;}
.ls3{letter-spacing:14.720000pt;}
.ls3c{letter-spacing:16.074240pt;}
.ls45{letter-spacing:16.639488pt;}
.ls4d{letter-spacing:20.478464pt;}
.ls3d{letter-spacing:21.196800pt;}
.ls4b{letter-spacing:24.959232pt;}
.ls44{letter-spacing:31.595008pt;}
.ls7{letter-spacing:37.760021pt;}
.ws10{word-spacing:-44.336640pt;}
.ws3d{word-spacing:-37.977600pt;}
.ws3c{word-spacing:-35.386880pt;}
.ws7{word-spacing:-35.269120pt;}
.ws1e{word-spacing:-31.677440pt;}
.ws18{word-spacing:-31.559680pt;}
.ws17{word-spacing:-30.912000pt;}
.ws60{word-spacing:-27.189760pt;}
.ws7a{word-spacing:-25.536000pt;}
.ws7d{word-spacing:-25.390080pt;}
.ws79{word-spacing:-24.563200pt;}
.ws7c{word-spacing:-24.271360pt;}
.ws3a{word-spacing:-19.388160pt;}
.ws39{word-spacing:-18.965760pt;}
.ws35{word-spacing:-18.712320pt;}
.ws53{word-spacing:-16.015360pt;}
.ws1c{word-spacing:-15.838720pt;}
.ws52{word-spacing:-15.603200pt;}
.ws13{word-spacing:-15.485440pt;}
.ws1{word-spacing:-14.896640pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1b{word-spacing:-14.661120pt;}
.ws5{word-spacing:-14.602240pt;}
.ws3{word-spacing:-14.425600pt;}
.ws6{word-spacing:-14.307840pt;}
.ws25{word-spacing:-14.248960pt;}
.ws27{word-spacing:-13.278720pt;}
.ws6a{word-spacing:-12.938240pt;}
.ws68{word-spacing:-12.792320pt;}
.ws75{word-spacing:-12.695040pt;}
.ws22{word-spacing:-12.597760pt;}
.ws80{word-spacing:-12.305920pt;}
.ws9{word-spacing:-12.257280pt;}
.ws8{word-spacing:-12.208640pt;}
.wsd{word-spacing:-12.160000pt;}
.wsa{word-spacing:-12.111360pt;}
.ws6b{word-spacing:-12.062720pt;}
.ws70{word-spacing:-12.014080pt;}
.ws23{word-spacing:-11.965440pt;}
.ws6f{word-spacing:-11.916800pt;}
.ws21{word-spacing:-11.868160pt;}
.ws5b{word-spacing:-11.187200pt;}
.ws5a{word-spacing:-10.992640pt;}
.ws58{word-spacing:-10.895360pt;}
.ws29{word-spacing:-10.749440pt;}
.ws56{word-spacing:-10.669421pt;}
.ws38{word-spacing:-10.348800pt;}
.ws36{word-spacing:-10.095360pt;}
.ws37{word-spacing:-9.546240pt;}
.ws42{word-spacing:-8.594988pt;}
.ws4e{word-spacing:-8.285633pt;}
.ws44{word-spacing:-8.265297pt;}
.ws51{word-spacing:-1.919488pt;}
.ws1d{word-spacing:-1.913600pt;}
.ws5c{word-spacing:-1.860608pt;}
.ws1a{word-spacing:-1.672192pt;}
.ws73{word-spacing:-1.498112pt;}
.ws69{word-spacing:-1.269504pt;}
.ws40{word-spacing:-1.225728pt;}
.ws3f{word-spacing:-1.021440pt;}
.ws76{word-spacing:-0.846336pt;}
.ws64{word-spacing:-0.763648pt;}
.ws41{word-spacing:-0.748331pt;}
.ws71{word-spacing:-0.685824pt;}
.ws65{word-spacing:-0.646912pt;}
.ws50{word-spacing:-0.529920pt;}
.ws5e{word-spacing:-0.496128pt;}
.ws19{word-spacing:-0.481536pt;}
.ws57{word-spacing:-0.452352pt;}
.ws1f{word-spacing:-0.406272pt;}
.ws6e{word-spacing:-0.393984pt;}
.ws66{word-spacing:-0.355072pt;}
.ws12{word-spacing:-0.264960pt;}
.ws7b{word-spacing:-0.082688pt;}
.ws20{word-spacing:-0.048640pt;}
.ws2{word-spacing:0.000000pt;}
.ws77{word-spacing:0.141056pt;}
.ws81{word-spacing:0.160512pt;}
.ws15{word-spacing:0.406272pt;}
.ws14{word-spacing:0.494592pt;}
.ws7f{word-spacing:0.627456pt;}
.ws0{word-spacing:0.777216pt;}
.ws26{word-spacing:0.817152pt;}
.ws28{word-spacing:0.831744pt;}
.wsc{word-spacing:0.890112pt;}
.ws5f{word-spacing:1.026304pt;}
.ws63{word-spacing:1.225728pt;}
.ws16{word-spacing:1.277696pt;}
.wsb{word-spacing:1.279232pt;}
.ws6d{word-spacing:1.313280pt;}
.ws78{word-spacing:1.464064pt;}
.ws4b{word-spacing:1.536768pt;}
.ws7e{word-spacing:1.590528pt;}
.ws6c{word-spacing:1.682944pt;}
.ws5d{word-spacing:1.895936pt;}
.ws3e{word-spacing:1.925376pt;}
.ws72{word-spacing:2.441728pt;}
.ws67{word-spacing:2.553600pt;}
.ws74{word-spacing:2.568192pt;}
.ws2d{word-spacing:3.209440pt;}
.ws62{word-spacing:3.302656pt;}
.ws47{word-spacing:3.309056pt;}
.ws2a{word-spacing:3.369435pt;}
.ws61{word-spacing:3.827968pt;}
.ws46{word-spacing:5.121792pt;}
.ws45{word-spacing:5.948672pt;}
.ws4a{word-spacing:7.042048pt;}
.ws24{word-spacing:8.007680pt;}
.ws4c{word-spacing:8.260864pt;}
.ws48{word-spacing:8.319744pt;}
.ws49{word-spacing:8.431616pt;}
.wsf{word-spacing:11.269632pt;}
.ws11{word-spacing:14.119424pt;}
.ws2b{word-spacing:14.249317pt;}
.wse{word-spacing:21.396736pt;}
.ws31{word-spacing:25.135691pt;}
.ws2f{word-spacing:36.542773pt;}
.ws3b{word-spacing:41.908923pt;}
.ws2e{word-spacing:46.996059pt;}
.ws34{word-spacing:72.495717pt;}
.ws30{word-spacing:79.749131pt;}
.ws33{word-spacing:93.975925pt;}
.ws32{word-spacing:94.249397pt;}
.ws59{word-spacing:112.190645pt;}
.ws2c{word-spacing:112.436000pt;}
.ws55{word-spacing:133.802149pt;}
.ws54{word-spacing:305.819107pt;}
.ws4d{word-spacing:545.677354pt;}
.ws4f{word-spacing:545.688003pt;}
.ws43{word-spacing:581.317786pt;}
._26{margin-left:-27.005415pt;}
._25{margin-left:-22.406122pt;}
._16{margin-left:-13.683328pt;}
._20{margin-left:-7.698816pt;}
._1f{margin-left:-5.682304pt;}
._24{margin-left:-4.560512pt;}
._6{margin-left:-3.644928pt;}
._7{margin-left:-2.166144pt;}
._2{margin-left:-1.219200pt;}
._4{width:0.952320pt;}
._0{width:1.920000pt;}
._3{width:2.826240pt;}
._c{width:3.921792pt;}
._b{width:5.652480pt;}
._12{width:6.740864pt;}
._11{width:7.726336pt;}
._a{width:9.042048pt;}
._9{width:10.340224pt;}
._8{width:11.687424pt;}
._15{width:12.716416pt;}
._5{width:13.948160pt;}
._14{width:15.826304pt;}
._13{width:16.770560pt;}
._18{width:17.709952pt;}
._17{width:18.620800pt;}
._2b{width:19.678720pt;}
._e{width:20.685824pt;}
._10{width:21.606912pt;}
._d{width:22.582400pt;}
._1c{width:23.689856pt;}
._1{width:25.555200pt;}
._2d{width:26.828032pt;}
._1b{width:28.186240pt;}
._19{width:30.093312pt;}
._1a{width:32.317824pt;}
._27{width:33.674567pt;}
._2c{width:35.919488pt;}
._f{width:37.117952pt;}
._28{width:41.080353pt;}
._2e{width:79.175472pt;}
._2f{width:80.520307pt;}
._1e{width:93.360203pt;}
._1d{width:104.133472pt;}
._30{width:135.162880pt;}
._23{width:145.025785pt;}
._21{width:148.309504pt;}
._22{width:172.644805pt;}
._2a{width:340.625406pt;}
._29{width:451.769475pt;}
.fs10{font-size:26.647152pt;}
.fsd{font-size:28.856240pt;}
.fs9{font-size:29.434891pt;}
.fs3{font-size:29.440000pt;}
.fs2{font-size:34.560000pt;}
.fsf{font-size:34.640976pt;}
.fsb{font-size:34.667920pt;}
.fs8{font-size:34.728139pt;}
.fse{font-size:35.862507pt;}
.fsc{font-size:35.909856pt;}
.fs6{font-size:42.240000pt;}
.fs7{font-size:42.368000pt;}
.fs5{font-size:42.666667pt;}
.fsa{font-size:42.688224pt;}
.fs4{font-size:48.640000pt;}
.fs11{font-size:48.768000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y131{bottom:1.968391pt;}
.y103{bottom:1.991907pt;}
.y1a1{bottom:2.002088pt;}
.y26{bottom:2.261335pt;}
.ya1{bottom:3.506657pt;}
.ya0{bottom:3.506661pt;}
.y9e{bottom:3.506664pt;}
.y120{bottom:3.506696pt;}
.y11e{bottom:3.506699pt;}
.y11c{bottom:3.506703pt;}
.y7d{bottom:3.519980pt;}
.y88{bottom:3.519995pt;}
.y90{bottom:3.519997pt;}
.y86{bottom:3.519999pt;}
.y97{bottom:3.520000pt;}
.y82{bottom:3.520001pt;}
.y95{bottom:3.520003pt;}
.yfb{bottom:3.520013pt;}
.y14c{bottom:3.520016pt;}
.yff{bottom:3.520020pt;}
.y14f{bottom:3.533356pt;}
.y8b{bottom:3.559999pt;}
.y122{bottom:3.826653pt;}
.y11a{bottom:3.826693pt;}
.y81{bottom:3.839992pt;}
.y91{bottom:3.839993pt;}
.yfd{bottom:3.840009pt;}
.y8e{bottom:4.160001pt;}
.y171{bottom:4.938766pt;}
.y28{bottom:5.306267pt;}
.y1a7{bottom:6.641837pt;}
.y16c{bottom:7.221549pt;}
.ydb{bottom:11.173339pt;}
.y193{bottom:11.266699pt;}
.yb5{bottom:11.333301pt;}
.y1c3{bottom:11.546705pt;}
.y7f{bottom:12.799991pt;}
.y102{bottom:12.916629pt;}
.y9b{bottom:13.106673pt;}
.y130{bottom:14.311408pt;}
.y1a6{bottom:15.346129pt;}
.y16b{bottom:17.886609pt;}
.y170{bottom:21.090121pt;}
.y93{bottom:21.440000pt;}
.y8d{bottom:21.440009pt;}
.y1a8{bottom:23.571552pt;}
.y101{bottom:23.841343pt;}
.y12f{bottom:26.614519pt;}
.y16a{bottom:28.591708pt;}
.y9a{bottom:30.386663pt;}
.yad{bottom:30.400032pt;}
.y172{bottom:30.860873pt;}
.yb6{bottom:30.973356pt;}
.ybf{bottom:31.199991pt;}
.ydc{bottom:31.773335pt;}
.y1a4{bottom:35.617180pt;}
.y25{bottom:36.085332pt;}
.y189{bottom:36.799984pt;}
.y194{bottom:37.413347pt;}
.y1b9{bottom:38.626703pt;}
.y12e{bottom:38.917639pt;}
.y169{bottom:39.256767pt;}
.y1c4{bottom:39.266676pt;}
.y84{bottom:39.719992pt;}
.yae{bottom:41.986703pt;}
.y10c{bottom:44.057280pt;}
.yc0{bottom:44.639993pt;}
.ydd{bottom:45.253335pt;}
.y10a{bottom:46.565276pt;}
.y99{bottom:47.693324pt;}
.y173{bottom:48.613808pt;}
.y12d{bottom:51.220760pt;}
.yaf{bottom:53.573372pt;}
.y10d{bottom:54.119169pt;}
.yb7{bottom:54.146696pt;}
.yc1{bottom:58.106668pt;}
.yde{bottom:58.720009pt;}
.y1a9{bottom:59.347886pt;}
.y18a{bottom:61.306657pt;}
.y195{bottom:61.893327pt;}
.y1ba{bottom:62.853347pt;}
.y1c5{bottom:63.520013pt;}
.yb0{bottom:65.146696pt;}
.y16e{bottom:65.339596pt;}
.y174{bottom:66.473575pt;}
.y109{bottom:70.538583pt;}
.yc2{bottom:71.586668pt;}
.ydf{bottom:72.159992pt;}
.y182{bottom:72.947116pt;}
.y141{bottom:74.616475pt;}
.y43{bottom:76.302045pt;}
.yb8{bottom:77.306689pt;}
.y117{bottom:78.226087pt;}
.y6b{bottom:79.498709pt;}
.ya5{bottom:81.745961pt;}
.y187{bottom:81.746280pt;}
.y10e{bottom:83.468788pt;}
.y175{bottom:84.226510pt;}
.yc3{bottom:85.053343pt;}
.ye0{bottom:85.626667pt;}
.y18b{bottom:85.786637pt;}
.y142{bottom:85.988545pt;}
.y196{bottom:86.400000pt;}
.y1bb{bottom:87.106683pt;}
.y1c6{bottom:87.773349pt;}
.yb1{bottom:88.320036pt;}
.y108{bottom:91.193348pt;}
.y1b7{bottom:94.865652pt;}
.y1aa{bottom:95.084383pt;}
.y1e2{bottom:95.500176pt;}
.y116{bottom:95.506663pt;}
.y133{bottom:97.999307pt;}
.yc4{bottom:98.533324pt;}
.y42{bottom:99.022365pt;}
.y149{bottom:99.026663pt;}
.ye1{bottom:99.106668pt;}
.yb2{bottom:99.906705pt;}
.yb9{bottom:100.480029pt;}
.y16f{bottom:101.325803pt;}
.y136{bottom:101.590473pt;}
.y176{bottom:102.072811pt;}
.y6a{bottom:102.219029pt;}
.y139{bottom:102.840737pt;}
.ya4{bottom:104.466281pt;}
.y186{bottom:104.466600pt;}
.y24{bottom:108.943053pt;}
.y18c{bottom:110.306657pt;}
.y197{bottom:110.879980pt;}
.y1bc{bottom:111.360020pt;}
.yb3{bottom:111.453336pt;}
.y1c7{bottom:111.999993pt;}
.yc5{bottom:111.999999pt;}
.ye2{bottom:112.573343pt;}
.y1e1{bottom:112.780752pt;}
.y10f{bottom:112.871366pt;}
.y13c{bottom:113.893593pt;}
.y1b6{bottom:117.625716pt;}
.y107{bottom:118.430815pt;}
.y10b{bottom:118.966667pt;}
.y177{bottom:119.825746pt;}
.y138{bottom:120.051797pt;}
.yab{bottom:121.146668pt;}
.y13e{bottom:121.288776pt;}
.y41{bottom:121.782429pt;}
.y100{bottom:123.585333pt;}
.yba{bottom:123.653369pt;}
.y135{bottom:123.736083pt;}
.y140{bottom:123.778667pt;}
.y137{bottom:124.933144pt;}
.y69{bottom:125.298517pt;}
.yc6{bottom:125.440001pt;}
.ye3{bottom:126.053343pt;}
.ya3{bottom:127.226345pt;}
.y185{bottom:127.226664pt;}
.y143{bottom:130.094018pt;}
.y12c{bottom:130.229333pt;}
.y1e0{bottom:130.421264pt;}
.y1ab{bottom:130.860717pt;}
.y23{bottom:131.703117pt;}
.y18d{bottom:134.786637pt;}
.y198{bottom:135.359961pt;}
.y1bd{bottom:135.586664pt;}
.y1c8{bottom:136.253331pt;}
.y13d{bottom:136.850544pt;}
.y178{bottom:137.685513pt;}
.yc7{bottom:138.906676pt;}
.ye4{bottom:139.519997pt;}
.y110{bottom:142.326905pt;}
.y13f{bottom:143.274779pt;}
.y40{bottom:144.502749pt;}
.ybe{bottom:146.040000pt;}
.y1b5{bottom:146.105972pt;}
.ybb{bottom:146.813363pt;}
.y1df{bottom:147.701840pt;}
.y15e{bottom:147.704855pt;}
.y68{bottom:148.018837pt;}
.y13b{bottom:148.733356pt;}
.ya2{bottom:149.946665pt;}
.yc8{bottom:152.386676pt;}
.ye5{bottom:152.960000pt;}
.y22{bottom:154.423437pt;}
.y179{bottom:155.465380pt;}
.y105{bottom:155.622669pt;}
.y18e{bottom:159.293311pt;}
.y1be{bottom:159.840000pt;}
.y199{bottom:159.866635pt;}
.y1c9{bottom:160.506667pt;}
.y134{bottom:161.714801pt;}
.y184{bottom:162.426089pt;}
.y13a{bottom:163.297605pt;}
.y1de{bottom:164.982416pt;}
.yc9{bottom:165.853331pt;}
.ye6{bottom:166.426675pt;}
.y1ac{bottom:166.631855pt;}
.y3f{bottom:167.542493pt;}
.ybc{bottom:169.986703pt;}
.y15d{bottom:170.425175pt;}
.y67{bottom:170.739157pt;}
.y111{bottom:171.681733pt;}
.y17a{bottom:173.284749pt;}
.y144{bottom:174.278465pt;}
.y104{bottom:174.892000pt;}
.y106{bottom:175.409269pt;}
.y21{bottom:177.143757pt;}
.yca{bottom:179.333332pt;}
.y183{bottom:179.706665pt;}
.ye7{bottom:179.906676pt;}
.y1dd{bottom:182.262992pt;}
.y18f{bottom:183.773372pt;}
.y1bf{bottom:184.093336pt;}
.y1b4{bottom:184.186612pt;}
.y19a{bottom:184.346696pt;}
.y1ca{bottom:184.773349pt;}
.y3e{bottom:190.262813pt;}
.y17b{bottom:191.070900pt;}
.y98{bottom:191.880000pt;}
.ycb{bottom:192.773335pt;}
.ybd{bottom:193.146696pt;}
.ye8{bottom:193.373331pt;}
.y66{bottom:193.459477pt;}
.y15c{bottom:193.464919pt;}
.y1dc{bottom:199.543568pt;}
.y20{bottom:199.864077pt;}
.y112{bottom:201.073893pt;}
.y1ad{bottom:202.402993pt;}
.yb4{bottom:204.133349pt;}
.y168{bottom:204.458667pt;}
.y1a3{bottom:204.979567pt;}
.ycc{bottom:206.239988pt;}
.ye9{bottom:206.853351pt;}
.y1b3{bottom:206.906932pt;}
.y190{bottom:208.253353pt;}
.y1c0{bottom:208.346673pt;}
.y19b{bottom:208.866635pt;}
.y17c{bottom:208.889371pt;}
.y1cb{bottom:208.986647pt;}
.y9f{bottom:209.800000pt;}
.y132{bottom:212.706667pt;}
.y3d{bottom:212.983133pt;}
.y65{bottom:216.179797pt;}
.y15b{bottom:216.185239pt;}
.y1db{bottom:216.824144pt;}
.y145{bottom:218.450104pt;}
.ycd{bottom:219.706664pt;}
.yea{bottom:220.293333pt;}
.y1f{bottom:222.584397pt;}
.y17d{bottom:226.675523pt;}
.y9d{bottom:227.720000pt;}
.y1b2{bottom:229.946676pt;}
.y113{bottom:230.529432pt;}
.y1c1{bottom:232.573317pt;}
.y191{bottom:232.773372pt;}
.yce{bottom:233.186684pt;}
.y1cc{bottom:233.253331pt;}
.y19c{bottom:233.346696pt;}
.yeb{bottom:233.760008pt;}
.y1da{bottom:234.424528pt;}
.y3c{bottom:235.703453pt;}
.y16d{bottom:237.988000pt;}
.y1ae{bottom:238.175862pt;}
.y64{bottom:238.926613pt;}
.y15a{bottom:238.932055pt;}
.y17e{bottom:244.493993pt;}
.y1e{bottom:245.331213pt;}
.y9c{bottom:245.653333pt;}
.ycf{bottom:246.653319pt;}
.yec{bottom:247.226683pt;}
.y1d9{bottom:251.730640pt;}
.y1c2{bottom:256.826653pt;}
.y192{bottom:257.247981pt;}
.y1cd{bottom:257.506667pt;}
.y19d{bottom:257.855973pt;}
.y3b{bottom:258.450269pt;}
.y114{bottom:259.889468pt;}
.yd0{bottom:260.093341pt;}
.yed{bottom:260.706664pt;}
.y63{bottom:261.646933pt;}
.y159{bottom:261.652375pt;}
.y17f{bottom:262.280145pt;}
.y146{bottom:262.558779pt;}
.y92{bottom:263.893333pt;}
.y1b1{bottom:265.172752pt;}
.y1d{bottom:268.051533pt;}
.y1d8{bottom:269.011216pt;}
.yd1{bottom:273.573321pt;}
.y1af{bottom:274.011086pt;}
.yee{bottom:274.173339pt;}
.y180{bottom:280.130037pt;}
.y3a{bottom:281.170589pt;}
.y96{bottom:281.813333pt;}
.y1b0{bottom:282.453328pt;}
.y62{bottom:284.367253pt;}
.y158{bottom:284.372695pt;}
.y1d7{bottom:286.291792pt;}
.yd2{bottom:287.039997pt;}
.yef{bottom:287.613320pt;}
.y115{bottom:289.345007pt;}
.y1c{bottom:290.771853pt;}
.y181{bottom:297.947609pt;}
.y94{bottom:299.733333pt;}
.yd3{bottom:300.506672pt;}
.yf0{bottom:301.093341pt;}
.y1d6{bottom:303.572368pt;}
.y39{bottom:303.890909pt;}
.y147{bottom:306.732553pt;}
.y1a5{bottom:306.836000pt;}
.y61{bottom:307.087573pt;}
.y157{bottom:307.093015pt;}
.y1b{bottom:313.811597pt;}
.yd4{bottom:313.986652pt;}
.yf1{bottom:314.560016pt;}
.y8c{bottom:317.653333pt;}
.y1d5{bottom:320.852944pt;}
.y38{bottom:326.611229pt;}
.yd5{bottom:327.426675pt;}
.yf2{bottom:328.026651pt;}
.y60{bottom:329.807893pt;}
.y156{bottom:329.813335pt;}
.y1a2{bottom:332.217333pt;}
.y8f{bottom:335.893333pt;}
.y1a{bottom:336.531917pt;}
.y1d4{bottom:338.453328pt;}
.yd6{bottom:340.893349pt;}
.yf3{bottom:341.506672pt;}
.y37{bottom:349.331549pt;}
.y148{bottom:350.908462pt;}
.y5f{bottom:352.847637pt;}
.y83{bottom:353.813333pt;}
.yd7{bottom:354.373331pt;}
.yf4{bottom:354.946653pt;}
.y19{bottom:359.291981pt;}
.y1d3{bottom:364.733317pt;}
.y155{bottom:365.053345pt;}
.yd8{bottom:367.840005pt;}
.yf5{bottom:368.413328pt;}
.y8a{bottom:371.773333pt;}
.y36{bottom:372.411037pt;}
.y5e{bottom:375.607701pt;}
.yd9{bottom:381.306680pt;}
.yf6{bottom:381.893349pt;}
.y18{bottom:382.012301pt;}
.y89{bottom:389.693333pt;}
.yda{bottom:394.786660pt;}
.y35{bottom:395.131357pt;}
.yf7{bottom:395.359984pt;}
.y5d{bottom:398.328021pt;}
.y1d2{bottom:402.173935pt;}
.y17{bottom:404.732621pt;}
.y87{bottom:407.933333pt;}
.y34{bottom:417.851677pt;}
.y5c{bottom:421.048341pt;}
.yfe{bottom:422.333333pt;}
.y85{bottom:425.853333pt;}
.y16{bottom:427.452941pt;}
.y1d1{bottom:428.733807pt;}
.yfc{bottom:440.253333pt;}
.y33{bottom:440.571997pt;}
.y5b{bottom:443.768661pt;}
.y7e{bottom:443.773333pt;}
.y1d0{bottom:447.293615pt;}
.y15{bottom:450.173261pt;}
.yfa{bottom:458.493333pt;}
.y80{bottom:461.693333pt;}
.y32{bottom:463.292317pt;}
.y1cf{bottom:465.853423pt;}
.y5a{bottom:466.488981pt;}
.yf9{bottom:476.440000pt;}
.y14{bottom:478.680013pt;}
.y7c{bottom:479.960000pt;}
.y1ce{bottom:484.439983pt;}
.y31{bottom:486.039133pt;}
.y59{bottom:489.235797pt;}
.y201{bottom:494.670104pt;}
.y12b{bottom:496.278507pt;}
.yf8{bottom:505.880005pt;}
.y30{bottom:508.759453pt;}
.y7b{bottom:509.399984pt;}
.y200{bottom:511.950680pt;}
.y58{bottom:511.956117pt;}
.y12a{bottom:518.998827pt;}
.y167{bottom:521.558495pt;}
.y1ff{bottom:529.231256pt;}
.y2f{bottom:531.479773pt;}
.y57{bottom:534.676437pt;}
.y13{bottom:534.998212pt;}
.y7a{bottom:538.195989pt;}
.y129{bottom:541.719147pt;}
.y166{bottom:544.278815pt;}
.y1fe{bottom:546.511832pt;}
.y2e{bottom:554.200093pt;}
.y56{bottom:557.716181pt;}
.y1fd{bottom:563.792408pt;}
.y128{bottom:564.439467pt;}
.y79{bottom:566.676245pt;}
.y165{bottom:566.999135pt;}
.yaa{bottom:573.079227pt;}
.y12{bottom:574.038596pt;}
.y2d{bottom:577.239837pt;}
.y55{bottom:580.436501pt;}
.y1fc{bottom:581.392792pt;}
.y127{bottom:587.159787pt;}
.y1a0{bottom:588.662667pt;}
.y164{bottom:589.719455pt;}
.ya9{bottom:595.826043pt;}
.y1fb{bottom:598.698904pt;}
.y2c{bottom:599.986653pt;}
.y54{bottom:603.183317pt;}
.y78{bottom:604.783381pt;}
.y126{bottom:610.226027pt;}
.y11{bottom:612.465156pt;}
.y163{bottom:612.466271pt;}
.y19f{bottom:612.466367pt;}
.y1fa{bottom:615.979480pt;}
.ya8{bottom:618.546363pt;}
.y53{bottom:625.903637pt;}
.y77{bottom:627.503701pt;}
.y125{bottom:632.946347pt;}
.y1f9{bottom:633.260056pt;}
.y10{bottom:635.185476pt;}
.y162{bottom:635.186591pt;}
.y2b{bottom:635.186687pt;}
.ya7{bottom:641.266683pt;}
.y52{bottom:648.623957pt;}
.y76{bottom:650.224021pt;}
.y1f8{bottom:650.540632pt;}
.y124{bottom:655.666667pt;}
.yf{bottom:657.905796pt;}
.y161{bottom:658.226335pt;}
.y1f7{bottom:667.821208pt;}
.y19e{bottom:670.706665pt;}
.y51{bottom:671.344277pt;}
.y75{bottom:673.263765pt;}
.ya6{bottom:676.466675pt;}
.ye{bottom:680.626116pt;}
.y160{bottom:680.946655pt;}
.y123{bottom:682.240000pt;}
.y1f6{bottom:685.421592pt;}
.y50{bottom:694.064597pt;}
.y154{bottom:694.705604pt;}
.y1b8{bottom:695.160000pt;}
.y74{bottom:695.984085pt;}
.y121{bottom:700.160000pt;}
.y1f5{bottom:702.702168pt;}
.yd{bottom:703.346436pt;}
.yac{bottom:703.800000pt;}
.y15f{bottom:716.186687pt;}
.y4f{bottom:716.824661pt;}
.y153{bottom:717.465668pt;}
.y11f{bottom:718.440000pt;}
.y73{bottom:718.744149pt;}
.y1f4{bottom:720.021656pt;}
.yc{bottom:726.106500pt;}
.y11d{bottom:736.360000pt;}
.y1f3{bottom:737.301016pt;}
.y4e{bottom:739.544981pt;}
.y152{bottom:740.185988pt;}
.y188{bottom:740.600000pt;}
.y72{bottom:741.464469pt;}
.yb{bottom:748.826820pt;}
.y11b{bottom:754.280000pt;}
.y1f2{bottom:754.581592pt;}
.y4d{bottom:762.584725pt;}
.y151{bottom:762.906308pt;}
.y71{bottom:764.184789pt;}
.ya{bottom:771.547140pt;}
.y1f1{bottom:771.862168pt;}
.y119{bottom:772.200000pt;}
.y4c{bottom:785.305045pt;}
.y150{bottom:785.626628pt;}
.y70{bottom:786.905109pt;}
.y1f0{bottom:789.462552pt;}
.y9{bottom:794.586884pt;}
.y118{bottom:801.946696pt;}
.y1ef{bottom:806.743128pt;}
.y4b{bottom:808.025365pt;}
.y6f{bottom:809.625429pt;}
.y8{bottom:817.626628pt;}
.y1ee{bottom:824.023704pt;}
.y14e{bottom:827.240000pt;}
.y4a{bottom:830.772181pt;}
.y6e{bottom:832.372245pt;}
.y1ed{bottom:841.329816pt;}
.y14d{bottom:845.493333pt;}
.y49{bottom:853.492501pt;}
.y6d{bottom:855.092565pt;}
.y7{bottom:855.093512pt;}
.y1ec{bottom:858.610392pt;}
.y14b{bottom:863.413333pt;}
.y1eb{bottom:875.890968pt;}
.y48{bottom:876.212821pt;}
.y6{bottom:876.853353pt;}
.y6c{bottom:883.572821pt;}
.y14a{bottom:892.853353pt;}
.y1ea{bottom:893.491352pt;}
.y5{bottom:895.413331pt;}
.y47{bottom:898.933141pt;}
.y1e9{bottom:910.771928pt;}
.y4{bottom:913.973307pt;}
.y46{bottom:921.653461pt;}
.y1e8{bottom:928.052504pt;}
.y3{bottom:938.613872pt;}
.y45{bottom:944.373781pt;}
.y1e7{bottom:945.333080pt;}
.y2{bottom:961.693360pt;}
.y1e6{bottom:962.652568pt;}
.y44{bottom:967.453269pt;}
.y1e5{bottom:979.933144pt;}
.y2a{bottom:990.167701pt;}
.y1e4{bottom:997.527448pt;}
.y1{bottom:1000.087972pt;}
.y29{bottom:1012.888021pt;}
.y1e3{bottom:1014.808024pt;}
.y27{bottom:1030.438667pt;}
.h2b{height:11.373333pt;}
.h7{height:11.914668pt;}
.h9{height:17.173333pt;}
.he{height:17.266667pt;}
.hb{height:17.280000pt;}
.h11{height:17.306667pt;}
.h10{height:17.586667pt;}
.hd{height:17.626667pt;}
.h2f{height:27.792147pt;}
.h28{height:30.096157pt;}
.h1e{height:30.699671pt;}
.ha{height:31.957333pt;}
.h1b{height:33.292000pt;}
.h12{height:35.506667pt;}
.hc{height:35.546667pt;}
.h2c{height:36.129455pt;}
.h23{height:36.157557pt;}
.h1c{height:36.220363pt;}
.h29{height:37.403474pt;}
.h26{height:37.452858pt;}
.h5{height:38.174587pt;}
.h4{height:38.174917pt;}
.h16{height:42.858750pt;}
.h18{height:42.988625pt;}
.h8{height:44.500000pt;}
.h21{height:44.522484pt;}
.h31{height:49.352500pt;}
.h30{height:49.482375pt;}
.h6{height:50.974720pt;}
.h13{height:53.106667pt;}
.h3{height:61.706240pt;}
.h20{height:61.834667pt;}
.h14{height:71.360000pt;}
.h17{height:89.205427pt;}
.hf{height:89.306667pt;}
.h2{height:100.608000pt;}
.h15{height:228.480000pt;}
.h1d{height:235.901333pt;}
.h2d{height:251.108000pt;}
.h22{height:265.564000pt;}
.h27{height:267.237333pt;}
.h2a{height:288.000000pt;}
.h2e{height:298.537333pt;}
.h1f{height:301.140000pt;}
.h25{height:310.381333pt;}
.h24{height:365.794667pt;}
.h19{height:367.232126pt;}
.h1a{height:420.160000pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w1{width:17.791992pt;}
.w5{width:56.626667pt;}
.w4{width:56.640000pt;}
.w7{width:113.920000pt;}
.w6{width:121.960000pt;}
.w2{width:166.304000pt;}
.w12{width:296.125333pt;}
.w3{width:358.853333pt;}
.w15{width:372.581333pt;}
.wc{width:377.045333pt;}
.w14{width:391.920000pt;}
.wb{width:396.393333pt;}
.w16{width:397.736000pt;}
.wd{width:402.586667pt;}
.w11{width:413.402667pt;}
.w8{width:451.840000pt;}
.wf{width:461.288000pt;}
.wa{width:462.226667pt;}
.we{width:479.968000pt;}
.w17{width:480.000000pt;}
.w10{width:488.997333pt;}
.w13{width:558.080000pt;}
.w9{width:597.120000pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:2.000000pt;}
.x68{left:4.604384pt;}
.x1e{left:5.752001pt;}
.x14{left:7.359991pt;}
.x2d{left:8.800007pt;}
.x6c{left:9.906681pt;}
.x7c{left:11.266613pt;}
.x11{left:12.480007pt;}
.x1b{left:14.712003pt;}
.xb{left:16.631996pt;}
.x6f{left:19.230463pt;}
.x10{left:21.111996pt;}
.x9{left:23.026684pt;}
.x17{left:24.311999pt;}
.x13{left:26.560003pt;}
.x53{left:28.546669pt;}
.x55{left:30.586668pt;}
.x54{left:33.306669pt;}
.xd{left:34.226676pt;}
.x51{left:35.200000pt;}
.x18{left:37.143999pt;}
.x4d{left:38.053332pt;}
.x58{left:38.973336pt;}
.xe{left:40.640008pt;}
.x1f{left:42.266669pt;}
.x71{left:43.804152pt;}
.x12{left:46.400017pt;}
.x2e{left:47.293333pt;}
.x6a{left:49.586669pt;}
.x30{left:51.199991pt;}
.x31{left:52.613340pt;}
.x7d{left:54.066669pt;}
.x50{left:56.320005pt;}
.x32{left:59.773335pt;}
.x92{left:61.693337pt;}
.x16{left:62.719997pt;}
.x2c{left:67.493325pt;}
.x74{left:68.409804pt;}
.x59{left:70.173337pt;}
.x2f{left:72.933328pt;}
.x21{left:76.813347pt;}
.x56{left:82.240008pt;}
.x62{left:87.029679pt;}
.x52{left:88.733335pt;}
.x7b{left:90.715619pt;}
.x76{left:92.982172pt;}
.x1{left:94.431996pt;}
.x1a{left:96.679999pt;}
.x4{left:98.514667pt;}
.x67{left:100.063999pt;}
.x80{left:102.144195pt;}
.x5d{left:103.053324pt;}
.x2b{left:108.960000pt;}
.x5e{left:113.933328pt;}
.x8a{left:115.226668pt;}
.x78{left:117.549188pt;}
.x15{left:119.719997pt;}
.x2{left:122.910780pt;}
.x57{left:123.973325pt;}
.x8b{left:125.279992pt;}
.x4c{left:128.986672pt;}
.x5a{left:133.520000pt;}
.xf{left:135.079983pt;}
.x64{left:137.250401pt;}
.x91{left:139.106668pt;}
.x1d{left:141.799993pt;}
.x7{left:143.400009pt;}
.x1c{left:144.679999pt;}
.x6b{left:147.213337pt;}
.x7a{left:148.626667pt;}
.x6d{left:153.289333pt;}
.x20{left:154.280015pt;}
.x25{left:156.093341pt;}
.xc{left:158.146673pt;}
.x23{left:159.426661pt;}
.x26{left:161.533324pt;}
.x69{left:163.253336pt;}
.x22{left:164.546657pt;}
.x24{left:167.040000pt;}
.x19{left:169.986680pt;}
.x6e{left:171.289333pt;}
.x4e{left:173.280007pt;}
.x8d{left:179.999999pt;}
.x27{left:186.079995pt;}
.x4f{left:187.360003pt;}
.x28{left:188.826659pt;}
.x8e{left:190.306680pt;}
.x66{left:191.826667pt;}
.x29{left:194.266681pt;}
.x5f{left:195.166667pt;}
.x72{left:197.362115pt;}
.x5b{left:209.333353pt;}
.x60{left:213.194667pt;}
.x7f{left:214.916825pt;}
.x6{left:217.693333pt;}
.x75{left:221.929132pt;}
.x61{left:225.027949pt;}
.x8f{left:240.413328pt;}
.x8c{left:241.949053pt;}
.x77{left:246.536107pt;}
.x89{left:252.066653pt;}
.x79{left:271.116469pt;}
.x63{left:275.264643pt;}
.x4b{left:279.866676pt;}
.x81{left:288.453332pt;}
.x33{left:302.719988pt;}
.x34{left:310.559995pt;}
.x65{left:325.421341pt;}
.x70{left:326.349013pt;}
.x7e{left:342.897877pt;}
.x35{left:349.306659pt;}
.x73{left:350.916071pt;}
.x82{left:358.306684pt;}
.x36{left:361.573341pt;}
.x83{left:372.733320pt;}
.x37{left:377.599993pt;}
.x38{left:379.106667pt;}
.x39{left:385.893328pt;}
.x3{left:388.104004pt;}
.x3a{left:393.186664pt;}
.x3b{left:400.933327pt;}
.x3c{left:403.226661pt;}
.x2a{left:407.173339pt;}
.x3d{left:409.666684pt;}
.x90{left:417.053343pt;}
.x3e{left:424.386655pt;}
.x3f{left:433.186664pt;}
.x40{left:441.213316pt;}
.x41{left:442.266660pt;}
.x42{left:452.000017pt;}
.x43{left:459.133319pt;}
.x44{left:460.933327pt;}
.x45{left:462.879983pt;}
.x46{left:473.626687pt;}
.x47{left:482.693336pt;}
.x84{left:484.159997pt;}
.x85{left:499.519983pt;}
.x48{left:501.373349pt;}
.x86{left:505.760013pt;}
.x87{left:510.173343pt;}
.x88{left:521.279992pt;}
.x49{left:557.599993pt;}
.x4a{left:565.413307pt;}
.x8{left:577.200000pt;}
.x5c{left:596.400000pt;}
.xa{left:634.493333pt;}
}




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