
    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_d37289ebc6c4a668214f14a3.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_f4049642a2b0d48b6a94c0e5.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_5e61b824e4cc9cf1f8ff81bd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.944000;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_108d515b601e859654565605.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.959000;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_31e3cd77c91f91f3d11a3456.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.959000;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_5f7404806fcee323327bbbb4.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.111000;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_34ca6c25e559717ea8200a35.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_d2f56edc13c7ad38f600b43d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.mb{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m8{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);}
.m5{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);}
.m4{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);}
.m6{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);}
.m2{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);}
.m1{transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245001,0.000000,0.000000,0.250000,0,0);}
.m9{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);}
.mc{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);}
.m3{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);}
.ma{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,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.771600px;}
.lsf{letter-spacing:-1.710000px;}
.lsb{letter-spacing:-0.420000px;}
.ls8{letter-spacing:-0.282000px;}
.ls6{letter-spacing:-0.270000px;}
.ls3{letter-spacing:-0.258000px;}
.ls10{letter-spacing:-0.252000px;}
.ls1{letter-spacing:-0.222000px;}
.ls4{letter-spacing:-0.168000px;}
.lsa{letter-spacing:-0.164406px;}
.ls2{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.222000px;}
.lsc{letter-spacing:1.015200px;}
.ls9{letter-spacing:2.394000px;}
.lsd{letter-spacing:3.418800px;}
.ls7{letter-spacing:3.729600px;}
.lse{letter-spacing:9.368400px;}
.ls0{letter-spacing:2110.694694px;}
.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;}
}
.ws9c{word-spacing:-16.694400px;}
.ws1{word-spacing:-12.000000px;}
.wsb8{word-spacing:-11.250000px;}
.wsed{word-spacing:-10.080000px;}
.wsb9{word-spacing:-9.540000px;}
.ws0{word-spacing:-8.658000px;}
.ws2{word-spacing:-8.400000px;}
.ws65{word-spacing:-8.232000px;}
.ws19{word-spacing:-6.576240px;}
.ws64{word-spacing:-6.411834px;}
.wsc3{word-spacing:-6.300000px;}
.ws1f{word-spacing:-3.348000px;}
.ws92{word-spacing:-3.327600px;}
.ws26{word-spacing:-2.989200px;}
.ws4{word-spacing:-2.889600px;}
.ws60{word-spacing:-2.876400px;}
.ws91{word-spacing:-2.820000px;}
.ws59{word-spacing:-2.763600px;}
.ws71{word-spacing:-2.650800px;}
.wsc6{word-spacing:-2.610000px;}
.ws6f{word-spacing:-2.538000px;}
.wsb7{word-spacing:-2.481600px;}
.wsaf{word-spacing:-2.425200px;}
.ws98{word-spacing:-2.368800px;}
.ws6d{word-spacing:-2.312400px;}
.ws3e{word-spacing:-2.256000px;}
.wsae{word-spacing:-2.199600px;}
.ws11{word-spacing:-2.086800px;}
.ws8{word-spacing:-2.012400px;}
.wsea{word-spacing:-1.980000px;}
.ws5c{word-spacing:-1.974000px;}
.ws2c{word-spacing:-1.890000px;}
.ws5e{word-spacing:-1.861200px;}
.wsa7{word-spacing:-1.748400px;}
.ws9{word-spacing:-1.702800px;}
.ws57{word-spacing:-1.692000px;}
.ws38{word-spacing:-1.638000px;}
.ws76{word-spacing:-1.635600px;}
.ws7e{word-spacing:-1.554000px;}
.ws8e{word-spacing:-1.522800px;}
.wsb3{word-spacing:-1.466400px;}
.ws7{word-spacing:-1.444800px;}
.ws9f{word-spacing:-1.410000px;}
.wsd3{word-spacing:-1.395000px;}
.wsec{word-spacing:-1.305000px;}
.ws6c{word-spacing:-1.297200px;}
.ws5{word-spacing:-1.290000px;}
.wsaa{word-spacing:-1.287600px;}
.wsdb{word-spacing:-1.260000px;}
.ws86{word-spacing:-1.240800px;}
.wse4{word-spacing:-1.215000px;}
.ws8f{word-spacing:-1.184400px;}
.ws7b{word-spacing:-1.134000px;}
.ws77{word-spacing:-1.128000px;}
.wsbe{word-spacing:-1.125000px;}
.ws27{word-spacing:-1.071600px;}
.ws75{word-spacing:-1.015200px;}
.ws3d{word-spacing:-0.958800px;}
.ws89{word-spacing:-0.932400px;}
.wsb2{word-spacing:-0.902400px;}
.ws2f{word-spacing:-0.798000px;}
.ws3c{word-spacing:-0.789600px;}
.wsf0{word-spacing:-0.705600px;}
.ws9a{word-spacing:-0.676800px;}
.ws46{word-spacing:-0.666000px;}
.ws2d{word-spacing:-0.630000px;}
.ws5f{word-spacing:-0.620400px;}
.wsf2{word-spacing:-0.604800px;}
.ws55{word-spacing:-0.564000px;}
.ws51{word-spacing:-0.507600px;}
.ws74{word-spacing:-0.451200px;}
.ws1a{word-spacing:-0.444000px;}
.ws99{word-spacing:-0.394800px;}
.ws34{word-spacing:-0.378000px;}
.ws1b{word-spacing:-0.338400px;}
.ws14{word-spacing:-0.225600px;}
.wsa2{word-spacing:-0.210000px;}
.wsa{word-spacing:-0.206400px;}
.ws90{word-spacing:-0.056400px;}
.ws3{word-spacing:0.000000px;}
.ws7c{word-spacing:0.042000px;}
.ws3a{word-spacing:0.056400px;}
.ws88{word-spacing:0.112800px;}
.ws2e{word-spacing:0.168000px;}
.ws70{word-spacing:0.169200px;}
.wsbd{word-spacing:0.225000px;}
.wsb0{word-spacing:0.225600px;}
.ws9e{word-spacing:0.282000px;}
.ws48{word-spacing:0.310800px;}
.ws37{word-spacing:0.336000px;}
.ws40{word-spacing:0.338400px;}
.ws56{word-spacing:0.394800px;}
.ws79{word-spacing:0.420000px;}
.wsb4{word-spacing:0.451200px;}
.ws7d{word-spacing:0.462000px;}
.ws41{word-spacing:0.507600px;}
.wse{word-spacing:0.567600px;}
.wsa3{word-spacing:0.672000px;}
.ws8a{word-spacing:0.843600px;}
.ws97{word-spacing:0.846000px;}
.ws58{word-spacing:0.958800px;}
.ws5b{word-spacing:1.015200px;}
.wsf{word-spacing:1.032000px;}
.ws85{word-spacing:1.071600px;}
.wsc4{word-spacing:1.080000px;}
.ws1e{word-spacing:1.128000px;}
.ws7f{word-spacing:1.134000px;}
.ws81{word-spacing:1.184400px;}
.wsd2{word-spacing:1.215000px;}
.ws1c{word-spacing:1.240800px;}
.ws18{word-spacing:1.302000px;}
.wsc2{word-spacing:1.395000px;}
.ws29{word-spacing:1.410000px;}
.ws5a{word-spacing:1.522800px;}
.ws6b{word-spacing:1.579200px;}
.ws23{word-spacing:1.635600px;}
.wsd9{word-spacing:1.665000px;}
.ws4c{word-spacing:1.692000px;}
.ws24{word-spacing:1.804800px;}
.wse0{word-spacing:1.845000px;}
.wsa9{word-spacing:1.917600px;}
.wsb{word-spacing:1.960800px;}
.ws3b{word-spacing:1.974000px;}
.ws31{word-spacing:2.016000px;}
.ws28{word-spacing:2.030400px;}
.wsd7{word-spacing:2.115000px;}
.wsad{word-spacing:2.143200px;}
.wse9{word-spacing:2.250000px;}
.ws6e{word-spacing:2.256000px;}
.wse2{word-spacing:2.295000px;}
.ws73{word-spacing:2.312400px;}
.wseb{word-spacing:2.340000px;}
.ws72{word-spacing:2.368800px;}
.ws6{word-spacing:2.373600px;}
.ws78{word-spacing:2.394000px;}
.ws62{word-spacing:2.425200px;}
.ws5d{word-spacing:2.481600px;}
.ws20{word-spacing:2.538000px;}
.wsa0{word-spacing:2.562000px;}
.ws95{word-spacing:2.594400px;}
.wsdc{word-spacing:2.610000px;}
.ws42{word-spacing:2.650800px;}
.ws3f{word-spacing:2.707200px;}
.wsc9{word-spacing:2.790000px;}
.ws7a{word-spacing:2.814000px;}
.ws63{word-spacing:2.820000px;}
.ws87{word-spacing:2.876400px;}
.wse1{word-spacing:2.880000px;}
.wsa6{word-spacing:2.932800px;}
.wsa1{word-spacing:2.982000px;}
.ws68{word-spacing:2.989200px;}
.wsdd{word-spacing:3.015000px;}
.ws1d{word-spacing:3.045600px;}
.wsb1{word-spacing:3.102000px;}
.ws61{word-spacing:3.158400px;}
.ws94{word-spacing:3.271200px;}
.ws30{word-spacing:3.276000px;}
.wse3{word-spacing:3.285000px;}
.wsc{word-spacing:3.354000px;}
.ws16{word-spacing:3.360000px;}
.ws13{word-spacing:3.384000px;}
.ws8c{word-spacing:3.418800px;}
.wsd6{word-spacing:3.420000px;}
.wsb5{word-spacing:3.440400px;}
.ws54{word-spacing:3.496800px;}
.ws17{word-spacing:3.528000px;}
.wsbf{word-spacing:3.555000px;}
.ws6a{word-spacing:3.609600px;}
.ws67{word-spacing:3.666000px;}
.wsba{word-spacing:3.722400px;}
.ws4d{word-spacing:3.729600px;}
.ws9b{word-spacing:3.778800px;}
.ws32{word-spacing:3.864000px;}
.wsb6{word-spacing:3.891600px;}
.ws36{word-spacing:3.948000px;}
.ws69{word-spacing:4.004400px;}
.wsc0{word-spacing:4.005000px;}
.ws22{word-spacing:4.117200px;}
.ws4a{word-spacing:4.173600px;}
.wsf1{word-spacing:4.183200px;}
.ws45{word-spacing:4.230000px;}
.wsd8{word-spacing:4.275000px;}
.ws43{word-spacing:4.286400px;}
.ws44{word-spacing:4.512000px;}
.wsda{word-spacing:4.545000px;}
.ws2a{word-spacing:4.568400px;}
.ws35{word-spacing:4.578000px;}
.ws12{word-spacing:4.624800px;}
.ws4f{word-spacing:4.737600px;}
.ws53{word-spacing:4.850400px;}
.ws33{word-spacing:4.914000px;}
.ws93{word-spacing:4.963200px;}
.ws2b{word-spacing:5.076000px;}
.wscc{word-spacing:5.265000px;}
.ws52{word-spacing:5.301600px;}
.ws82{word-spacing:5.358000px;}
.ws50{word-spacing:5.414400px;}
.ws15{word-spacing:5.470800px;}
.wsd{word-spacing:5.572800px;}
.wscd{word-spacing:5.580000px;}
.ws84{word-spacing:5.640000px;}
.ws25{word-spacing:5.752800px;}
.wsbc{word-spacing:5.760000px;}
.ws10{word-spacing:5.809200px;}
.ws4e{word-spacing:6.260400px;}
.wse7{word-spacing:6.975000px;}
.ws83{word-spacing:7.050000px;}
.ws21{word-spacing:7.162800px;}
.ws4b{word-spacing:8.403600px;}
.ws96{word-spacing:8.572800px;}
.wsd1{word-spacing:8.910000px;}
.wsa8{word-spacing:8.967600px;}
.wsc5{word-spacing:9.270000px;}
.wsa4{word-spacing:9.368400px;}
.wsc1{word-spacing:9.405000px;}
.wscb{word-spacing:10.395000px;}
.wsef{word-spacing:10.432800px;}
.wsdf{word-spacing:11.745000px;}
.wse8{word-spacing:12.960000px;}
.wsab{word-spacing:13.098000px;}
.wsc8{word-spacing:13.950000px;}
.wsd5{word-spacing:15.210000px;}
.wsd4{word-spacing:15.750000px;}
.wsa5{word-spacing:16.028400px;}
.wsca{word-spacing:16.965000px;}
.wsbb{word-spacing:17.640000px;}
.wsce{word-spacing:19.710000px;}
.wscf{word-spacing:20.160000px;}
.wsd0{word-spacing:21.060000px;}
.wse6{word-spacing:22.050000px;}
.ws47{word-spacing:23.665200px;}
.wse5{word-spacing:39.285000px;}
.wsde{word-spacing:98.865000px;}
.wsc7{word-spacing:99.180000px;}
.ws8d{word-spacing:505.845000px;}
.ws9d{word-spacing:506.160000px;}
.wsee{word-spacing:506.295000px;}
.wsac{word-spacing:506.925000px;}
.ws8b{word-spacing:506.970000px;}
.ws39{word-spacing:507.330000px;}
.ws80{word-spacing:507.465000px;}
.ws66{word-spacing:507.870000px;}
.ws49{word-spacing:508.050000px;}
._a{margin-left:-507.896723px;}
._11{margin-left:-506.402972px;}
._c{margin-left:-32.284260px;}
._13{margin-left:-25.357860px;}
._14{margin-left:-22.315095px;}
._1f{margin-left:-19.957065px;}
._e{margin-left:-18.421320px;}
._d{margin-left:-15.119976px;}
._6{margin-left:-7.294920px;}
._4{margin-left:-5.701560px;}
._7{margin-left:-4.219560px;}
._3{margin-left:-2.867880px;}
._2{margin-left:-1.317600px;}
._b{width:1.000365px;}
._0{width:2.002440px;}
._1{width:3.951120px;}
._1c{width:5.070120px;}
._1b{width:6.395880px;}
._17{width:10.095300px;}
._15{width:16.047000px;}
._16{width:17.744880px;}
._18{width:20.863395px;}
._1d{width:21.976605px;}
._19{width:29.627100px;}
._1a{width:30.913200px;}
._12{width:38.509052px;}
._10{width:41.033134px;}
._1e{width:49.005077px;}
._5{width:60.059753px;}
._9{width:63.793670px;}
._8{width:65.309753px;}
._f{width:67.619407px;}
.fc2{color:rgb(0,88,158);}
.fc1{color:rgb(92,36,131);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:31.482000px;}
.fs9{font-size:32.881200px;}
.fs8{font-size:42.000000px;}
.fs0{font-size:44.400000px;}
.fsc{font-size:45.000000px;}
.fs3{font-size:48.972000px;}
.fse{font-size:50.400000px;}
.fs5{font-size:51.600000px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:56.400000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fsd{font-size:72.000000px;}
.fs6{font-size:75.600000px;}
.fs2{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:65.368050px;}
.yb5{bottom:104.082300px;}
.y9f{bottom:104.168850px;}
.y21{bottom:104.170350px;}
.y66{bottom:104.173350px;}
.y5f{bottom:104.175900px;}
.y5a{bottom:104.180400px;}
.yae{bottom:104.197200px;}
.yf8{bottom:104.204400px;}
.ydc{bottom:104.262000px;}
.ydd{bottom:104.751900px;}
.ya0{bottom:104.805000px;}
.y5e{bottom:117.973200px;}
.y9e{bottom:118.270350px;}
.y20{bottom:118.271850px;}
.y65{bottom:121.675050px;}
.y59{bottom:124.428000px;}
.yad{bottom:124.444800px;}
.yf7{bottom:124.452000px;}
.ydb{bottom:124.509600px;}
.y5d{bottom:131.773200px;}
.y4b{bottom:132.367050px;}
.y9d{bottom:132.371850px;}
.y1f{bottom:132.373350px;}
.y58{bottom:144.675600px;}
.yac{bottom:144.692400px;}
.yf6{bottom:144.699600px;}
.yda{bottom:144.757200px;}
.y5c{bottom:145.573200px;}
.yea{bottom:146.471550px;}
.y1e{bottom:146.473350px;}
.y4a{bottom:149.870550px;}
.y49{bottom:163.972050px;}
.ye9{bottom:163.975050px;}
.y57{bottom:164.923200px;}
.yab{bottom:164.940000px;}
.yf5{bottom:164.947200px;}
.yd9{bottom:165.004800px;}
.y127{bottom:169.590300px;}
.y48{bottom:178.073550px;}
.ye8{bottom:178.075050px;}
.y126{bottom:183.844050px;}
.y56{bottom:185.173200px;}
.y64{bottom:185.178000px;}
.y1d{bottom:185.185350px;}
.yaa{bottom:185.187600px;}
.y55{bottom:185.192400px;}
.yf4{bottom:185.194800px;}
.yd8{bottom:185.252400px;}
.y47{bottom:192.175050px;}
.ye7{bottom:195.576750px;}
.y125{bottom:198.097800px;}
.y63{bottom:205.425600px;}
.y1c{bottom:205.432950px;}
.ya9{bottom:205.435200px;}
.y54{bottom:205.440000px;}
.yf3{bottom:205.442400px;}
.yd7{bottom:205.500000px;}
.y46{bottom:206.259750px;}
.yb2{bottom:209.212500px;}
.yb6{bottom:214.612050px;}
.y149{bottom:216.469050px;}
.y124{bottom:216.604050px;}
.yb1{bottom:223.009800px;}
.y45{bottom:223.763250px;}
.y62{bottom:225.678000px;}
.y1b{bottom:225.680550px;}
.ya8{bottom:225.682800px;}
.y53{bottom:225.687600px;}
.yf2{bottom:225.690000px;}
.yd6{bottom:225.747600px;}
.y148{bottom:230.722800px;}
.y123{bottom:230.857800px;}
.y44{bottom:237.864750px;}
.y147{bottom:244.976550px;}
.y122{bottom:245.111550px;}
.y61{bottom:245.925600px;}
.y1a{bottom:245.928150px;}
.ya7{bottom:245.930400px;}
.ye6{bottom:245.932800px;}
.y52{bottom:245.935200px;}
.yf1{bottom:245.937600px;}
.yd5{bottom:245.995200px;}
.y43{bottom:251.966250px;}
.y146{bottom:259.230300px;}
.y121{bottom:259.365300px;}
.y42{bottom:266.067750px;}
.y60{bottom:266.173200px;}
.y19{bottom:266.175750px;}
.ya6{bottom:266.178000px;}
.ye5{bottom:266.180400px;}
.y51{bottom:266.182800px;}
.yf0{bottom:266.185200px;}
.yd4{bottom:266.242800px;}
.y120{bottom:273.619050px;}
.y145{bottom:277.736550px;}
.y41{bottom:280.169250px;}
.y18{bottom:286.423350px;}
.ya5{bottom:286.425600px;}
.ye4{bottom:286.428000px;}
.y50{bottom:286.430400px;}
.yef{bottom:286.432800px;}
.yd3{bottom:286.490400px;}
.y11f{bottom:287.872800px;}
.y144{bottom:291.990300px;}
.y40{bottom:294.270750px;}
.y11e{bottom:302.126550px;}
.y143{bottom:306.244050px;}
.ya4{bottom:306.673200px;}
.ye3{bottom:306.675600px;}
.y4f{bottom:306.678000px;}
.yee{bottom:306.680400px;}
.yd2{bottom:306.738000px;}
.y3f{bottom:308.372250px;}
.y68{bottom:315.777450px;}
.y11d{bottom:316.380300px;}
.y142{bottom:320.497800px;}
.y3e{bottom:322.473750px;}
.y17{bottom:326.923350px;}
.y4e{bottom:326.925600px;}
.ya3{bottom:326.928000px;}
.ye2{bottom:326.932800px;}
.yd1{bottom:326.985600px;}
.y67{bottom:329.574750px;}
.y141{bottom:334.751550px;}
.y11c{bottom:334.886550px;}
.y3d{bottom:336.575250px;}
.y4d{bottom:347.173200px;}
.ya2{bottom:347.175600px;}
.ye1{bottom:347.180400px;}
.y82{bottom:347.190000px;}
.y9c{bottom:347.202000px;}
.yd0{bottom:347.233200px;}
.y11b{bottom:349.140300px;}
.y3c{bottom:350.676750px;}
.y140{bottom:353.257800px;}
.y11a{bottom:363.394050px;}
.y3b{bottom:364.776750px;}
.ya1{bottom:367.423200px;}
.ye0{bottom:367.428000px;}
.y81{bottom:367.437600px;}
.y9b{bottom:367.449600px;}
.ycf{bottom:367.480800px;}
.y13f{bottom:367.511550px;}
.y119{bottom:377.647800px;}
.y13e{bottom:381.765300px;}
.ydf{bottom:387.675600px;}
.y80{bottom:387.685200px;}
.y9a{bottom:387.697200px;}
.yce{bottom:387.728400px;}
.y118{bottom:391.901550px;}
.y13d{bottom:396.019050px;}
.y5b{bottom:407.491950px;}
.y16{bottom:407.908350px;}
.yde{bottom:407.923200px;}
.y3a{bottom:407.925600px;}
.y7f{bottom:407.932800px;}
.y99{bottom:407.944800px;}
.ycd{bottom:407.976000px;}
.y117{bottom:410.388450px;}
.y13c{bottom:414.525300px;}
.y116{bottom:424.642200px;}
.yb0{bottom:426.576600px;}
.y15{bottom:428.161350px;}
.yfb{bottom:428.178600px;}
.y7e{bottom:428.180400px;}
.y98{bottom:428.192400px;}
.y39{bottom:428.202000px;}
.ycc{bottom:428.223600px;}
.y13b{bottom:428.779050px;}
.y115{bottom:438.895950px;}
.yaf{bottom:440.373900px;}
.yfa{bottom:441.975900px;}
.y13a{bottom:447.285300px;}
.y14{bottom:448.414350px;}
.y7d{bottom:448.428000px;}
.y97{bottom:448.440000px;}
.y38{bottom:448.449600px;}
.ycb{bottom:448.471200px;}
.y114{bottom:453.149700px;}
.yf9{bottom:455.773200px;}
.y139{bottom:461.539050px;}
.y113{bottom:467.403450px;}
.y13{bottom:468.667350px;}
.y7c{bottom:468.675600px;}
.y96{bottom:468.687600px;}
.y37{bottom:468.697200px;}
.yca{bottom:468.718800px;}
.yed{bottom:468.808800px;}
.y138{bottom:475.792800px;}
.yec{bottom:482.606100px;}
.y112{bottom:485.847600px;}
.y12{bottom:488.920350px;}
.y7b{bottom:488.923200px;}
.y95{bottom:488.935200px;}
.y36{bottom:488.944800px;}
.yc9{bottom:488.966400px;}
.y101{bottom:488.971200px;}
.y137{bottom:490.046550px;}
.yeb{bottom:496.406100px;}
.y111{bottom:500.101350px;}
.y136{bottom:504.300300px;}
.y11{bottom:509.173350px;}
.y94{bottom:509.182800px;}
.y7a{bottom:509.190000px;}
.y35{bottom:509.192400px;}
.yc8{bottom:509.214000px;}
.y100{bottom:509.218800px;}
.yb4{bottom:514.025400px;}
.y110{bottom:514.355100px;}
.y135{bottom:522.806550px;}
.yb3{bottom:527.822700px;}
.y10f{bottom:528.608850px;}
.y10{bottom:529.417350px;}
.y93{bottom:529.430400px;}
.y79{bottom:529.437600px;}
.y34{bottom:529.440000px;}
.yc7{bottom:529.461600px;}
.yff{bottom:529.466400px;}
.y134{bottom:537.060300px;}
.y10e{bottom:547.115100px;}
.yf{bottom:549.670350px;}
.y92{bottom:549.678000px;}
.y78{bottom:549.685200px;}
.y33{bottom:549.687600px;}
.yc6{bottom:549.709200px;}
.yfe{bottom:549.714000px;}
.y133{bottom:551.314050px;}
.y10d{bottom:561.368850px;}
.y132{bottom:565.567800px;}
.yd{bottom:569.920350px;}
.ye{bottom:569.923350px;}
.y91{bottom:569.925600px;}
.y77{bottom:569.932800px;}
.y32{bottom:569.935200px;}
.yc5{bottom:569.956800px;}
.yfd{bottom:569.961600px;}
.y10c{bottom:575.622600px;}
.y131{bottom:579.821550px;}
.y10b{bottom:589.876350px;}
.yb{bottom:590.164350px;}
.y90{bottom:590.173200px;}
.yc{bottom:590.173350px;}
.y76{bottom:590.180400px;}
.y31{bottom:590.182800px;}
.yc4{bottom:590.204400px;}
.yfc{bottom:590.209200px;}
.y130{bottom:594.075300px;}
.y12f{bottom:608.329050px;}
.y10a{bottom:608.382600px;}
.ya{bottom:610.417350px;}
.y75{bottom:610.428000px;}
.y30{bottom:610.430400px;}
.yc3{bottom:610.452000px;}
.y8f{bottom:610.456800px;}
.y12e{bottom:622.582800px;}
.y109{bottom:622.636350px;}
.y9{bottom:630.670350px;}
.y74{bottom:630.675600px;}
.y2f{bottom:630.678000px;}
.y14e{bottom:630.680400px;}
.yc2{bottom:630.699600px;}
.y8e{bottom:630.704400px;}
.y108{bottom:636.890100px;}
.y12d{bottom:641.089050px;}
.y73{bottom:650.923200px;}
.y8{bottom:650.923350px;}
.y2e{bottom:650.925600px;}
.y14d{bottom:650.928600px;}
.yc1{bottom:650.947200px;}
.y8d{bottom:650.952000px;}
.y107{bottom:651.143850px;}
.y12c{bottom:655.342800px;}
.y12b{bottom:669.596550px;}
.y106{bottom:669.650100px;}
.y2d{bottom:671.173200px;}
.y14c{bottom:671.176800px;}
.y72{bottom:671.192400px;}
.yc0{bottom:671.194800px;}
.y8c{bottom:671.199600px;}
.y12a{bottom:683.850300px;}
.y105{bottom:683.903850px;}
.y7{bottom:691.423350px;}
.y14b{bottom:691.425000px;}
.y71{bottom:691.440000px;}
.ybf{bottom:691.442400px;}
.y8b{bottom:691.447200px;}
.y129{bottom:698.104050px;}
.y104{bottom:698.157600px;}
.y2c{bottom:711.673200px;}
.y70{bottom:711.687600px;}
.ybe{bottom:711.690000px;}
.y8a{bottom:711.694800px;}
.y128{bottom:712.357800px;}
.y103{bottom:712.411350px;}
.y2b{bottom:731.923200px;}
.y6f{bottom:731.935200px;}
.ybd{bottom:731.937600px;}
.y89{bottom:731.942400px;}
.y2a{bottom:752.173200px;}
.y6e{bottom:752.182800px;}
.ybc{bottom:752.185200px;}
.y88{bottom:752.190000px;}
.y6d{bottom:772.430400px;}
.ybb{bottom:772.432800px;}
.y87{bottom:772.437600px;}
.y4{bottom:792.669600px;}
.y6{bottom:792.673350px;}
.y6c{bottom:792.678000px;}
.yba{bottom:792.680400px;}
.y29{bottom:792.682800px;}
.y86{bottom:792.685200px;}
.y5{bottom:801.166200px;}
.y102{bottom:811.573200px;}
.y14a{bottom:812.925000px;}
.y6b{bottom:812.925600px;}
.yb9{bottom:812.928000px;}
.y28{bottom:812.930400px;}
.y85{bottom:812.932800px;}
.y6a{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.yb8{bottom:833.175600px;}
.y27{bottom:833.178000px;}
.y84{bottom:833.180400px;}
.yb7{bottom:853.423200px;}
.y26{bottom:853.425600px;}
.y83{bottom:853.428000px;}
.y69{bottom:869.920200px;}
.y25{bottom:873.675600px;}
.y24{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y4c{bottom:952.912500px;}
.y23{bottom:952.953150px;}
.y1{bottom:953.019600px;}
.h1a{height:31.245117px;}
.ha{height:32.550000px;}
.h17{height:32.557200px;}
.h10{height:32.575200px;}
.hf{height:32.611200px;}
.h19{height:34.875000px;}
.h5{height:35.455728px;}
.h2{height:35.830800px;}
.h11{height:36.315000px;}
.h1b{height:36.489600px;}
.hc{height:39.258000px;}
.h1c{height:40.672800px;}
.hd{height:40.774968px;}
.h9{height:41.002800px;}
.h7{height:41.641200px;}
.he{height:42.471989px;}
.h14{height:42.510389px;}
.h15{height:42.519989px;}
.h16{height:42.548789px;}
.h13{height:42.567989px;}
.hb{height:42.577589px;}
.h12{height:42.587189px;}
.h3{height:43.696800px;}
.h6{height:47.220000px;}
.h1d{height:48.164400px;}
.h18{height:50.400000px;}
.h8{height:54.734400px;}
.h4{height:82.635000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x11{left:89.292113px;}
.x7{left:93.547680px;}
.xb{left:95.550648px;}
.x6{left:99.921300px;}
.xc{left:103.709250px;}
.x10{left:106.299150px;}
.xe{left:116.499450px;}
.xa{left:132.406350px;}
.xd{left:142.440900px;}
.x13{left:359.289187px;}
.x12{left:372.045900px;}
.xf{left:412.440900px;}
.x9{left:420.944850px;}
.x2{left:493.167750px;}
.x3{left:499.646700px;}
.x4{left:538.719450px;}
.x5{left:542.253300px;}
.x8{left:581.432550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.685867pt;}
.lsf{letter-spacing:-1.520000pt;}
.lsb{letter-spacing:-0.373333pt;}
.ls8{letter-spacing:-0.250667pt;}
.ls6{letter-spacing:-0.240000pt;}
.ls3{letter-spacing:-0.229333pt;}
.ls10{letter-spacing:-0.224000pt;}
.ls1{letter-spacing:-0.197333pt;}
.ls4{letter-spacing:-0.149333pt;}
.lsa{letter-spacing:-0.146139pt;}
.ls2{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.197333pt;}
.lsc{letter-spacing:0.902400pt;}
.ls9{letter-spacing:2.128000pt;}
.lsd{letter-spacing:3.038933pt;}
.ls7{letter-spacing:3.315200pt;}
.lse{letter-spacing:8.327467pt;}
.ls0{letter-spacing:1876.173061pt;}
.ws9c{word-spacing:-14.839467pt;}
.ws1{word-spacing:-10.666667pt;}
.wsb8{word-spacing:-10.000000pt;}
.wsed{word-spacing:-8.960000pt;}
.wsb9{word-spacing:-8.480000pt;}
.ws0{word-spacing:-7.696000pt;}
.ws2{word-spacing:-7.466667pt;}
.ws65{word-spacing:-7.317333pt;}
.ws19{word-spacing:-5.845547pt;}
.ws64{word-spacing:-5.699408pt;}
.wsc3{word-spacing:-5.600000pt;}
.ws1f{word-spacing:-2.976000pt;}
.ws92{word-spacing:-2.957867pt;}
.ws26{word-spacing:-2.657067pt;}
.ws4{word-spacing:-2.568533pt;}
.ws60{word-spacing:-2.556800pt;}
.ws91{word-spacing:-2.506667pt;}
.ws59{word-spacing:-2.456533pt;}
.ws71{word-spacing:-2.356267pt;}
.wsc6{word-spacing:-2.320000pt;}
.ws6f{word-spacing:-2.256000pt;}
.wsb7{word-spacing:-2.205867pt;}
.wsaf{word-spacing:-2.155733pt;}
.ws98{word-spacing:-2.105600pt;}
.ws6d{word-spacing:-2.055467pt;}
.ws3e{word-spacing:-2.005333pt;}
.wsae{word-spacing:-1.955200pt;}
.ws11{word-spacing:-1.854933pt;}
.ws8{word-spacing:-1.788800pt;}
.wsea{word-spacing:-1.760000pt;}
.ws5c{word-spacing:-1.754667pt;}
.ws2c{word-spacing:-1.680000pt;}
.ws5e{word-spacing:-1.654400pt;}
.wsa7{word-spacing:-1.554133pt;}
.ws9{word-spacing:-1.513600pt;}
.ws57{word-spacing:-1.504000pt;}
.ws38{word-spacing:-1.456000pt;}
.ws76{word-spacing:-1.453867pt;}
.ws7e{word-spacing:-1.381333pt;}
.ws8e{word-spacing:-1.353600pt;}
.wsb3{word-spacing:-1.303467pt;}
.ws7{word-spacing:-1.284267pt;}
.ws9f{word-spacing:-1.253333pt;}
.wsd3{word-spacing:-1.240000pt;}
.wsec{word-spacing:-1.160000pt;}
.ws6c{word-spacing:-1.153067pt;}
.ws5{word-spacing:-1.146667pt;}
.wsaa{word-spacing:-1.144533pt;}
.wsdb{word-spacing:-1.120000pt;}
.ws86{word-spacing:-1.102933pt;}
.wse4{word-spacing:-1.080000pt;}
.ws8f{word-spacing:-1.052800pt;}
.ws7b{word-spacing:-1.008000pt;}
.ws77{word-spacing:-1.002667pt;}
.wsbe{word-spacing:-1.000000pt;}
.ws27{word-spacing:-0.952533pt;}
.ws75{word-spacing:-0.902400pt;}
.ws3d{word-spacing:-0.852267pt;}
.ws89{word-spacing:-0.828800pt;}
.wsb2{word-spacing:-0.802133pt;}
.ws2f{word-spacing:-0.709333pt;}
.ws3c{word-spacing:-0.701867pt;}
.wsf0{word-spacing:-0.627200pt;}
.ws9a{word-spacing:-0.601600pt;}
.ws46{word-spacing:-0.592000pt;}
.ws2d{word-spacing:-0.560000pt;}
.ws5f{word-spacing:-0.551467pt;}
.wsf2{word-spacing:-0.537600pt;}
.ws55{word-spacing:-0.501333pt;}
.ws51{word-spacing:-0.451200pt;}
.ws74{word-spacing:-0.401067pt;}
.ws1a{word-spacing:-0.394667pt;}
.ws99{word-spacing:-0.350933pt;}
.ws34{word-spacing:-0.336000pt;}
.ws1b{word-spacing:-0.300800pt;}
.ws14{word-spacing:-0.200533pt;}
.wsa2{word-spacing:-0.186667pt;}
.wsa{word-spacing:-0.183467pt;}
.ws90{word-spacing:-0.050133pt;}
.ws3{word-spacing:0.000000pt;}
.ws7c{word-spacing:0.037333pt;}
.ws3a{word-spacing:0.050133pt;}
.ws88{word-spacing:0.100267pt;}
.ws2e{word-spacing:0.149333pt;}
.ws70{word-spacing:0.150400pt;}
.wsbd{word-spacing:0.200000pt;}
.wsb0{word-spacing:0.200533pt;}
.ws9e{word-spacing:0.250667pt;}
.ws48{word-spacing:0.276267pt;}
.ws37{word-spacing:0.298667pt;}
.ws40{word-spacing:0.300800pt;}
.ws56{word-spacing:0.350933pt;}
.ws79{word-spacing:0.373333pt;}
.wsb4{word-spacing:0.401067pt;}
.ws7d{word-spacing:0.410667pt;}
.ws41{word-spacing:0.451200pt;}
.wse{word-spacing:0.504533pt;}
.wsa3{word-spacing:0.597333pt;}
.ws8a{word-spacing:0.749867pt;}
.ws97{word-spacing:0.752000pt;}
.ws58{word-spacing:0.852267pt;}
.ws5b{word-spacing:0.902400pt;}
.wsf{word-spacing:0.917333pt;}
.ws85{word-spacing:0.952533pt;}
.wsc4{word-spacing:0.960000pt;}
.ws1e{word-spacing:1.002667pt;}
.ws7f{word-spacing:1.008000pt;}
.ws81{word-spacing:1.052800pt;}
.wsd2{word-spacing:1.080000pt;}
.ws1c{word-spacing:1.102933pt;}
.ws18{word-spacing:1.157333pt;}
.wsc2{word-spacing:1.240000pt;}
.ws29{word-spacing:1.253333pt;}
.ws5a{word-spacing:1.353600pt;}
.ws6b{word-spacing:1.403733pt;}
.ws23{word-spacing:1.453867pt;}
.wsd9{word-spacing:1.480000pt;}
.ws4c{word-spacing:1.504000pt;}
.ws24{word-spacing:1.604267pt;}
.wse0{word-spacing:1.640000pt;}
.wsa9{word-spacing:1.704533pt;}
.wsb{word-spacing:1.742933pt;}
.ws3b{word-spacing:1.754667pt;}
.ws31{word-spacing:1.792000pt;}
.ws28{word-spacing:1.804800pt;}
.wsd7{word-spacing:1.880000pt;}
.wsad{word-spacing:1.905067pt;}
.wse9{word-spacing:2.000000pt;}
.ws6e{word-spacing:2.005333pt;}
.wse2{word-spacing:2.040000pt;}
.ws73{word-spacing:2.055467pt;}
.wseb{word-spacing:2.080000pt;}
.ws72{word-spacing:2.105600pt;}
.ws6{word-spacing:2.109867pt;}
.ws78{word-spacing:2.128000pt;}
.ws62{word-spacing:2.155733pt;}
.ws5d{word-spacing:2.205867pt;}
.ws20{word-spacing:2.256000pt;}
.wsa0{word-spacing:2.277333pt;}
.ws95{word-spacing:2.306133pt;}
.wsdc{word-spacing:2.320000pt;}
.ws42{word-spacing:2.356267pt;}
.ws3f{word-spacing:2.406400pt;}
.wsc9{word-spacing:2.480000pt;}
.ws7a{word-spacing:2.501333pt;}
.ws63{word-spacing:2.506667pt;}
.ws87{word-spacing:2.556800pt;}
.wse1{word-spacing:2.560000pt;}
.wsa6{word-spacing:2.606933pt;}
.wsa1{word-spacing:2.650667pt;}
.ws68{word-spacing:2.657067pt;}
.wsdd{word-spacing:2.680000pt;}
.ws1d{word-spacing:2.707200pt;}
.wsb1{word-spacing:2.757333pt;}
.ws61{word-spacing:2.807467pt;}
.ws94{word-spacing:2.907733pt;}
.ws30{word-spacing:2.912000pt;}
.wse3{word-spacing:2.920000pt;}
.wsc{word-spacing:2.981333pt;}
.ws16{word-spacing:2.986667pt;}
.ws13{word-spacing:3.008000pt;}
.ws8c{word-spacing:3.038933pt;}
.wsd6{word-spacing:3.040000pt;}
.wsb5{word-spacing:3.058133pt;}
.ws54{word-spacing:3.108267pt;}
.ws17{word-spacing:3.136000pt;}
.wsbf{word-spacing:3.160000pt;}
.ws6a{word-spacing:3.208533pt;}
.ws67{word-spacing:3.258667pt;}
.wsba{word-spacing:3.308800pt;}
.ws4d{word-spacing:3.315200pt;}
.ws9b{word-spacing:3.358933pt;}
.ws32{word-spacing:3.434667pt;}
.wsb6{word-spacing:3.459200pt;}
.ws36{word-spacing:3.509333pt;}
.ws69{word-spacing:3.559467pt;}
.wsc0{word-spacing:3.560000pt;}
.ws22{word-spacing:3.659733pt;}
.ws4a{word-spacing:3.709867pt;}
.wsf1{word-spacing:3.718400pt;}
.ws45{word-spacing:3.760000pt;}
.wsd8{word-spacing:3.800000pt;}
.ws43{word-spacing:3.810133pt;}
.ws44{word-spacing:4.010667pt;}
.wsda{word-spacing:4.040000pt;}
.ws2a{word-spacing:4.060800pt;}
.ws35{word-spacing:4.069333pt;}
.ws12{word-spacing:4.110933pt;}
.ws4f{word-spacing:4.211200pt;}
.ws53{word-spacing:4.311467pt;}
.ws33{word-spacing:4.368000pt;}
.ws93{word-spacing:4.411733pt;}
.ws2b{word-spacing:4.512000pt;}
.wscc{word-spacing:4.680000pt;}
.ws52{word-spacing:4.712533pt;}
.ws82{word-spacing:4.762667pt;}
.ws50{word-spacing:4.812800pt;}
.ws15{word-spacing:4.862933pt;}
.wsd{word-spacing:4.953600pt;}
.wscd{word-spacing:4.960000pt;}
.ws84{word-spacing:5.013333pt;}
.ws25{word-spacing:5.113600pt;}
.wsbc{word-spacing:5.120000pt;}
.ws10{word-spacing:5.163733pt;}
.ws4e{word-spacing:5.564800pt;}
.wse7{word-spacing:6.200000pt;}
.ws83{word-spacing:6.266667pt;}
.ws21{word-spacing:6.366933pt;}
.ws4b{word-spacing:7.469867pt;}
.ws96{word-spacing:7.620267pt;}
.wsd1{word-spacing:7.920000pt;}
.wsa8{word-spacing:7.971200pt;}
.wsc5{word-spacing:8.240000pt;}
.wsa4{word-spacing:8.327467pt;}
.wsc1{word-spacing:8.360000pt;}
.wscb{word-spacing:9.240000pt;}
.wsef{word-spacing:9.273600pt;}
.wsdf{word-spacing:10.440000pt;}
.wse8{word-spacing:11.520000pt;}
.wsab{word-spacing:11.642667pt;}
.wsc8{word-spacing:12.400000pt;}
.wsd5{word-spacing:13.520000pt;}
.wsd4{word-spacing:14.000000pt;}
.wsa5{word-spacing:14.247467pt;}
.wsca{word-spacing:15.080000pt;}
.wsbb{word-spacing:15.680000pt;}
.wsce{word-spacing:17.520000pt;}
.wscf{word-spacing:17.920000pt;}
.wsd0{word-spacing:18.720000pt;}
.wse6{word-spacing:19.600000pt;}
.ws47{word-spacing:21.035733pt;}
.wse5{word-spacing:34.920000pt;}
.wsde{word-spacing:87.880000pt;}
.wsc7{word-spacing:88.160000pt;}
.ws8d{word-spacing:449.640000pt;}
.ws9d{word-spacing:449.920000pt;}
.wsee{word-spacing:450.040000pt;}
.wsac{word-spacing:450.600000pt;}
.ws8b{word-spacing:450.640000pt;}
.ws39{word-spacing:450.960000pt;}
.ws80{word-spacing:451.080000pt;}
.ws66{word-spacing:451.440000pt;}
.ws49{word-spacing:451.600000pt;}
._a{margin-left:-451.463754pt;}
._11{margin-left:-450.135976pt;}
._c{margin-left:-28.697120pt;}
._13{margin-left:-22.540320pt;}
._14{margin-left:-19.835640pt;}
._1f{margin-left:-17.739613pt;}
._e{margin-left:-16.374507pt;}
._d{margin-left:-13.439978pt;}
._6{margin-left:-6.484373pt;}
._4{margin-left:-5.068053pt;}
._7{margin-left:-3.750720pt;}
._3{margin-left:-2.549227pt;}
._2{margin-left:-1.171200pt;}
._b{width:0.889213pt;}
._0{width:1.779947pt;}
._1{width:3.512107pt;}
._1c{width:4.506773pt;}
._1b{width:5.685227pt;}
._17{width:8.973600pt;}
._15{width:14.264000pt;}
._16{width:15.773227pt;}
._18{width:18.545240pt;}
._1d{width:19.534760pt;}
._19{width:26.335200pt;}
._1a{width:27.478400pt;}
._12{width:34.230268pt;}
._10{width:36.473897pt;}
._1e{width:43.560069pt;}
._5{width:53.386447pt;}
._9{width:56.705485pt;}
._8{width:58.053113pt;}
._f{width:60.106139pt;}
.fsb{font-size:27.984000pt;}
.fs9{font-size:29.227733pt;}
.fs8{font-size:37.333333pt;}
.fs0{font-size:39.466667pt;}
.fsc{font-size:40.000000pt;}
.fs3{font-size:43.530667pt;}
.fse{font-size:44.800000pt;}
.fs5{font-size:45.866667pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:50.133333pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fsd{font-size:64.000000pt;}
.fs6{font-size:67.200000pt;}
.fs2{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:58.104933pt;}
.yb5{bottom:92.517600pt;}
.y9f{bottom:92.594533pt;}
.y21{bottom:92.595867pt;}
.y66{bottom:92.598533pt;}
.y5f{bottom:92.600800pt;}
.y5a{bottom:92.604800pt;}
.yae{bottom:92.619733pt;}
.yf8{bottom:92.626133pt;}
.ydc{bottom:92.677333pt;}
.ydd{bottom:93.112800pt;}
.ya0{bottom:93.160000pt;}
.y5e{bottom:104.865067pt;}
.y9e{bottom:105.129200pt;}
.y20{bottom:105.130533pt;}
.y65{bottom:108.155600pt;}
.y59{bottom:110.602667pt;}
.yad{bottom:110.617600pt;}
.yf7{bottom:110.624000pt;}
.ydb{bottom:110.675200pt;}
.y5d{bottom:117.131733pt;}
.y4b{bottom:117.659600pt;}
.y9d{bottom:117.663867pt;}
.y1f{bottom:117.665200pt;}
.y58{bottom:128.600533pt;}
.yac{bottom:128.615467pt;}
.yf6{bottom:128.621867pt;}
.yda{bottom:128.673067pt;}
.y5c{bottom:129.398400pt;}
.yea{bottom:130.196933pt;}
.y1e{bottom:130.198533pt;}
.y4a{bottom:133.218267pt;}
.y49{bottom:145.752933pt;}
.ye9{bottom:145.755600pt;}
.y57{bottom:146.598400pt;}
.yab{bottom:146.613333pt;}
.yf5{bottom:146.619733pt;}
.yd9{bottom:146.670933pt;}
.y127{bottom:150.746933pt;}
.y48{bottom:158.287600pt;}
.ye8{bottom:158.288933pt;}
.y126{bottom:163.416933pt;}
.y56{bottom:164.598400pt;}
.y64{bottom:164.602667pt;}
.y1d{bottom:164.609200pt;}
.yaa{bottom:164.611200pt;}
.y55{bottom:164.615467pt;}
.yf4{bottom:164.617600pt;}
.yd8{bottom:164.668800pt;}
.y47{bottom:170.822267pt;}
.ye7{bottom:173.846000pt;}
.y125{bottom:176.086933pt;}
.y63{bottom:182.600533pt;}
.y1c{bottom:182.607067pt;}
.ya9{bottom:182.609067pt;}
.y54{bottom:182.613333pt;}
.yf3{bottom:182.615467pt;}
.yd7{bottom:182.666667pt;}
.y46{bottom:183.342000pt;}
.yb2{bottom:185.966667pt;}
.yb6{bottom:190.766267pt;}
.y149{bottom:192.416933pt;}
.y124{bottom:192.536933pt;}
.yb1{bottom:198.230933pt;}
.y45{bottom:198.900667pt;}
.y62{bottom:200.602667pt;}
.y1b{bottom:200.604933pt;}
.ya8{bottom:200.606933pt;}
.y53{bottom:200.611200pt;}
.yf2{bottom:200.613333pt;}
.yd6{bottom:200.664533pt;}
.y148{bottom:205.086933pt;}
.y123{bottom:205.206933pt;}
.y44{bottom:211.435333pt;}
.y147{bottom:217.756933pt;}
.y122{bottom:217.876933pt;}
.y61{bottom:218.600533pt;}
.y1a{bottom:218.602800pt;}
.ya7{bottom:218.604800pt;}
.ye6{bottom:218.606933pt;}
.y52{bottom:218.609067pt;}
.yf1{bottom:218.611200pt;}
.yd5{bottom:218.662400pt;}
.y43{bottom:223.970000pt;}
.y146{bottom:230.426933pt;}
.y121{bottom:230.546933pt;}
.y42{bottom:236.504667pt;}
.y60{bottom:236.598400pt;}
.y19{bottom:236.600667pt;}
.ya6{bottom:236.602667pt;}
.ye5{bottom:236.604800pt;}
.y51{bottom:236.606933pt;}
.yf0{bottom:236.609067pt;}
.yd4{bottom:236.660267pt;}
.y120{bottom:243.216933pt;}
.y145{bottom:246.876933pt;}
.y41{bottom:249.039333pt;}
.y18{bottom:254.598533pt;}
.ya5{bottom:254.600533pt;}
.ye4{bottom:254.602667pt;}
.y50{bottom:254.604800pt;}
.yef{bottom:254.606933pt;}
.yd3{bottom:254.658133pt;}
.y11f{bottom:255.886933pt;}
.y144{bottom:259.546933pt;}
.y40{bottom:261.574000pt;}
.y11e{bottom:268.556933pt;}
.y143{bottom:272.216933pt;}
.ya4{bottom:272.598400pt;}
.ye3{bottom:272.600533pt;}
.y4f{bottom:272.602667pt;}
.yee{bottom:272.604800pt;}
.yd2{bottom:272.656000pt;}
.y3f{bottom:274.108667pt;}
.y68{bottom:280.691067pt;}
.y11d{bottom:281.226933pt;}
.y142{bottom:284.886933pt;}
.y3e{bottom:286.643333pt;}
.y17{bottom:290.598533pt;}
.y4e{bottom:290.600533pt;}
.ya3{bottom:290.602667pt;}
.ye2{bottom:290.606933pt;}
.yd1{bottom:290.653867pt;}
.y67{bottom:292.955333pt;}
.y141{bottom:297.556933pt;}
.y11c{bottom:297.676933pt;}
.y3d{bottom:299.178000pt;}
.y4d{bottom:308.598400pt;}
.ya2{bottom:308.600533pt;}
.ye1{bottom:308.604800pt;}
.y82{bottom:308.613333pt;}
.y9c{bottom:308.624000pt;}
.yd0{bottom:308.651733pt;}
.y11b{bottom:310.346933pt;}
.y3c{bottom:311.712667pt;}
.y140{bottom:314.006933pt;}
.y11a{bottom:323.016933pt;}
.y3b{bottom:324.246000pt;}
.ya1{bottom:326.598400pt;}
.ye0{bottom:326.602667pt;}
.y81{bottom:326.611200pt;}
.y9b{bottom:326.621867pt;}
.ycf{bottom:326.649600pt;}
.y13f{bottom:326.676933pt;}
.y119{bottom:335.686933pt;}
.y13e{bottom:339.346933pt;}
.ydf{bottom:344.600533pt;}
.y80{bottom:344.609067pt;}
.y9a{bottom:344.619733pt;}
.yce{bottom:344.647467pt;}
.y118{bottom:348.356933pt;}
.y13d{bottom:352.016933pt;}
.y5b{bottom:362.215067pt;}
.y16{bottom:362.585200pt;}
.yde{bottom:362.598400pt;}
.y3a{bottom:362.600533pt;}
.y7f{bottom:362.606933pt;}
.y99{bottom:362.617600pt;}
.ycd{bottom:362.645333pt;}
.y117{bottom:364.789733pt;}
.y13c{bottom:368.466933pt;}
.y116{bottom:377.459733pt;}
.yb0{bottom:379.179200pt;}
.y15{bottom:380.587867pt;}
.yfb{bottom:380.603200pt;}
.y7e{bottom:380.604800pt;}
.y98{bottom:380.615467pt;}
.y39{bottom:380.624000pt;}
.ycc{bottom:380.643200pt;}
.y13b{bottom:381.136933pt;}
.y115{bottom:390.129733pt;}
.yaf{bottom:391.443467pt;}
.yfa{bottom:392.867467pt;}
.y13a{bottom:397.586933pt;}
.y14{bottom:398.590533pt;}
.y7d{bottom:398.602667pt;}
.y97{bottom:398.613333pt;}
.y38{bottom:398.621867pt;}
.ycb{bottom:398.641067pt;}
.y114{bottom:402.799733pt;}
.yf9{bottom:405.131733pt;}
.y139{bottom:410.256933pt;}
.y113{bottom:415.469733pt;}
.y13{bottom:416.593200pt;}
.y7c{bottom:416.600533pt;}
.y96{bottom:416.611200pt;}
.y37{bottom:416.619733pt;}
.yca{bottom:416.638933pt;}
.yed{bottom:416.718933pt;}
.y138{bottom:422.926933pt;}
.yec{bottom:428.983200pt;}
.y112{bottom:431.864533pt;}
.y12{bottom:434.595867pt;}
.y7b{bottom:434.598400pt;}
.y95{bottom:434.609067pt;}
.y36{bottom:434.617600pt;}
.yc9{bottom:434.636800pt;}
.y101{bottom:434.641067pt;}
.y137{bottom:435.596933pt;}
.yeb{bottom:441.249867pt;}
.y111{bottom:444.534533pt;}
.y136{bottom:448.266933pt;}
.y11{bottom:452.598533pt;}
.y94{bottom:452.606933pt;}
.y7a{bottom:452.613333pt;}
.y35{bottom:452.615467pt;}
.yc8{bottom:452.634667pt;}
.y100{bottom:452.638933pt;}
.yb4{bottom:456.911467pt;}
.y110{bottom:457.204533pt;}
.y135{bottom:464.716933pt;}
.yb3{bottom:469.175733pt;}
.y10f{bottom:469.874533pt;}
.y10{bottom:470.593200pt;}
.y93{bottom:470.604800pt;}
.y79{bottom:470.611200pt;}
.y34{bottom:470.613333pt;}
.yc7{bottom:470.632533pt;}
.yff{bottom:470.636800pt;}
.y134{bottom:477.386933pt;}
.y10e{bottom:486.324533pt;}
.yf{bottom:488.595867pt;}
.y92{bottom:488.602667pt;}
.y78{bottom:488.609067pt;}
.y33{bottom:488.611200pt;}
.yc6{bottom:488.630400pt;}
.yfe{bottom:488.634667pt;}
.y133{bottom:490.056933pt;}
.y10d{bottom:498.994533pt;}
.y132{bottom:502.726933pt;}
.yd{bottom:506.595867pt;}
.ye{bottom:506.598533pt;}
.y91{bottom:506.600533pt;}
.y77{bottom:506.606933pt;}
.y32{bottom:506.609067pt;}
.yc5{bottom:506.628267pt;}
.yfd{bottom:506.632533pt;}
.y10c{bottom:511.664533pt;}
.y131{bottom:515.396933pt;}
.y10b{bottom:524.334533pt;}
.yb{bottom:524.590533pt;}
.y90{bottom:524.598400pt;}
.yc{bottom:524.598533pt;}
.y76{bottom:524.604800pt;}
.y31{bottom:524.606933pt;}
.yc4{bottom:524.626133pt;}
.yfc{bottom:524.630400pt;}
.y130{bottom:528.066933pt;}
.y12f{bottom:540.736933pt;}
.y10a{bottom:540.784533pt;}
.ya{bottom:542.593200pt;}
.y75{bottom:542.602667pt;}
.y30{bottom:542.604800pt;}
.yc3{bottom:542.624000pt;}
.y8f{bottom:542.628267pt;}
.y12e{bottom:553.406933pt;}
.y109{bottom:553.454533pt;}
.y9{bottom:560.595867pt;}
.y74{bottom:560.600533pt;}
.y2f{bottom:560.602667pt;}
.y14e{bottom:560.604800pt;}
.yc2{bottom:560.621867pt;}
.y8e{bottom:560.626133pt;}
.y108{bottom:566.124533pt;}
.y12d{bottom:569.856933pt;}
.y73{bottom:578.598400pt;}
.y8{bottom:578.598533pt;}
.y2e{bottom:578.600533pt;}
.y14d{bottom:578.603200pt;}
.yc1{bottom:578.619733pt;}
.y8d{bottom:578.624000pt;}
.y107{bottom:578.794533pt;}
.y12c{bottom:582.526933pt;}
.y12b{bottom:595.196933pt;}
.y106{bottom:595.244533pt;}
.y2d{bottom:596.598400pt;}
.y14c{bottom:596.601600pt;}
.y72{bottom:596.615467pt;}
.yc0{bottom:596.617600pt;}
.y8c{bottom:596.621867pt;}
.y12a{bottom:607.866933pt;}
.y105{bottom:607.914533pt;}
.y7{bottom:614.598533pt;}
.y14b{bottom:614.600000pt;}
.y71{bottom:614.613333pt;}
.ybf{bottom:614.615467pt;}
.y8b{bottom:614.619733pt;}
.y129{bottom:620.536933pt;}
.y104{bottom:620.584533pt;}
.y2c{bottom:632.598400pt;}
.y70{bottom:632.611200pt;}
.ybe{bottom:632.613333pt;}
.y8a{bottom:632.617600pt;}
.y128{bottom:633.206933pt;}
.y103{bottom:633.254533pt;}
.y2b{bottom:650.598400pt;}
.y6f{bottom:650.609067pt;}
.ybd{bottom:650.611200pt;}
.y89{bottom:650.615467pt;}
.y2a{bottom:668.598400pt;}
.y6e{bottom:668.606933pt;}
.ybc{bottom:668.609067pt;}
.y88{bottom:668.613333pt;}
.y6d{bottom:686.604800pt;}
.ybb{bottom:686.606933pt;}
.y87{bottom:686.611200pt;}
.y4{bottom:704.595200pt;}
.y6{bottom:704.598533pt;}
.y6c{bottom:704.602667pt;}
.yba{bottom:704.604800pt;}
.y29{bottom:704.606933pt;}
.y86{bottom:704.609067pt;}
.y5{bottom:712.147733pt;}
.y102{bottom:721.398400pt;}
.y14a{bottom:722.600000pt;}
.y6b{bottom:722.600533pt;}
.yb9{bottom:722.602667pt;}
.y28{bottom:722.604800pt;}
.y85{bottom:722.606933pt;}
.y6a{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.yb8{bottom:740.600533pt;}
.y27{bottom:740.602667pt;}
.y84{bottom:740.604800pt;}
.yb7{bottom:758.598400pt;}
.y26{bottom:758.600533pt;}
.y83{bottom:758.602667pt;}
.y69{bottom:773.262400pt;}
.y25{bottom:776.600533pt;}
.y24{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y4c{bottom:847.033333pt;}
.y23{bottom:847.069467pt;}
.y1{bottom:847.128533pt;}
.h1a{height:27.773438pt;}
.ha{height:28.933333pt;}
.h17{height:28.939733pt;}
.h10{height:28.955733pt;}
.hf{height:28.987733pt;}
.h19{height:31.000000pt;}
.h5{height:31.516203pt;}
.h2{height:31.849600pt;}
.h11{height:32.280000pt;}
.h1b{height:32.435200pt;}
.hc{height:34.896000pt;}
.h1c{height:36.153600pt;}
.hd{height:36.244416pt;}
.h9{height:36.446933pt;}
.h7{height:37.014400pt;}
.he{height:37.752879pt;}
.h14{height:37.787012pt;}
.h15{height:37.795546pt;}
.h16{height:37.821146pt;}
.h13{height:37.838212pt;}
.hb{height:37.846746pt;}
.h12{height:37.855279pt;}
.h3{height:38.841600pt;}
.h6{height:41.973333pt;}
.h1d{height:42.812800pt;}
.h18{height:44.800000pt;}
.h8{height:48.652800pt;}
.h4{height:73.453333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x11{left:79.370767pt;}
.x7{left:83.153493pt;}
.xb{left:84.933909pt;}
.x6{left:88.818933pt;}
.xc{left:92.186000pt;}
.x10{left:94.488133pt;}
.xe{left:103.555067pt;}
.xa{left:117.694533pt;}
.xd{left:126.614133pt;}
.x13{left:319.368167pt;}
.x12{left:330.707467pt;}
.xf{left:366.614133pt;}
.x9{left:374.173200pt;}
.x2{left:438.371333pt;}
.x3{left:444.130400pt;}
.x4{left:478.861733pt;}
.x5{left:482.002933pt;}
.x8{left:516.828933pt;}
}




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