
    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_1bbffff5413bd8e110f56f82.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_5bad9d811ab5a63715e702ca.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;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_080a376e0563a794b00f1dbb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_603d9aed753ef0c4edd43b89.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_9aa17815a2fae41b64219821.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239000;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_d2b109232eb67551ecaf4fd6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.931000;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_1c8b51ad1cfca2a44e3624fe.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.328000;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_3eb2998e75e4377d917cb90f.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.144000;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_646020f6c905f29aef1a9398.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.959473;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_0dc8a5ebf3a8197a3144ea1f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.688000;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_8ae3d8d0a00c47ce27f57201.woff2')format("woff");}.ffb{font-family:ffb;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;}
.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:-19.200027px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.000570px;}
.v1{vertical-align:22.800293px;}
.ls10{letter-spacing:-3.168000px;}
.lsd{letter-spacing:-1.536000px;}
.lsf{letter-spacing:-1.008000px;}
.lse{letter-spacing:-0.720000px;}
.ls2{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.000005px;}
.ls15{letter-spacing:0.000018px;}
.ls4{letter-spacing:0.000027px;}
.ls6{letter-spacing:0.000073px;}
.ls9{letter-spacing:0.000110px;}
.ls1{letter-spacing:0.000136px;}
.ls12{letter-spacing:0.000659px;}
.ls3{letter-spacing:0.050975px;}
.lsb{letter-spacing:0.095947px;}
.lsc{letter-spacing:0.095957px;}
.ls28{letter-spacing:0.100800px;}
.ls5{letter-spacing:0.137391px;}
.lsa{letter-spacing:0.191890px;}
.ls2a{letter-spacing:0.196800px;}
.ls8{letter-spacing:0.247218px;}
.ls24{letter-spacing:0.302463px;}
.ls1c{letter-spacing:0.484866px;}
.ls30{letter-spacing:0.671988px;}
.ls2e{letter-spacing:0.671995px;}
.ls1a{letter-spacing:0.672000px;}
.ls21{letter-spacing:0.676794px;}
.ls2c{letter-spacing:0.676800px;}
.ls25{letter-spacing:0.681600px;}
.ls18{letter-spacing:1.008000px;}
.ls26{letter-spacing:1.022358px;}
.ls3e{letter-spacing:1.588755px;}
.ls31{letter-spacing:2.040000px;}
.ls1b{letter-spacing:2.447986px;}
.ls37{letter-spacing:2.452857px;}
.ls3c{letter-spacing:2.827166px;}
.ls3a{letter-spacing:3.148800px;}
.ls38{letter-spacing:3.206472px;}
.ls16{letter-spacing:3.316800px;}
.ls0{letter-spacing:3.360000px;}
.ls33{letter-spacing:3.844800px;}
.ls3b{letter-spacing:3.936000px;}
.ls1e{letter-spacing:4.276800px;}
.ls34{letter-spacing:4.324786px;}
.ls36{letter-spacing:4.348800px;}
.ls22{letter-spacing:4.473657px;}
.ls1f{letter-spacing:4.655915px;}
.ls3f{letter-spacing:4.694328px;}
.ls39{letter-spacing:4.708800px;}
.ls17{letter-spacing:4.992000px;}
.ls2d{letter-spacing:5.179264px;}
.ls41{letter-spacing:5.476800px;}
.ls27{letter-spacing:5.716800px;}
.ls2b{letter-spacing:5.952000px;}
.ls3d{letter-spacing:6.288000px;}
.ls1d{letter-spacing:6.484778px;}
.ls2f{letter-spacing:7.934400px;}
.ls32{letter-spacing:8.836800px;}
.ls29{letter-spacing:9.552000px;}
.ls20{letter-spacing:10.132790px;}
.ls19{letter-spacing:11.241600px;}
.ls35{letter-spacing:12.105568px;}
.ls40{letter-spacing:12.153585px;}
.ls23{letter-spacing:12.340800px;}
.ls7{letter-spacing:85.536000px;}
.ls14{letter-spacing:87.456000px;}
.ls13{letter-spacing:377.424000px;}
.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;}
}
.ws60{word-spacing:-57.000000px;}
.ws81{word-spacing:-48.000000px;}
.ws6{word-spacing:-14.250000px;}
.ws44{word-spacing:-13.332000px;}
.wse8{word-spacing:-12.672000px;}
.ws80{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.799000px;}
.ws4{word-spacing:-11.514000px;}
.ws45{word-spacing:-11.340000px;}
.ws5{word-spacing:-10.944000px;}
.ws76{word-spacing:-10.464000px;}
.ws61{word-spacing:-9.975000px;}
.ws1{word-spacing:-9.408000px;}
.wscf{word-spacing:-9.216000px;}
.ws7f{word-spacing:-8.400000px;}
.ws3{word-spacing:-8.259300px;}
.wse{word-spacing:-7.125000px;}
.ws83{word-spacing:-6.000000px;}
.ws55{word-spacing:-1.197000px;}
.wsbc{word-spacing:-1.026000px;}
.wsd4{word-spacing:-1.008000px;}
.ws123{word-spacing:-0.864000px;}
.wsa8{word-spacing:-0.855000px;}
.ws12a{word-spacing:-0.816000px;}
.wsd3{word-spacing:-0.768000px;}
.ws88{word-spacing:-0.741000px;}
.wsa0{word-spacing:-0.684000px;}
.wsf2{word-spacing:-0.672000px;}
.ws46{word-spacing:-0.627000px;}
.wsfd{word-spacing:-0.576000px;}
.wsc3{word-spacing:-0.570000px;}
.wse6{word-spacing:-0.528000px;}
.ws32{word-spacing:-0.513000px;}
.ws8{word-spacing:-0.480000px;}
.ws114{word-spacing:-0.432000px;}
.ws50{word-spacing:-0.399000px;}
.ws111{word-spacing:-0.384000px;}
.wsc7{word-spacing:-0.342000px;}
.wsee{word-spacing:-0.288000px;}
.ws49{word-spacing:-0.285000px;}
.ws127{word-spacing:-0.240000px;}
.wsec{word-spacing:-0.192000px;}
.ws24{word-spacing:-0.171000px;}
.ws109{word-spacing:-0.144000px;}
.wsa{word-spacing:-0.114000px;}
.wsd5{word-spacing:-0.096000px;}
.wsc{word-spacing:-0.057000px;}
.ws0{word-spacing:-0.048000px;}
.ws91{word-spacing:-0.033600px;}
.ws7{word-spacing:0.000000px;}
.ws12f{word-spacing:0.048000px;}
.wsbe{word-spacing:0.057000px;}
.ws35{word-spacing:0.114000px;}
.ws34{word-spacing:0.171000px;}
.wsef{word-spacing:0.192000px;}
.wsb1{word-spacing:0.228000px;}
.wsf6{word-spacing:0.240000px;}
.ws4e{word-spacing:0.285000px;}
.ws11e{word-spacing:0.288000px;}
.ws106{word-spacing:0.336000px;}
.ws19{word-spacing:0.342000px;}
.ws5b{word-spacing:0.399000px;}
.ws116{word-spacing:0.432000px;}
.ws54{word-spacing:0.456000px;}
.wsc9{word-spacing:0.570000px;}
.ws12e{word-spacing:0.576000px;}
.ws113{word-spacing:0.624000px;}
.ws86{word-spacing:0.627000px;}
.wsf7{word-spacing:0.672000px;}
.ws37{word-spacing:0.684000px;}
.wse9{word-spacing:0.720000px;}
.wsa7{word-spacing:0.741000px;}
.wsea{word-spacing:0.768000px;}
.ws29{word-spacing:0.798000px;}
.ws107{word-spacing:0.816000px;}
.ws4d{word-spacing:0.855000px;}
.ws13{word-spacing:0.912000px;}
.wse3{word-spacing:0.960000px;}
.ws23{word-spacing:0.969000px;}
.ws3e{word-spacing:1.026000px;}
.ws17{word-spacing:1.083000px;}
.ws104{word-spacing:1.104000px;}
.wsb8{word-spacing:1.140000px;}
.ws9{word-spacing:1.197000px;}
.wsfa{word-spacing:1.200000px;}
.ws11a{word-spacing:1.248000px;}
.wse4{word-spacing:1.296000px;}
.ws14{word-spacing:1.311000px;}
.ws4f{word-spacing:1.368000px;}
.ws11{word-spacing:1.425000px;}
.ws137{word-spacing:1.440000px;}
.ws2c{word-spacing:1.482000px;}
.ws6b{word-spacing:1.539000px;}
.ws10a{word-spacing:1.584000px;}
.ws12{word-spacing:1.596000px;}
.ws133{word-spacing:1.632000px;}
.wsc0{word-spacing:1.653000px;}
.wsf5{word-spacing:1.680000px;}
.ws1c{word-spacing:1.710000px;}
.ws20{word-spacing:1.767000px;}
.wsdc{word-spacing:1.776000px;}
.ws4b{word-spacing:1.824000px;}
.wsf1{word-spacing:1.872000px;}
.wsfe{word-spacing:1.968000px;}
.ws6d{word-spacing:1.995000px;}
.ws132{word-spacing:2.016000px;}
.ws48{word-spacing:2.052000px;}
.ws10c{word-spacing:2.064000px;}
.wsd{word-spacing:2.109000px;}
.ws2d{word-spacing:2.166000px;}
.ws100{word-spacing:2.208000px;}
.ws4c{word-spacing:2.223000px;}
.ws3f{word-spacing:2.280000px;}
.ws11f{word-spacing:2.304000px;}
.wsf{word-spacing:2.337000px;}
.ws115{word-spacing:2.352000px;}
.ws59{word-spacing:2.394000px;}
.ws97{word-spacing:2.400000px;}
.wsd9{word-spacing:2.448000px;}
.ws64{word-spacing:2.451000px;}
.ws12b{word-spacing:2.496000px;}
.ws41{word-spacing:2.508000px;}
.wsdd{word-spacing:2.544000px;}
.ws74{word-spacing:2.565000px;}
.ws22{word-spacing:2.622000px;}
.wsb{word-spacing:2.736000px;}
.wseb{word-spacing:2.784000px;}
.wsb7{word-spacing:2.793000px;}
.ws105{word-spacing:2.832000px;}
.wsc6{word-spacing:2.850000px;}
.ws119{word-spacing:2.880000px;}
.ws6c{word-spacing:2.907000px;}
.ws130{word-spacing:2.928000px;}
.ws67{word-spacing:2.964000px;}
.wsfb{word-spacing:2.976000px;}
.ws121{word-spacing:3.024000px;}
.wse7{word-spacing:3.072000px;}
.ws6e{word-spacing:3.078000px;}
.ws1a{word-spacing:3.135000px;}
.ws102{word-spacing:3.168000px;}
.ws16{word-spacing:3.192000px;}
.wsdf{word-spacing:3.216000px;}
.ws85{word-spacing:3.249000px;}
.ws11c{word-spacing:3.312000px;}
.ws110{word-spacing:3.360000px;}
.ws8d{word-spacing:3.363000px;}
.ws2b{word-spacing:3.420000px;}
.wse0{word-spacing:3.456000px;}
.ws73{word-spacing:3.477000px;}
.ws128{word-spacing:3.504000px;}
.ws63{word-spacing:3.534000px;}
.ws72{word-spacing:3.591000px;}
.wsf0{word-spacing:3.600000px;}
.ws4a{word-spacing:3.648000px;}
.wsfc{word-spacing:3.696000px;}
.ws36{word-spacing:3.705000px;}
.ws5f{word-spacing:3.762000px;}
.ws9e{word-spacing:3.819000px;}
.ws103{word-spacing:3.840000px;}
.wsa4{word-spacing:3.876000px;}
.wsb2{word-spacing:3.933000px;}
.wsf3{word-spacing:3.936000px;}
.wsd0{word-spacing:3.990000px;}
.ws12c{word-spacing:4.032000px;}
.ws52{word-spacing:4.047000px;}
.wsff{word-spacing:4.080000px;}
.ws1d{word-spacing:4.104000px;}
.ws10b{word-spacing:4.128000px;}
.ws69{word-spacing:4.161000px;}
.ws33{word-spacing:4.218000px;}
.ws10d{word-spacing:4.272000px;}
.wsab{word-spacing:4.275000px;}
.wse2{word-spacing:4.320000px;}
.ws39{word-spacing:4.332000px;}
.ws125{word-spacing:4.368000px;}
.wsa9{word-spacing:4.389000px;}
.ws129{word-spacing:4.416000px;}
.wscd{word-spacing:4.446000px;}
.ws122{word-spacing:4.464000px;}
.ws47{word-spacing:4.503000px;}
.ws136{word-spacing:4.512000px;}
.wsb3{word-spacing:4.617000px;}
.ws10e{word-spacing:4.656000px;}
.ws10{word-spacing:4.674000px;}
.ws66{word-spacing:4.731000px;}
.ws12d{word-spacing:4.752000px;}
.wsad{word-spacing:4.788000px;}
.wsda{word-spacing:4.800000px;}
.wsba{word-spacing:4.845000px;}
.wsa1{word-spacing:4.902000px;}
.wsbb{word-spacing:4.959000px;}
.ws5d{word-spacing:5.016000px;}
.ws21{word-spacing:5.073000px;}
.ws10f{word-spacing:5.088000px;}
.ws5a{word-spacing:5.130000px;}
.wse1{word-spacing:5.136000px;}
.ws117{word-spacing:5.184000px;}
.ws3d{word-spacing:5.187000px;}
.wsdb{word-spacing:5.232000px;}
.wsb5{word-spacing:5.301000px;}
.wsb9{word-spacing:5.358000px;}
.ws53{word-spacing:5.415000px;}
.ws5c{word-spacing:5.472000px;}
.wsf4{word-spacing:5.520000px;}
.ws26{word-spacing:5.529000px;}
.wscc{word-spacing:5.586000px;}
.ws27{word-spacing:5.643000px;}
.ws3b{word-spacing:5.700000px;}
.ws58{word-spacing:5.757000px;}
.ws135{word-spacing:5.760000px;}
.ws1e{word-spacing:5.814000px;}
.ws8e{word-spacing:5.871000px;}
.wsf9{word-spacing:5.904000px;}
.ws40{word-spacing:5.928000px;}
.ws2f{word-spacing:5.985000px;}
.wsd2{word-spacing:6.000000px;}
.ws30{word-spacing:6.042000px;}
.ws131{word-spacing:6.096000px;}
.ws57{word-spacing:6.099000px;}
.ws18{word-spacing:6.156000px;}
.ws31{word-spacing:6.213000px;}
.ws42{word-spacing:6.327000px;}
.ws89{word-spacing:6.384000px;}
.wsca{word-spacing:6.441000px;}
.wsaa{word-spacing:6.498000px;}
.wsf8{word-spacing:6.528000px;}
.wsaf{word-spacing:6.555000px;}
.ws2e{word-spacing:6.612000px;}
.ws15{word-spacing:6.669000px;}
.ws62{word-spacing:6.726000px;}
.ws124{word-spacing:6.768000px;}
.wsed{word-spacing:6.816000px;}
.wsa3{word-spacing:6.840000px;}
.wsc8{word-spacing:6.954000px;}
.ws134{word-spacing:7.056000px;}
.wsc2{word-spacing:7.068000px;}
.wsd8{word-spacing:7.104000px;}
.wsa5{word-spacing:7.125000px;}
.ws8a{word-spacing:7.182000px;}
.ws2a{word-spacing:7.239000px;}
.ws82{word-spacing:7.296000px;}
.wsd6{word-spacing:7.392000px;}
.wsae{word-spacing:7.410000px;}
.ws1f{word-spacing:7.467000px;}
.wsde{word-spacing:7.536000px;}
.wsd1{word-spacing:7.584000px;}
.ws71{word-spacing:7.638000px;}
.wsbf{word-spacing:7.695000px;}
.ws11d{word-spacing:7.728000px;}
.wsc1{word-spacing:7.752000px;}
.wsc5{word-spacing:7.809000px;}
.ws8c{word-spacing:7.923000px;}
.ws65{word-spacing:8.037000px;}
.wsac{word-spacing:8.094000px;}
.wsb6{word-spacing:8.208000px;}
.ws118{word-spacing:8.256000px;}
.ws68{word-spacing:8.265000px;}
.ws120{word-spacing:8.304000px;}
.wsb4{word-spacing:8.379000px;}
.ws51{word-spacing:8.493000px;}
.ws87{word-spacing:8.550000px;}
.ws56{word-spacing:8.721000px;}
.ws38{word-spacing:8.778000px;}
.ws112{word-spacing:8.880000px;}
.ws5e{word-spacing:8.892000px;}
.ws84{word-spacing:8.949000px;}
.ws43{word-spacing:9.063000px;}
.wsce{word-spacing:9.120000px;}
.ws6a{word-spacing:9.177000px;}
.ws11b{word-spacing:9.216000px;}
.ws3c{word-spacing:9.348000px;}
.ws101{word-spacing:9.456000px;}
.wsd7{word-spacing:9.600000px;}
.ws99{word-spacing:9.747000px;}
.wsc4{word-spacing:9.861000px;}
.wsbd{word-spacing:9.975000px;}
.wsb0{word-spacing:10.260000px;}
.ws28{word-spacing:10.488000px;}
.wscb{word-spacing:10.602000px;}
.ws9d{word-spacing:10.659000px;}
.ws9b{word-spacing:10.773000px;}
.wsa2{word-spacing:11.001000px;}
.wsa6{word-spacing:11.115000px;}
.wse5{word-spacing:11.184000px;}
.ws8b{word-spacing:11.229000px;}
.ws9a{word-spacing:11.286000px;}
.ws75{word-spacing:11.457000px;}
.ws108{word-spacing:11.568000px;}
.ws3a{word-spacing:11.571000px;}
.ws138{word-spacing:12.048000px;}
.ws126{word-spacing:12.144000px;}
.ws98{word-spacing:12.198000px;}
.ws6f{word-spacing:12.369000px;}
.ws25{word-spacing:12.654000px;}
.ws1b{word-spacing:12.768000px;}
.ws8f{word-spacing:13.680000px;}
.ws9f{word-spacing:13.908000px;}
.ws90{word-spacing:13.965000px;}
.ws9c{word-spacing:19.038000px;}
.ws70{word-spacing:23.142000px;}
.ws79{word-spacing:25.536000px;}
.ws77{word-spacing:57.552000px;}
.ws139{word-spacing:73.056000px;}
.ws95{word-spacing:75.456000px;}
.ws92{word-spacing:116.880000px;}
.ws94{word-spacing:172.031979px;}
.ws93{word-spacing:191.280000px;}
.ws7d{word-spacing:221.952000px;}
.ws96{word-spacing:225.839990px;}
.ws7c{word-spacing:262.800000px;}
.ws7b{word-spacing:305.280000px;}
.ws78{word-spacing:329.328000px;}
.ws7a{word-spacing:337.584000px;}
.ws7e{word-spacing:338.784000px;}
._4a{margin-left:-26.163000px;}
._38{margin-left:-22.029600px;}
._37{margin-left:-20.862000px;}
._49{margin-left:-19.785085px;}
._13{margin-left:-18.582000px;}
._34{margin-left:-16.471343px;}
._16{margin-left:-15.362906px;}
._15{margin-left:-13.950047px;}
._f{margin-left:-12.468013px;}
._35{margin-left:-10.968600px;}
._5{margin-left:-9.861000px;}
._a{margin-left:-8.729400px;}
._9{margin-left:-7.686600px;}
._14{margin-left:-6.563400px;}
._10{margin-left:-5.187000px;}
._8{margin-left:-3.705000px;}
._4{margin-left:-2.679000px;}
._0{margin-left:-1.632000px;}
._1{width:1.281600px;}
._2{width:2.360367px;}
._4b{width:3.403200px;}
._d{width:4.440300px;}
._e{width:6.099900px;}
._11{width:7.979991px;}
._7{width:9.108600px;}
._6{width:10.398600px;}
._b{width:11.964000px;}
._36{width:13.446300px;}
._17{width:15.652200px;}
._12{width:18.479981px;}
._4c{width:23.191343px;}
._1e{width:37.536000px;}
._3f{width:39.456000px;}
._3{width:40.930288px;}
._21{width:50.832000px;}
._4d{width:56.256000px;}
._20{width:61.536000px;}
._43{width:63.456000px;}
._39{width:71.472000px;}
._44{width:78.479979px;}
._1b{width:81.360000px;}
._41{width:87.456000px;}
._46{width:99.456000px;}
._48{width:111.456000px;}
._1a{width:117.360000px;}
._42{width:129.551979px;}
._3a{width:131.280000px;}
._19{width:141.360000px;}
._1d{width:158.750400px;}
._1c{width:161.390400px;}
._3e{width:183.263979px;}
._47{width:184.550969px;}
._27{width:197.232000px;}
._22{width:220.224000px;}
._24{width:221.232000px;}
._45{width:224.111990px;}
._3c{width:227.280000px;}
._33{width:236.736000px;}
._2a{width:245.232000px;}
._2d{width:247.920000px;}
._3d{width:251.280000px;}
._25{width:257.232000px;}
._31{width:266.160000px;}
._2c{width:269.232000px;}
._32{width:287.808000px;}
._1f{width:298.608000px;}
._18{width:306.768000px;}
._2b{width:314.112000px;}
._30{width:317.232000px;}
._29{width:365.184000px;}
._40{width:377.424000px;}
._2f{width:383.424000px;}
._23{width:408.855000px;}
._2e{width:434.496000px;}
._3b{width:488.880000px;}
._28{width:738.144000px;}
._26{width:754.128000px;}
._c{width:1096.752000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:33.600000px;}
.fs3{font-size:39.900000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:57.000000px;}
.fs5{font-size:60.000000px;}
.fs4{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:32.687250px;}
.yf3{bottom:73.272902px;}
.y29{bottom:73.274998px;}
.y130{bottom:73.287002px;}
.y12b{bottom:73.295421px;}
.y10a{bottom:73.295434px;}
.y104{bottom:73.295444px;}
.y115{bottom:73.343441px;}
.y5a{bottom:73.426031px;}
.yec{bottom:74.434502px;}
.y9c{bottom:81.058794px;}
.y7e{bottom:81.229803px;}
.y98{bottom:81.243303px;}
.y171{bottom:81.973053px;}
.yf4{bottom:82.272902px;}
.y105{bottom:82.295444px;}
.y1d9{bottom:84.989531px;}
.y154{bottom:88.620448px;}
.y59{bottom:90.682781px;}
.yeb{bottom:91.691252px;}
.y19e{bottom:92.720553px;}
.y9b{bottom:98.315544px;}
.y7d{bottom:98.486553px;}
.y97{bottom:98.493303px;}
.y1d8{bottom:98.861531px;}
.y170{bottom:99.229803px;}
.y153{bottom:105.877198px;}
.y19d{bottom:106.592553px;}
.y58{bottom:107.939531px;}
.yea{bottom:108.948002px;}
.y1d7{bottom:112.733531px;}
.y28{bottom:114.668557px;}
.y9a{bottom:115.572294px;}
.y7c{bottom:115.743303px;}
.y16f{bottom:116.486553px;}
.y19c{bottom:120.464553px;}
.y152{bottom:123.133948px;}
.y57{bottom:125.196281px;}
.ye9{bottom:126.204752px;}
.y1d6{bottom:126.605531px;}
.y27{bottom:131.925307px;}
.y99{bottom:132.829044px;}
.y96{bottom:132.993303px;}
.y7b{bottom:133.000053px;}
.y16e{bottom:133.743303px;}
.y19b{bottom:134.336553px;}
.y151{bottom:140.390698px;}
.y1d5{bottom:140.477531px;}
.y56{bottom:142.453031px;}
.ye8{bottom:143.461502px;}
.y19a{bottom:148.208553px;}
.y26{bottom:149.182057px;}
.y95{bottom:150.243303px;}
.y16d{bottom:151.000053px;}
.y1d4{bottom:154.349531px;}
.y150{bottom:157.647448px;}
.y55{bottom:159.709781px;}
.ye7{bottom:160.718252px;}
.y199{bottom:162.080553px;}
.y25{bottom:166.438807px;}
.y94{bottom:167.493303px;}
.y1d3{bottom:168.221531px;}
.y7a{bottom:168.250053px;}
.y122{bottom:173.963425px;}
.yfd{bottom:173.963437px;}
.yf5{bottom:173.964900px;}
.y126{bottom:173.975427px;}
.y108{bottom:173.975439px;}
.y100{bottom:173.975444px;}
.y106{bottom:173.987442px;}
.y111{bottom:174.011444px;}
.y113{bottom:174.023446px;}
.y11b{bottom:174.059451px;}
.y11d{bottom:174.071453px;}
.y14f{bottom:174.904198px;}
.y198{bottom:175.952553px;}
.y54{bottom:176.966531px;}
.ye6{bottom:177.975002px;}
.y1d2{bottom:182.093531px;}
.yfe{bottom:182.963437px;}
.yf6{bottom:182.964900px;}
.y101{bottom:182.975444px;}
.y24{bottom:183.695557px;}
.y93{bottom:184.736553px;}
.y16c{bottom:186.250053px;}
.y197{bottom:189.824553px;}
.ybb{bottom:190.761005px;}
.y1eb{bottom:192.607042px;}
.y53{bottom:194.223281px;}
.y1d1{bottom:195.965531px;}
.y23{bottom:200.952307px;}
.y92{bottom:201.993303px;}
.y196{bottom:203.696553px;}
.y79{bottom:208.554281px;}
.y1d0{bottom:209.837531px;}
.y14e{bottom:210.154198px;}
.y1ea{bottom:211.279060px;}
.y52{bottom:211.480031px;}
.ye5{bottom:213.224991px;}
.yca{bottom:213.252900px;}
.y195{bottom:217.568553px;}
.y91{bottom:219.236553px;}
.y1cf{bottom:223.709531px;}
.y78{bottom:225.811031px;}
.y1e9{bottom:227.904306px;}
.y51{bottom:228.736781px;}
.yc9{bottom:230.916900px;}
.y194{bottom:231.440553px;}
.y90{bottom:236.493303px;}
.y1ce{bottom:237.581531px;}
.y77{bottom:243.067781px;}
.y193{bottom:245.330553px;}
.y50{bottom:245.993531px;}
.y1e8{bottom:246.576302px;}
.yc8{bottom:248.508900px;}
.y1cd{bottom:251.453531px;}
.y8f{bottom:253.750053px;}
.y22{bottom:255.700807px;}
.y16b{bottom:258.858281px;}
.y192{bottom:259.202553px;}
.y76{bottom:260.324531px;}
.y4f{bottom:263.250281px;}
.ye4{bottom:264.023558px;}
.y1cc{bottom:265.325531px;}
.yc7{bottom:266.100900px;}
.y14d{bottom:267.191241px;}
.y1e7{bottom:267.998543px;}
.y21{bottom:272.957557px;}
.y191{bottom:273.074553px;}
.yf2{bottom:274.920902px;}
.y123{bottom:274.931420px;}
.yff{bottom:274.931437px;}
.y11f{bottom:274.932894px;}
.yf7{bottom:274.932900px;}
.y127{bottom:274.943421px;}
.y102{bottom:274.943444px;}
.y12c{bottom:274.955414px;}
.y16a{bottom:276.115031px;}
.y75{bottom:277.581281px;}
.y1cb{bottom:279.197531px;}
.y4e{bottom:280.507031px;}
.ye3{bottom:281.280308px;}
.yc6{bottom:283.692900px;}
.y14c{bottom:284.447991px;}
.y190{bottom:286.946553px;}
.y8e{bottom:289.000053px;}
.y1e6{bottom:289.420807px;}
.y1ca{bottom:293.069531px;}
.y169{bottom:293.371781px;}
.y74{bottom:294.838031px;}
.y4d{bottom:297.763781px;}
.ye2{bottom:298.537058px;}
.y18f{bottom:300.818553px;}
.yc5{bottom:301.284900px;}
.y14b{bottom:301.704741px;}
.y1c9{bottom:306.941531px;}
.y20{bottom:307.456807px;}
.y168{bottom:310.628531px;}
.y1e5{bottom:310.843048px;}
.y73{bottom:312.094781px;}
.y18e{bottom:314.690553px;}
.y4c{bottom:315.020531px;}
.ye1{bottom:315.793808px;}
.yc4{bottom:318.876900px;}
.y14a{bottom:318.961491px;}
.y1c8{bottom:320.813531px;}
.y1f{bottom:324.713557px;}
.y1e4{bottom:327.468294px;}
.y167{bottom:327.885281px;}
.y18d{bottom:328.562553px;}
.y72{bottom:329.351531px;}
.y4b{bottom:332.277281px;}
.y1c7{bottom:334.685531px;}
.y149{bottom:336.218241px;}
.yc3{bottom:336.468900px;}
.y1e{bottom:341.970307px;}
.y8d{bottom:342.912281px;}
.y124{bottom:343.751420px;}
.y120{bottom:343.752894px;}
.y128{bottom:343.763421px;}
.y12d{bottom:343.775414px;}
.y166{bottom:345.142031px;}
.y1e3{bottom:346.140289px;}
.y71{bottom:346.608281px;}
.y1c6{bottom:348.557531px;}
.y4a{bottom:349.534031px;}
.ye0{bottom:351.043808px;}
.y148{bottom:353.474991px;}
.yc2{bottom:354.060900px;}
.y1d{bottom:359.227057px;}
.y8c{bottom:360.169031px;}
.y18c{bottom:360.737709px;}
.y165{bottom:362.398781px;}
.y1c5{bottom:362.429531px;}
.y70{bottom:363.865031px;}
.y49{bottom:366.790781px;}
.y1e2{bottom:367.562553px;}
.yc1{bottom:371.652900px;}
.y1c4{bottom:376.301531px;}
.y1c{bottom:376.483807px;}
.y8b{bottom:377.425781px;}
.y164{bottom:379.655531px;}
.y6f{bottom:381.121781px;}
.y48{bottom:384.047531px;}
.y147{bottom:388.724991px;}
.yc0{bottom:389.244900px;}
.y1c3{bottom:390.173531px;}
.y1e1{bottom:391.040567px;}
.y1b{bottom:393.740557px;}
.y8a{bottom:394.682531px;}
.y163{bottom:396.912281px;}
.y6e{bottom:398.378531px;}
.y47{bottom:401.304281px;}
.ydf{bottom:401.801829px;}
.y1c2{bottom:404.045531px;}
.y1e0{bottom:404.912567px;}
.ybf{bottom:406.836900px;}
.y1a{bottom:410.997307px;}
.y89{bottom:411.939281px;}
.y125{bottom:412.571420px;}
.y121{bottom:412.572894px;}
.y129{bottom:412.583421px;}
.y12e{bottom:412.595414px;}
.y162{bottom:414.169031px;}
.y6d{bottom:415.635281px;}
.y1c1{bottom:417.917531px;}
.y46{bottom:418.561031px;}
.yde{bottom:419.058579px;}
.y12f{bottom:421.571420px;}
.y107{bottom:421.571432px;}
.y12a{bottom:421.583421px;}
.y109{bottom:421.583434px;}
.y103{bottom:421.583444px;}
.y112{bottom:421.619439px;}
.y114{bottom:421.631441px;}
.y11c{bottom:421.667446px;}
.y11e{bottom:421.679448px;}
.ybe{bottom:424.980900px;}
.y19{bottom:428.254057px;}
.y88{bottom:429.196031px;}
.y161{bottom:431.425781px;}
.y1c0{bottom:431.789531px;}
.y146{bottom:432.262194px;}
.y6c{bottom:432.892031px;}
.y18b{bottom:435.026686px;}
.y45{bottom:435.817781px;}
.ydd{bottom:436.315329px;}
.y1df{bottom:436.930781px;}
.y18{bottom:445.510807px;}
.y1bf{bottom:445.661531px;}
.y87{bottom:446.452781px;}
.y160{bottom:448.682531px;}
.y18a{bottom:448.898686px;}
.y145{bottom:449.518944px;}
.y6b{bottom:450.148781px;}
.ybd{bottom:452.988900px;}
.y44{bottom:453.074531px;}
.ydc{bottom:453.572079px;}
.y1de{bottom:454.180781px;}
.y1be{bottom:459.533531px;}
.y17{bottom:462.767557px;}
.y189{bottom:462.770686px;}
.y86{bottom:463.709531px;}
.y15f{bottom:465.939281px;}
.y144{bottom:466.775694px;}
.ybc{bottom:466.860900px;}
.y6a{bottom:467.405531px;}
.y43{bottom:470.331281px;}
.ydb{bottom:470.828829px;}
.y1dd{bottom:471.437531px;}
.y1bd{bottom:473.405531px;}
.y188{bottom:476.642686px;}
.y16{bottom:480.024307px;}
.y85{bottom:480.966281px;}
.y15e{bottom:483.196031px;}
.y143{bottom:484.032444px;}
.y69{bottom:484.662281px;}
.y1bc{bottom:487.277531px;}
.y42{bottom:487.588031px;}
.yda{bottom:488.085579px;}
.y187{bottom:490.514686px;}
.yba{bottom:490.642945px;}
.y15{bottom:497.281057px;}
.y84{bottom:498.223031px;}
.y15d{bottom:500.452781px;}
.y1bb{bottom:501.149531px;}
.y142{bottom:501.289194px;}
.y68{bottom:501.919031px;}
.y186{bottom:504.386686px;}
.y41{bottom:504.844781px;}
.yd9{bottom:505.342329px;}
.y1dc{bottom:506.687531px;}
.yed{bottom:512.912109px;}
.y14{bottom:514.537807px;}
.y1ba{bottom:515.021531px;}
.y83{bottom:515.479781px;}
.y15c{bottom:517.709531px;}
.y185{bottom:518.258686px;}
.y141{bottom:518.545944px;}
.y67{bottom:519.175781px;}
.y40{bottom:522.101531px;}
.yd8{bottom:522.599079px;}
.y1b9{bottom:528.893531px;}
.y13{bottom:531.794557px;}
.y184{bottom:532.130686px;}
.y82{bottom:532.736531px;}
.y15b{bottom:534.966281px;}
.y66{bottom:536.432531px;}
.y3f{bottom:539.358281px;}
.yd7{bottom:539.855829px;}
.yf8{bottom:540.767419px;}
.yee{bottom:540.776109px;}
.y10b{bottom:540.815426px;}
.y1b8{bottom:542.765531px;}
.yb9{bottom:547.702945px;}
.y12{bottom:549.051307px;}
.y116{bottom:549.863433px;}
.y81{bottom:549.993281px;}
.y15a{bottom:552.223031px;}
.y65{bottom:553.689281px;}
.y140{bottom:553.795944px;}
.y3e{bottom:556.615031px;}
.y1b7{bottom:556.637531px;}
.yd6{bottom:557.112579px;}
.y183{bottom:559.886686px;}
.yb8{bottom:561.574945px;}
.y11{bottom:566.308057px;}
.y80{bottom:567.250031px;}
.y159{bottom:569.479781px;}
.y1b6{bottom:570.509531px;}
.y64{bottom:570.946031px;}
.y182{bottom:573.758686px;}
.y3d{bottom:573.871781px;}
.yb7{bottom:579.238945px;}
.y10{bottom:583.564807px;}
.y1db{bottom:584.369531px;}
.y1b5{bottom:584.381531px;}
.y158{bottom:586.736531px;}
.y181{bottom:587.630686px;}
.y63{bottom:588.202781px;}
.y3c{bottom:591.128531px;}
.yd5{bottom:592.362579px;}
.yb6{bottom:593.110945px;}
.y13f{bottom:597.326260px;}
.y1da{bottom:598.241531px;}
.y1b4{bottom:598.253531px;}
.yf{bottom:600.821557px;}
.y180{bottom:601.502686px;}
.y7f{bottom:602.500031px;}
.y157{bottom:603.993281px;}
.y62{bottom:605.459531px;}
.y3b{bottom:608.385281px;}
.yb5{bottom:610.697837px;}
.y1b3{bottom:612.125531px;}
.y13e{bottom:614.583010px;}
.y17f{bottom:615.374686px;}
.ye{bottom:618.078307px;}
.y156{bottom:621.250031px;}
.y61{bottom:622.716281px;}
.yb4{bottom:624.497837px;}
.y3a{bottom:625.642031px;}
.y1b2{bottom:625.997531px;}
.y17e{bottom:629.246686px;}
.y13d{bottom:631.839760px;}
.yd{bottom:635.335057px;}
.y1b1{bottom:639.869531px;}
.y60{bottom:639.973031px;}
.yf9{bottom:641.243419px;}
.yef{bottom:641.252109px;}
.y10c{bottom:641.291426px;}
.y117{bottom:641.339433px;}
.yb3{bottom:642.177748px;}
.y39{bottom:642.898781px;}
.y17d{bottom:643.118686px;}
.yd4{bottom:643.127396px;}
.y13c{bottom:649.096510px;}
.yc{bottom:652.591807px;}
.y1b0{bottom:653.741531px;}
.yb2{bottom:656.049748px;}
.y155{bottom:656.500031px;}
.y17c{bottom:656.990686px;}
.y5f{bottom:657.229781px;}
.y38{bottom:660.155531px;}
.yd3{bottom:660.384146px;}
.y13b{bottom:666.353260px;}
.y1af{bottom:667.613531px;}
.yb{bottom:669.848557px;}
.y17b{bottom:670.862686px;}
.yb1{bottom:673.645659px;}
.y5e{bottom:674.486531px;}
.y37{bottom:677.412281px;}
.yd2{bottom:677.640896px;}
.y1ae{bottom:681.485531px;}
.y13a{bottom:683.610010px;}
.yb0{bottom:687.517659px;}
.y5d{bottom:691.743281px;}
.y36{bottom:694.669031px;}
.yd1{bottom:694.897646px;}
.y1ad{bottom:695.357531px;}
.y17a{bottom:698.612686px;}
.y139{bottom:700.866760px;}
.yaf{bottom:705.117480px;}
.y5c{bottom:709.000031px;}
.y1ac{bottom:709.229531px;}
.y35{bottom:711.925781px;}
.yd0{bottom:712.154396px;}
.yfa{bottom:712.307419px;}
.yf0{bottom:712.308902px;}
.y10d{bottom:712.355426px;}
.y118{bottom:712.403433px;}
.ya{bottom:717.587564px;}
.yae{bottom:718.989480px;}
.yfb{bottom:721.307419px;}
.y10e{bottom:721.355426px;}
.y119{bottom:721.403433px;}
.y1ab{bottom:723.101531px;}
.y34{bottom:729.182531px;}
.ycf{bottom:729.411146px;}
.y179{bottom:729.812531px;}
.y9{bottom:731.459564px;}
.y138{bottom:736.116760px;}
.yad{bottom:736.581480px;}
.y1aa{bottom:736.973531px;}
.y5b{bottom:744.250031px;}
.y33{bottom:746.439281px;}
.yce{bottom:746.667896px;}
.yac{bottom:750.453480px;}
.y1a9{bottom:750.845531px;}
.y178{bottom:757.568531px;}
.y32{bottom:763.696031px;}
.ycd{bottom:763.924646px;}
.y1a8{bottom:764.717531px;}
.yab{bottom:768.095265px;}
.y8{bottom:769.224268px;}
.y177{bottom:771.440531px;}
.y1a7{bottom:778.589531px;}
.y137{bottom:779.653781px;}
.y31{bottom:780.952781px;}
.ycc{bottom:781.181396px;}
.yaa{bottom:781.967265px;}
.y176{bottom:785.312531px;}
.y7{bottom:786.474268px;}
.y1a6{bottom:792.461531px;}
.y136{bottom:796.910531px;}
.y30{bottom:798.209531px;}
.ya9{bottom:800.111265px;}
.y6{bottom:803.731018px;}
.y1a5{bottom:806.333531px;}
.yfc{bottom:812.663419px;}
.yf1{bottom:812.664902px;}
.y10f{bottom:812.711426px;}
.y11a{bottom:812.759433px;}
.y135{bottom:814.167281px;}
.y2f{bottom:815.466281px;}
.ycb{bottom:816.431396px;}
.y1a4{bottom:820.205531px;}
.y110{bottom:821.711426px;}
.ya1{bottom:828.083265px;}
.ya4{bottom:828.095265px;}
.ya7{bottom:828.107265px;}
.y175{bottom:830.299031px;}
.y134{bottom:831.424031px;}
.y2e{bottom:832.723031px;}
.y1a3{bottom:834.077531px;}
.ya0{bottom:841.955265px;}
.ya3{bottom:841.967265px;}
.ya6{bottom:841.979265px;}
.y5{bottom:846.166077px;}
.y174{bottom:847.555781px;}
.y1a2{bottom:847.949531px;}
.y133{bottom:848.680781px;}
.y2d{bottom:849.979781px;}
.y9f{bottom:855.827265px;}
.ya2{bottom:855.839265px;}
.ya5{bottom:855.851265px;}
.ya8{bottom:855.863265px;}
.y1a1{bottom:861.821531px;}
.y173{bottom:864.812531px;}
.y132{bottom:865.937531px;}
.y2c{bottom:867.236531px;}
.y1a0{bottom:875.693531px;}
.y9e{bottom:879.671265px;}
.y2b{bottom:884.493281px;}
.y19f{bottom:889.565531px;}
.y4{bottom:899.785217px;}
.y172{bottom:900.062531px;}
.y131{bottom:901.187531px;}
.y2a{bottom:901.750031px;}
.y9d{bottom:903.437531px;}
.y3{bottom:926.117136px;}
.y2{bottom:939.989136px;}
.h18{height:23.956800px;}
.h20{height:29.904018px;}
.h2{height:33.840000px;}
.hc{height:34.224000px;}
.h16{height:34.512000px;}
.h23{height:34.687500px;}
.h9{height:40.641000px;}
.h3{height:42.048000px;}
.h1a{height:42.292782px;}
.h11{height:42.528000px;}
.h1f{height:42.810045px;}
.h1b{height:43.029004px;}
.h1e{height:43.045795px;}
.h1c{height:43.066191px;}
.h1d{height:43.122033px;}
.h19{height:43.156877px;}
.h4{height:46.704000px;}
.h13{height:48.904863px;}
.h14{height:49.072714px;}
.h15{height:49.088357px;}
.h12{height:49.104000px;}
.h17{height:49.124430px;}
.hb{height:50.502000px;}
.he{height:53.640000px;}
.h8{height:56.373000px;}
.ha{height:58.311000px;}
.h10{height:58.338000px;}
.hf{height:58.365000px;}
.h21{height:61.622810px;}
.h6{height:61.622993px;}
.h22{height:61.649810px;}
.h7{height:61.649993px;}
.hd{height:65.274000px;}
.h5{height:69.108000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:70.157553px;}
.x3{left:74.529448px;}
.xa{left:79.155745px;}
.x4{left:87.171898px;}
.x42{left:91.421403px;}
.x41{left:95.669553px;}
.xf{left:102.923847px;}
.x10{left:116.795847px;}
.x12{left:126.749847px;}
.x11{left:130.667847px;}
.x34{left:157.308145px;}
.x13{left:158.657847px;}
.x35{left:171.180145px;}
.x14{left:172.529847px;}
.x9{left:174.795760px;}
.xb{left:183.795760px;}
.x15{left:186.401847px;}
.x36{left:193.899903px;}
.x16{left:204.577803px;}
.x37{left:207.771903px;}
.x17{left:218.449803px;}
.x38{left:230.463903px;}
.x18{left:232.321803px;}
.x39{left:244.335903px;}
.x19{left:249.913803px;}
.x3a{left:261.999903px;}
.x1a{left:263.785803px;}
.x3b{left:275.799903px;}
.x5{left:278.785950px;}
.x1b{left:281.377803px;}
.xc{left:288.351746px;}
.x3c{left:293.406610px;}
.x1c{left:295.249803px;}
.x1f{left:298.980450px;}
.x3d{left:307.278610px;}
.x1d{left:309.121803px;}
.x20{left:312.852450px;}
.x1e{left:322.993803px;}
.x3e{left:324.942610px;}
.x21{left:330.444450px;}
.x3f{left:338.814610px;}
.x22{left:344.316450px;}
.x6{left:347.125950px;}
.x40{left:360.503998px;}
.x23{left:361.908450px;}
.x24{left:375.789160px;}
.x25{left:379.509160px;}
.x26{left:393.381160px;}
.xd{left:396.615746px;}
.x7{left:409.465950px;}
.x27{left:410.973160px;}
.x28{left:424.845160px;}
.x29{left:442.437160px;}
.x2a{left:456.309160px;}
.x2b{left:460.029160px;}
.x8{left:462.805950px;}
.x2c{left:473.901160px;}
.x1{left:485.858414px;}
.x2d{left:491.493160px;}
.xe{left:504.879746px;}
.x2e{left:522.957160px;}
.x2f{left:536.829160px;}
.x30{left:540.549160px;}
.x31{left:554.421160px;}
.x32{left:572.013160px;}
.x33{left:585.885160px;}
@media print{
.v3{vertical-align:-17.066691pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.889396pt;}
.v1{vertical-align:20.266927pt;}
.ls10{letter-spacing:-2.816000pt;}
.lsd{letter-spacing:-1.365333pt;}
.lsf{letter-spacing:-0.896000pt;}
.lse{letter-spacing:-0.640000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.000004pt;}
.ls15{letter-spacing:0.000016pt;}
.ls4{letter-spacing:0.000024pt;}
.ls6{letter-spacing:0.000065pt;}
.ls9{letter-spacing:0.000098pt;}
.ls1{letter-spacing:0.000121pt;}
.ls12{letter-spacing:0.000586pt;}
.ls3{letter-spacing:0.045311pt;}
.lsb{letter-spacing:0.085286pt;}
.lsc{letter-spacing:0.085295pt;}
.ls28{letter-spacing:0.089600pt;}
.ls5{letter-spacing:0.122125pt;}
.lsa{letter-spacing:0.170569pt;}
.ls2a{letter-spacing:0.174933pt;}
.ls8{letter-spacing:0.219750pt;}
.ls24{letter-spacing:0.268856pt;}
.ls1c{letter-spacing:0.430992pt;}
.ls30{letter-spacing:0.597323pt;}
.ls2e{letter-spacing:0.597329pt;}
.ls1a{letter-spacing:0.597333pt;}
.ls21{letter-spacing:0.601594pt;}
.ls2c{letter-spacing:0.601600pt;}
.ls25{letter-spacing:0.605867pt;}
.ls18{letter-spacing:0.896000pt;}
.ls26{letter-spacing:0.908762pt;}
.ls3e{letter-spacing:1.412226pt;}
.ls31{letter-spacing:1.813333pt;}
.ls1b{letter-spacing:2.175988pt;}
.ls37{letter-spacing:2.180317pt;}
.ls3c{letter-spacing:2.513037pt;}
.ls3a{letter-spacing:2.798933pt;}
.ls38{letter-spacing:2.850197pt;}
.ls16{letter-spacing:2.948267pt;}
.ls0{letter-spacing:2.986667pt;}
.ls33{letter-spacing:3.417600pt;}
.ls3b{letter-spacing:3.498667pt;}
.ls1e{letter-spacing:3.801600pt;}
.ls34{letter-spacing:3.844255pt;}
.ls36{letter-spacing:3.865600pt;}
.ls22{letter-spacing:3.976584pt;}
.ls1f{letter-spacing:4.138591pt;}
.ls3f{letter-spacing:4.172736pt;}
.ls39{letter-spacing:4.185600pt;}
.ls17{letter-spacing:4.437333pt;}
.ls2d{letter-spacing:4.603791pt;}
.ls41{letter-spacing:4.868267pt;}
.ls27{letter-spacing:5.081600pt;}
.ls2b{letter-spacing:5.290667pt;}
.ls3d{letter-spacing:5.589333pt;}
.ls1d{letter-spacing:5.764247pt;}
.ls2f{letter-spacing:7.052800pt;}
.ls32{letter-spacing:7.854933pt;}
.ls29{letter-spacing:8.490667pt;}
.ls20{letter-spacing:9.006925pt;}
.ls19{letter-spacing:9.992533pt;}
.ls35{letter-spacing:10.760505pt;}
.ls40{letter-spacing:10.803187pt;}
.ls23{letter-spacing:10.969600pt;}
.ls7{letter-spacing:76.032000pt;}
.ls14{letter-spacing:77.738667pt;}
.ls13{letter-spacing:335.488000pt;}
.ws60{word-spacing:-50.666667pt;}
.ws81{word-spacing:-42.666667pt;}
.ws6{word-spacing:-12.666667pt;}
.ws44{word-spacing:-11.850667pt;}
.wse8{word-spacing:-11.264000pt;}
.ws80{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.488000pt;}
.ws4{word-spacing:-10.234667pt;}
.ws45{word-spacing:-10.080000pt;}
.ws5{word-spacing:-9.728000pt;}
.ws76{word-spacing:-9.301333pt;}
.ws61{word-spacing:-8.866667pt;}
.ws1{word-spacing:-8.362667pt;}
.wscf{word-spacing:-8.192000pt;}
.ws7f{word-spacing:-7.466667pt;}
.ws3{word-spacing:-7.341600pt;}
.wse{word-spacing:-6.333333pt;}
.ws83{word-spacing:-5.333333pt;}
.ws55{word-spacing:-1.064000pt;}
.wsbc{word-spacing:-0.912000pt;}
.wsd4{word-spacing:-0.896000pt;}
.ws123{word-spacing:-0.768000pt;}
.wsa8{word-spacing:-0.760000pt;}
.ws12a{word-spacing:-0.725333pt;}
.wsd3{word-spacing:-0.682667pt;}
.ws88{word-spacing:-0.658667pt;}
.wsa0{word-spacing:-0.608000pt;}
.wsf2{word-spacing:-0.597333pt;}
.ws46{word-spacing:-0.557333pt;}
.wsfd{word-spacing:-0.512000pt;}
.wsc3{word-spacing:-0.506667pt;}
.wse6{word-spacing:-0.469333pt;}
.ws32{word-spacing:-0.456000pt;}
.ws8{word-spacing:-0.426667pt;}
.ws114{word-spacing:-0.384000pt;}
.ws50{word-spacing:-0.354667pt;}
.ws111{word-spacing:-0.341333pt;}
.wsc7{word-spacing:-0.304000pt;}
.wsee{word-spacing:-0.256000pt;}
.ws49{word-spacing:-0.253333pt;}
.ws127{word-spacing:-0.213333pt;}
.wsec{word-spacing:-0.170667pt;}
.ws24{word-spacing:-0.152000pt;}
.ws109{word-spacing:-0.128000pt;}
.wsa{word-spacing:-0.101333pt;}
.wsd5{word-spacing:-0.085333pt;}
.wsc{word-spacing:-0.050667pt;}
.ws0{word-spacing:-0.042667pt;}
.ws91{word-spacing:-0.029867pt;}
.ws7{word-spacing:0.000000pt;}
.ws12f{word-spacing:0.042667pt;}
.wsbe{word-spacing:0.050667pt;}
.ws35{word-spacing:0.101333pt;}
.ws34{word-spacing:0.152000pt;}
.wsef{word-spacing:0.170667pt;}
.wsb1{word-spacing:0.202667pt;}
.wsf6{word-spacing:0.213333pt;}
.ws4e{word-spacing:0.253333pt;}
.ws11e{word-spacing:0.256000pt;}
.ws106{word-spacing:0.298667pt;}
.ws19{word-spacing:0.304000pt;}
.ws5b{word-spacing:0.354667pt;}
.ws116{word-spacing:0.384000pt;}
.ws54{word-spacing:0.405333pt;}
.wsc9{word-spacing:0.506667pt;}
.ws12e{word-spacing:0.512000pt;}
.ws113{word-spacing:0.554667pt;}
.ws86{word-spacing:0.557333pt;}
.wsf7{word-spacing:0.597333pt;}
.ws37{word-spacing:0.608000pt;}
.wse9{word-spacing:0.640000pt;}
.wsa7{word-spacing:0.658667pt;}
.wsea{word-spacing:0.682667pt;}
.ws29{word-spacing:0.709333pt;}
.ws107{word-spacing:0.725333pt;}
.ws4d{word-spacing:0.760000pt;}
.ws13{word-spacing:0.810667pt;}
.wse3{word-spacing:0.853333pt;}
.ws23{word-spacing:0.861333pt;}
.ws3e{word-spacing:0.912000pt;}
.ws17{word-spacing:0.962667pt;}
.ws104{word-spacing:0.981333pt;}
.wsb8{word-spacing:1.013333pt;}
.ws9{word-spacing:1.064000pt;}
.wsfa{word-spacing:1.066667pt;}
.ws11a{word-spacing:1.109333pt;}
.wse4{word-spacing:1.152000pt;}
.ws14{word-spacing:1.165333pt;}
.ws4f{word-spacing:1.216000pt;}
.ws11{word-spacing:1.266667pt;}
.ws137{word-spacing:1.280000pt;}
.ws2c{word-spacing:1.317333pt;}
.ws6b{word-spacing:1.368000pt;}
.ws10a{word-spacing:1.408000pt;}
.ws12{word-spacing:1.418667pt;}
.ws133{word-spacing:1.450667pt;}
.wsc0{word-spacing:1.469333pt;}
.wsf5{word-spacing:1.493333pt;}
.ws1c{word-spacing:1.520000pt;}
.ws20{word-spacing:1.570667pt;}
.wsdc{word-spacing:1.578667pt;}
.ws4b{word-spacing:1.621333pt;}
.wsf1{word-spacing:1.664000pt;}
.wsfe{word-spacing:1.749333pt;}
.ws6d{word-spacing:1.773333pt;}
.ws132{word-spacing:1.792000pt;}
.ws48{word-spacing:1.824000pt;}
.ws10c{word-spacing:1.834667pt;}
.wsd{word-spacing:1.874667pt;}
.ws2d{word-spacing:1.925333pt;}
.ws100{word-spacing:1.962667pt;}
.ws4c{word-spacing:1.976000pt;}
.ws3f{word-spacing:2.026667pt;}
.ws11f{word-spacing:2.048000pt;}
.wsf{word-spacing:2.077333pt;}
.ws115{word-spacing:2.090667pt;}
.ws59{word-spacing:2.128000pt;}
.ws97{word-spacing:2.133333pt;}
.wsd9{word-spacing:2.176000pt;}
.ws64{word-spacing:2.178667pt;}
.ws12b{word-spacing:2.218667pt;}
.ws41{word-spacing:2.229333pt;}
.wsdd{word-spacing:2.261333pt;}
.ws74{word-spacing:2.280000pt;}
.ws22{word-spacing:2.330667pt;}
.wsb{word-spacing:2.432000pt;}
.wseb{word-spacing:2.474667pt;}
.wsb7{word-spacing:2.482667pt;}
.ws105{word-spacing:2.517333pt;}
.wsc6{word-spacing:2.533333pt;}
.ws119{word-spacing:2.560000pt;}
.ws6c{word-spacing:2.584000pt;}
.ws130{word-spacing:2.602667pt;}
.ws67{word-spacing:2.634667pt;}
.wsfb{word-spacing:2.645333pt;}
.ws121{word-spacing:2.688000pt;}
.wse7{word-spacing:2.730667pt;}
.ws6e{word-spacing:2.736000pt;}
.ws1a{word-spacing:2.786667pt;}
.ws102{word-spacing:2.816000pt;}
.ws16{word-spacing:2.837333pt;}
.wsdf{word-spacing:2.858667pt;}
.ws85{word-spacing:2.888000pt;}
.ws11c{word-spacing:2.944000pt;}
.ws110{word-spacing:2.986667pt;}
.ws8d{word-spacing:2.989333pt;}
.ws2b{word-spacing:3.040000pt;}
.wse0{word-spacing:3.072000pt;}
.ws73{word-spacing:3.090667pt;}
.ws128{word-spacing:3.114667pt;}
.ws63{word-spacing:3.141333pt;}
.ws72{word-spacing:3.192000pt;}
.wsf0{word-spacing:3.200000pt;}
.ws4a{word-spacing:3.242667pt;}
.wsfc{word-spacing:3.285333pt;}
.ws36{word-spacing:3.293333pt;}
.ws5f{word-spacing:3.344000pt;}
.ws9e{word-spacing:3.394667pt;}
.ws103{word-spacing:3.413333pt;}
.wsa4{word-spacing:3.445333pt;}
.wsb2{word-spacing:3.496000pt;}
.wsf3{word-spacing:3.498667pt;}
.wsd0{word-spacing:3.546667pt;}
.ws12c{word-spacing:3.584000pt;}
.ws52{word-spacing:3.597333pt;}
.wsff{word-spacing:3.626667pt;}
.ws1d{word-spacing:3.648000pt;}
.ws10b{word-spacing:3.669333pt;}
.ws69{word-spacing:3.698667pt;}
.ws33{word-spacing:3.749333pt;}
.ws10d{word-spacing:3.797333pt;}
.wsab{word-spacing:3.800000pt;}
.wse2{word-spacing:3.840000pt;}
.ws39{word-spacing:3.850667pt;}
.ws125{word-spacing:3.882667pt;}
.wsa9{word-spacing:3.901333pt;}
.ws129{word-spacing:3.925333pt;}
.wscd{word-spacing:3.952000pt;}
.ws122{word-spacing:3.968000pt;}
.ws47{word-spacing:4.002667pt;}
.ws136{word-spacing:4.010667pt;}
.wsb3{word-spacing:4.104000pt;}
.ws10e{word-spacing:4.138667pt;}
.ws10{word-spacing:4.154667pt;}
.ws66{word-spacing:4.205333pt;}
.ws12d{word-spacing:4.224000pt;}
.wsad{word-spacing:4.256000pt;}
.wsda{word-spacing:4.266667pt;}
.wsba{word-spacing:4.306667pt;}
.wsa1{word-spacing:4.357333pt;}
.wsbb{word-spacing:4.408000pt;}
.ws5d{word-spacing:4.458667pt;}
.ws21{word-spacing:4.509333pt;}
.ws10f{word-spacing:4.522667pt;}
.ws5a{word-spacing:4.560000pt;}
.wse1{word-spacing:4.565333pt;}
.ws117{word-spacing:4.608000pt;}
.ws3d{word-spacing:4.610667pt;}
.wsdb{word-spacing:4.650667pt;}
.wsb5{word-spacing:4.712000pt;}
.wsb9{word-spacing:4.762667pt;}
.ws53{word-spacing:4.813333pt;}
.ws5c{word-spacing:4.864000pt;}
.wsf4{word-spacing:4.906667pt;}
.ws26{word-spacing:4.914667pt;}
.wscc{word-spacing:4.965333pt;}
.ws27{word-spacing:5.016000pt;}
.ws3b{word-spacing:5.066667pt;}
.ws58{word-spacing:5.117333pt;}
.ws135{word-spacing:5.120000pt;}
.ws1e{word-spacing:5.168000pt;}
.ws8e{word-spacing:5.218667pt;}
.wsf9{word-spacing:5.248000pt;}
.ws40{word-spacing:5.269333pt;}
.ws2f{word-spacing:5.320000pt;}
.wsd2{word-spacing:5.333333pt;}
.ws30{word-spacing:5.370667pt;}
.ws131{word-spacing:5.418667pt;}
.ws57{word-spacing:5.421333pt;}
.ws18{word-spacing:5.472000pt;}
.ws31{word-spacing:5.522667pt;}
.ws42{word-spacing:5.624000pt;}
.ws89{word-spacing:5.674667pt;}
.wsca{word-spacing:5.725333pt;}
.wsaa{word-spacing:5.776000pt;}
.wsf8{word-spacing:5.802667pt;}
.wsaf{word-spacing:5.826667pt;}
.ws2e{word-spacing:5.877333pt;}
.ws15{word-spacing:5.928000pt;}
.ws62{word-spacing:5.978667pt;}
.ws124{word-spacing:6.016000pt;}
.wsed{word-spacing:6.058667pt;}
.wsa3{word-spacing:6.080000pt;}
.wsc8{word-spacing:6.181333pt;}
.ws134{word-spacing:6.272000pt;}
.wsc2{word-spacing:6.282667pt;}
.wsd8{word-spacing:6.314667pt;}
.wsa5{word-spacing:6.333333pt;}
.ws8a{word-spacing:6.384000pt;}
.ws2a{word-spacing:6.434667pt;}
.ws82{word-spacing:6.485333pt;}
.wsd6{word-spacing:6.570667pt;}
.wsae{word-spacing:6.586667pt;}
.ws1f{word-spacing:6.637333pt;}
.wsde{word-spacing:6.698667pt;}
.wsd1{word-spacing:6.741333pt;}
.ws71{word-spacing:6.789333pt;}
.wsbf{word-spacing:6.840000pt;}
.ws11d{word-spacing:6.869333pt;}
.wsc1{word-spacing:6.890667pt;}
.wsc5{word-spacing:6.941333pt;}
.ws8c{word-spacing:7.042667pt;}
.ws65{word-spacing:7.144000pt;}
.wsac{word-spacing:7.194667pt;}
.wsb6{word-spacing:7.296000pt;}
.ws118{word-spacing:7.338667pt;}
.ws68{word-spacing:7.346667pt;}
.ws120{word-spacing:7.381333pt;}
.wsb4{word-spacing:7.448000pt;}
.ws51{word-spacing:7.549333pt;}
.ws87{word-spacing:7.600000pt;}
.ws56{word-spacing:7.752000pt;}
.ws38{word-spacing:7.802667pt;}
.ws112{word-spacing:7.893333pt;}
.ws5e{word-spacing:7.904000pt;}
.ws84{word-spacing:7.954667pt;}
.ws43{word-spacing:8.056000pt;}
.wsce{word-spacing:8.106667pt;}
.ws6a{word-spacing:8.157333pt;}
.ws11b{word-spacing:8.192000pt;}
.ws3c{word-spacing:8.309333pt;}
.ws101{word-spacing:8.405333pt;}
.wsd7{word-spacing:8.533333pt;}
.ws99{word-spacing:8.664000pt;}
.wsc4{word-spacing:8.765333pt;}
.wsbd{word-spacing:8.866667pt;}
.wsb0{word-spacing:9.120000pt;}
.ws28{word-spacing:9.322667pt;}
.wscb{word-spacing:9.424000pt;}
.ws9d{word-spacing:9.474667pt;}
.ws9b{word-spacing:9.576000pt;}
.wsa2{word-spacing:9.778667pt;}
.wsa6{word-spacing:9.880000pt;}
.wse5{word-spacing:9.941333pt;}
.ws8b{word-spacing:9.981333pt;}
.ws9a{word-spacing:10.032000pt;}
.ws75{word-spacing:10.184000pt;}
.ws108{word-spacing:10.282667pt;}
.ws3a{word-spacing:10.285333pt;}
.ws138{word-spacing:10.709333pt;}
.ws126{word-spacing:10.794667pt;}
.ws98{word-spacing:10.842667pt;}
.ws6f{word-spacing:10.994667pt;}
.ws25{word-spacing:11.248000pt;}
.ws1b{word-spacing:11.349333pt;}
.ws8f{word-spacing:12.160000pt;}
.ws9f{word-spacing:12.362667pt;}
.ws90{word-spacing:12.413333pt;}
.ws9c{word-spacing:16.922667pt;}
.ws70{word-spacing:20.570667pt;}
.ws79{word-spacing:22.698667pt;}
.ws77{word-spacing:51.157333pt;}
.ws139{word-spacing:64.938667pt;}
.ws95{word-spacing:67.072000pt;}
.ws92{word-spacing:103.893333pt;}
.ws94{word-spacing:152.917314pt;}
.ws93{word-spacing:170.026667pt;}
.ws7d{word-spacing:197.290667pt;}
.ws96{word-spacing:200.746658pt;}
.ws7c{word-spacing:233.600000pt;}
.ws7b{word-spacing:271.360000pt;}
.ws78{word-spacing:292.736000pt;}
.ws7a{word-spacing:300.074667pt;}
.ws7e{word-spacing:301.141333pt;}
._4a{margin-left:-23.256000pt;}
._38{margin-left:-19.581867pt;}
._37{margin-left:-18.544000pt;}
._49{margin-left:-17.586742pt;}
._13{margin-left:-16.517333pt;}
._34{margin-left:-14.641194pt;}
._16{margin-left:-13.655917pt;}
._15{margin-left:-12.400042pt;}
._f{margin-left:-11.082678pt;}
._35{margin-left:-9.749866pt;}
._5{margin-left:-8.765333pt;}
._a{margin-left:-7.759467pt;}
._9{margin-left:-6.832533pt;}
._14{margin-left:-5.834133pt;}
._10{margin-left:-4.610667pt;}
._8{margin-left:-3.293333pt;}
._4{margin-left:-2.381333pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.139200pt;}
._2{width:2.098104pt;}
._4b{width:3.025067pt;}
._d{width:3.946933pt;}
._e{width:5.422133pt;}
._11{width:7.093326pt;}
._7{width:8.096533pt;}
._6{width:9.243200pt;}
._b{width:10.634667pt;}
._36{width:11.952266pt;}
._17{width:13.913066pt;}
._12{width:16.426650pt;}
._4c{width:20.614527pt;}
._1e{width:33.365333pt;}
._3f{width:35.072000pt;}
._3{width:36.382479pt;}
._21{width:45.184000pt;}
._4d{width:50.005333pt;}
._20{width:54.698667pt;}
._43{width:56.405333pt;}
._39{width:63.530667pt;}
._44{width:69.759981pt;}
._1b{width:72.320000pt;}
._41{width:77.738667pt;}
._46{width:88.405333pt;}
._48{width:99.072000pt;}
._1a{width:104.320000pt;}
._42{width:115.157314pt;}
._3a{width:116.693333pt;}
._19{width:125.653333pt;}
._1d{width:141.111467pt;}
._1c{width:143.458133pt;}
._3e{width:162.901314pt;}
._47{width:164.045306pt;}
._27{width:175.317333pt;}
._22{width:195.754667pt;}
._24{width:196.650667pt;}
._45{width:199.210658pt;}
._3c{width:202.026667pt;}
._33{width:210.432000pt;}
._2a{width:217.984000pt;}
._2d{width:220.373333pt;}
._3d{width:223.360000pt;}
._25{width:228.650667pt;}
._31{width:236.586667pt;}
._2c{width:239.317333pt;}
._32{width:255.829333pt;}
._1f{width:265.429333pt;}
._18{width:272.682667pt;}
._2b{width:279.210667pt;}
._30{width:281.984000pt;}
._29{width:324.608000pt;}
._40{width:335.488000pt;}
._2f{width:340.821333pt;}
._23{width:363.426667pt;}
._2e{width:386.218667pt;}
._3b{width:434.560000pt;}
._28{width:656.128000pt;}
._26{width:670.336000pt;}
._c{width:974.890667pt;}
.fs6{font-size:29.866667pt;}
.fs3{font-size:35.466667pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:50.666667pt;}
.fs5{font-size:53.333333pt;}
.fs4{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:29.055333pt;}
.yf3{bottom:65.131468pt;}
.y29{bottom:65.133331pt;}
.y130{bottom:65.144002pt;}
.y12b{bottom:65.151486pt;}
.y10a{bottom:65.151497pt;}
.y104{bottom:65.151506pt;}
.y115{bottom:65.194169pt;}
.y5a{bottom:65.267583pt;}
.yec{bottom:66.164002pt;}
.y9c{bottom:72.052262pt;}
.y7e{bottom:72.204270pt;}
.y98{bottom:72.216270pt;}
.y171{bottom:72.864936pt;}
.yf4{bottom:73.131468pt;}
.y105{bottom:73.151506pt;}
.y1d9{bottom:75.546249pt;}
.y154{bottom:78.773731pt;}
.y59{bottom:80.606916pt;}
.yeb{bottom:81.503335pt;}
.y19e{bottom:82.418270pt;}
.y9b{bottom:87.391595pt;}
.y7d{bottom:87.543603pt;}
.y97{bottom:87.549603pt;}
.y1d8{bottom:87.876916pt;}
.y170{bottom:88.204270pt;}
.y153{bottom:94.113065pt;}
.y19d{bottom:94.748936pt;}
.y58{bottom:95.946249pt;}
.yea{bottom:96.842669pt;}
.y1d7{bottom:100.207583pt;}
.y28{bottom:101.927606pt;}
.y9a{bottom:102.730928pt;}
.y7c{bottom:102.882936pt;}
.y16f{bottom:103.543603pt;}
.y19c{bottom:107.079603pt;}
.y152{bottom:109.452398pt;}
.y57{bottom:111.285583pt;}
.ye9{bottom:112.182002pt;}
.y1d6{bottom:112.538249pt;}
.y27{bottom:117.266939pt;}
.y99{bottom:118.070262pt;}
.y96{bottom:118.216270pt;}
.y7b{bottom:118.222270pt;}
.y16e{bottom:118.882936pt;}
.y19b{bottom:119.410270pt;}
.y151{bottom:124.791731pt;}
.y1d5{bottom:124.868916pt;}
.y56{bottom:126.624916pt;}
.ye8{bottom:127.521335pt;}
.y19a{bottom:131.740936pt;}
.y26{bottom:132.606272pt;}
.y95{bottom:133.549603pt;}
.y16d{bottom:134.222270pt;}
.y1d4{bottom:137.199583pt;}
.y150{bottom:140.131065pt;}
.y55{bottom:141.964249pt;}
.ye7{bottom:142.860669pt;}
.y199{bottom:144.071603pt;}
.y25{bottom:147.945606pt;}
.y94{bottom:148.882936pt;}
.y1d3{bottom:149.530249pt;}
.y7a{bottom:149.555603pt;}
.y122{bottom:154.634156pt;}
.yfd{bottom:154.634167pt;}
.yf5{bottom:154.635466pt;}
.y126{bottom:154.644824pt;}
.y108{bottom:154.644835pt;}
.y100{bottom:154.644840pt;}
.y106{bottom:154.655504pt;}
.y111{bottom:154.676839pt;}
.y113{bottom:154.687508pt;}
.y11b{bottom:154.719512pt;}
.y11d{bottom:154.730180pt;}
.y14f{bottom:155.470398pt;}
.y198{bottom:156.402270pt;}
.y54{bottom:157.303583pt;}
.ye6{bottom:158.200002pt;}
.y1d2{bottom:161.860916pt;}
.yfe{bottom:162.634167pt;}
.yf6{bottom:162.635466pt;}
.y101{bottom:162.644840pt;}
.y24{bottom:163.284939pt;}
.y93{bottom:164.210270pt;}
.y16c{bottom:165.555603pt;}
.y197{bottom:168.732936pt;}
.ybb{bottom:169.565338pt;}
.y1eb{bottom:171.206260pt;}
.y53{bottom:172.642916pt;}
.y1d1{bottom:174.191583pt;}
.y23{bottom:178.624272pt;}
.y92{bottom:179.549603pt;}
.y196{bottom:181.063603pt;}
.y79{bottom:185.381583pt;}
.y1d0{bottom:186.522249pt;}
.y14e{bottom:186.803731pt;}
.y1ea{bottom:187.803609pt;}
.y52{bottom:187.982249pt;}
.ye5{bottom:189.533325pt;}
.yca{bottom:189.558133pt;}
.y195{bottom:193.394270pt;}
.y91{bottom:194.876936pt;}
.y1cf{bottom:198.852916pt;}
.y78{bottom:200.720916pt;}
.y1e9{bottom:202.581605pt;}
.y51{bottom:203.321583pt;}
.yc9{bottom:205.259467pt;}
.y194{bottom:205.724936pt;}
.y90{bottom:210.216270pt;}
.y1ce{bottom:211.183583pt;}
.y77{bottom:216.060249pt;}
.y193{bottom:218.071603pt;}
.y50{bottom:218.660916pt;}
.y1e8{bottom:219.178935pt;}
.yc8{bottom:220.896800pt;}
.y1cd{bottom:223.514249pt;}
.y8f{bottom:225.555603pt;}
.y22{bottom:227.289606pt;}
.y16b{bottom:230.096249pt;}
.y192{bottom:230.402270pt;}
.y76{bottom:231.399583pt;}
.y4f{bottom:234.000249pt;}
.ye4{bottom:234.687607pt;}
.y1cc{bottom:235.844916pt;}
.yc7{bottom:236.534133pt;}
.y14d{bottom:237.503325pt;}
.y1e7{bottom:238.220927pt;}
.y21{bottom:242.628939pt;}
.y191{bottom:242.732936pt;}
.yf2{bottom:244.374135pt;}
.y123{bottom:244.383484pt;}
.yff{bottom:244.383500pt;}
.y11f{bottom:244.384795pt;}
.yf7{bottom:244.384800pt;}
.y127{bottom:244.394152pt;}
.y102{bottom:244.394173pt;}
.y12c{bottom:244.404812pt;}
.y16a{bottom:245.435583pt;}
.y75{bottom:246.738916pt;}
.y1cb{bottom:248.175583pt;}
.y4e{bottom:249.339583pt;}
.ye3{bottom:250.026940pt;}
.yc6{bottom:252.171467pt;}
.y14c{bottom:252.842659pt;}
.y190{bottom:255.063603pt;}
.y8e{bottom:256.888936pt;}
.y1e6{bottom:257.262939pt;}
.y1ca{bottom:260.506249pt;}
.y169{bottom:260.774916pt;}
.y74{bottom:262.078249pt;}
.y4d{bottom:264.678916pt;}
.ye2{bottom:265.366274pt;}
.y18f{bottom:267.394270pt;}
.yc5{bottom:267.808800pt;}
.y14b{bottom:268.181992pt;}
.y1c9{bottom:272.836916pt;}
.y20{bottom:273.294939pt;}
.y168{bottom:276.114249pt;}
.y1e5{bottom:276.304932pt;}
.y73{bottom:277.417583pt;}
.y18e{bottom:279.724936pt;}
.y4c{bottom:280.018249pt;}
.ye1{bottom:280.705607pt;}
.yc4{bottom:283.446133pt;}
.y14a{bottom:283.521325pt;}
.y1c8{bottom:285.167583pt;}
.y1f{bottom:288.634272pt;}
.y1e4{bottom:291.082928pt;}
.y167{bottom:291.453583pt;}
.y18d{bottom:292.055603pt;}
.y72{bottom:292.756916pt;}
.y4b{bottom:295.357583pt;}
.y1c7{bottom:297.498249pt;}
.y149{bottom:298.860659pt;}
.yc3{bottom:299.083467pt;}
.y1e{bottom:303.973606pt;}
.y8d{bottom:304.810916pt;}
.y124{bottom:305.556818pt;}
.y120{bottom:305.558128pt;}
.y128{bottom:305.567486pt;}
.y12d{bottom:305.578145pt;}
.y166{bottom:306.792916pt;}
.y1e3{bottom:307.680257pt;}
.y71{bottom:308.096249pt;}
.y1c6{bottom:309.828916pt;}
.y4a{bottom:310.696916pt;}
.ye0{bottom:312.038940pt;}
.y148{bottom:314.199992pt;}
.yc2{bottom:314.720800pt;}
.y1d{bottom:319.312939pt;}
.y8c{bottom:320.150249pt;}
.y18c{bottom:320.655741pt;}
.y165{bottom:322.132249pt;}
.y1c5{bottom:322.159583pt;}
.y70{bottom:323.435583pt;}
.y49{bottom:326.036249pt;}
.y1e2{bottom:326.722270pt;}
.yc1{bottom:330.358133pt;}
.y1c4{bottom:334.490249pt;}
.y1c{bottom:334.652272pt;}
.y8b{bottom:335.489583pt;}
.y164{bottom:337.471583pt;}
.y6f{bottom:338.774916pt;}
.y48{bottom:341.375583pt;}
.y147{bottom:345.533325pt;}
.yc0{bottom:345.995467pt;}
.y1c3{bottom:346.820916pt;}
.y1e1{bottom:347.591615pt;}
.y1b{bottom:349.991606pt;}
.y8a{bottom:350.828916pt;}
.y163{bottom:352.810916pt;}
.y6e{bottom:354.114249pt;}
.y47{bottom:356.714916pt;}
.ydf{bottom:357.157182pt;}
.y1c2{bottom:359.151583pt;}
.y1e0{bottom:359.922282pt;}
.ybf{bottom:361.632800pt;}
.y1a{bottom:365.330939pt;}
.y89{bottom:366.168249pt;}
.y125{bottom:366.730151pt;}
.y121{bottom:366.731462pt;}
.y129{bottom:366.740819pt;}
.y12e{bottom:366.751479pt;}
.y162{bottom:368.150249pt;}
.y6d{bottom:369.453583pt;}
.y1c1{bottom:371.482249pt;}
.y46{bottom:372.054249pt;}
.yde{bottom:372.496515pt;}
.y12f{bottom:374.730151pt;}
.y107{bottom:374.730162pt;}
.y12a{bottom:374.740819pt;}
.y109{bottom:374.740830pt;}
.y103{bottom:374.740840pt;}
.y112{bottom:374.772835pt;}
.y114{bottom:374.783503pt;}
.y11c{bottom:374.815507pt;}
.y11e{bottom:374.826176pt;}
.ybe{bottom:377.760800pt;}
.y19{bottom:380.670272pt;}
.y88{bottom:381.507583pt;}
.y161{bottom:383.489583pt;}
.y1c0{bottom:383.812916pt;}
.y146{bottom:384.233062pt;}
.y6c{bottom:384.792916pt;}
.y18b{bottom:386.690388pt;}
.y45{bottom:387.393583pt;}
.ydd{bottom:387.835848pt;}
.y1df{bottom:388.382916pt;}
.y18{bottom:396.009606pt;}
.y1bf{bottom:396.143583pt;}
.y87{bottom:396.846916pt;}
.y160{bottom:398.828916pt;}
.y18a{bottom:399.021054pt;}
.y145{bottom:399.572395pt;}
.y6b{bottom:400.132249pt;}
.ybd{bottom:402.656800pt;}
.y44{bottom:402.732916pt;}
.ydc{bottom:403.175182pt;}
.y1de{bottom:403.716249pt;}
.y1be{bottom:408.474249pt;}
.y17{bottom:411.348939pt;}
.y189{bottom:411.351721pt;}
.y86{bottom:412.186249pt;}
.y15f{bottom:414.168249pt;}
.y144{bottom:414.911728pt;}
.ybc{bottom:414.987467pt;}
.y6a{bottom:415.471583pt;}
.y43{bottom:418.072249pt;}
.ydb{bottom:418.514515pt;}
.y1dd{bottom:419.055583pt;}
.y1bd{bottom:420.804916pt;}
.y188{bottom:423.682388pt;}
.y16{bottom:426.688272pt;}
.y85{bottom:427.525583pt;}
.y15e{bottom:429.507583pt;}
.y143{bottom:430.251062pt;}
.y69{bottom:430.810916pt;}
.y1bc{bottom:433.135583pt;}
.y42{bottom:433.411583pt;}
.yda{bottom:433.853848pt;}
.y187{bottom:436.013054pt;}
.yba{bottom:436.127062pt;}
.y15{bottom:442.027606pt;}
.y84{bottom:442.864916pt;}
.y15d{bottom:444.846916pt;}
.y1bb{bottom:445.466249pt;}
.y142{bottom:445.590395pt;}
.y68{bottom:446.150249pt;}
.y186{bottom:448.343721pt;}
.y41{bottom:448.750916pt;}
.yd9{bottom:449.193182pt;}
.y1dc{bottom:450.388916pt;}
.yed{bottom:455.921875pt;}
.y14{bottom:457.366939pt;}
.y1ba{bottom:457.796916pt;}
.y83{bottom:458.204249pt;}
.y15c{bottom:460.186249pt;}
.y185{bottom:460.674388pt;}
.y141{bottom:460.929728pt;}
.y67{bottom:461.489583pt;}
.y40{bottom:464.090249pt;}
.yd8{bottom:464.532515pt;}
.y1b9{bottom:470.127583pt;}
.y13{bottom:472.706272pt;}
.y184{bottom:473.005054pt;}
.y82{bottom:473.543583pt;}
.y15b{bottom:475.525583pt;}
.y66{bottom:476.828916pt;}
.y3f{bottom:479.429583pt;}
.yd7{bottom:479.871848pt;}
.yf8{bottom:480.682150pt;}
.yee{bottom:480.689875pt;}
.y10b{bottom:480.724823pt;}
.y1b8{bottom:482.458249pt;}
.yb9{bottom:486.847062pt;}
.y12{bottom:488.045606pt;}
.y116{bottom:488.767496pt;}
.y81{bottom:488.882916pt;}
.y15a{bottom:490.864916pt;}
.y65{bottom:492.168249pt;}
.y140{bottom:492.263062pt;}
.y3e{bottom:494.768916pt;}
.y1b7{bottom:494.788916pt;}
.yd6{bottom:495.211182pt;}
.y183{bottom:497.677054pt;}
.yb8{bottom:499.177729pt;}
.y11{bottom:503.384939pt;}
.y80{bottom:504.222249pt;}
.y159{bottom:506.204249pt;}
.y1b6{bottom:507.119583pt;}
.y64{bottom:507.507583pt;}
.y182{bottom:510.007721pt;}
.y3d{bottom:510.108249pt;}
.yb7{bottom:514.879062pt;}
.y10{bottom:518.724272pt;}
.y1db{bottom:519.439583pt;}
.y1b5{bottom:519.450249pt;}
.y158{bottom:521.543583pt;}
.y181{bottom:522.338388pt;}
.y63{bottom:522.846916pt;}
.y3c{bottom:525.447583pt;}
.yd5{bottom:526.544515pt;}
.yb6{bottom:527.209729pt;}
.y13f{bottom:530.956676pt;}
.y1da{bottom:531.770249pt;}
.y1b4{bottom:531.780916pt;}
.yf{bottom:534.063606pt;}
.y180{bottom:534.669054pt;}
.y7f{bottom:535.555583pt;}
.y157{bottom:536.882916pt;}
.y62{bottom:538.186249pt;}
.y3b{bottom:540.786916pt;}
.yb5{bottom:542.842522pt;}
.y1b3{bottom:544.111583pt;}
.y13e{bottom:546.296009pt;}
.y17f{bottom:546.999721pt;}
.ye{bottom:549.402939pt;}
.y156{bottom:552.222249pt;}
.y61{bottom:553.525583pt;}
.yb4{bottom:555.109189pt;}
.y3a{bottom:556.126249pt;}
.y1b2{bottom:556.442249pt;}
.y17e{bottom:559.330388pt;}
.y13d{bottom:561.635342pt;}
.yd{bottom:564.742272pt;}
.y1b1{bottom:568.772916pt;}
.y60{bottom:568.864916pt;}
.yf9{bottom:569.994150pt;}
.yef{bottom:570.001875pt;}
.y10c{bottom:570.036823pt;}
.y117{bottom:570.079496pt;}
.yb3{bottom:570.824665pt;}
.y39{bottom:571.465583pt;}
.y17d{bottom:571.661054pt;}
.yd4{bottom:571.668797pt;}
.y13c{bottom:576.974676pt;}
.yc{bottom:580.081606pt;}
.y1b0{bottom:581.103583pt;}
.yb2{bottom:583.155332pt;}
.y155{bottom:583.555583pt;}
.y17c{bottom:583.991721pt;}
.y5f{bottom:584.204249pt;}
.y38{bottom:586.804916pt;}
.yd3{bottom:587.008130pt;}
.y13b{bottom:592.314009pt;}
.y1af{bottom:593.434249pt;}
.yb{bottom:595.420939pt;}
.y17b{bottom:596.322388pt;}
.yb1{bottom:598.796141pt;}
.y5e{bottom:599.543583pt;}
.y37{bottom:602.144249pt;}
.yd2{bottom:602.347464pt;}
.y1ae{bottom:605.764916pt;}
.y13a{bottom:607.653342pt;}
.yb0{bottom:611.126808pt;}
.y5d{bottom:614.882916pt;}
.y36{bottom:617.483583pt;}
.yd1{bottom:617.686797pt;}
.y1ad{bottom:618.095583pt;}
.y17a{bottom:620.989054pt;}
.y139{bottom:622.992676pt;}
.yaf{bottom:626.771094pt;}
.y5c{bottom:630.222249pt;}
.y1ac{bottom:630.426249pt;}
.y35{bottom:632.822916pt;}
.yd0{bottom:633.026130pt;}
.yfa{bottom:633.162150pt;}
.yf0{bottom:633.163468pt;}
.y10d{bottom:633.204823pt;}
.y118{bottom:633.247496pt;}
.ya{bottom:637.855613pt;}
.yae{bottom:639.101760pt;}
.yfb{bottom:641.162150pt;}
.y10e{bottom:641.204823pt;}
.y119{bottom:641.247496pt;}
.y1ab{bottom:642.756916pt;}
.y34{bottom:648.162249pt;}
.ycf{bottom:648.365464pt;}
.y179{bottom:648.722249pt;}
.y9{bottom:650.186279pt;}
.y138{bottom:654.326009pt;}
.yad{bottom:654.739094pt;}
.y1aa{bottom:655.087583pt;}
.y5b{bottom:661.555583pt;}
.y33{bottom:663.501583pt;}
.yce{bottom:663.704797pt;}
.yac{bottom:667.069760pt;}
.y1a9{bottom:667.418249pt;}
.y178{bottom:673.394249pt;}
.y32{bottom:678.840916pt;}
.ycd{bottom:679.044130pt;}
.y1a8{bottom:679.748916pt;}
.yab{bottom:682.751346pt;}
.y8{bottom:683.754905pt;}
.y177{bottom:685.724916pt;}
.y1a7{bottom:692.079583pt;}
.y137{bottom:693.025583pt;}
.y31{bottom:694.180249pt;}
.ycc{bottom:694.383464pt;}
.yaa{bottom:695.082013pt;}
.y176{bottom:698.055583pt;}
.y7{bottom:699.088238pt;}
.y1a6{bottom:704.410249pt;}
.y136{bottom:708.364916pt;}
.y30{bottom:709.519583pt;}
.ya9{bottom:711.210013pt;}
.y6{bottom:714.427572pt;}
.y1a5{bottom:716.740916pt;}
.yfc{bottom:722.367484pt;}
.yf1{bottom:722.368802pt;}
.y10f{bottom:722.410156pt;}
.y11a{bottom:722.452829pt;}
.y135{bottom:723.704249pt;}
.y2f{bottom:724.858916pt;}
.ycb{bottom:725.716797pt;}
.y1a4{bottom:729.071583pt;}
.y110{bottom:730.410156pt;}
.ya1{bottom:736.074013pt;}
.ya4{bottom:736.084680pt;}
.ya7{bottom:736.095346pt;}
.y175{bottom:738.043583pt;}
.y134{bottom:739.043583pt;}
.y2e{bottom:740.198249pt;}
.y1a3{bottom:741.402249pt;}
.ya0{bottom:748.404680pt;}
.ya3{bottom:748.415346pt;}
.ya6{bottom:748.426013pt;}
.y5{bottom:752.147624pt;}
.y174{bottom:753.382916pt;}
.y1a2{bottom:753.732916pt;}
.y133{bottom:754.382916pt;}
.y2d{bottom:755.537583pt;}
.y9f{bottom:760.735346pt;}
.ya2{bottom:760.746013pt;}
.ya5{bottom:760.756680pt;}
.ya8{bottom:760.767346pt;}
.y1a1{bottom:766.063583pt;}
.y173{bottom:768.722249pt;}
.y132{bottom:769.722249pt;}
.y2c{bottom:770.876916pt;}
.y1a0{bottom:778.394249pt;}
.y9e{bottom:781.930013pt;}
.y2b{bottom:786.216249pt;}
.y19f{bottom:790.724916pt;}
.y4{bottom:799.809082pt;}
.y172{bottom:800.055583pt;}
.y131{bottom:801.055583pt;}
.y2a{bottom:801.555583pt;}
.y9d{bottom:803.055583pt;}
.y3{bottom:823.215232pt;}
.y2{bottom:835.545898pt;}
.h18{height:21.294933pt;}
.h20{height:26.581350pt;}
.h2{height:30.080000pt;}
.hc{height:30.421333pt;}
.h16{height:30.677333pt;}
.h23{height:30.833333pt;}
.h9{height:36.125333pt;}
.h3{height:37.376000pt;}
.h1a{height:37.593584pt;}
.h11{height:37.802667pt;}
.h1f{height:38.053373pt;}
.h1b{height:38.248004pt;}
.h1e{height:38.262929pt;}
.h1c{height:38.281059pt;}
.h1d{height:38.330696pt;}
.h19{height:38.361668pt;}
.h4{height:41.514667pt;}
.h13{height:43.470990pt;}
.h14{height:43.620190pt;}
.h15{height:43.634095pt;}
.h12{height:43.648000pt;}
.h17{height:43.666160pt;}
.hb{height:44.890667pt;}
.he{height:47.680000pt;}
.h8{height:50.109333pt;}
.ha{height:51.832000pt;}
.h10{height:51.856000pt;}
.hf{height:51.880000pt;}
.h21{height:54.775831pt;}
.h6{height:54.775994pt;}
.h22{height:54.799831pt;}
.h7{height:54.799994pt;}
.hd{height:58.021333pt;}
.h5{height:61.429333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:62.362269pt;}
.x3{left:66.248398pt;}
.xa{left:70.360662pt;}
.x4{left:77.486132pt;}
.x42{left:81.263469pt;}
.x41{left:85.039602pt;}
.xf{left:91.487864pt;}
.x10{left:103.818531pt;}
.x12{left:112.666531pt;}
.x11{left:116.149198pt;}
.x34{left:139.829462pt;}
.x13{left:141.029198pt;}
.x35{left:152.160129pt;}
.x14{left:153.359864pt;}
.x9{left:155.374008pt;}
.xb{left:163.374008pt;}
.x15{left:165.690531pt;}
.x36{left:172.355469pt;}
.x16{left:181.846936pt;}
.x37{left:184.686136pt;}
.x17{left:194.177603pt;}
.x38{left:204.856803pt;}
.x18{left:206.508269pt;}
.x39{left:217.187469pt;}
.x19{left:222.145603pt;}
.x3a{left:232.888803pt;}
.x1a{left:234.476269pt;}
.x3b{left:245.155469pt;}
.x5{left:247.809733pt;}
.x1b{left:250.113603pt;}
.xc{left:256.312663pt;}
.x3c{left:260.805876pt;}
.x1c{left:262.444269pt;}
.x1f{left:265.760400pt;}
.x3d{left:273.136542pt;}
.x1d{left:274.774936pt;}
.x20{left:278.091067pt;}
.x1e{left:287.105603pt;}
.x3e{left:288.837876pt;}
.x21{left:293.728400pt;}
.x3f{left:301.168542pt;}
.x22{left:306.059067pt;}
.x6{left:308.556400pt;}
.x40{left:320.447998pt;}
.x23{left:321.696400pt;}
.x24{left:334.034809pt;}
.x25{left:337.341476pt;}
.x26{left:349.672142pt;}
.xd{left:352.547329pt;}
.x7{left:363.969733pt;}
.x27{left:365.309476pt;}
.x28{left:377.640142pt;}
.x29{left:393.277476pt;}
.x2a{left:405.608142pt;}
.x2b{left:408.914809pt;}
.x8{left:411.383066pt;}
.x2c{left:421.245476pt;}
.x1{left:431.874146pt;}
.x2d{left:436.882809pt;}
.xe{left:448.781996pt;}
.x2e{left:464.850809pt;}
.x2f{left:477.181476pt;}
.x30{left:480.488142pt;}
.x31{left:492.818809pt;}
.x32{left:508.456142pt;}
.x33{left:520.786809pt;}
}




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