
    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_ed7e9e53ee2d015bea8577c8.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.022000;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_5710eec4c183fff7103f4306.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.135000;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_a4b0893df8d57dd9fc214e7c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.081000;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_a394842d607e8c25387b8d67.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040000;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_33c5b6b382fc231103effea6.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_126defecceb1636e16928909.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.734000;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_3442ee0ff77ea1f33b0836fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.044000;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;}
.ma{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m0{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);}
.m4{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.m2{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(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:18.742800px;}
.lse{letter-spacing:-1.305000px;}
.ls6{letter-spacing:-1.080000px;}
.ls2{letter-spacing:-0.945000px;}
.ls1{letter-spacing:-0.225000px;}
.ls4{letter-spacing:-0.175200px;}
.ls0{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.630000px;}
.lsd{letter-spacing:0.720000px;}
.lsc{letter-spacing:1.215000px;}
.ls8{letter-spacing:927.137143px;}
.ls9{letter-spacing:927.447551px;}
.lsb{letter-spacing:928.275306px;}
.ls7{letter-spacing:928.320612px;}
.lsa{letter-spacing:928.342653px;}
.ls5{letter-spacing:928.550204px;}
.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;}
}
.ws93{word-spacing:-16.694400px;}
.wsea{word-spacing:-10.800000px;}
.wsed{word-spacing:-10.320000px;}
.wseb{word-spacing:-10.215000px;}
.wsec{word-spacing:-9.720000px;}
.ws1{word-spacing:-9.000000px;}
.ws0{word-spacing:-8.775000px;}
.ws17{word-spacing:-8.055000px;}
.ws52{word-spacing:-7.920000px;}
.ws10c{word-spacing:-7.695000px;}
.ws38{word-spacing:-6.576240px;}
.wsd9{word-spacing:-6.506280px;}
.wsb2{word-spacing:-3.327600px;}
.ws56{word-spacing:-3.271200px;}
.wsd0{word-spacing:-3.214800px;}
.wsae{word-spacing:-3.158400px;}
.ws2a{word-spacing:-3.069000px;}
.ws78{word-spacing:-3.045600px;}
.ws86{word-spacing:-2.989200px;}
.ws3e{word-spacing:-2.932800px;}
.wscd{word-spacing:-2.876400px;}
.ws47{word-spacing:-2.707200px;}
.ws13{word-spacing:-2.650800px;}
.ws68{word-spacing:-2.594400px;}
.wsa{word-spacing:-2.538000px;}
.ws30{word-spacing:-2.511000px;}
.ws5{word-spacing:-2.455200px;}
.ws48{word-spacing:-2.425200px;}
.ws22{word-spacing:-2.368800px;}
.wsb{word-spacing:-2.312400px;}
.ws24{word-spacing:-2.256000px;}
.wsdf{word-spacing:-2.176200px;}
.ws5a{word-spacing:-2.143200px;}
.ws4{word-spacing:-2.120400px;}
.ws98{word-spacing:-1.974000px;}
.ws8e{word-spacing:-1.917600px;}
.wsdc{word-spacing:-1.897200px;}
.ws92{word-spacing:-1.861200px;}
.wsda{word-spacing:-1.785600px;}
.wsc{word-spacing:-1.692000px;}
.wsfb{word-spacing:-1.665000px;}
.ws14{word-spacing:-1.635600px;}
.ws20{word-spacing:-1.579200px;}
.ws87{word-spacing:-1.522800px;}
.wsb3{word-spacing:-1.512000px;}
.ws90{word-spacing:-1.466400px;}
.ws6{word-spacing:-1.450800px;}
.ws25{word-spacing:-1.410000px;}
.ws91{word-spacing:-1.353600px;}
.wsf4{word-spacing:-1.305000px;}
.ws9b{word-spacing:-1.297200px;}
.ws64{word-spacing:-1.240800px;}
.ws40{word-spacing:-1.184400px;}
.wsc5{word-spacing:-1.128000px;}
.ws9c{word-spacing:-1.071600px;}
.wsbc{word-spacing:-1.060200px;}
.wsc3{word-spacing:-1.015200px;}
.ws102{word-spacing:-0.990000px;}
.wsac{word-spacing:-0.958800px;}
.ws84{word-spacing:-0.902400px;}
.wse2{word-spacing:-0.892800px;}
.ws19{word-spacing:-0.855000px;}
.ws11{word-spacing:-0.846000px;}
.wsb6{word-spacing:-0.837000px;}
.ws51{word-spacing:-0.789600px;}
.wse8{word-spacing:-0.733200px;}
.ws3f{word-spacing:-0.676800px;}
.ws21{word-spacing:-0.620400px;}
.ws49{word-spacing:-0.564000px;}
.ws8d{word-spacing:-0.507600px;}
.ws12{word-spacing:-0.451200px;}
.ws96{word-spacing:-0.394800px;}
.ws31{word-spacing:-0.334800px;}
.ws110{word-spacing:-0.309600px;}
.ws5f{word-spacing:-0.282000px;}
.wsa0{word-spacing:-0.279000px;}
.wsf2{word-spacing:-0.270000px;}
.ws4b{word-spacing:-0.225600px;}
.wsa8{word-spacing:-0.169200px;}
.wsb8{word-spacing:-0.167400px;}
.wsc2{word-spacing:-0.112800px;}
.wsef{word-spacing:-0.090000px;}
.ws18{word-spacing:-0.043800px;}
.ws3{word-spacing:0.000000px;}
.wsa6{word-spacing:0.056400px;}
.wsaa{word-spacing:0.112800px;}
.ws94{word-spacing:0.131400px;}
.wsaf{word-spacing:0.169200px;}
.ws58{word-spacing:0.282000px;}
.ws10f{word-spacing:0.309600px;}
.wscf{word-spacing:0.338400px;}
.ws4c{word-spacing:0.394800px;}
.wsee{word-spacing:0.451200px;}
.wsbb{word-spacing:0.502200px;}
.ws4f{word-spacing:0.507600px;}
.wsbe{word-spacing:0.558000px;}
.wsdd{word-spacing:0.669600px;}
.ws23{word-spacing:0.676800px;}
.wsab{word-spacing:0.733200px;}
.wscc{word-spacing:0.789600px;}
.ws33{word-spacing:0.846000px;}
.wse1{word-spacing:0.892800px;}
.ws36{word-spacing:0.902400px;}
.ws3d{word-spacing:0.958800px;}
.ws62{word-spacing:1.015200px;}
.ws100{word-spacing:1.035000px;}
.ws1d{word-spacing:1.071600px;}
.wsdb{word-spacing:1.116000px;}
.ws101{word-spacing:1.125000px;}
.ws6f{word-spacing:1.128000px;}
.ws109{word-spacing:1.135200px;}
.wsfe{word-spacing:1.170000px;}
.wsde{word-spacing:1.227600px;}
.ws1e{word-spacing:1.240800px;}
.ws8{word-spacing:1.283400px;}
.ws97{word-spacing:1.353600px;}
.wsd4{word-spacing:1.410000px;}
.ws8f{word-spacing:1.466400px;}
.ws10b{word-spacing:1.496400px;}
.wsa1{word-spacing:1.506600px;}
.wsb1{word-spacing:1.522800px;}
.ws104{word-spacing:1.530000px;}
.ws41{word-spacing:1.579200px;}
.ws61{word-spacing:1.635600px;}
.ws88{word-spacing:1.692000px;}
.ws10e{word-spacing:1.702800px;}
.ws35{word-spacing:1.748400px;}
.ws10a{word-spacing:1.806000px;}
.ws79{word-spacing:1.861200px;}
.ws46{word-spacing:1.917600px;}
.ws1b{word-spacing:1.974000px;}
.ws28{word-spacing:2.030400px;}
.wsb7{word-spacing:2.064600px;}
.ws60{word-spacing:2.086800px;}
.ws2b{word-spacing:2.232000px;}
.ws7{word-spacing:2.287800px;}
.ws77{word-spacing:2.312400px;}
.ws3a{word-spacing:2.368800px;}
.wsbf{word-spacing:2.399400px;}
.ws65{word-spacing:2.425200px;}
.wsb5{word-spacing:2.430000px;}
.ws59{word-spacing:2.481600px;}
.ws29{word-spacing:2.538000px;}
.ws27{word-spacing:2.594400px;}
.ws69{word-spacing:2.650800px;}
.wsc8{word-spacing:2.707200px;}
.wsba{word-spacing:2.734200px;}
.ws8a{word-spacing:2.763600px;}
.ws99{word-spacing:2.820000px;}
.wsca{word-spacing:2.876400px;}
.ws105{word-spacing:2.925000px;}
.ws4e{word-spacing:2.932800px;}
.wsf{word-spacing:2.989200px;}
.wsa7{word-spacing:3.102000px;}
.wse0{word-spacing:3.124800px;}
.ws5b{word-spacing:3.158400px;}
.ws16{word-spacing:3.214800px;}
.ws63{word-spacing:3.271200px;}
.ws4a{word-spacing:3.327600px;}
.wsf7{word-spacing:3.330000px;}
.ws43{word-spacing:3.440400px;}
.ws10d{word-spacing:3.457200px;}
.ws6a{word-spacing:3.496800px;}
.ws107{word-spacing:3.508800px;}
.ws2c{word-spacing:3.515400px;}
.wsd2{word-spacing:3.553200px;}
.ws15{word-spacing:3.609600px;}
.ws5d{word-spacing:3.666000px;}
.ws4d{word-spacing:3.722400px;}
.ws7e{word-spacing:3.835200px;}
.ws55{word-spacing:3.891600px;}
.ws1c{word-spacing:3.948000px;}
.ws67{word-spacing:4.004400px;}
.ws5c{word-spacing:4.060800px;}
.wsf3{word-spacing:4.095000px;}
.wsa5{word-spacing:4.117200px;}
.wsb0{word-spacing:4.173600px;}
.wsce{word-spacing:4.230000px;}
.ws2d{word-spacing:4.240800px;}
.wsa4{word-spacing:4.286400px;}
.ws89{word-spacing:4.342800px;}
.wsb4{word-spacing:4.374000px;}
.ws1a{word-spacing:4.399200px;}
.wsfc{word-spacing:4.410000px;}
.ws71{word-spacing:4.455600px;}
.ws83{word-spacing:4.512000px;}
.wsa9{word-spacing:4.568400px;}
.ws9{word-spacing:4.575600px;}
.ws7a{word-spacing:4.624800px;}
.ws66{word-spacing:4.681200px;}
.wsc4{word-spacing:4.737600px;}
.ws6e{word-spacing:4.794000px;}
.ws9d{word-spacing:4.850400px;}
.ws103{word-spacing:4.860000px;}
.wsc7{word-spacing:4.906800px;}
.ws57{word-spacing:4.963200px;}
.ws3c{word-spacing:5.019600px;}
.wsc0{word-spacing:5.022000px;}
.ws37{word-spacing:5.076000px;}
.ws54{word-spacing:5.132400px;}
.ws2e{word-spacing:5.133600px;}
.ws74{word-spacing:5.188800px;}
.ws7d{word-spacing:5.245200px;}
.ws34{word-spacing:5.301600px;}
.wse3{word-spacing:5.356800px;}
.ws70{word-spacing:5.358000px;}
.ws7f{word-spacing:5.470800px;}
.wsd7{word-spacing:5.527200px;}
.ws75{word-spacing:5.583600px;}
.ws1f{word-spacing:5.640000px;}
.ws76{word-spacing:5.696400px;}
.ws7b{word-spacing:5.752800px;}
.ws72{word-spacing:5.865600px;}
.wsd8{word-spacing:5.922000px;}
.wse6{word-spacing:5.978400px;}
.ws108{word-spacing:6.037200px;}
.ws3b{word-spacing:6.091200px;}
.wsf5{word-spacing:6.120000px;}
.wsa3{word-spacing:6.138000px;}
.wsc6{word-spacing:6.147600px;}
.ws9f{word-spacing:6.193800px;}
.ws32{word-spacing:6.204000px;}
.wscb{word-spacing:6.260400px;}
.wsad{word-spacing:6.316800px;}
.wsf6{word-spacing:6.345000px;}
.ws7c{word-spacing:6.373200px;}
.wse9{word-spacing:6.429600px;}
.wsf1{word-spacing:6.480000px;}
.ws39{word-spacing:6.598800px;}
.ws9e{word-spacing:6.696000px;}
.ws95{word-spacing:6.711600px;}
.ws8c{word-spacing:6.768000px;}
.wsf8{word-spacing:6.840000px;}
.ws73{word-spacing:6.880800px;}
.ws2f{word-spacing:6.975000px;}
.ws6c{word-spacing:7.050000px;}
.wse4{word-spacing:7.086600px;}
.wse5{word-spacing:7.162800px;}
.wsbd{word-spacing:7.254000px;}
.ws6b{word-spacing:7.275600px;}
.wsc9{word-spacing:7.332000px;}
.ws45{word-spacing:7.444800px;}
.wse{word-spacing:7.557600px;}
.ws50{word-spacing:7.614000px;}
.ws26{word-spacing:7.670400px;}
.ws42{word-spacing:7.726800px;}
.ws82{word-spacing:7.952400px;}
.wsd3{word-spacing:8.178000px;}
.ws44{word-spacing:8.290800px;}
.ws5e{word-spacing:8.460000px;}
.ws81{word-spacing:8.629200px;}
.wse7{word-spacing:8.685600px;}
.ws80{word-spacing:8.854800px;}
.ws10{word-spacing:8.911200px;}
.ws53{word-spacing:9.249600px;}
.wsd5{word-spacing:9.306000px;}
.wsd6{word-spacing:9.531600px;}
.ws8b{word-spacing:9.588000px;}
.ws6d{word-spacing:9.757200px;}
.wsd{word-spacing:9.813600px;}
.ws85{word-spacing:9.926400px;}
.wsb9{word-spacing:9.932400px;}
.ws9a{word-spacing:9.982800px;}
.wsd1{word-spacing:10.377600px;}
.wsff{word-spacing:10.845000px;}
.wsfd{word-spacing:11.115000px;}
.wsf0{word-spacing:11.610000px;}
.ws106{word-spacing:11.790000px;}
.wsa2{word-spacing:11.885400px;}
.wsc1{word-spacing:12.126000px;}
.wsf9{word-spacing:19.035000px;}
.wsfa{word-spacing:51.795000px;}
.ws2{word-spacing:2089.350000px;}
._6{margin-left:-7.372800px;}
._5{margin-left:-6.138000px;}
._8{margin-left:-5.083200px;}
._0{margin-left:-4.020000px;}
._2{margin-left:-2.484000px;}
._4{margin-left:-1.294800px;}
._1{width:1.560000px;}
._3{width:2.700000px;}
._a{width:4.408080px;}
._9{width:7.672800px;}
._b{width:32.148198px;}
._7{width:55.450416px;}
.fc1{color:rgb(0,88,158);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:31.482000px;}
.fs6{font-size:32.531400px;}
.fs8{font-size:32.881200px;}
.fs7{font-size:43.800000px;}
.fs0{font-size:45.000000px;}
.fsb{font-size:51.600000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:55.800000px;}
.fs5{font-size:56.400000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1e{bottom:63.673350px;}
.y141{bottom:104.155200px;}
.y43{bottom:104.173350px;}
.y1d{bottom:104.185350px;}
.yec{bottom:104.266800px;}
.yea{bottom:111.667500px;}
.y63{bottom:121.925550px;}
.y140{bottom:124.408200px;}
.y1c{bottom:124.432950px;}
.yeb{bottom:124.514400px;}
.y62{bottom:139.677600px;}
.y13f{bottom:144.661200px;}
.y1b{bottom:144.680550px;}
.y42{bottom:144.685200px;}
.yfc{bottom:144.738000px;}
.y9f{bottom:144.762000px;}
.ye9{bottom:164.890800px;}
.y13e{bottom:164.914200px;}
.y1a{bottom:164.928150px;}
.y41{bottom:164.932800px;}
.y116{bottom:164.954400px;}
.yd6{bottom:164.959200px;}
.yfb{bottom:164.985600px;}
.y9e{bottom:165.009600px;}
.ye8{bottom:185.146200px;}
.y13d{bottom:185.167200px;}
.y19{bottom:185.175750px;}
.y40{bottom:185.180400px;}
.y7d{bottom:185.182800px;}
.y115{bottom:185.202000px;}
.yd5{bottom:185.206800px;}
.y61{bottom:185.209200px;}
.yfa{bottom:185.233200px;}
.y9d{bottom:185.257200px;}
.ye7{bottom:205.401600px;}
.y13c{bottom:205.420200px;}
.y18{bottom:205.423350px;}
.y3f{bottom:205.428000px;}
.y7c{bottom:205.430400px;}
.y114{bottom:205.449600px;}
.yd4{bottom:205.454400px;}
.y60{bottom:205.456800px;}
.yf9{bottom:205.480800px;}
.y9c{bottom:205.504800px;}
.ye6{bottom:225.657000px;}
.y13b{bottom:225.673200px;}
.y3e{bottom:225.675600px;}
.y7b{bottom:225.678000px;}
.y17{bottom:225.692550px;}
.y113{bottom:225.697200px;}
.yd3{bottom:225.702000px;}
.y5f{bottom:225.704400px;}
.yf8{bottom:225.728400px;}
.y9b{bottom:225.752400px;}
.ye5{bottom:245.912400px;}
.y3d{bottom:245.923200px;}
.y7a{bottom:245.925600px;}
.y16{bottom:245.940150px;}
.y112{bottom:245.944800px;}
.yd2{bottom:245.949600px;}
.y5e{bottom:245.952000px;}
.yf7{bottom:245.976000px;}
.y9a{bottom:246.000000px;}
.y3b{bottom:266.124600px;}
.yb6{bottom:266.140800px;}
.ye4{bottom:266.167800px;}
.y79{bottom:266.173200px;}
.y15{bottom:266.187750px;}
.y8b{bottom:266.190000px;}
.y111{bottom:266.192400px;}
.yd1{bottom:266.197200px;}
.y5d{bottom:266.199600px;}
.yf6{bottom:266.223600px;}
.y99{bottom:266.247600px;}
.y3c{bottom:270.818550px;}
.y3a{bottom:286.380000px;}
.yb5{bottom:286.396200px;}
.y78{bottom:286.423200px;}
.y14{bottom:286.435350px;}
.y8a{bottom:286.437600px;}
.y110{bottom:286.440000px;}
.yd0{bottom:286.444800px;}
.y5c{bottom:286.447200px;}
.yf5{bottom:286.471200px;}
.y98{bottom:286.495200px;}
.y39{bottom:306.635400px;}
.yb4{bottom:306.651600px;}
.y77{bottom:306.680400px;}
.y13{bottom:306.682950px;}
.y89{bottom:306.685200px;}
.y10f{bottom:306.687600px;}
.ycf{bottom:306.692400px;}
.y5b{bottom:306.694800px;}
.yf4{bottom:306.718800px;}
.y97{bottom:306.742800px;}
.y38{bottom:326.890800px;}
.yb3{bottom:326.907000px;}
.ye3{bottom:326.923200px;}
.y76{bottom:326.928000px;}
.y12{bottom:326.930550px;}
.y88{bottom:326.932800px;}
.y10e{bottom:326.935200px;}
.yce{bottom:326.940000px;}
.y5a{bottom:326.942400px;}
.yf3{bottom:326.966400px;}
.y96{bottom:326.990400px;}
.y37{bottom:347.146200px;}
.yb2{bottom:347.162400px;}
.y75{bottom:347.175600px;}
.y11{bottom:347.178150px;}
.y87{bottom:347.180400px;}
.y10d{bottom:347.182800px;}
.ycd{bottom:347.187600px;}
.y59{bottom:347.190000px;}
.yf2{bottom:347.214000px;}
.y95{bottom:347.238000px;}
.y12d{bottom:351.382800px;}
.y12c{bottom:365.636550px;}
.y36{bottom:367.401600px;}
.yb1{bottom:367.417800px;}
.y74{bottom:367.423200px;}
.y10{bottom:367.425750px;}
.y86{bottom:367.428000px;}
.y10c{bottom:367.430400px;}
.y73{bottom:367.432800px;}
.ycc{bottom:367.435200px;}
.y58{bottom:367.437600px;}
.yf1{bottom:367.461600px;}
.y94{bottom:367.485600px;}
.y13a{bottom:379.826550px;}
.y12b{bottom:379.890300px;}
.ye2{bottom:387.640800px;}
.y35{bottom:387.657000px;}
.yb0{bottom:387.673200px;}
.yf{bottom:387.673350px;}
.y85{bottom:387.675600px;}
.y10b{bottom:387.678000px;}
.y72{bottom:387.680400px;}
.ycb{bottom:387.682800px;}
.y57{bottom:387.685200px;}
.yf0{bottom:387.709200px;}
.y93{bottom:387.733200px;}
.y139{bottom:394.080300px;}
.y12a{bottom:394.144050px;}
.ye{bottom:407.890950px;}
.ye1{bottom:407.896200px;}
.y34{bottom:407.912400px;}
.y84{bottom:407.923200px;}
.y10a{bottom:407.925600px;}
.y71{bottom:407.928000px;}
.yca{bottom:407.930400px;}
.y56{bottom:407.932800px;}
.yef{bottom:407.956800px;}
.y92{bottom:407.980800px;}
.y129{bottom:408.397800px;}
.y138{bottom:412.586550px;}
.y128{bottom:422.651550px;}
.y137{bottom:426.840300px;}
.yd{bottom:428.146350px;}
.ye0{bottom:428.151600px;}
.y33{bottom:428.167800px;}
.yaf{bottom:428.173200px;}
.y70{bottom:428.175600px;}
.yc9{bottom:428.178000px;}
.y55{bottom:428.180400px;}
.yee{bottom:428.204400px;}
.y91{bottom:428.228400px;}
.y127{bottom:441.094050px;}
.y136{bottom:445.346550px;}
.yc{bottom:448.401750px;}
.ydf{bottom:448.407000px;}
.y109{bottom:448.412400px;}
.y32{bottom:448.423200px;}
.yc8{bottom:448.425600px;}
.y54{bottom:448.428000px;}
.yed{bottom:448.452000px;}
.y90{bottom:448.476000px;}
.y126{bottom:455.347800px;}
.y135{bottom:459.600300px;}
.yb{bottom:468.657150px;}
.yde{bottom:468.662400px;}
.y108{bottom:468.667800px;}
.yc7{bottom:468.673200px;}
.y53{bottom:468.675600px;}
.y6f{bottom:468.699600px;}
.y8f{bottom:468.723600px;}
.y125{bottom:473.854050px;}
.y134{bottom:478.106550px;}
.y124{bottom:488.107800px;}
.y107{bottom:488.869200px;}
.ya{bottom:488.912550px;}
.ydd{bottom:488.917800px;}
.y31{bottom:488.923200px;}
.yae{bottom:488.925600px;}
.y83{bottom:488.935200px;}
.y6e{bottom:488.947200px;}
.yc6{bottom:488.959200px;}
.y8e{bottom:488.971200px;}
.y133{bottom:492.360300px;}
.y123{bottom:502.361550px;}
.y132{bottom:506.614050px;}
.y106{bottom:509.124600px;}
.y9{bottom:509.167950px;}
.ydc{bottom:509.173200px;}
.y82{bottom:509.182800px;}
.y52{bottom:509.192400px;}
.y6d{bottom:509.194800px;}
.yad{bottom:509.204400px;}
.yc5{bottom:509.206800px;}
.y8d{bottom:509.218800px;}
.y122{bottom:520.867800px;}
.y131{bottom:525.120300px;}
.y105{bottom:529.380000px;}
.y8{bottom:529.423350px;}
.y81{bottom:529.430400px;}
.y51{bottom:529.440000px;}
.y6c{bottom:529.442400px;}
.yac{bottom:529.452000px;}
.yc4{bottom:529.454400px;}
.y8c{bottom:529.466400px;}
.y121{bottom:535.121550px;}
.y130{bottom:539.374050px;}
.y104{bottom:549.635400px;}
.yda{bottom:549.673200px;}
.y80{bottom:549.678000px;}
.y50{bottom:549.687600px;}
.y6b{bottom:549.690000px;}
.yab{bottom:549.699600px;}
.yc3{bottom:549.702000px;}
.y30{bottom:549.714000px;}
.y120{bottom:553.627800px;}
.ydb{bottom:554.168700px;}
.y11f{bottom:567.881550px;}
.y103{bottom:569.890800px;}
.yd9{bottom:569.923200px;}
.y7f{bottom:569.925600px;}
.y7{bottom:569.930850px;}
.y4f{bottom:569.935200px;}
.y6a{bottom:569.937600px;}
.yaa{bottom:569.947200px;}
.yc2{bottom:569.949600px;}
.y2f{bottom:569.961600px;}
.y12f{bottom:572.134050px;}
.y11e{bottom:582.135300px;}
.y12e{bottom:586.387800px;}
.y102{bottom:590.146200px;}
.y7e{bottom:590.173200px;}
.y4e{bottom:590.182800px;}
.y69{bottom:590.185200px;}
.ya9{bottom:590.194800px;}
.yc1{bottom:590.197200px;}
.y2e{bottom:590.209200px;}
.y11d{bottom:600.641550px;}
.y101{bottom:610.401600px;}
.yd8{bottom:610.423200px;}
.y4d{bottom:610.430400px;}
.y68{bottom:610.432800px;}
.ya8{bottom:610.442400px;}
.yc0{bottom:610.444800px;}
.y2d{bottom:610.456800px;}
.y11c{bottom:614.895300px;}
.y100{bottom:630.657000px;}
.yd7{bottom:630.673200px;}
.y4c{bottom:630.678000px;}
.y67{bottom:630.680400px;}
.ya7{bottom:630.690000px;}
.ybf{bottom:630.692400px;}
.y2c{bottom:630.704400px;}
.y11b{bottom:633.401550px;}
.y11a{bottom:647.655300px;}
.yff{bottom:650.912400px;}
.y4b{bottom:650.925600px;}
.y66{bottom:650.928000px;}
.ya6{bottom:650.937600px;}
.ybe{bottom:650.940000px;}
.y2b{bottom:650.952000px;}
.y119{bottom:666.161550px;}
.yfe{bottom:671.167800px;}
.y4a{bottom:671.173200px;}
.y65{bottom:671.175600px;}
.ya5{bottom:671.185200px;}
.ybd{bottom:671.187600px;}
.y2a{bottom:671.199600px;}
.y118{bottom:680.415300px;}
.y64{bottom:691.423200px;}
.ya4{bottom:691.432800px;}
.ybc{bottom:691.435200px;}
.y49{bottom:691.437600px;}
.y29{bottom:691.447200px;}
.y117{bottom:711.673200px;}
.ya3{bottom:711.680400px;}
.ybb{bottom:711.682800px;}
.y48{bottom:711.685200px;}
.y28{bottom:711.694800px;}
.yfd{bottom:731.923200px;}
.y6{bottom:731.927850px;}
.ya2{bottom:731.928000px;}
.yba{bottom:731.930400px;}
.y47{bottom:731.932800px;}
.y27{bottom:731.942400px;}
.y146{bottom:752.161200px;}
.y5{bottom:752.173350px;}
.ya1{bottom:752.175600px;}
.yb9{bottom:752.178000px;}
.y46{bottom:752.180400px;}
.y26{bottom:752.190000px;}
.y145{bottom:772.414200px;}
.ya0{bottom:772.423200px;}
.yb8{bottom:772.425600px;}
.y45{bottom:772.428000px;}
.y25{bottom:772.437600px;}
.y144{bottom:792.667200px;}
.yb7{bottom:792.673200px;}
.y4{bottom:792.673350px;}
.y44{bottom:792.675600px;}
.y24{bottom:792.685200px;}
.y143{bottom:812.920200px;}
.y23{bottom:812.932800px;}
.y142{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.y22{bottom:833.180400px;}
.y21{bottom:853.428000px;}
.y20{bottom:873.675600px;}
.y1f{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y1{bottom:952.912500px;}
.hd{height:24.776334px;}
.ha{height:25.602212px;}
.hb{height:35.346600px;}
.h2{height:35.415000px;}
.h8{height:36.315000px;}
.h9{height:40.545000px;}
.hf{height:42.498000px;}
.hc{height:45.846000px;}
.h10{height:46.491600px;}
.h6{height:47.374200px;}
.he{height:47.590200px;}
.h7{height:47.883600px;}
.h5{height:51.942000px;}
.h3{height:54.060000px;}
.h4{height:84.996000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x9{left:89.292113px;}
.xc{left:90.590850px;}
.x2{left:93.543300px;}
.x6{left:107.958900px;}
.x3{left:126.799500px;}
.x8{left:245.950050px;}
.xa{left:359.291400px;}
.x4{left:367.835400px;}
.xb{left:372.048113px;}
.x5{left:543.117900px;}
.x7{left:625.039350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.660267pt;}
.lse{letter-spacing:-1.160000pt;}
.ls6{letter-spacing:-0.960000pt;}
.ls2{letter-spacing:-0.840000pt;}
.ls1{letter-spacing:-0.200000pt;}
.ls4{letter-spacing:-0.155733pt;}
.ls0{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.560000pt;}
.lsd{letter-spacing:0.640000pt;}
.lsc{letter-spacing:1.080000pt;}
.ls8{letter-spacing:824.121905pt;}
.ls9{letter-spacing:824.397823pt;}
.lsb{letter-spacing:825.133605pt;}
.ls7{letter-spacing:825.173878pt;}
.lsa{letter-spacing:825.193469pt;}
.ls5{letter-spacing:825.377959pt;}
.ws93{word-spacing:-14.839467pt;}
.wsea{word-spacing:-9.600000pt;}
.wsed{word-spacing:-9.173333pt;}
.wseb{word-spacing:-9.080000pt;}
.wsec{word-spacing:-8.640000pt;}
.ws1{word-spacing:-8.000000pt;}
.ws0{word-spacing:-7.800000pt;}
.ws17{word-spacing:-7.160000pt;}
.ws52{word-spacing:-7.040000pt;}
.ws10c{word-spacing:-6.840000pt;}
.ws38{word-spacing:-5.845547pt;}
.wsd9{word-spacing:-5.783360pt;}
.wsb2{word-spacing:-2.957867pt;}
.ws56{word-spacing:-2.907733pt;}
.wsd0{word-spacing:-2.857600pt;}
.wsae{word-spacing:-2.807467pt;}
.ws2a{word-spacing:-2.728000pt;}
.ws78{word-spacing:-2.707200pt;}
.ws86{word-spacing:-2.657067pt;}
.ws3e{word-spacing:-2.606933pt;}
.wscd{word-spacing:-2.556800pt;}
.ws47{word-spacing:-2.406400pt;}
.ws13{word-spacing:-2.356267pt;}
.ws68{word-spacing:-2.306133pt;}
.wsa{word-spacing:-2.256000pt;}
.ws30{word-spacing:-2.232000pt;}
.ws5{word-spacing:-2.182400pt;}
.ws48{word-spacing:-2.155733pt;}
.ws22{word-spacing:-2.105600pt;}
.wsb{word-spacing:-2.055467pt;}
.ws24{word-spacing:-2.005333pt;}
.wsdf{word-spacing:-1.934400pt;}
.ws5a{word-spacing:-1.905067pt;}
.ws4{word-spacing:-1.884800pt;}
.ws98{word-spacing:-1.754667pt;}
.ws8e{word-spacing:-1.704533pt;}
.wsdc{word-spacing:-1.686400pt;}
.ws92{word-spacing:-1.654400pt;}
.wsda{word-spacing:-1.587200pt;}
.wsc{word-spacing:-1.504000pt;}
.wsfb{word-spacing:-1.480000pt;}
.ws14{word-spacing:-1.453867pt;}
.ws20{word-spacing:-1.403733pt;}
.ws87{word-spacing:-1.353600pt;}
.wsb3{word-spacing:-1.344000pt;}
.ws90{word-spacing:-1.303467pt;}
.ws6{word-spacing:-1.289600pt;}
.ws25{word-spacing:-1.253333pt;}
.ws91{word-spacing:-1.203200pt;}
.wsf4{word-spacing:-1.160000pt;}
.ws9b{word-spacing:-1.153067pt;}
.ws64{word-spacing:-1.102933pt;}
.ws40{word-spacing:-1.052800pt;}
.wsc5{word-spacing:-1.002667pt;}
.ws9c{word-spacing:-0.952533pt;}
.wsbc{word-spacing:-0.942400pt;}
.wsc3{word-spacing:-0.902400pt;}
.ws102{word-spacing:-0.880000pt;}
.wsac{word-spacing:-0.852267pt;}
.ws84{word-spacing:-0.802133pt;}
.wse2{word-spacing:-0.793600pt;}
.ws19{word-spacing:-0.760000pt;}
.ws11{word-spacing:-0.752000pt;}
.wsb6{word-spacing:-0.744000pt;}
.ws51{word-spacing:-0.701867pt;}
.wse8{word-spacing:-0.651733pt;}
.ws3f{word-spacing:-0.601600pt;}
.ws21{word-spacing:-0.551467pt;}
.ws49{word-spacing:-0.501333pt;}
.ws8d{word-spacing:-0.451200pt;}
.ws12{word-spacing:-0.401067pt;}
.ws96{word-spacing:-0.350933pt;}
.ws31{word-spacing:-0.297600pt;}
.ws110{word-spacing:-0.275200pt;}
.ws5f{word-spacing:-0.250667pt;}
.wsa0{word-spacing:-0.248000pt;}
.wsf2{word-spacing:-0.240000pt;}
.ws4b{word-spacing:-0.200533pt;}
.wsa8{word-spacing:-0.150400pt;}
.wsb8{word-spacing:-0.148800pt;}
.wsc2{word-spacing:-0.100267pt;}
.wsef{word-spacing:-0.080000pt;}
.ws18{word-spacing:-0.038933pt;}
.ws3{word-spacing:0.000000pt;}
.wsa6{word-spacing:0.050133pt;}
.wsaa{word-spacing:0.100267pt;}
.ws94{word-spacing:0.116800pt;}
.wsaf{word-spacing:0.150400pt;}
.ws58{word-spacing:0.250667pt;}
.ws10f{word-spacing:0.275200pt;}
.wscf{word-spacing:0.300800pt;}
.ws4c{word-spacing:0.350933pt;}
.wsee{word-spacing:0.401067pt;}
.wsbb{word-spacing:0.446400pt;}
.ws4f{word-spacing:0.451200pt;}
.wsbe{word-spacing:0.496000pt;}
.wsdd{word-spacing:0.595200pt;}
.ws23{word-spacing:0.601600pt;}
.wsab{word-spacing:0.651733pt;}
.wscc{word-spacing:0.701867pt;}
.ws33{word-spacing:0.752000pt;}
.wse1{word-spacing:0.793600pt;}
.ws36{word-spacing:0.802133pt;}
.ws3d{word-spacing:0.852267pt;}
.ws62{word-spacing:0.902400pt;}
.ws100{word-spacing:0.920000pt;}
.ws1d{word-spacing:0.952533pt;}
.wsdb{word-spacing:0.992000pt;}
.ws101{word-spacing:1.000000pt;}
.ws6f{word-spacing:1.002667pt;}
.ws109{word-spacing:1.009067pt;}
.wsfe{word-spacing:1.040000pt;}
.wsde{word-spacing:1.091200pt;}
.ws1e{word-spacing:1.102933pt;}
.ws8{word-spacing:1.140800pt;}
.ws97{word-spacing:1.203200pt;}
.wsd4{word-spacing:1.253333pt;}
.ws8f{word-spacing:1.303467pt;}
.ws10b{word-spacing:1.330133pt;}
.wsa1{word-spacing:1.339200pt;}
.wsb1{word-spacing:1.353600pt;}
.ws104{word-spacing:1.360000pt;}
.ws41{word-spacing:1.403733pt;}
.ws61{word-spacing:1.453867pt;}
.ws88{word-spacing:1.504000pt;}
.ws10e{word-spacing:1.513600pt;}
.ws35{word-spacing:1.554133pt;}
.ws10a{word-spacing:1.605333pt;}
.ws79{word-spacing:1.654400pt;}
.ws46{word-spacing:1.704533pt;}
.ws1b{word-spacing:1.754667pt;}
.ws28{word-spacing:1.804800pt;}
.wsb7{word-spacing:1.835200pt;}
.ws60{word-spacing:1.854933pt;}
.ws2b{word-spacing:1.984000pt;}
.ws7{word-spacing:2.033600pt;}
.ws77{word-spacing:2.055467pt;}
.ws3a{word-spacing:2.105600pt;}
.wsbf{word-spacing:2.132800pt;}
.ws65{word-spacing:2.155733pt;}
.wsb5{word-spacing:2.160000pt;}
.ws59{word-spacing:2.205867pt;}
.ws29{word-spacing:2.256000pt;}
.ws27{word-spacing:2.306133pt;}
.ws69{word-spacing:2.356267pt;}
.wsc8{word-spacing:2.406400pt;}
.wsba{word-spacing:2.430400pt;}
.ws8a{word-spacing:2.456533pt;}
.ws99{word-spacing:2.506667pt;}
.wsca{word-spacing:2.556800pt;}
.ws105{word-spacing:2.600000pt;}
.ws4e{word-spacing:2.606933pt;}
.wsf{word-spacing:2.657067pt;}
.wsa7{word-spacing:2.757333pt;}
.wse0{word-spacing:2.777600pt;}
.ws5b{word-spacing:2.807467pt;}
.ws16{word-spacing:2.857600pt;}
.ws63{word-spacing:2.907733pt;}
.ws4a{word-spacing:2.957867pt;}
.wsf7{word-spacing:2.960000pt;}
.ws43{word-spacing:3.058133pt;}
.ws10d{word-spacing:3.073067pt;}
.ws6a{word-spacing:3.108267pt;}
.ws107{word-spacing:3.118933pt;}
.ws2c{word-spacing:3.124800pt;}
.wsd2{word-spacing:3.158400pt;}
.ws15{word-spacing:3.208533pt;}
.ws5d{word-spacing:3.258667pt;}
.ws4d{word-spacing:3.308800pt;}
.ws7e{word-spacing:3.409067pt;}
.ws55{word-spacing:3.459200pt;}
.ws1c{word-spacing:3.509333pt;}
.ws67{word-spacing:3.559467pt;}
.ws5c{word-spacing:3.609600pt;}
.wsf3{word-spacing:3.640000pt;}
.wsa5{word-spacing:3.659733pt;}
.wsb0{word-spacing:3.709867pt;}
.wsce{word-spacing:3.760000pt;}
.ws2d{word-spacing:3.769600pt;}
.wsa4{word-spacing:3.810133pt;}
.ws89{word-spacing:3.860267pt;}
.wsb4{word-spacing:3.888000pt;}
.ws1a{word-spacing:3.910400pt;}
.wsfc{word-spacing:3.920000pt;}
.ws71{word-spacing:3.960533pt;}
.ws83{word-spacing:4.010667pt;}
.wsa9{word-spacing:4.060800pt;}
.ws9{word-spacing:4.067200pt;}
.ws7a{word-spacing:4.110933pt;}
.ws66{word-spacing:4.161067pt;}
.wsc4{word-spacing:4.211200pt;}
.ws6e{word-spacing:4.261333pt;}
.ws9d{word-spacing:4.311467pt;}
.ws103{word-spacing:4.320000pt;}
.wsc7{word-spacing:4.361600pt;}
.ws57{word-spacing:4.411733pt;}
.ws3c{word-spacing:4.461867pt;}
.wsc0{word-spacing:4.464000pt;}
.ws37{word-spacing:4.512000pt;}
.ws54{word-spacing:4.562133pt;}
.ws2e{word-spacing:4.563200pt;}
.ws74{word-spacing:4.612267pt;}
.ws7d{word-spacing:4.662400pt;}
.ws34{word-spacing:4.712533pt;}
.wse3{word-spacing:4.761600pt;}
.ws70{word-spacing:4.762667pt;}
.ws7f{word-spacing:4.862933pt;}
.wsd7{word-spacing:4.913067pt;}
.ws75{word-spacing:4.963200pt;}
.ws1f{word-spacing:5.013333pt;}
.ws76{word-spacing:5.063467pt;}
.ws7b{word-spacing:5.113600pt;}
.ws72{word-spacing:5.213867pt;}
.wsd8{word-spacing:5.264000pt;}
.wse6{word-spacing:5.314133pt;}
.ws108{word-spacing:5.366400pt;}
.ws3b{word-spacing:5.414400pt;}
.wsf5{word-spacing:5.440000pt;}
.wsa3{word-spacing:5.456000pt;}
.wsc6{word-spacing:5.464533pt;}
.ws9f{word-spacing:5.505600pt;}
.ws32{word-spacing:5.514667pt;}
.wscb{word-spacing:5.564800pt;}
.wsad{word-spacing:5.614933pt;}
.wsf6{word-spacing:5.640000pt;}
.ws7c{word-spacing:5.665067pt;}
.wse9{word-spacing:5.715200pt;}
.wsf1{word-spacing:5.760000pt;}
.ws39{word-spacing:5.865600pt;}
.ws9e{word-spacing:5.952000pt;}
.ws95{word-spacing:5.965867pt;}
.ws8c{word-spacing:6.016000pt;}
.wsf8{word-spacing:6.080000pt;}
.ws73{word-spacing:6.116267pt;}
.ws2f{word-spacing:6.200000pt;}
.ws6c{word-spacing:6.266667pt;}
.wse4{word-spacing:6.299200pt;}
.wse5{word-spacing:6.366933pt;}
.wsbd{word-spacing:6.448000pt;}
.ws6b{word-spacing:6.467200pt;}
.wsc9{word-spacing:6.517333pt;}
.ws45{word-spacing:6.617600pt;}
.wse{word-spacing:6.717867pt;}
.ws50{word-spacing:6.768000pt;}
.ws26{word-spacing:6.818133pt;}
.ws42{word-spacing:6.868267pt;}
.ws82{word-spacing:7.068800pt;}
.wsd3{word-spacing:7.269333pt;}
.ws44{word-spacing:7.369600pt;}
.ws5e{word-spacing:7.520000pt;}
.ws81{word-spacing:7.670400pt;}
.wse7{word-spacing:7.720533pt;}
.ws80{word-spacing:7.870933pt;}
.ws10{word-spacing:7.921067pt;}
.ws53{word-spacing:8.221867pt;}
.wsd5{word-spacing:8.272000pt;}
.wsd6{word-spacing:8.472533pt;}
.ws8b{word-spacing:8.522667pt;}
.ws6d{word-spacing:8.673067pt;}
.wsd{word-spacing:8.723200pt;}
.ws85{word-spacing:8.823467pt;}
.wsb9{word-spacing:8.828800pt;}
.ws9a{word-spacing:8.873600pt;}
.wsd1{word-spacing:9.224533pt;}
.wsff{word-spacing:9.640000pt;}
.wsfd{word-spacing:9.880000pt;}
.wsf0{word-spacing:10.320000pt;}
.ws106{word-spacing:10.480000pt;}
.wsa2{word-spacing:10.564800pt;}
.wsc1{word-spacing:10.778667pt;}
.wsf9{word-spacing:16.920000pt;}
.wsfa{word-spacing:46.040000pt;}
.ws2{word-spacing:1857.200000pt;}
._6{margin-left:-6.553600pt;}
._5{margin-left:-5.456000pt;}
._8{margin-left:-4.518400pt;}
._0{margin-left:-3.573333pt;}
._2{margin-left:-2.208000pt;}
._4{margin-left:-1.150933pt;}
._1{width:1.386667pt;}
._3{width:2.400000pt;}
._a{width:3.918293pt;}
._9{width:6.820267pt;}
._b{width:28.576176pt;}
._7{width:49.289259pt;}
.fsa{font-size:27.984000pt;}
.fs6{font-size:28.916800pt;}
.fs8{font-size:29.227733pt;}
.fs7{font-size:38.933333pt;}
.fs0{font-size:40.000000pt;}
.fsb{font-size:45.866667pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:49.600000pt;}
.fs5{font-size:50.133333pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1e{bottom:56.598533pt;}
.y141{bottom:92.582400pt;}
.y43{bottom:92.598533pt;}
.y1d{bottom:92.609200pt;}
.yec{bottom:92.681600pt;}
.yea{bottom:99.260000pt;}
.y63{bottom:108.378267pt;}
.y140{bottom:110.585067pt;}
.y1c{bottom:110.607067pt;}
.yeb{bottom:110.679467pt;}
.y62{bottom:124.157867pt;}
.y13f{bottom:128.587733pt;}
.y1b{bottom:128.604933pt;}
.y42{bottom:128.609067pt;}
.yfc{bottom:128.656000pt;}
.y9f{bottom:128.677333pt;}
.ye9{bottom:146.569600pt;}
.y13e{bottom:146.590400pt;}
.y1a{bottom:146.602800pt;}
.y41{bottom:146.606933pt;}
.y116{bottom:146.626133pt;}
.yd6{bottom:146.630400pt;}
.yfb{bottom:146.653867pt;}
.y9e{bottom:146.675200pt;}
.ye8{bottom:164.574400pt;}
.y13d{bottom:164.593067pt;}
.y19{bottom:164.600667pt;}
.y40{bottom:164.604800pt;}
.y7d{bottom:164.606933pt;}
.y115{bottom:164.624000pt;}
.yd5{bottom:164.628267pt;}
.y61{bottom:164.630400pt;}
.yfa{bottom:164.651733pt;}
.y9d{bottom:164.673067pt;}
.ye7{bottom:182.579200pt;}
.y13c{bottom:182.595733pt;}
.y18{bottom:182.598533pt;}
.y3f{bottom:182.602667pt;}
.y7c{bottom:182.604800pt;}
.y114{bottom:182.621867pt;}
.yd4{bottom:182.626133pt;}
.y60{bottom:182.628267pt;}
.yf9{bottom:182.649600pt;}
.y9c{bottom:182.670933pt;}
.ye6{bottom:200.584000pt;}
.y13b{bottom:200.598400pt;}
.y3e{bottom:200.600533pt;}
.y7b{bottom:200.602667pt;}
.y17{bottom:200.615600pt;}
.y113{bottom:200.619733pt;}
.yd3{bottom:200.624000pt;}
.y5f{bottom:200.626133pt;}
.yf8{bottom:200.647467pt;}
.y9b{bottom:200.668800pt;}
.ye5{bottom:218.588800pt;}
.y3d{bottom:218.598400pt;}
.y7a{bottom:218.600533pt;}
.y16{bottom:218.613467pt;}
.y112{bottom:218.617600pt;}
.yd2{bottom:218.621867pt;}
.y5e{bottom:218.624000pt;}
.yf7{bottom:218.645333pt;}
.y9a{bottom:218.666667pt;}
.y3b{bottom:236.555200pt;}
.yb6{bottom:236.569600pt;}
.ye4{bottom:236.593600pt;}
.y79{bottom:236.598400pt;}
.y15{bottom:236.611333pt;}
.y8b{bottom:236.613333pt;}
.y111{bottom:236.615467pt;}
.yd1{bottom:236.619733pt;}
.y5d{bottom:236.621867pt;}
.yf6{bottom:236.643200pt;}
.y99{bottom:236.664533pt;}
.y3c{bottom:240.727600pt;}
.y3a{bottom:254.560000pt;}
.yb5{bottom:254.574400pt;}
.y78{bottom:254.598400pt;}
.y14{bottom:254.609200pt;}
.y8a{bottom:254.611200pt;}
.y110{bottom:254.613333pt;}
.yd0{bottom:254.617600pt;}
.y5c{bottom:254.619733pt;}
.yf5{bottom:254.641067pt;}
.y98{bottom:254.662400pt;}
.y39{bottom:272.564800pt;}
.yb4{bottom:272.579200pt;}
.y77{bottom:272.604800pt;}
.y13{bottom:272.607067pt;}
.y89{bottom:272.609067pt;}
.y10f{bottom:272.611200pt;}
.ycf{bottom:272.615467pt;}
.y5b{bottom:272.617600pt;}
.yf4{bottom:272.638933pt;}
.y97{bottom:272.660267pt;}
.y38{bottom:290.569600pt;}
.yb3{bottom:290.584000pt;}
.ye3{bottom:290.598400pt;}
.y76{bottom:290.602667pt;}
.y12{bottom:290.604933pt;}
.y88{bottom:290.606933pt;}
.y10e{bottom:290.609067pt;}
.yce{bottom:290.613333pt;}
.y5a{bottom:290.615467pt;}
.yf3{bottom:290.636800pt;}
.y96{bottom:290.658133pt;}
.y37{bottom:308.574400pt;}
.yb2{bottom:308.588800pt;}
.y75{bottom:308.600533pt;}
.y11{bottom:308.602800pt;}
.y87{bottom:308.604800pt;}
.y10d{bottom:308.606933pt;}
.ycd{bottom:308.611200pt;}
.y59{bottom:308.613333pt;}
.yf2{bottom:308.634667pt;}
.y95{bottom:308.656000pt;}
.y12d{bottom:312.340267pt;}
.y12c{bottom:325.010267pt;}
.y36{bottom:326.579200pt;}
.yb1{bottom:326.593600pt;}
.y74{bottom:326.598400pt;}
.y10{bottom:326.600667pt;}
.y86{bottom:326.602667pt;}
.y10c{bottom:326.604800pt;}
.y73{bottom:326.606933pt;}
.ycc{bottom:326.609067pt;}
.y58{bottom:326.611200pt;}
.yf1{bottom:326.632533pt;}
.y94{bottom:326.653867pt;}
.y13a{bottom:337.623600pt;}
.y12b{bottom:337.680267pt;}
.ye2{bottom:344.569600pt;}
.y35{bottom:344.584000pt;}
.yb0{bottom:344.598400pt;}
.yf{bottom:344.598533pt;}
.y85{bottom:344.600533pt;}
.y10b{bottom:344.602667pt;}
.y72{bottom:344.604800pt;}
.ycb{bottom:344.606933pt;}
.y57{bottom:344.609067pt;}
.yf0{bottom:344.630400pt;}
.y93{bottom:344.651733pt;}
.y139{bottom:350.293600pt;}
.y12a{bottom:350.350267pt;}
.ye{bottom:362.569733pt;}
.ye1{bottom:362.574400pt;}
.y34{bottom:362.588800pt;}
.y84{bottom:362.598400pt;}
.y10a{bottom:362.600533pt;}
.y71{bottom:362.602667pt;}
.yca{bottom:362.604800pt;}
.y56{bottom:362.606933pt;}
.yef{bottom:362.628267pt;}
.y92{bottom:362.649600pt;}
.y129{bottom:363.020267pt;}
.y138{bottom:366.743600pt;}
.y128{bottom:375.690267pt;}
.y137{bottom:379.413600pt;}
.yd{bottom:380.574533pt;}
.ye0{bottom:380.579200pt;}
.y33{bottom:380.593600pt;}
.yaf{bottom:380.598400pt;}
.y70{bottom:380.600533pt;}
.yc9{bottom:380.602667pt;}
.y55{bottom:380.604800pt;}
.yee{bottom:380.626133pt;}
.y91{bottom:380.647467pt;}
.y127{bottom:392.083600pt;}
.y136{bottom:395.863600pt;}
.yc{bottom:398.579333pt;}
.ydf{bottom:398.584000pt;}
.y109{bottom:398.588800pt;}
.y32{bottom:398.598400pt;}
.yc8{bottom:398.600533pt;}
.y54{bottom:398.602667pt;}
.yed{bottom:398.624000pt;}
.y90{bottom:398.645333pt;}
.y126{bottom:404.753600pt;}
.y135{bottom:408.533600pt;}
.yb{bottom:416.584133pt;}
.yde{bottom:416.588800pt;}
.y108{bottom:416.593600pt;}
.yc7{bottom:416.598400pt;}
.y53{bottom:416.600533pt;}
.y6f{bottom:416.621867pt;}
.y8f{bottom:416.643200pt;}
.y125{bottom:421.203600pt;}
.y134{bottom:424.983600pt;}
.y124{bottom:433.873600pt;}
.y107{bottom:434.550400pt;}
.ya{bottom:434.588933pt;}
.ydd{bottom:434.593600pt;}
.y31{bottom:434.598400pt;}
.yae{bottom:434.600533pt;}
.y83{bottom:434.609067pt;}
.y6e{bottom:434.619733pt;}
.yc6{bottom:434.630400pt;}
.y8e{bottom:434.641067pt;}
.y133{bottom:437.653600pt;}
.y123{bottom:446.543600pt;}
.y132{bottom:450.323600pt;}
.y106{bottom:452.555200pt;}
.y9{bottom:452.593733pt;}
.ydc{bottom:452.598400pt;}
.y82{bottom:452.606933pt;}
.y52{bottom:452.615467pt;}
.y6d{bottom:452.617600pt;}
.yad{bottom:452.626133pt;}
.yc5{bottom:452.628267pt;}
.y8d{bottom:452.638933pt;}
.y122{bottom:462.993600pt;}
.y131{bottom:466.773600pt;}
.y105{bottom:470.560000pt;}
.y8{bottom:470.598533pt;}
.y81{bottom:470.604800pt;}
.y51{bottom:470.613333pt;}
.y6c{bottom:470.615467pt;}
.yac{bottom:470.624000pt;}
.yc4{bottom:470.626133pt;}
.y8c{bottom:470.636800pt;}
.y121{bottom:475.663600pt;}
.y130{bottom:479.443600pt;}
.y104{bottom:488.564800pt;}
.yda{bottom:488.598400pt;}
.y80{bottom:488.602667pt;}
.y50{bottom:488.611200pt;}
.y6b{bottom:488.613333pt;}
.yab{bottom:488.621867pt;}
.yc3{bottom:488.624000pt;}
.y30{bottom:488.634667pt;}
.y120{bottom:492.113600pt;}
.ydb{bottom:492.594400pt;}
.y11f{bottom:504.783600pt;}
.y103{bottom:506.569600pt;}
.yd9{bottom:506.598400pt;}
.y7f{bottom:506.600533pt;}
.y7{bottom:506.605200pt;}
.y4f{bottom:506.609067pt;}
.y6a{bottom:506.611200pt;}
.yaa{bottom:506.619733pt;}
.yc2{bottom:506.621867pt;}
.y2f{bottom:506.632533pt;}
.y12f{bottom:508.563600pt;}
.y11e{bottom:517.453600pt;}
.y12e{bottom:521.233600pt;}
.y102{bottom:524.574400pt;}
.y7e{bottom:524.598400pt;}
.y4e{bottom:524.606933pt;}
.y69{bottom:524.609067pt;}
.ya9{bottom:524.617600pt;}
.yc1{bottom:524.619733pt;}
.y2e{bottom:524.630400pt;}
.y11d{bottom:533.903600pt;}
.y101{bottom:542.579200pt;}
.yd8{bottom:542.598400pt;}
.y4d{bottom:542.604800pt;}
.y68{bottom:542.606933pt;}
.ya8{bottom:542.615467pt;}
.yc0{bottom:542.617600pt;}
.y2d{bottom:542.628267pt;}
.y11c{bottom:546.573600pt;}
.y100{bottom:560.584000pt;}
.yd7{bottom:560.598400pt;}
.y4c{bottom:560.602667pt;}
.y67{bottom:560.604800pt;}
.ya7{bottom:560.613333pt;}
.ybf{bottom:560.615467pt;}
.y2c{bottom:560.626133pt;}
.y11b{bottom:563.023600pt;}
.y11a{bottom:575.693600pt;}
.yff{bottom:578.588800pt;}
.y4b{bottom:578.600533pt;}
.y66{bottom:578.602667pt;}
.ya6{bottom:578.611200pt;}
.ybe{bottom:578.613333pt;}
.y2b{bottom:578.624000pt;}
.y119{bottom:592.143600pt;}
.yfe{bottom:596.593600pt;}
.y4a{bottom:596.598400pt;}
.y65{bottom:596.600533pt;}
.ya5{bottom:596.609067pt;}
.ybd{bottom:596.611200pt;}
.y2a{bottom:596.621867pt;}
.y118{bottom:604.813600pt;}
.y64{bottom:614.598400pt;}
.ya4{bottom:614.606933pt;}
.ybc{bottom:614.609067pt;}
.y49{bottom:614.611200pt;}
.y29{bottom:614.619733pt;}
.y117{bottom:632.598400pt;}
.ya3{bottom:632.604800pt;}
.ybb{bottom:632.606933pt;}
.y48{bottom:632.609067pt;}
.y28{bottom:632.617600pt;}
.yfd{bottom:650.598400pt;}
.y6{bottom:650.602533pt;}
.ya2{bottom:650.602667pt;}
.yba{bottom:650.604800pt;}
.y47{bottom:650.606933pt;}
.y27{bottom:650.615467pt;}
.y146{bottom:668.587733pt;}
.y5{bottom:668.598533pt;}
.ya1{bottom:668.600533pt;}
.yb9{bottom:668.602667pt;}
.y46{bottom:668.604800pt;}
.y26{bottom:668.613333pt;}
.y145{bottom:686.590400pt;}
.ya0{bottom:686.598400pt;}
.yb8{bottom:686.600533pt;}
.y45{bottom:686.602667pt;}
.y25{bottom:686.611200pt;}
.y144{bottom:704.593067pt;}
.yb7{bottom:704.598400pt;}
.y4{bottom:704.598533pt;}
.y44{bottom:704.600533pt;}
.y24{bottom:704.609067pt;}
.y143{bottom:722.595733pt;}
.y23{bottom:722.606933pt;}
.y142{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.y22{bottom:740.604800pt;}
.y21{bottom:758.602667pt;}
.y20{bottom:776.600533pt;}
.y1f{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y1{bottom:847.033333pt;}
.hd{height:22.023408pt;}
.ha{height:22.757522pt;}
.hb{height:31.419200pt;}
.h2{height:31.480000pt;}
.h8{height:32.280000pt;}
.h9{height:36.040000pt;}
.hf{height:37.776000pt;}
.hc{height:40.752000pt;}
.h10{height:41.325867pt;}
.h6{height:42.110400pt;}
.he{height:42.302400pt;}
.h7{height:42.563200pt;}
.h5{height:46.170667pt;}
.h3{height:48.053333pt;}
.h4{height:75.552000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x9{left:79.370767pt;}
.xc{left:80.525200pt;}
.x2{left:83.149600pt;}
.x6{left:95.963467pt;}
.x3{left:112.710667pt;}
.x8{left:218.622267pt;}
.xa{left:319.370133pt;}
.x4{left:326.964800pt;}
.xb{left:330.709433pt;}
.x5{left:482.771467pt;}
.x7{left:555.590533pt;}
}




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