
    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_5b615dda692cd72245074cf8.woff2')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_c516ca33c3bc3d4ff2a83175.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_ab534a2f1a45a01e4d30fcbe.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c805e9f00847f4096b7c6361.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.973633;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_96e622fb1d410b68e56aed0b.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_4a6bd28fa0a051ffa335ee9b.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_e3b053ce4276b847d8198eab.woff2')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_78477ca1cd8d8847facf66e9.woff2')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_03a5448119f11471ca3906c3.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.131836;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_6790437aca595002f2dac769.woff2')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_1a49daf8553e5e4d7068623a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.953125;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_bb8f363366c66a0fd01f2c88.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.976113;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_4c4cfc8d71d238f15b608283.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.964376;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_0324d1dc198b39912a8aa68a.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;}
.v2{vertical-align:30.000000px;}
.ls2e{letter-spacing:-7.830000px;}
.ls1d{letter-spacing:-7.614000px;}
.ls2b{letter-spacing:-7.236000px;}
.ls2d{letter-spacing:-3.834000px;}
.ls1c{letter-spacing:-3.618000px;}
.ls1f{letter-spacing:-3.240000px;}
.ls43{letter-spacing:-1.740000px;}
.ls45{letter-spacing:-1.320000px;}
.ls8{letter-spacing:-1.200000px;}
.ls46{letter-spacing:-1.140000px;}
.lsf{letter-spacing:-1.020000px;}
.ls11{letter-spacing:-0.960000px;}
.ls9{letter-spacing:-0.918000px;}
.ls17{letter-spacing:-0.900000px;}
.ls19{letter-spacing:-0.840000px;}
.ls40{letter-spacing:-0.780000px;}
.ls47{letter-spacing:-0.702000px;}
.ls7{letter-spacing:-0.691200px;}
.ls44{letter-spacing:-0.660000px;}
.ls13{letter-spacing:-0.648000px;}
.ls2c{letter-spacing:-0.594000px;}
.ls14{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.528000px;}
.ls3a{letter-spacing:-0.480000px;}
.ls6{letter-spacing:-0.408000px;}
.ls1b{letter-spacing:-0.378000px;}
.ls42{letter-spacing:-0.360000px;}
.ls48{letter-spacing:-0.324000px;}
.ls23{letter-spacing:-0.300000px;}
.ls10{letter-spacing:-0.240000px;}
.ls3d{letter-spacing:-0.180000px;}
.ls27{letter-spacing:-0.060000px;}
.ls5{letter-spacing:0.000000px;}
.ls24{letter-spacing:0.002400px;}
.ls2{letter-spacing:0.012000px;}
.ls39{letter-spacing:0.013200px;}
.ls22{letter-spacing:0.013800px;}
.ls3{letter-spacing:0.017400px;}
.ls3c{letter-spacing:0.018600px;}
.ls15{letter-spacing:0.019200px;}
.ls25{letter-spacing:0.020400px;}
.ls26{letter-spacing:0.021000px;}
.ls4{letter-spacing:0.025800px;}
.ls41{letter-spacing:0.405000px;}
.ls20{letter-spacing:0.695400px;}
.ls2f{letter-spacing:0.696600px;}
.ls2a{letter-spacing:0.882000px;}
.ls37{letter-spacing:1.810800px;}
.ls28{letter-spacing:1.830600px;}
.ls3f{letter-spacing:1.894200px;}
.ls34{letter-spacing:2.041800px;}
.ls3b{letter-spacing:2.200200px;}
.ls32{letter-spacing:2.843400px;}
.ls1e{letter-spacing:2.955600px;}
.ls35{letter-spacing:3.072000px;}
.ls36{letter-spacing:3.118200px;}
.ls33{letter-spacing:3.381600px;}
.ls1a{letter-spacing:4.809600px;}
.ls31{letter-spacing:5.212200px;}
.ls30{letter-spacing:5.305800px;}
.ls21{letter-spacing:5.425200px;}
.ls38{letter-spacing:5.425800px;}
.ls3e{letter-spacing:5.532600px;}
.ls18{letter-spacing:6.993000px;}
.ls29{letter-spacing:8.358000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.lsd{letter-spacing:286.438800px;}
.lse{letter-spacing:304.329000px;}
.lsc{letter-spacing:308.563800px;}
.lsb{letter-spacing:313.825800px;}
.lsa{letter-spacing:328.661400px;}
.ls16{letter-spacing:447.173400px;}
.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;}
}
.ws0{word-spacing:-24.786000px;}
.ws5{word-spacing:-17.928000px;}
.ws10f{word-spacing:-16.434000px;}
.wse2{word-spacing:-16.302000px;}
.ws3{word-spacing:-14.940000px;}
.ws44{word-spacing:-14.880000px;}
.ws45{word-spacing:-14.820000px;}
.ws8c{word-spacing:-14.760000px;}
.ws6{word-spacing:-14.700000px;}
.ws72{word-spacing:-14.640000px;}
.wsc7{word-spacing:-14.520000px;}
.ws8b{word-spacing:-14.460000px;}
.ws73{word-spacing:-14.400000px;}
.wse1{word-spacing:-14.280000px;}
.wsff{word-spacing:-14.220000px;}
.ws43{word-spacing:-13.980000px;}
.ws4f{word-spacing:-13.680000px;}
.ws50{word-spacing:-13.620000px;}
.wsfe{word-spacing:-13.560000px;}
.ws7{word-spacing:-13.500000px;}
.ws5e{word-spacing:-13.446000px;}
.wsef{word-spacing:-13.440000px;}
.ws36{word-spacing:-13.392000px;}
.wsf9{word-spacing:-13.380000px;}
.ws4{word-spacing:-13.230000px;}
.wse0{word-spacing:-13.080000px;}
.ws5f{word-spacing:-13.068000px;}
.ws112{word-spacing:-13.014000px;}
.ws38{word-spacing:-12.852000px;}
.ws37{word-spacing:-12.690000px;}
.wsc{word-spacing:-12.150000px;}
.ws8d{word-spacing:-11.952000px;}
.ws46{word-spacing:-11.904000px;}
.ws8{word-spacing:-11.772000px;}
.wsf8{word-spacing:-11.760000px;}
.wsa{word-spacing:-11.232000px;}
.ws101{word-spacing:-10.980000px;}
.ws1{word-spacing:-10.896000px;}
.ws9{word-spacing:-10.854000px;}
.ws2d{word-spacing:-10.800000px;}
.wsf3{word-spacing:-10.500000px;}
.wsd{word-spacing:-10.464000px;}
.ws67{word-spacing:-10.206000px;}
.ws60{word-spacing:-9.828000px;}
.wsa4{word-spacing:-9.612000px;}
.ws100{word-spacing:-9.600000px;}
.ws2{word-spacing:-9.417600px;}
.wsf7{word-spacing:-9.120000px;}
.wsfa{word-spacing:-8.820000px;}
.wsf4{word-spacing:-7.920000px;}
.wsfb{word-spacing:-7.440000px;}
.wsf1{word-spacing:-7.080000px;}
.wsa2{word-spacing:-6.210000px;}
.wsf0{word-spacing:-6.120000px;}
.ws39{word-spacing:-5.994000px;}
.ws61{word-spacing:-5.832000px;}
.wsa5{word-spacing:-5.616000px;}
.wsda{word-spacing:-5.580000px;}
.ws103{word-spacing:-5.460000px;}
.ws104{word-spacing:-5.400000px;}
.ws5d{word-spacing:-5.340000px;}
.ws52{word-spacing:-5.280000px;}
.ws53{word-spacing:-5.220000px;}
.ws54{word-spacing:-4.800000px;}
.wsfd{word-spacing:-4.320000px;}
.ws98{word-spacing:-4.020000px;}
.wsee{word-spacing:-3.900000px;}
.ws68{word-spacing:-3.840000px;}
.wsd3{word-spacing:-3.300000px;}
.wsf6{word-spacing:-3.180000px;}
.wsd0{word-spacing:-3.060000px;}
.ws29{word-spacing:-3.000000px;}
.wsf2{word-spacing:-2.940000px;}
.wsbe{word-spacing:-2.880000px;}
.ws7f{word-spacing:-2.820000px;}
.wsbf{word-spacing:-2.760000px;}
.wsec{word-spacing:-2.700000px;}
.ws92{word-spacing:-2.640000px;}
.ws3b{word-spacing:-2.592000px;}
.ws20{word-spacing:-2.580000px;}
.ws90{word-spacing:-2.520000px;}
.ws5b{word-spacing:-2.460000px;}
.wseb{word-spacing:-2.400000px;}
.wsea{word-spacing:-2.340000px;}
.wsdb{word-spacing:-2.280000px;}
.ws78{word-spacing:-2.220000px;}
.ws77{word-spacing:-2.160000px;}
.ws15{word-spacing:-2.106000px;}
.ws107{word-spacing:-2.100000px;}
.ws14{word-spacing:-2.052000px;}
.wsd2{word-spacing:-2.040000px;}
.ws64{word-spacing:-1.998000px;}
.ws102{word-spacing:-1.980000px;}
.ws83{word-spacing:-1.920000px;}
.ws66{word-spacing:-1.890000px;}
.ws5c{word-spacing:-1.860000px;}
.ws1c{word-spacing:-1.836000px;}
.ws57{word-spacing:-1.800000px;}
.wsce{word-spacing:-1.740000px;}
.ws6b{word-spacing:-1.680000px;}
.ws6c{word-spacing:-1.620000px;}
.wsd8{word-spacing:-1.404000px;}
.wsb3{word-spacing:-1.380000px;}
.ws8f{word-spacing:-1.320000px;}
.wsca{word-spacing:-1.260000px;}
.wsf{word-spacing:-1.254000px;}
.wsa1{word-spacing:-1.242000px;}
.ws19{word-spacing:-1.188000px;}
.ws7b{word-spacing:-1.080000px;}
.ws110{word-spacing:-1.026000px;}
.ws10c{word-spacing:-1.020000px;}
.wsdd{word-spacing:-0.960000px;}
.wse3{word-spacing:-0.840000px;}
.ws7d{word-spacing:-0.780000px;}
.wsa3{word-spacing:-0.756000px;}
.wsc8{word-spacing:-0.720000px;}
.wsf5{word-spacing:-0.660000px;}
.wscd{word-spacing:-0.600000px;}
.ws16{word-spacing:-0.486000px;}
.wscc{word-spacing:-0.480000px;}
.ws97{word-spacing:-0.420000px;}
.ws3a{word-spacing:-0.324000px;}
.ws69{word-spacing:-0.300000px;}
.wsbb{word-spacing:-0.240000px;}
.ws10{word-spacing:-0.216000px;}
.wsaf{word-spacing:-0.180000px;}
.ws18{word-spacing:-0.162000px;}
.wsd1{word-spacing:-0.120000px;}
.ws3f{word-spacing:-0.108000px;}
.wsb{word-spacing:-0.054000px;}
.ws2e{word-spacing:-0.048000px;}
.wse{word-spacing:0.000000px;}
.ws93{word-spacing:0.060000px;}
.ws79{word-spacing:0.120000px;}
.wsd9{word-spacing:0.162000px;}
.wsc1{word-spacing:0.180000px;}
.ws34{word-spacing:0.240000px;}
.ws94{word-spacing:0.270000px;}
.ws7c{word-spacing:0.300000px;}
.ws113{word-spacing:0.324000px;}
.ws6a{word-spacing:0.360000px;}
.ws65{word-spacing:0.378000px;}
.ws10b{word-spacing:0.420000px;}
.wsae{word-spacing:0.480000px;}
.ws35{word-spacing:0.528000px;}
.ws3e{word-spacing:0.540000px;}
.wsa8{word-spacing:0.594000px;}
.ws1b{word-spacing:0.648000px;}
.wse7{word-spacing:0.660000px;}
.ws11{word-spacing:0.691200px;}
.ws71{word-spacing:0.702000px;}
.ws3d{word-spacing:0.756000px;}
.ws9b{word-spacing:0.780000px;}
.wsaa{word-spacing:0.810000px;}
.ws30{word-spacing:0.840000px;}
.ws48{word-spacing:0.900000px;}
.ws2c{word-spacing:0.918000px;}
.ws28{word-spacing:0.960000px;}
.ws1e{word-spacing:1.020000px;}
.wsc3{word-spacing:1.080000px;}
.wsb9{word-spacing:1.140000px;}
.ws25{word-spacing:1.200000px;}
.wsa6{word-spacing:1.260000px;}
.wsdf{word-spacing:1.296000px;}
.wsfc{word-spacing:1.320000px;}
.wse5{word-spacing:1.500000px;}
.wsb8{word-spacing:1.560000px;}
.ws8e{word-spacing:1.620000px;}
.ws1a{word-spacing:1.674000px;}
.ws88{word-spacing:1.680000px;}
.ws55{word-spacing:1.740000px;}
.wsc0{word-spacing:1.800000px;}
.ws9a{word-spacing:1.836000px;}
.ws10e{word-spacing:1.860000px;}
.ws99{word-spacing:1.890000px;}
.ws74{word-spacing:1.920000px;}
.wsde{word-spacing:1.944000px;}
.ws59{word-spacing:1.980000px;}
.wsbc{word-spacing:2.040000px;}
.ws40{word-spacing:2.052000px;}
.ws10a{word-spacing:2.100000px;}
.wsc9{word-spacing:2.220000px;}
.ws106{word-spacing:2.340000px;}
.ws114{word-spacing:2.376000px;}
.ws91{word-spacing:2.400000px;}
.ws9e{word-spacing:2.520000px;}
.ws1d{word-spacing:2.538000px;}
.ws105{word-spacing:2.640000px;}
.ws4e{word-spacing:2.700000px;}
.ws51{word-spacing:2.760000px;}
.ws80{word-spacing:2.880000px;}
.ws85{word-spacing:2.940000px;}
.ws3c{word-spacing:2.970000px;}
.ws6d{word-spacing:3.024000px;}
.ws4b{word-spacing:3.060000px;}
.ws4c{word-spacing:3.120000px;}
.ws17{word-spacing:3.132000px;}
.ws9d{word-spacing:3.240000px;}
.wsdc{word-spacing:3.300000px;}
.wsa9{word-spacing:3.348000px;}
.wsba{word-spacing:3.360000px;}
.ws2f{word-spacing:3.420000px;}
.wsa0{word-spacing:3.480000px;}
.ws7e{word-spacing:3.540000px;}
.ws42{word-spacing:3.564000px;}
.wse6{word-spacing:3.600000px;}
.ws6e{word-spacing:3.618000px;}
.wsc2{word-spacing:3.720000px;}
.wsed{word-spacing:3.780000px;}
.wsb5{word-spacing:3.840000px;}
.ws32{word-spacing:3.900000px;}
.wsad{word-spacing:3.960000px;}
.ws86{word-spacing:4.020000px;}
.wsab{word-spacing:4.104000px;}
.ws7a{word-spacing:4.140000px;}
.wse9{word-spacing:4.320000px;}
.wsb2{word-spacing:4.380000px;}
.ws10d{word-spacing:4.560000px;}
.ws63{word-spacing:4.806000px;}
.ws62{word-spacing:4.860000px;}
.ws2b{word-spacing:4.920000px;}
.ws2a{word-spacing:4.980000px;}
.ws87{word-spacing:5.040000px;}
.ws115{word-spacing:5.076000px;}
.ws13{word-spacing:5.130000px;}
.wsb1{word-spacing:5.184000px;}
.wsac{word-spacing:5.280000px;}
.wsb0{word-spacing:5.292000px;}
.ws31{word-spacing:5.340000px;}
.ws75{word-spacing:5.460000px;}
.wsd6{word-spacing:5.508000px;}
.wsd7{word-spacing:5.562000px;}
.wsd5{word-spacing:5.616000px;}
.wsb7{word-spacing:5.700000px;}
.wsb6{word-spacing:5.820000px;}
.ws9c{word-spacing:5.880000px;}
.wsbd{word-spacing:5.940000px;}
.ws58{word-spacing:6.060000px;}
.wsb4{word-spacing:6.180000px;}
.wsa7{word-spacing:6.360000px;}
.wsc4{word-spacing:6.420000px;}
.wsd4{word-spacing:6.660000px;}
.ws41{word-spacing:6.858000px;}
.ws33{word-spacing:6.900000px;}
.ws24{word-spacing:6.960000px;}
.ws23{word-spacing:7.020000px;}
.ws95{word-spacing:7.074000px;}
.ws84{word-spacing:7.080000px;}
.ws1f{word-spacing:7.140000px;}
.wse4{word-spacing:7.260000px;}
.ws81{word-spacing:7.500000px;}
.ws82{word-spacing:7.560000px;}
.wsc6{word-spacing:7.860000px;}
.wsc5{word-spacing:7.920000px;}
.ws27{word-spacing:7.980000px;}
.wscb{word-spacing:8.040000px;}
.ws26{word-spacing:8.100000px;}
.ws4d{word-spacing:8.160000px;}
.ws5a{word-spacing:8.280000px;}
.ws12{word-spacing:8.316000px;}
.ws96{word-spacing:8.400000px;}
.ws9f{word-spacing:8.460000px;}
.ws76{word-spacing:8.760000px;}
.wscf{word-spacing:8.940000px;}
.ws56{word-spacing:9.060000px;}
.ws70{word-spacing:10.080000px;}
.ws8a{word-spacing:10.260000px;}
.ws89{word-spacing:10.380000px;}
.ws111{word-spacing:10.422000px;}
.ws22{word-spacing:10.560000px;}
.ws21{word-spacing:10.680000px;}
.wse8{word-spacing:10.740000px;}
.ws109{word-spacing:10.920000px;}
.ws108{word-spacing:11.040000px;}
.ws6f{word-spacing:11.580000px;}
.ws4a{word-spacing:18.960000px;}
.ws49{word-spacing:19.200000px;}
.ws47{word-spacing:82.637400px;}
._c{margin-left:-10.200600px;}
._0{margin-left:-9.067800px;}
._4e{margin-left:-8.040600px;}
._26{margin-left:-6.783000px;}
._b{margin-left:-5.171400px;}
._3{margin-left:-4.055400px;}
._4{margin-left:-2.778600px;}
._1{margin-left:-1.499400px;}
._2{width:1.144800px;}
._8{width:2.386200px;}
._e{width:3.631800px;}
._a{width:5.166000px;}
._d{width:6.246000px;}
._6{width:7.469400px;}
._7{width:9.065400px;}
._9{width:10.080000px;}
._2a{width:11.123400px;}
._27{width:12.193200px;}
._29{width:13.623600px;}
._5e{width:14.993400px;}
._5b{width:18.467400px;}
._28{width:19.613400px;}
._63{width:22.642200px;}
._50{width:23.873400px;}
._4f{width:25.578600px;}
._5{width:36.624000px;}
._61{width:42.651000px;}
._62{width:44.914800px;}
._4d{width:50.070000px;}
._36{width:53.257200px;}
._5f{width:56.400000px;}
._35{width:57.687600px;}
._60{width:62.880000px;}
._57{width:80.226600px;}
._5d{width:81.840000px;}
._5c{width:87.480000px;}
._38{width:97.893000px;}
._42{width:101.420400px;}
._3e{width:103.869600px;}
._34{width:105.625200px;}
._4c{width:116.433000px;}
._1f{width:122.512200px;}
._3c{width:125.819400px;}
._37{width:127.402200px;}
._13{width:132.551400px;}
._4a{width:135.333000px;}
._2d{width:137.610600px;}
._3a{width:143.478600px;}
._40{width:145.026000px;}
._45{width:166.397400px;}
._39{width:171.194400px;}
._43{width:176.253000px;}
._3f{width:178.096200px;}
._2f{width:182.702400px;}
._2b{width:188.114400px;}
._32{width:191.538600px;}
._46{width:192.784200px;}
._31{width:196.560000px;}
._3d{width:199.289400px;}
._47{width:206.848200px;}
._3b{width:216.808800px;}
._41{width:219.245400px;}
._4b{width:234.141000px;}
._30{width:256.005000px;}
._48{width:258.033000px;}
._2e{width:260.445000px;}
._33{width:265.450800px;}
._20{width:273.618600px;}
._10{width:277.459800px;}
._5a{width:280.584000px;}
._56{width:282.984000px;}
._58{width:296.087400px;}
._54{width:297.591600px;}
._51{width:299.992200px;}
._52{width:313.095600px;}
._12{width:333.105000px;}
._15{width:343.547400px;}
._11{width:352.247400px;}
._2c{width:358.864800px;}
._19{width:362.998800px;}
._49{width:367.926000px;}
._21{width:371.317800px;}
._59{width:373.091400px;}
._55{width:376.359600px;}
._1c{width:386.294400px;}
._53{width:390.087600px;}
._44{width:398.599800px;}
._16{width:413.692800px;}
._14{width:470.565600px;}
._24{width:507.478200px;}
._f{width:544.408800px;}
._18{width:547.018200px;}
._1a{width:553.746000px;}
._23{width:575.350200px;}
._1d{width:589.114200px;}
._25{width:597.100200px;}
._17{width:630.501600px;}
._1e{width:635.973600px;}
._22{width:674.349600px;}
._1b{width:695.538000px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{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;}
.y3d{bottom:71.212050px;}
.y3e{bottom:75.036150px;}
.y50{bottom:113.078700px;}
.yc2{bottom:113.078850px;}
.y2b{bottom:117.212550px;}
.yb{bottom:117.875550px;}
.yf9{bottom:120.500850px;}
.ya{bottom:132.275550px;}
.y4f{bottom:134.078700px;}
.yc1{bottom:134.078850px;}
.y2a{bottom:138.212550px;}
.yf8{bottom:140.300850px;}
.yc7{bottom:144.028350px;}
.y9{bottom:146.675550px;}
.y4e{bottom:155.078700px;}
.yc0{bottom:155.078850px;}
.y29{bottom:159.212550px;}
.yf7{bottom:160.100850px;}
.y8{bottom:161.075550px;}
.yc6{bottom:163.828350px;}
.ya1{bottom:168.513600px;}
.ycd{bottom:176.078700px;}
.ybf{bottom:176.078850px;}
.yf6{bottom:179.900850px;}
.y28{bottom:180.212550px;}
.yc5{bottom:183.628350px;}
.y4d{bottom:190.440900px;}
.ycc{bottom:197.078700px;}
.y9c{bottom:197.078850px;}
.y3a{bottom:199.392600px;}
.yf5{bottom:199.700850px;}
.ya0{bottom:200.811000px;}
.y27{bottom:201.212550px;}
.y114{bottom:211.441050px;}
.y39{bottom:217.392600px;}
.ycb{bottom:218.078700px;}
.y9b{bottom:218.078850px;}
.yfd{bottom:220.937250px;}
.y26{bottom:222.212550px;}
.y38{bottom:235.392600px;}
.y4c{bottom:239.078700px;}
.y9a{bottom:239.078850px;}
.y10c{bottom:240.210150px;}
.yfc{bottom:240.737250px;}
.y25{bottom:243.212550px;}
.yd3{bottom:244.774800px;}
.y37{bottom:253.392600px;}
.y10b{bottom:260.010150px;}
.y4b{bottom:260.078700px;}
.y99{bottom:260.078850px;}
.yfb{bottom:260.537250px;}
.y24{bottom:264.212550px;}
.yd2{bottom:264.574800px;}
.y36{bottom:271.392600px;}
.y122{bottom:274.440900px;}
.y118{bottom:274.441050px;}
.yfa{bottom:280.337250px;}
.y4a{bottom:281.078700px;}
.y98{bottom:281.078850px;}
.yd1{bottom:284.374800px;}
.y23{bottom:285.212550px;}
.y35{bottom:289.392600px;}
.y49{bottom:302.078700px;}
.y97{bottom:302.078850px;}
.y22{bottom:306.212550px;}
.y34{bottom:307.392600px;}
.y48{bottom:323.078700px;}
.y96{bottom:323.078850px;}
.y33{bottom:325.392600px;}
.y21{bottom:327.212550px;}
.y47{bottom:344.078700px;}
.y95{bottom:344.078850px;}
.y20{bottom:348.212550px;}
.y32{bottom:360.400500px;}
.y46{bottom:365.078700px;}
.y94{bottom:365.078850px;}
.y1f{bottom:369.212550px;}
.y121{bottom:370.529400px;}
.y31{bottom:378.400500px;}
.y9f{bottom:386.078700px;}
.y93{bottom:386.078850px;}
.y1e{bottom:390.212550px;}
.y30{bottom:396.400500px;}
.y45{bottom:399.513450px;}
.yca{bottom:407.078700px;}
.y92{bottom:407.078850px;}
.y1d{bottom:411.212550px;}
.y9e{bottom:421.440900px;}
.yc9{bottom:428.078700px;}
.y91{bottom:428.078850px;}
.y2f{bottom:431.408400px;}
.y44{bottom:431.811000px;}
.y1c{bottom:432.212550px;}
.yc8{bottom:449.078700px;}
.y90{bottom:449.078850px;}
.y2e{bottom:449.408400px;}
.y1b{bottom:467.204250px;}
.y2d{bottom:467.408400px;}
.y9d{bottom:470.078700px;}
.y8f{bottom:470.078850px;}
.y120{bottom:475.529400px;}
.y2c{bottom:485.408400px;}
.y43{bottom:491.078700px;}
.y8e{bottom:491.078850px;}
.y42{bottom:512.078700px;}
.y8d{bottom:512.078850px;}
.yd0{bottom:519.074250px;}
.yef{bottom:521.921400px;}
.y41{bottom:533.078700px;}
.y8c{bottom:533.078850px;}
.yee{bottom:536.921400px;}
.y11f{bottom:538.529400px;}
.ycf{bottom:538.874250px;}
.y1a{bottom:539.227950px;}
.yf1{bottom:550.265550px;}
.y40{bottom:554.078700px;}
.y8b{bottom:554.078850px;}
.yed{bottom:556.126200px;}
.yce{bottom:558.674250px;}
.y19{bottom:559.027950px;}
.ybe{bottom:562.787550px;}
.yf0{bottom:570.065550px;}
.yec{bottom:571.126200px;}
.y108{bottom:575.078700px;}
.y8a{bottom:575.078850px;}
.yf4{bottom:579.512400px;}
.ybd{bottom:581.992350px;}
.yeb{bottom:590.330850px;}
.y107{bottom:596.078700px;}
.y89{bottom:596.078850px;}
.y113{bottom:599.082000px;}
.yf3{bottom:599.312400px;}
.y18{bottom:600.087750px;}
.y6f{bottom:600.587700px;}
.ybc{bottom:601.197000px;}
.yea{bottom:605.330850px;}
.y106{bottom:617.078700px;}
.y88{bottom:617.078850px;}
.y112{bottom:618.882000px;}
.yf2{bottom:619.112400px;}
.y6e{bottom:619.367100px;}
.y17{bottom:619.887750px;}
.y110{bottom:620.261400px;}
.ybb{bottom:620.401800px;}
.ye9{bottom:624.535650px;}
.y105{bottom:638.078700px;}
.y87{bottom:638.078850px;}
.y6d{bottom:638.146650px;}
.y111{bottom:638.682000px;}
.ye8{bottom:639.535650px;}
.yba{bottom:639.606450px;}
.y16{bottom:639.687750px;}
.y10f{bottom:640.061400px;}
.y6c{bottom:656.926200px;}
.ye7{bottom:658.740300px;}
.yb9{bottom:658.811250px;}
.y104{bottom:659.078700px;}
.y86{bottom:659.078850px;}
.y15{bottom:659.487750px;}
.y10e{bottom:659.861400px;}
.yc4{bottom:669.795900px;}
.y6b{bottom:671.926200px;}
.ye6{bottom:673.740300px;}
.yb8{bottom:673.811250px;}
.y14{bottom:679.287750px;}
.y10d{bottom:679.661400px;}
.y103{bottom:680.078700px;}
.y85{bottom:680.078850px;}
.y11e{bottom:685.529400px;}
.yc3{bottom:689.596050px;}
.y6a{bottom:690.705750px;}
.ye5{bottom:692.945100px;}
.yb7{bottom:693.015900px;}
.y13{bottom:699.087750px;}
.y102{bottom:701.078700px;}
.y84{bottom:701.078850px;}
.y69{bottom:705.705750px;}
.ye4{bottom:707.945100px;}
.yb6{bottom:712.220700px;}
.y12{bottom:718.887750px;}
.y101{bottom:722.078700px;}
.y83{bottom:722.078850px;}
.y68{bottom:724.485300px;}
.ye3{bottom:727.449750px;}
.yb5{bottom:731.425350px;}
.y11{bottom:738.687750px;}
.ye2{bottom:742.449750px;}
.y100{bottom:743.078700px;}
.y82{bottom:743.078850px;}
.y67{bottom:743.264850px;}
.y11d{bottom:748.529400px;}
.yb4{bottom:750.630150px;}
.y10{bottom:758.487750px;}
.y66{bottom:762.044250px;}
.yff{bottom:764.078700px;}
.y81{bottom:764.078850px;}
.yb3{bottom:769.834950px;}
.ye1{bottom:772.931700px;}
.y65{bottom:777.044250px;}
.yf{bottom:778.287750px;}
.yfe{bottom:785.078700px;}
.y80{bottom:785.078850px;}
.yb2{bottom:789.039600px;}
.ye0{bottom:792.731700px;}
.y64{bottom:795.823950px;}
.ye{bottom:798.087750px;}
.y7f{bottom:806.078850px;}
.yb1{bottom:808.244250px;}
.y63{bottom:810.823950px;}
.y11c{bottom:811.529250px;}
.y62{bottom:825.823950px;}
.y7e{bottom:827.078850px;}
.y10a{bottom:827.405700px;}
.yb0{bottom:827.449050px;}
.yd{bottom:829.185300px;}
.y61{bottom:844.603350px;}
.yaf{bottom:846.653850px;}
.y109{bottom:847.205700px;}
.y7d{bottom:848.078850px;}
.ydf{bottom:848.472600px;}
.y60{bottom:859.603350px;}
.yde{bottom:863.472600px;}
.yae{bottom:865.858500px;}
.y7c{bottom:869.078850px;}
.y5f{bottom:874.603350px;}
.y11b{bottom:874.937100px;}
.ydd{bottom:882.677400px;}
.yad{bottom:885.063150px;}
.y5e{bottom:889.603350px;}
.y7b{bottom:890.078850px;}
.ydc{bottom:897.677400px;}
.yac{bottom:904.267950px;}
.y11a{bottom:904.441050px;}
.y5d{bottom:908.382900px;}
.y7{bottom:908.466750px;}
.y7a{bottom:911.078850px;}
.ydb{bottom:916.882200px;}
.yab{bottom:923.472600px;}
.y117{bottom:924.513600px;}
.y6{bottom:926.466750px;}
.y5c{bottom:927.162450px;}
.yda{bottom:931.882200px;}
.y79{bottom:932.078850px;}
.yaa{bottom:942.677400px;}
.y5{bottom:944.466750px;}
.y5b{bottom:945.942000px;}
.yd9{bottom:951.086850px;}
.y78{bottom:953.078850px;}
.y116{bottom:956.811000px;}
.ya9{bottom:961.882200px;}
.y5a{bottom:964.721400px;}
.yd8{bottom:966.086850px;}
.y77{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.y59{bottom:979.721400px;}
.ya8{bottom:981.086850px;}
.yd7{bottom:985.291500px;}
.y58{bottom:994.721400px;}
.y76{bottom:995.078850px;}
.ya7{bottom:996.086850px;}
.yd6{bottom:1000.291500px;}
.y57{bottom:1009.721400px;}
.ya6{bottom:1015.291500px;}
.y75{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yd5{bottom:1019.496300px;}
.y56{bottom:1024.721400px;}
.ya5{bottom:1034.496300px;}
.y74{bottom:1037.078850px;}
.y55{bottom:1039.721400px;}
.y2{bottom:1049.282550px;}
.ya4{bottom:1054.001100px;}
.y54{bottom:1054.721400px;}
.y73{bottom:1058.078850px;}
.ya3{bottom:1061.501100px;}
.yd4{bottom:1069.001100px;}
.y53{bottom:1069.721400px;}
.y72{bottom:1079.078850px;}
.y52{bottom:1088.801100px;}
.ya2{bottom:1099.482900px;}
.y71{bottom:1100.078850px;}
.yc{bottom:1109.815500px;}
.y119{bottom:1113.696900px;}
.y115{bottom:1114.821900px;}
.y51{bottom:1119.282900px;}
.y70{bottom:1121.078850px;}
.y3c{bottom:1155.615300px;}
.y3b{bottom:1175.115300px;}
.y3f{bottom:1178.691750px;}
.h6{height:34.446094px;}
.h17{height:36.492188px;}
.h18{height:36.540019px;}
.h1b{height:36.563437px;}
.h2{height:38.039062px;}
.h15{height:38.226562px;}
.h12{height:38.273438px;}
.h5{height:38.531250px;}
.ha{height:41.053711px;}
.hc{height:41.107522px;}
.hb{height:42.609375px;}
.h11{height:42.793945px;}
.h7{height:43.004883px;}
.h10{height:43.057617px;}
.h16{height:43.312500px;}
.h13{height:45.615234px;}
.h1a{height:45.674994px;}
.he{height:45.675024px;}
.h1c{height:45.675036px;}
.h8{height:47.343750px;}
.h9{height:48.726562px;}
.h1d{height:50.176758px;}
.h4{height:51.231050px;}
.h14{height:52.078125px;}
.hf{height:54.140625px;}
.hd{height:56.812500px;}
.h19{height:68.226562px;}
.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;}
.xb{left:107.068950px;}
.x21{left:108.286950px;}
.xd{left:112.251900px;}
.x6{left:119.576400px;}
.x7{left:121.047600px;}
.x8{left:123.420750px;}
.x22{left:148.445550px;}
.xc{left:224.980950px;}
.x25{left:236.924400px;}
.x24{left:238.395150px;}
.x2b{left:242.782800px;}
.x29{left:246.173400px;}
.x40{left:247.302300px;}
.x27{left:250.409850px;}
.x2a{left:251.554350px;}
.x46{left:258.886350px;}
.x35{left:263.141250px;}
.x4{left:300.189000px;}
.x5{left:317.196750px;}
.x41{left:330.332100px;}
.x4b{left:334.204650px;}
.x2d{left:338.836050px;}
.x2c{left:346.643550px;}
.x47{left:348.203100px;}
.x36{left:356.707050px;}
.x48{left:363.059550px;}
.x37{left:371.563500px;}
.x1f{left:390.076050px;}
.x1d{left:392.264850px;}
.x1c{left:394.380150px;}
.x3{left:396.050700px;}
.x26{left:400.715100px;}
.x16{left:402.841050px;}
.x17{left:411.533550px;}
.x43{left:447.287850px;}
.x2f{left:453.665850px;}
.x42{left:457.661850px;}
.x38{left:459.179400px;}
.x2e{left:464.039850px;}
.x49{left:467.657850px;}
.x39{left:474.035850px;}
.x30{left:543.382350px;}
.x3b{left:548.896050px;}
.x3a{left:560.614800px;}
.xf{left:562.781550px;}
.x12{left:568.060800px;}
.x11{left:571.561800px;}
.x10{left:574.951350px;}
.xe{left:576.885000px;}
.x13{left:597.343050px;}
.x18{left:614.880150px;}
.x28{left:623.384100px;}
.x32{left:639.051600px;}
.x45{left:641.177700px;}
.x3c{left:644.565300px;}
.x31{left:647.565300px;}
.x44{left:649.691400px;}
.xa{left:652.471650px;}
.x3d{left:659.421750px;}
.x4a{left:661.547400px;}
.x9{left:672.118200px;}
.x20{left:687.118050px;}
.x14{left:691.076250px;}
.x1a{left:694.562550px;}
.x1e{left:704.295000px;}
.x19{left:705.645600px;}
.x15{left:708.226650px;}
.x1b{left:714.765750px;}
.x23{left:718.261200px;}
.x34{left:734.721000px;}
.x3e{left:740.234550px;}
.x33{left:753.224850px;}
.x3f{left:755.091000px;}
.x1{left:801.339150px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.v2{vertical-align:26.666667pt;}
.ls2e{letter-spacing:-6.960000pt;}
.ls1d{letter-spacing:-6.768000pt;}
.ls2b{letter-spacing:-6.432000pt;}
.ls2d{letter-spacing:-3.408000pt;}
.ls1c{letter-spacing:-3.216000pt;}
.ls1f{letter-spacing:-2.880000pt;}
.ls43{letter-spacing:-1.546667pt;}
.ls45{letter-spacing:-1.173333pt;}
.ls8{letter-spacing:-1.066667pt;}
.ls46{letter-spacing:-1.013333pt;}
.lsf{letter-spacing:-0.906667pt;}
.ls11{letter-spacing:-0.853333pt;}
.ls9{letter-spacing:-0.816000pt;}
.ls17{letter-spacing:-0.800000pt;}
.ls19{letter-spacing:-0.746667pt;}
.ls40{letter-spacing:-0.693333pt;}
.ls47{letter-spacing:-0.624000pt;}
.ls7{letter-spacing:-0.614400pt;}
.ls44{letter-spacing:-0.586667pt;}
.ls13{letter-spacing:-0.576000pt;}
.ls2c{letter-spacing:-0.528000pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.469333pt;}
.ls3a{letter-spacing:-0.426667pt;}
.ls6{letter-spacing:-0.362667pt;}
.ls1b{letter-spacing:-0.336000pt;}
.ls42{letter-spacing:-0.320000pt;}
.ls48{letter-spacing:-0.288000pt;}
.ls23{letter-spacing:-0.266667pt;}
.ls10{letter-spacing:-0.213333pt;}
.ls3d{letter-spacing:-0.160000pt;}
.ls27{letter-spacing:-0.053333pt;}
.ls5{letter-spacing:0.000000pt;}
.ls24{letter-spacing:0.002133pt;}
.ls2{letter-spacing:0.010667pt;}
.ls39{letter-spacing:0.011733pt;}
.ls22{letter-spacing:0.012267pt;}
.ls3{letter-spacing:0.015467pt;}
.ls3c{letter-spacing:0.016533pt;}
.ls15{letter-spacing:0.017067pt;}
.ls25{letter-spacing:0.018133pt;}
.ls26{letter-spacing:0.018667pt;}
.ls4{letter-spacing:0.022933pt;}
.ls41{letter-spacing:0.360000pt;}
.ls20{letter-spacing:0.618133pt;}
.ls2f{letter-spacing:0.619200pt;}
.ls2a{letter-spacing:0.784000pt;}
.ls37{letter-spacing:1.609600pt;}
.ls28{letter-spacing:1.627200pt;}
.ls3f{letter-spacing:1.683733pt;}
.ls34{letter-spacing:1.814933pt;}
.ls3b{letter-spacing:1.955733pt;}
.ls32{letter-spacing:2.527467pt;}
.ls1e{letter-spacing:2.627200pt;}
.ls35{letter-spacing:2.730667pt;}
.ls36{letter-spacing:2.771733pt;}
.ls33{letter-spacing:3.005867pt;}
.ls1a{letter-spacing:4.275200pt;}
.ls31{letter-spacing:4.633067pt;}
.ls30{letter-spacing:4.716267pt;}
.ls21{letter-spacing:4.822400pt;}
.ls38{letter-spacing:4.822933pt;}
.ls3e{letter-spacing:4.917867pt;}
.ls18{letter-spacing:6.216000pt;}
.ls29{letter-spacing:7.429333pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.lsd{letter-spacing:254.612267pt;}
.lse{letter-spacing:270.514667pt;}
.lsc{letter-spacing:274.278933pt;}
.lsb{letter-spacing:278.956267pt;}
.lsa{letter-spacing:292.143467pt;}
.ls16{letter-spacing:397.487467pt;}
.ws0{word-spacing:-22.032000pt;}
.ws5{word-spacing:-15.936000pt;}
.ws10f{word-spacing:-14.608000pt;}
.wse2{word-spacing:-14.490667pt;}
.ws3{word-spacing:-13.280000pt;}
.ws44{word-spacing:-13.226667pt;}
.ws45{word-spacing:-13.173333pt;}
.ws8c{word-spacing:-13.120000pt;}
.ws6{word-spacing:-13.066667pt;}
.ws72{word-spacing:-13.013333pt;}
.wsc7{word-spacing:-12.906667pt;}
.ws8b{word-spacing:-12.853333pt;}
.ws73{word-spacing:-12.800000pt;}
.wse1{word-spacing:-12.693333pt;}
.wsff{word-spacing:-12.640000pt;}
.ws43{word-spacing:-12.426667pt;}
.ws4f{word-spacing:-12.160000pt;}
.ws50{word-spacing:-12.106667pt;}
.wsfe{word-spacing:-12.053333pt;}
.ws7{word-spacing:-12.000000pt;}
.ws5e{word-spacing:-11.952000pt;}
.wsef{word-spacing:-11.946667pt;}
.ws36{word-spacing:-11.904000pt;}
.wsf9{word-spacing:-11.893333pt;}
.ws4{word-spacing:-11.760000pt;}
.wse0{word-spacing:-11.626667pt;}
.ws5f{word-spacing:-11.616000pt;}
.ws112{word-spacing:-11.568000pt;}
.ws38{word-spacing:-11.424000pt;}
.ws37{word-spacing:-11.280000pt;}
.wsc{word-spacing:-10.800000pt;}
.ws8d{word-spacing:-10.624000pt;}
.ws46{word-spacing:-10.581333pt;}
.ws8{word-spacing:-10.464000pt;}
.wsf8{word-spacing:-10.453333pt;}
.wsa{word-spacing:-9.984000pt;}
.ws101{word-spacing:-9.760000pt;}
.ws1{word-spacing:-9.685333pt;}
.ws9{word-spacing:-9.648000pt;}
.ws2d{word-spacing:-9.600000pt;}
.wsf3{word-spacing:-9.333333pt;}
.wsd{word-spacing:-9.301333pt;}
.ws67{word-spacing:-9.072000pt;}
.ws60{word-spacing:-8.736000pt;}
.wsa4{word-spacing:-8.544000pt;}
.ws100{word-spacing:-8.533333pt;}
.ws2{word-spacing:-8.371200pt;}
.wsf7{word-spacing:-8.106667pt;}
.wsfa{word-spacing:-7.840000pt;}
.wsf4{word-spacing:-7.040000pt;}
.wsfb{word-spacing:-6.613333pt;}
.wsf1{word-spacing:-6.293333pt;}
.wsa2{word-spacing:-5.520000pt;}
.wsf0{word-spacing:-5.440000pt;}
.ws39{word-spacing:-5.328000pt;}
.ws61{word-spacing:-5.184000pt;}
.wsa5{word-spacing:-4.992000pt;}
.wsda{word-spacing:-4.960000pt;}
.ws103{word-spacing:-4.853333pt;}
.ws104{word-spacing:-4.800000pt;}
.ws5d{word-spacing:-4.746667pt;}
.ws52{word-spacing:-4.693333pt;}
.ws53{word-spacing:-4.640000pt;}
.ws54{word-spacing:-4.266667pt;}
.wsfd{word-spacing:-3.840000pt;}
.ws98{word-spacing:-3.573333pt;}
.wsee{word-spacing:-3.466667pt;}
.ws68{word-spacing:-3.413333pt;}
.wsd3{word-spacing:-2.933333pt;}
.wsf6{word-spacing:-2.826667pt;}
.wsd0{word-spacing:-2.720000pt;}
.ws29{word-spacing:-2.666667pt;}
.wsf2{word-spacing:-2.613333pt;}
.wsbe{word-spacing:-2.560000pt;}
.ws7f{word-spacing:-2.506667pt;}
.wsbf{word-spacing:-2.453333pt;}
.wsec{word-spacing:-2.400000pt;}
.ws92{word-spacing:-2.346667pt;}
.ws3b{word-spacing:-2.304000pt;}
.ws20{word-spacing:-2.293333pt;}
.ws90{word-spacing:-2.240000pt;}
.ws5b{word-spacing:-2.186667pt;}
.wseb{word-spacing:-2.133333pt;}
.wsea{word-spacing:-2.080000pt;}
.wsdb{word-spacing:-2.026667pt;}
.ws78{word-spacing:-1.973333pt;}
.ws77{word-spacing:-1.920000pt;}
.ws15{word-spacing:-1.872000pt;}
.ws107{word-spacing:-1.866667pt;}
.ws14{word-spacing:-1.824000pt;}
.wsd2{word-spacing:-1.813333pt;}
.ws64{word-spacing:-1.776000pt;}
.ws102{word-spacing:-1.760000pt;}
.ws83{word-spacing:-1.706667pt;}
.ws66{word-spacing:-1.680000pt;}
.ws5c{word-spacing:-1.653333pt;}
.ws1c{word-spacing:-1.632000pt;}
.ws57{word-spacing:-1.600000pt;}
.wsce{word-spacing:-1.546667pt;}
.ws6b{word-spacing:-1.493333pt;}
.ws6c{word-spacing:-1.440000pt;}
.wsd8{word-spacing:-1.248000pt;}
.wsb3{word-spacing:-1.226667pt;}
.ws8f{word-spacing:-1.173333pt;}
.wsca{word-spacing:-1.120000pt;}
.wsf{word-spacing:-1.114667pt;}
.wsa1{word-spacing:-1.104000pt;}
.ws19{word-spacing:-1.056000pt;}
.ws7b{word-spacing:-0.960000pt;}
.ws110{word-spacing:-0.912000pt;}
.ws10c{word-spacing:-0.906667pt;}
.wsdd{word-spacing:-0.853333pt;}
.wse3{word-spacing:-0.746667pt;}
.ws7d{word-spacing:-0.693333pt;}
.wsa3{word-spacing:-0.672000pt;}
.wsc8{word-spacing:-0.640000pt;}
.wsf5{word-spacing:-0.586667pt;}
.wscd{word-spacing:-0.533333pt;}
.ws16{word-spacing:-0.432000pt;}
.wscc{word-spacing:-0.426667pt;}
.ws97{word-spacing:-0.373333pt;}
.ws3a{word-spacing:-0.288000pt;}
.ws69{word-spacing:-0.266667pt;}
.wsbb{word-spacing:-0.213333pt;}
.ws10{word-spacing:-0.192000pt;}
.wsaf{word-spacing:-0.160000pt;}
.ws18{word-spacing:-0.144000pt;}
.wsd1{word-spacing:-0.106667pt;}
.ws3f{word-spacing:-0.096000pt;}
.wsb{word-spacing:-0.048000pt;}
.ws2e{word-spacing:-0.042667pt;}
.wse{word-spacing:0.000000pt;}
.ws93{word-spacing:0.053333pt;}
.ws79{word-spacing:0.106667pt;}
.wsd9{word-spacing:0.144000pt;}
.wsc1{word-spacing:0.160000pt;}
.ws34{word-spacing:0.213333pt;}
.ws94{word-spacing:0.240000pt;}
.ws7c{word-spacing:0.266667pt;}
.ws113{word-spacing:0.288000pt;}
.ws6a{word-spacing:0.320000pt;}
.ws65{word-spacing:0.336000pt;}
.ws10b{word-spacing:0.373333pt;}
.wsae{word-spacing:0.426667pt;}
.ws35{word-spacing:0.469333pt;}
.ws3e{word-spacing:0.480000pt;}
.wsa8{word-spacing:0.528000pt;}
.ws1b{word-spacing:0.576000pt;}
.wse7{word-spacing:0.586667pt;}
.ws11{word-spacing:0.614400pt;}
.ws71{word-spacing:0.624000pt;}
.ws3d{word-spacing:0.672000pt;}
.ws9b{word-spacing:0.693333pt;}
.wsaa{word-spacing:0.720000pt;}
.ws30{word-spacing:0.746667pt;}
.ws48{word-spacing:0.800000pt;}
.ws2c{word-spacing:0.816000pt;}
.ws28{word-spacing:0.853333pt;}
.ws1e{word-spacing:0.906667pt;}
.wsc3{word-spacing:0.960000pt;}
.wsb9{word-spacing:1.013333pt;}
.ws25{word-spacing:1.066667pt;}
.wsa6{word-spacing:1.120000pt;}
.wsdf{word-spacing:1.152000pt;}
.wsfc{word-spacing:1.173333pt;}
.wse5{word-spacing:1.333333pt;}
.wsb8{word-spacing:1.386667pt;}
.ws8e{word-spacing:1.440000pt;}
.ws1a{word-spacing:1.488000pt;}
.ws88{word-spacing:1.493333pt;}
.ws55{word-spacing:1.546667pt;}
.wsc0{word-spacing:1.600000pt;}
.ws9a{word-spacing:1.632000pt;}
.ws10e{word-spacing:1.653333pt;}
.ws99{word-spacing:1.680000pt;}
.ws74{word-spacing:1.706667pt;}
.wsde{word-spacing:1.728000pt;}
.ws59{word-spacing:1.760000pt;}
.wsbc{word-spacing:1.813333pt;}
.ws40{word-spacing:1.824000pt;}
.ws10a{word-spacing:1.866667pt;}
.wsc9{word-spacing:1.973333pt;}
.ws106{word-spacing:2.080000pt;}
.ws114{word-spacing:2.112000pt;}
.ws91{word-spacing:2.133333pt;}
.ws9e{word-spacing:2.240000pt;}
.ws1d{word-spacing:2.256000pt;}
.ws105{word-spacing:2.346667pt;}
.ws4e{word-spacing:2.400000pt;}
.ws51{word-spacing:2.453333pt;}
.ws80{word-spacing:2.560000pt;}
.ws85{word-spacing:2.613333pt;}
.ws3c{word-spacing:2.640000pt;}
.ws6d{word-spacing:2.688000pt;}
.ws4b{word-spacing:2.720000pt;}
.ws4c{word-spacing:2.773333pt;}
.ws17{word-spacing:2.784000pt;}
.ws9d{word-spacing:2.880000pt;}
.wsdc{word-spacing:2.933333pt;}
.wsa9{word-spacing:2.976000pt;}
.wsba{word-spacing:2.986667pt;}
.ws2f{word-spacing:3.040000pt;}
.wsa0{word-spacing:3.093333pt;}
.ws7e{word-spacing:3.146667pt;}
.ws42{word-spacing:3.168000pt;}
.wse6{word-spacing:3.200000pt;}
.ws6e{word-spacing:3.216000pt;}
.wsc2{word-spacing:3.306667pt;}
.wsed{word-spacing:3.360000pt;}
.wsb5{word-spacing:3.413333pt;}
.ws32{word-spacing:3.466667pt;}
.wsad{word-spacing:3.520000pt;}
.ws86{word-spacing:3.573333pt;}
.wsab{word-spacing:3.648000pt;}
.ws7a{word-spacing:3.680000pt;}
.wse9{word-spacing:3.840000pt;}
.wsb2{word-spacing:3.893333pt;}
.ws10d{word-spacing:4.053333pt;}
.ws63{word-spacing:4.272000pt;}
.ws62{word-spacing:4.320000pt;}
.ws2b{word-spacing:4.373333pt;}
.ws2a{word-spacing:4.426667pt;}
.ws87{word-spacing:4.480000pt;}
.ws115{word-spacing:4.512000pt;}
.ws13{word-spacing:4.560000pt;}
.wsb1{word-spacing:4.608000pt;}
.wsac{word-spacing:4.693333pt;}
.wsb0{word-spacing:4.704000pt;}
.ws31{word-spacing:4.746667pt;}
.ws75{word-spacing:4.853333pt;}
.wsd6{word-spacing:4.896000pt;}
.wsd7{word-spacing:4.944000pt;}
.wsd5{word-spacing:4.992000pt;}
.wsb7{word-spacing:5.066667pt;}
.wsb6{word-spacing:5.173333pt;}
.ws9c{word-spacing:5.226667pt;}
.wsbd{word-spacing:5.280000pt;}
.ws58{word-spacing:5.386667pt;}
.wsb4{word-spacing:5.493333pt;}
.wsa7{word-spacing:5.653333pt;}
.wsc4{word-spacing:5.706667pt;}
.wsd4{word-spacing:5.920000pt;}
.ws41{word-spacing:6.096000pt;}
.ws33{word-spacing:6.133333pt;}
.ws24{word-spacing:6.186667pt;}
.ws23{word-spacing:6.240000pt;}
.ws95{word-spacing:6.288000pt;}
.ws84{word-spacing:6.293333pt;}
.ws1f{word-spacing:6.346667pt;}
.wse4{word-spacing:6.453333pt;}
.ws81{word-spacing:6.666667pt;}
.ws82{word-spacing:6.720000pt;}
.wsc6{word-spacing:6.986667pt;}
.wsc5{word-spacing:7.040000pt;}
.ws27{word-spacing:7.093333pt;}
.wscb{word-spacing:7.146667pt;}
.ws26{word-spacing:7.200000pt;}
.ws4d{word-spacing:7.253333pt;}
.ws5a{word-spacing:7.360000pt;}
.ws12{word-spacing:7.392000pt;}
.ws96{word-spacing:7.466667pt;}
.ws9f{word-spacing:7.520000pt;}
.ws76{word-spacing:7.786667pt;}
.wscf{word-spacing:7.946667pt;}
.ws56{word-spacing:8.053333pt;}
.ws70{word-spacing:8.960000pt;}
.ws8a{word-spacing:9.120000pt;}
.ws89{word-spacing:9.226667pt;}
.ws111{word-spacing:9.264000pt;}
.ws22{word-spacing:9.386667pt;}
.ws21{word-spacing:9.493333pt;}
.wse8{word-spacing:9.546667pt;}
.ws109{word-spacing:9.706667pt;}
.ws108{word-spacing:9.813333pt;}
.ws6f{word-spacing:10.293333pt;}
.ws4a{word-spacing:16.853333pt;}
.ws49{word-spacing:17.066667pt;}
.ws47{word-spacing:73.455467pt;}
._c{margin-left:-9.067200pt;}
._0{margin-left:-8.060267pt;}
._4e{margin-left:-7.147200pt;}
._26{margin-left:-6.029333pt;}
._b{margin-left:-4.596800pt;}
._3{margin-left:-3.604800pt;}
._4{margin-left:-2.469867pt;}
._1{margin-left:-1.332800pt;}
._2{width:1.017600pt;}
._8{width:2.121067pt;}
._e{width:3.228267pt;}
._a{width:4.592000pt;}
._d{width:5.552000pt;}
._6{width:6.639467pt;}
._7{width:8.058133pt;}
._9{width:8.960000pt;}
._2a{width:9.887467pt;}
._27{width:10.838400pt;}
._29{width:12.109867pt;}
._5e{width:13.327467pt;}
._5b{width:16.415467pt;}
._28{width:17.434133pt;}
._63{width:20.126400pt;}
._50{width:21.220800pt;}
._4f{width:22.736533pt;}
._5{width:32.554667pt;}
._61{width:37.912000pt;}
._62{width:39.924267pt;}
._4d{width:44.506667pt;}
._36{width:47.339733pt;}
._5f{width:50.133333pt;}
._35{width:51.277867pt;}
._60{width:55.893333pt;}
._57{width:71.312533pt;}
._5d{width:72.746667pt;}
._5c{width:77.760000pt;}
._38{width:87.016000pt;}
._42{width:90.151467pt;}
._3e{width:92.328533pt;}
._34{width:93.889067pt;}
._4c{width:103.496000pt;}
._1f{width:108.899733pt;}
._3c{width:111.839467pt;}
._37{width:113.246400pt;}
._13{width:117.823467pt;}
._4a{width:120.296000pt;}
._2d{width:122.320533pt;}
._3a{width:127.536533pt;}
._40{width:128.912000pt;}
._45{width:147.908800pt;}
._39{width:152.172800pt;}
._43{width:156.669333pt;}
._3f{width:158.307733pt;}
._2f{width:162.402133pt;}
._2b{width:167.212800pt;}
._32{width:170.256533pt;}
._46{width:171.363733pt;}
._31{width:174.720000pt;}
._3d{width:177.146133pt;}
._47{width:183.865067pt;}
._3b{width:192.718933pt;}
._41{width:194.884800pt;}
._4b{width:208.125333pt;}
._30{width:227.560000pt;}
._48{width:229.362667pt;}
._2e{width:231.506667pt;}
._33{width:235.956267pt;}
._20{width:243.216533pt;}
._10{width:246.630933pt;}
._5a{width:249.408000pt;}
._56{width:251.541333pt;}
._58{width:263.188800pt;}
._54{width:264.525867pt;}
._51{width:266.659733pt;}
._52{width:278.307200pt;}
._12{width:296.093333pt;}
._15{width:305.375467pt;}
._11{width:313.108800pt;}
._2c{width:318.990933pt;}
._19{width:322.665600pt;}
._49{width:327.045333pt;}
._21{width:330.060267pt;}
._59{width:331.636800pt;}
._55{width:334.541867pt;}
._1c{width:343.372800pt;}
._53{width:346.744533pt;}
._44{width:354.310933pt;}
._16{width:367.726933pt;}
._14{width:418.280533pt;}
._24{width:451.091733pt;}
._f{width:483.918933pt;}
._18{width:486.238400pt;}
._1a{width:492.218667pt;}
._23{width:511.422400pt;}
._1d{width:523.657067pt;}
._25{width:530.755733pt;}
._17{width:560.445867pt;}
._1e{width:565.309867pt;}
._22{width:599.421867pt;}
._1b{width:618.256000pt;}
.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;}
.y3d{bottom:63.299600pt;}
.y3e{bottom:66.698800pt;}
.y50{bottom:100.514400pt;}
.yc2{bottom:100.514533pt;}
.y2b{bottom:104.188933pt;}
.yb{bottom:104.778267pt;}
.yf9{bottom:107.111867pt;}
.ya{bottom:117.578267pt;}
.y4f{bottom:119.181067pt;}
.yc1{bottom:119.181200pt;}
.y2a{bottom:122.855600pt;}
.yf8{bottom:124.711867pt;}
.yc7{bottom:128.025200pt;}
.y9{bottom:130.378267pt;}
.y4e{bottom:137.847733pt;}
.yc0{bottom:137.847867pt;}
.y29{bottom:141.522267pt;}
.yf7{bottom:142.311867pt;}
.y8{bottom:143.178267pt;}
.yc6{bottom:145.625200pt;}
.ya1{bottom:149.789867pt;}
.ycd{bottom:156.514400pt;}
.ybf{bottom:156.514533pt;}
.yf6{bottom:159.911867pt;}
.y28{bottom:160.188933pt;}
.yc5{bottom:163.225200pt;}
.y4d{bottom:169.280800pt;}
.ycc{bottom:175.181067pt;}
.y9c{bottom:175.181200pt;}
.y3a{bottom:177.237867pt;}
.yf5{bottom:177.511867pt;}
.ya0{bottom:178.498667pt;}
.y27{bottom:178.855600pt;}
.y114{bottom:187.947600pt;}
.y39{bottom:193.237867pt;}
.ycb{bottom:193.847733pt;}
.y9b{bottom:193.847867pt;}
.yfd{bottom:196.388667pt;}
.y26{bottom:197.522267pt;}
.y38{bottom:209.237867pt;}
.y4c{bottom:212.514400pt;}
.y9a{bottom:212.514533pt;}
.y10c{bottom:213.520133pt;}
.yfc{bottom:213.988667pt;}
.y25{bottom:216.188933pt;}
.yd3{bottom:217.577600pt;}
.y37{bottom:225.237867pt;}
.y10b{bottom:231.120133pt;}
.y4b{bottom:231.181067pt;}
.y99{bottom:231.181200pt;}
.yfb{bottom:231.588667pt;}
.y24{bottom:234.855600pt;}
.yd2{bottom:235.177600pt;}
.y36{bottom:241.237867pt;}
.y122{bottom:243.947467pt;}
.y118{bottom:243.947600pt;}
.yfa{bottom:249.188667pt;}
.y4a{bottom:249.847733pt;}
.y98{bottom:249.847867pt;}
.yd1{bottom:252.777600pt;}
.y23{bottom:253.522267pt;}
.y35{bottom:257.237867pt;}
.y49{bottom:268.514400pt;}
.y97{bottom:268.514533pt;}
.y22{bottom:272.188933pt;}
.y34{bottom:273.237867pt;}
.y48{bottom:287.181067pt;}
.y96{bottom:287.181200pt;}
.y33{bottom:289.237867pt;}
.y21{bottom:290.855600pt;}
.y47{bottom:305.847733pt;}
.y95{bottom:305.847867pt;}
.y20{bottom:309.522267pt;}
.y32{bottom:320.356000pt;}
.y46{bottom:324.514400pt;}
.y94{bottom:324.514533pt;}
.y1f{bottom:328.188933pt;}
.y121{bottom:329.359467pt;}
.y31{bottom:336.356000pt;}
.y9f{bottom:343.181067pt;}
.y93{bottom:343.181200pt;}
.y1e{bottom:346.855600pt;}
.y30{bottom:352.356000pt;}
.y45{bottom:355.123067pt;}
.yca{bottom:361.847733pt;}
.y92{bottom:361.847867pt;}
.y1d{bottom:365.522267pt;}
.y9e{bottom:374.614133pt;}
.yc9{bottom:380.514400pt;}
.y91{bottom:380.514533pt;}
.y2f{bottom:383.474133pt;}
.y44{bottom:383.832000pt;}
.y1c{bottom:384.188933pt;}
.yc8{bottom:399.181067pt;}
.y90{bottom:399.181200pt;}
.y2e{bottom:399.474133pt;}
.y1b{bottom:415.292667pt;}
.y2d{bottom:415.474133pt;}
.y9d{bottom:417.847733pt;}
.y8f{bottom:417.847867pt;}
.y120{bottom:422.692800pt;}
.y2c{bottom:431.474133pt;}
.y43{bottom:436.514400pt;}
.y8e{bottom:436.514533pt;}
.y42{bottom:455.181067pt;}
.y8d{bottom:455.181200pt;}
.yd0{bottom:461.399333pt;}
.yef{bottom:463.930133pt;}
.y41{bottom:473.847733pt;}
.y8c{bottom:473.847867pt;}
.yee{bottom:477.263467pt;}
.y11f{bottom:478.692800pt;}
.ycf{bottom:478.999333pt;}
.y1a{bottom:479.313733pt;}
.yf1{bottom:489.124933pt;}
.y40{bottom:492.514400pt;}
.y8b{bottom:492.514533pt;}
.yed{bottom:494.334400pt;}
.yce{bottom:496.599333pt;}
.y19{bottom:496.913733pt;}
.ybe{bottom:500.255600pt;}
.yf0{bottom:506.724933pt;}
.yec{bottom:507.667733pt;}
.y108{bottom:511.181067pt;}
.y8a{bottom:511.181200pt;}
.yf4{bottom:515.122133pt;}
.ybd{bottom:517.326533pt;}
.yeb{bottom:524.738533pt;}
.y107{bottom:529.847733pt;}
.y89{bottom:529.847867pt;}
.y113{bottom:532.517333pt;}
.yf3{bottom:532.722133pt;}
.y18{bottom:533.411333pt;}
.y6f{bottom:533.855733pt;}
.ybc{bottom:534.397333pt;}
.yea{bottom:538.071867pt;}
.y106{bottom:548.514400pt;}
.y88{bottom:548.514533pt;}
.y112{bottom:550.117333pt;}
.yf2{bottom:550.322133pt;}
.y6e{bottom:550.548533pt;}
.y17{bottom:551.011333pt;}
.y110{bottom:551.343467pt;}
.ybb{bottom:551.468267pt;}
.ye9{bottom:555.142800pt;}
.y105{bottom:567.181067pt;}
.y87{bottom:567.181200pt;}
.y6d{bottom:567.241467pt;}
.y111{bottom:567.717333pt;}
.ye8{bottom:568.476133pt;}
.yba{bottom:568.539067pt;}
.y16{bottom:568.611333pt;}
.y10f{bottom:568.943467pt;}
.y6c{bottom:583.934400pt;}
.ye7{bottom:585.546933pt;}
.yb9{bottom:585.610000pt;}
.y104{bottom:585.847733pt;}
.y86{bottom:585.847867pt;}
.y15{bottom:586.211333pt;}
.y10e{bottom:586.543467pt;}
.yc4{bottom:595.374133pt;}
.y6b{bottom:597.267733pt;}
.ye6{bottom:598.880267pt;}
.yb8{bottom:598.943333pt;}
.y14{bottom:603.811333pt;}
.y10d{bottom:604.143467pt;}
.y103{bottom:604.514400pt;}
.y85{bottom:604.514533pt;}
.y11e{bottom:609.359467pt;}
.yc3{bottom:612.974267pt;}
.y6a{bottom:613.960667pt;}
.ye5{bottom:615.951200pt;}
.yb7{bottom:616.014133pt;}
.y13{bottom:621.411333pt;}
.y102{bottom:623.181067pt;}
.y84{bottom:623.181200pt;}
.y69{bottom:627.294000pt;}
.ye4{bottom:629.284533pt;}
.yb6{bottom:633.085067pt;}
.y12{bottom:639.011333pt;}
.y101{bottom:641.847733pt;}
.y83{bottom:641.847867pt;}
.y68{bottom:643.986933pt;}
.ye3{bottom:646.622000pt;}
.yb5{bottom:650.155867pt;}
.y11{bottom:656.611333pt;}
.ye2{bottom:659.955333pt;}
.y100{bottom:660.514400pt;}
.y82{bottom:660.514533pt;}
.y67{bottom:660.679867pt;}
.y11d{bottom:665.359467pt;}
.yb4{bottom:667.226800pt;}
.y10{bottom:674.211333pt;}
.y66{bottom:677.372667pt;}
.yff{bottom:679.181067pt;}
.y81{bottom:679.181200pt;}
.yb3{bottom:684.297733pt;}
.ye1{bottom:687.050400pt;}
.y65{bottom:690.706000pt;}
.yf{bottom:691.811333pt;}
.yfe{bottom:697.847733pt;}
.y80{bottom:697.847867pt;}
.yb2{bottom:701.368533pt;}
.ye0{bottom:704.650400pt;}
.y64{bottom:707.399067pt;}
.ye{bottom:709.411333pt;}
.y7f{bottom:716.514533pt;}
.yb1{bottom:718.439333pt;}
.y63{bottom:720.732400pt;}
.y11c{bottom:721.359333pt;}
.y62{bottom:734.065733pt;}
.y7e{bottom:735.181200pt;}
.y10a{bottom:735.471733pt;}
.yb0{bottom:735.510267pt;}
.yd{bottom:737.053600pt;}
.y61{bottom:750.758533pt;}
.yaf{bottom:752.581200pt;}
.y109{bottom:753.071733pt;}
.y7d{bottom:753.847867pt;}
.ydf{bottom:754.197867pt;}
.y60{bottom:764.091867pt;}
.yde{bottom:767.531200pt;}
.yae{bottom:769.652000pt;}
.y7c{bottom:772.514533pt;}
.y5f{bottom:777.425200pt;}
.y11b{bottom:777.721867pt;}
.ydd{bottom:784.602133pt;}
.yad{bottom:786.722800pt;}
.y5e{bottom:790.758533pt;}
.y7b{bottom:791.181200pt;}
.ydc{bottom:797.935467pt;}
.yac{bottom:803.793733pt;}
.y11a{bottom:803.947600pt;}
.y5d{bottom:807.451467pt;}
.y7{bottom:807.526000pt;}
.y7a{bottom:809.847867pt;}
.ydb{bottom:815.006400pt;}
.yab{bottom:820.864533pt;}
.y117{bottom:821.789867pt;}
.y6{bottom:823.526000pt;}
.y5c{bottom:824.144400pt;}
.yda{bottom:828.339733pt;}
.y79{bottom:828.514533pt;}
.yaa{bottom:837.935467pt;}
.y5{bottom:839.526000pt;}
.y5b{bottom:840.837333pt;}
.yd9{bottom:845.410533pt;}
.y78{bottom:847.181200pt;}
.y116{bottom:850.498667pt;}
.ya9{bottom:855.006400pt;}
.y5a{bottom:857.530133pt;}
.yd8{bottom:858.743867pt;}
.y77{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.y59{bottom:870.863467pt;}
.ya8{bottom:872.077200pt;}
.yd7{bottom:875.814667pt;}
.y58{bottom:884.196800pt;}
.y76{bottom:884.514533pt;}
.ya7{bottom:885.410533pt;}
.yd6{bottom:889.148000pt;}
.y57{bottom:897.530133pt;}
.ya6{bottom:902.481333pt;}
.y75{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yd5{bottom:906.218933pt;}
.y56{bottom:910.863467pt;}
.ya5{bottom:919.552267pt;}
.y74{bottom:921.847867pt;}
.y55{bottom:924.196800pt;}
.y2{bottom:932.695600pt;}
.ya4{bottom:936.889867pt;}
.y54{bottom:937.530133pt;}
.y73{bottom:940.514533pt;}
.ya3{bottom:943.556533pt;}
.yd4{bottom:950.223200pt;}
.y53{bottom:950.863467pt;}
.y72{bottom:959.181200pt;}
.y52{bottom:967.823200pt;}
.ya2{bottom:977.318133pt;}
.y71{bottom:977.847867pt;}
.yc{bottom:986.502667pt;}
.y119{bottom:989.952800pt;}
.y115{bottom:990.952800pt;}
.y51{bottom:994.918133pt;}
.y70{bottom:996.514533pt;}
.y3c{bottom:1027.213600pt;}
.y3b{bottom:1044.546933pt;}
.y3f{bottom:1047.726000pt;}
.h6{height:30.618750pt;}
.h17{height:32.437500pt;}
.h18{height:32.480017pt;}
.h1b{height:32.500833pt;}
.h2{height:33.812500pt;}
.h15{height:33.979167pt;}
.h12{height:34.020833pt;}
.h5{height:34.250000pt;}
.ha{height:36.492188pt;}
.hc{height:36.540019pt;}
.hb{height:37.875000pt;}
.h11{height:38.039062pt;}
.h7{height:38.226562pt;}
.h10{height:38.273438pt;}
.h16{height:38.500000pt;}
.h13{height:40.546875pt;}
.h1a{height:40.599995pt;}
.he{height:40.600021pt;}
.h1c{height:40.600032pt;}
.h8{height:42.083333pt;}
.h9{height:43.312500pt;}
.h1d{height:44.601562pt;}
.h4{height:45.538711pt;}
.h14{height:46.291667pt;}
.hf{height:48.125000pt;}
.hd{height:50.500000pt;}
.h19{height:60.645833pt;}
.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;}
.xb{left:95.172400pt;}
.x21{left:96.255067pt;}
.xd{left:99.779467pt;}
.x6{left:106.290133pt;}
.x7{left:107.597867pt;}
.x8{left:109.707333pt;}
.x22{left:131.951600pt;}
.xc{left:199.983067pt;}
.x25{left:210.599467pt;}
.x24{left:211.906800pt;}
.x2b{left:215.806933pt;}
.x29{left:218.820800pt;}
.x40{left:219.824267pt;}
.x27{left:222.586533pt;}
.x2a{left:223.603867pt;}
.x46{left:230.121200pt;}
.x35{left:233.903333pt;}
.x4{left:266.834667pt;}
.x5{left:281.952667pt;}
.x41{left:293.628533pt;}
.x4b{left:297.070800pt;}
.x2d{left:301.187600pt;}
.x2c{left:308.127600pt;}
.x47{left:309.513867pt;}
.x36{left:317.072933pt;}
.x48{left:322.719600pt;}
.x37{left:330.278667pt;}
.x1f{left:346.734267pt;}
.x1d{left:348.679867pt;}
.x1c{left:350.560133pt;}
.x3{left:352.045067pt;}
.x26{left:356.191200pt;}
.x16{left:358.080933pt;}
.x17{left:365.807600pt;}
.x43{left:397.589200pt;}
.x2f{left:403.258533pt;}
.x42{left:406.810533pt;}
.x38{left:408.159467pt;}
.x2e{left:412.479867pt;}
.x49{left:415.695867pt;}
.x39{left:421.365200pt;}
.x30{left:483.006533pt;}
.x3b{left:487.907600pt;}
.x3a{left:498.324267pt;}
.xf{left:500.250267pt;}
.x12{left:504.942933pt;}
.x11{left:508.054933pt;}
.x10{left:511.067867pt;}
.xe{left:512.786667pt;}
.x13{left:530.971600pt;}
.x18{left:546.560133pt;}
.x28{left:554.119200pt;}
.x32{left:568.045867pt;}
.x45{left:569.935733pt;}
.x3c{left:572.946933pt;}
.x31{left:575.613600pt;}
.x44{left:577.503467pt;}
.xa{left:579.974800pt;}
.x3d{left:586.152667pt;}
.x4a{left:588.042133pt;}
.x9{left:597.438400pt;}
.x20{left:610.771600pt;}
.x14{left:614.290000pt;}
.x1a{left:617.388933pt;}
.x1e{left:626.040000pt;}
.x19{left:627.240533pt;}
.x15{left:629.534800pt;}
.x1b{left:635.347333pt;}
.x23{left:638.454400pt;}
.x34{left:653.085333pt;}
.x3e{left:657.986267pt;}
.x33{left:669.533200pt;}
.x3f{left:671.192000pt;}
.x1{left:712.301467pt;}
}




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