
    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_6896158aee201d8a4c83f44e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.873535;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_079d2375ce6b728e5e90f86e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.338867;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_d8b87fa1dc249e50b5ef41f5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.952000;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_89cc9c53d5fe829cbac700b4.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d9190dce5bd1334ccbb56ee7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.905000;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_29a6b50fc18e13a4aae12d99.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.714000;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_5c7f86ffb38059ec3678de96.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.956000;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_40f4132754d9b7e068e5c6ab.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_8e14de982463b03277d45433.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.700000;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_70faf4700e4d1d73e7808c31.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-13.440000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.120000px;}
.v3{vertical-align:16.804800px;}
.v1{vertical-align:20.160000px;}
.ls7{letter-spacing:-1.080000px;}
.ls2{letter-spacing:-0.600000px;}
.ls4{letter-spacing:-0.300000px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.052200px;}
.lsc{letter-spacing:0.165000px;}
.ls6{letter-spacing:0.240000px;}
.lsb{letter-spacing:0.273000px;}
.ls3{letter-spacing:0.300000px;}
.ls13{letter-spacing:0.389400px;}
.ls11{letter-spacing:0.390000px;}
.ls5{letter-spacing:0.420000px;}
.ls12{letter-spacing:0.577200px;}
.lsf{letter-spacing:0.600000px;}
.ls10{letter-spacing:0.645000px;}
.ls1{letter-spacing:1.425000px;}
.lsd{letter-spacing:317.358000px;}
.ls9{letter-spacing:329.562000px;}
.ls8{letter-spacing:333.396000px;}
.lse{letter-spacing:336.204000px;}
.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;}
}
.wsa7{word-spacing:-60.000000px;}
.ws0{word-spacing:-18.984000px;}
.wsc2{word-spacing:-15.012000px;}
.wsd7{word-spacing:-13.320000px;}
.wsb1{word-spacing:-13.020000px;}
.wsa6{word-spacing:-12.720000px;}
.wsb0{word-spacing:-12.420000px;}
.wscf{word-spacing:-11.448000px;}
.ws6{word-spacing:-8.904000px;}
.wsb2{word-spacing:-8.268000px;}
.wsae{word-spacing:-8.262000px;}
.wsc6{word-spacing:-7.441200px;}
.wsc3{word-spacing:-7.344000px;}
.wsad{word-spacing:-7.260000px;}
.ws3{word-spacing:-6.614400px;}
.ws2c{word-spacing:-5.520000px;}
.ws7a{word-spacing:-5.280000px;}
.ws83{word-spacing:-5.220000px;}
.wscb{word-spacing:-4.698000px;}
.wsa1{word-spacing:-4.620000px;}
.ws138{word-spacing:-4.158000px;}
.wsdd{word-spacing:-3.900000px;}
.wsc{word-spacing:-3.672000px;}
.ws130{word-spacing:-3.618000px;}
.ws7d{word-spacing:-3.300000px;}
.wse6{word-spacing:-3.180000px;}
.ws103{word-spacing:-3.120000px;}
.ws7{word-spacing:-3.024000px;}
.wsd9{word-spacing:-3.000000px;}
.wsf2{word-spacing:-2.820000px;}
.ws39{word-spacing:-2.760000px;}
.wsf0{word-spacing:-2.700000px;}
.ws1d{word-spacing:-2.640000px;}
.wsa2{word-spacing:-2.580000px;}
.ws81{word-spacing:-2.520000px;}
.wsba{word-spacing:-2.460000px;}
.wsaa{word-spacing:-2.400000px;}
.ws7c{word-spacing:-2.340000px;}
.ws137{word-spacing:-2.322000px;}
.ws18{word-spacing:-2.280000px;}
.wsa9{word-spacing:-2.220000px;}
.wsab{word-spacing:-2.160000px;}
.ws107{word-spacing:-2.106000px;}
.ws58{word-spacing:-2.100000px;}
.ws4e{word-spacing:-2.040000px;}
.ws3b{word-spacing:-1.980000px;}
.wsb4{word-spacing:-1.920000px;}
.ws95{word-spacing:-1.890000px;}
.ws28{word-spacing:-1.860000px;}
.ws85{word-spacing:-1.800000px;}
.ws91{word-spacing:-1.740000px;}
.ws116{word-spacing:-1.728000px;}
.ws92{word-spacing:-1.680000px;}
.ws4{word-spacing:-1.668000px;}
.ws4a{word-spacing:-1.620000px;}
.ws10e{word-spacing:-1.566000px;}
.ws82{word-spacing:-1.560000px;}
.wsa4{word-spacing:-1.500000px;}
.ws123{word-spacing:-1.458000px;}
.ws35{word-spacing:-1.440000px;}
.ws16{word-spacing:-1.425000px;}
.ws5f{word-spacing:-1.380000px;}
.wse{word-spacing:-1.350000px;}
.ws5{word-spacing:-1.272000px;}
.wse0{word-spacing:-1.260000px;}
.wsb5{word-spacing:-1.200000px;}
.ws6c{word-spacing:-1.140000px;}
.ws12a{word-spacing:-1.134000px;}
.ws42{word-spacing:-1.080000px;}
.ws10a{word-spacing:-1.026000px;}
.ws33{word-spacing:-1.020000px;}
.ws135{word-spacing:-0.972000px;}
.ws26{word-spacing:-0.960000px;}
.ws98{word-spacing:-0.900000px;}
.ws3e{word-spacing:-0.840000px;}
.ws5b{word-spacing:-0.780000px;}
.ws80{word-spacing:-0.720000px;}
.ws160{word-spacing:-0.702000px;}
.wsac{word-spacing:-0.660000px;}
.ws147{word-spacing:-0.648000px;}
.wsdb{word-spacing:-0.600000px;}
.ws149{word-spacing:-0.594000px;}
.ws75{word-spacing:-0.540000px;}
.ws10b{word-spacing:-0.486000px;}
.ws7f{word-spacing:-0.480000px;}
.ws66{word-spacing:-0.420000px;}
.ws145{word-spacing:-0.378000px;}
.ws8d{word-spacing:-0.360000px;}
.ws105{word-spacing:-0.324000px;}
.ws8e{word-spacing:-0.300000px;}
.ws2e{word-spacing:-0.240000px;}
.wsa3{word-spacing:-0.180000px;}
.ws69{word-spacing:-0.120000px;}
.ws2a{word-spacing:-0.060000px;}
.ws126{word-spacing:-0.054000px;}
.ws1{word-spacing:0.000000px;}
.ws13d{word-spacing:0.054000px;}
.wsa0{word-spacing:0.060000px;}
.ws109{word-spacing:0.108000px;}
.ws4f{word-spacing:0.120000px;}
.ws111{word-spacing:0.162000px;}
.wsf6{word-spacing:0.180000px;}
.ws44{word-spacing:0.240000px;}
.ws143{word-spacing:0.270000px;}
.ws2d{word-spacing:0.300000px;}
.ws32{word-spacing:0.360000px;}
.ws14d{word-spacing:0.378000px;}
.ws21{word-spacing:0.420000px;}
.ws10d{word-spacing:0.432000px;}
.ws61{word-spacing:0.480000px;}
.ws99{word-spacing:0.540000px;}
.ws11d{word-spacing:0.594000px;}
.ws45{word-spacing:0.600000px;}
.ws114{word-spacing:0.648000px;}
.ws50{word-spacing:0.660000px;}
.ws2b{word-spacing:0.720000px;}
.ws106{word-spacing:0.756000px;}
.ws76{word-spacing:0.780000px;}
.ws121{word-spacing:0.810000px;}
.ws5d{word-spacing:0.840000px;}
.ws2f{word-spacing:0.900000px;}
.ws5a{word-spacing:0.960000px;}
.ws4d{word-spacing:1.020000px;}
.ws129{word-spacing:1.026000px;}
.ws22{word-spacing:1.080000px;}
.ws15b{word-spacing:1.134000px;}
.ws63{word-spacing:1.140000px;}
.ws156{word-spacing:1.188000px;}
.ws30{word-spacing:1.200000px;}
.ws15e{word-spacing:1.242000px;}
.ws7b{word-spacing:1.260000px;}
.wsf{word-spacing:1.296000px;}
.ws102{word-spacing:1.320000px;}
.wsef{word-spacing:1.380000px;}
.ws11c{word-spacing:1.404000px;}
.ws6e{word-spacing:1.440000px;}
.wse2{word-spacing:1.500000px;}
.ws122{word-spacing:1.512000px;}
.wsf7{word-spacing:1.560000px;}
.ws117{word-spacing:1.566000px;}
.ws64{word-spacing:1.620000px;}
.ws6d{word-spacing:1.680000px;}
.wsf4{word-spacing:1.800000px;}
.ws3c{word-spacing:1.920000px;}
.ws10f{word-spacing:1.944000px;}
.wsb6{word-spacing:1.980000px;}
.ws134{word-spacing:1.998000px;}
.ws5e{word-spacing:2.040000px;}
.wsd{word-spacing:2.052000px;}
.wsa5{word-spacing:2.100000px;}
.ws11{word-spacing:2.160000px;}
.ws46{word-spacing:2.220000px;}
.ws124{word-spacing:2.268000px;}
.ws9f{word-spacing:2.280000px;}
.ws10c{word-spacing:2.322000px;}
.wsee{word-spacing:2.340000px;}
.ws14f{word-spacing:2.376000px;}
.wsa8{word-spacing:2.400000px;}
.ws108{word-spacing:2.430000px;}
.ws38{word-spacing:2.460000px;}
.ws3d{word-spacing:2.520000px;}
.ws136{word-spacing:2.538000px;}
.ws25{word-spacing:2.580000px;}
.ws144{word-spacing:2.592000px;}
.wsb3{word-spacing:2.640000px;}
.ws8f{word-spacing:2.700000px;}
.ws132{word-spacing:2.754000px;}
.ws133{word-spacing:2.862000px;}
.ws6f{word-spacing:2.880000px;}
.ws15f{word-spacing:2.916000px;}
.ws51{word-spacing:2.940000px;}
.ws13a{word-spacing:2.970000px;}
.wsf3{word-spacing:3.000000px;}
.ws1e{word-spacing:3.060000px;}
.wsbf{word-spacing:3.120000px;}
.ws59{word-spacing:3.180000px;}
.wsc1{word-spacing:3.240000px;}
.ws34{word-spacing:3.300000px;}
.wsb9{word-spacing:3.360000px;}
.ws159{word-spacing:3.402000px;}
.ws5c{word-spacing:3.420000px;}
.ws27{word-spacing:3.480000px;}
.wsdf{word-spacing:3.540000px;}
.ws12e{word-spacing:3.564000px;}
.ws1b{word-spacing:3.660000px;}
.ws139{word-spacing:3.672000px;}
.ws115{word-spacing:3.726000px;}
.ws19{word-spacing:3.780000px;}
.ws97{word-spacing:3.834000px;}
.ws62{word-spacing:3.840000px;}
.ws150{word-spacing:3.888000px;}
.ws68{word-spacing:3.900000px;}
.ws14c{word-spacing:3.942000px;}
.ws90{word-spacing:4.020000px;}
.ws11a{word-spacing:4.050000px;}
.ws52{word-spacing:4.080000px;}
.ws4c{word-spacing:4.140000px;}
.wse4{word-spacing:4.200000px;}
.ws110{word-spacing:4.212000px;}
.ws8a{word-spacing:4.260000px;}
.wsb{word-spacing:4.320000px;}
.ws36{word-spacing:4.380000px;}
.ws8{word-spacing:4.428000px;}
.wsc0{word-spacing:4.440000px;}
.ws15{word-spacing:4.536000px;}
.wsf8{word-spacing:4.560000px;}
.wsb7{word-spacing:4.620000px;}
.ws86{word-spacing:4.680000px;}
.ws72{word-spacing:4.740000px;}
.ws13b{word-spacing:4.752000px;}
.ws43{word-spacing:4.860000px;}
.ws158{word-spacing:4.968000px;}
.ws12f{word-spacing:5.022000px;}
.ws7e{word-spacing:5.100000px;}
.ws146{word-spacing:5.130000px;}
.ws70{word-spacing:5.160000px;}
.ws112{word-spacing:5.184000px;}
.ws87{word-spacing:5.220000px;}
.ws4b{word-spacing:5.280000px;}
.ws60{word-spacing:5.340000px;}
.ws10{word-spacing:5.346000px;}
.ws54{word-spacing:5.400000px;}
.ws119{word-spacing:5.454000px;}
.ws71{word-spacing:5.460000px;}
.ws11b{word-spacing:5.508000px;}
.wsed{word-spacing:5.520000px;}
.wsff{word-spacing:5.580000px;}
.ws11e{word-spacing:5.616000px;}
.wsdc{word-spacing:5.640000px;}
.ws100{word-spacing:5.700000px;}
.ws12{word-spacing:5.724000px;}
.ws41{word-spacing:5.760000px;}
.ws47{word-spacing:5.820000px;}
.ws15a{word-spacing:5.832000px;}
.ws12c{word-spacing:5.886000px;}
.ws1c{word-spacing:5.940000px;}
.ws13c{word-spacing:5.994000px;}
.ws40{word-spacing:6.000000px;}
.ws12d{word-spacing:6.048000px;}
.ws29{word-spacing:6.120000px;}
.wsda{word-spacing:6.180000px;}
.ws157{word-spacing:6.210000px;}
.ws89{word-spacing:6.240000px;}
.ws8c{word-spacing:6.300000px;}
.ws125{word-spacing:6.318000px;}
.wsfd{word-spacing:6.360000px;}
.ws13f{word-spacing:6.372000px;}
.ws24{word-spacing:6.420000px;}
.ws9b{word-spacing:6.480000px;}
.ws104{word-spacing:6.534000px;}
.ws1a{word-spacing:6.600000px;}
.ws77{word-spacing:6.660000px;}
.ws14{word-spacing:6.696000px;}
.ws78{word-spacing:6.720000px;}
.ws12b{word-spacing:6.750000px;}
.wsf9{word-spacing:6.780000px;}
.ws14e{word-spacing:6.804000px;}
.ws9a{word-spacing:6.840000px;}
.ws15d{word-spacing:6.966000px;}
.ws56{word-spacing:7.020000px;}
.ws55{word-spacing:7.200000px;}
.ws31{word-spacing:7.320000px;}
.ws48{word-spacing:7.380000px;}
.ws74{word-spacing:7.440000px;}
.ws79{word-spacing:7.500000px;}
.ws1f{word-spacing:7.620000px;}
.ws140{word-spacing:7.668000px;}
.wsbc{word-spacing:7.740000px;}
.ws49{word-spacing:7.920000px;}
.wsfb{word-spacing:7.980000px;}
.ws6a{word-spacing:8.160000px;}
.ws148{word-spacing:8.208000px;}
.ws57{word-spacing:8.220000px;}
.ws17{word-spacing:8.340000px;}
.wseb{word-spacing:8.400000px;}
.wsde{word-spacing:8.520000px;}
.ws118{word-spacing:8.694000px;}
.ws153{word-spacing:8.748000px;}
.ws67{word-spacing:8.760000px;}
.ws127{word-spacing:8.856000px;}
.ws84{word-spacing:8.940000px;}
.ws20{word-spacing:9.000000px;}
.ws53{word-spacing:9.060000px;}
.wsa{word-spacing:9.072000px;}
.ws131{word-spacing:9.342000px;}
.ws13e{word-spacing:9.396000px;}
.ws88{word-spacing:9.420000px;}
.wsea{word-spacing:9.540000px;}
.ws3a{word-spacing:9.600000px;}
.ws152{word-spacing:9.720000px;}
.ws120{word-spacing:9.828000px;}
.wsfa{word-spacing:9.840000px;}
.ws14a{word-spacing:9.936000px;}
.ws113{word-spacing:9.990000px;}
.wsfc{word-spacing:10.200000px;}
.wsbe{word-spacing:10.320000px;}
.ws96{word-spacing:10.368000px;}
.wse3{word-spacing:10.500000px;}
.wsf5{word-spacing:10.680000px;}
.wsfe{word-spacing:10.740000px;}
.ws37{word-spacing:10.800000px;}
.ws15c{word-spacing:10.854000px;}
.wse5{word-spacing:10.860000px;}
.ws155{word-spacing:11.016000px;}
.ws14b{word-spacing:11.070000px;}
.wse7{word-spacing:11.160000px;}
.ws73{word-spacing:11.220000px;}
.ws3f{word-spacing:11.520000px;}
.ws11f{word-spacing:11.718000px;}
.ws6b{word-spacing:11.760000px;}
.wsb8{word-spacing:11.820000px;}
.wsd8{word-spacing:11.988000px;}
.ws128{word-spacing:12.042000px;}
.wse1{word-spacing:12.240000px;}
.ws142{word-spacing:12.474000px;}
.ws9d{word-spacing:12.480000px;}
.ws93{word-spacing:13.260000px;}
.ws9c{word-spacing:13.380000px;}
.wsbd{word-spacing:13.440000px;}
.ws151{word-spacing:13.446000px;}
.wse9{word-spacing:13.740000px;}
.ws23{word-spacing:13.800000px;}
.ws65{word-spacing:13.920000px;}
.wsec{word-spacing:14.520000px;}
.ws8b{word-spacing:15.180000px;}
.ws94{word-spacing:15.300000px;}
.ws13{word-spacing:15.498000px;}
.ws141{word-spacing:16.686000px;}
.ws9{word-spacing:17.118000px;}
.wsbb{word-spacing:17.640000px;}
.wse8{word-spacing:18.780000px;}
.ws154{word-spacing:21.438000px;}
.wsf1{word-spacing:22.140000px;}
.ws101{word-spacing:23.220000px;}
.ws9e{word-spacing:28.380000px;}
.ws2{word-spacing:58.987800px;}
.wsd5{word-spacing:145.206000px;}
.wsc7{word-spacing:151.848000px;}
.wsca{word-spacing:167.400000px;}
.wsd3{word-spacing:173.016000px;}
.wsc9{word-spacing:178.038000px;}
.wsd2{word-spacing:182.844000px;}
.wsd6{word-spacing:194.076000px;}
.wsc8{word-spacing:196.830000px;}
.wsd1{word-spacing:200.178000px;}
.wsd0{word-spacing:209.034000px;}
.wsd4{word-spacing:218.862000px;}
.wsce{word-spacing:245.160000px;}
.wsc5{word-spacing:312.930000px;}
.wsc4{word-spacing:335.556000px;}
.wscd{word-spacing:342.198000px;}
.wscc{word-spacing:346.140000px;}
.wsaf{word-spacing:834.354000px;}
._82{margin-left:-12.472800px;}
._4{margin-left:-8.904000px;}
._2{margin-left:-7.353600px;}
._9{margin-left:-5.683200px;}
._3{margin-left:-4.284000px;}
._a{margin-left:-3.000000px;}
._1{margin-left:-1.996800px;}
._6{width:1.936800px;}
._b{width:2.956800px;}
._d{width:4.303200px;}
._0{width:5.587200px;}
._84{width:6.588000px;}
._8{width:7.620000px;}
._7{width:8.623200px;}
._86{width:9.666000px;}
._f{width:11.988000px;}
._e{width:13.003200px;}
._85{width:16.578000px;}
._87{width:21.492000px;}
._36{width:29.160000px;}
._37{width:34.380000px;}
._83{width:71.993400px;}
._12{width:92.556000px;}
._19{width:98.496000px;}
._13{width:109.350000px;}
._66{width:112.317300px;}
._38{width:113.886000px;}
._39{width:125.442000px;}
._54{width:134.567700px;}
._18{width:157.734000px;}
._59{width:163.296000px;}
._1c{width:167.940000px;}
._62{width:189.486000px;}
._70{width:194.022000px;}
._53{width:208.008000px;}
._61{width:209.034000px;}
._58{width:212.598000px;}
._6e{width:215.946000px;}
._6b{width:220.482000px;}
._57{width:225.504000px;}
._5c{width:227.340000px;}
._68{width:230.310000px;}
._44{width:242.568000px;}
._72{width:251.964000px;}
._7e{width:253.530000px;}
._69{width:256.608000px;}
._63{width:261.198000px;}
._56{width:263.358000px;}
._4b{width:265.194000px;}
._7f{width:278.046000px;}
._3b{width:279.828000px;}
._5f{width:286.794000px;}
._71{width:289.548000px;}
._4e{width:294.246000px;}
._5e{width:295.758000px;}
._76{width:297.054000px;}
._3f{width:303.696000px;}
._81{width:304.938000px;}
._6a{width:314.064000px;}
._43{width:316.008000px;}
._42{width:321.192000px;}
._1a{width:322.704000px;}
._51{width:324.486000px;}
._3c{width:329.184000px;}
._7b{width:331.398000px;}
._7d{width:333.072000px;}
._48{width:342.036000px;}
._4a{width:345.276000px;}
._47{width:348.030000px;}
._40{width:350.190000px;}
._49{width:353.430000px;}
._17{width:357.642000px;}
._77{width:363.960000px;}
._46{width:366.066000px;}
._4c{width:378.054000px;}
._6f{width:380.052000px;}
._52{width:382.428000px;}
._3e{width:387.774000px;}
._80{width:389.556000px;}
._45{width:391.716000px;}
._79{width:396.198000px;}
._64{width:400.734000px;}
._23{width:405.108000px;}
._41{width:407.322000px;}
._60{width:413.910000px;}
._7a{width:416.070000px;}
._55{width:418.014000px;}
._73{width:425.574000px;}
._16{width:429.786000px;}
._4d{width:431.568000px;}
._5b{width:433.080000px;}
._6c{width:436.320000px;}
._15{width:448.146000px;}
._74{width:451.386000px;}
._25{width:460.836000px;}
._14{width:475.740000px;}
._1f{width:486.486000px;}
._2b{width:493.236000px;}
._21{width:514.404000px;}
._2a{width:521.370000px;}
._78{width:523.206000px;}
._1b{width:530.226000px;}
._6d{width:541.404000px;}
._75{width:554.310000px;}
._4f{width:557.604000px;}
._65{width:559.224000px;}
._5d{width:561.168000px;}
._2e{width:573.642000px;}
._1e{width:579.420000px;}
._7c{width:590.706000px;}
._50{width:593.514000px;}
._5a{width:595.026000px;}
._34{width:597.618000px;}
._67{width:613.332000px;}
._24{width:657.126000px;}
._29{width:677.538000px;}
._27{width:705.996000px;}
._26{width:765.072000px;}
._32{width:766.746000px;}
._2f{width:793.800000px;}
._1d{width:831.006000px;}
._31{width:836.514000px;}
._33{width:846.018000px;}
._20{width:863.298000px;}
._3d{width:871.398000px;}
._30{width:974.214000px;}
._2d{width:991.548000px;}
._2c{width:1029.348000px;}
._11{width:1060.776000px;}
._22{width:1074.114000px;}
._28{width:1170.072000px;}
._3a{width:1307.880000px;}
._10{width:1617.240000px;}
._5{width:1652.220000px;}
._35{width:1753.500000px;}
._c{width:1788.480000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsc{font-size:6.000000px;}
.fs9{font-size:31.200000px;}
.fse{font-size:35.100000px;}
.fs3{font-size:36.000000px;}
.fsd{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fs6{font-size:46.800000px;}
.fsa{font-size:48.000000px;}
.fs8{font-size:54.000000px;}
.fsb{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.yc{bottom:8.040000px;}
.ydb{bottom:55.825650px;}
.y10f{bottom:60.059100px;}
.yda{bottom:73.825650px;}
.y10e{bottom:74.304600px;}
.y182{bottom:76.639650px;}
.ydd{bottom:80.787300px;}
.y43{bottom:80.787900px;}
.y85{bottom:80.922750px;}
.y75{bottom:80.923950px;}
.ya5{bottom:82.423950px;}
.y1ca{bottom:86.640600px;}
.ybf{bottom:86.923950px;}
.yb1{bottom:86.932950px;}
.y10b{bottom:88.978200px;}
.y10d{bottom:90.059100px;}
.y196{bottom:91.447950px;}
.yd9{bottom:91.825650px;}
.y181{bottom:94.639650px;}
.y42{bottom:95.787900px;}
.y84{bottom:98.922750px;}
.y74{bottom:98.923950px;}
.y14{bottom:99.795000px;}
.ya4{bottom:100.423950px;}
.y1c9{bottom:103.137600px;}
.y10a{bottom:103.222200px;}
.yb0{bottom:103.429950px;}
.ybe{bottom:104.923950px;}
.y195{bottom:107.944950px;}
.yd8{bottom:109.825650px;}
.y41{bottom:110.787900px;}
.y157{bottom:110.900250px;}
.y180{bottom:112.639650px;}
.y18{bottom:113.670000px;}
.y83{bottom:116.922750px;}
.y73{bottom:116.923950px;}
.ya3{bottom:118.423950px;}
.y1c8{bottom:119.634600px;}
.yaf{bottom:119.926950px;}
.ybd{bottom:122.923950px;}
.y194{bottom:124.441950px;}
.y40{bottom:125.787900px;}
.yd7{bottom:127.825650px;}
.y17f{bottom:130.639650px;}
.y109{bottom:131.305200px;}
.y139{bottom:131.710500px;}
.y156{bottom:133.364250px;}
.y10{bottom:133.935000px;}
.y82{bottom:134.922750px;}
.y7f{bottom:134.923950px;}
.y17{bottom:135.750000px;}
.y1c7{bottom:136.131600px;}
.ya2{bottom:136.423950px;}
.ybc{bottom:140.923950px;}
.y193{bottom:140.938950px;}
.y72{bottom:143.923950px;}
.y108{bottom:148.558200px;}
.y17e{bottom:148.639650px;}
.y155{bottom:150.617250px;}
.y1c6{bottom:152.628600px;}
.y81{bottom:152.922750px;}
.y7e{bottom:152.923950px;}
.y3f{bottom:153.147900px;}
.yd6{bottom:154.825650px;}
.y15{bottom:154.950000px;}
.yf{bottom:156.015000px;}
.y192{bottom:157.435950px;}
.y16{bottom:157.830000px;}
.ybb{bottom:158.923950px;}
.y138{bottom:159.823500px;}
.ya1{bottom:163.423950px;}
.y107{bottom:165.811200px;}
.y17d{bottom:166.639650px;}
.y3e{bottom:168.147900px;}
.y154{bottom:168.194250px;}
.y1c5{bottom:169.125600px;}
.y80{bottom:170.922750px;}
.y7d{bottom:170.923950px;}
.y191{bottom:173.932950px;}
.yba{bottom:176.923950px;}
.y137{bottom:177.076500px;}
.y106{bottom:183.064200px;}
.y3d{bottom:183.147900px;}
.y17c{bottom:184.639650px;}
.y153{bottom:185.447250px;}
.y1c4{bottom:185.622600px;}
.y71{bottom:188.922750px;}
.y7c{bottom:188.923950px;}
.y190{bottom:190.429950px;}
.y136{bottom:194.329500px;}
.yb9{bottom:194.923950px;}
.y3c{bottom:198.147900px;}
.yd5{bottom:199.825650px;}
.y105{bottom:200.317200px;}
.y1c3{bottom:202.119600px;}
.y17b{bottom:202.639650px;}
.y152{bottom:202.700250px;}
.y70{bottom:206.922750px;}
.y7b{bottom:206.923950px;}
.y18f{bottom:206.926950px;}
.ya0{bottom:208.423950px;}
.y135{bottom:211.582500px;}
.yb8{bottom:212.923950px;}
.y104{bottom:217.570200px;}
.yd4{bottom:217.825650px;}
.y1c2{bottom:218.616600px;}
.y151{bottom:219.953250px;}
.y17a{bottom:220.639650px;}
.y18e{bottom:223.423950px;}
.y6f{bottom:224.922750px;}
.y7a{bottom:224.923950px;}
.y9f{bottom:226.423950px;}
.y134{bottom:228.823500px;}
.yb7{bottom:230.923950px;}
.y103{bottom:234.823200px;}
.y1c1{bottom:235.113600px;}
.yd3{bottom:235.825650px;}
.y150{bottom:237.206250px;}
.y179{bottom:238.639650px;}
.y6e{bottom:242.922750px;}
.y79{bottom:242.923950px;}
.y9e{bottom:244.423950px;}
.y18d{bottom:245.923950px;}
.y133{bottom:246.076500px;}
.yb6{bottom:248.923950px;}
.y3b{bottom:251.471850px;}
.y1c0{bottom:251.610600px;}
.y102{bottom:252.076200px;}
.y14f{bottom:254.459250px;}
.y178{bottom:256.639650px;}
.y6d{bottom:260.922750px;}
.y78{bottom:260.923950px;}
.y9d{bottom:262.423950px;}
.yd2{bottom:262.825650px;}
.y132{bottom:263.329500px;}
.y3a{bottom:267.971850px;}
.y1bf{bottom:268.107600px;}
.y101{bottom:269.329200px;}
.y14e{bottom:271.712250px;}
.y177{bottom:274.639650px;}
.yb5{bottom:275.917950px;}
.y6c{bottom:278.922750px;}
.y77{bottom:278.923950px;}
.y9c{bottom:280.423950px;}
.y131{bottom:280.582500px;}
.y18c{bottom:281.923950px;}
.y1be{bottom:284.604600px;}
.y100{bottom:286.582200px;}
.y14d{bottom:288.965250px;}
.y176{bottom:292.639650px;}
.y6b{bottom:296.922750px;}
.y10c{bottom:296.923950px;}
.y130{bottom:297.823500px;}
.y9b{bottom:298.423950px;}
.y1bd{bottom:301.101600px;}
.yff{bottom:303.835200px;}
.y18b{bottom:304.423950px;}
.y76{bottom:305.923950px;}
.y14c{bottom:306.218250px;}
.yd1{bottom:307.825650px;}
.y175{bottom:310.639650px;}
.y39{bottom:311.528700px;}
.y6a{bottom:314.922750px;}
.yae{bottom:314.923950px;}
.y12f{bottom:315.076500px;}
.y9a{bottom:316.423950px;}
.y1bc{bottom:317.598600px;}
.yfe{bottom:321.088200px;}
.y14b{bottom:323.471250px;}
.yd0{bottom:325.825650px;}
.y38{bottom:328.025700px;}
.y174{bottom:328.639650px;}
.y12e{bottom:332.329500px;}
.y69{bottom:332.922750px;}
.yad{bottom:332.923950px;}
.y1bb{bottom:334.095600px;}
.y99{bottom:334.423950px;}
.yfd{bottom:338.341200px;}
.y18a{bottom:340.419450px;}
.y14a{bottom:340.724250px;}
.ycf{bottom:343.825650px;}
.y37{bottom:344.522700px;}
.ya{bottom:344.680500px;}
.y173{bottom:346.639650px;}
.y12d{bottom:349.582500px;}
.y1ba{bottom:350.592600px;}
.y68{bottom:350.922750px;}
.yac{bottom:350.923950px;}
.y98{bottom:352.423950px;}
.yfc{bottom:355.594200px;}
.y149{bottom:357.935250px;}
.y36{bottom:361.019700px;}
.yce{bottom:361.825650px;}
.y189{bottom:362.923950px;}
.y172{bottom:364.639650px;}
.y12c{bottom:366.817500px;}
.y1b9{bottom:367.089600px;}
.y67{bottom:368.922750px;}
.yab{bottom:368.923950px;}
.y97{bottom:370.423950px;}
.yfb{bottom:372.847200px;}
.y148{bottom:375.188250px;}
.y35{bottom:377.516700px;}
.ycd{bottom:379.825650px;}
.y171{bottom:382.639650px;}
.y1b8{bottom:383.586600px;}
.y12b{bottom:384.070500px;}
.y188{bottom:385.423950px;}
.yd{bottom:386.490000px;}
.y66{bottom:386.922750px;}
.yb4{bottom:386.923950px;}
.y96{bottom:388.423950px;}
.yfa{bottom:390.100200px;}
.y147{bottom:392.441250px;}
.y34{bottom:394.013700px;}
.y9{bottom:395.689500px;}
.ycc{bottom:397.825650px;}
.y1b7{bottom:400.083600px;}
.y170{bottom:400.639650px;}
.y12a{bottom:401.323500px;}
.y65{bottom:404.922750px;}
.yaa{bottom:404.923950px;}
.y146{bottom:409.694250px;}
.y33{bottom:410.510700px;}
.y95{bottom:415.417950px;}
.y1b6{bottom:416.580600px;}
.yf9{bottom:416.722200px;}
.y129{bottom:418.576500px;}
.y16f{bottom:418.639650px;}
.y187{bottom:421.429950px;}
.y64{bottom:422.922750px;}
.ya9{bottom:422.923950px;}
.ycb{bottom:424.825650px;}
.y145{bottom:426.947250px;}
.y32{bottom:427.007700px;}
.y1b5{bottom:433.077600px;}
.yb{bottom:434.850000px;}
.y128{bottom:435.829500px;}
.y16e{bottom:436.639650px;}
.y186{bottom:437.926950px;}
.y63{bottom:440.922750px;}
.ya8{bottom:440.923950px;}
.y31{bottom:443.504700px;}
.y144{bottom:444.200250px;}
.yf8{bottom:444.467700px;}
.y94{bottom:445.423950px;}
.y8{bottom:446.698500px;}
.y1b4{bottom:449.574600px;}
.y127{bottom:453.082500px;}
.y185{bottom:454.423950px;}
.y62{bottom:458.922750px;}
.ya7{bottom:458.923950px;}
.y30{bottom:460.001700px;}
.yf7{bottom:460.222200px;}
.y143{bottom:461.453250px;}
.y16d{bottom:463.639650px;}
.y1b3{bottom:466.071600px;}
.yca{bottom:469.827750px;}
.y126{bottom:470.335500px;}
.y2f{bottom:476.498700px;}
.y61{bottom:476.922750px;}
.yb3{bottom:476.923950px;}
.y142{bottom:478.706250px;}
.y1b2{bottom:482.568600px;}
.y125{bottom:487.588500px;}
.yc9{bottom:487.827750px;}
.y11{bottom:488.055000px;}
.y2e{bottom:492.995700px;}
.y60{bottom:494.922750px;}
.y93{bottom:494.923950px;}
.y141{bottom:495.959250px;}
.y7{bottom:497.707500px;}
.y1b1{bottom:499.065600px;}
.yc8{bottom:505.827750px;}
.y16c{bottom:508.639650px;}
.y2d{bottom:509.492700px;}
.y5f{bottom:512.922750px;}
.y92{bottom:512.923950px;}
.y140{bottom:513.212250px;}
.y124{bottom:514.210500px;}
.y1b0{bottom:515.562600px;}
.yf6{bottom:517.706100px;}
.yc7{bottom:523.827750px;}
.y2c{bottom:525.989700px;}
.y16b{bottom:526.639650px;}
.y13f{bottom:530.465250px;}
.y5e{bottom:530.922750px;}
.y91{bottom:530.923950px;}
.y1af{bottom:532.059600px;}
.yf5{bottom:534.959100px;}
.y12{bottom:538.230000px;}
.yc6{bottom:541.827750px;}
.y123{bottom:541.956000px;}
.y2b{bottom:542.486700px;}
.y16a{bottom:544.639650px;}
.y13e{bottom:547.718250px;}
.y1ae{bottom:548.556600px;}
.y6{bottom:548.716500px;}
.y5d{bottom:548.922750px;}
.y90{bottom:548.923950px;}
.yf4{bottom:552.212100px;}
.y122{bottom:557.710500px;}
.ya6{bottom:557.923950px;}
.y2a{bottom:558.983700px;}
.yc5{bottom:559.827750px;}
.y169{bottom:562.639650px;}
.y13d{bottom:564.971250px;}
.y1ad{bottom:565.053600px;}
.y5c{bottom:566.922750px;}
.y8f{bottom:566.923950px;}
.yf3{bottom:569.465100px;}
.y29{bottom:575.483700px;}
.yc4{bottom:577.827750px;}
.y168{bottom:580.639650px;}
.y1ac{bottom:581.550600px;}
.y13c{bottom:582.224250px;}
.y5b{bottom:584.922750px;}
.y8e{bottom:584.923950px;}
.yf2{bottom:586.718100px;}
.y19{bottom:589.605000px;}
.yb2{bottom:593.923950px;}
.yc3{bottom:595.827750px;}
.y1ab{bottom:598.047600px;}
.y13b{bottom:599.435250px;}
.y5{bottom:599.725500px;}
.y5a{bottom:602.922750px;}
.y8d{bottom:602.923950px;}
.yf1{bottom:603.971100px;}
.y121{bottom:605.852250px;}
.yc2{bottom:613.827750px;}
.y1aa{bottom:614.544600px;}
.y13a{bottom:616.688250px;}
.y59{bottom:620.922750px;}
.y8c{bottom:620.923950px;}
.yf0{bottom:621.210600px;}
.y167{bottom:625.296300px;}
.y183{bottom:629.923950px;}
.y1a9{bottom:631.041600px;}
.yc1{bottom:631.827750px;}
.ye{bottom:631.920000px;}
.y120{bottom:633.941250px;}
.yef{bottom:636.965100px;}
.y58{bottom:638.922750px;}
.y8b{bottom:638.923950px;}
.y166{bottom:639.540300px;}
.y28{bottom:647.477700px;}
.y1a8{bottom:647.538600px;}
.y184{bottom:647.923950px;}
.yc0{bottom:649.827750px;}
.y11f{bottom:651.194250px;}
.yee{bottom:654.204600px;}
.y57{bottom:656.922750px;}
.y8a{bottom:656.923950px;}
.y1a7{bottom:664.035600px;}
.y165{bottom:667.629300px;}
.y11e{bottom:668.447250px;}
.y27{bottom:668.483700px;}
.yed{bottom:669.959100px;}
.y56{bottom:674.922750px;}
.y89{bottom:674.923950px;}
.y1a6{bottom:680.532600px;}
.y164{bottom:684.882300px;}
.y11d{bottom:685.700250px;}
.yec{bottom:687.212100px;}
.y55{bottom:692.922750px;}
.y88{bottom:692.923950px;}
.ydc{bottom:694.476300px;}
.y1a5{bottom:697.029600px;}
.y163{bottom:702.135300px;}
.y11c{bottom:702.953250px;}
.yeb{bottom:704.465100px;}
.y54{bottom:710.922750px;}
.y87{bottom:710.923950px;}
.y1a4{bottom:713.526600px;}
.y162{bottom:719.388300px;}
.y11b{bottom:720.206250px;}
.yea{bottom:721.718100px;}
.y53{bottom:728.922750px;}
.y1a3{bottom:730.023600px;}
.y161{bottom:736.641300px;}
.y11a{bottom:737.459250px;}
.y86{bottom:737.923950px;}
.ye9{bottom:738.957600px;}
.y26{bottom:743.483700px;}
.y1a2{bottom:746.520600px;}
.y52{bottom:746.922750px;}
.y160{bottom:753.894300px;}
.ye8{bottom:754.712100px;}
.y119{bottom:754.712250px;}
.y1a1{bottom:763.017600px;}
.y51{bottom:764.922750px;}
.y25{bottom:770.483700px;}
.y15f{bottom:771.147300px;}
.ye7{bottom:771.965100px;}
.y118{bottom:771.965250px;}
.y4{bottom:778.225500px;}
.y1a0{bottom:779.514600px;}
.y21{bottom:781.677300px;}
.y50{bottom:782.922750px;}
.y15e{bottom:788.400300px;}
.ye6{bottom:789.218100px;}
.y117{bottom:789.218250px;}
.y20{bottom:794.424300px;}
.y19f{bottom:796.011600px;}
.y24{bottom:797.483700px;}
.y4f{bottom:800.922750px;}
.y15d{bottom:805.653300px;}
.ye5{bottom:806.471100px;}
.y116{bottom:806.471250px;}
.y1f{bottom:807.171300px;}
.y19e{bottom:812.508600px;}
.y1a{bottom:814.123650px;}
.y13{bottom:815.670000px;}
.y4e{bottom:818.922750px;}
.y1e{bottom:819.918300px;}
.y15c{bottom:822.906300px;}
.ye4{bottom:823.724100px;}
.y115{bottom:823.724250px;}
.y23{bottom:824.483700px;}
.y19d{bottom:829.005600px;}
.y4d{bottom:836.922750px;}
.y15b{bottom:840.159300px;}
.ye3{bottom:840.977100px;}
.y114{bottom:840.977250px;}
.ye2{bottom:842.475600px;}
.y19c{bottom:845.502600px;}
.y1d{bottom:851.424300px;}
.y22{bottom:851.483700px;}
.y4c{bottom:854.922750px;}
.y15a{bottom:857.412300px;}
.ye1{bottom:858.230100px;}
.y113{bottom:858.230250px;}
.y19b{bottom:861.999600px;}
.y1c{bottom:864.171300px;}
.y4b{bottom:872.922750px;}
.y159{bottom:874.671300px;}
.y1b{bottom:876.918300px;}
.y19a{bottom:878.496600px;}
.ye0{bottom:884.852100px;}
.y112{bottom:884.852250px;}
.y4a{bottom:890.922750px;}
.y199{bottom:894.993600px;}
.y158{bottom:900.915300px;}
.y3{bottom:905.716500px;}
.y49{bottom:908.922750px;}
.y46{bottom:909.142050px;}
.y198{bottom:911.490600px;}
.ydf{bottom:912.597600px;}
.y111{bottom:912.597750px;}
.y48{bottom:926.922750px;}
.y197{bottom:927.987600px;}
.yde{bottom:928.352100px;}
.y110{bottom:928.352250px;}
.y2{bottom:964.228500px;}
.y47{bottom:967.317750px;}
.y1{bottom:989.716500px;}
.y45{bottom:1002.591000px;}
.y44{bottom:1004.090550px;}
.h17{height:4.284000px;}
.h13{height:22.276800px;}
.hb{height:25.704000px;}
.hc{height:29.988000px;}
.h4{height:33.000000px;}
.h14{height:33.600000px;}
.h15{height:34.272000px;}
.h1c{height:34.848000px;}
.h12{height:38.340000px;}
.h11{height:38.556000px;}
.h24{height:38.574000px;}
.h1b{height:39.204000px;}
.h16{height:39.900000px;}
.h22{height:40.157400px;}
.h1e{height:40.181400px;}
.h20{height:40.229400px;}
.h1f{height:40.253400px;}
.h21{height:40.349400px;}
.h10{height:42.000000px;}
.h18{height:42.600000px;}
.h19{height:42.840000px;}
.h23{height:44.646000px;}
.h1d{height:44.650800px;}
.h1a{height:50.400000px;}
.he{height:52.920000px;}
.hf{height:52.944000px;}
.h3{height:58.406250px;}
.h2{height:66.750000px;}
.hd{height:67.200000px;}
.h5{height:67.740234px;}
.h7{height:115.215000px;}
.h6{height:171.435000px;}
.h8{height:173.250000px;}
.h9{height:1028.976000px;}
.ha{height:1029.000000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w8{width:301.170000px;}
.w6{width:366.465000px;}
.w2{width:494.625000px;}
.w5{width:552.660000px;}
.w3{width:553.275000px;}
.w4{width:597.405000px;}
.w7{width:651.810000px;}
.w9{width:722.835000px;}
.wa{width:723.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:3.000000px;}
.x14{left:6.378000px;}
.x15{left:63.779550px;}
.x12{left:72.283500px;}
.x16{left:81.779550px;}
.x17{left:90.283500px;}
.x13{left:99.283500px;}
.x9{left:126.345000px;}
.x1{left:127.559100px;}
.x1e{left:163.664700px;}
.x1a{left:171.239550px;}
.x20{left:172.249650px;}
.x5{left:174.105000px;}
.x1d{left:177.703800px;}
.x2{left:191.040000px;}
.x7{left:200.715000px;}
.x8{left:217.320000px;}
.x4{left:220.050000px;}
.x6{left:222.480000px;}
.x1c{left:244.795800px;}
.xa{left:460.565550px;}
.x10{left:475.969950px;}
.xf{left:491.887950px;}
.x11{left:496.035450px;}
.xe{left:540.429450px;}
.xd{left:546.172950px;}
.xb{left:556.179450px;}
.x18{left:559.537650px;}
.x19{left:575.292150px;}
.x1f{left:587.983200px;}
.x1b{left:608.099550px;}
.xc{left:621.940950px;}
@media print{
.v2{vertical-align:-11.946667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.440000pt;}
.v3{vertical-align:14.937600pt;}
.v1{vertical-align:17.920000pt;}
.ls7{letter-spacing:-0.960000pt;}
.ls2{letter-spacing:-0.533333pt;}
.ls4{letter-spacing:-0.266667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.046400pt;}
.lsc{letter-spacing:0.146667pt;}
.ls6{letter-spacing:0.213333pt;}
.lsb{letter-spacing:0.242667pt;}
.ls3{letter-spacing:0.266667pt;}
.ls13{letter-spacing:0.346133pt;}
.ls11{letter-spacing:0.346667pt;}
.ls5{letter-spacing:0.373333pt;}
.ls12{letter-spacing:0.513067pt;}
.lsf{letter-spacing:0.533333pt;}
.ls10{letter-spacing:0.573333pt;}
.ls1{letter-spacing:1.266667pt;}
.lsd{letter-spacing:282.096000pt;}
.ls9{letter-spacing:292.944000pt;}
.ls8{letter-spacing:296.352000pt;}
.lse{letter-spacing:298.848000pt;}
.wsa7{word-spacing:-53.333333pt;}
.ws0{word-spacing:-16.874667pt;}
.wsc2{word-spacing:-13.344000pt;}
.wsd7{word-spacing:-11.840000pt;}
.wsb1{word-spacing:-11.573333pt;}
.wsa6{word-spacing:-11.306667pt;}
.wsb0{word-spacing:-11.040000pt;}
.wscf{word-spacing:-10.176000pt;}
.ws6{word-spacing:-7.914667pt;}
.wsb2{word-spacing:-7.349333pt;}
.wsae{word-spacing:-7.344000pt;}
.wsc6{word-spacing:-6.614400pt;}
.wsc3{word-spacing:-6.528000pt;}
.wsad{word-spacing:-6.453333pt;}
.ws3{word-spacing:-5.879467pt;}
.ws2c{word-spacing:-4.906667pt;}
.ws7a{word-spacing:-4.693333pt;}
.ws83{word-spacing:-4.640000pt;}
.wscb{word-spacing:-4.176000pt;}
.wsa1{word-spacing:-4.106667pt;}
.ws138{word-spacing:-3.696000pt;}
.wsdd{word-spacing:-3.466667pt;}
.wsc{word-spacing:-3.264000pt;}
.ws130{word-spacing:-3.216000pt;}
.ws7d{word-spacing:-2.933333pt;}
.wse6{word-spacing:-2.826667pt;}
.ws103{word-spacing:-2.773333pt;}
.ws7{word-spacing:-2.688000pt;}
.wsd9{word-spacing:-2.666667pt;}
.wsf2{word-spacing:-2.506667pt;}
.ws39{word-spacing:-2.453333pt;}
.wsf0{word-spacing:-2.400000pt;}
.ws1d{word-spacing:-2.346667pt;}
.wsa2{word-spacing:-2.293333pt;}
.ws81{word-spacing:-2.240000pt;}
.wsba{word-spacing:-2.186667pt;}
.wsaa{word-spacing:-2.133333pt;}
.ws7c{word-spacing:-2.080000pt;}
.ws137{word-spacing:-2.064000pt;}
.ws18{word-spacing:-2.026667pt;}
.wsa9{word-spacing:-1.973333pt;}
.wsab{word-spacing:-1.920000pt;}
.ws107{word-spacing:-1.872000pt;}
.ws58{word-spacing:-1.866667pt;}
.ws4e{word-spacing:-1.813333pt;}
.ws3b{word-spacing:-1.760000pt;}
.wsb4{word-spacing:-1.706667pt;}
.ws95{word-spacing:-1.680000pt;}
.ws28{word-spacing:-1.653333pt;}
.ws85{word-spacing:-1.600000pt;}
.ws91{word-spacing:-1.546667pt;}
.ws116{word-spacing:-1.536000pt;}
.ws92{word-spacing:-1.493333pt;}
.ws4{word-spacing:-1.482667pt;}
.ws4a{word-spacing:-1.440000pt;}
.ws10e{word-spacing:-1.392000pt;}
.ws82{word-spacing:-1.386667pt;}
.wsa4{word-spacing:-1.333333pt;}
.ws123{word-spacing:-1.296000pt;}
.ws35{word-spacing:-1.280000pt;}
.ws16{word-spacing:-1.266667pt;}
.ws5f{word-spacing:-1.226667pt;}
.wse{word-spacing:-1.200000pt;}
.ws5{word-spacing:-1.130667pt;}
.wse0{word-spacing:-1.120000pt;}
.wsb5{word-spacing:-1.066667pt;}
.ws6c{word-spacing:-1.013333pt;}
.ws12a{word-spacing:-1.008000pt;}
.ws42{word-spacing:-0.960000pt;}
.ws10a{word-spacing:-0.912000pt;}
.ws33{word-spacing:-0.906667pt;}
.ws135{word-spacing:-0.864000pt;}
.ws26{word-spacing:-0.853333pt;}
.ws98{word-spacing:-0.800000pt;}
.ws3e{word-spacing:-0.746667pt;}
.ws5b{word-spacing:-0.693333pt;}
.ws80{word-spacing:-0.640000pt;}
.ws160{word-spacing:-0.624000pt;}
.wsac{word-spacing:-0.586667pt;}
.ws147{word-spacing:-0.576000pt;}
.wsdb{word-spacing:-0.533333pt;}
.ws149{word-spacing:-0.528000pt;}
.ws75{word-spacing:-0.480000pt;}
.ws10b{word-spacing:-0.432000pt;}
.ws7f{word-spacing:-0.426667pt;}
.ws66{word-spacing:-0.373333pt;}
.ws145{word-spacing:-0.336000pt;}
.ws8d{word-spacing:-0.320000pt;}
.ws105{word-spacing:-0.288000pt;}
.ws8e{word-spacing:-0.266667pt;}
.ws2e{word-spacing:-0.213333pt;}
.wsa3{word-spacing:-0.160000pt;}
.ws69{word-spacing:-0.106667pt;}
.ws2a{word-spacing:-0.053333pt;}
.ws126{word-spacing:-0.048000pt;}
.ws1{word-spacing:0.000000pt;}
.ws13d{word-spacing:0.048000pt;}
.wsa0{word-spacing:0.053333pt;}
.ws109{word-spacing:0.096000pt;}
.ws4f{word-spacing:0.106667pt;}
.ws111{word-spacing:0.144000pt;}
.wsf6{word-spacing:0.160000pt;}
.ws44{word-spacing:0.213333pt;}
.ws143{word-spacing:0.240000pt;}
.ws2d{word-spacing:0.266667pt;}
.ws32{word-spacing:0.320000pt;}
.ws14d{word-spacing:0.336000pt;}
.ws21{word-spacing:0.373333pt;}
.ws10d{word-spacing:0.384000pt;}
.ws61{word-spacing:0.426667pt;}
.ws99{word-spacing:0.480000pt;}
.ws11d{word-spacing:0.528000pt;}
.ws45{word-spacing:0.533333pt;}
.ws114{word-spacing:0.576000pt;}
.ws50{word-spacing:0.586667pt;}
.ws2b{word-spacing:0.640000pt;}
.ws106{word-spacing:0.672000pt;}
.ws76{word-spacing:0.693333pt;}
.ws121{word-spacing:0.720000pt;}
.ws5d{word-spacing:0.746667pt;}
.ws2f{word-spacing:0.800000pt;}
.ws5a{word-spacing:0.853333pt;}
.ws4d{word-spacing:0.906667pt;}
.ws129{word-spacing:0.912000pt;}
.ws22{word-spacing:0.960000pt;}
.ws15b{word-spacing:1.008000pt;}
.ws63{word-spacing:1.013333pt;}
.ws156{word-spacing:1.056000pt;}
.ws30{word-spacing:1.066667pt;}
.ws15e{word-spacing:1.104000pt;}
.ws7b{word-spacing:1.120000pt;}
.wsf{word-spacing:1.152000pt;}
.ws102{word-spacing:1.173333pt;}
.wsef{word-spacing:1.226667pt;}
.ws11c{word-spacing:1.248000pt;}
.ws6e{word-spacing:1.280000pt;}
.wse2{word-spacing:1.333333pt;}
.ws122{word-spacing:1.344000pt;}
.wsf7{word-spacing:1.386667pt;}
.ws117{word-spacing:1.392000pt;}
.ws64{word-spacing:1.440000pt;}
.ws6d{word-spacing:1.493333pt;}
.wsf4{word-spacing:1.600000pt;}
.ws3c{word-spacing:1.706667pt;}
.ws10f{word-spacing:1.728000pt;}
.wsb6{word-spacing:1.760000pt;}
.ws134{word-spacing:1.776000pt;}
.ws5e{word-spacing:1.813333pt;}
.wsd{word-spacing:1.824000pt;}
.wsa5{word-spacing:1.866667pt;}
.ws11{word-spacing:1.920000pt;}
.ws46{word-spacing:1.973333pt;}
.ws124{word-spacing:2.016000pt;}
.ws9f{word-spacing:2.026667pt;}
.ws10c{word-spacing:2.064000pt;}
.wsee{word-spacing:2.080000pt;}
.ws14f{word-spacing:2.112000pt;}
.wsa8{word-spacing:2.133333pt;}
.ws108{word-spacing:2.160000pt;}
.ws38{word-spacing:2.186667pt;}
.ws3d{word-spacing:2.240000pt;}
.ws136{word-spacing:2.256000pt;}
.ws25{word-spacing:2.293333pt;}
.ws144{word-spacing:2.304000pt;}
.wsb3{word-spacing:2.346667pt;}
.ws8f{word-spacing:2.400000pt;}
.ws132{word-spacing:2.448000pt;}
.ws133{word-spacing:2.544000pt;}
.ws6f{word-spacing:2.560000pt;}
.ws15f{word-spacing:2.592000pt;}
.ws51{word-spacing:2.613333pt;}
.ws13a{word-spacing:2.640000pt;}
.wsf3{word-spacing:2.666667pt;}
.ws1e{word-spacing:2.720000pt;}
.wsbf{word-spacing:2.773333pt;}
.ws59{word-spacing:2.826667pt;}
.wsc1{word-spacing:2.880000pt;}
.ws34{word-spacing:2.933333pt;}
.wsb9{word-spacing:2.986667pt;}
.ws159{word-spacing:3.024000pt;}
.ws5c{word-spacing:3.040000pt;}
.ws27{word-spacing:3.093333pt;}
.wsdf{word-spacing:3.146667pt;}
.ws12e{word-spacing:3.168000pt;}
.ws1b{word-spacing:3.253333pt;}
.ws139{word-spacing:3.264000pt;}
.ws115{word-spacing:3.312000pt;}
.ws19{word-spacing:3.360000pt;}
.ws97{word-spacing:3.408000pt;}
.ws62{word-spacing:3.413333pt;}
.ws150{word-spacing:3.456000pt;}
.ws68{word-spacing:3.466667pt;}
.ws14c{word-spacing:3.504000pt;}
.ws90{word-spacing:3.573333pt;}
.ws11a{word-spacing:3.600000pt;}
.ws52{word-spacing:3.626667pt;}
.ws4c{word-spacing:3.680000pt;}
.wse4{word-spacing:3.733333pt;}
.ws110{word-spacing:3.744000pt;}
.ws8a{word-spacing:3.786667pt;}
.wsb{word-spacing:3.840000pt;}
.ws36{word-spacing:3.893333pt;}
.ws8{word-spacing:3.936000pt;}
.wsc0{word-spacing:3.946667pt;}
.ws15{word-spacing:4.032000pt;}
.wsf8{word-spacing:4.053333pt;}
.wsb7{word-spacing:4.106667pt;}
.ws86{word-spacing:4.160000pt;}
.ws72{word-spacing:4.213333pt;}
.ws13b{word-spacing:4.224000pt;}
.ws43{word-spacing:4.320000pt;}
.ws158{word-spacing:4.416000pt;}
.ws12f{word-spacing:4.464000pt;}
.ws7e{word-spacing:4.533333pt;}
.ws146{word-spacing:4.560000pt;}
.ws70{word-spacing:4.586667pt;}
.ws112{word-spacing:4.608000pt;}
.ws87{word-spacing:4.640000pt;}
.ws4b{word-spacing:4.693333pt;}
.ws60{word-spacing:4.746667pt;}
.ws10{word-spacing:4.752000pt;}
.ws54{word-spacing:4.800000pt;}
.ws119{word-spacing:4.848000pt;}
.ws71{word-spacing:4.853333pt;}
.ws11b{word-spacing:4.896000pt;}
.wsed{word-spacing:4.906667pt;}
.wsff{word-spacing:4.960000pt;}
.ws11e{word-spacing:4.992000pt;}
.wsdc{word-spacing:5.013333pt;}
.ws100{word-spacing:5.066667pt;}
.ws12{word-spacing:5.088000pt;}
.ws41{word-spacing:5.120000pt;}
.ws47{word-spacing:5.173333pt;}
.ws15a{word-spacing:5.184000pt;}
.ws12c{word-spacing:5.232000pt;}
.ws1c{word-spacing:5.280000pt;}
.ws13c{word-spacing:5.328000pt;}
.ws40{word-spacing:5.333333pt;}
.ws12d{word-spacing:5.376000pt;}
.ws29{word-spacing:5.440000pt;}
.wsda{word-spacing:5.493333pt;}
.ws157{word-spacing:5.520000pt;}
.ws89{word-spacing:5.546667pt;}
.ws8c{word-spacing:5.600000pt;}
.ws125{word-spacing:5.616000pt;}
.wsfd{word-spacing:5.653333pt;}
.ws13f{word-spacing:5.664000pt;}
.ws24{word-spacing:5.706667pt;}
.ws9b{word-spacing:5.760000pt;}
.ws104{word-spacing:5.808000pt;}
.ws1a{word-spacing:5.866667pt;}
.ws77{word-spacing:5.920000pt;}
.ws14{word-spacing:5.952000pt;}
.ws78{word-spacing:5.973333pt;}
.ws12b{word-spacing:6.000000pt;}
.wsf9{word-spacing:6.026667pt;}
.ws14e{word-spacing:6.048000pt;}
.ws9a{word-spacing:6.080000pt;}
.ws15d{word-spacing:6.192000pt;}
.ws56{word-spacing:6.240000pt;}
.ws55{word-spacing:6.400000pt;}
.ws31{word-spacing:6.506667pt;}
.ws48{word-spacing:6.560000pt;}
.ws74{word-spacing:6.613333pt;}
.ws79{word-spacing:6.666667pt;}
.ws1f{word-spacing:6.773333pt;}
.ws140{word-spacing:6.816000pt;}
.wsbc{word-spacing:6.880000pt;}
.ws49{word-spacing:7.040000pt;}
.wsfb{word-spacing:7.093333pt;}
.ws6a{word-spacing:7.253333pt;}
.ws148{word-spacing:7.296000pt;}
.ws57{word-spacing:7.306667pt;}
.ws17{word-spacing:7.413333pt;}
.wseb{word-spacing:7.466667pt;}
.wsde{word-spacing:7.573333pt;}
.ws118{word-spacing:7.728000pt;}
.ws153{word-spacing:7.776000pt;}
.ws67{word-spacing:7.786667pt;}
.ws127{word-spacing:7.872000pt;}
.ws84{word-spacing:7.946667pt;}
.ws20{word-spacing:8.000000pt;}
.ws53{word-spacing:8.053333pt;}
.wsa{word-spacing:8.064000pt;}
.ws131{word-spacing:8.304000pt;}
.ws13e{word-spacing:8.352000pt;}
.ws88{word-spacing:8.373333pt;}
.wsea{word-spacing:8.480000pt;}
.ws3a{word-spacing:8.533333pt;}
.ws152{word-spacing:8.640000pt;}
.ws120{word-spacing:8.736000pt;}
.wsfa{word-spacing:8.746667pt;}
.ws14a{word-spacing:8.832000pt;}
.ws113{word-spacing:8.880000pt;}
.wsfc{word-spacing:9.066667pt;}
.wsbe{word-spacing:9.173333pt;}
.ws96{word-spacing:9.216000pt;}
.wse3{word-spacing:9.333333pt;}
.wsf5{word-spacing:9.493333pt;}
.wsfe{word-spacing:9.546667pt;}
.ws37{word-spacing:9.600000pt;}
.ws15c{word-spacing:9.648000pt;}
.wse5{word-spacing:9.653333pt;}
.ws155{word-spacing:9.792000pt;}
.ws14b{word-spacing:9.840000pt;}
.wse7{word-spacing:9.920000pt;}
.ws73{word-spacing:9.973333pt;}
.ws3f{word-spacing:10.240000pt;}
.ws11f{word-spacing:10.416000pt;}
.ws6b{word-spacing:10.453333pt;}
.wsb8{word-spacing:10.506667pt;}
.wsd8{word-spacing:10.656000pt;}
.ws128{word-spacing:10.704000pt;}
.wse1{word-spacing:10.880000pt;}
.ws142{word-spacing:11.088000pt;}
.ws9d{word-spacing:11.093333pt;}
.ws93{word-spacing:11.786667pt;}
.ws9c{word-spacing:11.893333pt;}
.wsbd{word-spacing:11.946667pt;}
.ws151{word-spacing:11.952000pt;}
.wse9{word-spacing:12.213333pt;}
.ws23{word-spacing:12.266667pt;}
.ws65{word-spacing:12.373333pt;}
.wsec{word-spacing:12.906667pt;}
.ws8b{word-spacing:13.493333pt;}
.ws94{word-spacing:13.600000pt;}
.ws13{word-spacing:13.776000pt;}
.ws141{word-spacing:14.832000pt;}
.ws9{word-spacing:15.216000pt;}
.wsbb{word-spacing:15.680000pt;}
.wse8{word-spacing:16.693333pt;}
.ws154{word-spacing:19.056000pt;}
.wsf1{word-spacing:19.680000pt;}
.ws101{word-spacing:20.640000pt;}
.ws9e{word-spacing:25.226667pt;}
.ws2{word-spacing:52.433600pt;}
.wsd5{word-spacing:129.072000pt;}
.wsc7{word-spacing:134.976000pt;}
.wsca{word-spacing:148.800000pt;}
.wsd3{word-spacing:153.792000pt;}
.wsc9{word-spacing:158.256000pt;}
.wsd2{word-spacing:162.528000pt;}
.wsd6{word-spacing:172.512000pt;}
.wsc8{word-spacing:174.960000pt;}
.wsd1{word-spacing:177.936000pt;}
.wsd0{word-spacing:185.808000pt;}
.wsd4{word-spacing:194.544000pt;}
.wsce{word-spacing:217.920000pt;}
.wsc5{word-spacing:278.160000pt;}
.wsc4{word-spacing:298.272000pt;}
.wscd{word-spacing:304.176000pt;}
.wscc{word-spacing:307.680000pt;}
.wsaf{word-spacing:741.648000pt;}
._82{margin-left:-11.086933pt;}
._4{margin-left:-7.914667pt;}
._2{margin-left:-6.536533pt;}
._9{margin-left:-5.051733pt;}
._3{margin-left:-3.808000pt;}
._a{margin-left:-2.666667pt;}
._1{margin-left:-1.774933pt;}
._6{width:1.721600pt;}
._b{width:2.628267pt;}
._d{width:3.825067pt;}
._0{width:4.966400pt;}
._84{width:5.856000pt;}
._8{width:6.773333pt;}
._7{width:7.665067pt;}
._86{width:8.592000pt;}
._f{width:10.656000pt;}
._e{width:11.558400pt;}
._85{width:14.736000pt;}
._87{width:19.104000pt;}
._36{width:25.920000pt;}
._37{width:30.560000pt;}
._83{width:63.994133pt;}
._12{width:82.272000pt;}
._19{width:87.552000pt;}
._13{width:97.200000pt;}
._66{width:99.837600pt;}
._38{width:101.232000pt;}
._39{width:111.504000pt;}
._54{width:119.615733pt;}
._18{width:140.208000pt;}
._59{width:145.152000pt;}
._1c{width:149.280000pt;}
._62{width:168.432000pt;}
._70{width:172.464000pt;}
._53{width:184.896000pt;}
._61{width:185.808000pt;}
._58{width:188.976000pt;}
._6e{width:191.952000pt;}
._6b{width:195.984000pt;}
._57{width:200.448000pt;}
._5c{width:202.080000pt;}
._68{width:204.720000pt;}
._44{width:215.616000pt;}
._72{width:223.968000pt;}
._7e{width:225.360000pt;}
._69{width:228.096000pt;}
._63{width:232.176000pt;}
._56{width:234.096000pt;}
._4b{width:235.728000pt;}
._7f{width:247.152000pt;}
._3b{width:248.736000pt;}
._5f{width:254.928000pt;}
._71{width:257.376000pt;}
._4e{width:261.552000pt;}
._5e{width:262.896000pt;}
._76{width:264.048000pt;}
._3f{width:269.952000pt;}
._81{width:271.056000pt;}
._6a{width:279.168000pt;}
._43{width:280.896000pt;}
._42{width:285.504000pt;}
._1a{width:286.848000pt;}
._51{width:288.432000pt;}
._3c{width:292.608000pt;}
._7b{width:294.576000pt;}
._7d{width:296.064000pt;}
._48{width:304.032000pt;}
._4a{width:306.912000pt;}
._47{width:309.360000pt;}
._40{width:311.280000pt;}
._49{width:314.160000pt;}
._17{width:317.904000pt;}
._77{width:323.520000pt;}
._46{width:325.392000pt;}
._4c{width:336.048000pt;}
._6f{width:337.824000pt;}
._52{width:339.936000pt;}
._3e{width:344.688000pt;}
._80{width:346.272000pt;}
._45{width:348.192000pt;}
._79{width:352.176000pt;}
._64{width:356.208000pt;}
._23{width:360.096000pt;}
._41{width:362.064000pt;}
._60{width:367.920000pt;}
._7a{width:369.840000pt;}
._55{width:371.568000pt;}
._73{width:378.288000pt;}
._16{width:382.032000pt;}
._4d{width:383.616000pt;}
._5b{width:384.960000pt;}
._6c{width:387.840000pt;}
._15{width:398.352000pt;}
._74{width:401.232000pt;}
._25{width:409.632000pt;}
._14{width:422.880000pt;}
._1f{width:432.432000pt;}
._2b{width:438.432000pt;}
._21{width:457.248000pt;}
._2a{width:463.440000pt;}
._78{width:465.072000pt;}
._1b{width:471.312000pt;}
._6d{width:481.248000pt;}
._75{width:492.720000pt;}
._4f{width:495.648000pt;}
._65{width:497.088000pt;}
._5d{width:498.816000pt;}
._2e{width:509.904000pt;}
._1e{width:515.040000pt;}
._7c{width:525.072000pt;}
._50{width:527.568000pt;}
._5a{width:528.912000pt;}
._34{width:531.216000pt;}
._67{width:545.184000pt;}
._24{width:584.112000pt;}
._29{width:602.256000pt;}
._27{width:627.552000pt;}
._26{width:680.064000pt;}
._32{width:681.552000pt;}
._2f{width:705.600000pt;}
._1d{width:738.672000pt;}
._31{width:743.568000pt;}
._33{width:752.016000pt;}
._20{width:767.376000pt;}
._3d{width:774.576000pt;}
._30{width:865.968000pt;}
._2d{width:881.376000pt;}
._2c{width:914.976000pt;}
._11{width:942.912000pt;}
._22{width:954.768000pt;}
._28{width:1040.064000pt;}
._3a{width:1162.560000pt;}
._10{width:1437.546667pt;}
._5{width:1468.640000pt;}
._35{width:1558.666667pt;}
._c{width:1589.760000pt;}
.fsc{font-size:5.333333pt;}
.fs9{font-size:27.733333pt;}
.fse{font-size:31.200000pt;}
.fs3{font-size:32.000000pt;}
.fsd{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fs6{font-size:41.600000pt;}
.fsa{font-size:42.666667pt;}
.fs8{font-size:48.000000pt;}
.fsb{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.666667pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:7.146667pt;}
.ydb{bottom:49.622800pt;}
.y10f{bottom:53.385867pt;}
.yda{bottom:65.622800pt;}
.y10e{bottom:66.048533pt;}
.y182{bottom:68.124133pt;}
.ydd{bottom:71.810933pt;}
.y43{bottom:71.811467pt;}
.y85{bottom:71.931333pt;}
.y75{bottom:71.932400pt;}
.ya5{bottom:73.265733pt;}
.y1ca{bottom:77.013867pt;}
.ybf{bottom:77.265733pt;}
.yb1{bottom:77.273733pt;}
.y10b{bottom:79.091733pt;}
.y10d{bottom:80.052533pt;}
.y196{bottom:81.287067pt;}
.yd9{bottom:81.622800pt;}
.y181{bottom:84.124133pt;}
.y42{bottom:85.144800pt;}
.y84{bottom:87.931333pt;}
.y74{bottom:87.932400pt;}
.y14{bottom:88.706667pt;}
.ya4{bottom:89.265733pt;}
.y1c9{bottom:91.677867pt;}
.y10a{bottom:91.753067pt;}
.yb0{bottom:91.937733pt;}
.ybe{bottom:93.265733pt;}
.y195{bottom:95.951067pt;}
.yd8{bottom:97.622800pt;}
.y41{bottom:98.478133pt;}
.y157{bottom:98.578000pt;}
.y180{bottom:100.124133pt;}
.y18{bottom:101.040000pt;}
.y83{bottom:103.931333pt;}
.y73{bottom:103.932400pt;}
.ya3{bottom:105.265733pt;}
.y1c8{bottom:106.341867pt;}
.yaf{bottom:106.601733pt;}
.ybd{bottom:109.265733pt;}
.y194{bottom:110.615067pt;}
.y40{bottom:111.811467pt;}
.yd7{bottom:113.622800pt;}
.y17f{bottom:116.124133pt;}
.y109{bottom:116.715733pt;}
.y139{bottom:117.076000pt;}
.y156{bottom:118.546000pt;}
.y10{bottom:119.053333pt;}
.y82{bottom:119.931333pt;}
.y7f{bottom:119.932400pt;}
.y17{bottom:120.666667pt;}
.y1c7{bottom:121.005867pt;}
.ya2{bottom:121.265733pt;}
.ybc{bottom:125.265733pt;}
.y193{bottom:125.279067pt;}
.y72{bottom:127.932400pt;}
.y108{bottom:132.051733pt;}
.y17e{bottom:132.124133pt;}
.y155{bottom:133.882000pt;}
.y1c6{bottom:135.669867pt;}
.y81{bottom:135.931333pt;}
.y7e{bottom:135.932400pt;}
.y3f{bottom:136.131467pt;}
.yd6{bottom:137.622800pt;}
.y15{bottom:137.733333pt;}
.yf{bottom:138.680000pt;}
.y192{bottom:139.943067pt;}
.y16{bottom:140.293333pt;}
.ybb{bottom:141.265733pt;}
.y138{bottom:142.065333pt;}
.ya1{bottom:145.265733pt;}
.y107{bottom:147.387733pt;}
.y17d{bottom:148.124133pt;}
.y3e{bottom:149.464800pt;}
.y154{bottom:149.506000pt;}
.y1c5{bottom:150.333867pt;}
.y80{bottom:151.931333pt;}
.y7d{bottom:151.932400pt;}
.y191{bottom:154.607067pt;}
.yba{bottom:157.265733pt;}
.y137{bottom:157.401333pt;}
.y106{bottom:162.723733pt;}
.y3d{bottom:162.798133pt;}
.y17c{bottom:164.124133pt;}
.y153{bottom:164.842000pt;}
.y1c4{bottom:164.997867pt;}
.y71{bottom:167.931333pt;}
.y7c{bottom:167.932400pt;}
.y190{bottom:169.271067pt;}
.y136{bottom:172.737333pt;}
.yb9{bottom:173.265733pt;}
.y3c{bottom:176.131467pt;}
.yd5{bottom:177.622800pt;}
.y105{bottom:178.059733pt;}
.y1c3{bottom:179.661867pt;}
.y17b{bottom:180.124133pt;}
.y152{bottom:180.178000pt;}
.y70{bottom:183.931333pt;}
.y7b{bottom:183.932400pt;}
.y18f{bottom:183.935067pt;}
.ya0{bottom:185.265733pt;}
.y135{bottom:188.073333pt;}
.yb8{bottom:189.265733pt;}
.y104{bottom:193.395733pt;}
.yd4{bottom:193.622800pt;}
.y1c2{bottom:194.325867pt;}
.y151{bottom:195.514000pt;}
.y17a{bottom:196.124133pt;}
.y18e{bottom:198.599067pt;}
.y6f{bottom:199.931333pt;}
.y7a{bottom:199.932400pt;}
.y9f{bottom:201.265733pt;}
.y134{bottom:203.398667pt;}
.yb7{bottom:205.265733pt;}
.y103{bottom:208.731733pt;}
.y1c1{bottom:208.989867pt;}
.yd3{bottom:209.622800pt;}
.y150{bottom:210.850000pt;}
.y179{bottom:212.124133pt;}
.y6e{bottom:215.931333pt;}
.y79{bottom:215.932400pt;}
.y9e{bottom:217.265733pt;}
.y18d{bottom:218.599067pt;}
.y133{bottom:218.734667pt;}
.yb6{bottom:221.265733pt;}
.y3b{bottom:223.530533pt;}
.y1c0{bottom:223.653867pt;}
.y102{bottom:224.067733pt;}
.y14f{bottom:226.186000pt;}
.y178{bottom:228.124133pt;}
.y6d{bottom:231.931333pt;}
.y78{bottom:231.932400pt;}
.y9d{bottom:233.265733pt;}
.yd2{bottom:233.622800pt;}
.y132{bottom:234.070667pt;}
.y3a{bottom:238.197200pt;}
.y1bf{bottom:238.317867pt;}
.y101{bottom:239.403733pt;}
.y14e{bottom:241.522000pt;}
.y177{bottom:244.124133pt;}
.yb5{bottom:245.260400pt;}
.y6c{bottom:247.931333pt;}
.y77{bottom:247.932400pt;}
.y9c{bottom:249.265733pt;}
.y131{bottom:249.406667pt;}
.y18c{bottom:250.599067pt;}
.y1be{bottom:252.981867pt;}
.y100{bottom:254.739733pt;}
.y14d{bottom:256.858000pt;}
.y176{bottom:260.124133pt;}
.y6b{bottom:263.931333pt;}
.y10c{bottom:263.932400pt;}
.y130{bottom:264.732000pt;}
.y9b{bottom:265.265733pt;}
.y1bd{bottom:267.645867pt;}
.yff{bottom:270.075733pt;}
.y18b{bottom:270.599067pt;}
.y76{bottom:271.932400pt;}
.y14c{bottom:272.194000pt;}
.yd1{bottom:273.622800pt;}
.y175{bottom:276.124133pt;}
.y39{bottom:276.914400pt;}
.y6a{bottom:279.931333pt;}
.yae{bottom:279.932400pt;}
.y12f{bottom:280.068000pt;}
.y9a{bottom:281.265733pt;}
.y1bc{bottom:282.309867pt;}
.yfe{bottom:285.411733pt;}
.y14b{bottom:287.530000pt;}
.yd0{bottom:289.622800pt;}
.y38{bottom:291.578400pt;}
.y174{bottom:292.124133pt;}
.y12e{bottom:295.404000pt;}
.y69{bottom:295.931333pt;}
.yad{bottom:295.932400pt;}
.y1bb{bottom:296.973867pt;}
.y99{bottom:297.265733pt;}
.yfd{bottom:300.747733pt;}
.y18a{bottom:302.595067pt;}
.y14a{bottom:302.866000pt;}
.ycf{bottom:305.622800pt;}
.y37{bottom:306.242400pt;}
.ya{bottom:306.382667pt;}
.y173{bottom:308.124133pt;}
.y12d{bottom:310.740000pt;}
.y1ba{bottom:311.637867pt;}
.y68{bottom:311.931333pt;}
.yac{bottom:311.932400pt;}
.y98{bottom:313.265733pt;}
.yfc{bottom:316.083733pt;}
.y149{bottom:318.164667pt;}
.y36{bottom:320.906400pt;}
.yce{bottom:321.622800pt;}
.y189{bottom:322.599067pt;}
.y172{bottom:324.124133pt;}
.y12c{bottom:326.060000pt;}
.y1b9{bottom:326.301867pt;}
.y67{bottom:327.931333pt;}
.yab{bottom:327.932400pt;}
.y97{bottom:329.265733pt;}
.yfb{bottom:331.419733pt;}
.y148{bottom:333.500667pt;}
.y35{bottom:335.570400pt;}
.ycd{bottom:337.622800pt;}
.y171{bottom:340.124133pt;}
.y1b8{bottom:340.965867pt;}
.y12b{bottom:341.396000pt;}
.y188{bottom:342.599067pt;}
.yd{bottom:343.546667pt;}
.y66{bottom:343.931333pt;}
.yb4{bottom:343.932400pt;}
.y96{bottom:345.265733pt;}
.yfa{bottom:346.755733pt;}
.y147{bottom:348.836667pt;}
.y34{bottom:350.234400pt;}
.y9{bottom:351.724000pt;}
.ycc{bottom:353.622800pt;}
.y1b7{bottom:355.629867pt;}
.y170{bottom:356.124133pt;}
.y12a{bottom:356.732000pt;}
.y65{bottom:359.931333pt;}
.yaa{bottom:359.932400pt;}
.y146{bottom:364.172667pt;}
.y33{bottom:364.898400pt;}
.y95{bottom:369.260400pt;}
.y1b6{bottom:370.293867pt;}
.yf9{bottom:370.419733pt;}
.y129{bottom:372.068000pt;}
.y16f{bottom:372.124133pt;}
.y187{bottom:374.604400pt;}
.y64{bottom:375.931333pt;}
.ya9{bottom:375.932400pt;}
.ycb{bottom:377.622800pt;}
.y145{bottom:379.508667pt;}
.y32{bottom:379.562400pt;}
.y1b5{bottom:384.957867pt;}
.yb{bottom:386.533333pt;}
.y128{bottom:387.404000pt;}
.y16e{bottom:388.124133pt;}
.y186{bottom:389.268400pt;}
.y63{bottom:391.931333pt;}
.ya8{bottom:391.932400pt;}
.y31{bottom:394.226400pt;}
.y144{bottom:394.844667pt;}
.yf8{bottom:395.082400pt;}
.y94{bottom:395.932400pt;}
.y8{bottom:397.065333pt;}
.y1b4{bottom:399.621867pt;}
.y127{bottom:402.740000pt;}
.y185{bottom:403.932400pt;}
.y62{bottom:407.931333pt;}
.ya7{bottom:407.932400pt;}
.y30{bottom:408.890400pt;}
.yf7{bottom:409.086400pt;}
.y143{bottom:410.180667pt;}
.y16d{bottom:412.124133pt;}
.y1b3{bottom:414.285867pt;}
.yca{bottom:417.624667pt;}
.y126{bottom:418.076000pt;}
.y2f{bottom:423.554400pt;}
.y61{bottom:423.931333pt;}
.yb3{bottom:423.932400pt;}
.y142{bottom:425.516667pt;}
.y1b2{bottom:428.949867pt;}
.y125{bottom:433.412000pt;}
.yc9{bottom:433.624667pt;}
.y11{bottom:433.826667pt;}
.y2e{bottom:438.218400pt;}
.y60{bottom:439.931333pt;}
.y93{bottom:439.932400pt;}
.y141{bottom:440.852667pt;}
.y7{bottom:442.406667pt;}
.y1b1{bottom:443.613867pt;}
.yc8{bottom:449.624667pt;}
.y16c{bottom:452.124133pt;}
.y2d{bottom:452.882400pt;}
.y5f{bottom:455.931333pt;}
.y92{bottom:455.932400pt;}
.y140{bottom:456.188667pt;}
.y124{bottom:457.076000pt;}
.y1b0{bottom:458.277867pt;}
.yf6{bottom:460.183200pt;}
.yc7{bottom:465.624667pt;}
.y2c{bottom:467.546400pt;}
.y16b{bottom:468.124133pt;}
.y13f{bottom:471.524667pt;}
.y5e{bottom:471.931333pt;}
.y91{bottom:471.932400pt;}
.y1af{bottom:472.941867pt;}
.yf5{bottom:475.519200pt;}
.y12{bottom:478.426667pt;}
.yc6{bottom:481.624667pt;}
.y123{bottom:481.738667pt;}
.y2b{bottom:482.210400pt;}
.y16a{bottom:484.124133pt;}
.y13e{bottom:486.860667pt;}
.y1ae{bottom:487.605867pt;}
.y6{bottom:487.748000pt;}
.y5d{bottom:487.931333pt;}
.y90{bottom:487.932400pt;}
.yf4{bottom:490.855200pt;}
.y122{bottom:495.742667pt;}
.ya6{bottom:495.932400pt;}
.y2a{bottom:496.874400pt;}
.yc5{bottom:497.624667pt;}
.y169{bottom:500.124133pt;}
.y13d{bottom:502.196667pt;}
.y1ad{bottom:502.269867pt;}
.y5c{bottom:503.931333pt;}
.y8f{bottom:503.932400pt;}
.yf3{bottom:506.191200pt;}
.y29{bottom:511.541067pt;}
.yc4{bottom:513.624667pt;}
.y168{bottom:516.124133pt;}
.y1ac{bottom:516.933867pt;}
.y13c{bottom:517.532667pt;}
.y5b{bottom:519.931333pt;}
.y8e{bottom:519.932400pt;}
.yf2{bottom:521.527200pt;}
.y19{bottom:524.093333pt;}
.yb2{bottom:527.932400pt;}
.yc3{bottom:529.624667pt;}
.y1ab{bottom:531.597867pt;}
.y13b{bottom:532.831333pt;}
.y5{bottom:533.089333pt;}
.y5a{bottom:535.931333pt;}
.y8d{bottom:535.932400pt;}
.yf1{bottom:536.863200pt;}
.y121{bottom:538.535333pt;}
.yc2{bottom:545.624667pt;}
.y1aa{bottom:546.261867pt;}
.y13a{bottom:548.167333pt;}
.y59{bottom:551.931333pt;}
.y8c{bottom:551.932400pt;}
.yf0{bottom:552.187200pt;}
.y167{bottom:555.818933pt;}
.y183{bottom:559.932400pt;}
.y1a9{bottom:560.925867pt;}
.yc1{bottom:561.624667pt;}
.ye{bottom:561.706667pt;}
.y120{bottom:563.503333pt;}
.yef{bottom:566.191200pt;}
.y58{bottom:567.931333pt;}
.y8b{bottom:567.932400pt;}
.y166{bottom:568.480267pt;}
.y28{bottom:575.535733pt;}
.y1a8{bottom:575.589867pt;}
.y184{bottom:575.932400pt;}
.yc0{bottom:577.624667pt;}
.y11f{bottom:578.839333pt;}
.yee{bottom:581.515200pt;}
.y57{bottom:583.931333pt;}
.y8a{bottom:583.932400pt;}
.y1a7{bottom:590.253867pt;}
.y165{bottom:593.448267pt;}
.y11e{bottom:594.175333pt;}
.y27{bottom:594.207733pt;}
.yed{bottom:595.519200pt;}
.y56{bottom:599.931333pt;}
.y89{bottom:599.932400pt;}
.y1a6{bottom:604.917867pt;}
.y164{bottom:608.784267pt;}
.y11d{bottom:609.511333pt;}
.yec{bottom:610.855200pt;}
.y55{bottom:615.931333pt;}
.y88{bottom:615.932400pt;}
.ydc{bottom:617.312267pt;}
.y1a5{bottom:619.581867pt;}
.y163{bottom:624.120267pt;}
.y11c{bottom:624.847333pt;}
.yeb{bottom:626.191200pt;}
.y54{bottom:631.931333pt;}
.y87{bottom:631.932400pt;}
.y1a4{bottom:634.245867pt;}
.y162{bottom:639.456267pt;}
.y11b{bottom:640.183333pt;}
.yea{bottom:641.527200pt;}
.y53{bottom:647.931333pt;}
.y1a3{bottom:648.909867pt;}
.y161{bottom:654.792267pt;}
.y11a{bottom:655.519333pt;}
.y86{bottom:655.932400pt;}
.ye9{bottom:656.851200pt;}
.y26{bottom:660.874400pt;}
.y1a2{bottom:663.573867pt;}
.y52{bottom:663.931333pt;}
.y160{bottom:670.128267pt;}
.ye8{bottom:670.855200pt;}
.y119{bottom:670.855333pt;}
.y1a1{bottom:678.237867pt;}
.y51{bottom:679.931333pt;}
.y25{bottom:684.874400pt;}
.y15f{bottom:685.464267pt;}
.ye7{bottom:686.191200pt;}
.y118{bottom:686.191333pt;}
.y4{bottom:691.756000pt;}
.y1a0{bottom:692.901867pt;}
.y21{bottom:694.824267pt;}
.y50{bottom:695.931333pt;}
.y15e{bottom:700.800267pt;}
.ye6{bottom:701.527200pt;}
.y117{bottom:701.527333pt;}
.y20{bottom:706.154933pt;}
.y19f{bottom:707.565867pt;}
.y24{bottom:708.874400pt;}
.y4f{bottom:711.931333pt;}
.y15d{bottom:716.136267pt;}
.ye5{bottom:716.863200pt;}
.y116{bottom:716.863333pt;}
.y1f{bottom:717.485600pt;}
.y19e{bottom:722.229867pt;}
.y1a{bottom:723.665467pt;}
.y13{bottom:725.040000pt;}
.y4e{bottom:727.931333pt;}
.y1e{bottom:728.816267pt;}
.y15c{bottom:731.472267pt;}
.ye4{bottom:732.199200pt;}
.y115{bottom:732.199333pt;}
.y23{bottom:732.874400pt;}
.y19d{bottom:736.893867pt;}
.y4d{bottom:743.931333pt;}
.y15b{bottom:746.808267pt;}
.ye3{bottom:747.535200pt;}
.y114{bottom:747.535333pt;}
.ye2{bottom:748.867200pt;}
.y19c{bottom:751.557867pt;}
.y1d{bottom:756.821600pt;}
.y22{bottom:756.874400pt;}
.y4c{bottom:759.931333pt;}
.y15a{bottom:762.144267pt;}
.ye1{bottom:762.871200pt;}
.y113{bottom:762.871333pt;}
.y19b{bottom:766.221867pt;}
.y1c{bottom:768.152267pt;}
.y4b{bottom:775.931333pt;}
.y159{bottom:777.485600pt;}
.y1b{bottom:779.482933pt;}
.y19a{bottom:780.885867pt;}
.ye0{bottom:786.535200pt;}
.y112{bottom:786.535333pt;}
.y4a{bottom:791.931333pt;}
.y199{bottom:795.549867pt;}
.y158{bottom:800.813600pt;}
.y3{bottom:805.081333pt;}
.y49{bottom:807.931333pt;}
.y46{bottom:808.126267pt;}
.y198{bottom:810.213867pt;}
.ydf{bottom:811.197867pt;}
.y111{bottom:811.198000pt;}
.y48{bottom:823.931333pt;}
.y197{bottom:824.877867pt;}
.yde{bottom:825.201867pt;}
.y110{bottom:825.202000pt;}
.y2{bottom:857.092000pt;}
.y47{bottom:859.838000pt;}
.y1{bottom:879.748000pt;}
.y45{bottom:891.192000pt;}
.y44{bottom:892.524933pt;}
.h17{height:3.808000pt;}
.h13{height:19.801600pt;}
.hb{height:22.848000pt;}
.hc{height:26.656000pt;}
.h4{height:29.333333pt;}
.h14{height:29.866667pt;}
.h15{height:30.464000pt;}
.h1c{height:30.976000pt;}
.h12{height:34.080000pt;}
.h11{height:34.272000pt;}
.h24{height:34.288000pt;}
.h1b{height:34.848000pt;}
.h16{height:35.466667pt;}
.h22{height:35.695467pt;}
.h1e{height:35.716800pt;}
.h20{height:35.759467pt;}
.h1f{height:35.780800pt;}
.h21{height:35.866133pt;}
.h10{height:37.333333pt;}
.h18{height:37.866667pt;}
.h19{height:38.080000pt;}
.h23{height:39.685333pt;}
.h1d{height:39.689600pt;}
.h1a{height:44.800000pt;}
.he{height:47.040000pt;}
.hf{height:47.061333pt;}
.h3{height:51.916667pt;}
.h2{height:59.333333pt;}
.hd{height:59.733333pt;}
.h5{height:60.213542pt;}
.h7{height:102.413333pt;}
.h6{height:152.386667pt;}
.h8{height:154.000000pt;}
.h9{height:914.645333pt;}
.ha{height:914.666667pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w8{width:267.706667pt;}
.w6{width:325.746667pt;}
.w2{width:439.666667pt;}
.w5{width:491.253333pt;}
.w3{width:491.800000pt;}
.w4{width:531.026667pt;}
.w7{width:579.386667pt;}
.w9{width:642.520000pt;}
.wa{width:642.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:2.666667pt;}
.x14{left:5.669333pt;}
.x15{left:56.692933pt;}
.x12{left:64.252000pt;}
.x16{left:72.692933pt;}
.x17{left:80.252000pt;}
.x13{left:88.252000pt;}
.x9{left:112.306667pt;}
.x1{left:113.385867pt;}
.x1e{left:145.479733pt;}
.x1a{left:152.212933pt;}
.x20{left:153.110800pt;}
.x5{left:154.760000pt;}
.x1d{left:157.958933pt;}
.x2{left:169.813333pt;}
.x7{left:178.413333pt;}
.x8{left:193.173333pt;}
.x4{left:195.600000pt;}
.x6{left:197.760000pt;}
.x1c{left:217.596267pt;}
.xa{left:409.391600pt;}
.x10{left:423.084400pt;}
.xf{left:437.233733pt;}
.x11{left:440.920400pt;}
.xe{left:480.381733pt;}
.xd{left:485.487067pt;}
.xb{left:494.381733pt;}
.x18{left:497.366800pt;}
.x19{left:511.370800pt;}
.x1f{left:522.651733pt;}
.x1b{left:540.532933pt;}
.xc{left:552.836400pt;}
}




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