
    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_e0ed3c1f299d93539baa2f8e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893000;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_6effeafacd5bb0676829808c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.094000;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_49ca00fdfed230d1de61f2a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910000;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_096420a9e83fc6baf9db21bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.849000;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_aded394fdcdcc4cd5bce2aab.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_d223921cab8755f34a785787.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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_ef2e0d4526840da0a9afb119.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.875000;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_4dbad333a46d1308cdb5399f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.737000;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_94a1de46d46b0883a8d341d4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.733000;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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-24.678000px;}
.v2{vertical-align:-17.387400px;}
.v3{vertical-align:-8.964000px;}
.vc{vertical-align:-2.048400px;}
.vb{vertical-align:-1.022400px;}
.v0{vertical-align:0.000000px;}
.va{vertical-align:3.276000px;}
.v5{vertical-align:8.964000px;}
.v9{vertical-align:18.576747px;}
.v4{vertical-align:24.678000px;}
.v1{vertical-align:26.027400px;}
.v6{vertical-align:33.642000px;}
.v8{vertical-align:42.446654px;}
.ls6c{letter-spacing:-4.823891px;}
.ls5c{letter-spacing:-4.160382px;}
.ls37{letter-spacing:-3.311568px;}
.ls69{letter-spacing:-0.944454px;}
.lsd{letter-spacing:-0.023910px;}
.ls10{letter-spacing:-0.017933px;}
.ls6{letter-spacing:-0.012553px;}
.lsf{letter-spacing:-0.011955px;}
.ls7{letter-spacing:-0.007173px;}
.lsc{letter-spacing:-0.005978px;}
.ls9{letter-spacing:-0.004782px;}
.ls8{letter-spacing:0.000000px;}
.ls46{letter-spacing:0.000080px;}
.ls29{letter-spacing:0.001925px;}
.ls2e{letter-spacing:0.004543px;}
.lse{letter-spacing:0.004782px;}
.ls50{letter-spacing:0.005701px;}
.ls20{letter-spacing:0.005978px;}
.ls0{letter-spacing:0.007173px;}
.lsb{letter-spacing:0.011955px;}
.ls79{letter-spacing:0.014346px;}
.ls14{letter-spacing:0.017933px;}
.ls66{letter-spacing:0.018325px;}
.ls34{letter-spacing:0.022178px;}
.ls33{letter-spacing:0.023910px;}
.ls67{letter-spacing:0.028200px;}
.ls74{letter-spacing:0.029888px;}
.ls1b{letter-spacing:0.386152px;}
.ls26{letter-spacing:1.255288px;}
.ls6a{letter-spacing:1.487366px;}
.ls41{letter-spacing:1.817184px;}
.ls5e{letter-spacing:2.074213px;}
.ls1{letter-spacing:2.949467px;}
.ls1f{letter-spacing:2.976571px;}
.ls42{letter-spacing:2.990255px;}
.ls51{letter-spacing:2.994089px;}
.ls5{letter-spacing:3.014600px;}
.ls61{letter-spacing:3.022262px;}
.ls25{letter-spacing:3.030571px;}
.ls2a{letter-spacing:3.043200px;}
.ls53{letter-spacing:3.048089px;}
.ls44{letter-spacing:3.157357px;}
.ls32{letter-spacing:3.354571px;}
.ls1c{letter-spacing:3.408571px;}
.ls5b{letter-spacing:4.142449px;}
.ls4e{letter-spacing:4.805958px;}
.ls5d{letter-spacing:6.635092px;}
.ls36{letter-spacing:7.167094px;}
.ls28{letter-spacing:13.258228px;}
.ls18{letter-spacing:13.264206px;}
.ls27{letter-spacing:13.288116px;}
.ls31{letter-spacing:13.300071px;}
.ls43{letter-spacing:13.312026px;}
.ls6e{letter-spacing:13.312200px;}
.ls22{letter-spacing:13.318004px;}
.ls3c{letter-spacing:13.690200px;}
.ls3d{letter-spacing:13.697108px;}
.ls70{letter-spacing:14.230200px;}
.ls12{letter-spacing:14.378100px;}
.ls11{letter-spacing:14.432100px;}
.ls30{letter-spacing:14.441785px;}
.ls21{letter-spacing:14.543403px;}
.ls4d{letter-spacing:14.878147px;}
.ls72{letter-spacing:14.932200px;}
.ls75{letter-spacing:14.973788px;}
.ls73{letter-spacing:15.027586px;}
.ls76{letter-spacing:15.081384px;}
.ls77{letter-spacing:15.135182px;}
.ls54{letter-spacing:15.709028px;}
.ls5a{letter-spacing:16.112688px;}
.ls3e{letter-spacing:16.538100px;}
.ls24{letter-spacing:16.557841px;}
.ls19{letter-spacing:16.593707px;}
.ls63{letter-spacing:16.605662px;}
.ls2c{letter-spacing:16.611639px;}
.ls23{letter-spacing:16.635549px;}
.ls58{letter-spacing:16.638571px;}
.ls1e{letter-spacing:16.647505px;}
.ls40{letter-spacing:16.689348px;}
.ls2d{letter-spacing:16.692571px;}
.ls15{letter-spacing:17.038200px;}
.ls16{letter-spacing:17.470200px;}
.ls55{letter-spacing:17.478385px;}
.ls4b{letter-spacing:17.577634px;}
.ls4a{letter-spacing:17.633802px;}
.ls3f{letter-spacing:17.848200px;}
.ls4{letter-spacing:17.869350px;}
.ls2{letter-spacing:17.923350px;}
.ls3{letter-spacing:17.977350px;}
.ls6d{letter-spacing:18.280200px;}
.ls64{letter-spacing:19.002663px;}
.ls56{letter-spacing:19.608571px;}
.ls45{letter-spacing:19.626089px;}
.ls1a{letter-spacing:19.662571px;}
.ls6f{letter-spacing:19.684200px;}
.ls48{letter-spacing:19.976132px;}
.ls2b{letter-spacing:19.986571px;}
.ls78{letter-spacing:20.317726px;}
.ls65{letter-spacing:20.772021px;}
.ls71{letter-spacing:20.825819px;}
.ls4c{letter-spacing:21.489328px;}
.ls49{letter-spacing:21.798562px;}
.ls13{letter-spacing:21.884100px;}
.ls5f{letter-spacing:21.898200px;}
.ls3a{letter-spacing:22.916688px;}
.ls39{letter-spacing:25.353634px;}
.ls6b{letter-spacing:26.218200px;}
.ls7a{letter-spacing:28.471118px;}
.ls3b{letter-spacing:28.927165px;}
.lsa{letter-spacing:52.315873px;}
.ls60{letter-spacing:54.406200px;}
.ls68{letter-spacing:71.702700px;}
.ls17{letter-spacing:71.756700px;}
.ls4f{letter-spacing:76.254571px;}
.ls52{letter-spacing:76.308571px;}
.ls59{letter-spacing:278.052571px;}
.ls38{letter-spacing:412.039188px;}
.ls62{letter-spacing:437.968200px;}
.ls47{letter-spacing:446.280089px;}
.ls35{letter-spacing:629.929200px;}
.ls57{letter-spacing:703.469149px;}
.ls1d{letter-spacing:703.522947px;}
.ls2f{letter-spacing:757.518571px;}
.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;}
}
.ws7c{word-spacing:-412.098964px;}
.ws7a{word-spacing:-27.072369px;}
.wsa1{word-spacing:-24.047724px;}
.wsae{word-spacing:-21.979488px;}
.ws78{word-spacing:-19.905275px;}
.ws76{word-spacing:-15.128057px;}
.wsab{word-spacing:-4.262000px;}
.wsa8{word-spacing:-4.208202px;}
.wsaa{word-spacing:-3.335478px;}
.wsa9{word-spacing:-2.438844px;}
.ws9f{word-spacing:-0.914567px;}
.wsf{word-spacing:-0.078904px;}
.wsd5{word-spacing:-0.071731px;}
.ws11d{word-spacing:-0.065753px;}
.ws33{word-spacing:-0.059776px;}
.ws80{word-spacing:-0.053798px;}
.ws20{word-spacing:-0.052603px;}
.ws77{word-spacing:-0.049973px;}
.ws1b{word-spacing:-0.047821px;}
.ws18{word-spacing:-0.043039px;}
.ws85{word-spacing:-0.041843px;}
.ws27{word-spacing:-0.035865px;}
.ws1c{word-spacing:0.000000px;}
.wsd3{word-spacing:0.884679px;}
.ws7b{word-spacing:3.251793px;}
.wsa2{word-spacing:4.100606px;}
.wsf3{word-spacing:9.939283px;}
.ws117{word-spacing:10.254675px;}
.wsec{word-spacing:10.308675px;}
.wsc6{word-spacing:10.317283px;}
.ws14{word-spacing:10.501404px;}
.wsa7{word-spacing:10.879159px;}
.ws184{word-spacing:11.387252px;}
.ws185{word-spacing:11.429095px;}
.ws189{word-spacing:11.548646px;}
.ws1e{word-spacing:11.639534px;}
.ws181{word-spacing:11.733950px;}
.ws165{word-spacing:11.763838px;}
.ws5a{word-spacing:11.805681px;}
.ws182{word-spacing:11.847524px;}
.ws1f{word-spacing:11.883419px;}
.ws16{word-spacing:11.897765px;}
.ws1a{word-spacing:11.907329px;}
.ws15{word-spacing:11.940804px;}
.ws30{word-spacing:12.032828px;}
.wsbf{word-spacing:12.086626px;}
.ws13{word-spacing:12.103394px;}
.ws93{word-spacing:12.194222px;}
.wsc0{word-spacing:12.469190px;}
.wsdf{word-spacing:12.564831px;}
.ws150{word-spacing:12.618629px;}
.ws15a{word-spacing:12.726225px;}
.ws3f{word-spacing:12.780023px;}
.ws12f{word-spacing:12.935440px;}
.ws130{word-spacing:13.001193px;}
.ws110{word-spacing:13.270183px;}
.ws102{word-spacing:13.323981px;}
.ws14c{word-spacing:13.329959px;}
.ws14f{word-spacing:13.383757px;}
.ws89{word-spacing:13.598949px;}
.ws8a{word-spacing:13.628837px;}
.ws88{word-spacing:13.646769px;}
.ws3e{word-spacing:13.700568px;}
.ws15c{word-spacing:13.706545px;}
.ws10{word-spacing:13.734076px;}
.ws126{word-spacing:13.802186px;}
.ws97{word-spacing:13.861962px;}
.ws53{word-spacing:13.867939px;}
.ws52{word-spacing:13.921737px;}
.ws29{word-spacing:13.975535px;}
.ws4b{word-spacing:14.023356px;}
.ws4a{word-spacing:14.053244px;}
.wsba{word-spacing:14.130952px;}
.ws49{word-spacing:14.142907px;}
.ws18e{word-spacing:14.178772px;}
.ws18d{word-spacing:14.184750px;}
.ws121{word-spacing:14.196705px;}
.ws12{word-spacing:14.231411px;}
.ws3b{word-spacing:14.304301px;}
.ws56{word-spacing:14.346144px;}
.ws14d{word-spacing:14.358099px;}
.ws57{word-spacing:14.364077px;}
.ws5c{word-spacing:14.370054px;}
.ws5b{word-spacing:14.387987px;}
.ws152{word-spacing:14.453740px;}
.ws193{word-spacing:14.471673px;}
.ws17c{word-spacing:14.501561px;}
.ws17b{word-spacing:14.537426px;}
.ws16f{word-spacing:14.555359px;}
.wsf5{word-spacing:14.567314px;}
.ws194{word-spacing:14.627089px;}
.ws42{word-spacing:14.668932px;}
.ws44{word-spacing:14.680887px;}
.ws16a{word-spacing:14.710775px;}
.ws3c{word-spacing:14.722730px;}
.ws3d{word-spacing:14.776528px;}
.ws9e{word-spacing:14.818371px;}
.ws63{word-spacing:14.830326px;}
.ws133{word-spacing:14.836304px;}
.wsc1{word-spacing:14.842281px;}
.ws146{word-spacing:14.852535px;}
.ws106{word-spacing:14.859941px;}
.wsc5{word-spacing:14.872169px;}
.ws6c{word-spacing:14.875493px;}
.ws6e{word-spacing:14.878147px;}
.ws1d{word-spacing:14.884124px;}
.wsc4{word-spacing:14.890102px;}
.ws2f{word-spacing:14.896080px;}
.ws149{word-spacing:14.902057px;}
.ws8c{word-spacing:14.908035px;}
.wsda{word-spacing:14.912324px;}
.ws28{word-spacing:14.925967px;}
.ws116{word-spacing:14.931945px;}
.ws26{word-spacing:14.937922px;}
.wsbd{word-spacing:14.943900px;}
.ws71{word-spacing:14.949878px;}
.ws132{word-spacing:14.954998px;}
.wsaf{word-spacing:14.955699px;}
.ws109{word-spacing:14.955855px;}
.wsfc{word-spacing:14.957398px;}
.ws10f{word-spacing:14.961833px;}
.ws19a{word-spacing:14.973788px;}
.wsd6{word-spacing:14.991720px;}
.wse1{word-spacing:14.997698px;}
.ws139{word-spacing:14.999215px;}
.ws11e{word-spacing:15.003303px;}
.ws140{word-spacing:15.003676px;}
.wsf9{word-spacing:15.005193px;}
.wsd7{word-spacing:15.008770px;}
.ws46{word-spacing:15.009653px;}
.wsf2{word-spacing:15.015631px;}
.ws16e{word-spacing:15.039541px;}
.wsf8{word-spacing:15.045519px;}
.ws120{word-spacing:15.049436px;}
.wsfb{word-spacing:15.051325px;}
.ws68{word-spacing:15.051496px;}
.ws14a{word-spacing:15.053013px;}
.wsd9{word-spacing:15.054903px;}
.wsea{word-spacing:15.057474px;}
.ws161{word-spacing:15.069429px;}
.wsc8{word-spacing:15.099317px;}
.ws90{word-spacing:15.153115px;}
.ws10e{word-spacing:15.159092px;}
.wsff{word-spacing:15.218868px;}
.ws40{word-spacing:15.260711px;}
.ws198{word-spacing:15.392217px;}
.ws123{word-spacing:15.410150px;}
.ws122{word-spacing:15.475903px;}
.ws11{word-spacing:15.517785px;}
.wsb7{word-spacing:15.697073px;}
.ws192{word-spacing:15.703050px;}
.wse0{word-spacing:15.709028px;}
.ws100{word-spacing:15.732938px;}
.ws169{word-spacing:15.744893px;}
.ws160{word-spacing:15.750871px;}
.ws191{word-spacing:15.762826px;}
.ws74{word-spacing:15.780758px;}
.ws12d{word-spacing:16.031816px;}
.ws18f{word-spacing:16.193210px;}
.wsfe{word-spacing:16.276896px;}
.ws9b{word-spacing:16.288851px;}
.wsfd{word-spacing:16.300806px;}
.ws61{word-spacing:16.330694px;}
.ws9a{word-spacing:16.354604px;}
.ws60{word-spacing:16.384492px;}
.ws55{word-spacing:16.408402px;}
.ws92{word-spacing:16.456223px;}
.ws73{word-spacing:16.462200px;}
.ws91{word-spacing:16.515998px;}
.ws8b{word-spacing:16.611639px;}
.wsac{word-spacing:16.671415px;}
.ws7e{word-spacing:16.725213px;}
.ws10d{word-spacing:16.731190px;}
.ws51{word-spacing:16.779011px;}
.wsb4{word-spacing:16.784988px;}
.ws159{word-spacing:16.832809px;}
.ws174{word-spacing:16.850742px;}
.wsde{word-spacing:16.880629px;}
.wsdd{word-spacing:16.892585px;}
.wsbb{word-spacing:16.946383px;}
.ws69{word-spacing:16.994203px;}
.ws6a{word-spacing:17.000181px;}
.ws104{word-spacing:17.042024px;}
.ws99{word-spacing:17.149620px;}
.ws96{word-spacing:17.209395px;}
.ws134{word-spacing:17.215373px;}
.ws5{word-spacing:17.294248px;}
.ws6{word-spacing:17.409017px;}
.ws6d{word-spacing:17.424587px;}
.ws4c{word-spacing:17.478385px;}
.ws15b{word-spacing:17.490341px;}
.wsa5{word-spacing:17.526206px;}
.wsa6{word-spacing:17.544139px;}
.ws24{word-spacing:17.597937px;}
.wsa3{word-spacing:17.601699px;}
.wsa4{word-spacing:17.615899px;}
.ws6f{word-spacing:17.681593px;}
.ws9d{word-spacing:17.777263px;}
.wsc{word-spacing:17.796362px;}
.ws186{word-spacing:17.801174px;}
.wse6{word-spacing:17.803535px;}
.ws7{word-spacing:17.825054px;}
.ws3{word-spacing:17.839400px;}
.ws4{word-spacing:17.853746px;}
.wsd{word-spacing:17.860919px;}
.ws9c{word-spacing:17.860949px;}
.ws2{word-spacing:17.868092px;}
.wsa{word-spacing:17.875266px;}
.ws8{word-spacing:17.896785px;}
.wsb3{word-spacing:17.902792px;}
.wse{word-spacing:17.903958px;}
.ws62{word-spacing:17.908770px;}
.wsb{word-spacing:17.911131px;}
.ws9{word-spacing:17.918304px;}
.ws5d{word-spacing:17.920725px;}
.wsb2{word-spacing:17.962568px;}
.ws79{word-spacing:18.046254px;}
.ws3a{word-spacing:18.064186px;}
.ws2e{word-spacing:18.070164px;}
.ws125{word-spacing:18.076141px;}
.ws2d{word-spacing:18.082119px;}
.ws65{word-spacing:18.171782px;}
.ws23{word-spacing:18.177760px;}
.ws58{word-spacing:18.189715px;}
.wseb{word-spacing:18.297311px;}
.ws72{word-spacing:18.404907px;}
.wse5{word-spacing:18.446750px;}
.wse2{word-spacing:18.458705px;}
.ws98{word-spacing:18.500548px;}
.ws43{word-spacing:18.620099px;}
.ws94{word-spacing:18.673897px;}
.wse4{word-spacing:18.781494px;}
.wsbc{word-spacing:18.865179px;}
.ws39{word-spacing:18.889090px;}
.ws166{word-spacing:18.942888px;}
.ws66{word-spacing:18.990708px;}
.ws168{word-spacing:18.996686px;}
.ws75{word-spacing:19.020596px;}
.ws167{word-spacing:19.038529px;}
.wsb5{word-spacing:19.056461px;}
.wsa0{word-spacing:19.074394px;}
.ws4f{word-spacing:19.253721px;}
.ws4e{word-spacing:19.271653px;}
.ws190{word-spacing:19.325451px;}
.ws2b{word-spacing:19.379250px;}
.ws13d{word-spacing:19.421092px;}
.ws14e{word-spacing:19.468913px;}
.wsdb{word-spacing:19.474890px;}
.ws16b{word-spacing:19.516733px;}
.ws18c{word-spacing:19.540644px;}
.wse3{word-spacing:19.582487px;}
.wsb8{word-spacing:19.636285px;}
.ws107{word-spacing:19.708015px;}
.ws7d{word-spacing:19.713993px;}
.ws2c{word-spacing:19.851477px;}
.wsad{word-spacing:19.880084px;}
.ws7f{word-spacing:19.934084px;}
.wsb9{word-spacing:20.000916px;}
.ws11a{word-spacing:20.012871px;}
.ws18b{word-spacing:20.024826px;}
.ws188{word-spacing:20.114489px;}
.wse8{word-spacing:20.120467px;}
.wsef{word-spacing:20.180243px;}
.ws178{word-spacing:20.192198px;}
.ws177{word-spacing:20.216108px;}
.ws48{word-spacing:20.240018px;}
.ws12b{word-spacing:20.281861px;}
.ws8f{word-spacing:20.335659px;}
.ws113{word-spacing:20.383480px;}
.ws19{word-spacing:20.591550px;}
.ws195{word-spacing:20.712245px;}
.ws67{word-spacing:20.772021px;}
.ws41{word-spacing:20.783976px;}
.wsc2{word-spacing:20.837774px;}
.ws15f{word-spacing:20.891572px;}
.ws151{word-spacing:20.999168px;}
.wsc3{word-spacing:21.041011px;}
.wscf{word-spacing:21.117283px;}
.ws13f{word-spacing:21.160562px;}
.ws13e{word-spacing:21.190450px;}
.ws141{word-spacing:21.573014px;}
.ws54{word-spacing:21.590947px;}
.ws16c{word-spacing:21.644745px;}
.ws87{word-spacing:21.698543px;}
.ws64{word-spacing:21.752341px;}
.ws86{word-spacing:21.766474px;}
.wsb1{word-spacing:21.806139px;}
.wsb0{word-spacing:21.847982px;}
.ws12c{word-spacing:21.913735px;}
.ws124{word-spacing:22.069152px;}
.ws179{word-spacing:22.110994px;}
.ws12a{word-spacing:22.116972px;}
.ws129{word-spacing:22.128927px;}
.ws17a{word-spacing:22.188703px;}
.ws114{word-spacing:22.660930px;}
.ws115{word-spacing:22.672885px;}
.ws105{word-spacing:22.720706px;}
.ws13b{word-spacing:22.726683px;}
.ws13a{word-spacing:22.756571px;}
.ws131{word-spacing:22.876122px;}
.ws5e{word-spacing:23.097292px;}
.ws5f{word-spacing:23.103269px;}
.ws37{word-spacing:23.306506px;}
.ws36{word-spacing:23.330417px;}
.ws35{word-spacing:23.360304px;}
.ws144{word-spacing:23.372260px;}
.ws176{word-spacing:23.467901px;}
.ws34{word-spacing:23.473878px;}
.ws112{word-spacing:23.479856px;}
.ws32{word-spacing:23.491811px;}
.ws111{word-spacing:23.521699px;}
.ws8e{word-spacing:23.527676px;}
.ws15d{word-spacing:23.970016px;}
.ws4d{word-spacing:24.065657px;}
.ws183{word-spacing:24.101522px;}
.ws31{word-spacing:24.280849px;}
.ws103{word-spacing:24.346602px;}
.ws101{word-spacing:24.572256px;}
.wsf0{word-spacing:24.626256px;}
.ws13c{word-spacing:25.255191px;}
.wsdc{word-spacing:25.362787px;}
.ws81{word-spacing:25.377699px;}
.ws82{word-spacing:25.391899px;}
.ws83{word-spacing:25.398652px;}
.ws163{word-spacing:25.410608px;}
.ws25{word-spacing:25.589934px;}
.wsd1{word-spacing:25.691553px;}
.ws59{word-spacing:25.793171px;}
.ws8d{word-spacing:25.894790px;}
.ws180{word-spacing:25.912723px;}
.ws21{word-spacing:26.086137px;}
.wsf1{word-spacing:26.175735px;}
.wse9{word-spacing:26.343107px;}
.ws17e{word-spacing:26.546344px;}
.ws172{word-spacing:26.665895px;}
.ws2a{word-spacing:26.767514px;}
.ws196{word-spacing:26.994661px;}
.ws17{word-spacing:27.052113px;}
.ws187{word-spacing:27.138122px;}
.wsbe{word-spacing:27.156055px;}
.ws14b{word-spacing:27.586439px;}
.ws6b{word-spacing:27.789676px;}
.ws38{word-spacing:27.855430px;}
.ws197{word-spacing:28.273859px;}
.ws95{word-spacing:28.483073px;}
.ws84{word-spacing:28.682084px;}
.ws199{word-spacing:29.033009px;}
.wse7{word-spacing:29.140605px;}
.ws175{word-spacing:29.582944px;}
.ws162{word-spacing:29.841785px;}
.ws45{word-spacing:29.842635px;}
.ws17d{word-spacing:29.851850px;}
.ws70{word-spacing:29.896635px;}
.ws142{word-spacing:29.905733px;}
.ws173{word-spacing:29.905850px;}
.ws127{word-spacing:30.114947px;}
.ws145{word-spacing:30.138858px;}
.ws128{word-spacing:30.144835px;}
.ws170{word-spacing:30.342095px;}
.ws171{word-spacing:30.377960px;}
.ws15e{word-spacing:30.557287px;}
.ws164{word-spacing:30.748569px;}
.wsb6{word-spacing:31.095267px;}
.ws143{word-spacing:31.340347px;}
.ws1{word-spacing:31.369847px;}
.ws18a{word-spacing:31.394145px;}
.ws0{word-spacing:31.457718px;}
.ws16d{word-spacing:31.525651px;}
.ws17f{word-spacing:33.014064px;}
.ws47{word-spacing:34.000361px;}
.ws148{word-spacing:44.817765px;}
.wsed{word-spacing:44.819655px;}
.ws136{word-spacing:44.871765px;}
.ws118{word-spacing:44.873655px;}
.wsf4{word-spacing:59.129655px;}
.wsc7{word-spacing:59.777655px;}
.ws50{word-spacing:59.842576px;}
.ws22{word-spacing:71.630969px;}
.wsd0{word-spacing:81.539655px;}
.ws119{word-spacing:117.936000px;}
.wsee{word-spacing:144.730800px;}
.ws147{word-spacing:144.936000px;}
.wsf6{word-spacing:145.763075px;}
.ws12e{word-spacing:155.638800px;}
.wscd{word-spacing:166.742806px;}
.ws11b{word-spacing:166.931075px;}
.ws135{word-spacing:170.650800px;}
.ws137{word-spacing:175.679075px;}
.wsca{word-spacing:181.606853px;}
.wscb{word-spacing:181.648696px;}
.wsf7{word-spacing:185.645355px;}
.wsc9{word-spacing:191.837727px;}
.ws108{word-spacing:192.949200px;}
.wscc{word-spacing:196.554586px;}
.ws10a{word-spacing:196.793075px;}
.ws153{word-spacing:204.937200px;}
.wsd2{word-spacing:205.541075px;}
.ws11c{word-spacing:206.813355px;}
.wsce{word-spacing:218.928465px;}
.ws155{word-spacing:220.597200px;}
.ws157{word-spacing:220.600800px;}
.ws156{word-spacing:222.390000px;}
.ws158{word-spacing:225.298800px;}
.ws10b{word-spacing:236.675355px;}
.wsd4{word-spacing:245.423355px;}
.wsfa{word-spacing:275.308755px;}
.ws11f{word-spacing:296.476755px;}
.ws138{word-spacing:305.224755px;}
.ws10c{word-spacing:326.338755px;}
.wsd8{word-spacing:335.086755px;}
.ws154{word-spacing:1434.810600px;}
._16{margin-left:-412.402706px;}
._2c{margin-left:-11.943165px;}
._7{margin-left:-9.963380px;}
._6{margin-left:-8.196962px;}
._2{margin-left:-6.263927px;}
._3{margin-left:-5.046290px;}
._0{margin-left:-3.790994px;}
._5{margin-left:-2.707798px;}
._4{margin-left:-1.405932px;}
._9{width:1.075964px;}
._8{width:2.938885px;}
._a{width:4.660037px;}
._12{width:5.985573px;}
._1{width:12.540407px;}
._b{width:14.557743px;}
._14{width:15.676722px;}
._13{width:16.922436px;}
._15{width:18.106065px;}
._10{width:19.164409px;}
._17{width:20.179581px;}
._23{width:21.447449px;}
._d{width:23.288650px;}
._11{width:24.379055px;}
._c{width:26.076573px;}
._2f{width:28.124378px;}
._20{width:29.896433px;}
._29{width:31.400123px;}
._2b{width:38.693915px;}
._2d{width:40.929538px;}
._2e{width:42.727599px;}
._e{width:47.965203px;}
._f{width:59.148696px;}
._25{width:129.960000px;}
._1e{width:132.786000px;}
._1f{width:138.769200px;}
._24{width:145.173600px;}
._28{width:158.698800px;}
._26{width:164.692800px;}
._27{width:170.686800px;}
._18{width:190.852601px;}
._2a{width:192.985200px;}
._21{width:198.979200px;}
._22{width:204.966000px;}
._1c{width:363.306331px;}
._1b{width:378.264331px;}
._19{width:408.128220px;}
._1d{width:415.632331px;}
._1a{width:423.086220px;}
.fc1{color:rgb(47,51,144);}
.fc2{color:rgb(102,102,102);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs3{font-size:40.647600px;}
.fs6{font-size:45.429600px;}
.fs2{font-size:47.820600px;}
.fs4{font-size:48.000000px;}
.fs5{font-size:59.775600px;}
.fs1{font-size:71.730600px;}
.fs0{font-size:125.529600px;}
.y0{bottom:0.000000px;}
.y22{bottom:7.098210px;}
.y21{bottom:21.299733px;}
.y20{bottom:35.488105px;}
.y1f{bottom:49.689627px;}
.y1e{bottom:63.891150px;}
.y133{bottom:91.079657px;}
.y129{bottom:91.079807px;}
.y4e{bottom:91.079854px;}
.ya5{bottom:91.080150px;}
.y1d{bottom:95.427000px;}
.y78{bottom:96.466500px;}
.ycf{bottom:97.087650px;}
.y4d{bottom:109.021110px;}
.y132{bottom:109.021303px;}
.yf5{bottom:109.021453px;}
.y104{bottom:109.021500px;}
.yce{bottom:115.015500px;}
.ya4{bottom:115.028963px;}
.ya3{bottom:119.673000px;}
.y77{bottom:120.375150px;}
.y1eb{bottom:120.969150px;}
.y19d{bottom:123.885150px;}
.y16b{bottom:126.949110px;}
.y4c{bottom:126.949307px;}
.y103{bottom:126.949453px;}
.y131{bottom:126.949500px;}
.yf4{bottom:126.949650px;}
.ycd{bottom:132.957150px;}
.y1c{bottom:134.363250px;}
.y74{bottom:138.978000px;}
.ya2{bottom:144.256650px;}
.y183{bottom:144.876814px;}
.yf3{bottom:144.877307px;}
.y4b{bottom:144.877504px;}
.y102{bottom:144.877650px;}
.y1b{bottom:149.307187px;}
.ycc{bottom:150.885150px;}
.y76{bottom:153.180150px;}
.y145{bottom:153.841500px;}
.y130{bottom:153.841650px;}
.y75{bottom:157.824000px;}
.y182{bottom:162.818460px;}
.y4a{bottom:162.818606px;}
.yf2{bottom:162.818953px;}
.y112{bottom:162.819150px;}
.y9f{bottom:162.846000px;}
.y191{bottom:162.882000px;}
.y1a{bottom:164.251125px;}
.y1ea{bottom:165.802157px;}
.ycb{bottom:168.813000px;}
.y101{bottom:171.783000px;}
.y192{bottom:172.263000px;}
.ya1{bottom:177.048000px;}
.y19{bottom:179.195063px;}
.y181{bottom:180.746657px;}
.y49{bottom:180.746803px;}
.y111{bottom:180.746953px;}
.yf1{bottom:180.747150px;}
.ya0{bottom:181.692150px;}
.y1e9{bottom:183.730354px;}
.yca{bottom:186.741000px;}
.y73{bottom:189.009000px;}
.y18{bottom:194.139000px;}
.y144{bottom:195.326657px;}
.yf0{bottom:198.674460px;}
.y128{bottom:198.674854px;}
.y48{bottom:198.675000px;}
.y110{bottom:198.675150px;}
.y193{bottom:200.716500px;}
.y9e{bottom:201.226500px;}
.y1e8{bottom:201.672000px;}
.yc9{bottom:204.669000px;}
.y143{bottom:213.268303px;}
.y12f{bottom:213.673500px;}
.y72{bottom:215.253000px;}
.yef{bottom:216.616106px;}
.y10f{bottom:216.616303px;}
.y127{bottom:216.616500px;}
.y16a{bottom:216.818854px;}
.y17{bottom:218.047500px;}
.y100{bottom:218.898150px;}
.y1e7{bottom:219.599657px;}
.y9b{bottom:219.829500px;}
.yc8{bottom:222.610650px;}
.y47{bottom:225.580500px;}
.y194{bottom:229.165500px;}
.y142{bottom:231.196303px;}
.y6f{bottom:233.856000px;}
.y9d{bottom:234.018150px;}
.y126{bottom:234.544157px;}
.yee{bottom:234.544303px;}
.y10e{bottom:234.544500px;}
.y169{bottom:234.760500px;}
.y1e6{bottom:237.527854px;}
.y9c{bottom:238.675650px;}
.yc7{bottom:240.538500px;}
.y180{bottom:243.508500px;}
.y71{bottom:248.058150px;}
.y141{bottom:249.124354px;}
.y125{bottom:252.472354px;}
.yed{bottom:252.472500px;}
.y12a{bottom:252.669150px;}
.y168{bottom:252.688303px;}
.y70{bottom:252.702000px;}
.y1e5{bottom:255.469500px;}
.y195{bottom:257.617200px;}
.yf7{bottom:257.895000px;}
.yc6{bottom:258.466650px;}
.y12b{bottom:261.300150px;}
.y10d{bottom:261.450000px;}
.y9a{bottom:262.989000px;}
.y151{bottom:263.002500px;}
.y1b2{bottom:263.812500px;}
.yf8{bottom:265.344000px;}
.y140{bottom:267.066000px;}
.y46{bottom:269.509354px;}
.y124{bottom:270.414000px;}
.y167{bottom:270.616500px;}
.y1e4{bottom:273.396960px;}
.yc5{bottom:276.394500px;}
.y6e{bottom:276.677657px;}
.yec{bottom:279.378000px;}
.y16{bottom:284.102391px;}
.y13f{bottom:284.993314px;}
.y196{bottom:286.068900px;}
.y45{bottom:287.449577px;}
.y98{bottom:287.747963px;}
.y1ce{bottom:288.341803px;}
.y166{bottom:288.557953px;}
.y1e3{bottom:291.338606px;}
.y17f{bottom:292.162303px;}
.y97{bottom:292.392385px;}
.yc4{bottom:294.336000px;}
.y6d{bottom:294.619303px;}
.y123{bottom:297.306150px;}
.y10c{bottom:301.125814px;}
.y1a9{bottom:302.808000px;}
.y13e{bottom:302.921510px;}
.y15{bottom:305.028000px;}
.y44{bottom:305.377774px;}
.yf9{bottom:305.989800px;}
.y1cd{bottom:306.270000px;}
.y165{bottom:306.486150px;}
.y1e2{bottom:309.266803px;}
.y17e{bottom:310.090500px;}
.y1aa{bottom:312.187500px;}
.y6c{bottom:312.547500px;}
.y197{bottom:314.522400px;}
.y99{bottom:314.585186px;}
.y10b{bottom:319.067460px;}
.y95{bottom:320.242500px;}
.y13d{bottom:320.863157px;}
.y43{bottom:323.305970px;}
.y1cc{bottom:324.211157px;}
.yc3{bottom:324.225000px;}
.y96{bottom:326.209313px;}
.y1e1{bottom:327.195000px;}
.y17d{bottom:328.018354px;}
.yeb{bottom:329.732314px;}
.y10a{bottom:336.995657px;}
.y13c{bottom:338.791354px;}
.y6b{bottom:339.439500px;}
.y42{bottom:341.247617px;}
.y94{bottom:341.329500px;}
.y1cb{bottom:342.139354px;}
.yc2{bottom:342.152657px;}
.y164{bottom:342.571500px;}
.y198{bottom:342.973200px;}
.y1e0{bottom:345.136106px;}
.y17c{bottom:345.960000px;}
.yfa{bottom:346.635600px;}
.y14{bottom:346.863281px;}
.yea{bottom:347.673960px;}
.y122{bottom:348.052354px;}
.y1ab{bottom:352.834200px;}
.y109{bottom:354.923854px;}
.y12c{bottom:356.139450px;}
.y13b{bottom:356.733000px;}
.y41{bottom:359.175814px;}
.yc1{bottom:360.080854px;}
.y1ca{bottom:360.081000px;}
.y163{bottom:360.499110px;}
.y1df{bottom:363.064303px;}
.ye9{bottom:365.602157px;}
.y121{bottom:365.994000px;}
.y93{bottom:366.601256px;}
.y13{bottom:367.788891px;}
.y199{bottom:371.424000px;}
.y108{bottom:372.865500px;}
.y13a{bottom:374.660803px;}
.y40{bottom:377.104010px;}
.y6a{bottom:377.253000px;}
.y1c9{bottom:378.008803px;}
.yc0{bottom:378.022500px;}
.y162{bottom:378.427307px;}
.y1de{bottom:380.992500px;}
.ye8{bottom:383.530354px;}
.y92{bottom:384.529453px;}
.yfb{bottom:387.279600px;}
.y12{bottom:388.714500px;}
.y107{bottom:390.793303px;}
.y139{bottom:392.589000px;}
.y1ac{bottom:393.476400px;}
.y3f{bottom:395.045657px;}
.y1c8{bottom:395.937000px;}
.y161{bottom:396.368953px;}
.y1dd{bottom:398.933606px;}
.y17b{bottom:399.231150px;}
.y19a{bottom:399.875700px;}
.ye7{bottom:401.472000px;}
.y91{bottom:402.457650px;}
.y69{bottom:404.158650px;}
.ybf{bottom:407.897460px;}
.y106{bottom:408.721500px;}
.y3e{bottom:412.973854px;}
.y1c7{bottom:413.878303px;}
.y160{bottom:414.297150px;}
.y1dc{bottom:416.861803px;}
.ye6{bottom:419.399263px;}
.y17a{bottom:425.313000px;}
.ybe{bottom:425.839106px;}
.yfc{bottom:427.925400px;}
.y19b{bottom:428.327400px;}
.y11{bottom:430.550391px;}
.y3d{bottom:430.915500px;}
.y90{bottom:431.050500px;}
.y1c6{bottom:431.806500px;}
.y1ad{bottom:434.123100px;}
.y1db{bottom:434.790000px;}
.ye5{bottom:437.327460px;}
.ybd{bottom:443.767303px;}
.y138{bottom:445.792500px;}
.y3c{bottom:448.842617px;}
.y1c5{bottom:449.734157px;}
.y12d{bottom:450.977850px;}
.y10{bottom:451.476000px;}
.y179{bottom:451.516500px;}
.y68{bottom:452.731303px;}
.ye4{bottom:455.269106px;}
.y19c{bottom:456.779100px;}
.y105{bottom:458.334000px;}
.y8f{bottom:459.643303px;}
.ybc{bottom:461.695500px;}
.y120{bottom:462.924000px;}
.y3b{bottom:466.770814px;}
.y1c4{bottom:467.675803px;}
.yfd{bottom:468.570300px;}
.y67{bottom:470.659303px;}
.y1da{bottom:470.659500px;}
.ye3{bottom:473.197303px;}
.y1ae{bottom:474.768000px;}
.y8e{bottom:477.571303px;}
.ybb{bottom:479.636606px;}
.y11f{bottom:480.852000px;}
.y3a{bottom:484.712460px;}
.y1c3{bottom:485.604000px;}
.y66{bottom:488.587354px;}
.ye2{bottom:491.125354px;}
.yf{bottom:493.325778px;}
.y8d{bottom:495.499157px;}
.yba{bottom:497.564803px;}
.y15f{bottom:499.711500px;}
.y39{bottom:502.640657px;}
.y1c2{bottom:503.531657px;}
.y65{bottom:506.529000px;}
.y11e{bottom:506.934000px;}
.y178{bottom:508.135500px;}
.ye1{bottom:509.067000px;}
.yfe{bottom:509.215200px;}
.y190{bottom:509.215500px;}
.y8c{bottom:513.440803px;}
.ye{bottom:514.237041px;}
.y1af{bottom:515.412000px;}
.yb9{bottom:515.493000px;}
.y38{bottom:520.568854px;}
.y1c1{bottom:521.473303px;}
.y64{bottom:524.456314px;}
.y15e{bottom:525.780150px;}
.ye0{bottom:526.994854px;}
.y8b{bottom:531.369000px;}
.y11d{bottom:533.137500px;}
.y177{bottom:534.204000px;}
.yd{bottom:535.162650px;}
.y18f{bottom:535.297650px;}
.y37{bottom:538.510303px;}
.y1c0{bottom:539.401500px;}
.y63{bottom:542.384510px;}
.ydf{bottom:544.936500px;}
.yb8{bottom:545.382000px;}
.y12e{bottom:545.816250px;}
.y8a{bottom:549.296314px;}
.yff{bottom:549.860100px;}
.y15d{bottom:551.983500px;}
.y1b0{bottom:556.056000px;}
.y36{bottom:556.438157px;}
.y1bf{bottom:557.329157px;}
.y62{bottom:560.326157px;}
.y176{bottom:560.407500px;}
.y18e{bottom:561.501000px;}
.yb7{bottom:563.322763px;}
.y89{bottom:567.237960px;}
.y35{bottom:574.366354px;}
.y1be{bottom:575.270803px;}
.yc{bottom:577.012128px;}
.y61{bottom:578.254354px;}
.yb6{bottom:581.250960px;}
.y15c{bottom:582.763500px;}
.yf6{bottom:584.262000px;}
.y88{bottom:585.166157px;}
.y11c{bottom:590.269500px;}
.y175{bottom:591.768000px;}
.y34{bottom:592.308000px;}
.y1bd{bottom:593.199000px;}
.y60{bottom:596.195606px;}
.y1d9{bottom:596.196000px;}
.y1b1{bottom:596.702700px;}
.yb{bottom:597.923391px;}
.yde{bottom:598.531650px;}
.yb5{bottom:599.179157px;}
.y87{bottom:603.094354px;}
.y33{bottom:610.235803px;}
.y1bc{bottom:611.126854px;}
.y5f{bottom:614.123803px;}
.ydd{bottom:616.459500px;}
.yb4{bottom:617.120803px;}
.ya{bottom:618.849000px;}
.y86{bottom:621.036000px;}
.y152{bottom:621.759000px;}
.y1a8{bottom:627.759000px;}
.y32{bottom:628.163117px;}
.y1bb{bottom:629.068500px;}
.y113{bottom:629.266500px;}
.y153{bottom:630.360000px;}
.y16c{bottom:630.765000px;}
.y5e{bottom:632.052000px;}
.yb3{bottom:635.049000px;}
.y114{bottom:637.965150px;}
.y16d{bottom:638.076150px;}
.y184{bottom:638.196150px;}
.y146{bottom:638.646000px;}
.y85{bottom:638.963657px;}
.ydc{bottom:642.541500px;}
.y31{bottom:646.104763px;}
.y1ba{bottom:646.996354px;}
.y5d{bottom:649.993106px;}
.yb2{bottom:652.977000px;}
.y84{bottom:656.891854px;}
.y9{bottom:660.698628px;}
.y30{bottom:664.032960px;}
.y1b9{bottom:664.938000px;}
.ydb{bottom:665.828803px;}
.y147{bottom:667.097700px;}
.y1a7{bottom:667.407000px;}
.y5c{bottom:667.921303px;}
.y185{bottom:669.811350px;}
.y154{bottom:671.004000px;}
.y83{bottom:674.832566px;}
.y115{bottom:678.609150px;}
.y16e{bottom:678.721950px;}
.y8{bottom:681.609891px;}
.y2f{bottom:681.961157px;}
.yb1{bottom:682.865657px;}
.y1a0{bottom:683.211150px;}
.yda{bottom:683.757000px;}
.y5b{bottom:685.849354px;}
.y1d8{bottom:685.849500px;}
.y1b8{bottom:691.830000px;}
.y82{bottom:692.760763px;}
.y148{bottom:695.548500px;}
.y2e{bottom:699.902803px;}
.yb0{bottom:700.793854px;}
.y186{bottom:701.422050px;}
.y7{bottom:702.535500px;}
.y5a{bottom:703.790606px;}
.y1d7{bottom:703.790803px;}
.y19f{bottom:706.879650px;}
.y81{bottom:710.688960px;}
.y155{bottom:711.649800px;}
.y2d{bottom:717.830610px;}
.yaf{bottom:718.735500px;}
.y116{bottom:719.254950px;}
.y16f{bottom:719.365950px;}
.y1a1{bottom:720.322650px;}
.y59{bottom:721.718803px;}
.y1d6{bottom:721.719000px;}
.y149{bottom:724.002000px;}
.y80{bottom:728.630606px;}
.y19e{bottom:729.730650px;}
.y187{bottom:733.034550px;}
.y2c{bottom:735.772256px;}
.yae{bottom:736.663303px;}
.y1d5{bottom:739.646657px;}
.y58{bottom:739.646854px;}
.yd9{bottom:743.818500px;}
.y6{bottom:744.385887px;}
.y1b7{bottom:745.627500px;}
.y7f{bottom:746.558803px;}
.y156{bottom:752.293800px;}
.y14a{bottom:752.452800px;}
.y2b{bottom:753.700453px;}
.yad{bottom:754.591500px;}
.y1a2{bottom:757.434150px;}
.y1d4{bottom:757.588303px;}
.y57{bottom:757.588500px;}
.y117{bottom:759.900750px;}
.y170{bottom:760.011750px;}
.yd8{bottom:761.746500px;}
.y7e{bottom:764.487000px;}
.y188{bottom:764.647050px;}
.y5{bottom:765.297150px;}
.y2a{bottom:771.628650px;}
.yac{bottom:772.533000px;}
.y56{bottom:775.515960px;}
.y1d3{bottom:775.516500px;}
.yd7{bottom:779.674500px;}
.y14b{bottom:780.904500px;}
.y7d{bottom:791.392500px;}
.y157{bottom:792.939600px;}
.y1d2{bottom:793.443960px;}
.y55{bottom:793.444157px;}
.y1a3{bottom:794.542200px;}
.y189{bottom:796.260450px;}
.yd6{bottom:797.616000px;}
.y29{bottom:798.534000px;}
.y118{bottom:800.546550px;}
.y171{bottom:800.658450px;}
.yab{bottom:802.421756px;}
.y4{bottom:807.147237px;}
.y14c{bottom:809.356200px;}
.y1d1{bottom:811.385606px;}
.y54{bottom:811.385803px;}
.yd5{bottom:815.544000px;}
.yaa{bottom:820.349953px;}
.y18a{bottom:827.873850px;}
.y3{bottom:828.058650px;}
.y1b6{bottom:829.313460px;}
.y7c{bottom:829.313657px;}
.y1d0{bottom:829.313803px;}
.y53{bottom:829.314000px;}
.y1a4{bottom:831.654000px;}
.yd4{bottom:833.472000px;}
.y158{bottom:833.584500px;}
.y14d{bottom:837.807900px;}
.ya9{bottom:838.278150px;}
.y119{bottom:841.190550px;}
.y172{bottom:841.302450px;}
.y52{bottom:847.241460px;}
.y1b5{bottom:847.241657px;}
.y7b{bottom:847.241854px;}
.y1cf{bottom:847.242000px;}
.yd3{bottom:851.413500px;}
.y137{bottom:851.467500px;}
.ya8{bottom:856.219303px;}
.y28{bottom:859.203562px;}
.y18b{bottom:859.487250px;}
.y51{bottom:865.183106px;}
.y1b4{bottom:865.183303px;}
.y7a{bottom:865.183500px;}
.y14e{bottom:866.257800px;}
.y1a5{bottom:868.764450px;}
.yd2{bottom:869.341500px;}
.y136{bottom:869.395500px;}
.y23{bottom:871.410000px;}
.ya7{bottom:874.147303px;}
.y27{bottom:874.147500px;}
.y159{bottom:874.228500px;}
.y2{bottom:878.629086px;}
.y11a{bottom:881.837250px;}
.y173{bottom:881.948250px;}
.y50{bottom:883.111303px;}
.y1b3{bottom:883.111500px;}
.y18c{bottom:891.099750px;}
.ya6{bottom:892.075500px;}
.y14f{bottom:894.710400px;}
.yd1{bottom:895.423500px;}
.y135{bottom:895.477500px;}
.y79{bottom:901.039500px;}
.y4f{bottom:901.039504px;}
.y26{bottom:904.037212px;}
.y1a6{bottom:905.874900px;}
.y1{bottom:911.502150px;}
.y15a{bottom:914.873400px;}
.y25{bottom:918.981150px;}
.yd0{bottom:921.613650px;}
.y134{bottom:921.667650px;}
.y11b{bottom:922.481250px;}
.y15b{bottom:922.499100px;}
.y174{bottom:922.592250px;}
.y18d{bottom:922.713150px;}
.y150{bottom:923.161200px;}
.y24{bottom:951.853500px;}
.h19{height:0.000000px;}
.h26{height:25.812000px;}
.h29{height:25.920000px;}
.hb{height:27.152597px;}
.h2a{height:29.088000px;}
.h18{height:31.528142px;}
.hc{height:34.945312px;}
.h1a{height:39.887189px;}
.h17{height:41.484266px;}
.h13{height:41.484866px;}
.ha{height:41.986487px;}
.h9{height:48.561616px;}
.h4{height:49.781036px;}
.h6{height:49.781926px;}
.h5{height:49.782526px;}
.h7{height:49.783474px;}
.h8{height:49.785911px;}
.hd{height:52.482977px;}
.h25{height:52.483164px;}
.h15{height:52.483562px;}
.h11{height:52.483764px;}
.h1e{height:52.483951px;}
.h28{height:52.484162px;}
.h10{height:52.484349px;}
.he{height:52.484537px;}
.h16{height:52.484551px;}
.h14{height:52.485151px;}
.h24{height:52.485722px;}
.h27{height:52.486322px;}
.hf{height:52.486509px;}
.h1d{height:52.486711px;}
.h12{height:52.488669px;}
.h1c{height:56.206142px;}
.h3{height:62.979467px;}
.h1b{height:64.565189px;}
.h21{height:65.644251px;}
.h23{height:65.645789px;}
.h22{height:83.141335px;}
.h20{height:83.141935px;}
.h2{height:84.983539px;}
.h1f{height:108.089189px;}
.h0{height:1046.151000px;}
.h1{height:1046.250000px;}
.w1{width:804.000000px;}
.w0{width:804.117000px;}
.x0{left:0.000000px;}
.x1{left:103.734000px;}
.x1c{left:106.731000px;}
.x17{left:108.337500px;}
.x31{left:111.213000px;}
.x5{left:119.556000px;}
.x1a{left:122.566500px;}
.x2{left:126.832500px;}
.x32{left:136.107000px;}
.x1b{left:143.640000px;}
.x30{left:174.123000px;}
.x2a{left:187.245000px;}
.x18{left:190.795500px;}
.x25{left:207.873000px;}
.x20{left:210.127350px;}
.x29{left:211.747350px;}
.x22{left:213.124350px;}
.x26{left:215.379000px;}
.x1f{left:217.633350px;}
.x28{left:219.253350px;}
.x21{left:220.630350px;}
.x2b{left:221.998500px;}
.xb{left:224.181000px;}
.x2c{left:225.542550px;}
.x1d{left:227.920500px;}
.x11{left:232.848000px;}
.x2d{left:249.979500px;}
.x1e{left:253.503000px;}
.x13{left:255.460500px;}
.x24{left:258.106500px;}
.x12{left:261.036000px;}
.x23{left:264.708000px;}
.x27{left:268.447500px;}
.x10{left:277.897500px;}
.x6{left:297.040500px;}
.xc{left:309.798000px;}
.x14{left:319.990500px;}
.x19{left:356.535000px;}
.x15{left:366.513330px;}
.x4{left:379.053000px;}
.x8{left:435.645000px;}
.x9{left:437.332500px;}
.xe{left:439.182000px;}
.x7{left:441.909000px;}
.xd{left:444.514500px;}
.xa{left:459.283500px;}
.xf{left:462.820500px;}
.x2f{left:586.810500px;}
.x2e{left:589.153500px;}
.x16{left:682.452697px;}
.x3{left:770.850000px;}
@media print{
.v7{vertical-align:-21.936000pt;}
.v2{vertical-align:-15.455467pt;}
.v3{vertical-align:-7.968000pt;}
.vc{vertical-align:-1.820800pt;}
.vb{vertical-align:-0.908800pt;}
.v0{vertical-align:0.000000pt;}
.va{vertical-align:2.912000pt;}
.v5{vertical-align:7.968000pt;}
.v9{vertical-align:16.512664pt;}
.v4{vertical-align:21.936000pt;}
.v1{vertical-align:23.135467pt;}
.v6{vertical-align:29.904000pt;}
.v8{vertical-align:37.730359pt;}
.ls6c{letter-spacing:-4.287903pt;}
.ls5c{letter-spacing:-3.698117pt;}
.ls37{letter-spacing:-2.943616pt;}
.ls69{letter-spacing:-0.839515pt;}
.lsd{letter-spacing:-0.021254pt;}
.ls10{letter-spacing:-0.015940pt;}
.ls6{letter-spacing:-0.011158pt;}
.lsf{letter-spacing:-0.010627pt;}
.ls7{letter-spacing:-0.006376pt;}
.lsc{letter-spacing:-0.005313pt;}
.ls9{letter-spacing:-0.004251pt;}
.ls8{letter-spacing:0.000000pt;}
.ls46{letter-spacing:0.000071pt;}
.ls29{letter-spacing:0.001711pt;}
.ls2e{letter-spacing:0.004038pt;}
.lse{letter-spacing:0.004251pt;}
.ls50{letter-spacing:0.005068pt;}
.ls20{letter-spacing:0.005313pt;}
.ls0{letter-spacing:0.006376pt;}
.lsb{letter-spacing:0.010627pt;}
.ls79{letter-spacing:0.012752pt;}
.ls14{letter-spacing:0.015940pt;}
.ls66{letter-spacing:0.016289pt;}
.ls34{letter-spacing:0.019714pt;}
.ls33{letter-spacing:0.021254pt;}
.ls67{letter-spacing:0.025067pt;}
.ls74{letter-spacing:0.026567pt;}
.ls1b{letter-spacing:0.343246pt;}
.ls26{letter-spacing:1.115811pt;}
.ls6a{letter-spacing:1.322103pt;}
.ls41{letter-spacing:1.615275pt;}
.ls5e{letter-spacing:1.843745pt;}
.ls1{letter-spacing:2.621749pt;}
.ls1f{letter-spacing:2.645841pt;}
.ls42{letter-spacing:2.658005pt;}
.ls51{letter-spacing:2.661413pt;}
.ls5{letter-spacing:2.679645pt;}
.ls61{letter-spacing:2.686455pt;}
.ls25{letter-spacing:2.693841pt;}
.ls2a{letter-spacing:2.705067pt;}
.ls53{letter-spacing:2.709413pt;}
.ls44{letter-spacing:2.806540pt;}
.ls32{letter-spacing:2.981841pt;}
.ls1c{letter-spacing:3.029841pt;}
.ls5b{letter-spacing:3.682177pt;}
.ls4e{letter-spacing:4.271963pt;}
.ls5d{letter-spacing:5.897859pt;}
.ls36{letter-spacing:6.370751pt;}
.ls28{letter-spacing:11.785092pt;}
.ls18{letter-spacing:11.790405pt;}
.ls27{letter-spacing:11.811659pt;}
.ls31{letter-spacing:11.822285pt;}
.ls43{letter-spacing:11.832912pt;}
.ls6e{letter-spacing:11.833067pt;}
.ls22{letter-spacing:11.838225pt;}
.ls3c{letter-spacing:12.169067pt;}
.ls3d{letter-spacing:12.175207pt;}
.ls70{letter-spacing:12.649067pt;}
.ls12{letter-spacing:12.780533pt;}
.ls11{letter-spacing:12.828533pt;}
.ls30{letter-spacing:12.837142pt;}
.ls21{letter-spacing:12.927470pt;}
.ls4d{letter-spacing:13.225019pt;}
.ls72{letter-spacing:13.273067pt;}
.ls75{letter-spacing:13.310034pt;}
.ls73{letter-spacing:13.357854pt;}
.ls76{letter-spacing:13.405675pt;}
.ls77{letter-spacing:13.453495pt;}
.ls54{letter-spacing:13.963580pt;}
.ls5a{letter-spacing:14.322389pt;}
.ls3e{letter-spacing:14.700533pt;}
.ls24{letter-spacing:14.718081pt;}
.ls19{letter-spacing:14.749961pt;}
.ls63{letter-spacing:14.760588pt;}
.ls2c{letter-spacing:14.765902pt;}
.ls23{letter-spacing:14.787155pt;}
.ls58{letter-spacing:14.789841pt;}
.ls1e{letter-spacing:14.797782pt;}
.ls40{letter-spacing:14.834976pt;}
.ls2d{letter-spacing:14.837841pt;}
.ls15{letter-spacing:15.145067pt;}
.ls16{letter-spacing:15.529067pt;}
.ls55{letter-spacing:15.536343pt;}
.ls4b{letter-spacing:15.624563pt;}
.ls4a{letter-spacing:15.674491pt;}
.ls3f{letter-spacing:15.865067pt;}
.ls4{letter-spacing:15.883867pt;}
.ls2{letter-spacing:15.931867pt;}
.ls3{letter-spacing:15.979867pt;}
.ls6d{letter-spacing:16.249067pt;}
.ls64{letter-spacing:16.891256pt;}
.ls56{letter-spacing:17.429841pt;}
.ls45{letter-spacing:17.445413pt;}
.ls1a{letter-spacing:17.477841pt;}
.ls6f{letter-spacing:17.497067pt;}
.ls48{letter-spacing:17.756562pt;}
.ls2b{letter-spacing:17.765841pt;}
.ls78{letter-spacing:18.060201pt;}
.ls65{letter-spacing:18.464019pt;}
.ls71{letter-spacing:18.511839pt;}
.ls4c{letter-spacing:19.101625pt;}
.ls49{letter-spacing:19.376499pt;}
.ls13{letter-spacing:19.452533pt;}
.ls5f{letter-spacing:19.465067pt;}
.ls3a{letter-spacing:20.370389pt;}
.ls39{letter-spacing:22.536563pt;}
.ls6b{letter-spacing:23.305067pt;}
.ls7a{letter-spacing:25.307661pt;}
.ls3b{letter-spacing:25.713036pt;}
.lsa{letter-spacing:46.502998pt;}
.ls60{letter-spacing:48.361067pt;}
.ls68{letter-spacing:63.735733pt;}
.ls17{letter-spacing:63.783733pt;}
.ls4f{letter-spacing:67.781841pt;}
.ls52{letter-spacing:67.829841pt;}
.ls59{letter-spacing:247.157841pt;}
.ls38{letter-spacing:366.257056pt;}
.ls62{letter-spacing:389.305067pt;}
.ls47{letter-spacing:396.693413pt;}
.ls35{letter-spacing:559.937067pt;}
.ls57{letter-spacing:625.305910pt;}
.ls1d{letter-spacing:625.353730pt;}
.ls2f{letter-spacing:673.349841pt;}
.ws7c{word-spacing:-366.310190pt;}
.ws7a{word-spacing:-24.064328pt;}
.wsa1{word-spacing:-21.375755pt;}
.wsae{word-spacing:-19.537323pt;}
.ws78{word-spacing:-17.693578pt;}
.ws76{word-spacing:-13.447162pt;}
.wsab{word-spacing:-3.788445pt;}
.wsa8{word-spacing:-3.740624pt;}
.wsaa{word-spacing:-2.964870pt;}
.wsa9{word-spacing:-2.167862pt;}
.ws9f{word-spacing:-0.812948pt;}
.wsf{word-spacing:-0.070137pt;}
.wsd5{word-spacing:-0.063761pt;}
.ws11d{word-spacing:-0.058447pt;}
.ws33{word-spacing:-0.053134pt;}
.ws80{word-spacing:-0.047820pt;}
.ws20{word-spacing:-0.046758pt;}
.ws77{word-spacing:-0.044420pt;}
.ws1b{word-spacing:-0.042507pt;}
.ws18{word-spacing:-0.038256pt;}
.ws85{word-spacing:-0.037194pt;}
.ws27{word-spacing:-0.031880pt;}
.ws1c{word-spacing:0.000000pt;}
.wsd3{word-spacing:0.786381pt;}
.ws7b{word-spacing:2.890482pt;}
.wsa2{word-spacing:3.644983pt;}
.wsf3{word-spacing:8.834918pt;}
.ws117{word-spacing:9.115267pt;}
.wsec{word-spacing:9.163267pt;}
.wsc6{word-spacing:9.170918pt;}
.ws14{word-spacing:9.334581pt;}
.wsa7{word-spacing:9.670364pt;}
.ws184{word-spacing:10.122002pt;}
.ws185{word-spacing:10.159195pt;}
.ws189{word-spacing:10.265463pt;}
.ws1e{word-spacing:10.346252pt;}
.ws181{word-spacing:10.430178pt;}
.ws165{word-spacing:10.456745pt;}
.ws5a{word-spacing:10.493939pt;}
.ws182{word-spacing:10.531132pt;}
.ws1f{word-spacing:10.563039pt;}
.ws16{word-spacing:10.575791pt;}
.ws1a{word-spacing:10.584293pt;}
.ws15{word-spacing:10.614048pt;}
.ws30{word-spacing:10.695847pt;}
.wsbf{word-spacing:10.743668pt;}
.ws13{word-spacing:10.758572pt;}
.ws93{word-spacing:10.839309pt;}
.wsc0{word-spacing:11.083725pt;}
.wsdf{word-spacing:11.168739pt;}
.ws150{word-spacing:11.216559pt;}
.ws15a{word-spacing:11.312200pt;}
.ws3f{word-spacing:11.360021pt;}
.ws12f{word-spacing:11.498169pt;}
.ws130{word-spacing:11.556616pt;}
.ws110{word-spacing:11.795718pt;}
.ws102{word-spacing:11.843539pt;}
.ws14c{word-spacing:11.848852pt;}
.ws14f{word-spacing:11.896673pt;}
.ws89{word-spacing:12.087955pt;}
.ws8a{word-spacing:12.114522pt;}
.ws88{word-spacing:12.130462pt;}
.ws3e{word-spacing:12.178282pt;}
.ws15c{word-spacing:12.183596pt;}
.ws10{word-spacing:12.208068pt;}
.ws126{word-spacing:12.268610pt;}
.ws97{word-spacing:12.321744pt;}
.ws53{word-spacing:12.327057pt;}
.ws52{word-spacing:12.374878pt;}
.ws29{word-spacing:12.422698pt;}
.ws4b{word-spacing:12.465205pt;}
.ws4a{word-spacing:12.491772pt;}
.wsba{word-spacing:12.560846pt;}
.ws49{word-spacing:12.571473pt;}
.ws18e{word-spacing:12.603353pt;}
.ws18d{word-spacing:12.608667pt;}
.ws121{word-spacing:12.619293pt;}
.ws12{word-spacing:12.650143pt;}
.ws3b{word-spacing:12.714934pt;}
.ws56{word-spacing:12.752128pt;}
.ws14d{word-spacing:12.762755pt;}
.ws57{word-spacing:12.768068pt;}
.ws5c{word-spacing:12.773382pt;}
.ws5b{word-spacing:12.789322pt;}
.ws152{word-spacing:12.847769pt;}
.ws193{word-spacing:12.863709pt;}
.ws17c{word-spacing:12.890276pt;}
.ws17b{word-spacing:12.922156pt;}
.ws16f{word-spacing:12.938097pt;}
.wsf5{word-spacing:12.948723pt;}
.ws194{word-spacing:13.001857pt;}
.ws42{word-spacing:13.039051pt;}
.ws44{word-spacing:13.049678pt;}
.ws16a{word-spacing:13.076245pt;}
.ws3c{word-spacing:13.086871pt;}
.ws3d{word-spacing:13.134692pt;}
.ws9e{word-spacing:13.171886pt;}
.ws63{word-spacing:13.182512pt;}
.ws133{word-spacing:13.187826pt;}
.wsc1{word-spacing:13.193139pt;}
.ws146{word-spacing:13.202253pt;}
.ws106{word-spacing:13.208836pt;}
.wsc5{word-spacing:13.219706pt;}
.ws6c{word-spacing:13.222660pt;}
.ws6e{word-spacing:13.225019pt;}
.ws1d{word-spacing:13.230333pt;}
.wsc4{word-spacing:13.235646pt;}
.ws2f{word-spacing:13.240960pt;}
.ws149{word-spacing:13.246273pt;}
.ws8c{word-spacing:13.251586pt;}
.wsda{word-spacing:13.255399pt;}
.ws28{word-spacing:13.267527pt;}
.ws116{word-spacing:13.272840pt;}
.ws26{word-spacing:13.278153pt;}
.wsbd{word-spacing:13.283467pt;}
.ws71{word-spacing:13.288780pt;}
.ws132{word-spacing:13.293332pt;}
.wsaf{word-spacing:13.293954pt;}
.ws109{word-spacing:13.294093pt;}
.wsfc{word-spacing:13.295465pt;}
.ws10f{word-spacing:13.299407pt;}
.ws19a{word-spacing:13.310034pt;}
.wsd6{word-spacing:13.325974pt;}
.wse1{word-spacing:13.331287pt;}
.ws139{word-spacing:13.332636pt;}
.ws11e{word-spacing:13.336269pt;}
.ws140{word-spacing:13.336601pt;}
.wsf9{word-spacing:13.337949pt;}
.wsd7{word-spacing:13.341129pt;}
.ws46{word-spacing:13.341914pt;}
.wsf2{word-spacing:13.347227pt;}
.ws16e{word-spacing:13.368481pt;}
.wsf8{word-spacing:13.373794pt;}
.ws120{word-spacing:13.377276pt;}
.wsfb{word-spacing:13.378956pt;}
.ws68{word-spacing:13.379108pt;}
.ws14a{word-spacing:13.380456pt;}
.wsd9{word-spacing:13.382136pt;}
.wsea{word-spacing:13.384421pt;}
.ws161{word-spacing:13.395048pt;}
.wsc8{word-spacing:13.421615pt;}
.ws90{word-spacing:13.469435pt;}
.ws10e{word-spacing:13.474749pt;}
.wsff{word-spacing:13.527882pt;}
.ws40{word-spacing:13.565076pt;}
.ws198{word-spacing:13.681971pt;}
.ws123{word-spacing:13.697911pt;}
.ws122{word-spacing:13.756358pt;}
.ws11{word-spacing:13.793586pt;}
.wsb7{word-spacing:13.952953pt;}
.ws192{word-spacing:13.958267pt;}
.wse0{word-spacing:13.963580pt;}
.ws100{word-spacing:13.984834pt;}
.ws169{word-spacing:13.995460pt;}
.ws160{word-spacing:14.000774pt;}
.ws191{word-spacing:14.011401pt;}
.ws74{word-spacing:14.027341pt;}
.ws12d{word-spacing:14.250503pt;}
.ws18f{word-spacing:14.393964pt;}
.wsfe{word-spacing:14.468352pt;}
.ws9b{word-spacing:14.478979pt;}
.wsfd{word-spacing:14.489605pt;}
.ws61{word-spacing:14.516172pt;}
.ws9a{word-spacing:14.537426pt;}
.ws60{word-spacing:14.563993pt;}
.ws55{word-spacing:14.585246pt;}
.ws92{word-spacing:14.627753pt;}
.ws73{word-spacing:14.633067pt;}
.ws91{word-spacing:14.680887pt;}
.ws8b{word-spacing:14.765902pt;}
.wsac{word-spacing:14.819035pt;}
.ws7e{word-spacing:14.866856pt;}
.ws10d{word-spacing:14.872169pt;}
.ws51{word-spacing:14.914676pt;}
.wsb4{word-spacing:14.919990pt;}
.ws159{word-spacing:14.962497pt;}
.ws174{word-spacing:14.978437pt;}
.wsde{word-spacing:15.005004pt;}
.wsdd{word-spacing:15.015631pt;}
.wsbb{word-spacing:15.063451pt;}
.ws69{word-spacing:15.105958pt;}
.ws6a{word-spacing:15.111272pt;}
.ws104{word-spacing:15.148465pt;}
.ws99{word-spacing:15.244106pt;}
.ws96{word-spacing:15.297240pt;}
.ws134{word-spacing:15.302554pt;}
.ws5{word-spacing:15.372665pt;}
.ws6{word-spacing:15.474681pt;}
.ws6d{word-spacing:15.488522pt;}
.ws4c{word-spacing:15.536343pt;}
.ws15b{word-spacing:15.546969pt;}
.wsa5{word-spacing:15.578850pt;}
.wsa6{word-spacing:15.594790pt;}
.ws24{word-spacing:15.642610pt;}
.wsa3{word-spacing:15.645954pt;}
.wsa4{word-spacing:15.658577pt;}
.ws6f{word-spacing:15.716971pt;}
.ws9d{word-spacing:15.802012pt;}
.wsc{word-spacing:15.818988pt;}
.ws186{word-spacing:15.823265pt;}
.wse6{word-spacing:15.825364pt;}
.ws7{word-spacing:15.844493pt;}
.ws3{word-spacing:15.857245pt;}
.ws4{word-spacing:15.869997pt;}
.wsd{word-spacing:15.876373pt;}
.ws9c{word-spacing:15.876399pt;}
.ws2{word-spacing:15.882749pt;}
.wsa{word-spacing:15.889125pt;}
.ws8{word-spacing:15.908253pt;}
.wsb3{word-spacing:15.913593pt;}
.wse{word-spacing:15.914629pt;}
.ws62{word-spacing:15.918906pt;}
.wsb{word-spacing:15.921005pt;}
.ws9{word-spacing:15.927381pt;}
.ws5d{word-spacing:15.929533pt;}
.wsb2{word-spacing:15.966727pt;}
.ws79{word-spacing:16.041114pt;}
.ws3a{word-spacing:16.057055pt;}
.ws2e{word-spacing:16.062368pt;}
.ws125{word-spacing:16.067681pt;}
.ws2d{word-spacing:16.072995pt;}
.ws65{word-spacing:16.152695pt;}
.ws23{word-spacing:16.158009pt;}
.ws58{word-spacing:16.168636pt;}
.wseb{word-spacing:16.264277pt;}
.ws72{word-spacing:16.359918pt;}
.wse5{word-spacing:16.397111pt;}
.wse2{word-spacing:16.407738pt;}
.ws98{word-spacing:16.444932pt;}
.ws43{word-spacing:16.551199pt;}
.ws94{word-spacing:16.599020pt;}
.wse4{word-spacing:16.694661pt;}
.wsbc{word-spacing:16.769048pt;}
.ws39{word-spacing:16.790302pt;}
.ws166{word-spacing:16.838122pt;}
.ws66{word-spacing:16.880629pt;}
.ws168{word-spacing:16.885943pt;}
.ws75{word-spacing:16.907196pt;}
.ws167{word-spacing:16.923137pt;}
.wsb5{word-spacing:16.939077pt;}
.wsa0{word-spacing:16.955017pt;}
.ws4f{word-spacing:17.114418pt;}
.ws4e{word-spacing:17.130359pt;}
.ws190{word-spacing:17.178179pt;}
.ws2b{word-spacing:17.226000pt;}
.ws13d{word-spacing:17.263193pt;}
.ws14e{word-spacing:17.305700pt;}
.wsdb{word-spacing:17.311014pt;}
.ws16b{word-spacing:17.348207pt;}
.ws18c{word-spacing:17.369461pt;}
.wse3{word-spacing:17.406655pt;}
.wsb8{word-spacing:17.454475pt;}
.ws107{word-spacing:17.518236pt;}
.ws7d{word-spacing:17.523549pt;}
.ws2c{word-spacing:17.645757pt;}
.wsad{word-spacing:17.671186pt;}
.ws7f{word-spacing:17.719186pt;}
.wsb9{word-spacing:17.778592pt;}
.ws11a{word-spacing:17.789219pt;}
.ws18b{word-spacing:17.799845pt;}
.ws188{word-spacing:17.879546pt;}
.wse8{word-spacing:17.884860pt;}
.wsef{word-spacing:17.937993pt;}
.ws178{word-spacing:17.948620pt;}
.ws177{word-spacing:17.969874pt;}
.ws48{word-spacing:17.991127pt;}
.ws12b{word-spacing:18.028321pt;}
.ws8f{word-spacing:18.076141pt;}
.ws113{word-spacing:18.118649pt;}
.ws19{word-spacing:18.303600pt;}
.ws195{word-spacing:18.410885pt;}
.ws67{word-spacing:18.464019pt;}
.ws41{word-spacing:18.474645pt;}
.wsc2{word-spacing:18.522466pt;}
.ws15f{word-spacing:18.570286pt;}
.ws151{word-spacing:18.665927pt;}
.wsc3{word-spacing:18.703121pt;}
.wscf{word-spacing:18.770918pt;}
.ws13f{word-spacing:18.809389pt;}
.ws13e{word-spacing:18.835956pt;}
.ws141{word-spacing:19.176012pt;}
.ws54{word-spacing:19.191953pt;}
.ws16c{word-spacing:19.239773pt;}
.ws87{word-spacing:19.287594pt;}
.ws64{word-spacing:19.335414pt;}
.ws86{word-spacing:19.347977pt;}
.wsb1{word-spacing:19.383235pt;}
.wsb0{word-spacing:19.420428pt;}
.ws12c{word-spacing:19.478876pt;}
.ws124{word-spacing:19.617024pt;}
.ws179{word-spacing:19.654217pt;}
.ws12a{word-spacing:19.659531pt;}
.ws129{word-spacing:19.670157pt;}
.ws17a{word-spacing:19.723291pt;}
.ws114{word-spacing:20.143049pt;}
.ws115{word-spacing:20.153676pt;}
.ws105{word-spacing:20.196183pt;}
.ws13b{word-spacing:20.201496pt;}
.ws13a{word-spacing:20.228063pt;}
.ws131{word-spacing:20.334331pt;}
.ws5e{word-spacing:20.530926pt;}
.ws5f{word-spacing:20.536239pt;}
.ws37{word-spacing:20.716895pt;}
.ws36{word-spacing:20.738148pt;}
.ws35{word-spacing:20.764715pt;}
.ws144{word-spacing:20.775342pt;}
.ws176{word-spacing:20.860356pt;}
.ws34{word-spacing:20.865669pt;}
.ws112{word-spacing:20.870983pt;}
.ws32{word-spacing:20.881610pt;}
.ws111{word-spacing:20.908177pt;}
.ws8e{word-spacing:20.913490pt;}
.ws15d{word-spacing:21.306681pt;}
.ws4d{word-spacing:21.391695pt;}
.ws183{word-spacing:21.423575pt;}
.ws31{word-spacing:21.582977pt;}
.ws103{word-spacing:21.641424pt;}
.ws101{word-spacing:21.842005pt;}
.wsf0{word-spacing:21.890005pt;}
.ws13c{word-spacing:22.449059pt;}
.wsdc{word-spacing:22.544700pt;}
.ws81{word-spacing:22.557954pt;}
.ws82{word-spacing:22.570577pt;}
.ws83{word-spacing:22.576580pt;}
.ws163{word-spacing:22.587207pt;}
.ws25{word-spacing:22.746608pt;}
.wsd1{word-spacing:22.836936pt;}
.ws59{word-spacing:22.927263pt;}
.ws8d{word-spacing:23.017591pt;}
.ws180{word-spacing:23.033531pt;}
.ws21{word-spacing:23.187678pt;}
.wsf1{word-spacing:23.267320pt;}
.wse9{word-spacing:23.416095pt;}
.ws17e{word-spacing:23.596750pt;}
.ws172{word-spacing:23.703018pt;}
.ws2a{word-spacing:23.793345pt;}
.ws196{word-spacing:23.995254pt;}
.ws17{word-spacing:24.046323pt;}
.ws187{word-spacing:24.122775pt;}
.wsbe{word-spacing:24.138716pt;}
.ws14b{word-spacing:24.521279pt;}
.ws6b{word-spacing:24.701935pt;}
.ws38{word-spacing:24.760382pt;}
.ws197{word-spacing:25.132319pt;}
.ws95{word-spacing:25.318287pt;}
.ws84{word-spacing:25.495186pt;}
.ws199{word-spacing:25.807119pt;}
.wse7{word-spacing:25.902760pt;}
.ws175{word-spacing:26.295951pt;}
.ws162{word-spacing:26.526031pt;}
.ws45{word-spacing:26.526786pt;}
.ws17d{word-spacing:26.534978pt;}
.ws70{word-spacing:26.574786pt;}
.ws142{word-spacing:26.582873pt;}
.ws173{word-spacing:26.582978pt;}
.ws127{word-spacing:26.768842pt;}
.ws145{word-spacing:26.790096pt;}
.ws128{word-spacing:26.795409pt;}
.ws170{word-spacing:26.970751pt;}
.ws171{word-spacing:27.002631pt;}
.ws15e{word-spacing:27.162033pt;}
.ws164{word-spacing:27.332061pt;}
.wsb6{word-spacing:27.640237pt;}
.ws143{word-spacing:27.858086pt;}
.ws1{word-spacing:27.884308pt;}
.ws18a{word-spacing:27.905907pt;}
.ws0{word-spacing:27.962416pt;}
.ws16d{word-spacing:28.022801pt;}
.ws17f{word-spacing:29.345835pt;}
.ws47{word-spacing:30.222543pt;}
.ws148{word-spacing:39.838014pt;}
.wsed{word-spacing:39.839693pt;}
.ws136{word-spacing:39.886014pt;}
.ws118{word-spacing:39.887693pt;}
.wsf4{word-spacing:52.559693pt;}
.wsc7{word-spacing:53.135693pt;}
.ws50{word-spacing:53.193401pt;}
.ws22{word-spacing:63.671973pt;}
.wsd0{word-spacing:72.479693pt;}
.ws119{word-spacing:104.832000pt;}
.wsee{word-spacing:128.649600pt;}
.ws147{word-spacing:128.832000pt;}
.wsf6{word-spacing:129.567178pt;}
.ws12e{word-spacing:138.345600pt;}
.wscd{word-spacing:148.215828pt;}
.ws11b{word-spacing:148.383178pt;}
.ws135{word-spacing:151.689600pt;}
.ws137{word-spacing:156.159178pt;}
.wsca{word-spacing:161.428314pt;}
.wscb{word-spacing:161.465508pt;}
.wsf7{word-spacing:165.018093pt;}
.wsc9{word-spacing:170.522424pt;}
.ws108{word-spacing:171.510400pt;}
.wscc{word-spacing:174.715187pt;}
.ws10a{word-spacing:174.927178pt;}
.ws153{word-spacing:182.166400pt;}
.wsd2{word-spacing:182.703178pt;}
.ws11c{word-spacing:183.834093pt;}
.wsce{word-spacing:194.603080pt;}
.ws155{word-spacing:196.086400pt;}
.ws157{word-spacing:196.089600pt;}
.ws156{word-spacing:197.680000pt;}
.ws158{word-spacing:200.265600pt;}
.ws10b{word-spacing:210.378093pt;}
.wsd4{word-spacing:218.154093pt;}
.wsfa{word-spacing:244.718893pt;}
.ws11f{word-spacing:263.534893pt;}
.ws138{word-spacing:271.310893pt;}
.ws10c{word-spacing:290.078893pt;}
.wsd8{word-spacing:297.854893pt;}
.ws154{word-spacing:1275.387200pt;}
._16{margin-left:-366.580183pt;}
._2c{margin-left:-10.616147pt;}
._7{margin-left:-8.856338pt;}
._6{margin-left:-7.286188pt;}
._2{margin-left:-5.567935pt;}
._3{margin-left:-4.485591pt;}
._0{margin-left:-3.369772pt;}
._5{margin-left:-2.406932pt;}
._4{margin-left:-1.249717pt;}
._9{width:0.956412pt;}
._8{width:2.612342pt;}
._a{width:4.142255pt;}
._12{width:5.320510pt;}
._1{width:11.147028pt;}
._b{width:12.940216pt;}
._14{width:13.934864pt;}
._13{width:15.042165pt;}
._15{width:16.094280pt;}
._10{width:17.035030pt;}
._17{width:17.937405pt;}
._23{width:19.064399pt;}
._d{width:20.701022pt;}
._11{width:21.670271pt;}
._c{width:23.179176pt;}
._2f{width:24.999447pt;}
._20{width:26.574607pt;}
._29{width:27.911220pt;}
._2b{width:34.394591pt;}
._2d{width:36.381812pt;}
._2e{width:37.980088pt;}
._e{width:42.635736pt;}
._f{width:52.576619pt;}
._25{width:115.520000pt;}
._1e{width:118.032000pt;}
._1f{width:123.350400pt;}
._24{width:129.043200pt;}
._28{width:141.065600pt;}
._26{width:146.393600pt;}
._27{width:151.721600pt;}
._18{width:169.646756pt;}
._2a{width:171.542400pt;}
._21{width:176.870400pt;}
._22{width:182.192000pt;}
._1c{width:322.938961pt;}
._1b{width:336.234961pt;}
._19{width:362.780640pt;}
._1d{width:369.450961pt;}
._1a{width:376.076640pt;}
.fs7{font-size:32.000000pt;}
.fs3{font-size:36.131200pt;}
.fs6{font-size:40.381867pt;}
.fs2{font-size:42.507200pt;}
.fs4{font-size:42.666667pt;}
.fs5{font-size:53.133867pt;}
.fs1{font-size:63.760533pt;}
.fs0{font-size:111.581867pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:6.309520pt;}
.y21{bottom:18.933096pt;}
.y20{bottom:31.544982pt;}
.y1f{bottom:44.168558pt;}
.y1e{bottom:56.792133pt;}
.y133{bottom:80.959695pt;}
.y129{bottom:80.959828pt;}
.y4e{bottom:80.959870pt;}
.ya5{bottom:80.960133pt;}
.y1d{bottom:84.824000pt;}
.y78{bottom:85.748000pt;}
.ycf{bottom:86.300133pt;}
.y4d{bottom:96.907653pt;}
.y132{bottom:96.907825pt;}
.yf5{bottom:96.907958pt;}
.y104{bottom:96.908000pt;}
.yce{bottom:102.236000pt;}
.ya4{bottom:102.247967pt;}
.ya3{bottom:106.376000pt;}
.y77{bottom:107.000133pt;}
.y1eb{bottom:107.528133pt;}
.y19d{bottom:110.120133pt;}
.y16b{bottom:112.843653pt;}
.y4c{bottom:112.843828pt;}
.y103{bottom:112.843958pt;}
.y131{bottom:112.844000pt;}
.yf4{bottom:112.844133pt;}
.ycd{bottom:118.184133pt;}
.y1c{bottom:119.434000pt;}
.y74{bottom:123.536000pt;}
.ya2{bottom:128.228133pt;}
.y183{bottom:128.779390pt;}
.yf3{bottom:128.779828pt;}
.y4b{bottom:128.780003pt;}
.y102{bottom:128.780133pt;}
.y1b{bottom:132.717500pt;}
.ycc{bottom:134.120133pt;}
.y76{bottom:136.160133pt;}
.y145{bottom:136.748000pt;}
.y130{bottom:136.748133pt;}
.y75{bottom:140.288000pt;}
.y182{bottom:144.727520pt;}
.y4a{bottom:144.727650pt;}
.yf2{bottom:144.727958pt;}
.y112{bottom:144.728133pt;}
.y9f{bottom:144.752000pt;}
.y191{bottom:144.784000pt;}
.y1a{bottom:146.001000pt;}
.y1ea{bottom:147.379695pt;}
.ycb{bottom:150.056000pt;}
.y101{bottom:152.696000pt;}
.y192{bottom:153.122667pt;}
.ya1{bottom:157.376000pt;}
.y19{bottom:159.284500pt;}
.y181{bottom:160.663695pt;}
.y49{bottom:160.663825pt;}
.y111{bottom:160.663958pt;}
.yf1{bottom:160.664133pt;}
.ya0{bottom:161.504133pt;}
.y1e9{bottom:163.315870pt;}
.yca{bottom:165.992000pt;}
.y73{bottom:168.008000pt;}
.y18{bottom:172.568000pt;}
.y144{bottom:173.623695pt;}
.yf0{bottom:176.599520pt;}
.y128{bottom:176.599870pt;}
.y48{bottom:176.600000pt;}
.y110{bottom:176.600133pt;}
.y193{bottom:178.414667pt;}
.y9e{bottom:178.868000pt;}
.y1e8{bottom:179.264000pt;}
.yc9{bottom:181.928000pt;}
.y143{bottom:189.571825pt;}
.y12f{bottom:189.932000pt;}
.y72{bottom:191.336000pt;}
.yef{bottom:192.547650pt;}
.y10f{bottom:192.547825pt;}
.y127{bottom:192.548000pt;}
.y16a{bottom:192.727870pt;}
.y17{bottom:193.820000pt;}
.y100{bottom:194.576133pt;}
.y1e7{bottom:195.199695pt;}
.y9b{bottom:195.404000pt;}
.yc8{bottom:197.876133pt;}
.y47{bottom:200.516000pt;}
.y194{bottom:203.702667pt;}
.y142{bottom:205.507825pt;}
.y6f{bottom:207.872000pt;}
.y9d{bottom:208.016133pt;}
.y126{bottom:208.483695pt;}
.yee{bottom:208.483825pt;}
.y10e{bottom:208.484000pt;}
.y169{bottom:208.676000pt;}
.y1e6{bottom:211.135870pt;}
.y9c{bottom:212.156133pt;}
.yc7{bottom:213.812000pt;}
.y180{bottom:216.452000pt;}
.y71{bottom:220.496133pt;}
.y141{bottom:221.443870pt;}
.y125{bottom:224.419870pt;}
.yed{bottom:224.420000pt;}
.y12a{bottom:224.594800pt;}
.y168{bottom:224.611825pt;}
.y70{bottom:224.624000pt;}
.y1e5{bottom:227.084000pt;}
.y195{bottom:228.993067pt;}
.yf7{bottom:229.240000pt;}
.yc6{bottom:229.748133pt;}
.y12b{bottom:232.266800pt;}
.y10d{bottom:232.400000pt;}
.y9a{bottom:233.768000pt;}
.y151{bottom:233.780000pt;}
.y1b2{bottom:234.500000pt;}
.yf8{bottom:235.861333pt;}
.y140{bottom:237.392000pt;}
.y46{bottom:239.563870pt;}
.y124{bottom:240.368000pt;}
.y167{bottom:240.548000pt;}
.y1e4{bottom:243.019520pt;}
.yc5{bottom:245.684000pt;}
.y6e{bottom:245.935695pt;}
.yec{bottom:248.336000pt;}
.y16{bottom:252.535458pt;}
.y13f{bottom:253.327390pt;}
.y196{bottom:254.283467pt;}
.y45{bottom:255.510735pt;}
.y98{bottom:255.775967pt;}
.y1ce{bottom:256.303825pt;}
.y166{bottom:256.495958pt;}
.y1e3{bottom:258.967650pt;}
.y17f{bottom:259.699825pt;}
.y97{bottom:259.904342pt;}
.yc4{bottom:261.632000pt;}
.y6d{bottom:261.883825pt;}
.y123{bottom:264.272133pt;}
.y10c{bottom:267.667390pt;}
.y1a9{bottom:269.162667pt;}
.y13e{bottom:269.263565pt;}
.y15{bottom:271.136000pt;}
.y44{bottom:271.446910pt;}
.yf9{bottom:271.990933pt;}
.y1cd{bottom:272.240000pt;}
.y165{bottom:272.432133pt;}
.y1e2{bottom:274.903825pt;}
.y17e{bottom:275.636000pt;}
.y1aa{bottom:277.500000pt;}
.y6c{bottom:277.820000pt;}
.y197{bottom:279.575467pt;}
.y99{bottom:279.631276pt;}
.y10b{bottom:283.615520pt;}
.y95{bottom:284.660000pt;}
.y13d{bottom:285.211695pt;}
.y43{bottom:287.383085pt;}
.y1cc{bottom:288.187695pt;}
.yc3{bottom:288.200000pt;}
.y96{bottom:289.963834pt;}
.y1e1{bottom:290.840000pt;}
.y17d{bottom:291.571870pt;}
.yeb{bottom:293.095390pt;}
.y10a{bottom:299.551695pt;}
.y13c{bottom:301.147870pt;}
.y6b{bottom:301.724000pt;}
.y42{bottom:303.331215pt;}
.y94{bottom:303.404000pt;}
.y1cb{bottom:304.123870pt;}
.yc2{bottom:304.135695pt;}
.y164{bottom:304.508000pt;}
.y198{bottom:304.865067pt;}
.y1e0{bottom:306.787650pt;}
.y17c{bottom:307.520000pt;}
.yfa{bottom:308.120533pt;}
.y14{bottom:308.322917pt;}
.yea{bottom:309.043520pt;}
.y122{bottom:309.379870pt;}
.y1ab{bottom:313.630400pt;}
.y109{bottom:315.487870pt;}
.y12c{bottom:316.568400pt;}
.y13b{bottom:317.096000pt;}
.y41{bottom:319.267390pt;}
.yc1{bottom:320.071870pt;}
.y1ca{bottom:320.072000pt;}
.y163{bottom:320.443653pt;}
.y1df{bottom:322.723825pt;}
.ye9{bottom:324.979695pt;}
.y121{bottom:325.328000pt;}
.y93{bottom:325.867783pt;}
.y13{bottom:326.923458pt;}
.y199{bottom:330.154667pt;}
.y108{bottom:331.436000pt;}
.y13a{bottom:333.031825pt;}
.y40{bottom:335.203565pt;}
.y6a{bottom:335.336000pt;}
.y1c9{bottom:336.007825pt;}
.yc0{bottom:336.020000pt;}
.y162{bottom:336.379828pt;}
.y1de{bottom:338.660000pt;}
.ye8{bottom:340.915870pt;}
.y92{bottom:341.803958pt;}
.yfb{bottom:344.248533pt;}
.y12{bottom:345.524000pt;}
.y107{bottom:347.371825pt;}
.y139{bottom:348.968000pt;}
.y1ac{bottom:349.756800pt;}
.y3f{bottom:351.151695pt;}
.y1c8{bottom:351.944000pt;}
.y161{bottom:352.327958pt;}
.y1dd{bottom:354.607650pt;}
.y17b{bottom:354.872133pt;}
.y19a{bottom:355.445067pt;}
.ye7{bottom:356.864000pt;}
.y91{bottom:357.740133pt;}
.y69{bottom:359.252133pt;}
.ybf{bottom:362.575520pt;}
.y106{bottom:363.308000pt;}
.y3e{bottom:367.087870pt;}
.y1c7{bottom:367.891825pt;}
.y160{bottom:368.264133pt;}
.y1dc{bottom:370.543825pt;}
.ye6{bottom:372.799345pt;}
.y17a{bottom:378.056000pt;}
.ybe{bottom:378.523650pt;}
.yfc{bottom:380.378133pt;}
.y19b{bottom:380.735467pt;}
.y11{bottom:382.711458pt;}
.y3d{bottom:383.036000pt;}
.y90{bottom:383.156000pt;}
.y1c6{bottom:383.828000pt;}
.y1ad{bottom:385.887200pt;}
.y1db{bottom:386.480000pt;}
.ye5{bottom:388.735520pt;}
.ybd{bottom:394.459825pt;}
.y138{bottom:396.260000pt;}
.y3c{bottom:398.971215pt;}
.y1c5{bottom:399.763695pt;}
.y12d{bottom:400.869200pt;}
.y10{bottom:401.312000pt;}
.y179{bottom:401.348000pt;}
.y68{bottom:402.427825pt;}
.ye4{bottom:404.683650pt;}
.y19c{bottom:406.025867pt;}
.y105{bottom:407.408000pt;}
.y8f{bottom:408.571825pt;}
.ybc{bottom:410.396000pt;}
.y120{bottom:411.488000pt;}
.y3b{bottom:414.907390pt;}
.y1c4{bottom:415.711825pt;}
.yfd{bottom:416.506933pt;}
.y67{bottom:418.363825pt;}
.y1da{bottom:418.364000pt;}
.ye3{bottom:420.619825pt;}
.y1ae{bottom:422.016000pt;}
.y8e{bottom:424.507825pt;}
.ybb{bottom:426.343650pt;}
.y11f{bottom:427.424000pt;}
.y3a{bottom:430.855520pt;}
.y1c3{bottom:431.648000pt;}
.y66{bottom:434.299870pt;}
.ye2{bottom:436.555870pt;}
.yf{bottom:438.511802pt;}
.y8d{bottom:440.443695pt;}
.yba{bottom:442.279825pt;}
.y15f{bottom:444.188000pt;}
.y39{bottom:446.791695pt;}
.y1c2{bottom:447.583695pt;}
.y65{bottom:450.248000pt;}
.y11e{bottom:450.608000pt;}
.y178{bottom:451.676000pt;}
.ye1{bottom:452.504000pt;}
.yfe{bottom:452.635733pt;}
.y190{bottom:452.636000pt;}
.y8c{bottom:456.391825pt;}
.ye{bottom:457.099592pt;}
.y1af{bottom:458.144000pt;}
.yb9{bottom:458.216000pt;}
.y38{bottom:462.727870pt;}
.y1c1{bottom:463.531825pt;}
.y64{bottom:466.183390pt;}
.y15e{bottom:467.360133pt;}
.ye0{bottom:468.439870pt;}
.y8b{bottom:472.328000pt;}
.y11d{bottom:473.900000pt;}
.y177{bottom:474.848000pt;}
.yd{bottom:475.700133pt;}
.y18f{bottom:475.820133pt;}
.y37{bottom:478.675825pt;}
.y1c0{bottom:479.468000pt;}
.y63{bottom:482.119565pt;}
.ydf{bottom:484.388000pt;}
.yb8{bottom:484.784000pt;}
.y12e{bottom:485.170000pt;}
.y8a{bottom:488.263390pt;}
.yff{bottom:488.764533pt;}
.y15d{bottom:490.652000pt;}
.y1b0{bottom:494.272000pt;}
.y36{bottom:494.611695pt;}
.y1bf{bottom:495.403695pt;}
.y62{bottom:498.067695pt;}
.y176{bottom:498.140000pt;}
.y18e{bottom:499.112000pt;}
.yb7{bottom:500.731345pt;}
.y89{bottom:504.211520pt;}
.y35{bottom:510.547870pt;}
.y1be{bottom:511.351825pt;}
.yc{bottom:512.899669pt;}
.y61{bottom:514.003870pt;}
.yb6{bottom:516.667520pt;}
.y15c{bottom:518.012000pt;}
.yf6{bottom:519.344000pt;}
.y88{bottom:520.147695pt;}
.y11c{bottom:524.684000pt;}
.y175{bottom:526.016000pt;}
.y34{bottom:526.496000pt;}
.y1bd{bottom:527.288000pt;}
.y60{bottom:529.951650pt;}
.y1d9{bottom:529.952000pt;}
.y1b1{bottom:530.402400pt;}
.yb{bottom:531.487458pt;}
.yde{bottom:532.028133pt;}
.yb5{bottom:532.603695pt;}
.y87{bottom:536.083870pt;}
.y33{bottom:542.431825pt;}
.y1bc{bottom:543.223870pt;}
.y5f{bottom:545.887825pt;}
.ydd{bottom:547.964000pt;}
.yb4{bottom:548.551825pt;}
.ya{bottom:550.088000pt;}
.y86{bottom:552.032000pt;}
.y152{bottom:552.674667pt;}
.y1a8{bottom:558.008000pt;}
.y32{bottom:558.367215pt;}
.y1bb{bottom:559.172000pt;}
.y113{bottom:559.348000pt;}
.y153{bottom:560.320000pt;}
.y16c{bottom:560.680000pt;}
.y5e{bottom:561.824000pt;}
.yb3{bottom:564.488000pt;}
.y114{bottom:567.080133pt;}
.y16d{bottom:567.178800pt;}
.y184{bottom:567.285467pt;}
.y146{bottom:567.685333pt;}
.y85{bottom:567.967695pt;}
.ydc{bottom:571.148000pt;}
.y31{bottom:574.315345pt;}
.y1ba{bottom:575.107870pt;}
.y5d{bottom:577.771650pt;}
.yb2{bottom:580.424000pt;}
.y84{bottom:583.903870pt;}
.y9{bottom:587.287669pt;}
.y30{bottom:590.251520pt;}
.y1b9{bottom:591.056000pt;}
.ydb{bottom:591.847825pt;}
.y147{bottom:592.975733pt;}
.y1a7{bottom:593.250667pt;}
.y5c{bottom:593.707825pt;}
.y185{bottom:595.387867pt;}
.y154{bottom:596.448000pt;}
.y83{bottom:599.851170pt;}
.y115{bottom:603.208133pt;}
.y16e{bottom:603.308400pt;}
.y8{bottom:605.875458pt;}
.y2f{bottom:606.187695pt;}
.yb1{bottom:606.991695pt;}
.y1a0{bottom:607.298800pt;}
.yda{bottom:607.784000pt;}
.y5b{bottom:609.643870pt;}
.y1d8{bottom:609.644000pt;}
.y1b8{bottom:614.960000pt;}
.y82{bottom:615.787345pt;}
.y148{bottom:618.265333pt;}
.y2e{bottom:622.135825pt;}
.yb0{bottom:622.927870pt;}
.y186{bottom:623.486267pt;}
.y7{bottom:624.476000pt;}
.y5a{bottom:625.591650pt;}
.y1d7{bottom:625.591825pt;}
.y19f{bottom:628.337467pt;}
.y81{bottom:631.723520pt;}
.y155{bottom:632.577600pt;}
.y2d{bottom:638.071653pt;}
.yaf{bottom:638.876000pt;}
.y116{bottom:639.337733pt;}
.y16f{bottom:639.436400pt;}
.y1a1{bottom:640.286800pt;}
.y59{bottom:641.527825pt;}
.y1d6{bottom:641.528000pt;}
.y149{bottom:643.557333pt;}
.y80{bottom:647.671650pt;}
.y19e{bottom:648.649467pt;}
.y187{bottom:651.586267pt;}
.y2c{bottom:654.019783pt;}
.yae{bottom:654.811825pt;}
.y1d5{bottom:657.463695pt;}
.y58{bottom:657.463870pt;}
.yd9{bottom:661.172000pt;}
.y6{bottom:661.676344pt;}
.y1b7{bottom:662.780000pt;}
.y7f{bottom:663.607825pt;}
.y156{bottom:668.705600pt;}
.y14a{bottom:668.846933pt;}
.y2b{bottom:669.955958pt;}
.yad{bottom:670.748000pt;}
.y1a2{bottom:673.274800pt;}
.y1d4{bottom:673.411825pt;}
.y57{bottom:673.412000pt;}
.y117{bottom:675.467333pt;}
.y170{bottom:675.566000pt;}
.yd8{bottom:677.108000pt;}
.y7e{bottom:679.544000pt;}
.y188{bottom:679.686267pt;}
.y5{bottom:680.264133pt;}
.y2a{bottom:685.892133pt;}
.yac{bottom:686.696000pt;}
.y56{bottom:689.347520pt;}
.y1d3{bottom:689.348000pt;}
.yd7{bottom:693.044000pt;}
.y14b{bottom:694.137333pt;}
.y7d{bottom:703.460000pt;}
.y157{bottom:704.835200pt;}
.y1d2{bottom:705.283520pt;}
.y55{bottom:705.283695pt;}
.y1a3{bottom:706.259733pt;}
.y189{bottom:707.787067pt;}
.yd6{bottom:708.992000pt;}
.y29{bottom:709.808000pt;}
.y118{bottom:711.596933pt;}
.y171{bottom:711.696400pt;}
.yab{bottom:713.263783pt;}
.y4{bottom:717.464211pt;}
.y14c{bottom:719.427733pt;}
.y1d1{bottom:721.231650pt;}
.y54{bottom:721.231825pt;}
.yd5{bottom:724.928000pt;}
.yaa{bottom:729.199958pt;}
.y18a{bottom:735.887867pt;}
.y3{bottom:736.052133pt;}
.y1b6{bottom:737.167520pt;}
.y7c{bottom:737.167695pt;}
.y1d0{bottom:737.167825pt;}
.y53{bottom:737.168000pt;}
.y1a4{bottom:739.248000pt;}
.yd4{bottom:740.864000pt;}
.y158{bottom:740.964000pt;}
.y14d{bottom:744.718133pt;}
.ya9{bottom:745.136133pt;}
.y119{bottom:747.724933pt;}
.y172{bottom:747.824400pt;}
.y52{bottom:753.103520pt;}
.y1b5{bottom:753.103695pt;}
.y7b{bottom:753.103870pt;}
.y1cf{bottom:753.104000pt;}
.yd3{bottom:756.812000pt;}
.y137{bottom:756.860000pt;}
.ya8{bottom:761.083825pt;}
.y28{bottom:763.736500pt;}
.y18b{bottom:763.988667pt;}
.y51{bottom:769.051650pt;}
.y1b4{bottom:769.051825pt;}
.y7a{bottom:769.052000pt;}
.y14e{bottom:770.006933pt;}
.y1a5{bottom:772.235067pt;}
.yd2{bottom:772.748000pt;}
.y136{bottom:772.796000pt;}
.y23{bottom:774.586667pt;}
.ya7{bottom:777.019825pt;}
.y27{bottom:777.020000pt;}
.y159{bottom:777.092000pt;}
.y2{bottom:781.003632pt;}
.y11a{bottom:783.855333pt;}
.y173{bottom:783.954000pt;}
.y50{bottom:784.987825pt;}
.y1b3{bottom:784.988000pt;}
.y18c{bottom:792.088667pt;}
.ya6{bottom:792.956000pt;}
.y14f{bottom:795.298133pt;}
.yd1{bottom:795.932000pt;}
.y135{bottom:795.980000pt;}
.y79{bottom:800.924000pt;}
.y4f{bottom:800.924003pt;}
.y26{bottom:803.588633pt;}
.y1a6{bottom:805.222133pt;}
.y1{bottom:810.224133pt;}
.y15a{bottom:813.220800pt;}
.y25{bottom:816.872133pt;}
.yd0{bottom:819.212133pt;}
.y134{bottom:819.260133pt;}
.y11b{bottom:819.983333pt;}
.y15b{bottom:819.999200pt;}
.y174{bottom:820.082000pt;}
.y18d{bottom:820.189467pt;}
.y150{bottom:820.587733pt;}
.y24{bottom:846.092000pt;}
.h19{height:0.000000pt;}
.h26{height:22.944000pt;}
.h29{height:23.040000pt;}
.hb{height:24.135642pt;}
.h2a{height:25.856000pt;}
.h18{height:28.025015pt;}
.hc{height:31.062500pt;}
.h1a{height:35.455279pt;}
.h17{height:36.874903pt;}
.h13{height:36.875437pt;}
.ha{height:37.321322pt;}
.h9{height:43.165881pt;}
.h4{height:44.249810pt;}
.h6{height:44.250601pt;}
.h5{height:44.251134pt;}
.h7{height:44.251976pt;}
.h8{height:44.254143pt;}
.hd{height:46.651535pt;}
.h25{height:46.651701pt;}
.h15{height:46.652055pt;}
.h11{height:46.652235pt;}
.h1e{height:46.652401pt;}
.h28{height:46.652589pt;}
.h10{height:46.652755pt;}
.he{height:46.652922pt;}
.h16{height:46.652935pt;}
.h14{height:46.653468pt;}
.h24{height:46.653975pt;}
.h27{height:46.654509pt;}
.hf{height:46.654675pt;}
.h1d{height:46.654855pt;}
.h12{height:46.656595pt;}
.h1c{height:49.961015pt;}
.h3{height:55.981748pt;}
.h1b{height:57.391279pt;}
.h21{height:58.350445pt;}
.h23{height:58.351812pt;}
.h22{height:73.903409pt;}
.h20{height:73.903943pt;}
.h2{height:75.540924pt;}
.h1f{height:96.079279pt;}
.h0{height:929.912000pt;}
.h1{height:930.000000pt;}
.w1{width:714.666667pt;}
.w0{width:714.770667pt;}
.x0{left:0.000000pt;}
.x1{left:92.208000pt;}
.x1c{left:94.872000pt;}
.x17{left:96.300000pt;}
.x31{left:98.856000pt;}
.x5{left:106.272000pt;}
.x1a{left:108.948000pt;}
.x2{left:112.740000pt;}
.x32{left:120.984000pt;}
.x1b{left:127.680000pt;}
.x30{left:154.776000pt;}
.x2a{left:166.440000pt;}
.x18{left:169.596000pt;}
.x25{left:184.776000pt;}
.x20{left:186.779867pt;}
.x29{left:188.219867pt;}
.x22{left:189.443867pt;}
.x26{left:191.448000pt;}
.x1f{left:193.451867pt;}
.x28{left:194.891867pt;}
.x21{left:196.115867pt;}
.x2b{left:197.332000pt;}
.xb{left:199.272000pt;}
.x2c{left:200.482267pt;}
.x1d{left:202.596000pt;}
.x11{left:206.976000pt;}
.x2d{left:222.204000pt;}
.x1e{left:225.336000pt;}
.x13{left:227.076000pt;}
.x24{left:229.428000pt;}
.x12{left:232.032000pt;}
.x23{left:235.296000pt;}
.x27{left:238.620000pt;}
.x10{left:247.020000pt;}
.x6{left:264.036000pt;}
.xc{left:275.376000pt;}
.x14{left:284.436000pt;}
.x19{left:316.920000pt;}
.x15{left:325.789627pt;}
.x4{left:336.936000pt;}
.x8{left:387.240000pt;}
.x9{left:388.740000pt;}
.xe{left:390.384000pt;}
.x7{left:392.808000pt;}
.xd{left:395.124000pt;}
.xa{left:408.252000pt;}
.xf{left:411.396000pt;}
.x2f{left:521.609333pt;}
.x2e{left:523.692000pt;}
.x16{left:606.624619pt;}
.x3{left:685.200000pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  