
    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_5615fd0a83fdd5a4056f07fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.040000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_0de8486c110383fa0edff4cb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.012000;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_06f83ef154725a01a5f527d5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.951000;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_1a386847fe01c356b92a3cdf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.049000;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_83700eecd9a3a849fd24d167.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.081000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9acbd911275e97b73eb1bffa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.272000;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_602060248fb585ea3f58affa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.829000;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_b3d4be6f9099e6b5d03280df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.948000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_6ddceb4444274297ff163b8f.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_f50375dafe647ba5c025c0c1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.689941;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:ffb;src:url('chunks/assets/font_cefea106a08ba9d065bb3b48.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.920000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_386ea9c30d345718d9941fc9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.866000;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:ffd;src:url('chunks/assets/font_510db8fd2327ef3fee9a472f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.046000;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.230000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.230000,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.235000,0.000000,0.000000,0.250000,0,0);}
.m7{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);}
.md{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);}
.m8{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.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);}
.m0{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245002,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m5{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);}
.mc{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);}
.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);}
.v2{vertical-align:-18.781200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.733200px;}
.v3{vertical-align:25.186800px;}
.lsc{letter-spacing:-1.620000px;}
.ls7{letter-spacing:-1.428000px;}
.lsb{letter-spacing:-1.410000px;}
.lsa{letter-spacing:-1.350000px;}
.ls3{letter-spacing:-0.258000px;}
.ls16{letter-spacing:-0.252000px;}
.ls1{letter-spacing:-0.222000px;}
.ls4{letter-spacing:-0.168000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.222000px;}
.ls11{letter-spacing:1.517160px;}
.ls12{letter-spacing:1.522800px;}
.lsf{letter-spacing:2.989200px;}
.ls9{letter-spacing:4.568400px;}
.lse{letter-spacing:4.906800px;}
.ls10{letter-spacing:5.724000px;}
.ls8{letter-spacing:6.966000px;}
.lsd{letter-spacing:7.275600px;}
.ls15{letter-spacing:40.913196px;}
.ls5{letter-spacing:63.424330px;}
.ls14{letter-spacing:63.424948px;}
.ls0{letter-spacing:2109.282857px;}
.ls13{letter-spacing:2155.880000px;}
.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;}
}
.wsfc{word-spacing:-56.400000px;}
.ws18{word-spacing:-16.694400px;}
.ws56{word-spacing:-14.100000px;}
.ws52{word-spacing:-13.500000px;}
.ws99{word-spacing:-13.320000px;}
.ws54{word-spacing:-12.690000px;}
.ws14a{word-spacing:-12.600000px;}
.ws53{word-spacing:-12.150000px;}
.ws1{word-spacing:-12.000000px;}
.ws55{word-spacing:-11.880000px;}
.ws149{word-spacing:-11.250000px;}
.ws19{word-spacing:-10.500000px;}
.ws1a{word-spacing:-10.332000px;}
.ws9a{word-spacing:-10.080000px;}
.ws39{word-spacing:-9.732835px;}
.ws1b{word-spacing:-9.072000px;}
.wse0{word-spacing:-8.880000px;}
.ws0{word-spacing:-8.658000px;}
.ws3{word-spacing:-8.400000px;}
.ws1c{word-spacing:-8.232000px;}
.ws120{word-spacing:-8.220300px;}
.wsc7{word-spacing:-7.106400px;}
.wsf7{word-spacing:-6.598800px;}
.ws2{word-spacing:-6.576240px;}
.wsef{word-spacing:-5.752800px;}
.wsd3{word-spacing:-5.640000px;}
.ws124{word-spacing:-4.794000px;}
.wscf{word-spacing:-4.455600px;}
.ws115{word-spacing:-4.342800px;}
.ws10{word-spacing:-4.286400px;}
.ws13d{word-spacing:-3.722400px;}
.ws13f{word-spacing:-3.666000px;}
.ws4a{word-spacing:-3.214800px;}
.ws58{word-spacing:-3.186000px;}
.ws27{word-spacing:-3.158400px;}
.ws2f{word-spacing:-3.102000px;}
.wse{word-spacing:-3.045600px;}
.ws23{word-spacing:-2.932800px;}
.ws60{word-spacing:-2.876400px;}
.ws144{word-spacing:-2.820000px;}
.ws7f{word-spacing:-2.763600px;}
.ws6d{word-spacing:-2.707200px;}
.wsb8{word-spacing:-2.610000px;}
.ws6e{word-spacing:-2.594400px;}
.ws77{word-spacing:-2.538000px;}
.ws91{word-spacing:-2.481600px;}
.ws102{word-spacing:-2.322000px;}
.ws2e{word-spacing:-2.312400px;}
.ws26{word-spacing:-2.256000px;}
.ws5a{word-spacing:-2.214000px;}
.wsf9{word-spacing:-2.160000px;}
.ws72{word-spacing:-2.143200px;}
.wsfa{word-spacing:-2.106000px;}
.wsce{word-spacing:-2.086800px;}
.ws8b{word-spacing:-1.974000px;}
.ws64{word-spacing:-1.861200px;}
.ws42{word-spacing:-1.804800px;}
.ws8e{word-spacing:-1.692000px;}
.ws8f{word-spacing:-1.635600px;}
.ws92{word-spacing:-1.410000px;}
.ws46{word-spacing:-1.297200px;}
.ws45{word-spacing:-1.240800px;}
.ws4c{word-spacing:-1.184400px;}
.wsb{word-spacing:-1.135200px;}
.ws6f{word-spacing:-1.128000px;}
.ws3e{word-spacing:-1.071600px;}
.ws6a{word-spacing:-1.015200px;}
.ws5f{word-spacing:-0.958800px;}
.ws24{word-spacing:-0.902400px;}
.wsb3{word-spacing:-0.900000px;}
.wsb2{word-spacing:-0.855000px;}
.ws5c{word-spacing:-0.846000px;}
.ws4b{word-spacing:-0.733200px;}
.ws158{word-spacing:-0.705600px;}
.ws11{word-spacing:-0.676800px;}
.ws15a{word-spacing:-0.604800px;}
.ws13e{word-spacing:-0.564000px;}
.ws3c{word-spacing:-0.507600px;}
.ws50{word-spacing:-0.504000px;}
.wsd{word-spacing:-0.464400px;}
.ws82{word-spacing:-0.451200px;}
.ws1d{word-spacing:-0.444000px;}
.ws34{word-spacing:-0.394800px;}
.ws44{word-spacing:-0.338400px;}
.ws33{word-spacing:-0.225600px;}
.ws4{word-spacing:0.000000px;}
.wsc8{word-spacing:0.056400px;}
.wsdc{word-spacing:0.112800px;}
.ws14f{word-spacing:0.135000px;}
.ws62{word-spacing:0.162000px;}
.ws38{word-spacing:0.168000px;}
.ws43{word-spacing:0.169200px;}
.ws7e{word-spacing:0.225600px;}
.ws76{word-spacing:0.338400px;}
.ws87{word-spacing:0.394800px;}
.wsf6{word-spacing:0.451200px;}
.ws7{word-spacing:0.464400px;}
.ws8d{word-spacing:0.507600px;}
.ws73{word-spacing:0.620400px;}
.wsa4{word-spacing:0.720000px;}
.ws12f{word-spacing:0.733200px;}
.ws6{word-spacing:0.774000px;}
.ws3d{word-spacing:0.789600px;}
.ws61{word-spacing:0.810000px;}
.ws6c{word-spacing:0.846000px;}
.wsf8{word-spacing:0.864000px;}
.wsfb{word-spacing:0.924000px;}
.ws4e{word-spacing:1.015200px;}
.ws13{word-spacing:1.071600px;}
.ws9{word-spacing:1.083600px;}
.ws3f{word-spacing:1.128000px;}
.ws35{word-spacing:1.184400px;}
.wsa{word-spacing:1.238400px;}
.ws8a{word-spacing:1.240800px;}
.wsb7{word-spacing:1.260000px;}
.ws5e{word-spacing:1.297200px;}
.ws14{word-spacing:1.410000px;}
.ws28{word-spacing:1.522800px;}
.wsf{word-spacing:1.579200px;}
.ws9b{word-spacing:1.635600px;}
.ws57{word-spacing:1.674000px;}
.wsec{word-spacing:1.692000px;}
.ws51{word-spacing:1.806000px;}
.ws2d{word-spacing:1.861200px;}
.ws25{word-spacing:1.974000px;}
.ws97{word-spacing:2.086800px;}
.ws110{word-spacing:2.143200px;}
.ws98{word-spacing:2.199600px;}
.ws80{word-spacing:2.312400px;}
.ws116{word-spacing:2.368800px;}
.ws31{word-spacing:2.425200px;}
.ws36{word-spacing:2.481600px;}
.wsb9{word-spacing:2.520000px;}
.ws107{word-spacing:2.538000px;}
.ws1e{word-spacing:2.594400px;}
.ws63{word-spacing:2.707200px;}
.wsb6{word-spacing:2.745000px;}
.ws40{word-spacing:2.763600px;}
.ws1f{word-spacing:2.820000px;}
.ws86{word-spacing:2.932800px;}
.ws7d{word-spacing:2.989200px;}
.ws156{word-spacing:3.024000px;}
.ws84{word-spacing:3.045600px;}
.ws94{word-spacing:3.271200px;}
.wsc{word-spacing:3.302400px;}
.ws8{word-spacing:3.354000px;}
.ws108{word-spacing:3.553200px;}
.ws49{word-spacing:3.609600px;}
.ws12c{word-spacing:3.778800px;}
.ws3b{word-spacing:3.835200px;}
.ws90{word-spacing:3.891600px;}
.ws4d{word-spacing:3.948000px;}
.ws69{word-spacing:4.004400px;}
.ws93{word-spacing:4.060800px;}
.ws159{word-spacing:4.183200px;}
.ws78{word-spacing:4.230000px;}
.wsb5{word-spacing:4.275000px;}
.ws103{word-spacing:4.342800px;}
.ws48{word-spacing:4.455600px;}
.ws5b{word-spacing:4.568400px;}
.ws6b{word-spacing:4.624800px;}
.ws7a{word-spacing:4.906800px;}
.wsaf{word-spacing:4.995000px;}
.ws96{word-spacing:5.019600px;}
.ws74{word-spacing:5.076000px;}
.ws67{word-spacing:5.082000px;}
.ws71{word-spacing:5.132400px;}
.ws65{word-spacing:5.188800px;}
.wsf1{word-spacing:5.245200px;}
.ws37{word-spacing:5.301600px;}
.ws15{word-spacing:5.358000px;}
.wscd{word-spacing:5.414400px;}
.ws85{word-spacing:5.470800px;}
.ws111{word-spacing:5.527200px;}
.ws150{word-spacing:5.580000px;}
.ws151{word-spacing:5.625000px;}
.ws95{word-spacing:5.640000px;}
.ws9f{word-spacing:5.752800px;}
.ws146{word-spacing:5.809200px;}
.wsd4{word-spacing:5.865600px;}
.ws16{word-spacing:5.922000px;}
.ws17{word-spacing:6.034800px;}
.ws2b{word-spacing:6.091200px;}
.ws30{word-spacing:6.147600px;}
.wsa2{word-spacing:6.255000px;}
.ws7c{word-spacing:6.260400px;}
.ws154{word-spacing:6.300000px;}
.wsc3{word-spacing:6.316800px;}
.ws47{word-spacing:6.373200px;}
.ws133{word-spacing:6.429600px;}
.ws127{word-spacing:6.486000px;}
.ws5{word-spacing:6.501600px;}
.ws8c{word-spacing:6.542400px;}
.ws10d{word-spacing:6.598800px;}
.ws9d{word-spacing:6.655200px;}
.wsc4{word-spacing:6.711600px;}
.ws13c{word-spacing:6.937200px;}
.ws59{word-spacing:6.966000px;}
.ws9c{word-spacing:6.993600px;}
.wsf0{word-spacing:7.050000px;}
.wseb{word-spacing:7.106400px;}
.ws21{word-spacing:7.219200px;}
.ws122{word-spacing:7.275600px;}
.ws20{word-spacing:7.332000px;}
.ws22{word-spacing:7.388400px;}
.ws5d{word-spacing:7.557600px;}
.ws41{word-spacing:7.726800px;}
.wsb0{word-spacing:7.830000px;}
.ws109{word-spacing:7.896000px;}
.wsa5{word-spacing:7.920000px;}
.ws2a{word-spacing:7.952400px;}
.ws83{word-spacing:8.008800px;}
.ws12{word-spacing:8.121600px;}
.ws75{word-spacing:8.178000px;}
.ws152{word-spacing:8.235000px;}
.ws12b{word-spacing:8.290800px;}
.ws138{word-spacing:8.460000px;}
.ws14e{word-spacing:8.505000px;}
.ws11f{word-spacing:8.572800px;}
.wsbc{word-spacing:8.742000px;}
.ws4f{word-spacing:8.798400px;}
.wsae{word-spacing:8.820000px;}
.ws81{word-spacing:8.964000px;}
.ws89{word-spacing:9.080400px;}
.wsa1{word-spacing:9.135000px;}
.ws139{word-spacing:9.249600px;}
.ws155{word-spacing:9.315000px;}
.ws32{word-spacing:9.362400px;}
.wse9{word-spacing:9.418800px;}
.wsf3{word-spacing:9.531600px;}
.ws29{word-spacing:9.644400px;}
.ws2c{word-spacing:9.700800px;}
.wsc9{word-spacing:9.757200px;}
.wse2{word-spacing:9.926400px;}
.ws11e{word-spacing:10.039200px;}
.ws157{word-spacing:10.432800px;}
.wsb4{word-spacing:10.440000px;}
.wsde{word-spacing:10.490400px;}
.ws79{word-spacing:10.603200px;}
.ws121{word-spacing:10.659600px;}
.wsa3{word-spacing:10.755000px;}
.wsaa{word-spacing:10.800000px;}
.ws12d{word-spacing:10.828800px;}
.ws7b{word-spacing:11.167200px;}
.wsd7{word-spacing:11.223600px;}
.ws123{word-spacing:11.392800px;}
.wsd1{word-spacing:11.731200px;}
.wsb1{word-spacing:11.835000px;}
.wse5{word-spacing:11.900400px;}
.ws101{word-spacing:11.988000px;}
.ws10a{word-spacing:12.013200px;}
.ws145{word-spacing:12.295200px;}
.wsff{word-spacing:12.408000px;}
.ws12e{word-spacing:12.464400px;}
.ws100{word-spacing:12.577200px;}
.ws9e{word-spacing:12.859200px;}
.ws118{word-spacing:13.028400px;}
.ws126{word-spacing:13.254000px;}
.wse4{word-spacing:13.761600px;}
.wse6{word-spacing:13.874400px;}
.ws10f{word-spacing:13.930800px;}
.wsc2{word-spacing:13.987200px;}
.ws135{word-spacing:14.100000px;}
.ws134{word-spacing:14.156400px;}
.wsba{word-spacing:14.868000px;}
.wsa0{word-spacing:15.210000px;}
.ws148{word-spacing:15.566400px;}
.ws125{word-spacing:15.792000px;}
.ws12a{word-spacing:15.904800px;}
.wsfd{word-spacing:16.074000px;}
.ws129{word-spacing:16.186800px;}
.ws105{word-spacing:16.468800px;}
.ws11d{word-spacing:17.258400px;}
.ws136{word-spacing:17.371200px;}
.ws112{word-spacing:17.596800px;}
.wsd6{word-spacing:17.822400px;}
.wsf2{word-spacing:18.048000px;}
.wsfe{word-spacing:18.217200px;}
.wscb{word-spacing:18.386400px;}
.wsf5{word-spacing:18.442800px;}
.ws106{word-spacing:18.612000px;}
.wsc5{word-spacing:18.724800px;}
.ws140{word-spacing:18.781200px;}
.ws11a{word-spacing:19.063200px;}
.ws70{word-spacing:19.232400px;}
.ws130{word-spacing:19.514400px;}
.ws117{word-spacing:19.796400px;}
.ws131{word-spacing:20.134800px;}
.ws11c{word-spacing:20.191200px;}
.ws14d{word-spacing:20.385000px;}
.wsab{word-spacing:20.835000px;}
.wsdb{word-spacing:20.924400px;}
.wse3{word-spacing:21.544800px;}
.ws114{word-spacing:21.826800px;}
.wsee{word-spacing:22.334400px;}
.ws104{word-spacing:22.390800px;}
.wsa6{word-spacing:23.085000px;}
.ws142{word-spacing:23.124000px;}
.ws13a{word-spacing:23.236800px;}
.wsdf{word-spacing:23.406000px;}
.ws141{word-spacing:23.970000px;}
.wsd0{word-spacing:24.421200px;}
.wsdd{word-spacing:24.703200px;}
.wsc1{word-spacing:24.759600px;}
.wsa9{word-spacing:24.930000px;}
.ws128{word-spacing:26.282400px;}
.wsd2{word-spacing:26.395200px;}
.ws10b{word-spacing:26.564400px;}
.ws113{word-spacing:26.790000px;}
.wsea{word-spacing:26.959200px;}
.wsca{word-spacing:27.128400px;}
.ws119{word-spacing:27.241200px;}
.ws143{word-spacing:28.256400px;}
.wsc0{word-spacing:30.681600px;}
.wse8{word-spacing:31.020000px;}
.wsc6{word-spacing:31.076400px;}
.wsbf{word-spacing:32.091600px;}
.wsed{word-spacing:33.276000px;}
.ws10c{word-spacing:35.306400px;}
.wsac{word-spacing:36.450000px;}
.ws11b{word-spacing:37.224000px;}
.ws147{word-spacing:38.408400px;}
.wsd8{word-spacing:38.746800px;}
.ws66{word-spacing:41.076000px;}
.wsf4{word-spacing:41.284800px;}
.ws14b{word-spacing:41.985000px;}
.wsd5{word-spacing:42.130800px;}
.wsbe{word-spacing:42.694800px;}
.wsda{word-spacing:43.202400px;}
.wsbb{word-spacing:45.853200px;}
.wsd9{word-spacing:46.642800px;}
.ws132{word-spacing:47.488800px;}
.wsa7{word-spacing:48.960000px;}
.wscc{word-spacing:52.226400px;}
.ws13b{word-spacing:53.072400px;}
.wsad{word-spacing:58.500000px;}
.ws153{word-spacing:62.280000px;}
.wse7{word-spacing:63.337200px;}
.wsbd{word-spacing:63.957600px;}
.wsa8{word-spacing:105.525000px;}
.ws14c{word-spacing:137.565000px;}
.ws10e{word-spacing:326.610000px;}
.ws137{word-spacing:326.925000px;}
.wse1{word-spacing:329.625000px;}
.ws3a{word-spacing:481.500000px;}
.ws68{word-spacing:481.815000px;}
.ws88{word-spacing:482.715000px;}
._10{margin-left:-481.956568px;}
._a{margin-left:-480.716772px;}
._16{margin-left:-329.625306px;}
._19{margin-left:-326.609388px;}
._15{margin-left:-60.744098px;}
._13{margin-left:-44.608766px;}
._17{margin-left:-27.797280px;}
._1b{margin-left:-25.322841px;}
._12{margin-left:-24.194400px;}
._1a{margin-left:-18.673469px;}
._1c{margin-left:-17.192971px;}
._e{margin-left:-15.119976px;}
._14{margin-left:-12.636081px;}
._d{margin-left:-8.224080px;}
._7{margin-left:-7.030080px;}
._6{margin-left:-5.014920px;}
._4{margin-left:-3.219600px;}
._5{margin-left:-2.203560px;}
._2{margin-left:-1.081920px;}
._1{width:1.061160px;}
._0{width:2.353200px;}
._3{width:3.439620px;}
._f{width:5.724000px;}
._b{width:7.105200px;}
._18{width:18.217200px;}
._11{width:23.085000px;}
._c{width:35.993134px;}
._9{width:41.071670px;}
._8{width:63.419753px;}
.fc2{color:rgb(0,88,158);}
.fc1{color:rgb(92,36,131);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:31.482000px;}
.fs7{font-size:32.531400px;}
.fs8{font-size:32.881200px;}
.fs9{font-size:42.000000px;}
.fsd{font-size:44.074800px;}
.fs0{font-size:44.400000px;}
.fsa{font-size:45.000000px;}
.fse{font-size:50.400000px;}
.fs4{font-size:51.600000px;}
.fsb{font-size:54.000000px;}
.fs6{font-size:56.400000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:61.200000px;}
.fs5{font-size:75.600000px;}
.fsf{font-size:102.000000px;}
.fs2{font-size:105.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:65.368050px;}
.y67{bottom:104.168550px;}
.y48{bottom:104.171550px;}
.y9b{bottom:104.171850px;}
.ya4{bottom:104.173350px;}
.y1e{bottom:104.173500px;}
.yec{bottom:104.175000px;}
.ybd{bottom:104.190000px;}
.y152{bottom:104.250000px;}
.y7f{bottom:118.270050px;}
.y9a{bottom:118.273350px;}
.y66{bottom:121.672050px;}
.y47{bottom:121.673250px;}
.y10c{bottom:121.675050px;}
.y1d{bottom:121.675200px;}
.yeb{bottom:124.423200px;}
.ybc{bottom:124.437600px;}
.y151{bottom:124.497600px;}
.y65{bottom:135.773550px;}
.y99{bottom:135.775050px;}
.y46{bottom:139.174950px;}
.y123{bottom:139.176750px;}
.yea{bottom:144.673200px;}
.ybb{bottom:144.685200px;}
.ya3{bottom:144.697200px;}
.y150{bottom:144.745200px;}
.y64{bottom:149.875050px;}
.y122{bottom:153.276750px;}
.y45{bottom:156.676800px;}
.yf9{bottom:156.678450px;}
.y1c{bottom:164.925750px;}
.yba{bottom:164.932800px;}
.ya2{bottom:164.944800px;}
.y14f{bottom:164.992800px;}
.y7e{bottom:167.376750px;}
.y44{bottom:174.178500px;}
.y10b{bottom:174.180300px;}
.ye9{bottom:185.173200px;}
.y13c{bottom:185.178000px;}
.yb9{bottom:185.180400px;}
.y1b{bottom:185.185350px;}
.y98{bottom:185.192400px;}
.y14e{bottom:185.240400px;}
.y43{bottom:191.682000px;}
.ye8{bottom:205.423200px;}
.y13b{bottom:205.425600px;}
.y63{bottom:205.428000px;}
.y1a{bottom:205.432950px;}
.y7d{bottom:205.437600px;}
.y97{bottom:205.440000px;}
.y157{bottom:205.459200px;}
.y14d{bottom:205.488000px;}
.y42{bottom:209.183700px;}
.y121{bottom:209.918700px;}
.ye7{bottom:225.673200px;}
.y62{bottom:225.675600px;}
.y19{bottom:225.680550px;}
.y7c{bottom:225.685200px;}
.y96{bottom:225.687600px;}
.y10a{bottom:225.694800px;}
.y156{bottom:225.706800px;}
.y14c{bottom:225.735600px;}
.y41{bottom:226.685400px;}
.y61{bottom:245.923200px;}
.y18{bottom:245.928150px;}
.y17e{bottom:245.930400px;}
.y7b{bottom:245.932800px;}
.y95{bottom:245.935200px;}
.y109{bottom:245.942400px;}
.y155{bottom:245.954400px;}
.y14b{bottom:245.983200px;}
.y13a{bottom:262.423200px;}
.y17{bottom:266.175750px;}
.yf8{bottom:266.178000px;}
.y17d{bottom:266.178600px;}
.y7a{bottom:266.180400px;}
.y60{bottom:266.182800px;}
.y40{bottom:266.187600px;}
.y108{bottom:266.190000px;}
.y154{bottom:266.202000px;}
.y14a{bottom:266.230800px;}
.ye6{bottom:272.647800px;}
.yd2{bottom:276.833850px;}
.yb8{bottom:286.423200px;}
.y16{bottom:286.423350px;}
.yf7{bottom:286.425600px;}
.y17c{bottom:286.426800px;}
.y79{bottom:286.428000px;}
.y5f{bottom:286.430400px;}
.y14{bottom:286.430550px;}
.y3f{bottom:286.435200px;}
.y107{bottom:286.437600px;}
.y120{bottom:286.449600px;}
.y12e{bottom:286.464000px;}
.y149{bottom:286.478400px;}
.ye4{bottom:286.897800px;}
.ye5{bottom:286.901550px;}
.y15{bottom:291.068550px;}
.yd1{bottom:291.087600px;}
.ye3{bottom:301.151550px;}
.yd0{bottom:305.341350px;}
.y17b{bottom:306.675000px;}
.y78{bottom:306.675600px;}
.y5e{bottom:306.678000px;}
.y13{bottom:306.678150px;}
.yf6{bottom:306.680400px;}
.y3e{bottom:306.682800px;}
.y106{bottom:306.685200px;}
.y11f{bottom:306.697200px;}
.y12d{bottom:306.711600px;}
.y148{bottom:306.726000px;}
.ycf{bottom:319.595100px;}
.ye2{bottom:319.649700px;}
.y77{bottom:326.923200px;}
.y5d{bottom:326.925600px;}
.y12{bottom:326.925750px;}
.yf5{bottom:326.928000px;}
.y3d{bottom:326.930400px;}
.y105{bottom:326.932800px;}
.y11e{bottom:326.944800px;}
.y12c{bottom:326.959200px;}
.y147{bottom:326.973600px;}
.yce{bottom:333.848850px;}
.ye1{bottom:333.903450px;}
.y76{bottom:347.173200px;}
.y11{bottom:347.173350px;}
.yf4{bottom:347.175600px;}
.y3c{bottom:347.178000px;}
.y5c{bottom:347.180400px;}
.y94{bottom:347.192400px;}
.y12b{bottom:347.206800px;}
.y146{bottom:347.221200px;}
.ycd{bottom:352.355100px;}
.ye0{bottom:352.398000px;}
.ycc{bottom:366.608850px;}
.ydf{bottom:366.651750px;}
.yf3{bottom:367.423200px;}
.y3b{bottom:367.425600px;}
.y5b{bottom:367.428000px;}
.yb7{bottom:367.432800px;}
.y139{bottom:367.435200px;}
.y93{bottom:367.440000px;}
.y12a{bottom:367.454400px;}
.y145{bottom:367.468800px;}
.ycb{bottom:380.862600px;}
.yde{bottom:380.905500px;}
.y74{bottom:387.673200px;}
.y10{bottom:387.673350px;}
.y3a{bottom:387.675600px;}
.yb6{bottom:387.680400px;}
.y138{bottom:387.682800px;}
.y92{bottom:387.687600px;}
.y129{bottom:387.702000px;}
.y144{bottom:387.716400px;}
.y75{bottom:392.168700px;}
.yca{bottom:395.116350px;}
.ydd{bottom:399.392400px;}
.y5a{bottom:407.923200px;}
.y39{bottom:407.925600px;}
.yb5{bottom:407.928000px;}
.y137{bottom:407.930400px;}
.y91{bottom:407.935200px;}
.y128{bottom:407.949600px;}
.y143{bottom:407.964000px;}
.yc9{bottom:409.370100px;}
.ydc{bottom:413.646150px;}
.yc8{bottom:423.623850px;}
.ydb{bottom:427.899900px;}
.y38{bottom:428.173200px;}
.y17a{bottom:428.175000px;}
.yb4{bottom:428.175600px;}
.y136{bottom:428.178000px;}
.y90{bottom:428.182800px;}
.y59{bottom:428.187600px;}
.y127{bottom:428.197200px;}
.y142{bottom:428.211600px;}
.ya1{bottom:432.668700px;}
.yc7{bottom:437.877600px;}
.yda{bottom:442.153650px;}
.ya0{bottom:448.423200px;}
.yb3{bottom:448.425600px;}
.y8f{bottom:448.430400px;}
.y58{bottom:448.435200px;}
.y126{bottom:448.444800px;}
.y37{bottom:448.454400px;}
.y141{bottom:448.459200px;}
.yc6{bottom:456.383850px;}
.yd9{bottom:456.407400px;}
.yf{bottom:468.646350px;}
.yb2{bottom:468.673200px;}
.y8e{bottom:468.678000px;}
.y57{bottom:468.682800px;}
.y73{bottom:468.692400px;}
.y36{bottom:468.702000px;}
.y140{bottom:468.706800px;}
.yc5{bottom:470.637600px;}
.yd8{bottom:474.822600px;}
.ye{bottom:488.899350px;}
.y8d{bottom:488.925600px;}
.y9f{bottom:488.928000px;}
.y56{bottom:488.930400px;}
.y72{bottom:488.940000px;}
.y35{bottom:488.949600px;}
.y13f{bottom:488.954400px;}
.yd7{bottom:489.076350px;}
.yc4{bottom:489.143850px;}
.yd6{bottom:503.330100px;}
.yc3{bottom:503.397600px;}
.yd{bottom:509.152350px;}
.y8c{bottom:509.173200px;}
.y9e{bottom:509.175600px;}
.y55{bottom:509.178000px;}
.yb1{bottom:509.185200px;}
.y71{bottom:509.187600px;}
.y34{bottom:509.197200px;}
.y13e{bottom:509.202000px;}
.y11d{bottom:509.204400px;}
.yd5{bottom:517.583850px;}
.yc2{bottom:517.651350px;}
.yc{bottom:529.405350px;}
.y8b{bottom:529.423200px;}
.y54{bottom:529.425600px;}
.yb0{bottom:529.432800px;}
.y70{bottom:529.435200px;}
.y33{bottom:529.444800px;}
.y13d{bottom:529.449600px;}
.y11c{bottom:529.452000px;}
.yd4{bottom:536.090100px;}
.yc1{bottom:536.157600px;}
.yb{bottom:549.658350px;}
.y135{bottom:549.673200px;}
.y53{bottom:549.675600px;}
.yf2{bottom:549.678000px;}
.yaf{bottom:549.680400px;}
.y6f{bottom:549.682800px;}
.y153{bottom:549.685200px;}
.y32{bottom:549.692400px;}
.y104{bottom:549.697200px;}
.y11b{bottom:549.699600px;}
.yd3{bottom:550.343850px;}
.yc0{bottom:550.411350px;}
.ya{bottom:569.911350px;}
.y8a{bottom:569.923200px;}
.yf1{bottom:569.925600px;}
.yae{bottom:569.928000px;}
.y52{bottom:569.930400px;}
.y134{bottom:569.932800px;}
.y31{bottom:569.940000px;}
.y103{bottom:569.944800px;}
.y11a{bottom:569.947200px;}
.y9{bottom:590.164350px;}
.ybf{bottom:590.173200px;}
.yad{bottom:590.175600px;}
.y51{bottom:590.178000px;}
.yf0{bottom:590.180400px;}
.y30{bottom:590.187600px;}
.y102{bottom:590.192400px;}
.y119{bottom:590.194800px;}
.y168{bottom:604.838850px;}
.y179{bottom:609.023850px;}
.y8{bottom:610.417350px;}
.yac{bottom:610.423200px;}
.y50{bottom:610.425600px;}
.yef{bottom:610.428000px;}
.y2f{bottom:610.435200px;}
.y101{bottom:610.440000px;}
.y118{bottom:610.442400px;}
.yab{bottom:610.456800px;}
.y167{bottom:619.092600px;}
.y178{bottom:623.277600px;}
.y7{bottom:630.670350px;}
.y4f{bottom:630.673200px;}
.yee{bottom:630.675600px;}
.y2e{bottom:630.682800px;}
.y100{bottom:630.687600px;}
.y117{bottom:630.690000px;}
.yaa{bottom:630.704400px;}
.y177{bottom:637.531350px;}
.y166{bottom:637.598850px;}
.ybe{bottom:650.923200px;}
.y6{bottom:650.923350px;}
.y6e{bottom:650.925600px;}
.y2d{bottom:650.930400px;}
.y89{bottom:650.932800px;}
.yff{bottom:650.935200px;}
.y116{bottom:650.937600px;}
.y133{bottom:650.947200px;}
.ya9{bottom:650.952000px;}
.y165{bottom:651.852600px;}
.y176{bottom:656.037600px;}
.y164{bottom:666.106350px;}
.y9d{bottom:667.420200px;}
.y175{bottom:670.291350px;}
.y4e{bottom:671.173200px;}
.y2c{bottom:671.178000px;}
.y88{bottom:671.180400px;}
.yfe{bottom:671.182800px;}
.y115{bottom:671.185200px;}
.y132{bottom:671.194800px;}
.ya8{bottom:671.199600px;}
.y125{bottom:675.668700px;}
.y163{bottom:684.612600px;}
.y174{bottom:688.797600px;}
.y9c{bottom:691.423200px;}
.y5{bottom:691.423350px;}
.y2b{bottom:691.425600px;}
.y87{bottom:691.428000px;}
.yfd{bottom:691.430400px;}
.y114{bottom:691.432800px;}
.y131{bottom:691.442400px;}
.ya7{bottom:691.447200px;}
.y162{bottom:698.866350px;}
.y173{bottom:703.051350px;}
.y2a{bottom:711.673200px;}
.y86{bottom:711.675600px;}
.yfc{bottom:711.678000px;}
.y113{bottom:711.680400px;}
.y130{bottom:711.690000px;}
.ya6{bottom:711.694800px;}
.y172{bottom:717.305100px;}
.y161{bottom:717.372600px;}
.y171{bottom:731.558850px;}
.y160{bottom:731.626350px;}
.y6d{bottom:731.923200px;}
.yfb{bottom:731.925600px;}
.y29{bottom:731.928000px;}
.y12f{bottom:731.937600px;}
.ya5{bottom:731.942400px;}
.y170{bottom:745.812600px;}
.y15f{bottom:745.880100px;}
.y6c{bottom:752.173200px;}
.y28{bottom:752.175600px;}
.y85{bottom:752.182800px;}
.y124{bottom:752.185200px;}
.y4d{bottom:752.190000px;}
.y16f{bottom:760.066350px;}
.y15e{bottom:760.133850px;}
.yfa{bottom:772.423200px;}
.y27{bottom:772.428000px;}
.y84{bottom:772.430400px;}
.y112{bottom:772.432800px;}
.y4c{bottom:772.437600px;}
.y15d{bottom:774.387600px;}
.y16e{bottom:778.572600px;}
.y4{bottom:792.669600px;}
.y6a{bottom:792.673200px;}
.y26{bottom:792.675600px;}
.y83{bottom:792.678000px;}
.y111{bottom:792.680400px;}
.y4b{bottom:792.685200px;}
.y16d{bottom:792.826350px;}
.y15c{bottom:792.893850px;}
.y6b{bottom:797.168700px;}
.yed{bottom:798.671700px;}
.y16c{bottom:807.080100px;}
.y15b{bottom:807.147600px;}
.y25{bottom:812.923200px;}
.y82{bottom:812.925600px;}
.y110{bottom:812.928000px;}
.y4a{bottom:812.932800px;}
.y16b{bottom:821.333850px;}
.y15a{bottom:821.401350px;}
.y69{bottom:833.173200px;}
.y3{bottom:833.173350px;}
.y10f{bottom:833.175600px;}
.y81{bottom:833.178000px;}
.y24{bottom:833.180400px;}
.y16a{bottom:839.840100px;}
.y159{bottom:839.907600px;}
.y10e{bottom:853.423200px;}
.y80{bottom:853.425600px;}
.y23{bottom:853.428000px;}
.y169{bottom:854.093850px;}
.y158{bottom:854.161350px;}
.y68{bottom:873.673200px;}
.y22{bottom:873.675600px;}
.y21{bottom:893.923200px;}
.y2{bottom:893.923350px;}
.y10d{bottom:952.845000px;}
.y49{bottom:952.912500px;}
.y20{bottom:952.953150px;}
.y1{bottom:953.019600px;}
.h12{height:25.626348px;}
.ha{height:26.480560px;}
.h16{height:26.728218px;}
.h2{height:35.830800px;}
.hf{height:36.315000px;}
.h1f{height:38.404800px;}
.hb{height:39.312000px;}
.he{height:39.318600px;}
.hd{height:39.319200px;}
.h15{height:39.325200px;}
.h10{height:39.331200px;}
.h19{height:40.672800px;}
.h18{height:41.025600px;}
.hc{height:41.558400px;}
.h6{height:41.641200px;}
.h17{height:42.120000px;}
.h3{height:43.880400px;}
.h1e{height:45.720000px;}
.h11{height:45.846000px;}
.h14{height:46.755600px;}
.h20{height:47.174400px;}
.h5{height:47.220000px;}
.h9{height:47.883600px;}
.h21{height:48.164400px;}
.h13{height:50.544000px;}
.h8{height:52.790400px;}
.h1a{height:57.283200px;}
.h1c{height:57.607200px;}
.h1d{height:61.051687px;}
.h7{height:61.538400px;}
.h1b{height:77.724000px;}
.h4{height:82.635000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x1{left:76.535400px;}
.x16{left:89.292112px;}
.x4{left:93.543300px;}
.x11{left:95.550804px;}
.x5{left:99.920730px;}
.x15{left:107.272650px;}
.x9{left:112.517700px;}
.xa{left:118.252050px;}
.x6{left:135.344700px;}
.x2{left:145.043700px;}
.x3{left:149.347500px;}
.xd{left:152.469450px;}
.xe{left:158.203800px;}
.xf{left:182.038500px;}
.x10{left:187.772850px;}
.x1b{left:205.917000px;}
.x14{left:217.298400px;}
.x8{left:248.913300px;}
.x7{left:294.874050px;}
.x1c{left:356.677650px;}
.x17{left:359.289187px;}
.x18{left:372.045900px;}
.x19{left:493.426500px;}
.xb{left:512.628150px;}
.xc{left:518.362500px;}
.x12{left:534.677700px;}
.x13{left:538.819500px;}
.x1a{left:591.310200px;}
@media print{
.v2{vertical-align:-16.694400pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.651733pt;}
.v3{vertical-align:22.388267pt;}
.lsc{letter-spacing:-1.440000pt;}
.ls7{letter-spacing:-1.269333pt;}
.lsb{letter-spacing:-1.253333pt;}
.lsa{letter-spacing:-1.200000pt;}
.ls3{letter-spacing:-0.229333pt;}
.ls16{letter-spacing:-0.224000pt;}
.ls1{letter-spacing:-0.197333pt;}
.ls4{letter-spacing:-0.149333pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.197333pt;}
.ls11{letter-spacing:1.348587pt;}
.ls12{letter-spacing:1.353600pt;}
.lsf{letter-spacing:2.657067pt;}
.ls9{letter-spacing:4.060800pt;}
.lse{letter-spacing:4.361600pt;}
.ls10{letter-spacing:5.088000pt;}
.ls8{letter-spacing:6.192000pt;}
.lsd{letter-spacing:6.467200pt;}
.ls15{letter-spacing:36.367285pt;}
.ls5{letter-spacing:56.377182pt;}
.ls14{letter-spacing:56.377732pt;}
.ls0{letter-spacing:1874.918095pt;}
.ls13{letter-spacing:1916.337778pt;}
.wsfc{word-spacing:-50.133333pt;}
.ws18{word-spacing:-14.839467pt;}
.ws56{word-spacing:-12.533333pt;}
.ws52{word-spacing:-12.000000pt;}
.ws99{word-spacing:-11.840000pt;}
.ws54{word-spacing:-11.280000pt;}
.ws14a{word-spacing:-11.200000pt;}
.ws53{word-spacing:-10.800000pt;}
.ws1{word-spacing:-10.666667pt;}
.ws55{word-spacing:-10.560000pt;}
.ws149{word-spacing:-10.000000pt;}
.ws19{word-spacing:-9.333333pt;}
.ws1a{word-spacing:-9.184000pt;}
.ws9a{word-spacing:-8.960000pt;}
.ws39{word-spacing:-8.651409pt;}
.ws1b{word-spacing:-8.064000pt;}
.wse0{word-spacing:-7.893333pt;}
.ws0{word-spacing:-7.696000pt;}
.ws3{word-spacing:-7.466667pt;}
.ws1c{word-spacing:-7.317333pt;}
.ws120{word-spacing:-7.306933pt;}
.wsc7{word-spacing:-6.316800pt;}
.wsf7{word-spacing:-5.865600pt;}
.ws2{word-spacing:-5.845547pt;}
.wsef{word-spacing:-5.113600pt;}
.wsd3{word-spacing:-5.013333pt;}
.ws124{word-spacing:-4.261333pt;}
.wscf{word-spacing:-3.960533pt;}
.ws115{word-spacing:-3.860267pt;}
.ws10{word-spacing:-3.810133pt;}
.ws13d{word-spacing:-3.308800pt;}
.ws13f{word-spacing:-3.258667pt;}
.ws4a{word-spacing:-2.857600pt;}
.ws58{word-spacing:-2.832000pt;}
.ws27{word-spacing:-2.807467pt;}
.ws2f{word-spacing:-2.757333pt;}
.wse{word-spacing:-2.707200pt;}
.ws23{word-spacing:-2.606933pt;}
.ws60{word-spacing:-2.556800pt;}
.ws144{word-spacing:-2.506667pt;}
.ws7f{word-spacing:-2.456533pt;}
.ws6d{word-spacing:-2.406400pt;}
.wsb8{word-spacing:-2.320000pt;}
.ws6e{word-spacing:-2.306133pt;}
.ws77{word-spacing:-2.256000pt;}
.ws91{word-spacing:-2.205867pt;}
.ws102{word-spacing:-2.064000pt;}
.ws2e{word-spacing:-2.055467pt;}
.ws26{word-spacing:-2.005333pt;}
.ws5a{word-spacing:-1.968000pt;}
.wsf9{word-spacing:-1.920000pt;}
.ws72{word-spacing:-1.905067pt;}
.wsfa{word-spacing:-1.872000pt;}
.wsce{word-spacing:-1.854933pt;}
.ws8b{word-spacing:-1.754667pt;}
.ws64{word-spacing:-1.654400pt;}
.ws42{word-spacing:-1.604267pt;}
.ws8e{word-spacing:-1.504000pt;}
.ws8f{word-spacing:-1.453867pt;}
.ws92{word-spacing:-1.253333pt;}
.ws46{word-spacing:-1.153067pt;}
.ws45{word-spacing:-1.102933pt;}
.ws4c{word-spacing:-1.052800pt;}
.wsb{word-spacing:-1.009067pt;}
.ws6f{word-spacing:-1.002667pt;}
.ws3e{word-spacing:-0.952533pt;}
.ws6a{word-spacing:-0.902400pt;}
.ws5f{word-spacing:-0.852267pt;}
.ws24{word-spacing:-0.802133pt;}
.wsb3{word-spacing:-0.800000pt;}
.wsb2{word-spacing:-0.760000pt;}
.ws5c{word-spacing:-0.752000pt;}
.ws4b{word-spacing:-0.651733pt;}
.ws158{word-spacing:-0.627200pt;}
.ws11{word-spacing:-0.601600pt;}
.ws15a{word-spacing:-0.537600pt;}
.ws13e{word-spacing:-0.501333pt;}
.ws3c{word-spacing:-0.451200pt;}
.ws50{word-spacing:-0.448000pt;}
.wsd{word-spacing:-0.412800pt;}
.ws82{word-spacing:-0.401067pt;}
.ws1d{word-spacing:-0.394667pt;}
.ws34{word-spacing:-0.350933pt;}
.ws44{word-spacing:-0.300800pt;}
.ws33{word-spacing:-0.200533pt;}
.ws4{word-spacing:0.000000pt;}
.wsc8{word-spacing:0.050133pt;}
.wsdc{word-spacing:0.100267pt;}
.ws14f{word-spacing:0.120000pt;}
.ws62{word-spacing:0.144000pt;}
.ws38{word-spacing:0.149333pt;}
.ws43{word-spacing:0.150400pt;}
.ws7e{word-spacing:0.200533pt;}
.ws76{word-spacing:0.300800pt;}
.ws87{word-spacing:0.350933pt;}
.wsf6{word-spacing:0.401067pt;}
.ws7{word-spacing:0.412800pt;}
.ws8d{word-spacing:0.451200pt;}
.ws73{word-spacing:0.551467pt;}
.wsa4{word-spacing:0.640000pt;}
.ws12f{word-spacing:0.651733pt;}
.ws6{word-spacing:0.688000pt;}
.ws3d{word-spacing:0.701867pt;}
.ws61{word-spacing:0.720000pt;}
.ws6c{word-spacing:0.752000pt;}
.wsf8{word-spacing:0.768000pt;}
.wsfb{word-spacing:0.821333pt;}
.ws4e{word-spacing:0.902400pt;}
.ws13{word-spacing:0.952533pt;}
.ws9{word-spacing:0.963200pt;}
.ws3f{word-spacing:1.002667pt;}
.ws35{word-spacing:1.052800pt;}
.wsa{word-spacing:1.100800pt;}
.ws8a{word-spacing:1.102933pt;}
.wsb7{word-spacing:1.120000pt;}
.ws5e{word-spacing:1.153067pt;}
.ws14{word-spacing:1.253333pt;}
.ws28{word-spacing:1.353600pt;}
.wsf{word-spacing:1.403733pt;}
.ws9b{word-spacing:1.453867pt;}
.ws57{word-spacing:1.488000pt;}
.wsec{word-spacing:1.504000pt;}
.ws51{word-spacing:1.605333pt;}
.ws2d{word-spacing:1.654400pt;}
.ws25{word-spacing:1.754667pt;}
.ws97{word-spacing:1.854933pt;}
.ws110{word-spacing:1.905067pt;}
.ws98{word-spacing:1.955200pt;}
.ws80{word-spacing:2.055467pt;}
.ws116{word-spacing:2.105600pt;}
.ws31{word-spacing:2.155733pt;}
.ws36{word-spacing:2.205867pt;}
.wsb9{word-spacing:2.240000pt;}
.ws107{word-spacing:2.256000pt;}
.ws1e{word-spacing:2.306133pt;}
.ws63{word-spacing:2.406400pt;}
.wsb6{word-spacing:2.440000pt;}
.ws40{word-spacing:2.456533pt;}
.ws1f{word-spacing:2.506667pt;}
.ws86{word-spacing:2.606933pt;}
.ws7d{word-spacing:2.657067pt;}
.ws156{word-spacing:2.688000pt;}
.ws84{word-spacing:2.707200pt;}
.ws94{word-spacing:2.907733pt;}
.wsc{word-spacing:2.935467pt;}
.ws8{word-spacing:2.981333pt;}
.ws108{word-spacing:3.158400pt;}
.ws49{word-spacing:3.208533pt;}
.ws12c{word-spacing:3.358933pt;}
.ws3b{word-spacing:3.409067pt;}
.ws90{word-spacing:3.459200pt;}
.ws4d{word-spacing:3.509333pt;}
.ws69{word-spacing:3.559467pt;}
.ws93{word-spacing:3.609600pt;}
.ws159{word-spacing:3.718400pt;}
.ws78{word-spacing:3.760000pt;}
.wsb5{word-spacing:3.800000pt;}
.ws103{word-spacing:3.860267pt;}
.ws48{word-spacing:3.960533pt;}
.ws5b{word-spacing:4.060800pt;}
.ws6b{word-spacing:4.110933pt;}
.ws7a{word-spacing:4.361600pt;}
.wsaf{word-spacing:4.440000pt;}
.ws96{word-spacing:4.461867pt;}
.ws74{word-spacing:4.512000pt;}
.ws67{word-spacing:4.517333pt;}
.ws71{word-spacing:4.562133pt;}
.ws65{word-spacing:4.612267pt;}
.wsf1{word-spacing:4.662400pt;}
.ws37{word-spacing:4.712533pt;}
.ws15{word-spacing:4.762667pt;}
.wscd{word-spacing:4.812800pt;}
.ws85{word-spacing:4.862933pt;}
.ws111{word-spacing:4.913067pt;}
.ws150{word-spacing:4.960000pt;}
.ws151{word-spacing:5.000000pt;}
.ws95{word-spacing:5.013333pt;}
.ws9f{word-spacing:5.113600pt;}
.ws146{word-spacing:5.163733pt;}
.wsd4{word-spacing:5.213867pt;}
.ws16{word-spacing:5.264000pt;}
.ws17{word-spacing:5.364267pt;}
.ws2b{word-spacing:5.414400pt;}
.ws30{word-spacing:5.464533pt;}
.wsa2{word-spacing:5.560000pt;}
.ws7c{word-spacing:5.564800pt;}
.ws154{word-spacing:5.600000pt;}
.wsc3{word-spacing:5.614933pt;}
.ws47{word-spacing:5.665067pt;}
.ws133{word-spacing:5.715200pt;}
.ws127{word-spacing:5.765333pt;}
.ws5{word-spacing:5.779200pt;}
.ws8c{word-spacing:5.815467pt;}
.ws10d{word-spacing:5.865600pt;}
.ws9d{word-spacing:5.915733pt;}
.wsc4{word-spacing:5.965867pt;}
.ws13c{word-spacing:6.166400pt;}
.ws59{word-spacing:6.192000pt;}
.ws9c{word-spacing:6.216533pt;}
.wsf0{word-spacing:6.266667pt;}
.wseb{word-spacing:6.316800pt;}
.ws21{word-spacing:6.417067pt;}
.ws122{word-spacing:6.467200pt;}
.ws20{word-spacing:6.517333pt;}
.ws22{word-spacing:6.567467pt;}
.ws5d{word-spacing:6.717867pt;}
.ws41{word-spacing:6.868267pt;}
.wsb0{word-spacing:6.960000pt;}
.ws109{word-spacing:7.018667pt;}
.wsa5{word-spacing:7.040000pt;}
.ws2a{word-spacing:7.068800pt;}
.ws83{word-spacing:7.118933pt;}
.ws12{word-spacing:7.219200pt;}
.ws75{word-spacing:7.269333pt;}
.ws152{word-spacing:7.320000pt;}
.ws12b{word-spacing:7.369600pt;}
.ws138{word-spacing:7.520000pt;}
.ws14e{word-spacing:7.560000pt;}
.ws11f{word-spacing:7.620267pt;}
.wsbc{word-spacing:7.770667pt;}
.ws4f{word-spacing:7.820800pt;}
.wsae{word-spacing:7.840000pt;}
.ws81{word-spacing:7.968000pt;}
.ws89{word-spacing:8.071467pt;}
.wsa1{word-spacing:8.120000pt;}
.ws139{word-spacing:8.221867pt;}
.ws155{word-spacing:8.280000pt;}
.ws32{word-spacing:8.322133pt;}
.wse9{word-spacing:8.372267pt;}
.wsf3{word-spacing:8.472533pt;}
.ws29{word-spacing:8.572800pt;}
.ws2c{word-spacing:8.622933pt;}
.wsc9{word-spacing:8.673067pt;}
.wse2{word-spacing:8.823467pt;}
.ws11e{word-spacing:8.923733pt;}
.ws157{word-spacing:9.273600pt;}
.wsb4{word-spacing:9.280000pt;}
.wsde{word-spacing:9.324800pt;}
.ws79{word-spacing:9.425067pt;}
.ws121{word-spacing:9.475200pt;}
.wsa3{word-spacing:9.560000pt;}
.wsaa{word-spacing:9.600000pt;}
.ws12d{word-spacing:9.625600pt;}
.ws7b{word-spacing:9.926400pt;}
.wsd7{word-spacing:9.976533pt;}
.ws123{word-spacing:10.126933pt;}
.wsd1{word-spacing:10.427733pt;}
.wsb1{word-spacing:10.520000pt;}
.wse5{word-spacing:10.578133pt;}
.ws101{word-spacing:10.656000pt;}
.ws10a{word-spacing:10.678400pt;}
.ws145{word-spacing:10.929067pt;}
.wsff{word-spacing:11.029333pt;}
.ws12e{word-spacing:11.079467pt;}
.ws100{word-spacing:11.179733pt;}
.ws9e{word-spacing:11.430400pt;}
.ws118{word-spacing:11.580800pt;}
.ws126{word-spacing:11.781333pt;}
.wse4{word-spacing:12.232533pt;}
.wse6{word-spacing:12.332800pt;}
.ws10f{word-spacing:12.382933pt;}
.wsc2{word-spacing:12.433067pt;}
.ws135{word-spacing:12.533333pt;}
.ws134{word-spacing:12.583467pt;}
.wsba{word-spacing:13.216000pt;}
.wsa0{word-spacing:13.520000pt;}
.ws148{word-spacing:13.836800pt;}
.ws125{word-spacing:14.037333pt;}
.ws12a{word-spacing:14.137600pt;}
.wsfd{word-spacing:14.288000pt;}
.ws129{word-spacing:14.388267pt;}
.ws105{word-spacing:14.638933pt;}
.ws11d{word-spacing:15.340800pt;}
.ws136{word-spacing:15.441067pt;}
.ws112{word-spacing:15.641600pt;}
.wsd6{word-spacing:15.842133pt;}
.wsf2{word-spacing:16.042667pt;}
.wsfe{word-spacing:16.193067pt;}
.wscb{word-spacing:16.343467pt;}
.wsf5{word-spacing:16.393600pt;}
.ws106{word-spacing:16.544000pt;}
.wsc5{word-spacing:16.644267pt;}
.ws140{word-spacing:16.694400pt;}
.ws11a{word-spacing:16.945067pt;}
.ws70{word-spacing:17.095467pt;}
.ws130{word-spacing:17.346133pt;}
.ws117{word-spacing:17.596800pt;}
.ws131{word-spacing:17.897600pt;}
.ws11c{word-spacing:17.947733pt;}
.ws14d{word-spacing:18.120000pt;}
.wsab{word-spacing:18.520000pt;}
.wsdb{word-spacing:18.599467pt;}
.wse3{word-spacing:19.150933pt;}
.ws114{word-spacing:19.401600pt;}
.wsee{word-spacing:19.852800pt;}
.ws104{word-spacing:19.902933pt;}
.wsa6{word-spacing:20.520000pt;}
.ws142{word-spacing:20.554667pt;}
.ws13a{word-spacing:20.654933pt;}
.wsdf{word-spacing:20.805333pt;}
.ws141{word-spacing:21.306667pt;}
.wsd0{word-spacing:21.707733pt;}
.wsdd{word-spacing:21.958400pt;}
.wsc1{word-spacing:22.008533pt;}
.wsa9{word-spacing:22.160000pt;}
.ws128{word-spacing:23.362133pt;}
.wsd2{word-spacing:23.462400pt;}
.ws10b{word-spacing:23.612800pt;}
.ws113{word-spacing:23.813333pt;}
.wsea{word-spacing:23.963733pt;}
.wsca{word-spacing:24.114133pt;}
.ws119{word-spacing:24.214400pt;}
.ws143{word-spacing:25.116800pt;}
.wsc0{word-spacing:27.272533pt;}
.wse8{word-spacing:27.573333pt;}
.wsc6{word-spacing:27.623467pt;}
.wsbf{word-spacing:28.525867pt;}
.wsed{word-spacing:29.578667pt;}
.ws10c{word-spacing:31.383467pt;}
.wsac{word-spacing:32.400000pt;}
.ws11b{word-spacing:33.088000pt;}
.ws147{word-spacing:34.140800pt;}
.wsd8{word-spacing:34.441600pt;}
.ws66{word-spacing:36.512000pt;}
.wsf4{word-spacing:36.697600pt;}
.ws14b{word-spacing:37.320000pt;}
.wsd5{word-spacing:37.449600pt;}
.wsbe{word-spacing:37.950933pt;}
.wsda{word-spacing:38.402133pt;}
.wsbb{word-spacing:40.758400pt;}
.wsd9{word-spacing:41.460267pt;}
.ws132{word-spacing:42.212267pt;}
.wsa7{word-spacing:43.520000pt;}
.wscc{word-spacing:46.423467pt;}
.ws13b{word-spacing:47.175467pt;}
.wsad{word-spacing:52.000000pt;}
.ws153{word-spacing:55.360000pt;}
.wse7{word-spacing:56.299733pt;}
.wsbd{word-spacing:56.851200pt;}
.wsa8{word-spacing:93.800000pt;}
.ws14c{word-spacing:122.280000pt;}
.ws10e{word-spacing:290.320000pt;}
.ws137{word-spacing:290.600000pt;}
.wse1{word-spacing:293.000000pt;}
.ws3a{word-spacing:428.000000pt;}
.ws68{word-spacing:428.280000pt;}
.ws88{word-spacing:429.080000pt;}
._10{margin-left:-428.405838pt;}
._a{margin-left:-427.303798pt;}
._16{margin-left:-293.000272pt;}
._19{margin-left:-290.319456pt;}
._15{margin-left:-53.994754pt;}
._13{margin-left:-39.652236pt;}
._17{margin-left:-24.708693pt;}
._1b{margin-left:-22.509192pt;}
._12{margin-left:-21.506133pt;}
._1a{margin-left:-16.598639pt;}
._1c{margin-left:-15.282641pt;}
._e{margin-left:-13.439978pt;}
._14{margin-left:-11.232072pt;}
._d{margin-left:-7.310293pt;}
._7{margin-left:-6.248960pt;}
._6{margin-left:-4.457707pt;}
._4{margin-left:-2.861867pt;}
._5{margin-left:-1.958720pt;}
._2{margin-left:-0.961707pt;}
._1{width:0.943253pt;}
._0{width:2.091733pt;}
._3{width:3.057440pt;}
._f{width:5.088000pt;}
._b{width:6.315733pt;}
._18{width:16.193067pt;}
._11{width:20.520000pt;}
._c{width:31.993897pt;}
._9{width:36.508151pt;}
._8{width:56.373113pt;}
.fsc{font-size:27.984000pt;}
.fs7{font-size:28.916800pt;}
.fs8{font-size:29.227733pt;}
.fs9{font-size:37.333333pt;}
.fsd{font-size:39.177600pt;}
.fs0{font-size:39.466667pt;}
.fsa{font-size:40.000000pt;}
.fse{font-size:44.800000pt;}
.fs4{font-size:45.866667pt;}
.fsb{font-size:48.000000pt;}
.fs6{font-size:50.133333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:54.400000pt;}
.fs5{font-size:67.200000pt;}
.fsf{font-size:90.666667pt;}
.fs2{font-size:93.333333pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:58.104933pt;}
.y67{bottom:92.594267pt;}
.y48{bottom:92.596933pt;}
.y9b{bottom:92.597200pt;}
.ya4{bottom:92.598533pt;}
.y1e{bottom:92.598667pt;}
.yec{bottom:92.600000pt;}
.ybd{bottom:92.613333pt;}
.y152{bottom:92.666667pt;}
.y7f{bottom:105.128933pt;}
.y9a{bottom:105.131867pt;}
.y66{bottom:108.152933pt;}
.y47{bottom:108.154000pt;}
.y10c{bottom:108.155600pt;}
.y1d{bottom:108.155733pt;}
.yeb{bottom:110.598400pt;}
.ybc{bottom:110.611200pt;}
.y151{bottom:110.664533pt;}
.y65{bottom:120.687600pt;}
.y99{bottom:120.688933pt;}
.y46{bottom:123.711067pt;}
.y123{bottom:123.712667pt;}
.yea{bottom:128.598400pt;}
.ybb{bottom:128.609067pt;}
.ya3{bottom:128.619733pt;}
.y150{bottom:128.662400pt;}
.y64{bottom:133.222267pt;}
.y122{bottom:136.246000pt;}
.y45{bottom:139.268267pt;}
.yf9{bottom:139.269733pt;}
.y1c{bottom:146.600667pt;}
.yba{bottom:146.606933pt;}
.ya2{bottom:146.617600pt;}
.y14f{bottom:146.660267pt;}
.y7e{bottom:148.779333pt;}
.y44{bottom:154.825333pt;}
.y10b{bottom:154.826933pt;}
.ye9{bottom:164.598400pt;}
.y13c{bottom:164.602667pt;}
.yb9{bottom:164.604800pt;}
.y1b{bottom:164.609200pt;}
.y98{bottom:164.615467pt;}
.y14e{bottom:164.658133pt;}
.y43{bottom:170.384000pt;}
.ye8{bottom:182.598400pt;}
.y13b{bottom:182.600533pt;}
.y63{bottom:182.602667pt;}
.y1a{bottom:182.607067pt;}
.y7d{bottom:182.611200pt;}
.y97{bottom:182.613333pt;}
.y157{bottom:182.630400pt;}
.y14d{bottom:182.656000pt;}
.y42{bottom:185.941067pt;}
.y121{bottom:186.594400pt;}
.ye7{bottom:200.598400pt;}
.y62{bottom:200.600533pt;}
.y19{bottom:200.604933pt;}
.y7c{bottom:200.609067pt;}
.y96{bottom:200.611200pt;}
.y10a{bottom:200.617600pt;}
.y156{bottom:200.628267pt;}
.y14c{bottom:200.653867pt;}
.y41{bottom:201.498133pt;}
.y61{bottom:218.598400pt;}
.y18{bottom:218.602800pt;}
.y17e{bottom:218.604800pt;}
.y7b{bottom:218.606933pt;}
.y95{bottom:218.609067pt;}
.y109{bottom:218.615467pt;}
.y155{bottom:218.626133pt;}
.y14b{bottom:218.651733pt;}
.y13a{bottom:233.265067pt;}
.y17{bottom:236.600667pt;}
.yf8{bottom:236.602667pt;}
.y17d{bottom:236.603200pt;}
.y7a{bottom:236.604800pt;}
.y60{bottom:236.606933pt;}
.y40{bottom:236.611200pt;}
.y108{bottom:236.613333pt;}
.y154{bottom:236.624000pt;}
.y14a{bottom:236.649600pt;}
.ye6{bottom:242.353600pt;}
.yd2{bottom:246.074533pt;}
.yb8{bottom:254.598400pt;}
.y16{bottom:254.598533pt;}
.yf7{bottom:254.600533pt;}
.y17c{bottom:254.601600pt;}
.y79{bottom:254.602667pt;}
.y5f{bottom:254.604800pt;}
.y14{bottom:254.604933pt;}
.y3f{bottom:254.609067pt;}
.y107{bottom:254.611200pt;}
.y120{bottom:254.621867pt;}
.y12e{bottom:254.634667pt;}
.y149{bottom:254.647467pt;}
.ye4{bottom:255.020267pt;}
.ye5{bottom:255.023600pt;}
.y15{bottom:258.727600pt;}
.yd1{bottom:258.744533pt;}
.ye3{bottom:267.690267pt;}
.yd0{bottom:271.414533pt;}
.y17b{bottom:272.600000pt;}
.y78{bottom:272.600533pt;}
.y5e{bottom:272.602667pt;}
.y13{bottom:272.602800pt;}
.yf6{bottom:272.604800pt;}
.y3e{bottom:272.606933pt;}
.y106{bottom:272.609067pt;}
.y11f{bottom:272.619733pt;}
.y12d{bottom:272.632533pt;}
.y148{bottom:272.645333pt;}
.ycf{bottom:284.084533pt;}
.ye2{bottom:284.133067pt;}
.y77{bottom:290.598400pt;}
.y5d{bottom:290.600533pt;}
.y12{bottom:290.600667pt;}
.yf5{bottom:290.602667pt;}
.y3d{bottom:290.604800pt;}
.y105{bottom:290.606933pt;}
.y11e{bottom:290.617600pt;}
.y12c{bottom:290.630400pt;}
.y147{bottom:290.643200pt;}
.yce{bottom:296.754533pt;}
.ye1{bottom:296.803067pt;}
.y76{bottom:308.598400pt;}
.y11{bottom:308.598533pt;}
.yf4{bottom:308.600533pt;}
.y3c{bottom:308.602667pt;}
.y5c{bottom:308.604800pt;}
.y94{bottom:308.615467pt;}
.y12b{bottom:308.628267pt;}
.y146{bottom:308.641067pt;}
.ycd{bottom:313.204533pt;}
.ye0{bottom:313.242667pt;}
.ycc{bottom:325.874533pt;}
.ydf{bottom:325.912667pt;}
.yf3{bottom:326.598400pt;}
.y3b{bottom:326.600533pt;}
.y5b{bottom:326.602667pt;}
.yb7{bottom:326.606933pt;}
.y139{bottom:326.609067pt;}
.y93{bottom:326.613333pt;}
.y12a{bottom:326.626133pt;}
.y145{bottom:326.638933pt;}
.ycb{bottom:338.544533pt;}
.yde{bottom:338.582667pt;}
.y74{bottom:344.598400pt;}
.y10{bottom:344.598533pt;}
.y3a{bottom:344.600533pt;}
.yb6{bottom:344.604800pt;}
.y138{bottom:344.606933pt;}
.y92{bottom:344.611200pt;}
.y129{bottom:344.624000pt;}
.y144{bottom:344.636800pt;}
.y75{bottom:348.594400pt;}
.yca{bottom:351.214533pt;}
.ydd{bottom:355.015467pt;}
.y5a{bottom:362.598400pt;}
.y39{bottom:362.600533pt;}
.yb5{bottom:362.602667pt;}
.y137{bottom:362.604800pt;}
.y91{bottom:362.609067pt;}
.y128{bottom:362.621867pt;}
.y143{bottom:362.634667pt;}
.yc9{bottom:363.884533pt;}
.ydc{bottom:367.685467pt;}
.yc8{bottom:376.554533pt;}
.ydb{bottom:380.355467pt;}
.y38{bottom:380.598400pt;}
.y17a{bottom:380.600000pt;}
.yb4{bottom:380.600533pt;}
.y136{bottom:380.602667pt;}
.y90{bottom:380.606933pt;}
.y59{bottom:380.611200pt;}
.y127{bottom:380.619733pt;}
.y142{bottom:380.632533pt;}
.ya1{bottom:384.594400pt;}
.yc7{bottom:389.224533pt;}
.yda{bottom:393.025467pt;}
.ya0{bottom:398.598400pt;}
.yb3{bottom:398.600533pt;}
.y8f{bottom:398.604800pt;}
.y58{bottom:398.609067pt;}
.y126{bottom:398.617600pt;}
.y37{bottom:398.626133pt;}
.y141{bottom:398.630400pt;}
.yc6{bottom:405.674533pt;}
.yd9{bottom:405.695467pt;}
.yf{bottom:416.574533pt;}
.yb2{bottom:416.598400pt;}
.y8e{bottom:416.602667pt;}
.y57{bottom:416.606933pt;}
.y73{bottom:416.615467pt;}
.y36{bottom:416.624000pt;}
.y140{bottom:416.628267pt;}
.yc5{bottom:418.344533pt;}
.yd8{bottom:422.064533pt;}
.ye{bottom:434.577200pt;}
.y8d{bottom:434.600533pt;}
.y9f{bottom:434.602667pt;}
.y56{bottom:434.604800pt;}
.y72{bottom:434.613333pt;}
.y35{bottom:434.621867pt;}
.y13f{bottom:434.626133pt;}
.yd7{bottom:434.734533pt;}
.yc4{bottom:434.794533pt;}
.yd6{bottom:447.404533pt;}
.yc3{bottom:447.464533pt;}
.yd{bottom:452.579867pt;}
.y8c{bottom:452.598400pt;}
.y9e{bottom:452.600533pt;}
.y55{bottom:452.602667pt;}
.yb1{bottom:452.609067pt;}
.y71{bottom:452.611200pt;}
.y34{bottom:452.619733pt;}
.y13e{bottom:452.624000pt;}
.y11d{bottom:452.626133pt;}
.yd5{bottom:460.074533pt;}
.yc2{bottom:460.134533pt;}
.yc{bottom:470.582533pt;}
.y8b{bottom:470.598400pt;}
.y54{bottom:470.600533pt;}
.yb0{bottom:470.606933pt;}
.y70{bottom:470.609067pt;}
.y33{bottom:470.617600pt;}
.y13d{bottom:470.621867pt;}
.y11c{bottom:470.624000pt;}
.yd4{bottom:476.524533pt;}
.yc1{bottom:476.584533pt;}
.yb{bottom:488.585200pt;}
.y135{bottom:488.598400pt;}
.y53{bottom:488.600533pt;}
.yf2{bottom:488.602667pt;}
.yaf{bottom:488.604800pt;}
.y6f{bottom:488.606933pt;}
.y153{bottom:488.609067pt;}
.y32{bottom:488.615467pt;}
.y104{bottom:488.619733pt;}
.y11b{bottom:488.621867pt;}
.yd3{bottom:489.194533pt;}
.yc0{bottom:489.254533pt;}
.ya{bottom:506.587867pt;}
.y8a{bottom:506.598400pt;}
.yf1{bottom:506.600533pt;}
.yae{bottom:506.602667pt;}
.y52{bottom:506.604800pt;}
.y134{bottom:506.606933pt;}
.y31{bottom:506.613333pt;}
.y103{bottom:506.617600pt;}
.y11a{bottom:506.619733pt;}
.y9{bottom:524.590533pt;}
.ybf{bottom:524.598400pt;}
.yad{bottom:524.600533pt;}
.y51{bottom:524.602667pt;}
.yf0{bottom:524.604800pt;}
.y30{bottom:524.611200pt;}
.y102{bottom:524.615467pt;}
.y119{bottom:524.617600pt;}
.y168{bottom:537.634533pt;}
.y179{bottom:541.354533pt;}
.y8{bottom:542.593200pt;}
.yac{bottom:542.598400pt;}
.y50{bottom:542.600533pt;}
.yef{bottom:542.602667pt;}
.y2f{bottom:542.609067pt;}
.y101{bottom:542.613333pt;}
.y118{bottom:542.615467pt;}
.yab{bottom:542.628267pt;}
.y167{bottom:550.304533pt;}
.y178{bottom:554.024533pt;}
.y7{bottom:560.595867pt;}
.y4f{bottom:560.598400pt;}
.yee{bottom:560.600533pt;}
.y2e{bottom:560.606933pt;}
.y100{bottom:560.611200pt;}
.y117{bottom:560.613333pt;}
.yaa{bottom:560.626133pt;}
.y177{bottom:566.694533pt;}
.y166{bottom:566.754533pt;}
.ybe{bottom:578.598400pt;}
.y6{bottom:578.598533pt;}
.y6e{bottom:578.600533pt;}
.y2d{bottom:578.604800pt;}
.y89{bottom:578.606933pt;}
.yff{bottom:578.609067pt;}
.y116{bottom:578.611200pt;}
.y133{bottom:578.619733pt;}
.ya9{bottom:578.624000pt;}
.y165{bottom:579.424533pt;}
.y176{bottom:583.144533pt;}
.y164{bottom:592.094533pt;}
.y9d{bottom:593.262400pt;}
.y175{bottom:595.814533pt;}
.y4e{bottom:596.598400pt;}
.y2c{bottom:596.602667pt;}
.y88{bottom:596.604800pt;}
.yfe{bottom:596.606933pt;}
.y115{bottom:596.609067pt;}
.y132{bottom:596.617600pt;}
.ya8{bottom:596.621867pt;}
.y125{bottom:600.594400pt;}
.y163{bottom:608.544533pt;}
.y174{bottom:612.264533pt;}
.y9c{bottom:614.598400pt;}
.y5{bottom:614.598533pt;}
.y2b{bottom:614.600533pt;}
.y87{bottom:614.602667pt;}
.yfd{bottom:614.604800pt;}
.y114{bottom:614.606933pt;}
.y131{bottom:614.615467pt;}
.ya7{bottom:614.619733pt;}
.y162{bottom:621.214533pt;}
.y173{bottom:624.934533pt;}
.y2a{bottom:632.598400pt;}
.y86{bottom:632.600533pt;}
.yfc{bottom:632.602667pt;}
.y113{bottom:632.604800pt;}
.y130{bottom:632.613333pt;}
.ya6{bottom:632.617600pt;}
.y172{bottom:637.604533pt;}
.y161{bottom:637.664533pt;}
.y171{bottom:650.274533pt;}
.y160{bottom:650.334533pt;}
.y6d{bottom:650.598400pt;}
.yfb{bottom:650.600533pt;}
.y29{bottom:650.602667pt;}
.y12f{bottom:650.611200pt;}
.ya5{bottom:650.615467pt;}
.y170{bottom:662.944533pt;}
.y15f{bottom:663.004533pt;}
.y6c{bottom:668.598400pt;}
.y28{bottom:668.600533pt;}
.y85{bottom:668.606933pt;}
.y124{bottom:668.609067pt;}
.y4d{bottom:668.613333pt;}
.y16f{bottom:675.614533pt;}
.y15e{bottom:675.674533pt;}
.yfa{bottom:686.598400pt;}
.y27{bottom:686.602667pt;}
.y84{bottom:686.604800pt;}
.y112{bottom:686.606933pt;}
.y4c{bottom:686.611200pt;}
.y15d{bottom:688.344533pt;}
.y16e{bottom:692.064533pt;}
.y4{bottom:704.595200pt;}
.y6a{bottom:704.598400pt;}
.y26{bottom:704.600533pt;}
.y83{bottom:704.602667pt;}
.y111{bottom:704.604800pt;}
.y4b{bottom:704.609067pt;}
.y16d{bottom:704.734533pt;}
.y15c{bottom:704.794533pt;}
.y6b{bottom:708.594400pt;}
.yed{bottom:709.930400pt;}
.y16c{bottom:717.404533pt;}
.y15b{bottom:717.464533pt;}
.y25{bottom:722.598400pt;}
.y82{bottom:722.600533pt;}
.y110{bottom:722.602667pt;}
.y4a{bottom:722.606933pt;}
.y16b{bottom:730.074533pt;}
.y15a{bottom:730.134533pt;}
.y69{bottom:740.598400pt;}
.y3{bottom:740.598533pt;}
.y10f{bottom:740.600533pt;}
.y81{bottom:740.602667pt;}
.y24{bottom:740.604800pt;}
.y16a{bottom:746.524533pt;}
.y159{bottom:746.584533pt;}
.y10e{bottom:758.598400pt;}
.y80{bottom:758.600533pt;}
.y23{bottom:758.602667pt;}
.y169{bottom:759.194533pt;}
.y158{bottom:759.254533pt;}
.y68{bottom:776.598400pt;}
.y22{bottom:776.600533pt;}
.y21{bottom:794.598400pt;}
.y2{bottom:794.598533pt;}
.y10d{bottom:846.973333pt;}
.y49{bottom:847.033333pt;}
.y20{bottom:847.069467pt;}
.y1{bottom:847.128533pt;}
.h12{height:22.778976pt;}
.ha{height:23.538275pt;}
.h16{height:23.758416pt;}
.h2{height:31.849600pt;}
.hf{height:32.280000pt;}
.h1f{height:34.137600pt;}
.hb{height:34.944000pt;}
.he{height:34.949867pt;}
.hd{height:34.950400pt;}
.h15{height:34.955733pt;}
.h10{height:34.961067pt;}
.h19{height:36.153600pt;}
.h18{height:36.467200pt;}
.hc{height:36.940800pt;}
.h6{height:37.014400pt;}
.h17{height:37.440000pt;}
.h3{height:39.004800pt;}
.h1e{height:40.640000pt;}
.h11{height:40.752000pt;}
.h14{height:41.560533pt;}
.h20{height:41.932800pt;}
.h5{height:41.973333pt;}
.h9{height:42.563200pt;}
.h21{height:42.812800pt;}
.h13{height:44.928000pt;}
.h8{height:46.924800pt;}
.h1a{height:50.918400pt;}
.h1c{height:51.206400pt;}
.h1d{height:54.268166pt;}
.h7{height:54.700800pt;}
.h1b{height:69.088000pt;}
.h4{height:73.453333pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x1{left:68.031467pt;}
.x16{left:79.370767pt;}
.x4{left:83.149600pt;}
.x11{left:84.934048pt;}
.x5{left:88.818427pt;}
.x15{left:95.353467pt;}
.x9{left:100.015733pt;}
.xa{left:105.112933pt;}
.x6{left:120.306400pt;}
.x2{left:128.927733pt;}
.x3{left:132.753333pt;}
.xd{left:135.528400pt;}
.xe{left:140.625600pt;}
.xf{left:161.812000pt;}
.x10{left:166.909200pt;}
.x1b{left:183.037333pt;}
.x14{left:193.154133pt;}
.x8{left:221.256267pt;}
.x7{left:262.110267pt;}
.x1c{left:317.046800pt;}
.x17{left:319.368167pt;}
.x18{left:330.707467pt;}
.x19{left:438.601333pt;}
.xb{left:455.669467pt;}
.xc{left:460.766667pt;}
.x12{left:475.269067pt;}
.x13{left:478.950667pt;}
.x1a{left:525.609067pt;}
}




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