
    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_d79ab443058e924162e11213.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_ca99b2a42ed99f6789640137.woff')format("woff");}.ff2{font-family:ff2;line-height:0.922363;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_e8a9b8c59944e04cd0ff069a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_e0bf3d4b817db36b81c44a04.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_2b7194b6b21d6b5a7140c761.woff')format("woff");}.ff5{font-family:ff5;line-height:0.922363;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_0ad015212b727b1b52c10b02.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_260e7da5ba21574c8ad66608.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_5b0fd0d69065bf845a295882.woff')format("woff");}.ff8{font-family:ff8;line-height:1.124023;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_08df154c93eb73eb4394f298.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_941f98002b6b59ca4efdc2f2.woff')format("woff");}.ffa{font-family:ffa;line-height:0.922363;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;}
.m2{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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-27.810000px;}
.v2{vertical-align:-18.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:15.138720px;}
.ls20{letter-spacing:-0.972000px;}
.ls4b{letter-spacing:-0.657360px;}
.ls33{letter-spacing:-0.594000px;}
.ls26{letter-spacing:-0.530640px;}
.ls27{letter-spacing:-0.482400px;}
.ls28{letter-spacing:-0.434160px;}
.ls1c{letter-spacing:-0.432000px;}
.ls21{letter-spacing:-0.378000px;}
.ls48{letter-spacing:-0.358560px;}
.ls15{letter-spacing:-0.331200px;}
.ls1b{letter-spacing:-0.324000px;}
.ls18{letter-spacing:-0.298800px;}
.ls24{letter-spacing:-0.289440px;}
.ls12{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.264960px;}
.ls22{letter-spacing:-0.239040px;}
.ls1a{letter-spacing:-0.216000px;}
.ls19{letter-spacing:-0.179280px;}
.ls1d{letter-spacing:-0.162000px;}
.ls14{letter-spacing:-0.132480px;}
.ls2d{letter-spacing:-0.119520px;}
.ls17{letter-spacing:-0.059760px;}
.ls36{letter-spacing:-0.054000px;}
.ls37{letter-spacing:-0.048240px;}
.ls11{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.011952px;}
.lsa{letter-spacing:0.054000px;}
.ls16{letter-spacing:0.059760px;}
.ls8{letter-spacing:0.072000px;}
.ls1e{letter-spacing:0.108000px;}
.ls2f{letter-spacing:0.119520px;}
.ls1f{letter-spacing:0.162000px;}
.lsf{letter-spacing:0.192960px;}
.ls4a{letter-spacing:0.209160px;}
.ls35{letter-spacing:0.216000px;}
.ls2c{letter-spacing:0.239040px;}
.ls25{letter-spacing:0.241200px;}
.ls49{letter-spacing:0.250992px;}
.lsd{letter-spacing:0.270000px;}
.lse{letter-spacing:0.281520px;}
.ls4{letter-spacing:0.298800px;}
.ls42{letter-spacing:0.310752px;}
.ls2b{letter-spacing:0.316728px;}
.ls2a{letter-spacing:0.319680px;}
.ls4d{letter-spacing:0.322704px;}
.ls6{letter-spacing:0.324000px;}
.ls44{letter-spacing:0.328680px;}
.ls4e{letter-spacing:0.334656px;}
.ls23{letter-spacing:0.358560px;}
.ls5{letter-spacing:0.360000px;}
.ls47{letter-spacing:0.370512px;}
.lsb{letter-spacing:0.378000px;}
.ls4c{letter-spacing:0.400392px;}
.ls3{letter-spacing:0.410688px;}
.ls4f{letter-spacing:0.412344px;}
.ls34{letter-spacing:0.432000px;}
.ls3a{letter-spacing:0.537840px;}
.ls30{letter-spacing:0.591624px;}
.ls1{letter-spacing:0.610200px;}
.ls3e{letter-spacing:0.717120px;}
.ls43{letter-spacing:0.776880px;}
.ls2{letter-spacing:0.991800px;}
.ls46{letter-spacing:1.003968px;}
.ls2e{letter-spacing:1.015920px;}
.ls9{letter-spacing:1.080000px;}
.ls29{letter-spacing:1.097280px;}
.ls41{letter-spacing:1.972080px;}
.ls45{letter-spacing:4.123440px;}
.ls3f{letter-spacing:4.840560px;}
.ls38{letter-spacing:6.991920px;}
.ls10{letter-spacing:7.380720px;}
.ls3c{letter-spacing:7.709040px;}
.ls3b{letter-spacing:8.426160px;}
.ls3d{letter-spacing:9.143280px;}
.lsc{letter-spacing:11.178000px;}
.ls40{letter-spacing:11.354400px;}
.ls39{letter-spacing:13.505760px;}
.ls7{letter-spacing:14.760000px;}
.ls0{letter-spacing:19.296000px;}
.ls50{letter-spacing:38.102976px;}
.ls32{letter-spacing:361.530000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,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,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws6f{word-spacing:-373.410000px;}
.ws9{word-spacing:-54.000000px;}
.ws13{word-spacing:-48.240000px;}
.ws2{word-spacing:-14.572800px;}
.ws3{word-spacing:-14.241600px;}
.ws85{word-spacing:-13.505760px;}
.ws87{word-spacing:-13.446000px;}
.ws50{word-spacing:-13.386240px;}
.ws8d{word-spacing:-13.266720px;}
.ws4f{word-spacing:-13.206960px;}
.ws6e{word-spacing:-13.159152px;}
.ws86{word-spacing:-13.147200px;}
.ws4{word-spacing:-13.087440px;}
.ws84{word-spacing:-13.027680px;}
.ws6{word-spacing:-12.967920px;}
.ws10{word-spacing:-12.908160px;}
.ws5{word-spacing:-12.848400px;}
.wsc3{word-spacing:-12.489840px;}
.wsc{word-spacing:-12.204000px;}
.ws8{word-spacing:-12.150000px;}
.ws74{word-spacing:-12.096000px;}
.wsb{word-spacing:-12.042000px;}
.ws72{word-spacing:-11.988000px;}
.wse{word-spacing:-11.880000px;}
.ws77{word-spacing:-11.826000px;}
.wsa{word-spacing:-11.610000px;}
.ws7{word-spacing:-11.556000px;}
.wsf{word-spacing:-11.502000px;}
.wsd{word-spacing:-11.448000px;}
.ws12{word-spacing:-10.805760px;}
.ws11{word-spacing:-10.612800px;}
.ws14{word-spacing:-10.130400px;}
.ws1{word-spacing:-9.828000px;}
.ws0{word-spacing:-9.558000px;}
.wsa3{word-spacing:-0.776880px;}
.ws7f{word-spacing:-0.771840px;}
.ws95{word-spacing:-0.717120px;}
.ws83{word-spacing:-0.702000px;}
.ws3c{word-spacing:-0.537840px;}
.ws17{word-spacing:-0.504000px;}
.ws80{word-spacing:-0.482400px;}
.ws6c{word-spacing:-0.418320px;}
.ws22{word-spacing:-0.378000px;}
.ws7b{word-spacing:-0.358560px;}
.ws34{word-spacing:-0.324000px;}
.ws8a{word-spacing:-0.298800px;}
.ws82{word-spacing:-0.270000px;}
.ws1a{word-spacing:-0.239040px;}
.ws8e{word-spacing:-0.179280px;}
.ws16{word-spacing:-0.144000px;}
.ws3f{word-spacing:-0.119520px;}
.ws19{word-spacing:-0.066240px;}
.ws8c{word-spacing:-0.059760px;}
.ws47{word-spacing:-0.048240px;}
.ws15{word-spacing:0.000000px;}
.ws21{word-spacing:0.054000px;}
.ws5d{word-spacing:0.059760px;}
.ws23{word-spacing:0.108000px;}
.ws1f{word-spacing:0.119520px;}
.ws69{word-spacing:0.179280px;}
.ws20{word-spacing:0.216000px;}
.ws8b{word-spacing:0.239040px;}
.ws18{word-spacing:0.264960px;}
.ws33{word-spacing:0.270000px;}
.ws7a{word-spacing:0.298800px;}
.ws81{word-spacing:0.324000px;}
.ws7d{word-spacing:0.378000px;}
.ws2a{word-spacing:0.432000px;}
.ws4e{word-spacing:0.434160px;}
.wsdd{word-spacing:0.478080px;}
.ws46{word-spacing:0.482400px;}
.ws48{word-spacing:0.530640px;}
.wsc7{word-spacing:0.537840px;}
.ws31{word-spacing:0.594000px;}
.ws1c{word-spacing:0.597600px;}
.ws1b{word-spacing:0.630000px;}
.ws1d{word-spacing:0.648000px;}
.ws51{word-spacing:0.657360px;}
.ws4d{word-spacing:0.675360px;}
.ws1e{word-spacing:0.717120px;}
.ws7c{word-spacing:0.896400px;}
.ws29{word-spacing:0.972000px;}
.wsa6{word-spacing:1.015920px;}
.wsc8{word-spacing:1.254960px;}
.ws58{word-spacing:1.314720px;}
.ws3b{word-spacing:1.613520px;}
.wsab{word-spacing:1.912320px;}
.wsd3{word-spacing:1.972080px;}
.ws5a{word-spacing:2.031840px;}
.ws39{word-spacing:2.330640px;}
.ws9d{word-spacing:2.629440px;}
.ws97{word-spacing:2.689200px;}
.ws3a{word-spacing:2.748960px;}
.ws28{word-spacing:2.916000px;}
.wsf8{word-spacing:2.928240px;}
.ws30{word-spacing:2.970000px;}
.ws5c{word-spacing:3.047760px;}
.ws2f{word-spacing:3.132000px;}
.wsb6{word-spacing:3.346560px;}
.ws54{word-spacing:3.466080px;}
.ws91{word-spacing:3.645360px;}
.ws7e{word-spacing:3.764880px;}
.ws56{word-spacing:3.824640px;}
.ws94{word-spacing:4.063680px;}
.wsef{word-spacing:4.123440px;}
.ws57{word-spacing:4.183200px;}
.wsea{word-spacing:4.422240px;}
.ws61{word-spacing:4.482000px;}
.ws96{word-spacing:4.601520px;}
.ws93{word-spacing:4.780800px;}
.ws78{word-spacing:4.900320px;}
.ws27{word-spacing:4.914000px;}
.ws26{word-spacing:4.968000px;}
.ws45{word-spacing:5.199120px;}
.wsc9{word-spacing:5.497920px;}
.ws44{word-spacing:5.617440px;}
.ws2e{word-spacing:5.670000px;}
.ws53{word-spacing:5.916240px;}
.ws4a{word-spacing:5.933520px;}
.wse8{word-spacing:6.035760px;}
.ws5b{word-spacing:6.334560px;}
.ws6a{word-spacing:6.633360px;}
.wsa9{word-spacing:6.752880px;}
.wsaa{word-spacing:6.932160px;}
.ws4c{word-spacing:6.946560px;}
.wsbb{word-spacing:6.991920px;}
.ws42{word-spacing:7.051680px;}
.ws49{word-spacing:7.139520px;}
.ws4b{word-spacing:7.187760px;}
.wsae{word-spacing:7.230960px;}
.ws79{word-spacing:7.350480px;}
.ws2b{word-spacing:7.452000px;}
.ws9a{word-spacing:7.649280px;}
.wsce{word-spacing:7.709040px;}
.ws43{word-spacing:7.768800px;}
.wscd{word-spacing:7.888320px;}
.ws3e{word-spacing:8.067600px;}
.wse3{word-spacing:8.187120px;}
.ws2d{word-spacing:8.424000px;}
.ws9c{word-spacing:8.426160px;}
.ws59{word-spacing:8.485920px;}
.ws2c{word-spacing:8.532000px;}
.wse2{word-spacing:8.724960px;}
.ws92{word-spacing:8.784720px;}
.ws8f{word-spacing:8.904240px;}
.ws52{word-spacing:9.203040px;}
.ws90{word-spacing:9.442080px;}
.ws63{word-spacing:9.501840px;}
.wse9{word-spacing:9.621360px;}
.wse6{word-spacing:9.800640px;}
.wsc4{word-spacing:9.860400px;}
.ws5e{word-spacing:9.920160px;}
.ws9b{word-spacing:10.218960px;}
.wsba{word-spacing:10.338480px;}
.ws41{word-spacing:10.637280px;}
.ws32{word-spacing:10.692000px;}
.ws3d{word-spacing:10.936080px;}
.ws36{word-spacing:11.070000px;}
.wsa8{word-spacing:11.354400px;}
.ws35{word-spacing:11.448000px;}
.ws89{word-spacing:11.712960px;}
.wsf9{word-spacing:11.832480px;}
.wsd5{word-spacing:12.071520px;}
.ws62{word-spacing:12.131280px;}
.ws9e{word-spacing:12.430080px;}
.wsb2{word-spacing:12.848400px;}
.wsac{word-spacing:13.147200px;}
.wsc6{word-spacing:13.266720px;}
.wse1{word-spacing:13.446000px;}
.ws68{word-spacing:13.565520px;}
.ws67{word-spacing:13.864320px;}
.wsc2{word-spacing:14.222880px;}
.ws40{word-spacing:14.282640px;}
.ws64{word-spacing:14.581440px;}
.ws25{word-spacing:14.634000px;}
.ws24{word-spacing:14.904000px;}
.ws88{word-spacing:14.999760px;}
.ws6d{word-spacing:15.716880px;}
.ws6b{word-spacing:16.015680px;}
.ws5f{word-spacing:16.434000px;}
.wsaf{word-spacing:16.732800px;}
.wse7{word-spacing:17.091360px;}
.ws60{word-spacing:17.151120px;}
.wsdc{word-spacing:17.748720px;}
.ws65{word-spacing:17.868240px;}
.wsc5{word-spacing:18.047520px;}
.wsb1{word-spacing:18.167040px;}
.wsad{word-spacing:18.585360px;}
.wsa7{word-spacing:18.884160px;}
.wsa0{word-spacing:19.302480px;}
.wsa2{word-spacing:19.900080px;}
.wsa5{word-spacing:20.437920px;}
.ws55{word-spacing:20.736720px;}
.ws99{word-spacing:21.035520px;}
.ws98{word-spacing:21.453840px;}
.ws9f{word-spacing:21.752640px;}
.wsb0{word-spacing:22.888080px;}
.ws66{word-spacing:23.186880px;}
.wsb5{word-spacing:23.605200px;}
.ws38{word-spacing:24.138000px;}
.wsa1{word-spacing:24.322320px;}
.wsa4{word-spacing:24.621120px;}
.ws37{word-spacing:28.350000px;}
.wsd4{word-spacing:30.836160px;}
.wsc0{word-spacing:31.792320px;}
.wsb3{word-spacing:32.569200px;}
.wsb4{word-spacing:32.987520px;}
.wsf6{word-spacing:33.286320px;}
.wsbf{word-spacing:35.437680px;}
.wsc1{word-spacing:35.736480px;}
.wsf4{word-spacing:37.589040px;}
.wsf7{word-spacing:37.887840px;}
.wsf5{word-spacing:38.007360px;}
.wsbd{word-spacing:47.808000px;}
.wsed{word-spacing:50.975280px;}
.wsb8{word-spacing:51.572880px;}
.wsbe{word-spacing:52.290000px;}
.wsbc{word-spacing:52.409520px;}
.wseb{word-spacing:54.859680px;}
.wsee{word-spacing:55.158480px;}
.wsec{word-spacing:55.278000px;}
.wsb9{word-spacing:55.875600px;}
.wsb7{word-spacing:55.935360px;}
.wsda{word-spacing:69.381360px;}
.ws76{word-spacing:73.806600px;}
.wsdb{word-spacing:73.923120px;}
.wsd9{word-spacing:74.042640px;}
.ws75{word-spacing:74.213400px;}
.wscb{word-spacing:93.882960px;}
.wsdf{word-spacing:96.034320px;}
.wsca{word-spacing:98.783280px;}
.wscc{word-spacing:99.082080px;}
.wse0{word-spacing:100.516320px;}
.wsde{word-spacing:100.635840px;}
.wse4{word-spacing:109.719360px;}
.wsf2{word-spacing:112.767120px;}
.wse5{word-spacing:114.201360px;}
.wsf3{word-spacing:117.129600px;}
.wsf1{word-spacing:117.249120px;}
.wsf0{word-spacing:117.428400px;}
.ws73{word-spacing:124.540200px;}
.wsd7{word-spacing:133.085520px;}
.wsd8{word-spacing:137.985840px;}
.wsd6{word-spacing:138.105360px;}
.wsd1{word-spacing:174.379680px;}
.wsd0{word-spacing:178.861680px;}
.wsd2{word-spacing:179.040960px;}
.wscf{word-spacing:179.160480px;}
.ws70{word-spacing:318.762000px;}
.ws71{word-spacing:349.650000px;}
._d{margin-left:-361.530000px;}
._a{margin-left:-7.320960px;}
._0{margin-left:-1.296000px;}
._4{width:1.728000px;}
._5{width:4.618800px;}
._9{width:6.376320px;}
._8{width:7.674480px;}
._10{width:9.442080px;}
._6{width:10.584000px;}
._c{width:15.955920px;}
._14{width:17.102376px;}
._13{width:18.429984px;}
._15{width:19.523592px;}
._7{width:27.864000px;}
._e{width:50.544000px;}
._f{width:103.194000px;}
._16{width:115.934400px;}
._12{width:178.967520px;}
._b{width:215.485920px;}
._1{width:284.832000px;}
._2{width:579.456000px;}
._11{width:848.160000px;}
._3{width:1071.936000px;}
.fc2{color:rgb(54,95,145);}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(89,89,89);}
.fc3{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:2.880000px;}
.fs9{font-size:36.000000px;}
.fs6{font-size:38.880000px;}
.fs8{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:90.000000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y12{bottom:3.060000px;}
.y112{bottom:3.420000px;}
.y3{bottom:7.200000px;}
.y3d{bottom:7.380000px;}
.y75{bottom:8.100000px;}
.ye{bottom:12.060000px;}
.yd7{bottom:17.031150px;}
.y119{bottom:20.880000px;}
.y12c{bottom:21.059850px;}
.y7{bottom:21.060000px;}
.yec{bottom:21.240000px;}
.yf0{bottom:21.420000px;}
.yd{bottom:28.260000px;}
.yfd{bottom:30.240000px;}
.y105{bottom:37.800000px;}
.y131{bottom:38.519850px;}
.y115{bottom:38.520000px;}
.y11b{bottom:38.700000px;}
.yf2{bottom:44.280000px;}
.y114{bottom:56.160000px;}
.y124{bottom:56.340000px;}
.y117{bottom:73.620000px;}
.y3b{bottom:87.825780px;}
.y1b9{bottom:88.761780px;}
.y1e6{bottom:90.552420px;}
.yea{bottom:91.577880px;}
.y15a{bottom:92.825460px;}
.y144{bottom:98.635860px;}
.y73{bottom:100.116180px;}
.y1b8{bottom:106.405920px;}
.ya6{bottom:106.493400px;}
.y204{bottom:107.995860px;}
.y1e5{bottom:108.017280px;}
.ye9{bottom:109.222020px;}
.y267{bottom:109.251000px;}
.y3a{bottom:110.691540px;}
.y143{bottom:116.280000px;}
.y18c{bottom:116.667540px;}
.y72{bottom:117.760320px;}
.y159{bottom:119.463480px;}
.ya5{bottom:124.137540px;}
.y203{bottom:125.640000px;}
.y1e4{bottom:125.661420px;}
.y266{bottom:126.895140px;}
.y128{bottom:129.240000px;}
.y1b7{bottom:132.864660px;}
.y18b{bottom:134.311680px;}
.y71{bottom:135.225180px;}
.ye8{bottom:135.860040px;}
.y158{bottom:137.107620px;}
.y39{bottom:142.734960px;}
.y1e3{bottom:143.305560px;}
.y234{bottom:143.815860px;}
.y265{bottom:144.360000px;}
.yee{bottom:145.980000px;}
.y127{bottom:148.680000px;}
.y1b6{bottom:150.508800px;}
.ya4{bottom:150.596280px;}
.y202{bottom:150.651000px;}
.y142{bottom:150.660000px;}
.y18a{bottom:151.776540px;}
.y70{bottom:152.869320px;}
.ye7{bottom:153.504180px;}
.y157{bottom:154.751760px;}
.y233{bottom:161.460000px;}
.y38{bottom:162.720000px;}
.y1b5{bottom:168.152940px;}
.y201{bottom:168.295140px;}
.y264{bottom:169.375860px;}
.y189{bottom:169.420680px;}
.y1e2{bottom:169.764300px;}
.ya3{bottom:177.234300px;}
.y16{bottom:179.280000px;}
.y6f{bottom:179.328060px;}
.ye6{bottom:179.962920px;}
.y156{bottom:181.210500px;}
.y1b4{bottom:185.617800px;}
.y200{bottom:185.760000px;}
.y232{bottom:186.475860px;}
.y141{bottom:186.480000px;}
.y263{bottom:187.020000px;}
.y188{bottom:187.064820px;}
.y1e1{bottom:187.408440px;}
.y15{bottom:195.120000px;}
.y6e{bottom:196.972200px;}
.ye5{bottom:197.607060px;}
.y1b3{bottom:203.261940px;}
.ya2{bottom:203.872320px;}
.y231{bottom:204.120000px;}
.y187{bottom:204.529680px;}
.y1e0{bottom:205.052580px;}
.y1ff{bottom:210.951000px;}
.y262{bottom:212.031720px;}
.y155{bottom:216.857340px;}
.y126{bottom:219.060000px;}
.y1b2{bottom:220.906080px;}
.y186{bottom:222.173820px;}
.ybf{bottom:223.505640px;}
.y6d{bottom:223.610220px;}
.ye4{bottom:224.245080px;}
.y1fe{bottom:228.595140px;}
.y230{bottom:229.135860px;}
.y261{bottom:229.675860px;}
.ya1{bottom:230.331060px;}
.y37{bottom:230.890500px;}
.y1df{bottom:231.511320px;}
.y185{bottom:239.817960px;}
.ybe{bottom:241.149780px;}
.ye3{bottom:241.889220px;}
.y1fd{bottom:246.060000px;}
.y22f{bottom:246.780000px;}
.y260{bottom:247.320000px;}
.y1b1{bottom:247.364820px;}
.y36{bottom:248.534640px;}
.ya0{bottom:256.969080px;}
.y184{bottom:257.462100px;}
.y140{bottom:257.580000px;}
.y6c{bottom:259.257060px;}
.ye2{bottom:259.354080px;}
.y35{bottom:265.999500px;}
.y1de{bottom:267.158160px;}
.ybd{bottom:267.787800px;}
.y1fc{bottom:271.080000px;}
.y22e{bottom:271.791720px;}
.y125{bottom:271.800000px;}
.y25f{bottom:272.335860px;}
.y183{bottom:274.926960px;}
.y6b{bottom:276.901200px;}
.ye1{bottom:276.998220px;}
.y1b0{bottom:283.011660px;}
.y9f{bottom:283.607100px;}
.y1dd{bottom:284.802300px;}
.y1fb{bottom:288.720000px;}
.y123{bottom:289.260000px;}
.y22d{bottom:289.435860px;}
.y13f{bottom:289.783800px;}
.y25e{bottom:289.980000px;}
.y182{bottom:292.571100px;}
.y34{bottom:292.637520px;}
.y6a{bottom:294.366060px;}
.ye0{bottom:294.642360px;}
.y1af{bottom:300.655800px;}
.y1dc{bottom:302.446440px;}
.ybc{bottom:303.255360px;}
.y22c{bottom:307.080000px;}
.y9e{bottom:310.065840px;}
.y33{bottom:310.281660px;}
.y69{bottom:312.010200px;}
.y1fa{bottom:313.731720px;}
.y25d{bottom:314.995860px;}
.y13e{bottom:316.421820px;}
.y1ae{bottom:318.299940px;}
.y181{bottom:319.029840px;}
.y1db{bottom:319.911300px;}
.ybb{bottom:320.899500px;}
.ydf{bottom:321.101100px;}
.y32{bottom:327.746520px;}
.y68{bottom:329.654340px;}
.y1f9{bottom:331.375860px;}
.y22b{bottom:332.095860px;}
.y25c{bottom:332.640000px;}
.y13d{bottom:334.065960px;}
.y1ad{bottom:335.764800px;}
.y9d{bottom:336.703860px;}
.yba{bottom:338.543640px;}
.yde{bottom:338.745240px;}
.y31{bottom:345.390660px;}
.y1da{bottom:346.549320px;}
.y1f8{bottom:349.020000px;}
.y22a{bottom:349.740000px;}
.y13c{bottom:351.710100px;}
.yc6{bottom:352.174500px;}
.y1ac{bottom:353.408940px;}
.y180{bottom:354.676680px;}
.y67{bottom:356.113080px;}
.ydd{bottom:356.389380px;}
.yd4{bottom:357.197700px;}
.y25b{bottom:357.651720px;}
.y122{bottom:359.640000px;}
.y30{bottom:363.034800px;}
.y9c{bottom:363.341880px;}
.y1d9{bottom:364.193460px;}
.yb9{bottom:365.002380px;}
.y13b{bottom:369.174960px;}
.y17f{bottom:372.320820px;}
.y66{bottom:373.757220px;}
.ydc{bottom:373.854240px;}
.y1f7{bottom:374.035860px;}
.y229{bottom:374.755860px;}
.y25a{bottom:375.295860px;}
.y1ab{bottom:379.867680px;}
.y2f{bottom:380.678940px;}
.y1d8{bottom:381.658320px;}
.yb8{bottom:382.646520px;}
.y9b{bottom:389.800620px;}
.y17e{bottom:389.964960px;}
.y1f6{bottom:391.680000px;}
.y228{bottom:392.400000px;}
.y259{bottom:392.940000px;}
.y13a{bottom:395.812980px;}
.y1aa{bottom:397.511820px;}
.y1d7{bottom:399.302460px;}
.y65{bottom:400.215960px;}
.ydb{bottom:400.492260px;}
.y2e{bottom:407.137680px;}
.y17d{bottom:407.429820px;}
.yb7{bottom:409.284540px;}
.y139{bottom:413.457120px;}
.y1a9{bottom:415.155960px;}
.y9a{bottom:416.438640px;}
.y1f5{bottom:416.605140px;}
.y1d6{bottom:416.946600px;}
.y227{bottom:417.420000px;}
.y258{bottom:417.951720px;}
.yda{bottom:418.136400px;}
.y2d{bottom:424.781820px;}
.y17c{bottom:425.073960px;}
.y64{bottom:426.853980px;}
.yb6{bottom:426.928680px;}
.y121{bottom:430.020000px;}
.y138{bottom:430.921980px;}
.y1a8{bottom:432.800100px;}
.y1f4{bottom:434.249280px;}
.y226{bottom:435.055140px;}
.y257{bottom:435.595860px;}
.y2c{bottom:442.425960px;}
.y17b{bottom:442.718100px;}
.y99{bottom:443.076660px;}
.y1d5{bottom:443.405340px;}
.yb5{bottom:444.393540px;}
.y63{bottom:444.498120px;}
.y225{bottom:452.520000px;}
.y256{bottom:453.240000px;}
.yd9{bottom:453.603960px;}
.y137{bottom:457.560000px;}
.y2b{bottom:459.890820px;}
.y17a{bottom:460.362240px;}
.y1f3{bottom:460.887300px;}
.y1d4{bottom:461.049480px;}
.y62{bottom:462.142260px;}
.y1a7{bottom:468.267660px;}
.y98{bottom:469.714680px;}
.yb4{bottom:471.031560px;}
.yd8{bottom:477.000000px;}
.y224{bottom:477.531720px;}
.y2a{bottom:477.534960px;}
.y179{bottom:477.827100px;}
.y255{bottom:478.255860px;}
.y1d3{bottom:478.693620px;}
.y61{bottom:479.607120px;}
.yef{bottom:479.880000px;}
.y120{bottom:482.760000px;}
.y1f2{bottom:487.346040px;}
.yb3{bottom:488.675700px;}
.y136{bottom:491.940000px;}
.y223{bottom:495.175860px;}
.y178{bottom:495.471240px;}
.y254{bottom:495.900000px;}
.y97{bottom:496.173420px;}
.y1d2{bottom:496.337760px;}
.y60{bottom:497.251260px;}
.y29{bottom:503.993700px;}
.y1f1{bottom:504.990180px;}
.yb2{bottom:506.319840px;}
.y109{bottom:507.789000px;}
.y222{bottom:512.820000px;}
.y177{bottom:513.115380px;}
.y253{bottom:520.911720px;}
.y28{bottom:521.637840px;}
.y1f0{bottom:522.634320px;}
.y1d1{bottom:522.796500px;}
.y96{bottom:522.811440px;}
.y108{bottom:523.624500px;}
.y5f{bottom:523.889280px;}
.y176{bottom:530.580240px;}
.y11f{bottom:535.500000px;}
.y221{bottom:537.831720px;}
.y252{bottom:538.555860px;}
.y27{bottom:539.281980px;}
.y107{bottom:539.460000px;}
.y1d0{bottom:540.440640px;}
.y5e{bottom:541.533420px;}
.yb1{bottom:541.787400px;}
.y135{bottom:544.680000px;}
.y175{bottom:548.224380px;}
.y1ef{bottom:549.093060px;}
.y95{bottom:549.449460px;}
.y220{bottom:555.475860px;}
.y251{bottom:556.200000px;}
.y1cf{bottom:558.084780px;}
.y5d{bottom:558.998280px;}
.y154{bottom:563.181480px;}
.yb0{bottom:565.004160px;}
.yc5{bottom:565.020000px;}
.y26{bottom:565.920000px;}
.y94{bottom:567.093600px;}
.y11e{bottom:570.780000px;}
.y21f{bottom:573.120000px;}
.y174{bottom:574.683120px;}
.y1ce{bottom:575.549640px;}
.y5c{bottom:576.642420px;}
.y153{bottom:580.646340px;}
.y250{bottom:581.211000px;}
.y25{bottom:583.209000px;}
.y93{bottom:584.558460px;}
.y1ee{bottom:584.739900px;}
.y1cd{bottom:593.193780px;}
.y5b{bottom:594.286560px;}
.y134{bottom:597.600000px;}
.y21e{bottom:598.131720px;}
.y24f{bottom:598.855140px;}
.y24{bottom:598.869000px;}
.y1ed{bottom:602.384040px;}
.y11d{bottom:605.880000px;}
.y173{bottom:610.329960px;}
.y92{bottom:611.196480px;}
.yd6{bottom:611.468700px;}
.y23{bottom:614.704500px;}
.y21d{bottom:615.775860px;}
.y152{bottom:616.293180px;}
.y24e{bottom:616.320000px;}
.y1cc{bottom:619.652520px;}
.y1ec{bottom:620.028180px;}
.y5a{bottom:620.745300px;}
.yed{bottom:620.820000px;}
.yd5{bottom:627.290700px;}
.y172{bottom:627.974100px;}
.y1a6{bottom:629.724240px;}
.y22{bottom:630.540000px;}
.y21c{bottom:633.420000px;}
.y100{bottom:635.949000px;}
.y1eb{bottom:637.493040px;}
.y103{bottom:637.749000px;}
.y59{bottom:638.389440px;}
.y151{bottom:639.509940px;}
.y24d{bottom:641.331720px;}
.y21{bottom:643.320000px;}
.ycc{bottom:644.322900px;}
.y14{bottom:644.940000px;}
.y171{bottom:645.618240px;}
.y91{bottom:646.664040px;}
.y1a5{bottom:647.368380px;}
.y133{bottom:650.340000px;}
.yff{bottom:651.784500px;}
.y102{bottom:653.584500px;}
.y1cb{bottom:655.299360px;}
.y58{bottom:656.033580px;}
.y20{bottom:656.820000px;}
.yca{bottom:658.403400px;}
.yc0{bottom:658.415550px;}
.y21b{bottom:658.431000px;}
.y11c{bottom:658.620000px;}
.y24c{bottom:658.975860px;}
.y170{bottom:663.083100px;}
.y1ea{bottom:664.131060px;}
.y90{bottom:664.308180px;}
.y1a4{bottom:665.012520px;}
.yfe{bottom:667.620000px;}
.yc3{bottom:668.837550px;}
.y101{bottom:669.420000px;}
.y1ca{bottom:672.943500px;}
.yc9{bottom:674.036400px;}
.y21a{bottom:676.075140px;}
.y24b{bottom:676.620000px;}
.ycd{bottom:679.058400px;}
.y16f{bottom:680.727240px;}
.y1f{bottom:681.696000px;}
.y8f{bottom:681.952320px;}
.y1a3{bottom:682.477380px;}
.y57{bottom:682.492320px;}
.yc4{bottom:689.681550px;}
.y1c9{bottom:690.587640px;}
.y219{bottom:693.540000px;}
.y11a{bottom:693.720000px;}
.y1e{bottom:697.531500px;}
.y16e{bottom:698.371380px;}
.y8e{bottom:699.596460px;}
.y1e9{bottom:699.777900px;}
.y1a2{bottom:700.121520px;}
.y56{bottom:700.136460px;}
.y24a{bottom:701.631720px;}
.y1c8{bottom:708.052500px;}
.y1d{bottom:713.367000px;}
.yce{bottom:713.793900px;}
.y16d{bottom:716.015520px;}
.yc7{bottom:717.465900px;}
.y55{bottom:717.780600px;}
.y218{bottom:718.731000px;}
.y249{bottom:719.275860px;}
.y132{bottom:720.540000px;}
.y8d{bottom:726.055200px;}
.y1e8{bottom:726.236640px;}
.y1a1{bottom:726.759540px;}
.y1c{bottom:729.202500px;}
.y16c{bottom:733.480380px;}
.y1c7{bottom:734.690520px;}
.y217{bottom:736.375140px;}
.y248{bottom:736.920000px;}
.y8c{bottom:743.699340px;}
.y54{bottom:744.239340px;}
.y1a0{bottom:744.403680px;}
.y1b{bottom:745.038000px;}
.y116{bottom:746.640000px;}
.ycf{bottom:748.529400px;}
.yc1{bottom:748.730550px;}
.yc8{bottom:750.459900px;}
.y16b{bottom:751.124520px;}
.y1c6{bottom:752.334660px;}
.yfc{bottom:753.480000px;}
.y216{bottom:753.840000px;}
.y1a{bottom:760.873500px;}
.y8b{bottom:761.343480px;}
.y19f{bottom:761.868540px;}
.y53{bottom:761.883480px;}
.y247{bottom:761.931720px;}
.yfb{bottom:769.329000px;}
.y1c5{bottom:769.978800px;}
.y130{bottom:773.460000px;}
.y19{bottom:776.709000px;}
.y16a{bottom:777.583260px;}
.y215{bottom:778.855860px;}
.y19e{bottom:779.512680px;}
.y52{bottom:779.527620px;}
.y246{bottom:779.575860px;}
.yd0{bottom:783.264900px;}
.y118{bottom:785.159850px;}
.yfa{bottom:785.164500px;}
.y1c4{bottom:787.443660px;}
.y8a{bottom:787.802220px;}
.y18{bottom:792.544500px;}
.y214{bottom:796.500000px;}
.y19d{bottom:797.156820px;}
.y51{bottom:797.171760px;}
.y245{bottom:797.220000px;}
.yf9{bottom:801.000000px;}
.y1c3{bottom:805.087800px;}
.y89{bottom:805.446360px;}
.y17{bottom:808.380000px;}
.y169{bottom:813.230100px;}
.y50{bottom:814.636620px;}
.yd1{bottom:818.000400px;}
.y213{bottom:821.511720px;}
.y244{bottom:822.231000px;}
.y88{bottom:823.090500px;}
.y19c{bottom:823.615560px;}
.ycb{bottom:825.128400px;}
.y168{bottom:830.874240px;}
.y1c2{bottom:831.546540px;}
.y113{bottom:834.480000px;}
.y212{bottom:839.155860px;}
.y243{bottom:839.875140px;}
.y13{bottom:840.060000px;}
.y87{bottom:840.734640px;}
.y4f{bottom:841.274640px;}
.y12f{bottom:843.660000px;}
.y167{bottom:848.518380px;}
.y1c1{bottom:849.190680px;}
.y150{bottom:849.745620px;}
.yc2{bottom:851.195550px;}
.yd2{bottom:852.735900px;}
.y211{bottom:856.800000px;}
.y242{bottom:857.340000px;}
.y4e{bottom:858.918780px;}
.y19b{bottom:859.262400px;}
.y11{bottom:863.280000px;}
.y166{bottom:865.983240px;}
.y1c0{bottom:866.834820px;}
.y86{bottom:867.193380px;}
.y14f{bottom:867.389760px;}
.y4d{bottom:876.383640px;}
.y19a{bottom:876.906540px;}
.y210{bottom:881.811720px;}
.y241{bottom:882.351720px;}
.y1bf{bottom:884.478960px;}
.y85{bottom:884.837520px;}
.y14e{bottom:885.033900px;}
.yd3{bottom:887.471400px;}
.y104{bottom:889.200000px;}
.y165{bottom:892.621260px;}
.y1e7{bottom:894.027780px;}
.y199{bottom:894.371400px;}
.y12e{bottom:896.400000px;}
.yc{bottom:897.120000px;}
.y20f{bottom:899.455860px;}
.y240{bottom:899.995860px;}
.y1be{bottom:901.943820px;}
.y84{bottom:902.481660px;}
.y14d{bottom:902.678040px;}
.y4c{bottom:903.021660px;}
.y111{bottom:905.580000px;}
.yf{bottom:909.180000px;}
.y106{bottom:911.160000px;}
.y198{bottom:912.015540px;}
.y20e{bottom:917.100000px;}
.y23f{bottom:917.640000px;}
.yf8{bottom:918.540000px;}
.y164{bottom:919.259280px;}
.y83{bottom:919.946520px;}
.y4b{bottom:920.665800px;}
.yb{bottom:925.375320px;}
.y10{bottom:925.380000px;}
.y1bd{bottom:928.581840px;}
.y14c{bottom:929.136780px;}
.y197{bottom:929.659680px;}
.y12d{bottom:931.680000px;}
.y163{bottom:936.903420px;}
.y4a{bottom:938.309940px;}
.y20d{bottom:942.115860px;}
.y23e{bottom:942.651720px;}
.y82{bottom:946.584540px;}
.ya{bottom:946.620000px;}
.y14b{bottom:946.780920px;}
.y196{bottom:947.303820px;}
.y110{bottom:955.416240px;}
.yaf{bottom:955.431180px;}
.y49{bottom:955.774800px;}
.y20c{bottom:959.760000px;}
.y23d{bottom:960.295860px;}
.y162{bottom:963.362160px;}
.y81{bottom:964.228680px;}
.y14a{bottom:964.425060px;}
.y195{bottom:964.768680px;}
.y23c{bottom:977.940000px;}
.y161{bottom:981.006300px;}
.y80{bottom:981.872820px;}
.y10f{bottom:981.874980px;}
.yae{bottom:981.889920px;}
.y48{bottom:982.412820px;}
.y9{bottom:983.880000px;}
.y12b{bottom:984.420000px;}
.y20b{bottom:984.771720px;}
.yeb{bottom:988.560000px;}
.y149{bottom:990.883800px;}
.y194{bottom:991.406700px;}
.y7f{bottom:999.337680px;}
.y10e{bottom:999.519120px;}
.yad{bottom:999.534060px;}
.y47{bottom:1000.056960px;}
.y20a{bottom:1002.415860px;}
.y23b{bottom:1002.946860px;}
.y160{bottom:1007.465040px;}
.y148{bottom:1008.527940px;}
.y193{bottom:1009.050840px;}
.y8{bottom:1010.340000px;}
.y7e{bottom:1016.981820px;}
.y10d{bottom:1017.163260px;}
.yac{bottom:1017.178200px;}
.y46{bottom:1017.521820px;}
.yf1{bottom:1018.800000px;}
.y209{bottom:1020.060000px;}
.y23a{bottom:1020.591000px;}
.y15f{bottom:1025.109180px;}
.y1bc{bottom:1025.975700px;}
.y147{bottom:1026.172080px;}
.y192{bottom:1026.515700px;}
.yf7{bottom:1033.209000px;}
.yf4{bottom:1034.641260px;}
.y10c{bottom:1034.807400px;}
.yab{bottom:1034.822340px;}
.y45{bottom:1035.165960px;}
.y12a{bottom:1037.160000px;}
.y239{bottom:1038.235140px;}
.y7d{bottom:1043.440560px;}
.y1bb{bottom:1043.619840px;}
.y208{bottom:1045.066860px;}
.yf3{bottom:1048.860000px;}
.yf6{bottom:1049.044500px;}
.y2{bottom:1050.300000px;}
.y15e{bottom:1051.747200px;}
.yaa{bottom:1052.287200px;}
.y146{bottom:1052.630820px;}
.y191{bottom:1053.153720px;}
.y238{bottom:1055.700000px;}
.y7c{bottom:1061.084700px;}
.y10b{bottom:1061.266140px;}
.y44{bottom:1061.624700px;}
.y207{bottom:1062.711000px;}
.yf5{bottom:1064.880000px;}
.y145{bottom:1070.274960px;}
.y190{bottom:1070.797860px;}
.y15d{bottom:1078.205940px;}
.y7b{bottom:1078.728840px;}
.ya9{bottom:1078.925220px;}
.y43{bottom:1079.268840px;}
.y206{bottom:1080.175860px;}
.y237{bottom:1080.715860px;}
.y18f{bottom:1088.262720px;}
.y6{bottom:1089.000000px;}
.y7a{bottom:1096.372980px;}
.y42{bottom:1096.912980px;}
.y205{bottom:1097.820000px;}
.y236{bottom:1098.360000px;}
.y15c{bottom:1104.843960px;}
.ya8{bottom:1105.383960px;}
.y18e{bottom:1105.906860px;}
.y129{bottom:1108.260000px;}
.y79{bottom:1113.837840px;}
.y41{bottom:1114.557120px;}
.y5{bottom:1115.820000px;}
.y1ba{bottom:1122.831720px;}
.y235{bottom:1123.371720px;}
.y18d{bottom:1123.551000px;}
.y15b{bottom:1131.481980px;}
.ya7{bottom:1132.021980px;}
.y4{bottom:1137.060000px;}
.y78{bottom:1140.475860px;}
.y40{bottom:1141.015860px;}
.y10a{bottom:1148.580000px;}
.y77{bottom:1158.120000px;}
.y3f{bottom:1158.660000px;}
.y76{bottom:1174.320000px;}
.y3e{bottom:1174.860000px;}
.y74{bottom:1184.220000px;}
.y3c{bottom:1184.940000px;}
.y1{bottom:1194.120000px;}
.h11{height:2.027813px;}
.h26{height:17.461500px;}
.h29{height:17.640000px;}
.h15{height:24.120000px;}
.h18{height:24.840000px;}
.h17{height:25.347656px;}
.hd{height:33.838500px;}
.h12{height:33.965859px;}
.h14{height:34.743164px;}
.h13{height:34.860937px;}
.h1f{height:35.100000px;}
.h24{height:35.280000px;}
.hc{height:38.021484px;}
.he{height:38.891602px;}
.h7{height:42.077109px;}
.h9{height:43.040039px;}
.ha{height:43.140673px;}
.hb{height:46.081500px;}
.h6{height:47.707031px;}
.h4{height:50.695312px;}
.h27{height:52.738500px;}
.h23{height:52.740000px;}
.h22{height:52.920000px;}
.h2{height:54.000000px;}
.h8{height:64.819336px;}
.h16{height:66.595781px;}
.h1d{height:69.120000px;}
.h1e{height:69.841500px;}
.h28{height:70.200000px;}
.h25{height:70.380000px;}
.h20{height:70.381500px;}
.h2a{height:71.043503px;}
.h5{height:71.820000px;}
.h21{height:87.838500px;}
.h1c{height:95.220000px;}
.h1a{height:119.698500px;}
.h3{height:126.900000px;}
.hf{height:216.900000px;}
.h10{height:253.800000px;}
.h1b{height:349.380000px;}
.h19{height:378.000000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.wb{width:19.800000px;}
.w1d{width:29.700000px;}
.w1e{width:36.180000px;}
.w17{width:42.660000px;}
.we{width:42.841500px;}
.w15{width:49.320000px;}
.w18{width:52.920000px;}
.wf{width:54.180000px;}
.w16{width:57.240000px;}
.w19{width:67.140000px;}
.w1c{width:67.680000px;}
.w14{width:74.340000px;}
.w11{width:109.260000px;}
.w10{width:113.220000px;}
.wc{width:129.781500px;}
.w1b{width:134.100000px;}
.w2{width:158.760000px;}
.w13{width:180.900000px;}
.wd{width:191.880000px;}
.w6{width:244.440000px;}
.w5{width:254.880000px;}
.w4{width:274.140000px;}
.w12{width:276.120000px;}
.w1a{width:312.120000px;}
.w3{width:615.781500px;}
.wa{width:648.000000px;}
.w7{width:757.261500px;}
.w9{width:761.940000px;}
.w8{width:773.461500px;}
.w1{width:892.500000px;}
.w0{width:892.620000px;}
.x0{left:0.000000px;}
.x45{left:5.400000px;}
.x1a{left:8.100000px;}
.x32{left:9.817350px;}
.x3b{left:10.980000px;}
.x52{left:12.960000px;}
.x39{left:14.760000px;}
.x4a{left:17.280000px;}
.x17{left:43.740000px;}
.x13{left:48.960000px;}
.xc{left:55.800000px;}
.xe{left:58.500000px;}
.x54{left:62.460000px;}
.x1{left:63.900000px;}
.x8{left:65.880000px;}
.x1e{left:68.919840px;}
.x19{left:72.000000px;}
.x62{left:95.722200px;}
.x4d{left:100.800000px;}
.xb{left:103.317840px;}
.x55{left:105.120000px;}
.x28{left:122.220000px;}
.x2{left:129.960000px;}
.x31{left:132.054600px;}
.x30{left:139.533600px;}
.x2f{left:147.012600px;}
.x18{left:155.520000px;}
.x56{left:158.040000px;}
.x5d{left:167.374440px;}
.x34{left:180.278550px;}
.x33{left:182.978550px;}
.x21{left:190.120050px;}
.x16{left:204.840000px;}
.x12{left:210.600000px;}
.x24{left:211.814550px;}
.x5e{left:217.064880px;}
.x6{left:223.740000px;}
.x57{left:225.180000px;}
.xd{left:226.620000px;}
.x2a{left:229.713600px;}
.x7{left:233.460000px;}
.x3{left:255.060000px;}
.x38{left:260.018550px;}
.x60{left:262.108980px;}
.x4c{left:267.300000px;}
.x35{left:269.635050px;}
.xf{left:271.260000px;}
.x1c{left:279.900000px;}
.x22{left:284.188050px;}
.x3a{left:299.880000px;}
.x25{left:302.116050px;}
.x42{left:311.400000px;}
.x4b{left:316.980000px;}
.x3d{left:321.292260px;}
.x3c{left:325.260000px;}
.x2b{left:327.575100px;}
.x11{left:329.940000px;}
.x43{left:340.911000px;}
.x49{left:344.700000px;}
.x9{left:350.100000px;}
.x53{left:364.313520px;}
.x20{left:365.747760px;}
.x10{left:374.040000px;}
.x4e{left:377.460000px;}
.x58{left:383.940000px;}
.x1d{left:386.460000px;}
.x1b{left:402.300000px;}
.x61{left:404.935380px;}
.x26{left:407.537550px;}
.x4{left:419.400000px;}
.x5f{left:421.010820px;}
.x2c{left:429.216600px;}
.xa{left:446.400000px;}
.x5{left:477.360000px;}
.x27{left:501.605550px;}
.x44{left:520.920000px;}
.x2d{left:527.078100px;}
.x3f{left:532.980000px;}
.x46{left:536.220000px;}
.x41{left:544.500000px;}
.x3e{left:548.640000px;}
.x47{left:568.269000px;}
.x29{left:571.303650px;}
.x15{left:584.820000px;}
.x36{left:587.222550px;}
.x40{left:595.080000px;}
.x48{left:598.320000px;}
.x14{left:624.420000px;}
.x5c{left:642.571020px;}
.x4f{left:653.580000px;}
.x23{left:675.620550px;}
.x37{left:684.625050px;}
.x59{left:696.060000px;}
.x2e{left:719.007600px;}
.x50{left:727.920000px;}
.x5a{left:763.740000px;}
.x1f{left:770.382720px;}
.x51{left:777.240000px;}
.x5b{left:793.440000px;}
@media print{
.v3{vertical-align:-24.720000pt;}
.v2{vertical-align:-16.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:13.456640pt;}
.ls20{letter-spacing:-0.864000pt;}
.ls4b{letter-spacing:-0.584320pt;}
.ls33{letter-spacing:-0.528000pt;}
.ls26{letter-spacing:-0.471680pt;}
.ls27{letter-spacing:-0.428800pt;}
.ls28{letter-spacing:-0.385920pt;}
.ls1c{letter-spacing:-0.384000pt;}
.ls21{letter-spacing:-0.336000pt;}
.ls48{letter-spacing:-0.318720pt;}
.ls15{letter-spacing:-0.294400pt;}
.ls1b{letter-spacing:-0.288000pt;}
.ls18{letter-spacing:-0.265600pt;}
.ls24{letter-spacing:-0.257280pt;}
.ls12{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.235520pt;}
.ls22{letter-spacing:-0.212480pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls19{letter-spacing:-0.159360pt;}
.ls1d{letter-spacing:-0.144000pt;}
.ls14{letter-spacing:-0.117760pt;}
.ls2d{letter-spacing:-0.106240pt;}
.ls17{letter-spacing:-0.053120pt;}
.ls36{letter-spacing:-0.048000pt;}
.ls37{letter-spacing:-0.042880pt;}
.ls11{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.010624pt;}
.lsa{letter-spacing:0.048000pt;}
.ls16{letter-spacing:0.053120pt;}
.ls8{letter-spacing:0.064000pt;}
.ls1e{letter-spacing:0.096000pt;}
.ls2f{letter-spacing:0.106240pt;}
.ls1f{letter-spacing:0.144000pt;}
.lsf{letter-spacing:0.171520pt;}
.ls4a{letter-spacing:0.185920pt;}
.ls35{letter-spacing:0.192000pt;}
.ls2c{letter-spacing:0.212480pt;}
.ls25{letter-spacing:0.214400pt;}
.ls49{letter-spacing:0.223104pt;}
.lsd{letter-spacing:0.240000pt;}
.lse{letter-spacing:0.250240pt;}
.ls4{letter-spacing:0.265600pt;}
.ls42{letter-spacing:0.276224pt;}
.ls2b{letter-spacing:0.281536pt;}
.ls2a{letter-spacing:0.284160pt;}
.ls4d{letter-spacing:0.286848pt;}
.ls6{letter-spacing:0.288000pt;}
.ls44{letter-spacing:0.292160pt;}
.ls4e{letter-spacing:0.297472pt;}
.ls23{letter-spacing:0.318720pt;}
.ls5{letter-spacing:0.320000pt;}
.ls47{letter-spacing:0.329344pt;}
.lsb{letter-spacing:0.336000pt;}
.ls4c{letter-spacing:0.355904pt;}
.ls3{letter-spacing:0.365056pt;}
.ls4f{letter-spacing:0.366528pt;}
.ls34{letter-spacing:0.384000pt;}
.ls3a{letter-spacing:0.478080pt;}
.ls30{letter-spacing:0.525888pt;}
.ls1{letter-spacing:0.542400pt;}
.ls3e{letter-spacing:0.637440pt;}
.ls43{letter-spacing:0.690560pt;}
.ls2{letter-spacing:0.881600pt;}
.ls46{letter-spacing:0.892416pt;}
.ls2e{letter-spacing:0.903040pt;}
.ls9{letter-spacing:0.960000pt;}
.ls29{letter-spacing:0.975360pt;}
.ls41{letter-spacing:1.752960pt;}
.ls45{letter-spacing:3.665280pt;}
.ls3f{letter-spacing:4.302720pt;}
.ls38{letter-spacing:6.215040pt;}
.ls10{letter-spacing:6.560640pt;}
.ls3c{letter-spacing:6.852480pt;}
.ls3b{letter-spacing:7.489920pt;}
.ls3d{letter-spacing:8.127360pt;}
.lsc{letter-spacing:9.936000pt;}
.ls40{letter-spacing:10.092800pt;}
.ls39{letter-spacing:12.005120pt;}
.ls7{letter-spacing:13.120000pt;}
.ls0{letter-spacing:17.152000pt;}
.ls50{letter-spacing:33.869312pt;}
.ls32{letter-spacing:321.360000pt;}
.ws6f{word-spacing:-331.920000pt;}
.ws9{word-spacing:-48.000000pt;}
.ws13{word-spacing:-42.880000pt;}
.ws2{word-spacing:-12.953600pt;}
.ws3{word-spacing:-12.659200pt;}
.ws85{word-spacing:-12.005120pt;}
.ws87{word-spacing:-11.952000pt;}
.ws50{word-spacing:-11.898880pt;}
.ws8d{word-spacing:-11.792640pt;}
.ws4f{word-spacing:-11.739520pt;}
.ws6e{word-spacing:-11.697024pt;}
.ws86{word-spacing:-11.686400pt;}
.ws4{word-spacing:-11.633280pt;}
.ws84{word-spacing:-11.580160pt;}
.ws6{word-spacing:-11.527040pt;}
.ws10{word-spacing:-11.473920pt;}
.ws5{word-spacing:-11.420800pt;}
.wsc3{word-spacing:-11.102080pt;}
.wsc{word-spacing:-10.848000pt;}
.ws8{word-spacing:-10.800000pt;}
.ws74{word-spacing:-10.752000pt;}
.wsb{word-spacing:-10.704000pt;}
.ws72{word-spacing:-10.656000pt;}
.wse{word-spacing:-10.560000pt;}
.ws77{word-spacing:-10.512000pt;}
.wsa{word-spacing:-10.320000pt;}
.ws7{word-spacing:-10.272000pt;}
.wsf{word-spacing:-10.224000pt;}
.wsd{word-spacing:-10.176000pt;}
.ws12{word-spacing:-9.605120pt;}
.ws11{word-spacing:-9.433600pt;}
.ws14{word-spacing:-9.004800pt;}
.ws1{word-spacing:-8.736000pt;}
.ws0{word-spacing:-8.496000pt;}
.wsa3{word-spacing:-0.690560pt;}
.ws7f{word-spacing:-0.686080pt;}
.ws95{word-spacing:-0.637440pt;}
.ws83{word-spacing:-0.624000pt;}
.ws3c{word-spacing:-0.478080pt;}
.ws17{word-spacing:-0.448000pt;}
.ws80{word-spacing:-0.428800pt;}
.ws6c{word-spacing:-0.371840pt;}
.ws22{word-spacing:-0.336000pt;}
.ws7b{word-spacing:-0.318720pt;}
.ws34{word-spacing:-0.288000pt;}
.ws8a{word-spacing:-0.265600pt;}
.ws82{word-spacing:-0.240000pt;}
.ws1a{word-spacing:-0.212480pt;}
.ws8e{word-spacing:-0.159360pt;}
.ws16{word-spacing:-0.128000pt;}
.ws3f{word-spacing:-0.106240pt;}
.ws19{word-spacing:-0.058880pt;}
.ws8c{word-spacing:-0.053120pt;}
.ws47{word-spacing:-0.042880pt;}
.ws15{word-spacing:0.000000pt;}
.ws21{word-spacing:0.048000pt;}
.ws5d{word-spacing:0.053120pt;}
.ws23{word-spacing:0.096000pt;}
.ws1f{word-spacing:0.106240pt;}
.ws69{word-spacing:0.159360pt;}
.ws20{word-spacing:0.192000pt;}
.ws8b{word-spacing:0.212480pt;}
.ws18{word-spacing:0.235520pt;}
.ws33{word-spacing:0.240000pt;}
.ws7a{word-spacing:0.265600pt;}
.ws81{word-spacing:0.288000pt;}
.ws7d{word-spacing:0.336000pt;}
.ws2a{word-spacing:0.384000pt;}
.ws4e{word-spacing:0.385920pt;}
.wsdd{word-spacing:0.424960pt;}
.ws46{word-spacing:0.428800pt;}
.ws48{word-spacing:0.471680pt;}
.wsc7{word-spacing:0.478080pt;}
.ws31{word-spacing:0.528000pt;}
.ws1c{word-spacing:0.531200pt;}
.ws1b{word-spacing:0.560000pt;}
.ws1d{word-spacing:0.576000pt;}
.ws51{word-spacing:0.584320pt;}
.ws4d{word-spacing:0.600320pt;}
.ws1e{word-spacing:0.637440pt;}
.ws7c{word-spacing:0.796800pt;}
.ws29{word-spacing:0.864000pt;}
.wsa6{word-spacing:0.903040pt;}
.wsc8{word-spacing:1.115520pt;}
.ws58{word-spacing:1.168640pt;}
.ws3b{word-spacing:1.434240pt;}
.wsab{word-spacing:1.699840pt;}
.wsd3{word-spacing:1.752960pt;}
.ws5a{word-spacing:1.806080pt;}
.ws39{word-spacing:2.071680pt;}
.ws9d{word-spacing:2.337280pt;}
.ws97{word-spacing:2.390400pt;}
.ws3a{word-spacing:2.443520pt;}
.ws28{word-spacing:2.592000pt;}
.wsf8{word-spacing:2.602880pt;}
.ws30{word-spacing:2.640000pt;}
.ws5c{word-spacing:2.709120pt;}
.ws2f{word-spacing:2.784000pt;}
.wsb6{word-spacing:2.974720pt;}
.ws54{word-spacing:3.080960pt;}
.ws91{word-spacing:3.240320pt;}
.ws7e{word-spacing:3.346560pt;}
.ws56{word-spacing:3.399680pt;}
.ws94{word-spacing:3.612160pt;}
.wsef{word-spacing:3.665280pt;}
.ws57{word-spacing:3.718400pt;}
.wsea{word-spacing:3.930880pt;}
.ws61{word-spacing:3.984000pt;}
.ws96{word-spacing:4.090240pt;}
.ws93{word-spacing:4.249600pt;}
.ws78{word-spacing:4.355840pt;}
.ws27{word-spacing:4.368000pt;}
.ws26{word-spacing:4.416000pt;}
.ws45{word-spacing:4.621440pt;}
.wsc9{word-spacing:4.887040pt;}
.ws44{word-spacing:4.993280pt;}
.ws2e{word-spacing:5.040000pt;}
.ws53{word-spacing:5.258880pt;}
.ws4a{word-spacing:5.274240pt;}
.wse8{word-spacing:5.365120pt;}
.ws5b{word-spacing:5.630720pt;}
.ws6a{word-spacing:5.896320pt;}
.wsa9{word-spacing:6.002560pt;}
.wsaa{word-spacing:6.161920pt;}
.ws4c{word-spacing:6.174720pt;}
.wsbb{word-spacing:6.215040pt;}
.ws42{word-spacing:6.268160pt;}
.ws49{word-spacing:6.346240pt;}
.ws4b{word-spacing:6.389120pt;}
.wsae{word-spacing:6.427520pt;}
.ws79{word-spacing:6.533760pt;}
.ws2b{word-spacing:6.624000pt;}
.ws9a{word-spacing:6.799360pt;}
.wsce{word-spacing:6.852480pt;}
.ws43{word-spacing:6.905600pt;}
.wscd{word-spacing:7.011840pt;}
.ws3e{word-spacing:7.171200pt;}
.wse3{word-spacing:7.277440pt;}
.ws2d{word-spacing:7.488000pt;}
.ws9c{word-spacing:7.489920pt;}
.ws59{word-spacing:7.543040pt;}
.ws2c{word-spacing:7.584000pt;}
.wse2{word-spacing:7.755520pt;}
.ws92{word-spacing:7.808640pt;}
.ws8f{word-spacing:7.914880pt;}
.ws52{word-spacing:8.180480pt;}
.ws90{word-spacing:8.392960pt;}
.ws63{word-spacing:8.446080pt;}
.wse9{word-spacing:8.552320pt;}
.wse6{word-spacing:8.711680pt;}
.wsc4{word-spacing:8.764800pt;}
.ws5e{word-spacing:8.817920pt;}
.ws9b{word-spacing:9.083520pt;}
.wsba{word-spacing:9.189760pt;}
.ws41{word-spacing:9.455360pt;}
.ws32{word-spacing:9.504000pt;}
.ws3d{word-spacing:9.720960pt;}
.ws36{word-spacing:9.840000pt;}
.wsa8{word-spacing:10.092800pt;}
.ws35{word-spacing:10.176000pt;}
.ws89{word-spacing:10.411520pt;}
.wsf9{word-spacing:10.517760pt;}
.wsd5{word-spacing:10.730240pt;}
.ws62{word-spacing:10.783360pt;}
.ws9e{word-spacing:11.048960pt;}
.wsb2{word-spacing:11.420800pt;}
.wsac{word-spacing:11.686400pt;}
.wsc6{word-spacing:11.792640pt;}
.wse1{word-spacing:11.952000pt;}
.ws68{word-spacing:12.058240pt;}
.ws67{word-spacing:12.323840pt;}
.wsc2{word-spacing:12.642560pt;}
.ws40{word-spacing:12.695680pt;}
.ws64{word-spacing:12.961280pt;}
.ws25{word-spacing:13.008000pt;}
.ws24{word-spacing:13.248000pt;}
.ws88{word-spacing:13.333120pt;}
.ws6d{word-spacing:13.970560pt;}
.ws6b{word-spacing:14.236160pt;}
.ws5f{word-spacing:14.608000pt;}
.wsaf{word-spacing:14.873600pt;}
.wse7{word-spacing:15.192320pt;}
.ws60{word-spacing:15.245440pt;}
.wsdc{word-spacing:15.776640pt;}
.ws65{word-spacing:15.882880pt;}
.wsc5{word-spacing:16.042240pt;}
.wsb1{word-spacing:16.148480pt;}
.wsad{word-spacing:16.520320pt;}
.wsa7{word-spacing:16.785920pt;}
.wsa0{word-spacing:17.157760pt;}
.wsa2{word-spacing:17.688960pt;}
.wsa5{word-spacing:18.167040pt;}
.ws55{word-spacing:18.432640pt;}
.ws99{word-spacing:18.698240pt;}
.ws98{word-spacing:19.070080pt;}
.ws9f{word-spacing:19.335680pt;}
.wsb0{word-spacing:20.344960pt;}
.ws66{word-spacing:20.610560pt;}
.wsb5{word-spacing:20.982400pt;}
.ws38{word-spacing:21.456000pt;}
.wsa1{word-spacing:21.619840pt;}
.wsa4{word-spacing:21.885440pt;}
.ws37{word-spacing:25.200000pt;}
.wsd4{word-spacing:27.409920pt;}
.wsc0{word-spacing:28.259840pt;}
.wsb3{word-spacing:28.950400pt;}
.wsb4{word-spacing:29.322240pt;}
.wsf6{word-spacing:29.587840pt;}
.wsbf{word-spacing:31.500160pt;}
.wsc1{word-spacing:31.765760pt;}
.wsf4{word-spacing:33.412480pt;}
.wsf7{word-spacing:33.678080pt;}
.wsf5{word-spacing:33.784320pt;}
.wsbd{word-spacing:42.496000pt;}
.wsed{word-spacing:45.311360pt;}
.wsb8{word-spacing:45.842560pt;}
.wsbe{word-spacing:46.480000pt;}
.wsbc{word-spacing:46.586240pt;}
.wseb{word-spacing:48.764160pt;}
.wsee{word-spacing:49.029760pt;}
.wsec{word-spacing:49.136000pt;}
.wsb9{word-spacing:49.667200pt;}
.wsb7{word-spacing:49.720320pt;}
.wsda{word-spacing:61.672320pt;}
.ws76{word-spacing:65.605867pt;}
.wsdb{word-spacing:65.709440pt;}
.wsd9{word-spacing:65.815680pt;}
.ws75{word-spacing:65.967467pt;}
.wscb{word-spacing:83.451520pt;}
.wsdf{word-spacing:85.363840pt;}
.wsca{word-spacing:87.807360pt;}
.wscc{word-spacing:88.072960pt;}
.wse0{word-spacing:89.347840pt;}
.wsde{word-spacing:89.454080pt;}
.wse4{word-spacing:97.528320pt;}
.wsf2{word-spacing:100.237440pt;}
.wse5{word-spacing:101.512320pt;}
.wsf3{word-spacing:104.115200pt;}
.wsf1{word-spacing:104.221440pt;}
.wsf0{word-spacing:104.380800pt;}
.ws73{word-spacing:110.702400pt;}
.wsd7{word-spacing:118.298240pt;}
.wsd8{word-spacing:122.654080pt;}
.wsd6{word-spacing:122.760320pt;}
.wsd1{word-spacing:155.004160pt;}
.wsd0{word-spacing:158.988160pt;}
.wsd2{word-spacing:159.147520pt;}
.wscf{word-spacing:159.253760pt;}
.ws70{word-spacing:283.344000pt;}
.ws71{word-spacing:310.800000pt;}
._d{margin-left:-321.360000pt;}
._a{margin-left:-6.507520pt;}
._0{margin-left:-1.152000pt;}
._4{width:1.536000pt;}
._5{width:4.105600pt;}
._9{width:5.667840pt;}
._8{width:6.821760pt;}
._10{width:8.392960pt;}
._6{width:9.408000pt;}
._c{width:14.183040pt;}
._14{width:15.202112pt;}
._13{width:16.382208pt;}
._15{width:17.354304pt;}
._7{width:24.768000pt;}
._e{width:44.928000pt;}
._f{width:91.728000pt;}
._16{width:103.052800pt;}
._12{width:159.082240pt;}
._b{width:191.543040pt;}
._1{width:253.184000pt;}
._2{width:515.072000pt;}
._11{width:753.920000pt;}
._3{width:952.832000pt;}
.fs7{font-size:2.560000pt;}
.fs9{font-size:32.000000pt;}
.fs6{font-size:34.560000pt;}
.fs8{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:80.000000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y12{bottom:2.720000pt;}
.y112{bottom:3.040000pt;}
.y3{bottom:6.400000pt;}
.y3d{bottom:6.560000pt;}
.y75{bottom:7.200000pt;}
.ye{bottom:10.720000pt;}
.yd7{bottom:15.138800pt;}
.y119{bottom:18.560000pt;}
.y12c{bottom:18.719867pt;}
.y7{bottom:18.720000pt;}
.yec{bottom:18.880000pt;}
.yf0{bottom:19.040000pt;}
.yd{bottom:25.120000pt;}
.yfd{bottom:26.880000pt;}
.y105{bottom:33.600000pt;}
.y131{bottom:34.239867pt;}
.y115{bottom:34.240000pt;}
.y11b{bottom:34.400000pt;}
.yf2{bottom:39.360000pt;}
.y114{bottom:49.920000pt;}
.y124{bottom:50.080000pt;}
.y117{bottom:65.440000pt;}
.y3b{bottom:78.067360pt;}
.y1b9{bottom:78.899360pt;}
.y1e6{bottom:80.491040pt;}
.yea{bottom:81.402560pt;}
.y15a{bottom:82.511520pt;}
.y144{bottom:87.676320pt;}
.y73{bottom:88.992160pt;}
.y1b8{bottom:94.583040pt;}
.ya6{bottom:94.660800pt;}
.y204{bottom:95.996320pt;}
.y1e5{bottom:96.015360pt;}
.ye9{bottom:97.086240pt;}
.y267{bottom:97.112000pt;}
.y3a{bottom:98.392480pt;}
.y143{bottom:103.360000pt;}
.y18c{bottom:103.704480pt;}
.y72{bottom:104.675840pt;}
.y159{bottom:106.189760pt;}
.ya5{bottom:110.344480pt;}
.y203{bottom:111.680000pt;}
.y1e4{bottom:111.699040pt;}
.y266{bottom:112.795680pt;}
.y128{bottom:114.880000pt;}
.y1b7{bottom:118.101920pt;}
.y18b{bottom:119.388160pt;}
.y71{bottom:120.200160pt;}
.ye8{bottom:120.764480pt;}
.y158{bottom:121.873440pt;}
.y39{bottom:126.875520pt;}
.y1e3{bottom:127.382720pt;}
.y234{bottom:127.836320pt;}
.y265{bottom:128.320000pt;}
.yee{bottom:129.760000pt;}
.y127{bottom:132.160000pt;}
.y1b6{bottom:133.785600pt;}
.ya4{bottom:133.863360pt;}
.y202{bottom:133.912000pt;}
.y142{bottom:133.920000pt;}
.y18a{bottom:134.912480pt;}
.y70{bottom:135.883840pt;}
.ye7{bottom:136.448160pt;}
.y157{bottom:137.557120pt;}
.y233{bottom:143.520000pt;}
.y38{bottom:144.640000pt;}
.y1b5{bottom:149.469280pt;}
.y201{bottom:149.595680pt;}
.y264{bottom:150.556320pt;}
.y189{bottom:150.596160pt;}
.y1e2{bottom:150.901600pt;}
.ya3{bottom:157.541600pt;}
.y16{bottom:159.360000pt;}
.y6f{bottom:159.402720pt;}
.ye6{bottom:159.967040pt;}
.y156{bottom:161.076000pt;}
.y1b4{bottom:164.993600pt;}
.y200{bottom:165.120000pt;}
.y232{bottom:165.756320pt;}
.y141{bottom:165.760000pt;}
.y263{bottom:166.240000pt;}
.y188{bottom:166.279840pt;}
.y1e1{bottom:166.585280pt;}
.y15{bottom:173.440000pt;}
.y6e{bottom:175.086400pt;}
.ye5{bottom:175.650720pt;}
.y1b3{bottom:180.677280pt;}
.ya2{bottom:181.219840pt;}
.y231{bottom:181.440000pt;}
.y187{bottom:181.804160pt;}
.y1e0{bottom:182.268960pt;}
.y1ff{bottom:187.512000pt;}
.y262{bottom:188.472640pt;}
.y155{bottom:192.762080pt;}
.y126{bottom:194.720000pt;}
.y1b2{bottom:196.360960pt;}
.y186{bottom:197.487840pt;}
.ybf{bottom:198.671680pt;}
.y6d{bottom:198.764640pt;}
.ye4{bottom:199.328960pt;}
.y1fe{bottom:203.195680pt;}
.y230{bottom:203.676320pt;}
.y261{bottom:204.156320pt;}
.ya1{bottom:204.738720pt;}
.y37{bottom:205.236000pt;}
.y1df{bottom:205.787840pt;}
.y185{bottom:213.171520pt;}
.ybe{bottom:214.355360pt;}
.ye3{bottom:215.012640pt;}
.y1fd{bottom:218.720000pt;}
.y22f{bottom:219.360000pt;}
.y260{bottom:219.840000pt;}
.y1b1{bottom:219.879840pt;}
.y36{bottom:220.919680pt;}
.ya0{bottom:228.416960pt;}
.y184{bottom:228.855200pt;}
.y140{bottom:228.960000pt;}
.y6c{bottom:230.450720pt;}
.ye2{bottom:230.536960pt;}
.y35{bottom:236.444000pt;}
.y1de{bottom:237.473920pt;}
.ybd{bottom:238.033600pt;}
.y1fc{bottom:240.960000pt;}
.y22e{bottom:241.592640pt;}
.y125{bottom:241.600000pt;}
.y25f{bottom:242.076320pt;}
.y183{bottom:244.379520pt;}
.y6b{bottom:246.134400pt;}
.ye1{bottom:246.220640pt;}
.y1b0{bottom:251.565920pt;}
.y9f{bottom:252.095200pt;}
.y1dd{bottom:253.157600pt;}
.y1fb{bottom:256.640000pt;}
.y123{bottom:257.120000pt;}
.y22d{bottom:257.276320pt;}
.y13f{bottom:257.585600pt;}
.y25e{bottom:257.760000pt;}
.y182{bottom:260.063200pt;}
.y34{bottom:260.122240pt;}
.y6a{bottom:261.658720pt;}
.ye0{bottom:261.904320pt;}
.y1af{bottom:267.249600pt;}
.y1dc{bottom:268.841280pt;}
.ybc{bottom:269.560320pt;}
.y22c{bottom:272.960000pt;}
.y9e{bottom:275.614080pt;}
.y33{bottom:275.805920pt;}
.y69{bottom:277.342400pt;}
.y1fa{bottom:278.872640pt;}
.y25d{bottom:279.996320pt;}
.y13e{bottom:281.263840pt;}
.y1ae{bottom:282.933280pt;}
.y181{bottom:283.582080pt;}
.y1db{bottom:284.365600pt;}
.ybb{bottom:285.244000pt;}
.ydf{bottom:285.423200pt;}
.y32{bottom:291.330240pt;}
.y68{bottom:293.026080pt;}
.y1f9{bottom:294.556320pt;}
.y22b{bottom:295.196320pt;}
.y25c{bottom:295.680000pt;}
.y13d{bottom:296.947520pt;}
.y1ad{bottom:298.457600pt;}
.y9d{bottom:299.292320pt;}
.yba{bottom:300.927680pt;}
.yde{bottom:301.106880pt;}
.y31{bottom:307.013920pt;}
.y1da{bottom:308.043840pt;}
.y1f8{bottom:310.240000pt;}
.y22a{bottom:310.880000pt;}
.y13c{bottom:312.631200pt;}
.yc6{bottom:313.044000pt;}
.y1ac{bottom:314.141280pt;}
.y180{bottom:315.268160pt;}
.y67{bottom:316.544960pt;}
.ydd{bottom:316.790560pt;}
.yd4{bottom:317.509067pt;}
.y25b{bottom:317.912640pt;}
.y122{bottom:319.680000pt;}
.y30{bottom:322.697600pt;}
.y9c{bottom:322.970560pt;}
.y1d9{bottom:323.727520pt;}
.yb9{bottom:324.446560pt;}
.y13b{bottom:328.155520pt;}
.y17f{bottom:330.951840pt;}
.y66{bottom:332.228640pt;}
.ydc{bottom:332.314880pt;}
.y1f7{bottom:332.476320pt;}
.y229{bottom:333.116320pt;}
.y25a{bottom:333.596320pt;}
.y1ab{bottom:337.660160pt;}
.y2f{bottom:338.381280pt;}
.y1d8{bottom:339.251840pt;}
.yb8{bottom:340.130240pt;}
.y9b{bottom:346.489440pt;}
.y17e{bottom:346.635520pt;}
.y1f6{bottom:348.160000pt;}
.y228{bottom:348.800000pt;}
.y259{bottom:349.280000pt;}
.y13a{bottom:351.833760pt;}
.y1aa{bottom:353.343840pt;}
.y1d7{bottom:354.935520pt;}
.y65{bottom:355.747520pt;}
.ydb{bottom:355.993120pt;}
.y2e{bottom:361.900160pt;}
.y17d{bottom:362.159840pt;}
.yb7{bottom:363.808480pt;}
.y139{bottom:367.517440pt;}
.y1a9{bottom:369.027520pt;}
.y9a{bottom:370.167680pt;}
.y1f5{bottom:370.315680pt;}
.y1d6{bottom:370.619200pt;}
.y227{bottom:371.040000pt;}
.y258{bottom:371.512640pt;}
.yda{bottom:371.676800pt;}
.y2d{bottom:377.583840pt;}
.y17c{bottom:377.843520pt;}
.y64{bottom:379.425760pt;}
.yb6{bottom:379.492160pt;}
.y121{bottom:382.240000pt;}
.y138{bottom:383.041760pt;}
.y1a8{bottom:384.711200pt;}
.y1f4{bottom:385.999360pt;}
.y226{bottom:386.715680pt;}
.y257{bottom:387.196320pt;}
.y2c{bottom:393.267520pt;}
.y17b{bottom:393.527200pt;}
.y99{bottom:393.845920pt;}
.y1d5{bottom:394.138080pt;}
.yb5{bottom:395.016480pt;}
.y63{bottom:395.109440pt;}
.y225{bottom:402.240000pt;}
.y256{bottom:402.880000pt;}
.yd9{bottom:403.203520pt;}
.y137{bottom:406.720000pt;}
.y2b{bottom:408.791840pt;}
.y17a{bottom:409.210880pt;}
.y1f3{bottom:409.677600pt;}
.y1d4{bottom:409.821760pt;}
.y62{bottom:410.793120pt;}
.y1a7{bottom:416.237920pt;}
.y98{bottom:417.524160pt;}
.yb4{bottom:418.694720pt;}
.yd8{bottom:424.000000pt;}
.y224{bottom:424.472640pt;}
.y2a{bottom:424.475520pt;}
.y179{bottom:424.735200pt;}
.y255{bottom:425.116320pt;}
.y1d3{bottom:425.505440pt;}
.y61{bottom:426.317440pt;}
.yef{bottom:426.560000pt;}
.y120{bottom:429.120000pt;}
.y1f2{bottom:433.196480pt;}
.yb3{bottom:434.378400pt;}
.y136{bottom:437.280000pt;}
.y223{bottom:440.156320pt;}
.y178{bottom:440.418880pt;}
.y254{bottom:440.800000pt;}
.y97{bottom:441.043040pt;}
.y1d2{bottom:441.189120pt;}
.y60{bottom:442.001120pt;}
.y29{bottom:447.994400pt;}
.y1f1{bottom:448.880160pt;}
.yb2{bottom:450.062080pt;}
.y109{bottom:451.368000pt;}
.y222{bottom:455.840000pt;}
.y177{bottom:456.102560pt;}
.y253{bottom:463.032640pt;}
.y28{bottom:463.678080pt;}
.y1f0{bottom:464.563840pt;}
.y1d1{bottom:464.708000pt;}
.y96{bottom:464.721280pt;}
.y108{bottom:465.444000pt;}
.y5f{bottom:465.679360pt;}
.y176{bottom:471.626880pt;}
.y11f{bottom:476.000000pt;}
.y221{bottom:478.072640pt;}
.y252{bottom:478.716320pt;}
.y27{bottom:479.361760pt;}
.y107{bottom:479.520000pt;}
.y1d0{bottom:480.391680pt;}
.y5e{bottom:481.363040pt;}
.yb1{bottom:481.588800pt;}
.y135{bottom:484.160000pt;}
.y175{bottom:487.310560pt;}
.y1ef{bottom:488.082720pt;}
.y95{bottom:488.399520pt;}
.y220{bottom:493.756320pt;}
.y251{bottom:494.400000pt;}
.y1cf{bottom:496.075360pt;}
.y5d{bottom:496.887360pt;}
.y154{bottom:500.605760pt;}
.yb0{bottom:502.225920pt;}
.yc5{bottom:502.240000pt;}
.y26{bottom:503.040000pt;}
.y94{bottom:504.083200pt;}
.y11e{bottom:507.360000pt;}
.y21f{bottom:509.440000pt;}
.y174{bottom:510.829440pt;}
.y1ce{bottom:511.599680pt;}
.y5c{bottom:512.571040pt;}
.y153{bottom:516.130080pt;}
.y250{bottom:516.632000pt;}
.y25{bottom:518.408000pt;}
.y93{bottom:519.607520pt;}
.y1ee{bottom:519.768800pt;}
.y1cd{bottom:527.283360pt;}
.y5b{bottom:528.254720pt;}
.y134{bottom:531.200000pt;}
.y21e{bottom:531.672640pt;}
.y24f{bottom:532.315680pt;}
.y24{bottom:532.328000pt;}
.y1ed{bottom:535.452480pt;}
.y11d{bottom:538.560000pt;}
.y173{bottom:542.515520pt;}
.y92{bottom:543.285760pt;}
.yd6{bottom:543.527733pt;}
.y23{bottom:546.404000pt;}
.y21d{bottom:547.356320pt;}
.y152{bottom:547.816160pt;}
.y24e{bottom:547.840000pt;}
.y1cc{bottom:550.802240pt;}
.y1ec{bottom:551.136160pt;}
.y5a{bottom:551.773600pt;}
.yed{bottom:551.840000pt;}
.yd5{bottom:557.591733pt;}
.y172{bottom:558.199200pt;}
.y1a6{bottom:559.754880pt;}
.y22{bottom:560.480000pt;}
.y21c{bottom:563.040000pt;}
.y100{bottom:565.288000pt;}
.y1eb{bottom:566.660480pt;}
.y103{bottom:566.888000pt;}
.y59{bottom:567.457280pt;}
.y151{bottom:568.453280pt;}
.y24d{bottom:570.072640pt;}
.y21{bottom:571.840000pt;}
.ycc{bottom:572.731467pt;}
.y14{bottom:573.280000pt;}
.y171{bottom:573.882880pt;}
.y91{bottom:574.812480pt;}
.y1a5{bottom:575.438560pt;}
.y133{bottom:578.080000pt;}
.yff{bottom:579.364000pt;}
.y102{bottom:580.964000pt;}
.y1cb{bottom:582.488320pt;}
.y58{bottom:583.140960pt;}
.y20{bottom:583.840000pt;}
.yca{bottom:585.247467pt;}
.yc0{bottom:585.258267pt;}
.y21b{bottom:585.272000pt;}
.y11c{bottom:585.440000pt;}
.y24c{bottom:585.756320pt;}
.y170{bottom:589.407200pt;}
.y1ea{bottom:590.338720pt;}
.y90{bottom:590.496160pt;}
.y1a4{bottom:591.122240pt;}
.yfe{bottom:593.440000pt;}
.yc3{bottom:594.522267pt;}
.y101{bottom:595.040000pt;}
.y1ca{bottom:598.172000pt;}
.yc9{bottom:599.143467pt;}
.y21a{bottom:600.955680pt;}
.y24b{bottom:601.440000pt;}
.ycd{bottom:603.607467pt;}
.y16f{bottom:605.090880pt;}
.y1f{bottom:605.952000pt;}
.y8f{bottom:606.179840pt;}
.y1a3{bottom:606.646560pt;}
.y57{bottom:606.659840pt;}
.yc4{bottom:613.050267pt;}
.y1c9{bottom:613.855680pt;}
.y219{bottom:616.480000pt;}
.y11a{bottom:616.640000pt;}
.y1e{bottom:620.028000pt;}
.y16e{bottom:620.774560pt;}
.y8e{bottom:621.863520pt;}
.y1e9{bottom:622.024800pt;}
.y1a2{bottom:622.330240pt;}
.y56{bottom:622.343520pt;}
.y24a{bottom:623.672640pt;}
.y1c8{bottom:629.380000pt;}
.y1d{bottom:634.104000pt;}
.yce{bottom:634.483467pt;}
.y16d{bottom:636.458240pt;}
.yc7{bottom:637.747467pt;}
.y55{bottom:638.027200pt;}
.y218{bottom:638.872000pt;}
.y249{bottom:639.356320pt;}
.y132{bottom:640.480000pt;}
.y8d{bottom:645.382400pt;}
.y1e8{bottom:645.543680pt;}
.y1a1{bottom:646.008480pt;}
.y1c{bottom:648.180000pt;}
.y16c{bottom:651.982560pt;}
.y1c7{bottom:653.058240pt;}
.y217{bottom:654.555680pt;}
.y248{bottom:655.040000pt;}
.y8c{bottom:661.066080pt;}
.y54{bottom:661.546080pt;}
.y1a0{bottom:661.692160pt;}
.y1b{bottom:662.256000pt;}
.y116{bottom:663.680000pt;}
.ycf{bottom:665.359467pt;}
.yc1{bottom:665.538267pt;}
.yc8{bottom:667.075467pt;}
.y16b{bottom:667.666240pt;}
.y1c6{bottom:668.741920pt;}
.yfc{bottom:669.760000pt;}
.y216{bottom:670.080000pt;}
.y1a{bottom:676.332000pt;}
.y8b{bottom:676.749760pt;}
.y19f{bottom:677.216480pt;}
.y53{bottom:677.229760pt;}
.y247{bottom:677.272640pt;}
.yfb{bottom:683.848000pt;}
.y1c5{bottom:684.425600pt;}
.y130{bottom:687.520000pt;}
.y19{bottom:690.408000pt;}
.y16a{bottom:691.185120pt;}
.y215{bottom:692.316320pt;}
.y19e{bottom:692.900160pt;}
.y52{bottom:692.913440pt;}
.y246{bottom:692.956320pt;}
.yd0{bottom:696.235467pt;}
.y118{bottom:697.919867pt;}
.yfa{bottom:697.924000pt;}
.y1c4{bottom:699.949920pt;}
.y8a{bottom:700.268640pt;}
.y18{bottom:704.484000pt;}
.y214{bottom:708.000000pt;}
.y19d{bottom:708.583840pt;}
.y51{bottom:708.597120pt;}
.y245{bottom:708.640000pt;}
.yf9{bottom:712.000000pt;}
.y1c3{bottom:715.633600pt;}
.y89{bottom:715.952320pt;}
.y17{bottom:718.560000pt;}
.y169{bottom:722.871200pt;}
.y50{bottom:724.121440pt;}
.yd1{bottom:727.111467pt;}
.y213{bottom:730.232640pt;}
.y244{bottom:730.872000pt;}
.y88{bottom:731.636000pt;}
.y19c{bottom:732.102720pt;}
.ycb{bottom:733.447467pt;}
.y168{bottom:738.554880pt;}
.y1c2{bottom:739.152480pt;}
.y113{bottom:741.760000pt;}
.y212{bottom:745.916320pt;}
.y243{bottom:746.555680pt;}
.y13{bottom:746.720000pt;}
.y87{bottom:747.319680pt;}
.y4f{bottom:747.799680pt;}
.y12f{bottom:749.920000pt;}
.y167{bottom:754.238560pt;}
.y1c1{bottom:754.836160pt;}
.y150{bottom:755.329440pt;}
.yc2{bottom:756.618267pt;}
.yd2{bottom:757.987467pt;}
.y211{bottom:761.600000pt;}
.y242{bottom:762.080000pt;}
.y4e{bottom:763.483360pt;}
.y19b{bottom:763.788800pt;}
.y11{bottom:767.360000pt;}
.y166{bottom:769.762880pt;}
.y1c0{bottom:770.519840pt;}
.y86{bottom:770.838560pt;}
.y14f{bottom:771.013120pt;}
.y4d{bottom:779.007680pt;}
.y19a{bottom:779.472480pt;}
.y210{bottom:783.832640pt;}
.y241{bottom:784.312640pt;}
.y1bf{bottom:786.203520pt;}
.y85{bottom:786.522240pt;}
.y14e{bottom:786.696800pt;}
.yd3{bottom:788.863467pt;}
.y104{bottom:790.400000pt;}
.y165{bottom:793.441120pt;}
.y1e7{bottom:794.691360pt;}
.y199{bottom:794.996800pt;}
.y12e{bottom:796.800000pt;}
.yc{bottom:797.440000pt;}
.y20f{bottom:799.516320pt;}
.y240{bottom:799.996320pt;}
.y1be{bottom:801.727840pt;}
.y84{bottom:802.205920pt;}
.y14d{bottom:802.380480pt;}
.y4c{bottom:802.685920pt;}
.y111{bottom:804.960000pt;}
.yf{bottom:808.160000pt;}
.y106{bottom:809.920000pt;}
.y198{bottom:810.680480pt;}
.y20e{bottom:815.200000pt;}
.y23f{bottom:815.680000pt;}
.yf8{bottom:816.480000pt;}
.y164{bottom:817.119360pt;}
.y83{bottom:817.730240pt;}
.y4b{bottom:818.369600pt;}
.yb{bottom:822.555840pt;}
.y10{bottom:822.560000pt;}
.y1bd{bottom:825.406080pt;}
.y14c{bottom:825.899360pt;}
.y197{bottom:826.364160pt;}
.y12d{bottom:828.160000pt;}
.y163{bottom:832.803040pt;}
.y4a{bottom:834.053280pt;}
.y20d{bottom:837.436320pt;}
.y23e{bottom:837.912640pt;}
.y82{bottom:841.408480pt;}
.ya{bottom:841.440000pt;}
.y14b{bottom:841.583040pt;}
.y196{bottom:842.047840pt;}
.y110{bottom:849.258880pt;}
.yaf{bottom:849.272160pt;}
.y49{bottom:849.577600pt;}
.y20c{bottom:853.120000pt;}
.y23d{bottom:853.596320pt;}
.y162{bottom:856.321920pt;}
.y81{bottom:857.092160pt;}
.y14a{bottom:857.266720pt;}
.y195{bottom:857.572160pt;}
.y23c{bottom:869.280000pt;}
.y161{bottom:872.005600pt;}
.y80{bottom:872.775840pt;}
.y10f{bottom:872.777760pt;}
.yae{bottom:872.791040pt;}
.y48{bottom:873.255840pt;}
.y9{bottom:874.560000pt;}
.y12b{bottom:875.040000pt;}
.y20b{bottom:875.352640pt;}
.yeb{bottom:878.720000pt;}
.y149{bottom:880.785600pt;}
.y194{bottom:881.250400pt;}
.y7f{bottom:888.300160pt;}
.y10e{bottom:888.461440pt;}
.yad{bottom:888.474720pt;}
.y47{bottom:888.939520pt;}
.y20a{bottom:891.036320pt;}
.y23b{bottom:891.508320pt;}
.y160{bottom:895.524480pt;}
.y148{bottom:896.469280pt;}
.y193{bottom:896.934080pt;}
.y8{bottom:898.080000pt;}
.y7e{bottom:903.983840pt;}
.y10d{bottom:904.145120pt;}
.yac{bottom:904.158400pt;}
.y46{bottom:904.463840pt;}
.yf1{bottom:905.600000pt;}
.y209{bottom:906.720000pt;}
.y23a{bottom:907.192000pt;}
.y15f{bottom:911.208160pt;}
.y1bc{bottom:911.978400pt;}
.y147{bottom:912.152960pt;}
.y192{bottom:912.458400pt;}
.yf7{bottom:918.408000pt;}
.yf4{bottom:919.681120pt;}
.y10c{bottom:919.828800pt;}
.yab{bottom:919.842080pt;}
.y45{bottom:920.147520pt;}
.y12a{bottom:921.920000pt;}
.y239{bottom:922.875680pt;}
.y7d{bottom:927.502720pt;}
.y1bb{bottom:927.662080pt;}
.y208{bottom:928.948320pt;}
.yf3{bottom:932.320000pt;}
.yf6{bottom:932.484000pt;}
.y2{bottom:933.600000pt;}
.y15e{bottom:934.886400pt;}
.yaa{bottom:935.366400pt;}
.y146{bottom:935.671840pt;}
.y191{bottom:936.136640pt;}
.y238{bottom:938.400000pt;}
.y7c{bottom:943.186400pt;}
.y10b{bottom:943.347680pt;}
.y44{bottom:943.666400pt;}
.y207{bottom:944.632000pt;}
.yf5{bottom:946.560000pt;}
.y145{bottom:951.355520pt;}
.y190{bottom:951.820320pt;}
.y15d{bottom:958.405280pt;}
.y7b{bottom:958.870080pt;}
.ya9{bottom:959.044640pt;}
.y43{bottom:959.350080pt;}
.y206{bottom:960.156320pt;}
.y237{bottom:960.636320pt;}
.y18f{bottom:967.344640pt;}
.y6{bottom:968.000000pt;}
.y7a{bottom:974.553760pt;}
.y42{bottom:975.033760pt;}
.y205{bottom:975.840000pt;}
.y236{bottom:976.320000pt;}
.y15c{bottom:982.083520pt;}
.ya8{bottom:982.563520pt;}
.y18e{bottom:983.028320pt;}
.y129{bottom:985.120000pt;}
.y79{bottom:990.078080pt;}
.y41{bottom:990.717440pt;}
.y5{bottom:991.840000pt;}
.y1ba{bottom:998.072640pt;}
.y235{bottom:998.552640pt;}
.y18d{bottom:998.712000pt;}
.y15b{bottom:1005.761760pt;}
.ya7{bottom:1006.241760pt;}
.y4{bottom:1010.720000pt;}
.y78{bottom:1013.756320pt;}
.y40{bottom:1014.236320pt;}
.y10a{bottom:1020.960000pt;}
.y77{bottom:1029.440000pt;}
.y3f{bottom:1029.920000pt;}
.y76{bottom:1043.840000pt;}
.y3e{bottom:1044.320000pt;}
.y74{bottom:1052.640000pt;}
.y3c{bottom:1053.280000pt;}
.y1{bottom:1061.440000pt;}
.h11{height:1.802500pt;}
.h26{height:15.521333pt;}
.h29{height:15.680000pt;}
.h15{height:21.440000pt;}
.h18{height:22.080000pt;}
.h17{height:22.531250pt;}
.hd{height:30.078667pt;}
.h12{height:30.191875pt;}
.h14{height:30.882812pt;}
.h13{height:30.987500pt;}
.h1f{height:31.200000pt;}
.h24{height:31.360000pt;}
.hc{height:33.796875pt;}
.he{height:34.570312pt;}
.h7{height:37.401875pt;}
.h9{height:38.257813pt;}
.ha{height:38.347265pt;}
.hb{height:40.961333pt;}
.h6{height:42.406250pt;}
.h4{height:45.062500pt;}
.h27{height:46.878667pt;}
.h23{height:46.880000pt;}
.h22{height:47.040000pt;}
.h2{height:48.000000pt;}
.h8{height:57.617188pt;}
.h16{height:59.196250pt;}
.h1d{height:61.440000pt;}
.h1e{height:62.081333pt;}
.h28{height:62.400000pt;}
.h25{height:62.560000pt;}
.h20{height:62.561333pt;}
.h2a{height:63.149780pt;}
.h5{height:63.840000pt;}
.h21{height:78.078667pt;}
.h1c{height:84.640000pt;}
.h1a{height:106.398667pt;}
.h3{height:112.800000pt;}
.hf{height:192.800000pt;}
.h10{height:225.600000pt;}
.h1b{height:310.560000pt;}
.h19{height:336.000000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.wb{width:17.600000pt;}
.w1d{width:26.400000pt;}
.w1e{width:32.160000pt;}
.w17{width:37.920000pt;}
.we{width:38.081333pt;}
.w15{width:43.840000pt;}
.w18{width:47.040000pt;}
.wf{width:48.160000pt;}
.w16{width:50.880000pt;}
.w19{width:59.680000pt;}
.w1c{width:60.160000pt;}
.w14{width:66.080000pt;}
.w11{width:97.120000pt;}
.w10{width:100.640000pt;}
.wc{width:115.361333pt;}
.w1b{width:119.200000pt;}
.w2{width:141.120000pt;}
.w13{width:160.800000pt;}
.wd{width:170.560000pt;}
.w6{width:217.280000pt;}
.w5{width:226.560000pt;}
.w4{width:243.680000pt;}
.w12{width:245.440000pt;}
.w1a{width:277.440000pt;}
.w3{width:547.361333pt;}
.wa{width:576.000000pt;}
.w7{width:673.121333pt;}
.w9{width:677.280000pt;}
.w8{width:687.521333pt;}
.w1{width:793.333333pt;}
.w0{width:793.440000pt;}
.x0{left:0.000000pt;}
.x45{left:4.800000pt;}
.x1a{left:7.200000pt;}
.x32{left:8.726533pt;}
.x3b{left:9.760000pt;}
.x52{left:11.520000pt;}
.x39{left:13.120000pt;}
.x4a{left:15.360000pt;}
.x17{left:38.880000pt;}
.x13{left:43.520000pt;}
.xc{left:49.600000pt;}
.xe{left:52.000000pt;}
.x54{left:55.520000pt;}
.x1{left:56.800000pt;}
.x8{left:58.560000pt;}
.x1e{left:61.262080pt;}
.x19{left:64.000000pt;}
.x62{left:85.086400pt;}
.x4d{left:89.600000pt;}
.xb{left:91.838080pt;}
.x55{left:93.440000pt;}
.x28{left:108.640000pt;}
.x2{left:115.520000pt;}
.x31{left:117.381867pt;}
.x30{left:124.029867pt;}
.x2f{left:130.677867pt;}
.x18{left:138.240000pt;}
.x56{left:140.480000pt;}
.x5d{left:148.777280pt;}
.x34{left:160.247600pt;}
.x33{left:162.647600pt;}
.x21{left:168.995600pt;}
.x16{left:182.080000pt;}
.x12{left:187.200000pt;}
.x24{left:188.279600pt;}
.x5e{left:192.946560pt;}
.x6{left:198.880000pt;}
.x57{left:200.160000pt;}
.xd{left:201.440000pt;}
.x2a{left:204.189867pt;}
.x7{left:207.520000pt;}
.x3{left:226.720000pt;}
.x38{left:231.127600pt;}
.x60{left:232.985760pt;}
.x4c{left:237.600000pt;}
.x35{left:239.675600pt;}
.xf{left:241.120000pt;}
.x1c{left:248.800000pt;}
.x22{left:252.611600pt;}
.x3a{left:266.560000pt;}
.x25{left:268.547600pt;}
.x42{left:276.800000pt;}
.x4b{left:281.760000pt;}
.x3d{left:285.593120pt;}
.x3c{left:289.120000pt;}
.x2b{left:291.177867pt;}
.x11{left:293.280000pt;}
.x43{left:303.032000pt;}
.x49{left:306.400000pt;}
.x9{left:311.200000pt;}
.x53{left:323.834240pt;}
.x20{left:325.109120pt;}
.x10{left:332.480000pt;}
.x4e{left:335.520000pt;}
.x58{left:341.280000pt;}
.x1d{left:343.520000pt;}
.x1b{left:357.600000pt;}
.x61{left:359.942560pt;}
.x26{left:362.255600pt;}
.x4{left:372.800000pt;}
.x5f{left:374.231840pt;}
.x2c{left:381.525867pt;}
.xa{left:396.800000pt;}
.x5{left:424.320000pt;}
.x27{left:445.871600pt;}
.x44{left:463.040000pt;}
.x2d{left:468.513867pt;}
.x3f{left:473.760000pt;}
.x46{left:476.640000pt;}
.x41{left:484.000000pt;}
.x3e{left:487.680000pt;}
.x47{left:505.128000pt;}
.x29{left:507.825467pt;}
.x15{left:519.840000pt;}
.x36{left:521.975600pt;}
.x40{left:528.960000pt;}
.x48{left:531.840000pt;}
.x14{left:555.040000pt;}
.x5c{left:571.174240pt;}
.x4f{left:580.960000pt;}
.x23{left:600.551600pt;}
.x37{left:608.555600pt;}
.x59{left:618.720000pt;}
.x2e{left:639.117867pt;}
.x50{left:647.040000pt;}
.x5a{left:678.880000pt;}
.x1f{left:684.784640pt;}
.x51{left:690.880000pt;}
.x5b{left:705.280000pt;}
}




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