
    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_92183d005305578e50d03888.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.020000;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_ac4884ff926a7ef49025498e.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_494beb47b9a76387b6b831bc.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_ba32d6f5de5edd3185b97ea4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.081000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_b1273bf59441d832eb9868ba.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.941000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_500ded73841cfc042038e0d4.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0329f250445f3485592e85ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.000000;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_8d15cb477a66a8fef1d3c22f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.958000;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;}
.m5{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);}
.m2{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);}
.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);}
.m3{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);}
.md{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.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.242500,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.m6{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);}
.m9{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.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);}
.m8{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);}
.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);}
.m4{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;}
.ls1{letter-spacing:-1.015200px;}
.ls3{letter-spacing:-0.225000px;}
.ls2{letter-spacing:-0.112800px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws17{word-spacing:-16.694400px;}
.ws94{word-spacing:-11.400000px;}
.wscc{word-spacing:-10.800000px;}
.ws77{word-spacing:-3.384000px;}
.ws56{word-spacing:-3.271200px;}
.ws41{word-spacing:-3.214800px;}
.ws2{word-spacing:-2.989200px;}
.ws10{word-spacing:-2.932800px;}
.ws55{word-spacing:-2.876400px;}
.wsb{word-spacing:-2.820000px;}
.ws4a{word-spacing:-2.763600px;}
.ws29{word-spacing:-2.650800px;}
.ws16{word-spacing:-2.538000px;}
.ws9{word-spacing:-2.425200px;}
.ws1{word-spacing:-2.312400px;}
.ws47{word-spacing:-2.256000px;}
.ws80{word-spacing:-2.199600px;}
.ws5f{word-spacing:-2.143200px;}
.ws75{word-spacing:-2.030400px;}
.ws6{word-spacing:-1.974000px;}
.wsf{word-spacing:-1.917600px;}
.ws82{word-spacing:-1.861200px;}
.ws49{word-spacing:-1.804800px;}
.ws9a{word-spacing:-1.782000px;}
.wsa2{word-spacing:-1.755000px;}
.wsc{word-spacing:-1.748400px;}
.ws73{word-spacing:-1.692000px;}
.wsb3{word-spacing:-1.665000px;}
.ws13{word-spacing:-1.635600px;}
.wsc4{word-spacing:-1.530000px;}
.ws36{word-spacing:-1.522800px;}
.ws61{word-spacing:-1.466400px;}
.ws4f{word-spacing:-1.410000px;}
.wsdc{word-spacing:-1.404000px;}
.wsd3{word-spacing:-1.395000px;}
.ws1d{word-spacing:-1.353600px;}
.ws35{word-spacing:-1.297200px;}
.wsae{word-spacing:-1.260000px;}
.ws95{word-spacing:-1.240800px;}
.ws2a{word-spacing:-1.184400px;}
.wsd6{word-spacing:-1.170000px;}
.ws14{word-spacing:-1.071600px;}
.wse{word-spacing:-1.015200px;}
.wsa{word-spacing:-0.958800px;}
.ws2f{word-spacing:-0.902400px;}
.ws11{word-spacing:-0.846000px;}
.ws76{word-spacing:-0.733200px;}
.ws5b{word-spacing:-0.676800px;}
.ws51{word-spacing:-0.620400px;}
.wsb2{word-spacing:-0.585000px;}
.ws83{word-spacing:-0.564000px;}
.ws91{word-spacing:-0.507600px;}
.ws1a{word-spacing:-0.451200px;}
.ws87{word-spacing:-0.394800px;}
.ws3c{word-spacing:-0.282000px;}
.ws78{word-spacing:-0.225600px;}
.ws9b{word-spacing:-0.216000px;}
.ws84{word-spacing:-0.169200px;}
.ws79{word-spacing:-0.112800px;}
.ws42{word-spacing:-0.056400px;}
.ws9f{word-spacing:-0.045000px;}
.ws0{word-spacing:0.000000px;}
.ws69{word-spacing:0.112800px;}
.ws99{word-spacing:0.169200px;}
.wsc3{word-spacing:0.180000px;}
.ws12{word-spacing:0.282000px;}
.ws8f{word-spacing:0.338400px;}
.ws2b{word-spacing:0.394800px;}
.ws53{word-spacing:0.451200px;}
.wsc8{word-spacing:0.495000px;}
.ws1e{word-spacing:0.507600px;}
.ws7e{word-spacing:0.564000px;}
.ws72{word-spacing:0.676800px;}
.wsbb{word-spacing:0.720000px;}
.ws15{word-spacing:0.733200px;}
.wsad{word-spacing:0.765000px;}
.ws38{word-spacing:0.789600px;}
.ws20{word-spacing:0.846000px;}
.ws7{word-spacing:0.902400px;}
.ws4e{word-spacing:0.958800px;}
.ws4{word-spacing:1.071600px;}
.ws90{word-spacing:1.128000px;}
.wsb0{word-spacing:1.170000px;}
.ws7c{word-spacing:1.184400px;}
.ws22{word-spacing:1.240800px;}
.ws6f{word-spacing:1.297200px;}
.ws34{word-spacing:1.353600px;}
.wscd{word-spacing:1.395000px;}
.wsba{word-spacing:1.440000px;}
.ws70{word-spacing:1.466400px;}
.wsdb{word-spacing:1.566000px;}
.ws5d{word-spacing:1.579200px;}
.ws9c{word-spacing:1.620000px;}
.ws92{word-spacing:1.635600px;}
.wsaa{word-spacing:1.665000px;}
.ws1c{word-spacing:1.692000px;}
.ws3b{word-spacing:1.748400px;}
.ws31{word-spacing:1.861200px;}
.ws59{word-spacing:1.974000px;}
.wsbc{word-spacing:1.980000px;}
.wsbd{word-spacing:2.025000px;}
.ws63{word-spacing:2.030400px;}
.ws3e{word-spacing:2.143200px;}
.ws33{word-spacing:2.199600px;}
.wsc0{word-spacing:2.205000px;}
.ws23{word-spacing:2.256000px;}
.ws3f{word-spacing:2.312400px;}
.ws5e{word-spacing:2.368800px;}
.ws44{word-spacing:2.425200px;}
.wsb5{word-spacing:2.430000px;}
.ws8c{word-spacing:2.481600px;}
.ws46{word-spacing:2.538000px;}
.ws8a{word-spacing:2.594400px;}
.ws64{word-spacing:2.820000px;}
.ws2d{word-spacing:2.876400px;}
.ws1b{word-spacing:2.932800px;}
.wsd9{word-spacing:3.015000px;}
.ws58{word-spacing:3.045600px;}
.ws6b{word-spacing:3.102000px;}
.ws7a{word-spacing:3.158400px;}
.ws9d{word-spacing:3.240000px;}
.ws50{word-spacing:3.271200px;}
.ws18{word-spacing:3.327600px;}
.wsbf{word-spacing:3.375000px;}
.wsd{word-spacing:3.496800px;}
.ws6a{word-spacing:3.553200px;}
.ws57{word-spacing:3.609600px;}
.ws26{word-spacing:3.666000px;}
.ws86{word-spacing:3.778800px;}
.ws40{word-spacing:3.835200px;}
.ws54{word-spacing:3.948000px;}
.wsa9{word-spacing:3.960000px;}
.ws81{word-spacing:4.004400px;}
.wsa3{word-spacing:4.005000px;}
.ws98{word-spacing:4.117200px;}
.wsd0{word-spacing:4.230000px;}
.wsbe{word-spacing:4.275000px;}
.ws4d{word-spacing:4.286400px;}
.ws28{word-spacing:4.342800px;}
.ws43{word-spacing:4.399200px;}
.ws8b{word-spacing:4.455600px;}
.ws21{word-spacing:4.512000px;}
.ws4c{word-spacing:4.568400px;}
.wsc5{word-spacing:4.590000px;}
.ws37{word-spacing:4.624800px;}
.ws3a{word-spacing:4.681200px;}
.ws30{word-spacing:4.737600px;}
.ws52{word-spacing:4.794000px;}
.wsa8{word-spacing:4.905000px;}
.ws68{word-spacing:4.963200px;}
.wsa5{word-spacing:5.040000px;}
.ws85{word-spacing:5.076000px;}
.wsa6{word-spacing:5.175000px;}
.wsb7{word-spacing:5.220000px;}
.wsde{word-spacing:5.292000px;}
.ws2e{word-spacing:5.301600px;}
.wsd5{word-spacing:5.310000px;}
.ws89{word-spacing:5.358000px;}
.wsd2{word-spacing:5.445000px;}
.ws48{word-spacing:5.470800px;}
.ws3d{word-spacing:5.527200px;}
.wsd4{word-spacing:5.535000px;}
.wsda{word-spacing:5.616000px;}
.ws39{word-spacing:5.640000px;}
.ws66{word-spacing:5.696400px;}
.ws8e{word-spacing:5.809200px;}
.ws2c{word-spacing:5.865600px;}
.ws6e{word-spacing:5.922000px;}
.wsb9{word-spacing:5.940000px;}
.ws65{word-spacing:6.034800px;}
.wsce{word-spacing:6.075000px;}
.ws93{word-spacing:6.091200px;}
.ws5c{word-spacing:6.147600px;}
.ws5{word-spacing:6.204000px;}
.ws7d{word-spacing:6.316800px;}
.ws8d{word-spacing:6.429600px;}
.ws74{word-spacing:6.542400px;}
.ws4b{word-spacing:6.655200px;}
.wsb4{word-spacing:6.795000px;}
.wsc1{word-spacing:6.930000px;}
.ws8{word-spacing:6.993600px;}
.ws3{word-spacing:7.050000px;}
.ws25{word-spacing:7.275600px;}
.ws7b{word-spacing:7.388400px;}
.ws32{word-spacing:7.444800px;}
.wscb{word-spacing:7.470000px;}
.ws27{word-spacing:7.501200px;}
.ws62{word-spacing:7.557600px;}
.wsa0{word-spacing:7.560000px;}
.ws7f{word-spacing:7.726800px;}
.wsc2{word-spacing:7.740000px;}
.ws96{word-spacing:7.783200px;}
.wsa1{word-spacing:7.830000px;}
.ws1f{word-spacing:7.839600px;}
.ws97{word-spacing:7.952400px;}
.wsa4{word-spacing:8.055000px;}
.ws6c{word-spacing:8.121600px;}
.ws5a{word-spacing:8.460000px;}
.ws19{word-spacing:8.572800px;}
.ws71{word-spacing:8.629200px;}
.ws45{word-spacing:8.798400px;}
.wscf{word-spacing:8.820000px;}
.ws9e{word-spacing:9.225000px;}
.ws67{word-spacing:9.362400px;}
.ws60{word-spacing:9.588000px;}
.wsdd{word-spacing:9.612000px;}
.wsc9{word-spacing:9.675000px;}
.wsb6{word-spacing:10.125000px;}
.wsd8{word-spacing:10.170000px;}
.ws24{word-spacing:10.208400px;}
.wsab{word-spacing:10.710000px;}
.wsb1{word-spacing:10.755000px;}
.wsc7{word-spacing:11.385000px;}
.wsaf{word-spacing:11.880000px;}
.wsd7{word-spacing:11.970000px;}
.wsa7{word-spacing:12.330000px;}
.wsac{word-spacing:12.600000px;}
.wsd1{word-spacing:12.960000px;}
.wsb8{word-spacing:13.635000px;}
.ws88{word-spacing:15.904800px;}
.wsc6{word-spacing:16.335000px;}
.ws6d{word-spacing:17.484000px;}
.wsca{word-spacing:19.890000px;}
._d{margin-left:-34.230000px;}
._a{margin-left:-26.282400px;}
._e{margin-left:-23.401200px;}
._f{margin-left:-18.847320px;}
._c{margin-left:-9.057000px;}
._7{margin-left:-7.314600px;}
._5{margin-left:-6.243480px;}
._3{margin-left:-4.422600px;}
._2{margin-left:-2.484000px;}
._4{margin-left:-1.015200px;}
._6{width:1.395000px;}
._8{width:2.820000px;}
._10{width:3.835200px;}
._1{width:4.860000px;}
._b{width:6.871920px;}
._11{width:49.837848px;}
._9{width:1163.925000px;}
._0{width:2237.895000px;}
.fc2{color:rgb(0,94,163);}
.fc1{color:rgb(135,20,110);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:45.000000px;}
.fs6{font-size:54.000000px;}
.fs3{font-size:56.400000px;}
.fs5{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs4{font-size:87.000000px;}
.fs2{font-size:138.000000px;}
.y0{bottom:0.000000px;}
.y7c{bottom:103.960650px;}
.yd5{bottom:103.965450px;}
.y51{bottom:103.967850px;}
.yb6{bottom:103.970250px;}
.y7b{bottom:103.977450px;}
.y106{bottom:103.979850px;}
.yea{bottom:104.003850px;}
.y20{bottom:104.644800px;}
.y14b{bottom:112.643850px;}
.y17e{bottom:113.388000px;}
.yd4{bottom:124.213050px;}
.y50{bottom:124.215450px;}
.yb5{bottom:124.217850px;}
.y7a{bottom:124.225050px;}
.y105{bottom:124.227450px;}
.ye9{bottom:124.251450px;}
.y14a{bottom:126.897600px;}
.y17d{bottom:127.641750px;}
.yd3{bottom:144.460650px;}
.y4f{bottom:144.463050px;}
.yb4{bottom:144.465450px;}
.y1f{bottom:144.472500px;}
.y79{bottom:144.472650px;}
.y104{bottom:144.475050px;}
.ye8{bottom:144.499050px;}
.y149{bottom:145.387950px;}
.y17c{bottom:146.120250px;}
.y148{bottom:159.641700px;}
.y17b{bottom:160.374000px;}
.y4e{bottom:164.710650px;}
.yb3{bottom:164.713050px;}
.y4d{bottom:164.715450px;}
.y1e{bottom:164.720100px;}
.y78{bottom:164.720250px;}
.y103{bottom:164.722650px;}
.yd2{bottom:164.725050px;}
.ye7{bottom:164.746650px;}
.y17a{bottom:174.627750px;}
.y147{bottom:178.147950px;}
.yb2{bottom:184.960650px;}
.y4c{bottom:184.963050px;}
.y1d{bottom:184.967700px;}
.y77{bottom:184.967850px;}
.y102{bottom:184.970250px;}
.yd1{bottom:184.972650px;}
.y92{bottom:184.977450px;}
.ye6{bottom:184.994250px;}
.y146{bottom:192.401700px;}
.y179{bottom:193.134000px;}
.y4b{bottom:205.210650px;}
.y1c{bottom:205.215300px;}
.y76{bottom:205.215450px;}
.y101{bottom:205.217850px;}
.yb1{bottom:205.220250px;}
.y91{bottom:205.225050px;}
.ye5{bottom:205.241850px;}
.y178{bottom:207.387750px;}
.y145{bottom:210.899850px;}
.y144{bottom:225.153600px;}
.y118{bottom:225.460650px;}
.y1b{bottom:225.462900px;}
.y75{bottom:225.463050px;}
.y100{bottom:225.465450px;}
.yb0{bottom:225.467850px;}
.y4a{bottom:225.472650px;}
.ye4{bottom:225.489450px;}
.y177{bottom:225.894000px;}
.y176{bottom:240.147750px;}
.y143{bottom:243.627750px;}
.y1a{bottom:245.710500px;}
.y74{bottom:245.710650px;}
.yff{bottom:245.713050px;}
.yaf{bottom:245.715450px;}
.y49{bottom:245.720250px;}
.ye3{bottom:245.737050px;}
.y142{bottom:257.881500px;}
.y175{bottom:258.645900px;}
.yfe{bottom:265.960650px;}
.y117{bottom:265.961400px;}
.yae{bottom:265.963050px;}
.yfd{bottom:265.965450px;}
.y48{bottom:265.967850px;}
.y19{bottom:265.972500px;}
.y73{bottom:265.975050px;}
.ye2{bottom:265.984650px;}
.y1a9{bottom:269.205600px;}
.y174{bottom:272.899650px;}
.y141{bottom:276.387750px;}
.yad{bottom:286.210650px;}
.yfc{bottom:286.213050px;}
.y47{bottom:286.215450px;}
.y18{bottom:286.220100px;}
.y72{bottom:286.222650px;}
.ye1{bottom:286.232250px;}
.y1a8{bottom:287.957100px;}
.y140{bottom:290.641500px;}
.y173{bottom:291.333600px;}
.y172{bottom:305.587350px;}
.yac{bottom:306.460650px;}
.y46{bottom:306.463050px;}
.y17{bottom:306.467700px;}
.y71{bottom:306.470250px;}
.ye0{bottom:306.479850px;}
.y1a6{bottom:306.707100px;}
.y1a7{bottom:306.708600px;}
.y13f{bottom:309.147750px;}
.y171{bottom:324.093600px;}
.y1a4{bottom:325.457100px;}
.y1a5{bottom:325.458600px;}
.y45{bottom:326.710650px;}
.y16{bottom:326.715300px;}
.yab{bottom:326.715450px;}
.y70{bottom:326.717850px;}
.y44{bottom:326.722650px;}
.ydf{bottom:326.727450px;}
.yfb{bottom:326.765850px;}
.y13e{bottom:327.654000px;}
.y170{bottom:338.347350px;}
.y13d{bottom:341.907750px;}
.y1a3{bottom:344.208600px;}
.y15{bottom:346.962900px;}
.yaa{bottom:346.963050px;}
.y6f{bottom:346.965450px;}
.y43{bottom:346.970250px;}
.yde{bottom:346.975050px;}
.yfa{bottom:347.013450px;}
.y13c{bottom:356.161500px;}
.y16f{bottom:356.853600px;}
.y14{bottom:367.210500px;}
.ya9{bottom:367.210650px;}
.y6e{bottom:367.213050px;}
.y42{bottom:367.217850px;}
.ydd{bottom:367.222650px;}
.y116{bottom:367.246650px;}
.yf9{bottom:367.261050px;}
.y16e{bottom:371.107350px;}
.y13b{bottom:374.663400px;}
.y6d{bottom:387.460650px;}
.ya8{bottom:387.463050px;}
.y41{bottom:387.465450px;}
.ydc{bottom:387.470250px;}
.y90{bottom:387.489450px;}
.y115{bottom:387.494250px;}
.yf8{bottom:387.508650px;}
.y16d{bottom:389.613600px;}
.y13a{bottom:393.149850px;}
.y16c{bottom:403.867350px;}
.y139{bottom:407.403600px;}
.y13{bottom:407.710500px;}
.ya7{bottom:407.710650px;}
.y40{bottom:407.713050px;}
.yd0{bottom:407.717850px;}
.y8f{bottom:407.737050px;}
.y114{bottom:407.741850px;}
.yf7{bottom:407.756250px;}
.y6c{bottom:407.777850px;}
.y138{bottom:421.657350px;}
.y16b{bottom:422.373600px;}
.y3f{bottom:427.960650px;}
.ycf{bottom:427.965450px;}
.y8e{bottom:427.984650px;}
.y113{bottom:427.989450px;}
.yf6{bottom:428.003850px;}
.y6b{bottom:428.025450px;}
.y16a{bottom:436.627350px;}
.y137{bottom:440.163600px;}
.ya6{bottom:448.210650px;}
.yce{bottom:448.213050px;}
.ya5{bottom:448.217850px;}
.y8d{bottom:448.232250px;}
.y112{bottom:448.237050px;}
.y3e{bottom:448.239450px;}
.yf5{bottom:448.251450px;}
.y6a{bottom:448.273050px;}
.y136{bottom:454.417350px;}
.y169{bottom:455.133600px;}
.ycd{bottom:468.460650px;}
.ya4{bottom:468.465450px;}
.ycc{bottom:468.467850px;}
.y8c{bottom:468.479850px;}
.y111{bottom:468.484650px;}
.y3d{bottom:468.487050px;}
.yf4{bottom:468.499050px;}
.y69{bottom:468.520650px;}
.y168{bottom:469.387350px;}
.y135{bottom:472.915650px;}
.y134{bottom:487.169400px;}
.y167{bottom:487.893600px;}
.y12{bottom:488.710500px;}
.y1a2{bottom:488.710650px;}
.ya3{bottom:488.713050px;}
.ycb{bottom:488.715450px;}
.y8b{bottom:488.727450px;}
.y110{bottom:488.732250px;}
.y3c{bottom:488.734650px;}
.yf3{bottom:488.746650px;}
.y68{bottom:488.768250px;}
.y166{bottom:502.147350px;}
.y133{bottom:505.663800px;}
.y11{bottom:508.960500px;}
.ya2{bottom:508.960650px;}
.yca{bottom:508.963050px;}
.y8a{bottom:508.975050px;}
.y10f{bottom:508.979850px;}
.y3b{bottom:508.982250px;}
.yf2{bottom:508.994250px;}
.y67{bottom:509.015850px;}
.y132{bottom:519.917550px;}
.y165{bottom:520.653600px;}
.yc9{bottom:529.210650px;}
.y89{bottom:529.222650px;}
.y10e{bottom:529.227450px;}
.y3a{bottom:529.229850px;}
.ya1{bottom:529.234650px;}
.y10{bottom:529.239300px;}
.yf1{bottom:529.241850px;}
.yc8{bottom:529.251450px;}
.y66{bottom:529.263450px;}
.y131{bottom:534.171300px;}
.y164{bottom:534.907350px;}
.ydb{bottom:549.460650px;}
.y1a1{bottom:549.462150px;}
.y88{bottom:549.470250px;}
.y10d{bottom:549.475050px;}
.y39{bottom:549.477450px;}
.ya0{bottom:549.482250px;}
.yf{bottom:549.486900px;}
.yf0{bottom:549.489450px;}
.yc7{bottom:549.499050px;}
.y65{bottom:549.511050px;}
.y130{bottom:552.669600px;}
.y163{bottom:553.413600px;}
.y12f{bottom:566.923350px;}
.y162{bottom:567.667350px;}
.y1a0{bottom:569.711400px;}
.y87{bottom:569.717850px;}
.y10c{bottom:569.722650px;}
.y38{bottom:569.725050px;}
.y9f{bottom:569.729850px;}
.ye{bottom:569.734500px;}
.yef{bottom:569.737050px;}
.yc6{bottom:569.746650px;}
.y64{bottom:569.758650px;}
.y12e{bottom:581.173350px;}
.y161{bottom:586.113600px;}
.y19f{bottom:589.960650px;}
.y86{bottom:589.965450px;}
.y10b{bottom:589.970250px;}
.y37{bottom:589.972650px;}
.y9e{bottom:589.977450px;}
.yd{bottom:589.982100px;}
.yee{bottom:589.984650px;}
.yc5{bottom:589.994250px;}
.y63{bottom:590.006250px;}
.y12d{bottom:599.671500px;}
.y85{bottom:610.213050px;}
.y10a{bottom:610.217850px;}
.y36{bottom:610.220250px;}
.y9d{bottom:610.225050px;}
.yc{bottom:610.229700px;}
.yed{bottom:610.232250px;}
.yc4{bottom:610.241850px;}
.y62{bottom:610.253850px;}
.y160{bottom:613.124850px;}
.y12c{bottom:613.925250px;}
.y84{bottom:630.460650px;}
.y83{bottom:630.463050px;}
.y109{bottom:630.465450px;}
.y35{bottom:630.467850px;}
.yda{bottom:630.470250px;}
.y9c{bottom:630.472650px;}
.yb{bottom:630.477300px;}
.yec{bottom:630.479850px;}
.yc3{bottom:630.489450px;}
.y61{bottom:630.501450px;}
.y15f{bottom:631.631100px;}
.y12b{bottom:632.386500px;}
.y15e{bottom:645.884850px;}
.y82{bottom:650.710650px;}
.y108{bottom:650.713050px;}
.y34{bottom:650.715450px;}
.yd9{bottom:650.717850px;}
.y9b{bottom:650.720250px;}
.ya{bottom:650.724900px;}
.yeb{bottom:650.727450px;}
.yc2{bottom:650.737050px;}
.y60{bottom:650.749050px;}
.y12a{bottom:650.892750px;}
.y19e{bottom:657.887100px;}
.y15d{bottom:664.391100px;}
.y18e{bottom:665.127300px;}
.y18f{bottom:665.131050px;}
.y129{bottom:665.146500px;}
.y107{bottom:670.960650px;}
.y33{bottom:670.963050px;}
.yd8{bottom:670.965450px;}
.y9a{bottom:670.967850px;}
.y9{bottom:670.972500px;}
.y81{bottom:670.975050px;}
.yc1{bottom:670.984650px;}
.y5f{bottom:670.996650px;}
.y19d{bottom:672.140850px;}
.y15c{bottom:678.644850px;}
.y18d{bottom:679.381050px;}
.y128{bottom:683.652750px;}
.y19c{bottom:690.639150px;}
.y32{bottom:691.210650px;}
.yd7{bottom:691.213050px;}
.y99{bottom:691.215450px;}
.y8{bottom:691.220100px;}
.y80{bottom:691.222650px;}
.yc0{bottom:691.232250px;}
.y5e{bottom:691.244250px;}
.y15b{bottom:692.898600px;}
.y18c{bottom:697.875000px;}
.y127{bottom:702.159000px;}
.y19b{bottom:704.892900px;}
.y15a{bottom:711.404850px;}
.yd6{bottom:711.460650px;}
.y98{bottom:711.463050px;}
.y7{bottom:711.467700px;}
.y31{bottom:711.467850px;}
.y7f{bottom:711.470250px;}
.ybf{bottom:711.479850px;}
.y5d{bottom:711.491850px;}
.y18b{bottom:712.128750px;}
.y126{bottom:720.665250px;}
.y19a{bottom:723.391050px;}
.y18a{bottom:730.635000px;}
.y97{bottom:731.710650px;}
.y6{bottom:731.715300px;}
.y30{bottom:731.715450px;}
.y7e{bottom:731.717850px;}
.ybe{bottom:731.727450px;}
.y5c{bottom:731.739450px;}
.y125{bottom:734.919000px;}
.y199{bottom:737.644800px;}
.y159{bottom:742.657350px;}
.y96{bottom:751.960650px;}
.y5{bottom:751.962900px;}
.y2f{bottom:751.963050px;}
.y7d{bottom:751.965450px;}
.ybd{bottom:751.975050px;}
.y5b{bottom:751.987050px;}
.y124{bottom:753.425250px;}
.y198{bottom:756.142950px;}
.y158{bottom:756.911100px;}
.y189{bottom:757.637250px;}
.y123{bottom:767.679000px;}
.y197{bottom:770.396700px;}
.y188{bottom:771.891000px;}
.y4{bottom:772.210500px;}
.y2e{bottom:772.210650px;}
.y2d{bottom:772.213050px;}
.y95{bottom:772.215450px;}
.ybc{bottom:772.222650px;}
.y5a{bottom:772.234650px;}
.y157{bottom:775.417350px;}
.y122{bottom:786.185250px;}
.y196{bottom:788.869800px;}
.y156{bottom:789.671100px;}
.y187{bottom:790.392900px;}
.y2c{bottom:792.460650px;}
.y94{bottom:792.463050px;}
.ybb{bottom:792.470250px;}
.y59{bottom:792.482250px;}
.y121{bottom:800.439000px;}
.y195{bottom:803.123550px;}
.y155{bottom:808.177350px;}
.y93{bottom:812.710650px;}
.yba{bottom:812.717850px;}
.y2b{bottom:812.727450px;}
.y58{bottom:812.729850px;}
.y186{bottom:817.382700px;}
.y120{bottom:818.937300px;}
.y194{bottom:821.629800px;}
.y154{bottom:822.431100px;}
.y185{bottom:831.636450px;}
.yb9{bottom:832.965450px;}
.y2a{bottom:832.975050px;}
.y57{bottom:832.977450px;}
.y11f{bottom:833.191050px;}
.y193{bottom:835.883550px;}
.y153{bottom:840.937350px;}
.y184{bottom:850.142700px;}
.y11e{bottom:851.677350px;}
.yb8{bottom:853.213050px;}
.y29{bottom:853.222650px;}
.y56{bottom:853.225050px;}
.y192{bottom:854.389800px;}
.y152{bottom:855.191100px;}
.y183{bottom:864.396450px;}
.y11d{bottom:865.931100px;}
.y191{bottom:868.643550px;}
.y151{bottom:869.444850px;}
.yb7{bottom:873.460650px;}
.y28{bottom:873.470250px;}
.y55{bottom:873.472650px;}
.y11c{bottom:880.184850px;}
.y190{bottom:882.897300px;}
.y182{bottom:882.902700px;}
.y150{bottom:887.943150px;}
.y3{bottom:893.710500px;}
.y27{bottom:893.717850px;}
.y54{bottom:893.720250px;}
.y11b{bottom:898.691100px;}
.y14f{bottom:902.196900px;}
.y11a{bottom:912.944850px;}
.y26{bottom:913.965450px;}
.y53{bottom:913.967850px;}
.y181{bottom:914.160600px;}
.y14d{bottom:920.686350px;}
.y14e{bottom:920.698950px;}
.y25{bottom:934.213050px;}
.y52{bottom:934.215450px;}
.y14c{bottom:934.940100px;}
.y119{bottom:935.698950px;}
.y24{bottom:954.460650px;}
.y23{bottom:954.463050px;}
.y180{bottom:959.918550px;}
.y17f{bottom:974.172300px;}
.y2{bottom:974.710500px;}
.y22{bottom:974.710650px;}
.y1{bottom:1037.951850px;}
.y21{bottom:1037.952000px;}
.ha{height:32.490000px;}
.h2{height:35.415000px;}
.hb{height:40.545000px;}
.hc{height:42.498000px;}
.h8{height:44.859000px;}
.h5{height:47.883600px;}
.h7{height:48.052800px;}
.h9{height:48.654000px;}
.h3{height:54.060000px;}
.h6{height:62.640000px;}
.h4{height:117.162000px;}
.h1{height:1105.500000px;}
.h0{height:1105.512000px;}
.w1{width:744.000000px;}
.w0{width:744.094500px;}
.x0{left:0.000000px;}
.x1{left:72.283500px;}
.xa{left:79.514100px;}
.xc{left:83.760600px;}
.x16{left:85.039425px;}
.x2{left:89.293458px;}
.x11{left:93.543300px;}
.xd{left:116.493300px;}
.x1c{left:117.516300px;}
.x1b{left:123.307050px;}
.x15{left:134.873250px;}
.x4{left:137.477250px;}
.x14{left:152.398500px;}
.x8{left:159.285150px;}
.x12{left:165.722700px;}
.x3{left:170.979900px;}
.x5{left:193.719900px;}
.x1e{left:211.506300px;}
.x1a{left:334.941000px;}
.x19{left:380.551200px;}
.x17{left:393.309450px;}
.x6{left:504.257250px;}
.x1d{left:515.483550px;}
.x7{left:537.959850px;}
.x18{left:549.132600px;}
.x13{left:608.366400px;}
.xb{left:623.179650px;}
.x10{left:648.039300px;}
.xf{left:667.720950px;}
.x9{left:669.438000px;}
.xe{left:671.811000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:-0.902400pt;}
.ls3{letter-spacing:-0.200000pt;}
.ls2{letter-spacing:-0.100267pt;}
.ls0{letter-spacing:0.000000pt;}
.ws17{word-spacing:-14.839467pt;}
.ws94{word-spacing:-10.133333pt;}
.wscc{word-spacing:-9.600000pt;}
.ws77{word-spacing:-3.008000pt;}
.ws56{word-spacing:-2.907733pt;}
.ws41{word-spacing:-2.857600pt;}
.ws2{word-spacing:-2.657067pt;}
.ws10{word-spacing:-2.606933pt;}
.ws55{word-spacing:-2.556800pt;}
.wsb{word-spacing:-2.506667pt;}
.ws4a{word-spacing:-2.456533pt;}
.ws29{word-spacing:-2.356267pt;}
.ws16{word-spacing:-2.256000pt;}
.ws9{word-spacing:-2.155733pt;}
.ws1{word-spacing:-2.055467pt;}
.ws47{word-spacing:-2.005333pt;}
.ws80{word-spacing:-1.955200pt;}
.ws5f{word-spacing:-1.905067pt;}
.ws75{word-spacing:-1.804800pt;}
.ws6{word-spacing:-1.754667pt;}
.wsf{word-spacing:-1.704533pt;}
.ws82{word-spacing:-1.654400pt;}
.ws49{word-spacing:-1.604267pt;}
.ws9a{word-spacing:-1.584000pt;}
.wsa2{word-spacing:-1.560000pt;}
.wsc{word-spacing:-1.554133pt;}
.ws73{word-spacing:-1.504000pt;}
.wsb3{word-spacing:-1.480000pt;}
.ws13{word-spacing:-1.453867pt;}
.wsc4{word-spacing:-1.360000pt;}
.ws36{word-spacing:-1.353600pt;}
.ws61{word-spacing:-1.303467pt;}
.ws4f{word-spacing:-1.253333pt;}
.wsdc{word-spacing:-1.248000pt;}
.wsd3{word-spacing:-1.240000pt;}
.ws1d{word-spacing:-1.203200pt;}
.ws35{word-spacing:-1.153067pt;}
.wsae{word-spacing:-1.120000pt;}
.ws95{word-spacing:-1.102933pt;}
.ws2a{word-spacing:-1.052800pt;}
.wsd6{word-spacing:-1.040000pt;}
.ws14{word-spacing:-0.952533pt;}
.wse{word-spacing:-0.902400pt;}
.wsa{word-spacing:-0.852267pt;}
.ws2f{word-spacing:-0.802133pt;}
.ws11{word-spacing:-0.752000pt;}
.ws76{word-spacing:-0.651733pt;}
.ws5b{word-spacing:-0.601600pt;}
.ws51{word-spacing:-0.551467pt;}
.wsb2{word-spacing:-0.520000pt;}
.ws83{word-spacing:-0.501333pt;}
.ws91{word-spacing:-0.451200pt;}
.ws1a{word-spacing:-0.401067pt;}
.ws87{word-spacing:-0.350933pt;}
.ws3c{word-spacing:-0.250667pt;}
.ws78{word-spacing:-0.200533pt;}
.ws9b{word-spacing:-0.192000pt;}
.ws84{word-spacing:-0.150400pt;}
.ws79{word-spacing:-0.100267pt;}
.ws42{word-spacing:-0.050133pt;}
.ws9f{word-spacing:-0.040000pt;}
.ws0{word-spacing:0.000000pt;}
.ws69{word-spacing:0.100267pt;}
.ws99{word-spacing:0.150400pt;}
.wsc3{word-spacing:0.160000pt;}
.ws12{word-spacing:0.250667pt;}
.ws8f{word-spacing:0.300800pt;}
.ws2b{word-spacing:0.350933pt;}
.ws53{word-spacing:0.401067pt;}
.wsc8{word-spacing:0.440000pt;}
.ws1e{word-spacing:0.451200pt;}
.ws7e{word-spacing:0.501333pt;}
.ws72{word-spacing:0.601600pt;}
.wsbb{word-spacing:0.640000pt;}
.ws15{word-spacing:0.651733pt;}
.wsad{word-spacing:0.680000pt;}
.ws38{word-spacing:0.701867pt;}
.ws20{word-spacing:0.752000pt;}
.ws7{word-spacing:0.802133pt;}
.ws4e{word-spacing:0.852267pt;}
.ws4{word-spacing:0.952533pt;}
.ws90{word-spacing:1.002667pt;}
.wsb0{word-spacing:1.040000pt;}
.ws7c{word-spacing:1.052800pt;}
.ws22{word-spacing:1.102933pt;}
.ws6f{word-spacing:1.153067pt;}
.ws34{word-spacing:1.203200pt;}
.wscd{word-spacing:1.240000pt;}
.wsba{word-spacing:1.280000pt;}
.ws70{word-spacing:1.303467pt;}
.wsdb{word-spacing:1.392000pt;}
.ws5d{word-spacing:1.403733pt;}
.ws9c{word-spacing:1.440000pt;}
.ws92{word-spacing:1.453867pt;}
.wsaa{word-spacing:1.480000pt;}
.ws1c{word-spacing:1.504000pt;}
.ws3b{word-spacing:1.554133pt;}
.ws31{word-spacing:1.654400pt;}
.ws59{word-spacing:1.754667pt;}
.wsbc{word-spacing:1.760000pt;}
.wsbd{word-spacing:1.800000pt;}
.ws63{word-spacing:1.804800pt;}
.ws3e{word-spacing:1.905067pt;}
.ws33{word-spacing:1.955200pt;}
.wsc0{word-spacing:1.960000pt;}
.ws23{word-spacing:2.005333pt;}
.ws3f{word-spacing:2.055467pt;}
.ws5e{word-spacing:2.105600pt;}
.ws44{word-spacing:2.155733pt;}
.wsb5{word-spacing:2.160000pt;}
.ws8c{word-spacing:2.205867pt;}
.ws46{word-spacing:2.256000pt;}
.ws8a{word-spacing:2.306133pt;}
.ws64{word-spacing:2.506667pt;}
.ws2d{word-spacing:2.556800pt;}
.ws1b{word-spacing:2.606933pt;}
.wsd9{word-spacing:2.680000pt;}
.ws58{word-spacing:2.707200pt;}
.ws6b{word-spacing:2.757333pt;}
.ws7a{word-spacing:2.807467pt;}
.ws9d{word-spacing:2.880000pt;}
.ws50{word-spacing:2.907733pt;}
.ws18{word-spacing:2.957867pt;}
.wsbf{word-spacing:3.000000pt;}
.wsd{word-spacing:3.108267pt;}
.ws6a{word-spacing:3.158400pt;}
.ws57{word-spacing:3.208533pt;}
.ws26{word-spacing:3.258667pt;}
.ws86{word-spacing:3.358933pt;}
.ws40{word-spacing:3.409067pt;}
.ws54{word-spacing:3.509333pt;}
.wsa9{word-spacing:3.520000pt;}
.ws81{word-spacing:3.559467pt;}
.wsa3{word-spacing:3.560000pt;}
.ws98{word-spacing:3.659733pt;}
.wsd0{word-spacing:3.760000pt;}
.wsbe{word-spacing:3.800000pt;}
.ws4d{word-spacing:3.810133pt;}
.ws28{word-spacing:3.860267pt;}
.ws43{word-spacing:3.910400pt;}
.ws8b{word-spacing:3.960533pt;}
.ws21{word-spacing:4.010667pt;}
.ws4c{word-spacing:4.060800pt;}
.wsc5{word-spacing:4.080000pt;}
.ws37{word-spacing:4.110933pt;}
.ws3a{word-spacing:4.161067pt;}
.ws30{word-spacing:4.211200pt;}
.ws52{word-spacing:4.261333pt;}
.wsa8{word-spacing:4.360000pt;}
.ws68{word-spacing:4.411733pt;}
.wsa5{word-spacing:4.480000pt;}
.ws85{word-spacing:4.512000pt;}
.wsa6{word-spacing:4.600000pt;}
.wsb7{word-spacing:4.640000pt;}
.wsde{word-spacing:4.704000pt;}
.ws2e{word-spacing:4.712533pt;}
.wsd5{word-spacing:4.720000pt;}
.ws89{word-spacing:4.762667pt;}
.wsd2{word-spacing:4.840000pt;}
.ws48{word-spacing:4.862933pt;}
.ws3d{word-spacing:4.913067pt;}
.wsd4{word-spacing:4.920000pt;}
.wsda{word-spacing:4.992000pt;}
.ws39{word-spacing:5.013333pt;}
.ws66{word-spacing:5.063467pt;}
.ws8e{word-spacing:5.163733pt;}
.ws2c{word-spacing:5.213867pt;}
.ws6e{word-spacing:5.264000pt;}
.wsb9{word-spacing:5.280000pt;}
.ws65{word-spacing:5.364267pt;}
.wsce{word-spacing:5.400000pt;}
.ws93{word-spacing:5.414400pt;}
.ws5c{word-spacing:5.464533pt;}
.ws5{word-spacing:5.514667pt;}
.ws7d{word-spacing:5.614933pt;}
.ws8d{word-spacing:5.715200pt;}
.ws74{word-spacing:5.815467pt;}
.ws4b{word-spacing:5.915733pt;}
.wsb4{word-spacing:6.040000pt;}
.wsc1{word-spacing:6.160000pt;}
.ws8{word-spacing:6.216533pt;}
.ws3{word-spacing:6.266667pt;}
.ws25{word-spacing:6.467200pt;}
.ws7b{word-spacing:6.567467pt;}
.ws32{word-spacing:6.617600pt;}
.wscb{word-spacing:6.640000pt;}
.ws27{word-spacing:6.667733pt;}
.ws62{word-spacing:6.717867pt;}
.wsa0{word-spacing:6.720000pt;}
.ws7f{word-spacing:6.868267pt;}
.wsc2{word-spacing:6.880000pt;}
.ws96{word-spacing:6.918400pt;}
.wsa1{word-spacing:6.960000pt;}
.ws1f{word-spacing:6.968533pt;}
.ws97{word-spacing:7.068800pt;}
.wsa4{word-spacing:7.160000pt;}
.ws6c{word-spacing:7.219200pt;}
.ws5a{word-spacing:7.520000pt;}
.ws19{word-spacing:7.620267pt;}
.ws71{word-spacing:7.670400pt;}
.ws45{word-spacing:7.820800pt;}
.wscf{word-spacing:7.840000pt;}
.ws9e{word-spacing:8.200000pt;}
.ws67{word-spacing:8.322133pt;}
.ws60{word-spacing:8.522667pt;}
.wsdd{word-spacing:8.544000pt;}
.wsc9{word-spacing:8.600000pt;}
.wsb6{word-spacing:9.000000pt;}
.wsd8{word-spacing:9.040000pt;}
.ws24{word-spacing:9.074133pt;}
.wsab{word-spacing:9.520000pt;}
.wsb1{word-spacing:9.560000pt;}
.wsc7{word-spacing:10.120000pt;}
.wsaf{word-spacing:10.560000pt;}
.wsd7{word-spacing:10.640000pt;}
.wsa7{word-spacing:10.960000pt;}
.wsac{word-spacing:11.200000pt;}
.wsd1{word-spacing:11.520000pt;}
.wsb8{word-spacing:12.120000pt;}
.ws88{word-spacing:14.137600pt;}
.wsc6{word-spacing:14.520000pt;}
.ws6d{word-spacing:15.541333pt;}
.wsca{word-spacing:17.680000pt;}
._d{margin-left:-30.426667pt;}
._a{margin-left:-23.362133pt;}
._e{margin-left:-20.801067pt;}
._f{margin-left:-16.753173pt;}
._c{margin-left:-8.050667pt;}
._7{margin-left:-6.501867pt;}
._5{margin-left:-5.549760pt;}
._3{margin-left:-3.931200pt;}
._2{margin-left:-2.208000pt;}
._4{margin-left:-0.902400pt;}
._6{width:1.240000pt;}
._8{width:2.506667pt;}
._10{width:3.409067pt;}
._1{width:4.320000pt;}
._b{width:6.108373pt;}
._11{width:44.300310pt;}
._9{width:1034.600000pt;}
._0{width:1989.240000pt;}
.fs0{font-size:40.000000pt;}
.fs6{font-size:48.000000pt;}
.fs3{font-size:50.133333pt;}
.fs5{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs4{font-size:77.333333pt;}
.fs2{font-size:122.666667pt;}
.y0{bottom:0.000000pt;}
.y7c{bottom:92.409467pt;}
.yd5{bottom:92.413733pt;}
.y51{bottom:92.415867pt;}
.yb6{bottom:92.418000pt;}
.y7b{bottom:92.424400pt;}
.y106{bottom:92.426533pt;}
.yea{bottom:92.447867pt;}
.y20{bottom:93.017600pt;}
.y14b{bottom:100.127867pt;}
.y17e{bottom:100.789333pt;}
.yd4{bottom:110.411600pt;}
.y50{bottom:110.413733pt;}
.yb5{bottom:110.415867pt;}
.y7a{bottom:110.422267pt;}
.y105{bottom:110.424400pt;}
.ye9{bottom:110.445733pt;}
.y14a{bottom:112.797867pt;}
.y17d{bottom:113.459333pt;}
.yd3{bottom:128.409467pt;}
.y4f{bottom:128.411600pt;}
.yb4{bottom:128.413733pt;}
.y1f{bottom:128.420000pt;}
.y79{bottom:128.420133pt;}
.y104{bottom:128.422267pt;}
.ye8{bottom:128.443600pt;}
.y149{bottom:129.233733pt;}
.y17c{bottom:129.884667pt;}
.y148{bottom:141.903733pt;}
.y17b{bottom:142.554667pt;}
.y4e{bottom:146.409467pt;}
.yb3{bottom:146.411600pt;}
.y4d{bottom:146.413733pt;}
.y1e{bottom:146.417867pt;}
.y78{bottom:146.418000pt;}
.y103{bottom:146.420133pt;}
.yd2{bottom:146.422267pt;}
.ye7{bottom:146.441467pt;}
.y17a{bottom:155.224667pt;}
.y147{bottom:158.353733pt;}
.yb2{bottom:164.409467pt;}
.y4c{bottom:164.411600pt;}
.y1d{bottom:164.415733pt;}
.y77{bottom:164.415867pt;}
.y102{bottom:164.418000pt;}
.yd1{bottom:164.420133pt;}
.y92{bottom:164.424400pt;}
.ye6{bottom:164.439333pt;}
.y146{bottom:171.023733pt;}
.y179{bottom:171.674667pt;}
.y4b{bottom:182.409467pt;}
.y1c{bottom:182.413600pt;}
.y76{bottom:182.413733pt;}
.y101{bottom:182.415867pt;}
.yb1{bottom:182.418000pt;}
.y91{bottom:182.422267pt;}
.ye5{bottom:182.437200pt;}
.y178{bottom:184.344667pt;}
.y145{bottom:187.466533pt;}
.y144{bottom:200.136533pt;}
.y118{bottom:200.409467pt;}
.y1b{bottom:200.411467pt;}
.y75{bottom:200.411600pt;}
.y100{bottom:200.413733pt;}
.yb0{bottom:200.415867pt;}
.y4a{bottom:200.420133pt;}
.ye4{bottom:200.435067pt;}
.y177{bottom:200.794667pt;}
.y176{bottom:213.464667pt;}
.y143{bottom:216.558000pt;}
.y1a{bottom:218.409333pt;}
.y74{bottom:218.409467pt;}
.yff{bottom:218.411600pt;}
.yaf{bottom:218.413733pt;}
.y49{bottom:218.418000pt;}
.ye3{bottom:218.432933pt;}
.y142{bottom:229.228000pt;}
.y175{bottom:229.907467pt;}
.yfe{bottom:236.409467pt;}
.y117{bottom:236.410133pt;}
.yae{bottom:236.411600pt;}
.yfd{bottom:236.413733pt;}
.y48{bottom:236.415867pt;}
.y19{bottom:236.420000pt;}
.y73{bottom:236.422267pt;}
.ye2{bottom:236.430800pt;}
.y1a9{bottom:239.293867pt;}
.y174{bottom:242.577467pt;}
.y141{bottom:245.678000pt;}
.yad{bottom:254.409467pt;}
.yfc{bottom:254.411600pt;}
.y47{bottom:254.413733pt;}
.y18{bottom:254.417867pt;}
.y72{bottom:254.420133pt;}
.ye1{bottom:254.428667pt;}
.y1a8{bottom:255.961867pt;}
.y140{bottom:258.348000pt;}
.y173{bottom:258.963200pt;}
.y172{bottom:271.633200pt;}
.yac{bottom:272.409467pt;}
.y46{bottom:272.411600pt;}
.y17{bottom:272.415733pt;}
.y71{bottom:272.418000pt;}
.ye0{bottom:272.426533pt;}
.y1a6{bottom:272.628533pt;}
.y1a7{bottom:272.629867pt;}
.y13f{bottom:274.798000pt;}
.y171{bottom:288.083200pt;}
.y1a4{bottom:289.295200pt;}
.y1a5{bottom:289.296533pt;}
.y45{bottom:290.409467pt;}
.y16{bottom:290.413600pt;}
.yab{bottom:290.413733pt;}
.y70{bottom:290.415867pt;}
.y44{bottom:290.420133pt;}
.ydf{bottom:290.424400pt;}
.yfb{bottom:290.458533pt;}
.y13e{bottom:291.248000pt;}
.y170{bottom:300.753200pt;}
.y13d{bottom:303.918000pt;}
.y1a3{bottom:305.963200pt;}
.y15{bottom:308.411467pt;}
.yaa{bottom:308.411600pt;}
.y6f{bottom:308.413733pt;}
.y43{bottom:308.418000pt;}
.yde{bottom:308.422267pt;}
.yfa{bottom:308.456400pt;}
.y13c{bottom:316.588000pt;}
.y16f{bottom:317.203200pt;}
.y14{bottom:326.409333pt;}
.ya9{bottom:326.409467pt;}
.y6e{bottom:326.411600pt;}
.y42{bottom:326.415867pt;}
.ydd{bottom:326.420133pt;}
.y116{bottom:326.441467pt;}
.yf9{bottom:326.454267pt;}
.y16e{bottom:329.873200pt;}
.y13b{bottom:333.034133pt;}
.y6d{bottom:344.409467pt;}
.ya8{bottom:344.411600pt;}
.y41{bottom:344.413733pt;}
.ydc{bottom:344.418000pt;}
.y90{bottom:344.435067pt;}
.y115{bottom:344.439333pt;}
.yf8{bottom:344.452133pt;}
.y16d{bottom:346.323200pt;}
.y13a{bottom:349.466533pt;}
.y16c{bottom:358.993200pt;}
.y139{bottom:362.136533pt;}
.y13{bottom:362.409333pt;}
.ya7{bottom:362.409467pt;}
.y40{bottom:362.411600pt;}
.yd0{bottom:362.415867pt;}
.y8f{bottom:362.432933pt;}
.y114{bottom:362.437200pt;}
.yf7{bottom:362.450000pt;}
.y6c{bottom:362.469200pt;}
.y138{bottom:374.806533pt;}
.y16b{bottom:375.443200pt;}
.y3f{bottom:380.409467pt;}
.ycf{bottom:380.413733pt;}
.y8e{bottom:380.430800pt;}
.y113{bottom:380.435067pt;}
.yf6{bottom:380.447867pt;}
.y6b{bottom:380.467067pt;}
.y16a{bottom:388.113200pt;}
.y137{bottom:391.256533pt;}
.ya6{bottom:398.409467pt;}
.yce{bottom:398.411600pt;}
.ya5{bottom:398.415867pt;}
.y8d{bottom:398.428667pt;}
.y112{bottom:398.432933pt;}
.y3e{bottom:398.435067pt;}
.yf5{bottom:398.445733pt;}
.y6a{bottom:398.464933pt;}
.y136{bottom:403.926533pt;}
.y169{bottom:404.563200pt;}
.ycd{bottom:416.409467pt;}
.ya4{bottom:416.413733pt;}
.ycc{bottom:416.415867pt;}
.y8c{bottom:416.426533pt;}
.y111{bottom:416.430800pt;}
.y3d{bottom:416.432933pt;}
.yf4{bottom:416.443600pt;}
.y69{bottom:416.462800pt;}
.y168{bottom:417.233200pt;}
.y135{bottom:420.369467pt;}
.y134{bottom:433.039467pt;}
.y167{bottom:433.683200pt;}
.y12{bottom:434.409333pt;}
.y1a2{bottom:434.409467pt;}
.ya3{bottom:434.411600pt;}
.ycb{bottom:434.413733pt;}
.y8b{bottom:434.424400pt;}
.y110{bottom:434.428667pt;}
.y3c{bottom:434.430800pt;}
.yf3{bottom:434.441467pt;}
.y68{bottom:434.460667pt;}
.y166{bottom:446.353200pt;}
.y133{bottom:449.478933pt;}
.y11{bottom:452.409333pt;}
.ya2{bottom:452.409467pt;}
.yca{bottom:452.411600pt;}
.y8a{bottom:452.422267pt;}
.y10f{bottom:452.426533pt;}
.y3b{bottom:452.428667pt;}
.yf2{bottom:452.439333pt;}
.y67{bottom:452.458533pt;}
.y132{bottom:462.148933pt;}
.y165{bottom:462.803200pt;}
.yc9{bottom:470.409467pt;}
.y89{bottom:470.420133pt;}
.y10e{bottom:470.424400pt;}
.y3a{bottom:470.426533pt;}
.ya1{bottom:470.430800pt;}
.y10{bottom:470.434933pt;}
.yf1{bottom:470.437200pt;}
.yc8{bottom:470.445733pt;}
.y66{bottom:470.456400pt;}
.y131{bottom:474.818933pt;}
.y164{bottom:475.473200pt;}
.ydb{bottom:488.409467pt;}
.y1a1{bottom:488.410800pt;}
.y88{bottom:488.418000pt;}
.y10d{bottom:488.422267pt;}
.y39{bottom:488.424400pt;}
.ya0{bottom:488.428667pt;}
.yf{bottom:488.432800pt;}
.yf0{bottom:488.435067pt;}
.yc7{bottom:488.443600pt;}
.y65{bottom:488.454267pt;}
.y130{bottom:491.261867pt;}
.y163{bottom:491.923200pt;}
.y12f{bottom:503.931867pt;}
.y162{bottom:504.593200pt;}
.y1a0{bottom:506.410133pt;}
.y87{bottom:506.415867pt;}
.y10c{bottom:506.420133pt;}
.y38{bottom:506.422267pt;}
.y9f{bottom:506.426533pt;}
.ye{bottom:506.430667pt;}
.yef{bottom:506.432933pt;}
.yc6{bottom:506.441467pt;}
.y64{bottom:506.452133pt;}
.y12e{bottom:516.598533pt;}
.y161{bottom:520.989867pt;}
.y19f{bottom:524.409467pt;}
.y86{bottom:524.413733pt;}
.y10b{bottom:524.418000pt;}
.y37{bottom:524.420133pt;}
.y9e{bottom:524.424400pt;}
.yd{bottom:524.428533pt;}
.yee{bottom:524.430800pt;}
.yc5{bottom:524.439333pt;}
.y63{bottom:524.450000pt;}
.y12d{bottom:533.041333pt;}
.y85{bottom:542.411600pt;}
.y10a{bottom:542.415867pt;}
.y36{bottom:542.418000pt;}
.y9d{bottom:542.422267pt;}
.yc{bottom:542.426400pt;}
.yed{bottom:542.428667pt;}
.yc4{bottom:542.437200pt;}
.y62{bottom:542.447867pt;}
.y160{bottom:544.999867pt;}
.y12c{bottom:545.711333pt;}
.y84{bottom:560.409467pt;}
.y83{bottom:560.411600pt;}
.y109{bottom:560.413733pt;}
.y35{bottom:560.415867pt;}
.yda{bottom:560.418000pt;}
.y9c{bottom:560.420133pt;}
.yb{bottom:560.424267pt;}
.yec{bottom:560.426533pt;}
.yc3{bottom:560.435067pt;}
.y61{bottom:560.445733pt;}
.y15f{bottom:561.449867pt;}
.y12b{bottom:562.121333pt;}
.y15e{bottom:574.119867pt;}
.y82{bottom:578.409467pt;}
.y108{bottom:578.411600pt;}
.y34{bottom:578.413733pt;}
.yd9{bottom:578.415867pt;}
.y9b{bottom:578.418000pt;}
.ya{bottom:578.422133pt;}
.yeb{bottom:578.424400pt;}
.yc2{bottom:578.432933pt;}
.y60{bottom:578.443600pt;}
.y12a{bottom:578.571333pt;}
.y19e{bottom:584.788533pt;}
.y15d{bottom:590.569867pt;}
.y18e{bottom:591.224267pt;}
.y18f{bottom:591.227600pt;}
.y129{bottom:591.241333pt;}
.y107{bottom:596.409467pt;}
.y33{bottom:596.411600pt;}
.yd8{bottom:596.413733pt;}
.y9a{bottom:596.415867pt;}
.y9{bottom:596.420000pt;}
.y81{bottom:596.422267pt;}
.yc1{bottom:596.430800pt;}
.y5f{bottom:596.441467pt;}
.y19d{bottom:597.458533pt;}
.y15c{bottom:603.239867pt;}
.y18d{bottom:603.894267pt;}
.y128{bottom:607.691333pt;}
.y19c{bottom:613.901467pt;}
.y32{bottom:614.409467pt;}
.yd7{bottom:614.411600pt;}
.y99{bottom:614.413733pt;}
.y8{bottom:614.417867pt;}
.y80{bottom:614.420133pt;}
.yc0{bottom:614.428667pt;}
.y5e{bottom:614.439333pt;}
.y15b{bottom:615.909867pt;}
.y18c{bottom:620.333333pt;}
.y127{bottom:624.141333pt;}
.y19b{bottom:626.571467pt;}
.y15a{bottom:632.359867pt;}
.yd6{bottom:632.409467pt;}
.y98{bottom:632.411600pt;}
.y7{bottom:632.415733pt;}
.y31{bottom:632.415867pt;}
.y7f{bottom:632.418000pt;}
.ybf{bottom:632.426533pt;}
.y5d{bottom:632.437200pt;}
.y18b{bottom:633.003333pt;}
.y126{bottom:640.591333pt;}
.y19a{bottom:643.014267pt;}
.y18a{bottom:649.453333pt;}
.y97{bottom:650.409467pt;}
.y6{bottom:650.413600pt;}
.y30{bottom:650.413733pt;}
.y7e{bottom:650.415867pt;}
.ybe{bottom:650.424400pt;}
.y5c{bottom:650.435067pt;}
.y125{bottom:653.261333pt;}
.y199{bottom:655.684267pt;}
.y159{bottom:660.139867pt;}
.y96{bottom:668.409467pt;}
.y5{bottom:668.411467pt;}
.y2f{bottom:668.411600pt;}
.y7d{bottom:668.413733pt;}
.ybd{bottom:668.422267pt;}
.y5b{bottom:668.432933pt;}
.y124{bottom:669.711333pt;}
.y198{bottom:672.127067pt;}
.y158{bottom:672.809867pt;}
.y189{bottom:673.455333pt;}
.y123{bottom:682.381333pt;}
.y197{bottom:684.797067pt;}
.y188{bottom:686.125333pt;}
.y4{bottom:686.409333pt;}
.y2e{bottom:686.409467pt;}
.y2d{bottom:686.411600pt;}
.y95{bottom:686.413733pt;}
.ybc{bottom:686.420133pt;}
.y5a{bottom:686.430800pt;}
.y157{bottom:689.259867pt;}
.y122{bottom:698.831333pt;}
.y196{bottom:701.217600pt;}
.y156{bottom:701.929867pt;}
.y187{bottom:702.571467pt;}
.y2c{bottom:704.409467pt;}
.y94{bottom:704.411600pt;}
.ybb{bottom:704.418000pt;}
.y59{bottom:704.428667pt;}
.y121{bottom:711.501333pt;}
.y195{bottom:713.887600pt;}
.y155{bottom:718.379867pt;}
.y93{bottom:722.409467pt;}
.yba{bottom:722.415867pt;}
.y2b{bottom:722.424400pt;}
.y58{bottom:722.426533pt;}
.y186{bottom:726.562400pt;}
.y120{bottom:727.944267pt;}
.y194{bottom:730.337600pt;}
.y154{bottom:731.049867pt;}
.y185{bottom:739.232400pt;}
.yb9{bottom:740.413733pt;}
.y2a{bottom:740.422267pt;}
.y57{bottom:740.424400pt;}
.y11f{bottom:740.614267pt;}
.y193{bottom:743.007600pt;}
.y153{bottom:747.499867pt;}
.y184{bottom:755.682400pt;}
.y11e{bottom:757.046533pt;}
.yb8{bottom:758.411600pt;}
.y29{bottom:758.420133pt;}
.y56{bottom:758.422267pt;}
.y192{bottom:759.457600pt;}
.y152{bottom:760.169867pt;}
.y183{bottom:768.352400pt;}
.y11d{bottom:769.716533pt;}
.y191{bottom:772.127600pt;}
.y151{bottom:772.839867pt;}
.yb7{bottom:776.409467pt;}
.y28{bottom:776.418000pt;}
.y55{bottom:776.420133pt;}
.y11c{bottom:782.386533pt;}
.y190{bottom:784.797600pt;}
.y182{bottom:784.802400pt;}
.y150{bottom:789.282800pt;}
.y3{bottom:794.409333pt;}
.y27{bottom:794.415867pt;}
.y54{bottom:794.418000pt;}
.y11b{bottom:798.836533pt;}
.y14f{bottom:801.952800pt;}
.y11a{bottom:811.506533pt;}
.y26{bottom:812.413733pt;}
.y53{bottom:812.415867pt;}
.y181{bottom:812.587200pt;}
.y14d{bottom:818.387867pt;}
.y14e{bottom:818.399067pt;}
.y25{bottom:830.411600pt;}
.y52{bottom:830.413733pt;}
.y14c{bottom:831.057867pt;}
.y119{bottom:831.732400pt;}
.y24{bottom:848.409467pt;}
.y23{bottom:848.411600pt;}
.y180{bottom:853.260933pt;}
.y17f{bottom:865.930933pt;}
.y2{bottom:866.409333pt;}
.y22{bottom:866.409467pt;}
.y1{bottom:922.623867pt;}
.y21{bottom:922.624000pt;}
.ha{height:28.880000pt;}
.h2{height:31.480000pt;}
.hb{height:36.040000pt;}
.hc{height:37.776000pt;}
.h8{height:39.874667pt;}
.h5{height:42.563200pt;}
.h7{height:42.713600pt;}
.h9{height:43.248000pt;}
.h3{height:48.053333pt;}
.h6{height:55.680000pt;}
.h4{height:104.144000pt;}
.h1{height:982.666667pt;}
.h0{height:982.677333pt;}
.w1{width:661.333333pt;}
.w0{width:661.417333pt;}
.x0{left:0.000000pt;}
.x1{left:64.252000pt;}
.xa{left:70.679200pt;}
.xc{left:74.453867pt;}
.x16{left:75.590600pt;}
.x2{left:79.371963pt;}
.x11{left:83.149600pt;}
.xd{left:103.549600pt;}
.x1c{left:104.458933pt;}
.x1b{left:109.606267pt;}
.x15{left:119.887333pt;}
.x4{left:122.202000pt;}
.x14{left:135.465333pt;}
.x8{left:141.586800pt;}
.x12{left:147.309067pt;}
.x3{left:151.982133pt;}
.x5{left:172.195467pt;}
.x1e{left:188.005600pt;}
.x1a{left:297.725333pt;}
.x19{left:338.267733pt;}
.x17{left:349.608400pt;}
.x6{left:448.228667pt;}
.x1d{left:458.207600pt;}
.x7{left:478.186533pt;}
.x18{left:488.117867pt;}
.x13{left:540.770133pt;}
.xb{left:553.937467pt;}
.x10{left:576.034933pt;}
.xf{left:593.529733pt;}
.x9{left:595.056000pt;}
.xe{left:597.165333pt;}
}




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