
    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_5e734c1172b4cd46c458d3ef.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.135000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_49b089683f68dd41789a66ee.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_b9924ab9b65341c8109bf2c1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.131000;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_18c4b1ab651fb7f8422c5cc7.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.138000;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_e8491b6981c2330cb1d73a40.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073000;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_c295811fa3ef938a501a0ac5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.955000;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_6f14e99997e179679e0b91ae.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_4caee8f4dd6d157f293f38c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.021000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.ma{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m10{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);}
.m7{transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240002,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242498,0.000000,0.000000,0.250000,0,0);}
.m4{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);}
.mc{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);}
.mf{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.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);}
.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);}
.m8{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);}
.m11{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.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);}
.me{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);}
.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);}
.m5{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);}
.m9{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.975000px;}
.ls7{letter-spacing:-6.270000px;}
.lse{letter-spacing:-1.778400px;}
.ls5{letter-spacing:-1.026000px;}
.lsa{letter-spacing:-0.765000px;}
.ls6{letter-spacing:-0.621600px;}
.lsc{letter-spacing:-0.540000px;}
.ls2{letter-spacing:-0.234000px;}
.lsd{letter-spacing:-0.228000px;}
.ls1{letter-spacing:-0.222000px;}
.ls8{letter-spacing:-0.166155px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.585000px;}
.ls4{letter-spacing:0.710400px;}
.lsb{letter-spacing:1.530000px;}
.ls3{letter-spacing:5.814000px;}
.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;}
}
.ws1{word-spacing:-16.872000px;}
.ws0{word-spacing:-11.054400px;}
.wsc1{word-spacing:-10.602000px;}
.ws10b{word-spacing:-10.530000px;}
.wsed{word-spacing:-9.585000px;}
.ws2{word-spacing:-9.126000px;}
.wsec{word-spacing:-9.000000px;}
.ws10c{word-spacing:-8.892000px;}
.ws6a{word-spacing:-8.880000px;}
.ws69{word-spacing:-8.658000px;}
.ws10a{word-spacing:-8.460000px;}
.wsee{word-spacing:-8.235000px;}
.wse4{word-spacing:-8.151000px;}
.wse5{word-spacing:-7.809000px;}
.wsd7{word-spacing:-6.480045px;}
.wsfd{word-spacing:-4.635000px;}
.ws20{word-spacing:-3.591000px;}
.ws4f{word-spacing:-3.534000px;}
.ws1a{word-spacing:-3.363000px;}
.ws1b{word-spacing:-3.306000px;}
.ws6c{word-spacing:-3.249000px;}
.ws17{word-spacing:-3.192000px;}
.ws5b{word-spacing:-3.135000px;}
.ws73{word-spacing:-2.964000px;}
.ws14{word-spacing:-2.907000px;}
.ws23{word-spacing:-2.850000px;}
.ws56{word-spacing:-2.736000px;}
.ws4b{word-spacing:-2.622000px;}
.wsb6{word-spacing:-2.508000px;}
.wsb7{word-spacing:-2.394000px;}
.wse9{word-spacing:-2.337000px;}
.ws47{word-spacing:-2.280000px;}
.ws2a{word-spacing:-2.166000px;}
.ws15{word-spacing:-2.052000px;}
.wse8{word-spacing:-1.995000px;}
.ws90{word-spacing:-1.938000px;}
.ws16{word-spacing:-1.881000px;}
.wscd{word-spacing:-1.824000px;}
.ws3f{word-spacing:-1.767000px;}
.wsbb{word-spacing:-1.710000px;}
.wsaa{word-spacing:-1.653000px;}
.ws116{word-spacing:-1.575000px;}
.ws66{word-spacing:-1.539000px;}
.ws86{word-spacing:-1.509600px;}
.ws24{word-spacing:-1.482000px;}
.ws120{word-spacing:-1.440000px;}
.ws3d{word-spacing:-1.368000px;}
.wsc9{word-spacing:-1.311000px;}
.wsea{word-spacing:-1.254000px;}
.ws31{word-spacing:-1.197000px;}
.wsd2{word-spacing:-1.140000px;}
.ws5a{word-spacing:-1.083000px;}
.wsf7{word-spacing:-1.080000px;}
.wsf5{word-spacing:-0.990000px;}
.ws87{word-spacing:-0.976800px;}
.ws41{word-spacing:-0.969000px;}
.ws43{word-spacing:-0.855000px;}
.wsba{word-spacing:-0.798000px;}
.ws58{word-spacing:-0.741000px;}
.wsf9{word-spacing:-0.675000px;}
.ws39{word-spacing:-0.627000px;}
.wse3{word-spacing:-0.621600px;}
.ws9a{word-spacing:-0.456000px;}
.ws9{word-spacing:-0.449820px;}
.wsb8{word-spacing:-0.342000px;}
.ws29{word-spacing:-0.285000px;}
.ws83{word-spacing:-0.266400px;}
.ws3e{word-spacing:-0.228000px;}
.ws9d{word-spacing:-0.222000px;}
.ws40{word-spacing:-0.171000px;}
.ws1d{word-spacing:-0.114000px;}
.ws13{word-spacing:-0.057000px;}
.ws3{word-spacing:0.000000px;}
.ws33{word-spacing:0.044400px;}
.ws63{word-spacing:0.057000px;}
.wseb{word-spacing:0.114000px;}
.wscc{word-spacing:0.166155px;}
.wsc3{word-spacing:0.171000px;}
.wse1{word-spacing:0.177600px;}
.ws4{word-spacing:0.222000px;}
.ws48{word-spacing:0.228000px;}
.ws89{word-spacing:0.285000px;}
.ws78{word-spacing:0.342000px;}
.ws106{word-spacing:0.360000px;}
.ws25{word-spacing:0.399000px;}
.ws8d{word-spacing:0.456000px;}
.ws82{word-spacing:0.488400px;}
.wsa4{word-spacing:0.513000px;}
.ws3c{word-spacing:0.570000px;}
.ws81{word-spacing:0.577200px;}
.ws5c{word-spacing:0.627000px;}
.ws2c{word-spacing:0.684000px;}
.wsfe{word-spacing:0.720000px;}
.ws4e{word-spacing:0.741000px;}
.ws8f{word-spacing:0.798000px;}
.wsd3{word-spacing:0.799200px;}
.wsf2{word-spacing:0.810000px;}
.ws2f{word-spacing:0.855000px;}
.ws37{word-spacing:0.912000px;}
.ws94{word-spacing:0.969000px;}
.ws6e{word-spacing:1.026000px;}
.ws123{word-spacing:1.048800px;}
.ws55{word-spacing:1.083000px;}
.ws7f{word-spacing:1.110000px;}
.ws108{word-spacing:1.125000px;}
.ws3a{word-spacing:1.140000px;}
.ws92{word-spacing:1.197000px;}
.wsd5{word-spacing:1.198800px;}
.wse2{word-spacing:1.243200px;}
.ws30{word-spacing:1.254000px;}
.ws34{word-spacing:1.287600px;}
.ws51{word-spacing:1.311000px;}
.ws18{word-spacing:1.368000px;}
.ws21{word-spacing:1.425000px;}
.ws75{word-spacing:1.482000px;}
.ws112{word-spacing:1.530000px;}
.ws91{word-spacing:1.539000px;}
.ws8c{word-spacing:1.596000px;}
.wse{word-spacing:1.649340px;}
.ws1e{word-spacing:1.653000px;}
.wsdf{word-spacing:1.710000px;}
.ws122{word-spacing:1.732800px;}
.ws42{word-spacing:1.767000px;}
.ws80{word-spacing:1.820400px;}
.ws6b{word-spacing:1.824000px;}
.wsbe{word-spacing:1.881000px;}
.wsa0{word-spacing:1.909200px;}
.ws36{word-spacing:1.938000px;}
.ws85{word-spacing:1.953600px;}
.ws4c{word-spacing:1.995000px;}
.ws104{word-spacing:2.025000px;}
.ws74{word-spacing:2.052000px;}
.wsd0{word-spacing:2.109000px;}
.wsb9{word-spacing:2.166000px;}
.ws7d{word-spacing:2.220000px;}
.wscb{word-spacing:2.223000px;}
.ws107{word-spacing:2.250000px;}
.wsa{word-spacing:2.299080px;}
.ws5{word-spacing:2.308800px;}
.wsae{word-spacing:2.337000px;}
.ws59{word-spacing:2.394000px;}
.ws96{word-spacing:2.451000px;}
.ws1f{word-spacing:2.508000px;}
.ws6f{word-spacing:2.565000px;}
.wsc8{word-spacing:2.622000px;}
.wse6{word-spacing:2.679000px;}
.ws8b{word-spacing:2.736000px;}
.ws7e{word-spacing:2.752800px;}
.wsf3{word-spacing:2.790000px;}
.ws50{word-spacing:2.793000px;}
.wsbf{word-spacing:2.850000px;}
.ws105{word-spacing:2.925000px;}
.wsdc{word-spacing:2.964000px;}
.ws67{word-spacing:3.021000px;}
.wsac{word-spacing:3.078000px;}
.ws32{word-spacing:3.108000px;}
.wsab{word-spacing:3.135000px;}
.wsb1{word-spacing:3.192000px;}
.ws121{word-spacing:3.237600px;}
.wsd4{word-spacing:3.241200px;}
.ws4a{word-spacing:3.249000px;}
.ws70{word-spacing:3.306000px;}
.ws5e{word-spacing:3.363000px;}
.wsc0{word-spacing:3.420000px;}
.ws7c{word-spacing:3.463200px;}
.wsa6{word-spacing:3.477000px;}
.ws84{word-spacing:3.507600px;}
.ws8a{word-spacing:3.534000px;}
.wse0{word-spacing:3.552000px;}
.ws53{word-spacing:3.648000px;}
.ws76{word-spacing:3.705000px;}
.ws35{word-spacing:3.729600px;}
.ws11d{word-spacing:3.735000px;}
.ws79{word-spacing:3.762000px;}
.ws57{word-spacing:3.819000px;}
.ws9c{word-spacing:3.862800px;}
.wsa1{word-spacing:3.876000px;}
.ws10{word-spacing:3.898440px;}
.wsdd{word-spacing:3.933000px;}
.wsbc{word-spacing:3.990000px;}
.ws22{word-spacing:4.104000px;}
.wsfa{word-spacing:4.140000px;}
.ws9b{word-spacing:4.161000px;}
.wsa2{word-spacing:4.218000px;}
.ws26{word-spacing:4.275000px;}
.ws27{word-spacing:4.332000px;}
.ws54{word-spacing:4.389000px;}
.wsce{word-spacing:4.440000px;}
.wsb3{word-spacing:4.503000px;}
.wsda{word-spacing:4.560000px;}
.wsdb{word-spacing:4.617000px;}
.ws99{word-spacing:4.674000px;}
.ws117{word-spacing:4.770000px;}
.ws1c{word-spacing:4.788000px;}
.wsaf{word-spacing:4.845000px;}
.ws11{word-spacing:4.848060px;}
.wsb2{word-spacing:4.902000px;}
.wsd6{word-spacing:4.928400px;}
.wsbd{word-spacing:4.959000px;}
.ws4d{word-spacing:5.016000px;}
.ws11b{word-spacing:5.040000px;}
.ws124{word-spacing:5.061600px;}
.ws8e{word-spacing:5.073000px;}
.ws60{word-spacing:5.130000px;}
.wsb{word-spacing:5.147940px;}
.ws3b{word-spacing:5.244000px;}
.ws28{word-spacing:5.301000px;}
.wsa8{word-spacing:5.415000px;}
.ws97{word-spacing:5.472000px;}
.ws77{word-spacing:5.529000px;}
.wsef{word-spacing:5.586000px;}
.ws7b{word-spacing:5.594400px;}
.ws5d{word-spacing:5.643000px;}
.wscf{word-spacing:5.700000px;}
.ws6d{word-spacing:5.757000px;}
.wsfb{word-spacing:5.760000px;}
.ws19{word-spacing:5.814000px;}
.ws5f{word-spacing:5.928000px;}
.ws52{word-spacing:5.985000px;}
.ws9e{word-spacing:5.994000px;}
.wse7{word-spacing:6.099000px;}
.wsca{word-spacing:6.156000px;}
.ws118{word-spacing:6.210000px;}
.ws46{word-spacing:6.213000px;}
.ws49{word-spacing:6.270000px;}
.wsb0{word-spacing:6.327000px;}
.ws110{word-spacing:6.345000px;}
.ws44{word-spacing:6.384000px;}
.ws9f{word-spacing:6.393600px;}
.ws45{word-spacing:6.498000px;}
.ws11c{word-spacing:6.525000px;}
.ws2b{word-spacing:6.555000px;}
.wsc4{word-spacing:6.612000px;}
.wsb5{word-spacing:6.726000px;}
.ws93{word-spacing:6.840000px;}
.ws119{word-spacing:6.885000px;}
.ws95{word-spacing:6.897000px;}
.wsd1{word-spacing:7.011000px;}
.ws65{word-spacing:7.068000px;}
.wsa7{word-spacing:7.182000px;}
.ws61{word-spacing:7.239000px;}
.ws71{word-spacing:7.353000px;}
.ws103{word-spacing:7.380000px;}
.ws7a{word-spacing:7.524000px;}
.ws11a{word-spacing:7.605000px;}
.wsc5{word-spacing:7.695000px;}
.ws12{word-spacing:7.846860px;}
.wsd9{word-spacing:7.866000px;}
.wsd8{word-spacing:7.980000px;}
.ws100{word-spacing:8.010000px;}
.ws2d{word-spacing:8.037000px;}
.wsc6{word-spacing:8.094000px;}
.wsd{word-spacing:8.096760px;}
.ws38{word-spacing:8.265000px;}
.wsa5{word-spacing:8.322000px;}
.wsf4{word-spacing:8.325000px;}
.ws2e{word-spacing:8.379000px;}
.ws102{word-spacing:8.460000px;}
.ws98{word-spacing:8.493000px;}
.ws10e{word-spacing:8.550000px;}
.wsde{word-spacing:8.835000px;}
.wsb4{word-spacing:8.892000px;}
.ws62{word-spacing:8.949000px;}
.ws10d{word-spacing:9.000000px;}
.ws68{word-spacing:9.006000px;}
.wsa3{word-spacing:9.063000px;}
.ws113{word-spacing:9.135000px;}
.ws64{word-spacing:9.291000px;}
.wsc2{word-spacing:9.348000px;}
.ws72{word-spacing:9.519000px;}
.wsa9{word-spacing:9.576000px;}
.wsad{word-spacing:9.633000px;}
.wsf8{word-spacing:9.720000px;}
.wsf{word-spacing:9.746100px;}
.wsc7{word-spacing:9.861000px;}
.wsf1{word-spacing:10.035000px;}
.wsff{word-spacing:10.485000px;}
.ws8{word-spacing:10.495800px;}
.wsc{word-spacing:10.745700px;}
.ws115{word-spacing:11.070000px;}
.wsf6{word-spacing:11.700000px;}
.ws88{word-spacing:11.799000px;}
.ws11f{word-spacing:11.835000px;}
.ws111{word-spacing:12.735000px;}
.ws109{word-spacing:13.320000px;}
.ws10f{word-spacing:13.410000px;}
.ws101{word-spacing:14.580000px;}
.ws7{word-spacing:15.393840px;}
.wsfc{word-spacing:16.470000px;}
.ws6{word-spacing:18.792480px;}
.wsf0{word-spacing:19.170000px;}
.ws11e{word-spacing:28.485000px;}
.ws114{word-spacing:30.735000px;}
._15{margin-left:-39.733200px;}
._f{margin-left:-19.731600px;}
._13{margin-left:-17.196600px;}
._14{margin-left:-14.757000px;}
._17{margin-left:-13.588800px;}
._9{margin-left:-7.353000px;}
._6{margin-left:-6.270000px;}
._7{margin-left:-4.525200px;}
._5{margin-left:-2.617200px;}
._3{margin-left:-1.179600px;}
._1{width:1.379400px;}
._2{width:2.514600px;}
._4{width:3.658584px;}
._8{width:5.247000px;}
._10{width:6.270000px;}
._16{width:23.220000px;}
._11{width:27.083691px;}
._12{width:31.517641px;}
._d{width:49.683909px;}
._a{width:51.237551px;}
._e{width:52.525509px;}
._b{width:55.233909px;}
._c{width:1210.482000px;}
._0{width:2050.809000px;}
.fc1{color:rgb(25,90,159);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.231000px;}
.fs5{font-size:44.400000px;}
.fsb{font-size:45.000000px;}
.fsd{font-size:45.600000px;}
.fs0{font-size:46.800000px;}
.fsa{font-size:47.040000px;}
.fsc{font-size:48.000000px;}
.fs6{font-size:49.980000px;}
.fs4{font-size:55.272000px;}
.fs8{font-size:57.000000px;}
.fs1{font-size:66.000000px;}
.fs7{font-size:76.440000px;}
.fs3{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y28{bottom:58.827450px;}
.y9{bottom:112.677300px;}
.y142{bottom:112.680750px;}
.y8{bottom:112.682100px;}
.y4d{bottom:112.684500px;}
.yb8{bottom:112.686900px;}
.y12a{bottom:112.687950px;}
.y69{bottom:112.696650px;}
.yc1{bottom:112.706400px;}
.ye9{bottom:126.177300px;}
.y7{bottom:126.179700px;}
.y4c{bottom:126.182100px;}
.yb7{bottom:126.184500px;}
.y68{bottom:132.945900px;}
.yc0{bottom:132.955650px;}
.y141{bottom:133.937250px;}
.y129{bottom:133.944450px;}
.y6{bottom:139.677300px;}
.y4b{bottom:139.679700px;}
.yb6{bottom:139.682100px;}
.y128{bottom:147.442050px;}
.y4a{bottom:153.177300px;}
.yb5{bottom:153.179700px;}
.y67{bottom:153.195150px;}
.ybf{bottom:153.204900px;}
.y15d{bottom:153.905700px;}
.y127{bottom:160.939650px;}
.yb4{bottom:166.677300px;}
.y174{bottom:168.155700px;}
.y15c{bottom:168.159450px;}
.ye8{bottom:173.430150px;}
.y140{bottom:173.430900px;}
.y66{bottom:173.444400px;}
.ybe{bottom:173.454150px;}
.y49{bottom:174.437250px;}
.y126{bottom:174.440850px;}
.y172{bottom:182.405700px;}
.y173{bottom:182.409450px;}
.y15b{bottom:186.657600px;}
.y48{bottom:187.937250px;}
.y110{bottom:187.940850px;}
.y27{bottom:193.677150px;}
.y26{bottom:193.679400px;}
.y80{bottom:193.680150px;}
.y65{bottom:193.693650px;}
.ybd{bottom:193.703400px;}
.y125{bottom:195.697350px;}
.y170{bottom:196.651350px;}
.y171{bottom:196.659450px;}
.y15a{bottom:200.911350px;}
.y10f{bottom:209.197350px;}
.y10e{bottom:209.199750px;}
.y124{bottom:209.200800px;}
.ya1{bottom:209.211750px;}
.y25{bottom:213.928650px;}
.y7f{bottom:213.929400px;}
.yb3{bottom:213.941400px;}
.y64{bottom:213.942900px;}
.ybc{bottom:213.952650px;}
.y16f{bottom:215.157600px;}
.y159{bottom:215.161350px;}
.y10d{bottom:222.697350px;}
.ya0{bottom:222.709350px;}
.y157{bottom:229.399650px;}
.y158{bottom:229.411350px;}
.y123{bottom:230.457300px;}
.y1a4{bottom:232.541550px;}
.y24{bottom:234.177900px;}
.y7e{bottom:234.178650px;}
.y47{bottom:234.181650px;}
.yca{bottom:234.183900px;}
.yb2{bottom:234.190650px;}
.y63{bottom:234.192150px;}
.ybb{bottom:234.201900px;}
.y10c{bottom:236.197350px;}
.y9f{bottom:236.206950px;}
.y156{bottom:247.905900px;}
.y16e{bottom:247.909650px;}
.y1a3{bottom:248.136750px;}
.y9e{bottom:249.704550px;}
.y122{bottom:251.717250px;}
.y23{bottom:254.427150px;}
.y7d{bottom:254.427900px;}
.y46{bottom:254.430900px;}
.y21{bottom:254.432400px;}
.yc9{bottom:254.433150px;}
.ye7{bottom:254.433900px;}
.y62{bottom:254.441400px;}
.yba{bottom:254.451150px;}
.y22{bottom:259.172400px;}
.y16c{bottom:262.159050px;}
.y155{bottom:262.159650px;}
.y16d{bottom:262.163400px;}
.y9d{bottom:263.202150px;}
.y1a2{bottom:263.731950px;}
.y7c{bottom:274.677150px;}
.y45{bottom:274.680150px;}
.y10a{bottom:274.680900px;}
.y20{bottom:274.681650px;}
.yc8{bottom:274.682400px;}
.ye6{bottom:274.683150px;}
.yb1{bottom:274.689150px;}
.y61{bottom:274.690650px;}
.yb9{bottom:274.700400px;}
.y154{bottom:276.413400px;}
.y9c{bottom:276.699750px;}
.y1a1{bottom:279.327150px;}
.y1a0{bottom:279.331950px;}
.y10b{bottom:279.422400px;}
.y16a{bottom:280.661550px;}
.y16b{bottom:280.665300px;}
.y9b{bottom:290.197350px;}
.y153{bottom:294.907800px;}
.y168{bottom:294.911550px;}
.y169{bottom:294.915300px;}
.y121{bottom:294.927150px;}
.y120{bottom:294.927900px;}
.y44{bottom:294.929400px;}
.y109{bottom:294.930150px;}
.y1f{bottom:294.930900px;}
.yc7{bottom:294.931650px;}
.ye5{bottom:294.932400px;}
.y13e{bottom:294.936150px;}
.yb0{bottom:294.938400px;}
.y60{bottom:294.939900px;}
.y7b{bottom:294.949650px;}
.y13f{bottom:299.672400px;}
.y152{bottom:309.161550px;}
.y167{bottom:309.165300px;}
.y9a{bottom:311.466900px;}
.y11f{bottom:315.177150px;}
.y43{bottom:315.178650px;}
.y108{bottom:315.179400px;}
.y1e{bottom:315.180150px;}
.yc6{bottom:315.180900px;}
.ye4{bottom:315.181650px;}
.y13d{bottom:315.185400px;}
.yaf{bottom:315.187650px;}
.y5f{bottom:315.189150px;}
.y7a{bottom:315.198900px;}
.y19f{bottom:316.227150px;}
.y151{bottom:323.415300px;}
.y99{bottom:324.964500px;}
.y166{bottom:327.648600px;}
.y11e{bottom:335.427150px;}
.y42{bottom:335.427900px;}
.y107{bottom:335.428650px;}
.y1d{bottom:335.429400px;}
.yc5{bottom:335.430150px;}
.ye3{bottom:335.430900px;}
.y13c{bottom:335.434650px;}
.yae{bottom:335.436900px;}
.y5e{bottom:335.438400px;}
.y79{bottom:335.448150px;}
.y98{bottom:338.462100px;}
.y165{bottom:341.902350px;}
.y150{bottom:341.913600px;}
.y97{bottom:351.959700px;}
.y41{bottom:355.677150px;}
.y106{bottom:355.677900px;}
.y1c{bottom:355.678650px;}
.yc4{bottom:355.679400px;}
.ye2{bottom:355.680150px;}
.y13b{bottom:355.683900px;}
.yad{bottom:355.686150px;}
.y5d{bottom:355.687650px;}
.y78{bottom:355.697400px;}
.y164{bottom:356.156100px;}
.y14f{bottom:356.167350px;}
.y96{bottom:365.457300px;}
.y163{bottom:370.409850px;}
.y14e{bottom:374.650500px;}
.y105{bottom:375.927150px;}
.y1b{bottom:375.927900px;}
.yc3{bottom:375.928650px;}
.ye1{bottom:375.929400px;}
.y13a{bottom:375.933150px;}
.yac{bottom:375.935400px;}
.y5c{bottom:375.936900px;}
.y77{bottom:375.946650px;}
.y162{bottom:384.663600px;}
.y14d{bottom:388.904250px;}
.y1a{bottom:396.177150px;}
.yc2{bottom:396.177900px;}
.ye0{bottom:396.178650px;}
.y40{bottom:396.180150px;}
.y11d{bottom:396.181650px;}
.y139{bottom:396.182400px;}
.yab{bottom:396.184650px;}
.y5b{bottom:396.186150px;}
.y103{bottom:396.195150px;}
.y76{bottom:396.195900px;}
.y161{bottom:398.917350px;}
.y104{bottom:400.922400px;}
.y14c{bottom:403.158000px;}
.y95{bottom:416.427150px;}
.y93{bottom:416.427900px;}
.y3f{bottom:416.429400px;}
.y11c{bottom:416.430900px;}
.y138{bottom:416.431650px;}
.yaa{bottom:416.433900px;}
.y5a{bottom:416.435400px;}
.y102{bottom:416.444400px;}
.y75{bottom:416.445150px;}
.y160{bottom:417.403200px;}
.y14b{bottom:417.411750px;}
.y94{bottom:421.172400px;}
.y15f{bottom:431.656950px;}
.y14a{bottom:431.665500px;}
.y19{bottom:436.677150px;}
.y3e{bottom:436.678650px;}
.y91{bottom:436.680150px;}
.y137{bottom:436.680900px;}
.ya9{bottom:436.683150px;}
.y59{bottom:436.684650px;}
.y101{bottom:436.693650px;}
.y74{bottom:436.694400px;}
.y92{bottom:441.422400px;}
.y15e{bottom:445.910700px;}
.y149{bottom:445.919250px;}
.y19e{bottom:456.927150px;}
.y3d{bottom:456.927900px;}
.y90{bottom:456.929400px;}
.y136{bottom:456.930150px;}
.ya8{bottom:456.932400px;}
.y58{bottom:456.933900px;}
.ydf{bottom:456.939150px;}
.y100{bottom:456.942900px;}
.y73{bottom:456.943650px;}
.y3c{bottom:477.177150px;}
.y8f{bottom:477.178650px;}
.y135{bottom:477.179400px;}
.ya7{bottom:477.181650px;}
.y57{bottom:477.183150px;}
.yde{bottom:477.188400px;}
.yff{bottom:477.192150px;}
.y72{bottom:477.192900px;}
.y8e{bottom:497.427900px;}
.y134{bottom:497.428650px;}
.y56{bottom:497.432400px;}
.ydd{bottom:497.437650px;}
.yfe{bottom:497.441400px;}
.y71{bottom:497.442150px;}
.y19d{bottom:498.483948px;}
.y8d{bottom:517.677150px;}
.y133{bottom:517.677900px;}
.y11b{bottom:517.679400px;}
.y8b{bottom:517.680150px;}
.y3b{bottom:517.681650px;}
.ydc{bottom:517.686900px;}
.yfd{bottom:517.690650px;}
.y70{bottom:517.691400px;}
.y8c{bottom:522.422400px;}
.y11{bottom:537.896385px;}
.y132{bottom:537.927150px;}
.y11a{bottom:537.928650px;}
.y8a{bottom:537.929400px;}
.y3a{bottom:537.930900px;}
.y148{bottom:537.933900px;}
.ydb{bottom:537.936150px;}
.yfc{bottom:537.939900px;}
.y6f{bottom:537.940650px;}
.y18{bottom:558.125790px;}
.y10{bottom:558.150780px;}
.y119{bottom:558.177900px;}
.y89{bottom:558.178650px;}
.y39{bottom:558.180150px;}
.y131{bottom:558.180900px;}
.y147{bottom:558.183150px;}
.yda{bottom:558.185400px;}
.yfb{bottom:558.189150px;}
.y6e{bottom:558.189900px;}
.y17{bottom:578.380185px;}
.yf{bottom:578.405175px;}
.y118{bottom:578.427150px;}
.y88{bottom:578.427900px;}
.y38{bottom:578.429400px;}
.y130{bottom:578.430150px;}
.y146{bottom:578.432400px;}
.yd9{bottom:578.434650px;}
.yfa{bottom:578.438400px;}
.y6d{bottom:578.439150px;}
.y16{bottom:598.634580px;}
.ye{bottom:598.659570px;}
.y87{bottom:598.677150px;}
.y37{bottom:598.678650px;}
.y12f{bottom:598.679400px;}
.y145{bottom:598.681650px;}
.yd8{bottom:598.683900px;}
.yf9{bottom:598.687650px;}
.y6c{bottom:598.688400px;}
.y189{bottom:609.871500px;}
.y15{bottom:618.888975px;}
.yd{bottom:618.913965px;}
.ya6{bottom:618.927150px;}
.y36{bottom:618.927900px;}
.y12e{bottom:618.928650px;}
.y144{bottom:618.930900px;}
.yd7{bottom:618.933150px;}
.yf8{bottom:618.936900px;}
.y6b{bottom:618.937650px;}
.y188{bottom:624.125250px;}
.y187{bottom:638.379000px;}
.y14{bottom:639.143370px;}
.yc{bottom:639.168360px;}
.y35{bottom:639.177150px;}
.y12d{bottom:639.177900px;}
.y33{bottom:639.180150px;}
.yd6{bottom:639.182400px;}
.yf7{bottom:639.186150px;}
.y55{bottom:639.186900px;}
.y34{bottom:643.922400px;}
.y186{bottom:656.865450px;}
.y19c{bottom:656.872950px;}
.y13{bottom:659.397765px;}
.yb{bottom:659.422755px;}
.y12c{bottom:659.427150px;}
.ya5{bottom:659.428650px;}
.y32{bottom:659.429400px;}
.yd5{bottom:659.431650px;}
.yf6{bottom:659.435400px;}
.y54{bottom:659.436150px;}
.y12b{bottom:664.172400px;}
.y185{bottom:671.119200px;}
.y19b{bottom:671.126700px;}
.y12{bottom:679.652160px;}
.ya{bottom:679.677150px;}
.ya4{bottom:679.677900px;}
.y31{bottom:679.678650px;}
.yd4{bottom:679.680900px;}
.yf5{bottom:679.684650px;}
.y53{bottom:679.685400px;}
.y184{bottom:685.372950px;}
.y199{bottom:689.629200px;}
.y19a{bottom:689.632950px;}
.ya3{bottom:699.927150px;}
.y30{bottom:699.927900px;}
.yd3{bottom:699.930150px;}
.y86{bottom:699.930900px;}
.y117{bottom:699.931650px;}
.yf4{bottom:699.933900px;}
.y52{bottom:699.934650px;}
.y197{bottom:703.871100px;}
.y183{bottom:703.879200px;}
.y198{bottom:703.882950px;}
.ya2{bottom:704.672400px;}
.y196{bottom:718.124850px;}
.y182{bottom:718.132950px;}
.y5{bottom:720.177150px;}
.yd2{bottom:720.179400px;}
.y85{bottom:720.180150px;}
.y116{bottom:720.180900px;}
.yf3{bottom:720.183150px;}
.y51{bottom:720.183900px;}
.y181{bottom:736.626900px;}
.y195{bottom:736.631100px;}
.yd1{bottom:740.428650px;}
.y84{bottom:740.429400px;}
.y115{bottom:740.430150px;}
.yf2{bottom:740.432400px;}
.y50{bottom:740.433150px;}
.y143{bottom:745.172400px;}
.y193{bottom:750.877350px;}
.y180{bottom:750.880650px;}
.y194{bottom:750.884850px;}
.y2f{bottom:760.677150px;}
.yd0{bottom:760.677900px;}
.y83{bottom:760.678650px;}
.y114{bottom:760.679400px;}
.yf1{bottom:760.681650px;}
.y6a{bottom:760.682400px;}
.y192{bottom:765.131100px;}
.y17e{bottom:769.368150px;}
.y17f{bottom:769.386900px;}
.y190{bottom:779.353800px;}
.y191{bottom:779.384850px;}
.ycf{bottom:780.927150px;}
.y82{bottom:780.927900px;}
.y113{bottom:780.928650px;}
.yf0{bottom:780.930900px;}
.y4f{bottom:780.931650px;}
.y17d{bottom:783.621900px;}
.y18f{bottom:793.607550px;}
.y17c{bottom:797.875650px;}
.y4{bottom:801.177150px;}
.y112{bottom:801.177900px;}
.yce{bottom:801.179400px;}
.yef{bottom:801.180150px;}
.y4e{bottom:801.180900px;}
.y18e{bottom:812.113800px;}
.y17b{bottom:812.129400px;}
.y111{bottom:821.427150px;}
.ycd{bottom:821.428650px;}
.yee{bottom:821.429400px;}
.y2d{bottom:821.430150px;}
.y2e{bottom:826.172400px;}
.y18d{bottom:826.367550px;}
.y17a{bottom:826.383150px;}
.y18c{bottom:840.621300px;}
.y179{bottom:840.636900px;}
.y3{bottom:841.677150px;}
.ycc{bottom:841.677900px;}
.yed{bottom:841.678650px;}
.y2c{bottom:841.679400px;}
.y18b{bottom:854.875050px;}
.y178{bottom:859.127550px;}
.ycb{bottom:861.927150px;}
.yec{bottom:861.927900px;}
.y2b{bottom:861.928650px;}
.y18a{bottom:869.128800px;}
.y177{bottom:873.381300px;}
.yeb{bottom:882.177150px;}
.y2a{bottom:882.177900px;}
.yea{bottom:886.922400px;}
.y176{bottom:887.635050px;}
.y175{bottom:901.888800px;}
.y2{bottom:902.427150px;}
.y81{bottom:907.172400px;}
.y29{bottom:954.674400px;}
.y1{bottom:954.717300px;}
.hb{height:26.152797px;}
.hf{height:30.107286px;}
.h13{height:32.625000px;}
.h12{height:35.415000px;}
.hc{height:36.831600px;}
.h14{height:37.776000px;}
.h7{height:39.871200px;}
.h11{height:40.545000px;}
.h15{height:41.085600px;}
.hd{height:42.026400px;}
.h2{height:42.166800px;}
.he{height:42.383040px;}
.h6{height:43.499064px;}
.h8{height:45.031980px;}
.h10{height:48.564000px;}
.ha{height:51.642000px;}
.h3{height:59.466000px;}
.h9{height:60.158280px;}
.h4{height:75.552000px;}
.h5{height:75.684000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x35{left:82.504500px;}
.x44{left:86.314950px;}
.x33{left:89.292113px;}
.x13{left:91.118100px;}
.x7{left:93.541110px;}
.x2{left:97.795200px;}
.x1a{left:105.470250px;}
.x46{left:108.637800px;}
.x2f{left:115.652250px;}
.x8{left:118.007100px;}
.xd{left:119.055150px;}
.x9{left:124.955400px;}
.x1c{left:141.388050px;}
.x36{left:147.633750px;}
.x1d{left:150.277200px;}
.x28{left:151.816800px;}
.xb{left:158.788650px;}
.x3f{left:161.508450px;}
.xc{left:163.233300px;}
.x1f{left:168.654150px;}
.x18{left:201.778200px;}
.x19{left:206.089350px;}
.x2a{left:224.930550px;}
.x2b{left:233.819700px;}
.x23{left:236.740350px;}
.x43{left:242.067150px;}
.x21{left:252.988800px;}
.x37{left:258.263400px;}
.x22{left:261.877950px;}
.x3e{left:267.747900px;}
.x29{left:271.717800px;}
.x34{left:277.508700px;}
.x1b{left:306.003600px;}
.x24{left:344.086050px;}
.x1e{left:347.963250px;}
.x4{left:359.292150px;}
.x3c{left:365.249400px;}
.x38{left:372.034650px;}
.x3a{left:400.988850px;}
.xe{left:405.733050px;}
.x14{left:409.573650px;}
.x42{left:412.923750px;}
.x3b{left:439.045200px;}
.x39{left:443.234700px;}
.x31{left:444.400350px;}
.x11{left:446.287200px;}
.x25{left:447.757650px;}
.x12{left:450.598350px;}
.x26{left:456.646800px;}
.x17{left:509.883150px;}
.xf{left:511.519950px;}
.x10{left:513.929850px;}
.x20{left:517.137300px;}
.x2c{left:539.187600px;}
.x3{left:541.962300px;}
.x2d{left:548.076900px;}
.x30{left:553.012650px;}
.x5{left:554.532300px;}
.x32{left:556.937100px;}
.x6{left:558.838950px;}
.x15{left:563.673300px;}
.x16{left:568.117800px;}
.x27{left:577.891650px;}
.x2e{left:581.043150px;}
.x3d{left:586.632450px;}
.x45{left:588.938100px;}
.x40{left:592.257300px;}
.x41{left:602.240700px;}
.xa{left:620.553150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.866667pt;}
.ls7{letter-spacing:-5.573333pt;}
.lse{letter-spacing:-1.580800pt;}
.ls5{letter-spacing:-0.912000pt;}
.lsa{letter-spacing:-0.680000pt;}
.ls6{letter-spacing:-0.552533pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls2{letter-spacing:-0.208000pt;}
.lsd{letter-spacing:-0.202667pt;}
.ls1{letter-spacing:-0.197333pt;}
.ls8{letter-spacing:-0.147693pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.520000pt;}
.ls4{letter-spacing:0.631467pt;}
.lsb{letter-spacing:1.360000pt;}
.ls3{letter-spacing:5.168000pt;}
.ws1{word-spacing:-14.997333pt;}
.ws0{word-spacing:-9.826133pt;}
.wsc1{word-spacing:-9.424000pt;}
.ws10b{word-spacing:-9.360000pt;}
.wsed{word-spacing:-8.520000pt;}
.ws2{word-spacing:-8.112000pt;}
.wsec{word-spacing:-8.000000pt;}
.ws10c{word-spacing:-7.904000pt;}
.ws6a{word-spacing:-7.893333pt;}
.ws69{word-spacing:-7.696000pt;}
.ws10a{word-spacing:-7.520000pt;}
.wsee{word-spacing:-7.320000pt;}
.wse4{word-spacing:-7.245333pt;}
.wse5{word-spacing:-6.941333pt;}
.wsd7{word-spacing:-5.760040pt;}
.wsfd{word-spacing:-4.120000pt;}
.ws20{word-spacing:-3.192000pt;}
.ws4f{word-spacing:-3.141333pt;}
.ws1a{word-spacing:-2.989333pt;}
.ws1b{word-spacing:-2.938667pt;}
.ws6c{word-spacing:-2.888000pt;}
.ws17{word-spacing:-2.837333pt;}
.ws5b{word-spacing:-2.786667pt;}
.ws73{word-spacing:-2.634667pt;}
.ws14{word-spacing:-2.584000pt;}
.ws23{word-spacing:-2.533333pt;}
.ws56{word-spacing:-2.432000pt;}
.ws4b{word-spacing:-2.330667pt;}
.wsb6{word-spacing:-2.229333pt;}
.wsb7{word-spacing:-2.128000pt;}
.wse9{word-spacing:-2.077333pt;}
.ws47{word-spacing:-2.026667pt;}
.ws2a{word-spacing:-1.925333pt;}
.ws15{word-spacing:-1.824000pt;}
.wse8{word-spacing:-1.773333pt;}
.ws90{word-spacing:-1.722667pt;}
.ws16{word-spacing:-1.672000pt;}
.wscd{word-spacing:-1.621333pt;}
.ws3f{word-spacing:-1.570667pt;}
.wsbb{word-spacing:-1.520000pt;}
.wsaa{word-spacing:-1.469333pt;}
.ws116{word-spacing:-1.400000pt;}
.ws66{word-spacing:-1.368000pt;}
.ws86{word-spacing:-1.341867pt;}
.ws24{word-spacing:-1.317333pt;}
.ws120{word-spacing:-1.280000pt;}
.ws3d{word-spacing:-1.216000pt;}
.wsc9{word-spacing:-1.165333pt;}
.wsea{word-spacing:-1.114667pt;}
.ws31{word-spacing:-1.064000pt;}
.wsd2{word-spacing:-1.013333pt;}
.ws5a{word-spacing:-0.962667pt;}
.wsf7{word-spacing:-0.960000pt;}
.wsf5{word-spacing:-0.880000pt;}
.ws87{word-spacing:-0.868267pt;}
.ws41{word-spacing:-0.861333pt;}
.ws43{word-spacing:-0.760000pt;}
.wsba{word-spacing:-0.709333pt;}
.ws58{word-spacing:-0.658667pt;}
.wsf9{word-spacing:-0.600000pt;}
.ws39{word-spacing:-0.557333pt;}
.wse3{word-spacing:-0.552533pt;}
.ws9a{word-spacing:-0.405333pt;}
.ws9{word-spacing:-0.399840pt;}
.wsb8{word-spacing:-0.304000pt;}
.ws29{word-spacing:-0.253333pt;}
.ws83{word-spacing:-0.236800pt;}
.ws3e{word-spacing:-0.202667pt;}
.ws9d{word-spacing:-0.197333pt;}
.ws40{word-spacing:-0.152000pt;}
.ws1d{word-spacing:-0.101333pt;}
.ws13{word-spacing:-0.050667pt;}
.ws3{word-spacing:0.000000pt;}
.ws33{word-spacing:0.039467pt;}
.ws63{word-spacing:0.050667pt;}
.wseb{word-spacing:0.101333pt;}
.wscc{word-spacing:0.147693pt;}
.wsc3{word-spacing:0.152000pt;}
.wse1{word-spacing:0.157867pt;}
.ws4{word-spacing:0.197333pt;}
.ws48{word-spacing:0.202667pt;}
.ws89{word-spacing:0.253333pt;}
.ws78{word-spacing:0.304000pt;}
.ws106{word-spacing:0.320000pt;}
.ws25{word-spacing:0.354667pt;}
.ws8d{word-spacing:0.405333pt;}
.ws82{word-spacing:0.434133pt;}
.wsa4{word-spacing:0.456000pt;}
.ws3c{word-spacing:0.506667pt;}
.ws81{word-spacing:0.513067pt;}
.ws5c{word-spacing:0.557333pt;}
.ws2c{word-spacing:0.608000pt;}
.wsfe{word-spacing:0.640000pt;}
.ws4e{word-spacing:0.658667pt;}
.ws8f{word-spacing:0.709333pt;}
.wsd3{word-spacing:0.710400pt;}
.wsf2{word-spacing:0.720000pt;}
.ws2f{word-spacing:0.760000pt;}
.ws37{word-spacing:0.810667pt;}
.ws94{word-spacing:0.861333pt;}
.ws6e{word-spacing:0.912000pt;}
.ws123{word-spacing:0.932267pt;}
.ws55{word-spacing:0.962667pt;}
.ws7f{word-spacing:0.986667pt;}
.ws108{word-spacing:1.000000pt;}
.ws3a{word-spacing:1.013333pt;}
.ws92{word-spacing:1.064000pt;}
.wsd5{word-spacing:1.065600pt;}
.wse2{word-spacing:1.105067pt;}
.ws30{word-spacing:1.114667pt;}
.ws34{word-spacing:1.144533pt;}
.ws51{word-spacing:1.165333pt;}
.ws18{word-spacing:1.216000pt;}
.ws21{word-spacing:1.266667pt;}
.ws75{word-spacing:1.317333pt;}
.ws112{word-spacing:1.360000pt;}
.ws91{word-spacing:1.368000pt;}
.ws8c{word-spacing:1.418667pt;}
.wse{word-spacing:1.466080pt;}
.ws1e{word-spacing:1.469333pt;}
.wsdf{word-spacing:1.520000pt;}
.ws122{word-spacing:1.540267pt;}
.ws42{word-spacing:1.570667pt;}
.ws80{word-spacing:1.618133pt;}
.ws6b{word-spacing:1.621333pt;}
.wsbe{word-spacing:1.672000pt;}
.wsa0{word-spacing:1.697067pt;}
.ws36{word-spacing:1.722667pt;}
.ws85{word-spacing:1.736533pt;}
.ws4c{word-spacing:1.773333pt;}
.ws104{word-spacing:1.800000pt;}
.ws74{word-spacing:1.824000pt;}
.wsd0{word-spacing:1.874667pt;}
.wsb9{word-spacing:1.925333pt;}
.ws7d{word-spacing:1.973333pt;}
.wscb{word-spacing:1.976000pt;}
.ws107{word-spacing:2.000000pt;}
.wsa{word-spacing:2.043627pt;}
.ws5{word-spacing:2.052267pt;}
.wsae{word-spacing:2.077333pt;}
.ws59{word-spacing:2.128000pt;}
.ws96{word-spacing:2.178667pt;}
.ws1f{word-spacing:2.229333pt;}
.ws6f{word-spacing:2.280000pt;}
.wsc8{word-spacing:2.330667pt;}
.wse6{word-spacing:2.381333pt;}
.ws8b{word-spacing:2.432000pt;}
.ws7e{word-spacing:2.446933pt;}
.wsf3{word-spacing:2.480000pt;}
.ws50{word-spacing:2.482667pt;}
.wsbf{word-spacing:2.533333pt;}
.ws105{word-spacing:2.600000pt;}
.wsdc{word-spacing:2.634667pt;}
.ws67{word-spacing:2.685333pt;}
.wsac{word-spacing:2.736000pt;}
.ws32{word-spacing:2.762667pt;}
.wsab{word-spacing:2.786667pt;}
.wsb1{word-spacing:2.837333pt;}
.ws121{word-spacing:2.877867pt;}
.wsd4{word-spacing:2.881067pt;}
.ws4a{word-spacing:2.888000pt;}
.ws70{word-spacing:2.938667pt;}
.ws5e{word-spacing:2.989333pt;}
.wsc0{word-spacing:3.040000pt;}
.ws7c{word-spacing:3.078400pt;}
.wsa6{word-spacing:3.090667pt;}
.ws84{word-spacing:3.117867pt;}
.ws8a{word-spacing:3.141333pt;}
.wse0{word-spacing:3.157333pt;}
.ws53{word-spacing:3.242667pt;}
.ws76{word-spacing:3.293333pt;}
.ws35{word-spacing:3.315200pt;}
.ws11d{word-spacing:3.320000pt;}
.ws79{word-spacing:3.344000pt;}
.ws57{word-spacing:3.394667pt;}
.ws9c{word-spacing:3.433600pt;}
.wsa1{word-spacing:3.445333pt;}
.ws10{word-spacing:3.465280pt;}
.wsdd{word-spacing:3.496000pt;}
.wsbc{word-spacing:3.546667pt;}
.ws22{word-spacing:3.648000pt;}
.wsfa{word-spacing:3.680000pt;}
.ws9b{word-spacing:3.698667pt;}
.wsa2{word-spacing:3.749333pt;}
.ws26{word-spacing:3.800000pt;}
.ws27{word-spacing:3.850667pt;}
.ws54{word-spacing:3.901333pt;}
.wsce{word-spacing:3.946667pt;}
.wsb3{word-spacing:4.002667pt;}
.wsda{word-spacing:4.053333pt;}
.wsdb{word-spacing:4.104000pt;}
.ws99{word-spacing:4.154667pt;}
.ws117{word-spacing:4.240000pt;}
.ws1c{word-spacing:4.256000pt;}
.wsaf{word-spacing:4.306667pt;}
.ws11{word-spacing:4.309387pt;}
.wsb2{word-spacing:4.357333pt;}
.wsd6{word-spacing:4.380800pt;}
.wsbd{word-spacing:4.408000pt;}
.ws4d{word-spacing:4.458667pt;}
.ws11b{word-spacing:4.480000pt;}
.ws124{word-spacing:4.499200pt;}
.ws8e{word-spacing:4.509333pt;}
.ws60{word-spacing:4.560000pt;}
.wsb{word-spacing:4.575947pt;}
.ws3b{word-spacing:4.661333pt;}
.ws28{word-spacing:4.712000pt;}
.wsa8{word-spacing:4.813333pt;}
.ws97{word-spacing:4.864000pt;}
.ws77{word-spacing:4.914667pt;}
.wsef{word-spacing:4.965333pt;}
.ws7b{word-spacing:4.972800pt;}
.ws5d{word-spacing:5.016000pt;}
.wscf{word-spacing:5.066667pt;}
.ws6d{word-spacing:5.117333pt;}
.wsfb{word-spacing:5.120000pt;}
.ws19{word-spacing:5.168000pt;}
.ws5f{word-spacing:5.269333pt;}
.ws52{word-spacing:5.320000pt;}
.ws9e{word-spacing:5.328000pt;}
.wse7{word-spacing:5.421333pt;}
.wsca{word-spacing:5.472000pt;}
.ws118{word-spacing:5.520000pt;}
.ws46{word-spacing:5.522667pt;}
.ws49{word-spacing:5.573333pt;}
.wsb0{word-spacing:5.624000pt;}
.ws110{word-spacing:5.640000pt;}
.ws44{word-spacing:5.674667pt;}
.ws9f{word-spacing:5.683200pt;}
.ws45{word-spacing:5.776000pt;}
.ws11c{word-spacing:5.800000pt;}
.ws2b{word-spacing:5.826667pt;}
.wsc4{word-spacing:5.877333pt;}
.wsb5{word-spacing:5.978667pt;}
.ws93{word-spacing:6.080000pt;}
.ws119{word-spacing:6.120000pt;}
.ws95{word-spacing:6.130667pt;}
.wsd1{word-spacing:6.232000pt;}
.ws65{word-spacing:6.282667pt;}
.wsa7{word-spacing:6.384000pt;}
.ws61{word-spacing:6.434667pt;}
.ws71{word-spacing:6.536000pt;}
.ws103{word-spacing:6.560000pt;}
.ws7a{word-spacing:6.688000pt;}
.ws11a{word-spacing:6.760000pt;}
.wsc5{word-spacing:6.840000pt;}
.ws12{word-spacing:6.974987pt;}
.wsd9{word-spacing:6.992000pt;}
.wsd8{word-spacing:7.093333pt;}
.ws100{word-spacing:7.120000pt;}
.ws2d{word-spacing:7.144000pt;}
.wsc6{word-spacing:7.194667pt;}
.wsd{word-spacing:7.197120pt;}
.ws38{word-spacing:7.346667pt;}
.wsa5{word-spacing:7.397333pt;}
.wsf4{word-spacing:7.400000pt;}
.ws2e{word-spacing:7.448000pt;}
.ws102{word-spacing:7.520000pt;}
.ws98{word-spacing:7.549333pt;}
.ws10e{word-spacing:7.600000pt;}
.wsde{word-spacing:7.853333pt;}
.wsb4{word-spacing:7.904000pt;}
.ws62{word-spacing:7.954667pt;}
.ws10d{word-spacing:8.000000pt;}
.ws68{word-spacing:8.005333pt;}
.wsa3{word-spacing:8.056000pt;}
.ws113{word-spacing:8.120000pt;}
.ws64{word-spacing:8.258667pt;}
.wsc2{word-spacing:8.309333pt;}
.ws72{word-spacing:8.461333pt;}
.wsa9{word-spacing:8.512000pt;}
.wsad{word-spacing:8.562667pt;}
.wsf8{word-spacing:8.640000pt;}
.wsf{word-spacing:8.663200pt;}
.wsc7{word-spacing:8.765333pt;}
.wsf1{word-spacing:8.920000pt;}
.wsff{word-spacing:9.320000pt;}
.ws8{word-spacing:9.329600pt;}
.wsc{word-spacing:9.551733pt;}
.ws115{word-spacing:9.840000pt;}
.wsf6{word-spacing:10.400000pt;}
.ws88{word-spacing:10.488000pt;}
.ws11f{word-spacing:10.520000pt;}
.ws111{word-spacing:11.320000pt;}
.ws109{word-spacing:11.840000pt;}
.ws10f{word-spacing:11.920000pt;}
.ws101{word-spacing:12.960000pt;}
.ws7{word-spacing:13.683413pt;}
.wsfc{word-spacing:14.640000pt;}
.ws6{word-spacing:16.704427pt;}
.wsf0{word-spacing:17.040000pt;}
.ws11e{word-spacing:25.320000pt;}
.ws114{word-spacing:27.320000pt;}
._15{margin-left:-35.318400pt;}
._f{margin-left:-17.539200pt;}
._13{margin-left:-15.285867pt;}
._14{margin-left:-13.117333pt;}
._17{margin-left:-12.078933pt;}
._9{margin-left:-6.536000pt;}
._6{margin-left:-5.573333pt;}
._7{margin-left:-4.022400pt;}
._5{margin-left:-2.326400pt;}
._3{margin-left:-1.048533pt;}
._1{width:1.226133pt;}
._2{width:2.235200pt;}
._4{width:3.252075pt;}
._8{width:4.664000pt;}
._10{width:5.573333pt;}
._16{width:20.640000pt;}
._11{width:24.074392pt;}
._12{width:28.015681pt;}
._d{width:44.163475pt;}
._a{width:45.544490pt;}
._e{width:46.689342pt;}
._b{width:49.096808pt;}
._c{width:1075.984000pt;}
._0{width:1822.941333pt;}
.fs9{font-size:29.538667pt;}
.fs5{font-size:39.466667pt;}
.fsb{font-size:40.000000pt;}
.fsd{font-size:40.533333pt;}
.fs0{font-size:41.600000pt;}
.fsa{font-size:41.813333pt;}
.fsc{font-size:42.666667pt;}
.fs6{font-size:44.426667pt;}
.fs4{font-size:49.130667pt;}
.fs8{font-size:50.666667pt;}
.fs1{font-size:58.666667pt;}
.fs7{font-size:67.946667pt;}
.fs3{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:52.291067pt;}
.y9{bottom:100.157600pt;}
.y142{bottom:100.160667pt;}
.y8{bottom:100.161867pt;}
.y4d{bottom:100.164000pt;}
.yb8{bottom:100.166133pt;}
.y12a{bottom:100.167067pt;}
.y69{bottom:100.174800pt;}
.yc1{bottom:100.183467pt;}
.ye9{bottom:112.157600pt;}
.y7{bottom:112.159733pt;}
.y4c{bottom:112.161867pt;}
.yb7{bottom:112.164000pt;}
.y68{bottom:118.174133pt;}
.yc0{bottom:118.182800pt;}
.y141{bottom:119.055333pt;}
.y129{bottom:119.061733pt;}
.y6{bottom:124.157600pt;}
.y4b{bottom:124.159733pt;}
.yb6{bottom:124.161867pt;}
.y128{bottom:131.059600pt;}
.y4a{bottom:136.157600pt;}
.yb5{bottom:136.159733pt;}
.y67{bottom:136.173467pt;}
.ybf{bottom:136.182133pt;}
.y15d{bottom:136.805067pt;}
.y127{bottom:143.057467pt;}
.yb4{bottom:148.157600pt;}
.y174{bottom:149.471733pt;}
.y15c{bottom:149.475067pt;}
.ye8{bottom:154.160133pt;}
.y140{bottom:154.160800pt;}
.y66{bottom:154.172800pt;}
.ybe{bottom:154.181467pt;}
.y49{bottom:155.055333pt;}
.y126{bottom:155.058533pt;}
.y172{bottom:162.138400pt;}
.y173{bottom:162.141733pt;}
.y15b{bottom:165.917867pt;}
.y48{bottom:167.055333pt;}
.y110{bottom:167.058533pt;}
.y27{bottom:172.157467pt;}
.y26{bottom:172.159467pt;}
.y80{bottom:172.160133pt;}
.y65{bottom:172.172133pt;}
.ybd{bottom:172.180800pt;}
.y125{bottom:173.953200pt;}
.y170{bottom:174.801200pt;}
.y171{bottom:174.808400pt;}
.y15a{bottom:178.587867pt;}
.y10f{bottom:185.953200pt;}
.y10e{bottom:185.955333pt;}
.y124{bottom:185.956267pt;}
.ya1{bottom:185.966000pt;}
.y25{bottom:190.158800pt;}
.y7f{bottom:190.159467pt;}
.yb3{bottom:190.170133pt;}
.y64{bottom:190.171467pt;}
.ybc{bottom:190.180133pt;}
.y16f{bottom:191.251200pt;}
.y159{bottom:191.254533pt;}
.y10d{bottom:197.953200pt;}
.ya0{bottom:197.963867pt;}
.y157{bottom:203.910800pt;}
.y158{bottom:203.921200pt;}
.y123{bottom:204.850933pt;}
.y1a4{bottom:206.703600pt;}
.y24{bottom:208.158133pt;}
.y7e{bottom:208.158800pt;}
.y47{bottom:208.161467pt;}
.yca{bottom:208.163467pt;}
.yb2{bottom:208.169467pt;}
.y63{bottom:208.170800pt;}
.ybb{bottom:208.179467pt;}
.y10c{bottom:209.953200pt;}
.y9f{bottom:209.961733pt;}
.y156{bottom:220.360800pt;}
.y16e{bottom:220.364133pt;}
.y1a3{bottom:220.566000pt;}
.y9e{bottom:221.959600pt;}
.y122{bottom:223.748667pt;}
.y23{bottom:226.157467pt;}
.y7d{bottom:226.158133pt;}
.y46{bottom:226.160800pt;}
.y21{bottom:226.162133pt;}
.yc9{bottom:226.162800pt;}
.ye7{bottom:226.163467pt;}
.y62{bottom:226.170133pt;}
.yba{bottom:226.178800pt;}
.y22{bottom:230.375467pt;}
.y16c{bottom:233.030267pt;}
.y155{bottom:233.030800pt;}
.y16d{bottom:233.034133pt;}
.y9d{bottom:233.957467pt;}
.y1a2{bottom:234.428400pt;}
.y7c{bottom:244.157467pt;}
.y45{bottom:244.160133pt;}
.y10a{bottom:244.160800pt;}
.y20{bottom:244.161467pt;}
.yc8{bottom:244.162133pt;}
.ye6{bottom:244.162800pt;}
.yb1{bottom:244.168133pt;}
.y61{bottom:244.169467pt;}
.yb9{bottom:244.178133pt;}
.y154{bottom:245.700800pt;}
.y9c{bottom:245.955333pt;}
.y1a1{bottom:248.290800pt;}
.y1a0{bottom:248.295067pt;}
.y10b{bottom:248.375467pt;}
.y16a{bottom:249.476933pt;}
.y16b{bottom:249.480267pt;}
.y9b{bottom:257.953200pt;}
.y153{bottom:262.140267pt;}
.y168{bottom:262.143600pt;}
.y169{bottom:262.146933pt;}
.y121{bottom:262.157467pt;}
.y120{bottom:262.158133pt;}
.y44{bottom:262.159467pt;}
.y109{bottom:262.160133pt;}
.y1f{bottom:262.160800pt;}
.yc7{bottom:262.161467pt;}
.ye5{bottom:262.162133pt;}
.y13e{bottom:262.165467pt;}
.yb0{bottom:262.167467pt;}
.y60{bottom:262.168800pt;}
.y7b{bottom:262.177467pt;}
.y13f{bottom:266.375467pt;}
.y152{bottom:274.810267pt;}
.y167{bottom:274.813600pt;}
.y9a{bottom:276.859467pt;}
.y11f{bottom:280.157467pt;}
.y43{bottom:280.158800pt;}
.y108{bottom:280.159467pt;}
.y1e{bottom:280.160133pt;}
.yc6{bottom:280.160800pt;}
.ye4{bottom:280.161467pt;}
.y13d{bottom:280.164800pt;}
.yaf{bottom:280.166800pt;}
.y5f{bottom:280.168133pt;}
.y7a{bottom:280.176800pt;}
.y19f{bottom:281.090800pt;}
.y151{bottom:287.480267pt;}
.y99{bottom:288.857333pt;}
.y166{bottom:291.243200pt;}
.y11e{bottom:298.157467pt;}
.y42{bottom:298.158133pt;}
.y107{bottom:298.158800pt;}
.y1d{bottom:298.159467pt;}
.yc5{bottom:298.160133pt;}
.ye3{bottom:298.160800pt;}
.y13c{bottom:298.164133pt;}
.yae{bottom:298.166133pt;}
.y5e{bottom:298.167467pt;}
.y79{bottom:298.176133pt;}
.y98{bottom:300.855200pt;}
.y165{bottom:303.913200pt;}
.y150{bottom:303.923200pt;}
.y97{bottom:312.853067pt;}
.y41{bottom:316.157467pt;}
.y106{bottom:316.158133pt;}
.y1c{bottom:316.158800pt;}
.yc4{bottom:316.159467pt;}
.ye2{bottom:316.160133pt;}
.y13b{bottom:316.163467pt;}
.yad{bottom:316.165467pt;}
.y5d{bottom:316.166800pt;}
.y78{bottom:316.175467pt;}
.y164{bottom:316.583200pt;}
.y14f{bottom:316.593200pt;}
.y96{bottom:324.850933pt;}
.y163{bottom:329.253200pt;}
.y14e{bottom:333.022667pt;}
.y105{bottom:334.157467pt;}
.y1b{bottom:334.158133pt;}
.yc3{bottom:334.158800pt;}
.ye1{bottom:334.159467pt;}
.y13a{bottom:334.162800pt;}
.yac{bottom:334.164800pt;}
.y5c{bottom:334.166133pt;}
.y77{bottom:334.174800pt;}
.y162{bottom:341.923200pt;}
.y14d{bottom:345.692667pt;}
.y1a{bottom:352.157467pt;}
.yc2{bottom:352.158133pt;}
.ye0{bottom:352.158800pt;}
.y40{bottom:352.160133pt;}
.y11d{bottom:352.161467pt;}
.y139{bottom:352.162133pt;}
.yab{bottom:352.164133pt;}
.y5b{bottom:352.165467pt;}
.y103{bottom:352.173467pt;}
.y76{bottom:352.174133pt;}
.y161{bottom:354.593200pt;}
.y104{bottom:356.375467pt;}
.y14c{bottom:358.362667pt;}
.y95{bottom:370.157467pt;}
.y93{bottom:370.158133pt;}
.y3f{bottom:370.159467pt;}
.y11c{bottom:370.160800pt;}
.y138{bottom:370.161467pt;}
.yaa{bottom:370.163467pt;}
.y5a{bottom:370.164800pt;}
.y102{bottom:370.172800pt;}
.y75{bottom:370.173467pt;}
.y160{bottom:371.025067pt;}
.y14b{bottom:371.032667pt;}
.y94{bottom:374.375467pt;}
.y15f{bottom:383.695067pt;}
.y14a{bottom:383.702667pt;}
.y19{bottom:388.157467pt;}
.y3e{bottom:388.158800pt;}
.y91{bottom:388.160133pt;}
.y137{bottom:388.160800pt;}
.ya9{bottom:388.162800pt;}
.y59{bottom:388.164133pt;}
.y101{bottom:388.172133pt;}
.y74{bottom:388.172800pt;}
.y92{bottom:392.375467pt;}
.y15e{bottom:396.365067pt;}
.y149{bottom:396.372667pt;}
.y19e{bottom:406.157467pt;}
.y3d{bottom:406.158133pt;}
.y90{bottom:406.159467pt;}
.y136{bottom:406.160133pt;}
.ya8{bottom:406.162133pt;}
.y58{bottom:406.163467pt;}
.ydf{bottom:406.168133pt;}
.y100{bottom:406.171467pt;}
.y73{bottom:406.172133pt;}
.y3c{bottom:424.157467pt;}
.y8f{bottom:424.158800pt;}
.y135{bottom:424.159467pt;}
.ya7{bottom:424.161467pt;}
.y57{bottom:424.162800pt;}
.yde{bottom:424.167467pt;}
.yff{bottom:424.170800pt;}
.y72{bottom:424.171467pt;}
.y8e{bottom:442.158133pt;}
.y134{bottom:442.158800pt;}
.y56{bottom:442.162133pt;}
.ydd{bottom:442.166800pt;}
.yfe{bottom:442.170133pt;}
.y71{bottom:442.170800pt;}
.y19d{bottom:443.096843pt;}
.y8d{bottom:460.157467pt;}
.y133{bottom:460.158133pt;}
.y11b{bottom:460.159467pt;}
.y8b{bottom:460.160133pt;}
.y3b{bottom:460.161467pt;}
.ydc{bottom:460.166133pt;}
.yfd{bottom:460.169467pt;}
.y70{bottom:460.170133pt;}
.y8c{bottom:464.375467pt;}
.y11{bottom:478.130120pt;}
.y132{bottom:478.157467pt;}
.y11a{bottom:478.158800pt;}
.y8a{bottom:478.159467pt;}
.y3a{bottom:478.160800pt;}
.y148{bottom:478.163467pt;}
.ydb{bottom:478.165467pt;}
.yfc{bottom:478.168800pt;}
.y6f{bottom:478.169467pt;}
.y18{bottom:496.111813pt;}
.y10{bottom:496.134027pt;}
.y119{bottom:496.158133pt;}
.y89{bottom:496.158800pt;}
.y39{bottom:496.160133pt;}
.y131{bottom:496.160800pt;}
.y147{bottom:496.162800pt;}
.yda{bottom:496.164800pt;}
.yfb{bottom:496.168133pt;}
.y6e{bottom:496.168800pt;}
.y17{bottom:514.115720pt;}
.yf{bottom:514.137933pt;}
.y118{bottom:514.157467pt;}
.y88{bottom:514.158133pt;}
.y38{bottom:514.159467pt;}
.y130{bottom:514.160133pt;}
.y146{bottom:514.162133pt;}
.yd9{bottom:514.164133pt;}
.yfa{bottom:514.167467pt;}
.y6d{bottom:514.168133pt;}
.y16{bottom:532.119627pt;}
.ye{bottom:532.141840pt;}
.y87{bottom:532.157467pt;}
.y37{bottom:532.158800pt;}
.y12f{bottom:532.159467pt;}
.y145{bottom:532.161467pt;}
.yd8{bottom:532.163467pt;}
.yf9{bottom:532.166800pt;}
.y6c{bottom:532.167467pt;}
.y189{bottom:542.108000pt;}
.y15{bottom:550.123533pt;}
.yd{bottom:550.145747pt;}
.ya6{bottom:550.157467pt;}
.y36{bottom:550.158133pt;}
.y12e{bottom:550.158800pt;}
.y144{bottom:550.160800pt;}
.yd7{bottom:550.162800pt;}
.yf8{bottom:550.166133pt;}
.y6b{bottom:550.166800pt;}
.y188{bottom:554.778000pt;}
.y187{bottom:567.448000pt;}
.y14{bottom:568.127440pt;}
.yc{bottom:568.149653pt;}
.y35{bottom:568.157467pt;}
.y12d{bottom:568.158133pt;}
.y33{bottom:568.160133pt;}
.yd6{bottom:568.162133pt;}
.yf7{bottom:568.165467pt;}
.y55{bottom:568.166133pt;}
.y34{bottom:572.375467pt;}
.y186{bottom:583.880400pt;}
.y19c{bottom:583.887067pt;}
.y13{bottom:586.131347pt;}
.yb{bottom:586.153560pt;}
.y12c{bottom:586.157467pt;}
.ya5{bottom:586.158800pt;}
.y32{bottom:586.159467pt;}
.yd5{bottom:586.161467pt;}
.yf6{bottom:586.164800pt;}
.y54{bottom:586.165467pt;}
.y12b{bottom:590.375467pt;}
.y185{bottom:596.550400pt;}
.y19b{bottom:596.557067pt;}
.y12{bottom:604.135253pt;}
.ya{bottom:604.157467pt;}
.ya4{bottom:604.158133pt;}
.y31{bottom:604.158800pt;}
.yd4{bottom:604.160800pt;}
.yf5{bottom:604.164133pt;}
.y53{bottom:604.164800pt;}
.y184{bottom:609.220400pt;}
.y199{bottom:613.003733pt;}
.y19a{bottom:613.007067pt;}
.ya3{bottom:622.157467pt;}
.y30{bottom:622.158133pt;}
.yd3{bottom:622.160133pt;}
.y86{bottom:622.160800pt;}
.y117{bottom:622.161467pt;}
.yf4{bottom:622.163467pt;}
.y52{bottom:622.164133pt;}
.y197{bottom:625.663200pt;}
.y183{bottom:625.670400pt;}
.y198{bottom:625.673733pt;}
.ya2{bottom:626.375467pt;}
.y196{bottom:638.333200pt;}
.y182{bottom:638.340400pt;}
.y5{bottom:640.157467pt;}
.yd2{bottom:640.159467pt;}
.y85{bottom:640.160133pt;}
.y116{bottom:640.160800pt;}
.yf3{bottom:640.162800pt;}
.y51{bottom:640.163467pt;}
.y181{bottom:654.779467pt;}
.y195{bottom:654.783200pt;}
.yd1{bottom:658.158800pt;}
.y84{bottom:658.159467pt;}
.y115{bottom:658.160133pt;}
.yf2{bottom:658.162133pt;}
.y50{bottom:658.162800pt;}
.y143{bottom:662.375467pt;}
.y193{bottom:667.446533pt;}
.y180{bottom:667.449467pt;}
.y194{bottom:667.453200pt;}
.y2f{bottom:676.157467pt;}
.yd0{bottom:676.158133pt;}
.y83{bottom:676.158800pt;}
.y114{bottom:676.159467pt;}
.yf1{bottom:676.161467pt;}
.y6a{bottom:676.162133pt;}
.y192{bottom:680.116533pt;}
.y17e{bottom:683.882800pt;}
.y17f{bottom:683.899467pt;}
.y190{bottom:692.758933pt;}
.y191{bottom:692.786533pt;}
.ycf{bottom:694.157467pt;}
.y82{bottom:694.158133pt;}
.y113{bottom:694.158800pt;}
.yf0{bottom:694.160800pt;}
.y4f{bottom:694.161467pt;}
.y17d{bottom:696.552800pt;}
.y18f{bottom:705.428933pt;}
.y17c{bottom:709.222800pt;}
.y4{bottom:712.157467pt;}
.y112{bottom:712.158133pt;}
.yce{bottom:712.159467pt;}
.yef{bottom:712.160133pt;}
.y4e{bottom:712.160800pt;}
.y18e{bottom:721.878933pt;}
.y17b{bottom:721.892800pt;}
.y111{bottom:730.157467pt;}
.ycd{bottom:730.158800pt;}
.yee{bottom:730.159467pt;}
.y2d{bottom:730.160133pt;}
.y2e{bottom:734.375467pt;}
.y18d{bottom:734.548933pt;}
.y17a{bottom:734.562800pt;}
.y18c{bottom:747.218933pt;}
.y179{bottom:747.232800pt;}
.y3{bottom:748.157467pt;}
.ycc{bottom:748.158133pt;}
.yed{bottom:748.158800pt;}
.y2c{bottom:748.159467pt;}
.y18b{bottom:759.888933pt;}
.y178{bottom:763.668933pt;}
.ycb{bottom:766.157467pt;}
.yec{bottom:766.158133pt;}
.y2b{bottom:766.158800pt;}
.y18a{bottom:772.558933pt;}
.y177{bottom:776.338933pt;}
.yeb{bottom:784.157467pt;}
.y2a{bottom:784.158133pt;}
.yea{bottom:788.375467pt;}
.y176{bottom:789.008933pt;}
.y175{bottom:801.678933pt;}
.y2{bottom:802.157467pt;}
.y81{bottom:806.375467pt;}
.y29{bottom:848.599467pt;}
.y1{bottom:848.637600pt;}
.hb{height:23.246931pt;}
.hf{height:26.762032pt;}
.h13{height:29.000000pt;}
.h12{height:31.480000pt;}
.hc{height:32.739200pt;}
.h14{height:33.578667pt;}
.h7{height:35.441067pt;}
.h11{height:36.040000pt;}
.h15{height:36.520533pt;}
.hd{height:37.356800pt;}
.h2{height:37.481600pt;}
.he{height:37.673813pt;}
.h6{height:38.665835pt;}
.h8{height:40.028427pt;}
.h10{height:43.168000pt;}
.ha{height:45.904000pt;}
.h3{height:52.858667pt;}
.h9{height:53.474027pt;}
.h4{height:67.157333pt;}
.h5{height:67.274667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x35{left:73.337333pt;}
.x44{left:76.724400pt;}
.x33{left:79.370767pt;}
.x13{left:80.993867pt;}
.x7{left:83.147653pt;}
.x2{left:86.929067pt;}
.x1a{left:93.751333pt;}
.x46{left:96.566933pt;}
.x2f{left:102.802000pt;}
.x8{left:104.895200pt;}
.xd{left:105.826800pt;}
.x9{left:111.071467pt;}
.x1c{left:125.678267pt;}
.x36{left:131.230000pt;}
.x1d{left:133.579733pt;}
.x28{left:134.948267pt;}
.xb{left:141.145467pt;}
.x3f{left:143.563067pt;}
.xc{left:145.096267pt;}
.x1f{left:149.914800pt;}
.x18{left:179.358400pt;}
.x19{left:183.190533pt;}
.x2a{left:199.938267pt;}
.x2b{left:207.839733pt;}
.x23{left:210.435867pt;}
.x43{left:215.170800pt;}
.x21{left:224.878933pt;}
.x37{left:229.567467pt;}
.x22{left:232.780400pt;}
.x3e{left:237.998133pt;}
.x29{left:241.526933pt;}
.x34{left:246.674400pt;}
.x1b{left:272.003200pt;}
.x24{left:305.854267pt;}
.x1e{left:309.300667pt;}
.x4{left:319.370800pt;}
.x3c{left:324.666133pt;}
.x38{left:330.697467pt;}
.x3a{left:356.434533pt;}
.xe{left:360.651600pt;}
.x14{left:364.065467pt;}
.x42{left:367.043333pt;}
.x3b{left:390.262400pt;}
.x39{left:393.986400pt;}
.x31{left:395.022533pt;}
.x11{left:396.699733pt;}
.x25{left:398.006800pt;}
.x12{left:400.531867pt;}
.x26{left:405.908267pt;}
.x17{left:453.229467pt;}
.xf{left:454.684400pt;}
.x10{left:456.826533pt;}
.x20{left:459.677600pt;}
.x2c{left:479.277867pt;}
.x3{left:481.744267pt;}
.x2d{left:487.179467pt;}
.x30{left:491.566800pt;}
.x5{left:492.917600pt;}
.x32{left:495.055200pt;}
.x6{left:496.745733pt;}
.x15{left:501.042933pt;}
.x16{left:504.993600pt;}
.x27{left:513.681467pt;}
.x2e{left:516.482800pt;}
.x3d{left:521.451067pt;}
.x45{left:523.500533pt;}
.x40{left:526.450933pt;}
.x41{left:535.325067pt;}
.xa{left:551.602800pt;}
}




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