
    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_6d52986b7ecaf40ede2548df.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.136719;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_823ea4bf4b0223d2d658db17.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.120117;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_5ab06afba0e2bfb2db86e8c2.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_20b2fcf416dfda820c9a340f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.682617;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_b4a7fe166d778d2d3701b857.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900879;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_a6b3c863b5886a1fc190e90a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.709473;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_03e5d9aa91b966ed4a20927d.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.432129;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_1985261997f4934cf1eb9aa5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.432129;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_d8871c6eccd4852748cd3531.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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;}
.m4{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);}
.m3{transform:matrix(0.252479,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252479,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252479,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252511,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252511,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252511,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-15.300000px;}
.v4{vertical-align:-12.000000px;}
.vb{vertical-align:-10.080000px;}
.vd{vertical-align:-8.640000px;}
.vf{vertical-align:-7.200000px;}
.va{vertical-align:-2.880000px;}
.v8{vertical-align:-1.440000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.440000px;}
.v7{vertical-align:2.880000px;}
.v9{vertical-align:4.320000px;}
.ve{vertical-align:5.760000px;}
.vc{vertical-align:7.200000px;}
.v3{vertical-align:12.000000px;}
.v5{vertical-align:16.200600px;}
.v1{vertical-align:18.901200px;}
.ls12{letter-spacing:-4.899510px;}
.lsc{letter-spacing:-4.662000px;}
.ls18{letter-spacing:-4.608870px;}
.ls11{letter-spacing:-2.321550px;}
.ls14{letter-spacing:-1.879350px;}
.ls1b{letter-spacing:-0.018900px;}
.ls1a{letter-spacing:-0.017850px;}
.ls7{letter-spacing:-0.014400px;}
.ls16{letter-spacing:-0.012600px;}
.ls2{letter-spacing:-0.010800px;}
.ls17{letter-spacing:-0.010710px;}
.ls10{letter-spacing:-0.010200px;}
.ls13{letter-spacing:-0.008820px;}
.lsb{letter-spacing:-0.008400px;}
.ls8{letter-spacing:-0.007200px;}
.ls6{letter-spacing:-0.007140px;}
.ls5{letter-spacing:-0.006300px;}
.lsa{letter-spacing:-0.006000px;}
.ls4{letter-spacing:-0.005400px;}
.lsd{letter-spacing:-0.005100px;}
.ls9{letter-spacing:-0.004200px;}
.lsf{letter-spacing:-0.003570px;}
.ls3{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000600px;}
.ls19{letter-spacing:14.508900px;}
.lse{letter-spacing:17.850000px;}
.ls15{letter-spacing:26.630100px;}
.ls1{letter-spacing:51.024000px;}
.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;}
}
.ws5{word-spacing:-18.000000px;}
.ws8d{word-spacing:-15.750000px;}
.wseb{word-spacing:-15.737400px;}
.ws18b{word-spacing:-13.500000px;}
.ws61{word-spacing:-13.494600px;}
.ws60{word-spacing:-13.489200px;}
.ws3{word-spacing:-12.750000px;}
.wsc5{word-spacing:-12.744900px;}
.ws67{word-spacing:-12.739800px;}
.ws29{word-spacing:-11.088000px;}
.ws96{word-spacing:-11.016180px;}
.ws18c{word-spacing:-9.431100px;}
.ws9b{word-spacing:-8.925000px;}
.ws66{word-spacing:-8.921430px;}
.ws2{word-spacing:-8.917860px;}
.ws170{word-spacing:-8.914290px;}
.ws63{word-spacing:-8.662500px;}
.ws5f{word-spacing:-7.425000px;}
.ws8f{word-spacing:-6.340950px;}
.ws93{word-spacing:-6.125490px;}
.ws11b{word-spacing:-4.316130px;}
.ws15f{word-spacing:-1.713600px;}
.ws78{word-spacing:-1.171800px;}
.wsa5{word-spacing:-1.026900px;}
.ws41{word-spacing:-0.989100px;}
.ws185{word-spacing:-0.928200px;}
.ws74{word-spacing:-0.926100px;}
.ws188{word-spacing:-0.816000px;}
.wsce{word-spacing:-0.680400px;}
.wsa1{word-spacing:-0.655200px;}
.ws57{word-spacing:-0.459000px;}
.wsf1{word-spacing:-0.226800px;}
.wsca{word-spacing:-0.126000px;}
.ws7{word-spacing:0.000000px;}
.ws62{word-spacing:0.012600px;}
.ws42{word-spacing:0.126000px;}
.ws40{word-spacing:0.132300px;}
.ws149{word-spacing:0.138600px;}
.ws143{word-spacing:0.244800px;}
.ws118{word-spacing:0.408000px;}
.ws117{word-spacing:0.413100px;}
.ws26{word-spacing:0.447300px;}
.ws32{word-spacing:0.472500px;}
.ws22{word-spacing:0.590400px;}
.ws14{word-spacing:0.661500px;}
.ws7e{word-spacing:0.724500px;}
.wsae{word-spacing:0.737100px;}
.ws80{word-spacing:0.825300px;}
.ws8a{word-spacing:0.902700px;}
.ws158{word-spacing:0.995400px;}
.ws13f{word-spacing:1.147500px;}
.wsb2{word-spacing:1.323000px;}
.ws13e{word-spacing:1.361700px;}
.wsad{word-spacing:1.486800px;}
.ws141{word-spacing:1.560600px;}
.ws115{word-spacing:1.652400px;}
.ws119{word-spacing:1.677900px;}
.ws113{word-spacing:1.707300px;}
.ws3f{word-spacing:1.745100px;}
.ws12d{word-spacing:1.757700px;}
.ws12c{word-spacing:1.764000px;}
.ws169{word-spacing:1.779900px;}
.wsa8{word-spacing:1.877400px;}
.ws12a{word-spacing:1.921500px;}
.wsa3{word-spacing:1.934100px;}
.ws75{word-spacing:1.946700px;}
.ws7d{word-spacing:2.009700px;}
.ws81{word-spacing:2.028600px;}
.ws140{word-spacing:2.055300px;}
.ws11d{word-spacing:2.065500px;}
.ws85{word-spacing:2.148300px;}
.wsf7{word-spacing:2.205000px;}
.ws153{word-spacing:2.217600px;}
.wsc4{word-spacing:2.310300px;}
.wsc7{word-spacing:2.381400px;}
.wsd4{word-spacing:2.387700px;}
.ws10a{word-spacing:2.394000px;}
.ws27{word-spacing:2.482200px;}
.ws35{word-spacing:2.513700px;}
.wsb3{word-spacing:2.564100px;}
.ws47{word-spacing:2.608200px;}
.ws4d{word-spacing:2.614500px;}
.ws2e{word-spacing:2.658600px;}
.ws53{word-spacing:2.677500px;}
.ws52{word-spacing:2.682600px;}
.ws3a{word-spacing:2.690100px;}
.ws7b{word-spacing:2.835000px;}
.ws105{word-spacing:2.847600px;}
.ws1f{word-spacing:2.901900px;}
.wsb4{word-spacing:2.904300px;}
.ws16b{word-spacing:2.952900px;}
.wsc{word-spacing:2.975400px;}
.wsa2{word-spacing:3.049200px;}
.ws160{word-spacing:3.093300px;}
.ws18a{word-spacing:3.126300px;}
.wsfe{word-spacing:3.143700px;}
.ws183{word-spacing:3.167100px;}
.ws39{word-spacing:3.194100px;}
.ws6d{word-spacing:3.234600px;}
.ws152{word-spacing:3.238200px;}
.ws166{word-spacing:3.238500px;}
.ws6e{word-spacing:3.240000px;}
.ws21{word-spacing:3.254400px;}
.ws4{word-spacing:3.261600px;}
.wsc8{word-spacing:3.320100px;}
.wsde{word-spacing:3.345300px;}
.wsdf{word-spacing:3.351600px;}
.ws38{word-spacing:3.364200px;}
.ws87{word-spacing:3.389400px;}
.ws2b{word-spacing:3.390150px;}
.ws16c{word-spacing:3.462900px;}
.ws189{word-spacing:3.549600px;}
.wsec{word-spacing:3.550140px;}
.wse3{word-spacing:3.616200px;}
.ws107{word-spacing:3.628800px;}
.ws102{word-spacing:3.641400px;}
.wsd{word-spacing:3.650400px;}
.wsf9{word-spacing:3.723300px;}
.ws124{word-spacing:3.786300px;}
.wsb6{word-spacing:3.792600px;}
.wsb5{word-spacing:3.943800px;}
.wsc3{word-spacing:3.947400px;}
.wsc2{word-spacing:3.952500px;}
.wsea{word-spacing:3.983100px;}
.ws15{word-spacing:4.000500px;}
.ws14d{word-spacing:4.038300px;}
.ws4a{word-spacing:4.069800px;}
.ws17e{word-spacing:4.095000px;}
.ws6f{word-spacing:4.125600px;}
.ws16d{word-spacing:4.125900px;}
.ws16e{word-spacing:4.131000px;}
.ws121{word-spacing:4.132800px;}
.ws16{word-spacing:4.145400px;}
.ws110{word-spacing:4.176900px;}
.ws24{word-spacing:4.200000px;}
.ws6{word-spacing:4.208400px;}
.ws9{word-spacing:4.212000px;}
.wsee{word-spacing:4.240530px;}
.ws4e{word-spacing:4.252500px;}
.ws1b{word-spacing:4.263600px;}
.wsfd{word-spacing:4.265100px;}
.wsed{word-spacing:4.279050px;}
.ws5d{word-spacing:4.304400px;}
.ws11{word-spacing:4.315500px;}
.ws137{word-spacing:4.319700px;}
.wsd1{word-spacing:4.347000px;}
.wsb1{word-spacing:4.378500px;}
.wsb8{word-spacing:4.384800px;}
.ws82{word-spacing:4.391100px;}
.ws18d{word-spacing:4.438800px;}
.ws36{word-spacing:4.447800px;}
.ws12b{word-spacing:4.454100px;}
.wsd5{word-spacing:4.466700px;}
.ws37{word-spacing:4.491900px;}
.ws155{word-spacing:4.498200px;}
.ws10b{word-spacing:4.517100px;}
.ws120{word-spacing:4.523400px;}
.ws20{word-spacing:4.557600px;}
.ws2a{word-spacing:4.577340px;}
.ws12f{word-spacing:4.580100px;}
.ws130{word-spacing:4.611600px;}
.wsd0{word-spacing:4.617900px;}
.ws165{word-spacing:4.666500px;}
.ws144{word-spacing:4.712400px;}
.ws114{word-spacing:4.731300px;}
.wscd{word-spacing:4.737600px;}
.ws16a{word-spacing:4.783800px;}
.ws2f{word-spacing:4.800600px;}
.wsc1{word-spacing:4.814400px;}
.ws50{word-spacing:4.822200px;}
.wsf5{word-spacing:4.825800px;}
.ws6a{word-spacing:4.838400px;}
.wsbb{word-spacing:4.855200px;}
.ws4f{word-spacing:4.863600px;}
.wsbc{word-spacing:4.865400px;}
.ws133{word-spacing:4.876200px;}
.wsd9{word-spacing:4.907700px;}
.ws111{word-spacing:4.945500px;}
.wsdb{word-spacing:4.989600px;}
.ws1e{word-spacing:5.013300px;}
.ws11e{word-spacing:5.029800px;}
.ws17{word-spacing:5.046300px;}
.wse{word-spacing:5.049000px;}
.ws18{word-spacing:5.052600px;}
.wscc{word-spacing:5.058900px;}
.ws8b{word-spacing:5.094900px;}
.ws28{word-spacing:5.096700px;}
.ws59{word-spacing:5.100000px;}
.ws64{word-spacing:5.110200px;}
.wsff{word-spacing:5.115600px;}
.ws43{word-spacing:5.121900px;}
.ws56{word-spacing:5.145900px;}
.wsbe{word-spacing:5.186700px;}
.ws49{word-spacing:5.191200px;}
.wsbd{word-spacing:5.191800px;}
.ws70{word-spacing:5.210100px;}
.ws11c{word-spacing:5.216130px;}
.ws92{word-spacing:5.235300px;}
.ws6c{word-spacing:5.265000px;}
.wsac{word-spacing:5.266800px;}
.ws91{word-spacing:5.273100px;}
.ws145{word-spacing:5.355000px;}
.ws168{word-spacing:5.360100px;}
.ws109{word-spacing:5.373900px;}
.ws134{word-spacing:5.386500px;}
.ws0{word-spacing:5.389200px;}
.wsb{word-spacing:5.400000px;}
.ws3e{word-spacing:5.405400px;}
.ws1c{word-spacing:5.426400px;}
.wsfc{word-spacing:5.499900px;}
.wsd8{word-spacing:5.506200px;}
.ws46{word-spacing:5.512500px;}
.ws15d{word-spacing:5.518800px;}
.wsba{word-spacing:5.531400px;}
.wse2{word-spacing:5.607000px;}
.wse1{word-spacing:5.613300px;}
.ws17b{word-spacing:5.625900px;}
.ws15c{word-spacing:5.632200px;}
.ws167{word-spacing:5.635500px;}
.ws10e{word-spacing:5.657400px;}
.ws157{word-spacing:5.663700px;}
.ws12e{word-spacing:5.670000px;}
.ws34{word-spacing:5.695200px;}
.ws17a{word-spacing:5.733000px;}
.ws69{word-spacing:5.799600px;}
.ws9e{word-spacing:5.845740px;}
.ws55{word-spacing:5.875200px;}
.ws54{word-spacing:5.880300px;}
.wsf{word-spacing:5.884200px;}
.wsc0{word-spacing:5.916000px;}
.wsbf{word-spacing:5.921100px;}
.ws76{word-spacing:5.940900px;}
.wsf6{word-spacing:5.959800px;}
.wsf8{word-spacing:5.985000px;}
.ws13{word-spacing:5.991300px;}
.wsaa{word-spacing:5.997600px;}
.ws142{word-spacing:6.002700px;}
.wsa{word-spacing:6.010200px;}
.ws132{word-spacing:6.041700px;}
.ws128{word-spacing:6.054300px;}
.ws150{word-spacing:6.104700px;}
.ws136{word-spacing:6.125100px;}
.wse4{word-spacing:6.129900px;}
.ws89{word-spacing:6.136200px;}
.ws15a{word-spacing:6.142500px;}
.ws9f{word-spacing:6.163440px;}
.ws131{word-spacing:6.180300px;}
.ws71{word-spacing:6.205500px;}
.ws5e{word-spacing:6.237300px;}
.ws156{word-spacing:6.262200px;}
.ws179{word-spacing:6.281100px;}
.ws101{word-spacing:6.287400px;}
.ws3d{word-spacing:6.293700px;}
.ws30{word-spacing:6.300000px;}
.wse7{word-spacing:6.324000px;}
.ws73{word-spacing:6.369300px;}
.ws14c{word-spacing:6.432300px;}
.ws17c{word-spacing:6.514200px;}
.wsf2{word-spacing:6.520500px;}
.ws5b{word-spacing:6.614700px;}
.ws5c{word-spacing:6.619800px;}
.ws5a{word-spacing:6.624900px;}
.ws139{word-spacing:6.650400px;}
.ws9d{word-spacing:6.676200px;}
.ws1{word-spacing:6.678000px;}
.wsf3{word-spacing:6.684300px;}
.wse9{word-spacing:6.686100px;}
.wsd2{word-spacing:6.690600px;}
.wse8{word-spacing:6.691200px;}
.ws10{word-spacing:6.734700px;}
.ws3b{word-spacing:6.747300px;}
.ws135{word-spacing:6.753600px;}
.ws116{word-spacing:6.757500px;}
.ws15b{word-spacing:6.772500px;}
.ws17d{word-spacing:6.778800px;}
.ws100{word-spacing:6.822900px;}
.wse6{word-spacing:6.859500px;}
.wse0{word-spacing:6.892200px;}
.ws1a{word-spacing:6.904800px;}
.ws19{word-spacing:6.911100px;}
.wscf{word-spacing:6.942600px;}
.ws13d{word-spacing:6.946200px;}
.ws13c{word-spacing:6.951300px;}
.ws8{word-spacing:6.987600px;}
.ws171{word-spacing:6.991740px;}
.ws79{word-spacing:6.993000px;}
.ws3c{word-spacing:7.005600px;}
.ws172{word-spacing:7.014930px;}
.ws154{word-spacing:7.024500px;}
.ws9a{word-spacing:7.057890px;}
.ws1d{word-spacing:7.073700px;}
.ws125{word-spacing:7.100100px;}
.ws126{word-spacing:7.106400px;}
.ws108{word-spacing:7.125300px;}
.ws187{word-spacing:7.175700px;}
.ws106{word-spacing:7.194600px;}
.ws23{word-spacing:7.200000px;}
.ws174{word-spacing:7.232400px;}
.ws177{word-spacing:7.257600px;}
.ws88{word-spacing:7.263900px;}
.wsef{word-spacing:7.282800px;}
.ws138{word-spacing:7.303200px;}
.ws86{word-spacing:7.402500px;}
.ws129{word-spacing:7.515900px;}
.ws7f{word-spacing:7.522200px;}
.ws162{word-spacing:7.547400px;}
.ws163{word-spacing:7.553700px;}
.ws184{word-spacing:7.578600px;}
.ws4b{word-spacing:7.585200px;}
.ws104{word-spacing:7.635600px;}
.ws180{word-spacing:7.698600px;}
.ws127{word-spacing:7.749000px;}
.ws148{word-spacing:7.767900px;}
.ws10f{word-spacing:7.805700px;}
.ws178{word-spacing:7.812000px;}
.ws186{word-spacing:7.813200px;}
.ws14f{word-spacing:7.818300px;}
.wsa7{word-spacing:7.824600px;}
.ws123{word-spacing:7.837200px;}
.ws122{word-spacing:7.843500px;}
.ws12{word-spacing:7.875000px;}
.ws58{word-spacing:7.905000px;}
.ws77{word-spacing:7.988400px;}
.ws181{word-spacing:8.064000px;}
.wsc9{word-spacing:8.082900px;}
.ws164{word-spacing:8.134500px;}
.ws31{word-spacing:8.145900px;}
.wsa6{word-spacing:8.190000px;}
.ws159{word-spacing:8.202600px;}
.ws6b{word-spacing:8.235000px;}
.ws13b{word-spacing:8.236500px;}
.ws13a{word-spacing:8.241600px;}
.wscb{word-spacing:8.253000px;}
.wsa0{word-spacing:8.360100px;}
.ws175{word-spacing:8.379000px;}
.ws176{word-spacing:8.385300px;}
.ws45{word-spacing:8.442000px;}
.wsf0{word-spacing:8.511300px;}
.wsdc{word-spacing:8.574300px;}
.wsdd{word-spacing:8.580600px;}
.wsc6{word-spacing:8.585340px;}
.ws90{word-spacing:8.599500px;}
.ws68{word-spacing:8.607600px;}
.wsa4{word-spacing:8.618400px;}
.ws98{word-spacing:8.668800px;}
.ws9c{word-spacing:8.669700px;}
.wsd3{word-spacing:8.738100px;}
.ws7a{word-spacing:8.750700px;}
.ws103{word-spacing:8.757000px;}
.wsd6{word-spacing:8.775900px;}
.wsda{word-spacing:8.782200px;}
.ws151{word-spacing:8.807400px;}
.ws4c{word-spacing:8.832600px;}
.wsab{word-spacing:8.845200px;}
.ws14a{word-spacing:8.857800px;}
.wsb7{word-spacing:8.889300px;}
.ws65{word-spacing:8.940060px;}
.ws2d{word-spacing:8.947350px;}
.ws173{word-spacing:8.983560px;}
.ws147{word-spacing:9.040500px;}
.wse5{word-spacing:9.135000px;}
.ws11f{word-spacing:9.183330px;}
.wsb9{word-spacing:9.204300px;}
.ws161{word-spacing:9.481500px;}
.ws11a{word-spacing:9.494640px;}
.ws83{word-spacing:9.531900px;}
.ws14b{word-spacing:9.626400px;}
.ws44{word-spacing:9.676800px;}
.ws8c{word-spacing:9.741000px;}
.ws14e{word-spacing:9.777600px;}
.ws33{word-spacing:9.884700px;}
.ws72{word-spacing:10.218600px;}
.ws15e{word-spacing:10.287900px;}
.ws48{word-spacing:10.363500px;}
.ws7c{word-spacing:10.382400px;}
.ws51{word-spacing:10.411200px;}
.ws2c{word-spacing:10.481520px;}
.ws84{word-spacing:10.514700px;}
.ws10d{word-spacing:10.596600px;}
.ws10c{word-spacing:10.741500px;}
.ws182{word-spacing:10.861200px;}
.wsfb{word-spacing:10.873800px;}
.wsfa{word-spacing:10.880100px;}
.wsf4{word-spacing:10.993500px;}
.ws94{word-spacing:11.042640px;}
.ws95{word-spacing:11.056620px;}
.wsd7{word-spacing:11.182500px;}
.wsb0{word-spacing:11.321100px;}
.wsaf{word-spacing:11.327400px;}
.ws17f{word-spacing:11.478600px;}
.wsa9{word-spacing:12.215700px;}
.ws146{word-spacing:12.722100px;}
.ws112{word-spacing:12.738600px;}
.ws16f{word-spacing:13.583100px;}
.ws8e{word-spacing:15.280500px;}
.ws97{word-spacing:44.011500px;}
.ws99{word-spacing:47.769750px;}
.ws25{word-spacing:328.495200px;}
._5{margin-left:-9.266400px;}
._2{margin-left:-6.579000px;}
._3{margin-left:-4.896090px;}
._0{margin-left:-2.964600px;}
._1{margin-left:-1.121400px;}
._9{width:1.485090px;}
._b{width:2.583000px;}
._6{width:3.945600px;}
._d{width:5.308200px;}
._14{width:6.309900px;}
._e{width:7.383600px;}
._a{width:8.721900px;}
._f{width:9.756300px;}
._17{width:10.890000px;}
._8{width:12.068400px;}
._10{width:13.335000px;}
._7{width:14.652000px;}
._15{width:15.743700px;}
._13{width:16.745340px;}
._18{width:17.832210px;}
._12{width:19.867440px;}
._4{width:21.261600px;}
._11{width:22.904100px;}
._16{width:54.021000px;}
._c{width:1524.102600px;}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs13{font-size:27.000000px;}
.fs3{font-size:28.050000px;}
.fsa{font-size:29.700000px;}
.fs2{font-size:34.650000px;}
.fs5{font-size:35.700000px;}
.fs14{font-size:36.000000px;}
.fsc{font-size:37.800000px;}
.fs12{font-size:39.000000px;}
.fs7{font-size:42.000000px;}
.fsb{font-size:44.100000px;}
.fs11{font-size:45.000000px;}
.fs8{font-size:48.000000px;}
.fs4{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fsd{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs10{font-size:66.000000px;}
.fs15{font-size:69.000000px;}
.fs6{font-size:72.000000px;}
.fse{font-size:78.000000px;}
.fsf{font-size:84.000000px;}
.fs16{font-size:93.000000px;}
.y0{bottom:0.000000px;}
.y158{bottom:56.333400px;}
.y53{bottom:56.333550px;}
.y1a3{bottom:58.320000px;}
.y1a2{bottom:63.000000px;}
.y17d{bottom:77.400000px;}
.y18c{bottom:78.120000px;}
.y52{bottom:89.663400px;}
.y1b{bottom:89.664000px;}
.yf3{bottom:89.664300px;}
.yce{bottom:89.664450px;}
.y13d{bottom:89.665050px;}
.y11c{bottom:89.665650px;}
.ya8{bottom:89.667000px;}
.y159{bottom:90.422700px;}
.y157{bottom:93.488400px;}
.y80{bottom:93.488850px;}
.y17c{bottom:98.280000px;}
.y18b{bottom:99.360000px;}
.y156{bottom:104.963250px;}
.y51{bottom:104.963400px;}
.y7f{bottom:104.963550px;}
.y1a{bottom:104.964000px;}
.yf2{bottom:104.964150px;}
.ycd{bottom:104.964450px;}
.y13c{bottom:104.965050px;}
.y11b{bottom:108.790650px;}
.ya7{bottom:108.791850px;}
.y17b{bottom:114.840000px;}
.y155{bottom:120.263250px;}
.y19{bottom:120.264000px;}
.yf1{bottom:120.264150px;}
.y13b{bottom:120.265050px;}
.y11a{bottom:120.265650px;}
.ya6{bottom:120.266700px;}
.y50{bottom:124.088400px;}
.y7e{bottom:124.088700px;}
.ycc{bottom:124.089300px;}
.y15c{bottom:133.265250px;}
.y154{bottom:135.563250px;}
.y18{bottom:135.564000px;}
.ycb{bottom:135.564150px;}
.y13a{bottom:135.565050px;}
.y119{bottom:135.565500px;}
.ya5{bottom:135.566550px;}
.y17a{bottom:135.720000px;}
.y18a{bottom:136.440000px;}
.y4f{bottom:139.388400px;}
.y7d{bottom:139.388700px;}
.yf0{bottom:139.389450px;}
.y1a1{bottom:142.920000px;}
.y4e{bottom:150.863250px;}
.yca{bottom:150.864150px;}
.y139{bottom:150.865050px;}
.y15d{bottom:151.799250px;}
.y153{bottom:154.688250px;}
.y7c{bottom:154.688550px;}
.y17{bottom:154.689000px;}
.y118{bottom:154.690650px;}
.ya4{bottom:154.691700px;}
.y179{bottom:156.600000px;}
.y189{bottom:156.960000px;}
.y152{bottom:166.163100px;}
.y4d{bottom:166.163250px;}
.y7b{bottom:166.163550px;}
.y138{bottom:166.165050px;}
.y117{bottom:166.165500px;}
.ya3{bottom:166.166700px;}
.yc9{bottom:169.989300px;}
.y137{bottom:169.990050px;}
.y178{bottom:173.160000px;}
.yef{bottom:173.274900px;}
.y4c{bottom:181.463100px;}
.y136{bottom:181.464900px;}
.ya2{bottom:181.466700px;}
.y7a{bottom:185.288550px;}
.yc8{bottom:185.289150px;}
.y116{bottom:185.290500px;}
.y16{bottom:191.647200px;}
.yee{bottom:192.174900px;}
.y177{bottom:194.040000px;}
.y188{bottom:194.400000px;}
.y151{bottom:196.762950px;}
.y4b{bottom:196.763100px;}
.y135{bottom:196.764900px;}
.y115{bottom:196.765350px;}
.yc7{bottom:200.589150px;}
.ya1{bottom:200.591700px;}
.y15{bottom:210.547200px;}
.y176{bottom:210.600000px;}
.yed{bottom:211.074900px;}
.y150{bottom:212.062950px;}
.y4a{bottom:212.063100px;}
.y134{bottom:212.064900px;}
.y114{bottom:212.065350px;}
.ya0{bottom:212.066550px;}
.yc6{bottom:215.889150px;}
.y79{bottom:218.237400px;}
.y14f{bottom:227.362950px;}
.y49{bottom:227.363100px;}
.yc5{bottom:227.364000px;}
.y113{bottom:227.365350px;}
.y14{bottom:229.447200px;}
.yec{bottom:229.974900px;}
.y133{bottom:231.189900px;}
.y9f{bottom:231.191550px;}
.y175{bottom:231.480000px;}
.y187{bottom:231.840000px;}
.y78{bottom:237.137400px;}
.y14e{bottom:242.662950px;}
.y132{bottom:242.664900px;}
.y112{bottom:242.665350px;}
.yc4{bottom:246.489150px;}
.y9e{bottom:246.491550px;}
.y174{bottom:248.040000px;}
.y13{bottom:248.347200px;}
.yeb{bottom:248.874900px;}
.y77{bottom:256.037400px;}
.y131{bottom:257.964900px;}
.y111{bottom:257.965350px;}
.y14d{bottom:261.788100px;}
.y48{bottom:267.072000px;}
.y12{bottom:267.247200px;}
.yea{bottom:267.774900px;}
.y173{bottom:268.920000px;}
.y186{bottom:269.280000px;}
.y14c{bottom:273.262950px;}
.y110{bottom:273.265350px;}
.y76{bottom:274.937250px;}
.y130{bottom:277.089900px;}
.yc3{bottom:280.519575px;}
.y47{bottom:283.272000px;}
.y9d{bottom:285.567000px;}
.y11{bottom:286.147200px;}
.ye9{bottom:286.674900px;}
.y10f{bottom:288.565200px;}
.y172{bottom:289.800000px;}
.y185{bottom:290.160000px;}
.y14b{bottom:292.387950px;}
.y75{bottom:293.837250px;}
.yc2{bottom:299.419575px;}
.y9c{bottom:304.467000px;}
.y10{bottom:305.047200px;}
.ye8{bottom:305.574900px;}
.y10e{bottom:307.690350px;}
.y12f{bottom:308.156700px;}
.y171{bottom:310.680000px;}
.y184{bottom:311.040000px;}
.y74{bottom:312.737250px;}
.y46{bottom:317.428650px;}
.yc1{bottom:318.319575px;}
.y10d{bottom:319.165200px;}
.y9b{bottom:323.367000px;}
.yf{bottom:323.947200px;}
.y12e{bottom:327.056700px;}
.ye7{bottom:327.116250px;}
.y170{bottom:327.240000px;}
.y73{bottom:331.637250px;}
.y45{bottom:336.328650px;}
.y10c{bottom:338.290200px;}
.yc0{bottom:341.032650px;}
.y9a{bottom:342.267000px;}
.ye{bottom:342.847200px;}
.y12d{bottom:345.956700px;}
.ye6{bottom:346.016250px;}
.y16f{bottom:348.120000px;}
.y183{bottom:348.480000px;}
.y10b{bottom:349.765200px;}
.y72{bottom:350.537250px;}
.y44{bottom:355.228650px;}
.ybf{bottom:359.932650px;}
.y99{bottom:361.167000px;}
.yd{bottom:361.747200px;}
.y16e{bottom:364.680000px;}
.y12c{bottom:364.856700px;}
.ye5{bottom:364.916250px;}
.y10a{bottom:368.890200px;}
.y71{bottom:369.437250px;}
.y43{bottom:374.128650px;}
.ybe{bottom:378.832650px;}
.y98{bottom:380.067000px;}
.y109{bottom:380.365050px;}
.y12b{bottom:383.756700px;}
.ye4{bottom:383.816250px;}
.y16d{bottom:385.560000px;}
.y182{bottom:385.920000px;}
.y70{bottom:391.367550px;}
.y42{bottom:393.028650px;}
.ybd{bottom:397.732650px;}
.y97{bottom:398.967000px;}
.y108{bottom:399.490200px;}
.y16c{bottom:402.120000px;}
.y12a{bottom:402.656700px;}
.ye3{bottom:402.716250px;}
.y6f{bottom:410.267550px;}
.y41{bottom:411.928650px;}
.ybc{bottom:416.632650px;}
.y96{bottom:417.867000px;}
.y129{bottom:421.556700px;}
.ye2{bottom:421.616250px;}
.yc{bottom:422.421450px;}
.y16b{bottom:423.000000px;}
.y181{bottom:423.360000px;}
.y6e{bottom:429.167550px;}
.y40{bottom:430.828650px;}
.y107{bottom:432.912675px;}
.ybb{bottom:435.532650px;}
.y95{bottom:436.767000px;}
.yb{bottom:439.053450px;}
.y16a{bottom:439.560000px;}
.y128{bottom:440.456550px;}
.ye1{bottom:440.516250px;}
.y6d{bottom:448.067550px;}
.y3d{bottom:449.728500px;}
.y3f{bottom:449.728650px;}
.y106{bottom:451.812675px;}
.yba{bottom:454.432725px;}
.y3e{bottom:454.453650px;}
.ya{bottom:455.253450px;}
.y94{bottom:455.667000px;}
.y127{bottom:459.356550px;}
.ye0{bottom:459.416250px;}
.y169{bottom:460.800000px;}
.y180{bottom:461.160000px;}
.y6c{bottom:466.967550px;}
.y3c{bottom:468.628500px;}
.y105{bottom:470.712675px;}
.y9{bottom:471.453450px;}
.yb9{bottom:473.332725px;}
.y168{bottom:477.360000px;}
.y126{bottom:478.256550px;}
.ydf{bottom:478.316250px;}
.y6b{bottom:485.867550px;}
.y39{bottom:487.528350px;}
.y3b{bottom:487.528500px;}
.y8{bottom:487.653450px;}
.y93{bottom:488.589150px;}
.y104{bottom:489.612675px;}
.yb8{bottom:492.232725px;}
.y3a{bottom:492.253650px;}
.y125{bottom:497.156550px;}
.yde{bottom:497.216250px;}
.y167{bottom:498.600000px;}
.y6a{bottom:504.767550px;}
.y38{bottom:506.428350px;}
.y103{bottom:508.512675px;}
.yb7{bottom:511.132725px;}
.y7{bottom:512.790450px;}
.y166{bottom:514.440000px;}
.y124{bottom:516.056850px;}
.ydd{bottom:516.116250px;}
.y69{bottom:523.667550px;}
.y37{bottom:525.328350px;}
.y102{bottom:527.412675px;}
.yb6{bottom:530.032725px;}
.y92{bottom:534.267300px;}
.y123{bottom:534.956850px;}
.y165{bottom:536.040000px;}
.ydc{bottom:537.659100px;}
.y68{bottom:542.567550px;}
.y36{bottom:544.228350px;}
.y101{bottom:546.312675px;}
.yb5{bottom:548.932725px;}
.y6{bottom:550.684950px;}
.y164{bottom:552.240000px;}
.y91{bottom:553.167300px;}
.y122{bottom:553.856850px;}
.ydb{bottom:556.559100px;}
.y67{bottom:561.467550px;}
.y35{bottom:563.128350px;}
.y100{bottom:565.212675px;}
.y5{bottom:567.316950px;}
.yb4{bottom:567.832725px;}
.y90{bottom:572.067300px;}
.y121{bottom:572.756850px;}
.y163{bottom:573.120000px;}
.y14a{bottom:573.333750px;}
.y17f{bottom:573.480000px;}
.yda{bottom:575.459100px;}
.y66{bottom:580.367550px;}
.y34{bottom:582.028350px;}
.y4{bottom:583.516950px;}
.yb3{bottom:586.732725px;}
.yff{bottom:589.236150px;}
.y162{bottom:589.320000px;}
.y8f{bottom:590.967000px;}
.y120{bottom:591.656850px;}
.y149{bottom:592.233600px;}
.yd9{bottom:594.359100px;}
.y19c{bottom:594.360000px;}
.y65{bottom:599.267550px;}
.y3{bottom:599.716950px;}
.y33{bottom:600.928350px;}
.yb2{bottom:605.632725px;}
.y161{bottom:605.880000px;}
.yfe{bottom:608.136150px;}
.y8e{bottom:609.867000px;}
.y11f{bottom:610.556850px;}
.y148{bottom:611.133600px;}
.yd8{bottom:613.259100px;}
.y2{bottom:615.916950px;}
.y64{bottom:618.167550px;}
.yb1{bottom:624.532725px;}
.y32{bottom:625.992975px;}
.yfd{bottom:627.036150px;}
.y19b{bottom:627.480000px;}
.y15a{bottom:627.554550px;}
.y8d{bottom:628.767000px;}
.y11e{bottom:629.456850px;}
.y147{bottom:630.033600px;}
.y17e{bottom:631.800000px;}
.yd7{bottom:632.159100px;}
.y63{bottom:637.067550px;}
.y1{bottom:641.053950px;}
.yb0{bottom:643.432725px;}
.y19a{bottom:643.680000px;}
.y31{bottom:644.892975px;}
.yfc{bottom:645.936000px;}
.y15b{bottom:646.088550px;}
.y11d{bottom:648.356850px;}
.y146{bottom:648.933600px;}
.yd6{bottom:651.059100px;}
.y8c{bottom:651.059250px;}
.y62{bottom:655.967550px;}
.y30{bottom:663.792975px;}
.y199{bottom:664.200000px;}
.yfb{bottom:664.836000px;}
.yaf{bottom:666.145800px;}
.y145{bottom:667.833600px;}
.yd5{bottom:669.959100px;}
.y8b{bottom:669.959250px;}
.y61{bottom:674.867550px;}
.y198{bottom:680.400000px;}
.y2f{bottom:682.692975px;}
.yfa{bottom:683.736000px;}
.yae{bottom:685.045800px;}
.y144{bottom:686.733600px;}
.yd4{bottom:688.859100px;}
.y8a{bottom:688.859250px;}
.y60{bottom:693.767550px;}
.y197{bottom:700.920000px;}
.y2e{bottom:701.592975px;}
.yf9{bottom:702.635925px;}
.yad{bottom:703.945800px;}
.y143{bottom:705.633600px;}
.yd3{bottom:707.759100px;}
.y89{bottom:707.759250px;}
.y1f{bottom:710.267250px;}
.y5f{bottom:712.667400px;}
.y196{bottom:717.120000px;}
.y2d{bottom:720.492975px;}
.yf8{bottom:721.535925px;}
.yac{bottom:722.846325px;}
.y142{bottom:724.533000px;}
.yd2{bottom:726.659100px;}
.y88{bottom:726.659250px;}
.y5e{bottom:731.567400px;}
.y195{bottom:737.280000px;}
.y1a0{bottom:737.640000px;}
.y2c{bottom:739.392975px;}
.yf7{bottom:740.435925px;}
.yab{bottom:741.746325px;}
.y141{bottom:743.433000px;}
.yd1{bottom:745.559100px;}
.y87{bottom:745.559250px;}
.y5d{bottom:750.467400px;}
.y1e{bottom:752.099250px;}
.y160{bottom:756.000000px;}
.y2b{bottom:758.292975px;}
.y194{bottom:759.960000px;}
.yaa{bottom:760.646325px;}
.y140{bottom:762.333000px;}
.yd0{bottom:764.459100px;}
.y86{bottom:764.459250px;}
.y1d{bottom:773.699250px;}
.y2a{bottom:777.192975px;}
.ya9{bottom:779.546325px;}
.y13f{bottom:781.233000px;}
.y5c{bottom:781.867200px;}
.ycf{bottom:783.359100px;}
.yf6{bottom:783.359250px;}
.y85{bottom:783.359400px;}
.y193{bottom:793.440000px;}
.y1c{bottom:795.299250px;}
.y29{bottom:796.092975px;}
.y5b{bottom:798.067200px;}
.y13e{bottom:800.133000px;}
.y84{bottom:802.259100px;}
.yf5{bottom:802.259250px;}
.y192{bottom:813.960000px;}
.y5a{bottom:814.267200px;}
.y28{bottom:814.992975px;}
.y83{bottom:821.159100px;}
.yf4{bottom:821.159250px;}
.y191{bottom:830.160000px;}
.y59{bottom:830.467200px;}
.y27{bottom:833.892975px;}
.y82{bottom:840.059100px;}
.y58{bottom:846.667200px;}
.y190{bottom:850.680000px;}
.y19f{bottom:851.040000px;}
.y26{bottom:852.792975px;}
.y81{bottom:858.959100px;}
.y57{bottom:862.867200px;}
.y15f{bottom:865.080000px;}
.y18f{bottom:866.880000px;}
.y25{bottom:877.859100px;}
.y56{bottom:882.097650px;}
.y15e{bottom:884.880000px;}
.y18e{bottom:887.760000px;}
.y19e{bottom:888.120000px;}
.y24{bottom:896.759100px;}
.y55{bottom:898.297650px;}
.y22{bottom:907.683450px;}
.y18d{bottom:921.240000px;}
.y19d{bottom:924.120000px;}
.y23{bottom:931.287750px;}
.y54{bottom:934.287750px;}
.y20{bottom:934.365000px;}
.y21{bottom:1058.220450px;}
.h1b{height:25.160083px;}
.he{height:29.162109px;}
.h18{height:30.444405px;}
.h16{height:30.445005px;}
.h8{height:30.445605px;}
.h12{height:30.446205px;}
.h10{height:31.080103px;}
.h1c{height:32.021924px;}
.hd{height:33.843750px;}
.hc{height:37.672852px;}
.h13{height:41.818359px;}
.h34{height:43.804688px;}
.h9{height:45.745605px;}
.h11{height:45.746205px;}
.h35{height:46.933594px;}
.h5{height:48.436523px;}
.h14{height:48.437723px;}
.h25{height:50.062500px;}
.h4{height:50.255859px;}
.h2d{height:52.942500px;}
.h33{height:53.191406px;}
.hf{height:53.818359px;}
.h2b{height:54.631406px;}
.h27{height:54.880313px;}
.h2a{height:56.320312px;}
.h6{height:56.509277px;}
.h19{height:56.509577px;}
.h15{height:56.509877px;}
.h7{height:56.510477px;}
.h1a{height:56.511077px;}
.h1d{height:56.511677px;}
.h17{height:56.515277px;}
.h28{height:57.760313px;}
.h2f{height:59.200313px;}
.h29{height:59.449219px;}
.h2e{height:60.889219px;}
.h37{height:62.329219px;}
.h2c{height:62.578125px;}
.hb{height:63.808594px;}
.h20{height:64.018125px;}
.h26{height:65.458125px;}
.h36{height:65.707031px;}
.h32{height:66.649219px;}
.ha{height:67.007812px;}
.h30{height:68.835938px;}
.h24{height:71.715938px;}
.h38{height:71.964844px;}
.h23{height:73.155938px;}
.h31{height:75.093750px;}
.h21{height:81.351562px;}
.h22{height:87.609375px;}
.h39{height:96.996094px;}
.h1e{height:1007.639985px;}
.h1f{height:1008.000000px;}
.h0{height:1010.160000px;}
.h1{height:1010.250000px;}
.h2{height:1019.940450px;}
.h3{height:1020.000000px;}
.w6{width:667.284090px;}
.w7{width:667.500000px;}
.w5{width:671.250000px;}
.w4{width:671.536080px;}
.w0{width:675.543600px;}
.w1{width:675.750000px;}
.w3{width:680.250000px;}
.w2{width:680.421150px;}
.x5{left:-17.539350px;}
.x0{left:0.000000px;}
.x18{left:43.200000px;}
.x19{left:60.120000px;}
.x1{left:71.586600px;}
.x1f{left:73.800000px;}
.x20{left:90.360000px;}
.x2{left:94.968600px;}
.xc{left:96.083400px;}
.x3{left:99.119700px;}
.xd{left:115.381950px;}
.x6{left:136.186950px;}
.x7{left:140.561550px;}
.x12{left:144.054450px;}
.xa{left:156.625950px;}
.x15{left:200.160000px;}
.x16{left:213.840000px;}
.xb{left:224.151600px;}
.x17{left:280.800000px;}
.xe{left:344.204850px;}
.x8{left:345.235650px;}
.x9{left:349.610250px;}
.xf{left:374.336250px;}
.x10{left:383.632800px;}
.x4{left:400.122600px;}
.x11{left:414.165750px;}
.x23{left:476.280000px;}
.x24{left:486.000000px;}
.x1e{left:533.520000px;}
.x1d{left:535.320000px;}
.x1a{left:536.760000px;}
.x1c{left:547.560000px;}
.x1b{left:554.040000px;}
.x22{left:564.480000px;}
.x21{left:573.840000px;}
.x13{left:591.054600px;}
.x14{left:607.254600px;}
@media print{
.v2{vertical-align:-13.600000pt;}
.v4{vertical-align:-10.666667pt;}
.vb{vertical-align:-8.960000pt;}
.vd{vertical-align:-7.680000pt;}
.vf{vertical-align:-6.400000pt;}
.va{vertical-align:-2.560000pt;}
.v8{vertical-align:-1.280000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.280000pt;}
.v7{vertical-align:2.560000pt;}
.v9{vertical-align:3.840000pt;}
.ve{vertical-align:5.120000pt;}
.vc{vertical-align:6.400000pt;}
.v3{vertical-align:10.666667pt;}
.v5{vertical-align:14.400533pt;}
.v1{vertical-align:16.801067pt;}
.ls12{letter-spacing:-4.355120pt;}
.lsc{letter-spacing:-4.144000pt;}
.ls18{letter-spacing:-4.096773pt;}
.ls11{letter-spacing:-2.063600pt;}
.ls14{letter-spacing:-1.670533pt;}
.ls1b{letter-spacing:-0.016800pt;}
.ls1a{letter-spacing:-0.015867pt;}
.ls7{letter-spacing:-0.012800pt;}
.ls16{letter-spacing:-0.011200pt;}
.ls2{letter-spacing:-0.009600pt;}
.ls17{letter-spacing:-0.009520pt;}
.ls10{letter-spacing:-0.009067pt;}
.ls13{letter-spacing:-0.007840pt;}
.lsb{letter-spacing:-0.007467pt;}
.ls8{letter-spacing:-0.006400pt;}
.ls6{letter-spacing:-0.006347pt;}
.ls5{letter-spacing:-0.005600pt;}
.lsa{letter-spacing:-0.005333pt;}
.ls4{letter-spacing:-0.004800pt;}
.lsd{letter-spacing:-0.004533pt;}
.ls9{letter-spacing:-0.003733pt;}
.lsf{letter-spacing:-0.003173pt;}
.ls3{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000533pt;}
.ls19{letter-spacing:12.896800pt;}
.lse{letter-spacing:15.866667pt;}
.ls15{letter-spacing:23.671200pt;}
.ls1{letter-spacing:45.354667pt;}
.ws5{word-spacing:-16.000000pt;}
.ws8d{word-spacing:-14.000000pt;}
.wseb{word-spacing:-13.988800pt;}
.ws18b{word-spacing:-12.000000pt;}
.ws61{word-spacing:-11.995200pt;}
.ws60{word-spacing:-11.990400pt;}
.ws3{word-spacing:-11.333333pt;}
.wsc5{word-spacing:-11.328800pt;}
.ws67{word-spacing:-11.324267pt;}
.ws29{word-spacing:-9.856000pt;}
.ws96{word-spacing:-9.792160pt;}
.ws18c{word-spacing:-8.383200pt;}
.ws9b{word-spacing:-7.933333pt;}
.ws66{word-spacing:-7.930160pt;}
.ws2{word-spacing:-7.926987pt;}
.ws170{word-spacing:-7.923813pt;}
.ws63{word-spacing:-7.700000pt;}
.ws5f{word-spacing:-6.600000pt;}
.ws8f{word-spacing:-5.636400pt;}
.ws93{word-spacing:-5.444880pt;}
.ws11b{word-spacing:-3.836560pt;}
.ws15f{word-spacing:-1.523200pt;}
.ws78{word-spacing:-1.041600pt;}
.wsa5{word-spacing:-0.912800pt;}
.ws41{word-spacing:-0.879200pt;}
.ws185{word-spacing:-0.825067pt;}
.ws74{word-spacing:-0.823200pt;}
.ws188{word-spacing:-0.725333pt;}
.wsce{word-spacing:-0.604800pt;}
.wsa1{word-spacing:-0.582400pt;}
.ws57{word-spacing:-0.408000pt;}
.wsf1{word-spacing:-0.201600pt;}
.wsca{word-spacing:-0.112000pt;}
.ws7{word-spacing:0.000000pt;}
.ws62{word-spacing:0.011200pt;}
.ws42{word-spacing:0.112000pt;}
.ws40{word-spacing:0.117600pt;}
.ws149{word-spacing:0.123200pt;}
.ws143{word-spacing:0.217600pt;}
.ws118{word-spacing:0.362667pt;}
.ws117{word-spacing:0.367200pt;}
.ws26{word-spacing:0.397600pt;}
.ws32{word-spacing:0.420000pt;}
.ws22{word-spacing:0.524800pt;}
.ws14{word-spacing:0.588000pt;}
.ws7e{word-spacing:0.644000pt;}
.wsae{word-spacing:0.655200pt;}
.ws80{word-spacing:0.733600pt;}
.ws8a{word-spacing:0.802400pt;}
.ws158{word-spacing:0.884800pt;}
.ws13f{word-spacing:1.020000pt;}
.wsb2{word-spacing:1.176000pt;}
.ws13e{word-spacing:1.210400pt;}
.wsad{word-spacing:1.321600pt;}
.ws141{word-spacing:1.387200pt;}
.ws115{word-spacing:1.468800pt;}
.ws119{word-spacing:1.491467pt;}
.ws113{word-spacing:1.517600pt;}
.ws3f{word-spacing:1.551200pt;}
.ws12d{word-spacing:1.562400pt;}
.ws12c{word-spacing:1.568000pt;}
.ws169{word-spacing:1.582133pt;}
.wsa8{word-spacing:1.668800pt;}
.ws12a{word-spacing:1.708000pt;}
.wsa3{word-spacing:1.719200pt;}
.ws75{word-spacing:1.730400pt;}
.ws7d{word-spacing:1.786400pt;}
.ws81{word-spacing:1.803200pt;}
.ws140{word-spacing:1.826933pt;}
.ws11d{word-spacing:1.836000pt;}
.ws85{word-spacing:1.909600pt;}
.wsf7{word-spacing:1.960000pt;}
.ws153{word-spacing:1.971200pt;}
.wsc4{word-spacing:2.053600pt;}
.wsc7{word-spacing:2.116800pt;}
.wsd4{word-spacing:2.122400pt;}
.ws10a{word-spacing:2.128000pt;}
.ws27{word-spacing:2.206400pt;}
.ws35{word-spacing:2.234400pt;}
.wsb3{word-spacing:2.279200pt;}
.ws47{word-spacing:2.318400pt;}
.ws4d{word-spacing:2.324000pt;}
.ws2e{word-spacing:2.363200pt;}
.ws53{word-spacing:2.380000pt;}
.ws52{word-spacing:2.384533pt;}
.ws3a{word-spacing:2.391200pt;}
.ws7b{word-spacing:2.520000pt;}
.ws105{word-spacing:2.531200pt;}
.ws1f{word-spacing:2.579467pt;}
.wsb4{word-spacing:2.581600pt;}
.ws16b{word-spacing:2.624800pt;}
.wsc{word-spacing:2.644800pt;}
.wsa2{word-spacing:2.710400pt;}
.ws160{word-spacing:2.749600pt;}
.ws18a{word-spacing:2.778933pt;}
.wsfe{word-spacing:2.794400pt;}
.ws183{word-spacing:2.815200pt;}
.ws39{word-spacing:2.839200pt;}
.ws6d{word-spacing:2.875200pt;}
.ws152{word-spacing:2.878400pt;}
.ws166{word-spacing:2.878667pt;}
.ws6e{word-spacing:2.880000pt;}
.ws21{word-spacing:2.892800pt;}
.ws4{word-spacing:2.899200pt;}
.wsc8{word-spacing:2.951200pt;}
.wsde{word-spacing:2.973600pt;}
.wsdf{word-spacing:2.979200pt;}
.ws38{word-spacing:2.990400pt;}
.ws87{word-spacing:3.012800pt;}
.ws2b{word-spacing:3.013467pt;}
.ws16c{word-spacing:3.078133pt;}
.ws189{word-spacing:3.155200pt;}
.wsec{word-spacing:3.155680pt;}
.wse3{word-spacing:3.214400pt;}
.ws107{word-spacing:3.225600pt;}
.ws102{word-spacing:3.236800pt;}
.wsd{word-spacing:3.244800pt;}
.wsf9{word-spacing:3.309600pt;}
.ws124{word-spacing:3.365600pt;}
.wsb6{word-spacing:3.371200pt;}
.wsb5{word-spacing:3.505600pt;}
.wsc3{word-spacing:3.508800pt;}
.wsc2{word-spacing:3.513333pt;}
.wsea{word-spacing:3.540533pt;}
.ws15{word-spacing:3.556000pt;}
.ws14d{word-spacing:3.589600pt;}
.ws4a{word-spacing:3.617600pt;}
.ws17e{word-spacing:3.640000pt;}
.ws6f{word-spacing:3.667200pt;}
.ws16d{word-spacing:3.667467pt;}
.ws16e{word-spacing:3.672000pt;}
.ws121{word-spacing:3.673600pt;}
.ws16{word-spacing:3.684800pt;}
.ws110{word-spacing:3.712800pt;}
.ws24{word-spacing:3.733333pt;}
.ws6{word-spacing:3.740800pt;}
.ws9{word-spacing:3.744000pt;}
.wsee{word-spacing:3.769360pt;}
.ws4e{word-spacing:3.780000pt;}
.ws1b{word-spacing:3.789867pt;}
.wsfd{word-spacing:3.791200pt;}
.wsed{word-spacing:3.803600pt;}
.ws5d{word-spacing:3.826133pt;}
.ws11{word-spacing:3.836000pt;}
.ws137{word-spacing:3.839733pt;}
.wsd1{word-spacing:3.864000pt;}
.wsb1{word-spacing:3.892000pt;}
.wsb8{word-spacing:3.897600pt;}
.ws82{word-spacing:3.903200pt;}
.ws18d{word-spacing:3.945600pt;}
.ws36{word-spacing:3.953600pt;}
.ws12b{word-spacing:3.959200pt;}
.wsd5{word-spacing:3.970400pt;}
.ws37{word-spacing:3.992800pt;}
.ws155{word-spacing:3.998400pt;}
.ws10b{word-spacing:4.015200pt;}
.ws120{word-spacing:4.020800pt;}
.ws20{word-spacing:4.051200pt;}
.ws2a{word-spacing:4.068747pt;}
.ws12f{word-spacing:4.071200pt;}
.ws130{word-spacing:4.099200pt;}
.wsd0{word-spacing:4.104800pt;}
.ws165{word-spacing:4.148000pt;}
.ws144{word-spacing:4.188800pt;}
.ws114{word-spacing:4.205600pt;}
.wscd{word-spacing:4.211200pt;}
.ws16a{word-spacing:4.252267pt;}
.ws2f{word-spacing:4.267200pt;}
.wsc1{word-spacing:4.279467pt;}
.ws50{word-spacing:4.286400pt;}
.wsf5{word-spacing:4.289600pt;}
.ws6a{word-spacing:4.300800pt;}
.wsbb{word-spacing:4.315733pt;}
.ws4f{word-spacing:4.323200pt;}
.wsbc{word-spacing:4.324800pt;}
.ws133{word-spacing:4.334400pt;}
.wsd9{word-spacing:4.362400pt;}
.ws111{word-spacing:4.396000pt;}
.wsdb{word-spacing:4.435200pt;}
.ws1e{word-spacing:4.456267pt;}
.ws11e{word-spacing:4.470933pt;}
.ws17{word-spacing:4.485600pt;}
.wse{word-spacing:4.488000pt;}
.ws18{word-spacing:4.491200pt;}
.wscc{word-spacing:4.496800pt;}
.ws8b{word-spacing:4.528800pt;}
.ws28{word-spacing:4.530400pt;}
.ws59{word-spacing:4.533333pt;}
.ws64{word-spacing:4.542400pt;}
.wsff{word-spacing:4.547200pt;}
.ws43{word-spacing:4.552800pt;}
.ws56{word-spacing:4.574133pt;}
.wsbe{word-spacing:4.610400pt;}
.ws49{word-spacing:4.614400pt;}
.wsbd{word-spacing:4.614933pt;}
.ws70{word-spacing:4.631200pt;}
.ws11c{word-spacing:4.636560pt;}
.ws92{word-spacing:4.653600pt;}
.ws6c{word-spacing:4.680000pt;}
.wsac{word-spacing:4.681600pt;}
.ws91{word-spacing:4.687200pt;}
.ws145{word-spacing:4.760000pt;}
.ws168{word-spacing:4.764533pt;}
.ws109{word-spacing:4.776800pt;}
.ws134{word-spacing:4.788000pt;}
.ws0{word-spacing:4.790400pt;}
.wsb{word-spacing:4.800000pt;}
.ws3e{word-spacing:4.804800pt;}
.ws1c{word-spacing:4.823467pt;}
.wsfc{word-spacing:4.888800pt;}
.wsd8{word-spacing:4.894400pt;}
.ws46{word-spacing:4.900000pt;}
.ws15d{word-spacing:4.905600pt;}
.wsba{word-spacing:4.916800pt;}
.wse2{word-spacing:4.984000pt;}
.wse1{word-spacing:4.989600pt;}
.ws17b{word-spacing:5.000800pt;}
.ws15c{word-spacing:5.006400pt;}
.ws167{word-spacing:5.009333pt;}
.ws10e{word-spacing:5.028800pt;}
.ws157{word-spacing:5.034400pt;}
.ws12e{word-spacing:5.040000pt;}
.ws34{word-spacing:5.062400pt;}
.ws17a{word-spacing:5.096000pt;}
.ws69{word-spacing:5.155200pt;}
.ws9e{word-spacing:5.196213pt;}
.ws55{word-spacing:5.222400pt;}
.ws54{word-spacing:5.226933pt;}
.wsf{word-spacing:5.230400pt;}
.wsc0{word-spacing:5.258667pt;}
.wsbf{word-spacing:5.263200pt;}
.ws76{word-spacing:5.280800pt;}
.wsf6{word-spacing:5.297600pt;}
.wsf8{word-spacing:5.320000pt;}
.ws13{word-spacing:5.325600pt;}
.wsaa{word-spacing:5.331200pt;}
.ws142{word-spacing:5.335733pt;}
.wsa{word-spacing:5.342400pt;}
.ws132{word-spacing:5.370400pt;}
.ws128{word-spacing:5.381600pt;}
.ws150{word-spacing:5.426400pt;}
.ws136{word-spacing:5.444533pt;}
.wse4{word-spacing:5.448800pt;}
.ws89{word-spacing:5.454400pt;}
.ws15a{word-spacing:5.460000pt;}
.ws9f{word-spacing:5.478613pt;}
.ws131{word-spacing:5.493600pt;}
.ws71{word-spacing:5.516000pt;}
.ws5e{word-spacing:5.544267pt;}
.ws156{word-spacing:5.566400pt;}
.ws179{word-spacing:5.583200pt;}
.ws101{word-spacing:5.588800pt;}
.ws3d{word-spacing:5.594400pt;}
.ws30{word-spacing:5.600000pt;}
.wse7{word-spacing:5.621333pt;}
.ws73{word-spacing:5.661600pt;}
.ws14c{word-spacing:5.717600pt;}
.ws17c{word-spacing:5.790400pt;}
.wsf2{word-spacing:5.796000pt;}
.ws5b{word-spacing:5.879733pt;}
.ws5c{word-spacing:5.884267pt;}
.ws5a{word-spacing:5.888800pt;}
.ws139{word-spacing:5.911467pt;}
.ws9d{word-spacing:5.934400pt;}
.ws1{word-spacing:5.936000pt;}
.wsf3{word-spacing:5.941600pt;}
.wse9{word-spacing:5.943200pt;}
.wsd2{word-spacing:5.947200pt;}
.wse8{word-spacing:5.947733pt;}
.ws10{word-spacing:5.986400pt;}
.ws3b{word-spacing:5.997600pt;}
.ws135{word-spacing:6.003200pt;}
.ws116{word-spacing:6.006667pt;}
.ws15b{word-spacing:6.020000pt;}
.ws17d{word-spacing:6.025600pt;}
.ws100{word-spacing:6.064800pt;}
.wse6{word-spacing:6.097333pt;}
.wse0{word-spacing:6.126400pt;}
.ws1a{word-spacing:6.137600pt;}
.ws19{word-spacing:6.143200pt;}
.wscf{word-spacing:6.171200pt;}
.ws13d{word-spacing:6.174400pt;}
.ws13c{word-spacing:6.178933pt;}
.ws8{word-spacing:6.211200pt;}
.ws171{word-spacing:6.214880pt;}
.ws79{word-spacing:6.216000pt;}
.ws3c{word-spacing:6.227200pt;}
.ws172{word-spacing:6.235493pt;}
.ws154{word-spacing:6.244000pt;}
.ws9a{word-spacing:6.273680pt;}
.ws1d{word-spacing:6.287733pt;}
.ws125{word-spacing:6.311200pt;}
.ws126{word-spacing:6.316800pt;}
.ws108{word-spacing:6.333600pt;}
.ws187{word-spacing:6.378400pt;}
.ws106{word-spacing:6.395200pt;}
.ws23{word-spacing:6.400000pt;}
.ws174{word-spacing:6.428800pt;}
.ws177{word-spacing:6.451200pt;}
.ws88{word-spacing:6.456800pt;}
.wsef{word-spacing:6.473600pt;}
.ws138{word-spacing:6.491733pt;}
.ws86{word-spacing:6.580000pt;}
.ws129{word-spacing:6.680800pt;}
.ws7f{word-spacing:6.686400pt;}
.ws162{word-spacing:6.708800pt;}
.ws163{word-spacing:6.714400pt;}
.ws184{word-spacing:6.736533pt;}
.ws4b{word-spacing:6.742400pt;}
.ws104{word-spacing:6.787200pt;}
.ws180{word-spacing:6.843200pt;}
.ws127{word-spacing:6.888000pt;}
.ws148{word-spacing:6.904800pt;}
.ws10f{word-spacing:6.938400pt;}
.ws178{word-spacing:6.944000pt;}
.ws186{word-spacing:6.945067pt;}
.ws14f{word-spacing:6.949600pt;}
.wsa7{word-spacing:6.955200pt;}
.ws123{word-spacing:6.966400pt;}
.ws122{word-spacing:6.972000pt;}
.ws12{word-spacing:7.000000pt;}
.ws58{word-spacing:7.026667pt;}
.ws77{word-spacing:7.100800pt;}
.ws181{word-spacing:7.168000pt;}
.wsc9{word-spacing:7.184800pt;}
.ws164{word-spacing:7.230667pt;}
.ws31{word-spacing:7.240800pt;}
.wsa6{word-spacing:7.280000pt;}
.ws159{word-spacing:7.291200pt;}
.ws6b{word-spacing:7.320000pt;}
.ws13b{word-spacing:7.321333pt;}
.ws13a{word-spacing:7.325867pt;}
.wscb{word-spacing:7.336000pt;}
.wsa0{word-spacing:7.431200pt;}
.ws175{word-spacing:7.448000pt;}
.ws176{word-spacing:7.453600pt;}
.ws45{word-spacing:7.504000pt;}
.wsf0{word-spacing:7.565600pt;}
.wsdc{word-spacing:7.621600pt;}
.wsdd{word-spacing:7.627200pt;}
.wsc6{word-spacing:7.631413pt;}
.ws90{word-spacing:7.644000pt;}
.ws68{word-spacing:7.651200pt;}
.wsa4{word-spacing:7.660800pt;}
.ws98{word-spacing:7.705600pt;}
.ws9c{word-spacing:7.706400pt;}
.wsd3{word-spacing:7.767200pt;}
.ws7a{word-spacing:7.778400pt;}
.ws103{word-spacing:7.784000pt;}
.wsd6{word-spacing:7.800800pt;}
.wsda{word-spacing:7.806400pt;}
.ws151{word-spacing:7.828800pt;}
.ws4c{word-spacing:7.851200pt;}
.wsab{word-spacing:7.862400pt;}
.ws14a{word-spacing:7.873600pt;}
.wsb7{word-spacing:7.901600pt;}
.ws65{word-spacing:7.946720pt;}
.ws2d{word-spacing:7.953200pt;}
.ws173{word-spacing:7.985387pt;}
.ws147{word-spacing:8.036000pt;}
.wse5{word-spacing:8.120000pt;}
.ws11f{word-spacing:8.162960pt;}
.wsb9{word-spacing:8.181600pt;}
.ws161{word-spacing:8.428000pt;}
.ws11a{word-spacing:8.439680pt;}
.ws83{word-spacing:8.472800pt;}
.ws14b{word-spacing:8.556800pt;}
.ws44{word-spacing:8.601600pt;}
.ws8c{word-spacing:8.658667pt;}
.ws14e{word-spacing:8.691200pt;}
.ws33{word-spacing:8.786400pt;}
.ws72{word-spacing:9.083200pt;}
.ws15e{word-spacing:9.144800pt;}
.ws48{word-spacing:9.212000pt;}
.ws7c{word-spacing:9.228800pt;}
.ws51{word-spacing:9.254400pt;}
.ws2c{word-spacing:9.316907pt;}
.ws84{word-spacing:9.346400pt;}
.ws10d{word-spacing:9.419200pt;}
.ws10c{word-spacing:9.548000pt;}
.ws182{word-spacing:9.654400pt;}
.wsfb{word-spacing:9.665600pt;}
.wsfa{word-spacing:9.671200pt;}
.wsf4{word-spacing:9.772000pt;}
.ws94{word-spacing:9.815680pt;}
.ws95{word-spacing:9.828107pt;}
.wsd7{word-spacing:9.940000pt;}
.wsb0{word-spacing:10.063200pt;}
.wsaf{word-spacing:10.068800pt;}
.ws17f{word-spacing:10.203200pt;}
.wsa9{word-spacing:10.858400pt;}
.ws146{word-spacing:11.308533pt;}
.ws112{word-spacing:11.323200pt;}
.ws16f{word-spacing:12.073867pt;}
.ws8e{word-spacing:13.582667pt;}
.ws97{word-spacing:39.121333pt;}
.ws99{word-spacing:42.462000pt;}
.ws25{word-spacing:291.995733pt;}
._5{margin-left:-8.236800pt;}
._2{margin-left:-5.848000pt;}
._3{margin-left:-4.352080pt;}
._0{margin-left:-2.635200pt;}
._1{margin-left:-0.996800pt;}
._9{width:1.320080pt;}
._b{width:2.296000pt;}
._6{width:3.507200pt;}
._d{width:4.718400pt;}
._14{width:5.608800pt;}
._e{width:6.563200pt;}
._a{width:7.752800pt;}
._f{width:8.672267pt;}
._17{width:9.680000pt;}
._8{width:10.727467pt;}
._10{width:11.853333pt;}
._7{width:13.024000pt;}
._15{width:13.994400pt;}
._13{width:14.884747pt;}
._18{width:15.850853pt;}
._12{width:17.659947pt;}
._4{width:18.899200pt;}
._11{width:20.359200pt;}
._16{width:48.018667pt;}
._c{width:1354.757867pt;}
.fs13{font-size:24.000000pt;}
.fs3{font-size:24.933333pt;}
.fsa{font-size:26.400000pt;}
.fs2{font-size:30.800000pt;}
.fs5{font-size:31.733333pt;}
.fs14{font-size:32.000000pt;}
.fsc{font-size:33.600000pt;}
.fs12{font-size:34.666667pt;}
.fs7{font-size:37.333333pt;}
.fsb{font-size:39.200000pt;}
.fs11{font-size:40.000000pt;}
.fs8{font-size:42.666667pt;}
.fs4{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fsd{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs10{font-size:58.666667pt;}
.fs15{font-size:61.333333pt;}
.fs6{font-size:64.000000pt;}
.fse{font-size:69.333333pt;}
.fsf{font-size:74.666667pt;}
.fs16{font-size:82.666667pt;}
.y0{bottom:0.000000pt;}
.y158{bottom:50.074133pt;}
.y53{bottom:50.074267pt;}
.y1a3{bottom:51.840000pt;}
.y1a2{bottom:56.000000pt;}
.y17d{bottom:68.800000pt;}
.y18c{bottom:69.440000pt;}
.y52{bottom:79.700800pt;}
.y1b{bottom:79.701333pt;}
.yf3{bottom:79.701600pt;}
.yce{bottom:79.701733pt;}
.y13d{bottom:79.702267pt;}
.y11c{bottom:79.702800pt;}
.ya8{bottom:79.704000pt;}
.y159{bottom:80.375733pt;}
.y157{bottom:83.100800pt;}
.y80{bottom:83.101200pt;}
.y17c{bottom:87.360000pt;}
.y18b{bottom:88.320000pt;}
.y156{bottom:93.300667pt;}
.y51{bottom:93.300800pt;}
.y7f{bottom:93.300933pt;}
.y1a{bottom:93.301333pt;}
.yf2{bottom:93.301467pt;}
.ycd{bottom:93.301733pt;}
.y13c{bottom:93.302267pt;}
.y11b{bottom:96.702800pt;}
.ya7{bottom:96.703867pt;}
.y17b{bottom:102.080000pt;}
.y155{bottom:106.900667pt;}
.y19{bottom:106.901333pt;}
.yf1{bottom:106.901467pt;}
.y13b{bottom:106.902267pt;}
.y11a{bottom:106.902800pt;}
.ya6{bottom:106.903733pt;}
.y50{bottom:110.300800pt;}
.y7e{bottom:110.301067pt;}
.ycc{bottom:110.301600pt;}
.y15c{bottom:118.458000pt;}
.y154{bottom:120.500667pt;}
.y18{bottom:120.501333pt;}
.ycb{bottom:120.501467pt;}
.y13a{bottom:120.502267pt;}
.y119{bottom:120.502667pt;}
.ya5{bottom:120.503600pt;}
.y17a{bottom:120.640000pt;}
.y18a{bottom:121.280000pt;}
.y4f{bottom:123.900800pt;}
.y7d{bottom:123.901067pt;}
.yf0{bottom:123.901733pt;}
.y1a1{bottom:127.040000pt;}
.y4e{bottom:134.100667pt;}
.yca{bottom:134.101467pt;}
.y139{bottom:134.102267pt;}
.y15d{bottom:134.932667pt;}
.y153{bottom:137.500667pt;}
.y7c{bottom:137.500933pt;}
.y17{bottom:137.501333pt;}
.y118{bottom:137.502800pt;}
.ya4{bottom:137.503733pt;}
.y179{bottom:139.200000pt;}
.y189{bottom:139.520000pt;}
.y152{bottom:147.700533pt;}
.y4d{bottom:147.700667pt;}
.y7b{bottom:147.700933pt;}
.y138{bottom:147.702267pt;}
.y117{bottom:147.702667pt;}
.ya3{bottom:147.703733pt;}
.yc9{bottom:151.101600pt;}
.y137{bottom:151.102267pt;}
.y178{bottom:153.920000pt;}
.yef{bottom:154.022133pt;}
.y4c{bottom:161.300533pt;}
.y136{bottom:161.302133pt;}
.ya2{bottom:161.303733pt;}
.y7a{bottom:164.700933pt;}
.yc8{bottom:164.701467pt;}
.y116{bottom:164.702667pt;}
.y16{bottom:170.353067pt;}
.yee{bottom:170.822133pt;}
.y177{bottom:172.480000pt;}
.y188{bottom:172.800000pt;}
.y151{bottom:174.900400pt;}
.y4b{bottom:174.900533pt;}
.y135{bottom:174.902133pt;}
.y115{bottom:174.902533pt;}
.yc7{bottom:178.301467pt;}
.ya1{bottom:178.303733pt;}
.y15{bottom:187.153067pt;}
.y176{bottom:187.200000pt;}
.yed{bottom:187.622133pt;}
.y150{bottom:188.500400pt;}
.y4a{bottom:188.500533pt;}
.y134{bottom:188.502133pt;}
.y114{bottom:188.502533pt;}
.ya0{bottom:188.503600pt;}
.yc6{bottom:191.901467pt;}
.y79{bottom:193.988800pt;}
.y14f{bottom:202.100400pt;}
.y49{bottom:202.100533pt;}
.yc5{bottom:202.101333pt;}
.y113{bottom:202.102533pt;}
.y14{bottom:203.953067pt;}
.yec{bottom:204.422133pt;}
.y133{bottom:205.502133pt;}
.y9f{bottom:205.503600pt;}
.y175{bottom:205.760000pt;}
.y187{bottom:206.080000pt;}
.y78{bottom:210.788800pt;}
.y14e{bottom:215.700400pt;}
.y132{bottom:215.702133pt;}
.y112{bottom:215.702533pt;}
.yc4{bottom:219.101467pt;}
.y9e{bottom:219.103600pt;}
.y174{bottom:220.480000pt;}
.y13{bottom:220.753067pt;}
.yeb{bottom:221.222133pt;}
.y77{bottom:227.588800pt;}
.y131{bottom:229.302133pt;}
.y111{bottom:229.302533pt;}
.y14d{bottom:232.700533pt;}
.y48{bottom:237.397333pt;}
.y12{bottom:237.553067pt;}
.yea{bottom:238.022133pt;}
.y173{bottom:239.040000pt;}
.y186{bottom:239.360000pt;}
.y14c{bottom:242.900400pt;}
.y110{bottom:242.902533pt;}
.y76{bottom:244.388667pt;}
.y130{bottom:246.302133pt;}
.yc3{bottom:249.350733pt;}
.y47{bottom:251.797333pt;}
.y9d{bottom:253.837333pt;}
.y11{bottom:254.353067pt;}
.ye9{bottom:254.822133pt;}
.y10f{bottom:256.502400pt;}
.y172{bottom:257.600000pt;}
.y185{bottom:257.920000pt;}
.y14b{bottom:259.900400pt;}
.y75{bottom:261.188667pt;}
.yc2{bottom:266.150733pt;}
.y9c{bottom:270.637333pt;}
.y10{bottom:271.153067pt;}
.ye8{bottom:271.622133pt;}
.y10e{bottom:273.502533pt;}
.y12f{bottom:273.917067pt;}
.y171{bottom:276.160000pt;}
.y184{bottom:276.480000pt;}
.y74{bottom:277.988667pt;}
.y46{bottom:282.158800pt;}
.yc1{bottom:282.950733pt;}
.y10d{bottom:283.702400pt;}
.y9b{bottom:287.437333pt;}
.yf{bottom:287.953067pt;}
.y12e{bottom:290.717067pt;}
.ye7{bottom:290.770000pt;}
.y170{bottom:290.880000pt;}
.y73{bottom:294.788667pt;}
.y45{bottom:298.958800pt;}
.y10c{bottom:300.702400pt;}
.yc0{bottom:303.140133pt;}
.y9a{bottom:304.237333pt;}
.ye{bottom:304.753067pt;}
.y12d{bottom:307.517067pt;}
.ye6{bottom:307.570000pt;}
.y16f{bottom:309.440000pt;}
.y183{bottom:309.760000pt;}
.y10b{bottom:310.902400pt;}
.y72{bottom:311.588667pt;}
.y44{bottom:315.758800pt;}
.ybf{bottom:319.940133pt;}
.y99{bottom:321.037333pt;}
.yd{bottom:321.553067pt;}
.y16e{bottom:324.160000pt;}
.y12c{bottom:324.317067pt;}
.ye5{bottom:324.370000pt;}
.y10a{bottom:327.902400pt;}
.y71{bottom:328.388667pt;}
.y43{bottom:332.558800pt;}
.ybe{bottom:336.740133pt;}
.y98{bottom:337.837333pt;}
.y109{bottom:338.102267pt;}
.y12b{bottom:341.117067pt;}
.ye4{bottom:341.170000pt;}
.y16d{bottom:342.720000pt;}
.y182{bottom:343.040000pt;}
.y70{bottom:347.882267pt;}
.y42{bottom:349.358800pt;}
.ybd{bottom:353.540133pt;}
.y97{bottom:354.637333pt;}
.y108{bottom:355.102400pt;}
.y16c{bottom:357.440000pt;}
.y12a{bottom:357.917067pt;}
.ye3{bottom:357.970000pt;}
.y6f{bottom:364.682267pt;}
.y41{bottom:366.158800pt;}
.ybc{bottom:370.340133pt;}
.y96{bottom:371.437333pt;}
.y129{bottom:374.717067pt;}
.ye2{bottom:374.770000pt;}
.yc{bottom:375.485733pt;}
.y16b{bottom:376.000000pt;}
.y181{bottom:376.320000pt;}
.y6e{bottom:381.482267pt;}
.y40{bottom:382.958800pt;}
.y107{bottom:384.811267pt;}
.ybb{bottom:387.140133pt;}
.y95{bottom:388.237333pt;}
.yb{bottom:390.269733pt;}
.y16a{bottom:390.720000pt;}
.y128{bottom:391.516933pt;}
.ye1{bottom:391.570000pt;}
.y6d{bottom:398.282267pt;}
.y3d{bottom:399.758667pt;}
.y3f{bottom:399.758800pt;}
.y106{bottom:401.611267pt;}
.yba{bottom:403.940200pt;}
.y3e{bottom:403.958800pt;}
.ya{bottom:404.669733pt;}
.y94{bottom:405.037333pt;}
.y127{bottom:408.316933pt;}
.ye0{bottom:408.370000pt;}
.y169{bottom:409.600000pt;}
.y180{bottom:409.920000pt;}
.y6c{bottom:415.082267pt;}
.y3c{bottom:416.558667pt;}
.y105{bottom:418.411267pt;}
.y9{bottom:419.069733pt;}
.yb9{bottom:420.740200pt;}
.y168{bottom:424.320000pt;}
.y126{bottom:425.116933pt;}
.ydf{bottom:425.170000pt;}
.y6b{bottom:431.882267pt;}
.y39{bottom:433.358533pt;}
.y3b{bottom:433.358667pt;}
.y8{bottom:433.469733pt;}
.y93{bottom:434.301467pt;}
.y104{bottom:435.211267pt;}
.yb8{bottom:437.540200pt;}
.y3a{bottom:437.558800pt;}
.y125{bottom:441.916933pt;}
.yde{bottom:441.970000pt;}
.y167{bottom:443.200000pt;}
.y6a{bottom:448.682267pt;}
.y38{bottom:450.158533pt;}
.y103{bottom:452.011267pt;}
.yb7{bottom:454.340200pt;}
.y7{bottom:455.813733pt;}
.y166{bottom:457.280000pt;}
.y124{bottom:458.717200pt;}
.ydd{bottom:458.770000pt;}
.y69{bottom:465.482267pt;}
.y37{bottom:466.958533pt;}
.y102{bottom:468.811267pt;}
.yb6{bottom:471.140200pt;}
.y92{bottom:474.904267pt;}
.y123{bottom:475.517200pt;}
.y165{bottom:476.480000pt;}
.ydc{bottom:477.919200pt;}
.y68{bottom:482.282267pt;}
.y36{bottom:483.758533pt;}
.y101{bottom:485.611267pt;}
.yb5{bottom:487.940200pt;}
.y6{bottom:489.497733pt;}
.y164{bottom:490.880000pt;}
.y91{bottom:491.704267pt;}
.y122{bottom:492.317200pt;}
.ydb{bottom:494.719200pt;}
.y67{bottom:499.082267pt;}
.y35{bottom:500.558533pt;}
.y100{bottom:502.411267pt;}
.y5{bottom:504.281733pt;}
.yb4{bottom:504.740200pt;}
.y90{bottom:508.504267pt;}
.y121{bottom:509.117200pt;}
.y163{bottom:509.440000pt;}
.y14a{bottom:509.630000pt;}
.y17f{bottom:509.760000pt;}
.yda{bottom:511.519200pt;}
.y66{bottom:515.882267pt;}
.y34{bottom:517.358533pt;}
.y4{bottom:518.681733pt;}
.yb3{bottom:521.540200pt;}
.yff{bottom:523.765467pt;}
.y162{bottom:523.840000pt;}
.y8f{bottom:525.304000pt;}
.y120{bottom:525.917200pt;}
.y149{bottom:526.429867pt;}
.yd9{bottom:528.319200pt;}
.y19c{bottom:528.320000pt;}
.y65{bottom:532.682267pt;}
.y3{bottom:533.081733pt;}
.y33{bottom:534.158533pt;}
.yb2{bottom:538.340200pt;}
.y161{bottom:538.560000pt;}
.yfe{bottom:540.565467pt;}
.y8e{bottom:542.104000pt;}
.y11f{bottom:542.717200pt;}
.y148{bottom:543.229867pt;}
.yd8{bottom:545.119200pt;}
.y2{bottom:547.481733pt;}
.y64{bottom:549.482267pt;}
.yb1{bottom:555.140200pt;}
.y32{bottom:556.438200pt;}
.yfd{bottom:557.365467pt;}
.y19b{bottom:557.760000pt;}
.y15a{bottom:557.826267pt;}
.y8d{bottom:558.904000pt;}
.y11e{bottom:559.517200pt;}
.y147{bottom:560.029867pt;}
.y17e{bottom:561.600000pt;}
.yd7{bottom:561.919200pt;}
.y63{bottom:566.282267pt;}
.y1{bottom:569.825733pt;}
.yb0{bottom:571.940200pt;}
.y19a{bottom:572.160000pt;}
.y31{bottom:573.238200pt;}
.yfc{bottom:574.165333pt;}
.y15b{bottom:574.300933pt;}
.y11d{bottom:576.317200pt;}
.y146{bottom:576.829867pt;}
.yd6{bottom:578.719200pt;}
.y8c{bottom:578.719333pt;}
.y62{bottom:583.082267pt;}
.y30{bottom:590.038200pt;}
.y199{bottom:590.400000pt;}
.yfb{bottom:590.965333pt;}
.yaf{bottom:592.129600pt;}
.y145{bottom:593.629867pt;}
.yd5{bottom:595.519200pt;}
.y8b{bottom:595.519333pt;}
.y61{bottom:599.882267pt;}
.y198{bottom:604.800000pt;}
.y2f{bottom:606.838200pt;}
.yfa{bottom:607.765333pt;}
.yae{bottom:608.929600pt;}
.y144{bottom:610.429867pt;}
.yd4{bottom:612.319200pt;}
.y8a{bottom:612.319333pt;}
.y60{bottom:616.682267pt;}
.y197{bottom:623.040000pt;}
.y2e{bottom:623.638200pt;}
.yf9{bottom:624.565267pt;}
.yad{bottom:625.729600pt;}
.y143{bottom:627.229867pt;}
.yd3{bottom:629.119200pt;}
.y89{bottom:629.119333pt;}
.y1f{bottom:631.348667pt;}
.y5f{bottom:633.482133pt;}
.y196{bottom:637.440000pt;}
.y2d{bottom:640.438200pt;}
.yf8{bottom:641.365267pt;}
.yac{bottom:642.530067pt;}
.y142{bottom:644.029333pt;}
.yd2{bottom:645.919200pt;}
.y88{bottom:645.919333pt;}
.y5e{bottom:650.282133pt;}
.y195{bottom:655.360000pt;}
.y1a0{bottom:655.680000pt;}
.y2c{bottom:657.238200pt;}
.yf7{bottom:658.165267pt;}
.yab{bottom:659.330067pt;}
.y141{bottom:660.829333pt;}
.yd1{bottom:662.719200pt;}
.y87{bottom:662.719333pt;}
.y5d{bottom:667.082133pt;}
.y1e{bottom:668.532667pt;}
.y160{bottom:672.000000pt;}
.y2b{bottom:674.038200pt;}
.y194{bottom:675.520000pt;}
.yaa{bottom:676.130067pt;}
.y140{bottom:677.629333pt;}
.yd0{bottom:679.519200pt;}
.y86{bottom:679.519333pt;}
.y1d{bottom:687.732667pt;}
.y2a{bottom:690.838200pt;}
.ya9{bottom:692.930067pt;}
.y13f{bottom:694.429333pt;}
.y5c{bottom:694.993067pt;}
.ycf{bottom:696.319200pt;}
.yf6{bottom:696.319333pt;}
.y85{bottom:696.319467pt;}
.y193{bottom:705.280000pt;}
.y1c{bottom:706.932667pt;}
.y29{bottom:707.638200pt;}
.y5b{bottom:709.393067pt;}
.y13e{bottom:711.229333pt;}
.y84{bottom:713.119200pt;}
.yf5{bottom:713.119333pt;}
.y192{bottom:723.520000pt;}
.y5a{bottom:723.793067pt;}
.y28{bottom:724.438200pt;}
.y83{bottom:729.919200pt;}
.yf4{bottom:729.919333pt;}
.y191{bottom:737.920000pt;}
.y59{bottom:738.193067pt;}
.y27{bottom:741.238200pt;}
.y82{bottom:746.719200pt;}
.y58{bottom:752.593067pt;}
.y190{bottom:756.160000pt;}
.y19f{bottom:756.480000pt;}
.y26{bottom:758.038200pt;}
.y81{bottom:763.519200pt;}
.y57{bottom:766.993067pt;}
.y15f{bottom:768.960000pt;}
.y18f{bottom:770.560000pt;}
.y25{bottom:780.319200pt;}
.y56{bottom:784.086800pt;}
.y15e{bottom:786.560000pt;}
.y18e{bottom:789.120000pt;}
.y19e{bottom:789.440000pt;}
.y24{bottom:797.119200pt;}
.y55{bottom:798.486800pt;}
.y22{bottom:806.829733pt;}
.y18d{bottom:818.880000pt;}
.y19d{bottom:821.440000pt;}
.y23{bottom:827.811333pt;}
.y54{bottom:830.478000pt;}
.y20{bottom:830.546667pt;}
.y21{bottom:940.640400pt;}
.h1b{height:22.364518pt;}
.he{height:25.921875pt;}
.h18{height:27.061694pt;}
.h16{height:27.062227pt;}
.h8{height:27.062760pt;}
.h12{height:27.063294pt;}
.h10{height:27.626758pt;}
.h1c{height:28.463932pt;}
.hd{height:30.083333pt;}
.hc{height:33.486979pt;}
.h13{height:37.171875pt;}
.h34{height:38.937500pt;}
.h9{height:40.662760pt;}
.h11{height:40.663294pt;}
.h35{height:41.718750pt;}
.h5{height:43.054688pt;}
.h14{height:43.055754pt;}
.h25{height:44.500000pt;}
.h4{height:44.671875pt;}
.h2d{height:47.060000pt;}
.h33{height:47.281250pt;}
.hf{height:47.838542pt;}
.h2b{height:48.561250pt;}
.h27{height:48.782500pt;}
.h2a{height:50.062500pt;}
.h6{height:50.230469pt;}
.h19{height:50.230735pt;}
.h15{height:50.231002pt;}
.h7{height:50.231535pt;}
.h1a{height:50.232069pt;}
.h1d{height:50.232602pt;}
.h17{height:50.235802pt;}
.h28{height:51.342500pt;}
.h2f{height:52.622500pt;}
.h29{height:52.843750pt;}
.h2e{height:54.123750pt;}
.h37{height:55.403750pt;}
.h2c{height:55.625000pt;}
.hb{height:56.718750pt;}
.h20{height:56.905000pt;}
.h26{height:58.185000pt;}
.h36{height:58.406250pt;}
.h32{height:59.243750pt;}
.ha{height:59.562500pt;}
.h30{height:61.187500pt;}
.h24{height:63.747500pt;}
.h38{height:63.968750pt;}
.h23{height:65.027500pt;}
.h31{height:66.750000pt;}
.h21{height:72.312500pt;}
.h22{height:77.875000pt;}
.h39{height:86.218750pt;}
.h1e{height:895.679987pt;}
.h1f{height:896.000000pt;}
.h0{height:897.920000pt;}
.h1{height:898.000000pt;}
.h2{height:906.613733pt;}
.h3{height:906.666667pt;}
.w6{width:593.141413pt;}
.w7{width:593.333333pt;}
.w5{width:596.666667pt;}
.w4{width:596.920960pt;}
.w0{width:600.483200pt;}
.w1{width:600.666667pt;}
.w3{width:604.666667pt;}
.w2{width:604.818800pt;}
.x5{left:-15.590533pt;}
.x0{left:0.000000pt;}
.x18{left:38.400000pt;}
.x19{left:53.440000pt;}
.x1{left:63.632533pt;}
.x1f{left:65.600000pt;}
.x20{left:80.320000pt;}
.x2{left:84.416533pt;}
.xc{left:85.407467pt;}
.x3{left:88.106400pt;}
.xd{left:102.561733pt;}
.x6{left:121.055067pt;}
.x7{left:124.943600pt;}
.x12{left:128.048400pt;}
.xa{left:139.223067pt;}
.x15{left:177.920000pt;}
.x16{left:190.080000pt;}
.xb{left:199.245867pt;}
.x17{left:249.600000pt;}
.xe{left:305.959867pt;}
.x8{left:306.876133pt;}
.x9{left:310.764667pt;}
.xf{left:332.743333pt;}
.x10{left:341.006933pt;}
.x4{left:355.664533pt;}
.x11{left:368.147333pt;}
.x23{left:423.360000pt;}
.x24{left:432.000000pt;}
.x1e{left:474.240000pt;}
.x1d{left:475.840000pt;}
.x1a{left:477.120000pt;}
.x1c{left:486.720000pt;}
.x1b{left:492.480000pt;}
.x22{left:501.760000pt;}
.x21{left:510.080000pt;}
.x13{left:525.381867pt;}
.x14{left:539.781867pt;}
}




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