
    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_4037eb7dd6580d3b0b346f60.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_726763b797930212c54db6cb.woff')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_3a7673e8180eb9e6670a15ed.woff')format("woff");}.ff3{font-family:ff3;line-height:0.910156;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_e03cf9924a72bbdb949aba9b.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_77587a22b03de2dce08cd544.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f5823e1d44cb2f9b0c77d57a.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_6e0f3493bfaa2e6c712c1d70.woff')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_2d6b4fe88a025b2f081fdf75.woff')format("woff");}.ff8{font-family:ff8;line-height:0.850586;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_ac7b443fb39725703faae4cd.woff')format("woff");}.ff9{font-family:ff9;line-height:0.910156;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_1d2b5aadbe2bb037fd8302cf.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_ab003a4ef977bd2923edb76a.woff')format("woff");}.ffb{font-family:ffb;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.ls1f{letter-spacing:-0.964800px;}
.ls4a{letter-spacing:-0.956160px;}
.ls47{letter-spacing:-0.648000px;}
.ls52{letter-spacing:-0.597600px;}
.ls27{letter-spacing:-0.537840px;}
.ls21{letter-spacing:-0.530640px;}
.ls24{letter-spacing:-0.478080px;}
.ls49{letter-spacing:-0.418320px;}
.ls26{letter-spacing:-0.358560px;}
.ls20{letter-spacing:-0.337680px;}
.ls45{letter-spacing:-0.270000px;}
.ls25{letter-spacing:-0.239040px;}
.ls4b{letter-spacing:-0.216000px;}
.ls22{letter-spacing:-0.119520px;}
.ls23{letter-spacing:-0.059760px;}
.ls48{letter-spacing:-0.054000px;}
.ls1e{letter-spacing:0.000000px;}
.ls3e{letter-spacing:0.053280px;}
.ls6{letter-spacing:0.059760px;}
.ls42{letter-spacing:0.089640px;}
.ls46{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.113544px;}
.ls17{letter-spacing:0.119520px;}
.ls4c{letter-spacing:0.132480px;}
.ls31{letter-spacing:0.167328px;}
.lsa{letter-spacing:0.179280px;}
.ls3b{letter-spacing:0.180000px;}
.ls1a{letter-spacing:0.185256px;}
.ls0{letter-spacing:0.192960px;}
.ls34{letter-spacing:0.197208px;}
.ls5e{letter-spacing:0.203184px;}
.lsb{letter-spacing:0.209160px;}
.ls16{letter-spacing:0.215136px;}
.ls5f{letter-spacing:0.233064px;}
.ls2{letter-spacing:0.239040px;}
.ls1d{letter-spacing:0.241920px;}
.ls15{letter-spacing:0.245016px;}
.ls5{letter-spacing:0.250992px;}
.ls62{letter-spacing:0.256968px;}
.ls3c{letter-spacing:0.259920px;}
.ls50{letter-spacing:0.262944px;}
.ls2a{letter-spacing:0.274896px;}
.ls10{letter-spacing:0.280872px;}
.ls54{letter-spacing:0.286848px;}
.ls5b{letter-spacing:0.292824px;}
.ls53{letter-spacing:0.298800px;}
.ls44{letter-spacing:0.304776px;}
.lse{letter-spacing:0.310752px;}
.ls28{letter-spacing:0.316728px;}
.ls5d{letter-spacing:0.328680px;}
.ls1{letter-spacing:0.337680px;}
.ls63{letter-spacing:0.352584px;}
.ls3{letter-spacing:0.358560px;}
.ls57{letter-spacing:0.360000px;}
.ls60{letter-spacing:0.370512px;}
.lsd{letter-spacing:0.376488px;}
.ls3a{letter-spacing:0.378000px;}
.ls4f{letter-spacing:0.382464px;}
.ls1c{letter-spacing:0.385920px;}
.ls32{letter-spacing:0.388440px;}
.ls61{letter-spacing:0.442224px;}
.ls56{letter-spacing:0.540000px;}
.ls3d{letter-spacing:0.720000px;}
.ls3f{letter-spacing:0.896400px;}
.ls12{letter-spacing:0.956160px;}
.lsf{letter-spacing:1.613520px;}
.ls9{letter-spacing:2.306736px;}
.ls8{letter-spacing:2.330640px;}
.ls30{letter-spacing:3.047760px;}
.ls55{letter-spacing:3.866472px;}
.ls2f{letter-spacing:4.482000px;}
.ls39{letter-spacing:5.199120px;}
.ls1b{letter-spacing:5.916240px;}
.ls33{letter-spacing:9.561600px;}
.ls19{letter-spacing:10.153224px;}
.ls59{letter-spacing:10.278720px;}
.ls40{letter-spacing:10.995840px;}
.ls51{letter-spacing:11.712960px;}
.ls41{letter-spacing:12.400200px;}
.ls4e{letter-spacing:12.430080px;}
.ls18{letter-spacing:13.147200px;}
.ls29{letter-spacing:13.183056px;}
.ls2b{letter-spacing:13.864320px;}
.ls2d{letter-spacing:14.581440px;}
.ls4d{letter-spacing:15.298560px;}
.ls58{letter-spacing:16.015680px;}
.ls2c{letter-spacing:18.167040px;}
.ls2e{letter-spacing:19.601280px;}
.ls36{letter-spacing:20.318400px;}
.lsc{letter-spacing:23.007600px;}
.ls43{letter-spacing:23.963760px;}
.ls14{letter-spacing:25.398000px;}
.ls37{letter-spacing:28.266480px;}
.ls38{letter-spacing:28.302336px;}
.ls5a{letter-spacing:36.154800px;}
.ls13{letter-spacing:47.688480px;}
.ls35{letter-spacing:56.353680px;}
.ls11{letter-spacing:64.002960px;}
.ls5c{letter-spacing:66.393360px;}
.ls4{letter-spacing:197.447040px;}
.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;}
}
.wsf{word-spacing:-59.760000px;}
.ws6{word-spacing:-15.298560px;}
.wsb6{word-spacing:-15.238800px;}
.wsc{word-spacing:-15.179040px;}
.ws9{word-spacing:-15.149160px;}
.ws7{word-spacing:-15.059520px;}
.ws5{word-spacing:-14.999760px;}
.ws8{word-spacing:-14.940000px;}
.wsa{word-spacing:-14.880240px;}
.wsb{word-spacing:-14.820480px;}
.ws5a{word-spacing:-14.700960px;}
.wsd{word-spacing:-14.581440px;}
.wse{word-spacing:-14.461920px;}
.ws0{word-spacing:-12.445920px;}
.ws4{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.722320px;}
.ws2{word-spacing:-11.095200px;}
.ws86{word-spacing:-10.962000px;}
.ws84{word-spacing:-10.908000px;}
.ws87{word-spacing:-10.746000px;}
.wsd9{word-spacing:-10.692000px;}
.ws85{word-spacing:-9.720000px;}
.ws1{word-spacing:-7.801920px;}
.ws4d{word-spacing:-3.764880px;}
.wsfb{word-spacing:-3.585600px;}
.ws9f{word-spacing:-3.525840px;}
.ws133{word-spacing:-3.466080px;}
.ws61{word-spacing:-3.346560px;}
.ws23{word-spacing:-3.047760px;}
.ws131{word-spacing:-2.868480px;}
.wsbd{word-spacing:-2.808720px;}
.wsd4{word-spacing:-2.754000px;}
.wsd3{word-spacing:-2.700000px;}
.ws24{word-spacing:-2.629440px;}
.wsba{word-spacing:-2.569680px;}
.ws66{word-spacing:-2.330640px;}
.wsbe{word-spacing:-2.211120px;}
.ws71{word-spacing:-2.091600px;}
.wsdb{word-spacing:-2.052000px;}
.ws7e{word-spacing:-1.912320px;}
.ws56{word-spacing:-1.613520px;}
.wsa4{word-spacing:-1.434240px;}
.wsa5{word-spacing:-1.374480px;}
.ws99{word-spacing:-1.350000px;}
.ws82{word-spacing:-1.195200px;}
.wsb2{word-spacing:-1.135440px;}
.ws11{word-spacing:-0.916560px;}
.ws40{word-spacing:-0.896400px;}
.ws113{word-spacing:-0.717120px;}
.ws3f{word-spacing:-0.657360px;}
.wsc8{word-spacing:-0.478080px;}
.ws98{word-spacing:-0.378000px;}
.ws44{word-spacing:-0.358560px;}
.wsbf{word-spacing:-0.298800px;}
.ws18{word-spacing:-0.239040px;}
.ws15{word-spacing:-0.192960px;}
.ws1a{word-spacing:-0.179280px;}
.wsc7{word-spacing:-0.162000px;}
.ws17{word-spacing:-0.119520px;}
.ws9a{word-spacing:-0.108000px;}
.ws9e{word-spacing:-0.059760px;}
.ws10{word-spacing:0.000000px;}
.ws1c{word-spacing:0.059760px;}
.wsa8{word-spacing:0.108000px;}
.ws2d{word-spacing:0.119520px;}
.ws16{word-spacing:0.179280px;}
.ws27{word-spacing:0.239040px;}
.ws9c{word-spacing:0.270000px;}
.ws19{word-spacing:0.298800px;}
.ws14{word-spacing:0.337680px;}
.ws8d{word-spacing:0.358560px;}
.wsa6{word-spacing:0.418320px;}
.ws77{word-spacing:0.478080px;}
.ws12{word-spacing:0.530640px;}
.ws36{word-spacing:0.537840px;}
.wsb7{word-spacing:0.597600px;}
.ws9b{word-spacing:0.648000px;}
.ws81{word-spacing:0.657360px;}
.ws13{word-spacing:0.723600px;}
.ws22{word-spacing:0.776880px;}
.ws39{word-spacing:0.956160px;}
.wsa0{word-spacing:1.015920px;}
.ws35{word-spacing:1.254960px;}
.ws80{word-spacing:1.494000px;}
.ws34{word-spacing:1.673280px;}
.ws28{word-spacing:1.972080px;}
.wsfa{word-spacing:2.151360px;}
.ws29{word-spacing:2.211120px;}
.ws5b{word-spacing:2.390400px;}
.ws20{word-spacing:2.689200px;}
.wsd1{word-spacing:2.808720px;}
.ws2b{word-spacing:2.928240px;}
.wsc4{word-spacing:2.970000px;}
.ws1e{word-spacing:2.988000px;}
.ws1f{word-spacing:3.107520px;}
.wsa9{word-spacing:3.167280px;}
.ws2a{word-spacing:3.286800px;}
.ws7d{word-spacing:3.406320px;}
.ws21{word-spacing:3.525840px;}
.wsb5{word-spacing:3.585600px;}
.wsda{word-spacing:3.645360px;}
.wsf8{word-spacing:3.705120px;}
.wsd8{word-spacing:3.824640px;}
.ws26{word-spacing:4.123440px;}
.ws52{word-spacing:4.362480px;}
.wsc6{word-spacing:4.428000px;}
.ws12d{word-spacing:4.721040px;}
.ws25{word-spacing:4.840560px;}
.wsc5{word-spacing:4.860000px;}
.ws123{word-spacing:5.019840px;}
.wsb4{word-spacing:5.079600px;}
.ws5e{word-spacing:5.258880px;}
.wsc0{word-spacing:5.318640px;}
.ws2f{word-spacing:5.557680px;}
.ws115{word-spacing:5.736960px;}
.ws57{word-spacing:5.796720px;}
.ws58{word-spacing:5.976000px;}
.ws2e{word-spacing:6.274800px;}
.ws9d{word-spacing:6.513840px;}
.wsd2{word-spacing:6.693120px;}
.ws7c{word-spacing:7.051680px;}
.ws10b{word-spacing:7.230960px;}
.wsac{word-spacing:7.290720px;}
.ws2c{word-spacing:7.768800px;}
.ws129{word-spacing:7.888320px;}
.ws11e{word-spacing:7.948080px;}
.ws5f{word-spacing:8.007840px;}
.wsc3{word-spacing:8.187120px;}
.ws11f{word-spacing:8.246880px;}
.ws62{word-spacing:8.485920px;}
.wse6{word-spacing:8.724960px;}
.wsce{word-spacing:8.748000px;}
.wse2{word-spacing:8.904240px;}
.ws41{word-spacing:9.203040px;}
.wsff{word-spacing:9.382320px;}
.ws42{word-spacing:9.621360px;}
.ws3d{word-spacing:9.920160px;}
.ws139{word-spacing:10.099440px;}
.wsd5{word-spacing:10.159200px;}
.wsdd{word-spacing:10.338480px;}
.wsd7{word-spacing:10.517760px;}
.ws1d{word-spacing:10.637280px;}
.ws8b{word-spacing:10.876320px;}
.ws1b{word-spacing:11.055600px;}
.wsb8{word-spacing:11.354400px;}
.wsa3{word-spacing:11.533680px;}
.ws90{word-spacing:11.593440px;}
.ws8f{word-spacing:11.772720px;}
.ws55{word-spacing:12.071520px;}
.ws7a{word-spacing:12.310560px;}
.wsab{word-spacing:12.489840px;}
.ws5d{word-spacing:12.669120px;}
.ws4b{word-spacing:12.788640px;}
.ws12b{word-spacing:12.967920px;}
.ws50{word-spacing:13.027680px;}
.ws4c{word-spacing:13.206960px;}
.ws67{word-spacing:13.266720px;}
.ws79{word-spacing:13.505760px;}
.ws72{word-spacing:13.744800px;}
.ws49{word-spacing:13.924080px;}
.ws53{word-spacing:14.222880px;}
.ws78{word-spacing:14.461920px;}
.ws11c{word-spacing:14.641200px;}
.ws6f{word-spacing:14.940000px;}
.ws125{word-spacing:15.119280px;}
.wsc1{word-spacing:15.179040px;}
.wsdf{word-spacing:15.228000px;}
.wsa7{word-spacing:15.537600px;}
.ws7f{word-spacing:15.657120px;}
.ws83{word-spacing:15.776640px;}
.wsc2{word-spacing:15.836400px;}
.wsad{word-spacing:15.896160px;}
.wsdc{word-spacing:16.075440px;}
.ws4e{word-spacing:16.613280px;}
.ws4f{word-spacing:16.792560px;}
.ws75{word-spacing:17.091360px;}
.ws130{word-spacing:17.509680px;}
.ws76{word-spacing:17.808480px;}
.ws12e{word-spacing:17.987760px;}
.wsca{word-spacing:18.047520px;}
.ws43{word-spacing:18.226800px;}
.ws12f{word-spacing:18.406080px;}
.wsaa{word-spacing:18.525600px;}
.ws6c{word-spacing:18.764640px;}
.ws70{word-spacing:18.943920px;}
.ws31{word-spacing:19.242720px;}
.ws32{word-spacing:19.481760px;}
.ws8e{word-spacing:19.661040px;}
.ws63{word-spacing:19.959840px;}
.ws89{word-spacing:20.378160px;}
.ws64{word-spacing:20.676960px;}
.ws60{word-spacing:20.916000px;}
.ws126{word-spacing:21.095280px;}
.ws6e{word-spacing:21.453840px;}
.wsec{word-spacing:21.633120px;}
.ws96{word-spacing:21.692880px;}
.ws97{word-spacing:21.872160px;}
.ws95{word-spacing:22.051440px;}
.wsf6{word-spacing:22.170960px;}
.wsfc{word-spacing:22.290480px;}
.ws11b{word-spacing:22.350240px;}
.wsf5{word-spacing:22.410000px;}
.wsfd{word-spacing:22.589280px;}
.ws94{word-spacing:22.888080px;}
.ws93{word-spacing:23.127120px;}
.ws54{word-spacing:23.605200px;}
.wsae{word-spacing:23.844240px;}
.wsde{word-spacing:23.868000px;}
.wsaf{word-spacing:24.023520px;}
.ws37{word-spacing:24.322320px;}
.ws38{word-spacing:24.740640px;}
.wsd6{word-spacing:25.039440px;}
.ws45{word-spacing:25.278480px;}
.wsc9{word-spacing:25.457760px;}
.ws48{word-spacing:25.756560px;}
.ws30{word-spacing:25.995600px;}
.wse3{word-spacing:26.174880px;}
.ws33{word-spacing:26.473680px;}
.wsbc{word-spacing:26.712720px;}
.wsa2{word-spacing:27.190800px;}
.wsee{word-spacing:27.429840px;}
.wsa1{word-spacing:27.907920px;}
.ws8a{word-spacing:28.146960px;}
.ws91{word-spacing:28.326240px;}
.ws59{word-spacing:28.625040px;}
.ws5c{word-spacing:28.864080px;}
.ws134{word-spacing:29.043360px;}
.ws7b{word-spacing:30.059280px;}
.wscb{word-spacing:30.298320px;}
.ws100{word-spacing:30.656880px;}
.ws3a{word-spacing:30.776400px;}
.wse1{word-spacing:31.015440px;}
.ws68{word-spacing:31.493520px;}
.wscd{word-spacing:31.732560px;}
.ws69{word-spacing:31.911840px;}
.wsb1{word-spacing:32.210640px;}
.wsb3{word-spacing:32.449680px;}
.wsf0{word-spacing:32.927760px;}
.ws3e{word-spacing:33.166800px;}
.wsbb{word-spacing:33.346080px;}
.ws13b{word-spacing:33.644880px;}
.ws108{word-spacing:34.362000px;}
.ws6b{word-spacing:34.601040px;}
.ws10c{word-spacing:35.497440px;}
.wsf3{word-spacing:35.796240px;}
.ws12a{word-spacing:36.035280px;}
.wse5{word-spacing:36.214560px;}
.ws121{word-spacing:36.991440px;}
.wse4{word-spacing:37.290240px;}
.ws88{word-spacing:37.529280px;}
.wsf2{word-spacing:38.007360px;}
.ws6d{word-spacing:38.246400px;}
.wsb0{word-spacing:38.724480px;}
.wse0{word-spacing:38.963520px;}
.ws73{word-spacing:39.441600px;}
.ws135{word-spacing:39.859920px;}
.wscf{word-spacing:40.158720px;}
.wsf1{word-spacing:40.875840px;}
.ws65{word-spacing:42.310080px;}
.ws112{word-spacing:42.608880px;}
.ws116{word-spacing:43.744320px;}
.ws117{word-spacing:45.417600px;}
.ws4a{word-spacing:45.895680px;}
.ws13e{word-spacing:46.314000px;}
.ws105{word-spacing:46.612800px;}
.ws106{word-spacing:46.851840px;}
.ws3c{word-spacing:47.329920px;}
.ws110{word-spacing:47.568960px;}
.ws3b{word-spacing:47.808000px;}
.ws51{word-spacing:48.047040px;}
.ws74{word-spacing:49.720320px;}
.ws13d{word-spacing:50.915520px;}
.wscc{word-spacing:51.333840px;}
.ws10d{word-spacing:55.995120px;}
.ws8c{word-spacing:56.413440px;}
.wsd0{word-spacing:56.712240px;}
.ws12c{word-spacing:57.668400px;}
.ws10f{word-spacing:58.385520px;}
.ws102{word-spacing:59.042880px;}
.ws128{word-spacing:62.688240px;}
.wsf9{word-spacing:63.166320px;}
.ws47{word-spacing:65.317680px;}
.ws109{word-spacing:68.963040px;}
.ws103{word-spacing:71.831520px;}
.ws141{word-spacing:72.548640px;}
.ws120{word-spacing:72.787680px;}
.ws140{word-spacing:80.436960px;}
.ws118{word-spacing:82.648080px;}
.ws13a{word-spacing:82.887120px;}
.wse8{word-spacing:84.082320px;}
.wse7{word-spacing:84.500640px;}
.wsb9{word-spacing:89.341200px;}
.ws46{word-spacing:95.078160px;}
.ws111{word-spacing:102.070080px;}
.ws92{word-spacing:102.309120px;}
.wsed{word-spacing:104.938560px;}
.ws13c{word-spacing:110.675520px;}
.ws114{word-spacing:117.189360px;}
.ws13f{word-spacing:117.906480px;}
.ws10a{word-spacing:124.360560px;}
.ws136{word-spacing:135.177120px;}
.wsfe{word-spacing:141.690960px;}
.ws6a{word-spacing:145.694880px;}
.wsf4{word-spacing:145.993680px;}
.ws124{word-spacing:147.427920px;}
.ws10e{word-spacing:151.013520px;}
.ws138{word-spacing:155.316240px;}
.ws104{word-spacing:163.981440px;}
.ws137{word-spacing:166.132800px;}
.wse9{word-spacing:188.483040px;}
.ws119{word-spacing:202.168080px;}
.ws11a{word-spacing:207.187920px;}
.wseb{word-spacing:209.339280px;}
.ws11d{word-spacing:237.426480px;}
.ws101{word-spacing:312.305760px;}
.wsef{word-spacing:367.045920px;}
.wsf7{word-spacing:371.348640px;}
.ws132{word-spacing:396.567360px;}
.ws127{word-spacing:662.917680px;}
.ws122{word-spacing:688.853520px;}
.ws107{word-spacing:839.329200px;}
.wsea{word-spacing:868.850640px;}
._3{margin-left:-71.177328px;}
._14{margin-left:-3.809808px;}
._2{margin-left:-2.287584px;}
._0{margin-left:-1.022400px;}
._1{width:1.346400px;}
._5{width:3.240000px;}
._15{width:4.777416px;}
._9{width:6.253848px;}
._12{width:8.724744px;}
._11{width:10.087488px;}
._4{width:11.620296px;}
._7{width:12.996000px;}
._10{width:16.589952px;}
._b{width:18.015840px;}
._a{width:19.831824px;}
._1b{width:21.304080px;}
._e{width:22.634064px;}
._f{width:24.262560px;}
._1a{width:26.866944px;}
._d{width:28.143360px;}
._19{width:32.685120px;}
._18{width:36.129600px;}
._8{width:48.314160px;}
._c{width:57.270960px;}
._6{width:85.838544px;}
._13{width:88.205760px;}
._16{width:638.655120px;}
._17{width:667.638720px;}
.fc1{color:rgb(14,40,65);}
.fc3{color:rgb(80,80,80);}
.fc2{color:rgb(71,71,71);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs0{font-size:48.240000px;}
.fs3{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs5{font-size:63.360000px;}
.y0{bottom:0.000000px;}
.yde{bottom:3.240000px;}
.ydc{bottom:37.800000px;}
.y3{bottom:56.340000px;}
.y195{bottom:111.525300px;}
.y115{bottom:115.334640px;}
.y3b{bottom:117.722160px;}
.y5b{bottom:117.865800px;}
.y26e{bottom:118.355940px;}
.yf9{bottom:118.365300px;}
.y1e9{bottom:118.650960px;}
.yc2{bottom:118.655100px;}
.y20b{bottom:118.669680px;}
.y240{bottom:118.758060px;}
.y8a{bottom:118.968840px;}
.y1b1{bottom:121.848120px;}
.y15e{bottom:123.800940px;}
.y194{bottom:128.631600px;}
.y170{bottom:128.868120px;}
.y114{bottom:132.620220px;}
.y3a{bottom:135.007740px;}
.y5a{bottom:135.151380px;}
.yf8{bottom:135.471600px;}
.y26d{bottom:135.641520px;}
.y132{bottom:135.715500px;}
.y1e8{bottom:135.936540px;}
.yc1{bottom:135.940680px;}
.y20a{bottom:135.955260px;}
.y23f{bottom:136.043640px;}
.y89{bottom:136.254420px;}
.y1b0{bottom:139.133700px;}
.y15d{bottom:141.086520px;}
.y193{bottom:145.917180px;}
.y16f{bottom:146.153700px;}
.y113{bottom:149.905800px;}
.y131{bottom:152.280000px;}
.y39{bottom:152.293320px;}
.y59{bottom:152.436960px;}
.yf7{bottom:152.757180px;}
.y26c{bottom:152.927100px;}
.y1e7{bottom:153.222120px;}
.yc0{bottom:153.226260px;}
.y209{bottom:153.240840px;}
.y23e{bottom:153.329220px;}
.y88{bottom:153.540000px;}
.y1af{bottom:156.240000px;}
.y15c{bottom:158.372100px;}
.y192{bottom:163.202760px;}
.y16e{bottom:163.260000px;}
.y112{bottom:167.012100px;}
.y130{bottom:168.655500px;}
.y38{bottom:169.578900px;}
.y58{bottom:169.722540px;}
.yf6{bottom:170.042760px;}
.y26b{bottom:170.212680px;}
.y1e6{bottom:170.507700px;}
.ybf{bottom:170.511840px;}
.y208{bottom:170.526420px;}
.y87{bottom:170.574300px;}
.y23d{bottom:170.614800px;}
.y1ae{bottom:173.520000px;}
.y15b{bottom:175.657680px;}
.y191{bottom:180.488340px;}
.y111{bottom:184.297680px;}
.y12f{bottom:185.220000px;}
.y37{bottom:186.864480px;}
.y57{bottom:187.008120px;}
.yf5{bottom:187.328340px;}
.y26a{bottom:187.498260px;}
.y1e5{bottom:187.793280px;}
.ybe{bottom:187.797420px;}
.y207{bottom:187.812000px;}
.y86{bottom:187.859880px;}
.y23c{bottom:187.900380px;}
.y1ad{bottom:190.783260px;}
.y15a{bottom:192.763980px;}
.y16d{bottom:196.015500px;}
.y190{bottom:197.773920px;}
.y12e{bottom:197.813520px;}
.y110{bottom:201.583260px;}
.y36{bottom:204.150060px;}
.y56{bottom:204.293700px;}
.y269{bottom:204.604560px;}
.yf4{bottom:204.613920px;}
.y1e4{bottom:204.899580px;}
.ybd{bottom:204.903720px;}
.y206{bottom:204.918300px;}
.y85{bottom:204.966180px;}
.y23b{bottom:205.006680px;}
.y1ac{bottom:208.068840px;}
.y159{bottom:210.049560px;}
.y16c{bottom:212.580000px;}
.y18f{bottom:215.059500px;}
.y10f{bottom:218.868840px;}
.y35{bottom:221.256360px;}
.y55{bottom:221.400000px;}
.yf3{bottom:221.720220px;}
.y268{bottom:221.890140px;}
.y1e3{bottom:222.185160px;}
.ybc{bottom:222.189300px;}
.y205{bottom:222.203880px;}
.y84{bottom:222.251760px;}
.y23a{bottom:222.292260px;}
.y1ab{bottom:225.354420px;}
.y158{bottom:227.335140px;}
.y16b{bottom:229.144500px;}
.y18e{bottom:232.165800px;}
.y10e{bottom:236.154420px;}
.y54{bottom:238.362660px;}
.y34{bottom:238.541940px;}
.yf2{bottom:239.005800px;}
.y267{bottom:239.175720px;}
.y1e2{bottom:239.470740px;}
.ybb{bottom:239.474880px;}
.y204{bottom:239.489460px;}
.y83{bottom:239.537340px;}
.y239{bottom:239.577840px;}
.y1aa{bottom:242.640000px;}
.y157{bottom:244.800000px;}
.y16a{bottom:245.520000px;}
.y18d{bottom:249.451380px;}
.y10d{bottom:253.440000px;}
.y53{bottom:255.648240px;}
.y33{bottom:255.827520px;}
.yf1{bottom:256.291380px;}
.y266{bottom:256.461300px;}
.y1e1{bottom:256.756320px;}
.yba{bottom:256.760460px;}
.y203{bottom:256.775040px;}
.y82{bottom:256.822920px;}
.y238{bottom:256.863420px;}
.y169{bottom:258.122160px;}
.y156{bottom:262.889280px;}
.y18c{bottom:266.736960px;}
.y52{bottom:272.933820px;}
.yf0{bottom:273.576960px;}
.y265{bottom:273.746880px;}
.y1e0{bottom:274.041900px;}
.yb9{bottom:274.046040px;}
.y202{bottom:274.060620px;}
.y81{bottom:274.108500px;}
.y237{bottom:274.149000px;}
.y32{bottom:274.188780px;}
.y1a9{bottom:275.211000px;}
.y155{bottom:280.174860px;}
.y18b{bottom:284.022540px;}
.y10c{bottom:286.020000px;}
.y51{bottom:290.219400px;}
.yef{bottom:290.862540px;}
.y264{bottom:291.032460px;}
.y1df{bottom:291.327480px;}
.yb8{bottom:291.331620px;}
.y201{bottom:291.346200px;}
.y80{bottom:291.394080px;}
.y236{bottom:291.434580px;}
.y31{bottom:291.474360px;}
.y1a8{bottom:291.775500px;}
.y154{bottom:297.460440px;}
.y10b{bottom:298.776600px;}
.y18a{bottom:301.308120px;}
.y50{bottom:307.325700px;}
.y263{bottom:308.138760px;}
.yee{bottom:308.148120px;}
.y1a7{bottom:308.340000px;}
.y1de{bottom:308.433780px;}
.yb7{bottom:308.437920px;}
.y200{bottom:308.452500px;}
.y7f{bottom:308.500380px;}
.y235{bottom:308.540880px;}
.y30{bottom:308.580660px;}
.y153{bottom:314.746020px;}
.y189{bottom:318.593700px;}
.y1a6{bottom:320.872320px;}
.y4f{bottom:324.611280px;}
.yed{bottom:325.254420px;}
.y262{bottom:325.424340px;}
.y1dd{bottom:325.719360px;}
.yb6{bottom:325.723500px;}
.y1ff{bottom:325.738080px;}
.y7e{bottom:325.785960px;}
.y234{bottom:325.826460px;}
.y2f{bottom:325.866240px;}
.y152{bottom:332.031600px;}
.y188{bottom:335.700000px;}
.y4e{bottom:341.896860px;}
.yec{bottom:342.540000px;}
.y261{bottom:342.709920px;}
.y1dc{bottom:343.004940px;}
.yb5{bottom:343.009080px;}
.y1fe{bottom:343.023660px;}
.y7d{bottom:343.071540px;}
.y233{bottom:343.112040px;}
.y2e{bottom:343.151820px;}
.y151{bottom:349.317180px;}
.yeb{bottom:358.920000px;}
.y4d{bottom:359.182440px;}
.y260{bottom:359.995500px;}
.y1db{bottom:360.290520px;}
.yb4{bottom:360.294660px;}
.y1fd{bottom:360.309240px;}
.y7c{bottom:360.357120px;}
.y232{bottom:360.397620px;}
.y2d{bottom:360.437400px;}
.y150{bottom:366.423480px;}
.y187{bottom:368.455500px;}
.yea{bottom:376.020000px;}
.y4c{bottom:376.468020px;}
.y25f{bottom:377.281080px;}
.y1da{bottom:377.576100px;}
.yb3{bottom:377.580240px;}
.y1fc{bottom:377.594820px;}
.y7b{bottom:377.642700px;}
.y231{bottom:377.683200px;}
.y2c{bottom:377.722980px;}
.y14f{bottom:383.709060px;}
.y186{bottom:385.020000px;}
.ye9{bottom:393.300000px;}
.y4b{bottom:393.753600px;}
.y25e{bottom:394.566660px;}
.y1d9{bottom:394.861680px;}
.yb2{bottom:394.865820px;}
.y1fb{bottom:394.880400px;}
.y7a{bottom:394.928280px;}
.y230{bottom:394.968780px;}
.y2b{bottom:395.008560px;}
.y185{bottom:397.776240px;}
.y14e{bottom:400.994640px;}
.ye8{bottom:410.580000px;}
.y4a{bottom:410.859900px;}
.y25d{bottom:411.672960px;}
.y1d8{bottom:411.967980px;}
.yb1{bottom:411.972120px;}
.y1fa{bottom:411.986700px;}
.y79{bottom:412.034580px;}
.y22f{bottom:412.075080px;}
.y2a{bottom:412.114860px;}
.y14d{bottom:418.280220px;}
.ye7{bottom:427.860000px;}
.y49{bottom:428.145480px;}
.y25c{bottom:428.958540px;}
.y1d7{bottom:429.253560px;}
.yb0{bottom:429.257700px;}
.y1f9{bottom:429.272280px;}
.y78{bottom:429.320160px;}
.y22e{bottom:429.360660px;}
.y29{bottom:429.400440px;}
.y14c{bottom:435.565800px;}
.ye6{bottom:445.140000px;}
.y48{bottom:445.431060px;}
.y25b{bottom:446.244120px;}
.y1d6{bottom:446.539140px;}
.yaf{bottom:446.543280px;}
.y1f8{bottom:446.557860px;}
.y77{bottom:446.605740px;}
.y22d{bottom:446.646240px;}
.y28{bottom:446.686020px;}
.y14b{bottom:452.672100px;}
.ye5{bottom:462.420000px;}
.y47{bottom:462.716640px;}
.y12d{bottom:462.774420px;}
.y25a{bottom:463.529700px;}
.y1d5{bottom:463.824720px;}
.yae{bottom:463.828860px;}
.y1f7{bottom:463.843440px;}
.y76{bottom:463.891320px;}
.y22c{bottom:463.931820px;}
.y27{bottom:463.971600px;}
.y14a{bottom:469.957680px;}
.ye4{bottom:479.520000px;}
.y46{bottom:480.002220px;}
.y12c{bottom:480.060000px;}
.y259{bottom:480.815280px;}
.y1d4{bottom:481.110300px;}
.yad{bottom:481.114440px;}
.y1f6{bottom:481.129020px;}
.y75{bottom:481.176900px;}
.y22b{bottom:481.217400px;}
.y26{bottom:481.257180px;}
.y149{bottom:487.243260px;}
.ye3{bottom:496.800000px;}
.y45{bottom:497.287800px;}
.y12b{bottom:497.306520px;}
.y258{bottom:498.100860px;}
.y1d3{bottom:498.395880px;}
.yac{bottom:498.400020px;}
.y1f5{bottom:498.414600px;}
.y74{bottom:498.462480px;}
.y22a{bottom:498.502980px;}
.y25{bottom:498.542760px;}
.y148{bottom:504.528840px;}
.ye2{bottom:514.080000px;}
.y44{bottom:514.394100px;}
.y12a{bottom:514.592100px;}
.y257{bottom:515.207160px;}
.y1d2{bottom:515.502180px;}
.yab{bottom:515.506320px;}
.y1f4{bottom:515.520900px;}
.y73{bottom:515.568780px;}
.y229{bottom:515.609280px;}
.y24{bottom:515.649060px;}
.y1a5{bottom:517.617180px;}
.y147{bottom:521.814420px;}
.ye1{bottom:531.360000px;}
.y43{bottom:531.679680px;}
.y129{bottom:531.698400px;}
.y256{bottom:532.492740px;}
.y1d1{bottom:532.787760px;}
.yaa{bottom:532.791900px;}
.y1f3{bottom:532.806480px;}
.y168{bottom:532.809000px;}
.y72{bottom:532.854360px;}
.y228{bottom:532.894860px;}
.y23{bottom:532.934640px;}
.y1a4{bottom:534.902760px;}
.y146{bottom:539.100000px;}
.ye0{bottom:548.640000px;}
.y42{bottom:548.965260px;}
.y128{bottom:548.983980px;}
.y255{bottom:549.778320px;}
.y1d0{bottom:550.073340px;}
.ya9{bottom:550.077480px;}
.y1f2{bottom:550.092060px;}
.y167{bottom:550.094580px;}
.y71{bottom:550.139940px;}
.y227{bottom:550.180440px;}
.y22{bottom:550.220220px;}
.y1a3{bottom:552.188340px;}
.ydf{bottom:565.740000px;}
.y41{bottom:566.250840px;}
.y127{bottom:566.269560px;}
.y254{bottom:567.063900px;}
.y1cf{bottom:567.358920px;}
.ya8{bottom:567.363060px;}
.y1f1{bottom:567.377640px;}
.y166{bottom:567.380160px;}
.y70{bottom:567.425520px;}
.y226{bottom:567.466020px;}
.y21{bottom:567.505800px;}
.y1a2{bottom:569.473920px;}
.y145{bottom:571.675500px;}
.y40{bottom:583.536420px;}
.y126{bottom:583.555140px;}
.ydb{bottom:583.740000px;}
.y253{bottom:584.349480px;}
.y1ce{bottom:584.644500px;}
.ya7{bottom:584.648640px;}
.y1f0{bottom:584.663220px;}
.y165{bottom:584.665740px;}
.y6f{bottom:584.711100px;}
.y225{bottom:584.751600px;}
.y20{bottom:584.791380px;}
.y1a1{bottom:586.759500px;}
.y144{bottom:588.240000px;}
.y10a{bottom:590.016960px;}
.y3f{bottom:600.642720px;}
.y143{bottom:600.929820px;}
.y125{bottom:601.020000px;}
.y252{bottom:601.455780px;}
.y1cd{bottom:601.750800px;}
.ya6{bottom:601.754940px;}
.y1ef{bottom:601.769520px;}
.y164{bottom:601.772040px;}
.y6e{bottom:601.817400px;}
.y224{bottom:601.857900px;}
.y1f{bottom:601.897680px;}
.y1a0{bottom:604.045080px;}
.ydd{bottom:604.260000px;}
.y109{bottom:607.302540px;}
.y3e{bottom:617.928300px;}
.y251{bottom:618.741360px;}
.y1cc{bottom:619.036380px;}
.ya5{bottom:619.040520px;}
.y1ee{bottom:619.055100px;}
.y163{bottom:619.057620px;}
.y6d{bottom:619.102980px;}
.y223{bottom:619.143480px;}
.y124{bottom:619.177680px;}
.y1e{bottom:619.183260px;}
.y19f{bottom:621.151380px;}
.y108{bottom:624.408840px;}
.y3d{bottom:635.213880px;}
.y250{bottom:636.026940px;}
.y1cb{bottom:636.321960px;}
.ya4{bottom:636.326100px;}
.y1ed{bottom:636.340680px;}
.y162{bottom:636.343200px;}
.y6c{bottom:636.388560px;}
.y222{bottom:636.429060px;}
.y123{bottom:636.463260px;}
.y1d{bottom:636.468840px;}
.y19e{bottom:638.436960px;}
.y107{bottom:641.694420px;}
.y3c{bottom:652.499460px;}
.y24f{bottom:653.312520px;}
.y1ca{bottom:653.607540px;}
.ya3{bottom:653.611680px;}
.y1ec{bottom:653.626260px;}
.y161{bottom:653.628780px;}
.y6b{bottom:653.674140px;}
.y221{bottom:653.714640px;}
.y122{bottom:653.748840px;}
.y1c{bottom:653.754420px;}
.y19d{bottom:655.722540px;}
.yda{bottom:656.451000px;}
.y106{bottom:658.922760px;}
.y24e{bottom:670.598100px;}
.y1c9{bottom:670.893120px;}
.ya2{bottom:670.897260px;}
.y1eb{bottom:670.911840px;}
.y160{bottom:670.914360px;}
.y6a{bottom:670.959720px;}
.y220{bottom:671.000220px;}
.y121{bottom:671.034420px;}
.y1b{bottom:671.040000px;}
.y19c{bottom:673.008120px;}
.yd9{bottom:673.015500px;}
.y105{bottom:676.208340px;}
.y24d{bottom:687.883680px;}
.y1c8{bottom:688.178700px;}
.ya1{bottom:688.182840px;}
.y1ea{bottom:688.197420px;}
.y15f{bottom:688.199940px;}
.y69{bottom:688.245300px;}
.y21f{bottom:688.285800px;}
.y1a{bottom:688.320000px;}
.yd8{bottom:689.580000px;}
.y19b{bottom:690.293700px;}
.y104{bottom:693.493920px;}
.y24c{bottom:704.989980px;}
.y1c7{bottom:705.285000px;}
.ya0{bottom:705.289140px;}
.y120{bottom:705.303720px;}
.yd7{bottom:705.306240px;}
.y68{bottom:705.351600px;}
.y21e{bottom:705.392100px;}
.y19{bottom:705.414420px;}
.y19a{bottom:707.400000px;}
.y103{bottom:710.779500px;}
.y24b{bottom:722.275560px;}
.y1c6{bottom:722.570580px;}
.y9f{bottom:722.574720px;}
.y11f{bottom:722.589300px;}
.yd6{bottom:722.591820px;}
.y67{bottom:722.637180px;}
.y21d{bottom:722.677680px;}
.y18{bottom:722.700000px;}
.y102{bottom:727.885800px;}
.y184{bottom:738.692100px;}
.y24a{bottom:739.561140px;}
.y1c5{bottom:739.856160px;}
.y9e{bottom:739.860300px;}
.y11e{bottom:739.874880px;}
.yd5{bottom:739.877400px;}
.y66{bottom:739.922760px;}
.y21c{bottom:739.963260px;}
.y17{bottom:739.980000px;}
.y199{bottom:740.151000px;}
.y101{bottom:745.171380px;}
.y183{bottom:755.977680px;}
.y198{bottom:756.715500px;}
.y249{bottom:756.846720px;}
.y1c4{bottom:757.141740px;}
.y9d{bottom:757.145880px;}
.y11d{bottom:757.160460px;}
.yd4{bottom:757.162980px;}
.y65{bottom:757.208340px;}
.y21b{bottom:757.248840px;}
.y16{bottom:757.260000px;}
.y100{bottom:762.456960px;}
.y182{bottom:773.263260px;}
.y197{bottom:773.280000px;}
.y248{bottom:774.132300px;}
.y1c3{bottom:774.427320px;}
.y9c{bottom:774.431460px;}
.y11c{bottom:774.446040px;}
.yd3{bottom:774.448560px;}
.y64{bottom:774.493920px;}
.y21a{bottom:774.534420px;}
.y15{bottom:774.540000px;}
.yff{bottom:779.742540px;}
.y196{bottom:786.039480px;}
.y181{bottom:790.548840px;}
.y247{bottom:791.417880px;}
.y1c2{bottom:791.712900px;}
.y9b{bottom:791.717040px;}
.y11b{bottom:791.731620px;}
.yd2{bottom:791.734140px;}
.y63{bottom:791.779500px;}
.y14{bottom:791.820000px;}
.yfe{bottom:797.028120px;}
.y180{bottom:807.834420px;}
.y246{bottom:808.524180px;}
.y1c1{bottom:808.819200px;}
.y9a{bottom:808.823340px;}
.y142{bottom:808.834860px;}
.y11a{bottom:808.837920px;}
.yd1{bottom:808.840440px;}
.y62{bottom:808.885800px;}
.y13{bottom:808.920000px;}
.yfd{bottom:814.313700px;}
.y17f{bottom:825.120000px;}
.y245{bottom:825.809760px;}
.y1c0{bottom:826.104780px;}
.y99{bottom:826.108920px;}
.y141{bottom:826.120440px;}
.y119{bottom:826.123500px;}
.yd0{bottom:826.126020px;}
.y61{bottom:826.171380px;}
.y12{bottom:826.200000px;}
.yfc{bottom:831.420000px;}
.y244{bottom:843.095340px;}
.y27b{bottom:843.379200px;}
.y1bf{bottom:843.390360px;}
.y98{bottom:843.394500px;}
.y140{bottom:843.406020px;}
.y118{bottom:843.409080px;}
.ycf{bottom:843.411600px;}
.y17e{bottom:843.428340px;}
.y60{bottom:843.456960px;}
.y219{bottom:843.463260px;}
.y11{bottom:843.480000px;}
.y243{bottom:860.380920px;}
.y27a{bottom:860.664780px;}
.y1be{bottom:860.675940px;}
.y97{bottom:860.680080px;}
.y13f{bottom:860.691600px;}
.y117{bottom:860.694660px;}
.yce{bottom:860.697180px;}
.y17d{bottom:860.713920px;}
.y5f{bottom:860.742540px;}
.y218{bottom:860.748840px;}
.y10{bottom:860.760000px;}
.yfb{bottom:864.180000px;}
.yfa{bottom:876.884040px;}
.y242{bottom:877.666500px;}
.y279{bottom:877.950360px;}
.y1bd{bottom:877.961520px;}
.y96{bottom:877.965660px;}
.y13e{bottom:877.977180px;}
.y116{bottom:877.980240px;}
.ycd{bottom:877.982760px;}
.y17c{bottom:877.999500px;}
.y5e{bottom:878.028120px;}
.y217{bottom:878.034420px;}
.yf{bottom:878.040000px;}
.y241{bottom:894.952080px;}
.y1bc{bottom:895.247100px;}
.y95{bottom:895.251240px;}
.y13d{bottom:895.262760px;}
.ye{bottom:895.265820px;}
.ycc{bottom:895.268340px;}
.y17b{bottom:895.285080px;}
.y5d{bottom:895.313700px;}
.y216{bottom:895.320000px;}
.y215{bottom:912.058380px;}
.y278{bottom:912.327300px;}
.y1bb{bottom:912.353400px;}
.y94{bottom:912.357540px;}
.y13c{bottom:912.369060px;}
.yd{bottom:912.372120px;}
.ycb{bottom:912.374640px;}
.y17a{bottom:912.391380px;}
.y5c{bottom:912.420000px;}
.y214{bottom:929.343960px;}
.y277{bottom:929.612880px;}
.y1ba{bottom:929.638980px;}
.y93{bottom:929.643120px;}
.y13b{bottom:929.654640px;}
.yc{bottom:929.657700px;}
.yca{bottom:929.660220px;}
.y179{bottom:929.676960px;}
.y213{bottom:946.629540px;}
.y276{bottom:946.898460px;}
.y1b9{bottom:946.924560px;}
.y92{bottom:946.928700px;}
.y13a{bottom:946.940220px;}
.yb{bottom:946.943280px;}
.yc9{bottom:946.945800px;}
.y178{bottom:946.962540px;}
.y212{bottom:963.915120px;}
.y275{bottom:964.184040px;}
.y1b8{bottom:964.210140px;}
.y91{bottom:964.214280px;}
.y139{bottom:964.225800px;}
.ya{bottom:964.228860px;}
.yc8{bottom:964.231380px;}
.y177{bottom:964.248120px;}
.y211{bottom:981.200700px;}
.y274{bottom:981.469620px;}
.y1b7{bottom:981.495720px;}
.y90{bottom:981.499860px;}
.y138{bottom:981.511380px;}
.y9{bottom:981.514440px;}
.yc7{bottom:981.516960px;}
.y176{bottom:981.533700px;}
.y210{bottom:998.307000px;}
.y273{bottom:998.575920px;}
.y1b6{bottom:998.602020px;}
.y8f{bottom:998.606160px;}
.y137{bottom:998.617680px;}
.y8{bottom:998.620740px;}
.yc6{bottom:998.623260px;}
.y175{bottom:998.640000px;}
.y20f{bottom:1015.592580px;}
.y272{bottom:1015.861500px;}
.y174{bottom:1015.885800px;}
.y1b5{bottom:1015.887600px;}
.y8e{bottom:1015.891740px;}
.y136{bottom:1015.903260px;}
.y7{bottom:1015.906320px;}
.yc5{bottom:1015.908840px;}
.y20e{bottom:1032.878160px;}
.y271{bottom:1033.147080px;}
.y173{bottom:1033.171380px;}
.y1b4{bottom:1033.173180px;}
.y8d{bottom:1033.177320px;}
.y135{bottom:1033.188840px;}
.y6{bottom:1033.191900px;}
.yc4{bottom:1033.194420px;}
.y20d{bottom:1050.163740px;}
.y270{bottom:1050.432660px;}
.y172{bottom:1050.456960px;}
.y1b3{bottom:1050.458760px;}
.y8c{bottom:1050.462900px;}
.y134{bottom:1050.474420px;}
.y5{bottom:1050.477480px;}
.yc3{bottom:1050.480000px;}
.y20c{bottom:1067.449320px;}
.y26f{bottom:1067.718240px;}
.y171{bottom:1067.742540px;}
.y1b2{bottom:1067.744340px;}
.y8b{bottom:1067.748480px;}
.y133{bottom:1067.760000px;}
.y4{bottom:1067.763060px;}
.y2{bottom:1109.703060px;}
.y1{bottom:1123.560000px;}
.ha{height:17.098500px;}
.h9{height:17.100000px;}
.h8{height:17.280000px;}
.h2{height:33.518320px;}
.h6{height:35.991211px;}
.h1{height:39.011484px;}
.h4{height:40.501406px;}
.h5{height:41.493516px;}
.h3{height:41.522695px;}
.hb{height:41.751655px;}
.hc{height:47.894766px;}
.h7{height:51.840000px;}
.h0{height:1188.000000px;}
.w1{width:72.000000px;}
.w4{width:79.561500px;}
.w2{width:86.580000px;}
.w3{width:93.960000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x11{left:8.100000px;}
.x1c{left:30.240000px;}
.x19{left:37.620000px;}
.x17{left:44.640000px;}
.x18{left:52.020000px;}
.x1a{left:59.580000px;}
.x1b{left:67.500000px;}
.x3{left:106.380000px;}
.x10{left:114.300000px;}
.xb{left:127.620000px;}
.xc{left:133.102980px;}
.x25{left:143.954100px;}
.x12{left:186.300000px;}
.x13{left:194.400000px;}
.x1{left:235.080000px;}
.x2{left:242.648100px;}
.x14{left:272.880000px;}
.x6{left:281.118240px;}
.x15{left:366.840000px;}
.x16{left:374.760000px;}
.x4{left:389.836620px;}
.x7{left:405.493740px;}
.x8{left:407.465820px;}
.xa{left:430.861860px;}
.x1f{left:444.605940px;}
.x23{left:445.856220px;}
.x22{left:448.147440px;}
.x9{left:458.754840px;}
.x5{left:469.392120px;}
.xd{left:471.508920px;}
.xf{left:492.753600px;}
.xe{left:498.520440px;}
.x24{left:509.381100px;}
.x20{left:631.244160px;}
.x1e{left:768.958920px;}
.x21{left:809.080740px;}
.x1d{left:811.651860px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.ls1f{letter-spacing:-0.857600pt;}
.ls4a{letter-spacing:-0.849920pt;}
.ls47{letter-spacing:-0.576000pt;}
.ls52{letter-spacing:-0.531200pt;}
.ls27{letter-spacing:-0.478080pt;}
.ls21{letter-spacing:-0.471680pt;}
.ls24{letter-spacing:-0.424960pt;}
.ls49{letter-spacing:-0.371840pt;}
.ls26{letter-spacing:-0.318720pt;}
.ls20{letter-spacing:-0.300160pt;}
.ls45{letter-spacing:-0.240000pt;}
.ls25{letter-spacing:-0.212480pt;}
.ls4b{letter-spacing:-0.192000pt;}
.ls22{letter-spacing:-0.106240pt;}
.ls23{letter-spacing:-0.053120pt;}
.ls48{letter-spacing:-0.048000pt;}
.ls1e{letter-spacing:0.000000pt;}
.ls3e{letter-spacing:0.047360pt;}
.ls6{letter-spacing:0.053120pt;}
.ls42{letter-spacing:0.079680pt;}
.ls46{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.100928pt;}
.ls17{letter-spacing:0.106240pt;}
.ls4c{letter-spacing:0.117760pt;}
.ls31{letter-spacing:0.148736pt;}
.lsa{letter-spacing:0.159360pt;}
.ls3b{letter-spacing:0.160000pt;}
.ls1a{letter-spacing:0.164672pt;}
.ls0{letter-spacing:0.171520pt;}
.ls34{letter-spacing:0.175296pt;}
.ls5e{letter-spacing:0.180608pt;}
.lsb{letter-spacing:0.185920pt;}
.ls16{letter-spacing:0.191232pt;}
.ls5f{letter-spacing:0.207168pt;}
.ls2{letter-spacing:0.212480pt;}
.ls1d{letter-spacing:0.215040pt;}
.ls15{letter-spacing:0.217792pt;}
.ls5{letter-spacing:0.223104pt;}
.ls62{letter-spacing:0.228416pt;}
.ls3c{letter-spacing:0.231040pt;}
.ls50{letter-spacing:0.233728pt;}
.ls2a{letter-spacing:0.244352pt;}
.ls10{letter-spacing:0.249664pt;}
.ls54{letter-spacing:0.254976pt;}
.ls5b{letter-spacing:0.260288pt;}
.ls53{letter-spacing:0.265600pt;}
.ls44{letter-spacing:0.270912pt;}
.lse{letter-spacing:0.276224pt;}
.ls28{letter-spacing:0.281536pt;}
.ls5d{letter-spacing:0.292160pt;}
.ls1{letter-spacing:0.300160pt;}
.ls63{letter-spacing:0.313408pt;}
.ls3{letter-spacing:0.318720pt;}
.ls57{letter-spacing:0.320000pt;}
.ls60{letter-spacing:0.329344pt;}
.lsd{letter-spacing:0.334656pt;}
.ls3a{letter-spacing:0.336000pt;}
.ls4f{letter-spacing:0.339968pt;}
.ls1c{letter-spacing:0.343040pt;}
.ls32{letter-spacing:0.345280pt;}
.ls61{letter-spacing:0.393088pt;}
.ls56{letter-spacing:0.480000pt;}
.ls3d{letter-spacing:0.640000pt;}
.ls3f{letter-spacing:0.796800pt;}
.ls12{letter-spacing:0.849920pt;}
.lsf{letter-spacing:1.434240pt;}
.ls9{letter-spacing:2.050432pt;}
.ls8{letter-spacing:2.071680pt;}
.ls30{letter-spacing:2.709120pt;}
.ls55{letter-spacing:3.436864pt;}
.ls2f{letter-spacing:3.984000pt;}
.ls39{letter-spacing:4.621440pt;}
.ls1b{letter-spacing:5.258880pt;}
.ls33{letter-spacing:8.499200pt;}
.ls19{letter-spacing:9.025088pt;}
.ls59{letter-spacing:9.136640pt;}
.ls40{letter-spacing:9.774080pt;}
.ls51{letter-spacing:10.411520pt;}
.ls41{letter-spacing:11.022400pt;}
.ls4e{letter-spacing:11.048960pt;}
.ls18{letter-spacing:11.686400pt;}
.ls29{letter-spacing:11.718272pt;}
.ls2b{letter-spacing:12.323840pt;}
.ls2d{letter-spacing:12.961280pt;}
.ls4d{letter-spacing:13.598720pt;}
.ls58{letter-spacing:14.236160pt;}
.ls2c{letter-spacing:16.148480pt;}
.ls2e{letter-spacing:17.423360pt;}
.ls36{letter-spacing:18.060800pt;}
.lsc{letter-spacing:20.451200pt;}
.ls43{letter-spacing:21.301120pt;}
.ls14{letter-spacing:22.576000pt;}
.ls37{letter-spacing:25.125760pt;}
.ls38{letter-spacing:25.157632pt;}
.ls5a{letter-spacing:32.137600pt;}
.ls13{letter-spacing:42.389760pt;}
.ls35{letter-spacing:50.092160pt;}
.ls11{letter-spacing:56.891520pt;}
.ls5c{letter-spacing:59.016320pt;}
.ls4{letter-spacing:175.508480pt;}
.wsf{word-spacing:-53.120000pt;}
.ws6{word-spacing:-13.598720pt;}
.wsb6{word-spacing:-13.545600pt;}
.wsc{word-spacing:-13.492480pt;}
.ws9{word-spacing:-13.465920pt;}
.ws7{word-spacing:-13.386240pt;}
.ws5{word-spacing:-13.333120pt;}
.ws8{word-spacing:-13.280000pt;}
.wsa{word-spacing:-13.226880pt;}
.wsb{word-spacing:-13.173760pt;}
.ws5a{word-spacing:-13.067520pt;}
.wsd{word-spacing:-12.961280pt;}
.wse{word-spacing:-12.855040pt;}
.ws0{word-spacing:-11.063040pt;}
.ws4{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.419840pt;}
.ws2{word-spacing:-9.862400pt;}
.ws86{word-spacing:-9.744000pt;}
.ws84{word-spacing:-9.696000pt;}
.ws87{word-spacing:-9.552000pt;}
.wsd9{word-spacing:-9.504000pt;}
.ws85{word-spacing:-8.640000pt;}
.ws1{word-spacing:-6.935040pt;}
.ws4d{word-spacing:-3.346560pt;}
.wsfb{word-spacing:-3.187200pt;}
.ws9f{word-spacing:-3.134080pt;}
.ws133{word-spacing:-3.080960pt;}
.ws61{word-spacing:-2.974720pt;}
.ws23{word-spacing:-2.709120pt;}
.ws131{word-spacing:-2.549760pt;}
.wsbd{word-spacing:-2.496640pt;}
.wsd4{word-spacing:-2.448000pt;}
.wsd3{word-spacing:-2.400000pt;}
.ws24{word-spacing:-2.337280pt;}
.wsba{word-spacing:-2.284160pt;}
.ws66{word-spacing:-2.071680pt;}
.wsbe{word-spacing:-1.965440pt;}
.ws71{word-spacing:-1.859200pt;}
.wsdb{word-spacing:-1.824000pt;}
.ws7e{word-spacing:-1.699840pt;}
.ws56{word-spacing:-1.434240pt;}
.wsa4{word-spacing:-1.274880pt;}
.wsa5{word-spacing:-1.221760pt;}
.ws99{word-spacing:-1.200000pt;}
.ws82{word-spacing:-1.062400pt;}
.wsb2{word-spacing:-1.009280pt;}
.ws11{word-spacing:-0.814720pt;}
.ws40{word-spacing:-0.796800pt;}
.ws113{word-spacing:-0.637440pt;}
.ws3f{word-spacing:-0.584320pt;}
.wsc8{word-spacing:-0.424960pt;}
.ws98{word-spacing:-0.336000pt;}
.ws44{word-spacing:-0.318720pt;}
.wsbf{word-spacing:-0.265600pt;}
.ws18{word-spacing:-0.212480pt;}
.ws15{word-spacing:-0.171520pt;}
.ws1a{word-spacing:-0.159360pt;}
.wsc7{word-spacing:-0.144000pt;}
.ws17{word-spacing:-0.106240pt;}
.ws9a{word-spacing:-0.096000pt;}
.ws9e{word-spacing:-0.053120pt;}
.ws10{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.053120pt;}
.wsa8{word-spacing:0.096000pt;}
.ws2d{word-spacing:0.106240pt;}
.ws16{word-spacing:0.159360pt;}
.ws27{word-spacing:0.212480pt;}
.ws9c{word-spacing:0.240000pt;}
.ws19{word-spacing:0.265600pt;}
.ws14{word-spacing:0.300160pt;}
.ws8d{word-spacing:0.318720pt;}
.wsa6{word-spacing:0.371840pt;}
.ws77{word-spacing:0.424960pt;}
.ws12{word-spacing:0.471680pt;}
.ws36{word-spacing:0.478080pt;}
.wsb7{word-spacing:0.531200pt;}
.ws9b{word-spacing:0.576000pt;}
.ws81{word-spacing:0.584320pt;}
.ws13{word-spacing:0.643200pt;}
.ws22{word-spacing:0.690560pt;}
.ws39{word-spacing:0.849920pt;}
.wsa0{word-spacing:0.903040pt;}
.ws35{word-spacing:1.115520pt;}
.ws80{word-spacing:1.328000pt;}
.ws34{word-spacing:1.487360pt;}
.ws28{word-spacing:1.752960pt;}
.wsfa{word-spacing:1.912320pt;}
.ws29{word-spacing:1.965440pt;}
.ws5b{word-spacing:2.124800pt;}
.ws20{word-spacing:2.390400pt;}
.wsd1{word-spacing:2.496640pt;}
.ws2b{word-spacing:2.602880pt;}
.wsc4{word-spacing:2.640000pt;}
.ws1e{word-spacing:2.656000pt;}
.ws1f{word-spacing:2.762240pt;}
.wsa9{word-spacing:2.815360pt;}
.ws2a{word-spacing:2.921600pt;}
.ws7d{word-spacing:3.027840pt;}
.ws21{word-spacing:3.134080pt;}
.wsb5{word-spacing:3.187200pt;}
.wsda{word-spacing:3.240320pt;}
.wsf8{word-spacing:3.293440pt;}
.wsd8{word-spacing:3.399680pt;}
.ws26{word-spacing:3.665280pt;}
.ws52{word-spacing:3.877760pt;}
.wsc6{word-spacing:3.936000pt;}
.ws12d{word-spacing:4.196480pt;}
.ws25{word-spacing:4.302720pt;}
.wsc5{word-spacing:4.320000pt;}
.ws123{word-spacing:4.462080pt;}
.wsb4{word-spacing:4.515200pt;}
.ws5e{word-spacing:4.674560pt;}
.wsc0{word-spacing:4.727680pt;}
.ws2f{word-spacing:4.940160pt;}
.ws115{word-spacing:5.099520pt;}
.ws57{word-spacing:5.152640pt;}
.ws58{word-spacing:5.312000pt;}
.ws2e{word-spacing:5.577600pt;}
.ws9d{word-spacing:5.790080pt;}
.wsd2{word-spacing:5.949440pt;}
.ws7c{word-spacing:6.268160pt;}
.ws10b{word-spacing:6.427520pt;}
.wsac{word-spacing:6.480640pt;}
.ws2c{word-spacing:6.905600pt;}
.ws129{word-spacing:7.011840pt;}
.ws11e{word-spacing:7.064960pt;}
.ws5f{word-spacing:7.118080pt;}
.wsc3{word-spacing:7.277440pt;}
.ws11f{word-spacing:7.330560pt;}
.ws62{word-spacing:7.543040pt;}
.wse6{word-spacing:7.755520pt;}
.wsce{word-spacing:7.776000pt;}
.wse2{word-spacing:7.914880pt;}
.ws41{word-spacing:8.180480pt;}
.wsff{word-spacing:8.339840pt;}
.ws42{word-spacing:8.552320pt;}
.ws3d{word-spacing:8.817920pt;}
.ws139{word-spacing:8.977280pt;}
.wsd5{word-spacing:9.030400pt;}
.wsdd{word-spacing:9.189760pt;}
.wsd7{word-spacing:9.349120pt;}
.ws1d{word-spacing:9.455360pt;}
.ws8b{word-spacing:9.667840pt;}
.ws1b{word-spacing:9.827200pt;}
.wsb8{word-spacing:10.092800pt;}
.wsa3{word-spacing:10.252160pt;}
.ws90{word-spacing:10.305280pt;}
.ws8f{word-spacing:10.464640pt;}
.ws55{word-spacing:10.730240pt;}
.ws7a{word-spacing:10.942720pt;}
.wsab{word-spacing:11.102080pt;}
.ws5d{word-spacing:11.261440pt;}
.ws4b{word-spacing:11.367680pt;}
.ws12b{word-spacing:11.527040pt;}
.ws50{word-spacing:11.580160pt;}
.ws4c{word-spacing:11.739520pt;}
.ws67{word-spacing:11.792640pt;}
.ws79{word-spacing:12.005120pt;}
.ws72{word-spacing:12.217600pt;}
.ws49{word-spacing:12.376960pt;}
.ws53{word-spacing:12.642560pt;}
.ws78{word-spacing:12.855040pt;}
.ws11c{word-spacing:13.014400pt;}
.ws6f{word-spacing:13.280000pt;}
.ws125{word-spacing:13.439360pt;}
.wsc1{word-spacing:13.492480pt;}
.wsdf{word-spacing:13.536000pt;}
.wsa7{word-spacing:13.811200pt;}
.ws7f{word-spacing:13.917440pt;}
.ws83{word-spacing:14.023680pt;}
.wsc2{word-spacing:14.076800pt;}
.wsad{word-spacing:14.129920pt;}
.wsdc{word-spacing:14.289280pt;}
.ws4e{word-spacing:14.767360pt;}
.ws4f{word-spacing:14.926720pt;}
.ws75{word-spacing:15.192320pt;}
.ws130{word-spacing:15.564160pt;}
.ws76{word-spacing:15.829760pt;}
.ws12e{word-spacing:15.989120pt;}
.wsca{word-spacing:16.042240pt;}
.ws43{word-spacing:16.201600pt;}
.ws12f{word-spacing:16.360960pt;}
.wsaa{word-spacing:16.467200pt;}
.ws6c{word-spacing:16.679680pt;}
.ws70{word-spacing:16.839040pt;}
.ws31{word-spacing:17.104640pt;}
.ws32{word-spacing:17.317120pt;}
.ws8e{word-spacing:17.476480pt;}
.ws63{word-spacing:17.742080pt;}
.ws89{word-spacing:18.113920pt;}
.ws64{word-spacing:18.379520pt;}
.ws60{word-spacing:18.592000pt;}
.ws126{word-spacing:18.751360pt;}
.ws6e{word-spacing:19.070080pt;}
.wsec{word-spacing:19.229440pt;}
.ws96{word-spacing:19.282560pt;}
.ws97{word-spacing:19.441920pt;}
.ws95{word-spacing:19.601280pt;}
.wsf6{word-spacing:19.707520pt;}
.wsfc{word-spacing:19.813760pt;}
.ws11b{word-spacing:19.866880pt;}
.wsf5{word-spacing:19.920000pt;}
.wsfd{word-spacing:20.079360pt;}
.ws94{word-spacing:20.344960pt;}
.ws93{word-spacing:20.557440pt;}
.ws54{word-spacing:20.982400pt;}
.wsae{word-spacing:21.194880pt;}
.wsde{word-spacing:21.216000pt;}
.wsaf{word-spacing:21.354240pt;}
.ws37{word-spacing:21.619840pt;}
.ws38{word-spacing:21.991680pt;}
.wsd6{word-spacing:22.257280pt;}
.ws45{word-spacing:22.469760pt;}
.wsc9{word-spacing:22.629120pt;}
.ws48{word-spacing:22.894720pt;}
.ws30{word-spacing:23.107200pt;}
.wse3{word-spacing:23.266560pt;}
.ws33{word-spacing:23.532160pt;}
.wsbc{word-spacing:23.744640pt;}
.wsa2{word-spacing:24.169600pt;}
.wsee{word-spacing:24.382080pt;}
.wsa1{word-spacing:24.807040pt;}
.ws8a{word-spacing:25.019520pt;}
.ws91{word-spacing:25.178880pt;}
.ws59{word-spacing:25.444480pt;}
.ws5c{word-spacing:25.656960pt;}
.ws134{word-spacing:25.816320pt;}
.ws7b{word-spacing:26.719360pt;}
.wscb{word-spacing:26.931840pt;}
.ws100{word-spacing:27.250560pt;}
.ws3a{word-spacing:27.356800pt;}
.wse1{word-spacing:27.569280pt;}
.ws68{word-spacing:27.994240pt;}
.wscd{word-spacing:28.206720pt;}
.ws69{word-spacing:28.366080pt;}
.wsb1{word-spacing:28.631680pt;}
.wsb3{word-spacing:28.844160pt;}
.wsf0{word-spacing:29.269120pt;}
.ws3e{word-spacing:29.481600pt;}
.wsbb{word-spacing:29.640960pt;}
.ws13b{word-spacing:29.906560pt;}
.ws108{word-spacing:30.544000pt;}
.ws6b{word-spacing:30.756480pt;}
.ws10c{word-spacing:31.553280pt;}
.wsf3{word-spacing:31.818880pt;}
.ws12a{word-spacing:32.031360pt;}
.wse5{word-spacing:32.190720pt;}
.ws121{word-spacing:32.881280pt;}
.wse4{word-spacing:33.146880pt;}
.ws88{word-spacing:33.359360pt;}
.wsf2{word-spacing:33.784320pt;}
.ws6d{word-spacing:33.996800pt;}
.wsb0{word-spacing:34.421760pt;}
.wse0{word-spacing:34.634240pt;}
.ws73{word-spacing:35.059200pt;}
.ws135{word-spacing:35.431040pt;}
.wscf{word-spacing:35.696640pt;}
.wsf1{word-spacing:36.334080pt;}
.ws65{word-spacing:37.608960pt;}
.ws112{word-spacing:37.874560pt;}
.ws116{word-spacing:38.883840pt;}
.ws117{word-spacing:40.371200pt;}
.ws4a{word-spacing:40.796160pt;}
.ws13e{word-spacing:41.168000pt;}
.ws105{word-spacing:41.433600pt;}
.ws106{word-spacing:41.646080pt;}
.ws3c{word-spacing:42.071040pt;}
.ws110{word-spacing:42.283520pt;}
.ws3b{word-spacing:42.496000pt;}
.ws51{word-spacing:42.708480pt;}
.ws74{word-spacing:44.195840pt;}
.ws13d{word-spacing:45.258240pt;}
.wscc{word-spacing:45.630080pt;}
.ws10d{word-spacing:49.773440pt;}
.ws8c{word-spacing:50.145280pt;}
.wsd0{word-spacing:50.410880pt;}
.ws12c{word-spacing:51.260800pt;}
.ws10f{word-spacing:51.898240pt;}
.ws102{word-spacing:52.482560pt;}
.ws128{word-spacing:55.722880pt;}
.wsf9{word-spacing:56.147840pt;}
.ws47{word-spacing:58.060160pt;}
.ws109{word-spacing:61.300480pt;}
.ws103{word-spacing:63.850240pt;}
.ws141{word-spacing:64.487680pt;}
.ws120{word-spacing:64.700160pt;}
.ws140{word-spacing:71.499520pt;}
.ws118{word-spacing:73.464960pt;}
.ws13a{word-spacing:73.677440pt;}
.wse8{word-spacing:74.739840pt;}
.wse7{word-spacing:75.111680pt;}
.wsb9{word-spacing:79.414400pt;}
.ws46{word-spacing:84.513920pt;}
.ws111{word-spacing:90.728960pt;}
.ws92{word-spacing:90.941440pt;}
.wsed{word-spacing:93.278720pt;}
.ws13c{word-spacing:98.378240pt;}
.ws114{word-spacing:104.168320pt;}
.ws13f{word-spacing:104.805760pt;}
.ws10a{word-spacing:110.542720pt;}
.ws136{word-spacing:120.157440pt;}
.wsfe{word-spacing:125.947520pt;}
.ws6a{word-spacing:129.506560pt;}
.wsf4{word-spacing:129.772160pt;}
.ws124{word-spacing:131.047040pt;}
.ws10e{word-spacing:134.234240pt;}
.ws138{word-spacing:138.058880pt;}
.ws104{word-spacing:145.761280pt;}
.ws137{word-spacing:147.673600pt;}
.wse9{word-spacing:167.540480pt;}
.ws119{word-spacing:179.704960pt;}
.ws11a{word-spacing:184.167040pt;}
.wseb{word-spacing:186.079360pt;}
.ws11d{word-spacing:211.045760pt;}
.ws101{word-spacing:277.605120pt;}
.wsef{word-spacing:326.263040pt;}
.wsf7{word-spacing:330.087680pt;}
.ws132{word-spacing:352.504320pt;}
.ws127{word-spacing:589.260160pt;}
.ws122{word-spacing:612.314240pt;}
.ws107{word-spacing:746.070400pt;}
.wsea{word-spacing:772.311680pt;}
._3{margin-left:-63.268736pt;}
._14{margin-left:-3.386496pt;}
._2{margin-left:-2.033408pt;}
._0{margin-left:-0.908800pt;}
._1{width:1.196800pt;}
._5{width:2.880000pt;}
._15{width:4.246592pt;}
._9{width:5.558976pt;}
._12{width:7.755328pt;}
._11{width:8.966656pt;}
._4{width:10.329152pt;}
._7{width:11.552000pt;}
._10{width:14.746624pt;}
._b{width:16.014080pt;}
._a{width:17.628288pt;}
._1b{width:18.936960pt;}
._e{width:20.119168pt;}
._f{width:21.566720pt;}
._1a{width:23.881728pt;}
._d{width:25.016320pt;}
._19{width:29.053440pt;}
._18{width:32.115200pt;}
._8{width:42.945920pt;}
._c{width:50.907520pt;}
._6{width:76.300928pt;}
._13{width:78.405120pt;}
._16{width:567.693440pt;}
._17{width:593.456640pt;}
.fs1{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs0{font-size:42.880000pt;}
.fs3{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs5{font-size:56.320000pt;}
.y0{bottom:0.000000pt;}
.yde{bottom:2.880000pt;}
.ydc{bottom:33.600000pt;}
.y3{bottom:50.080000pt;}
.y195{bottom:99.133600pt;}
.y115{bottom:102.519680pt;}
.y3b{bottom:104.641920pt;}
.y5b{bottom:104.769600pt;}
.y26e{bottom:105.205280pt;}
.yf9{bottom:105.213600pt;}
.y1e9{bottom:105.467520pt;}
.yc2{bottom:105.471200pt;}
.y20b{bottom:105.484160pt;}
.y240{bottom:105.562720pt;}
.y8a{bottom:105.750080pt;}
.y1b1{bottom:108.309440pt;}
.y15e{bottom:110.045280pt;}
.y194{bottom:114.339200pt;}
.y170{bottom:114.549440pt;}
.y114{bottom:117.884640pt;}
.y3a{bottom:120.006880pt;}
.y5a{bottom:120.134560pt;}
.yf8{bottom:120.419200pt;}
.y26d{bottom:120.570240pt;}
.y132{bottom:120.636000pt;}
.y1e8{bottom:120.832480pt;}
.yc1{bottom:120.836160pt;}
.y20a{bottom:120.849120pt;}
.y23f{bottom:120.927680pt;}
.y89{bottom:121.115040pt;}
.y1b0{bottom:123.674400pt;}
.y15d{bottom:125.410240pt;}
.y193{bottom:129.704160pt;}
.y16f{bottom:129.914400pt;}
.y113{bottom:133.249600pt;}
.y131{bottom:135.360000pt;}
.y39{bottom:135.371840pt;}
.y59{bottom:135.499520pt;}
.yf7{bottom:135.784160pt;}
.y26c{bottom:135.935200pt;}
.y1e7{bottom:136.197440pt;}
.yc0{bottom:136.201120pt;}
.y209{bottom:136.214080pt;}
.y23e{bottom:136.292640pt;}
.y88{bottom:136.480000pt;}
.y1af{bottom:138.880000pt;}
.y15c{bottom:140.775200pt;}
.y192{bottom:145.069120pt;}
.y16e{bottom:145.120000pt;}
.y112{bottom:148.455200pt;}
.y130{bottom:149.916000pt;}
.y38{bottom:150.736800pt;}
.y58{bottom:150.864480pt;}
.yf6{bottom:151.149120pt;}
.y26b{bottom:151.300160pt;}
.y1e6{bottom:151.562400pt;}
.ybf{bottom:151.566080pt;}
.y208{bottom:151.579040pt;}
.y87{bottom:151.621600pt;}
.y23d{bottom:151.657600pt;}
.y1ae{bottom:154.240000pt;}
.y15b{bottom:156.140160pt;}
.y191{bottom:160.434080pt;}
.y111{bottom:163.820160pt;}
.y12f{bottom:164.640000pt;}
.y37{bottom:166.101760pt;}
.y57{bottom:166.229440pt;}
.yf5{bottom:166.514080pt;}
.y26a{bottom:166.665120pt;}
.y1e5{bottom:166.927360pt;}
.ybe{bottom:166.931040pt;}
.y207{bottom:166.944000pt;}
.y86{bottom:166.986560pt;}
.y23c{bottom:167.022560pt;}
.y1ad{bottom:169.585120pt;}
.y15a{bottom:171.345760pt;}
.y16d{bottom:174.236000pt;}
.y190{bottom:175.799040pt;}
.y12e{bottom:175.834240pt;}
.y110{bottom:179.185120pt;}
.y36{bottom:181.466720pt;}
.y56{bottom:181.594400pt;}
.y269{bottom:181.870720pt;}
.yf4{bottom:181.879040pt;}
.y1e4{bottom:182.132960pt;}
.ybd{bottom:182.136640pt;}
.y206{bottom:182.149600pt;}
.y85{bottom:182.192160pt;}
.y23b{bottom:182.228160pt;}
.y1ac{bottom:184.950080pt;}
.y159{bottom:186.710720pt;}
.y16c{bottom:188.960000pt;}
.y18f{bottom:191.164000pt;}
.y10f{bottom:194.550080pt;}
.y35{bottom:196.672320pt;}
.y55{bottom:196.800000pt;}
.yf3{bottom:197.084640pt;}
.y268{bottom:197.235680pt;}
.y1e3{bottom:197.497920pt;}
.ybc{bottom:197.501600pt;}
.y205{bottom:197.514560pt;}
.y84{bottom:197.557120pt;}
.y23a{bottom:197.593120pt;}
.y1ab{bottom:200.315040pt;}
.y158{bottom:202.075680pt;}
.y16b{bottom:203.684000pt;}
.y18e{bottom:206.369600pt;}
.y10e{bottom:209.915040pt;}
.y54{bottom:211.877920pt;}
.y34{bottom:212.037280pt;}
.yf2{bottom:212.449600pt;}
.y267{bottom:212.600640pt;}
.y1e2{bottom:212.862880pt;}
.ybb{bottom:212.866560pt;}
.y204{bottom:212.879520pt;}
.y83{bottom:212.922080pt;}
.y239{bottom:212.958080pt;}
.y1aa{bottom:215.680000pt;}
.y157{bottom:217.600000pt;}
.y16a{bottom:218.240000pt;}
.y18d{bottom:221.734560pt;}
.y10d{bottom:225.280000pt;}
.y53{bottom:227.242880pt;}
.y33{bottom:227.402240pt;}
.yf1{bottom:227.814560pt;}
.y266{bottom:227.965600pt;}
.y1e1{bottom:228.227840pt;}
.yba{bottom:228.231520pt;}
.y203{bottom:228.244480pt;}
.y82{bottom:228.287040pt;}
.y238{bottom:228.323040pt;}
.y169{bottom:229.441920pt;}
.y156{bottom:233.679360pt;}
.y18c{bottom:237.099520pt;}
.y52{bottom:242.607840pt;}
.yf0{bottom:243.179520pt;}
.y265{bottom:243.330560pt;}
.y1e0{bottom:243.592800pt;}
.yb9{bottom:243.596480pt;}
.y202{bottom:243.609440pt;}
.y81{bottom:243.652000pt;}
.y237{bottom:243.688000pt;}
.y32{bottom:243.723360pt;}
.y1a9{bottom:244.632000pt;}
.y155{bottom:249.044320pt;}
.y18b{bottom:252.464480pt;}
.y10c{bottom:254.240000pt;}
.y51{bottom:257.972800pt;}
.yef{bottom:258.544480pt;}
.y264{bottom:258.695520pt;}
.y1df{bottom:258.957760pt;}
.yb8{bottom:258.961440pt;}
.y201{bottom:258.974400pt;}
.y80{bottom:259.016960pt;}
.y236{bottom:259.052960pt;}
.y31{bottom:259.088320pt;}
.y1a8{bottom:259.356000pt;}
.y154{bottom:264.409280pt;}
.y10b{bottom:265.579200pt;}
.y18a{bottom:267.829440pt;}
.y50{bottom:273.178400pt;}
.y263{bottom:273.901120pt;}
.yee{bottom:273.909440pt;}
.y1a7{bottom:274.080000pt;}
.y1de{bottom:274.163360pt;}
.yb7{bottom:274.167040pt;}
.y200{bottom:274.180000pt;}
.y7f{bottom:274.222560pt;}
.y235{bottom:274.258560pt;}
.y30{bottom:274.293920pt;}
.y153{bottom:279.774240pt;}
.y189{bottom:283.194400pt;}
.y1a6{bottom:285.219840pt;}
.y4f{bottom:288.543360pt;}
.yed{bottom:289.115040pt;}
.y262{bottom:289.266080pt;}
.y1dd{bottom:289.528320pt;}
.yb6{bottom:289.532000pt;}
.y1ff{bottom:289.544960pt;}
.y7e{bottom:289.587520pt;}
.y234{bottom:289.623520pt;}
.y2f{bottom:289.658880pt;}
.y152{bottom:295.139200pt;}
.y188{bottom:298.400000pt;}
.y4e{bottom:303.908320pt;}
.yec{bottom:304.480000pt;}
.y261{bottom:304.631040pt;}
.y1dc{bottom:304.893280pt;}
.yb5{bottom:304.896960pt;}
.y1fe{bottom:304.909920pt;}
.y7d{bottom:304.952480pt;}
.y233{bottom:304.988480pt;}
.y2e{bottom:305.023840pt;}
.y151{bottom:310.504160pt;}
.yeb{bottom:319.040000pt;}
.y4d{bottom:319.273280pt;}
.y260{bottom:319.996000pt;}
.y1db{bottom:320.258240pt;}
.yb4{bottom:320.261920pt;}
.y1fd{bottom:320.274880pt;}
.y7c{bottom:320.317440pt;}
.y232{bottom:320.353440pt;}
.y2d{bottom:320.388800pt;}
.y150{bottom:325.709760pt;}
.y187{bottom:327.516000pt;}
.yea{bottom:334.240000pt;}
.y4c{bottom:334.638240pt;}
.y25f{bottom:335.360960pt;}
.y1da{bottom:335.623200pt;}
.yb3{bottom:335.626880pt;}
.y1fc{bottom:335.639840pt;}
.y7b{bottom:335.682400pt;}
.y231{bottom:335.718400pt;}
.y2c{bottom:335.753760pt;}
.y14f{bottom:341.074720pt;}
.y186{bottom:342.240000pt;}
.ye9{bottom:349.600000pt;}
.y4b{bottom:350.003200pt;}
.y25e{bottom:350.725920pt;}
.y1d9{bottom:350.988160pt;}
.yb2{bottom:350.991840pt;}
.y1fb{bottom:351.004800pt;}
.y7a{bottom:351.047360pt;}
.y230{bottom:351.083360pt;}
.y2b{bottom:351.118720pt;}
.y185{bottom:353.578880pt;}
.y14e{bottom:356.439680pt;}
.ye8{bottom:364.960000pt;}
.y4a{bottom:365.208800pt;}
.y25d{bottom:365.931520pt;}
.y1d8{bottom:366.193760pt;}
.yb1{bottom:366.197440pt;}
.y1fa{bottom:366.210400pt;}
.y79{bottom:366.252960pt;}
.y22f{bottom:366.288960pt;}
.y2a{bottom:366.324320pt;}
.y14d{bottom:371.804640pt;}
.ye7{bottom:380.320000pt;}
.y49{bottom:380.573760pt;}
.y25c{bottom:381.296480pt;}
.y1d7{bottom:381.558720pt;}
.yb0{bottom:381.562400pt;}
.y1f9{bottom:381.575360pt;}
.y78{bottom:381.617920pt;}
.y22e{bottom:381.653920pt;}
.y29{bottom:381.689280pt;}
.y14c{bottom:387.169600pt;}
.ye6{bottom:395.680000pt;}
.y48{bottom:395.938720pt;}
.y25b{bottom:396.661440pt;}
.y1d6{bottom:396.923680pt;}
.yaf{bottom:396.927360pt;}
.y1f8{bottom:396.940320pt;}
.y77{bottom:396.982880pt;}
.y22d{bottom:397.018880pt;}
.y28{bottom:397.054240pt;}
.y14b{bottom:402.375200pt;}
.ye5{bottom:411.040000pt;}
.y47{bottom:411.303680pt;}
.y12d{bottom:411.355040pt;}
.y25a{bottom:412.026400pt;}
.y1d5{bottom:412.288640pt;}
.yae{bottom:412.292320pt;}
.y1f7{bottom:412.305280pt;}
.y76{bottom:412.347840pt;}
.y22c{bottom:412.383840pt;}
.y27{bottom:412.419200pt;}
.y14a{bottom:417.740160pt;}
.ye4{bottom:426.240000pt;}
.y46{bottom:426.668640pt;}
.y12c{bottom:426.720000pt;}
.y259{bottom:427.391360pt;}
.y1d4{bottom:427.653600pt;}
.yad{bottom:427.657280pt;}
.y1f6{bottom:427.670240pt;}
.y75{bottom:427.712800pt;}
.y22b{bottom:427.748800pt;}
.y26{bottom:427.784160pt;}
.y149{bottom:433.105120pt;}
.ye3{bottom:441.600000pt;}
.y45{bottom:442.033600pt;}
.y12b{bottom:442.050240pt;}
.y258{bottom:442.756320pt;}
.y1d3{bottom:443.018560pt;}
.yac{bottom:443.022240pt;}
.y1f5{bottom:443.035200pt;}
.y74{bottom:443.077760pt;}
.y22a{bottom:443.113760pt;}
.y25{bottom:443.149120pt;}
.y148{bottom:448.470080pt;}
.ye2{bottom:456.960000pt;}
.y44{bottom:457.239200pt;}
.y12a{bottom:457.415200pt;}
.y257{bottom:457.961920pt;}
.y1d2{bottom:458.224160pt;}
.yab{bottom:458.227840pt;}
.y1f4{bottom:458.240800pt;}
.y73{bottom:458.283360pt;}
.y229{bottom:458.319360pt;}
.y24{bottom:458.354720pt;}
.y1a5{bottom:460.104160pt;}
.y147{bottom:463.835040pt;}
.ye1{bottom:472.320000pt;}
.y43{bottom:472.604160pt;}
.y129{bottom:472.620800pt;}
.y256{bottom:473.326880pt;}
.y1d1{bottom:473.589120pt;}
.yaa{bottom:473.592800pt;}
.y1f3{bottom:473.605760pt;}
.y168{bottom:473.608000pt;}
.y72{bottom:473.648320pt;}
.y228{bottom:473.684320pt;}
.y23{bottom:473.719680pt;}
.y1a4{bottom:475.469120pt;}
.y146{bottom:479.200000pt;}
.ye0{bottom:487.680000pt;}
.y42{bottom:487.969120pt;}
.y128{bottom:487.985760pt;}
.y255{bottom:488.691840pt;}
.y1d0{bottom:488.954080pt;}
.ya9{bottom:488.957760pt;}
.y1f2{bottom:488.970720pt;}
.y167{bottom:488.972960pt;}
.y71{bottom:489.013280pt;}
.y227{bottom:489.049280pt;}
.y22{bottom:489.084640pt;}
.y1a3{bottom:490.834080pt;}
.ydf{bottom:502.880000pt;}
.y41{bottom:503.334080pt;}
.y127{bottom:503.350720pt;}
.y254{bottom:504.056800pt;}
.y1cf{bottom:504.319040pt;}
.ya8{bottom:504.322720pt;}
.y1f1{bottom:504.335680pt;}
.y166{bottom:504.337920pt;}
.y70{bottom:504.378240pt;}
.y226{bottom:504.414240pt;}
.y21{bottom:504.449600pt;}
.y1a2{bottom:506.199040pt;}
.y145{bottom:508.156000pt;}
.y40{bottom:518.699040pt;}
.y126{bottom:518.715680pt;}
.ydb{bottom:518.880000pt;}
.y253{bottom:519.421760pt;}
.y1ce{bottom:519.684000pt;}
.ya7{bottom:519.687680pt;}
.y1f0{bottom:519.700640pt;}
.y165{bottom:519.702880pt;}
.y6f{bottom:519.743200pt;}
.y225{bottom:519.779200pt;}
.y20{bottom:519.814560pt;}
.y1a1{bottom:521.564000pt;}
.y144{bottom:522.880000pt;}
.y10a{bottom:524.459520pt;}
.y3f{bottom:533.904640pt;}
.y143{bottom:534.159840pt;}
.y125{bottom:534.240000pt;}
.y252{bottom:534.627360pt;}
.y1cd{bottom:534.889600pt;}
.ya6{bottom:534.893280pt;}
.y1ef{bottom:534.906240pt;}
.y164{bottom:534.908480pt;}
.y6e{bottom:534.948800pt;}
.y224{bottom:534.984800pt;}
.y1f{bottom:535.020160pt;}
.y1a0{bottom:536.928960pt;}
.ydd{bottom:537.120000pt;}
.y109{bottom:539.824480pt;}
.y3e{bottom:549.269600pt;}
.y251{bottom:549.992320pt;}
.y1cc{bottom:550.254560pt;}
.ya5{bottom:550.258240pt;}
.y1ee{bottom:550.271200pt;}
.y163{bottom:550.273440pt;}
.y6d{bottom:550.313760pt;}
.y223{bottom:550.349760pt;}
.y124{bottom:550.380160pt;}
.y1e{bottom:550.385120pt;}
.y19f{bottom:552.134560pt;}
.y108{bottom:555.030080pt;}
.y3d{bottom:564.634560pt;}
.y250{bottom:565.357280pt;}
.y1cb{bottom:565.619520pt;}
.ya4{bottom:565.623200pt;}
.y1ed{bottom:565.636160pt;}
.y162{bottom:565.638400pt;}
.y6c{bottom:565.678720pt;}
.y222{bottom:565.714720pt;}
.y123{bottom:565.745120pt;}
.y1d{bottom:565.750080pt;}
.y19e{bottom:567.499520pt;}
.y107{bottom:570.395040pt;}
.y3c{bottom:579.999520pt;}
.y24f{bottom:580.722240pt;}
.y1ca{bottom:580.984480pt;}
.ya3{bottom:580.988160pt;}
.y1ec{bottom:581.001120pt;}
.y161{bottom:581.003360pt;}
.y6b{bottom:581.043680pt;}
.y221{bottom:581.079680pt;}
.y122{bottom:581.110080pt;}
.y1c{bottom:581.115040pt;}
.y19d{bottom:582.864480pt;}
.yda{bottom:583.512000pt;}
.y106{bottom:585.709120pt;}
.y24e{bottom:596.087200pt;}
.y1c9{bottom:596.349440pt;}
.ya2{bottom:596.353120pt;}
.y1eb{bottom:596.366080pt;}
.y160{bottom:596.368320pt;}
.y6a{bottom:596.408640pt;}
.y220{bottom:596.444640pt;}
.y121{bottom:596.475040pt;}
.y1b{bottom:596.480000pt;}
.y19c{bottom:598.229440pt;}
.yd9{bottom:598.236000pt;}
.y105{bottom:601.074080pt;}
.y24d{bottom:611.452160pt;}
.y1c8{bottom:611.714400pt;}
.ya1{bottom:611.718080pt;}
.y1ea{bottom:611.731040pt;}
.y15f{bottom:611.733280pt;}
.y69{bottom:611.773600pt;}
.y21f{bottom:611.809600pt;}
.y1a{bottom:611.840000pt;}
.yd8{bottom:612.960000pt;}
.y19b{bottom:613.594400pt;}
.y104{bottom:616.439040pt;}
.y24c{bottom:626.657760pt;}
.y1c7{bottom:626.920000pt;}
.ya0{bottom:626.923680pt;}
.y120{bottom:626.936640pt;}
.yd7{bottom:626.938880pt;}
.y68{bottom:626.979200pt;}
.y21e{bottom:627.015200pt;}
.y19{bottom:627.035040pt;}
.y19a{bottom:628.800000pt;}
.y103{bottom:631.804000pt;}
.y24b{bottom:642.022720pt;}
.y1c6{bottom:642.284960pt;}
.y9f{bottom:642.288640pt;}
.y11f{bottom:642.301600pt;}
.yd6{bottom:642.303840pt;}
.y67{bottom:642.344160pt;}
.y21d{bottom:642.380160pt;}
.y18{bottom:642.400000pt;}
.y102{bottom:647.009600pt;}
.y184{bottom:656.615200pt;}
.y24a{bottom:657.387680pt;}
.y1c5{bottom:657.649920pt;}
.y9e{bottom:657.653600pt;}
.y11e{bottom:657.666560pt;}
.yd5{bottom:657.668800pt;}
.y66{bottom:657.709120pt;}
.y21c{bottom:657.745120pt;}
.y17{bottom:657.760000pt;}
.y199{bottom:657.912000pt;}
.y101{bottom:662.374560pt;}
.y183{bottom:671.980160pt;}
.y198{bottom:672.636000pt;}
.y249{bottom:672.752640pt;}
.y1c4{bottom:673.014880pt;}
.y9d{bottom:673.018560pt;}
.y11d{bottom:673.031520pt;}
.yd4{bottom:673.033760pt;}
.y65{bottom:673.074080pt;}
.y21b{bottom:673.110080pt;}
.y16{bottom:673.120000pt;}
.y100{bottom:677.739520pt;}
.y182{bottom:687.345120pt;}
.y197{bottom:687.360000pt;}
.y248{bottom:688.117600pt;}
.y1c3{bottom:688.379840pt;}
.y9c{bottom:688.383520pt;}
.y11c{bottom:688.396480pt;}
.yd3{bottom:688.398720pt;}
.y64{bottom:688.439040pt;}
.y21a{bottom:688.475040pt;}
.y15{bottom:688.480000pt;}
.yff{bottom:693.104480pt;}
.y196{bottom:698.701760pt;}
.y181{bottom:702.710080pt;}
.y247{bottom:703.482560pt;}
.y1c2{bottom:703.744800pt;}
.y9b{bottom:703.748480pt;}
.y11b{bottom:703.761440pt;}
.yd2{bottom:703.763680pt;}
.y63{bottom:703.804000pt;}
.y14{bottom:703.840000pt;}
.yfe{bottom:708.469440pt;}
.y180{bottom:718.075040pt;}
.y246{bottom:718.688160pt;}
.y1c1{bottom:718.950400pt;}
.y9a{bottom:718.954080pt;}
.y142{bottom:718.964320pt;}
.y11a{bottom:718.967040pt;}
.yd1{bottom:718.969280pt;}
.y62{bottom:719.009600pt;}
.y13{bottom:719.040000pt;}
.yfd{bottom:723.834400pt;}
.y17f{bottom:733.440000pt;}
.y245{bottom:734.053120pt;}
.y1c0{bottom:734.315360pt;}
.y99{bottom:734.319040pt;}
.y141{bottom:734.329280pt;}
.y119{bottom:734.332000pt;}
.yd0{bottom:734.334240pt;}
.y61{bottom:734.374560pt;}
.y12{bottom:734.400000pt;}
.yfc{bottom:739.040000pt;}
.y244{bottom:749.418080pt;}
.y27b{bottom:749.670400pt;}
.y1bf{bottom:749.680320pt;}
.y98{bottom:749.684000pt;}
.y140{bottom:749.694240pt;}
.y118{bottom:749.696960pt;}
.ycf{bottom:749.699200pt;}
.y17e{bottom:749.714080pt;}
.y60{bottom:749.739520pt;}
.y219{bottom:749.745120pt;}
.y11{bottom:749.760000pt;}
.y243{bottom:764.783040pt;}
.y27a{bottom:765.035360pt;}
.y1be{bottom:765.045280pt;}
.y97{bottom:765.048960pt;}
.y13f{bottom:765.059200pt;}
.y117{bottom:765.061920pt;}
.yce{bottom:765.064160pt;}
.y17d{bottom:765.079040pt;}
.y5f{bottom:765.104480pt;}
.y218{bottom:765.110080pt;}
.y10{bottom:765.120000pt;}
.yfb{bottom:768.160000pt;}
.yfa{bottom:779.452480pt;}
.y242{bottom:780.148000pt;}
.y279{bottom:780.400320pt;}
.y1bd{bottom:780.410240pt;}
.y96{bottom:780.413920pt;}
.y13e{bottom:780.424160pt;}
.y116{bottom:780.426880pt;}
.ycd{bottom:780.429120pt;}
.y17c{bottom:780.444000pt;}
.y5e{bottom:780.469440pt;}
.y217{bottom:780.475040pt;}
.yf{bottom:780.480000pt;}
.y241{bottom:795.512960pt;}
.y1bc{bottom:795.775200pt;}
.y95{bottom:795.778880pt;}
.y13d{bottom:795.789120pt;}
.ye{bottom:795.791840pt;}
.ycc{bottom:795.794080pt;}
.y17b{bottom:795.808960pt;}
.y5d{bottom:795.834400pt;}
.y216{bottom:795.840000pt;}
.y215{bottom:810.718560pt;}
.y278{bottom:810.957600pt;}
.y1bb{bottom:810.980800pt;}
.y94{bottom:810.984480pt;}
.y13c{bottom:810.994720pt;}
.yd{bottom:810.997440pt;}
.ycb{bottom:810.999680pt;}
.y17a{bottom:811.014560pt;}
.y5c{bottom:811.040000pt;}
.y214{bottom:826.083520pt;}
.y277{bottom:826.322560pt;}
.y1ba{bottom:826.345760pt;}
.y93{bottom:826.349440pt;}
.y13b{bottom:826.359680pt;}
.yc{bottom:826.362400pt;}
.yca{bottom:826.364640pt;}
.y179{bottom:826.379520pt;}
.y213{bottom:841.448480pt;}
.y276{bottom:841.687520pt;}
.y1b9{bottom:841.710720pt;}
.y92{bottom:841.714400pt;}
.y13a{bottom:841.724640pt;}
.yb{bottom:841.727360pt;}
.yc9{bottom:841.729600pt;}
.y178{bottom:841.744480pt;}
.y212{bottom:856.813440pt;}
.y275{bottom:857.052480pt;}
.y1b8{bottom:857.075680pt;}
.y91{bottom:857.079360pt;}
.y139{bottom:857.089600pt;}
.ya{bottom:857.092320pt;}
.yc8{bottom:857.094560pt;}
.y177{bottom:857.109440pt;}
.y211{bottom:872.178400pt;}
.y274{bottom:872.417440pt;}
.y1b7{bottom:872.440640pt;}
.y90{bottom:872.444320pt;}
.y138{bottom:872.454560pt;}
.y9{bottom:872.457280pt;}
.yc7{bottom:872.459520pt;}
.y176{bottom:872.474400pt;}
.y210{bottom:887.384000pt;}
.y273{bottom:887.623040pt;}
.y1b6{bottom:887.646240pt;}
.y8f{bottom:887.649920pt;}
.y137{bottom:887.660160pt;}
.y8{bottom:887.662880pt;}
.yc6{bottom:887.665120pt;}
.y175{bottom:887.680000pt;}
.y20f{bottom:902.748960pt;}
.y272{bottom:902.988000pt;}
.y174{bottom:903.009600pt;}
.y1b5{bottom:903.011200pt;}
.y8e{bottom:903.014880pt;}
.y136{bottom:903.025120pt;}
.y7{bottom:903.027840pt;}
.yc5{bottom:903.030080pt;}
.y20e{bottom:918.113920pt;}
.y271{bottom:918.352960pt;}
.y173{bottom:918.374560pt;}
.y1b4{bottom:918.376160pt;}
.y8d{bottom:918.379840pt;}
.y135{bottom:918.390080pt;}
.y6{bottom:918.392800pt;}
.yc4{bottom:918.395040pt;}
.y20d{bottom:933.478880pt;}
.y270{bottom:933.717920pt;}
.y172{bottom:933.739520pt;}
.y1b3{bottom:933.741120pt;}
.y8c{bottom:933.744800pt;}
.y134{bottom:933.755040pt;}
.y5{bottom:933.757760pt;}
.yc3{bottom:933.760000pt;}
.y20c{bottom:948.843840pt;}
.y26f{bottom:949.082880pt;}
.y171{bottom:949.104480pt;}
.y1b2{bottom:949.106080pt;}
.y8b{bottom:949.109760pt;}
.y133{bottom:949.120000pt;}
.y4{bottom:949.122720pt;}
.y2{bottom:986.402720pt;}
.y1{bottom:998.720000pt;}
.ha{height:15.198667pt;}
.h9{height:15.200000pt;}
.h8{height:15.360000pt;}
.h2{height:29.794062pt;}
.h6{height:31.992188pt;}
.h1{height:34.676875pt;}
.h4{height:36.001250pt;}
.h5{height:36.883125pt;}
.h3{height:36.909063pt;}
.hb{height:37.112582pt;}
.hc{height:42.573125pt;}
.h7{height:46.080000pt;}
.h0{height:1056.000000pt;}
.w1{width:64.000000pt;}
.w4{width:70.721333pt;}
.w2{width:76.960000pt;}
.w3{width:83.520000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x11{left:7.200000pt;}
.x1c{left:26.880000pt;}
.x19{left:33.440000pt;}
.x17{left:39.680000pt;}
.x18{left:46.240000pt;}
.x1a{left:52.960000pt;}
.x1b{left:60.000000pt;}
.x3{left:94.560000pt;}
.x10{left:101.600000pt;}
.xb{left:113.440000pt;}
.xc{left:118.313760pt;}
.x25{left:127.959200pt;}
.x12{left:165.600000pt;}
.x13{left:172.800000pt;}
.x1{left:208.960000pt;}
.x2{left:215.687200pt;}
.x14{left:242.560000pt;}
.x6{left:249.882880pt;}
.x15{left:326.080000pt;}
.x16{left:333.120000pt;}
.x4{left:346.521440pt;}
.x7{left:360.438880pt;}
.x8{left:362.191840pt;}
.xa{left:382.988320pt;}
.x1f{left:395.205280pt;}
.x23{left:396.316640pt;}
.x22{left:398.353280pt;}
.x9{left:407.782080pt;}
.x5{left:417.237440pt;}
.xd{left:419.119040pt;}
.xf{left:438.003200pt;}
.xe{left:443.129280pt;}
.x24{left:452.783200pt;}
.x20{left:561.105920pt;}
.x1e{left:683.519040pt;}
.x21{left:719.182880pt;}
.x1d{left:721.468320pt;}
}




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