
    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_dceeaf66e2500eaf761e03d9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.143000;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_b6e8abb2aad36bba60e3e9bc.woff2')format("woff");}.ff2{font-family:ff2;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;}
@font-face{font-family:ff3;src:url('chunks/assets/font_902a18a713e674d64481248d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.731000;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_07fa7ff1f58de56ca717bb76.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_50170a1e31212912a7b7256b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.948000;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_6868053776f023ca6bfbec26.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_14b9da6f70242f327ed5e536.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_ac7ecaf4afdf41abad3734b5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.949000;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_1d2a5842a74b1269111e1b65.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.957000;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);}
.m9{transform:matrix(0.239999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239999,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m2{transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242498,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);}
.mb{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);}
.m3{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);}
.m4{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);}
.m6{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);}
.m7{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.781200px;}
.lse{letter-spacing:-1.305000px;}
.lsa{letter-spacing:-0.990000px;}
.ls8{letter-spacing:-0.945000px;}
.lsc{letter-spacing:-0.450000px;}
.ls2{letter-spacing:-0.225000px;}
.ls3{letter-spacing:-0.175200px;}
.ls1{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.008008px;}
.ls4{letter-spacing:0.630000px;}
.ls0{letter-spacing:5.640000px;}
.ls7{letter-spacing:31.956495px;}
.lsb{letter-spacing:1903.060408px;}
.lsd{letter-spacing:1903.375714px;}
.ls9{letter-spacing:1903.812245px;}
.ls5{letter-spacing:1926.609184px;}
.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;}
}
.ws54{word-spacing:-16.694400px;}
.wsa9{word-spacing:-10.800000px;}
.wsc8{word-spacing:-10.320000px;}
.ws3a{word-spacing:-9.630000px;}
.ws3{word-spacing:-9.000000px;}
.ws6d{word-spacing:-8.775000px;}
.ws1a{word-spacing:-8.760000px;}
.ws2{word-spacing:-8.584800px;}
.wsc7{word-spacing:-8.550000px;}
.ws53{word-spacing:-8.055000px;}
.ws84{word-spacing:-8.010000px;}
.wsf2{word-spacing:-7.695000px;}
.ws0{word-spacing:-6.576240px;}
.ws60{word-spacing:-3.045600px;}
.ws7{word-spacing:-3.013200px;}
.ws8b{word-spacing:-2.932800px;}
.ws9e{word-spacing:-2.820000px;}
.wsb0{word-spacing:-2.790000px;}
.ws40{word-spacing:-2.707200px;}
.ws79{word-spacing:-2.594400px;}
.ws9d{word-spacing:-2.538000px;}
.ws69{word-spacing:-2.511000px;}
.ws74{word-spacing:-2.481600px;}
.ws14{word-spacing:-2.425200px;}
.ws43{word-spacing:-2.368800px;}
.wsb7{word-spacing:-2.312400px;}
.ws8d{word-spacing:-2.287800px;}
.ws70{word-spacing:-2.232000px;}
.wsa1{word-spacing:-2.143200px;}
.wse{word-spacing:-2.064600px;}
.ws83{word-spacing:-2.030400px;}
.wsa7{word-spacing:-1.897200px;}
.ws8a{word-spacing:-1.861200px;}
.wsa5{word-spacing:-1.804800px;}
.ws67{word-spacing:-1.748400px;}
.ws38{word-spacing:-1.692000px;}
.ws77{word-spacing:-1.635600px;}
.ws13{word-spacing:-1.579200px;}
.wse7{word-spacing:-1.485000px;}
.ws9b{word-spacing:-1.466400px;}
.ws65{word-spacing:-1.410000px;}
.wsd2{word-spacing:-1.350000px;}
.wsaf{word-spacing:-1.339200px;}
.ws42{word-spacing:-1.297200px;}
.ws31{word-spacing:-1.184400px;}
.ws2a{word-spacing:-1.071600px;}
.ws71{word-spacing:-1.060200px;}
.ws3e{word-spacing:-0.958800px;}
.wse5{word-spacing:-0.900000px;}
.ws1b{word-spacing:-0.855000px;}
.ws34{word-spacing:-0.846000px;}
.ws45{word-spacing:-0.789600px;}
.wsbb{word-spacing:-0.675000px;}
.wsf{word-spacing:-0.669600px;}
.wse3{word-spacing:-0.630000px;}
.ws21{word-spacing:-0.564000px;}
.ws29{word-spacing:-0.507600px;}
.ws72{word-spacing:-0.390600px;}
.wsfa{word-spacing:-0.309600px;}
.ws51{word-spacing:-0.306600px;}
.ws49{word-spacing:-0.282000px;}
.ws2c{word-spacing:-0.225600px;}
.ws4f{word-spacing:-0.175200px;}
.ws46{word-spacing:-0.169200px;}
.ws36{word-spacing:-0.112800px;}
.ws96{word-spacing:-0.056400px;}
.ws6b{word-spacing:-0.055800px;}
.ws1{word-spacing:-0.043800px;}
.ws6{word-spacing:0.000000px;}
.ws7c{word-spacing:0.056400px;}
.wsa8{word-spacing:0.111600px;}
.ws18{word-spacing:0.131400px;}
.wsf1{word-spacing:0.154800px;}
.ws99{word-spacing:0.175200px;}
.ws5{word-spacing:0.225000px;}
.wsf9{word-spacing:0.309600px;}
.ws5b{word-spacing:0.394800px;}
.ws5e{word-spacing:0.451200px;}
.ws27{word-spacing:0.507600px;}
.wsd6{word-spacing:0.540000px;}
.ws19{word-spacing:0.569400px;}
.wsd{word-spacing:0.613800px;}
.ws7e{word-spacing:0.620400px;}
.ws3d{word-spacing:0.676800px;}
.wsa0{word-spacing:0.733200px;}
.ws44{word-spacing:0.789600px;}
.wsbe{word-spacing:0.810000px;}
.ws88{word-spacing:0.846000px;}
.wsd4{word-spacing:0.855000px;}
.wsa4{word-spacing:0.902400px;}
.wsad{word-spacing:0.948600px;}
.ws24{word-spacing:0.958800px;}
.ws7a{word-spacing:1.015200px;}
.wsd1{word-spacing:1.080000px;}
.wsef{word-spacing:1.083600px;}
.ws4d{word-spacing:1.095000px;}
.ws94{word-spacing:1.128000px;}
.ws5d{word-spacing:1.184400px;}
.ws57{word-spacing:1.297200px;}
.wsde{word-spacing:1.350000px;}
.ws26{word-spacing:1.466400px;}
.ws48{word-spacing:1.579200px;}
.ws75{word-spacing:1.635600px;}
.wsae{word-spacing:1.674000px;}
.wsb3{word-spacing:1.692000px;}
.wsf8{word-spacing:1.702800px;}
.wsc{word-spacing:1.785600px;}
.wseb{word-spacing:1.800000px;}
.ws2d{word-spacing:1.861200px;}
.ws59{word-spacing:1.917600px;}
.wsbd{word-spacing:1.980000px;}
.wsc4{word-spacing:2.070000px;}
.wse6{word-spacing:2.115000px;}
.ws6c{word-spacing:2.120400px;}
.ws89{word-spacing:2.143200px;}
.ws80{word-spacing:2.199600px;}
.ws4a{word-spacing:2.256000px;}
.ws92{word-spacing:2.287800px;}
.ws5f{word-spacing:2.368800px;}
.wsdb{word-spacing:2.385000px;}
.ws4c{word-spacing:2.425200px;}
.ws62{word-spacing:2.481600px;}
.ws66{word-spacing:2.538000px;}
.ws1f{word-spacing:2.594400px;}
.ws68{word-spacing:2.640000px;}
.ws3b{word-spacing:2.650800px;}
.ws73{word-spacing:2.790000px;}
.wsd3{word-spacing:2.880000px;}
.wse4{word-spacing:2.925000px;}
.wsa3{word-spacing:2.932800px;}
.ws17{word-spacing:2.934600px;}
.ws50{word-spacing:2.978400px;}
.ws7b{word-spacing:2.989200px;}
.wsba{word-spacing:3.015000px;}
.ws78{word-spacing:3.045600px;}
.wse1{word-spacing:3.105000px;}
.ws32{word-spacing:3.158400px;}
.ws97{word-spacing:3.197400px;}
.wsf4{word-spacing:3.199200px;}
.ws3c{word-spacing:3.327600px;}
.ws63{word-spacing:3.384000px;}
.ws3f{word-spacing:3.440400px;}
.wsf7{word-spacing:3.457200px;}
.ws25{word-spacing:3.496800px;}
.ws5c{word-spacing:3.553200px;}
.ws2e{word-spacing:3.609600px;}
.ws28{word-spacing:3.722400px;}
.ws12{word-spacing:3.778800px;}
.ws56{word-spacing:3.835200px;}
.wsf3{word-spacing:3.870000px;}
.ws9a{word-spacing:3.948000px;}
.ws8c{word-spacing:3.961800px;}
.ws61{word-spacing:4.004400px;}
.ws91{word-spacing:4.017600px;}
.wsb4{word-spacing:4.060800px;}
.ws22{word-spacing:4.117200px;}
.ws23{word-spacing:4.173600px;}
.ws6e{word-spacing:4.185000px;}
.ws85{word-spacing:4.342800px;}
.wsab{word-spacing:4.352400px;}
.ws95{word-spacing:4.399200px;}
.ws41{word-spacing:4.455600px;}
.ws52{word-spacing:4.467600px;}
.ws9{word-spacing:4.631400px;}
.wsf0{word-spacing:4.695600px;}
.ws9f{word-spacing:4.737600px;}
.ws39{word-spacing:4.850400px;}
.ws16{word-spacing:4.861800px;}
.wsa{word-spacing:4.966200px;}
.wsb2{word-spacing:5.076000px;}
.ws11{word-spacing:5.132400px;}
.ws6a{word-spacing:5.189400px;}
.ws58{word-spacing:5.245200px;}
.ws7d{word-spacing:5.301600px;}
.wsed{word-spacing:5.314800px;}
.wsdf{word-spacing:5.355000px;}
.ws90{word-spacing:5.356800px;}
.ws1d{word-spacing:5.358000px;}
.ws1e{word-spacing:5.527200px;}
.ws47{word-spacing:5.583600px;}
.ws10{word-spacing:5.640000px;}
.ws55{word-spacing:5.696400px;}
.ws6f{word-spacing:5.747400px;}
.wsb1{word-spacing:5.865600px;}
.ws8f{word-spacing:5.914800px;}
.ws76{word-spacing:5.922000px;}
.wsb8{word-spacing:5.978400px;}
.ws8e{word-spacing:6.082200px;}
.ws37{word-spacing:6.147600px;}
.wsc3{word-spacing:6.210000px;}
.wsd5{word-spacing:6.255000px;}
.wse8{word-spacing:6.390000px;}
.ws33{word-spacing:6.429600px;}
.ws4e{word-spacing:6.438600px;}
.ws8{word-spacing:6.584400px;}
.ws4b{word-spacing:6.598800px;}
.ws98{word-spacing:6.657600px;}
.wsc5{word-spacing:6.750000px;}
.ws93{word-spacing:6.768000px;}
.wse0{word-spacing:6.885000px;}
.wsf6{word-spacing:6.914400px;}
.ws15{word-spacing:6.937200px;}
.wsbc{word-spacing:7.065000px;}
.wsc1{word-spacing:7.110000px;}
.wsbf{word-spacing:7.200000px;}
.wsac{word-spacing:7.309800px;}
.ws5a{word-spacing:7.332000px;}
.ws87{word-spacing:7.444800px;}
.ws20{word-spacing:7.501200px;}
.wsb5{word-spacing:7.614000px;}
.ws86{word-spacing:7.726800px;}
.ws7f{word-spacing:7.839600px;}
.ws35{word-spacing:7.952400px;}
.wsa6{word-spacing:8.008800px;}
.wsaa{word-spacing:8.146800px;}
.wsee{word-spacing:8.152800px;}
.wsb{word-spacing:8.202600px;}
.wscd{word-spacing:8.370000px;}
.wsdc{word-spacing:8.415000px;}
.ws64{word-spacing:8.460000px;}
.ws2b{word-spacing:8.798400px;}
.wsec{word-spacing:8.910000px;}
.wscc{word-spacing:9.225000px;}
.ws30{word-spacing:9.249600px;}
.wsb6{word-spacing:9.475200px;}
.wsc2{word-spacing:9.540000px;}
.ws82{word-spacing:9.588000px;}
.ws1c{word-spacing:9.700800px;}
.wse9{word-spacing:9.810000px;}
.ws81{word-spacing:9.870000px;}
.wsf5{word-spacing:10.113600px;}
.wsd9{word-spacing:10.170000px;}
.wsce{word-spacing:10.305000px;}
.wsea{word-spacing:11.115000px;}
.wscf{word-spacing:11.205000px;}
.wsda{word-spacing:11.565000px;}
.wsa2{word-spacing:11.618400px;}
.wsd7{word-spacing:11.745000px;}
.wsc0{word-spacing:12.240000px;}
.ws2f{word-spacing:12.408000px;}
.ws9c{word-spacing:12.633600px;}
.wsd0{word-spacing:13.545000px;}
.wsd8{word-spacing:16.380000px;}
.wsb9{word-spacing:16.965000px;}
.wse2{word-spacing:17.010000px;}
.wsc9{word-spacing:18.540000px;}
.wsdd{word-spacing:19.080000px;}
.wscb{word-spacing:21.195000px;}
.wsc6{word-spacing:29.160000px;}
.wsca{word-spacing:50.040000px;}
.ws4{word-spacing:2136.870000px;}
._d{margin-left:-15.842327px;}
._4{margin-left:-6.882840px;}
._3{margin-left:-5.486400px;}
._1{margin-left:-3.594000px;}
._5{margin-left:-2.541600px;}
._2{margin-left:-1.296000px;}
._0{width:1.614000px;}
._8{width:2.715885px;}
._6{width:3.951709px;}
._e{width:5.022000px;}
._b{width:6.598800px;}
._10{width:10.665000px;}
._f{width:17.884500px;}
._c{width:25.727920px;}
._a{width:31.797798px;}
._9{width:50.588616px;}
._7{width:55.450416px;}
.fc1{color:rgb(0,88,158);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:32.531400px;}
.fs7{font-size:32.881200px;}
.fs8{font-size:43.800000px;}
.fs0{font-size:45.000000px;}
.fsa{font-size:51.600000px;}
.fs9{font-size:54.000000px;}
.fs4{font-size:55.800000px;}
.fs6{font-size:56.400000px;}
.fs1{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y23{bottom:63.673350px;}
.yda{bottom:104.167800px;}
.y6d{bottom:104.169300px;}
.y22{bottom:104.173350px;}
.y6c{bottom:117.670650px;}
.yc3{bottom:121.922850px;}
.y21{bottom:121.923600px;}
.y49{bottom:121.925400px;}
.y8a{bottom:121.925550px;}
.yd9{bottom:124.423200px;}
.y6b{bottom:131.172000px;}
.yc2{bottom:135.424200px;}
.y20{bottom:139.673550px;}
.y48{bottom:139.677600px;}
.y105{bottom:140.405700px;}
.y14e{bottom:144.655200px;}
.y6a{bottom:144.673350px;}
.ya4{bottom:144.690000px;}
.yc1{bottom:148.925550px;}
.y1f{bottom:153.174900px;}
.yfa{bottom:154.624050px;}
.y104{bottom:154.659450px;}
.y47{bottom:157.429650px;}
.y69{bottom:158.173350px;}
.y88{bottom:164.901600px;}
.y14d{bottom:164.908200px;}
.y89{bottom:164.923200px;}
.ya3{bottom:164.937600px;}
.y1e{bottom:166.676250px;}
.yf9{bottom:168.877800px;}
.y103{bottom:173.096550px;}
.y46{bottom:175.181850px;}
.y68{bottom:175.927650px;}
.y1d{bottom:180.177600px;}
.y87{bottom:185.157000px;}
.y14c{bottom:185.161200px;}
.yc0{bottom:185.180400px;}
.ya2{bottom:185.185200px;}
.y102{bottom:187.350300px;}
.yf8{bottom:187.384050px;}
.y1c{bottom:193.677600px;}
.y67{bottom:193.679700px;}
.y101{bottom:201.604050px;}
.yf7{bottom:201.637800px;}
.y86{bottom:205.412400px;}
.y14b{bottom:205.414200px;}
.ybf{bottom:205.428000px;}
.ya1{bottom:205.432800px;}
.y66{bottom:211.429650px;}
.y1b{bottom:211.429800px;}
.yf6{bottom:215.891550px;}
.y100{bottom:220.110300px;}
.y14a{bottom:225.667200px;}
.y85{bottom:225.667800px;}
.ybe{bottom:225.675600px;}
.ya0{bottom:225.680400px;}
.y45{bottom:225.685200px;}
.yd8{bottom:225.718800px;}
.y1a{bottom:229.181850px;}
.yff{bottom:234.364050px;}
.yf5{bottom:234.397800px;}
.y149{bottom:245.920200px;}
.y84{bottom:245.923200px;}
.y9f{bottom:245.928000px;}
.y44{bottom:245.932800px;}
.yd7{bottom:245.966400px;}
.y65{bottom:246.933900px;}
.yfe{bottom:248.617800px;}
.yf4{bottom:248.651550px;}
.y64{bottom:264.686100px;}
.ybd{bottom:266.173200px;}
.y9e{bottom:266.175600px;}
.y19{bottom:266.175750px;}
.y43{bottom:266.180400px;}
.ybc{bottom:266.194800px;}
.yd6{bottom:266.214000px;}
.yfd{bottom:267.124050px;}
.yf3{bottom:267.157800px;}
.yfc{bottom:281.377800px;}
.yf2{bottom:281.411550px;}
.y63{bottom:282.438150px;}
.y9d{bottom:286.423200px;}
.y18{bottom:286.425750px;}
.y83{bottom:286.427700px;}
.y42{bottom:286.428000px;}
.ybb{bottom:286.442400px;}
.yd5{bottom:286.461600px;}
.yfb{bottom:295.631550px;}
.yf1{bottom:295.665300px;}
.y62{bottom:300.192450px;}
.y82{bottom:306.673200px;}
.y17{bottom:306.673350px;}
.y41{bottom:306.675600px;}
.y16{bottom:306.675750px;}
.yba{bottom:306.690000px;}
.y9c{bottom:306.704400px;}
.yd4{bottom:306.709200px;}
.y61{bottom:317.942400px;}
.yf0{bottom:326.923200px;}
.y15{bottom:326.928150px;}
.yb9{bottom:326.937600px;}
.y40{bottom:326.949600px;}
.y9b{bottom:326.952000px;}
.yd3{bottom:326.956800px;}
.y60{bottom:331.444500px;}
.y14{bottom:347.175750px;}
.yb8{bottom:347.185200px;}
.y3f{bottom:347.197200px;}
.y9a{bottom:347.199600px;}
.yd2{bottom:347.204400px;}
.y5f{bottom:349.194450px;}
.y5e{bottom:362.694450px;}
.y13{bottom:367.423350px;}
.yb7{bottom:367.432800px;}
.y3e{bottom:367.444800px;}
.y99{bottom:367.447200px;}
.yd1{bottom:367.452000px;}
.y81{bottom:367.466400px;}
.y148{bottom:384.626700px;}
.y11{bottom:387.630150px;}
.yb6{bottom:387.680400px;}
.y3d{bottom:387.692400px;}
.y98{bottom:387.694800px;}
.yd0{bottom:387.699600px;}
.y80{bottom:387.714000px;}
.y12{bottom:392.318550px;}
.y126{bottom:394.751700px;}
.y147{bottom:398.880450px;}
.y10{bottom:407.885550px;}
.y5d{bottom:407.928000px;}
.y3c{bottom:407.940000px;}
.y97{bottom:407.942400px;}
.ycf{bottom:407.947200px;}
.yef{bottom:407.952000px;}
.y7f{bottom:407.961600px;}
.y125{bottom:409.005450px;}
.y146{bottom:413.134200px;}
.y145{bottom:427.387950px;}
.y124{bottom:427.511700px;}
.yf{bottom:428.140950px;}
.y5c{bottom:428.175600px;}
.y3b{bottom:428.187600px;}
.y96{bottom:428.190000px;}
.yce{bottom:428.194800px;}
.yee{bottom:428.199600px;}
.y7e{bottom:428.209200px;}
.y123{bottom:441.765450px;}
.y144{bottom:445.894200px;}
.ye{bottom:448.396350px;}
.yb5{bottom:448.423200px;}
.y5b{bottom:448.428000px;}
.y3a{bottom:448.435200px;}
.y95{bottom:448.437600px;}
.ycd{bottom:448.442400px;}
.yed{bottom:448.447200px;}
.y7d{bottom:448.456800px;}
.y143{bottom:460.147950px;}
.y122{bottom:460.271700px;}
.yb4{bottom:468.635400px;}
.yd{bottom:468.651750px;}
.y5a{bottom:468.675600px;}
.y39{bottom:468.682800px;}
.y94{bottom:468.685200px;}
.ycc{bottom:468.690000px;}
.yec{bottom:468.694800px;}
.y7c{bottom:468.704400px;}
.y142{bottom:474.401700px;}
.y121{bottom:474.525450px;}
.y141{bottom:488.655450px;}
.y120{bottom:488.779200px;}
.yb3{bottom:488.890800px;}
.yc{bottom:488.907150px;}
.y59{bottom:488.925600px;}
.y38{bottom:488.930400px;}
.y93{bottom:488.932800px;}
.ycb{bottom:488.937600px;}
.yeb{bottom:488.942400px;}
.y7b{bottom:488.952000px;}
.y140{bottom:502.909200px;}
.y11f{bottom:503.032950px;}
.yb2{bottom:509.146200px;}
.yb{bottom:509.162550px;}
.y37{bottom:509.178000px;}
.y58{bottom:509.180400px;}
.yca{bottom:509.185200px;}
.yea{bottom:509.190000px;}
.y7a{bottom:509.199600px;}
.y11e{bottom:517.286700px;}
.y13f{bottom:521.415450px;}
.yb1{bottom:529.401600px;}
.ya{bottom:529.417950px;}
.y36{bottom:529.425600px;}
.y57{bottom:529.428000px;}
.yc9{bottom:529.432800px;}
.ye9{bottom:529.437600px;}
.y79{bottom:529.447200px;}
.y13e{bottom:535.669200px;}
.y11d{bottom:535.792950px;}
.yb0{bottom:549.657000px;}
.y9{bottom:549.673350px;}
.y56{bottom:549.675600px;}
.y35{bottom:549.678000px;}
.yc8{bottom:549.680400px;}
.ye8{bottom:549.685200px;}
.y78{bottom:549.694800px;}
.y13d{bottom:549.922950px;}
.y11c{bottom:550.046700px;}
.y11b{bottom:564.300450px;}
.y13c{bottom:568.429200px;}
.yaf{bottom:569.912400px;}
.y8{bottom:569.917950px;}
.y34{bottom:569.925600px;}
.yc7{bottom:569.928000px;}
.ye7{bottom:569.932800px;}
.y77{bottom:569.942400px;}
.y92{bottom:569.944800px;}
.y11a{bottom:578.554200px;}
.y13b{bottom:582.682950px;}
.yae{bottom:590.167800px;}
.y6{bottom:590.173350px;}
.y33{bottom:590.175600px;}
.y55{bottom:590.180400px;}
.y76{bottom:590.190000px;}
.y91{bottom:590.192400px;}
.y7{bottom:594.818550px;}
.y13a{bottom:596.936700px;}
.y119{bottom:597.060450px;}
.y158{bottom:610.411200px;}
.yad{bottom:610.423200px;}
.y54{bottom:610.428000px;}
.y75{bottom:610.437600px;}
.y32{bottom:610.440000px;}
.y118{bottom:611.314200px;}
.y139{bottom:615.442950px;}
.y117{bottom:625.567950px;}
.y138{bottom:629.696700px;}
.y157{bottom:630.664200px;}
.y53{bottom:630.675600px;}
.y5{bottom:630.676350px;}
.y74{bottom:630.685200px;}
.y31{bottom:630.687600px;}
.y137{bottom:643.950450px;}
.y116{bottom:644.074200px;}
.y156{bottom:650.917200px;}
.yac{bottom:650.923200px;}
.yc6{bottom:650.925600px;}
.y52{bottom:650.928000px;}
.y73{bottom:650.932800px;}
.y30{bottom:650.935200px;}
.y115{bottom:658.327950px;}
.y136{bottom:662.456700px;}
.ye5{bottom:671.157000px;}
.y155{bottom:671.170200px;}
.yc5{bottom:671.173200px;}
.y51{bottom:671.175600px;}
.y72{bottom:671.180400px;}
.y2f{bottom:671.182800px;}
.ye6{bottom:675.818550px;}
.y135{bottom:676.710450px;}
.y114{bottom:676.834200px;}
.y134{bottom:690.964200px;}
.y113{bottom:691.087950px;}
.ye4{bottom:691.412400px;}
.y154{bottom:691.423200px;}
.y71{bottom:691.428000px;}
.y2e{bottom:691.430400px;}
.y50{bottom:691.437600px;}
.y133{bottom:705.217950px;}
.y112{bottom:705.341700px;}
.ye3{bottom:711.667800px;}
.y70{bottom:711.675600px;}
.y2d{bottom:711.678000px;}
.y4f{bottom:711.685200px;}
.yab{bottom:711.687600px;}
.y111{bottom:719.595450px;}
.y132{bottom:723.724200px;}
.ye2{bottom:731.912400px;}
.yc4{bottom:731.923200px;}
.y2c{bottom:731.925600px;}
.y4e{bottom:731.932800px;}
.yaa{bottom:731.935200px;}
.y6f{bottom:731.942400px;}
.y110{bottom:733.849200px;}
.y131{bottom:737.977950px;}
.ye1{bottom:752.167800px;}
.y2b{bottom:752.173200px;}
.y4d{bottom:752.180400px;}
.ya9{bottom:752.182800px;}
.y6e{bottom:752.190000px;}
.y130{bottom:752.231700px;}
.y10f{bottom:752.355450px;}
.y10e{bottom:766.609200px;}
.y12f{bottom:770.737950px;}
.y90{bottom:772.407000px;}
.y153{bottom:772.408200px;}
.ye0{bottom:772.423200px;}
.y4c{bottom:772.428000px;}
.ya8{bottom:772.430400px;}
.y2a{bottom:772.437600px;}
.y12e{bottom:784.991700px;}
.y10d{bottom:785.115450px;}
.ydf{bottom:792.651600px;}
.y152{bottom:792.661200px;}
.y8f{bottom:792.662400px;}
.y4{bottom:792.673350px;}
.y4b{bottom:792.675600px;}
.ya7{bottom:792.678000px;}
.y29{bottom:792.685200px;}
.y12d{bottom:799.245450px;}
.y10c{bottom:799.369200px;}
.yde{bottom:812.907000px;}
.y151{bottom:812.914200px;}
.y8e{bottom:812.917800px;}
.y4a{bottom:812.925600px;}
.y28{bottom:812.932800px;}
.y10b{bottom:813.622950px;}
.y12c{bottom:817.751700px;}
.y12b{bottom:832.005450px;}
.y10a{bottom:832.129200px;}
.ydd{bottom:833.162400px;}
.y150{bottom:833.167200px;}
.y8d{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.ya6{bottom:833.178000px;}
.y27{bottom:833.180400px;}
.y12a{bottom:846.259200px;}
.y109{bottom:846.382950px;}
.y8c{bottom:853.412400px;}
.ydc{bottom:853.417800px;}
.y14f{bottom:853.420200px;}
.ya5{bottom:853.425600px;}
.y26{bottom:853.428000px;}
.y129{bottom:864.765450px;}
.y108{bottom:864.877500px;}
.y8b{bottom:873.667800px;}
.ydb{bottom:873.673200px;}
.y25{bottom:873.675600px;}
.y128{bottom:879.019200px;}
.y107{bottom:879.131250px;}
.y127{bottom:893.272950px;}
.y106{bottom:893.385000px;}
.y24{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y1{bottom:952.912500px;}
.h7{height:29.538511px;}
.h15{height:35.337600px;}
.h14{height:35.338200px;}
.hc{height:35.346600px;}
.hd{height:35.354400px;}
.he{height:36.315000px;}
.h1c{height:36.450000px;}
.h12{height:39.770400px;}
.h19{height:40.566600px;}
.h2{height:40.860000px;}
.h1a{height:41.002800px;}
.h1d{height:41.796000px;}
.h1e{height:46.852800px;}
.h6{height:47.374200px;}
.h9{height:47.883600px;}
.h17{height:48.464530px;}
.h11{height:48.531730px;}
.h18{height:48.550930px;}
.h16{height:48.560530px;}
.h10{height:48.570130px;}
.hf{height:48.579730px;}
.h3{height:48.600000px;}
.h13{height:48.608530px;}
.ha{height:48.618130px;}
.hb{height:48.627730px;}
.h8{height:48.637330px;}
.h1b{height:49.032000px;}
.h5{height:59.928000px;}
.h4{height:98.064000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.xe{left:89.292113px;}
.x11{left:90.590850px;}
.x5{left:93.543300px;}
.x7{left:97.795200px;}
.xc{left:102.467850px;}
.x8{left:126.799500px;}
.xd{left:138.895500px;}
.xb{left:240.402600px;}
.x6{left:287.486550px;}
.xf{left:359.289188px;}
.x9{left:367.835400px;}
.x10{left:372.045900px;}
.x4{left:431.701350px;}
.x2{left:553.123950px;}
.x3{left:557.383800px;}
.xa{left:586.859400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.694400pt;}
.lse{letter-spacing:-1.160000pt;}
.lsa{letter-spacing:-0.880000pt;}
.ls8{letter-spacing:-0.840000pt;}
.lsc{letter-spacing:-0.400000pt;}
.ls2{letter-spacing:-0.200000pt;}
.ls3{letter-spacing:-0.155733pt;}
.ls1{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.007118pt;}
.ls4{letter-spacing:0.560000pt;}
.ls0{letter-spacing:5.013333pt;}
.ls7{letter-spacing:28.405773pt;}
.lsb{letter-spacing:1691.609252pt;}
.lsd{letter-spacing:1691.889524pt;}
.ls9{letter-spacing:1692.277551pt;}
.ls5{letter-spacing:1712.541497pt;}
.ws54{word-spacing:-14.839467pt;}
.wsa9{word-spacing:-9.600000pt;}
.wsc8{word-spacing:-9.173333pt;}
.ws3a{word-spacing:-8.560000pt;}
.ws3{word-spacing:-8.000000pt;}
.ws6d{word-spacing:-7.800000pt;}
.ws1a{word-spacing:-7.786667pt;}
.ws2{word-spacing:-7.630933pt;}
.wsc7{word-spacing:-7.600000pt;}
.ws53{word-spacing:-7.160000pt;}
.ws84{word-spacing:-7.120000pt;}
.wsf2{word-spacing:-6.840000pt;}
.ws0{word-spacing:-5.845547pt;}
.ws60{word-spacing:-2.707200pt;}
.ws7{word-spacing:-2.678400pt;}
.ws8b{word-spacing:-2.606933pt;}
.ws9e{word-spacing:-2.506667pt;}
.wsb0{word-spacing:-2.480000pt;}
.ws40{word-spacing:-2.406400pt;}
.ws79{word-spacing:-2.306133pt;}
.ws9d{word-spacing:-2.256000pt;}
.ws69{word-spacing:-2.232000pt;}
.ws74{word-spacing:-2.205867pt;}
.ws14{word-spacing:-2.155733pt;}
.ws43{word-spacing:-2.105600pt;}
.wsb7{word-spacing:-2.055467pt;}
.ws8d{word-spacing:-2.033600pt;}
.ws70{word-spacing:-1.984000pt;}
.wsa1{word-spacing:-1.905067pt;}
.wse{word-spacing:-1.835200pt;}
.ws83{word-spacing:-1.804800pt;}
.wsa7{word-spacing:-1.686400pt;}
.ws8a{word-spacing:-1.654400pt;}
.wsa5{word-spacing:-1.604267pt;}
.ws67{word-spacing:-1.554133pt;}
.ws38{word-spacing:-1.504000pt;}
.ws77{word-spacing:-1.453867pt;}
.ws13{word-spacing:-1.403733pt;}
.wse7{word-spacing:-1.320000pt;}
.ws9b{word-spacing:-1.303467pt;}
.ws65{word-spacing:-1.253333pt;}
.wsd2{word-spacing:-1.200000pt;}
.wsaf{word-spacing:-1.190400pt;}
.ws42{word-spacing:-1.153067pt;}
.ws31{word-spacing:-1.052800pt;}
.ws2a{word-spacing:-0.952533pt;}
.ws71{word-spacing:-0.942400pt;}
.ws3e{word-spacing:-0.852267pt;}
.wse5{word-spacing:-0.800000pt;}
.ws1b{word-spacing:-0.760000pt;}
.ws34{word-spacing:-0.752000pt;}
.ws45{word-spacing:-0.701867pt;}
.wsbb{word-spacing:-0.600000pt;}
.wsf{word-spacing:-0.595200pt;}
.wse3{word-spacing:-0.560000pt;}
.ws21{word-spacing:-0.501333pt;}
.ws29{word-spacing:-0.451200pt;}
.ws72{word-spacing:-0.347200pt;}
.wsfa{word-spacing:-0.275200pt;}
.ws51{word-spacing:-0.272533pt;}
.ws49{word-spacing:-0.250667pt;}
.ws2c{word-spacing:-0.200533pt;}
.ws4f{word-spacing:-0.155733pt;}
.ws46{word-spacing:-0.150400pt;}
.ws36{word-spacing:-0.100267pt;}
.ws96{word-spacing:-0.050133pt;}
.ws6b{word-spacing:-0.049600pt;}
.ws1{word-spacing:-0.038933pt;}
.ws6{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.050133pt;}
.wsa8{word-spacing:0.099200pt;}
.ws18{word-spacing:0.116800pt;}
.wsf1{word-spacing:0.137600pt;}
.ws99{word-spacing:0.155733pt;}
.ws5{word-spacing:0.200000pt;}
.wsf9{word-spacing:0.275200pt;}
.ws5b{word-spacing:0.350933pt;}
.ws5e{word-spacing:0.401067pt;}
.ws27{word-spacing:0.451200pt;}
.wsd6{word-spacing:0.480000pt;}
.ws19{word-spacing:0.506133pt;}
.wsd{word-spacing:0.545600pt;}
.ws7e{word-spacing:0.551467pt;}
.ws3d{word-spacing:0.601600pt;}
.wsa0{word-spacing:0.651733pt;}
.ws44{word-spacing:0.701867pt;}
.wsbe{word-spacing:0.720000pt;}
.ws88{word-spacing:0.752000pt;}
.wsd4{word-spacing:0.760000pt;}
.wsa4{word-spacing:0.802133pt;}
.wsad{word-spacing:0.843200pt;}
.ws24{word-spacing:0.852267pt;}
.ws7a{word-spacing:0.902400pt;}
.wsd1{word-spacing:0.960000pt;}
.wsef{word-spacing:0.963200pt;}
.ws4d{word-spacing:0.973333pt;}
.ws94{word-spacing:1.002667pt;}
.ws5d{word-spacing:1.052800pt;}
.ws57{word-spacing:1.153067pt;}
.wsde{word-spacing:1.200000pt;}
.ws26{word-spacing:1.303467pt;}
.ws48{word-spacing:1.403733pt;}
.ws75{word-spacing:1.453867pt;}
.wsae{word-spacing:1.488000pt;}
.wsb3{word-spacing:1.504000pt;}
.wsf8{word-spacing:1.513600pt;}
.wsc{word-spacing:1.587200pt;}
.wseb{word-spacing:1.600000pt;}
.ws2d{word-spacing:1.654400pt;}
.ws59{word-spacing:1.704533pt;}
.wsbd{word-spacing:1.760000pt;}
.wsc4{word-spacing:1.840000pt;}
.wse6{word-spacing:1.880000pt;}
.ws6c{word-spacing:1.884800pt;}
.ws89{word-spacing:1.905067pt;}
.ws80{word-spacing:1.955200pt;}
.ws4a{word-spacing:2.005333pt;}
.ws92{word-spacing:2.033600pt;}
.ws5f{word-spacing:2.105600pt;}
.wsdb{word-spacing:2.120000pt;}
.ws4c{word-spacing:2.155733pt;}
.ws62{word-spacing:2.205867pt;}
.ws66{word-spacing:2.256000pt;}
.ws1f{word-spacing:2.306133pt;}
.ws68{word-spacing:2.346667pt;}
.ws3b{word-spacing:2.356267pt;}
.ws73{word-spacing:2.480000pt;}
.wsd3{word-spacing:2.560000pt;}
.wse4{word-spacing:2.600000pt;}
.wsa3{word-spacing:2.606933pt;}
.ws17{word-spacing:2.608533pt;}
.ws50{word-spacing:2.647467pt;}
.ws7b{word-spacing:2.657067pt;}
.wsba{word-spacing:2.680000pt;}
.ws78{word-spacing:2.707200pt;}
.wse1{word-spacing:2.760000pt;}
.ws32{word-spacing:2.807467pt;}
.ws97{word-spacing:2.842133pt;}
.wsf4{word-spacing:2.843733pt;}
.ws3c{word-spacing:2.957867pt;}
.ws63{word-spacing:3.008000pt;}
.ws3f{word-spacing:3.058133pt;}
.wsf7{word-spacing:3.073067pt;}
.ws25{word-spacing:3.108267pt;}
.ws5c{word-spacing:3.158400pt;}
.ws2e{word-spacing:3.208533pt;}
.ws28{word-spacing:3.308800pt;}
.ws12{word-spacing:3.358933pt;}
.ws56{word-spacing:3.409067pt;}
.wsf3{word-spacing:3.440000pt;}
.ws9a{word-spacing:3.509333pt;}
.ws8c{word-spacing:3.521600pt;}
.ws61{word-spacing:3.559467pt;}
.ws91{word-spacing:3.571200pt;}
.wsb4{word-spacing:3.609600pt;}
.ws22{word-spacing:3.659733pt;}
.ws23{word-spacing:3.709867pt;}
.ws6e{word-spacing:3.720000pt;}
.ws85{word-spacing:3.860267pt;}
.wsab{word-spacing:3.868800pt;}
.ws95{word-spacing:3.910400pt;}
.ws41{word-spacing:3.960533pt;}
.ws52{word-spacing:3.971200pt;}
.ws9{word-spacing:4.116800pt;}
.wsf0{word-spacing:4.173867pt;}
.ws9f{word-spacing:4.211200pt;}
.ws39{word-spacing:4.311467pt;}
.ws16{word-spacing:4.321600pt;}
.wsa{word-spacing:4.414400pt;}
.wsb2{word-spacing:4.512000pt;}
.ws11{word-spacing:4.562133pt;}
.ws6a{word-spacing:4.612800pt;}
.ws58{word-spacing:4.662400pt;}
.ws7d{word-spacing:4.712533pt;}
.wsed{word-spacing:4.724267pt;}
.wsdf{word-spacing:4.760000pt;}
.ws90{word-spacing:4.761600pt;}
.ws1d{word-spacing:4.762667pt;}
.ws1e{word-spacing:4.913067pt;}
.ws47{word-spacing:4.963200pt;}
.ws10{word-spacing:5.013333pt;}
.ws55{word-spacing:5.063467pt;}
.ws6f{word-spacing:5.108800pt;}
.wsb1{word-spacing:5.213867pt;}
.ws8f{word-spacing:5.257600pt;}
.ws76{word-spacing:5.264000pt;}
.wsb8{word-spacing:5.314133pt;}
.ws8e{word-spacing:5.406400pt;}
.ws37{word-spacing:5.464533pt;}
.wsc3{word-spacing:5.520000pt;}
.wsd5{word-spacing:5.560000pt;}
.wse8{word-spacing:5.680000pt;}
.ws33{word-spacing:5.715200pt;}
.ws4e{word-spacing:5.723200pt;}
.ws8{word-spacing:5.852800pt;}
.ws4b{word-spacing:5.865600pt;}
.ws98{word-spacing:5.917867pt;}
.wsc5{word-spacing:6.000000pt;}
.ws93{word-spacing:6.016000pt;}
.wse0{word-spacing:6.120000pt;}
.wsf6{word-spacing:6.146133pt;}
.ws15{word-spacing:6.166400pt;}
.wsbc{word-spacing:6.280000pt;}
.wsc1{word-spacing:6.320000pt;}
.wsbf{word-spacing:6.400000pt;}
.wsac{word-spacing:6.497600pt;}
.ws5a{word-spacing:6.517333pt;}
.ws87{word-spacing:6.617600pt;}
.ws20{word-spacing:6.667733pt;}
.wsb5{word-spacing:6.768000pt;}
.ws86{word-spacing:6.868267pt;}
.ws7f{word-spacing:6.968533pt;}
.ws35{word-spacing:7.068800pt;}
.wsa6{word-spacing:7.118933pt;}
.wsaa{word-spacing:7.241600pt;}
.wsee{word-spacing:7.246933pt;}
.wsb{word-spacing:7.291200pt;}
.wscd{word-spacing:7.440000pt;}
.wsdc{word-spacing:7.480000pt;}
.ws64{word-spacing:7.520000pt;}
.ws2b{word-spacing:7.820800pt;}
.wsec{word-spacing:7.920000pt;}
.wscc{word-spacing:8.200000pt;}
.ws30{word-spacing:8.221867pt;}
.wsb6{word-spacing:8.422400pt;}
.wsc2{word-spacing:8.480000pt;}
.ws82{word-spacing:8.522667pt;}
.ws1c{word-spacing:8.622933pt;}
.wse9{word-spacing:8.720000pt;}
.ws81{word-spacing:8.773333pt;}
.wsf5{word-spacing:8.989867pt;}
.wsd9{word-spacing:9.040000pt;}
.wsce{word-spacing:9.160000pt;}
.wsea{word-spacing:9.880000pt;}
.wscf{word-spacing:9.960000pt;}
.wsda{word-spacing:10.280000pt;}
.wsa2{word-spacing:10.327467pt;}
.wsd7{word-spacing:10.440000pt;}
.wsc0{word-spacing:10.880000pt;}
.ws2f{word-spacing:11.029333pt;}
.ws9c{word-spacing:11.229867pt;}
.wsd0{word-spacing:12.040000pt;}
.wsd8{word-spacing:14.560000pt;}
.wsb9{word-spacing:15.080000pt;}
.wse2{word-spacing:15.120000pt;}
.wsc9{word-spacing:16.480000pt;}
.wsdd{word-spacing:16.960000pt;}
.wscb{word-spacing:18.840000pt;}
.wsc6{word-spacing:25.920000pt;}
.wsca{word-spacing:44.480000pt;}
.ws4{word-spacing:1899.440000pt;}
._d{margin-left:-14.082068pt;}
._4{margin-left:-6.118080pt;}
._3{margin-left:-4.876800pt;}
._1{margin-left:-3.194667pt;}
._5{margin-left:-2.259200pt;}
._2{margin-left:-1.152000pt;}
._0{width:1.434667pt;}
._8{width:2.414120pt;}
._6{width:3.512630pt;}
._e{width:4.464000pt;}
._b{width:5.865600pt;}
._10{width:9.480000pt;}
._f{width:15.897333pt;}
._c{width:22.869262pt;}
._a{width:28.264709pt;}
._9{width:44.967659pt;}
._7{width:49.289259pt;}
.fs5{font-size:28.916800pt;}
.fs7{font-size:29.227733pt;}
.fs8{font-size:38.933333pt;}
.fs0{font-size:40.000000pt;}
.fsa{font-size:45.866667pt;}
.fs9{font-size:48.000000pt;}
.fs4{font-size:49.600000pt;}
.fs6{font-size:50.133333pt;}
.fs1{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y23{bottom:56.598533pt;}
.yda{bottom:92.593600pt;}
.y6d{bottom:92.594933pt;}
.y22{bottom:92.598533pt;}
.y6c{bottom:104.596133pt;}
.yc3{bottom:108.375867pt;}
.y21{bottom:108.376533pt;}
.y49{bottom:108.378133pt;}
.y8a{bottom:108.378267pt;}
.yd9{bottom:110.598400pt;}
.y6b{bottom:116.597333pt;}
.yc2{bottom:120.377067pt;}
.y20{bottom:124.154267pt;}
.y48{bottom:124.157867pt;}
.y105{bottom:124.805067pt;}
.y14e{bottom:128.582400pt;}
.y6a{bottom:128.598533pt;}
.ya4{bottom:128.613333pt;}
.yc1{bottom:132.378267pt;}
.y1f{bottom:136.155467pt;}
.yfa{bottom:137.443600pt;}
.y104{bottom:137.475067pt;}
.y47{bottom:139.937467pt;}
.y69{bottom:140.598533pt;}
.y88{bottom:146.579200pt;}
.y14d{bottom:146.585067pt;}
.y89{bottom:146.598400pt;}
.ya3{bottom:146.611200pt;}
.y1e{bottom:148.156667pt;}
.yf9{bottom:150.113600pt;}
.y103{bottom:153.863600pt;}
.y46{bottom:155.717200pt;}
.y68{bottom:156.380133pt;}
.y1d{bottom:160.157867pt;}
.y87{bottom:164.584000pt;}
.y14c{bottom:164.587733pt;}
.yc0{bottom:164.604800pt;}
.ya2{bottom:164.609067pt;}
.y102{bottom:166.533600pt;}
.yf8{bottom:166.563600pt;}
.y1c{bottom:172.157867pt;}
.y67{bottom:172.159733pt;}
.y101{bottom:179.203600pt;}
.yf7{bottom:179.233600pt;}
.y86{bottom:182.588800pt;}
.y14b{bottom:182.590400pt;}
.ybf{bottom:182.602667pt;}
.ya1{bottom:182.606933pt;}
.y66{bottom:187.937467pt;}
.y1b{bottom:187.937600pt;}
.yf6{bottom:191.903600pt;}
.y100{bottom:195.653600pt;}
.y14a{bottom:200.593067pt;}
.y85{bottom:200.593600pt;}
.ybe{bottom:200.600533pt;}
.ya0{bottom:200.604800pt;}
.y45{bottom:200.609067pt;}
.yd8{bottom:200.638933pt;}
.y1a{bottom:203.717200pt;}
.yff{bottom:208.323600pt;}
.yf5{bottom:208.353600pt;}
.y149{bottom:218.595733pt;}
.y84{bottom:218.598400pt;}
.y9f{bottom:218.602667pt;}
.y44{bottom:218.606933pt;}
.yd7{bottom:218.636800pt;}
.y65{bottom:219.496800pt;}
.yfe{bottom:220.993600pt;}
.yf4{bottom:221.023600pt;}
.y64{bottom:235.276533pt;}
.ybd{bottom:236.598400pt;}
.y9e{bottom:236.600533pt;}
.y19{bottom:236.600667pt;}
.y43{bottom:236.604800pt;}
.ybc{bottom:236.617600pt;}
.yd6{bottom:236.634667pt;}
.yfd{bottom:237.443600pt;}
.yf3{bottom:237.473600pt;}
.yfc{bottom:250.113600pt;}
.yf2{bottom:250.143600pt;}
.y63{bottom:251.056133pt;}
.y9d{bottom:254.598400pt;}
.y18{bottom:254.600667pt;}
.y83{bottom:254.602400pt;}
.y42{bottom:254.602667pt;}
.ybb{bottom:254.615467pt;}
.yd5{bottom:254.632533pt;}
.yfb{bottom:262.783600pt;}
.yf1{bottom:262.813600pt;}
.y62{bottom:266.837733pt;}
.y82{bottom:272.598400pt;}
.y17{bottom:272.598533pt;}
.y41{bottom:272.600533pt;}
.y16{bottom:272.600667pt;}
.yba{bottom:272.613333pt;}
.y9c{bottom:272.626133pt;}
.yd4{bottom:272.630400pt;}
.y61{bottom:282.615467pt;}
.yf0{bottom:290.598400pt;}
.y15{bottom:290.602800pt;}
.yb9{bottom:290.611200pt;}
.y40{bottom:290.621867pt;}
.y9b{bottom:290.624000pt;}
.yd3{bottom:290.628267pt;}
.y60{bottom:294.617333pt;}
.y14{bottom:308.600667pt;}
.yb8{bottom:308.609067pt;}
.y3f{bottom:308.619733pt;}
.y9a{bottom:308.621867pt;}
.yd2{bottom:308.626133pt;}
.y5f{bottom:310.395067pt;}
.y5e{bottom:322.395067pt;}
.y13{bottom:326.598533pt;}
.yb7{bottom:326.606933pt;}
.y3e{bottom:326.617600pt;}
.y99{bottom:326.619733pt;}
.yd1{bottom:326.624000pt;}
.y81{bottom:326.636800pt;}
.y148{bottom:341.890400pt;}
.y11{bottom:344.560133pt;}
.yb6{bottom:344.604800pt;}
.y3d{bottom:344.615467pt;}
.y98{bottom:344.617600pt;}
.yd0{bottom:344.621867pt;}
.y80{bottom:344.634667pt;}
.y12{bottom:348.727600pt;}
.y126{bottom:350.890400pt;}
.y147{bottom:354.560400pt;}
.y10{bottom:362.564933pt;}
.y5d{bottom:362.602667pt;}
.y3c{bottom:362.613333pt;}
.y97{bottom:362.615467pt;}
.ycf{bottom:362.619733pt;}
.yef{bottom:362.624000pt;}
.y7f{bottom:362.632533pt;}
.y125{bottom:363.560400pt;}
.y146{bottom:367.230400pt;}
.y145{bottom:379.900400pt;}
.y124{bottom:380.010400pt;}
.yf{bottom:380.569733pt;}
.y5c{bottom:380.600533pt;}
.y3b{bottom:380.611200pt;}
.y96{bottom:380.613333pt;}
.yce{bottom:380.617600pt;}
.yee{bottom:380.621867pt;}
.y7e{bottom:380.630400pt;}
.y123{bottom:392.680400pt;}
.y144{bottom:396.350400pt;}
.ye{bottom:398.574533pt;}
.yb5{bottom:398.598400pt;}
.y5b{bottom:398.602667pt;}
.y3a{bottom:398.609067pt;}
.y95{bottom:398.611200pt;}
.ycd{bottom:398.615467pt;}
.yed{bottom:398.619733pt;}
.y7d{bottom:398.628267pt;}
.y143{bottom:409.020400pt;}
.y122{bottom:409.130400pt;}
.yb4{bottom:416.564800pt;}
.yd{bottom:416.579333pt;}
.y5a{bottom:416.600533pt;}
.y39{bottom:416.606933pt;}
.y94{bottom:416.609067pt;}
.ycc{bottom:416.613333pt;}
.yec{bottom:416.617600pt;}
.y7c{bottom:416.626133pt;}
.y142{bottom:421.690400pt;}
.y121{bottom:421.800400pt;}
.y141{bottom:434.360400pt;}
.y120{bottom:434.470400pt;}
.yb3{bottom:434.569600pt;}
.yc{bottom:434.584133pt;}
.y59{bottom:434.600533pt;}
.y38{bottom:434.604800pt;}
.y93{bottom:434.606933pt;}
.ycb{bottom:434.611200pt;}
.yeb{bottom:434.615467pt;}
.y7b{bottom:434.624000pt;}
.y140{bottom:447.030400pt;}
.y11f{bottom:447.140400pt;}
.yb2{bottom:452.574400pt;}
.yb{bottom:452.588933pt;}
.y37{bottom:452.602667pt;}
.y58{bottom:452.604800pt;}
.yca{bottom:452.609067pt;}
.yea{bottom:452.613333pt;}
.y7a{bottom:452.621867pt;}
.y11e{bottom:459.810400pt;}
.y13f{bottom:463.480400pt;}
.yb1{bottom:470.579200pt;}
.ya{bottom:470.593733pt;}
.y36{bottom:470.600533pt;}
.y57{bottom:470.602667pt;}
.yc9{bottom:470.606933pt;}
.ye9{bottom:470.611200pt;}
.y79{bottom:470.619733pt;}
.y13e{bottom:476.150400pt;}
.y11d{bottom:476.260400pt;}
.yb0{bottom:488.584000pt;}
.y9{bottom:488.598533pt;}
.y56{bottom:488.600533pt;}
.y35{bottom:488.602667pt;}
.yc8{bottom:488.604800pt;}
.ye8{bottom:488.609067pt;}
.y78{bottom:488.617600pt;}
.y13d{bottom:488.820400pt;}
.y11c{bottom:488.930400pt;}
.y11b{bottom:501.600400pt;}
.y13c{bottom:505.270400pt;}
.yaf{bottom:506.588800pt;}
.y8{bottom:506.593733pt;}
.y34{bottom:506.600533pt;}
.yc7{bottom:506.602667pt;}
.ye7{bottom:506.606933pt;}
.y77{bottom:506.615467pt;}
.y92{bottom:506.617600pt;}
.y11a{bottom:514.270400pt;}
.y13b{bottom:517.940400pt;}
.yae{bottom:524.593600pt;}
.y6{bottom:524.598533pt;}
.y33{bottom:524.600533pt;}
.y55{bottom:524.604800pt;}
.y76{bottom:524.613333pt;}
.y91{bottom:524.615467pt;}
.y7{bottom:528.727600pt;}
.y13a{bottom:530.610400pt;}
.y119{bottom:530.720400pt;}
.y158{bottom:542.587733pt;}
.yad{bottom:542.598400pt;}
.y54{bottom:542.602667pt;}
.y75{bottom:542.611200pt;}
.y32{bottom:542.613333pt;}
.y118{bottom:543.390400pt;}
.y139{bottom:547.060400pt;}
.y117{bottom:556.060400pt;}
.y138{bottom:559.730400pt;}
.y157{bottom:560.590400pt;}
.y53{bottom:560.600533pt;}
.y5{bottom:560.601200pt;}
.y74{bottom:560.609067pt;}
.y31{bottom:560.611200pt;}
.y137{bottom:572.400400pt;}
.y116{bottom:572.510400pt;}
.y156{bottom:578.593067pt;}
.yac{bottom:578.598400pt;}
.yc6{bottom:578.600533pt;}
.y52{bottom:578.602667pt;}
.y73{bottom:578.606933pt;}
.y30{bottom:578.609067pt;}
.y115{bottom:585.180400pt;}
.y136{bottom:588.850400pt;}
.ye5{bottom:596.584000pt;}
.y155{bottom:596.595733pt;}
.yc5{bottom:596.598400pt;}
.y51{bottom:596.600533pt;}
.y72{bottom:596.604800pt;}
.y2f{bottom:596.606933pt;}
.ye6{bottom:600.727600pt;}
.y135{bottom:601.520400pt;}
.y114{bottom:601.630400pt;}
.y134{bottom:614.190400pt;}
.y113{bottom:614.300400pt;}
.ye4{bottom:614.588800pt;}
.y154{bottom:614.598400pt;}
.y71{bottom:614.602667pt;}
.y2e{bottom:614.604800pt;}
.y50{bottom:614.611200pt;}
.y133{bottom:626.860400pt;}
.y112{bottom:626.970400pt;}
.ye3{bottom:632.593600pt;}
.y70{bottom:632.600533pt;}
.y2d{bottom:632.602667pt;}
.y4f{bottom:632.609067pt;}
.yab{bottom:632.611200pt;}
.y111{bottom:639.640400pt;}
.y132{bottom:643.310400pt;}
.ye2{bottom:650.588800pt;}
.yc4{bottom:650.598400pt;}
.y2c{bottom:650.600533pt;}
.y4e{bottom:650.606933pt;}
.yaa{bottom:650.609067pt;}
.y6f{bottom:650.615467pt;}
.y110{bottom:652.310400pt;}
.y131{bottom:655.980400pt;}
.ye1{bottom:668.593600pt;}
.y2b{bottom:668.598400pt;}
.y4d{bottom:668.604800pt;}
.ya9{bottom:668.606933pt;}
.y6e{bottom:668.613333pt;}
.y130{bottom:668.650400pt;}
.y10f{bottom:668.760400pt;}
.y10e{bottom:681.430400pt;}
.y12f{bottom:685.100400pt;}
.y90{bottom:686.584000pt;}
.y153{bottom:686.585067pt;}
.ye0{bottom:686.598400pt;}
.y4c{bottom:686.602667pt;}
.ya8{bottom:686.604800pt;}
.y2a{bottom:686.611200pt;}
.y12e{bottom:697.770400pt;}
.y10d{bottom:697.880400pt;}
.ydf{bottom:704.579200pt;}
.y152{bottom:704.587733pt;}
.y8f{bottom:704.588800pt;}
.y4{bottom:704.598533pt;}
.y4b{bottom:704.600533pt;}
.ya7{bottom:704.602667pt;}
.y29{bottom:704.609067pt;}
.y12d{bottom:710.440400pt;}
.y10c{bottom:710.550400pt;}
.yde{bottom:722.584000pt;}
.y151{bottom:722.590400pt;}
.y8e{bottom:722.593600pt;}
.y4a{bottom:722.600533pt;}
.y28{bottom:722.606933pt;}
.y10b{bottom:723.220400pt;}
.y12c{bottom:726.890400pt;}
.y12b{bottom:739.560400pt;}
.y10a{bottom:739.670400pt;}
.ydd{bottom:740.588800pt;}
.y150{bottom:740.593067pt;}
.y8d{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.ya6{bottom:740.602667pt;}
.y27{bottom:740.604800pt;}
.y12a{bottom:752.230400pt;}
.y109{bottom:752.340400pt;}
.y8c{bottom:758.588800pt;}
.ydc{bottom:758.593600pt;}
.y14f{bottom:758.595733pt;}
.ya5{bottom:758.600533pt;}
.y26{bottom:758.602667pt;}
.y129{bottom:768.680400pt;}
.y108{bottom:768.780000pt;}
.y8b{bottom:776.593600pt;}
.ydb{bottom:776.598400pt;}
.y25{bottom:776.600533pt;}
.y128{bottom:781.350400pt;}
.y107{bottom:781.450000pt;}
.y127{bottom:794.020400pt;}
.y106{bottom:794.120000pt;}
.y24{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y1{bottom:847.033333pt;}
.h7{height:26.256454pt;}
.h15{height:31.411200pt;}
.h14{height:31.411733pt;}
.hc{height:31.419200pt;}
.hd{height:31.426133pt;}
.he{height:32.280000pt;}
.h1c{height:32.400000pt;}
.h12{height:35.351467pt;}
.h19{height:36.059200pt;}
.h2{height:36.320000pt;}
.h1a{height:36.446933pt;}
.h1d{height:37.152000pt;}
.h1e{height:41.646933pt;}
.h6{height:42.110400pt;}
.h9{height:42.563200pt;}
.h17{height:43.079582pt;}
.h11{height:43.139315pt;}
.h18{height:43.156382pt;}
.h16{height:43.164915pt;}
.h10{height:43.173449pt;}
.hf{height:43.181982pt;}
.h3{height:43.200000pt;}
.h13{height:43.207582pt;}
.ha{height:43.216115pt;}
.hb{height:43.224649pt;}
.h8{height:43.233182pt;}
.h1b{height:43.584000pt;}
.h5{height:53.269333pt;}
.h4{height:87.168000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.xe{left:79.370767pt;}
.x11{left:80.525200pt;}
.x5{left:83.149600pt;}
.x7{left:86.929067pt;}
.xc{left:91.082533pt;}
.x8{left:112.710667pt;}
.xd{left:123.462667pt;}
.xb{left:213.691200pt;}
.x6{left:255.543600pt;}
.xf{left:319.368167pt;}
.x9{left:326.964800pt;}
.x10{left:330.707467pt;}
.x4{left:383.734533pt;}
.x2{left:491.665733pt;}
.x3{left:495.452267pt;}
.xa{left:521.652800pt;}
}




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