
    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_bc3ba53c8e012de55ef19a44.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.165000;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_5479cca058d71bc8d458eb93.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_ce2625b42a5ac3bf839142a9.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.157000;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_c1b0e2ecf36519e60d43786d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.167000;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_c12df790c5f8e7ab78eb2d3d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.166000;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_6017c35c9721702077135421.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.200900;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_1c8bf1dde379aa0e28298b82.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.160000;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_5784eafbb78b48b9334c8a73.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.698000;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_65f2fb829264ef64c130fde8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.184000;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_5784eafbb78b48b9334c8a73.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.698000;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_1b7468a8f0ba04f21ff00802.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.196000;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_30eb56b178f038ebded73d49.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.040048;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_ff9b6d8451004c370a86bda7.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.129000;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;}
.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);}
.m2{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(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);}
.v3{vertical-align:-19.979400px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.563400px;}
.v2{vertical-align:19.980600px;}
.v1{vertical-align:31.920000px;}
.ls5d{letter-spacing:-7.599000px;}
.ls5e{letter-spacing:-6.324000px;}
.ls61{letter-spacing:-4.488000px;}
.ls58{letter-spacing:-3.834000px;}
.ls5c{letter-spacing:-3.417000px;}
.ls62{letter-spacing:-3.315000px;}
.ls5f{letter-spacing:-2.970000px;}
.ls69{letter-spacing:-1.836000px;}
.ls60{letter-spacing:-1.632000px;}
.ls3e{letter-spacing:-1.620000px;}
.ls59{letter-spacing:-1.530000px;}
.ls44{letter-spacing:-1.500000px;}
.lsf{letter-spacing:-1.428000px;}
.ls40{letter-spacing:-0.600000px;}
.ls67{letter-spacing:-0.540000px;}
.ls65{letter-spacing:-0.510000px;}
.ls47{letter-spacing:-0.414000px;}
.ls51{letter-spacing:-0.378000px;}
.ls32{letter-spacing:-0.360000px;}
.ls41{letter-spacing:-0.300000px;}
.ls38{letter-spacing:-0.279000px;}
.ls2f{letter-spacing:-0.240000px;}
.ls26{letter-spacing:-0.223200px;}
.ls5a{letter-spacing:-0.204000px;}
.ls31{letter-spacing:-0.180000px;}
.ls42{letter-spacing:-0.174900px;}
.ls45{letter-spacing:-0.167400px;}
.ls36{letter-spacing:-0.120000px;}
.ls46{letter-spacing:-0.111600px;}
.lsd{letter-spacing:-0.102000px;}
.ls55{letter-spacing:-0.069960px;}
.ls30{letter-spacing:-0.060000px;}
.ls11{letter-spacing:-0.055800px;}
.ls52{letter-spacing:-0.034980px;}
.lsa{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.000461px;}
.ls12{letter-spacing:0.022200px;}
.ls53{letter-spacing:0.034980px;}
.ls15{letter-spacing:0.036900px;}
.ls3c{letter-spacing:0.044477px;}
.ls7{letter-spacing:0.055800px;}
.ls13{letter-spacing:0.060000px;}
.ls43{letter-spacing:0.069960px;}
.ls3b{letter-spacing:0.083700px;}
.ls2d{letter-spacing:0.111600px;}
.ls2a{letter-spacing:0.120000px;}
.ls2{letter-spacing:0.153000px;}
.ls3d{letter-spacing:0.167400px;}
.ls37{letter-spacing:0.174900px;}
.ls1b{letter-spacing:0.180000px;}
.ls39{letter-spacing:0.181800px;}
.ls1d{letter-spacing:0.202340px;}
.ls3f{letter-spacing:0.209880px;}
.ls54{letter-spacing:0.223200px;}
.ls22{letter-spacing:0.228000px;}
.ls2b{letter-spacing:0.240000px;}
.ls6{letter-spacing:0.279000px;}
.ls28{letter-spacing:0.286080px;}
.ls5{letter-spacing:0.300000px;}
.ls1{letter-spacing:0.306000px;}
.ls5b{letter-spacing:0.324000px;}
.ls34{letter-spacing:0.334800px;}
.ls0{letter-spacing:0.357000px;}
.ls16{letter-spacing:0.360000px;}
.ls48{letter-spacing:0.390000px;}
.ls24{letter-spacing:0.390600px;}
.ls4{letter-spacing:0.420000px;}
.ls4e{letter-spacing:0.432000px;}
.ls4f{letter-spacing:0.446400px;}
.ls21{letter-spacing:0.480000px;}
.ls3a{letter-spacing:0.502200px;}
.ls29{letter-spacing:0.540000px;}
.ls19{letter-spacing:0.600000px;}
.ls2c{letter-spacing:0.613800px;}
.ls56{letter-spacing:0.648000px;}
.ls1f{letter-spacing:0.660000px;}
.ls50{letter-spacing:0.669600px;}
.ls4d{letter-spacing:0.720000px;}
.ls8{letter-spacing:0.732600px;}
.ls17{letter-spacing:0.840000px;}
.ls18{letter-spacing:0.900000px;}
.ls68{letter-spacing:0.918000px;}
.ls23{letter-spacing:0.948600px;}
.ls1e{letter-spacing:0.960000px;}
.lse{letter-spacing:0.969000px;}
.ls1c{letter-spacing:1.020000px;}
.ls64{letter-spacing:1.071000px;}
.ls9{letter-spacing:1.080000px;}
.ls10{letter-spacing:1.200000px;}
.ls2e{letter-spacing:1.242000px;}
.lsb{letter-spacing:1.326000px;}
.ls49{letter-spacing:1.440000px;}
.ls63{letter-spacing:1.512000px;}
.ls27{letter-spacing:1.566000px;}
.ls35{letter-spacing:1.674000px;}
.ls4c{letter-spacing:1.728000px;}
.ls14{letter-spacing:1.740000px;}
.ls6a{letter-spacing:1.782000px;}
.ls4b{letter-spacing:1.860000px;}
.ls66{letter-spacing:2.091000px;}
.ls25{letter-spacing:2.106000px;}
.ls3{letter-spacing:2.295000px;}
.ls33{letter-spacing:2.340000px;}
.lsc{letter-spacing:2.805000px;}
.ls4a{letter-spacing:2.880000px;}
.ls57{letter-spacing:3.315000px;}
.ls20{letter-spacing:4.332000px;}
.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;}
}
.wsf9{word-spacing:-15.600000px;}
.ws24{word-spacing:-14.904000px;}
.ws106{word-spacing:-14.580000px;}
.ws93{word-spacing:-14.526000px;}
.ws64{word-spacing:-14.472000px;}
.ws27{word-spacing:-13.620000px;}
.ws0{word-spacing:-13.566000px;}
.ws2a{word-spacing:-13.260000px;}
.ws28{word-spacing:-12.960000px;}
.ws2b{word-spacing:-12.900000px;}
.ws25{word-spacing:-12.660000px;}
.ws56{word-spacing:-12.600000px;}
.wsa7{word-spacing:-12.540000px;}
.wsba{word-spacing:-12.420000px;}
.ws66{word-spacing:-12.300000px;}
.ws100{word-spacing:-12.258000px;}
.wsa8{word-spacing:-12.240000px;}
.ws95{word-spacing:-11.700000px;}
.ws29{word-spacing:-11.640000px;}
.ws7a{word-spacing:-11.580000px;}
.ws94{word-spacing:-11.520000px;}
.ws2c{word-spacing:-11.460000px;}
.ws7c{word-spacing:-11.400000px;}
.ws67{word-spacing:-11.340000px;}
.ws55{word-spacing:-11.280000px;}
.wsa6{word-spacing:-11.220000px;}
.ws7e{word-spacing:-11.215800px;}
.wse3{word-spacing:-10.965000px;}
.ws68{word-spacing:-10.920000px;}
.ws1{word-spacing:-10.710000px;}
.wsfa{word-spacing:-10.455000px;}
.wsf2{word-spacing:-10.200000px;}
.wsf4{word-spacing:-9.828000px;}
.ws103{word-spacing:-9.690000px;}
.wseb{word-spacing:-9.435000px;}
.wsf5{word-spacing:-9.333000px;}
.wsea{word-spacing:-8.964000px;}
.ws2{word-spacing:-8.901000px;}
.ws7f{word-spacing:-8.487000px;}
.wsf7{word-spacing:-7.650000px;}
.ws79{word-spacing:-7.555680px;}
.wsef{word-spacing:-7.548000px;}
.ws65{word-spacing:-7.520700px;}
.ws7d{word-spacing:-7.415760px;}
.wsbc{word-spacing:-7.380780px;}
.ws26{word-spacing:-7.345800px;}
.wsbb{word-spacing:-7.310820px;}
.wscb{word-spacing:-7.275840px;}
.ws7b{word-spacing:-7.170900px;}
.wsf6{word-spacing:-6.477000px;}
.wsf1{word-spacing:-4.641000px;}
.wsf0{word-spacing:-3.366000px;}
.wse6{word-spacing:-3.315000px;}
.ws9{word-spacing:-2.805000px;}
.wsb4{word-spacing:-2.520000px;}
.ws5f{word-spacing:-2.460000px;}
.ws99{word-spacing:-2.100000px;}
.wse5{word-spacing:-2.040000px;}
.ws5a{word-spacing:-1.980000px;}
.ws44{word-spacing:-1.920000px;}
.ws73{word-spacing:-1.897200px;}
.ws35{word-spacing:-1.860000px;}
.ws4e{word-spacing:-1.841400px;}
.wsae{word-spacing:-1.800000px;}
.ws20{word-spacing:-1.785600px;}
.ws87{word-spacing:-1.740000px;}
.wsaa{word-spacing:-1.680000px;}
.ws90{word-spacing:-1.674000px;}
.ws11{word-spacing:-1.632000px;}
.ws81{word-spacing:-1.620000px;}
.ws72{word-spacing:-1.562400px;}
.ws16{word-spacing:-1.530000px;}
.ws88{word-spacing:-1.500000px;}
.wsd8{word-spacing:-1.450800px;}
.wsdd{word-spacing:-1.440000px;}
.ws5e{word-spacing:-1.380000px;}
.wsa{word-spacing:-1.377000px;}
.ws8{word-spacing:-1.326000px;}
.ws57{word-spacing:-1.242000px;}
.ws19{word-spacing:-1.200000px;}
.wsbf{word-spacing:-1.140000px;}
.ws1e{word-spacing:-1.116000px;}
.ws6{word-spacing:-1.080000px;}
.wsc7{word-spacing:-1.060200px;}
.ws33{word-spacing:-1.020000px;}
.wsc6{word-spacing:-1.004400px;}
.ws18{word-spacing:-0.969000px;}
.ws98{word-spacing:-0.960000px;}
.ws97{word-spacing:-0.900000px;}
.wse0{word-spacing:-0.892800px;}
.wsb2{word-spacing:-0.840000px;}
.wsc0{word-spacing:-0.780000px;}
.wsfe{word-spacing:-0.765000px;}
.ws3{word-spacing:-0.754800px;}
.wsd7{word-spacing:-0.725400px;}
.ws30{word-spacing:-0.720000px;}
.wsed{word-spacing:-0.714000px;}
.wsd6{word-spacing:-0.669600px;}
.ws46{word-spacing:-0.660000px;}
.ws39{word-spacing:-0.600000px;}
.ws54{word-spacing:-0.558000px;}
.ws5d{word-spacing:-0.540000px;}
.ws8b{word-spacing:-0.502200px;}
.ws42{word-spacing:-0.480000px;}
.ws3f{word-spacing:-0.420000px;}
.wsa5{word-spacing:-0.390600px;}
.ws4a{word-spacing:-0.360000px;}
.wsad{word-spacing:-0.300000px;}
.wsc2{word-spacing:-0.279000px;}
.ws36{word-spacing:-0.240000px;}
.ws23{word-spacing:-0.223200px;}
.ws17{word-spacing:-0.204000px;}
.ws84{word-spacing:-0.180000px;}
.wsa4{word-spacing:-0.167400px;}
.ws6c{word-spacing:-0.120000px;}
.ws62{word-spacing:-0.111600px;}
.ws41{word-spacing:-0.060000px;}
.wse7{word-spacing:-0.055800px;}
.ws4{word-spacing:-0.044400px;}
.ws7{word-spacing:0.000000px;}
.ws3a{word-spacing:0.060000px;}
.ws1a{word-spacing:0.120000px;}
.wse9{word-spacing:0.167400px;}
.ws86{word-spacing:0.180000px;}
.wsee{word-spacing:0.204000px;}
.wsc4{word-spacing:0.223200px;}
.ws9e{word-spacing:0.240000px;}
.wsff{word-spacing:0.255000px;}
.wsb3{word-spacing:0.300000px;}
.ws10{word-spacing:0.306000px;}
.ws40{word-spacing:0.360000px;}
.ws102{word-spacing:0.408000px;}
.ws76{word-spacing:0.446400px;}
.ws83{word-spacing:0.480000px;}
.wsdf{word-spacing:0.502200px;}
.wsb{word-spacing:0.510000px;}
.ws82{word-spacing:0.540000px;}
.ws50{word-spacing:0.558000px;}
.wsd9{word-spacing:0.600000px;}
.ws92{word-spacing:0.613800px;}
.ws91{word-spacing:0.669600px;}
.wsde{word-spacing:0.720000px;}
.wsb9{word-spacing:0.725400px;}
.wsa2{word-spacing:0.780000px;}
.ws4f{word-spacing:0.781200px;}
.wsf{word-spacing:0.816000px;}
.ws1f{word-spacing:0.837000px;}
.ws70{word-spacing:0.840000px;}
.wse1{word-spacing:0.892800px;}
.ws3e{word-spacing:0.900000px;}
.ws8a{word-spacing:0.948600px;}
.ws6f{word-spacing:0.960000px;}
.ws8f{word-spacing:1.004400px;}
.ws31{word-spacing:1.020000px;}
.ws15{word-spacing:1.071000px;}
.wscf{word-spacing:1.080000px;}
.ws6e{word-spacing:1.140000px;}
.ws1c{word-spacing:1.200000px;}
.ws6d{word-spacing:1.260000px;}
.wsc{word-spacing:1.275000px;}
.ws85{word-spacing:1.320000px;}
.ws71{word-spacing:1.339200px;}
.ws9a{word-spacing:1.380000px;}
.wse2{word-spacing:1.395000px;}
.ws13{word-spacing:1.428000px;}
.wsdb{word-spacing:1.440000px;}
.ws8e{word-spacing:1.450800px;}
.ws9c{word-spacing:1.500000px;}
.wsc8{word-spacing:1.562400px;}
.wsfd{word-spacing:1.581000px;}
.wsda{word-spacing:1.620000px;}
.ws12{word-spacing:1.632000px;}
.ws47{word-spacing:1.680000px;}
.ws77{word-spacing:1.729800px;}
.ws6b{word-spacing:1.740000px;}
.ws14{word-spacing:1.785000px;}
.ws22{word-spacing:1.785600px;}
.ws63{word-spacing:1.841400px;}
.ws2f{word-spacing:1.860000px;}
.ws75{word-spacing:1.897200px;}
.ws2e{word-spacing:1.920000px;}
.wsfc{word-spacing:1.938000px;}
.wsc5{word-spacing:1.953000px;}
.ws60{word-spacing:1.980000px;}
.ws5b{word-spacing:2.040000px;}
.ws21{word-spacing:2.064600px;}
.ws78{word-spacing:2.120400px;}
.ws59{word-spacing:2.160000px;}
.ws38{word-spacing:2.220000px;}
.wsc1{word-spacing:2.232000px;}
.ws37{word-spacing:2.280000px;}
.ws51{word-spacing:2.287800px;}
.wse{word-spacing:2.397000px;}
.wsdc{word-spacing:2.400000px;}
.ws74{word-spacing:2.455200px;}
.ws4d{word-spacing:2.460000px;}
.ws1d{word-spacing:2.520000px;}
.ws45{word-spacing:2.580000px;}
.wsd{word-spacing:2.601000px;}
.wsa3{word-spacing:2.640000px;}
.ws9f{word-spacing:2.700000px;}
.wse8{word-spacing:2.734200px;}
.wsd0{word-spacing:2.760000px;}
.wsb5{word-spacing:2.820000px;}
.ws32{word-spacing:2.880000px;}
.ws4b{word-spacing:2.940000px;}
.wsab{word-spacing:3.000000px;}
.ws53{word-spacing:3.013200px;}
.ws1b{word-spacing:3.060000px;}
.ws49{word-spacing:3.120000px;}
.ws105{word-spacing:3.162000px;}
.wscd{word-spacing:3.180000px;}
.wsca{word-spacing:3.180600px;}
.wsd2{word-spacing:3.240000px;}
.ws34{word-spacing:3.300000px;}
.ws43{word-spacing:3.360000px;}
.wsa0{word-spacing:3.420000px;}
.ws6a{word-spacing:3.480000px;}
.wsc3{word-spacing:3.515400px;}
.ws48{word-spacing:3.540000px;}
.wsac{word-spacing:3.600000px;}
.wsa1{word-spacing:3.660000px;}
.ws89{word-spacing:3.720000px;}
.ws8c{word-spacing:3.850200px;}
.ws3d{word-spacing:3.900000px;}
.ws3c{word-spacing:3.960000px;}
.wsb7{word-spacing:4.020000px;}
.wsb8{word-spacing:4.073400px;}
.wsd3{word-spacing:4.080000px;}
.ws8d{word-spacing:4.185000px;}
.wsaf{word-spacing:4.200000px;}
.ws5c{word-spacing:4.260000px;}
.wsb6{word-spacing:4.380000px;}
.wsd4{word-spacing:4.560000px;}
.wsbe{word-spacing:4.680000px;}
.ws4c{word-spacing:4.740000px;}
.wsd5{word-spacing:4.860000px;}
.ws3b{word-spacing:4.920000px;}
.ws61{word-spacing:4.966200px;}
.wsd1{word-spacing:5.040000px;}
.wsb1{word-spacing:5.100000px;}
.ws9d{word-spacing:5.400000px;}
.wsc9{word-spacing:5.580000px;}
.wsb0{word-spacing:5.640000px;}
.wsce{word-spacing:6.900000px;}
.ws52{word-spacing:7.644600px;}
.ws9b{word-spacing:12.060000px;}
.ws5{word-spacing:820.422000px;}
.ws2d{word-spacing:822.042000px;}
.ws107{word-spacing:822.366000px;}
.ws96{word-spacing:822.420000px;}
.ws69{word-spacing:822.474000px;}
.wsbd{word-spacing:824.526000px;}
.ws101{word-spacing:824.742000px;}
.wsf8{word-spacing:827.118000px;}
.wsec{word-spacing:827.982000px;}
.ws58{word-spacing:1650.726000px;}
.wsfb{word-spacing:1650.834000px;}
.wse4{word-spacing:1652.562000px;}
.wsa9{word-spacing:1652.994000px;}
.wsf3{word-spacing:1653.210000px;}
.ws104{word-spacing:1653.804000px;}
.wscc{word-spacing:1653.858000px;}
.ws80{word-spacing:1657.098000px;}
._28{margin-left:-828.013500px;}
._29{margin-left:-826.615200px;}
._21{margin-left:-824.553000px;}
._15{margin-left:-823.269600px;}
._b{margin-left:-822.139200px;}
._1{margin-left:-819.990000px;}
._1e{margin-left:-16.821000px;}
._25{margin-left:-14.466000px;}
._16{margin-left:-13.087200px;}
._22{margin-left:-11.948400px;}
._1a{margin-left:-6.888000px;}
._7{margin-left:-5.860800px;}
._5{margin-left:-4.725600px;}
._a{margin-left:-3.621600px;}
._4{margin-left:-2.559600px;}
._3{margin-left:-1.112400px;}
._2{width:1.301400px;}
._0{width:2.305800px;}
._6{width:3.369000px;}
._8{width:4.761900px;}
._11{width:6.061200px;}
._10{width:7.630920px;}
._1d{width:11.695200px;}
._12{width:15.600000px;}
._24{width:23.881200px;}
._26{width:26.337000px;}
._20{width:28.680000px;}
._23{width:29.964000px;}
._17{width:30.967800px;}
._1c{width:32.865600px;}
._1b{width:34.596000px;}
._19{width:36.380400px;}
._1f{width:37.719600px;}
._18{width:40.007400px;}
._f{width:42.965400px;}
._13{width:45.811200px;}
._e{width:48.601800px;}
._d{width:51.447000px;}
._c{width:53.845800px;}
._14{width:56.692200px;}
._9{width:58.533600px;}
._27{width:73.098000px;}
.fc1{color:rgb(135,135,135);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:22.200000px;}
.fsa{font-size:32.531400px;}
.fs9{font-size:34.980000px;}
.fs6{font-size:41.400000px;}
.fs4{font-size:51.000000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:55.800000px;}
.fs2{font-size:55.968000px;}
.fs5{font-size:60.000000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:40.394100px;}
.yb3{bottom:80.791950px;}
.y18a{bottom:83.775300px;}
.y92{bottom:85.889850px;}
.y24{bottom:90.567000px;}
.ybb{bottom:90.567150px;}
.y70{bottom:90.571500px;}
.y99{bottom:90.575700px;}
.y51{bottom:90.580050px;}
.y16b{bottom:94.637550px;}
.y147{bottom:94.675800px;}
.yb2{bottom:98.187600px;}
.y189{bottom:101.179050px;}
.y91{bottom:103.294200px;}
.y6f{bottom:107.967150px;}
.y7c{bottom:107.967300px;}
.y23{bottom:107.971350px;}
.y50{bottom:107.975700px;}
.y138{bottom:111.888300px;}
.y12c{bottom:111.901050px;}
.y146{bottom:111.926550px;}
.yb1{bottom:115.587750px;}
.y90{bottom:120.689850px;}
.y22{bottom:125.367000px;}
.ya8{bottom:125.367150px;}
.y6e{bottom:125.367300px;}
.y4f{bottom:125.371350px;}
.y96{bottom:125.375850px;}
.y137{bottom:129.139050px;}
.y12b{bottom:129.151800px;}
.y145{bottom:129.177300px;}
.yb0{bottom:132.992100px;}
.y8f{bottom:138.090000px;}
.y4e{bottom:142.767000px;}
.y6d{bottom:142.767300px;}
.y95{bottom:142.771500px;}
.ya7{bottom:142.771650px;}
.y21{bottom:142.775700px;}
.y7b{bottom:142.780350px;}
.y136{bottom:146.389800px;}
.y12a{bottom:146.402550px;}
.y144{bottom:146.428050px;}
.yaf{bottom:150.387750px;}
.y8e{bottom:155.490000px;}
.y94{bottom:160.167150px;}
.ya6{bottom:160.167300px;}
.y6c{bottom:160.167450px;}
.y20{bottom:160.171350px;}
.y4d{bottom:160.171650px;}
.yba{bottom:160.175700px;}
.y7a{bottom:160.176000px;}
.y135{bottom:163.640550px;}
.y129{bottom:163.653300px;}
.y143{bottom:163.678800px;}
.yae{bottom:167.796600px;}
.y8d{bottom:172.890150px;}
.y1f{bottom:177.567000px;}
.y4c{bottom:177.567300px;}
.y6b{bottom:177.567450px;}
.yb9{bottom:177.571350px;}
.y79{bottom:177.571650px;}
.ya5{bottom:177.580500px;}
.y134{bottom:180.891300px;}
.y128{bottom:180.904050px;}
.y142{bottom:180.929550px;}
.y98{bottom:183.568050px;}
.yad{bottom:185.192250px;}
.y8c{bottom:190.294650px;}
.yb8{bottom:194.967000px;}
.y78{bottom:194.967300px;}
.y4b{bottom:194.971650px;}
.y6a{bottom:194.971950px;}
.ybf{bottom:194.976000px;}
.ya4{bottom:194.976150px;}
.y133{bottom:198.142050px;}
.y127{bottom:198.154800px;}
.y141{bottom:198.180300px;}
.y17b{bottom:200.546400px;}
.y97{bottom:202.018050px;}
.yac{bottom:202.587900px;}
.y8b{bottom:207.690300px;}
.y4a{bottom:212.367300px;}
.y69{bottom:212.367600px;}
.ybe{bottom:212.371650px;}
.y77{bottom:212.371800px;}
.yb7{bottom:212.376000px;}
.y132{bottom:215.392800px;}
.y126{bottom:215.405550px;}
.y140{bottom:215.431050px;}
.y188{bottom:216.604800px;}
.y17a{bottom:217.950150px;}
.yab{bottom:219.987900px;}
.y1e{bottom:220.468050px;}
.y8a{bottom:225.090300px;}
.ybd{bottom:229.767300px;}
.y49{bottom:229.767450px;}
.yb6{bottom:229.771650px;}
.y131{bottom:232.643550px;}
.y125{bottom:232.656300px;}
.y13f{bottom:232.681800px;}
.y187{bottom:234.008550px;}
.y179{bottom:235.353900px;}
.yaa{bottom:237.392400px;}
.y1d{bottom:238.918050px;}
.y89{bottom:242.490450px;}
.yb5{bottom:247.167300px;}
.ya3{bottom:247.167600px;}
.y48{bottom:247.171800px;}
.y130{bottom:249.894300px;}
.y124{bottom:249.907050px;}
.y13e{bottom:249.932550px;}
.y178{bottom:252.757650px;}
.ya9{bottom:254.788050px;}
.y1c{bottom:257.368050px;}
.y88{bottom:259.894950px;}
.yb4{bottom:264.567300px;}
.y47{bottom:264.567450px;}
.ya2{bottom:264.567600px;}
.y12f{bottom:267.145050px;}
.y123{bottom:267.157800px;}
.y13d{bottom:267.183300px;}
.y177{bottom:270.161400px;}
.y17c{bottom:273.618600px;}
.y1b{bottom:275.818050px;}
.y68{bottom:275.818200px;}
.y87{bottom:277.294950px;}
.y76{bottom:281.967450px;}
.ya1{bottom:281.971950px;}
.y12e{bottom:284.395800px;}
.y122{bottom:284.408550px;}
.y13c{bottom:284.434050px;}
.y93{bottom:294.268050px;}
.y67{bottom:294.268200px;}
.y86{bottom:294.690600px;}
.ya0{bottom:299.367600px;}
.y75{bottom:299.371800px;}
.yde{bottom:300.802650px;}
.ycf{bottom:300.815400px;}
.y12d{bottom:301.646550px;}
.y121{bottom:301.659300px;}
.y13b{bottom:301.684800px;}
.y85{bottom:312.090450px;}
.y1a{bottom:312.718050px;}
.y66{bottom:312.718200px;}
.y74{bottom:316.767450px;}
.y9f{bottom:316.767600px;}
.y16f{bottom:317.469300px;}
.ydd{bottom:318.053400px;}
.yce{bottom:318.066150px;}
.y16a{bottom:318.897300px;}
.y120{bottom:318.910050px;}
.y13a{bottom:318.935550px;}
.y46{bottom:331.168050px;}
.y65{bottom:331.168200px;}
.y73{bottom:334.167450px;}
.y9e{bottom:334.167600px;}
.y16e{bottom:334.720050px;}
.ydc{bottom:335.304150px;}
.ycd{bottom:335.316900px;}
.y169{bottom:336.148050px;}
.y139{bottom:336.186300px;}
.y186{bottom:341.030850px;}
.y45{bottom:349.618050px;}
.y64{bottom:349.618200px;}
.y72{bottom:351.571800px;}
.y9d{bottom:351.580650px;}
.y16d{bottom:351.970800px;}
.ydb{bottom:352.554900px;}
.ycc{bottom:352.567650px;}
.y168{bottom:353.398800px;}
.yff{bottom:353.437050px;}
.y185{bottom:358.434600px;}
.y44{bottom:368.068050px;}
.y71{bottom:368.967450px;}
.y9c{bottom:368.976300px;}
.y16c{bottom:369.221550px;}
.yda{bottom:369.805650px;}
.ycb{bottom:369.818400px;}
.y167{bottom:370.649550px;}
.y11f{bottom:370.662300px;}
.yfe{bottom:370.687800px;}
.y184{bottom:375.838350px;}
.y19{bottom:377.201550px;}
.y9b{bottom:386.371950px;}
.y43{bottom:386.518050px;}
.y84{bottom:386.518200px;}
.yd9{bottom:387.056400px;}
.yca{bottom:387.069150px;}
.y166{bottom:387.900300px;}
.y11e{bottom:387.913050px;}
.yfd{bottom:387.938550px;}
.y183{bottom:393.242100px;}
.y18{bottom:394.452300px;}
.y9a{bottom:403.767600px;}
.yd8{bottom:404.307150px;}
.yc9{bottom:404.319900px;}
.y42{bottom:404.968050px;}
.y83{bottom:404.968200px;}
.y165{bottom:405.151050px;}
.y11d{bottom:405.163800px;}
.yfc{bottom:405.189300px;}
.y182{bottom:410.645850px;}
.yd7{bottom:421.557900px;}
.yc8{bottom:421.570650px;}
.y164{bottom:422.401800px;}
.y11c{bottom:422.414550px;}
.yfb{bottom:422.440050px;}
.y41{bottom:423.418050px;}
.y82{bottom:423.418200px;}
.y17{bottom:428.953800px;}
.yd6{bottom:438.808650px;}
.yc7{bottom:438.821400px;}
.y163{bottom:439.652550px;}
.y11b{bottom:439.665300px;}
.yfa{bottom:439.690800px;}
.y40{bottom:441.868050px;}
.y81{bottom:441.868200px;}
.y176{bottom:444.530400px;}
.y16{bottom:446.204550px;}
.yd5{bottom:456.059400px;}
.yc6{bottom:456.072150px;}
.y162{bottom:456.903300px;}
.y11a{bottom:456.916050px;}
.yf9{bottom:456.941550px;}
.y3f{bottom:460.318050px;}
.y80{bottom:460.318200px;}
.y175{bottom:461.934150px;}
.yd4{bottom:473.310150px;}
.yc5{bottom:473.322900px;}
.y161{bottom:474.154050px;}
.y119{bottom:474.166800px;}
.yf8{bottom:474.192300px;}
.y3e{bottom:478.768050px;}
.y174{bottom:479.337900px;}
.y15{bottom:480.706050px;}
.yd3{bottom:490.560900px;}
.yc4{bottom:490.573650px;}
.y160{bottom:491.404800px;}
.y118{bottom:491.417550px;}
.yf7{bottom:491.443050px;}
.y173{bottom:496.741650px;}
.y3d{bottom:497.218050px;}
.y7f{bottom:497.218200px;}
.y14{bottom:497.956800px;}
.yd2{bottom:507.811650px;}
.yc3{bottom:507.824400px;}
.y15f{bottom:508.655550px;}
.y117{bottom:508.668300px;}
.yf6{bottom:508.693800px;}
.y172{bottom:514.145400px;}
.y3c{bottom:515.668050px;}
.y63{bottom:515.668200px;}
.yd1{bottom:525.062400px;}
.yc2{bottom:525.075150px;}
.y15e{bottom:525.906300px;}
.y116{bottom:525.919050px;}
.yf5{bottom:525.944550px;}
.y13{bottom:532.458300px;}
.y3b{bottom:534.118050px;}
.y7e{bottom:534.118200px;}
.yd0{bottom:542.313150px;}
.yc1{bottom:542.325900px;}
.y15d{bottom:543.157050px;}
.y115{bottom:543.169800px;}
.yf4{bottom:543.195300px;}
.y12{bottom:549.709050px;}
.y3a{bottom:552.568050px;}
.y62{bottom:552.568200px;}
.yc0{bottom:559.576650px;}
.y15c{bottom:560.407800px;}
.y114{bottom:560.420550px;}
.yf3{bottom:560.446050px;}
.y171{bottom:564.890400px;}
.y11{bottom:566.959800px;}
.y39{bottom:571.018050px;}
.y61{bottom:571.018200px;}
.y15b{bottom:577.658550px;}
.y113{bottom:577.671300px;}
.yf2{bottom:577.696800px;}
.y170{bottom:582.294150px;}
.y10{bottom:584.210550px;}
.y38{bottom:589.468050px;}
.y60{bottom:589.468200px;}
.ybc{bottom:593.068050px;}
.y15a{bottom:594.909300px;}
.y112{bottom:594.922050px;}
.yf1{bottom:594.947550px;}
.yf{bottom:601.461300px;}
.y37{bottom:607.918050px;}
.y5f{bottom:607.918200px;}
.y159{bottom:612.160050px;}
.y111{bottom:612.172800px;}
.yf0{bottom:612.198300px;}
.ye{bottom:618.712050px;}
.y36{bottom:626.368050px;}
.y5e{bottom:626.368200px;}
.y158{bottom:629.410800px;}
.y110{bottom:629.423550px;}
.yef{bottom:629.449050px;}
.yd{bottom:635.962800px;}
.y35{bottom:644.818050px;}
.y5d{bottom:644.818200px;}
.y157{bottom:646.661550px;}
.y10f{bottom:646.674300px;}
.yee{bottom:646.699800px;}
.yc{bottom:653.213550px;}
.y34{bottom:663.268050px;}
.y5c{bottom:663.268200px;}
.y156{bottom:663.912300px;}
.y10e{bottom:663.925050px;}
.yed{bottom:663.950550px;}
.yb{bottom:670.464300px;}
.y155{bottom:681.163050px;}
.y10d{bottom:681.175800px;}
.yec{bottom:681.201300px;}
.y33{bottom:681.718050px;}
.y5b{bottom:681.718200px;}
.y17d{bottom:682.370850px;}
.ya{bottom:687.715050px;}
.y154{bottom:698.413800px;}
.y10c{bottom:698.426550px;}
.yeb{bottom:698.452050px;}
.y32{bottom:700.168050px;}
.y5a{bottom:700.168200px;}
.y9{bottom:704.965800px;}
.y153{bottom:715.664550px;}
.y10b{bottom:715.677300px;}
.yea{bottom:715.702800px;}
.y31{bottom:718.618050px;}
.y59{bottom:718.618200px;}
.y8{bottom:722.216550px;}
.y152{bottom:732.915300px;}
.y10a{bottom:732.928050px;}
.ye9{bottom:732.953550px;}
.y30{bottom:737.068050px;}
.y58{bottom:737.068200px;}
.y7{bottom:739.467300px;}
.y151{bottom:750.166050px;}
.y109{bottom:750.178800px;}
.ye8{bottom:750.204300px;}
.y2f{bottom:755.518050px;}
.y57{bottom:755.518200px;}
.y6{bottom:756.718050px;}
.y150{bottom:767.416800px;}
.y108{bottom:767.429550px;}
.ye7{bottom:767.455050px;}
.y2e{bottom:773.968050px;}
.y56{bottom:773.968200px;}
.y14f{bottom:784.667550px;}
.y107{bottom:784.680300px;}
.ye6{bottom:784.705800px;}
.y2d{bottom:792.418050px;}
.y55{bottom:792.418200px;}
.y14e{bottom:801.918300px;}
.y106{bottom:801.931050px;}
.ye5{bottom:801.956550px;}
.y2c{bottom:810.868050px;}
.y54{bottom:810.868200px;}
.y14d{bottom:819.169050px;}
.y105{bottom:819.181800px;}
.ye4{bottom:819.207300px;}
.y5{bottom:828.203550px;}
.y2b{bottom:829.318050px;}
.y53{bottom:829.318200px;}
.y14c{bottom:836.419800px;}
.y104{bottom:836.432550px;}
.ye3{bottom:836.458050px;}
.y2a{bottom:847.768050px;}
.y52{bottom:847.768200px;}
.y181{bottom:853.547550px;}
.y14b{bottom:853.670550px;}
.y103{bottom:853.683300px;}
.ye2{bottom:853.708800px;}
.y26{bottom:857.391000px;}
.y25{bottom:864.889050px;}
.y29{bottom:866.218050px;}
.y7d{bottom:866.218200px;}
.y4{bottom:870.815700px;}
.y14a{bottom:870.921300px;}
.y102{bottom:870.934050px;}
.y180{bottom:870.951300px;}
.ye1{bottom:870.959550px;}
.y28{bottom:884.668050px;}
.y149{bottom:888.172050px;}
.y101{bottom:888.184800px;}
.ye0{bottom:888.210300px;}
.y17f{bottom:888.355050px;}
.y3{bottom:896.303700px;}
.y27{bottom:903.118050px;}
.y148{bottom:905.422800px;}
.y100{bottom:905.435550px;}
.ydf{bottom:905.461050px;}
.y17e{bottom:905.758800px;}
.y2{bottom:955.942350px;}
.ha{height:15.295800px;}
.hf{height:44.217000px;}
.h11{height:45.543000px;}
.h10{height:45.696000px;}
.h6{height:45.900000px;}
.h12{height:46.614000px;}
.h5{height:48.195000px;}
.h9{height:49.996800px;}
.h2{height:50.868000px;}
.he{height:53.880000px;}
.h8{height:54.000000px;}
.hc{height:54.000600px;}
.hb{height:54.840000px;}
.hd{height:56.520000px;}
.h7{height:56.700000px;}
.h4{height:67.824000px;}
.h3{height:90.720000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x8{left:25.310100px;}
.x7{left:28.379250px;}
.x5{left:72.283500px;}
.x1{left:80.787450px;}
.xb{left:85.033500px;}
.x6{left:93.543300px;}
.x2{left:102.053400px;}
.x10{left:336.342450px;}
.xc{left:353.421000px;}
.xa{left:361.924950px;}
.xd{left:366.171000px;}
.x9{left:374.674950px;}
.xe{left:412.988700px;}
.xf{left:468.531450px;}
.x4{left:650.349450px;}
.x3{left:653.418600px;}
@media print{
.v3{vertical-align:-17.759467pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.500800pt;}
.v2{vertical-align:17.760533pt;}
.v1{vertical-align:28.373333pt;}
.ls5d{letter-spacing:-6.754667pt;}
.ls5e{letter-spacing:-5.621333pt;}
.ls61{letter-spacing:-3.989333pt;}
.ls58{letter-spacing:-3.408000pt;}
.ls5c{letter-spacing:-3.037333pt;}
.ls62{letter-spacing:-2.946667pt;}
.ls5f{letter-spacing:-2.640000pt;}
.ls69{letter-spacing:-1.632000pt;}
.ls60{letter-spacing:-1.450667pt;}
.ls3e{letter-spacing:-1.440000pt;}
.ls59{letter-spacing:-1.360000pt;}
.ls44{letter-spacing:-1.333333pt;}
.lsf{letter-spacing:-1.269333pt;}
.ls40{letter-spacing:-0.533333pt;}
.ls67{letter-spacing:-0.480000pt;}
.ls65{letter-spacing:-0.453333pt;}
.ls47{letter-spacing:-0.368000pt;}
.ls51{letter-spacing:-0.336000pt;}
.ls32{letter-spacing:-0.320000pt;}
.ls41{letter-spacing:-0.266667pt;}
.ls38{letter-spacing:-0.248000pt;}
.ls2f{letter-spacing:-0.213333pt;}
.ls26{letter-spacing:-0.198400pt;}
.ls5a{letter-spacing:-0.181333pt;}
.ls31{letter-spacing:-0.160000pt;}
.ls42{letter-spacing:-0.155467pt;}
.ls45{letter-spacing:-0.148800pt;}
.ls36{letter-spacing:-0.106667pt;}
.ls46{letter-spacing:-0.099200pt;}
.lsd{letter-spacing:-0.090667pt;}
.ls55{letter-spacing:-0.062187pt;}
.ls30{letter-spacing:-0.053333pt;}
.ls11{letter-spacing:-0.049600pt;}
.ls52{letter-spacing:-0.031093pt;}
.lsa{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.000410pt;}
.ls12{letter-spacing:0.019733pt;}
.ls53{letter-spacing:0.031093pt;}
.ls15{letter-spacing:0.032800pt;}
.ls3c{letter-spacing:0.039535pt;}
.ls7{letter-spacing:0.049600pt;}
.ls13{letter-spacing:0.053333pt;}
.ls43{letter-spacing:0.062187pt;}
.ls3b{letter-spacing:0.074400pt;}
.ls2d{letter-spacing:0.099200pt;}
.ls2a{letter-spacing:0.106667pt;}
.ls2{letter-spacing:0.136000pt;}
.ls3d{letter-spacing:0.148800pt;}
.ls37{letter-spacing:0.155467pt;}
.ls1b{letter-spacing:0.160000pt;}
.ls39{letter-spacing:0.161600pt;}
.ls1d{letter-spacing:0.179858pt;}
.ls3f{letter-spacing:0.186560pt;}
.ls54{letter-spacing:0.198400pt;}
.ls22{letter-spacing:0.202667pt;}
.ls2b{letter-spacing:0.213333pt;}
.ls6{letter-spacing:0.248000pt;}
.ls28{letter-spacing:0.254293pt;}
.ls5{letter-spacing:0.266667pt;}
.ls1{letter-spacing:0.272000pt;}
.ls5b{letter-spacing:0.288000pt;}
.ls34{letter-spacing:0.297600pt;}
.ls0{letter-spacing:0.317333pt;}
.ls16{letter-spacing:0.320000pt;}
.ls48{letter-spacing:0.346667pt;}
.ls24{letter-spacing:0.347200pt;}
.ls4{letter-spacing:0.373333pt;}
.ls4e{letter-spacing:0.384000pt;}
.ls4f{letter-spacing:0.396800pt;}
.ls21{letter-spacing:0.426667pt;}
.ls3a{letter-spacing:0.446400pt;}
.ls29{letter-spacing:0.480000pt;}
.ls19{letter-spacing:0.533333pt;}
.ls2c{letter-spacing:0.545600pt;}
.ls56{letter-spacing:0.576000pt;}
.ls1f{letter-spacing:0.586667pt;}
.ls50{letter-spacing:0.595200pt;}
.ls4d{letter-spacing:0.640000pt;}
.ls8{letter-spacing:0.651200pt;}
.ls17{letter-spacing:0.746667pt;}
.ls18{letter-spacing:0.800000pt;}
.ls68{letter-spacing:0.816000pt;}
.ls23{letter-spacing:0.843200pt;}
.ls1e{letter-spacing:0.853333pt;}
.lse{letter-spacing:0.861333pt;}
.ls1c{letter-spacing:0.906667pt;}
.ls64{letter-spacing:0.952000pt;}
.ls9{letter-spacing:0.960000pt;}
.ls10{letter-spacing:1.066667pt;}
.ls2e{letter-spacing:1.104000pt;}
.lsb{letter-spacing:1.178667pt;}
.ls49{letter-spacing:1.280000pt;}
.ls63{letter-spacing:1.344000pt;}
.ls27{letter-spacing:1.392000pt;}
.ls35{letter-spacing:1.488000pt;}
.ls4c{letter-spacing:1.536000pt;}
.ls14{letter-spacing:1.546667pt;}
.ls6a{letter-spacing:1.584000pt;}
.ls4b{letter-spacing:1.653333pt;}
.ls66{letter-spacing:1.858667pt;}
.ls25{letter-spacing:1.872000pt;}
.ls3{letter-spacing:2.040000pt;}
.ls33{letter-spacing:2.080000pt;}
.lsc{letter-spacing:2.493333pt;}
.ls4a{letter-spacing:2.560000pt;}
.ls57{letter-spacing:2.946667pt;}
.ls20{letter-spacing:3.850667pt;}
.wsf9{word-spacing:-13.866667pt;}
.ws24{word-spacing:-13.248000pt;}
.ws106{word-spacing:-12.960000pt;}
.ws93{word-spacing:-12.912000pt;}
.ws64{word-spacing:-12.864000pt;}
.ws27{word-spacing:-12.106667pt;}
.ws0{word-spacing:-12.058667pt;}
.ws2a{word-spacing:-11.786667pt;}
.ws28{word-spacing:-11.520000pt;}
.ws2b{word-spacing:-11.466667pt;}
.ws25{word-spacing:-11.253333pt;}
.ws56{word-spacing:-11.200000pt;}
.wsa7{word-spacing:-11.146667pt;}
.wsba{word-spacing:-11.040000pt;}
.ws66{word-spacing:-10.933333pt;}
.ws100{word-spacing:-10.896000pt;}
.wsa8{word-spacing:-10.880000pt;}
.ws95{word-spacing:-10.400000pt;}
.ws29{word-spacing:-10.346667pt;}
.ws7a{word-spacing:-10.293333pt;}
.ws94{word-spacing:-10.240000pt;}
.ws2c{word-spacing:-10.186667pt;}
.ws7c{word-spacing:-10.133333pt;}
.ws67{word-spacing:-10.080000pt;}
.ws55{word-spacing:-10.026667pt;}
.wsa6{word-spacing:-9.973333pt;}
.ws7e{word-spacing:-9.969600pt;}
.wse3{word-spacing:-9.746667pt;}
.ws68{word-spacing:-9.706667pt;}
.ws1{word-spacing:-9.520000pt;}
.wsfa{word-spacing:-9.293333pt;}
.wsf2{word-spacing:-9.066667pt;}
.wsf4{word-spacing:-8.736000pt;}
.ws103{word-spacing:-8.613333pt;}
.wseb{word-spacing:-8.386667pt;}
.wsf5{word-spacing:-8.296000pt;}
.wsea{word-spacing:-7.968000pt;}
.ws2{word-spacing:-7.912000pt;}
.ws7f{word-spacing:-7.544000pt;}
.wsf7{word-spacing:-6.800000pt;}
.ws79{word-spacing:-6.716160pt;}
.wsef{word-spacing:-6.709333pt;}
.ws65{word-spacing:-6.685067pt;}
.ws7d{word-spacing:-6.591787pt;}
.wsbc{word-spacing:-6.560693pt;}
.ws26{word-spacing:-6.529600pt;}
.wsbb{word-spacing:-6.498507pt;}
.wscb{word-spacing:-6.467413pt;}
.ws7b{word-spacing:-6.374133pt;}
.wsf6{word-spacing:-5.757333pt;}
.wsf1{word-spacing:-4.125333pt;}
.wsf0{word-spacing:-2.992000pt;}
.wse6{word-spacing:-2.946667pt;}
.ws9{word-spacing:-2.493333pt;}
.wsb4{word-spacing:-2.240000pt;}
.ws5f{word-spacing:-2.186667pt;}
.ws99{word-spacing:-1.866667pt;}
.wse5{word-spacing:-1.813333pt;}
.ws5a{word-spacing:-1.760000pt;}
.ws44{word-spacing:-1.706667pt;}
.ws73{word-spacing:-1.686400pt;}
.ws35{word-spacing:-1.653333pt;}
.ws4e{word-spacing:-1.636800pt;}
.wsae{word-spacing:-1.600000pt;}
.ws20{word-spacing:-1.587200pt;}
.ws87{word-spacing:-1.546667pt;}
.wsaa{word-spacing:-1.493333pt;}
.ws90{word-spacing:-1.488000pt;}
.ws11{word-spacing:-1.450667pt;}
.ws81{word-spacing:-1.440000pt;}
.ws72{word-spacing:-1.388800pt;}
.ws16{word-spacing:-1.360000pt;}
.ws88{word-spacing:-1.333333pt;}
.wsd8{word-spacing:-1.289600pt;}
.wsdd{word-spacing:-1.280000pt;}
.ws5e{word-spacing:-1.226667pt;}
.wsa{word-spacing:-1.224000pt;}
.ws8{word-spacing:-1.178667pt;}
.ws57{word-spacing:-1.104000pt;}
.ws19{word-spacing:-1.066667pt;}
.wsbf{word-spacing:-1.013333pt;}
.ws1e{word-spacing:-0.992000pt;}
.ws6{word-spacing:-0.960000pt;}
.wsc7{word-spacing:-0.942400pt;}
.ws33{word-spacing:-0.906667pt;}
.wsc6{word-spacing:-0.892800pt;}
.ws18{word-spacing:-0.861333pt;}
.ws98{word-spacing:-0.853333pt;}
.ws97{word-spacing:-0.800000pt;}
.wse0{word-spacing:-0.793600pt;}
.wsb2{word-spacing:-0.746667pt;}
.wsc0{word-spacing:-0.693333pt;}
.wsfe{word-spacing:-0.680000pt;}
.ws3{word-spacing:-0.670933pt;}
.wsd7{word-spacing:-0.644800pt;}
.ws30{word-spacing:-0.640000pt;}
.wsed{word-spacing:-0.634667pt;}
.wsd6{word-spacing:-0.595200pt;}
.ws46{word-spacing:-0.586667pt;}
.ws39{word-spacing:-0.533333pt;}
.ws54{word-spacing:-0.496000pt;}
.ws5d{word-spacing:-0.480000pt;}
.ws8b{word-spacing:-0.446400pt;}
.ws42{word-spacing:-0.426667pt;}
.ws3f{word-spacing:-0.373333pt;}
.wsa5{word-spacing:-0.347200pt;}
.ws4a{word-spacing:-0.320000pt;}
.wsad{word-spacing:-0.266667pt;}
.wsc2{word-spacing:-0.248000pt;}
.ws36{word-spacing:-0.213333pt;}
.ws23{word-spacing:-0.198400pt;}
.ws17{word-spacing:-0.181333pt;}
.ws84{word-spacing:-0.160000pt;}
.wsa4{word-spacing:-0.148800pt;}
.ws6c{word-spacing:-0.106667pt;}
.ws62{word-spacing:-0.099200pt;}
.ws41{word-spacing:-0.053333pt;}
.wse7{word-spacing:-0.049600pt;}
.ws4{word-spacing:-0.039467pt;}
.ws7{word-spacing:0.000000pt;}
.ws3a{word-spacing:0.053333pt;}
.ws1a{word-spacing:0.106667pt;}
.wse9{word-spacing:0.148800pt;}
.ws86{word-spacing:0.160000pt;}
.wsee{word-spacing:0.181333pt;}
.wsc4{word-spacing:0.198400pt;}
.ws9e{word-spacing:0.213333pt;}
.wsff{word-spacing:0.226667pt;}
.wsb3{word-spacing:0.266667pt;}
.ws10{word-spacing:0.272000pt;}
.ws40{word-spacing:0.320000pt;}
.ws102{word-spacing:0.362667pt;}
.ws76{word-spacing:0.396800pt;}
.ws83{word-spacing:0.426667pt;}
.wsdf{word-spacing:0.446400pt;}
.wsb{word-spacing:0.453333pt;}
.ws82{word-spacing:0.480000pt;}
.ws50{word-spacing:0.496000pt;}
.wsd9{word-spacing:0.533333pt;}
.ws92{word-spacing:0.545600pt;}
.ws91{word-spacing:0.595200pt;}
.wsde{word-spacing:0.640000pt;}
.wsb9{word-spacing:0.644800pt;}
.wsa2{word-spacing:0.693333pt;}
.ws4f{word-spacing:0.694400pt;}
.wsf{word-spacing:0.725333pt;}
.ws1f{word-spacing:0.744000pt;}
.ws70{word-spacing:0.746667pt;}
.wse1{word-spacing:0.793600pt;}
.ws3e{word-spacing:0.800000pt;}
.ws8a{word-spacing:0.843200pt;}
.ws6f{word-spacing:0.853333pt;}
.ws8f{word-spacing:0.892800pt;}
.ws31{word-spacing:0.906667pt;}
.ws15{word-spacing:0.952000pt;}
.wscf{word-spacing:0.960000pt;}
.ws6e{word-spacing:1.013333pt;}
.ws1c{word-spacing:1.066667pt;}
.ws6d{word-spacing:1.120000pt;}
.wsc{word-spacing:1.133333pt;}
.ws85{word-spacing:1.173333pt;}
.ws71{word-spacing:1.190400pt;}
.ws9a{word-spacing:1.226667pt;}
.wse2{word-spacing:1.240000pt;}
.ws13{word-spacing:1.269333pt;}
.wsdb{word-spacing:1.280000pt;}
.ws8e{word-spacing:1.289600pt;}
.ws9c{word-spacing:1.333333pt;}
.wsc8{word-spacing:1.388800pt;}
.wsfd{word-spacing:1.405333pt;}
.wsda{word-spacing:1.440000pt;}
.ws12{word-spacing:1.450667pt;}
.ws47{word-spacing:1.493333pt;}
.ws77{word-spacing:1.537600pt;}
.ws6b{word-spacing:1.546667pt;}
.ws14{word-spacing:1.586667pt;}
.ws22{word-spacing:1.587200pt;}
.ws63{word-spacing:1.636800pt;}
.ws2f{word-spacing:1.653333pt;}
.ws75{word-spacing:1.686400pt;}
.ws2e{word-spacing:1.706667pt;}
.wsfc{word-spacing:1.722667pt;}
.wsc5{word-spacing:1.736000pt;}
.ws60{word-spacing:1.760000pt;}
.ws5b{word-spacing:1.813333pt;}
.ws21{word-spacing:1.835200pt;}
.ws78{word-spacing:1.884800pt;}
.ws59{word-spacing:1.920000pt;}
.ws38{word-spacing:1.973333pt;}
.wsc1{word-spacing:1.984000pt;}
.ws37{word-spacing:2.026667pt;}
.ws51{word-spacing:2.033600pt;}
.wse{word-spacing:2.130667pt;}
.wsdc{word-spacing:2.133333pt;}
.ws74{word-spacing:2.182400pt;}
.ws4d{word-spacing:2.186667pt;}
.ws1d{word-spacing:2.240000pt;}
.ws45{word-spacing:2.293333pt;}
.wsd{word-spacing:2.312000pt;}
.wsa3{word-spacing:2.346667pt;}
.ws9f{word-spacing:2.400000pt;}
.wse8{word-spacing:2.430400pt;}
.wsd0{word-spacing:2.453333pt;}
.wsb5{word-spacing:2.506667pt;}
.ws32{word-spacing:2.560000pt;}
.ws4b{word-spacing:2.613333pt;}
.wsab{word-spacing:2.666667pt;}
.ws53{word-spacing:2.678400pt;}
.ws1b{word-spacing:2.720000pt;}
.ws49{word-spacing:2.773333pt;}
.ws105{word-spacing:2.810667pt;}
.wscd{word-spacing:2.826667pt;}
.wsca{word-spacing:2.827200pt;}
.wsd2{word-spacing:2.880000pt;}
.ws34{word-spacing:2.933333pt;}
.ws43{word-spacing:2.986667pt;}
.wsa0{word-spacing:3.040000pt;}
.ws6a{word-spacing:3.093333pt;}
.wsc3{word-spacing:3.124800pt;}
.ws48{word-spacing:3.146667pt;}
.wsac{word-spacing:3.200000pt;}
.wsa1{word-spacing:3.253333pt;}
.ws89{word-spacing:3.306667pt;}
.ws8c{word-spacing:3.422400pt;}
.ws3d{word-spacing:3.466667pt;}
.ws3c{word-spacing:3.520000pt;}
.wsb7{word-spacing:3.573333pt;}
.wsb8{word-spacing:3.620800pt;}
.wsd3{word-spacing:3.626667pt;}
.ws8d{word-spacing:3.720000pt;}
.wsaf{word-spacing:3.733333pt;}
.ws5c{word-spacing:3.786667pt;}
.wsb6{word-spacing:3.893333pt;}
.wsd4{word-spacing:4.053333pt;}
.wsbe{word-spacing:4.160000pt;}
.ws4c{word-spacing:4.213333pt;}
.wsd5{word-spacing:4.320000pt;}
.ws3b{word-spacing:4.373333pt;}
.ws61{word-spacing:4.414400pt;}
.wsd1{word-spacing:4.480000pt;}
.wsb1{word-spacing:4.533333pt;}
.ws9d{word-spacing:4.800000pt;}
.wsc9{word-spacing:4.960000pt;}
.wsb0{word-spacing:5.013333pt;}
.wsce{word-spacing:6.133333pt;}
.ws52{word-spacing:6.795200pt;}
.ws9b{word-spacing:10.720000pt;}
.ws5{word-spacing:729.264000pt;}
.ws2d{word-spacing:730.704000pt;}
.ws107{word-spacing:730.992000pt;}
.ws96{word-spacing:731.040000pt;}
.ws69{word-spacing:731.088000pt;}
.wsbd{word-spacing:732.912000pt;}
.ws101{word-spacing:733.104000pt;}
.wsf8{word-spacing:735.216000pt;}
.wsec{word-spacing:735.984000pt;}
.ws58{word-spacing:1467.312000pt;}
.wsfb{word-spacing:1467.408000pt;}
.wse4{word-spacing:1468.944000pt;}
.wsa9{word-spacing:1469.328000pt;}
.wsf3{word-spacing:1469.520000pt;}
.ws104{word-spacing:1470.048000pt;}
.wscc{word-spacing:1470.096000pt;}
.ws80{word-spacing:1472.976000pt;}
._28{margin-left:-736.012000pt;}
._29{margin-left:-734.769067pt;}
._21{margin-left:-732.936000pt;}
._15{margin-left:-731.795200pt;}
._b{margin-left:-730.790400pt;}
._1{margin-left:-728.880000pt;}
._1e{margin-left:-14.952000pt;}
._25{margin-left:-12.858667pt;}
._16{margin-left:-11.633067pt;}
._22{margin-left:-10.620800pt;}
._1a{margin-left:-6.122667pt;}
._7{margin-left:-5.209600pt;}
._5{margin-left:-4.200533pt;}
._a{margin-left:-3.219200pt;}
._4{margin-left:-2.275200pt;}
._3{margin-left:-0.988800pt;}
._2{width:1.156800pt;}
._0{width:2.049600pt;}
._6{width:2.994667pt;}
._8{width:4.232800pt;}
._11{width:5.387733pt;}
._10{width:6.783040pt;}
._1d{width:10.395733pt;}
._12{width:13.866667pt;}
._24{width:21.227733pt;}
._26{width:23.410667pt;}
._20{width:25.493333pt;}
._23{width:26.634667pt;}
._17{width:27.526933pt;}
._1c{width:29.213867pt;}
._1b{width:30.752000pt;}
._19{width:32.338133pt;}
._1f{width:33.528533pt;}
._18{width:35.562133pt;}
._f{width:38.191467pt;}
._13{width:40.721067pt;}
._e{width:43.201600pt;}
._d{width:45.730667pt;}
._c{width:47.862933pt;}
._14{width:50.393067pt;}
._9{width:52.029867pt;}
._27{width:64.976000pt;}
.fs8{font-size:19.733333pt;}
.fsa{font-size:28.916800pt;}
.fs9{font-size:31.093333pt;}
.fs6{font-size:36.800000pt;}
.fs4{font-size:45.333333pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:49.600000pt;}
.fs2{font-size:49.749333pt;}
.fs5{font-size:53.333333pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:35.905867pt;}
.yb3{bottom:71.815067pt;}
.y18a{bottom:74.466933pt;}
.y92{bottom:76.346533pt;}
.y24{bottom:80.504000pt;}
.ybb{bottom:80.504133pt;}
.y70{bottom:80.508000pt;}
.y99{bottom:80.511733pt;}
.y51{bottom:80.515600pt;}
.y16b{bottom:84.122267pt;}
.y147{bottom:84.156267pt;}
.yb2{bottom:87.277867pt;}
.y189{bottom:89.936933pt;}
.y91{bottom:91.817067pt;}
.y6f{bottom:95.970800pt;}
.y7c{bottom:95.970933pt;}
.y23{bottom:95.974533pt;}
.y50{bottom:95.978400pt;}
.y138{bottom:99.456267pt;}
.y12c{bottom:99.467600pt;}
.y146{bottom:99.490267pt;}
.yb1{bottom:102.744667pt;}
.y90{bottom:107.279867pt;}
.y22{bottom:111.437333pt;}
.ya8{bottom:111.437467pt;}
.y6e{bottom:111.437600pt;}
.y4f{bottom:111.441200pt;}
.y96{bottom:111.445200pt;}
.y137{bottom:114.790267pt;}
.y12b{bottom:114.801600pt;}
.y145{bottom:114.824267pt;}
.yb0{bottom:118.215200pt;}
.y8f{bottom:122.746667pt;}
.y4e{bottom:126.904000pt;}
.y6d{bottom:126.904267pt;}
.y95{bottom:126.908000pt;}
.ya7{bottom:126.908133pt;}
.y21{bottom:126.911733pt;}
.y7b{bottom:126.915867pt;}
.y136{bottom:130.124267pt;}
.y12a{bottom:130.135600pt;}
.y144{bottom:130.158267pt;}
.yaf{bottom:133.678000pt;}
.y8e{bottom:138.213333pt;}
.y94{bottom:142.370800pt;}
.ya6{bottom:142.370933pt;}
.y6c{bottom:142.371067pt;}
.y20{bottom:142.374533pt;}
.y4d{bottom:142.374800pt;}
.yba{bottom:142.378400pt;}
.y7a{bottom:142.378667pt;}
.y135{bottom:145.458267pt;}
.y129{bottom:145.469600pt;}
.y143{bottom:145.492267pt;}
.yae{bottom:149.152533pt;}
.y8d{bottom:153.680133pt;}
.y1f{bottom:157.837333pt;}
.y4c{bottom:157.837600pt;}
.y6b{bottom:157.837733pt;}
.yb9{bottom:157.841200pt;}
.y79{bottom:157.841467pt;}
.ya5{bottom:157.849333pt;}
.y134{bottom:160.792267pt;}
.y128{bottom:160.803600pt;}
.y142{bottom:160.826267pt;}
.y98{bottom:163.171600pt;}
.yad{bottom:164.615333pt;}
.y8c{bottom:169.150800pt;}
.yb8{bottom:173.304000pt;}
.y78{bottom:173.304267pt;}
.y4b{bottom:173.308133pt;}
.y6a{bottom:173.308400pt;}
.ybf{bottom:173.312000pt;}
.ya4{bottom:173.312133pt;}
.y133{bottom:176.126267pt;}
.y127{bottom:176.137600pt;}
.y141{bottom:176.160267pt;}
.y17b{bottom:178.263467pt;}
.y97{bottom:179.571600pt;}
.yac{bottom:180.078133pt;}
.y8b{bottom:184.613600pt;}
.y4a{bottom:188.770933pt;}
.y69{bottom:188.771200pt;}
.ybe{bottom:188.774800pt;}
.y77{bottom:188.774933pt;}
.yb7{bottom:188.778667pt;}
.y132{bottom:191.460267pt;}
.y126{bottom:191.471600pt;}
.y140{bottom:191.494267pt;}
.y188{bottom:192.537600pt;}
.y17a{bottom:193.733467pt;}
.yab{bottom:195.544800pt;}
.y1e{bottom:195.971600pt;}
.y8a{bottom:200.080267pt;}
.ybd{bottom:204.237600pt;}
.y49{bottom:204.237733pt;}
.yb6{bottom:204.241467pt;}
.y131{bottom:206.794267pt;}
.y125{bottom:206.805600pt;}
.y13f{bottom:206.828267pt;}
.y187{bottom:208.007600pt;}
.y179{bottom:209.203467pt;}
.yaa{bottom:211.015467pt;}
.y1d{bottom:212.371600pt;}
.y89{bottom:215.547067pt;}
.yb5{bottom:219.704267pt;}
.ya3{bottom:219.704533pt;}
.y48{bottom:219.708267pt;}
.y130{bottom:222.128267pt;}
.y124{bottom:222.139600pt;}
.y13e{bottom:222.162267pt;}
.y178{bottom:224.673467pt;}
.ya9{bottom:226.478267pt;}
.y1c{bottom:228.771600pt;}
.y88{bottom:231.017733pt;}
.yb4{bottom:235.170933pt;}
.y47{bottom:235.171067pt;}
.ya2{bottom:235.171200pt;}
.y12f{bottom:237.462267pt;}
.y123{bottom:237.473600pt;}
.y13d{bottom:237.496267pt;}
.y177{bottom:240.143467pt;}
.y17c{bottom:243.216533pt;}
.y1b{bottom:245.171600pt;}
.y68{bottom:245.171733pt;}
.y87{bottom:246.484400pt;}
.y76{bottom:250.637733pt;}
.ya1{bottom:250.641733pt;}
.y12e{bottom:252.796267pt;}
.y122{bottom:252.807600pt;}
.y13c{bottom:252.830267pt;}
.y93{bottom:261.571600pt;}
.y67{bottom:261.571733pt;}
.y86{bottom:261.947200pt;}
.ya0{bottom:266.104533pt;}
.y75{bottom:266.108267pt;}
.yde{bottom:267.380133pt;}
.ycf{bottom:267.391467pt;}
.y12d{bottom:268.130267pt;}
.y121{bottom:268.141600pt;}
.y13b{bottom:268.164267pt;}
.y85{bottom:277.413733pt;}
.y1a{bottom:277.971600pt;}
.y66{bottom:277.971733pt;}
.y74{bottom:281.571067pt;}
.y9f{bottom:281.571200pt;}
.y16f{bottom:282.194933pt;}
.ydd{bottom:282.714133pt;}
.yce{bottom:282.725467pt;}
.y16a{bottom:283.464267pt;}
.y120{bottom:283.475600pt;}
.y13a{bottom:283.498267pt;}
.y46{bottom:294.371600pt;}
.y65{bottom:294.371733pt;}
.y73{bottom:297.037733pt;}
.y9e{bottom:297.037867pt;}
.y16e{bottom:297.528933pt;}
.ydc{bottom:298.048133pt;}
.ycd{bottom:298.059467pt;}
.y169{bottom:298.798267pt;}
.y139{bottom:298.832267pt;}
.y186{bottom:303.138533pt;}
.y45{bottom:310.771600pt;}
.y64{bottom:310.771733pt;}
.y72{bottom:312.508267pt;}
.y9d{bottom:312.516133pt;}
.y16d{bottom:312.862933pt;}
.ydb{bottom:313.382133pt;}
.ycc{bottom:313.393467pt;}
.y168{bottom:314.132267pt;}
.yff{bottom:314.166267pt;}
.y185{bottom:318.608533pt;}
.y44{bottom:327.171600pt;}
.y71{bottom:327.971067pt;}
.y9c{bottom:327.978933pt;}
.y16c{bottom:328.196933pt;}
.yda{bottom:328.716133pt;}
.ycb{bottom:328.727467pt;}
.y167{bottom:329.466267pt;}
.y11f{bottom:329.477600pt;}
.yfe{bottom:329.500267pt;}
.y184{bottom:334.078533pt;}
.y19{bottom:335.290267pt;}
.y9b{bottom:343.441733pt;}
.y43{bottom:343.571600pt;}
.y84{bottom:343.571733pt;}
.yd9{bottom:344.050133pt;}
.yca{bottom:344.061467pt;}
.y166{bottom:344.800267pt;}
.y11e{bottom:344.811600pt;}
.yfd{bottom:344.834267pt;}
.y183{bottom:349.548533pt;}
.y18{bottom:350.624267pt;}
.y9a{bottom:358.904533pt;}
.yd8{bottom:359.384133pt;}
.yc9{bottom:359.395467pt;}
.y42{bottom:359.971600pt;}
.y83{bottom:359.971733pt;}
.y165{bottom:360.134267pt;}
.y11d{bottom:360.145600pt;}
.yfc{bottom:360.168267pt;}
.y182{bottom:365.018533pt;}
.yd7{bottom:374.718133pt;}
.yc8{bottom:374.729467pt;}
.y164{bottom:375.468267pt;}
.y11c{bottom:375.479600pt;}
.yfb{bottom:375.502267pt;}
.y41{bottom:376.371600pt;}
.y82{bottom:376.371733pt;}
.y17{bottom:381.292267pt;}
.yd6{bottom:390.052133pt;}
.yc7{bottom:390.063467pt;}
.y163{bottom:390.802267pt;}
.y11b{bottom:390.813600pt;}
.yfa{bottom:390.836267pt;}
.y40{bottom:392.771600pt;}
.y81{bottom:392.771733pt;}
.y176{bottom:395.138133pt;}
.y16{bottom:396.626267pt;}
.yd5{bottom:405.386133pt;}
.yc6{bottom:405.397467pt;}
.y162{bottom:406.136267pt;}
.y11a{bottom:406.147600pt;}
.yf9{bottom:406.170267pt;}
.y3f{bottom:409.171600pt;}
.y80{bottom:409.171733pt;}
.y175{bottom:410.608133pt;}
.yd4{bottom:420.720133pt;}
.yc5{bottom:420.731467pt;}
.y161{bottom:421.470267pt;}
.y119{bottom:421.481600pt;}
.yf8{bottom:421.504267pt;}
.y3e{bottom:425.571600pt;}
.y174{bottom:426.078133pt;}
.y15{bottom:427.294267pt;}
.yd3{bottom:436.054133pt;}
.yc4{bottom:436.065467pt;}
.y160{bottom:436.804267pt;}
.y118{bottom:436.815600pt;}
.yf7{bottom:436.838267pt;}
.y173{bottom:441.548133pt;}
.y3d{bottom:441.971600pt;}
.y7f{bottom:441.971733pt;}
.y14{bottom:442.628267pt;}
.yd2{bottom:451.388133pt;}
.yc3{bottom:451.399467pt;}
.y15f{bottom:452.138267pt;}
.y117{bottom:452.149600pt;}
.yf6{bottom:452.172267pt;}
.y172{bottom:457.018133pt;}
.y3c{bottom:458.371600pt;}
.y63{bottom:458.371733pt;}
.yd1{bottom:466.722133pt;}
.yc2{bottom:466.733467pt;}
.y15e{bottom:467.472267pt;}
.y116{bottom:467.483600pt;}
.yf5{bottom:467.506267pt;}
.y13{bottom:473.296267pt;}
.y3b{bottom:474.771600pt;}
.y7e{bottom:474.771733pt;}
.yd0{bottom:482.056133pt;}
.yc1{bottom:482.067467pt;}
.y15d{bottom:482.806267pt;}
.y115{bottom:482.817600pt;}
.yf4{bottom:482.840267pt;}
.y12{bottom:488.630267pt;}
.y3a{bottom:491.171600pt;}
.y62{bottom:491.171733pt;}
.yc0{bottom:497.401467pt;}
.y15c{bottom:498.140267pt;}
.y114{bottom:498.151600pt;}
.yf3{bottom:498.174267pt;}
.y171{bottom:502.124800pt;}
.y11{bottom:503.964267pt;}
.y39{bottom:507.571600pt;}
.y61{bottom:507.571733pt;}
.y15b{bottom:513.474267pt;}
.y113{bottom:513.485600pt;}
.yf2{bottom:513.508267pt;}
.y170{bottom:517.594800pt;}
.y10{bottom:519.298267pt;}
.y38{bottom:523.971600pt;}
.y60{bottom:523.971733pt;}
.ybc{bottom:527.171600pt;}
.y15a{bottom:528.808267pt;}
.y112{bottom:528.819600pt;}
.yf1{bottom:528.842267pt;}
.yf{bottom:534.632267pt;}
.y37{bottom:540.371600pt;}
.y5f{bottom:540.371733pt;}
.y159{bottom:544.142267pt;}
.y111{bottom:544.153600pt;}
.yf0{bottom:544.176267pt;}
.ye{bottom:549.966267pt;}
.y36{bottom:556.771600pt;}
.y5e{bottom:556.771733pt;}
.y158{bottom:559.476267pt;}
.y110{bottom:559.487600pt;}
.yef{bottom:559.510267pt;}
.yd{bottom:565.300267pt;}
.y35{bottom:573.171600pt;}
.y5d{bottom:573.171733pt;}
.y157{bottom:574.810267pt;}
.y10f{bottom:574.821600pt;}
.yee{bottom:574.844267pt;}
.yc{bottom:580.634267pt;}
.y34{bottom:589.571600pt;}
.y5c{bottom:589.571733pt;}
.y156{bottom:590.144267pt;}
.y10e{bottom:590.155600pt;}
.yed{bottom:590.178267pt;}
.yb{bottom:595.968267pt;}
.y155{bottom:605.478267pt;}
.y10d{bottom:605.489600pt;}
.yec{bottom:605.512267pt;}
.y33{bottom:605.971600pt;}
.y5b{bottom:605.971733pt;}
.y17d{bottom:606.551867pt;}
.ya{bottom:611.302267pt;}
.y154{bottom:620.812267pt;}
.y10c{bottom:620.823600pt;}
.yeb{bottom:620.846267pt;}
.y32{bottom:622.371600pt;}
.y5a{bottom:622.371733pt;}
.y9{bottom:626.636267pt;}
.y153{bottom:636.146267pt;}
.y10b{bottom:636.157600pt;}
.yea{bottom:636.180267pt;}
.y31{bottom:638.771600pt;}
.y59{bottom:638.771733pt;}
.y8{bottom:641.970267pt;}
.y152{bottom:651.480267pt;}
.y10a{bottom:651.491600pt;}
.ye9{bottom:651.514267pt;}
.y30{bottom:655.171600pt;}
.y58{bottom:655.171733pt;}
.y7{bottom:657.304267pt;}
.y151{bottom:666.814267pt;}
.y109{bottom:666.825600pt;}
.ye8{bottom:666.848267pt;}
.y2f{bottom:671.571600pt;}
.y57{bottom:671.571733pt;}
.y6{bottom:672.638267pt;}
.y150{bottom:682.148267pt;}
.y108{bottom:682.159600pt;}
.ye7{bottom:682.182267pt;}
.y2e{bottom:687.971600pt;}
.y56{bottom:687.971733pt;}
.y14f{bottom:697.482267pt;}
.y107{bottom:697.493600pt;}
.ye6{bottom:697.516267pt;}
.y2d{bottom:704.371600pt;}
.y55{bottom:704.371733pt;}
.y14e{bottom:712.816267pt;}
.y106{bottom:712.827600pt;}
.ye5{bottom:712.850267pt;}
.y2c{bottom:720.771600pt;}
.y54{bottom:720.771733pt;}
.y14d{bottom:728.150267pt;}
.y105{bottom:728.161600pt;}
.ye4{bottom:728.184267pt;}
.y5{bottom:736.180933pt;}
.y2b{bottom:737.171600pt;}
.y53{bottom:737.171733pt;}
.y14c{bottom:743.484267pt;}
.y104{bottom:743.495600pt;}
.ye3{bottom:743.518267pt;}
.y2a{bottom:753.571600pt;}
.y52{bottom:753.571733pt;}
.y181{bottom:758.708933pt;}
.y14b{bottom:758.818267pt;}
.y103{bottom:758.829600pt;}
.ye2{bottom:758.852267pt;}
.y26{bottom:762.125333pt;}
.y25{bottom:768.790267pt;}
.y29{bottom:769.971600pt;}
.y7d{bottom:769.971733pt;}
.y4{bottom:774.058400pt;}
.y14a{bottom:774.152267pt;}
.y102{bottom:774.163600pt;}
.y180{bottom:774.178933pt;}
.ye1{bottom:774.186267pt;}
.y28{bottom:786.371600pt;}
.y149{bottom:789.486267pt;}
.y101{bottom:789.497600pt;}
.ye0{bottom:789.520267pt;}
.y17f{bottom:789.648933pt;}
.y3{bottom:796.714400pt;}
.y27{bottom:802.771600pt;}
.y148{bottom:804.820267pt;}
.y100{bottom:804.831600pt;}
.ydf{bottom:804.854267pt;}
.y17e{bottom:805.118933pt;}
.y2{bottom:849.726533pt;}
.ha{height:13.596267pt;}
.hf{height:39.304000pt;}
.h11{height:40.482667pt;}
.h10{height:40.618667pt;}
.h6{height:40.800000pt;}
.h12{height:41.434667pt;}
.h5{height:42.840000pt;}
.h9{height:44.441600pt;}
.h2{height:45.216000pt;}
.he{height:47.893333pt;}
.h8{height:48.000000pt;}
.hc{height:48.000533pt;}
.hb{height:48.746667pt;}
.hd{height:50.240000pt;}
.h7{height:50.400000pt;}
.h4{height:60.288000pt;}
.h3{height:80.640000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x8{left:22.497867pt;}
.x7{left:25.226000pt;}
.x5{left:64.252000pt;}
.x1{left:71.811067pt;}
.xb{left:75.585333pt;}
.x6{left:83.149600pt;}
.x2{left:90.714133pt;}
.x10{left:298.971067pt;}
.xc{left:314.152000pt;}
.xa{left:321.711067pt;}
.xd{left:325.485333pt;}
.x9{left:333.044400pt;}
.xe{left:367.101067pt;}
.xf{left:416.472400pt;}
.x4{left:578.088400pt;}
.x3{left:580.816533pt;}
}




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