
    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_ef5cdfe04c15ef1a57c4cf83.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_6fa582eb074ea812498f71c6.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_89c88bf4bfa3310c05d64a71.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_8486897bf1e904ab8462c2b4.woff')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_5f527c70b14a0b88c05b8051.woff')format("woff");}.ff5{font-family:ff5;line-height:0.926778;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_491b5a0fff959c55bcf77d8a.woff')format("woff");}.ff6{font-family:ff6;line-height:1.120605;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_eafea1739db63de1895f1bfc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;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_d6e38faf65cdd0e263e90a42.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_7704ac82ac250b719f9965b7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.715820;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-38.160000px;}
.v8{vertical-align:-35.280000px;}
.v4{vertical-align:-32.399400px;}
.v9{vertical-align:-29.520000px;}
.v11{vertical-align:-3.024000px;}
.v0{vertical-align:0.000000px;}
.vb{vertical-align:2.232000px;}
.ve{vertical-align:15.090600px;}
.v13{vertical-align:18.478080px;}
.v10{vertical-align:29.520000px;}
.v2{vertical-align:32.448600px;}
.vf{vertical-align:36.000000px;}
.v1{vertical-align:39.444480px;}
.v5{vertical-align:43.200000px;}
.v6{vertical-align:46.800000px;}
.va{vertical-align:48.960000px;}
.v3{vertical-align:64.800000px;}
.vd{vertical-align:68.055840px;}
.vc{vertical-align:72.028800px;}
.v12{vertical-align:78.024000px;}
.ls7d{letter-spacing:-5.184000px;}
.ls20{letter-spacing:-4.380480px;}
.ls21{letter-spacing:-2.499840px;}
.ls30{letter-spacing:-1.976400px;}
.ls3e{letter-spacing:-1.405440px;}
.ls3d{letter-spacing:-0.702720px;}
.ls92{letter-spacing:-0.696960px;}
.ls97{letter-spacing:-0.506880px;}
.ls46{letter-spacing:-0.395280px;}
.ls96{letter-spacing:-0.380160px;}
.ls81{letter-spacing:-0.336960px;}
.ls7e{letter-spacing:-0.335520px;}
.ls3{letter-spacing:-0.324000px;}
.ls91{letter-spacing:-0.316800px;}
.ls9{letter-spacing:-0.288000px;}
.ls51{letter-spacing:-0.240480px;}
.lsa{letter-spacing:-0.216000px;}
.ls1{letter-spacing:-0.203760px;}
.ls5{letter-spacing:-0.191520px;}
.ls93{letter-spacing:-0.190080px;}
.ls7{letter-spacing:-0.167760px;}
.ls98{letter-spacing:-0.167040px;}
.ls22{letter-spacing:-0.156240px;}
.ls8{letter-spacing:-0.144000px;}
.ls48{letter-spacing:-0.131760px;}
.ls50{letter-spacing:-0.120240px;}
.ls47{letter-spacing:-0.119520px;}
.ls19{letter-spacing:-0.087840px;}
.ls6{letter-spacing:-0.084240px;}
.ls4{letter-spacing:0.000000px;}
.ls43{letter-spacing:0.000600px;}
.ls76{letter-spacing:0.018720px;}
.ls7b{letter-spacing:0.043320px;}
.ls90{letter-spacing:0.063360px;}
.ls39{letter-spacing:0.069840px;}
.ls3b{letter-spacing:0.070440px;}
.ls16{letter-spacing:0.080520px;}
.ls15{letter-spacing:0.080640px;}
.ls49{letter-spacing:0.086400px;}
.ls3f{letter-spacing:0.087840px;}
.ls6e{letter-spacing:0.106560px;}
.ls61{letter-spacing:0.107160px;}
.ls4b{letter-spacing:0.113040px;}
.ls2{letter-spacing:0.120240px;}
.ls69{letter-spacing:0.120960px;}
.ls4f{letter-spacing:0.129240px;}
.ls3c{letter-spacing:0.131040px;}
.lsb{letter-spacing:0.131760px;}
.ls4d{letter-spacing:0.139920px;}
.ls3a{letter-spacing:0.140400px;}
.ls27{letter-spacing:0.144000px;}
.ls68{letter-spacing:0.150480px;}
.ls23{letter-spacing:0.156240px;}
.ls7c{letter-spacing:0.156312px;}
.ls5d{letter-spacing:0.157680px;}
.ls60{letter-spacing:0.159840px;}
.lsf{letter-spacing:0.162000px;}
.ls1d{letter-spacing:0.165600px;}
.ls62{letter-spacing:0.165720px;}
.ls37{letter-spacing:0.167760px;}
.ls6d{letter-spacing:0.180720px;}
.ls38{letter-spacing:0.190080px;}
.ls65{letter-spacing:0.200160px;}
.ls0{letter-spacing:0.203760px;}
.ls86{letter-spacing:0.204480px;}
.ls13{letter-spacing:0.216000px;}
.ls34{letter-spacing:0.240480px;}
.ls99{letter-spacing:0.253440px;}
.lse{letter-spacing:0.263520px;}
.ls54{letter-spacing:0.270000px;}
.ls72{letter-spacing:0.273600px;}
.ls58{letter-spacing:0.278640px;}
.ls2e{letter-spacing:0.287280px;}
.lsd{letter-spacing:0.288000px;}
.ls1a{letter-spacing:0.312480px;}
.ls95{letter-spacing:0.316800px;}
.ls26{letter-spacing:0.321120px;}
.ls10{letter-spacing:0.335520px;}
.ls8e{letter-spacing:0.336960px;}
.ls8c{letter-spacing:0.344880px;}
.ls2a{letter-spacing:0.346320px;}
.ls7a{letter-spacing:0.349200px;}
.ls82{letter-spacing:0.355752px;}
.ls28{letter-spacing:0.360000px;}
.ls29{letter-spacing:0.360600px;}
.ls36{letter-spacing:0.360720px;}
.ls25{letter-spacing:0.365760px;}
.ls83{letter-spacing:0.378720px;}
.ls94{letter-spacing:0.380160px;}
.ls2d{letter-spacing:0.383040px;}
.ls85{letter-spacing:0.385200px;}
.ls18{letter-spacing:0.395280px;}
.ls2f{letter-spacing:0.399600px;}
.ls79{letter-spacing:0.400320px;}
.ls44{letter-spacing:0.409680px;}
.ls88{letter-spacing:0.410400px;}
.ls84{letter-spacing:0.411120px;}
.ls2b{letter-spacing:0.449856px;}
.ls63{letter-spacing:0.473544px;}
.ls42{letter-spacing:0.533064px;}
.ls67{letter-spacing:0.640368px;}
.ls7f{letter-spacing:0.861120px;}
.ls17{letter-spacing:0.935496px;}
.ls57{letter-spacing:1.035024px;}
.ls74{letter-spacing:1.521600px;}
.ls75{letter-spacing:1.584000px;}
.ls77{letter-spacing:1.584600px;}
.ls8b{letter-spacing:16.352640px;}
.ls40{letter-spacing:25.956720px;}
.ls14{letter-spacing:29.916000px;}
.ls11{letter-spacing:30.528000px;}
.ls6c{letter-spacing:32.224320px;}
.ls5c{letter-spacing:32.464800px;}
.ls8a{letter-spacing:32.604480px;}
.ls35{letter-spacing:32.705280px;}
.ls5e{letter-spacing:32.760000px;}
.ls5f{letter-spacing:32.825520px;}
.ls5b{letter-spacing:33.186240px;}
.ls4e{letter-spacing:33.402960px;}
.ls6b{letter-spacing:33.426720px;}
.ls56{letter-spacing:36.365760px;}
.ls5a{letter-spacing:36.629280px;}
.ls45{letter-spacing:36.720000px;}
.ls32{letter-spacing:36.761040px;}
.ls59{letter-spacing:36.840960px;}
.ls52{letter-spacing:36.892800px;}
.ls55{letter-spacing:37.024560px;}
.ls41{letter-spacing:37.129968px;}
.ls4c{letter-spacing:37.174440px;}
.ls4a{letter-spacing:37.175040px;}
.ls66{letter-spacing:37.261728px;}
.ls1f{letter-spacing:37.379520px;}
.ls2c{letter-spacing:37.419840px;}
.ls64{letter-spacing:37.440000px;}
.ls33{letter-spacing:37.683360px;}
.ls73{letter-spacing:39.312000px;}
.ls80{letter-spacing:42.028560px;}
.ls1e{letter-spacing:42.653520px;}
.ls1b{letter-spacing:43.434720px;}
.ls89{letter-spacing:43.647120px;}
.lsc{letter-spacing:45.588960px;}
.ls71{letter-spacing:47.140560px;}
.ls6f{letter-spacing:47.664000px;}
.ls31{letter-spacing:57.382560px;}
.ls78{letter-spacing:59.866560px;}
.ls70{letter-spacing:64.582560px;}
.ls87{letter-spacing:74.548800px;}
.ls8f{letter-spacing:95.904000px;}
.ls6a{letter-spacing:151.270800px;}
.ls24{letter-spacing:233.578800px;}
.ls1c{letter-spacing:419.063040px;}
.ls12{letter-spacing:598.104000px;}
.ls8d{letter-spacing:647.273280px;}
.ls53{letter-spacing:1220.100864px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,128,0),0 0.015em rgb(0,128,0),0.015em 0 rgb(0,128,0),0 -0.015em  rgb(0,128,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,128,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3e{word-spacing:-144.000000px;}
.ws7a{word-spacing:-131.760000px;}
.ws89{word-spacing:-120.240000px;}
.ws88{word-spacing:-88.135920px;}
.ws70{word-spacing:-60.048000px;}
.ws6f{word-spacing:-59.832000px;}
.ws63{word-spacing:-46.972800px;}
.ws79{word-spacing:-46.805040px;}
.ws8{word-spacing:-46.469520px;}
.ws90{word-spacing:-46.301760px;}
.ws4d{word-spacing:-45.036000px;}
.ws8e{word-spacing:-43.747200px;}
.ws9e{word-spacing:-43.590960px;}
.ws2c{word-spacing:-43.434720px;}
.ws36{word-spacing:-40.320000px;}
.wsb{word-spacing:-40.032000px;}
.ws4a{word-spacing:-39.888000px;}
.wsa{word-spacing:-39.744000px;}
.ws91{word-spacing:-36.892800px;}
.ws10{word-spacing:-36.761040px;}
.ws3a{word-spacing:-36.629280px;}
.ws64{word-spacing:-36.497520px;}
.ws85{word-spacing:-34.848000px;}
.ws3d{word-spacing:-34.652880px;}
.ws4e{word-spacing:-33.787440px;}
.ws17{word-spacing:-33.546960px;}
.ws18{word-spacing:-33.426720px;}
.ws69{word-spacing:-33.306480px;}
.ws76{word-spacing:-33.186240px;}
.ws83{word-spacing:-30.300480px;}
.ws21{word-spacing:-30.024000px;}
.ws20{word-spacing:-29.700000px;}
.ws2f{word-spacing:-28.823040px;}
.ws3f{word-spacing:-27.004320px;}
.ws0{word-spacing:-26.621280px;}
.ws96{word-spacing:-24.507360px;}
.ws31{word-spacing:-24.419520px;}
.ws28{word-spacing:-24.331680px;}
.ws57{word-spacing:-23.716800px;}
.ws7{word-spacing:-23.334480px;}
.ws99{word-spacing:-23.081760px;}
.ws3c{word-spacing:-22.617360px;}
.ws73{word-spacing:-22.377600px;}
.ws6a{word-spacing:-22.217760px;}
.ws1a{word-spacing:-20.304000px;}
.ws19{word-spacing:-20.016000px;}
.ws2b{word-spacing:-19.038240px;}
.wsa9{word-spacing:-17.930880px;}
.wsad{word-spacing:-17.867520px;}
.wsa3{word-spacing:-17.677440px;}
.wsa5{word-spacing:-17.614080px;}
.wsa7{word-spacing:-17.424000px;}
.wsaa{word-spacing:-11.442240px;}
.ws72{word-spacing:-7.992000px;}
.ws8d{word-spacing:-7.246800px;}
.ws65{word-spacing:-3.024000px;}
.wsa8{word-spacing:-2.990592px;}
.ws33{word-spacing:-2.968560px;}
.ws9d{word-spacing:-2.656080px;}
.ws1d{word-spacing:-2.525040px;}
.ws47{word-spacing:-2.448000px;}
.wsa0{word-spacing:-2.442960px;}
.ws6d{word-spacing:-2.316600px;}
.ws71{word-spacing:-2.304000px;}
.ws9c{word-spacing:-2.282904px;}
.wsb8{word-spacing:-2.154240px;}
.ws7f{word-spacing:-2.044080px;}
.wsab{word-spacing:-1.919808px;}
.ws97{word-spacing:-1.874880px;}
.wsb3{word-spacing:-1.837440px;}
.ws1e{word-spacing:-1.803600px;}
.wsa1{word-spacing:-1.684800px;}
.ws87{word-spacing:-1.647288px;}
.ws8c{word-spacing:-1.592136px;}
.ws11{word-spacing:-1.584000px;}
.wsba{word-spacing:-1.537920px;}
.ws61{word-spacing:-1.449360px;}
.ws6b{word-spacing:-1.442880px;}
.ws53{word-spacing:-1.440000px;}
.wsa2{word-spacing:-1.432080px;}
.wsb5{word-spacing:-1.393920px;}
.ws7c{word-spacing:-1.322640px;}
.ws9b{word-spacing:-1.249920px;}
.wsa4{word-spacing:-1.216512px;}
.ws1c{word-spacing:-1.082160px;}
.wsb2{word-spacing:-1.077120px;}
.wsc{word-spacing:-1.010880px;}
.ws40{word-spacing:-1.008000px;}
.ws1f{word-spacing:-0.864000px;}
.ws84{word-spacing:-0.841680px;}
.ws1b{word-spacing:-0.838800px;}
.ws14{word-spacing:-0.790560px;}
.ws42{word-spacing:-0.781200px;}
.ws15{word-spacing:-0.756000px;}
.ws6c{word-spacing:-0.721440px;}
.ws45{word-spacing:-0.720000px;}
.wsaf{word-spacing:-0.696960px;}
.wsae{word-spacing:-0.684288px;}
.ws95{word-spacing:-0.658800px;}
.ws62{word-spacing:-0.657360px;}
.ws9a{word-spacing:-0.648000px;}
.ws43{word-spacing:-0.576000px;}
.ws94{word-spacing:-0.527040px;}
.wsb7{word-spacing:-0.506880px;}
.ws8f{word-spacing:-0.468720px;}
.ws27{word-spacing:-0.432000px;}
.wsac{word-spacing:-0.424512px;}
.ws49{word-spacing:-0.395280px;}
.wsb1{word-spacing:-0.380160px;}
.ws3{word-spacing:-0.360720px;}
.ws46{word-spacing:-0.335520px;}
.ws41{word-spacing:-0.312480px;}
.wse{word-spacing:-0.288000px;}
.ws44{word-spacing:-0.287280px;}
.ws12{word-spacing:-0.263520px;}
.wsb9{word-spacing:-0.253440px;}
.ws8a{word-spacing:-0.240480px;}
.ws16{word-spacing:-0.167760px;}
.ws78{word-spacing:-0.159840px;}
.ws35{word-spacing:-0.156240px;}
.ws92{word-spacing:-0.144000px;}
.ws2a{word-spacing:-0.131760px;}
.ws4c{word-spacing:-0.120240px;}
.ws26{word-spacing:-0.108000px;}
.ws5c{word-spacing:-0.087840px;}
.wsb0{word-spacing:-0.063360px;}
.ws1{word-spacing:0.000000px;}
.ws48{word-spacing:0.131760px;}
.ws80{word-spacing:0.144000px;}
.ws34{word-spacing:0.156240px;}
.ws82{word-spacing:0.167760px;}
.ws6{word-spacing:0.191520px;}
.ws77{word-spacing:0.240480px;}
.ws93{word-spacing:0.288000px;}
.wsb4{word-spacing:0.316800px;}
.ws25{word-spacing:0.324000px;}
.ws51{word-spacing:0.335520px;}
.wsb6{word-spacing:0.380160px;}
.ws60{word-spacing:0.395280px;}
.ws29{word-spacing:0.432000px;}
.ws50{word-spacing:0.503280px;}
.ws4{word-spacing:0.540000px;}
.ws13{word-spacing:0.658800px;}
.ws52{word-spacing:0.671040px;}
.ws58{word-spacing:0.702720px;}
.ws5{word-spacing:0.766080px;}
.wsa6{word-spacing:0.798336px;}
.ws4b{word-spacing:0.864000px;}
.ws4f{word-spacing:1.006560px;}
.wsd{word-spacing:1.152000px;}
.ws2{word-spacing:1.222560px;}
.ws24{word-spacing:1.296000px;}
.ws5a{word-spacing:1.370304px;}
.ws59{word-spacing:1.405440px;}
.ws7b{word-spacing:1.449360px;}
.ws8b{word-spacing:1.509840px;}
.ws5e{word-spacing:1.845360px;}
.wsf{word-spacing:1.872000px;}
.ws66{word-spacing:2.108160px;}
.ws98{word-spacing:2.160000px;}
.ws32{word-spacing:2.343600px;}
.ws5d{word-spacing:2.516400px;}
.ws81{word-spacing:2.592000px;}
.ws5f{word-spacing:2.684160px;}
.ws54{word-spacing:2.888640px;}
.ws67{word-spacing:3.187440px;}
.ws6e{word-spacing:4.026240px;}
.ws55{word-spacing:4.996800px;}
.ws74{word-spacing:8.638560px;}
.ws7d{word-spacing:9.388368px;}
.ws75{word-spacing:10.033320px;}
.ws7e{word-spacing:10.033920px;}
.ws86{word-spacing:11.182320px;}
.ws9f{word-spacing:12.191040px;}
.ws3b{word-spacing:12.549600px;}
.ws37{word-spacing:14.423040px;}
.ws39{word-spacing:15.120000px;}
.ws38{word-spacing:15.120600px;}
.ws2e{word-spacing:15.142440px;}
.ws2d{word-spacing:15.143040px;}
.ws30{word-spacing:15.885480px;}
.ws5b{word-spacing:49.174560px;}
.ws9{word-spacing:98.064000px;}
.ws56{word-spacing:148.536000px;}
.ws23{word-spacing:247.579200px;}
.ws22{word-spacing:510.408000px;}
.ws68{word-spacing:1401.818040px;}
._24{margin-left:-2129.989560px;}
._19{margin-left:-14.401368px;}
._9{margin-left:-12.330360px;}
._a{margin-left:-10.290456px;}
._3{margin-left:-8.902080px;}
._4{margin-left:-7.396920px;}
._6{margin-left:-4.860936px;}
._5{margin-left:-3.792096px;}
._7{margin-left:-2.436408px;}
._0{margin-left:-1.426320px;}
._2{width:1.324440px;}
._1{width:2.608128px;}
._11{width:4.380480px;}
._1d{width:5.987520px;}
._1a{width:7.891920px;}
._25{width:15.872400px;}
._1b{width:33.306480px;}
._1c{width:37.683360px;}
._12{width:40.934880px;}
._13{width:44.798400px;}
._23{width:47.013840px;}
._17{width:50.984280px;}
._22{width:52.937208px;}
._1e{width:108.717480px;}
._18{width:124.908480px;}
._1f{width:156.662640px;}
._14{width:172.296000px;}
._15{width:207.126720px;}
._16{width:210.288960px;}
._d{width:220.831560px;}
._20{width:252.188640px;}
._c{width:320.811120px;}
._e{width:429.012360px;}
._b{width:580.090920px;}
._21{width:841.371120px;}
._f{width:1779.712128px;}
._10{width:1784.008368px;}
._8{width:1826.465328px;}
.fc7{color:transparent;}
.fc4{color:rgb(255,255,0);}
.fc5{color:rgb(0,128,0);}
.fc3{color:rgb(153,51,0);}
.fc6{color:rgb(33,29,30);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(51,51,204);}
.fs13{font-size:41.760000px;}
.fsb{font-size:54.000000px;}
.fs10{font-size:59.760000px;}
.fs12{font-size:63.360000px;}
.fs8{font-size:72.000000px;}
.fse{font-size:79.920000px;}
.fs4{font-size:84.240000px;}
.fsa{font-size:87.840000px;}
.fs11{font-size:90.000000px;}
.fs3{font-size:95.760000px;}
.fsd{font-size:103.680000px;}
.fs2{font-size:108.000000px;}
.fs1{font-size:120.240000px;}
.fs9{font-size:131.760000px;}
.fs6{font-size:144.000000px;}
.fsc{font-size:156.240000px;}
.fsf{font-size:162.000000px;}
.fs5{font-size:167.760000px;}
.fs14{font-size:192.240000px;}
.fs0{font-size:203.760000px;}
.fs7{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y9{bottom:18.774300px;}
.yb1{bottom:74.713950px;}
.y15c{bottom:75.062700px;}
.y5{bottom:75.688800px;}
.y60{bottom:79.557750px;}
.y37{bottom:84.390000px;}
.y133{bottom:85.600890px;}
.yd6{bottom:86.402130px;}
.ybe{bottom:92.163300px;}
.y183{bottom:92.422410px;}
.ycf{bottom:95.280780px;}
.yb0{bottom:96.313950px;}
.y86{bottom:96.836100px;}
.yd4{bottom:98.329260px;}
.y14c{bottom:98.598900px;}
.ybc{bottom:103.261800px;}
.y142{bottom:103.751640px;}
.y158{bottom:106.626840px;}
.y4{bottom:107.899800px;}
.y10d{bottom:107.927640px;}
.y43{bottom:107.996370px;}
.yeb{bottom:108.715500px;}
.y182{bottom:111.319530px;}
.y2c{bottom:112.969200px;}
.y157{bottom:114.835800px;}
.yaf{bottom:117.913950px;}
.y132{bottom:121.612770px;}
.yd5{bottom:125.991150px;}
.y14{bottom:130.900650px;}
.ybd{bottom:131.763300px;}
.y51{bottom:131.807250px;}
.y85{bottom:132.476100px;}
.y181{bottom:134.715210px;}
.y5d{bottom:135.302550px;}
.yd3{bottom:137.923140px;}
.y141{bottom:139.763520px;}
.y10a{bottom:141.967650px;}
.y4e{bottom:144.906750px;}
.y11d{bottom:146.678760px;}
.y2b{bottom:146.989200px;}
.y3{bottom:149.119650px;}
.y4b{bottom:150.039120px;}
.y10c{bottom:151.474320px;}
.y42{bottom:151.543050px;}
.y125{bottom:152.508150px;}
.y180{bottom:153.612330px;}
.y165{bottom:157.623000px;}
.y131{bottom:157.624650px;}
.y98{bottom:158.790750px;}
.yea{bottom:162.188820px;}
.y103{bottom:166.290300px;}
.y21{bottom:167.463090px;}
.y17f{bottom:172.509450px;}
.y156{bottom:173.335800px;}
.y121{bottom:173.702850px;}
.y140{bottom:175.775400px;}
.yda{bottom:184.409700px;}
.y39{bottom:184.908150px;}
.y11c{bottom:186.272640px;}
.yce{bottom:186.491640px;}
.yf3{bottom:187.389600px;}
.yc4{bottom:188.829750px;}
.ybb{bottom:189.004620px;}
.y7f{bottom:192.667770px;}
.y13{bottom:193.540650px;}
.y4a{bottom:193.585800px;}
.y10b{bottom:195.021000px;}
.y17e{bottom:195.905130px;}
.ya0{bottom:197.331420px;}
.y109{bottom:203.527650px;}
.y50{bottom:205.247250px;}
.ye9{bottom:205.735500px;}
.y38{bottom:206.508150px;}
.yfb{bottom:206.572080px;}
.y20{bottom:209.033370px;}
.y2a{bottom:214.534200px;}
.y17d{bottom:214.802250px;}
.y102{bottom:214.890300px;}
.y66{bottom:215.005140px;}
.y89{bottom:215.205690px;}
.y130{bottom:217.869570px;}
.y97{bottom:221.412510px;}
.y164{bottom:223.143000px;}
.y11b{bottom:225.866520px;}
.y104{bottom:229.740300px;}
.y127{bottom:230.508300px;}
.y155{bottom:234.015960px;}
.yf2{bottom:234.909600px;}
.y7e{bottom:236.214450px;}
.y17c{bottom:238.197930px;}
.y44{bottom:241.576800px;}
.ycd{bottom:243.543720px;}
.y13f{bottom:244.525170px;}
.yba{bottom:246.064620px;}
.yfa{bottom:246.161100px;}
.yd9{bottom:249.929850px;}
.y1f{bottom:250.603650px;}
.y65{bottom:251.017020px;}
.y12{bottom:256.000650px;}
.y17b{bottom:257.095050px;}
.y136{bottom:257.163900px;}
.y88{bottom:258.752370px;}
.y36{bottom:258.827850px;}
.ye8{bottom:259.195500px;}
.y14b{bottom:263.479890px;}
.y96{bottom:264.959190px;}
.y108{bottom:265.087650px;}
.y8d{bottom:265.155300px;}
.y129{bottom:265.425330px;}
.y11a{bottom:265.460400px;}
.ybf{bottom:267.523200px;}
.y12f{bottom:267.545070px;}
.y16{bottom:270.055950px;}
.y163{bottom:270.663000px;}
.y154{bottom:273.604980px;}
.y101{bottom:274.387650px;}
.y40{bottom:275.298450px;}
.y9b{bottom:276.074880px;}
.y17a{bottom:280.490730px;}
.yf1{bottom:282.429600px;}
.y138{bottom:283.353630px;}
.y64{bottom:287.028900px;}
.y128{bottom:290.634150px;}
.y1e{bottom:292.173930px;}
.y13e{bottom:294.200670px;}
.yf9{bottom:294.783060px;}
.y7c{bottom:297.583500px;}
.y35{bottom:298.416870px;}
.y179{bottom:299.387850px;}
.ycc{bottom:300.603720px;}
.y87{bottom:302.299050px;}
.yb9{bottom:303.188250px;}
.y14a{bottom:307.026570px;}
.y57{bottom:307.309050px;}
.y3f{bottom:307.698450px;}
.y95{bottom:308.505870px;}
.y137{bottom:308.562450px;}
.ye7{bottom:312.655500px;}
.y49{bottom:312.762720px;}
.y4d{bottom:312.975150px;}
.y153{bottom:314.095800px;}
.yc0{bottom:314.777520px;}
.yd8{bottom:315.449850px;}
.y4f{bottom:316.330500px;}
.y12e{bottom:317.412090px;}
.y162{bottom:318.183000px;}
.y11{bottom:318.460650px;}
.y178{bottom:322.783530px;}
.y107{bottom:326.660970px;}
.yf0{bottom:329.949600px;}
.yf8{bottom:334.372080px;}
.y26{bottom:336.065730px;}
.y34{bottom:338.005890px;}
.y177{bottom:341.741130px;}
.yab{bottom:342.045300px;}
.y13d{bottom:344.067690px;}
.yc2{bottom:350.413050px;}
.y149{bottom:350.573250px;}
.y119{bottom:351.769410px;}
.y94{bottom:352.052550px;}
.y68{bottom:355.995150px;}
.ye6{bottom:356.228820px;}
.y48{bottom:356.304390px;}
.ycb{bottom:357.714120px;}
.y100{bottom:358.987500px;}
.y113{bottom:359.915100px;}
.yb8{bottom:360.240330px;}
.y176{bottom:365.136810px;}
.y10{bottom:365.980650px;}
.y12d{bottom:367.279110px;}
.y9f{bottom:367.690260px;}
.y56{bottom:368.909010px;}
.y106{bottom:370.207650px;}
.y3e{bottom:371.310450px;}
.y5c{bottom:372.017760px;}
.yf7{bottom:373.972080px;}
.y152{bottom:375.699360px;}
.y33{bottom:377.594910px;}
.y25{bottom:377.636010px;}
.y15b{bottom:379.063800px;}
.yd7{bottom:380.969850px;}
.y161{bottom:383.703000px;}
.y8a{bottom:383.759670px;}
.y90{bottom:383.856810px;}
.y175{bottom:384.033930px;}
.y4c{bottom:386.415150px;}
.y74{bottom:386.560200px;}
.y13c{bottom:393.934710px;}
.y148{bottom:394.119930px;}
.y118{bottom:397.325430px;}
.ye5{bottom:399.775500px;}
.y174{bottom:402.931050px;}
.y112{bottom:403.115100px;}
.y3d{bottom:403.710450px;}
.yb7{bottom:403.787010px;}
.yff{bottom:407.587500px;}
.y1d{bottom:408.155670px;}
.y55{bottom:412.455690px;}
.yf6{bottom:413.561100px;}
.yca{bottom:414.766200px;}
.y5b{bottom:415.564440px;}
.y12c{bottom:417.146130px;}
.y47{bottom:417.869250px;}
.yd1{bottom:418.193610px;}
.y24{bottom:419.206290px;}
.y151{bottom:419.246040px;}
.y75{bottom:422.267550px;}
.y173{bottom:426.326730px;}
.yef{bottom:426.757950px;}
.y9a{bottom:428.422380px;}
.yf{bottom:428.620650px;}
.y184{bottom:430.038450px;}
.y160{bottom:431.223000px;}
.y32{bottom:435.189870px;}
.y9e{bottom:435.579600px;}
.y117{bottom:442.881450px;}
.y13b{bottom:443.801730px;}
.y172{bottom:445.223850px;}
.yb6{bottom:447.333690px;}
.y1c{bottom:449.725950px;}
.y147{bottom:455.684790px;}
.y54{bottom:456.002370px;}
.yb2{bottom:457.379100px;}
.y84{bottom:457.884690px;}
.y10e{bottom:458.130150px;}
.y5a{bottom:459.111120px;}
.y23{bottom:460.776570px;}
.y150{bottom:462.792720px;}
.yae{bottom:466.244400px;}
.y12b{bottom:467.013150px;}
.yfe{bottom:467.080200px;}
.y171{bottom:468.619530px;}
.y6a{bottom:469.192800px;}
.y6c{bottom:469.746450px;}
.y105{bottom:469.753650px;}
.y120{bottom:471.311370px;}
.yc9{bottom:471.818280px;}
.yee{bottom:474.277950px;}
.yc3{bottom:476.066550px;}
.y93{bottom:477.581340px;}
.y15f{bottom:478.743000px;}
.y3c{bottom:483.510450px;}
.y73{bottom:486.465150px;}
.yde{bottom:487.061700px;}
.y170{bottom:487.516650px;}
.y116{bottom:488.437470px;}
.ye4{bottom:488.695200px;}
.yb5{bottom:490.880370px;}
.ye{bottom:491.080650px;}
.y1b{bottom:491.344830px;}
.y15{bottom:491.795250px;}
.y31{bottom:492.784830px;}
.y13a{bottom:493.668750px;}
.y146{bottom:499.231470px;}
.y53{bottom:499.549050px;}
.yd2{bottom:501.547800px;}
.y22{bottom:502.346850px;}
.y59{bottom:502.657800px;}
.y83{bottom:510.456930px;}
.y16f{bottom:510.912330px;}
.y78{bottom:514.623600px;}
.y46{bottom:514.707900px;}
.yc8{bottom:515.364960px;}
.y12a{bottom:516.688650px;}
.y8{bottom:518.942910px;}
.y92{bottom:521.128020px;}
.yed{bottom:521.797950px;}
.y14f{bottom:524.357580px;}
.y7d{bottom:525.687750px;}
.ya3{bottom:526.058370px;}
.ya6{bottom:526.062360px;}
.y15e{bottom:526.263000px;}
.y16e{bottom:529.809450px;}
.yad{bottom:531.044400px;}
.ye3{bottom:531.895200px;}
.y30{bottom:532.373850px;}
.y11f{bottom:532.876230px;}
.y1a{bottom:532.915110px;}
.y7b{bottom:538.578300px;}
.y6b{bottom:538.938450px;}
.y145{bottom:542.778150px;}
.y139{bottom:543.344250px;}
.yb4{bottom:547.932450px;}
.y7{bottom:550.615530px;}
.yfd{bottom:551.048250px;}
.y63{bottom:553.148040px;}
.y16d{bottom:553.205130px;}
.yd{bottom:553.540650px;}
.y115{bottom:560.971350px;}
.y69{bottom:561.192300px;}
.y5f{bottom:561.430020px;}
.ydd{bottom:561.581700px;}
.y82{bottom:563.029170px;}
.y3b{bottom:563.322450px;}
.y91{bottom:564.674700px;}
.yaa{bottom:564.926850px;}
.ya2{bottom:565.647390px;}
.ya5{bottom:565.651380px;}
.yf5{bottom:566.981250px;}
.y14e{bottom:567.904260px;}
.yec{bottom:569.317950px;}
.y79{bottom:570.829650px;}
.y16c{bottom:572.102250px;}
.yc7{bottom:572.417040px;}
.y19{bottom:574.485390px;}
.ye2{bottom:575.095200px;}
.y126{bottom:576.296250px;}
.y29{bottom:577.061850px;}
.y71{bottom:577.629090px;}
.y8c{bottom:578.439870px;}
.y76{bottom:579.310950px;}
.y6{bottom:582.288150px;}
.ya1{bottom:588.222450px;}
.y72{bottom:589.834350px;}
.y11e{bottom:594.441090px;}
.y16b{bottom:595.497930px;}
.y3a{bottom:595.722450px;}
.y144{bottom:596.418150px;}
.y62{bottom:596.694720px;}
.y45{bottom:597.191850px;}
.y2e{bottom:600.781470px;}
.y135{bottom:602.951850px;}
.y8e{bottom:603.069600px;}
.y5e{bottom:604.976700px;}
.yb3{bottom:604.984530px;}
.ya4{bottom:605.240400px;}
.y6e{bottom:605.605950px;}
.y9d{bottom:605.681760px;}
.yc1{bottom:608.685300px;}
.ydc{bottom:609.101700px;}
.ya9{bottom:609.560550px;}
.y8f{bottom:613.481550px;}
.y16a{bottom:614.395050px;}
.y81{bottom:615.601410px;}
.yc6{bottom:615.963720px;}
.y18{bottom:616.055670px;}
.yc{bottom:616.180650px;}
.y70{bottom:617.222970px;}
.ye1{bottom:618.295200px;}
.y28{bottom:618.690930px;}
.y52{bottom:619.106400px;}
.y8b{bottom:621.986550px;}
.y14d{bottom:629.469120px;}
.y124{bottom:630.491400px;}
.y134{bottom:631.074150px;}
.y123{bottom:631.984500px;}
.yfc{bottom:636.116250px;}
.y169{bottom:637.790730px;}
.y15d{bottom:639.068100px;}
.y61{bottom:640.241400px;}
.y2d{bottom:640.375350px;}
.y99{bottom:641.643000px;}
.y114{bottom:645.161100px;}
.y77{bottom:647.373600px;}
.y2{bottom:649.032810px;}
.yf4{bottom:652.481250px;}
.y6d{bottom:653.125950px;}
.y7a{bottom:655.878450px;}
.ya8{bottom:656.005950px;}
.ydb{bottom:656.621700px;}
.y168{bottom:656.687850px;}
.y6f{bottom:656.816850px;}
.y17{bottom:657.625950px;}
.y27{bottom:660.261210px;}
.ye0{bottom:661.495200px;}
.y58{bottom:664.510950px;}
.y143{bottom:665.093700px;}
.y41{bottom:665.765100px;}
.y80{bottom:668.173650px;}
.ya7{bottom:669.490800px;}
.y122{bottom:670.990800px;}
.yc5{bottom:673.015800px;}
.yac{bottom:673.598550px;}
.y9c{bottom:673.735800px;}
.yb{bottom:678.640650px;}
.y167{bottom:680.083530px;}
.yd0{bottom:682.240650px;}
.y10f{bottom:685.435800px;}
.y67{bottom:691.047870px;}
.y15a{bottom:696.140850px;}
.y159{bottom:696.190200px;}
.y111{bottom:697.545720px;}
.y166{bottom:698.980650px;}
.y2f{bottom:699.250350px;}
.ydf{bottom:704.695200px;}
.y1{bottom:710.211750px;}
.ya{bottom:741.459750px;}
.y110{bottom:744.339600px;}
.he{height:39.313477px;}
.h1d{height:43.536094px;}
.h2f{height:46.158750px;}
.h9{height:52.453125px;}
.h1b{height:54.685125px;}
.h2e{height:57.667500px;}
.h5{height:61.329023px;}
.h2a{height:61.370156px;}
.h2c{height:65.531250px;}
.h23{height:65.566406px;}
.h4{height:69.762656px;}
.h3{height:78.626953px;}
.hf{height:78.679688px;}
.h10{height:84.901725px;}
.h25{height:87.538008px;}
.h19{height:87.540429px;}
.h2{height:87.596719px;}
.h26{height:94.222969px;}
.ha{height:95.924883px;}
.hb{height:95.989219px;}
.h1c{height:98.296875px;}
.hd{height:103.396492px;}
.hc{height:103.437293px;}
.h15{height:103.612252px;}
.h12{height:104.835938px;}
.h7{height:104.906250px;}
.h22{height:108.633847px;}
.h21{height:108.649808px;}
.h27{height:108.695767px;}
.h24{height:108.739688px;}
.h29{height:112.898456px;}
.h13{height:112.915898px;}
.h18{height:112.962656px;}
.h2b{height:113.746992px;}
.h17{height:113.823281px;}
.h1f{height:119.551845px;}
.h1e{height:119.604285px;}
.h16{height:119.922187px;}
.h1a{height:120.942422px;}
.h6{height:122.133867px;}
.h14{height:122.332500px;}
.h28{height:131.062500px;}
.h2d{height:139.394156px;}
.h30{height:139.955977px;}
.h11{height:143.479687px;}
.h1{height:148.342852px;}
.h20{height:155.652559px;}
.h8{height:157.253906px;}
.h0{height:810.000000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x9{left:57.516900px;}
.x43{left:58.832820px;}
.x38{left:60.160200px;}
.x3f{left:61.552620px;}
.x3d{left:63.595050px;}
.x25{left:67.956900px;}
.x55{left:69.474600px;}
.x1{left:70.706250px;}
.x29{left:76.927500px;}
.xe{left:78.187500px;}
.x70{left:79.807500px;}
.x12{left:82.987500px;}
.xf{left:87.377760px;}
.x7d{left:89.732220px;}
.x58{left:94.038000px;}
.x6{left:95.722500px;}
.x69{left:97.784610px;}
.x5a{left:100.147500px;}
.x37{left:108.317550px;}
.x2a{left:117.427500px;}
.x23{left:120.928350px;}
.x1d{left:125.369250px;}
.x81{left:129.040500px;}
.x10{left:131.286780px;}
.x46{left:140.917500px;}
.x39{left:142.496700px;}
.x59{left:144.787500px;}
.x3e{left:153.981450px;}
.x72{left:155.251200px;}
.x4a{left:158.909760px;}
.x20{left:169.503660px;}
.x16{left:175.612500px;}
.x6f{left:183.206250px;}
.x80{left:184.480500px;}
.x50{left:193.654650px;}
.x4c{left:197.227800px;}
.x7{left:198.688440px;}
.x56{left:203.167800px;}
.x1e{left:208.260900px;}
.x2b{left:210.120660px;}
.x42{left:216.817350px;}
.x45{left:220.171200px;}
.x1f{left:226.016100px;}
.x54{left:227.323080px;}
.x2{left:229.639050px;}
.x6a{left:233.680200px;}
.x22{left:236.511900px;}
.x52{left:244.582260px;}
.x33{left:246.932700px;}
.x75{left:248.921850px;}
.x48{left:255.808350px;}
.x4b{left:264.445080px;}
.x79{left:272.480010px;}
.x34{left:276.757050px;}
.x3c{left:286.110900px;}
.x71{left:287.148750px;}
.x64{left:290.587650px;}
.x7a{left:292.469910px;}
.x78{left:305.780550px;}
.x67{left:310.875150px;}
.x14{left:312.461100px;}
.x4{left:314.193750px;}
.x5{left:319.242750px;}
.x4d{left:321.247800px;}
.x53{left:325.418400px;}
.x4e{left:327.723810px;}
.x6e{left:341.572650px;}
.x74{left:345.850500px;}
.xc{left:352.222800px;}
.x76{left:372.392850px;}
.x2f{left:374.184900px;}
.x26{left:377.016900px;}
.x57{left:379.762740px;}
.x30{left:381.968100px;}
.x51{left:382.993770px;}
.xa{left:384.363300px;}
.x8{left:396.672240px;}
.x36{left:403.516350px;}
.x17{left:406.655250px;}
.x68{left:420.412350px;}
.x18{left:432.926250px;}
.x77{left:435.214830px;}
.x3a{left:438.561420px;}
.x7c{left:445.666080px;}
.xb{left:448.803300px;}
.x6d{left:455.152650px;}
.x3{left:468.273750px;}
.x24{left:481.652490px;}
.x63{left:502.639500px;}
.x7b{left:541.693020px;}
.x44{left:549.416760px;}
.x61{left:550.800000px;}
.x31{left:553.120200px;}
.x3b{left:554.839620px;}
.x35{left:588.201600px;}
.x13{left:593.362500px;}
.x32{left:604.757700px;}
.x19{left:611.990250px;}
.x7e{left:618.839100px;}
.x1a{left:620.981250px;}
.x65{left:635.925000px;}
.x6b{left:647.625000px;}
.x40{left:654.176400px;}
.x62{left:658.800000px;}
.x2e{left:665.623950px;}
.x66{left:667.612380px;}
.x21{left:681.790500px;}
.x5e{left:691.901250px;}
.x41{left:696.471360px;}
.x2c{left:699.862500px;}
.x5b{left:705.221250px;}
.x2d{left:710.737500px;}
.xd{left:713.506200px;}
.x15{left:727.492500px;}
.x49{left:729.697500px;}
.x60{left:734.201250px;}
.x5c{left:749.321250px;}
.x5f{left:772.181250px;}
.x5d{left:775.241250px;}
.x47{left:784.039800px;}
.x4f{left:788.878050px;}
.x7f{left:789.894570px;}
.x1c{left:818.432250px;}
.x1b{left:819.863250px;}
.x11{left:833.617500px;}
.x6c{left:844.172250px;}
.x73{left:872.748450px;}
.x27{left:884.049150px;}
.x28{left:901.049700px;}
@media print{
.v7{vertical-align:-33.920000pt;}
.v8{vertical-align:-31.360000pt;}
.v4{vertical-align:-28.799467pt;}
.v9{vertical-align:-26.240000pt;}
.v11{vertical-align:-2.688000pt;}
.v0{vertical-align:0.000000pt;}
.vb{vertical-align:1.984000pt;}
.ve{vertical-align:13.413867pt;}
.v13{vertical-align:16.424960pt;}
.v10{vertical-align:26.240000pt;}
.v2{vertical-align:28.843200pt;}
.vf{vertical-align:32.000000pt;}
.v1{vertical-align:35.061760pt;}
.v5{vertical-align:38.400000pt;}
.v6{vertical-align:41.600000pt;}
.va{vertical-align:43.520000pt;}
.v3{vertical-align:57.600000pt;}
.vd{vertical-align:60.494080pt;}
.vc{vertical-align:64.025600pt;}
.v12{vertical-align:69.354667pt;}
.ls7d{letter-spacing:-4.608000pt;}
.ls20{letter-spacing:-3.893760pt;}
.ls21{letter-spacing:-2.222080pt;}
.ls30{letter-spacing:-1.756800pt;}
.ls3e{letter-spacing:-1.249280pt;}
.ls3d{letter-spacing:-0.624640pt;}
.ls92{letter-spacing:-0.619520pt;}
.ls97{letter-spacing:-0.450560pt;}
.ls46{letter-spacing:-0.351360pt;}
.ls96{letter-spacing:-0.337920pt;}
.ls81{letter-spacing:-0.299520pt;}
.ls7e{letter-spacing:-0.298240pt;}
.ls3{letter-spacing:-0.288000pt;}
.ls91{letter-spacing:-0.281600pt;}
.ls9{letter-spacing:-0.256000pt;}
.ls51{letter-spacing:-0.213760pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls1{letter-spacing:-0.181120pt;}
.ls5{letter-spacing:-0.170240pt;}
.ls93{letter-spacing:-0.168960pt;}
.ls7{letter-spacing:-0.149120pt;}
.ls98{letter-spacing:-0.148480pt;}
.ls22{letter-spacing:-0.138880pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls48{letter-spacing:-0.117120pt;}
.ls50{letter-spacing:-0.106880pt;}
.ls47{letter-spacing:-0.106240pt;}
.ls19{letter-spacing:-0.078080pt;}
.ls6{letter-spacing:-0.074880pt;}
.ls4{letter-spacing:0.000000pt;}
.ls43{letter-spacing:0.000533pt;}
.ls76{letter-spacing:0.016640pt;}
.ls7b{letter-spacing:0.038507pt;}
.ls90{letter-spacing:0.056320pt;}
.ls39{letter-spacing:0.062080pt;}
.ls3b{letter-spacing:0.062613pt;}
.ls16{letter-spacing:0.071573pt;}
.ls15{letter-spacing:0.071680pt;}
.ls49{letter-spacing:0.076800pt;}
.ls3f{letter-spacing:0.078080pt;}
.ls6e{letter-spacing:0.094720pt;}
.ls61{letter-spacing:0.095253pt;}
.ls4b{letter-spacing:0.100480pt;}
.ls2{letter-spacing:0.106880pt;}
.ls69{letter-spacing:0.107520pt;}
.ls4f{letter-spacing:0.114880pt;}
.ls3c{letter-spacing:0.116480pt;}
.lsb{letter-spacing:0.117120pt;}
.ls4d{letter-spacing:0.124373pt;}
.ls3a{letter-spacing:0.124800pt;}
.ls27{letter-spacing:0.128000pt;}
.ls68{letter-spacing:0.133760pt;}
.ls23{letter-spacing:0.138880pt;}
.ls7c{letter-spacing:0.138944pt;}
.ls5d{letter-spacing:0.140160pt;}
.ls60{letter-spacing:0.142080pt;}
.lsf{letter-spacing:0.144000pt;}
.ls1d{letter-spacing:0.147200pt;}
.ls62{letter-spacing:0.147307pt;}
.ls37{letter-spacing:0.149120pt;}
.ls6d{letter-spacing:0.160640pt;}
.ls38{letter-spacing:0.168960pt;}
.ls65{letter-spacing:0.177920pt;}
.ls0{letter-spacing:0.181120pt;}
.ls86{letter-spacing:0.181760pt;}
.ls13{letter-spacing:0.192000pt;}
.ls34{letter-spacing:0.213760pt;}
.ls99{letter-spacing:0.225280pt;}
.lse{letter-spacing:0.234240pt;}
.ls54{letter-spacing:0.240000pt;}
.ls72{letter-spacing:0.243200pt;}
.ls58{letter-spacing:0.247680pt;}
.ls2e{letter-spacing:0.255360pt;}
.lsd{letter-spacing:0.256000pt;}
.ls1a{letter-spacing:0.277760pt;}
.ls95{letter-spacing:0.281600pt;}
.ls26{letter-spacing:0.285440pt;}
.ls10{letter-spacing:0.298240pt;}
.ls8e{letter-spacing:0.299520pt;}
.ls8c{letter-spacing:0.306560pt;}
.ls2a{letter-spacing:0.307840pt;}
.ls7a{letter-spacing:0.310400pt;}
.ls82{letter-spacing:0.316224pt;}
.ls28{letter-spacing:0.320000pt;}
.ls29{letter-spacing:0.320533pt;}
.ls36{letter-spacing:0.320640pt;}
.ls25{letter-spacing:0.325120pt;}
.ls83{letter-spacing:0.336640pt;}
.ls94{letter-spacing:0.337920pt;}
.ls2d{letter-spacing:0.340480pt;}
.ls85{letter-spacing:0.342400pt;}
.ls18{letter-spacing:0.351360pt;}
.ls2f{letter-spacing:0.355200pt;}
.ls79{letter-spacing:0.355840pt;}
.ls44{letter-spacing:0.364160pt;}
.ls88{letter-spacing:0.364800pt;}
.ls84{letter-spacing:0.365440pt;}
.ls2b{letter-spacing:0.399872pt;}
.ls63{letter-spacing:0.420928pt;}
.ls42{letter-spacing:0.473835pt;}
.ls67{letter-spacing:0.569216pt;}
.ls7f{letter-spacing:0.765440pt;}
.ls17{letter-spacing:0.831552pt;}
.ls57{letter-spacing:0.920021pt;}
.ls74{letter-spacing:1.352533pt;}
.ls75{letter-spacing:1.408000pt;}
.ls77{letter-spacing:1.408533pt;}
.ls8b{letter-spacing:14.535680pt;}
.ls40{letter-spacing:23.072640pt;}
.ls14{letter-spacing:26.592000pt;}
.ls11{letter-spacing:27.136000pt;}
.ls6c{letter-spacing:28.643840pt;}
.ls5c{letter-spacing:28.857600pt;}
.ls8a{letter-spacing:28.981760pt;}
.ls35{letter-spacing:29.071360pt;}
.ls5e{letter-spacing:29.120000pt;}
.ls5f{letter-spacing:29.178240pt;}
.ls5b{letter-spacing:29.498880pt;}
.ls4e{letter-spacing:29.691520pt;}
.ls6b{letter-spacing:29.712640pt;}
.ls56{letter-spacing:32.325120pt;}
.ls5a{letter-spacing:32.559360pt;}
.ls45{letter-spacing:32.640000pt;}
.ls32{letter-spacing:32.676480pt;}
.ls59{letter-spacing:32.747520pt;}
.ls52{letter-spacing:32.793600pt;}
.ls55{letter-spacing:32.910720pt;}
.ls41{letter-spacing:33.004416pt;}
.ls4c{letter-spacing:33.043947pt;}
.ls4a{letter-spacing:33.044480pt;}
.ls66{letter-spacing:33.121536pt;}
.ls1f{letter-spacing:33.226240pt;}
.ls2c{letter-spacing:33.262080pt;}
.ls64{letter-spacing:33.280000pt;}
.ls33{letter-spacing:33.496320pt;}
.ls73{letter-spacing:34.944000pt;}
.ls80{letter-spacing:37.358720pt;}
.ls1e{letter-spacing:37.914240pt;}
.ls1b{letter-spacing:38.608640pt;}
.ls89{letter-spacing:38.797440pt;}
.lsc{letter-spacing:40.523520pt;}
.ls71{letter-spacing:41.902720pt;}
.ls6f{letter-spacing:42.368000pt;}
.ls31{letter-spacing:51.006720pt;}
.ls78{letter-spacing:53.214720pt;}
.ls70{letter-spacing:57.406720pt;}
.ls87{letter-spacing:66.265600pt;}
.ls8f{letter-spacing:85.248000pt;}
.ls6a{letter-spacing:134.462933pt;}
.ls24{letter-spacing:207.625600pt;}
.ls1c{letter-spacing:372.500480pt;}
.ls12{letter-spacing:531.648000pt;}
.ls8d{letter-spacing:575.354027pt;}
.ls53{letter-spacing:1084.534101pt;}
.ws3e{word-spacing:-128.000000pt;}
.ws7a{word-spacing:-117.120000pt;}
.ws89{word-spacing:-106.880000pt;}
.ws88{word-spacing:-78.343040pt;}
.ws70{word-spacing:-53.376000pt;}
.ws6f{word-spacing:-53.184000pt;}
.ws63{word-spacing:-41.753600pt;}
.ws79{word-spacing:-41.604480pt;}
.ws8{word-spacing:-41.306240pt;}
.ws90{word-spacing:-41.157120pt;}
.ws4d{word-spacing:-40.032000pt;}
.ws8e{word-spacing:-38.886400pt;}
.ws9e{word-spacing:-38.747520pt;}
.ws2c{word-spacing:-38.608640pt;}
.ws36{word-spacing:-35.840000pt;}
.wsb{word-spacing:-35.584000pt;}
.ws4a{word-spacing:-35.456000pt;}
.wsa{word-spacing:-35.328000pt;}
.ws91{word-spacing:-32.793600pt;}
.ws10{word-spacing:-32.676480pt;}
.ws3a{word-spacing:-32.559360pt;}
.ws64{word-spacing:-32.442240pt;}
.ws85{word-spacing:-30.976000pt;}
.ws3d{word-spacing:-30.802560pt;}
.ws4e{word-spacing:-30.033280pt;}
.ws17{word-spacing:-29.819520pt;}
.ws18{word-spacing:-29.712640pt;}
.ws69{word-spacing:-29.605760pt;}
.ws76{word-spacing:-29.498880pt;}
.ws83{word-spacing:-26.933760pt;}
.ws21{word-spacing:-26.688000pt;}
.ws20{word-spacing:-26.400000pt;}
.ws2f{word-spacing:-25.620480pt;}
.ws3f{word-spacing:-24.003840pt;}
.ws0{word-spacing:-23.663360pt;}
.ws96{word-spacing:-21.784320pt;}
.ws31{word-spacing:-21.706240pt;}
.ws28{word-spacing:-21.628160pt;}
.ws57{word-spacing:-21.081600pt;}
.ws7{word-spacing:-20.741760pt;}
.ws99{word-spacing:-20.517120pt;}
.ws3c{word-spacing:-20.104320pt;}
.ws73{word-spacing:-19.891200pt;}
.ws6a{word-spacing:-19.749120pt;}
.ws1a{word-spacing:-18.048000pt;}
.ws19{word-spacing:-17.792000pt;}
.ws2b{word-spacing:-16.922880pt;}
.wsa9{word-spacing:-15.938560pt;}
.wsad{word-spacing:-15.882240pt;}
.wsa3{word-spacing:-15.713280pt;}
.wsa5{word-spacing:-15.656960pt;}
.wsa7{word-spacing:-15.488000pt;}
.wsaa{word-spacing:-10.170880pt;}
.ws72{word-spacing:-7.104000pt;}
.ws8d{word-spacing:-6.441600pt;}
.ws65{word-spacing:-2.688000pt;}
.wsa8{word-spacing:-2.658304pt;}
.ws33{word-spacing:-2.638720pt;}
.ws9d{word-spacing:-2.360960pt;}
.ws1d{word-spacing:-2.244480pt;}
.ws47{word-spacing:-2.176000pt;}
.wsa0{word-spacing:-2.171520pt;}
.ws6d{word-spacing:-2.059200pt;}
.ws71{word-spacing:-2.048000pt;}
.ws9c{word-spacing:-2.029248pt;}
.wsb8{word-spacing:-1.914880pt;}
.ws7f{word-spacing:-1.816960pt;}
.wsab{word-spacing:-1.706496pt;}
.ws97{word-spacing:-1.666560pt;}
.wsb3{word-spacing:-1.633280pt;}
.ws1e{word-spacing:-1.603200pt;}
.wsa1{word-spacing:-1.497600pt;}
.ws87{word-spacing:-1.464256pt;}
.ws8c{word-spacing:-1.415232pt;}
.ws11{word-spacing:-1.408000pt;}
.wsba{word-spacing:-1.367040pt;}
.ws61{word-spacing:-1.288320pt;}
.ws6b{word-spacing:-1.282560pt;}
.ws53{word-spacing:-1.280000pt;}
.wsa2{word-spacing:-1.272960pt;}
.wsb5{word-spacing:-1.239040pt;}
.ws7c{word-spacing:-1.175680pt;}
.ws9b{word-spacing:-1.111040pt;}
.wsa4{word-spacing:-1.081344pt;}
.ws1c{word-spacing:-0.961920pt;}
.wsb2{word-spacing:-0.957440pt;}
.wsc{word-spacing:-0.898560pt;}
.ws40{word-spacing:-0.896000pt;}
.ws1f{word-spacing:-0.768000pt;}
.ws84{word-spacing:-0.748160pt;}
.ws1b{word-spacing:-0.745600pt;}
.ws14{word-spacing:-0.702720pt;}
.ws42{word-spacing:-0.694400pt;}
.ws15{word-spacing:-0.672000pt;}
.ws6c{word-spacing:-0.641280pt;}
.ws45{word-spacing:-0.640000pt;}
.wsaf{word-spacing:-0.619520pt;}
.wsae{word-spacing:-0.608256pt;}
.ws95{word-spacing:-0.585600pt;}
.ws62{word-spacing:-0.584320pt;}
.ws9a{word-spacing:-0.576000pt;}
.ws43{word-spacing:-0.512000pt;}
.ws94{word-spacing:-0.468480pt;}
.wsb7{word-spacing:-0.450560pt;}
.ws8f{word-spacing:-0.416640pt;}
.ws27{word-spacing:-0.384000pt;}
.wsac{word-spacing:-0.377344pt;}
.ws49{word-spacing:-0.351360pt;}
.wsb1{word-spacing:-0.337920pt;}
.ws3{word-spacing:-0.320640pt;}
.ws46{word-spacing:-0.298240pt;}
.ws41{word-spacing:-0.277760pt;}
.wse{word-spacing:-0.256000pt;}
.ws44{word-spacing:-0.255360pt;}
.ws12{word-spacing:-0.234240pt;}
.wsb9{word-spacing:-0.225280pt;}
.ws8a{word-spacing:-0.213760pt;}
.ws16{word-spacing:-0.149120pt;}
.ws78{word-spacing:-0.142080pt;}
.ws35{word-spacing:-0.138880pt;}
.ws92{word-spacing:-0.128000pt;}
.ws2a{word-spacing:-0.117120pt;}
.ws4c{word-spacing:-0.106880pt;}
.ws26{word-spacing:-0.096000pt;}
.ws5c{word-spacing:-0.078080pt;}
.wsb0{word-spacing:-0.056320pt;}
.ws1{word-spacing:0.000000pt;}
.ws48{word-spacing:0.117120pt;}
.ws80{word-spacing:0.128000pt;}
.ws34{word-spacing:0.138880pt;}
.ws82{word-spacing:0.149120pt;}
.ws6{word-spacing:0.170240pt;}
.ws77{word-spacing:0.213760pt;}
.ws93{word-spacing:0.256000pt;}
.wsb4{word-spacing:0.281600pt;}
.ws25{word-spacing:0.288000pt;}
.ws51{word-spacing:0.298240pt;}
.wsb6{word-spacing:0.337920pt;}
.ws60{word-spacing:0.351360pt;}
.ws29{word-spacing:0.384000pt;}
.ws50{word-spacing:0.447360pt;}
.ws4{word-spacing:0.480000pt;}
.ws13{word-spacing:0.585600pt;}
.ws52{word-spacing:0.596480pt;}
.ws58{word-spacing:0.624640pt;}
.ws5{word-spacing:0.680960pt;}
.wsa6{word-spacing:0.709632pt;}
.ws4b{word-spacing:0.768000pt;}
.ws4f{word-spacing:0.894720pt;}
.wsd{word-spacing:1.024000pt;}
.ws2{word-spacing:1.086720pt;}
.ws24{word-spacing:1.152000pt;}
.ws5a{word-spacing:1.218048pt;}
.ws59{word-spacing:1.249280pt;}
.ws7b{word-spacing:1.288320pt;}
.ws8b{word-spacing:1.342080pt;}
.ws5e{word-spacing:1.640320pt;}
.wsf{word-spacing:1.664000pt;}
.ws66{word-spacing:1.873920pt;}
.ws98{word-spacing:1.920000pt;}
.ws32{word-spacing:2.083200pt;}
.ws5d{word-spacing:2.236800pt;}
.ws81{word-spacing:2.304000pt;}
.ws5f{word-spacing:2.385920pt;}
.ws54{word-spacing:2.567680pt;}
.ws67{word-spacing:2.833280pt;}
.ws6e{word-spacing:3.578880pt;}
.ws55{word-spacing:4.441600pt;}
.ws74{word-spacing:7.678720pt;}
.ws7d{word-spacing:8.345216pt;}
.ws75{word-spacing:8.918507pt;}
.ws7e{word-spacing:8.919040pt;}
.ws86{word-spacing:9.939840pt;}
.ws9f{word-spacing:10.836480pt;}
.ws3b{word-spacing:11.155200pt;}
.ws37{word-spacing:12.820480pt;}
.ws39{word-spacing:13.440000pt;}
.ws38{word-spacing:13.440533pt;}
.ws2e{word-spacing:13.459947pt;}
.ws2d{word-spacing:13.460480pt;}
.ws30{word-spacing:14.120427pt;}
.ws5b{word-spacing:43.710720pt;}
.ws9{word-spacing:87.168000pt;}
.ws56{word-spacing:132.032000pt;}
.ws23{word-spacing:220.070400pt;}
.ws22{word-spacing:453.696000pt;}
.ws68{word-spacing:1246.060480pt;}
._24{margin-left:-1893.324053pt;}
._19{margin-left:-12.801216pt;}
._9{margin-left:-10.960320pt;}
._a{margin-left:-9.147072pt;}
._3{margin-left:-7.912960pt;}
._4{margin-left:-6.575040pt;}
._6{margin-left:-4.320832pt;}
._5{margin-left:-3.370752pt;}
._7{margin-left:-2.165696pt;}
._0{margin-left:-1.267840pt;}
._2{width:1.177280pt;}
._1{width:2.318336pt;}
._11{width:3.893760pt;}
._1d{width:5.322240pt;}
._1a{width:7.015040pt;}
._25{width:14.108800pt;}
._1b{width:29.605760pt;}
._1c{width:33.496320pt;}
._12{width:36.386560pt;}
._13{width:39.820800pt;}
._23{width:41.790080pt;}
._17{width:45.319360pt;}
._22{width:47.055296pt;}
._1e{width:96.637760pt;}
._18{width:111.029760pt;}
._1f{width:139.255680pt;}
._14{width:153.152000pt;}
._15{width:184.112640pt;}
._16{width:186.923520pt;}
._d{width:196.294720pt;}
._20{width:224.167680pt;}
._c{width:285.165440pt;}
._e{width:381.344320pt;}
._b{width:515.636373pt;}
._21{width:747.885440pt;}
._f{width:1581.966336pt;}
._10{width:1585.785216pt;}
._8{width:1623.524736pt;}
.fs13{font-size:37.120000pt;}
.fsb{font-size:48.000000pt;}
.fs10{font-size:53.120000pt;}
.fs12{font-size:56.320000pt;}
.fs8{font-size:64.000000pt;}
.fse{font-size:71.040000pt;}
.fs4{font-size:74.880000pt;}
.fsa{font-size:78.080000pt;}
.fs11{font-size:80.000000pt;}
.fs3{font-size:85.120000pt;}
.fsd{font-size:92.160000pt;}
.fs2{font-size:96.000000pt;}
.fs1{font-size:106.880000pt;}
.fs9{font-size:117.120000pt;}
.fs6{font-size:128.000000pt;}
.fsc{font-size:138.880000pt;}
.fsf{font-size:144.000000pt;}
.fs5{font-size:149.120000pt;}
.fs14{font-size:170.880000pt;}
.fs0{font-size:181.120000pt;}
.fs7{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y9{bottom:16.688267pt;}
.yb1{bottom:66.412400pt;}
.y15c{bottom:66.722400pt;}
.y5{bottom:67.278933pt;}
.y60{bottom:70.718000pt;}
.y37{bottom:75.013333pt;}
.y133{bottom:76.089680pt;}
.yd6{bottom:76.801893pt;}
.ybe{bottom:81.922933pt;}
.y183{bottom:82.153253pt;}
.ycf{bottom:84.694027pt;}
.yb0{bottom:85.612400pt;}
.y86{bottom:86.076533pt;}
.yd4{bottom:87.403787pt;}
.y14c{bottom:87.643467pt;}
.ybc{bottom:91.788267pt;}
.y142{bottom:92.223680pt;}
.y158{bottom:94.779413pt;}
.y4{bottom:95.910933pt;}
.y10d{bottom:95.935680pt;}
.y43{bottom:95.996773pt;}
.yeb{bottom:96.636000pt;}
.y182{bottom:98.950693pt;}
.y2c{bottom:100.417067pt;}
.y157{bottom:102.076267pt;}
.yaf{bottom:104.812400pt;}
.y132{bottom:108.100240pt;}
.yd5{bottom:111.992133pt;}
.y14{bottom:116.356133pt;}
.ybd{bottom:117.122933pt;}
.y51{bottom:117.162000pt;}
.y85{bottom:117.756533pt;}
.y181{bottom:119.746853pt;}
.y5d{bottom:120.268933pt;}
.yd3{bottom:122.598347pt;}
.y141{bottom:124.234240pt;}
.y10a{bottom:126.193467pt;}
.y4e{bottom:128.806000pt;}
.y11d{bottom:130.381120pt;}
.y2b{bottom:130.657067pt;}
.y3{bottom:132.550800pt;}
.y4b{bottom:133.368107pt;}
.y10c{bottom:134.643840pt;}
.y42{bottom:134.704933pt;}
.y125{bottom:135.562800pt;}
.y180{bottom:136.544293pt;}
.y165{bottom:140.109333pt;}
.y131{bottom:140.110800pt;}
.y98{bottom:141.147333pt;}
.yea{bottom:144.167840pt;}
.y103{bottom:147.813600pt;}
.y21{bottom:148.856080pt;}
.y17f{bottom:153.341733pt;}
.y156{bottom:154.076267pt;}
.y121{bottom:154.402533pt;}
.y140{bottom:156.244800pt;}
.yda{bottom:163.919733pt;}
.y39{bottom:164.362800pt;}
.y11c{bottom:165.575680pt;}
.yce{bottom:165.770347pt;}
.yf3{bottom:166.568533pt;}
.yc4{bottom:167.848667pt;}
.ybb{bottom:168.004107pt;}
.y7f{bottom:171.260240pt;}
.y13{bottom:172.036133pt;}
.y4a{bottom:172.076267pt;}
.y10b{bottom:173.352000pt;}
.y17e{bottom:174.137893pt;}
.ya0{bottom:175.405707pt;}
.y109{bottom:180.913467pt;}
.y50{bottom:182.442000pt;}
.ye9{bottom:182.876000pt;}
.y38{bottom:183.562800pt;}
.yfb{bottom:183.619627pt;}
.y20{bottom:185.807440pt;}
.y2a{bottom:190.697067pt;}
.y17d{bottom:190.935333pt;}
.y102{bottom:191.013600pt;}
.y66{bottom:191.115680pt;}
.y89{bottom:191.293947pt;}
.y130{bottom:193.661840pt;}
.y97{bottom:196.811120pt;}
.y164{bottom:198.349333pt;}
.y11b{bottom:200.770240pt;}
.y104{bottom:204.213600pt;}
.y127{bottom:204.896267pt;}
.y155{bottom:208.014187pt;}
.yf2{bottom:208.808533pt;}
.y7e{bottom:209.968400pt;}
.y17c{bottom:211.731493pt;}
.y44{bottom:214.734933pt;}
.ycd{bottom:216.483307pt;}
.y13f{bottom:217.355707pt;}
.yba{bottom:218.724107pt;}
.yfa{bottom:218.809867pt;}
.yd9{bottom:222.159867pt;}
.y1f{bottom:222.758800pt;}
.y65{bottom:223.126240pt;}
.y12{bottom:227.556133pt;}
.y17b{bottom:228.528933pt;}
.y136{bottom:228.590133pt;}
.y88{bottom:230.002107pt;}
.y36{bottom:230.069200pt;}
.ye8{bottom:230.396000pt;}
.y14b{bottom:234.204347pt;}
.y96{bottom:235.519280pt;}
.y108{bottom:235.633467pt;}
.y8d{bottom:235.693600pt;}
.y129{bottom:235.933627pt;}
.y11a{bottom:235.964800pt;}
.ybf{bottom:237.798400pt;}
.y12f{bottom:237.817840pt;}
.y16{bottom:240.049733pt;}
.y163{bottom:240.589333pt;}
.y154{bottom:243.204427pt;}
.y101{bottom:243.900133pt;}
.y40{bottom:244.709733pt;}
.y9b{bottom:245.399893pt;}
.y17a{bottom:249.325093pt;}
.yf1{bottom:251.048533pt;}
.y138{bottom:251.869893pt;}
.y64{bottom:255.136800pt;}
.y128{bottom:258.341467pt;}
.y1e{bottom:259.710160pt;}
.y13e{bottom:261.511707pt;}
.yf9{bottom:262.029387pt;}
.y7c{bottom:264.518667pt;}
.y35{bottom:265.259440pt;}
.y179{bottom:266.122533pt;}
.ycc{bottom:267.203307pt;}
.y87{bottom:268.710267pt;}
.yb9{bottom:269.500667pt;}
.y14a{bottom:272.912507pt;}
.y57{bottom:273.163600pt;}
.y3f{bottom:273.509733pt;}
.y95{bottom:274.227440pt;}
.y137{bottom:274.277733pt;}
.ye7{bottom:277.916000pt;}
.y49{bottom:278.011307pt;}
.y4d{bottom:278.200133pt;}
.y153{bottom:279.196267pt;}
.yc0{bottom:279.802240pt;}
.yd8{bottom:280.399867pt;}
.y4f{bottom:281.182667pt;}
.y12e{bottom:282.144080pt;}
.y162{bottom:282.829333pt;}
.y11{bottom:283.076133pt;}
.y178{bottom:286.918693pt;}
.y107{bottom:290.365307pt;}
.yf0{bottom:293.288533pt;}
.yf8{bottom:297.219627pt;}
.y26{bottom:298.725093pt;}
.y34{bottom:300.449680pt;}
.y177{bottom:303.769893pt;}
.yab{bottom:304.040267pt;}
.y13d{bottom:305.837947pt;}
.yc2{bottom:311.478267pt;}
.y149{bottom:311.620667pt;}
.y119{bottom:312.683920pt;}
.y94{bottom:312.935600pt;}
.y68{bottom:316.440133pt;}
.ye6{bottom:316.647840pt;}
.y48{bottom:316.715013pt;}
.ycb{bottom:317.968107pt;}
.y100{bottom:319.100000pt;}
.y113{bottom:319.924533pt;}
.yb8{bottom:320.213627pt;}
.y176{bottom:324.566053pt;}
.y10{bottom:325.316133pt;}
.y12d{bottom:326.470320pt;}
.y9f{bottom:326.835787pt;}
.y56{bottom:327.919120pt;}
.y106{bottom:329.073467pt;}
.y3e{bottom:330.053733pt;}
.y5c{bottom:330.682453pt;}
.yf7{bottom:332.419627pt;}
.y152{bottom:333.954987pt;}
.y33{bottom:335.639920pt;}
.y25{bottom:335.676453pt;}
.y15b{bottom:336.945600pt;}
.yd7{bottom:338.639867pt;}
.y161{bottom:341.069333pt;}
.y8a{bottom:341.119707pt;}
.y90{bottom:341.206053pt;}
.y175{bottom:341.363493pt;}
.y4c{bottom:343.480133pt;}
.y74{bottom:343.609067pt;}
.y13c{bottom:350.164187pt;}
.y148{bottom:350.328827pt;}
.y118{bottom:353.178160pt;}
.ye5{bottom:355.356000pt;}
.y174{bottom:358.160933pt;}
.y112{bottom:358.324533pt;}
.y3d{bottom:358.853733pt;}
.yb7{bottom:358.921787pt;}
.yff{bottom:362.300000pt;}
.y1d{bottom:362.805040pt;}
.y55{bottom:366.627280pt;}
.yf6{bottom:367.609867pt;}
.yca{bottom:368.681067pt;}
.y5b{bottom:369.390613pt;}
.y12c{bottom:370.796560pt;}
.y47{bottom:371.439333pt;}
.yd1{bottom:371.727653pt;}
.y24{bottom:372.627813pt;}
.y151{bottom:372.663147pt;}
.y75{bottom:375.348933pt;}
.y173{bottom:378.957093pt;}
.yef{bottom:379.340400pt;}
.y9a{bottom:380.819893pt;}
.yf{bottom:380.996133pt;}
.y184{bottom:382.256400pt;}
.y160{bottom:383.309333pt;}
.y32{bottom:386.835440pt;}
.y9e{bottom:387.181867pt;}
.y117{bottom:393.672400pt;}
.y13b{bottom:394.490427pt;}
.y172{bottom:395.754533pt;}
.yb6{bottom:397.629947pt;}
.y1c{bottom:399.756400pt;}
.y147{bottom:405.053147pt;}
.y54{bottom:405.335440pt;}
.yb2{bottom:406.559200pt;}
.y84{bottom:407.008613pt;}
.y10e{bottom:407.226800pt;}
.y5a{bottom:408.098773pt;}
.y23{bottom:409.579173pt;}
.y150{bottom:411.371307pt;}
.yae{bottom:414.439467pt;}
.y12b{bottom:415.122800pt;}
.yfe{bottom:415.182400pt;}
.y171{bottom:416.550693pt;}
.y6a{bottom:417.060267pt;}
.y6c{bottom:417.552400pt;}
.y105{bottom:417.558800pt;}
.y120{bottom:418.943440pt;}
.yc9{bottom:419.394027pt;}
.yee{bottom:421.580400pt;}
.yc3{bottom:423.170267pt;}
.y93{bottom:424.516747pt;}
.y15f{bottom:425.549333pt;}
.y3c{bottom:429.787067pt;}
.y73{bottom:432.413467pt;}
.yde{bottom:432.943733pt;}
.y170{bottom:433.348133pt;}
.y116{bottom:434.166640pt;}
.ye4{bottom:434.395733pt;}
.yb5{bottom:436.338107pt;}
.ye{bottom:436.516133pt;}
.y1b{bottom:436.750960pt;}
.y15{bottom:437.151333pt;}
.y31{bottom:438.030960pt;}
.y13a{bottom:438.816667pt;}
.y146{bottom:443.761307pt;}
.y53{bottom:444.043600pt;}
.yd2{bottom:445.820267pt;}
.y22{bottom:446.530533pt;}
.y59{bottom:446.806933pt;}
.y83{bottom:453.739493pt;}
.y16f{bottom:454.144293pt;}
.y78{bottom:457.443200pt;}
.y46{bottom:457.518133pt;}
.yc8{bottom:458.102187pt;}
.y12a{bottom:459.278800pt;}
.y8{bottom:461.282587pt;}
.y92{bottom:463.224907pt;}
.yed{bottom:463.820400pt;}
.y14f{bottom:466.095627pt;}
.y7d{bottom:467.278000pt;}
.ya3{bottom:467.607440pt;}
.ya6{bottom:467.610987pt;}
.y15e{bottom:467.789333pt;}
.y16e{bottom:470.941733pt;}
.yad{bottom:472.039467pt;}
.ye3{bottom:472.795733pt;}
.y30{bottom:473.221200pt;}
.y11f{bottom:473.667760pt;}
.y1a{bottom:473.702320pt;}
.y7b{bottom:478.736267pt;}
.y6b{bottom:479.056400pt;}
.y145{bottom:482.469467pt;}
.y139{bottom:482.972667pt;}
.yb4{bottom:487.051067pt;}
.y7{bottom:489.436027pt;}
.yfd{bottom:489.820667pt;}
.y63{bottom:491.687147pt;}
.y16d{bottom:491.737893pt;}
.yd{bottom:492.036133pt;}
.y115{bottom:498.641200pt;}
.y69{bottom:498.837600pt;}
.y5f{bottom:499.048907pt;}
.ydd{bottom:499.183733pt;}
.y82{bottom:500.470373pt;}
.y3b{bottom:500.731067pt;}
.y91{bottom:501.933067pt;}
.yaa{bottom:502.157200pt;}
.ya2{bottom:502.797680pt;}
.ya5{bottom:502.801227pt;}
.yf5{bottom:503.983333pt;}
.y14e{bottom:504.803787pt;}
.yec{bottom:506.060400pt;}
.y79{bottom:507.404133pt;}
.y16c{bottom:508.535333pt;}
.yc7{bottom:508.815147pt;}
.y19{bottom:510.653680pt;}
.ye2{bottom:511.195733pt;}
.y126{bottom:512.263333pt;}
.y29{bottom:512.943867pt;}
.y71{bottom:513.448080pt;}
.y8c{bottom:514.168773pt;}
.y76{bottom:514.943067pt;}
.y6{bottom:517.589467pt;}
.ya1{bottom:522.864400pt;}
.y72{bottom:524.297200pt;}
.y11e{bottom:528.392080pt;}
.y16b{bottom:529.331493pt;}
.y3a{bottom:529.531067pt;}
.y144{bottom:530.149467pt;}
.y62{bottom:530.395307pt;}
.y45{bottom:530.837200pt;}
.y2e{bottom:534.027973pt;}
.y135{bottom:535.957200pt;}
.y8e{bottom:536.061867pt;}
.y5e{bottom:537.757067pt;}
.yb3{bottom:537.764027pt;}
.ya4{bottom:537.991467pt;}
.y6e{bottom:538.316400pt;}
.y9d{bottom:538.383787pt;}
.yc1{bottom:541.053600pt;}
.ydc{bottom:541.423733pt;}
.ya9{bottom:541.831600pt;}
.y8f{bottom:545.316933pt;}
.y16a{bottom:546.128933pt;}
.y81{bottom:547.201253pt;}
.yc6{bottom:547.523307pt;}
.y18{bottom:547.605040pt;}
.yc{bottom:547.716133pt;}
.y70{bottom:548.642640pt;}
.ye1{bottom:549.595733pt;}
.y28{bottom:549.947493pt;}
.y52{bottom:550.316800pt;}
.y8b{bottom:552.876933pt;}
.y14d{bottom:559.528107pt;}
.y124{bottom:560.436800pt;}
.y134{bottom:560.954800pt;}
.y123{bottom:561.764000pt;}
.yfc{bottom:565.436667pt;}
.y169{bottom:566.925093pt;}
.y15d{bottom:568.060533pt;}
.y61{bottom:569.103467pt;}
.y2d{bottom:569.222533pt;}
.y99{bottom:570.349333pt;}
.y114{bottom:573.476533pt;}
.y77{bottom:575.443200pt;}
.y2{bottom:576.918053pt;}
.yf4{bottom:579.983333pt;}
.y6d{bottom:580.556400pt;}
.y7a{bottom:583.003067pt;}
.ya8{bottom:583.116400pt;}
.ydb{bottom:583.663733pt;}
.y168{bottom:583.722533pt;}
.y6f{bottom:583.837200pt;}
.y17{bottom:584.556400pt;}
.y27{bottom:586.898853pt;}
.ye0{bottom:587.995733pt;}
.y58{bottom:590.676400pt;}
.y143{bottom:591.194400pt;}
.y41{bottom:591.791200pt;}
.y80{bottom:593.932133pt;}
.ya7{bottom:595.102933pt;}
.y122{bottom:596.436267pt;}
.yc5{bottom:598.236267pt;}
.yac{bottom:598.754267pt;}
.y9c{bottom:598.876267pt;}
.yb{bottom:603.236133pt;}
.y167{bottom:604.518693pt;}
.yd0{bottom:606.436133pt;}
.y10f{bottom:609.276267pt;}
.y67{bottom:614.264773pt;}
.y15a{bottom:618.791867pt;}
.y159{bottom:618.835733pt;}
.y111{bottom:620.040640pt;}
.y166{bottom:621.316133pt;}
.y2f{bottom:621.555867pt;}
.ydf{bottom:626.395733pt;}
.y1{bottom:631.299333pt;}
.ya{bottom:659.075333pt;}
.y110{bottom:661.635200pt;}
.he{height:34.945312pt;}
.h1d{height:38.698750pt;}
.h2f{height:41.030000pt;}
.h9{height:46.625000pt;}
.h1b{height:48.609000pt;}
.h2e{height:51.260000pt;}
.h5{height:54.514687pt;}
.h2a{height:54.551250pt;}
.h2c{height:58.250000pt;}
.h23{height:58.281250pt;}
.h4{height:62.011250pt;}
.h3{height:69.890625pt;}
.hf{height:69.937500pt;}
.h10{height:75.468200pt;}
.h25{height:77.811562pt;}
.h19{height:77.813715pt;}
.h2{height:77.863750pt;}
.h26{height:83.753750pt;}
.ha{height:85.266562pt;}
.hb{height:85.323750pt;}
.h1c{height:87.375000pt;}
.hd{height:91.907993pt;}
.hc{height:91.944260pt;}
.h15{height:92.099780pt;}
.h12{height:93.187500pt;}
.h7{height:93.250000pt;}
.h22{height:96.563420pt;}
.h21{height:96.577607pt;}
.h27{height:96.618460pt;}
.h24{height:96.657500pt;}
.h29{height:100.354183pt;}
.h13{height:100.369687pt;}
.h18{height:100.411250pt;}
.h2b{height:101.108438pt;}
.h17{height:101.176250pt;}
.h1f{height:106.268307pt;}
.h1e{height:106.314920pt;}
.h16{height:106.597500pt;}
.h1a{height:107.504375pt;}
.h6{height:108.563437pt;}
.h14{height:108.740000pt;}
.h28{height:116.500000pt;}
.h2d{height:123.905917pt;}
.h30{height:124.405313pt;}
.h11{height:127.537500pt;}
.h1{height:131.860312pt;}
.h20{height:138.357830pt;}
.h8{height:139.781250pt;}
.h0{height:720.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x9{left:51.126133pt;}
.x43{left:52.295840pt;}
.x38{left:53.475733pt;}
.x3f{left:54.713440pt;}
.x3d{left:56.528933pt;}
.x25{left:60.406133pt;}
.x55{left:61.755200pt;}
.x1{left:62.850000pt;}
.x29{left:68.380000pt;}
.xe{left:69.500000pt;}
.x70{left:70.940000pt;}
.x12{left:73.766667pt;}
.xf{left:77.669120pt;}
.x7d{left:79.761973pt;}
.x58{left:83.589333pt;}
.x6{left:85.086667pt;}
.x69{left:86.919653pt;}
.x5a{left:89.020000pt;}
.x37{left:96.282267pt;}
.x2a{left:104.380000pt;}
.x23{left:107.491867pt;}
.x1d{left:111.439333pt;}
.x81{left:114.702667pt;}
.x10{left:116.699360pt;}
.x46{left:125.260000pt;}
.x39{left:126.663733pt;}
.x59{left:128.700000pt;}
.x3e{left:136.872400pt;}
.x72{left:138.001067pt;}
.x4a{left:141.253120pt;}
.x20{left:150.669920pt;}
.x16{left:156.100000pt;}
.x6f{left:162.850000pt;}
.x80{left:163.982667pt;}
.x50{left:172.137467pt;}
.x4c{left:175.313600pt;}
.x7{left:176.611947pt;}
.x56{left:180.593600pt;}
.x1e{left:185.120800pt;}
.x2b{left:186.773920pt;}
.x42{left:192.726533pt;}
.x45{left:195.707733pt;}
.x1f{left:200.903200pt;}
.x54{left:202.064960pt;}
.x2{left:204.123600pt;}
.x6a{left:207.715733pt;}
.x22{left:210.232800pt;}
.x52{left:217.406453pt;}
.x33{left:219.495733pt;}
.x75{left:221.263867pt;}
.x48{left:227.385200pt;}
.x4b{left:235.062293pt;}
.x79{left:242.204453pt;}
.x34{left:246.006267pt;}
.x3c{left:254.320800pt;}
.x71{left:255.243333pt;}
.x64{left:258.300133pt;}
.x7a{left:259.973253pt;}
.x78{left:271.804933pt;}
.x67{left:276.333467pt;}
.x14{left:277.743200pt;}
.x4{left:279.283333pt;}
.x5{left:283.771333pt;}
.x4d{left:285.553600pt;}
.x53{left:289.260800pt;}
.x4e{left:291.310053pt;}
.x6e{left:303.620133pt;}
.x74{left:307.422667pt;}
.xc{left:313.086933pt;}
.x76{left:331.015867pt;}
.x2f{left:332.608800pt;}
.x26{left:335.126133pt;}
.x57{left:337.566880pt;}
.x30{left:339.527200pt;}
.x51{left:340.438907pt;}
.xa{left:341.656267pt;}
.x8{left:352.597547pt;}
.x36{left:358.681200pt;}
.x17{left:361.471333pt;}
.x68{left:373.699867pt;}
.x18{left:384.823333pt;}
.x77{left:386.857627pt;}
.x3a{left:389.832373pt;}
.x7c{left:396.147627pt;}
.xb{left:398.936267pt;}
.x6d{left:404.580133pt;}
.x3{left:416.243333pt;}
.x24{left:428.135547pt;}
.x63{left:446.790667pt;}
.x7b{left:481.504907pt;}
.x44{left:488.370453pt;}
.x61{left:489.600000pt;}
.x31{left:491.662400pt;}
.x3b{left:493.190773pt;}
.x35{left:522.845867pt;}
.x13{left:527.433333pt;}
.x32{left:537.562400pt;}
.x19{left:543.991333pt;}
.x7e{left:550.079200pt;}
.x1a{left:551.983333pt;}
.x65{left:565.266667pt;}
.x6b{left:575.666667pt;}
.x40{left:581.490133pt;}
.x62{left:585.600000pt;}
.x2e{left:591.665733pt;}
.x66{left:593.433227pt;}
.x21{left:606.036000pt;}
.x5e{left:615.023333pt;}
.x41{left:619.085653pt;}
.x2c{left:622.100000pt;}
.x5b{left:626.863333pt;}
.x2d{left:631.766667pt;}
.xd{left:634.227733pt;}
.x15{left:646.660000pt;}
.x49{left:648.620000pt;}
.x60{left:652.623333pt;}
.x5c{left:666.063333pt;}
.x5f{left:686.383333pt;}
.x5d{left:689.103333pt;}
.x47{left:696.924267pt;}
.x4f{left:701.224933pt;}
.x7f{left:702.128507pt;}
.x1c{left:727.495333pt;}
.x1b{left:728.767333pt;}
.x11{left:740.993333pt;}
.x6c{left:750.375333pt;}
.x73{left:775.776400pt;}
.x27{left:785.821467pt;}
.x28{left:800.933067pt;}
}




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