
    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_e59ce8040fd1c66cd4ed9861.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_431c4e3757b123f6cefdae51.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_3a05e53b4d77f9efe195af02.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_7451d33c90272861a6d3678b.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_c6a6317bdfc82cd8922bb7e7.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;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_56da7196f3d3398a3f4bd18a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_8c7c63c1e125d732dd4679d4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.737000;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_c4023c5ac838ff252bd94a78.woff2')format("woff");}.ff8{font-family:ff8;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;}
.m9{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.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);}
.m7{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);}
.mb{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.244999,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244999,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.mc{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);}
.m8{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m1{transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252551,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255102,0.000000,0.000000,0.250000,0,0);}
.m6{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:23.976000px;}
.ls9{letter-spacing:-1.778400px;}
.ls3{letter-spacing:-1.026000px;}
.ls7{letter-spacing:-0.405000px;}
.ls2{letter-spacing:-0.234000px;}
.ls8{letter-spacing:-0.228000px;}
.ls1{letter-spacing:-0.222000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:1.254000px;}
.ls5{letter-spacing:1.368000px;}
.ls4{letter-spacing:6.498000px;}
.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;}
}
.ws47{word-spacing:-16.872000px;}
.ws77{word-spacing:-15.846000px;}
.ws0{word-spacing:-11.054400px;}
.ws1{word-spacing:-9.126000px;}
.wsc0{word-spacing:-9.000000px;}
.wsf4{word-spacing:-8.892000px;}
.wsc1{word-spacing:-8.595000px;}
.ws36{word-spacing:-3.762000px;}
.ws2b{word-spacing:-3.363000px;}
.ws57{word-spacing:-3.249000px;}
.ws76{word-spacing:-3.192000px;}
.wsb9{word-spacing:-3.135000px;}
.ws69{word-spacing:-3.078000px;}
.ws64{word-spacing:-3.021000px;}
.ws55{word-spacing:-2.964000px;}
.ws58{word-spacing:-2.907000px;}
.ws37{word-spacing:-2.850000px;}
.wsbc{word-spacing:-2.793000px;}
.wsb2{word-spacing:-2.736000px;}
.wsa0{word-spacing:-2.679000px;}
.ws90{word-spacing:-2.622000px;}
.ws4b{word-spacing:-2.565000px;}
.ws83{word-spacing:-2.508000px;}
.ws7d{word-spacing:-2.451000px;}
.ws80{word-spacing:-2.394000px;}
.ws92{word-spacing:-2.280000px;}
.ws62{word-spacing:-2.166000px;}
.ws7c{word-spacing:-2.109000px;}
.wsc3{word-spacing:-2.052000px;}
.ws2e{word-spacing:-1.995000px;}
.ws67{word-spacing:-1.938000px;}
.ws1a{word-spacing:-1.899240px;}
.ws31{word-spacing:-1.881000px;}
.wsac{word-spacing:-1.824000px;}
.wsea{word-spacing:-1.755000px;}
.ws98{word-spacing:-1.710000px;}
.wse{word-spacing:-1.699320px;}
.ws3b{word-spacing:-1.687200px;}
.ws7e{word-spacing:-1.653000px;}
.ws4{word-spacing:-1.642800px;}
.wsd9{word-spacing:-1.620000px;}
.wsb8{word-spacing:-1.596000px;}
.ws15{word-spacing:-1.549380px;}
.ws52{word-spacing:-1.539000px;}
.ws32{word-spacing:-1.425000px;}
.ws71{word-spacing:-1.311000px;}
.wsca{word-spacing:-1.305000px;}
.wse5{word-spacing:-1.260000px;}
.ws59{word-spacing:-1.254000px;}
.ws11{word-spacing:-1.249500px;}
.ws6c{word-spacing:-1.197000px;}
.wsd3{word-spacing:-1.125000px;}
.ws2a{word-spacing:-1.083000px;}
.ws6b{word-spacing:-1.026000px;}
.ws8{word-spacing:-0.999600px;}
.wse8{word-spacing:-0.990000px;}
.ws87{word-spacing:-0.912000px;}
.wsce{word-spacing:-0.900000px;}
.ws3e{word-spacing:-0.888000px;}
.ws68{word-spacing:-0.855000px;}
.ws7f{word-spacing:-0.798000px;}
.ws8e{word-spacing:-0.741000px;}
.ws5c{word-spacing:-0.684000px;}
.wscd{word-spacing:-0.675000px;}
.ws25{word-spacing:-0.627000px;}
.ws1b{word-spacing:-0.570000px;}
.wsa9{word-spacing:-0.513000px;}
.wsf{word-spacing:-0.449820px;}
.ws42{word-spacing:-0.444000px;}
.ws10{word-spacing:-0.399840px;}
.ws2d{word-spacing:-0.399000px;}
.ws91{word-spacing:-0.342000px;}
.ws97{word-spacing:-0.310800px;}
.ws82{word-spacing:-0.285000px;}
.ws38{word-spacing:-0.228000px;}
.wsf2{word-spacing:-0.180000px;}
.ws3f{word-spacing:-0.177600px;}
.wsb5{word-spacing:-0.171000px;}
.wsc8{word-spacing:-0.135000px;}
.ws2f{word-spacing:-0.114000px;}
.wsbb{word-spacing:-0.057000px;}
.ws14{word-spacing:-0.049980px;}
.ws2{word-spacing:0.000000px;}
.ws30{word-spacing:0.057000px;}
.ws26{word-spacing:0.114000px;}
.wsed{word-spacing:0.135000px;}
.ws94{word-spacing:0.171000px;}
.ws41{word-spacing:0.177600px;}
.ws40{word-spacing:0.222000px;}
.ws73{word-spacing:0.228000px;}
.ws3c{word-spacing:0.266400px;}
.wse9{word-spacing:0.270000px;}
.ws48{word-spacing:0.285000px;}
.ws3d{word-spacing:0.310800px;}
.ws1d{word-spacing:0.342000px;}
.ws18{word-spacing:0.349860px;}
.wse1{word-spacing:0.360000px;}
.ws72{word-spacing:0.399000px;}
.ws8c{word-spacing:0.456000px;}
.wsef{word-spacing:0.495000px;}
.ws4f{word-spacing:0.513000px;}
.ws5f{word-spacing:0.570000px;}
.ws44{word-spacing:0.621600px;}
.wsb0{word-spacing:0.627000px;}
.wsa1{word-spacing:0.684000px;}
.ws5e{word-spacing:0.741000px;}
.ws99{word-spacing:0.798000px;}
.ws4e{word-spacing:0.855000px;}
.ws2c{word-spacing:0.912000px;}
.wsee{word-spacing:0.945000px;}
.ws6e{word-spacing:0.969000px;}
.ws96{word-spacing:1.021200px;}
.ws63{word-spacing:1.026000px;}
.ws103{word-spacing:1.048800px;}
.ws66{word-spacing:1.083000px;}
.ws8f{word-spacing:1.197000px;}
.ws12{word-spacing:1.249500px;}
.ws85{word-spacing:1.254000px;}
.wsd0{word-spacing:1.260000px;}
.wsaf{word-spacing:1.311000px;}
.wsad{word-spacing:1.368000px;}
.wsc4{word-spacing:1.395000px;}
.ws28{word-spacing:1.425000px;}
.ws1e{word-spacing:1.482000px;}
.ws34{word-spacing:1.539000px;}
.ws3{word-spacing:1.642800px;}
.ws6a{word-spacing:1.653000px;}
.wsbe{word-spacing:1.710000px;}
.ws102{word-spacing:1.732800px;}
.wscf{word-spacing:1.755000px;}
.ws5d{word-spacing:1.767000px;}
.ws95{word-spacing:1.776000px;}
.ws29{word-spacing:1.824000px;}
.ws7b{word-spacing:1.881000px;}
.ws5b{word-spacing:1.938000px;}
.ws4d{word-spacing:1.995000px;}
.ws6f{word-spacing:2.052000px;}
.ws1f{word-spacing:2.109000px;}
.wsc2{word-spacing:2.166000px;}
.ws9e{word-spacing:2.223000px;}
.ws51{word-spacing:2.280000px;}
.ws4a{word-spacing:2.337000px;}
.ws65{word-spacing:2.394000px;}
.ws5a{word-spacing:2.451000px;}
.ws88{word-spacing:2.508000px;}
.ws53{word-spacing:2.565000px;}
.ws60{word-spacing:2.622000px;}
.ws93{word-spacing:2.679000px;}
.ws50{word-spacing:2.736000px;}
.wsd8{word-spacing:2.745000px;}
.ws16{word-spacing:2.748900px;}
.ws27{word-spacing:2.793000px;}
.ws45{word-spacing:2.797200px;}
.ws7a{word-spacing:2.850000px;}
.ws22{word-spacing:2.907000px;}
.wsd4{word-spacing:2.925000px;}
.ws33{word-spacing:2.964000px;}
.wsf7{word-spacing:2.970000px;}
.wsd1{word-spacing:3.015000px;}
.ws8d{word-spacing:3.021000px;}
.wse6{word-spacing:3.060000px;}
.wsa2{word-spacing:3.078000px;}
.ws43{word-spacing:3.108000px;}
.ws6d{word-spacing:3.135000px;}
.ws101{word-spacing:3.237600px;}
.ws84{word-spacing:3.249000px;}
.wsb4{word-spacing:3.306000px;}
.wseb{word-spacing:3.330000px;}
.ws6{word-spacing:3.348660px;}
.ws78{word-spacing:3.363000px;}
.wsd6{word-spacing:3.375000px;}
.wsb3{word-spacing:3.420000px;}
.ws39{word-spacing:3.477000px;}
.ws35{word-spacing:3.534000px;}
.ws8b{word-spacing:3.648000px;}
.wsa{word-spacing:3.698520px;}
.wsa8{word-spacing:3.705000px;}
.wsaa{word-spacing:3.762000px;}
.wsb{word-spacing:3.798480px;}
.ws86{word-spacing:3.819000px;}
.wsf9{word-spacing:3.825000px;}
.ws46{word-spacing:3.862800px;}
.ws70{word-spacing:3.876000px;}
.ws9d{word-spacing:3.933000px;}
.wsd{word-spacing:3.948420px;}
.wsbd{word-spacing:4.047000px;}
.wsd2{word-spacing:4.095000px;}
.ws81{word-spacing:4.218000px;}
.wsa7{word-spacing:4.275000px;}
.wsa5{word-spacing:4.332000px;}
.wse2{word-spacing:4.455000px;}
.ws75{word-spacing:4.503000px;}
.wsfb{word-spacing:4.590000px;}
.ws9c{word-spacing:4.617000px;}
.wsf1{word-spacing:4.680000px;}
.wsbf{word-spacing:4.731000px;}
.wsae{word-spacing:4.788000px;}
.ws23{word-spacing:4.845000px;}
.ws1c{word-spacing:4.902000px;}
.wscc{word-spacing:4.950000px;}
.ws9a{word-spacing:4.959000px;}
.ws8a{word-spacing:5.016000px;}
.ws104{word-spacing:5.061600px;}
.wsa6{word-spacing:5.187000px;}
.wsd7{word-spacing:5.265000px;}
.wsa4{word-spacing:5.358000px;}
.ws21{word-spacing:5.415000px;}
.ws9{word-spacing:5.447820px;}
.wse4{word-spacing:5.490000px;}
.wsb1{word-spacing:5.643000px;}
.wsfe{word-spacing:5.715000px;}
.ws4c{word-spacing:5.928000px;}
.wsdf{word-spacing:5.940000px;}
.wsa3{word-spacing:6.099000px;}
.wsec{word-spacing:6.210000px;}
.ws13{word-spacing:6.397440px;}
.wsab{word-spacing:6.498000px;}
.ws20{word-spacing:6.555000px;}
.ws89{word-spacing:6.612000px;}
.wsf6{word-spacing:6.615000px;}
.ws74{word-spacing:6.669000px;}
.ws24{word-spacing:6.726000px;}
.wsff{word-spacing:7.020000px;}
.wsb7{word-spacing:7.068000px;}
.wsc6{word-spacing:7.110000px;}
.ws54{word-spacing:7.296000px;}
.wsb6{word-spacing:7.353000px;}
.ws61{word-spacing:7.410000px;}
.wsc5{word-spacing:7.605000px;}
.ws9b{word-spacing:7.638000px;}
.ws9f{word-spacing:7.695000px;}
.ws56{word-spacing:7.752000px;}
.wsc7{word-spacing:8.010000px;}
.ws49{word-spacing:8.037000px;}
.wsfc{word-spacing:8.145000px;}
.ws3a{word-spacing:8.379000px;}
.wsf3{word-spacing:8.460000px;}
.wsba{word-spacing:8.550000px;}
.ws17{word-spacing:8.946420px;}
.wse7{word-spacing:9.135000px;}
.ws5{word-spacing:9.446220px;}
.ws79{word-spacing:9.804000px;}
.wsc9{word-spacing:9.855000px;}
.wsdc{word-spacing:10.170000px;}
.wsfa{word-spacing:10.665000px;}
.wsda{word-spacing:11.025000px;}
.ws19{word-spacing:11.245500px;}
.ws100{word-spacing:11.385000px;}
.wsf0{word-spacing:11.475000px;}
.wsdb{word-spacing:12.150000px;}
.ws7{word-spacing:12.345060px;}
.wsdd{word-spacing:12.600000px;}
.wsf8{word-spacing:13.500000px;}
.wse3{word-spacing:14.400000px;}
.wse0{word-spacing:15.030000px;}
.wsde{word-spacing:15.840000px;}
.wsc{word-spacing:17.093160px;}
.wscb{word-spacing:17.100000px;}
.wsfd{word-spacing:22.545000px;}
.wsf5{word-spacing:28.665000px;}
.wsd5{word-spacing:42.435000px;}
._11{margin-left:-18.113700px;}
._10{margin-left:-16.077300px;}
._14{margin-left:-13.447200px;}
._a{margin-left:-7.353000px;}
._3{margin-left:-6.056400px;}
._8{margin-left:-4.925400px;}
._9{margin-left:-3.884700px;}
._6{margin-left:-2.575200px;}
._7{margin-left:-1.287600px;}
._1{width:1.344000px;}
._2{width:3.062400px;}
._4{width:5.182800px;}
._e{width:6.612000px;}
._12{width:7.845000px;}
._13{width:13.047600px;}
._5{width:53.635509px;}
._c{width:55.455909px;}
._b{width:56.965509px;}
._f{width:77.033939px;}
._d{width:1041.112800px;}
._0{width:2050.809000px;}
.fc1{color:rgb(25,90,159);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:33.231000px;}
.fs4{font-size:41.976000px;}
.fs6{font-size:44.400000px;}
.fsc{font-size:45.000000px;}
.fsd{font-size:45.600000px;}
.fs0{font-size:46.800000px;}
.fsb{font-size:47.040000px;}
.fse{font-size:48.000000px;}
.fs7{font-size:49.980000px;}
.fs5{font-size:55.272000px;}
.fs9{font-size:57.000000px;}
.fs1{font-size:66.000000px;}
.fs8{font-size:76.440000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y2e{bottom:58.827450px;}
.yae{bottom:112.679400px;}
.y9{bottom:112.679700px;}
.yef{bottom:112.689150px;}
.y100{bottom:112.689900px;}
.y99{bottom:112.691400px;}
.yde{bottom:112.695900px;}
.y5b{bottom:112.696500px;}
.y7c{bottom:112.701150px;}
.y12c{bottom:121.176150px;}
.y157{bottom:121.191750px;}
.y8{bottom:126.177300px;}
.y7{bottom:126.179700px;}
.yc8{bottom:126.184500px;}
.y5a{bottom:126.194100px;}
.yad{bottom:132.928650px;}
.yee{bottom:132.938400px;}
.yff{bottom:132.939150px;}
.y98{bottom:132.940650px;}
.ydd{bottom:132.945150px;}
.y7b{bottom:132.950400px;}
.y12b{bottom:135.429900px;}
.y156{bottom:139.670100px;}
.y6{bottom:139.677300px;}
.yc7{bottom:139.682100px;}
.y59{bottom:139.691700px;}
.y12a{bottom:149.683650px;}
.yac{bottom:153.177900px;}
.yc6{bottom:153.179700px;}
.yed{bottom:153.187650px;}
.yfe{bottom:153.188400px;}
.y58{bottom:153.189300px;}
.y97{bottom:153.189900px;}
.ydc{bottom:153.194400px;}
.y7a{bottom:153.199650px;}
.y155{bottom:153.923850px;}
.yc5{bottom:166.677300px;}
.y57{bottom:166.686900px;}
.y154{bottom:168.177600px;}
.y129{bottom:168.189900px;}
.yab{bottom:173.427150px;}
.yec{bottom:173.436900px;}
.yfd{bottom:173.437650px;}
.y96{bottom:173.439150px;}
.ydb{bottom:173.443650px;}
.y79{bottom:173.448900px;}
.yc4{bottom:180.177300px;}
.y56{bottom:180.184500px;}
.y128{bottom:182.443650px;}
.y153{bottom:186.683850px;}
.yaa{bottom:193.677150px;}
.y2d{bottom:193.679400px;}
.y55{bottom:193.682100px;}
.yeb{bottom:193.686150px;}
.yfc{bottom:193.686900px;}
.y95{bottom:193.688400px;}
.yda{bottom:193.692900px;}
.y78{bottom:193.698150px;}
.ya9{bottom:193.703400px;}
.y152{bottom:200.937600px;}
.y126{bottom:200.941950px;}
.y127{bottom:200.945700px;}
.yc3{bottom:201.444450px;}
.y54{bottom:207.179700px;}
.y2c{bottom:213.928650px;}
.yea{bottom:213.935400px;}
.yfb{bottom:213.936150px;}
.y94{bottom:213.937650px;}
.yd9{bottom:213.942150px;}
.y77{bottom:213.947400px;}
.ya8{bottom:213.952650px;}
.yc2{bottom:214.942050px;}
.y124{bottom:215.061750px;}
.y125{bottom:215.195700px;}
.y151{bottom:219.443850px;}
.y53{bottom:220.677300px;}
.yc1{bottom:228.439650px;}
.y123{bottom:229.315500px;}
.y150{bottom:233.697600px;}
.y2b{bottom:234.177900px;}
.ye9{bottom:234.184650px;}
.yfa{bottom:234.185400px;}
.y93{bottom:234.186900px;}
.yd8{bottom:234.191400px;}
.y76{bottom:234.196650px;}
.ya7{bottom:234.201900px;}
.yc0{bottom:241.937250px;}
.y52{bottom:241.944450px;}
.y122{bottom:247.821750px;}
.y14f{bottom:252.192150px;}
.y2a{bottom:254.427150px;}
.y28{bottom:254.429400px;}
.ye8{bottom:254.433900px;}
.yf9{bottom:254.434650px;}
.y92{bottom:254.436150px;}
.yd7{bottom:254.440650px;}
.y75{bottom:254.445900px;}
.ya6{bottom:254.451150px;}
.ybf{bottom:255.437250px;}
.y51{bottom:255.442050px;}
.y29{bottom:259.172400px;}
.y121{bottom:262.075500px;}
.y14e{bottom:266.445900px;}
.y50{bottom:268.939650px;}
.y27{bottom:274.678650px;}
.ye7{bottom:274.683150px;}
.yf8{bottom:274.683900px;}
.y91{bottom:274.685400px;}
.yd6{bottom:274.689900px;}
.y74{bottom:274.695150px;}
.ya5{bottom:274.700400px;}
.y120{bottom:276.329250px;}
.y14d{bottom:280.699650px;}
.y4f{bottom:282.437250px;}
.y11f{bottom:294.835500px;}
.yc9{bottom:294.927150px;}
.y26{bottom:294.927900px;}
.ybe{bottom:294.930150px;}
.ye6{bottom:294.932400px;}
.yf7{bottom:294.933150px;}
.y90{bottom:294.934650px;}
.yd5{bottom:294.939150px;}
.y73{bottom:294.944400px;}
.ya4{bottom:294.949650px;}
.y4e{bottom:295.937250px;}
.y14c{bottom:299.194050px;}
.y11e{bottom:309.089250px;}
.y14b{bottom:313.447800px;}
.y25{bottom:315.177150px;}
.ybd{bottom:315.179400px;}
.ye5{bottom:315.181650px;}
.yf6{bottom:315.182400px;}
.y8f{bottom:315.183900px;}
.yd4{bottom:315.188400px;}
.y72{bottom:315.193650px;}
.ya3{bottom:315.198900px;}
.y11d{bottom:323.343000px;}
.y149{bottom:327.693600px;}
.y14a{bottom:327.701550px;}
.ybc{bottom:335.428650px;}
.ye4{bottom:335.430900px;}
.yf5{bottom:335.431650px;}
.y8e{bottom:335.433150px;}
.y4d{bottom:335.437650px;}
.y71{bottom:335.442900px;}
.ya2{bottom:335.448150px;}
.y11c{bottom:341.849250px;}
.y148{bottom:346.199850px;}
.y24{bottom:355.676460px;}
.ybb{bottom:355.677900px;}
.ye3{bottom:355.680150px;}
.yf4{bottom:355.680900px;}
.y8d{bottom:355.682400px;}
.y4c{bottom:355.686900px;}
.y70{bottom:355.692150px;}
.ya1{bottom:355.697400px;}
.y11b{bottom:356.103000px;}
.y147{bottom:360.453600px;}
.y11a{bottom:370.356750px;}
.yba{bottom:375.927150px;}
.ye2{bottom:375.929400px;}
.yf3{bottom:375.930150px;}
.y8c{bottom:375.931650px;}
.y4b{bottom:375.936150px;}
.y6f{bottom:375.941400px;}
.ya0{bottom:375.946650px;}
.y146{bottom:378.948000px;}
.y119{bottom:388.863000px;}
.y145{bottom:393.201750px;}
.ye1{bottom:396.178650px;}
.yf2{bottom:396.179400px;}
.y8b{bottom:396.180900px;}
.y4a{bottom:396.185400px;}
.y6e{bottom:396.190650px;}
.y9f{bottom:396.195900px;}
.y118{bottom:403.116750px;}
.y144{bottom:407.448000px;}
.y23{bottom:416.427150px;}
.ye0{bottom:416.427900px;}
.yf1{bottom:416.428650px;}
.y8a{bottom:416.430150px;}
.yb8{bottom:416.430900px;}
.y49{bottom:416.434650px;}
.y6d{bottom:416.439900px;}
.y9e{bottom:416.445150px;}
.y117{bottom:417.370500px;}
.yb9{bottom:421.172400px;}
.y143{bottom:421.701750px;}
.y116{bottom:431.624250px;}
.y177{bottom:435.041550px;}
.y142{bottom:435.955500px;}
.ydf{bottom:436.677150px;}
.yf0{bottom:436.677900px;}
.y89{bottom:436.679400px;}
.yb7{bottom:436.680150px;}
.y48{bottom:436.683900px;}
.y6c{bottom:436.689150px;}
.y9d{bottom:436.694400px;}
.y115{bottom:450.130500px;}
.y176{bottom:450.636750px;}
.y141{bottom:454.425900px;}
.y16{bottom:456.905175px;}
.y17{bottom:456.927150px;}
.y88{bottom:456.928650px;}
.yb6{bottom:456.929400px;}
.y47{bottom:456.933150px;}
.y6b{bottom:456.938400px;}
.y9c{bottom:456.943650px;}
.y114{bottom:464.384250px;}
.y175{bottom:466.231950px;}
.y140{bottom:468.679650px;}
.y22{bottom:477.131565px;}
.y15{bottom:477.159570px;}
.y87{bottom:477.177900px;}
.yb5{bottom:477.178650px;}
.y46{bottom:477.182400px;}
.y6a{bottom:477.187650px;}
.y9b{bottom:477.192900px;}
.y113{bottom:478.638000px;}
.y174{bottom:481.827150px;}
.y173{bottom:481.831950px;}
.y13f{bottom:487.185900px;}
.y112{bottom:497.144250px;}
.y21{bottom:497.385960px;}
.y14{bottom:497.413965px;}
.y86{bottom:497.427150px;}
.yb4{bottom:497.427900px;}
.y45{bottom:497.431650px;}
.y69{bottom:497.436900px;}
.y9a{bottom:497.442150px;}
.y13e{bottom:501.439650px;}
.y111{bottom:511.398000px;}
.y20{bottom:517.640355px;}
.y13{bottom:517.668360px;}
.yb3{bottom:517.677150px;}
.y44{bottom:517.680900px;}
.y68{bottom:517.686150px;}
.y85{bottom:517.691400px;}
.y172{bottom:518.727150px;}
.y13d{bottom:519.945900px;}
.y110{bottom:525.651750px;}
.y13c{bottom:534.199650px;}
.y1f{bottom:537.894750px;}
.y12{bottom:537.922755px;}
.y171{bottom:537.927150px;}
.y43{bottom:537.930150px;}
.y67{bottom:537.935400px;}
.y84{bottom:537.940650px;}
.y10f{bottom:544.158000px;}
.y13b{bottom:548.453400px;}
.y1e{bottom:558.149145px;}
.y10{bottom:558.150780px;}
.y11{bottom:558.177150px;}
.yb2{bottom:558.177900px;}
.y42{bottom:558.179400px;}
.y66{bottom:558.184650px;}
.y83{bottom:558.189900px;}
.y10e{bottom:558.411750px;}
.y13a{bottom:566.959650px;}
.y10d{bottom:572.665500px;}
.y1d{bottom:578.403540px;}
.yf{bottom:578.405175px;}
.yb1{bottom:578.427150px;}
.y41{bottom:578.428650px;}
.y65{bottom:578.433900px;}
.y82{bottom:578.439150px;}
.y138{bottom:581.205900px;}
.y139{bottom:581.213400px;}
.y10c{bottom:591.171750px;}
.y137{bottom:595.459650px;}
.y1c{bottom:598.657935px;}
.ye{bottom:598.659570px;}
.yb0{bottom:598.677150px;}
.y40{bottom:598.677900px;}
.y64{bottom:598.683150px;}
.y81{bottom:598.688400px;}
.yaf{bottom:603.422400px;}
.y10b{bottom:605.425500px;}
.y136{bottom:609.713400px;}
.y1b{bottom:618.912330px;}
.yd{bottom:618.913965px;}
.y3f{bottom:618.927150px;}
.y3d{bottom:618.929400px;}
.y63{bottom:618.932400px;}
.y80{bottom:618.937650px;}
.y3e{bottom:623.672400px;}
.y10a{bottom:623.931750px;}
.y135{bottom:628.204050px;}
.y109{bottom:638.185500px;}
.y1a{bottom:639.166725px;}
.yc{bottom:639.168360px;}
.y170{bottom:639.177150px;}
.y3c{bottom:639.178650px;}
.y62{bottom:639.181650px;}
.y7f{bottom:639.186900px;}
.y134{bottom:642.457800px;}
.y108{bottom:652.439250px;}
.y133{bottom:656.711550px;}
.y19{bottom:659.421120px;}
.yb{bottom:659.422755px;}
.y3b{bottom:659.427900px;}
.y61{bottom:659.430900px;}
.yd3{bottom:659.431650px;}
.y7e{bottom:659.436150px;}
.y107{bottom:670.945500px;}
.y132{bottom:670.965300px;}
.y18{bottom:679.675515px;}
.ya{bottom:679.677150px;}
.y60{bottom:679.680150px;}
.yd2{bottom:679.680900px;}
.y7d{bottom:679.685400px;}
.y106{bottom:685.199250px;}
.y131{bottom:689.459850px;}
.y16f{bottom:699.927150px;}
.y5f{bottom:699.929400px;}
.yd1{bottom:699.930150px;}
.y39{bottom:699.934650px;}
.y105{bottom:703.705500px;}
.y130{bottom:703.713600px;}
.y3a{bottom:704.672400px;}
.y104{bottom:717.959250px;}
.y12f{bottom:717.967350px;}
.y5{bottom:720.177150px;}
.y5e{bottom:720.178650px;}
.yd0{bottom:720.179400px;}
.y38{bottom:720.183900px;}
.y163{bottom:728.119050px;}
.y12e{bottom:736.449900px;}
.y103{bottom:736.465500px;}
.y5d{bottom:740.427900px;}
.ycf{bottom:740.428650px;}
.y37{bottom:740.433150px;}
.y16e{bottom:742.327800px;}
.y162{bottom:746.625300px;}
.y12d{bottom:750.703650px;}
.y102{bottom:750.719250px;}
.y16d{bottom:756.581550px;}
.y5c{bottom:760.677150px;}
.yce{bottom:760.677900px;}
.y36{bottom:760.682400px;}
.y161{bottom:760.879050px;}
.y16c{bottom:775.087800px;}
.y160{bottom:775.132800px;}
.ycd{bottom:780.927150px;}
.y35{bottom:780.931650px;}
.y101{bottom:781.983948px;}
.y16b{bottom:789.341550px;}
.y15f{bottom:793.627350px;}
.y4{bottom:801.177150px;}
.y34{bottom:801.180900px;}
.y16a{bottom:807.847800px;}
.y15e{bottom:807.881100px;}
.ycc{bottom:821.428650px;}
.y33{bottom:821.430150px;}
.y169{bottom:822.101550px;}
.y15d{bottom:822.134850px;}
.y168{bottom:840.607800px;}
.y15c{bottom:840.621300px;}
.y3{bottom:841.677150px;}
.ycb{bottom:841.677900px;}
.y32{bottom:841.679400px;}
.y167{bottom:854.861550px;}
.y15b{bottom:854.875050px;}
.yca{bottom:861.927150px;}
.y31{bottom:861.928650px;}
.y166{bottom:869.115300px;}
.y15a{bottom:869.128800px;}
.y30{bottom:882.177900px;}
.y165{bottom:887.621550px;}
.y159{bottom:887.635050px;}
.y164{bottom:901.875300px;}
.y158{bottom:901.888800px;}
.y2{bottom:902.427150px;}
.y2f{bottom:954.674400px;}
.y1{bottom:954.717300px;}
.hb{height:24.158937px;}
.hf{height:26.152797px;}
.h11{height:32.535000px;}
.h7{height:35.830800px;}
.h10{height:36.450000px;}
.h12{height:36.480000px;}
.hc{height:36.831600px;}
.h13{height:36.936000px;}
.hd{height:37.767600px;}
.h14{height:37.776000px;}
.h2{height:37.908000px;}
.he{height:38.102400px;}
.h8{height:40.483800px;}
.ha{height:41.439000px;}
.h6{height:43.499064px;}
.h3{height:53.460000px;}
.h9{height:60.158280px;}
.h5{height:68.040000px;}
.h4{height:75.552000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x20{left:86.314950px;}
.x18{left:89.290350px;}
.xd{left:93.543300px;}
.x3{left:97.790700px;}
.x22{left:108.637800px;}
.x5{left:115.923600px;}
.x15{left:119.055150px;}
.xb{left:124.955400px;}
.x8{left:137.125950px;}
.x16{left:147.826500px;}
.x19{left:156.593850px;}
.x1a{left:173.271300px;}
.x17{left:181.419450px;}
.x4{left:185.492700px;}
.x14{left:222.652650px;}
.xc{left:269.053350px;}
.x9{left:339.336000px;}
.x6{left:342.283500px;}
.xa{left:349.185150px;}
.x7{left:359.292000px;}
.x1f{left:361.448250px;}
.xe{left:366.363150px;}
.xf{left:370.807800px;}
.x1b{left:372.051450px;}
.x10{left:392.650800px;}
.x1e{left:427.118850px;}
.x13{left:429.256050px;}
.x2{left:444.943200px;}
.x1d{left:462.229950px;}
.x21{left:588.938100px;}
.x1c{left:606.870600px;}
.x11{left:620.643000px;}
.x12{left:625.039350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.312000pt;}
.ls9{letter-spacing:-1.580800pt;}
.ls3{letter-spacing:-0.912000pt;}
.ls7{letter-spacing:-0.360000pt;}
.ls2{letter-spacing:-0.208000pt;}
.ls8{letter-spacing:-0.202667pt;}
.ls1{letter-spacing:-0.197333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:1.114667pt;}
.ls5{letter-spacing:1.216000pt;}
.ls4{letter-spacing:5.776000pt;}
.ws47{word-spacing:-14.997333pt;}
.ws77{word-spacing:-14.085333pt;}
.ws0{word-spacing:-9.826133pt;}
.ws1{word-spacing:-8.112000pt;}
.wsc0{word-spacing:-8.000000pt;}
.wsf4{word-spacing:-7.904000pt;}
.wsc1{word-spacing:-7.640000pt;}
.ws36{word-spacing:-3.344000pt;}
.ws2b{word-spacing:-2.989333pt;}
.ws57{word-spacing:-2.888000pt;}
.ws76{word-spacing:-2.837333pt;}
.wsb9{word-spacing:-2.786667pt;}
.ws69{word-spacing:-2.736000pt;}
.ws64{word-spacing:-2.685333pt;}
.ws55{word-spacing:-2.634667pt;}
.ws58{word-spacing:-2.584000pt;}
.ws37{word-spacing:-2.533333pt;}
.wsbc{word-spacing:-2.482667pt;}
.wsb2{word-spacing:-2.432000pt;}
.wsa0{word-spacing:-2.381333pt;}
.ws90{word-spacing:-2.330667pt;}
.ws4b{word-spacing:-2.280000pt;}
.ws83{word-spacing:-2.229333pt;}
.ws7d{word-spacing:-2.178667pt;}
.ws80{word-spacing:-2.128000pt;}
.ws92{word-spacing:-2.026667pt;}
.ws62{word-spacing:-1.925333pt;}
.ws7c{word-spacing:-1.874667pt;}
.wsc3{word-spacing:-1.824000pt;}
.ws2e{word-spacing:-1.773333pt;}
.ws67{word-spacing:-1.722667pt;}
.ws1a{word-spacing:-1.688213pt;}
.ws31{word-spacing:-1.672000pt;}
.wsac{word-spacing:-1.621333pt;}
.wsea{word-spacing:-1.560000pt;}
.ws98{word-spacing:-1.520000pt;}
.wse{word-spacing:-1.510507pt;}
.ws3b{word-spacing:-1.499733pt;}
.ws7e{word-spacing:-1.469333pt;}
.ws4{word-spacing:-1.460267pt;}
.wsd9{word-spacing:-1.440000pt;}
.wsb8{word-spacing:-1.418667pt;}
.ws15{word-spacing:-1.377227pt;}
.ws52{word-spacing:-1.368000pt;}
.ws32{word-spacing:-1.266667pt;}
.ws71{word-spacing:-1.165333pt;}
.wsca{word-spacing:-1.160000pt;}
.wse5{word-spacing:-1.120000pt;}
.ws59{word-spacing:-1.114667pt;}
.ws11{word-spacing:-1.110667pt;}
.ws6c{word-spacing:-1.064000pt;}
.wsd3{word-spacing:-1.000000pt;}
.ws2a{word-spacing:-0.962667pt;}
.ws6b{word-spacing:-0.912000pt;}
.ws8{word-spacing:-0.888533pt;}
.wse8{word-spacing:-0.880000pt;}
.ws87{word-spacing:-0.810667pt;}
.wsce{word-spacing:-0.800000pt;}
.ws3e{word-spacing:-0.789333pt;}
.ws68{word-spacing:-0.760000pt;}
.ws7f{word-spacing:-0.709333pt;}
.ws8e{word-spacing:-0.658667pt;}
.ws5c{word-spacing:-0.608000pt;}
.wscd{word-spacing:-0.600000pt;}
.ws25{word-spacing:-0.557333pt;}
.ws1b{word-spacing:-0.506667pt;}
.wsa9{word-spacing:-0.456000pt;}
.wsf{word-spacing:-0.399840pt;}
.ws42{word-spacing:-0.394667pt;}
.ws10{word-spacing:-0.355413pt;}
.ws2d{word-spacing:-0.354667pt;}
.ws91{word-spacing:-0.304000pt;}
.ws97{word-spacing:-0.276267pt;}
.ws82{word-spacing:-0.253333pt;}
.ws38{word-spacing:-0.202667pt;}
.wsf2{word-spacing:-0.160000pt;}
.ws3f{word-spacing:-0.157867pt;}
.wsb5{word-spacing:-0.152000pt;}
.wsc8{word-spacing:-0.120000pt;}
.ws2f{word-spacing:-0.101333pt;}
.wsbb{word-spacing:-0.050667pt;}
.ws14{word-spacing:-0.044427pt;}
.ws2{word-spacing:0.000000pt;}
.ws30{word-spacing:0.050667pt;}
.ws26{word-spacing:0.101333pt;}
.wsed{word-spacing:0.120000pt;}
.ws94{word-spacing:0.152000pt;}
.ws41{word-spacing:0.157867pt;}
.ws40{word-spacing:0.197333pt;}
.ws73{word-spacing:0.202667pt;}
.ws3c{word-spacing:0.236800pt;}
.wse9{word-spacing:0.240000pt;}
.ws48{word-spacing:0.253333pt;}
.ws3d{word-spacing:0.276267pt;}
.ws1d{word-spacing:0.304000pt;}
.ws18{word-spacing:0.310987pt;}
.wse1{word-spacing:0.320000pt;}
.ws72{word-spacing:0.354667pt;}
.ws8c{word-spacing:0.405333pt;}
.wsef{word-spacing:0.440000pt;}
.ws4f{word-spacing:0.456000pt;}
.ws5f{word-spacing:0.506667pt;}
.ws44{word-spacing:0.552533pt;}
.wsb0{word-spacing:0.557333pt;}
.wsa1{word-spacing:0.608000pt;}
.ws5e{word-spacing:0.658667pt;}
.ws99{word-spacing:0.709333pt;}
.ws4e{word-spacing:0.760000pt;}
.ws2c{word-spacing:0.810667pt;}
.wsee{word-spacing:0.840000pt;}
.ws6e{word-spacing:0.861333pt;}
.ws96{word-spacing:0.907733pt;}
.ws63{word-spacing:0.912000pt;}
.ws103{word-spacing:0.932267pt;}
.ws66{word-spacing:0.962667pt;}
.ws8f{word-spacing:1.064000pt;}
.ws12{word-spacing:1.110667pt;}
.ws85{word-spacing:1.114667pt;}
.wsd0{word-spacing:1.120000pt;}
.wsaf{word-spacing:1.165333pt;}
.wsad{word-spacing:1.216000pt;}
.wsc4{word-spacing:1.240000pt;}
.ws28{word-spacing:1.266667pt;}
.ws1e{word-spacing:1.317333pt;}
.ws34{word-spacing:1.368000pt;}
.ws3{word-spacing:1.460267pt;}
.ws6a{word-spacing:1.469333pt;}
.wsbe{word-spacing:1.520000pt;}
.ws102{word-spacing:1.540267pt;}
.wscf{word-spacing:1.560000pt;}
.ws5d{word-spacing:1.570667pt;}
.ws95{word-spacing:1.578667pt;}
.ws29{word-spacing:1.621333pt;}
.ws7b{word-spacing:1.672000pt;}
.ws5b{word-spacing:1.722667pt;}
.ws4d{word-spacing:1.773333pt;}
.ws6f{word-spacing:1.824000pt;}
.ws1f{word-spacing:1.874667pt;}
.wsc2{word-spacing:1.925333pt;}
.ws9e{word-spacing:1.976000pt;}
.ws51{word-spacing:2.026667pt;}
.ws4a{word-spacing:2.077333pt;}
.ws65{word-spacing:2.128000pt;}
.ws5a{word-spacing:2.178667pt;}
.ws88{word-spacing:2.229333pt;}
.ws53{word-spacing:2.280000pt;}
.ws60{word-spacing:2.330667pt;}
.ws93{word-spacing:2.381333pt;}
.ws50{word-spacing:2.432000pt;}
.wsd8{word-spacing:2.440000pt;}
.ws16{word-spacing:2.443467pt;}
.ws27{word-spacing:2.482667pt;}
.ws45{word-spacing:2.486400pt;}
.ws7a{word-spacing:2.533333pt;}
.ws22{word-spacing:2.584000pt;}
.wsd4{word-spacing:2.600000pt;}
.ws33{word-spacing:2.634667pt;}
.wsf7{word-spacing:2.640000pt;}
.wsd1{word-spacing:2.680000pt;}
.ws8d{word-spacing:2.685333pt;}
.wse6{word-spacing:2.720000pt;}
.wsa2{word-spacing:2.736000pt;}
.ws43{word-spacing:2.762667pt;}
.ws6d{word-spacing:2.786667pt;}
.ws101{word-spacing:2.877867pt;}
.ws84{word-spacing:2.888000pt;}
.wsb4{word-spacing:2.938667pt;}
.wseb{word-spacing:2.960000pt;}
.ws6{word-spacing:2.976587pt;}
.ws78{word-spacing:2.989333pt;}
.wsd6{word-spacing:3.000000pt;}
.wsb3{word-spacing:3.040000pt;}
.ws39{word-spacing:3.090667pt;}
.ws35{word-spacing:3.141333pt;}
.ws8b{word-spacing:3.242667pt;}
.wsa{word-spacing:3.287573pt;}
.wsa8{word-spacing:3.293333pt;}
.wsaa{word-spacing:3.344000pt;}
.wsb{word-spacing:3.376427pt;}
.ws86{word-spacing:3.394667pt;}
.wsf9{word-spacing:3.400000pt;}
.ws46{word-spacing:3.433600pt;}
.ws70{word-spacing:3.445333pt;}
.ws9d{word-spacing:3.496000pt;}
.wsd{word-spacing:3.509707pt;}
.wsbd{word-spacing:3.597333pt;}
.wsd2{word-spacing:3.640000pt;}
.ws81{word-spacing:3.749333pt;}
.wsa7{word-spacing:3.800000pt;}
.wsa5{word-spacing:3.850667pt;}
.wse2{word-spacing:3.960000pt;}
.ws75{word-spacing:4.002667pt;}
.wsfb{word-spacing:4.080000pt;}
.ws9c{word-spacing:4.104000pt;}
.wsf1{word-spacing:4.160000pt;}
.wsbf{word-spacing:4.205333pt;}
.wsae{word-spacing:4.256000pt;}
.ws23{word-spacing:4.306667pt;}
.ws1c{word-spacing:4.357333pt;}
.wscc{word-spacing:4.400000pt;}
.ws9a{word-spacing:4.408000pt;}
.ws8a{word-spacing:4.458667pt;}
.ws104{word-spacing:4.499200pt;}
.wsa6{word-spacing:4.610667pt;}
.wsd7{word-spacing:4.680000pt;}
.wsa4{word-spacing:4.762667pt;}
.ws21{word-spacing:4.813333pt;}
.ws9{word-spacing:4.842507pt;}
.wse4{word-spacing:4.880000pt;}
.wsb1{word-spacing:5.016000pt;}
.wsfe{word-spacing:5.080000pt;}
.ws4c{word-spacing:5.269333pt;}
.wsdf{word-spacing:5.280000pt;}
.wsa3{word-spacing:5.421333pt;}
.wsec{word-spacing:5.520000pt;}
.ws13{word-spacing:5.686613pt;}
.wsab{word-spacing:5.776000pt;}
.ws20{word-spacing:5.826667pt;}
.ws89{word-spacing:5.877333pt;}
.wsf6{word-spacing:5.880000pt;}
.ws74{word-spacing:5.928000pt;}
.ws24{word-spacing:5.978667pt;}
.wsff{word-spacing:6.240000pt;}
.wsb7{word-spacing:6.282667pt;}
.wsc6{word-spacing:6.320000pt;}
.ws54{word-spacing:6.485333pt;}
.wsb6{word-spacing:6.536000pt;}
.ws61{word-spacing:6.586667pt;}
.wsc5{word-spacing:6.760000pt;}
.ws9b{word-spacing:6.789333pt;}
.ws9f{word-spacing:6.840000pt;}
.ws56{word-spacing:6.890667pt;}
.wsc7{word-spacing:7.120000pt;}
.ws49{word-spacing:7.144000pt;}
.wsfc{word-spacing:7.240000pt;}
.ws3a{word-spacing:7.448000pt;}
.wsf3{word-spacing:7.520000pt;}
.wsba{word-spacing:7.600000pt;}
.ws17{word-spacing:7.952373pt;}
.wse7{word-spacing:8.120000pt;}
.ws5{word-spacing:8.396640pt;}
.ws79{word-spacing:8.714667pt;}
.wsc9{word-spacing:8.760000pt;}
.wsdc{word-spacing:9.040000pt;}
.wsfa{word-spacing:9.480000pt;}
.wsda{word-spacing:9.800000pt;}
.ws19{word-spacing:9.996000pt;}
.ws100{word-spacing:10.120000pt;}
.wsf0{word-spacing:10.200000pt;}
.wsdb{word-spacing:10.800000pt;}
.ws7{word-spacing:10.973387pt;}
.wsdd{word-spacing:11.200000pt;}
.wsf8{word-spacing:12.000000pt;}
.wse3{word-spacing:12.800000pt;}
.wse0{word-spacing:13.360000pt;}
.wsde{word-spacing:14.080000pt;}
.wsc{word-spacing:15.193920pt;}
.wscb{word-spacing:15.200000pt;}
.wsfd{word-spacing:20.040000pt;}
.wsf5{word-spacing:25.480000pt;}
.wsd5{word-spacing:37.720000pt;}
._11{margin-left:-16.101067pt;}
._10{margin-left:-14.290933pt;}
._14{margin-left:-11.953067pt;}
._a{margin-left:-6.536000pt;}
._3{margin-left:-5.383467pt;}
._8{margin-left:-4.378133pt;}
._9{margin-left:-3.453067pt;}
._6{margin-left:-2.289067pt;}
._7{margin-left:-1.144533pt;}
._1{width:1.194667pt;}
._2{width:2.722133pt;}
._4{width:4.606933pt;}
._e{width:5.877333pt;}
._12{width:6.973333pt;}
._13{width:11.597867pt;}
._5{width:47.676008pt;}
._c{width:49.294142pt;}
._b{width:50.636008pt;}
._f{width:68.474613pt;}
._d{width:925.433600pt;}
._0{width:1822.941333pt;}
.fsa{font-size:29.538667pt;}
.fs4{font-size:37.312000pt;}
.fs6{font-size:39.466667pt;}
.fsc{font-size:40.000000pt;}
.fsd{font-size:40.533333pt;}
.fs0{font-size:41.600000pt;}
.fsb{font-size:41.813333pt;}
.fse{font-size:42.666667pt;}
.fs7{font-size:44.426667pt;}
.fs5{font-size:49.130667pt;}
.fs9{font-size:50.666667pt;}
.fs1{font-size:58.666667pt;}
.fs8{font-size:67.946667pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y2e{bottom:52.291067pt;}
.yae{bottom:100.159467pt;}
.y9{bottom:100.159733pt;}
.yef{bottom:100.168133pt;}
.y100{bottom:100.168800pt;}
.y99{bottom:100.170133pt;}
.yde{bottom:100.174133pt;}
.y5b{bottom:100.174667pt;}
.y7c{bottom:100.178800pt;}
.y12c{bottom:107.712133pt;}
.y157{bottom:107.726000pt;}
.y8{bottom:112.157600pt;}
.y7{bottom:112.159733pt;}
.yc8{bottom:112.164000pt;}
.y5a{bottom:112.172533pt;}
.yad{bottom:118.158800pt;}
.yee{bottom:118.167467pt;}
.yff{bottom:118.168133pt;}
.y98{bottom:118.169467pt;}
.ydd{bottom:118.173467pt;}
.y7b{bottom:118.178133pt;}
.y12b{bottom:120.382133pt;}
.y156{bottom:124.151200pt;}
.y6{bottom:124.157600pt;}
.yc7{bottom:124.161867pt;}
.y59{bottom:124.170400pt;}
.y12a{bottom:133.052133pt;}
.yac{bottom:136.158133pt;}
.yc6{bottom:136.159733pt;}
.yed{bottom:136.166800pt;}
.yfe{bottom:136.167467pt;}
.y58{bottom:136.168267pt;}
.y97{bottom:136.168800pt;}
.ydc{bottom:136.172800pt;}
.y7a{bottom:136.177467pt;}
.y155{bottom:136.821200pt;}
.yc5{bottom:148.157600pt;}
.y57{bottom:148.166133pt;}
.y154{bottom:149.491200pt;}
.y129{bottom:149.502133pt;}
.yab{bottom:154.157467pt;}
.yec{bottom:154.166133pt;}
.yfd{bottom:154.166800pt;}
.y96{bottom:154.168133pt;}
.ydb{bottom:154.172133pt;}
.y79{bottom:154.176800pt;}
.yc4{bottom:160.157600pt;}
.y56{bottom:160.164000pt;}
.y128{bottom:162.172133pt;}
.y153{bottom:165.941200pt;}
.yaa{bottom:172.157467pt;}
.y2d{bottom:172.159467pt;}
.y55{bottom:172.161867pt;}
.yeb{bottom:172.165467pt;}
.yfc{bottom:172.166133pt;}
.y95{bottom:172.167467pt;}
.yda{bottom:172.171467pt;}
.y78{bottom:172.176133pt;}
.ya9{bottom:172.180800pt;}
.y152{bottom:178.611200pt;}
.y126{bottom:178.615067pt;}
.y127{bottom:178.618400pt;}
.yc3{bottom:179.061733pt;}
.y54{bottom:184.159733pt;}
.y2c{bottom:190.158800pt;}
.yea{bottom:190.164800pt;}
.yfb{bottom:190.165467pt;}
.y94{bottom:190.166800pt;}
.yd9{bottom:190.170800pt;}
.y77{bottom:190.175467pt;}
.ya8{bottom:190.180133pt;}
.yc2{bottom:191.059600pt;}
.y124{bottom:191.166000pt;}
.y125{bottom:191.285067pt;}
.y151{bottom:195.061200pt;}
.y53{bottom:196.157600pt;}
.yc1{bottom:203.057467pt;}
.y123{bottom:203.836000pt;}
.y150{bottom:207.731200pt;}
.y2b{bottom:208.158133pt;}
.ye9{bottom:208.164133pt;}
.yfa{bottom:208.164800pt;}
.y93{bottom:208.166133pt;}
.yd8{bottom:208.170133pt;}
.y76{bottom:208.174800pt;}
.ya7{bottom:208.179467pt;}
.yc0{bottom:215.055333pt;}
.y52{bottom:215.061733pt;}
.y122{bottom:220.286000pt;}
.y14f{bottom:224.170800pt;}
.y2a{bottom:226.157467pt;}
.y28{bottom:226.159467pt;}
.ye8{bottom:226.163467pt;}
.yf9{bottom:226.164133pt;}
.y92{bottom:226.165467pt;}
.yd7{bottom:226.169467pt;}
.y75{bottom:226.174133pt;}
.ya6{bottom:226.178800pt;}
.ybf{bottom:227.055333pt;}
.y51{bottom:227.059600pt;}
.y29{bottom:230.375467pt;}
.y121{bottom:232.956000pt;}
.y14e{bottom:236.840800pt;}
.y50{bottom:239.057467pt;}
.y27{bottom:244.158800pt;}
.ye7{bottom:244.162800pt;}
.yf8{bottom:244.163467pt;}
.y91{bottom:244.164800pt;}
.yd6{bottom:244.168800pt;}
.y74{bottom:244.173467pt;}
.ya5{bottom:244.178133pt;}
.y120{bottom:245.626000pt;}
.y14d{bottom:249.510800pt;}
.y4f{bottom:251.055333pt;}
.y11f{bottom:262.076000pt;}
.yc9{bottom:262.157467pt;}
.y26{bottom:262.158133pt;}
.ybe{bottom:262.160133pt;}
.ye6{bottom:262.162133pt;}
.yf7{bottom:262.162800pt;}
.y90{bottom:262.164133pt;}
.yd5{bottom:262.168133pt;}
.y73{bottom:262.172800pt;}
.ya4{bottom:262.177467pt;}
.y4e{bottom:263.055333pt;}
.y14c{bottom:265.950267pt;}
.y11e{bottom:274.746000pt;}
.y14b{bottom:278.620267pt;}
.y25{bottom:280.157467pt;}
.ybd{bottom:280.159467pt;}
.ye5{bottom:280.161467pt;}
.yf6{bottom:280.162133pt;}
.y8f{bottom:280.163467pt;}
.yd4{bottom:280.167467pt;}
.y72{bottom:280.172133pt;}
.ya3{bottom:280.176800pt;}
.y11d{bottom:287.416000pt;}
.y149{bottom:291.283200pt;}
.y14a{bottom:291.290267pt;}
.ybc{bottom:298.158800pt;}
.ye4{bottom:298.160800pt;}
.yf5{bottom:298.161467pt;}
.y8e{bottom:298.162800pt;}
.y4d{bottom:298.166800pt;}
.y71{bottom:298.171467pt;}
.ya2{bottom:298.176133pt;}
.y11c{bottom:303.866000pt;}
.y148{bottom:307.733200pt;}
.y24{bottom:316.156853pt;}
.ybb{bottom:316.158133pt;}
.ye3{bottom:316.160133pt;}
.yf4{bottom:316.160800pt;}
.y8d{bottom:316.162133pt;}
.y4c{bottom:316.166133pt;}
.y70{bottom:316.170800pt;}
.ya1{bottom:316.175467pt;}
.y11b{bottom:316.536000pt;}
.y147{bottom:320.403200pt;}
.y11a{bottom:329.206000pt;}
.yba{bottom:334.157467pt;}
.ye2{bottom:334.159467pt;}
.yf3{bottom:334.160133pt;}
.y8c{bottom:334.161467pt;}
.y4b{bottom:334.165467pt;}
.y6f{bottom:334.170133pt;}
.ya0{bottom:334.174800pt;}
.y146{bottom:336.842667pt;}
.y119{bottom:345.656000pt;}
.y145{bottom:349.512667pt;}
.ye1{bottom:352.158800pt;}
.yf2{bottom:352.159467pt;}
.y8b{bottom:352.160800pt;}
.y4a{bottom:352.164800pt;}
.y6e{bottom:352.169467pt;}
.y9f{bottom:352.174133pt;}
.y118{bottom:358.326000pt;}
.y144{bottom:362.176000pt;}
.y23{bottom:370.157467pt;}
.ye0{bottom:370.158133pt;}
.yf1{bottom:370.158800pt;}
.y8a{bottom:370.160133pt;}
.yb8{bottom:370.160800pt;}
.y49{bottom:370.164133pt;}
.y6d{bottom:370.168800pt;}
.y9e{bottom:370.173467pt;}
.y117{bottom:370.996000pt;}
.yb9{bottom:374.375467pt;}
.y143{bottom:374.846000pt;}
.y116{bottom:383.666000pt;}
.y177{bottom:386.703600pt;}
.y142{bottom:387.516000pt;}
.ydf{bottom:388.157467pt;}
.yf0{bottom:388.158133pt;}
.y89{bottom:388.159467pt;}
.yb7{bottom:388.160133pt;}
.y48{bottom:388.163467pt;}
.y6c{bottom:388.168133pt;}
.y9d{bottom:388.172800pt;}
.y115{bottom:400.116000pt;}
.y176{bottom:400.566000pt;}
.y141{bottom:403.934133pt;}
.y16{bottom:406.137933pt;}
.y17{bottom:406.157467pt;}
.y88{bottom:406.158800pt;}
.yb6{bottom:406.159467pt;}
.y47{bottom:406.162800pt;}
.y6b{bottom:406.167467pt;}
.y9c{bottom:406.172133pt;}
.y114{bottom:412.786000pt;}
.y175{bottom:414.428400pt;}
.y140{bottom:416.604133pt;}
.y22{bottom:424.116947pt;}
.y15{bottom:424.141840pt;}
.y87{bottom:424.158133pt;}
.yb5{bottom:424.158800pt;}
.y46{bottom:424.162133pt;}
.y6a{bottom:424.166800pt;}
.y9b{bottom:424.171467pt;}
.y113{bottom:425.456000pt;}
.y174{bottom:428.290800pt;}
.y173{bottom:428.295067pt;}
.y13f{bottom:433.054133pt;}
.y112{bottom:441.906000pt;}
.y21{bottom:442.120853pt;}
.y14{bottom:442.145747pt;}
.y86{bottom:442.157467pt;}
.yb4{bottom:442.158133pt;}
.y45{bottom:442.161467pt;}
.y69{bottom:442.166133pt;}
.y9a{bottom:442.170800pt;}
.y13e{bottom:445.724133pt;}
.y111{bottom:454.576000pt;}
.y20{bottom:460.124760pt;}
.y13{bottom:460.149653pt;}
.yb3{bottom:460.157467pt;}
.y44{bottom:460.160800pt;}
.y68{bottom:460.165467pt;}
.y85{bottom:460.170133pt;}
.y172{bottom:461.090800pt;}
.y13d{bottom:462.174133pt;}
.y110{bottom:467.246000pt;}
.y13c{bottom:474.844133pt;}
.y1f{bottom:478.128667pt;}
.y12{bottom:478.153560pt;}
.y171{bottom:478.157467pt;}
.y43{bottom:478.160133pt;}
.y67{bottom:478.164800pt;}
.y84{bottom:478.169467pt;}
.y10f{bottom:483.696000pt;}
.y13b{bottom:487.514133pt;}
.y1e{bottom:496.132573pt;}
.y10{bottom:496.134027pt;}
.y11{bottom:496.157467pt;}
.yb2{bottom:496.158133pt;}
.y42{bottom:496.159467pt;}
.y66{bottom:496.164133pt;}
.y83{bottom:496.168800pt;}
.y10e{bottom:496.366000pt;}
.y13a{bottom:503.964133pt;}
.y10d{bottom:509.036000pt;}
.y1d{bottom:514.136480pt;}
.yf{bottom:514.137933pt;}
.yb1{bottom:514.157467pt;}
.y41{bottom:514.158800pt;}
.y65{bottom:514.163467pt;}
.y82{bottom:514.168133pt;}
.y138{bottom:516.627467pt;}
.y139{bottom:516.634133pt;}
.y10c{bottom:525.486000pt;}
.y137{bottom:529.297467pt;}
.y1c{bottom:532.140387pt;}
.ye{bottom:532.141840pt;}
.yb0{bottom:532.157467pt;}
.y40{bottom:532.158133pt;}
.y64{bottom:532.162800pt;}
.y81{bottom:532.167467pt;}
.yaf{bottom:536.375467pt;}
.y10b{bottom:538.156000pt;}
.y136{bottom:541.967467pt;}
.y1b{bottom:550.144293pt;}
.yd{bottom:550.145747pt;}
.y3f{bottom:550.157467pt;}
.y3d{bottom:550.159467pt;}
.y63{bottom:550.162133pt;}
.y80{bottom:550.166800pt;}
.y3e{bottom:554.375467pt;}
.y10a{bottom:554.606000pt;}
.y135{bottom:558.403600pt;}
.y109{bottom:567.276000pt;}
.y1a{bottom:568.148200pt;}
.yc{bottom:568.149653pt;}
.y170{bottom:568.157467pt;}
.y3c{bottom:568.158800pt;}
.y62{bottom:568.161467pt;}
.y7f{bottom:568.166133pt;}
.y134{bottom:571.073600pt;}
.y108{bottom:579.946000pt;}
.y133{bottom:583.743600pt;}
.y19{bottom:586.152107pt;}
.yb{bottom:586.153560pt;}
.y3b{bottom:586.158133pt;}
.y61{bottom:586.160800pt;}
.yd3{bottom:586.161467pt;}
.y7e{bottom:586.165467pt;}
.y107{bottom:596.396000pt;}
.y132{bottom:596.413600pt;}
.y18{bottom:604.156013pt;}
.ya{bottom:604.157467pt;}
.y60{bottom:604.160133pt;}
.yd2{bottom:604.160800pt;}
.y7d{bottom:604.164800pt;}
.y106{bottom:609.066000pt;}
.y131{bottom:612.853200pt;}
.y16f{bottom:622.157467pt;}
.y5f{bottom:622.159467pt;}
.yd1{bottom:622.160133pt;}
.y39{bottom:622.164133pt;}
.y105{bottom:625.516000pt;}
.y130{bottom:625.523200pt;}
.y3a{bottom:626.375467pt;}
.y104{bottom:638.186000pt;}
.y12f{bottom:638.193200pt;}
.y5{bottom:640.157467pt;}
.y5e{bottom:640.158800pt;}
.yd0{bottom:640.159467pt;}
.y38{bottom:640.163467pt;}
.y163{bottom:647.216933pt;}
.y12e{bottom:654.622133pt;}
.y103{bottom:654.636000pt;}
.y5d{bottom:658.158133pt;}
.ycf{bottom:658.158800pt;}
.y37{bottom:658.162800pt;}
.y16e{bottom:659.846933pt;}
.y162{bottom:663.666933pt;}
.y12d{bottom:667.292133pt;}
.y102{bottom:667.306000pt;}
.y16d{bottom:672.516933pt;}
.y5c{bottom:676.157467pt;}
.yce{bottom:676.158133pt;}
.y36{bottom:676.162133pt;}
.y161{bottom:676.336933pt;}
.y16c{bottom:688.966933pt;}
.y160{bottom:689.006933pt;}
.ycd{bottom:694.157467pt;}
.y35{bottom:694.161467pt;}
.y101{bottom:695.096843pt;}
.y16b{bottom:701.636933pt;}
.y15f{bottom:705.446533pt;}
.y4{bottom:712.157467pt;}
.y34{bottom:712.160800pt;}
.y16a{bottom:718.086933pt;}
.y15e{bottom:718.116533pt;}
.ycc{bottom:730.158800pt;}
.y33{bottom:730.160133pt;}
.y169{bottom:730.756933pt;}
.y15d{bottom:730.786533pt;}
.y168{bottom:747.206933pt;}
.y15c{bottom:747.218933pt;}
.y3{bottom:748.157467pt;}
.ycb{bottom:748.158133pt;}
.y32{bottom:748.159467pt;}
.y167{bottom:759.876933pt;}
.y15b{bottom:759.888933pt;}
.yca{bottom:766.157467pt;}
.y31{bottom:766.158800pt;}
.y166{bottom:772.546933pt;}
.y15a{bottom:772.558933pt;}
.y30{bottom:784.158133pt;}
.y165{bottom:788.996933pt;}
.y159{bottom:789.008933pt;}
.y164{bottom:801.666933pt;}
.y158{bottom:801.678933pt;}
.y2{bottom:802.157467pt;}
.y2f{bottom:848.599467pt;}
.y1{bottom:848.637600pt;}
.hb{height:21.474611pt;}
.hf{height:23.246931pt;}
.h11{height:28.920000pt;}
.h7{height:31.849600pt;}
.h10{height:32.400000pt;}
.h12{height:32.426667pt;}
.hc{height:32.739200pt;}
.h13{height:32.832000pt;}
.hd{height:33.571200pt;}
.h14{height:33.578667pt;}
.h2{height:33.696000pt;}
.he{height:33.868800pt;}
.h8{height:35.985600pt;}
.ha{height:36.834667pt;}
.h6{height:38.665835pt;}
.h3{height:47.520000pt;}
.h9{height:53.474027pt;}
.h5{height:60.480000pt;}
.h4{height:67.157333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x20{left:76.724400pt;}
.x18{left:79.369200pt;}
.xd{left:83.149600pt;}
.x3{left:86.925067pt;}
.x22{left:96.566933pt;}
.x5{left:103.043200pt;}
.x15{left:105.826800pt;}
.xb{left:111.071467pt;}
.x8{left:121.889733pt;}
.x16{left:131.401333pt;}
.x19{left:139.194533pt;}
.x1a{left:154.018933pt;}
.x17{left:161.261733pt;}
.x4{left:164.882400pt;}
.x14{left:197.913467pt;}
.xc{left:239.158533pt;}
.x9{left:301.632000pt;}
.x6{left:304.252000pt;}
.xa{left:310.386800pt;}
.x7{left:319.370667pt;}
.x1f{left:321.287333pt;}
.xe{left:325.656133pt;}
.xf{left:329.606933pt;}
.x1b{left:330.712400pt;}
.x10{left:349.022933pt;}
.x1e{left:379.661200pt;}
.x13{left:381.560933pt;}
.x2{left:395.505067pt;}
.x1d{left:410.871067pt;}
.x21{left:523.500533pt;}
.x1c{left:539.440533pt;}
.x11{left:551.682667pt;}
.x12{left:555.590533pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  