
    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_b87b8fb18b0feea7fc092381.woff')format("woff");}.ff1{font-family:ff1;line-height:0.935000;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_f30b6bfce74acb9a400a20df.woff')format("woff");}.ff2{font-family:ff2;line-height:0.935000;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_ff8f800c44bce003ad2ff79f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.000000;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_d66a01311c153565c5098861.woff')format("woff");}.ff4{font-family:ff4;line-height:0.973000;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_584743a531f07a68913d466c.woff')format("woff");}.ff5{font-family:ff5;line-height:1.098000;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_357af2a2f471da081030fead.woff')format("woff");}.ff6{font-family:ff6;line-height:0.980000;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_4ce9566708f11ca963084613.woff')format("woff");}.ff7{font-family:ff7;line-height:1.000000;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_b87b8fb18b0feea7fc092381.woff')format("woff");}.ff8{font-family:ff8;line-height:0.935000;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_4b527dfb28bf7d912cc4f704.woff')format("woff");}.ff9{font-family:ff9;line-height:0.709000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ff8f800c44bce003ad2ff79f.woff')format("woff");}.ffa{font-family:ffa;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_b87b8fb18b0feea7fc092381.woff')format("woff");}.ffb{font-family:ffb;line-height:0.935000;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:ffc;src:url('chunks/assets/font_10f171b89351966ee077ba9e.woff')format("woff");}.ffc{font-family:ffc;line-height:0.984401;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;}
.m3{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);}
.m1{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);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:39.055800px;}
.ls12{letter-spacing:-13.392000px;}
.ls5{letter-spacing:-5.664000px;}
.ls11{letter-spacing:-2.736000px;}
.ls14{letter-spacing:-0.810000px;}
.ls4{letter-spacing:-0.480000px;}
.ls8{letter-spacing:-0.360000px;}
.ls16{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.048000px;}
.ls3{letter-spacing:0.000000px;}
.lsb{letter-spacing:0.324000px;}
.ls9{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.378000px;}
.lsd{letter-spacing:0.450000px;}
.lsc{letter-spacing:0.480000px;}
.ls7{letter-spacing:0.540000px;}
.ls6{letter-spacing:0.615000px;}
.ls1{letter-spacing:0.840000px;}
.ls0{letter-spacing:0.960000px;}
.ls13{letter-spacing:1.080000px;}
.lsa{letter-spacing:4.939200px;}
.ls2{letter-spacing:7.168200px;}
.ls10{letter-spacing:510.025800px;}
.lsf{letter-spacing:539.785200px;}
.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;}
}
.wsdb{word-spacing:-12.204000px;}
.wscf{word-spacing:-11.988000px;}
.wsdc{word-spacing:-11.826000px;}
.wscc{word-spacing:-11.664000px;}
.ws2{word-spacing:-10.176000px;}
.ws0{word-spacing:-9.888000px;}
.ws1{word-spacing:-9.696000px;}
.ws24{word-spacing:-9.552000px;}
.wseb{word-spacing:-7.506000px;}
.wsea{word-spacing:-7.290000px;}
.wsb5{word-spacing:-6.816000px;}
.ws2e{word-spacing:-5.940000px;}
.wse6{word-spacing:-5.400000px;}
.wse5{word-spacing:-5.238000px;}
.wsc6{word-spacing:-4.320000px;}
.wsae{word-spacing:-3.456000px;}
.wse1{word-spacing:-3.078000px;}
.ws5f{word-spacing:-3.024000px;}
.ws29{word-spacing:-2.862000px;}
.ws11{word-spacing:-2.736000px;}
.wsf1{word-spacing:-2.700000px;}
.ws76{word-spacing:-2.646000px;}
.ws12{word-spacing:-2.640000px;}
.wsc8{word-spacing:-2.376000px;}
.wsa8{word-spacing:-2.322000px;}
.wsec{word-spacing:-2.268000px;}
.wsed{word-spacing:-2.214000px;}
.wscb{word-spacing:-2.106000px;}
.ws5c{word-spacing:-2.052000px;}
.ws7a{word-spacing:-1.998000px;}
.ws72{word-spacing:-1.944000px;}
.wsa7{word-spacing:-1.890000px;}
.ws5b{word-spacing:-1.836000px;}
.wse9{word-spacing:-1.782000px;}
.ws38{word-spacing:-1.728000px;}
.ws67{word-spacing:-1.674000px;}
.wsca{word-spacing:-1.620000px;}
.ws6a{word-spacing:-1.566000px;}
.wsad{word-spacing:-1.512000px;}
.ws83{word-spacing:-1.404000px;}
.wsa9{word-spacing:-1.350000px;}
.ws82{word-spacing:-1.296000px;}
.wsac{word-spacing:-1.242000px;}
.ws25{word-spacing:-1.188000px;}
.ws2a{word-spacing:-1.134000px;}
.ws9c{word-spacing:-1.080000px;}
.wsc9{word-spacing:-1.026000px;}
.ws3b{word-spacing:-1.008000px;}
.wsc5{word-spacing:-0.972000px;}
.ws57{word-spacing:-0.918000px;}
.wsd1{word-spacing:-0.864000px;}
.ws4{word-spacing:-0.840000px;}
.wsce{word-spacing:-0.810000px;}
.ws58{word-spacing:-0.756000px;}
.ws5{word-spacing:-0.720000px;}
.ws5a{word-spacing:-0.702000px;}
.ws39{word-spacing:-0.672000px;}
.ws69{word-spacing:-0.648000px;}
.ws62{word-spacing:-0.594000px;}
.ws7b{word-spacing:-0.540000px;}
.ws68{word-spacing:-0.486000px;}
.wsb8{word-spacing:-0.432000px;}
.ws7d{word-spacing:-0.378000px;}
.ws4b{word-spacing:-0.360000px;}
.wsaf{word-spacing:-0.324000px;}
.wsb0{word-spacing:-0.270000px;}
.ws32{word-spacing:-0.216000px;}
.wsc1{word-spacing:-0.162000px;}
.ws49{word-spacing:-0.144000px;}
.ws9b{word-spacing:-0.108000px;}
.ws22{word-spacing:-0.054000px;}
.ws3{word-spacing:0.000000px;}
.wsa2{word-spacing:0.048000px;}
.wsa6{word-spacing:0.054000px;}
.ws96{word-spacing:0.108000px;}
.wscd{word-spacing:0.162000px;}
.ws6b{word-spacing:0.216000px;}
.wsda{word-spacing:0.270000px;}
.ws10{word-spacing:0.288000px;}
.wsb9{word-spacing:0.324000px;}
.ws85{word-spacing:0.378000px;}
.ws27{word-spacing:0.432000px;}
.ws6{word-spacing:0.480000px;}
.wsaa{word-spacing:0.486000px;}
.ws7{word-spacing:0.528000px;}
.wsbe{word-spacing:0.540000px;}
.wsbc{word-spacing:0.594000px;}
.ws6c{word-spacing:0.702000px;}
.ws8c{word-spacing:0.810000px;}
.wsc4{word-spacing:0.864000px;}
.ws9a{word-spacing:0.918000px;}
.wsa4{word-spacing:0.972000px;}
.wsb7{word-spacing:1.080000px;}
.ws9f{word-spacing:1.188000px;}
.wsbb{word-spacing:1.242000px;}
.ws4c{word-spacing:1.296000px;}
.ws8b{word-spacing:1.350000px;}
.ws36{word-spacing:1.392000px;}
.wsd7{word-spacing:1.404000px;}
.wsd8{word-spacing:1.458000px;}
.ws64{word-spacing:1.512000px;}
.ws88{word-spacing:1.566000px;}
.wsba{word-spacing:1.620000px;}
.ws74{word-spacing:1.674000px;}
.ws7c{word-spacing:1.728000px;}
.ws56{word-spacing:1.782000px;}
.ws77{word-spacing:1.836000px;}
.ws55{word-spacing:1.890000px;}
.ws65{word-spacing:1.944000px;}
.wsc0{word-spacing:1.998000px;}
.wsd{word-spacing:2.016000px;}
.ws31{word-spacing:2.052000px;}
.ws8f{word-spacing:2.106000px;}
.ws75{word-spacing:2.160000px;}
.ws71{word-spacing:2.214000px;}
.ws3c{word-spacing:2.256000px;}
.ws4f{word-spacing:2.268000px;}
.ws9{word-spacing:2.304000px;}
.ws95{word-spacing:2.322000px;}
.wsa{word-spacing:2.352000px;}
.ws94{word-spacing:2.376000px;}
.ws7e{word-spacing:2.430000px;}
.ws35{word-spacing:2.448000px;}
.ws52{word-spacing:2.484000px;}
.ws90{word-spacing:2.538000px;}
.ws33{word-spacing:2.544000px;}
.ws97{word-spacing:2.592000px;}
.ws5e{word-spacing:2.646000px;}
.wsb4{word-spacing:2.700000px;}
.wsf{word-spacing:2.736000px;}
.wsbd{word-spacing:2.754000px;}
.ws26{word-spacing:2.808000px;}
.ws63{word-spacing:2.916000px;}
.ws34{word-spacing:2.928000px;}
.wsb6{word-spacing:2.970000px;}
.wsd5{word-spacing:3.024000px;}
.ws78{word-spacing:3.078000px;}
.wsc3{word-spacing:3.132000px;}
.ws28{word-spacing:3.186000px;}
.ws2c{word-spacing:3.240000px;}
.ws5d{word-spacing:3.294000px;}
.ws47{word-spacing:3.312000px;}
.wsc7{word-spacing:3.348000px;}
.ws8{word-spacing:3.360000px;}
.ws70{word-spacing:3.456000px;}
.ws8a{word-spacing:3.510000px;}
.ws48{word-spacing:3.600000px;}
.ws8d{word-spacing:3.726000px;}
.ws8e{word-spacing:3.780000px;}
.wsa5{word-spacing:3.834000px;}
.ws4d{word-spacing:3.888000px;}
.ws87{word-spacing:3.942000px;}
.wsb1{word-spacing:3.996000px;}
.wse8{word-spacing:4.050000px;}
.ws50{word-spacing:4.104000px;}
.ws3a{word-spacing:4.128000px;}
.ws53{word-spacing:4.158000px;}
.ws7f{word-spacing:4.212000px;}
.ws1d{word-spacing:4.224000px;}
.ws79{word-spacing:4.266000px;}
.wsa0{word-spacing:4.320000px;}
.wsb{word-spacing:4.368000px;}
.ws81{word-spacing:4.374000px;}
.wsc{word-spacing:4.416000px;}
.ws6f{word-spacing:4.428000px;}
.ws42{word-spacing:4.464000px;}
.wsbf{word-spacing:4.482000px;}
.ws37{word-spacing:4.560000px;}
.ws2f{word-spacing:4.590000px;}
.ws84{word-spacing:4.698000px;}
.ws6d{word-spacing:4.752000px;}
.ws61{word-spacing:4.806000px;}
.ws91{word-spacing:4.914000px;}
.wsa1{word-spacing:4.968000px;}
.ws2d{word-spacing:5.022000px;}
.ws66{word-spacing:5.076000px;}
.wsd0{word-spacing:5.130000px;}
.ws30{word-spacing:5.238000px;}
.ws59{word-spacing:5.346000px;}
.ws1b{word-spacing:5.424000px;}
.wsef{word-spacing:5.454000px;}
.ws54{word-spacing:5.562000px;}
.ws3d{word-spacing:5.568000px;}
.wsf0{word-spacing:5.616000px;}
.wsb2{word-spacing:5.670000px;}
.ws43{word-spacing:5.712000px;}
.ws89{word-spacing:5.724000px;}
.ws44{word-spacing:5.760000px;}
.wsd2{word-spacing:5.832000px;}
.ws6e{word-spacing:5.886000px;}
.ws80{word-spacing:5.994000px;}
.ws1e{word-spacing:6.000000px;}
.wsc2{word-spacing:6.102000px;}
.wsab{word-spacing:6.264000px;}
.wse{word-spacing:6.336000px;}
.ws60{word-spacing:6.372000px;}
.ws73{word-spacing:6.426000px;}
.ws19{word-spacing:6.432000px;}
.wsa3{word-spacing:6.642000px;}
.ws51{word-spacing:6.696000px;}
.ws21{word-spacing:6.960000px;}
.ws93{word-spacing:7.020000px;}
.ws1f{word-spacing:7.152000px;}
.wsd3{word-spacing:7.236000px;}
.ws1c{word-spacing:7.296000px;}
.ws9d{word-spacing:7.344000px;}
.ws17{word-spacing:7.392000px;}
.ws4e{word-spacing:7.398000px;}
.ws16{word-spacing:7.440000px;}
.wsd4{word-spacing:7.452000px;}
.ws9e{word-spacing:7.560000px;}
.ws45{word-spacing:7.728000px;}
.wsd9{word-spacing:7.884000px;}
.ws14{word-spacing:7.968000px;}
.ws15{word-spacing:8.208000px;}
.ws98{word-spacing:8.370000px;}
.wse7{word-spacing:8.424000px;}
.ws13{word-spacing:8.496000px;}
.ws99{word-spacing:8.640000px;}
.ws92{word-spacing:8.748000px;}
.ws2b{word-spacing:9.180000px;}
.wse4{word-spacing:9.234000px;}
.ws1a{word-spacing:9.408000px;}
.ws46{word-spacing:10.224000px;}
.ws18{word-spacing:10.512000px;}
.ws41{word-spacing:11.424000px;}
.ws3f{word-spacing:11.808000px;}
.wsb3{word-spacing:12.096000px;}
.wsf3{word-spacing:12.150000px;}
.wsf4{word-spacing:12.528000px;}
.ws20{word-spacing:12.816000px;}
.wse0{word-spacing:13.068000px;}
.wsd6{word-spacing:13.392000px;}
.ws86{word-spacing:13.554000px;}
.wsde{word-spacing:15.660000px;}
.wsdf{word-spacing:16.092000px;}
.wsdd{word-spacing:16.902000px;}
.ws4a{word-spacing:17.232000px;}
.wse2{word-spacing:18.360000px;}
.wse3{word-spacing:20.250000px;}
.ws3e{word-spacing:25.392000px;}
.wsee{word-spacing:25.704000px;}
.wsf2{word-spacing:27.486000px;}
.ws40{word-spacing:28.944000px;}
.ws23{word-spacing:1720.080600px;}
._29{margin-left:-13.740000px;}
._2f{margin-left:-7.266600px;}
._7{margin-left:-5.538600px;}
._3{margin-left:-3.720000px;}
._1{margin-left:-2.304000px;}
._0{margin-left:-1.152000px;}
._2{width:1.512000px;}
._6{width:2.587200px;}
._5{width:4.129800px;}
._4{width:6.792000px;}
._30{width:13.824000px;}
._c{width:100.534800px;}
._1c{width:114.598800px;}
._2e{width:117.609600px;}
._18{width:153.957600px;}
._21{width:178.918200px;}
._1d{width:190.365600px;}
._1a{width:203.685000px;}
._d{width:208.825800px;}
._e{width:210.477600px;}
._a{width:215.949000px;}
._22{width:217.053600px;}
._12{width:231.741000px;}
._16{width:237.309600px;}
._10{width:238.340400px;}
._1f{width:245.925000px;}
._14{width:251.133000px;}
._19{width:256.010400px;}
._23{width:263.259000px;}
._1b{width:269.283000px;}
._15{width:284.955600px;}
._f{width:286.419000px;}
._1e{width:301.225800px;}
._17{width:326.810400px;}
._b{width:339.075600px;}
._20{width:344.739000px;}
._11{width:349.299000px;}
._13{width:350.762400px;}
._8{width:395.043000px;}
._27{width:407.812200px;}
._2a{width:408.921600px;}
._24{width:521.333400px;}
._28{width:533.950800px;}
._2c{width:548.505600px;}
._2d{width:551.817600px;}
._26{width:592.613400px;}
._9{width:622.441800px;}
._25{width:654.312000px;}
._2b{width:848.313600px;}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:45.000000px;}
.fs3{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs5{font-size:60.000000px;}
.fs6{font-size:61.500000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y62{bottom:44.443500px;}
.y6{bottom:46.782150px;}
.y5{bottom:47.762700px;}
.ya6{bottom:82.764600px;}
.y2b{bottom:87.382650px;}
.ye7{bottom:91.524750px;}
.y109{bottom:95.019600px;}
.yb2{bottom:96.778350px;}
.y13a{bottom:98.012550px;}
.y11a{bottom:98.743650px;}
.y167{bottom:100.002750px;}
.y86{bottom:101.030250px;}
.ya5{bottom:102.264600px;}
.ye6{bottom:111.024750px;}
.y17f{bottom:112.758600px;}
.y108{bottom:114.519600px;}
.yb1{bottom:116.278350px;}
.yb{bottom:116.441100px;}
.y139{bottom:117.512550px;}
.y3e{bottom:117.736200px;}
.y119{bottom:118.243650px;}
.y166{bottom:119.502750px;}
.y85{bottom:120.530250px;}
.y18b{bottom:121.262550px;}
.ya4{bottom:121.764600px;}
.y14a{bottom:123.769350px;}
.y127{bottom:124.013850px;}
.ye5{bottom:130.524750px;}
.yf4{bottom:132.226500px;}
.y17e{bottom:132.258600px;}
.y107{bottom:134.019600px;}
.ya{bottom:135.093000px;}
.yb0{bottom:135.778350px;}
.y138{bottom:137.012550px;}
.y3d{bottom:137.236200px;}
.y118{bottom:137.743650px;}
.y84{bottom:140.030250px;}
.y18a{bottom:140.762550px;}
.yc1{bottom:141.264600px;}
.y165{bottom:143.254650px;}
.y149{bottom:143.269350px;}
.y126{bottom:143.513850px;}
.ya3{bottom:145.516500px;}
.y9{bottom:149.493000px;}
.yf3{bottom:151.726500px;}
.ye4{bottom:154.276800px;}
.yd6{bottom:154.507050px;}
.yaf{bottom:155.278350px;}
.y17d{bottom:156.010500px;}
.y137{bottom:156.512550px;}
.y3c{bottom:156.736200px;}
.y117{bottom:157.243650px;}
.y106{bottom:157.771650px;}
.y83{bottom:159.530250px;}
.y189{bottom:160.262550px;}
.y164{bottom:162.754650px;}
.y125{bottom:163.013850px;}
.ya2{bottom:165.016500px;}
.y148{bottom:167.021250px;}
.y8{bottom:168.145050px;}
.yf2{bottom:171.226500px;}
.ye3{bottom:173.776800px;}
.yd5{bottom:174.007050px;}
.y136{bottom:176.012550px;}
.y3b{bottom:176.236200px;}
.y116{bottom:176.743650px;}
.y105{bottom:177.271650px;}
.y82{bottom:179.030250px;}
.y17c{bottom:179.762550px;}
.y124{bottom:182.513850px;}
.y188{bottom:184.014600px;}
.ya1{bottom:184.516500px;}
.y163{bottom:186.506700px;}
.y147{bottom:186.521250px;}
.yf1{bottom:190.726500px;}
.ye2{bottom:193.276800px;}
.yd4{bottom:193.507050px;}
.y135{bottom:195.512550px;}
.y3a{bottom:195.736200px;}
.y115{bottom:196.243650px;}
.y104{bottom:196.771650px;}
.y81{bottom:198.530250px;}
.y2a{bottom:198.538200px;}
.y17b{bottom:199.262550px;}
.y123{bottom:202.013850px;}
.y187{bottom:203.514600px;}
.ya0{bottom:204.016500px;}
.y162{bottom:206.006700px;}
.yf0{bottom:210.226500px;}
.ye1{bottom:212.776800px;}
.y29{bottom:212.938200px;}
.yd3{bottom:213.007050px;}
.y146{bottom:214.525200px;}
.y114{bottom:215.743650px;}
.y80{bottom:218.030250px;}
.y134{bottom:219.264600px;}
.y39{bottom:219.488100px;}
.y103{bottom:220.523550px;}
.y17a{bottom:223.014600px;}
.y9f{bottom:223.516500px;}
.y122{bottom:225.765900px;}
.y186{bottom:227.266500px;}
.y28{bottom:227.338200px;}
.yc0{bottom:227.768400px;}
.yef{bottom:229.726500px;}
.y161{bottom:229.758600px;}
.ye0{bottom:232.276800px;}
.y7f{bottom:237.530250px;}
.y133{bottom:238.764600px;}
.y38{bottom:238.988100px;}
.y113{bottom:239.495550px;}
.y102{bottom:240.023550px;}
.yd2{bottom:241.011000px;}
.y27{bottom:241.738200px;}
.y179{bottom:242.514600px;}
.y9e{bottom:243.016500px;}
.y121{bottom:245.265900px;}
.ybf{bottom:247.268400px;}
.yee{bottom:249.226500px;}
.y160{bottom:249.258600px;}
.y185{bottom:251.018400px;}
.y26{bottom:256.138200px;}
.y7e{bottom:257.030250px;}
.y132{bottom:258.264600px;}
.y37{bottom:258.488100px;}
.y112{bottom:258.995550px;}
.y145{bottom:259.035150px;}
.y101{bottom:259.523550px;}
.ydf{bottom:260.280750px;}
.y178{bottom:262.014600px;}
.y120{bottom:264.765900px;}
.y9d{bottom:266.768400px;}
.yed{bottom:268.726500px;}
.yd1{bottom:269.842350px;}
.y184{bottom:270.518400px;}
.y25{bottom:270.538200px;}
.y15f{bottom:273.010500px;}
.y7d{bottom:276.530250px;}
.y131{bottom:277.764600px;}
.y36{bottom:277.988100px;}
.y111{bottom:278.495550px;}
.y100{bottom:279.023550px;}
.y11f{bottom:284.265900px;}
.y24{bottom:284.938200px;}
.y177{bottom:285.766500px;}
.y9c{bottom:286.268400px;}
.y144{bottom:287.039100px;}
.yec{bottom:288.226500px;}
.y183{bottom:290.018400px;}
.y7c{bottom:296.030250px;}
.y15e{bottom:296.762550px;}
.y130{bottom:297.264600px;}
.y35{bottom:297.488100px;}
.y110{bottom:297.995550px;}
.yff{bottom:298.523550px;}
.y23{bottom:299.338200px;}
.yd0{bottom:303.858150px;}
.y176{bottom:305.266500px;}
.y9b{bottom:305.768400px;}
.yeb{bottom:307.726500px;}
.yde{bottom:309.042600px;}
.y11e{bottom:312.269700px;}
.y22{bottom:313.738200px;}
.y182{bottom:313.770450px;}
.yae{bottom:315.530250px;}
.y34{bottom:316.988100px;}
.y10f{bottom:317.495550px;}
.yfe{bottom:318.023550px;}
.y7b{bottom:319.782300px;}
.y15d{bottom:320.514600px;}
.y12f{bottom:321.016500px;}
.y9a{bottom:325.268400px;}
.yea{bottom:327.226500px;}
.y21{bottom:328.138200px;}
.y175{bottom:329.018400px;}
.y181{bottom:333.270450px;}
.yad{bottom:335.030250px;}
.y143{bottom:336.250350px;}
.y33{bottom:336.488100px;}
.y10e{bottom:336.995550px;}
.yfd{bottom:337.523550px;}
.ycf{bottom:337.873800px;}
.y7a{bottom:339.282300px;}
.y12e{bottom:340.516500px;}
.y20{bottom:342.538200px;}
.y15c{bottom:344.266500px;}
.y99{bottom:344.768400px;}
.y174{bottom:352.770450px;}
.yac{bottom:354.530250px;}
.ye9{bottom:355.230450px;}
.y32{bottom:355.988100px;}
.y10d{bottom:356.495550px;}
.y1f{bottom:356.938200px;}
.y79{bottom:358.782300px;}
.y12d{bottom:360.016500px;}
.y11d{bottom:361.031550px;}
.yfc{bottom:361.275600px;}
.y98{bottom:364.268400px;}
.y142{bottom:366.014100px;}
.y15b{bottom:368.018400px;}
.y1e{bottom:371.338200px;}
.yce{bottom:371.889600px;}
.yab{bottom:374.030250px;}
.y31{bottom:375.488100px;}
.y10c{bottom:375.995550px;}
.y173{bottom:376.522350px;}
.y78{bottom:378.282300px;}
.yfb{bottom:380.775600px;}
.ydd{bottom:381.947550px;}
.y97{bottom:383.768400px;}
.y1d{bottom:385.738200px;}
.y15a{bottom:387.518400px;}
.y12c{bottom:388.020450px;}
.y30{bottom:394.988100px;}
.y141{bottom:395.777850px;}
.ydc{bottom:395.847450px;}
.y172{bottom:396.022350px;}
.y77{bottom:397.782300px;}
.y1c{bottom:400.138200px;}
.yfa{bottom:400.275600px;}
.ybe{bottom:403.268400px;}
.y10b{bottom:403.999500px;}
.ycd{bottom:405.905400px;}
.y159{bottom:407.018400px;}
.y96{bottom:407.520450px;}
.y2f{bottom:414.488100px;}
.y1b{bottom:414.538200px;}
.y76{bottom:417.282300px;}
.y171{bottom:419.774400px;}
.yf9{bottom:419.775600px;}
.ybd{bottom:422.768400px;}
.y140{bottom:425.541750px;}
.y95{bottom:427.020450px;}
.y158{bottom:430.770450px;}
.y12b{bottom:432.530250px;}
.y1a{bottom:436.780800px;}
.y75{bottom:436.782300px;}
.y170{bottom:439.274400px;}
.yf8{bottom:439.275600px;}
.ycc{bottom:439.921050px;}
.y2e{bottom:442.492050px;}
.y94{bottom:446.520450px;}
.ybc{bottom:450.772500px;}
.y19{bottom:451.180800px;}
.y12a{bottom:452.030250px;}
.y157{bottom:454.522500px;}
.y13f{bottom:455.305500px;}
.y74{bottom:456.282300px;}
.yf7{bottom:458.775600px;}
.y16f{bottom:463.026300px;}
.ydb{bottom:464.172750px;}
.y18{bottom:465.580800px;}
.y93{bottom:466.020450px;}
.y7{bottom:468.410400px;}
.y129{bottom:471.530250px;}
.ycb{bottom:473.936850px;}
.y156{bottom:474.022500px;}
.y73{bottom:475.782300px;}
.y61{bottom:477.351900px;}
.y50{bottom:477.755850px;}
.yda{bottom:478.072800px;}
.yf6{bottom:478.275600px;}
.y17{bottom:479.980800px;}
.y16e{bottom:482.526300px;}
.y13e{bottom:485.069250px;}
.y92{bottom:485.520450px;}
.y128{bottom:491.030250px;}
.y60{bottom:493.851900px;}
.y4f{bottom:494.255850px;}
.y16{bottom:494.380800px;}
.ybb{bottom:495.282300px;}
.y155{bottom:497.774400px;}
.y72{bottom:499.534200px;}
.y16d{bottom:502.026300px;}
.y91{bottom:505.020450px;}
.yf5{bottom:506.279550px;}
.yca{bottom:507.952650px;}
.y15{bottom:508.780800px;}
.y5f{bottom:514.603950px;}
.yba{bottom:514.782300px;}
.y4e{bottom:515.007900px;}
.y154{bottom:517.274400px;}
.y13d{bottom:519.010650px;}
.y71{bottom:519.034200px;}
.y14{bottom:523.180800px;}
.y90{bottom:524.520450px;}
.y16c{bottom:525.778350px;}
.yb9{bottom:534.282300px;}
.y5e{bottom:535.355850px;}
.y4d{bottom:535.759800px;}
.y13{bottom:537.580800px;}
.y70{bottom:538.534200px;}
.y153{bottom:541.026300px;}
.yc9{bottom:541.968300px;}
.y8f{bottom:544.020450px;}
.y16b{bottom:545.278350px;}
.y5d{bottom:551.855850px;}
.y12{bottom:551.980800px;}
.y4c{bottom:552.259800px;}
.yb8{bottom:553.782300px;}
.y6f{bottom:558.034200px;}
.y152{bottom:560.526300px;}
.y13c{bottom:563.520450px;}
.y180{bottom:564.778350px;}
.y11{bottom:566.380800px;}
.y8e{bottom:567.772500px;}
.y5c{bottom:568.355850px;}
.y4b{bottom:568.759800px;}
.y16a{bottom:569.030250px;}
.yb7{bottom:573.282300px;}
.yc8{bottom:575.984100px;}
.y6e{bottom:577.534200px;}
.y10{bottom:580.780800px;}
.y151{bottom:584.278350px;}
.y5b{bottom:584.855850px;}
.y4a{bottom:585.259800px;}
.y8d{bottom:587.272500px;}
.y169{bottom:588.530250px;}
.y13b{bottom:591.524400px;}
.yb6{bottom:592.782300px;}
.yf{bottom:595.180800px;}
.y6d{bottom:597.034200px;}
.y5a{bottom:601.355850px;}
.y49{bottom:601.759800px;}
.y150{bottom:603.778350px;}
.y8c{bottom:606.772350px;}
.y168{bottom:608.030250px;}
.ye{bottom:609.580800px;}
.yc7{bottom:609.999900px;}
.yb5{bottom:612.282300px;}
.y6c{bottom:616.534200px;}
.y59{bottom:617.855850px;}
.y48{bottom:618.259800px;}
.yd{bottom:623.980800px;}
.y8b{bottom:626.272350px;}
.y14f{bottom:627.530250px;}
.yb4{bottom:631.782300px;}
.y11c{bottom:632.630250px;}
.yd9{bottom:634.251600px;}
.y58{bottom:634.355850px;}
.y47{bottom:634.759800px;}
.y6b{bottom:636.034200px;}
.yc{bottom:638.380800px;}
.yc6{bottom:644.015550px;}
.y8a{bottom:645.772350px;}
.y14e{bottom:647.030250px;}
.yd8{bottom:648.151500px;}
.y57{bottom:650.855850px;}
.y46{bottom:651.259800px;}
.yb3{bottom:651.282300px;}
.y6a{bottom:655.534200px;}
.y11b{bottom:659.786250px;}
.y89{bottom:665.272350px;}
.y56{bottom:667.355850px;}
.y45{bottom:667.759800px;}
.y14d{bottom:670.782300px;}
.y4{bottom:673.270500px;}
.y69{bottom:675.034200px;}
.yc5{bottom:678.031350px;}
.yaa{bottom:679.286250px;}
.y55{bottom:683.855850px;}
.y44{bottom:684.259800px;}
.y88{bottom:684.772350px;}
.y14c{bottom:690.282300px;}
.y10a{bottom:691.130250px;}
.y68{bottom:694.534200px;}
.y2d{bottom:696.774750px;}
.y3{bottom:698.470500px;}
.ya9{bottom:698.786250px;}
.y54{bottom:700.355850px;}
.y43{bottom:700.759800px;}
.ye8{bottom:710.630250px;}
.yc4{bottom:712.047150px;}
.y87{bottom:712.776300px;}
.y67{bottom:714.034200px;}
.y53{bottom:716.855850px;}
.y42{bottom:717.259800px;}
.ya8{bottom:718.286250px;}
.y18c{bottom:729.282300px;}
.y52{bottom:733.355850px;}
.y66{bottom:733.534200px;}
.y41{bottom:733.759800px;}
.ya7{bottom:737.786250px;}
.y2{bottom:740.678400px;}
.yc3{bottom:745.907400px;}
.yd7{bottom:746.062800px;}
.y14b{bottom:753.034200px;}
.y51{bottom:754.107900px;}
.y40{bottom:754.511700px;}
.y65{bottom:757.286250px;}
.y1{bottom:769.478400px;}
.y64{bottom:776.786100px;}
.yc2{bottom:777.878100px;}
.y3f{bottom:780.062100px;}
.y2c{bottom:831.554850px;}
.y63{bottom:832.304850px;}
.hd{height:26.856000px;}
.h10{height:31.104000px;}
.h12{height:33.345000px;}
.he{height:33.408000px;}
.h8{height:34.992000px;}
.h6{height:35.568000px;}
.h11{height:35.625000px;}
.hf{height:35.808000px;}
.h9{height:36.288000px;}
.h5{height:39.366000px;}
.h7{height:41.472000px;}
.h4{height:42.444000px;}
.ha{height:43.740000px;}
.hb{height:45.571500px;}
.hc{height:46.656000px;}
.h3{height:61.236000px;}
.h2{height:69.984000px;}
.h13{height:80.527800px;}
.h14{height:80.528400px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:49.971150px;}
.x1{left:80.787450px;}
.x4{left:85.039350px;}
.x26{left:89.478900px;}
.x7{left:146.692950px;}
.x1f{left:205.878000px;}
.x6{left:208.346400px;}
.x13{left:211.995300px;}
.xe{left:213.932400px;}
.x21{left:217.404300px;}
.xd{left:219.086850px;}
.x11{left:240.165000px;}
.x23{left:247.056150px;}
.x24{left:253.643850px;}
.x12{left:258.105000px;}
.xf{left:364.175550px;}
.x25{left:369.921300px;}
.x10{left:371.535750px;}
.x22{left:382.355400px;}
.x20{left:384.695250px;}
.xc{left:389.415300px;}
.x14{left:391.018800px;}
.x1b{left:413.134650px;}
.x19{left:415.060650px;}
.x1e{left:423.316650px;}
.x15{left:450.922350px;}
.x9{left:455.385750px;}
.xb{left:514.304700px;}
.x18{left:548.087400px;}
.x1a{left:566.014950px;}
.x1c{left:572.302950px;}
.x5{left:577.727400px;}
.x17{left:587.242500px;}
.x1d{left:590.584650px;}
.x16{left:592.708650px;}
.x2{left:634.616850px;}
.xa{left:638.370000px;}
.x3{left:843.024750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:34.716267pt;}
.ls12{letter-spacing:-11.904000pt;}
.ls5{letter-spacing:-5.034667pt;}
.ls11{letter-spacing:-2.432000pt;}
.ls14{letter-spacing:-0.720000pt;}
.ls4{letter-spacing:-0.426667pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls16{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.042667pt;}
.ls3{letter-spacing:0.000000pt;}
.lsb{letter-spacing:0.288000pt;}
.ls9{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.336000pt;}
.lsd{letter-spacing:0.400000pt;}
.lsc{letter-spacing:0.426667pt;}
.ls7{letter-spacing:0.480000pt;}
.ls6{letter-spacing:0.546667pt;}
.ls1{letter-spacing:0.746667pt;}
.ls0{letter-spacing:0.853333pt;}
.ls13{letter-spacing:0.960000pt;}
.lsa{letter-spacing:4.390400pt;}
.ls2{letter-spacing:6.371733pt;}
.ls10{letter-spacing:453.356267pt;}
.lsf{letter-spacing:479.809067pt;}
.wsdb{word-spacing:-10.848000pt;}
.wscf{word-spacing:-10.656000pt;}
.wsdc{word-spacing:-10.512000pt;}
.wscc{word-spacing:-10.368000pt;}
.ws2{word-spacing:-9.045333pt;}
.ws0{word-spacing:-8.789333pt;}
.ws1{word-spacing:-8.618667pt;}
.ws24{word-spacing:-8.490667pt;}
.wseb{word-spacing:-6.672000pt;}
.wsea{word-spacing:-6.480000pt;}
.wsb5{word-spacing:-6.058667pt;}
.ws2e{word-spacing:-5.280000pt;}
.wse6{word-spacing:-4.800000pt;}
.wse5{word-spacing:-4.656000pt;}
.wsc6{word-spacing:-3.840000pt;}
.wsae{word-spacing:-3.072000pt;}
.wse1{word-spacing:-2.736000pt;}
.ws5f{word-spacing:-2.688000pt;}
.ws29{word-spacing:-2.544000pt;}
.ws11{word-spacing:-2.432000pt;}
.wsf1{word-spacing:-2.400000pt;}
.ws76{word-spacing:-2.352000pt;}
.ws12{word-spacing:-2.346667pt;}
.wsc8{word-spacing:-2.112000pt;}
.wsa8{word-spacing:-2.064000pt;}
.wsec{word-spacing:-2.016000pt;}
.wsed{word-spacing:-1.968000pt;}
.wscb{word-spacing:-1.872000pt;}
.ws5c{word-spacing:-1.824000pt;}
.ws7a{word-spacing:-1.776000pt;}
.ws72{word-spacing:-1.728000pt;}
.wsa7{word-spacing:-1.680000pt;}
.ws5b{word-spacing:-1.632000pt;}
.wse9{word-spacing:-1.584000pt;}
.ws38{word-spacing:-1.536000pt;}
.ws67{word-spacing:-1.488000pt;}
.wsca{word-spacing:-1.440000pt;}
.ws6a{word-spacing:-1.392000pt;}
.wsad{word-spacing:-1.344000pt;}
.ws83{word-spacing:-1.248000pt;}
.wsa9{word-spacing:-1.200000pt;}
.ws82{word-spacing:-1.152000pt;}
.wsac{word-spacing:-1.104000pt;}
.ws25{word-spacing:-1.056000pt;}
.ws2a{word-spacing:-1.008000pt;}
.ws9c{word-spacing:-0.960000pt;}
.wsc9{word-spacing:-0.912000pt;}
.ws3b{word-spacing:-0.896000pt;}
.wsc5{word-spacing:-0.864000pt;}
.ws57{word-spacing:-0.816000pt;}
.wsd1{word-spacing:-0.768000pt;}
.ws4{word-spacing:-0.746667pt;}
.wsce{word-spacing:-0.720000pt;}
.ws58{word-spacing:-0.672000pt;}
.ws5{word-spacing:-0.640000pt;}
.ws5a{word-spacing:-0.624000pt;}
.ws39{word-spacing:-0.597333pt;}
.ws69{word-spacing:-0.576000pt;}
.ws62{word-spacing:-0.528000pt;}
.ws7b{word-spacing:-0.480000pt;}
.ws68{word-spacing:-0.432000pt;}
.wsb8{word-spacing:-0.384000pt;}
.ws7d{word-spacing:-0.336000pt;}
.ws4b{word-spacing:-0.320000pt;}
.wsaf{word-spacing:-0.288000pt;}
.wsb0{word-spacing:-0.240000pt;}
.ws32{word-spacing:-0.192000pt;}
.wsc1{word-spacing:-0.144000pt;}
.ws49{word-spacing:-0.128000pt;}
.ws9b{word-spacing:-0.096000pt;}
.ws22{word-spacing:-0.048000pt;}
.ws3{word-spacing:0.000000pt;}
.wsa2{word-spacing:0.042667pt;}
.wsa6{word-spacing:0.048000pt;}
.ws96{word-spacing:0.096000pt;}
.wscd{word-spacing:0.144000pt;}
.ws6b{word-spacing:0.192000pt;}
.wsda{word-spacing:0.240000pt;}
.ws10{word-spacing:0.256000pt;}
.wsb9{word-spacing:0.288000pt;}
.ws85{word-spacing:0.336000pt;}
.ws27{word-spacing:0.384000pt;}
.ws6{word-spacing:0.426667pt;}
.wsaa{word-spacing:0.432000pt;}
.ws7{word-spacing:0.469333pt;}
.wsbe{word-spacing:0.480000pt;}
.wsbc{word-spacing:0.528000pt;}
.ws6c{word-spacing:0.624000pt;}
.ws8c{word-spacing:0.720000pt;}
.wsc4{word-spacing:0.768000pt;}
.ws9a{word-spacing:0.816000pt;}
.wsa4{word-spacing:0.864000pt;}
.wsb7{word-spacing:0.960000pt;}
.ws9f{word-spacing:1.056000pt;}
.wsbb{word-spacing:1.104000pt;}
.ws4c{word-spacing:1.152000pt;}
.ws8b{word-spacing:1.200000pt;}
.ws36{word-spacing:1.237333pt;}
.wsd7{word-spacing:1.248000pt;}
.wsd8{word-spacing:1.296000pt;}
.ws64{word-spacing:1.344000pt;}
.ws88{word-spacing:1.392000pt;}
.wsba{word-spacing:1.440000pt;}
.ws74{word-spacing:1.488000pt;}
.ws7c{word-spacing:1.536000pt;}
.ws56{word-spacing:1.584000pt;}
.ws77{word-spacing:1.632000pt;}
.ws55{word-spacing:1.680000pt;}
.ws65{word-spacing:1.728000pt;}
.wsc0{word-spacing:1.776000pt;}
.wsd{word-spacing:1.792000pt;}
.ws31{word-spacing:1.824000pt;}
.ws8f{word-spacing:1.872000pt;}
.ws75{word-spacing:1.920000pt;}
.ws71{word-spacing:1.968000pt;}
.ws3c{word-spacing:2.005333pt;}
.ws4f{word-spacing:2.016000pt;}
.ws9{word-spacing:2.048000pt;}
.ws95{word-spacing:2.064000pt;}
.wsa{word-spacing:2.090667pt;}
.ws94{word-spacing:2.112000pt;}
.ws7e{word-spacing:2.160000pt;}
.ws35{word-spacing:2.176000pt;}
.ws52{word-spacing:2.208000pt;}
.ws90{word-spacing:2.256000pt;}
.ws33{word-spacing:2.261333pt;}
.ws97{word-spacing:2.304000pt;}
.ws5e{word-spacing:2.352000pt;}
.wsb4{word-spacing:2.400000pt;}
.wsf{word-spacing:2.432000pt;}
.wsbd{word-spacing:2.448000pt;}
.ws26{word-spacing:2.496000pt;}
.ws63{word-spacing:2.592000pt;}
.ws34{word-spacing:2.602667pt;}
.wsb6{word-spacing:2.640000pt;}
.wsd5{word-spacing:2.688000pt;}
.ws78{word-spacing:2.736000pt;}
.wsc3{word-spacing:2.784000pt;}
.ws28{word-spacing:2.832000pt;}
.ws2c{word-spacing:2.880000pt;}
.ws5d{word-spacing:2.928000pt;}
.ws47{word-spacing:2.944000pt;}
.wsc7{word-spacing:2.976000pt;}
.ws8{word-spacing:2.986667pt;}
.ws70{word-spacing:3.072000pt;}
.ws8a{word-spacing:3.120000pt;}
.ws48{word-spacing:3.200000pt;}
.ws8d{word-spacing:3.312000pt;}
.ws8e{word-spacing:3.360000pt;}
.wsa5{word-spacing:3.408000pt;}
.ws4d{word-spacing:3.456000pt;}
.ws87{word-spacing:3.504000pt;}
.wsb1{word-spacing:3.552000pt;}
.wse8{word-spacing:3.600000pt;}
.ws50{word-spacing:3.648000pt;}
.ws3a{word-spacing:3.669333pt;}
.ws53{word-spacing:3.696000pt;}
.ws7f{word-spacing:3.744000pt;}
.ws1d{word-spacing:3.754667pt;}
.ws79{word-spacing:3.792000pt;}
.wsa0{word-spacing:3.840000pt;}
.wsb{word-spacing:3.882667pt;}
.ws81{word-spacing:3.888000pt;}
.wsc{word-spacing:3.925333pt;}
.ws6f{word-spacing:3.936000pt;}
.ws42{word-spacing:3.968000pt;}
.wsbf{word-spacing:3.984000pt;}
.ws37{word-spacing:4.053333pt;}
.ws2f{word-spacing:4.080000pt;}
.ws84{word-spacing:4.176000pt;}
.ws6d{word-spacing:4.224000pt;}
.ws61{word-spacing:4.272000pt;}
.ws91{word-spacing:4.368000pt;}
.wsa1{word-spacing:4.416000pt;}
.ws2d{word-spacing:4.464000pt;}
.ws66{word-spacing:4.512000pt;}
.wsd0{word-spacing:4.560000pt;}
.ws30{word-spacing:4.656000pt;}
.ws59{word-spacing:4.752000pt;}
.ws1b{word-spacing:4.821333pt;}
.wsef{word-spacing:4.848000pt;}
.ws54{word-spacing:4.944000pt;}
.ws3d{word-spacing:4.949333pt;}
.wsf0{word-spacing:4.992000pt;}
.wsb2{word-spacing:5.040000pt;}
.ws43{word-spacing:5.077333pt;}
.ws89{word-spacing:5.088000pt;}
.ws44{word-spacing:5.120000pt;}
.wsd2{word-spacing:5.184000pt;}
.ws6e{word-spacing:5.232000pt;}
.ws80{word-spacing:5.328000pt;}
.ws1e{word-spacing:5.333333pt;}
.wsc2{word-spacing:5.424000pt;}
.wsab{word-spacing:5.568000pt;}
.wse{word-spacing:5.632000pt;}
.ws60{word-spacing:5.664000pt;}
.ws73{word-spacing:5.712000pt;}
.ws19{word-spacing:5.717333pt;}
.wsa3{word-spacing:5.904000pt;}
.ws51{word-spacing:5.952000pt;}
.ws21{word-spacing:6.186667pt;}
.ws93{word-spacing:6.240000pt;}
.ws1f{word-spacing:6.357333pt;}
.wsd3{word-spacing:6.432000pt;}
.ws1c{word-spacing:6.485333pt;}
.ws9d{word-spacing:6.528000pt;}
.ws17{word-spacing:6.570667pt;}
.ws4e{word-spacing:6.576000pt;}
.ws16{word-spacing:6.613333pt;}
.wsd4{word-spacing:6.624000pt;}
.ws9e{word-spacing:6.720000pt;}
.ws45{word-spacing:6.869333pt;}
.wsd9{word-spacing:7.008000pt;}
.ws14{word-spacing:7.082667pt;}
.ws15{word-spacing:7.296000pt;}
.ws98{word-spacing:7.440000pt;}
.wse7{word-spacing:7.488000pt;}
.ws13{word-spacing:7.552000pt;}
.ws99{word-spacing:7.680000pt;}
.ws92{word-spacing:7.776000pt;}
.ws2b{word-spacing:8.160000pt;}
.wse4{word-spacing:8.208000pt;}
.ws1a{word-spacing:8.362667pt;}
.ws46{word-spacing:9.088000pt;}
.ws18{word-spacing:9.344000pt;}
.ws41{word-spacing:10.154667pt;}
.ws3f{word-spacing:10.496000pt;}
.wsb3{word-spacing:10.752000pt;}
.wsf3{word-spacing:10.800000pt;}
.wsf4{word-spacing:11.136000pt;}
.ws20{word-spacing:11.392000pt;}
.wse0{word-spacing:11.616000pt;}
.wsd6{word-spacing:11.904000pt;}
.ws86{word-spacing:12.048000pt;}
.wsde{word-spacing:13.920000pt;}
.wsdf{word-spacing:14.304000pt;}
.wsdd{word-spacing:15.024000pt;}
.ws4a{word-spacing:15.317333pt;}
.wse2{word-spacing:16.320000pt;}
.wse3{word-spacing:18.000000pt;}
.ws3e{word-spacing:22.570667pt;}
.wsee{word-spacing:22.848000pt;}
.wsf2{word-spacing:24.432000pt;}
.ws40{word-spacing:25.728000pt;}
.ws23{word-spacing:1528.960533pt;}
._29{margin-left:-12.213333pt;}
._2f{margin-left:-6.459200pt;}
._7{margin-left:-4.923200pt;}
._3{margin-left:-3.306667pt;}
._1{margin-left:-2.048000pt;}
._0{margin-left:-1.024000pt;}
._2{width:1.344000pt;}
._6{width:2.299733pt;}
._5{width:3.670933pt;}
._4{width:6.037333pt;}
._30{width:12.288000pt;}
._c{width:89.364267pt;}
._1c{width:101.865600pt;}
._2e{width:104.541867pt;}
._18{width:136.851200pt;}
._21{width:159.038400pt;}
._1d{width:169.213867pt;}
._1a{width:181.053333pt;}
._d{width:185.622933pt;}
._e{width:187.091200pt;}
._a{width:191.954667pt;}
._22{width:192.936533pt;}
._12{width:205.992000pt;}
._16{width:210.941867pt;}
._10{width:211.858133pt;}
._1f{width:218.600000pt;}
._14{width:223.229333pt;}
._19{width:227.564800pt;}
._23{width:234.008000pt;}
._1b{width:239.362667pt;}
._15{width:253.293867pt;}
._f{width:254.594667pt;}
._1e{width:267.756267pt;}
._17{width:290.498133pt;}
._b{width:301.400533pt;}
._20{width:306.434667pt;}
._11{width:310.488000pt;}
._13{width:311.788800pt;}
._8{width:351.149333pt;}
._27{width:362.499733pt;}
._2a{width:363.485867pt;}
._24{width:463.407467pt;}
._28{width:474.622933pt;}
._2c{width:487.560533pt;}
._2d{width:490.504533pt;}
._26{width:526.767467pt;}
._9{width:553.281600pt;}
._25{width:581.610667pt;}
._2b{width:754.056533pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:40.000000pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs5{font-size:53.333333pt;}
.fs6{font-size:54.666667pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y62{bottom:39.505333pt;}
.y6{bottom:41.584133pt;}
.y5{bottom:42.455733pt;}
.ya6{bottom:73.568533pt;}
.y2b{bottom:77.673467pt;}
.ye7{bottom:81.355333pt;}
.y109{bottom:84.461867pt;}
.yb2{bottom:86.025200pt;}
.y13a{bottom:87.122267pt;}
.y11a{bottom:87.772133pt;}
.y167{bottom:88.891333pt;}
.y86{bottom:89.804667pt;}
.ya5{bottom:90.901867pt;}
.ye6{bottom:98.688667pt;}
.y17f{bottom:100.229867pt;}
.y108{bottom:101.795200pt;}
.yb1{bottom:103.358533pt;}
.yb{bottom:103.503200pt;}
.y139{bottom:104.455600pt;}
.y3e{bottom:104.654400pt;}
.y119{bottom:105.105467pt;}
.y166{bottom:106.224667pt;}
.y85{bottom:107.138000pt;}
.y18b{bottom:107.788933pt;}
.ya4{bottom:108.235200pt;}
.y14a{bottom:110.017200pt;}
.y127{bottom:110.234533pt;}
.ye5{bottom:116.022000pt;}
.yf4{bottom:117.534667pt;}
.y17e{bottom:117.563200pt;}
.y107{bottom:119.128533pt;}
.ya{bottom:120.082667pt;}
.yb0{bottom:120.691867pt;}
.y138{bottom:121.788933pt;}
.y3d{bottom:121.987733pt;}
.y118{bottom:122.438800pt;}
.y84{bottom:124.471333pt;}
.y18a{bottom:125.122267pt;}
.yc1{bottom:125.568533pt;}
.y165{bottom:127.337467pt;}
.y149{bottom:127.350533pt;}
.y126{bottom:127.567867pt;}
.ya3{bottom:129.348000pt;}
.y9{bottom:132.882667pt;}
.yf3{bottom:134.868000pt;}
.ye4{bottom:137.134933pt;}
.yd6{bottom:137.339600pt;}
.yaf{bottom:138.025200pt;}
.y17d{bottom:138.676000pt;}
.y137{bottom:139.122267pt;}
.y3c{bottom:139.321067pt;}
.y117{bottom:139.772133pt;}
.y106{bottom:140.241467pt;}
.y83{bottom:141.804667pt;}
.y189{bottom:142.455600pt;}
.y164{bottom:144.670800pt;}
.y125{bottom:144.901200pt;}
.ya2{bottom:146.681333pt;}
.y148{bottom:148.463333pt;}
.y8{bottom:149.462267pt;}
.yf2{bottom:152.201333pt;}
.ye3{bottom:154.468267pt;}
.yd5{bottom:154.672933pt;}
.y136{bottom:156.455600pt;}
.y3b{bottom:156.654400pt;}
.y116{bottom:157.105467pt;}
.y105{bottom:157.574800pt;}
.y82{bottom:159.138000pt;}
.y17c{bottom:159.788933pt;}
.y124{bottom:162.234533pt;}
.y188{bottom:163.568533pt;}
.ya1{bottom:164.014667pt;}
.y163{bottom:165.783733pt;}
.y147{bottom:165.796667pt;}
.yf1{bottom:169.534667pt;}
.ye2{bottom:171.801600pt;}
.yd4{bottom:172.006267pt;}
.y135{bottom:173.788933pt;}
.y3a{bottom:173.987733pt;}
.y115{bottom:174.438800pt;}
.y104{bottom:174.908133pt;}
.y81{bottom:176.471333pt;}
.y2a{bottom:176.478400pt;}
.y17b{bottom:177.122267pt;}
.y123{bottom:179.567867pt;}
.y187{bottom:180.901867pt;}
.ya0{bottom:181.348000pt;}
.y162{bottom:183.117067pt;}
.yf0{bottom:186.868000pt;}
.ye1{bottom:189.134933pt;}
.y29{bottom:189.278400pt;}
.yd3{bottom:189.339600pt;}
.y146{bottom:190.689067pt;}
.y114{bottom:191.772133pt;}
.y80{bottom:193.804667pt;}
.y134{bottom:194.901867pt;}
.y39{bottom:195.100533pt;}
.y103{bottom:196.020933pt;}
.y17a{bottom:198.235200pt;}
.y9f{bottom:198.681333pt;}
.y122{bottom:200.680800pt;}
.y186{bottom:202.014667pt;}
.y28{bottom:202.078400pt;}
.yc0{bottom:202.460800pt;}
.yef{bottom:204.201333pt;}
.y161{bottom:204.229867pt;}
.ye0{bottom:206.468267pt;}
.y7f{bottom:211.138000pt;}
.y133{bottom:212.235200pt;}
.y38{bottom:212.433867pt;}
.y113{bottom:212.884933pt;}
.y102{bottom:213.354267pt;}
.yd2{bottom:214.232000pt;}
.y27{bottom:214.878400pt;}
.y179{bottom:215.568533pt;}
.y9e{bottom:216.014667pt;}
.y121{bottom:218.014133pt;}
.ybf{bottom:219.794133pt;}
.yee{bottom:221.534667pt;}
.y160{bottom:221.563200pt;}
.y185{bottom:223.127467pt;}
.y26{bottom:227.678400pt;}
.y7e{bottom:228.471333pt;}
.y132{bottom:229.568533pt;}
.y37{bottom:229.767200pt;}
.y112{bottom:230.218267pt;}
.y145{bottom:230.253467pt;}
.y101{bottom:230.687600pt;}
.ydf{bottom:231.360667pt;}
.y178{bottom:232.901867pt;}
.y120{bottom:235.347467pt;}
.y9d{bottom:237.127467pt;}
.yed{bottom:238.868000pt;}
.yd1{bottom:239.859867pt;}
.y184{bottom:240.460800pt;}
.y25{bottom:240.478400pt;}
.y15f{bottom:242.676000pt;}
.y7d{bottom:245.804667pt;}
.y131{bottom:246.901867pt;}
.y36{bottom:247.100533pt;}
.y111{bottom:247.551600pt;}
.y100{bottom:248.020933pt;}
.y11f{bottom:252.680800pt;}
.y24{bottom:253.278400pt;}
.y177{bottom:254.014667pt;}
.y9c{bottom:254.460800pt;}
.y144{bottom:255.145867pt;}
.yec{bottom:256.201333pt;}
.y183{bottom:257.794133pt;}
.y7c{bottom:263.138000pt;}
.y15e{bottom:263.788933pt;}
.y130{bottom:264.235200pt;}
.y35{bottom:264.433867pt;}
.y110{bottom:264.884933pt;}
.yff{bottom:265.354267pt;}
.y23{bottom:266.078400pt;}
.yd0{bottom:270.096133pt;}
.y176{bottom:271.348000pt;}
.y9b{bottom:271.794133pt;}
.yeb{bottom:273.534667pt;}
.yde{bottom:274.704533pt;}
.y11e{bottom:277.573067pt;}
.y22{bottom:278.878400pt;}
.y182{bottom:278.907067pt;}
.yae{bottom:280.471333pt;}
.y34{bottom:281.767200pt;}
.y10f{bottom:282.218267pt;}
.yfe{bottom:282.687600pt;}
.y7b{bottom:284.250933pt;}
.y15d{bottom:284.901867pt;}
.y12f{bottom:285.348000pt;}
.y9a{bottom:289.127467pt;}
.yea{bottom:290.868000pt;}
.y21{bottom:291.678400pt;}
.y175{bottom:292.460800pt;}
.y181{bottom:296.240400pt;}
.yad{bottom:297.804667pt;}
.y143{bottom:298.889200pt;}
.y33{bottom:299.100533pt;}
.y10e{bottom:299.551600pt;}
.yfd{bottom:300.020933pt;}
.ycf{bottom:300.332267pt;}
.y7a{bottom:301.584267pt;}
.y12e{bottom:302.681333pt;}
.y20{bottom:304.478400pt;}
.y15c{bottom:306.014667pt;}
.y99{bottom:306.460800pt;}
.y174{bottom:313.573733pt;}
.yac{bottom:315.138000pt;}
.ye9{bottom:315.760400pt;}
.y32{bottom:316.433867pt;}
.y10d{bottom:316.884933pt;}
.y1f{bottom:317.278400pt;}
.y79{bottom:318.917600pt;}
.y12d{bottom:320.014667pt;}
.y11d{bottom:320.916933pt;}
.yfc{bottom:321.133867pt;}
.y98{bottom:323.794133pt;}
.y142{bottom:325.345867pt;}
.y15b{bottom:327.127467pt;}
.y1e{bottom:330.078400pt;}
.yce{bottom:330.568533pt;}
.yab{bottom:332.471333pt;}
.y31{bottom:333.767200pt;}
.y10c{bottom:334.218267pt;}
.y173{bottom:334.686533pt;}
.y78{bottom:336.250933pt;}
.yfb{bottom:338.467200pt;}
.ydd{bottom:339.508933pt;}
.y97{bottom:341.127467pt;}
.y1d{bottom:342.878400pt;}
.y15a{bottom:344.460800pt;}
.y12c{bottom:344.907067pt;}
.y30{bottom:351.100533pt;}
.y141{bottom:351.802533pt;}
.ydc{bottom:351.864400pt;}
.y172{bottom:352.019867pt;}
.y77{bottom:353.584267pt;}
.y1c{bottom:355.678400pt;}
.yfa{bottom:355.800533pt;}
.ybe{bottom:358.460800pt;}
.y10b{bottom:359.110667pt;}
.ycd{bottom:360.804800pt;}
.y159{bottom:361.794133pt;}
.y96{bottom:362.240400pt;}
.y2f{bottom:368.433867pt;}
.y1b{bottom:368.478400pt;}
.y76{bottom:370.917600pt;}
.y171{bottom:373.132800pt;}
.yf9{bottom:373.133867pt;}
.ybd{bottom:375.794133pt;}
.y140{bottom:378.259333pt;}
.y95{bottom:379.573733pt;}
.y158{bottom:382.907067pt;}
.y12b{bottom:384.471333pt;}
.y1a{bottom:388.249600pt;}
.y75{bottom:388.250933pt;}
.y170{bottom:390.466133pt;}
.yf8{bottom:390.467200pt;}
.ycc{bottom:391.040933pt;}
.y2e{bottom:393.326267pt;}
.y94{bottom:396.907067pt;}
.ybc{bottom:400.686667pt;}
.y19{bottom:401.049600pt;}
.y12a{bottom:401.804667pt;}
.y157{bottom:404.020000pt;}
.y13f{bottom:404.716000pt;}
.y74{bottom:405.584267pt;}
.yf7{bottom:407.800533pt;}
.y16f{bottom:411.578933pt;}
.ydb{bottom:412.598000pt;}
.y18{bottom:413.849600pt;}
.y93{bottom:414.240400pt;}
.y7{bottom:416.364800pt;}
.y129{bottom:419.138000pt;}
.ycb{bottom:421.277200pt;}
.y156{bottom:421.353333pt;}
.y73{bottom:422.917600pt;}
.y61{bottom:424.312800pt;}
.y50{bottom:424.671867pt;}
.yda{bottom:424.953600pt;}
.yf6{bottom:425.133867pt;}
.y17{bottom:426.649600pt;}
.y16e{bottom:428.912267pt;}
.y13e{bottom:431.172667pt;}
.y92{bottom:431.573733pt;}
.y128{bottom:436.471333pt;}
.y60{bottom:438.979467pt;}
.y4f{bottom:439.338533pt;}
.y16{bottom:439.449600pt;}
.ybb{bottom:440.250933pt;}
.y155{bottom:442.466133pt;}
.y72{bottom:444.030400pt;}
.y16d{bottom:446.245600pt;}
.y91{bottom:448.907067pt;}
.yf5{bottom:450.026267pt;}
.yca{bottom:451.513467pt;}
.y15{bottom:452.249600pt;}
.y5f{bottom:457.425733pt;}
.yba{bottom:457.584267pt;}
.y4e{bottom:457.784800pt;}
.y154{bottom:459.799467pt;}
.y13d{bottom:461.342800pt;}
.y71{bottom:461.363733pt;}
.y14{bottom:465.049600pt;}
.y90{bottom:466.240400pt;}
.y16c{bottom:467.358533pt;}
.yb9{bottom:474.917600pt;}
.y5e{bottom:475.871867pt;}
.y4d{bottom:476.230933pt;}
.y13{bottom:477.849600pt;}
.y70{bottom:478.697067pt;}
.y153{bottom:480.912267pt;}
.yc9{bottom:481.749600pt;}
.y8f{bottom:483.573733pt;}
.y16b{bottom:484.691867pt;}
.y5d{bottom:490.538533pt;}
.y12{bottom:490.649600pt;}
.y4c{bottom:490.897600pt;}
.yb8{bottom:492.250933pt;}
.y6f{bottom:496.030400pt;}
.y152{bottom:498.245600pt;}
.y13c{bottom:500.907067pt;}
.y180{bottom:502.025200pt;}
.y11{bottom:503.449600pt;}
.y8e{bottom:504.686667pt;}
.y5c{bottom:505.205200pt;}
.y4b{bottom:505.564267pt;}
.y16a{bottom:505.804667pt;}
.yb7{bottom:509.584267pt;}
.yc8{bottom:511.985867pt;}
.y6e{bottom:513.363733pt;}
.y10{bottom:516.249600pt;}
.y151{bottom:519.358533pt;}
.y5b{bottom:519.871867pt;}
.y4a{bottom:520.230933pt;}
.y8d{bottom:522.020000pt;}
.y169{bottom:523.138000pt;}
.y13b{bottom:525.799467pt;}
.yb6{bottom:526.917600pt;}
.yf{bottom:529.049600pt;}
.y6d{bottom:530.697067pt;}
.y5a{bottom:534.538533pt;}
.y49{bottom:534.897600pt;}
.y150{bottom:536.691867pt;}
.y8c{bottom:539.353200pt;}
.y168{bottom:540.471333pt;}
.ye{bottom:541.849600pt;}
.yc7{bottom:542.222133pt;}
.yb5{bottom:544.250933pt;}
.y6c{bottom:548.030400pt;}
.y59{bottom:549.205200pt;}
.y48{bottom:549.564267pt;}
.yd{bottom:554.649600pt;}
.y8b{bottom:556.686533pt;}
.y14f{bottom:557.804667pt;}
.yb4{bottom:561.584267pt;}
.y11c{bottom:562.338000pt;}
.yd9{bottom:563.779200pt;}
.y58{bottom:563.871867pt;}
.y47{bottom:564.230933pt;}
.y6b{bottom:565.363733pt;}
.yc{bottom:567.449600pt;}
.yc6{bottom:572.458267pt;}
.y8a{bottom:574.019867pt;}
.y14e{bottom:575.138000pt;}
.yd8{bottom:576.134667pt;}
.y57{bottom:578.538533pt;}
.y46{bottom:578.897600pt;}
.yb3{bottom:578.917600pt;}
.y6a{bottom:582.697067pt;}
.y11b{bottom:586.476667pt;}
.y89{bottom:591.353200pt;}
.y56{bottom:593.205200pt;}
.y45{bottom:593.564267pt;}
.y14d{bottom:596.250933pt;}
.y4{bottom:598.462667pt;}
.y69{bottom:600.030400pt;}
.yc5{bottom:602.694533pt;}
.yaa{bottom:603.810000pt;}
.y55{bottom:607.871867pt;}
.y44{bottom:608.230933pt;}
.y88{bottom:608.686533pt;}
.y14c{bottom:613.584267pt;}
.y10a{bottom:614.338000pt;}
.y68{bottom:617.363733pt;}
.y2d{bottom:619.355333pt;}
.y3{bottom:620.862667pt;}
.ya9{bottom:621.143333pt;}
.y54{bottom:622.538533pt;}
.y43{bottom:622.897600pt;}
.ye8{bottom:631.671333pt;}
.yc4{bottom:632.930800pt;}
.y87{bottom:633.578933pt;}
.y67{bottom:634.697067pt;}
.y53{bottom:637.205200pt;}
.y42{bottom:637.564267pt;}
.ya8{bottom:638.476667pt;}
.y18c{bottom:648.250933pt;}
.y52{bottom:651.871867pt;}
.y66{bottom:652.030400pt;}
.y41{bottom:652.230933pt;}
.ya7{bottom:655.810000pt;}
.y2{bottom:658.380800pt;}
.yc3{bottom:663.028800pt;}
.yd7{bottom:663.166933pt;}
.y14b{bottom:669.363733pt;}
.y51{bottom:670.318133pt;}
.y40{bottom:670.677067pt;}
.y65{bottom:673.143333pt;}
.y1{bottom:683.980800pt;}
.y64{bottom:690.476533pt;}
.yc2{bottom:691.447200pt;}
.y3f{bottom:693.388533pt;}
.y2c{bottom:739.159867pt;}
.y63{bottom:739.826533pt;}
.hd{height:23.872000pt;}
.h10{height:27.648000pt;}
.h12{height:29.640000pt;}
.he{height:29.696000pt;}
.h8{height:31.104000pt;}
.h6{height:31.616000pt;}
.h11{height:31.666667pt;}
.hf{height:31.829333pt;}
.h9{height:32.256000pt;}
.h5{height:34.992000pt;}
.h7{height:36.864000pt;}
.h4{height:37.728000pt;}
.ha{height:38.880000pt;}
.hb{height:40.508000pt;}
.hc{height:41.472000pt;}
.h3{height:54.432000pt;}
.h2{height:62.208000pt;}
.h13{height:71.580267pt;}
.h14{height:71.580800pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:44.418800pt;}
.x1{left:71.811067pt;}
.x4{left:75.590533pt;}
.x26{left:79.536800pt;}
.x7{left:130.393733pt;}
.x1f{left:183.002667pt;}
.x6{left:185.196800pt;}
.x13{left:188.440267pt;}
.xe{left:190.162133pt;}
.x21{left:193.248267pt;}
.xd{left:194.743867pt;}
.x11{left:213.480000pt;}
.x23{left:219.605467pt;}
.x24{left:225.461200pt;}
.x12{left:229.426667pt;}
.xf{left:323.711600pt;}
.x25{left:328.818933pt;}
.x10{left:330.254000pt;}
.x22{left:339.871467pt;}
.x20{left:341.951333pt;}
.xc{left:346.146933pt;}
.x14{left:347.572267pt;}
.x1b{left:367.230800pt;}
.x19{left:368.942800pt;}
.x1e{left:376.281467pt;}
.x15{left:400.819867pt;}
.x9{left:404.787333pt;}
.xb{left:457.159733pt;}
.x18{left:487.188800pt;}
.x1a{left:503.124400pt;}
.x1c{left:508.713733pt;}
.x5{left:513.535467pt;}
.x17{left:521.993333pt;}
.x1d{left:524.964133pt;}
.x16{left:526.852133pt;}
.x2{left:564.103867pt;}
.xa{left:567.440000pt;}
.x3{left:749.355333pt;}
}




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