
    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_73771bfcad619cf66fb5ffb5.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_87190f2b819ba33df6076be8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.818000;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_2967ffb53b068e79c07db13a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.085000;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_91c13558ce9412ff84b1300b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_7e46e6da803cf57043b6ce4f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.926758;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_ea57871096189852a63ea8ae.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926758;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_8d587560c0be9afd395b846b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.964000;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_03b6b1308a6a6114f5693d65.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.818000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.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);}
.m0{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v4{vertical-align:-19.800000px;}
.v2{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.820000px;}
.v1{vertical-align:19.800000px;}
.ls12{letter-spacing:-3.180000px;}
.lsb{letter-spacing:-2.193000px;}
.ls4{letter-spacing:-1.260000px;}
.ls27{letter-spacing:-1.224000px;}
.ls28{letter-spacing:-1.148400px;}
.ls50{letter-spacing:-1.071000px;}
.ls2c{letter-spacing:-0.976140px;}
.ls1c{letter-spacing:-0.960000px;}
.ls4f{letter-spacing:-0.918000px;}
.ls2b{letter-spacing:-0.730800px;}
.ls4b{letter-spacing:-0.714000px;}
.ls52{letter-spacing:-0.663000px;}
.lse{letter-spacing:-0.660000px;}
.ls2e{letter-spacing:-0.621180px;}
.ls1a{letter-spacing:-0.540000px;}
.ls3{letter-spacing:-0.510000px;}
.ls1e{letter-spacing:-0.487200px;}
.ls1d{letter-spacing:-0.480000px;}
.ls33{letter-spacing:-0.432000px;}
.lsd{letter-spacing:-0.420000px;}
.ls31{letter-spacing:-0.417600px;}
.ls23{letter-spacing:-0.414120px;}
.ls4c{letter-spacing:-0.408000px;}
.ls37{letter-spacing:-0.378000px;}
.ls9{letter-spacing:-0.360000px;}
.ls51{letter-spacing:-0.357000px;}
.ls39{letter-spacing:-0.354960px;}
.ls35{letter-spacing:-0.324000px;}
.ls1b{letter-spacing:-0.300000px;}
.ls1f{letter-spacing:-0.278400px;}
.ls49{letter-spacing:-0.255000px;}
.ls13{letter-spacing:-0.240000px;}
.ls24{letter-spacing:-0.236640px;}
.ls15{letter-spacing:-0.162000px;}
.ls40{letter-spacing:-0.147900px;}
.lsa{letter-spacing:-0.120000px;}
.ls32{letter-spacing:-0.108000px;}
.ls11{letter-spacing:-0.060000px;}
.ls17{letter-spacing:-0.054000px;}
.ls48{letter-spacing:-0.051000px;}
.ls3a{letter-spacing:-0.029580px;}
.ls1{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.054000px;}
.ls4a{letter-spacing:0.153000px;}
.ls2a{letter-spacing:0.180000px;}
.ls16{letter-spacing:0.216000px;}
.ls45{letter-spacing:0.255000px;}
.ls2d{letter-spacing:0.266220px;}
.ls26{letter-spacing:0.295800px;}
.ls54{letter-spacing:0.306000px;}
.ls29{letter-spacing:0.313200px;}
.ls22{letter-spacing:0.348000px;}
.ls30{letter-spacing:0.357000px;}
.lsf{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.378000px;}
.ls25{letter-spacing:0.443700px;}
.ls2f{letter-spacing:0.459000px;}
.ls44{letter-spacing:0.462000px;}
.ls2{letter-spacing:0.480000px;}
.ls21{letter-spacing:0.522000px;}
.ls3f{letter-spacing:0.556800px;}
.ls41{letter-spacing:0.562020px;}
.ls3c{letter-spacing:0.600000px;}
.ls4e{letter-spacing:0.612000px;}
.ls42{letter-spacing:0.621180px;}
.ls34{letter-spacing:0.648000px;}
.ls3e{letter-spacing:0.661200px;}
.ls4d{letter-spacing:0.663000px;}
.ls7{letter-spacing:0.696000px;}
.ls36{letter-spacing:0.702000px;}
.ls46{letter-spacing:0.714000px;}
.ls47{letter-spacing:0.765000px;}
.ls20{letter-spacing:0.780000px;}
.ls10{letter-spacing:0.840000px;}
.ls5{letter-spacing:0.842400px;}
.ls19{letter-spacing:1.005600px;}
.ls3b{letter-spacing:1.005720px;}
.ls53{letter-spacing:1.020000px;}
.lsc{letter-spacing:1.131000px;}
.ls8{letter-spacing:1.170000px;}
.ls38{letter-spacing:1.183200px;}
.ls3d{letter-spacing:1.200000px;}
.ls6{letter-spacing:1.311600px;}
.ls43{letter-spacing:1.458000px;}
.ls0{letter-spacing:1.482600px;}
.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;}
}
.ws42{word-spacing:-14.580000px;}
.ws85{word-spacing:-14.460000px;}
.ws9c{word-spacing:-14.100000px;}
.ws82{word-spacing:-13.740000px;}
.wsb7{word-spacing:-13.392000px;}
.wsb4{word-spacing:-13.338000px;}
.wscc{word-spacing:-12.831000px;}
.wse5{word-spacing:-12.750000px;}
.wsb5{word-spacing:-12.582000px;}
.wsb6{word-spacing:-12.366000px;}
.wsa1{word-spacing:-12.342000px;}
.wsb9{word-spacing:-12.312000px;}
.wsb3{word-spacing:-12.258000px;}
.wse6{word-spacing:-11.985000px;}
.wse7{word-spacing:-11.730000px;}
.ws43{word-spacing:-10.920000px;}
.ws1d{word-spacing:-9.792000px;}
.wsba{word-spacing:-9.361200px;}
.wscd{word-spacing:-8.839200px;}
.wsce{word-spacing:-8.734800px;}
.ws84{word-spacing:-8.700000px;}
.ws86{word-spacing:-8.526000px;}
.ws9b{word-spacing:-8.491200px;}
.wsbd{word-spacing:-7.957020px;}
.ws83{word-spacing:-7.899600px;}
.wsb2{word-spacing:-7.760400px;}
.ws81{word-spacing:-7.690800px;}
.wsd1{word-spacing:-7.572480px;}
.wsd0{word-spacing:-7.513320px;}
.ws9d{word-spacing:-7.447200px;}
.ws89{word-spacing:-7.395000px;}
.ws5d{word-spacing:-7.360200px;}
.ws8a{word-spacing:-7.247100px;}
.ws9f{word-spacing:-7.217520px;}
.ws9a{word-spacing:-7.029600px;}
.ws0{word-spacing:-6.951300px;}
.wsbc{word-spacing:-6.921720px;}
.wscf{word-spacing:-6.803400px;}
.ws88{word-spacing:-6.714660px;}
.wsbb{word-spacing:-6.596340px;}
.ws87{word-spacing:-6.537180px;}
.wsa0{word-spacing:-6.330120px;}
.ws9e{word-spacing:-5.975160px;}
.wsfc{word-spacing:-4.335000px;}
.ws3{word-spacing:-3.540000px;}
.ws29{word-spacing:-3.480000px;}
.ws93{word-spacing:-3.420000px;}
.ws2{word-spacing:-3.360000px;}
.ws5f{word-spacing:-3.300000px;}
.wsfb{word-spacing:-3.264000px;}
.ws78{word-spacing:-3.240000px;}
.ws64{word-spacing:-3.186000px;}
.ws2f{word-spacing:-3.180000px;}
.wse0{word-spacing:-3.132000px;}
.ws95{word-spacing:-3.120000px;}
.ws51{word-spacing:-3.060000px;}
.ws105{word-spacing:-3.009000px;}
.ws96{word-spacing:-3.000000px;}
.wsfa{word-spacing:-2.958000px;}
.ws4d{word-spacing:-2.940000px;}
.wsc0{word-spacing:-2.880000px;}
.ws7a{word-spacing:-2.754000px;}
.ws68{word-spacing:-2.700000px;}
.ws34{word-spacing:-2.640000px;}
.ws8b{word-spacing:-2.580000px;}
.wsdc{word-spacing:-2.520000px;}
.wseb{word-spacing:-2.484000px;}
.ws80{word-spacing:-2.280000px;}
.ws22{word-spacing:-2.220000px;}
.wse2{word-spacing:-2.214000px;}
.ws6c{word-spacing:-2.160000px;}
.wsad{word-spacing:-2.142000px;}
.wsdd{word-spacing:-2.100000px;}
.ws6f{word-spacing:-2.040000px;}
.ws91{word-spacing:-1.920000px;}
.wsf2{word-spacing:-1.887000px;}
.wsd4{word-spacing:-1.860000px;}
.ws35{word-spacing:-1.740000px;}
.ws44{word-spacing:-1.680000px;}
.ws5b{word-spacing:-1.620000px;}
.wsd6{word-spacing:-1.581000px;}
.ws45{word-spacing:-1.560000px;}
.wsff{word-spacing:-1.530000px;}
.ws63{word-spacing:-1.512000px;}
.ws48{word-spacing:-1.500000px;}
.wse4{word-spacing:-1.458000px;}
.ws21{word-spacing:-1.440000px;}
.wsfe{word-spacing:-1.326000px;}
.wsdb{word-spacing:-1.320000px;}
.wsa6{word-spacing:-1.260000px;}
.ws79{word-spacing:-1.242000px;}
.ws71{word-spacing:-1.200000px;}
.ws1e{word-spacing:-1.170000px;}
.ws30{word-spacing:-1.140000px;}
.ws4{word-spacing:-1.080000px;}
.ws33{word-spacing:-1.020000px;}
.wsa5{word-spacing:-0.960000px;}
.wsaa{word-spacing:-0.900000px;}
.ws3a{word-spacing:-0.840000px;}
.wsc5{word-spacing:-0.816000px;}
.wsf7{word-spacing:-0.765000px;}
.wsfd{word-spacing:-0.714000px;}
.wse9{word-spacing:-0.702000px;}
.ws17{word-spacing:-0.663000px;}
.ws49{word-spacing:-0.660000px;}
.wsdf{word-spacing:-0.648000px;}
.wsae{word-spacing:-0.612000px;}
.ws73{word-spacing:-0.540000px;}
.ws47{word-spacing:-0.480000px;}
.wsec{word-spacing:-0.462000px;}
.ws107{word-spacing:-0.459000px;}
.ws2b{word-spacing:-0.420000px;}
.ws38{word-spacing:-0.360000px;}
.wsb0{word-spacing:-0.357000px;}
.wsf8{word-spacing:-0.306000px;}
.ws56{word-spacing:-0.240000px;}
.ws20{word-spacing:-0.180000px;}
.wsf9{word-spacing:-0.153000px;}
.wsd3{word-spacing:-0.120000px;}
.wsac{word-spacing:-0.102000px;}
.ws70{word-spacing:-0.060000px;}
.ws6b{word-spacing:-0.054000px;}
.ws12{word-spacing:-0.051000px;}
.ws1{word-spacing:0.000000px;}
.wsd{word-spacing:0.051000px;}
.wse1{word-spacing:0.054000px;}
.wsaf{word-spacing:0.102000px;}
.wsbf{word-spacing:0.108000px;}
.ws4a{word-spacing:0.120000px;}
.wsde{word-spacing:0.162000px;}
.ws6d{word-spacing:0.180000px;}
.ws90{word-spacing:0.240000px;}
.ws26{word-spacing:0.300000px;}
.ws102{word-spacing:0.357000px;}
.ws59{word-spacing:0.360000px;}
.ws69{word-spacing:0.378000px;}
.ws4c{word-spacing:0.420000px;}
.ws66{word-spacing:0.432000px;}
.wsf3{word-spacing:0.459000px;}
.ws27{word-spacing:0.480000px;}
.ws75{word-spacing:0.540000px;}
.wsd5{word-spacing:0.600000px;}
.ws65{word-spacing:0.648000px;}
.ws52{word-spacing:0.660000px;}
.ws67{word-spacing:0.702000px;}
.ws77{word-spacing:0.720000px;}
.wsd8{word-spacing:0.765000px;}
.ws7e{word-spacing:0.780000px;}
.wsab{word-spacing:0.816000px;}
.ws74{word-spacing:0.840000px;}
.ws94{word-spacing:0.900000px;}
.wsda{word-spacing:0.960000px;}
.wsa4{word-spacing:1.020000px;}
.ws7c{word-spacing:1.026000px;}
.ws104{word-spacing:1.071000px;}
.ws2d{word-spacing:1.080000px;}
.wsbe{word-spacing:1.140000px;}
.ws24{word-spacing:1.200000px;}
.ws99{word-spacing:1.224000px;}
.ws2c{word-spacing:1.260000px;}
.ws3f{word-spacing:1.275000px;}
.ws39{word-spacing:1.320000px;}
.wsf1{word-spacing:1.326000px;}
.wsa7{word-spacing:1.380000px;}
.wsea{word-spacing:1.404000px;}
.ws8c{word-spacing:1.440000px;}
.ws4f{word-spacing:1.500000px;}
.ws7f{word-spacing:1.560000px;}
.ws57{word-spacing:1.620000px;}
.wse{word-spacing:1.632000px;}
.ws61{word-spacing:1.680000px;}
.ws103{word-spacing:1.734000px;}
.ws23{word-spacing:1.740000px;}
.ws3b{word-spacing:1.800000px;}
.wsa9{word-spacing:1.920000px;}
.ws58{word-spacing:1.980000px;}
.ws100{word-spacing:1.989000px;}
.ws5e{word-spacing:2.040000px;}
.ws98{word-spacing:2.091000px;}
.ws25{word-spacing:2.100000px;}
.ws92{word-spacing:2.160000px;}
.ws36{word-spacing:2.220000px;}
.ws5c{word-spacing:2.280000px;}
.ws76{word-spacing:2.340000px;}
.ws41{word-spacing:2.346000px;}
.ws4b{word-spacing:2.400000px;}
.ws106{word-spacing:2.448000px;}
.ws6{word-spacing:2.460000px;}
.wsc2{word-spacing:2.580000px;}
.wsf{word-spacing:2.601000px;}
.wsa3{word-spacing:2.640000px;}
.ws7b{word-spacing:2.700000px;}
.wsf0{word-spacing:2.703000px;}
.ws108{word-spacing:2.805000px;}
.wsc4{word-spacing:2.820000px;}
.ws10{word-spacing:2.856000px;}
.ws3d{word-spacing:2.940000px;}
.ws46{word-spacing:3.000000px;}
.ws2a{word-spacing:3.060000px;}
.wsef{word-spacing:3.162000px;}
.ws28{word-spacing:3.180000px;}
.ws109{word-spacing:3.213000px;}
.ws31{word-spacing:3.240000px;}
.wsa{word-spacing:3.264000px;}
.wsc7{word-spacing:3.417000px;}
.ws37{word-spacing:3.420000px;}
.ws2e{word-spacing:3.480000px;}
.wsb{word-spacing:3.519000px;}
.ws7{word-spacing:3.540000px;}
.ws72{word-spacing:3.600000px;}
.ws11{word-spacing:3.621000px;}
.ws32{word-spacing:3.660000px;}
.ws14{word-spacing:3.672000px;}
.ws50{word-spacing:3.720000px;}
.wsf6{word-spacing:3.723000px;}
.wsed{word-spacing:3.774000px;}
.ws6e{word-spacing:3.840000px;}
.wsc6{word-spacing:3.876000px;}
.wsf5{word-spacing:3.978000px;}
.ws60{word-spacing:4.020000px;}
.wsc1{word-spacing:4.140000px;}
.ws13{word-spacing:4.233000px;}
.wse8{word-spacing:4.428000px;}
.wsca{word-spacing:4.437000px;}
.ws8d{word-spacing:4.500000px;}
.ws3c{word-spacing:4.560000px;}
.ws16{word-spacing:4.641000px;}
.wse3{word-spacing:4.644000px;}
.wsd7{word-spacing:4.794000px;}
.wsa2{word-spacing:4.800000px;}
.ws8{word-spacing:4.860000px;}
.wsd2{word-spacing:4.920000px;}
.wscb{word-spacing:4.947000px;}
.ws53{word-spacing:5.040000px;}
.wsa8{word-spacing:5.160000px;}
.ws1b{word-spacing:5.334000px;}
.ws1f{word-spacing:5.340000px;}
.wsc9{word-spacing:5.457000px;}
.ws4e{word-spacing:5.520000px;}
.ws15{word-spacing:5.763000px;}
.wsf4{word-spacing:5.814000px;}
.ws5a{word-spacing:5.940000px;}
.wsee{word-spacing:6.018000px;}
.ws7d{word-spacing:6.060000px;}
.ws55{word-spacing:6.120000px;}
.wsc{word-spacing:6.222000px;}
.wsc3{word-spacing:6.240000px;}
.ws18{word-spacing:6.300000px;}
.ws62{word-spacing:6.318000px;}
.ws8f{word-spacing:6.360000px;}
.ws6a{word-spacing:6.372000px;}
.ws40{word-spacing:6.426000px;}
.ws8e{word-spacing:6.540000px;}
.ws101{word-spacing:6.681000px;}
.wsb1{word-spacing:6.732000px;}
.ws54{word-spacing:7.020000px;}
.ws5{word-spacing:7.080000px;}
.ws1a{word-spacing:8.064000px;}
.ws9{word-spacing:10.047000px;}
.ws1c{word-spacing:11.550000px;}
.wsc8{word-spacing:13.209000px;}
.ws3e{word-spacing:13.515000px;}
.ws19{word-spacing:15.750000px;}
.ws97{word-spacing:18.360000px;}
.wsb8{word-spacing:98.793000px;}
.wsd9{word-spacing:219.461400px;}
._19{margin-left:-8.404200px;}
._9{margin-left:-5.838000px;}
._6{margin-left:-4.739100px;}
._a{margin-left:-3.730200px;}
._2{margin-left:-2.502900px;}
._3{margin-left:-1.077300px;}
._0{width:1.822500px;}
._1{width:3.094200px;}
._d{width:4.166400px;}
._8{width:5.359200px;}
._7{width:8.038800px;}
._18{width:9.666000px;}
._10{width:13.223640px;}
._15{width:14.310000px;}
._16{width:15.930000px;}
._17{width:17.496000px;}
._11{width:19.964340px;}
._f{width:23.193600px;}
._13{width:24.326520px;}
._e{width:25.454880px;}
._12{width:26.664480px;}
._b{width:27.692640px;}
._4{width:31.160640px;}
._5{width:38.463840px;}
._c{width:41.207640px;}
._14{width:94.294800px;}
.fc1{color:rgb(145,145,144);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:29.580000px;}
.fs9{font-size:31.320000px;}
.fsb{font-size:31.668000px;}
.fs1{font-size:34.800000px;}
.fs7{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs6{font-size:51.000000px;}
.fs2{font-size:54.000000px;}
.fsa{font-size:54.600000px;}
.fs4{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs0{font-size:81.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:79.699200px;}
.y26{bottom:111.082200px;}
.yc7{bottom:119.028300px;}
.ye5{bottom:119.041800px;}
.ybd{bottom:119.046300px;}
.y177{bottom:123.015150px;}
.y53{bottom:123.262800px;}
.y25{bottom:123.682200px;}
.y12e{bottom:127.702050px;}
.yc6{bottom:133.282800px;}
.ye4{bottom:133.296300px;}
.ybc{bottom:133.300800px;}
.y24{bottom:136.282200px;}
.y10b{bottom:137.328750px;}
.y176{bottom:138.162150px;}
.y52{bottom:139.638900px;}
.y14f{bottom:146.845050px;}
.yc5{bottom:147.537300px;}
.ye3{bottom:147.550800px;}
.y23{bottom:148.882200px;}
.y12d{bottom:150.085050px;}
.ybb{bottom:151.762800px;}
.y51{bottom:151.789500px;}
.y175{bottom:153.309150px;}
.y10a{bottom:160.008750px;}
.y22{bottom:161.482200px;}
.yc4{bottom:161.791800px;}
.yf8{bottom:163.922400px;}
.ye2{bottom:166.012800px;}
.y50{bottom:166.044000px;}
.yba{bottom:168.138900px;}
.y174{bottom:168.456150px;}
.y14e{bottom:169.525050px;}
.y92{bottom:171.043050px;}
.y12c{bottom:172.468050px;}
.y21{bottom:174.082200px;}
.yc3{bottom:176.046300px;}
.ye1{bottom:178.172400px;}
.yf7{bottom:178.176900px;}
.y4f{bottom:180.298500px;}
.y7b{bottom:180.417450px;}
.y109{bottom:182.688750px;}
.y173{bottom:183.603150px;}
.yb9{bottom:184.515000px;}
.y91{bottom:189.043050px;}
.yc2{bottom:190.300800px;}
.y14d{bottom:192.205050px;}
.ye0{bottom:192.426900px;}
.y20{bottom:193.055700px;}
.y4e{bottom:194.553000px;}
.y12b{bottom:194.851050px;}
.yf6{bottom:196.638900px;}
.y7a{bottom:198.417450px;}
.y172{bottom:198.750150px;}
.yb8{bottom:200.891100px;}
.yae{bottom:201.645900px;}
.y108{bottom:205.368750px;}
.y90{bottom:207.043050px;}
.yc1{bottom:208.762800px;}
.ydf{bottom:210.888900px;}
.y1f{bottom:212.029200px;}
.y4d{bottom:213.015000px;}
.y171{bottom:213.897150px;}
.y14c{bottom:214.885050px;}
.y79{bottom:216.417450px;}
.y12a{bottom:217.234050px;}
.yad{bottom:219.645900px;}
.yc0{bottom:220.926900px;}
.yde{bottom:223.048500px;}
.y8f{bottom:225.043050px;}
.y107{bottom:228.048750px;}
.y170{bottom:229.044150px;}
.y78{bottom:234.417450px;}
.y1e{bottom:236.623050px;}
.ydd{bottom:237.303000px;}
.y14b{bottom:237.565050px;}
.yac{bottom:237.645900px;}
.ybf{bottom:239.388900px;}
.y129{bottom:239.617050px;}
.y8e{bottom:243.043050px;}
.y16f{bottom:244.191150px;}
.yb7{bottom:246.647400px;}
.y106{bottom:250.728750px;}
.y1d{bottom:250.877550px;}
.y77{bottom:252.417450px;}
.yab{bottom:255.645900px;}
.ybe{bottom:255.765000px;}
.y16e{bottom:259.338150px;}
.y14a{bottom:260.245050px;}
.y8d{bottom:261.043050px;}
.y128{bottom:262.000050px;}
.y4c{bottom:264.644550px;}
.yb6{bottom:264.647400px;}
.y1c{bottom:265.132050px;}
.yf5{bottom:268.972950px;}
.y76{bottom:270.417450px;}
.ydc{bottom:272.141100px;}
.y105{bottom:273.408750px;}
.yaa{bottom:273.645900px;}
.y16d{bottom:274.485150px;}
.y8c{bottom:279.043050px;}
.y1b{bottom:279.386550px;}
.y4b{bottom:282.644550px;}
.yb5{bottom:282.647400px;}
.y149{bottom:282.925050px;}
.y127{bottom:284.383050px;}
.yf4{bottom:286.972950px;}
.y75{bottom:288.417450px;}
.y16c{bottom:289.632150px;}
.ya9{bottom:291.645900px;}
.y1a{bottom:293.641050px;}
.y104{bottom:296.088750px;}
.y8b{bottom:297.043050px;}
.y4a{bottom:300.644550px;}
.yb4{bottom:300.647400px;}
.y16b{bottom:304.779150px;}
.yf3{bottom:304.972950px;}
.y148{bottom:305.605050px;}
.y74{bottom:306.417450px;}
.y126{bottom:306.766050px;}
.y19{bottom:307.895550px;}
.ya8{bottom:309.645900px;}
.y8a{bottom:315.043050px;}
.y49{bottom:318.644550px;}
.yb3{bottom:318.647400px;}
.y103{bottom:318.768750px;}
.y16a{bottom:319.926150px;}
.y18{bottom:322.150050px;}
.yf2{bottom:322.972950px;}
.y73{bottom:324.417450px;}
.y147{bottom:328.285050px;}
.y125{bottom:329.149050px;}
.ydb{bottom:329.803800px;}
.y89{bottom:333.043050px;}
.y169{bottom:335.073150px;}
.y17{bottom:336.404550px;}
.y48{bottom:336.644550px;}
.ya7{bottom:336.647400px;}
.yf1{bottom:340.972950px;}
.y102{bottom:341.448750px;}
.y72{bottom:342.417450px;}
.yda{bottom:347.803800px;}
.y168{bottom:350.220150px;}
.y16{bottom:350.659050px;}
.y146{bottom:350.965050px;}
.y88{bottom:351.043050px;}
.y124{bottom:351.532050px;}
.ya6{bottom:352.847400px;}
.y47{bottom:354.644550px;}
.yb2{bottom:354.647400px;}
.yf0{bottom:358.972950px;}
.y71{bottom:360.417450px;}
.y101{bottom:364.128750px;}
.y15{bottom:364.913550px;}
.y167{bottom:365.367150px;}
.yd9{bottom:365.803800px;}
.y87{bottom:369.043050px;}
.ya5{bottom:369.047400px;}
.y46{bottom:372.644550px;}
.yb1{bottom:372.647400px;}
.y145{bottom:373.645050px;}
.y123{bottom:373.915050px;}
.yef{bottom:376.972950px;}
.y70{bottom:378.417450px;}
.y14{bottom:379.168050px;}
.y166{bottom:380.514150px;}
.yd8{bottom:383.803800px;}
.ya4{bottom:385.247400px;}
.y100{bottom:386.808750px;}
.y86{bottom:387.043050px;}
.y45{bottom:390.644550px;}
.yb0{bottom:390.647400px;}
.y13{bottom:393.422550px;}
.yee{bottom:394.972950px;}
.y165{bottom:395.661150px;}
.y122{bottom:396.298050px;}
.y144{bottom:396.325050px;}
.y6f{bottom:396.417450px;}
.ya3{bottom:401.447400px;}
.yd7{bottom:401.803800px;}
.y85{bottom:405.043050px;}
.y12{bottom:407.677050px;}
.y44{bottom:408.644550px;}
.yff{bottom:409.488750px;}
.y164{bottom:410.808150px;}
.yed{bottom:412.972950px;}
.y6e{bottom:414.417450px;}
.y121{bottom:418.681050px;}
.y143{bottom:419.005050px;}
.yd6{bottom:419.803800px;}
.yaf{bottom:420.646350px;}
.y84{bottom:423.043050px;}
.y163{bottom:425.955150px;}
.y11{bottom:426.139050px;}
.y43{bottom:426.644550px;}
.ya2{bottom:426.647400px;}
.yec{bottom:430.972950px;}
.yfe{bottom:432.168750px;}
.y6d{bottom:432.417450px;}
.y10{bottom:438.303150px;}
.y83{bottom:441.043050px;}
.y120{bottom:441.064050px;}
.y162{bottom:441.102150px;}
.y142{bottom:441.685050px;}
.y42{bottom:444.644550px;}
.ya1{bottom:444.647400px;}
.yeb{bottom:448.972950px;}
.yd5{bottom:449.802900px;}
.y6c{bottom:450.417450px;}
.yfd{bottom:454.848750px;}
.yf{bottom:456.765150px;}
.y41{bottom:462.644550px;}
.ya0{bottom:462.647400px;}
.y11f{bottom:463.447050px;}
.y141{bottom:464.365050px;}
.yea{bottom:466.972950px;}
.y82{bottom:468.044550px;}
.y161{bottom:468.251250px;}
.y6b{bottom:468.417450px;}
.yfc{bottom:477.528750px;}
.y140{bottom:480.565050px;}
.y40{bottom:480.644550px;}
.y9f{bottom:480.647400px;}
.y81{bottom:484.244550px;}
.ye9{bottom:484.972950px;}
.y11e{bottom:485.830050px;}
.y6a{bottom:486.417450px;}
.yd4{bottom:491.800950px;}
.y3f{bottom:498.644550px;}
.y9e{bottom:498.647400px;}
.yfb{bottom:500.208750px;}
.y80{bottom:500.444550px;}
.ye{bottom:500.823450px;}
.y192{bottom:502.476300px;}
.ye8{bottom:502.972950px;}
.y13f{bottom:503.245050px;}
.y69{bottom:504.417450px;}
.y11d{bottom:508.213050px;}
.yd3{bottom:509.800950px;}
.y3e{bottom:516.644550px;}
.y9d{bottom:516.647400px;}
.y191{bottom:517.623300px;}
.yd{bottom:518.823450px;}
.ye7{bottom:520.972950px;}
.y68{bottom:522.417450px;}
.yfa{bottom:523.266750px;}
.y13e{bottom:525.925050px;}
.yd2{bottom:527.800950px;}
.y160{bottom:528.976050px;}
.y11c{bottom:530.596050px;}
.y190{bottom:532.770300px;}
.y7f{bottom:532.844550px;}
.y3d{bottom:534.644550px;}
.y9c{bottom:534.647400px;}
.yc{bottom:536.823450px;}
.y67{bottom:540.417450px;}
.y15f{bottom:545.176050px;}
.yd1{bottom:545.800950px;}
.y18f{bottom:547.917300px;}
.y13d{bottom:548.605050px;}
.y7e{bottom:549.044550px;}
.y3c{bottom:552.644550px;}
.y9b{bottom:552.647400px;}
.y11b{bottom:552.979050px;}
.yf9{bottom:554.445900px;}
.yb{bottom:554.823450px;}
.ye6{bottom:555.623550px;}
.y66{bottom:558.417450px;}
.y18e{bottom:563.064300px;}
.yd0{bottom:563.800950px;}
.y7d{bottom:565.244550px;}
.y15e{bottom:567.856050px;}
.y3b{bottom:570.644550px;}
.y9a{bottom:570.647400px;}
.y13c{bottom:571.285050px;}
.ya{bottom:572.823450px;}
.y11a{bottom:575.362050px;}
.y65{bottom:576.417450px;}
.y18d{bottom:578.211300px;}
.y7c{bottom:581.444550px;}
.ycf{bottom:581.800950px;}
.y15d{bottom:584.056050px;}
.y3a{bottom:588.644550px;}
.y99{bottom:588.647400px;}
.y9{bottom:590.823450px;}
.y18c{bottom:593.358300px;}
.y13b{bottom:593.965050px;}
.y64{bottom:594.417450px;}
.y119{bottom:597.745050px;}
.yce{bottom:599.800950px;}
.y39{bottom:606.644550px;}
.y98{bottom:606.647400px;}
.y15c{bottom:606.736050px;}
.y18b{bottom:608.505300px;}
.y8{bottom:608.823450px;}
.y63{bottom:612.417450px;}
.y13a{bottom:616.645050px;}
.ycd{bottom:617.800950px;}
.y118{bottom:620.128050px;}
.y18a{bottom:623.652300px;}
.y38{bottom:624.644550px;}
.y97{bottom:624.647400px;}
.y7{bottom:626.823450px;}
.y15b{bottom:629.416050px;}
.y62{bottom:630.417450px;}
.ycc{bottom:635.800950px;}
.y189{bottom:638.799300px;}
.y139{bottom:639.325050px;}
.y117{bottom:642.511050px;}
.y37{bottom:642.644550px;}
.y96{bottom:642.647400px;}
.y6{bottom:644.823450px;}
.y61{bottom:648.417450px;}
.y15a{bottom:652.096050px;}
.y188{bottom:653.946300px;}
.y36{bottom:660.644550px;}
.y95{bottom:660.647400px;}
.y138{bottom:662.005050px;}
.y116{bottom:664.894050px;}
.y60{bottom:666.417450px;}
.y187{bottom:669.093300px;}
.y159{bottom:674.776050px;}
.y5{bottom:674.822550px;}
.y35{bottom:678.644550px;}
.y94{bottom:678.647400px;}
.y186{bottom:684.240300px;}
.y5f{bottom:684.417450px;}
.y137{bottom:684.685050px;}
.y115{bottom:687.277050px;}
.y34{bottom:696.644550px;}
.y158{bottom:697.456050px;}
.y185{bottom:699.387300px;}
.y5e{bottom:702.417450px;}
.y136{bottom:707.365050px;}
.y93{bottom:708.646500px;}
.y114{bottom:709.660050px;}
.y157{bottom:713.656050px;}
.y184{bottom:714.534300px;}
.y33{bottom:714.644550px;}
.y5d{bottom:720.417450px;}
.y183{bottom:729.681300px;}
.y135{bottom:730.045050px;}
.y113{bottom:732.043050px;}
.y32{bottom:732.644550px;}
.y156{bottom:736.336050px;}
.y5c{bottom:738.417450px;}
.y182{bottom:744.828300px;}
.y31{bottom:750.644550px;}
.y134{bottom:752.725050px;}
.y112{bottom:754.426050px;}
.y5b{bottom:756.417450px;}
.y155{bottom:759.016050px;}
.y181{bottom:759.975300px;}
.yc9{bottom:763.266750px;}
.y30{bottom:768.644550px;}
.y5a{bottom:774.417450px;}
.y180{bottom:775.122300px;}
.y154{bottom:775.216050px;}
.y133{bottom:775.405050px;}
.y111{bottom:776.809050px;}
.yca{bottom:778.265250px;}
.y2f{bottom:786.644550px;}
.y17f{bottom:790.269300px;}
.y59{bottom:792.417450px;}
.ycb{bottom:793.263750px;}
.y153{bottom:797.896050px;}
.y132{bottom:798.085050px;}
.y110{bottom:799.192050px;}
.y2e{bottom:804.644550px;}
.y17e{bottom:805.416300px;}
.y58{bottom:810.417450px;}
.y17d{bottom:820.563300px;}
.y152{bottom:820.576050px;}
.y131{bottom:820.765050px;}
.y10f{bottom:821.575050px;}
.y2d{bottom:822.644550px;}
.yc8{bottom:824.445900px;}
.y57{bottom:828.417450px;}
.y17c{bottom:835.710300px;}
.y4{bottom:836.820600px;}
.y2c{bottom:840.644550px;}
.y151{bottom:843.256050px;}
.y130{bottom:843.445050px;}
.y10e{bottom:843.958050px;}
.y56{bottom:846.417450px;}
.y17b{bottom:850.857300px;}
.y2b{bottom:858.644550px;}
.y2{bottom:863.331300px;}
.y55{bottom:864.417450px;}
.y150{bottom:865.936050px;}
.y17a{bottom:866.004300px;}
.y12f{bottom:866.125050px;}
.y10d{bottom:866.341050px;}
.y3{bottom:868.274550px;}
.y2a{bottom:876.644550px;}
.y179{bottom:881.151300px;}
.y10c{bottom:888.994050px;}
.y1{bottom:890.324550px;}
.y54{bottom:894.416400px;}
.y29{bottom:894.644550px;}
.y178{bottom:896.298300px;}
.y28{bottom:934.435800px;}
.h3{height:24.360000px;}
.h7{height:26.010000px;}
.hc{height:26.010600px;}
.h9{height:30.618164px;}
.hb{height:31.500000px;}
.he{height:36.924000px;}
.ha{height:42.000000px;}
.h8{height:42.840000px;}
.h4{height:45.360000px;}
.hd{height:45.864000px;}
.h5{height:46.200000px;}
.h6{height:50.400000px;}
.h2{height:56.700000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w1{width:680.250000px;}
.w0{width:680.314500px;}
.x0{left:0.000000px;}
.x5{left:93.543300px;}
.x9{left:100.422000px;}
.x7{left:110.553750px;}
.x6{left:114.803100px;}
.x1{left:119.055150px;}
.x4{left:136.065600px;}
.x3{left:140.314950px;}
.xb{left:177.007500px;}
.x16{left:194.523300px;}
.xa{left:196.960500px;}
.x15{left:203.025150px;}
.x17{left:220.035150px;}
.xe{left:256.374000px;}
.xd{left:261.018000px;}
.xc{left:271.669500px;}
.x11{left:334.323000px;}
.x10{left:338.967000px;}
.x2{left:344.115150px;}
.xf{left:354.073500px;}
.x14{left:412.285500px;}
.x13{left:416.929500px;}
.x12{left:424.273500px;}
.x8{left:564.271650px;}
@media print{
.v4{vertical-align:-17.600000pt;}
.v2{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.840000pt;}
.v1{vertical-align:17.600000pt;}
.ls12{letter-spacing:-2.826667pt;}
.lsb{letter-spacing:-1.949333pt;}
.ls4{letter-spacing:-1.120000pt;}
.ls27{letter-spacing:-1.088000pt;}
.ls28{letter-spacing:-1.020800pt;}
.ls50{letter-spacing:-0.952000pt;}
.ls2c{letter-spacing:-0.867680pt;}
.ls1c{letter-spacing:-0.853333pt;}
.ls4f{letter-spacing:-0.816000pt;}
.ls2b{letter-spacing:-0.649600pt;}
.ls4b{letter-spacing:-0.634667pt;}
.ls52{letter-spacing:-0.589333pt;}
.lse{letter-spacing:-0.586667pt;}
.ls2e{letter-spacing:-0.552160pt;}
.ls1a{letter-spacing:-0.480000pt;}
.ls3{letter-spacing:-0.453333pt;}
.ls1e{letter-spacing:-0.433067pt;}
.ls1d{letter-spacing:-0.426667pt;}
.ls33{letter-spacing:-0.384000pt;}
.lsd{letter-spacing:-0.373333pt;}
.ls31{letter-spacing:-0.371200pt;}
.ls23{letter-spacing:-0.368107pt;}
.ls4c{letter-spacing:-0.362667pt;}
.ls37{letter-spacing:-0.336000pt;}
.ls9{letter-spacing:-0.320000pt;}
.ls51{letter-spacing:-0.317333pt;}
.ls39{letter-spacing:-0.315520pt;}
.ls35{letter-spacing:-0.288000pt;}
.ls1b{letter-spacing:-0.266667pt;}
.ls1f{letter-spacing:-0.247467pt;}
.ls49{letter-spacing:-0.226667pt;}
.ls13{letter-spacing:-0.213333pt;}
.ls24{letter-spacing:-0.210347pt;}
.ls15{letter-spacing:-0.144000pt;}
.ls40{letter-spacing:-0.131467pt;}
.lsa{letter-spacing:-0.106667pt;}
.ls32{letter-spacing:-0.096000pt;}
.ls11{letter-spacing:-0.053333pt;}
.ls17{letter-spacing:-0.048000pt;}
.ls48{letter-spacing:-0.045333pt;}
.ls3a{letter-spacing:-0.026293pt;}
.ls1{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.048000pt;}
.ls4a{letter-spacing:0.136000pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls16{letter-spacing:0.192000pt;}
.ls45{letter-spacing:0.226667pt;}
.ls2d{letter-spacing:0.236640pt;}
.ls26{letter-spacing:0.262933pt;}
.ls54{letter-spacing:0.272000pt;}
.ls29{letter-spacing:0.278400pt;}
.ls22{letter-spacing:0.309333pt;}
.ls30{letter-spacing:0.317333pt;}
.lsf{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.336000pt;}
.ls25{letter-spacing:0.394400pt;}
.ls2f{letter-spacing:0.408000pt;}
.ls44{letter-spacing:0.410667pt;}
.ls2{letter-spacing:0.426667pt;}
.ls21{letter-spacing:0.464000pt;}
.ls3f{letter-spacing:0.494933pt;}
.ls41{letter-spacing:0.499573pt;}
.ls3c{letter-spacing:0.533333pt;}
.ls4e{letter-spacing:0.544000pt;}
.ls42{letter-spacing:0.552160pt;}
.ls34{letter-spacing:0.576000pt;}
.ls3e{letter-spacing:0.587733pt;}
.ls4d{letter-spacing:0.589333pt;}
.ls7{letter-spacing:0.618667pt;}
.ls36{letter-spacing:0.624000pt;}
.ls46{letter-spacing:0.634667pt;}
.ls47{letter-spacing:0.680000pt;}
.ls20{letter-spacing:0.693333pt;}
.ls10{letter-spacing:0.746667pt;}
.ls5{letter-spacing:0.748800pt;}
.ls19{letter-spacing:0.893867pt;}
.ls3b{letter-spacing:0.893973pt;}
.ls53{letter-spacing:0.906667pt;}
.lsc{letter-spacing:1.005333pt;}
.ls8{letter-spacing:1.040000pt;}
.ls38{letter-spacing:1.051733pt;}
.ls3d{letter-spacing:1.066667pt;}
.ls6{letter-spacing:1.165867pt;}
.ls43{letter-spacing:1.296000pt;}
.ls0{letter-spacing:1.317867pt;}
.ws42{word-spacing:-12.960000pt;}
.ws85{word-spacing:-12.853333pt;}
.ws9c{word-spacing:-12.533333pt;}
.ws82{word-spacing:-12.213333pt;}
.wsb7{word-spacing:-11.904000pt;}
.wsb4{word-spacing:-11.856000pt;}
.wscc{word-spacing:-11.405333pt;}
.wse5{word-spacing:-11.333333pt;}
.wsb5{word-spacing:-11.184000pt;}
.wsb6{word-spacing:-10.992000pt;}
.wsa1{word-spacing:-10.970667pt;}
.wsb9{word-spacing:-10.944000pt;}
.wsb3{word-spacing:-10.896000pt;}
.wse6{word-spacing:-10.653333pt;}
.wse7{word-spacing:-10.426667pt;}
.ws43{word-spacing:-9.706667pt;}
.ws1d{word-spacing:-8.704000pt;}
.wsba{word-spacing:-8.321067pt;}
.wscd{word-spacing:-7.857067pt;}
.wsce{word-spacing:-7.764267pt;}
.ws84{word-spacing:-7.733333pt;}
.ws86{word-spacing:-7.578667pt;}
.ws9b{word-spacing:-7.547733pt;}
.wsbd{word-spacing:-7.072907pt;}
.ws83{word-spacing:-7.021867pt;}
.wsb2{word-spacing:-6.898133pt;}
.ws81{word-spacing:-6.836267pt;}
.wsd1{word-spacing:-6.731093pt;}
.wsd0{word-spacing:-6.678507pt;}
.ws9d{word-spacing:-6.619733pt;}
.ws89{word-spacing:-6.573333pt;}
.ws5d{word-spacing:-6.542400pt;}
.ws8a{word-spacing:-6.441867pt;}
.ws9f{word-spacing:-6.415573pt;}
.ws9a{word-spacing:-6.248533pt;}
.ws0{word-spacing:-6.178933pt;}
.wsbc{word-spacing:-6.152640pt;}
.wscf{word-spacing:-6.047467pt;}
.ws88{word-spacing:-5.968587pt;}
.wsbb{word-spacing:-5.863413pt;}
.ws87{word-spacing:-5.810827pt;}
.wsa0{word-spacing:-5.626773pt;}
.ws9e{word-spacing:-5.311253pt;}
.wsfc{word-spacing:-3.853333pt;}
.ws3{word-spacing:-3.146667pt;}
.ws29{word-spacing:-3.093333pt;}
.ws93{word-spacing:-3.040000pt;}
.ws2{word-spacing:-2.986667pt;}
.ws5f{word-spacing:-2.933333pt;}
.wsfb{word-spacing:-2.901333pt;}
.ws78{word-spacing:-2.880000pt;}
.ws64{word-spacing:-2.832000pt;}
.ws2f{word-spacing:-2.826667pt;}
.wse0{word-spacing:-2.784000pt;}
.ws95{word-spacing:-2.773333pt;}
.ws51{word-spacing:-2.720000pt;}
.ws105{word-spacing:-2.674667pt;}
.ws96{word-spacing:-2.666667pt;}
.wsfa{word-spacing:-2.629333pt;}
.ws4d{word-spacing:-2.613333pt;}
.wsc0{word-spacing:-2.560000pt;}
.ws7a{word-spacing:-2.448000pt;}
.ws68{word-spacing:-2.400000pt;}
.ws34{word-spacing:-2.346667pt;}
.ws8b{word-spacing:-2.293333pt;}
.wsdc{word-spacing:-2.240000pt;}
.wseb{word-spacing:-2.208000pt;}
.ws80{word-spacing:-2.026667pt;}
.ws22{word-spacing:-1.973333pt;}
.wse2{word-spacing:-1.968000pt;}
.ws6c{word-spacing:-1.920000pt;}
.wsad{word-spacing:-1.904000pt;}
.wsdd{word-spacing:-1.866667pt;}
.ws6f{word-spacing:-1.813333pt;}
.ws91{word-spacing:-1.706667pt;}
.wsf2{word-spacing:-1.677333pt;}
.wsd4{word-spacing:-1.653333pt;}
.ws35{word-spacing:-1.546667pt;}
.ws44{word-spacing:-1.493333pt;}
.ws5b{word-spacing:-1.440000pt;}
.wsd6{word-spacing:-1.405333pt;}
.ws45{word-spacing:-1.386667pt;}
.wsff{word-spacing:-1.360000pt;}
.ws63{word-spacing:-1.344000pt;}
.ws48{word-spacing:-1.333333pt;}
.wse4{word-spacing:-1.296000pt;}
.ws21{word-spacing:-1.280000pt;}
.wsfe{word-spacing:-1.178667pt;}
.wsdb{word-spacing:-1.173333pt;}
.wsa6{word-spacing:-1.120000pt;}
.ws79{word-spacing:-1.104000pt;}
.ws71{word-spacing:-1.066667pt;}
.ws1e{word-spacing:-1.040000pt;}
.ws30{word-spacing:-1.013333pt;}
.ws4{word-spacing:-0.960000pt;}
.ws33{word-spacing:-0.906667pt;}
.wsa5{word-spacing:-0.853333pt;}
.wsaa{word-spacing:-0.800000pt;}
.ws3a{word-spacing:-0.746667pt;}
.wsc5{word-spacing:-0.725333pt;}
.wsf7{word-spacing:-0.680000pt;}
.wsfd{word-spacing:-0.634667pt;}
.wse9{word-spacing:-0.624000pt;}
.ws17{word-spacing:-0.589333pt;}
.ws49{word-spacing:-0.586667pt;}
.wsdf{word-spacing:-0.576000pt;}
.wsae{word-spacing:-0.544000pt;}
.ws73{word-spacing:-0.480000pt;}
.ws47{word-spacing:-0.426667pt;}
.wsec{word-spacing:-0.410667pt;}
.ws107{word-spacing:-0.408000pt;}
.ws2b{word-spacing:-0.373333pt;}
.ws38{word-spacing:-0.320000pt;}
.wsb0{word-spacing:-0.317333pt;}
.wsf8{word-spacing:-0.272000pt;}
.ws56{word-spacing:-0.213333pt;}
.ws20{word-spacing:-0.160000pt;}
.wsf9{word-spacing:-0.136000pt;}
.wsd3{word-spacing:-0.106667pt;}
.wsac{word-spacing:-0.090667pt;}
.ws70{word-spacing:-0.053333pt;}
.ws6b{word-spacing:-0.048000pt;}
.ws12{word-spacing:-0.045333pt;}
.ws1{word-spacing:0.000000pt;}
.wsd{word-spacing:0.045333pt;}
.wse1{word-spacing:0.048000pt;}
.wsaf{word-spacing:0.090667pt;}
.wsbf{word-spacing:0.096000pt;}
.ws4a{word-spacing:0.106667pt;}
.wsde{word-spacing:0.144000pt;}
.ws6d{word-spacing:0.160000pt;}
.ws90{word-spacing:0.213333pt;}
.ws26{word-spacing:0.266667pt;}
.ws102{word-spacing:0.317333pt;}
.ws59{word-spacing:0.320000pt;}
.ws69{word-spacing:0.336000pt;}
.ws4c{word-spacing:0.373333pt;}
.ws66{word-spacing:0.384000pt;}
.wsf3{word-spacing:0.408000pt;}
.ws27{word-spacing:0.426667pt;}
.ws75{word-spacing:0.480000pt;}
.wsd5{word-spacing:0.533333pt;}
.ws65{word-spacing:0.576000pt;}
.ws52{word-spacing:0.586667pt;}
.ws67{word-spacing:0.624000pt;}
.ws77{word-spacing:0.640000pt;}
.wsd8{word-spacing:0.680000pt;}
.ws7e{word-spacing:0.693333pt;}
.wsab{word-spacing:0.725333pt;}
.ws74{word-spacing:0.746667pt;}
.ws94{word-spacing:0.800000pt;}
.wsda{word-spacing:0.853333pt;}
.wsa4{word-spacing:0.906667pt;}
.ws7c{word-spacing:0.912000pt;}
.ws104{word-spacing:0.952000pt;}
.ws2d{word-spacing:0.960000pt;}
.wsbe{word-spacing:1.013333pt;}
.ws24{word-spacing:1.066667pt;}
.ws99{word-spacing:1.088000pt;}
.ws2c{word-spacing:1.120000pt;}
.ws3f{word-spacing:1.133333pt;}
.ws39{word-spacing:1.173333pt;}
.wsf1{word-spacing:1.178667pt;}
.wsa7{word-spacing:1.226667pt;}
.wsea{word-spacing:1.248000pt;}
.ws8c{word-spacing:1.280000pt;}
.ws4f{word-spacing:1.333333pt;}
.ws7f{word-spacing:1.386667pt;}
.ws57{word-spacing:1.440000pt;}
.wse{word-spacing:1.450667pt;}
.ws61{word-spacing:1.493333pt;}
.ws103{word-spacing:1.541333pt;}
.ws23{word-spacing:1.546667pt;}
.ws3b{word-spacing:1.600000pt;}
.wsa9{word-spacing:1.706667pt;}
.ws58{word-spacing:1.760000pt;}
.ws100{word-spacing:1.768000pt;}
.ws5e{word-spacing:1.813333pt;}
.ws98{word-spacing:1.858667pt;}
.ws25{word-spacing:1.866667pt;}
.ws92{word-spacing:1.920000pt;}
.ws36{word-spacing:1.973333pt;}
.ws5c{word-spacing:2.026667pt;}
.ws76{word-spacing:2.080000pt;}
.ws41{word-spacing:2.085333pt;}
.ws4b{word-spacing:2.133333pt;}
.ws106{word-spacing:2.176000pt;}
.ws6{word-spacing:2.186667pt;}
.wsc2{word-spacing:2.293333pt;}
.wsf{word-spacing:2.312000pt;}
.wsa3{word-spacing:2.346667pt;}
.ws7b{word-spacing:2.400000pt;}
.wsf0{word-spacing:2.402667pt;}
.ws108{word-spacing:2.493333pt;}
.wsc4{word-spacing:2.506667pt;}
.ws10{word-spacing:2.538667pt;}
.ws3d{word-spacing:2.613333pt;}
.ws46{word-spacing:2.666667pt;}
.ws2a{word-spacing:2.720000pt;}
.wsef{word-spacing:2.810667pt;}
.ws28{word-spacing:2.826667pt;}
.ws109{word-spacing:2.856000pt;}
.ws31{word-spacing:2.880000pt;}
.wsa{word-spacing:2.901333pt;}
.wsc7{word-spacing:3.037333pt;}
.ws37{word-spacing:3.040000pt;}
.ws2e{word-spacing:3.093333pt;}
.wsb{word-spacing:3.128000pt;}
.ws7{word-spacing:3.146667pt;}
.ws72{word-spacing:3.200000pt;}
.ws11{word-spacing:3.218667pt;}
.ws32{word-spacing:3.253333pt;}
.ws14{word-spacing:3.264000pt;}
.ws50{word-spacing:3.306667pt;}
.wsf6{word-spacing:3.309333pt;}
.wsed{word-spacing:3.354667pt;}
.ws6e{word-spacing:3.413333pt;}
.wsc6{word-spacing:3.445333pt;}
.wsf5{word-spacing:3.536000pt;}
.ws60{word-spacing:3.573333pt;}
.wsc1{word-spacing:3.680000pt;}
.ws13{word-spacing:3.762667pt;}
.wse8{word-spacing:3.936000pt;}
.wsca{word-spacing:3.944000pt;}
.ws8d{word-spacing:4.000000pt;}
.ws3c{word-spacing:4.053333pt;}
.ws16{word-spacing:4.125333pt;}
.wse3{word-spacing:4.128000pt;}
.wsd7{word-spacing:4.261333pt;}
.wsa2{word-spacing:4.266667pt;}
.ws8{word-spacing:4.320000pt;}
.wsd2{word-spacing:4.373333pt;}
.wscb{word-spacing:4.397333pt;}
.ws53{word-spacing:4.480000pt;}
.wsa8{word-spacing:4.586667pt;}
.ws1b{word-spacing:4.741333pt;}
.ws1f{word-spacing:4.746667pt;}
.wsc9{word-spacing:4.850667pt;}
.ws4e{word-spacing:4.906667pt;}
.ws15{word-spacing:5.122667pt;}
.wsf4{word-spacing:5.168000pt;}
.ws5a{word-spacing:5.280000pt;}
.wsee{word-spacing:5.349333pt;}
.ws7d{word-spacing:5.386667pt;}
.ws55{word-spacing:5.440000pt;}
.wsc{word-spacing:5.530667pt;}
.wsc3{word-spacing:5.546667pt;}
.ws18{word-spacing:5.600000pt;}
.ws62{word-spacing:5.616000pt;}
.ws8f{word-spacing:5.653333pt;}
.ws6a{word-spacing:5.664000pt;}
.ws40{word-spacing:5.712000pt;}
.ws8e{word-spacing:5.813333pt;}
.ws101{word-spacing:5.938667pt;}
.wsb1{word-spacing:5.984000pt;}
.ws54{word-spacing:6.240000pt;}
.ws5{word-spacing:6.293333pt;}
.ws1a{word-spacing:7.168000pt;}
.ws9{word-spacing:8.930667pt;}
.ws1c{word-spacing:10.266667pt;}
.wsc8{word-spacing:11.741333pt;}
.ws3e{word-spacing:12.013333pt;}
.ws19{word-spacing:14.000000pt;}
.ws97{word-spacing:16.320000pt;}
.wsb8{word-spacing:87.816000pt;}
.wsd9{word-spacing:195.076800pt;}
._19{margin-left:-7.470400pt;}
._9{margin-left:-5.189333pt;}
._6{margin-left:-4.212533pt;}
._a{margin-left:-3.315733pt;}
._2{margin-left:-2.224800pt;}
._3{margin-left:-0.957600pt;}
._0{width:1.620000pt;}
._1{width:2.750400pt;}
._d{width:3.703467pt;}
._8{width:4.763733pt;}
._7{width:7.145600pt;}
._18{width:8.592000pt;}
._10{width:11.754347pt;}
._15{width:12.720000pt;}
._16{width:14.160000pt;}
._17{width:15.552000pt;}
._11{width:17.746080pt;}
._f{width:20.616533pt;}
._13{width:21.623573pt;}
._e{width:22.626560pt;}
._12{width:23.701760pt;}
._b{width:24.615680pt;}
._4{width:27.698347pt;}
._5{width:34.190080pt;}
._c{width:36.629013pt;}
._14{width:83.817600pt;}
.fs5{font-size:26.293333pt;}
.fs9{font-size:27.840000pt;}
.fsb{font-size:28.149333pt;}
.fs1{font-size:30.933333pt;}
.fs7{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs6{font-size:45.333333pt;}
.fs2{font-size:48.000000pt;}
.fsa{font-size:48.533333pt;}
.fs4{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs0{font-size:72.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:70.843733pt;}
.y26{bottom:98.739733pt;}
.yc7{bottom:105.802933pt;}
.ye5{bottom:105.814933pt;}
.ybd{bottom:105.818933pt;}
.y177{bottom:109.346800pt;}
.y53{bottom:109.566933pt;}
.y25{bottom:109.939733pt;}
.y12e{bottom:113.512933pt;}
.yc6{bottom:118.473600pt;}
.ye4{bottom:118.485600pt;}
.ybc{bottom:118.489600pt;}
.y24{bottom:121.139733pt;}
.y10b{bottom:122.070000pt;}
.y176{bottom:122.810800pt;}
.y52{bottom:124.123467pt;}
.y14f{bottom:130.528933pt;}
.yc5{bottom:131.144267pt;}
.ye3{bottom:131.156267pt;}
.y23{bottom:132.339733pt;}
.y12d{bottom:133.408933pt;}
.ybb{bottom:134.900267pt;}
.y51{bottom:134.924000pt;}
.y175{bottom:136.274800pt;}
.y10a{bottom:142.230000pt;}
.y22{bottom:143.539733pt;}
.yc4{bottom:143.814933pt;}
.yf8{bottom:145.708800pt;}
.ye2{bottom:147.566933pt;}
.y50{bottom:147.594667pt;}
.yba{bottom:149.456800pt;}
.y174{bottom:149.738800pt;}
.y14e{bottom:150.688933pt;}
.y92{bottom:152.038267pt;}
.y12c{bottom:153.304933pt;}
.y21{bottom:154.739733pt;}
.yc3{bottom:156.485600pt;}
.ye1{bottom:158.375467pt;}
.yf7{bottom:158.379467pt;}
.y4f{bottom:160.265333pt;}
.y7b{bottom:160.371067pt;}
.y109{bottom:162.390000pt;}
.y173{bottom:163.202800pt;}
.yb9{bottom:164.013333pt;}
.y91{bottom:168.038267pt;}
.yc2{bottom:169.156267pt;}
.y14d{bottom:170.848933pt;}
.ye0{bottom:171.046133pt;}
.y20{bottom:171.605067pt;}
.y4e{bottom:172.936000pt;}
.y12b{bottom:173.200933pt;}
.yf6{bottom:174.790133pt;}
.y7a{bottom:176.371067pt;}
.y172{bottom:176.666800pt;}
.yb8{bottom:178.569867pt;}
.yae{bottom:179.240800pt;}
.y108{bottom:182.550000pt;}
.y90{bottom:184.038267pt;}
.yc1{bottom:185.566933pt;}
.ydf{bottom:187.456800pt;}
.y1f{bottom:188.470400pt;}
.y4d{bottom:189.346667pt;}
.y171{bottom:190.130800pt;}
.y14c{bottom:191.008933pt;}
.y79{bottom:192.371067pt;}
.y12a{bottom:193.096933pt;}
.yad{bottom:195.240800pt;}
.yc0{bottom:196.379467pt;}
.yde{bottom:198.265333pt;}
.y8f{bottom:200.038267pt;}
.y107{bottom:202.710000pt;}
.y170{bottom:203.594800pt;}
.y78{bottom:208.371067pt;}
.y1e{bottom:210.331600pt;}
.ydd{bottom:210.936000pt;}
.y14b{bottom:211.168933pt;}
.yac{bottom:211.240800pt;}
.ybf{bottom:212.790133pt;}
.y129{bottom:212.992933pt;}
.y8e{bottom:216.038267pt;}
.y16f{bottom:217.058800pt;}
.yb7{bottom:219.242133pt;}
.y106{bottom:222.870000pt;}
.y1d{bottom:223.002267pt;}
.y77{bottom:224.371067pt;}
.yab{bottom:227.240800pt;}
.ybe{bottom:227.346667pt;}
.y16e{bottom:230.522800pt;}
.y14a{bottom:231.328933pt;}
.y8d{bottom:232.038267pt;}
.y128{bottom:232.888933pt;}
.y4c{bottom:235.239600pt;}
.yb6{bottom:235.242133pt;}
.y1c{bottom:235.672933pt;}
.yf5{bottom:239.087067pt;}
.y76{bottom:240.371067pt;}
.ydc{bottom:241.903200pt;}
.y105{bottom:243.030000pt;}
.yaa{bottom:243.240800pt;}
.y16d{bottom:243.986800pt;}
.y8c{bottom:248.038267pt;}
.y1b{bottom:248.343600pt;}
.y4b{bottom:251.239600pt;}
.yb5{bottom:251.242133pt;}
.y149{bottom:251.488933pt;}
.y127{bottom:252.784933pt;}
.yf4{bottom:255.087067pt;}
.y75{bottom:256.371067pt;}
.y16c{bottom:257.450800pt;}
.ya9{bottom:259.240800pt;}
.y1a{bottom:261.014267pt;}
.y104{bottom:263.190000pt;}
.y8b{bottom:264.038267pt;}
.y4a{bottom:267.239600pt;}
.yb4{bottom:267.242133pt;}
.y16b{bottom:270.914800pt;}
.yf3{bottom:271.087067pt;}
.y148{bottom:271.648933pt;}
.y74{bottom:272.371067pt;}
.y126{bottom:272.680933pt;}
.y19{bottom:273.684933pt;}
.ya8{bottom:275.240800pt;}
.y8a{bottom:280.038267pt;}
.y49{bottom:283.239600pt;}
.yb3{bottom:283.242133pt;}
.y103{bottom:283.350000pt;}
.y16a{bottom:284.378800pt;}
.y18{bottom:286.355600pt;}
.yf2{bottom:287.087067pt;}
.y73{bottom:288.371067pt;}
.y147{bottom:291.808933pt;}
.y125{bottom:292.576933pt;}
.ydb{bottom:293.158933pt;}
.y89{bottom:296.038267pt;}
.y169{bottom:297.842800pt;}
.y17{bottom:299.026267pt;}
.y48{bottom:299.239600pt;}
.ya7{bottom:299.242133pt;}
.yf1{bottom:303.087067pt;}
.y102{bottom:303.510000pt;}
.y72{bottom:304.371067pt;}
.yda{bottom:309.158933pt;}
.y168{bottom:311.306800pt;}
.y16{bottom:311.696933pt;}
.y146{bottom:311.968933pt;}
.y88{bottom:312.038267pt;}
.y124{bottom:312.472933pt;}
.ya6{bottom:313.642133pt;}
.y47{bottom:315.239600pt;}
.yb2{bottom:315.242133pt;}
.yf0{bottom:319.087067pt;}
.y71{bottom:320.371067pt;}
.y101{bottom:323.670000pt;}
.y15{bottom:324.367600pt;}
.y167{bottom:324.770800pt;}
.yd9{bottom:325.158933pt;}
.y87{bottom:328.038267pt;}
.ya5{bottom:328.042133pt;}
.y46{bottom:331.239600pt;}
.yb1{bottom:331.242133pt;}
.y145{bottom:332.128933pt;}
.y123{bottom:332.368933pt;}
.yef{bottom:335.087067pt;}
.y70{bottom:336.371067pt;}
.y14{bottom:337.038267pt;}
.y166{bottom:338.234800pt;}
.yd8{bottom:341.158933pt;}
.ya4{bottom:342.442133pt;}
.y100{bottom:343.830000pt;}
.y86{bottom:344.038267pt;}
.y45{bottom:347.239600pt;}
.yb0{bottom:347.242133pt;}
.y13{bottom:349.708933pt;}
.yee{bottom:351.087067pt;}
.y165{bottom:351.698800pt;}
.y122{bottom:352.264933pt;}
.y144{bottom:352.288933pt;}
.y6f{bottom:352.371067pt;}
.ya3{bottom:356.842133pt;}
.yd7{bottom:357.158933pt;}
.y85{bottom:360.038267pt;}
.y12{bottom:362.379600pt;}
.y44{bottom:363.239600pt;}
.yff{bottom:363.990000pt;}
.y164{bottom:365.162800pt;}
.yed{bottom:367.087067pt;}
.y6e{bottom:368.371067pt;}
.y121{bottom:372.160933pt;}
.y143{bottom:372.448933pt;}
.yd6{bottom:373.158933pt;}
.yaf{bottom:373.907867pt;}
.y84{bottom:376.038267pt;}
.y163{bottom:378.626800pt;}
.y11{bottom:378.790267pt;}
.y43{bottom:379.239600pt;}
.ya2{bottom:379.242133pt;}
.yec{bottom:383.087067pt;}
.yfe{bottom:384.150000pt;}
.y6d{bottom:384.371067pt;}
.y10{bottom:389.602800pt;}
.y83{bottom:392.038267pt;}
.y120{bottom:392.056933pt;}
.y162{bottom:392.090800pt;}
.y142{bottom:392.608933pt;}
.y42{bottom:395.239600pt;}
.ya1{bottom:395.242133pt;}
.yeb{bottom:399.087067pt;}
.yd5{bottom:399.824800pt;}
.y6c{bottom:400.371067pt;}
.yfd{bottom:404.310000pt;}
.yf{bottom:406.013467pt;}
.y41{bottom:411.239600pt;}
.ya0{bottom:411.242133pt;}
.y11f{bottom:411.952933pt;}
.y141{bottom:412.768933pt;}
.yea{bottom:415.087067pt;}
.y82{bottom:416.039600pt;}
.y161{bottom:416.223333pt;}
.y6b{bottom:416.371067pt;}
.yfc{bottom:424.470000pt;}
.y140{bottom:427.168933pt;}
.y40{bottom:427.239600pt;}
.y9f{bottom:427.242133pt;}
.y81{bottom:430.439600pt;}
.ye9{bottom:431.087067pt;}
.y11e{bottom:431.848933pt;}
.y6a{bottom:432.371067pt;}
.yd4{bottom:437.156400pt;}
.y3f{bottom:443.239600pt;}
.y9e{bottom:443.242133pt;}
.yfb{bottom:444.630000pt;}
.y80{bottom:444.839600pt;}
.ye{bottom:445.176400pt;}
.y192{bottom:446.645600pt;}
.ye8{bottom:447.087067pt;}
.y13f{bottom:447.328933pt;}
.y69{bottom:448.371067pt;}
.y11d{bottom:451.744933pt;}
.yd3{bottom:453.156400pt;}
.y3e{bottom:459.239600pt;}
.y9d{bottom:459.242133pt;}
.y191{bottom:460.109600pt;}
.yd{bottom:461.176400pt;}
.ye7{bottom:463.087067pt;}
.y68{bottom:464.371067pt;}
.yfa{bottom:465.126000pt;}
.y13e{bottom:467.488933pt;}
.yd2{bottom:469.156400pt;}
.y160{bottom:470.200933pt;}
.y11c{bottom:471.640933pt;}
.y190{bottom:473.573600pt;}
.y7f{bottom:473.639600pt;}
.y3d{bottom:475.239600pt;}
.y9c{bottom:475.242133pt;}
.yc{bottom:477.176400pt;}
.y67{bottom:480.371067pt;}
.y15f{bottom:484.600933pt;}
.yd1{bottom:485.156400pt;}
.y18f{bottom:487.037600pt;}
.y13d{bottom:487.648933pt;}
.y7e{bottom:488.039600pt;}
.y3c{bottom:491.239600pt;}
.y9b{bottom:491.242133pt;}
.y11b{bottom:491.536933pt;}
.yf9{bottom:492.840800pt;}
.yb{bottom:493.176400pt;}
.ye6{bottom:493.887600pt;}
.y66{bottom:496.371067pt;}
.y18e{bottom:500.501600pt;}
.yd0{bottom:501.156400pt;}
.y7d{bottom:502.439600pt;}
.y15e{bottom:504.760933pt;}
.y3b{bottom:507.239600pt;}
.y9a{bottom:507.242133pt;}
.y13c{bottom:507.808933pt;}
.ya{bottom:509.176400pt;}
.y11a{bottom:511.432933pt;}
.y65{bottom:512.371067pt;}
.y18d{bottom:513.965600pt;}
.y7c{bottom:516.839600pt;}
.ycf{bottom:517.156400pt;}
.y15d{bottom:519.160933pt;}
.y3a{bottom:523.239600pt;}
.y99{bottom:523.242133pt;}
.y9{bottom:525.176400pt;}
.y18c{bottom:527.429600pt;}
.y13b{bottom:527.968933pt;}
.y64{bottom:528.371067pt;}
.y119{bottom:531.328933pt;}
.yce{bottom:533.156400pt;}
.y39{bottom:539.239600pt;}
.y98{bottom:539.242133pt;}
.y15c{bottom:539.320933pt;}
.y18b{bottom:540.893600pt;}
.y8{bottom:541.176400pt;}
.y63{bottom:544.371067pt;}
.y13a{bottom:548.128933pt;}
.ycd{bottom:549.156400pt;}
.y118{bottom:551.224933pt;}
.y18a{bottom:554.357600pt;}
.y38{bottom:555.239600pt;}
.y97{bottom:555.242133pt;}
.y7{bottom:557.176400pt;}
.y15b{bottom:559.480933pt;}
.y62{bottom:560.371067pt;}
.ycc{bottom:565.156400pt;}
.y189{bottom:567.821600pt;}
.y139{bottom:568.288933pt;}
.y117{bottom:571.120933pt;}
.y37{bottom:571.239600pt;}
.y96{bottom:571.242133pt;}
.y6{bottom:573.176400pt;}
.y61{bottom:576.371067pt;}
.y15a{bottom:579.640933pt;}
.y188{bottom:581.285600pt;}
.y36{bottom:587.239600pt;}
.y95{bottom:587.242133pt;}
.y138{bottom:588.448933pt;}
.y116{bottom:591.016933pt;}
.y60{bottom:592.371067pt;}
.y187{bottom:594.749600pt;}
.y159{bottom:599.800933pt;}
.y5{bottom:599.842267pt;}
.y35{bottom:603.239600pt;}
.y94{bottom:603.242133pt;}
.y186{bottom:608.213600pt;}
.y5f{bottom:608.371067pt;}
.y137{bottom:608.608933pt;}
.y115{bottom:610.912933pt;}
.y34{bottom:619.239600pt;}
.y158{bottom:619.960933pt;}
.y185{bottom:621.677600pt;}
.y5e{bottom:624.371067pt;}
.y136{bottom:628.768933pt;}
.y93{bottom:629.908000pt;}
.y114{bottom:630.808933pt;}
.y157{bottom:634.360933pt;}
.y184{bottom:635.141600pt;}
.y33{bottom:635.239600pt;}
.y5d{bottom:640.371067pt;}
.y183{bottom:648.605600pt;}
.y135{bottom:648.928933pt;}
.y113{bottom:650.704933pt;}
.y32{bottom:651.239600pt;}
.y156{bottom:654.520933pt;}
.y5c{bottom:656.371067pt;}
.y182{bottom:662.069600pt;}
.y31{bottom:667.239600pt;}
.y134{bottom:669.088933pt;}
.y112{bottom:670.600933pt;}
.y5b{bottom:672.371067pt;}
.y155{bottom:674.680933pt;}
.y181{bottom:675.533600pt;}
.yc9{bottom:678.459333pt;}
.y30{bottom:683.239600pt;}
.y5a{bottom:688.371067pt;}
.y180{bottom:688.997600pt;}
.y154{bottom:689.080933pt;}
.y133{bottom:689.248933pt;}
.y111{bottom:690.496933pt;}
.yca{bottom:691.791333pt;}
.y2f{bottom:699.239600pt;}
.y17f{bottom:702.461600pt;}
.y59{bottom:704.371067pt;}
.ycb{bottom:705.123333pt;}
.y153{bottom:709.240933pt;}
.y132{bottom:709.408933pt;}
.y110{bottom:710.392933pt;}
.y2e{bottom:715.239600pt;}
.y17e{bottom:715.925600pt;}
.y58{bottom:720.371067pt;}
.y17d{bottom:729.389600pt;}
.y152{bottom:729.400933pt;}
.y131{bottom:729.568933pt;}
.y10f{bottom:730.288933pt;}
.y2d{bottom:731.239600pt;}
.yc8{bottom:732.840800pt;}
.y57{bottom:736.371067pt;}
.y17c{bottom:742.853600pt;}
.y4{bottom:743.840533pt;}
.y2c{bottom:747.239600pt;}
.y151{bottom:749.560933pt;}
.y130{bottom:749.728933pt;}
.y10e{bottom:750.184933pt;}
.y56{bottom:752.371067pt;}
.y17b{bottom:756.317600pt;}
.y2b{bottom:763.239600pt;}
.y2{bottom:767.405600pt;}
.y55{bottom:768.371067pt;}
.y150{bottom:769.720933pt;}
.y17a{bottom:769.781600pt;}
.y12f{bottom:769.888933pt;}
.y10d{bottom:770.080933pt;}
.y3{bottom:771.799600pt;}
.y2a{bottom:779.239600pt;}
.y179{bottom:783.245600pt;}
.y10c{bottom:790.216933pt;}
.y1{bottom:791.399600pt;}
.y54{bottom:795.036800pt;}
.y29{bottom:795.239600pt;}
.y178{bottom:796.709600pt;}
.y28{bottom:830.609600pt;}
.h3{height:21.653333pt;}
.h7{height:23.120000pt;}
.hc{height:23.120533pt;}
.h9{height:27.216146pt;}
.hb{height:28.000000pt;}
.he{height:32.821333pt;}
.ha{height:37.333333pt;}
.h8{height:38.080000pt;}
.h4{height:40.320000pt;}
.hd{height:40.768000pt;}
.h5{height:41.066667pt;}
.h6{height:44.800000pt;}
.h2{height:50.400000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w1{width:604.666667pt;}
.w0{width:604.724000pt;}
.x0{left:0.000000pt;}
.x5{left:83.149600pt;}
.x9{left:89.264000pt;}
.x7{left:98.270000pt;}
.x6{left:102.047200pt;}
.x1{left:105.826800pt;}
.x4{left:120.947200pt;}
.x3{left:124.724400pt;}
.xb{left:157.340000pt;}
.x16{left:172.909600pt;}
.xa{left:175.076000pt;}
.x15{left:180.466800pt;}
.x17{left:195.586800pt;}
.xe{left:227.888000pt;}
.xd{left:232.016000pt;}
.xc{left:241.484000pt;}
.x11{left:297.176000pt;}
.x10{left:301.304000pt;}
.x2{left:305.880133pt;}
.xf{left:314.732000pt;}
.x14{left:366.476000pt;}
.x13{left:370.604000pt;}
.x12{left:377.132000pt;}
.x8{left:501.574800pt;}
}




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