
    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_4e9a4509a987ce4028f44c70.woff')format("woff");}.ff1{font-family:ff1;line-height:1.015625;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_3aa00a3d6a3b9369bc31d54f.woff')format("woff");}.ff2{font-family:ff2;line-height:0.976603;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_fde92ec6aa2dd1d02676c919.woff')format("woff");}.ff3{font-family:ff3;line-height:1.022461;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_edae5383d6fdc7a70d21339d.woff')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_62730b09858d9a30d9c52fa0.woff')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_a07a04a2883761eb0fd26897.woff')format("woff");}.ff6{font-family:ff6;line-height:1.026855;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_e47e2ab6936ca428b94810a8.woff')format("woff");}.ff7{font-family:ff7;line-height:1.011230;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_b41342b2cdd6b6dc09e8bae0.woff')format("woff");}.ff8{font-family:ff8;line-height:0.976118;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_1ecc393f0a7e6fa70c65d0f8.woff')format("woff");}.ff9{font-family:ff9;line-height:1.031738;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_2bd304fb4afa6d8568775586.woff')format("woff");}.ffa{font-family:ffa;line-height:0.710938;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_b00d5d2355bc5fe7ae72a4e1.woff')format("woff");}.ffb{font-family:ffb;line-height:0.964897;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_99a2ddc66a67e7f7e5c87117.woff')format("woff");}.ffc{font-family:ffc;line-height:0.968262;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_cd5fa0f18bc6c405bcc355b7.woff')format("woff");}.ffd{font-family:ffd;line-height:0.964863;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:ffe;src:url('chunks/assets/font_5ade37e16e951f30677828fb.woff')format("woff");}.ffe{font-family:ffe;line-height:0.917969;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:fff;src:url('chunks/assets/font_611452792ff0671eb76927ae.woff')format("woff");}.fff{font-family:fff;line-height:0.970858;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;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m2{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;}
.v2{vertical-align:17.982000px;}
.v1{vertical-align:21.978000px;}
.ls13{letter-spacing:-7.236000px;}
.ls29{letter-spacing:-3.360000px;}
.ls12{letter-spacing:-3.240000px;}
.lsa{letter-spacing:-1.200000px;}
.ls11{letter-spacing:-0.900000px;}
.ls1e{letter-spacing:-0.840000px;}
.ls7{letter-spacing:-0.691200px;}
.ls10{letter-spacing:-0.600000px;}
.ls17{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.120000px;}
.ls6{letter-spacing:-0.102000px;}
.ls5{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.012000px;}
.lse{letter-spacing:0.022800px;}
.lsf{letter-spacing:0.023400px;}
.ls4{letter-spacing:0.025800px;}
.ls3{letter-spacing:0.600000px;}
.ls8{letter-spacing:1.200000px;}
.lsc{letter-spacing:1.299600px;}
.lsd{letter-spacing:1.761600px;}
.ls14{letter-spacing:5.405400px;}
.ls9{letter-spacing:9.217200px;}
.ls16{letter-spacing:16.591800px;}
.ls15{letter-spacing:19.263600px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.201242px;}
.ls19{letter-spacing:106.115400px;}
.ls18{letter-spacing:125.926200px;}
.ls27{letter-spacing:141.100800px;}
.ls1b{letter-spacing:141.101400px;}
.ls21{letter-spacing:141.111600px;}
.ls23{letter-spacing:143.736600px;}
.ls24{letter-spacing:144.676200px;}
.ls1f{letter-spacing:147.838200px;}
.ls28{letter-spacing:155.871000px;}
.ls1a{letter-spacing:156.408000px;}
.ls20{letter-spacing:156.428400px;}
.ls26{letter-spacing:159.033000px;}
.ls1d{letter-spacing:159.043200px;}
.ls22{letter-spacing:159.053400px;}
.ls1c{letter-spacing:295.509600px;}
.ls25{letter-spacing:383.890800px;}
.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;}
}
.ws10f{word-spacing:-394.306800px;}
.wsa4{word-spacing:-60.000000px;}
.ws7{word-spacing:-17.928000px;}
.wsb5{word-spacing:-16.434000px;}
.ws47{word-spacing:-15.900000px;}
.ws8{word-spacing:-15.300000px;}
.ws5{word-spacing:-14.940000px;}
.ws7b{word-spacing:-14.880000px;}
.ws7d{word-spacing:-14.820000px;}
.ws27{word-spacing:-14.700000px;}
.wsa3{word-spacing:-14.100000px;}
.ws7c{word-spacing:-13.740000px;}
.ws97{word-spacing:-13.446000px;}
.ws61{word-spacing:-13.392000px;}
.ws6{word-spacing:-13.230000px;}
.wsbf{word-spacing:-12.852000px;}
.wsbe{word-spacing:-12.690000px;}
.wsa{word-spacing:-12.150000px;}
.ws9{word-spacing:-11.772000px;}
.ws3{word-spacing:-10.896000px;}
.ws26{word-spacing:-10.800000px;}
.wsb{word-spacing:-10.464000px;}
.wsd7{word-spacing:-9.618000px;}
.wse2{word-spacing:-9.576000px;}
.ws2{word-spacing:-9.542544px;}
.wsd6{word-spacing:-9.534000px;}
.wse3{word-spacing:-9.450000px;}
.ws4{word-spacing:-9.417600px;}
.wsb6{word-spacing:-7.807536px;}
.ws9b{word-spacing:-6.210000px;}
.wsd4{word-spacing:-4.050000px;}
.wsec{word-spacing:-3.834000px;}
.ws93{word-spacing:-3.480000px;}
.ws91{word-spacing:-3.240000px;}
.wsc0{word-spacing:-3.132000px;}
.wsb0{word-spacing:-2.940000px;}
.wsb1{word-spacing:-2.880000px;}
.ws36{word-spacing:-2.820000px;}
.ws2c{word-spacing:-2.760000px;}
.ws4a{word-spacing:-2.700000px;}
.ws9a{word-spacing:-2.646000px;}
.ws14{word-spacing:-2.592000px;}
.wsa7{word-spacing:-2.580000px;}
.wscb{word-spacing:-2.376000px;}
.ws50{word-spacing:-2.280000px;}
.ws84{word-spacing:-2.220000px;}
.ws5d{word-spacing:-2.160000px;}
.ws1f{word-spacing:-2.100000px;}
.ws1e{word-spacing:-2.040000px;}
.ws1d{word-spacing:-1.980000px;}
.ws74{word-spacing:-1.740000px;}
.wsa9{word-spacing:-1.680000px;}
.wsf2{word-spacing:-1.674000px;}
.ws16{word-spacing:-1.620000px;}
.wsc1{word-spacing:-1.512000px;}
.ws12{word-spacing:-1.458000px;}
.ws22{word-spacing:-1.440000px;}
.ws39{word-spacing:-1.380000px;}
.wsb9{word-spacing:-1.296000px;}
.ws85{word-spacing:-1.260000px;}
.ws8d{word-spacing:-1.200000px;}
.ws87{word-spacing:-1.080000px;}
.ws83{word-spacing:-1.020000px;}
.ws2b{word-spacing:-0.900000px;}
.ws86{word-spacing:-0.840000px;}
.wsc3{word-spacing:-0.810000px;}
.ws124{word-spacing:-0.798000px;}
.ws4d{word-spacing:-0.720000px;}
.ws82{word-spacing:-0.660000px;}
.ws20{word-spacing:-0.600000px;}
.ws70{word-spacing:-0.540000px;}
.ws126{word-spacing:-0.378000px;}
.ws5b{word-spacing:-0.360000px;}
.ws125{word-spacing:-0.336000px;}
.ws18{word-spacing:-0.324000px;}
.ws72{word-spacing:-0.300000px;}
.ws7f{word-spacing:-0.240000px;}
.wse{word-spacing:-0.216000px;}
.ws53{word-spacing:-0.180000px;}
.wsa5{word-spacing:-0.120000px;}
.ws73{word-spacing:-0.060000px;}
.wsa1{word-spacing:-0.054000px;}
.wsc{word-spacing:0.000000px;}
.wsd2{word-spacing:0.054000px;}
.wsd{word-spacing:0.102000px;}
.ws6b{word-spacing:0.180000px;}
.wsb7{word-spacing:0.240000px;}
.ws30{word-spacing:0.300000px;}
.ws49{word-spacing:0.360000px;}
.wsa6{word-spacing:0.420000px;}
.ws75{word-spacing:0.480000px;}
.ws99{word-spacing:0.540000px;}
.ws2a{word-spacing:0.600000px;}
.ws5c{word-spacing:0.660000px;}
.wsf{word-spacing:0.691200px;}
.ws67{word-spacing:0.720000px;}
.ws51{word-spacing:0.780000px;}
.ws55{word-spacing:0.840000px;}
.ws8b{word-spacing:0.900000px;}
.ws65{word-spacing:0.972000px;}
.ws29{word-spacing:1.020000px;}
.wsc9{word-spacing:1.134000px;}
.wsb8{word-spacing:1.200000px;}
.ws9e{word-spacing:1.260000px;}
.wsee{word-spacing:1.404000px;}
.ws78{word-spacing:1.440000px;}
.wsb4{word-spacing:1.458000px;}
.ws25{word-spacing:1.560000px;}
.wsa2{word-spacing:1.566000px;}
.ws28{word-spacing:1.620000px;}
.ws17{word-spacing:1.674000px;}
.ws48{word-spacing:1.680000px;}
.ws9d{word-spacing:1.740000px;}
.ws9f{word-spacing:1.782000px;}
.ws69{word-spacing:1.800000px;}
.wsc8{word-spacing:1.890000px;}
.ws9c{word-spacing:1.920000px;}
.ws57{word-spacing:1.980000px;}
.ws13{word-spacing:2.052000px;}
.ws89{word-spacing:2.100000px;}
.ws88{word-spacing:2.160000px;}
.wsca{word-spacing:2.214000px;}
.ws4c{word-spacing:2.220000px;}
.wsd3{word-spacing:2.268000px;}
.ws33{word-spacing:2.280000px;}
.ws64{word-spacing:2.376000px;}
.ws23{word-spacing:2.400000px;}
.ws21{word-spacing:2.460000px;}
.wsf1{word-spacing:2.484000px;}
.ws149{word-spacing:2.520000px;}
.wsd0{word-spacing:2.592000px;}
.wsf5{word-spacing:2.646000px;}
.ws41{word-spacing:2.700000px;}
.ws2e{word-spacing:2.760000px;}
.ws6e{word-spacing:2.880000px;}
.ws1b{word-spacing:2.916000px;}
.wsf0{word-spacing:3.078000px;}
.ws4b{word-spacing:3.120000px;}
.ws15{word-spacing:3.132000px;}
.ws32{word-spacing:3.180000px;}
.wsa0{word-spacing:3.186000px;}
.ws98{word-spacing:3.240000px;}
.wsd1{word-spacing:3.294000px;}
.ws8c{word-spacing:3.300000px;}
.ws90{word-spacing:3.480000px;}
.ws7a{word-spacing:3.720000px;}
.ws24{word-spacing:4.020000px;}
.ws71{word-spacing:4.080000px;}
.wsc4{word-spacing:4.212000px;}
.ws8a{word-spacing:4.260000px;}
.ws6c{word-spacing:4.440000px;}
.ws80{word-spacing:4.500000px;}
.wsb3{word-spacing:4.536000px;}
.wsb2{word-spacing:4.590000px;}
.wsbd{word-spacing:4.644000px;}
.wsbb{word-spacing:4.752000px;}
.ws40{word-spacing:4.800000px;}
.ws63{word-spacing:4.860000px;}
.ws62{word-spacing:4.914000px;}
.ws52{word-spacing:4.920000px;}
.ws77{word-spacing:4.980000px;}
.ws56{word-spacing:5.040000px;}
.ws3b{word-spacing:5.220000px;}
.ws1a{word-spacing:5.454000px;}
.wsa8{word-spacing:5.460000px;}
.ws19{word-spacing:5.508000px;}
.ws81{word-spacing:5.520000px;}
.wsf4{word-spacing:5.562000px;}
.wsf3{word-spacing:5.616000px;}
.ws95{word-spacing:5.700000px;}
.ws76{word-spacing:5.760000px;}
.ws2d{word-spacing:5.820000px;}
.ws42{word-spacing:5.880000px;}
.wsba{word-spacing:5.886000px;}
.ws46{word-spacing:5.940000px;}
.ws58{word-spacing:6.060000px;}
.ws3a{word-spacing:6.120000px;}
.ws94{word-spacing:6.240000px;}
.ws5e{word-spacing:6.480000px;}
.ws5f{word-spacing:6.540000px;}
.ws34{word-spacing:6.600000px;}
.ws35{word-spacing:6.660000px;}
.ws38{word-spacing:6.840000px;}
.wsed{word-spacing:6.858000px;}
.ws37{word-spacing:6.900000px;}
.ws3c{word-spacing:6.960000px;}
.ws8f{word-spacing:7.020000px;}
.wsc7{word-spacing:7.128000px;}
.ws43{word-spacing:7.260000px;}
.wsc5{word-spacing:7.398000px;}
.ws4e{word-spacing:7.440000px;}
.wsc6{word-spacing:7.452000px;}
.ws54{word-spacing:7.500000px;}
.ws59{word-spacing:7.680000px;}
.wsaf{word-spacing:7.740000px;}
.ws2f{word-spacing:7.860000px;}
.ws31{word-spacing:7.920000px;}
.ws6a{word-spacing:7.980000px;}
.ws3d{word-spacing:8.220000px;}
.wsf7{word-spacing:8.262000px;}
.wsf6{word-spacing:8.316000px;}
.ws60{word-spacing:8.340000px;}
.wsc2{word-spacing:8.478000px;}
.ws6d{word-spacing:8.520000px;}
.ws68{word-spacing:8.640000px;}
.ws4f{word-spacing:8.760000px;}
.ws3f{word-spacing:8.820000px;}
.wsce{word-spacing:8.856000px;}
.ws3e{word-spacing:8.880000px;}
.wsbc{word-spacing:9.018000px;}
.ws6f{word-spacing:9.060000px;}
.ws8e{word-spacing:9.240000px;}
.ws5a{word-spacing:9.300000px;}
.wscc{word-spacing:9.612000px;}
.wsef{word-spacing:9.774000px;}
.ws1c{word-spacing:9.780000px;}
.ws7e{word-spacing:10.980000px;}
.ws92{word-spacing:11.460000px;}
.ws96{word-spacing:11.520000px;}
.ws44{word-spacing:12.060000px;}
.ws10{word-spacing:12.312000px;}
.ws11{word-spacing:12.420000px;}
.wscf{word-spacing:12.582000px;}
.ws79{word-spacing:12.660000px;}
.wscd{word-spacing:13.014000px;}
.wsae{word-spacing:16.560000px;}
.wsad{word-spacing:16.620000px;}
.ws45{word-spacing:17.400000px;}
.wsab{word-spacing:19.200000px;}
.wsac{word-spacing:19.320000px;}
.wsaa{word-spacing:19.380000px;}
.ws136{word-spacing:30.226800px;}
.ws0{word-spacing:33.644841px;}
.ws1{word-spacing:33.668871px;}
.wsfc{word-spacing:37.410600px;}
.wsfe{word-spacing:45.811200px;}
.ws134{word-spacing:45.852600px;}
.ws11c{word-spacing:49.401600px;}
.wsf8{word-spacing:49.402200px;}
.wsde{word-spacing:49.412400px;}
.ws115{word-spacing:53.602200px;}
.wse4{word-spacing:53.810400px;}
.ws138{word-spacing:54.661800px;}
.wse0{word-spacing:54.662400px;}
.ws114{word-spacing:54.672600px;}
.ws12a{word-spacing:54.694200px;}
.ws11a{word-spacing:54.714600px;}
.ws131{word-spacing:55.963200px;}
.ws128{word-spacing:56.200800px;}
.ws11b{word-spacing:56.490600px;}
.wse8{word-spacing:57.046200px;}
.ws120{word-spacing:57.077400px;}
.ws13b{word-spacing:57.214200px;}
.wsea{word-spacing:59.397600px;}
.ws110{word-spacing:59.734200px;}
.ws118{word-spacing:59.776200px;}
.ws108{word-spacing:61.465200px;}
.ws12f{word-spacing:61.465800px;}
.ws13c{word-spacing:62.188800px;}
.wsfb{word-spacing:62.830800px;}
.ws103{word-spacing:64.708800px;}
.wse1{word-spacing:64.719000px;}
.wsda{word-spacing:64.719600px;}
.wsdd{word-spacing:69.697200px;}
.ws116{word-spacing:69.708600px;}
.ws112{word-spacing:69.728400px;}
.ws105{word-spacing:70.022400px;}
.ws148{word-spacing:74.169000px;}
.ws144{word-spacing:74.190600px;}
.ws119{word-spacing:74.461800px;}
.ws13f{word-spacing:75.117000px;}
.wseb{word-spacing:76.195800px;}
.ws107{word-spacing:76.227600px;}
.ws100{word-spacing:78.170400px;}
.ws141{word-spacing:78.191400px;}
.ws130{word-spacing:81.465600px;}
.wse7{word-spacing:83.445000px;}
.wse9{word-spacing:83.445600px;}
.wsd8{word-spacing:87.369000px;}
.wsfa{word-spacing:89.826600px;}
.ws132{word-spacing:95.194200px;}
.ws10a{word-spacing:98.823000px;}
.ws137{word-spacing:109.142400px;}
.ws12b{word-spacing:109.143000px;}
.wsf9{word-spacing:115.920600px;}
.ws111{word-spacing:121.560000px;}
.wsdf{word-spacing:121.560600px;}
.ws123{word-spacing:134.943000px;}
.ws10d{word-spacing:139.120800px;}
.ws102{word-spacing:139.184400px;}
.ws122{word-spacing:140.112600px;}
.ws145{word-spacing:140.310600px;}
.wsfd{word-spacing:144.187200px;}
.ws133{word-spacing:144.198000px;}
.ws10c{word-spacing:145.992000px;}
.ws109{word-spacing:146.967600px;}
.ws101{word-spacing:147.625200px;}
.ws10e{word-spacing:148.836000px;}
.ws12c{word-spacing:150.292800px;}
.ws121{word-spacing:150.324600px;}
.ws117{word-spacing:151.170000px;}
.ws11e{word-spacing:153.413400px;}
.ws129{word-spacing:158.698200px;}
.wsd5{word-spacing:167.233200px;}
.ws127{word-spacing:171.417000px;}
.ws13d{word-spacing:195.052800px;}
.ws66{word-spacing:196.611600px;}
.ws142{word-spacing:198.628800px;}
.ws113{word-spacing:201.164400px;}
.wse6{word-spacing:201.165000px;}
.ws104{word-spacing:204.866400px;}
.ws143{word-spacing:208.893600px;}
.ws11f{word-spacing:213.600600px;}
.wsdb{word-spacing:213.601200px;}
.wse5{word-spacing:228.907800px;}
.ws13a{word-spacing:235.932600px;}
.ws12e{word-spacing:235.942800px;}
.ws140{word-spacing:249.214200px;}
.ws13e{word-spacing:249.214800px;}
.ws146{word-spacing:250.751400px;}
.wsff{word-spacing:253.849200px;}
.wsdc{word-spacing:253.869600px;}
.ws10b{word-spacing:253.879800px;}
.ws147{word-spacing:261.000600px;}
.ws139{word-spacing:264.249000px;}
.ws12d{word-spacing:264.249600px;}
.ws135{word-spacing:273.321600px;}
.wsd9{word-spacing:290.559000px;}
.ws106{word-spacing:296.311800px;}
.ws11d{word-spacing:296.362800px;}
._69{margin-left:-222.496200px;}
._7{margin-left:-10.510800px;}
._29{margin-left:-9.385200px;}
._28{margin-left:-7.646400px;}
._26{margin-left:-6.589800px;}
._6{margin-left:-5.581800px;}
._2{margin-left:-4.012200px;}
._3{margin-left:-2.383200px;}
._1{margin-left:-1.264800px;}
._0{width:1.234200px;}
._4{width:3.223200px;}
._b{width:5.088000px;}
._a{width:6.439200px;}
._9{width:7.675800px;}
._c{width:9.073200px;}
._d{width:18.143400px;}
._8{width:31.374000px;}
._5{width:36.624000px;}
._27{width:43.086600px;}
._51{width:53.706000px;}
._72{width:57.513600px;}
._6f{width:59.475600px;}
._1a{width:61.334400px;}
._50{width:62.651400px;}
._37{width:65.031600px;}
._48{width:67.144800px;}
._6d{width:69.416400px;}
._3b{width:70.852200px;}
._88{width:73.413000px;}
._1d{width:74.461800px;}
._4a{width:75.681600px;}
._57{width:76.959000px;}
._6e{width:78.125400px;}
._3a{width:79.535400px;}
._1b{width:80.673000px;}
._47{width:82.738200px;}
._49{width:84.250200px;}
._36{width:87.060600px;}
._33{width:88.080000px;}
._4c{width:89.446200px;}
._65{width:92.562600px;}
._1c{width:96.691200px;}
._56{width:99.755400px;}
._82{width:101.006400px;}
._39{width:102.313800px;}
._4b{width:106.042200px;}
._7d{width:108.423000px;}
._3d{width:111.599400px;}
._42{width:116.070600px;}
._67{width:118.407600px;}
._4f{width:119.874000px;}
._64{width:122.352000px;}
._63{width:125.736000px;}
._20{width:128.068800px;}
._66{width:130.689000px;}
._62{width:134.156400px;}
._75{width:137.122200px;}
._46{width:141.101400px;}
._25{width:142.957200px;}
._22{width:144.145800px;}
._34{width:148.190400px;}
._1f{width:150.165000px;}
._40{width:151.599000px;}
._61{width:153.944400px;}
._54{width:155.586000px;}
._2f{width:157.106400px;}
._7b{width:159.229800px;}
._84{width:160.369800px;}
._8c{width:161.655600px;}
._4d{width:162.861600px;}
._16{width:164.811000px;}
._21{width:166.173000px;}
._7c{width:167.761800px;}
._87{width:169.410600px;}
._3e{width:171.709200px;}
._43{width:175.764600px;}
._86{width:177.943200px;}
._68{width:179.632200px;}
._59{width:182.574000px;}
._8e{width:183.718200px;}
._41{width:184.723200px;}
._7e{width:186.174600px;}
._1e{width:194.618400px;}
._45{width:202.053000px;}
._23{width:203.581200px;}
._3f{width:207.528600px;}
._5e{width:209.161200px;}
._24{width:212.020200px;}
._5c{width:214.507800px;}
._70{width:215.756400px;}
._6b{width:218.053800px;}
._44{width:221.815800px;}
._15{width:224.942400px;}
._3c{width:226.057800px;}
._60{width:229.246800px;}
._30{width:230.820000px;}
._32{width:237.844800px;}
._4e{width:238.911600px;}
._19{width:242.028600px;}
._18{width:250.533600px;}
._89{width:256.351800px;}
._5f{width:258.823800px;}
._2b{width:262.345800px;}
._17{width:266.660400px;}
._6c{width:267.717000px;}
._11{width:272.984400px;}
._71{width:276.400800px;}
._31{width:277.442400px;}
._76{width:279.416400px;}
._6a{width:281.535000px;}
._79{width:283.005000px;}
._80{width:288.412200px;}
._2c{width:290.604000px;}
._e{width:295.717200px;}
._73{width:298.765800px;}
._f{width:301.014000px;}
._10{width:312.440400px;}
._85{width:315.932400px;}
._35{width:318.573000px;}
._5d{width:323.578200px;}
._38{width:327.105000px;}
._53{width:328.976400px;}
._8a{width:334.826400px;}
._8b{width:343.359000px;}
._2d{width:345.040200px;}
._52{width:347.326800px;}
._7f{width:350.889600px;}
._5a{width:351.927600px;}
._2a{width:359.053200px;}
._5b{width:360.459600px;}
._8d{width:366.033000px;}
._55{width:370.107000px;}
._77{width:372.002400px;}
._58{width:378.639000px;}
._78{width:380.534400px;}
._2e{width:383.890800px;}
._81{width:404.511000px;}
._7a{width:416.743800px;}
._12{width:425.808600px;}
._14{width:434.313000px;}
._13{width:442.843800px;}
._74{width:449.203200px;}
._83{width:472.499400px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fs9{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.036150px;}
.y39{bottom:93.543300px;}
.y9e{bottom:113.078700px;}
.yb9{bottom:113.078850px;}
.y99{bottom:120.500850px;}
.ye6{bottom:129.050700px;}
.y118{bottom:129.050850px;}
.y94{bottom:134.078700px;}
.y67{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.y11{bottom:138.361800px;}
.y98{bottom:140.300850px;}
.y117{bottom:142.550850px;}
.ye5{bottom:148.831350px;}
.y10{bottom:152.761800px;}
.y93{bottom:155.078700px;}
.y66{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.y97{bottom:160.100850px;}
.ye4{bottom:162.331350px;}
.yf{bottom:167.161800px;}
.y116{bottom:175.831350px;}
.y92{bottom:176.078700px;}
.y65{bottom:176.078850px;}
.y96{bottom:179.900850px;}
.y28{bottom:180.212550px;}
.ye{bottom:181.561800px;}
.ye3{bottom:182.111850px;}
.ye2{bottom:195.611850px;}
.y91{bottom:197.078700px;}
.y64{bottom:197.078850px;}
.y95{bottom:199.700850px;}
.y27{bottom:201.212550px;}
.y144{bottom:201.892350px;}
.ye1{bottom:215.392350px;}
.y90{bottom:218.078700px;}
.y63{bottom:218.078850px;}
.y36{bottom:219.878850px;}
.y143{bottom:221.672850px;}
.y26{bottom:222.212550px;}
.ye0{bottom:228.892350px;}
.y115{bottom:235.172850px;}
.y35{bottom:237.878850px;}
.y8f{bottom:239.078700px;}
.y62{bottom:239.078850px;}
.y25{bottom:243.212550px;}
.ybf{bottom:246.361950px;}
.ydf{bottom:248.672850px;}
.y114{bottom:254.953350px;}
.y34{bottom:255.878850px;}
.y8e{bottom:260.078700px;}
.y61{bottom:260.078850px;}
.yde{bottom:262.172850px;}
.y24{bottom:264.212550px;}
.ybe{bottom:266.161950px;}
.y113{bottom:268.453350px;}
.y33{bottom:273.878700px;}
.y142{bottom:274.733850px;}
.ybb{bottom:278.499000px;}
.y8d{bottom:281.078700px;}
.y60{bottom:281.078850px;}
.ydd{bottom:281.953350px;}
.y23{bottom:285.212550px;}
.ybd{bottom:285.961950px;}
.y141{bottom:288.233850px;}
.y32{bottom:291.878700px;}
.yba{bottom:298.299000px;}
.ydc{bottom:301.733850px;}
.y8c{bottom:302.078700px;}
.yb8{bottom:302.078850px;}
.ybc{bottom:305.761950px;}
.y22{bottom:306.212550px;}
.y140{bottom:308.014500px;}
.y31{bottom:309.878700px;}
.ydb{bottom:315.233850px;}
.ycc{bottom:316.440900px;}
.y5f{bottom:316.441050px;}
.y8b{bottom:323.078700px;}
.yb7{bottom:323.078850px;}
.y21{bottom:327.212550px;}
.y13f{bottom:327.795000px;}
.y30{bottom:327.878700px;}
.yda{bottom:335.014350px;}
.y112{bottom:335.014500px;}
.y8a{bottom:344.078700px;}
.yb6{bottom:344.078850px;}
.y2f{bottom:345.878700px;}
.y13e{bottom:347.575500px;}
.yd9{bottom:354.794850px;}
.y111{bottom:354.795000px;}
.y20{bottom:361.996350px;}
.y89{bottom:365.078700px;}
.y5e{bottom:365.078850px;}
.y13d{bottom:367.356000px;}
.yd8{bottom:368.294850px;}
.y110{bottom:374.575500px;}
.y13c{bottom:380.856000px;}
.y2e{bottom:380.886600px;}
.y88{bottom:386.078700px;}
.y5d{bottom:386.078850px;}
.yd7{bottom:388.075350px;}
.ycb{bottom:391.529250px;}
.y10f{bottom:394.356000px;}
.y2d{bottom:398.886600px;}
.y13b{bottom:400.636500px;}
.y87{bottom:407.078700px;}
.y5c{bottom:407.078850px;}
.yd6{bottom:407.855850px;}
.y10e{bottom:407.856000px;}
.y2c{bottom:416.886600px;}
.y13a{bottom:420.417000px;}
.yd5{bottom:427.636350px;}
.y10d{bottom:427.636500px;}
.y86{bottom:428.078700px;}
.y5b{bottom:428.078850px;}
.y139{bottom:433.917000px;}
.y2b{bottom:434.886600px;}
.y10c{bottom:441.136500px;}
.yd4{bottom:447.416850px;}
.y85{bottom:449.078700px;}
.y5a{bottom:449.078850px;}
.y1f{bottom:451.027950px;}
.y138{bottom:453.697500px;}
.y10b{bottom:460.917000px;}
.yd3{bottom:467.197350px;}
.y137{bottom:467.197500px;}
.y84{bottom:470.078700px;}
.y59{bottom:470.078850px;}
.y10a{bottom:480.697500px;}
.yd2{bottom:486.977850px;}
.y136{bottom:486.978000px;}
.y83{bottom:491.078700px;}
.y58{bottom:491.078850px;}
.y1e{bottom:492.087750px;}
.y109{bottom:500.478000px;}
.y135{bottom:506.758500px;}
.y1d{bottom:511.887750px;}
.y9d{bottom:512.078700px;}
.y57{bottom:512.078850px;}
.y108{bottom:513.978000px;}
.yd1{bottom:516.334800px;}
.yca{bottom:517.529250px;}
.y82{bottom:526.440900px;}
.y134{bottom:526.539000px;}
.y1c{bottom:531.687750px;}
.y9c{bottom:533.078700px;}
.y56{bottom:533.078850px;}
.y107{bottom:533.758500px;}
.yd0{bottom:536.134800px;}
.y133{bottom:546.319500px;}
.y106{bottom:547.258500px;}
.y1b{bottom:551.487750px;}
.y9b{bottom:554.078700px;}
.y55{bottom:554.078850px;}
.y132{bottom:566.100000px;}
.y105{bottom:567.039000px;}
.y1a{bottom:571.287750px;}
.y81{bottom:575.078700px;}
.y54{bottom:575.078850px;}
.y131{bottom:579.600000px;}
.y104{bottom:580.539000px;}
.ycf{bottom:589.441050px;}
.y19{bottom:591.087750px;}
.y80{bottom:596.078700px;}
.yce{bottom:596.078850px;}
.y130{bottom:599.380500px;}
.y103{bottom:600.319500px;}
.y53{bottom:609.513600px;}
.y18{bottom:610.887750px;}
.y7f{bottom:617.078700px;}
.yb5{bottom:617.078850px;}
.y12f{bottom:619.161000px;}
.y102{bottom:620.100000px;}
.y17{bottom:630.687750px;}
.y7e{bottom:638.078700px;}
.yb4{bottom:638.078850px;}
.y12e{bottom:638.941650px;}
.y101{bottom:639.880500px;}
.y52{bottom:641.811150px;}
.yc9{bottom:643.529250px;}
.y16{bottom:650.487750px;}
.y12d{bottom:658.722150px;}
.y7d{bottom:659.078700px;}
.yb3{bottom:659.078850px;}
.y100{bottom:659.661000px;}
.yc2{bottom:669.072300px;}
.y15{bottom:670.287750px;}
.y12c{bottom:678.502650px;}
.yff{bottom:679.441650px;}
.y7c{bottom:680.078700px;}
.ycd{bottom:680.078850px;}
.yc1{bottom:688.872300px;}
.y14{bottom:690.087750px;}
.yb2{bottom:694.441050px;}
.y12b{bottom:698.283150px;}
.yfe{bottom:699.222150px;}
.y7b{bottom:701.078700px;}
.y51{bottom:701.078850px;}
.yc8{bottom:706.529250px;}
.yc0{bottom:708.672300px;}
.y12a{bottom:718.063650px;}
.yfd{bottom:719.002650px;}
.y13{bottom:721.185300px;}
.y7a{bottom:722.078700px;}
.y50{bottom:722.078850px;}
.y129{bottom:737.844150px;}
.yfc{bottom:738.783150px;}
.y79{bottom:743.078700px;}
.y4f{bottom:743.078850px;}
.y9a{bottom:756.106350px;}
.y128{bottom:757.624650px;}
.yfb{bottom:758.563650px;}
.y78{bottom:764.078700px;}
.y4e{bottom:764.078850px;}
.yc7{bottom:769.529250px;}
.y127{bottom:777.405150px;}
.yfa{bottom:778.344150px;}
.y77{bottom:785.078700px;}
.y4d{bottom:785.078850px;}
.y126{bottom:790.905150px;}
.yf9{bottom:798.124650px;}
.yd{bottom:800.466750px;}
.y76{bottom:806.078700px;}
.y4c{bottom:806.078850px;}
.yb1{bottom:810.181950px;}
.y125{bottom:810.685800px;}
.yf8{bottom:817.905150px;}
.yc{bottom:818.466750px;}
.y124{bottom:824.185800px;}
.y75{bottom:827.078700px;}
.y4b{bottom:827.078850px;}
.yb0{bottom:829.962450px;}
.yc6{bottom:832.529250px;}
.yb{bottom:836.466750px;}
.yf7{bottom:837.685800px;}
.yaf{bottom:843.462450px;}
.y123{bottom:843.966300px;}
.y74{bottom:848.078700px;}
.y4a{bottom:848.078850px;}
.ya{bottom:854.466750px;}
.yae{bottom:856.962450px;}
.yf6{bottom:857.466300px;}
.y73{bottom:869.078700px;}
.y49{bottom:869.078850px;}
.yad{bottom:870.462450px;}
.y9{bottom:872.466750px;}
.yf5{bottom:877.246800px;}
.y72{bottom:890.078700px;}
.y48{bottom:890.078850px;}
.yac{bottom:890.242950px;}
.y8{bottom:890.466750px;}
.yf4{bottom:890.746800px;}
.yc5{bottom:895.936950px;}
.y122{bottom:897.027150px;}
.yab{bottom:903.742950px;}
.yf3{bottom:904.246800px;}
.y7{bottom:908.466750px;}
.y71{bottom:911.078700px;}
.y47{bottom:911.078850px;}
.y121{bottom:916.807650px;}
.yaa{bottom:917.242950px;}
.yf2{bottom:924.027150px;}
.yc4{bottom:925.440900px;}
.y6{bottom:926.466750px;}
.ya9{bottom:930.742950px;}
.y70{bottom:932.078700px;}
.y46{bottom:932.078850px;}
.y120{bottom:936.588300px;}
.yf1{bottom:937.527150px;}
.y5{bottom:944.466750px;}
.ya8{bottom:950.523450px;}
.y6f{bottom:953.078700px;}
.y45{bottom:953.078850px;}
.y11f{bottom:956.368800px;}
.yf0{bottom:957.307650px;}
.ya7{bottom:964.023450px;}
.y11e{bottom:969.868800px;}
.y6e{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.yef{bottom:977.088300px;}
.y4{bottom:979.474800px;}
.ya6{bottom:983.803950px;}
.y11d{bottom:989.649300px;}
.y6d{bottom:995.078700px;}
.y43{bottom:995.078850px;}
.yee{bottom:996.868800px;}
.ya5{bottom:997.303950px;}
.y11c{bottom:1003.149300px;}
.y6c{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yed{bottom:1016.649300px;}
.ya4{bottom:1017.084450px;}
.y11b{bottom:1022.929800px;}
.yec{bottom:1030.149300px;}
.y11a{bottom:1036.429800px;}
.ya3{bottom:1036.864950px;}
.y6b{bottom:1037.078700px;}
.y41{bottom:1037.078850px;}
.y2{bottom:1049.282550px;}
.yeb{bottom:1049.929800px;}
.ya2{bottom:1050.364950px;}
.y119{bottom:1056.210300px;}
.y6a{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.yea{bottom:1069.710300px;}
.ya1{bottom:1070.145600px;}
.y69{bottom:1079.078700px;}
.y3f{bottom:1079.078850px;}
.ye9{bottom:1089.490800px;}
.ya0{bottom:1089.926100px;}
.y3e{bottom:1100.078850px;}
.ye8{bottom:1109.271300px;}
.y12{bottom:1109.815500px;}
.yc3{bottom:1111.570800px;}
.y68{bottom:1112.695800px;}
.y9f{bottom:1119.282900px;}
.y3d{bottom:1121.078850px;}
.ye7{bottom:1129.351800px;}
.y38{bottom:1155.615300px;}
.y37{bottom:1175.115300px;}
.y3c{bottom:1178.691750px;}
.h17{height:31.500000px;}
.h19{height:31.972517px;}
.h18{height:33.140625px;}
.h13{height:33.448242px;}
.h16{height:33.694336px;}
.h14{height:34.125000px;}
.h6{height:34.446094px;}
.h2{height:38.039062px;}
.hf{height:38.273438px;}
.h5{height:38.531250px;}
.hd{height:42.793945px;}
.h7{height:43.004883px;}
.hc{height:43.057617px;}
.he{height:43.321289px;}
.h9{height:43.875000px;}
.h8{height:47.343750px;}
.h10{height:48.134766px;}
.hb{height:48.750000px;}
.h15{height:49.218750px;}
.h12{height:50.176758px;}
.h11{height:52.078125px;}
.h4{height:53.625000px;}
.ha{height:56.812500px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.992100px;}
.xb{left:107.068950px;}
.xd{left:108.286950px;}
.xe{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x2f{left:182.277600px;}
.x1b{left:191.011950px;}
.x19{left:192.460350px;}
.x18{left:194.975100px;}
.x1a{left:207.079800px;}
.x24{left:209.938050px;}
.xf{left:213.150150px;}
.x25{left:237.454500px;}
.x3f{left:282.551550px;}
.x30{left:287.053500px;}
.x3a{left:290.052750px;}
.x3c{left:291.798750px;}
.x36{left:292.834350px;}
.x34{left:294.967350px;}
.x35{left:298.645950px;}
.x5{left:300.189000px;}
.xc{left:317.196900px;}
.x1c{left:347.383800px;}
.x1d{left:351.413550px;}
.x26{left:353.079750px;}
.x27{left:354.415350px;}
.x10{left:355.715100px;}
.x37{left:365.960250px;}
.x3b{left:376.109100px;}
.x1e{left:379.898850px;}
.x32{left:382.136250px;}
.x38{left:386.043450px;}
.x16{left:390.063150px;}
.x11{left:393.869850px;}
.x4{left:396.050700px;}
.x3e{left:400.886250px;}
.x31{left:412.168650px;}
.x39{left:495.613350px;}
.x3d{left:496.863900px;}
.x2a{left:508.240800px;}
.x17{left:511.811700px;}
.x33{left:516.342000px;}
.x28{left:518.968950px;}
.x1f{left:527.008050px;}
.x29{left:528.835800px;}
.x20{left:532.375950px;}
.x12{left:538.387200px;}
.x13{left:542.768250px;}
.x2b{left:562.222500px;}
.xa{left:648.686550px;}
.x14{left:670.417050px;}
.x21{left:673.441950px;}
.x2e{left:677.041050px;}
.x2c{left:678.415200px;}
.x9{left:680.081100px;}
.x22{left:682.844850px;}
.x23{left:686.295300px;}
.x2d{left:688.284600px;}
.x15{left:719.664000px;}
.x1{left:807.210300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.984000pt;}
.v1{vertical-align:19.536000pt;}
.ls13{letter-spacing:-6.432000pt;}
.ls29{letter-spacing:-2.986667pt;}
.ls12{letter-spacing:-2.880000pt;}
.lsa{letter-spacing:-1.066667pt;}
.ls11{letter-spacing:-0.800000pt;}
.ls1e{letter-spacing:-0.746667pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls10{letter-spacing:-0.533333pt;}
.ls17{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.106667pt;}
.ls6{letter-spacing:-0.090667pt;}
.ls5{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.010667pt;}
.lse{letter-spacing:0.020267pt;}
.lsf{letter-spacing:0.020800pt;}
.ls4{letter-spacing:0.022933pt;}
.ls3{letter-spacing:0.533333pt;}
.ls8{letter-spacing:1.066667pt;}
.lsc{letter-spacing:1.155200pt;}
.lsd{letter-spacing:1.565867pt;}
.ls14{letter-spacing:4.804800pt;}
.ls9{letter-spacing:8.193067pt;}
.ls16{letter-spacing:14.748267pt;}
.ls15{letter-spacing:17.123200pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.401104pt;}
.ls19{letter-spacing:94.324800pt;}
.ls18{letter-spacing:111.934400pt;}
.ls27{letter-spacing:125.422933pt;}
.ls1b{letter-spacing:125.423467pt;}
.ls21{letter-spacing:125.432533pt;}
.ls23{letter-spacing:127.765867pt;}
.ls24{letter-spacing:128.601067pt;}
.ls1f{letter-spacing:131.411733pt;}
.ls28{letter-spacing:138.552000pt;}
.ls1a{letter-spacing:139.029333pt;}
.ls20{letter-spacing:139.047467pt;}
.ls26{letter-spacing:141.362667pt;}
.ls1d{letter-spacing:141.371733pt;}
.ls22{letter-spacing:141.380800pt;}
.ls1c{letter-spacing:262.675200pt;}
.ls25{letter-spacing:341.236267pt;}
.ws10f{word-spacing:-350.494933pt;}
.wsa4{word-spacing:-53.333333pt;}
.ws7{word-spacing:-15.936000pt;}
.wsb5{word-spacing:-14.608000pt;}
.ws47{word-spacing:-14.133333pt;}
.ws8{word-spacing:-13.600000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws7b{word-spacing:-13.226667pt;}
.ws7d{word-spacing:-13.173333pt;}
.ws27{word-spacing:-13.066667pt;}
.wsa3{word-spacing:-12.533333pt;}
.ws7c{word-spacing:-12.213333pt;}
.ws97{word-spacing:-11.952000pt;}
.ws61{word-spacing:-11.904000pt;}
.ws6{word-spacing:-11.760000pt;}
.wsbf{word-spacing:-11.424000pt;}
.wsbe{word-spacing:-11.280000pt;}
.wsa{word-spacing:-10.800000pt;}
.ws9{word-spacing:-10.464000pt;}
.ws3{word-spacing:-9.685333pt;}
.ws26{word-spacing:-9.600000pt;}
.wsb{word-spacing:-9.301333pt;}
.wsd7{word-spacing:-8.549333pt;}
.wse2{word-spacing:-8.512000pt;}
.ws2{word-spacing:-8.482261pt;}
.wsd6{word-spacing:-8.474667pt;}
.wse3{word-spacing:-8.400000pt;}
.ws4{word-spacing:-8.371200pt;}
.wsb6{word-spacing:-6.940032pt;}
.ws9b{word-spacing:-5.520000pt;}
.wsd4{word-spacing:-3.600000pt;}
.wsec{word-spacing:-3.408000pt;}
.ws93{word-spacing:-3.093333pt;}
.ws91{word-spacing:-2.880000pt;}
.wsc0{word-spacing:-2.784000pt;}
.wsb0{word-spacing:-2.613333pt;}
.wsb1{word-spacing:-2.560000pt;}
.ws36{word-spacing:-2.506667pt;}
.ws2c{word-spacing:-2.453333pt;}
.ws4a{word-spacing:-2.400000pt;}
.ws9a{word-spacing:-2.352000pt;}
.ws14{word-spacing:-2.304000pt;}
.wsa7{word-spacing:-2.293333pt;}
.wscb{word-spacing:-2.112000pt;}
.ws50{word-spacing:-2.026667pt;}
.ws84{word-spacing:-1.973333pt;}
.ws5d{word-spacing:-1.920000pt;}
.ws1f{word-spacing:-1.866667pt;}
.ws1e{word-spacing:-1.813333pt;}
.ws1d{word-spacing:-1.760000pt;}
.ws74{word-spacing:-1.546667pt;}
.wsa9{word-spacing:-1.493333pt;}
.wsf2{word-spacing:-1.488000pt;}
.ws16{word-spacing:-1.440000pt;}
.wsc1{word-spacing:-1.344000pt;}
.ws12{word-spacing:-1.296000pt;}
.ws22{word-spacing:-1.280000pt;}
.ws39{word-spacing:-1.226667pt;}
.wsb9{word-spacing:-1.152000pt;}
.ws85{word-spacing:-1.120000pt;}
.ws8d{word-spacing:-1.066667pt;}
.ws87{word-spacing:-0.960000pt;}
.ws83{word-spacing:-0.906667pt;}
.ws2b{word-spacing:-0.800000pt;}
.ws86{word-spacing:-0.746667pt;}
.wsc3{word-spacing:-0.720000pt;}
.ws124{word-spacing:-0.709333pt;}
.ws4d{word-spacing:-0.640000pt;}
.ws82{word-spacing:-0.586667pt;}
.ws20{word-spacing:-0.533333pt;}
.ws70{word-spacing:-0.480000pt;}
.ws126{word-spacing:-0.336000pt;}
.ws5b{word-spacing:-0.320000pt;}
.ws125{word-spacing:-0.298667pt;}
.ws18{word-spacing:-0.288000pt;}
.ws72{word-spacing:-0.266667pt;}
.ws7f{word-spacing:-0.213333pt;}
.wse{word-spacing:-0.192000pt;}
.ws53{word-spacing:-0.160000pt;}
.wsa5{word-spacing:-0.106667pt;}
.ws73{word-spacing:-0.053333pt;}
.wsa1{word-spacing:-0.048000pt;}
.wsc{word-spacing:0.000000pt;}
.wsd2{word-spacing:0.048000pt;}
.wsd{word-spacing:0.090667pt;}
.ws6b{word-spacing:0.160000pt;}
.wsb7{word-spacing:0.213333pt;}
.ws30{word-spacing:0.266667pt;}
.ws49{word-spacing:0.320000pt;}
.wsa6{word-spacing:0.373333pt;}
.ws75{word-spacing:0.426667pt;}
.ws99{word-spacing:0.480000pt;}
.ws2a{word-spacing:0.533333pt;}
.ws5c{word-spacing:0.586667pt;}
.wsf{word-spacing:0.614400pt;}
.ws67{word-spacing:0.640000pt;}
.ws51{word-spacing:0.693333pt;}
.ws55{word-spacing:0.746667pt;}
.ws8b{word-spacing:0.800000pt;}
.ws65{word-spacing:0.864000pt;}
.ws29{word-spacing:0.906667pt;}
.wsc9{word-spacing:1.008000pt;}
.wsb8{word-spacing:1.066667pt;}
.ws9e{word-spacing:1.120000pt;}
.wsee{word-spacing:1.248000pt;}
.ws78{word-spacing:1.280000pt;}
.wsb4{word-spacing:1.296000pt;}
.ws25{word-spacing:1.386667pt;}
.wsa2{word-spacing:1.392000pt;}
.ws28{word-spacing:1.440000pt;}
.ws17{word-spacing:1.488000pt;}
.ws48{word-spacing:1.493333pt;}
.ws9d{word-spacing:1.546667pt;}
.ws9f{word-spacing:1.584000pt;}
.ws69{word-spacing:1.600000pt;}
.wsc8{word-spacing:1.680000pt;}
.ws9c{word-spacing:1.706667pt;}
.ws57{word-spacing:1.760000pt;}
.ws13{word-spacing:1.824000pt;}
.ws89{word-spacing:1.866667pt;}
.ws88{word-spacing:1.920000pt;}
.wsca{word-spacing:1.968000pt;}
.ws4c{word-spacing:1.973333pt;}
.wsd3{word-spacing:2.016000pt;}
.ws33{word-spacing:2.026667pt;}
.ws64{word-spacing:2.112000pt;}
.ws23{word-spacing:2.133333pt;}
.ws21{word-spacing:2.186667pt;}
.wsf1{word-spacing:2.208000pt;}
.ws149{word-spacing:2.240000pt;}
.wsd0{word-spacing:2.304000pt;}
.wsf5{word-spacing:2.352000pt;}
.ws41{word-spacing:2.400000pt;}
.ws2e{word-spacing:2.453333pt;}
.ws6e{word-spacing:2.560000pt;}
.ws1b{word-spacing:2.592000pt;}
.wsf0{word-spacing:2.736000pt;}
.ws4b{word-spacing:2.773333pt;}
.ws15{word-spacing:2.784000pt;}
.ws32{word-spacing:2.826667pt;}
.wsa0{word-spacing:2.832000pt;}
.ws98{word-spacing:2.880000pt;}
.wsd1{word-spacing:2.928000pt;}
.ws8c{word-spacing:2.933333pt;}
.ws90{word-spacing:3.093333pt;}
.ws7a{word-spacing:3.306667pt;}
.ws24{word-spacing:3.573333pt;}
.ws71{word-spacing:3.626667pt;}
.wsc4{word-spacing:3.744000pt;}
.ws8a{word-spacing:3.786667pt;}
.ws6c{word-spacing:3.946667pt;}
.ws80{word-spacing:4.000000pt;}
.wsb3{word-spacing:4.032000pt;}
.wsb2{word-spacing:4.080000pt;}
.wsbd{word-spacing:4.128000pt;}
.wsbb{word-spacing:4.224000pt;}
.ws40{word-spacing:4.266667pt;}
.ws63{word-spacing:4.320000pt;}
.ws62{word-spacing:4.368000pt;}
.ws52{word-spacing:4.373333pt;}
.ws77{word-spacing:4.426667pt;}
.ws56{word-spacing:4.480000pt;}
.ws3b{word-spacing:4.640000pt;}
.ws1a{word-spacing:4.848000pt;}
.wsa8{word-spacing:4.853333pt;}
.ws19{word-spacing:4.896000pt;}
.ws81{word-spacing:4.906667pt;}
.wsf4{word-spacing:4.944000pt;}
.wsf3{word-spacing:4.992000pt;}
.ws95{word-spacing:5.066667pt;}
.ws76{word-spacing:5.120000pt;}
.ws2d{word-spacing:5.173333pt;}
.ws42{word-spacing:5.226667pt;}
.wsba{word-spacing:5.232000pt;}
.ws46{word-spacing:5.280000pt;}
.ws58{word-spacing:5.386667pt;}
.ws3a{word-spacing:5.440000pt;}
.ws94{word-spacing:5.546667pt;}
.ws5e{word-spacing:5.760000pt;}
.ws5f{word-spacing:5.813333pt;}
.ws34{word-spacing:5.866667pt;}
.ws35{word-spacing:5.920000pt;}
.ws38{word-spacing:6.080000pt;}
.wsed{word-spacing:6.096000pt;}
.ws37{word-spacing:6.133333pt;}
.ws3c{word-spacing:6.186667pt;}
.ws8f{word-spacing:6.240000pt;}
.wsc7{word-spacing:6.336000pt;}
.ws43{word-spacing:6.453333pt;}
.wsc5{word-spacing:6.576000pt;}
.ws4e{word-spacing:6.613333pt;}
.wsc6{word-spacing:6.624000pt;}
.ws54{word-spacing:6.666667pt;}
.ws59{word-spacing:6.826667pt;}
.wsaf{word-spacing:6.880000pt;}
.ws2f{word-spacing:6.986667pt;}
.ws31{word-spacing:7.040000pt;}
.ws6a{word-spacing:7.093333pt;}
.ws3d{word-spacing:7.306667pt;}
.wsf7{word-spacing:7.344000pt;}
.wsf6{word-spacing:7.392000pt;}
.ws60{word-spacing:7.413333pt;}
.wsc2{word-spacing:7.536000pt;}
.ws6d{word-spacing:7.573333pt;}
.ws68{word-spacing:7.680000pt;}
.ws4f{word-spacing:7.786667pt;}
.ws3f{word-spacing:7.840000pt;}
.wsce{word-spacing:7.872000pt;}
.ws3e{word-spacing:7.893333pt;}
.wsbc{word-spacing:8.016000pt;}
.ws6f{word-spacing:8.053333pt;}
.ws8e{word-spacing:8.213333pt;}
.ws5a{word-spacing:8.266667pt;}
.wscc{word-spacing:8.544000pt;}
.wsef{word-spacing:8.688000pt;}
.ws1c{word-spacing:8.693333pt;}
.ws7e{word-spacing:9.760000pt;}
.ws92{word-spacing:10.186667pt;}
.ws96{word-spacing:10.240000pt;}
.ws44{word-spacing:10.720000pt;}
.ws10{word-spacing:10.944000pt;}
.ws11{word-spacing:11.040000pt;}
.wscf{word-spacing:11.184000pt;}
.ws79{word-spacing:11.253333pt;}
.wscd{word-spacing:11.568000pt;}
.wsae{word-spacing:14.720000pt;}
.wsad{word-spacing:14.773333pt;}
.ws45{word-spacing:15.466667pt;}
.wsab{word-spacing:17.066667pt;}
.wsac{word-spacing:17.173333pt;}
.wsaa{word-spacing:17.226667pt;}
.ws136{word-spacing:26.868267pt;}
.ws0{word-spacing:29.906525pt;}
.ws1{word-spacing:29.927885pt;}
.wsfc{word-spacing:33.253867pt;}
.wsfe{word-spacing:40.721067pt;}
.ws134{word-spacing:40.757867pt;}
.ws11c{word-spacing:43.912533pt;}
.wsf8{word-spacing:43.913067pt;}
.wsde{word-spacing:43.922133pt;}
.ws115{word-spacing:47.646400pt;}
.wse4{word-spacing:47.831467pt;}
.ws138{word-spacing:48.588267pt;}
.wse0{word-spacing:48.588800pt;}
.ws114{word-spacing:48.597867pt;}
.ws12a{word-spacing:48.617067pt;}
.ws11a{word-spacing:48.635200pt;}
.ws131{word-spacing:49.745067pt;}
.ws128{word-spacing:49.956267pt;}
.ws11b{word-spacing:50.213867pt;}
.wse8{word-spacing:50.707733pt;}
.ws120{word-spacing:50.735467pt;}
.ws13b{word-spacing:50.857067pt;}
.wsea{word-spacing:52.797867pt;}
.ws110{word-spacing:53.097067pt;}
.ws118{word-spacing:53.134400pt;}
.ws108{word-spacing:54.635733pt;}
.ws12f{word-spacing:54.636267pt;}
.ws13c{word-spacing:55.278933pt;}
.wsfb{word-spacing:55.849600pt;}
.ws103{word-spacing:57.518933pt;}
.wse1{word-spacing:57.528000pt;}
.wsda{word-spacing:57.528533pt;}
.wsdd{word-spacing:61.953067pt;}
.ws116{word-spacing:61.963200pt;}
.ws112{word-spacing:61.980800pt;}
.ws105{word-spacing:62.242133pt;}
.ws148{word-spacing:65.928000pt;}
.ws144{word-spacing:65.947200pt;}
.ws119{word-spacing:66.188267pt;}
.ws13f{word-spacing:66.770667pt;}
.wseb{word-spacing:67.729600pt;}
.ws107{word-spacing:67.757867pt;}
.ws100{word-spacing:69.484800pt;}
.ws141{word-spacing:69.503467pt;}
.ws130{word-spacing:72.413867pt;}
.wse7{word-spacing:74.173333pt;}
.wse9{word-spacing:74.173867pt;}
.wsd8{word-spacing:77.661333pt;}
.wsfa{word-spacing:79.845867pt;}
.ws132{word-spacing:84.617067pt;}
.ws10a{word-spacing:87.842667pt;}
.ws137{word-spacing:97.015467pt;}
.ws12b{word-spacing:97.016000pt;}
.wsf9{word-spacing:103.040533pt;}
.ws111{word-spacing:108.053333pt;}
.wsdf{word-spacing:108.053867pt;}
.ws123{word-spacing:119.949333pt;}
.ws10d{word-spacing:123.662933pt;}
.ws102{word-spacing:123.719467pt;}
.ws122{word-spacing:124.544533pt;}
.ws145{word-spacing:124.720533pt;}
.wsfd{word-spacing:128.166400pt;}
.ws133{word-spacing:128.176000pt;}
.ws10c{word-spacing:129.770667pt;}
.ws109{word-spacing:130.637867pt;}
.ws101{word-spacing:131.222400pt;}
.ws10e{word-spacing:132.298667pt;}
.ws12c{word-spacing:133.593600pt;}
.ws121{word-spacing:133.621867pt;}
.ws117{word-spacing:134.373333pt;}
.ws11e{word-spacing:136.367467pt;}
.ws129{word-spacing:141.065067pt;}
.wsd5{word-spacing:148.651733pt;}
.ws127{word-spacing:152.370667pt;}
.ws13d{word-spacing:173.380267pt;}
.ws66{word-spacing:174.765867pt;}
.ws142{word-spacing:176.558933pt;}
.ws113{word-spacing:178.812800pt;}
.wse6{word-spacing:178.813333pt;}
.ws104{word-spacing:182.103467pt;}
.ws143{word-spacing:185.683200pt;}
.ws11f{word-spacing:189.867200pt;}
.wsdb{word-spacing:189.867733pt;}
.wse5{word-spacing:203.473600pt;}
.ws13a{word-spacing:209.717867pt;}
.ws12e{word-spacing:209.726933pt;}
.ws140{word-spacing:221.523733pt;}
.ws13e{word-spacing:221.524267pt;}
.ws146{word-spacing:222.890133pt;}
.wsff{word-spacing:225.643733pt;}
.wsdc{word-spacing:225.661867pt;}
.ws10b{word-spacing:225.670933pt;}
.ws147{word-spacing:232.000533pt;}
.ws139{word-spacing:234.888000pt;}
.ws12d{word-spacing:234.888533pt;}
.ws135{word-spacing:242.952533pt;}
.wsd9{word-spacing:258.274667pt;}
.ws106{word-spacing:263.388267pt;}
.ws11d{word-spacing:263.433600pt;}
._69{margin-left:-197.774400pt;}
._7{margin-left:-9.342933pt;}
._29{margin-left:-8.342400pt;}
._28{margin-left:-6.796800pt;}
._26{margin-left:-5.857600pt;}
._6{margin-left:-4.961600pt;}
._2{margin-left:-3.566400pt;}
._3{margin-left:-2.118400pt;}
._1{margin-left:-1.124267pt;}
._0{width:1.097067pt;}
._4{width:2.865067pt;}
._b{width:4.522667pt;}
._a{width:5.723733pt;}
._9{width:6.822933pt;}
._c{width:8.065067pt;}
._d{width:16.127467pt;}
._8{width:27.888000pt;}
._5{width:32.554667pt;}
._27{width:38.299200pt;}
._51{width:47.738667pt;}
._72{width:51.123200pt;}
._6f{width:52.867200pt;}
._1a{width:54.519467pt;}
._50{width:55.690133pt;}
._37{width:57.805867pt;}
._48{width:59.684267pt;}
._6d{width:61.703467pt;}
._3b{width:62.979733pt;}
._88{width:65.256000pt;}
._1d{width:66.188267pt;}
._4a{width:67.272533pt;}
._57{width:68.408000pt;}
._6e{width:69.444800pt;}
._3a{width:70.698133pt;}
._1b{width:71.709333pt;}
._47{width:73.545067pt;}
._49{width:74.889067pt;}
._36{width:77.387200pt;}
._33{width:78.293333pt;}
._4c{width:79.507733pt;}
._65{width:82.277867pt;}
._1c{width:85.947733pt;}
._56{width:88.671467pt;}
._82{width:89.783467pt;}
._39{width:90.945600pt;}
._4b{width:94.259733pt;}
._7d{width:96.376000pt;}
._3d{width:99.199467pt;}
._42{width:103.173867pt;}
._67{width:105.251200pt;}
._4f{width:106.554667pt;}
._64{width:108.757333pt;}
._63{width:111.765333pt;}
._20{width:113.838933pt;}
._66{width:116.168000pt;}
._62{width:119.250133pt;}
._75{width:121.886400pt;}
._46{width:125.423467pt;}
._25{width:127.073067pt;}
._22{width:128.129600pt;}
._34{width:131.724800pt;}
._1f{width:133.480000pt;}
._40{width:134.754667pt;}
._61{width:136.839467pt;}
._54{width:138.298667pt;}
._2f{width:139.650133pt;}
._7b{width:141.537600pt;}
._84{width:142.550933pt;}
._8c{width:143.693867pt;}
._4d{width:144.765867pt;}
._16{width:146.498667pt;}
._21{width:147.709333pt;}
._7c{width:149.121600pt;}
._87{width:150.587200pt;}
._3e{width:152.630400pt;}
._43{width:156.235200pt;}
._86{width:158.171733pt;}
._68{width:159.673067pt;}
._59{width:162.288000pt;}
._8e{width:163.305067pt;}
._41{width:164.198400pt;}
._7e{width:165.488533pt;}
._1e{width:172.994133pt;}
._45{width:179.602667pt;}
._23{width:180.961067pt;}
._3f{width:184.469867pt;}
._5e{width:185.921067pt;}
._24{width:188.462400pt;}
._5c{width:190.673600pt;}
._70{width:191.783467pt;}
._6b{width:193.825600pt;}
._44{width:197.169600pt;}
._15{width:199.948800pt;}
._3c{width:200.940267pt;}
._60{width:203.774933pt;}
._30{width:205.173333pt;}
._32{width:211.417600pt;}
._4e{width:212.365867pt;}
._19{width:215.136533pt;}
._18{width:222.696533pt;}
._89{width:227.868267pt;}
._5f{width:230.065600pt;}
._2b{width:233.196267pt;}
._17{width:237.031467pt;}
._6c{width:237.970667pt;}
._11{width:242.652800pt;}
._71{width:245.689600pt;}
._31{width:246.615467pt;}
._76{width:248.370133pt;}
._6a{width:250.253333pt;}
._79{width:251.560000pt;}
._80{width:256.366400pt;}
._2c{width:258.314667pt;}
._e{width:262.859733pt;}
._73{width:265.569600pt;}
._f{width:267.568000pt;}
._10{width:277.724800pt;}
._85{width:280.828800pt;}
._35{width:283.176000pt;}
._5d{width:287.625067pt;}
._38{width:290.760000pt;}
._53{width:292.423467pt;}
._8a{width:297.623467pt;}
._8b{width:305.208000pt;}
._2d{width:306.702400pt;}
._52{width:308.734933pt;}
._7f{width:311.901867pt;}
._5a{width:312.824533pt;}
._2a{width:319.158400pt;}
._5b{width:320.408533pt;}
._8d{width:325.362667pt;}
._55{width:328.984000pt;}
._77{width:330.668800pt;}
._58{width:336.568000pt;}
._78{width:338.252800pt;}
._2e{width:341.236267pt;}
._81{width:359.565333pt;}
._7a{width:370.438933pt;}
._12{width:378.496533pt;}
._14{width:386.056000pt;}
._13{width:393.638933pt;}
._74{width:399.291733pt;}
._83{width:419.999467pt;}
.fs9{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.698800pt;}
.y39{bottom:83.149600pt;}
.y9e{bottom:100.514400pt;}
.yb9{bottom:100.514533pt;}
.y99{bottom:107.111867pt;}
.ye6{bottom:114.711733pt;}
.y118{bottom:114.711867pt;}
.y94{bottom:119.181067pt;}
.y67{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.y11{bottom:122.988267pt;}
.y98{bottom:124.711867pt;}
.y117{bottom:126.711867pt;}
.ye5{bottom:132.294533pt;}
.y10{bottom:135.788267pt;}
.y93{bottom:137.847733pt;}
.y66{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.y97{bottom:142.311867pt;}
.ye4{bottom:144.294533pt;}
.yf{bottom:148.588267pt;}
.y116{bottom:156.294533pt;}
.y92{bottom:156.514400pt;}
.y65{bottom:156.514533pt;}
.y96{bottom:159.911867pt;}
.y28{bottom:160.188933pt;}
.ye{bottom:161.388267pt;}
.ye3{bottom:161.877200pt;}
.ye2{bottom:173.877200pt;}
.y91{bottom:175.181067pt;}
.y64{bottom:175.181200pt;}
.y95{bottom:177.511867pt;}
.y27{bottom:178.855600pt;}
.y144{bottom:179.459867pt;}
.ye1{bottom:191.459867pt;}
.y90{bottom:193.847733pt;}
.y63{bottom:193.847867pt;}
.y36{bottom:195.447867pt;}
.y143{bottom:197.042533pt;}
.y26{bottom:197.522267pt;}
.ye0{bottom:203.459867pt;}
.y115{bottom:209.042533pt;}
.y35{bottom:211.447867pt;}
.y8f{bottom:212.514400pt;}
.y62{bottom:212.514533pt;}
.y25{bottom:216.188933pt;}
.ybf{bottom:218.988400pt;}
.ydf{bottom:221.042533pt;}
.y114{bottom:226.625200pt;}
.y34{bottom:227.447867pt;}
.y8e{bottom:231.181067pt;}
.y61{bottom:231.181200pt;}
.yde{bottom:233.042533pt;}
.y24{bottom:234.855600pt;}
.ybe{bottom:236.588400pt;}
.y113{bottom:238.625200pt;}
.y33{bottom:243.447733pt;}
.y142{bottom:244.207867pt;}
.ybb{bottom:247.554667pt;}
.y8d{bottom:249.847733pt;}
.y60{bottom:249.847867pt;}
.ydd{bottom:250.625200pt;}
.y23{bottom:253.522267pt;}
.ybd{bottom:254.188400pt;}
.y141{bottom:256.207867pt;}
.y32{bottom:259.447733pt;}
.yba{bottom:265.154667pt;}
.ydc{bottom:268.207867pt;}
.y8c{bottom:268.514400pt;}
.yb8{bottom:268.514533pt;}
.ybc{bottom:271.788400pt;}
.y22{bottom:272.188933pt;}
.y140{bottom:273.790667pt;}
.y31{bottom:275.447733pt;}
.ydb{bottom:280.207867pt;}
.ycc{bottom:281.280800pt;}
.y5f{bottom:281.280933pt;}
.y8b{bottom:287.181067pt;}
.yb7{bottom:287.181200pt;}
.y21{bottom:290.855600pt;}
.y13f{bottom:291.373333pt;}
.y30{bottom:291.447733pt;}
.yda{bottom:297.790533pt;}
.y112{bottom:297.790667pt;}
.y8a{bottom:305.847733pt;}
.yb6{bottom:305.847867pt;}
.y2f{bottom:307.447733pt;}
.y13e{bottom:308.956000pt;}
.yd9{bottom:315.373200pt;}
.y111{bottom:315.373333pt;}
.y20{bottom:321.774533pt;}
.y89{bottom:324.514400pt;}
.y5e{bottom:324.514533pt;}
.y13d{bottom:326.538667pt;}
.yd8{bottom:327.373200pt;}
.y110{bottom:332.956000pt;}
.y13c{bottom:338.538667pt;}
.y2e{bottom:338.565867pt;}
.y88{bottom:343.181067pt;}
.y5d{bottom:343.181200pt;}
.yd7{bottom:344.955867pt;}
.ycb{bottom:348.026000pt;}
.y10f{bottom:350.538667pt;}
.y2d{bottom:354.565867pt;}
.y13b{bottom:356.121333pt;}
.y87{bottom:361.847733pt;}
.y5c{bottom:361.847867pt;}
.yd6{bottom:362.538533pt;}
.y10e{bottom:362.538667pt;}
.y2c{bottom:370.565867pt;}
.y13a{bottom:373.704000pt;}
.yd5{bottom:380.121200pt;}
.y10d{bottom:380.121333pt;}
.y86{bottom:380.514400pt;}
.y5b{bottom:380.514533pt;}
.y139{bottom:385.704000pt;}
.y2b{bottom:386.565867pt;}
.y10c{bottom:392.121333pt;}
.yd4{bottom:397.703867pt;}
.y85{bottom:399.181067pt;}
.y5a{bottom:399.181200pt;}
.y1f{bottom:400.913733pt;}
.y138{bottom:403.286667pt;}
.y10b{bottom:409.704000pt;}
.yd3{bottom:415.286533pt;}
.y137{bottom:415.286667pt;}
.y84{bottom:417.847733pt;}
.y59{bottom:417.847867pt;}
.y10a{bottom:427.286667pt;}
.yd2{bottom:432.869200pt;}
.y136{bottom:432.869333pt;}
.y83{bottom:436.514400pt;}
.y58{bottom:436.514533pt;}
.y1e{bottom:437.411333pt;}
.y109{bottom:444.869333pt;}
.y135{bottom:450.452000pt;}
.y1d{bottom:455.011333pt;}
.y9d{bottom:455.181067pt;}
.y57{bottom:455.181200pt;}
.y108{bottom:456.869333pt;}
.yd1{bottom:458.964267pt;}
.yca{bottom:460.026000pt;}
.y82{bottom:467.947467pt;}
.y134{bottom:468.034667pt;}
.y1c{bottom:472.611333pt;}
.y9c{bottom:473.847733pt;}
.y56{bottom:473.847867pt;}
.y107{bottom:474.452000pt;}
.yd0{bottom:476.564267pt;}
.y133{bottom:485.617333pt;}
.y106{bottom:486.452000pt;}
.y1b{bottom:490.211333pt;}
.y9b{bottom:492.514400pt;}
.y55{bottom:492.514533pt;}
.y132{bottom:503.200000pt;}
.y105{bottom:504.034667pt;}
.y1a{bottom:507.811333pt;}
.y81{bottom:511.181067pt;}
.y54{bottom:511.181200pt;}
.y131{bottom:515.200000pt;}
.y104{bottom:516.034667pt;}
.ycf{bottom:523.947600pt;}
.y19{bottom:525.411333pt;}
.y80{bottom:529.847733pt;}
.yce{bottom:529.847867pt;}
.y130{bottom:532.782667pt;}
.y103{bottom:533.617333pt;}
.y53{bottom:541.789867pt;}
.y18{bottom:543.011333pt;}
.y7f{bottom:548.514400pt;}
.yb5{bottom:548.514533pt;}
.y12f{bottom:550.365333pt;}
.y102{bottom:551.200000pt;}
.y17{bottom:560.611333pt;}
.y7e{bottom:567.181067pt;}
.yb4{bottom:567.181200pt;}
.y12e{bottom:567.948133pt;}
.y101{bottom:568.782667pt;}
.y52{bottom:570.498800pt;}
.yc9{bottom:572.026000pt;}
.y16{bottom:578.211333pt;}
.y12d{bottom:585.530800pt;}
.y7d{bottom:585.847733pt;}
.yb3{bottom:585.847867pt;}
.y100{bottom:586.365333pt;}
.yc2{bottom:594.730933pt;}
.y15{bottom:595.811333pt;}
.y12c{bottom:603.113467pt;}
.yff{bottom:603.948133pt;}
.y7c{bottom:604.514400pt;}
.ycd{bottom:604.514533pt;}
.yc1{bottom:612.330933pt;}
.y14{bottom:613.411333pt;}
.yb2{bottom:617.280933pt;}
.y12b{bottom:620.696133pt;}
.yfe{bottom:621.530800pt;}
.y7b{bottom:623.181067pt;}
.y51{bottom:623.181200pt;}
.yc8{bottom:628.026000pt;}
.yc0{bottom:629.930933pt;}
.y12a{bottom:638.278800pt;}
.yfd{bottom:639.113467pt;}
.y13{bottom:641.053600pt;}
.y7a{bottom:641.847733pt;}
.y50{bottom:641.847867pt;}
.y129{bottom:655.861467pt;}
.yfc{bottom:656.696133pt;}
.y79{bottom:660.514400pt;}
.y4f{bottom:660.514533pt;}
.y9a{bottom:672.094533pt;}
.y128{bottom:673.444133pt;}
.yfb{bottom:674.278800pt;}
.y78{bottom:679.181067pt;}
.y4e{bottom:679.181200pt;}
.yc7{bottom:684.026000pt;}
.y127{bottom:691.026800pt;}
.yfa{bottom:691.861467pt;}
.y77{bottom:697.847733pt;}
.y4d{bottom:697.847867pt;}
.y126{bottom:703.026800pt;}
.yf9{bottom:709.444133pt;}
.yd{bottom:711.526000pt;}
.y76{bottom:716.514400pt;}
.y4c{bottom:716.514533pt;}
.yb1{bottom:720.161733pt;}
.y125{bottom:720.609600pt;}
.yf8{bottom:727.026800pt;}
.yc{bottom:727.526000pt;}
.y124{bottom:732.609600pt;}
.y75{bottom:735.181067pt;}
.y4b{bottom:735.181200pt;}
.yb0{bottom:737.744400pt;}
.yc6{bottom:740.026000pt;}
.yb{bottom:743.526000pt;}
.yf7{bottom:744.609600pt;}
.yaf{bottom:749.744400pt;}
.y123{bottom:750.192267pt;}
.y74{bottom:753.847733pt;}
.y4a{bottom:753.847867pt;}
.ya{bottom:759.526000pt;}
.yae{bottom:761.744400pt;}
.yf6{bottom:762.192267pt;}
.y73{bottom:772.514400pt;}
.y49{bottom:772.514533pt;}
.yad{bottom:773.744400pt;}
.y9{bottom:775.526000pt;}
.yf5{bottom:779.774933pt;}
.y72{bottom:791.181067pt;}
.y48{bottom:791.181200pt;}
.yac{bottom:791.327067pt;}
.y8{bottom:791.526000pt;}
.yf4{bottom:791.774933pt;}
.yc5{bottom:796.388400pt;}
.y122{bottom:797.357467pt;}
.yab{bottom:803.327067pt;}
.yf3{bottom:803.774933pt;}
.y7{bottom:807.526000pt;}
.y71{bottom:809.847733pt;}
.y47{bottom:809.847867pt;}
.y121{bottom:814.940133pt;}
.yaa{bottom:815.327067pt;}
.yf2{bottom:821.357467pt;}
.yc4{bottom:822.614133pt;}
.y6{bottom:823.526000pt;}
.ya9{bottom:827.327067pt;}
.y70{bottom:828.514400pt;}
.y46{bottom:828.514533pt;}
.y120{bottom:832.522933pt;}
.yf1{bottom:833.357467pt;}
.y5{bottom:839.526000pt;}
.ya8{bottom:844.909733pt;}
.y6f{bottom:847.181067pt;}
.y45{bottom:847.181200pt;}
.y11f{bottom:850.105600pt;}
.yf0{bottom:850.940133pt;}
.ya7{bottom:856.909733pt;}
.y11e{bottom:862.105600pt;}
.y6e{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.yef{bottom:868.522933pt;}
.y4{bottom:870.644267pt;}
.ya6{bottom:874.492400pt;}
.y11d{bottom:879.688267pt;}
.y6d{bottom:884.514400pt;}
.y43{bottom:884.514533pt;}
.yee{bottom:886.105600pt;}
.ya5{bottom:886.492400pt;}
.y11c{bottom:891.688267pt;}
.y6c{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yed{bottom:903.688267pt;}
.ya4{bottom:904.075067pt;}
.y11b{bottom:909.270933pt;}
.yec{bottom:915.688267pt;}
.y11a{bottom:921.270933pt;}
.ya3{bottom:921.657733pt;}
.y6b{bottom:921.847733pt;}
.y41{bottom:921.847867pt;}
.y2{bottom:932.695600pt;}
.yeb{bottom:933.270933pt;}
.ya2{bottom:933.657733pt;}
.y119{bottom:938.853600pt;}
.y6a{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.yea{bottom:950.853600pt;}
.ya1{bottom:951.240533pt;}
.y69{bottom:959.181067pt;}
.y3f{bottom:959.181200pt;}
.ye9{bottom:968.436267pt;}
.ya0{bottom:968.823200pt;}
.y3e{bottom:977.847867pt;}
.ye8{bottom:986.018933pt;}
.y12{bottom:986.502667pt;}
.yc3{bottom:988.062933pt;}
.y68{bottom:989.062933pt;}
.y9f{bottom:994.918133pt;}
.y3d{bottom:996.514533pt;}
.ye7{bottom:1003.868267pt;}
.y38{bottom:1027.213600pt;}
.y37{bottom:1044.546933pt;}
.y3c{bottom:1047.726000pt;}
.h17{height:28.000000pt;}
.h19{height:28.420015pt;}
.h18{height:29.458333pt;}
.h13{height:29.731771pt;}
.h16{height:29.950521pt;}
.h14{height:30.333333pt;}
.h6{height:30.618750pt;}
.h2{height:33.812500pt;}
.hf{height:34.020833pt;}
.h5{height:34.250000pt;}
.hd{height:38.039062pt;}
.h7{height:38.226562pt;}
.hc{height:38.273438pt;}
.he{height:38.507812pt;}
.h9{height:39.000000pt;}
.h8{height:42.083333pt;}
.h10{height:42.786458pt;}
.hb{height:43.333333pt;}
.h15{height:43.750000pt;}
.h12{height:44.601562pt;}
.h11{height:46.291667pt;}
.h4{height:47.666667pt;}
.ha{height:50.500000pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.881867pt;}
.xb{left:95.172400pt;}
.xd{left:96.255067pt;}
.xe{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x2f{left:162.024533pt;}
.x1b{left:169.788400pt;}
.x19{left:171.075867pt;}
.x18{left:173.311200pt;}
.x1a{left:184.070933pt;}
.x24{left:186.611600pt;}
.xf{left:189.466800pt;}
.x25{left:211.070667pt;}
.x3f{left:251.156933pt;}
.x30{left:255.158667pt;}
.x3a{left:257.824667pt;}
.x3c{left:259.376667pt;}
.x36{left:260.297200pt;}
.x34{left:262.193200pt;}
.x35{left:265.463067pt;}
.x5{left:266.834667pt;}
.xc{left:281.952800pt;}
.x1c{left:308.785600pt;}
.x1d{left:312.367600pt;}
.x26{left:313.848667pt;}
.x27{left:315.035867pt;}
.x10{left:316.191200pt;}
.x37{left:325.298000pt;}
.x3b{left:334.319200pt;}
.x1e{left:337.687867pt;}
.x32{left:339.676667pt;}
.x38{left:343.149733pt;}
.x16{left:346.722800pt;}
.x11{left:350.106533pt;}
.x4{left:352.045067pt;}
.x3e{left:356.343333pt;}
.x31{left:366.372133pt;}
.x39{left:440.545200pt;}
.x3d{left:441.656800pt;}
.x2a{left:451.769600pt;}
.x17{left:454.943733pt;}
.x33{left:458.970667pt;}
.x28{left:461.305733pt;}
.x1f{left:468.451600pt;}
.x29{left:470.076267pt;}
.x20{left:473.223067pt;}
.x12{left:478.566400pt;}
.x13{left:482.460667pt;}
.x2b{left:499.753333pt;}
.xa{left:576.610267pt;}
.x14{left:595.926267pt;}
.x21{left:598.615067pt;}
.x2e{left:601.814267pt;}
.x2c{left:603.035733pt;}
.x9{left:604.516533pt;}
.x22{left:606.973200pt;}
.x23{left:610.040267pt;}
.x2d{left:611.808533pt;}
.x15{left:639.701333pt;}
.x1{left:717.520267pt;}
}




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