
    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_797203e05e24faf5916e69b0.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c75d1b848b71d4cbf0493ffc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.760309;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_d078c2e87b4be7adacc816ab.woff2')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_f4190168afc515e7c48ede74.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_52c39212791f7ceb85a0c21d.woff2')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_fb69cd55b9bff1d70325ff7b.woff2')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_c1cf5bbf33d4de8506367118.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.976111;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_02c23b4e3779ae179304b9ad.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_7303b2047c0746c13c50ca72.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.760345;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_4ae6a19807fb16d775bb4195.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_0087e7522f88a53118d2f7df.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.771120;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_50081322b6152acf05bef12d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.760335;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_97d036203364e0e5b1282b80.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.925781;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_05b2071fefcbe56ebc2d95e2.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.770020;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;}
.v1{vertical-align:21.978000px;}
.ls12{letter-spacing:-7.236000px;}
.ls10{letter-spacing:-3.240000px;}
.lsf{letter-spacing:-1.440000px;}
.lsd{letter-spacing:-1.020000px;}
.lse{letter-spacing:-0.960000px;}
.ls6{letter-spacing:-0.691200px;}
.lsa{letter-spacing:-0.672000px;}
.lsb{letter-spacing:-0.600000px;}
.lsc{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.408000px;}
.ls4{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.540000px;}
.ls8{letter-spacing:0.600000px;}
.ls0{letter-spacing:0.660000px;}
.ls7{letter-spacing:1.200000px;}
.ls11{letter-spacing:7.452000px;}
.ls1{letter-spacing:44.225964px;}
.ls2{letter-spacing:44.226564px;}
.ls9{letter-spacing:797.616000px;}
.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;}
}
.ws4{word-spacing:-17.928000px;}
.wsb6{word-spacing:-16.434000px;}
.ws24{word-spacing:-15.900000px;}
.ws4a{word-spacing:-15.480000px;}
.ws2{word-spacing:-14.940000px;}
.ws5b{word-spacing:-14.880000px;}
.ws5{word-spacing:-14.700000px;}
.ws94{word-spacing:-13.680000px;}
.ws8f{word-spacing:-13.446000px;}
.ws8e{word-spacing:-13.392000px;}
.ws3{word-spacing:-13.230000px;}
.ws90{word-spacing:-12.906000px;}
.ws6{word-spacing:-12.366000px;}
.ws7{word-spacing:-12.150000px;}
.ws4f{word-spacing:-11.904000px;}
.ws4d{word-spacing:-11.280000px;}
.ws8{word-spacing:-10.992000px;}
.ws22{word-spacing:-10.800000px;}
.ws23{word-spacing:-10.704000px;}
.wsae{word-spacing:-10.206000px;}
.ws1{word-spacing:-9.892800px;}
.ws0{word-spacing:-9.618000px;}
.wsb0{word-spacing:-6.210000px;}
.wsa5{word-spacing:-5.700000px;}
.wsa6{word-spacing:-5.640000px;}
.wsa7{word-spacing:-5.580000px;}
.ws91{word-spacing:-4.320000px;}
.ws92{word-spacing:-4.266000px;}
.ws5f{word-spacing:-3.900000px;}
.ws9a{word-spacing:-3.780000px;}
.ws45{word-spacing:-3.480000px;}
.ws44{word-spacing:-3.420000px;}
.wsa8{word-spacing:-3.120000px;}
.ws59{word-spacing:-3.060000px;}
.ws87{word-spacing:-2.940000px;}
.ws60{word-spacing:-2.880000px;}
.ws63{word-spacing:-2.760000px;}
.wsbb{word-spacing:-2.700000px;}
.wsa9{word-spacing:-2.640000px;}
.ws3d{word-spacing:-2.460000px;}
.ws15{word-spacing:-2.160000px;}
.ws6c{word-spacing:-2.100000px;}
.ws37{word-spacing:-1.920000px;}
.ws61{word-spacing:-1.740000px;}
.wsc1{word-spacing:-1.728000px;}
.wscf{word-spacing:-1.566000px;}
.ws43{word-spacing:-1.500000px;}
.ws12{word-spacing:-1.296000px;}
.ws96{word-spacing:-1.260000px;}
.wsaf{word-spacing:-1.242000px;}
.wsd4{word-spacing:-1.188000px;}
.ws2a{word-spacing:-1.140000px;}
.wsb8{word-spacing:-1.026000px;}
.ws18{word-spacing:-1.020000px;}
.ws7b{word-spacing:-0.960000px;}
.ws34{word-spacing:-0.900000px;}
.ws58{word-spacing:-0.720000px;}
.ws31{word-spacing:-0.660000px;}
.ws5a{word-spacing:-0.600000px;}
.ws16{word-spacing:-0.540000px;}
.ws54{word-spacing:-0.420000px;}
.ws2f{word-spacing:-0.300000px;}
.ws2e{word-spacing:-0.240000px;}
.wsb{word-spacing:-0.216000px;}
.ws14{word-spacing:-0.162000px;}
.wsc3{word-spacing:-0.054000px;}
.ws9{word-spacing:0.000000px;}
.ws8b{word-spacing:0.120000px;}
.wsb9{word-spacing:0.162000px;}
.ws7c{word-spacing:0.180000px;}
.wscd{word-spacing:0.216000px;}
.ws7d{word-spacing:0.240000px;}
.wsc4{word-spacing:0.324000px;}
.wsa{word-spacing:0.408000px;}
.ws32{word-spacing:0.480000px;}
.ws93{word-spacing:0.540000px;}
.ws83{word-spacing:0.600000px;}
.wsc{word-spacing:0.691200px;}
.wsc7{word-spacing:0.702000px;}
.wsa1{word-spacing:0.720000px;}
.wsf{word-spacing:0.756000px;}
.ws80{word-spacing:0.900000px;}
.ws55{word-spacing:0.960000px;}
.wsaa{word-spacing:1.020000px;}
.ws46{word-spacing:1.080000px;}
.ws53{word-spacing:1.140000px;}
.wsce{word-spacing:1.188000px;}
.ws5c{word-spacing:1.200000px;}
.ws5d{word-spacing:1.260000px;}
.wsad{word-spacing:1.380000px;}
.wsba{word-spacing:1.404000px;}
.ws89{word-spacing:1.440000px;}
.ws39{word-spacing:1.500000px;}
.ws30{word-spacing:1.680000px;}
.ws98{word-spacing:1.800000px;}
.ws27{word-spacing:1.860000px;}
.wsc5{word-spacing:1.890000px;}
.ws20{word-spacing:1.920000px;}
.wsb5{word-spacing:1.944000px;}
.wsb4{word-spacing:1.998000px;}
.ws75{word-spacing:2.160000px;}
.ws1a{word-spacing:2.220000px;}
.wsc2{word-spacing:2.322000px;}
.ws6d{word-spacing:2.340000px;}
.ws74{word-spacing:2.400000px;}
.wsd5{word-spacing:2.430000px;}
.ws5e{word-spacing:2.460000px;}
.ws2c{word-spacing:2.520000px;}
.ws33{word-spacing:2.580000px;}
.ws99{word-spacing:2.640000px;}
.ws13{word-spacing:2.700000px;}
.ws26{word-spacing:2.760000px;}
.ws25{word-spacing:2.820000px;}
.ws85{word-spacing:2.880000px;}
.ws3a{word-spacing:2.940000px;}
.ws1b{word-spacing:3.060000px;}
.wsd2{word-spacing:3.078000px;}
.wsbe{word-spacing:3.132000px;}
.wsac{word-spacing:3.180000px;}
.ws41{word-spacing:3.300000px;}
.ws42{word-spacing:3.360000px;}
.wsab{word-spacing:3.420000px;}
.ws64{word-spacing:3.480000px;}
.ws35{word-spacing:3.540000px;}
.wsb7{word-spacing:3.618000px;}
.wsc8{word-spacing:3.672000px;}
.ws70{word-spacing:3.900000px;}
.ws6b{word-spacing:4.140000px;}
.ws6a{word-spacing:4.200000px;}
.wsc0{word-spacing:4.320000px;}
.wscb{word-spacing:4.374000px;}
.ws1f{word-spacing:4.440000px;}
.ws10{word-spacing:4.482000px;}
.ws8a{word-spacing:4.500000px;}
.ws11{word-spacing:4.536000px;}
.ws6e{word-spacing:4.560000px;}
.wsbd{word-spacing:4.590000px;}
.ws6f{word-spacing:4.620000px;}
.wsca{word-spacing:4.644000px;}
.ws7e{word-spacing:4.680000px;}
.ws82{word-spacing:4.860000px;}
.wsd{word-spacing:4.968000px;}
.ws2d{word-spacing:4.980000px;}
.wse{word-spacing:5.022000px;}
.wsa4{word-spacing:5.040000px;}
.ws73{word-spacing:5.160000px;}
.ws72{word-spacing:5.220000px;}
.ws9d{word-spacing:5.280000px;}
.ws9e{word-spacing:5.340000px;}
.ws49{word-spacing:5.400000px;}
.ws67{word-spacing:5.460000px;}
.ws66{word-spacing:5.520000px;}
.ws9c{word-spacing:5.580000px;}
.ws1c{word-spacing:5.640000px;}
.ws56{word-spacing:5.880000px;}
.wsc9{word-spacing:5.940000px;}
.ws19{word-spacing:6.000000px;}
.ws71{word-spacing:6.060000px;}
.ws7f{word-spacing:6.180000px;}
.ws3b{word-spacing:6.240000px;}
.ws97{word-spacing:6.300000px;}
.ws1e{word-spacing:6.420000px;}
.ws7a{word-spacing:6.540000px;}
.ws88{word-spacing:6.600000px;}
.ws3c{word-spacing:6.720000px;}
.ws2b{word-spacing:6.900000px;}
.ws65{word-spacing:7.140000px;}
.ws78{word-spacing:7.200000px;}
.wsb2{word-spacing:7.398000px;}
.ws40{word-spacing:7.440000px;}
.wsb3{word-spacing:7.452000px;}
.wsb1{word-spacing:7.506000px;}
.ws36{word-spacing:7.560000px;}
.ws62{word-spacing:7.680000px;}
.wsbf{word-spacing:7.722000px;}
.ws84{word-spacing:7.740000px;}
.ws48{word-spacing:7.860000px;}
.ws8d{word-spacing:7.938000px;}
.ws47{word-spacing:7.980000px;}
.ws8c{word-spacing:7.992000px;}
.wsd3{word-spacing:8.154000px;}
.ws79{word-spacing:8.220000px;}
.ws38{word-spacing:8.400000px;}
.ws81{word-spacing:8.460000px;}
.wsc6{word-spacing:8.586000px;}
.ws76{word-spacing:8.820000px;}
.ws77{word-spacing:8.880000px;}
.ws29{word-spacing:9.000000px;}
.ws28{word-spacing:9.060000px;}
.wscc{word-spacing:9.180000px;}
.ws57{word-spacing:9.240000px;}
.wsbc{word-spacing:9.288000px;}
.ws68{word-spacing:9.480000px;}
.ws69{word-spacing:9.600000px;}
.ws17{word-spacing:10.080000px;}
.ws1d{word-spacing:10.260000px;}
.ws21{word-spacing:10.380000px;}
.wsa0{word-spacing:10.800000px;}
.ws9f{word-spacing:10.860000px;}
.wsa3{word-spacing:11.040000px;}
.wsa2{word-spacing:11.100000px;}
.ws9b{word-spacing:11.460000px;}
.ws3e{word-spacing:11.640000px;}
.ws3f{word-spacing:11.760000px;}
.wsd1{word-spacing:14.742000px;}
.ws86{word-spacing:21.240000px;}
.wsd0{word-spacing:22.086000px;}
.ws95{word-spacing:330.532800px;}
.ws51{word-spacing:624.048000px;}
.ws50{word-spacing:643.488000px;}
.ws52{word-spacing:646.608000px;}
.ws4e{word-spacing:681.744000px;}
.ws4b{word-spacing:750.192000px;}
.ws4c{word-spacing:790.488000px;}
._9{margin-left:-11.181600px;}
._c{margin-left:-8.894400px;}
._26{margin-left:-7.266000px;}
._a{margin-left:-6.234000px;}
._3{margin-left:-4.763400px;}
._2{margin-left:-2.815200px;}
._1{margin-left:-1.346400px;}
._0{width:1.785000px;}
._5{width:3.414000px;}
._6{width:4.896000px;}
._d{width:6.547200px;}
._b{width:7.756800px;}
._8{width:9.145200px;}
._7{width:10.238400px;}
._28{width:11.363400px;}
._27{width:21.715200px;}
._4{width:36.369000px;}
._35{width:42.596400px;}
._33{width:109.951200px;}
._32{width:119.263200px;}
._31{width:156.463200px;}
._34{width:253.970400px;}
._2c{width:275.184000px;}
._2d{width:295.632000px;}
._30{width:363.312000px;}
._2b{width:380.832000px;}
._29{width:382.125600px;}
._2a{width:448.224000px;}
._2e{width:455.712000px;}
._2f{width:460.080000px;}
._19{width:482.930400px;}
._10{width:495.986400px;}
._16{width:501.936000px;}
._13{width:508.752000px;}
._15{width:515.424000px;}
._12{width:522.240000px;}
._1c{width:600.288000px;}
._20{width:632.544000px;}
._f{width:693.504000px;}
._14{width:703.392000px;}
._17{width:779.136000px;}
._21{width:789.216000px;}
._1b{width:799.200000px;}
._11{width:811.536000px;}
._e{width:814.235400px;}
._18{width:819.120000px;}
._1a{width:826.187400px;}
._23{width:847.968000px;}
._24{width:855.936000px;}
._22{width:857.472000px;}
._1f{width:882.242400px;}
._25{width:890.064000px;}
._1d{width:900.048000px;}
._1e{width:927.074400px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.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;}
.y37{bottom:71.212050px;}
.y38{bottom:75.040050px;}
.y75{bottom:113.078700px;}
.y65{bottom:113.078850px;}
.yd{bottom:117.205050px;}
.yc6{bottom:120.496200px;}
.yca{bottom:120.500850px;}
.yc{bottom:131.601450px;}
.ye0{bottom:134.072850px;}
.y74{bottom:134.078700px;}
.y64{bottom:134.078850px;}
.yc5{bottom:140.300700px;}
.yb9{bottom:145.117800px;}
.yb{bottom:145.997850px;}
.y10e{bottom:154.802850px;}
.y73{bottom:155.078700px;}
.y63{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.ya{bottom:160.397850px;}
.yb8{bottom:164.922300px;}
.y10d{bottom:175.808850px;}
.y72{bottom:176.078700px;}
.y62{bottom:176.078850px;}
.y28{bottom:180.212550px;}
.ydf{bottom:190.441050px;}
.y10c{bottom:196.814850px;}
.y71{bottom:197.078700px;}
.y61{bottom:197.078850px;}
.y27{bottom:201.212550px;}
.y34{bottom:203.442900px;}
.y10b{bottom:217.820850px;}
.y70{bottom:218.078700px;}
.y60{bottom:218.078850px;}
.y33{bottom:221.438400px;}
.y26{bottom:222.212550px;}
.y10a{bottom:238.826850px;}
.y6f{bottom:239.078700px;}
.y5f{bottom:239.078850px;}
.y32{bottom:239.433900px;}
.y25{bottom:243.212550px;}
.y31{bottom:257.429400px;}
.y109{bottom:259.832850px;}
.y6e{bottom:260.078700px;}
.y5e{bottom:260.078850px;}
.y24{bottom:264.212550px;}
.yde{bottom:265.529400px;}
.y30{bottom:275.424900px;}
.y108{bottom:280.838850px;}
.y6d{bottom:281.078700px;}
.y5d{bottom:281.078850px;}
.y23{bottom:285.212550px;}
.y2f{bottom:293.420400px;}
.y107{bottom:301.844850px;}
.ydd{bottom:302.072850px;}
.y6c{bottom:302.078700px;}
.y5c{bottom:302.078850px;}
.y22{bottom:306.212550px;}
.y2e{bottom:311.415900px;}
.y106{bottom:322.850850px;}
.ydc{bottom:323.072850px;}
.y6b{bottom:323.078700px;}
.y5b{bottom:323.078850px;}
.y21{bottom:327.212550px;}
.y105{bottom:343.856850px;}
.ydb{bottom:344.072850px;}
.y6a{bottom:344.078700px;}
.y5a{bottom:344.078850px;}
.y2d{bottom:346.421400px;}
.y20{bottom:348.212550px;}
.y2c{bottom:364.421400px;}
.y104{bottom:364.862850px;}
.yda{bottom:365.072850px;}
.y69{bottom:365.078700px;}
.y59{bottom:365.078850px;}
.y1f{bottom:369.212550px;}
.y2b{bottom:382.421400px;}
.y103{bottom:385.868850px;}
.yd9{bottom:386.072850px;}
.y68{bottom:386.078700px;}
.y58{bottom:386.078850px;}
.y1e{bottom:390.212550px;}
.y2a{bottom:400.421400px;}
.y102{bottom:406.874850px;}
.yd8{bottom:407.072850px;}
.y67{bottom:407.078700px;}
.yb5{bottom:407.078850px;}
.y1d{bottom:411.212550px;}
.y57{bottom:421.441050px;}
.y101{bottom:427.880850px;}
.yd7{bottom:428.072850px;}
.y66{bottom:428.078700px;}
.yb4{bottom:428.078850px;}
.y1c{bottom:432.212550px;}
.y100{bottom:448.886850px;}
.yae{bottom:449.078700px;}
.yb3{bottom:449.078850px;}
.y1b{bottom:453.212550px;}
.yff{bottom:469.892850px;}
.yad{bottom:470.078700px;}
.y56{bottom:470.078850px;}
.y1a{bottom:474.212550px;}
.yd6{bottom:475.529400px;}
.y90{bottom:484.339200px;}
.yfe{bottom:490.898850px;}
.yac{bottom:491.078700px;}
.y55{bottom:491.078850px;}
.y8f{bottom:506.947200px;}
.y19{bottom:508.604400px;}
.yfd{bottom:511.904850px;}
.yd5{bottom:512.060850px;}
.yab{bottom:512.078700px;}
.y54{bottom:512.078850px;}
.y8e{bottom:529.555200px;}
.yfc{bottom:532.910850px;}
.yd4{bottom:533.066850px;}
.yaa{bottom:533.078700px;}
.y53{bottom:533.078850px;}
.y8d{bottom:552.163200px;}
.yfb{bottom:553.916850px;}
.yd3{bottom:554.072850px;}
.ya9{bottom:554.078700px;}
.y52{bottom:554.078850px;}
.yb2{bottom:568.441050px;}
.yc9{bottom:571.384800px;}
.y8c{bottom:574.771200px;}
.yfa{bottom:574.922850px;}
.ya8{bottom:575.078700px;}
.y51{bottom:575.078850px;}
.y18{bottom:580.627950px;}
.yc8{bottom:591.189300px;}
.yf9{bottom:595.928850px;}
.ya7{bottom:596.078700px;}
.y50{bottom:596.078850px;}
.y8b{bottom:597.379200px;}
.yd2{bottom:601.529400px;}
.yc7{bottom:610.993800px;}
.yf8{bottom:616.934850px;}
.ya6{bottom:617.078700px;}
.y4f{bottom:617.078850px;}
.y8a{bottom:619.987200px;}
.y17{bottom:621.656400px;}
.yf7{bottom:637.940850px;}
.yd1{bottom:638.072850px;}
.yb1{bottom:638.078850px;}
.y16{bottom:641.460900px;}
.y89{bottom:642.595200px;}
.y4e{bottom:651.513600px;}
.ya5{bottom:652.440900px;}
.yf6{bottom:658.946850px;}
.yb0{bottom:659.078850px;}
.y15{bottom:661.265400px;}
.y88{bottom:665.203200px;}
.yf5{bottom:679.952850px;}
.yaf{bottom:680.078850px;}
.y14{bottom:681.069900px;}
.y4d{bottom:683.811150px;}
.yd0{bottom:685.529400px;}
.y87{bottom:687.811200px;}
.y13{bottom:700.874400px;}
.yf4{bottom:700.958850px;}
.ya4{bottom:701.078700px;}
.ybb{bottom:701.078850px;}
.y86{bottom:710.419200px;}
.y12{bottom:720.678900px;}
.yf3{bottom:721.964850px;}
.ya3{bottom:722.078700px;}
.yba{bottom:722.078850px;}
.yb7{bottom:732.377100px;}
.y85{bottom:733.027200px;}
.y11{bottom:740.483400px;}
.yf2{bottom:742.970850px;}
.ya2{bottom:743.078700px;}
.y4c{bottom:743.078850px;}
.ycf{bottom:748.529400px;}
.yb6{bottom:752.181600px;}
.y10{bottom:760.287900px;}
.y84{bottom:763.509150px;}
.yf1{bottom:763.976850px;}
.ya1{bottom:764.078700px;}
.y4b{bottom:764.078850px;}
.yf0{bottom:784.982850px;}
.ya0{bottom:785.078700px;}
.y4a{bottom:785.078850px;}
.yf{bottom:791.385300px;}
.yef{bottom:805.988850px;}
.y9f{bottom:806.078700px;}
.y49{bottom:806.078850px;}
.yce{bottom:811.529250px;}
.y83{bottom:817.505100px;}
.yee{bottom:826.994850px;}
.y9e{bottom:827.078700px;}
.y48{bottom:827.078850px;}
.y82{bottom:840.113100px;}
.yed{bottom:848.000850px;}
.y9d{bottom:848.078700px;}
.y47{bottom:848.078850px;}
.y81{bottom:862.721100px;}
.yec{bottom:869.006850px;}
.y9c{bottom:869.078700px;}
.y46{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.ycd{bottom:874.937100px;}
.y80{bottom:885.329100px;}
.y8{bottom:888.666900px;}
.yeb{bottom:890.012850px;}
.y9b{bottom:890.078700px;}
.y45{bottom:890.078850px;}
.yc4{bottom:900.761100px;}
.ycc{bottom:904.441050px;}
.y7{bottom:906.666900px;}
.y7f{bottom:907.937100px;}
.yea{bottom:911.018850px;}
.y9a{bottom:911.078700px;}
.y44{bottom:911.078850px;}
.yc3{bottom:915.761100px;}
.y6{bottom:924.666900px;}
.y7e{bottom:930.545100px;}
.ye9{bottom:932.024850px;}
.y99{bottom:932.078700px;}
.y43{bottom:932.078850px;}
.yc2{bottom:938.369100px;}
.ye8{bottom:953.030850px;}
.y98{bottom:953.078700px;}
.y42{bottom:953.078850px;}
.y7d{bottom:953.153100px;}
.yc1{bottom:953.369100px;}
.y5{bottom:959.674800px;}
.ye7{bottom:974.036850px;}
.y97{bottom:974.078700px;}
.y41{bottom:974.078850px;}
.y7c{bottom:975.761100px;}
.yc0{bottom:975.977100px;}
.y4{bottom:979.474800px;}
.ybf{bottom:990.977100px;}
.ye6{bottom:995.042850px;}
.y96{bottom:995.078700px;}
.y40{bottom:995.078850px;}
.y7b{bottom:998.369100px;}
.ybe{bottom:1005.977100px;}
.ye5{bottom:1016.048850px;}
.y95{bottom:1016.078700px;}
.y3f{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y7a{bottom:1020.977100px;}
.ybd{bottom:1028.585100px;}
.ycb{bottom:1030.441050px;}
.ye4{bottom:1037.054850px;}
.y94{bottom:1037.078700px;}
.y3e{bottom:1037.078850px;}
.y79{bottom:1043.585100px;}
.y2{bottom:1049.282550px;}
.ybc{bottom:1051.193100px;}
.ye3{bottom:1058.060850px;}
.y93{bottom:1058.078700px;}
.y3d{bottom:1058.078850px;}
.y78{bottom:1066.193100px;}
.ye2{bottom:1079.066850px;}
.y3c{bottom:1079.078850px;}
.y77{bottom:1088.801100px;}
.y92{bottom:1092.029250px;}
.ye1{bottom:1100.072850px;}
.y3b{bottom:1100.078850px;}
.ye{bottom:1109.815500px;}
.y76{bottom:1119.282900px;}
.y3a{bottom:1121.078850px;}
.y91{bottom:1124.326650px;}
.y36{bottom:1159.189500px;}
.y35{bottom:1178.689500px;}
.y39{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h11{height:38.226562px;}
.he{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:43.004883px;}
.hd{height:43.057617px;}
.ha{height:43.321289px;}
.h16{height:43.345289px;}
.h12{height:47.343750px;}
.h9{height:47.783203px;}
.hc{height:48.134766px;}
.h13{height:49.218750px;}
.h14{height:50.176758px;}
.h10{height:52.078125px;}
.h15{height:52.561523px;}
.h4{height:52.948242px;}
.hf{height:56.812500px;}
.hb{height:57.339844px;}
.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.987600px;}
.xc{left:107.071650px;}
.xd{left:108.285450px;}
.xf{left:112.241400px;}
.x7{left:119.878950px;}
.x8{left:122.032500px;}
.x9{left:124.102950px;}
.x11{left:151.385400px;}
.xe{left:213.557400px;}
.x10{left:215.683500px;}
.x14{left:257.897400px;}
.x13{left:265.169400px;}
.x19{left:280.145400px;}
.x5{left:300.189000px;}
.x6{left:317.199000px;}
.x4{left:396.050700px;}
.x16{left:441.653400px;}
.x15{left:451.937400px;}
.x1b{left:465.113400px;}
.x1a{left:492.245400px;}
.x12{left:630.053400px;}
.xb{left:645.894150px;}
.x1c{left:656.453400px;}
.x17{left:660.797400px;}
.xa{left:678.786150px;}
.x18{left:681.029400px;}
.x1{left:807.081450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.ls12{letter-spacing:-6.432000pt;}
.ls10{letter-spacing:-2.880000pt;}
.lsf{letter-spacing:-1.280000pt;}
.lsd{letter-spacing:-0.906667pt;}
.lse{letter-spacing:-0.853333pt;}
.ls6{letter-spacing:-0.614400pt;}
.lsa{letter-spacing:-0.597333pt;}
.lsb{letter-spacing:-0.533333pt;}
.lsc{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.362667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.533333pt;}
.ls0{letter-spacing:0.586667pt;}
.ls7{letter-spacing:1.066667pt;}
.ls11{letter-spacing:6.624000pt;}
.ls1{letter-spacing:39.311968pt;}
.ls2{letter-spacing:39.312501pt;}
.ls9{letter-spacing:708.992000pt;}
.ws4{word-spacing:-15.936000pt;}
.wsb6{word-spacing:-14.608000pt;}
.ws24{word-spacing:-14.133333pt;}
.ws4a{word-spacing:-13.760000pt;}
.ws2{word-spacing:-13.280000pt;}
.ws5b{word-spacing:-13.226667pt;}
.ws5{word-spacing:-13.066667pt;}
.ws94{word-spacing:-12.160000pt;}
.ws8f{word-spacing:-11.952000pt;}
.ws8e{word-spacing:-11.904000pt;}
.ws3{word-spacing:-11.760000pt;}
.ws90{word-spacing:-11.472000pt;}
.ws6{word-spacing:-10.992000pt;}
.ws7{word-spacing:-10.800000pt;}
.ws4f{word-spacing:-10.581333pt;}
.ws4d{word-spacing:-10.026667pt;}
.ws8{word-spacing:-9.770667pt;}
.ws22{word-spacing:-9.600000pt;}
.ws23{word-spacing:-9.514667pt;}
.wsae{word-spacing:-9.072000pt;}
.ws1{word-spacing:-8.793600pt;}
.ws0{word-spacing:-8.549333pt;}
.wsb0{word-spacing:-5.520000pt;}
.wsa5{word-spacing:-5.066667pt;}
.wsa6{word-spacing:-5.013333pt;}
.wsa7{word-spacing:-4.960000pt;}
.ws91{word-spacing:-3.840000pt;}
.ws92{word-spacing:-3.792000pt;}
.ws5f{word-spacing:-3.466667pt;}
.ws9a{word-spacing:-3.360000pt;}
.ws45{word-spacing:-3.093333pt;}
.ws44{word-spacing:-3.040000pt;}
.wsa8{word-spacing:-2.773333pt;}
.ws59{word-spacing:-2.720000pt;}
.ws87{word-spacing:-2.613333pt;}
.ws60{word-spacing:-2.560000pt;}
.ws63{word-spacing:-2.453333pt;}
.wsbb{word-spacing:-2.400000pt;}
.wsa9{word-spacing:-2.346667pt;}
.ws3d{word-spacing:-2.186667pt;}
.ws15{word-spacing:-1.920000pt;}
.ws6c{word-spacing:-1.866667pt;}
.ws37{word-spacing:-1.706667pt;}
.ws61{word-spacing:-1.546667pt;}
.wsc1{word-spacing:-1.536000pt;}
.wscf{word-spacing:-1.392000pt;}
.ws43{word-spacing:-1.333333pt;}
.ws12{word-spacing:-1.152000pt;}
.ws96{word-spacing:-1.120000pt;}
.wsaf{word-spacing:-1.104000pt;}
.wsd4{word-spacing:-1.056000pt;}
.ws2a{word-spacing:-1.013333pt;}
.wsb8{word-spacing:-0.912000pt;}
.ws18{word-spacing:-0.906667pt;}
.ws7b{word-spacing:-0.853333pt;}
.ws34{word-spacing:-0.800000pt;}
.ws58{word-spacing:-0.640000pt;}
.ws31{word-spacing:-0.586667pt;}
.ws5a{word-spacing:-0.533333pt;}
.ws16{word-spacing:-0.480000pt;}
.ws54{word-spacing:-0.373333pt;}
.ws2f{word-spacing:-0.266667pt;}
.ws2e{word-spacing:-0.213333pt;}
.wsb{word-spacing:-0.192000pt;}
.ws14{word-spacing:-0.144000pt;}
.wsc3{word-spacing:-0.048000pt;}
.ws9{word-spacing:0.000000pt;}
.ws8b{word-spacing:0.106667pt;}
.wsb9{word-spacing:0.144000pt;}
.ws7c{word-spacing:0.160000pt;}
.wscd{word-spacing:0.192000pt;}
.ws7d{word-spacing:0.213333pt;}
.wsc4{word-spacing:0.288000pt;}
.wsa{word-spacing:0.362667pt;}
.ws32{word-spacing:0.426667pt;}
.ws93{word-spacing:0.480000pt;}
.ws83{word-spacing:0.533333pt;}
.wsc{word-spacing:0.614400pt;}
.wsc7{word-spacing:0.624000pt;}
.wsa1{word-spacing:0.640000pt;}
.wsf{word-spacing:0.672000pt;}
.ws80{word-spacing:0.800000pt;}
.ws55{word-spacing:0.853333pt;}
.wsaa{word-spacing:0.906667pt;}
.ws46{word-spacing:0.960000pt;}
.ws53{word-spacing:1.013333pt;}
.wsce{word-spacing:1.056000pt;}
.ws5c{word-spacing:1.066667pt;}
.ws5d{word-spacing:1.120000pt;}
.wsad{word-spacing:1.226667pt;}
.wsba{word-spacing:1.248000pt;}
.ws89{word-spacing:1.280000pt;}
.ws39{word-spacing:1.333333pt;}
.ws30{word-spacing:1.493333pt;}
.ws98{word-spacing:1.600000pt;}
.ws27{word-spacing:1.653333pt;}
.wsc5{word-spacing:1.680000pt;}
.ws20{word-spacing:1.706667pt;}
.wsb5{word-spacing:1.728000pt;}
.wsb4{word-spacing:1.776000pt;}
.ws75{word-spacing:1.920000pt;}
.ws1a{word-spacing:1.973333pt;}
.wsc2{word-spacing:2.064000pt;}
.ws6d{word-spacing:2.080000pt;}
.ws74{word-spacing:2.133333pt;}
.wsd5{word-spacing:2.160000pt;}
.ws5e{word-spacing:2.186667pt;}
.ws2c{word-spacing:2.240000pt;}
.ws33{word-spacing:2.293333pt;}
.ws99{word-spacing:2.346667pt;}
.ws13{word-spacing:2.400000pt;}
.ws26{word-spacing:2.453333pt;}
.ws25{word-spacing:2.506667pt;}
.ws85{word-spacing:2.560000pt;}
.ws3a{word-spacing:2.613333pt;}
.ws1b{word-spacing:2.720000pt;}
.wsd2{word-spacing:2.736000pt;}
.wsbe{word-spacing:2.784000pt;}
.wsac{word-spacing:2.826667pt;}
.ws41{word-spacing:2.933333pt;}
.ws42{word-spacing:2.986667pt;}
.wsab{word-spacing:3.040000pt;}
.ws64{word-spacing:3.093333pt;}
.ws35{word-spacing:3.146667pt;}
.wsb7{word-spacing:3.216000pt;}
.wsc8{word-spacing:3.264000pt;}
.ws70{word-spacing:3.466667pt;}
.ws6b{word-spacing:3.680000pt;}
.ws6a{word-spacing:3.733333pt;}
.wsc0{word-spacing:3.840000pt;}
.wscb{word-spacing:3.888000pt;}
.ws1f{word-spacing:3.946667pt;}
.ws10{word-spacing:3.984000pt;}
.ws8a{word-spacing:4.000000pt;}
.ws11{word-spacing:4.032000pt;}
.ws6e{word-spacing:4.053333pt;}
.wsbd{word-spacing:4.080000pt;}
.ws6f{word-spacing:4.106667pt;}
.wsca{word-spacing:4.128000pt;}
.ws7e{word-spacing:4.160000pt;}
.ws82{word-spacing:4.320000pt;}
.wsd{word-spacing:4.416000pt;}
.ws2d{word-spacing:4.426667pt;}
.wse{word-spacing:4.464000pt;}
.wsa4{word-spacing:4.480000pt;}
.ws73{word-spacing:4.586667pt;}
.ws72{word-spacing:4.640000pt;}
.ws9d{word-spacing:4.693333pt;}
.ws9e{word-spacing:4.746667pt;}
.ws49{word-spacing:4.800000pt;}
.ws67{word-spacing:4.853333pt;}
.ws66{word-spacing:4.906667pt;}
.ws9c{word-spacing:4.960000pt;}
.ws1c{word-spacing:5.013333pt;}
.ws56{word-spacing:5.226667pt;}
.wsc9{word-spacing:5.280000pt;}
.ws19{word-spacing:5.333333pt;}
.ws71{word-spacing:5.386667pt;}
.ws7f{word-spacing:5.493333pt;}
.ws3b{word-spacing:5.546667pt;}
.ws97{word-spacing:5.600000pt;}
.ws1e{word-spacing:5.706667pt;}
.ws7a{word-spacing:5.813333pt;}
.ws88{word-spacing:5.866667pt;}
.ws3c{word-spacing:5.973333pt;}
.ws2b{word-spacing:6.133333pt;}
.ws65{word-spacing:6.346667pt;}
.ws78{word-spacing:6.400000pt;}
.wsb2{word-spacing:6.576000pt;}
.ws40{word-spacing:6.613333pt;}
.wsb3{word-spacing:6.624000pt;}
.wsb1{word-spacing:6.672000pt;}
.ws36{word-spacing:6.720000pt;}
.ws62{word-spacing:6.826667pt;}
.wsbf{word-spacing:6.864000pt;}
.ws84{word-spacing:6.880000pt;}
.ws48{word-spacing:6.986667pt;}
.ws8d{word-spacing:7.056000pt;}
.ws47{word-spacing:7.093333pt;}
.ws8c{word-spacing:7.104000pt;}
.wsd3{word-spacing:7.248000pt;}
.ws79{word-spacing:7.306667pt;}
.ws38{word-spacing:7.466667pt;}
.ws81{word-spacing:7.520000pt;}
.wsc6{word-spacing:7.632000pt;}
.ws76{word-spacing:7.840000pt;}
.ws77{word-spacing:7.893333pt;}
.ws29{word-spacing:8.000000pt;}
.ws28{word-spacing:8.053333pt;}
.wscc{word-spacing:8.160000pt;}
.ws57{word-spacing:8.213333pt;}
.wsbc{word-spacing:8.256000pt;}
.ws68{word-spacing:8.426667pt;}
.ws69{word-spacing:8.533333pt;}
.ws17{word-spacing:8.960000pt;}
.ws1d{word-spacing:9.120000pt;}
.ws21{word-spacing:9.226667pt;}
.wsa0{word-spacing:9.600000pt;}
.ws9f{word-spacing:9.653333pt;}
.wsa3{word-spacing:9.813333pt;}
.wsa2{word-spacing:9.866667pt;}
.ws9b{word-spacing:10.186667pt;}
.ws3e{word-spacing:10.346667pt;}
.ws3f{word-spacing:10.453333pt;}
.wsd1{word-spacing:13.104000pt;}
.ws86{word-spacing:18.880000pt;}
.wsd0{word-spacing:19.632000pt;}
.ws95{word-spacing:293.806933pt;}
.ws51{word-spacing:554.709333pt;}
.ws50{word-spacing:571.989333pt;}
.ws52{word-spacing:574.762667pt;}
.ws4e{word-spacing:605.994667pt;}
.ws4b{word-spacing:666.837333pt;}
.ws4c{word-spacing:702.656000pt;}
._9{margin-left:-9.939200pt;}
._c{margin-left:-7.906133pt;}
._26{margin-left:-6.458667pt;}
._a{margin-left:-5.541333pt;}
._3{margin-left:-4.234133pt;}
._2{margin-left:-2.502400pt;}
._1{margin-left:-1.196800pt;}
._0{width:1.586667pt;}
._5{width:3.034667pt;}
._6{width:4.352000pt;}
._d{width:5.819733pt;}
._b{width:6.894933pt;}
._8{width:8.129067pt;}
._7{width:9.100800pt;}
._28{width:10.100800pt;}
._27{width:19.302400pt;}
._4{width:32.328000pt;}
._35{width:37.863467pt;}
._33{width:97.734400pt;}
._32{width:106.011733pt;}
._31{width:139.078400pt;}
._34{width:225.751467pt;}
._2c{width:244.608000pt;}
._2d{width:262.784000pt;}
._30{width:322.944000pt;}
._2b{width:338.517333pt;}
._29{width:339.667200pt;}
._2a{width:398.421333pt;}
._2e{width:405.077333pt;}
._2f{width:408.960000pt;}
._19{width:429.271467pt;}
._10{width:440.876800pt;}
._16{width:446.165333pt;}
._13{width:452.224000pt;}
._15{width:458.154667pt;}
._12{width:464.213333pt;}
._1c{width:533.589333pt;}
._20{width:562.261333pt;}
._f{width:616.448000pt;}
._14{width:625.237333pt;}
._17{width:692.565333pt;}
._21{width:701.525333pt;}
._1b{width:710.400000pt;}
._11{width:721.365333pt;}
._e{width:723.764800pt;}
._18{width:728.106667pt;}
._1a{width:734.388800pt;}
._23{width:753.749333pt;}
._24{width:760.832000pt;}
._22{width:762.197333pt;}
._1f{width:784.215467pt;}
._25{width:791.168000pt;}
._1d{width:800.042667pt;}
._1e{width:824.066133pt;}
.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;}
.y37{bottom:63.299600pt;}
.y38{bottom:66.702267pt;}
.y75{bottom:100.514400pt;}
.y65{bottom:100.514533pt;}
.yd{bottom:104.182267pt;}
.yc6{bottom:107.107733pt;}
.yca{bottom:107.111867pt;}
.yc{bottom:116.979067pt;}
.ye0{bottom:119.175867pt;}
.y74{bottom:119.181067pt;}
.y64{bottom:119.181200pt;}
.yc5{bottom:124.711733pt;}
.yb9{bottom:128.993600pt;}
.yb{bottom:129.775867pt;}
.y10e{bottom:137.602533pt;}
.y73{bottom:137.847733pt;}
.y63{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.ya{bottom:142.575867pt;}
.yb8{bottom:146.597600pt;}
.y10d{bottom:156.274533pt;}
.y72{bottom:156.514400pt;}
.y62{bottom:156.514533pt;}
.y28{bottom:160.188933pt;}
.ydf{bottom:169.280933pt;}
.y10c{bottom:174.946533pt;}
.y71{bottom:175.181067pt;}
.y61{bottom:175.181200pt;}
.y27{bottom:178.855600pt;}
.y34{bottom:180.838133pt;}
.y10b{bottom:193.618533pt;}
.y70{bottom:193.847733pt;}
.y60{bottom:193.847867pt;}
.y33{bottom:196.834133pt;}
.y26{bottom:197.522267pt;}
.y10a{bottom:212.290533pt;}
.y6f{bottom:212.514400pt;}
.y5f{bottom:212.514533pt;}
.y32{bottom:212.830133pt;}
.y25{bottom:216.188933pt;}
.y31{bottom:228.826133pt;}
.y109{bottom:230.962533pt;}
.y6e{bottom:231.181067pt;}
.y5e{bottom:231.181200pt;}
.y24{bottom:234.855600pt;}
.yde{bottom:236.026133pt;}
.y30{bottom:244.822133pt;}
.y108{bottom:249.634533pt;}
.y6d{bottom:249.847733pt;}
.y5d{bottom:249.847867pt;}
.y23{bottom:253.522267pt;}
.y2f{bottom:260.818133pt;}
.y107{bottom:268.306533pt;}
.ydd{bottom:268.509200pt;}
.y6c{bottom:268.514400pt;}
.y5c{bottom:268.514533pt;}
.y22{bottom:272.188933pt;}
.y2e{bottom:276.814133pt;}
.y106{bottom:286.978533pt;}
.ydc{bottom:287.175867pt;}
.y6b{bottom:287.181067pt;}
.y5b{bottom:287.181200pt;}
.y21{bottom:290.855600pt;}
.y105{bottom:305.650533pt;}
.ydb{bottom:305.842533pt;}
.y6a{bottom:305.847733pt;}
.y5a{bottom:305.847867pt;}
.y2d{bottom:307.930133pt;}
.y20{bottom:309.522267pt;}
.y2c{bottom:323.930133pt;}
.y104{bottom:324.322533pt;}
.yda{bottom:324.509200pt;}
.y69{bottom:324.514400pt;}
.y59{bottom:324.514533pt;}
.y1f{bottom:328.188933pt;}
.y2b{bottom:339.930133pt;}
.y103{bottom:342.994533pt;}
.yd9{bottom:343.175867pt;}
.y68{bottom:343.181067pt;}
.y58{bottom:343.181200pt;}
.y1e{bottom:346.855600pt;}
.y2a{bottom:355.930133pt;}
.y102{bottom:361.666533pt;}
.yd8{bottom:361.842533pt;}
.y67{bottom:361.847733pt;}
.yb5{bottom:361.847867pt;}
.y1d{bottom:365.522267pt;}
.y57{bottom:374.614267pt;}
.y101{bottom:380.338533pt;}
.yd7{bottom:380.509200pt;}
.y66{bottom:380.514400pt;}
.yb4{bottom:380.514533pt;}
.y1c{bottom:384.188933pt;}
.y100{bottom:399.010533pt;}
.yae{bottom:399.181067pt;}
.yb3{bottom:399.181200pt;}
.y1b{bottom:402.855600pt;}
.yff{bottom:417.682533pt;}
.yad{bottom:417.847733pt;}
.y56{bottom:417.847867pt;}
.y1a{bottom:421.522267pt;}
.yd6{bottom:422.692800pt;}
.y90{bottom:430.523733pt;}
.yfe{bottom:436.354533pt;}
.yac{bottom:436.514400pt;}
.y55{bottom:436.514533pt;}
.y8f{bottom:450.619733pt;}
.y19{bottom:452.092800pt;}
.yfd{bottom:455.026533pt;}
.yd5{bottom:455.165200pt;}
.yab{bottom:455.181067pt;}
.y54{bottom:455.181200pt;}
.y8e{bottom:470.715733pt;}
.yfc{bottom:473.698533pt;}
.yd4{bottom:473.837200pt;}
.yaa{bottom:473.847733pt;}
.y53{bottom:473.847867pt;}
.y8d{bottom:490.811733pt;}
.yfb{bottom:492.370533pt;}
.yd3{bottom:492.509200pt;}
.ya9{bottom:492.514400pt;}
.y52{bottom:492.514533pt;}
.yb2{bottom:505.280933pt;}
.yc9{bottom:507.897600pt;}
.y8c{bottom:510.907733pt;}
.yfa{bottom:511.042533pt;}
.ya8{bottom:511.181067pt;}
.y51{bottom:511.181200pt;}
.y18{bottom:516.113733pt;}
.yc8{bottom:525.501600pt;}
.yf9{bottom:529.714533pt;}
.ya7{bottom:529.847733pt;}
.y50{bottom:529.847867pt;}
.y8b{bottom:531.003733pt;}
.yd2{bottom:534.692800pt;}
.yc7{bottom:543.105600pt;}
.yf8{bottom:548.386533pt;}
.ya6{bottom:548.514400pt;}
.y4f{bottom:548.514533pt;}
.y8a{bottom:551.099733pt;}
.y17{bottom:552.583467pt;}
.yf7{bottom:567.058533pt;}
.yd1{bottom:567.175867pt;}
.yb1{bottom:567.181200pt;}
.y16{bottom:570.187467pt;}
.y89{bottom:571.195733pt;}
.y4e{bottom:579.123200pt;}
.ya5{bottom:579.947467pt;}
.yf6{bottom:585.730533pt;}
.yb0{bottom:585.847867pt;}
.y15{bottom:587.791467pt;}
.y88{bottom:591.291733pt;}
.yf5{bottom:604.402533pt;}
.yaf{bottom:604.514533pt;}
.y14{bottom:605.395467pt;}
.y4d{bottom:607.832133pt;}
.yd0{bottom:609.359467pt;}
.y87{bottom:611.387733pt;}
.y13{bottom:622.999467pt;}
.yf4{bottom:623.074533pt;}
.ya4{bottom:623.181067pt;}
.ybb{bottom:623.181200pt;}
.y86{bottom:631.483733pt;}
.y12{bottom:640.603467pt;}
.yf3{bottom:641.746533pt;}
.ya3{bottom:641.847733pt;}
.yba{bottom:641.847867pt;}
.yb7{bottom:651.001867pt;}
.y85{bottom:651.579733pt;}
.y11{bottom:658.207467pt;}
.yf2{bottom:660.418533pt;}
.ya2{bottom:660.514400pt;}
.y4c{bottom:660.514533pt;}
.ycf{bottom:665.359467pt;}
.yb6{bottom:668.605867pt;}
.y10{bottom:675.811467pt;}
.y84{bottom:678.674800pt;}
.yf1{bottom:679.090533pt;}
.ya1{bottom:679.181067pt;}
.y4b{bottom:679.181200pt;}
.yf0{bottom:697.762533pt;}
.ya0{bottom:697.847733pt;}
.y4a{bottom:697.847867pt;}
.yf{bottom:703.453600pt;}
.yef{bottom:716.434533pt;}
.y9f{bottom:716.514400pt;}
.y49{bottom:716.514533pt;}
.yce{bottom:721.359333pt;}
.y83{bottom:726.671200pt;}
.yee{bottom:735.106533pt;}
.y9e{bottom:735.181067pt;}
.y48{bottom:735.181200pt;}
.y82{bottom:746.767200pt;}
.yed{bottom:753.778533pt;}
.y9d{bottom:753.847733pt;}
.y47{bottom:753.847867pt;}
.y81{bottom:766.863200pt;}
.yec{bottom:772.450533pt;}
.y9c{bottom:772.514400pt;}
.y46{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.ycd{bottom:777.721867pt;}
.y80{bottom:786.959200pt;}
.y8{bottom:789.926133pt;}
.yeb{bottom:791.122533pt;}
.y9b{bottom:791.181067pt;}
.y45{bottom:791.181200pt;}
.yc4{bottom:800.676533pt;}
.ycc{bottom:803.947600pt;}
.y7{bottom:805.926133pt;}
.y7f{bottom:807.055200pt;}
.yea{bottom:809.794533pt;}
.y9a{bottom:809.847733pt;}
.y44{bottom:809.847867pt;}
.yc3{bottom:814.009867pt;}
.y6{bottom:821.926133pt;}
.y7e{bottom:827.151200pt;}
.ye9{bottom:828.466533pt;}
.y99{bottom:828.514400pt;}
.y43{bottom:828.514533pt;}
.yc2{bottom:834.105867pt;}
.ye8{bottom:847.138533pt;}
.y98{bottom:847.181067pt;}
.y42{bottom:847.181200pt;}
.y7d{bottom:847.247200pt;}
.yc1{bottom:847.439200pt;}
.y5{bottom:853.044267pt;}
.ye7{bottom:865.810533pt;}
.y97{bottom:865.847733pt;}
.y41{bottom:865.847867pt;}
.y7c{bottom:867.343200pt;}
.yc0{bottom:867.535200pt;}
.y4{bottom:870.644267pt;}
.ybf{bottom:880.868533pt;}
.ye6{bottom:884.482533pt;}
.y96{bottom:884.514400pt;}
.y40{bottom:884.514533pt;}
.y7b{bottom:887.439200pt;}
.ybe{bottom:894.201867pt;}
.ye5{bottom:903.154533pt;}
.y95{bottom:903.181067pt;}
.y3f{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y7a{bottom:907.535200pt;}
.ybd{bottom:914.297867pt;}
.ycb{bottom:915.947600pt;}
.ye4{bottom:921.826533pt;}
.y94{bottom:921.847733pt;}
.y3e{bottom:921.847867pt;}
.y79{bottom:927.631200pt;}
.y2{bottom:932.695600pt;}
.ybc{bottom:934.393867pt;}
.ye3{bottom:940.498533pt;}
.y93{bottom:940.514400pt;}
.y3d{bottom:940.514533pt;}
.y78{bottom:947.727200pt;}
.ye2{bottom:959.170533pt;}
.y3c{bottom:959.181200pt;}
.y77{bottom:967.823200pt;}
.y92{bottom:970.692667pt;}
.ye1{bottom:977.842533pt;}
.y3b{bottom:977.847867pt;}
.ye{bottom:986.502667pt;}
.y76{bottom:994.918133pt;}
.y3a{bottom:996.514533pt;}
.y91{bottom:999.401467pt;}
.y36{bottom:1030.390667pt;}
.y35{bottom:1047.724000pt;}
.y39{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h11{height:33.979167pt;}
.he{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:38.226562pt;}
.hd{height:38.273438pt;}
.ha{height:38.507812pt;}
.h16{height:38.529146pt;}
.h12{height:42.083333pt;}
.h9{height:42.473958pt;}
.hc{height:42.786458pt;}
.h13{height:43.750000pt;}
.h14{height:44.601562pt;}
.h10{height:46.291667pt;}
.h15{height:46.721354pt;}
.h4{height:47.065104pt;}
.hf{height:50.500000pt;}
.hb{height:50.968750pt;}
.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.877867pt;}
.xc{left:95.174800pt;}
.xd{left:96.253733pt;}
.xf{left:99.770133pt;}
.x7{left:106.559067pt;}
.x8{left:108.473333pt;}
.x9{left:110.313733pt;}
.x11{left:134.564800pt;}
.xe{left:189.828800pt;}
.x10{left:191.718667pt;}
.x14{left:229.242133pt;}
.x13{left:235.706133pt;}
.x19{left:249.018133pt;}
.x5{left:266.834667pt;}
.x6{left:281.954667pt;}
.x4{left:352.045067pt;}
.x16{left:392.580800pt;}
.x15{left:401.722133pt;}
.x1b{left:413.434133pt;}
.x1a{left:437.551467pt;}
.x12{left:560.047467pt;}
.xb{left:574.128133pt;}
.x1c{left:583.514133pt;}
.x17{left:587.375467pt;}
.xa{left:603.365467pt;}
.x18{left:605.359467pt;}
.x1{left:717.405733pt;}
}




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