
    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_fe305f18d4fa77b41b897987.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_4e003856a56985d03da2a524.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_6fcdcdfd562cdf6e20593625.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_ad982fea821661158ef10f77.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041992;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3e90ca813b85988dc03312e8.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_a6f4aa2600ce7f7f08311ff6.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_7f53292009ff488e25c39c7a.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_267493577de631e8b8ee919c.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_af069ab8eec7014e9306a63c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.095703;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_e586e15de954d624c2def1cd.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_d47e9ae3637634ab9ceb2d81.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.760342;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_e76b6182de32385f41d407f7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.968262;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_5fa0a64e3672d9d95758c440.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.969238;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_71829e964f3eb7adbfb7189c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_3692ee2d3a123c97e1b1815d.woff2')format("woff");}.fff{font-family:fff;line-height:0.760337;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:ff10;src:url('chunks/assets/font_607d0f376ec1e8d838bd1cdb.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.916016;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:ff11;src:url('chunks/assets/font_0774f989d5a93060be177eb1.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.772054;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);}
.v2{vertical-align:-21.978600px;}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:13.986000px;}
.v7{vertical-align:17.982000px;}
.v6{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:27.000000px;}
.ls21{letter-spacing:-7.236000px;}
.ls20{letter-spacing:-3.240000px;}
.ls26{letter-spacing:-1.080000px;}
.ls16{letter-spacing:-0.840000px;}
.lsb{letter-spacing:-0.691200px;}
.ls9{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.600000px;}
.ls28{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.510000px;}
.ls17{letter-spacing:-0.489720px;}
.lsa{letter-spacing:-0.408000px;}
.ls7{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.000600px;}
.ls1d{letter-spacing:0.001200px;}
.ls1a{letter-spacing:0.008400px;}
.ls3{letter-spacing:0.011400px;}
.ls10{letter-spacing:0.012000px;}
.ls11{letter-spacing:0.012600px;}
.ls27{letter-spacing:0.013800px;}
.lsf{letter-spacing:0.015000px;}
.ls1e{letter-spacing:0.023400px;}
.ls1c{letter-spacing:0.024000px;}
.ls1f{letter-spacing:0.024600px;}
.ls6{letter-spacing:0.025800px;}
.lsd{letter-spacing:0.588000px;}
.lsc{letter-spacing:0.600000px;}
.ls23{letter-spacing:0.682440px;}
.ls24{letter-spacing:0.683040px;}
.ls4{letter-spacing:1.080000px;}
.ls22{letter-spacing:1.200000px;}
.ls19{letter-spacing:2.908800px;}
.ls5{letter-spacing:11.285400px;}
.ls18{letter-spacing:13.500000px;}
.ls25{letter-spacing:15.173400px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.ls2{letter-spacing:43.201242px;}
.ls13{letter-spacing:227.990496px;}
.ls14{letter-spacing:355.719000px;}
.ls15{letter-spacing:398.450400px;}
.ls12{letter-spacing:434.518524px;}
.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;}
}
.wsad{word-spacing:-60.000000px;}
.wsa3{word-spacing:-42.000000px;}
.ws1{word-spacing:-24.786000px;}
.ws0{word-spacing:-24.684000px;}
.ws9{word-spacing:-17.928000px;}
.wscd{word-spacing:-16.680000px;}
.wsdf{word-spacing:-16.434000px;}
.ws30{word-spacing:-15.480000px;}
.ws2f{word-spacing:-15.300000px;}
.ws7{word-spacing:-14.940000px;}
.ws52{word-spacing:-14.880000px;}
.wsac{word-spacing:-14.820000px;}
.wsa{word-spacing:-14.700000px;}
.ws53{word-spacing:-14.280000px;}
.wsbe{word-spacing:-13.446000px;}
.wsbf{word-spacing:-13.392000px;}
.ws8{word-spacing:-13.230000px;}
.wsf2{word-spacing:-12.312000px;}
.wsd{word-spacing:-12.150000px;}
.wsb{word-spacing:-11.772000px;}
.ws5{word-spacing:-10.896000px;}
.ws2d{word-spacing:-10.800000px;}
.wse{word-spacing:-10.464000px;}
.ws8a{word-spacing:-10.416000px;}
.ws8b{word-spacing:-10.290000px;}
.ws9b{word-spacing:-9.576000px;}
.ws4{word-spacing:-9.542544px;}
.ws98{word-spacing:-9.534000px;}
.ws6{word-spacing:-9.417600px;}
.ws51{word-spacing:-8.675040px;}
.wsfc{word-spacing:-7.807536px;}
.wseb{word-spacing:-3.900000px;}
.ws6b{word-spacing:-3.300000px;}
.ws8f{word-spacing:-2.940000px;}
.ws8e{word-spacing:-2.880000px;}
.ws39{word-spacing:-2.820000px;}
.ws38{word-spacing:-2.760000px;}
.ws1a{word-spacing:-2.700000px;}
.ws102{word-spacing:-2.592000px;}
.ws37{word-spacing:-2.340000px;}
.wsd0{word-spacing:-2.220000px;}
.wsff{word-spacing:-2.214000px;}
.ws113{word-spacing:-2.160000px;}
.ws62{word-spacing:-2.040000px;}
.wsfa{word-spacing:-1.944000px;}
.wscf{word-spacing:-1.920000px;}
.ws5e{word-spacing:-1.860000px;}
.wsb8{word-spacing:-1.800000px;}
.wsbd{word-spacing:-1.680000px;}
.ws69{word-spacing:-1.620000px;}
.ws31{word-spacing:-1.560000px;}
.wsce{word-spacing:-1.440000px;}
.ws70{word-spacing:-1.320000px;}
.ws83{word-spacing:-1.260000px;}
.wsc0{word-spacing:-1.242000px;}
.ws48{word-spacing:-1.200000px;}
.wsc1{word-spacing:-1.188000px;}
.ws7d{word-spacing:-1.140000px;}
.ws100{word-spacing:-1.134000px;}
.ws6c{word-spacing:-1.080000px;}
.wsef{word-spacing:-1.026000px;}
.ws21{word-spacing:-1.020000px;}
.wsb4{word-spacing:-0.960000px;}
.ws92{word-spacing:-0.900000px;}
.ws44{word-spacing:-0.840000px;}
.ws4f{word-spacing:-0.720000px;}
.ws89{word-spacing:-0.702000px;}
.wsf1{word-spacing:-0.648000px;}
.ws40{word-spacing:-0.600000px;}
.wsc6{word-spacing:-0.594000px;}
.wse9{word-spacing:-0.480000px;}
.ws66{word-spacing:-0.462000px;}
.ws101{word-spacing:-0.432000px;}
.ws103{word-spacing:-0.378000px;}
.wse6{word-spacing:-0.360000px;}
.ws20{word-spacing:-0.324000px;}
.ws32{word-spacing:-0.300000px;}
.ws12{word-spacing:-0.216000px;}
.ws3c{word-spacing:-0.180000px;}
.ws117{word-spacing:-0.162000px;}
.ws5f{word-spacing:-0.060000px;}
.wsc{word-spacing:-0.054000px;}
.ws2e{word-spacing:-0.048000px;}
.wsf{word-spacing:0.000000px;}
.wsc8{word-spacing:0.054000px;}
.ws10f{word-spacing:0.108000px;}
.wsbb{word-spacing:0.120000px;}
.ws23{word-spacing:0.180000px;}
.ws93{word-spacing:0.252000px;}
.ws94{word-spacing:0.324000px;}
.wsc4{word-spacing:0.378000px;}
.ws95{word-spacing:0.432000px;}
.ws10e{word-spacing:0.486000px;}
.wsab{word-spacing:0.489720px;}
.ws18{word-spacing:0.540000px;}
.ws110{word-spacing:0.594000px;}
.ws46{word-spacing:0.600000px;}
.ws10{word-spacing:0.612000px;}
.ws13{word-spacing:0.691200px;}
.ws43{word-spacing:0.720000px;}
.ws10d{word-spacing:0.756000px;}
.wsf9{word-spacing:0.810000px;}
.ws50{word-spacing:0.840000px;}
.ws2c{word-spacing:1.020000px;}
.ws7e{word-spacing:1.080000px;}
.ws76{word-spacing:1.140000px;}
.wsfe{word-spacing:1.188000px;}
.ws115{word-spacing:1.242000px;}
.wsbc{word-spacing:1.260000px;}
.ws119{word-spacing:1.296000px;}
.wsed{word-spacing:1.320000px;}
.ws68{word-spacing:1.380000px;}
.ws41{word-spacing:1.500000px;}
.wsb7{word-spacing:1.560000px;}
.wsf7{word-spacing:1.566000px;}
.ws24{word-spacing:1.620000px;}
.ws84{word-spacing:1.680000px;}
.ws111{word-spacing:1.728000px;}
.ws60{word-spacing:1.740000px;}
.ws35{word-spacing:1.860000px;}
.wsf5{word-spacing:1.890000px;}
.ws74{word-spacing:1.920000px;}
.ws112{word-spacing:2.106000px;}
.ws81{word-spacing:2.160000px;}
.ws118{word-spacing:2.214000px;}
.ws80{word-spacing:2.220000px;}
.wsf8{word-spacing:2.322000px;}
.ws3f{word-spacing:2.340000px;}
.wsf6{word-spacing:2.430000px;}
.ws88{word-spacing:2.484000px;}
.wsb1{word-spacing:2.520000px;}
.ws87{word-spacing:2.538000px;}
.ws7b{word-spacing:2.640000px;}
.ws22{word-spacing:2.700000px;}
.ws47{word-spacing:2.820000px;}
.wsb2{word-spacing:2.880000px;}
.wsb3{word-spacing:2.940000px;}
.ws86{word-spacing:3.000000px;}
.ws104{word-spacing:3.024000px;}
.ws65{word-spacing:3.060000px;}
.wscb{word-spacing:3.078000px;}
.ws6f{word-spacing:3.120000px;}
.ws42{word-spacing:3.180000px;}
.wscc{word-spacing:3.186000px;}
.ws4b{word-spacing:3.240000px;}
.ws15{word-spacing:3.294000px;}
.wsd4{word-spacing:3.300000px;}
.wsd3{word-spacing:3.360000px;}
.wsfd{word-spacing:3.456000px;}
.ws26{word-spacing:3.540000px;}
.ws3d{word-spacing:3.600000px;}
.wsc5{word-spacing:3.618000px;}
.ws11c{word-spacing:3.780000px;}
.ws10c{word-spacing:3.888000px;}
.ws72{word-spacing:4.020000px;}
.ws71{word-spacing:4.080000px;}
.wse5{word-spacing:4.140000px;}
.wsf0{word-spacing:4.158000px;}
.wse4{word-spacing:4.200000px;}
.ws7f{word-spacing:4.260000px;}
.ws14{word-spacing:4.266000px;}
.ws5d{word-spacing:4.320000px;}
.wsb5{word-spacing:4.380000px;}
.ws17{word-spacing:4.428000px;}
.wsb6{word-spacing:4.440000px;}
.ws16{word-spacing:4.482000px;}
.ws29{word-spacing:4.500000px;}
.ws10b{word-spacing:4.590000px;}
.ws91{word-spacing:4.680000px;}
.ws3e{word-spacing:4.740000px;}
.ws25{word-spacing:4.800000px;}
.wsf4{word-spacing:4.806000px;}
.ws5c{word-spacing:4.860000px;}
.ws75{word-spacing:4.920000px;}
.wsee{word-spacing:5.076000px;}
.ws4e{word-spacing:5.100000px;}
.ws67{word-spacing:5.280000px;}
.ws90{word-spacing:5.340000px;}
.ws4c{word-spacing:5.460000px;}
.ws3b{word-spacing:5.520000px;}
.ws3a{word-spacing:5.580000px;}
.ws7c{word-spacing:5.640000px;}
.ws1b{word-spacing:5.670000px;}
.ws77{word-spacing:5.700000px;}
.wsca{word-spacing:5.778000px;}
.wsc2{word-spacing:5.832000px;}
.wsc3{word-spacing:5.886000px;}
.ws36{word-spacing:6.060000px;}
.ws64{word-spacing:6.120000px;}
.ws114{word-spacing:6.156000px;}
.wsb0{word-spacing:6.180000px;}
.ws82{word-spacing:6.240000px;}
.wsd9{word-spacing:6.300000px;}
.wse0{word-spacing:6.360000px;}
.ws4d{word-spacing:6.420000px;}
.ws34{word-spacing:6.480000px;}
.wsc7{word-spacing:6.642000px;}
.ws2b{word-spacing:6.720000px;}
.ws116{word-spacing:6.750000px;}
.ws2a{word-spacing:6.780000px;}
.ws106{word-spacing:6.858000px;}
.wsb9{word-spacing:6.900000px;}
.wsf3{word-spacing:6.912000px;}
.ws63{word-spacing:6.960000px;}
.wse7{word-spacing:7.020000px;}
.wse8{word-spacing:7.080000px;}
.ws4a{word-spacing:7.140000px;}
.ws49{word-spacing:7.200000px;}
.wsc9{word-spacing:7.236000px;}
.ws27{word-spacing:7.260000px;}
.ws78{word-spacing:7.320000px;}
.ws6d{word-spacing:7.560000px;}
.wsec{word-spacing:7.620000px;}
.ws33{word-spacing:7.680000px;}
.ws105{word-spacing:7.776000px;}
.ws7a{word-spacing:7.800000px;}
.ws19{word-spacing:7.830000px;}
.ws5b{word-spacing:7.860000px;}
.wsba{word-spacing:7.980000px;}
.ws59{word-spacing:8.040000px;}
.ws45{word-spacing:8.160000px;}
.ws1f{word-spacing:8.262000px;}
.ws73{word-spacing:8.460000px;}
.ws79{word-spacing:8.640000px;}
.ws108{word-spacing:8.910000px;}
.ws28{word-spacing:8.940000px;}
.ws11{word-spacing:9.108000px;}
.wsd2{word-spacing:9.240000px;}
.ws6a{word-spacing:9.660000px;}
.ws5a{word-spacing:9.780000px;}
.ws61{word-spacing:9.840000px;}
.wse1{word-spacing:9.900000px;}
.ws85{word-spacing:9.960000px;}
.ws1c{word-spacing:10.152000px;}
.ws1e{word-spacing:10.206000px;}
.ws11a{word-spacing:10.260000px;}
.ws1d{word-spacing:10.314000px;}
.wsd1{word-spacing:10.740000px;}
.wsd8{word-spacing:10.920000px;}
.wsd7{word-spacing:10.980000px;}
.wsaf{word-spacing:11.220000px;}
.wsea{word-spacing:11.580000px;}
.wsde{word-spacing:11.718000px;}
.wsdd{word-spacing:11.826000px;}
.wsdc{word-spacing:11.880000px;}
.wsda{word-spacing:12.300000px;}
.wsdb{word-spacing:12.480000px;}
.ws109{word-spacing:12.528000px;}
.wsfb{word-spacing:13.014000px;}
.ws6e{word-spacing:13.440000px;}
.wsae{word-spacing:13.500000px;}
.wsd6{word-spacing:14.280000px;}
.wse2{word-spacing:14.460000px;}
.wse3{word-spacing:14.580000px;}
.wsd5{word-spacing:15.180000px;}
.ws10a{word-spacing:16.848000px;}
.ws107{word-spacing:17.280000px;}
.ws11b{word-spacing:24.786000px;}
.ws2{word-spacing:33.650535px;}
.ws3{word-spacing:33.651135px;}
.ws55{word-spacing:89.620800px;}
.ws56{word-spacing:89.652600px;}
.ws58{word-spacing:97.550400px;}
.ws54{word-spacing:148.472400px;}
.ws9f{word-spacing:170.500200px;}
.wsaa{word-spacing:173.471400px;}
.wsa5{word-spacing:180.628200px;}
.wsa8{word-spacing:187.026600px;}
.wsa9{word-spacing:212.616000px;}
.wsa1{word-spacing:214.587000px;}
.wsa4{word-spacing:222.744000px;}
.wsa2{word-spacing:226.728600px;}
.wsa7{word-spacing:235.498800px;}
.wsa6{word-spacing:266.253000px;}
.ws9d{word-spacing:266.535000px;}
.ws57{word-spacing:275.200800px;}
.ws96{word-spacing:296.515200px;}
.ws99{word-spacing:332.379000px;}
.ws9e{word-spacing:341.015400px;}
.ws9a{word-spacing:354.487800px;}
.ws97{word-spacing:360.296616px;}
.ws9c{word-spacing:373.252800px;}
.ws8c{word-spacing:459.324000px;}
.ws8d{word-spacing:468.870600px;}
.wsa0{word-spacing:603.272400px;}
._3d{margin-left:-11.990400px;}
._9{margin-left:-10.386000px;}
._8{margin-left:-9.167400px;}
._2{margin-left:-6.803400px;}
._41{margin-left:-5.801400px;}
._3{margin-left:-4.790400px;}
._6{margin-left:-3.780000px;}
._4{margin-left:-2.713839px;}
._0{margin-left:-1.377000px;}
._1{width:1.933200px;}
._b{width:3.426600px;}
._7{width:4.771200px;}
._d{width:5.991600px;}
._c{width:7.083000px;}
._3f{width:8.344800px;}
._43{width:9.473400px;}
._e{width:11.037000px;}
._a{width:12.042000px;}
._40{width:13.348800px;}
._3e{width:16.752000px;}
._5{width:36.624000px;}
._3a{width:42.003600px;}
._42{width:43.084800px;}
._2d{width:52.326600px;}
._37{width:73.269600px;}
._38{width:96.092439px;}
._2c{width:107.901600px;}
._2b{width:111.369600px;}
._2a{width:124.272600px;}
._15{width:144.975039px;}
._36{width:151.399800px;}
._13{width:159.167400px;}
._14{width:175.081800px;}
._11{width:178.246800px;}
._35{width:182.143239px;}
._28{width:183.291600px;}
._23{width:186.063600px;}
._24{width:194.715600px;}
._34{width:227.320239px;}
._16{width:229.233600px;}
._27{width:234.489600px;}
._33{width:249.940839px;}
._2f{width:267.902400px;}
._12{width:279.999000px;}
._32{width:322.018200px;}
._3b{width:328.005000px;}
._39{width:354.295800px;}
._26{width:365.781600px;}
._25{width:377.205600px;}
._f{width:380.676000px;}
._29{width:391.259439px;}
._2e{width:417.878400px;}
._3c{width:424.182600px;}
._22{width:426.009600px;}
._30{width:431.484000px;}
._31{width:433.815000px;}
._10{width:489.710400px;}
._17{width:771.998400px;}
._21{width:786.823200px;}
._1d{width:1108.732800px;}
._1c{width:1178.389200px;}
._1a{width:1184.278800px;}
._19{width:1187.355000px;}
._1b{width:1224.346800px;}
._1f{width:1291.737000px;}
._18{width:1295.961000px;}
._1e{width:1302.384600px;}
._20{width:1359.426000px;}
.fc1{color:rgb(12,87,47);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:24.486000px;}
.fsb{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.036150px;}
.ya8{bottom:113.078700px;}
.y6a{bottom:113.078850px;}
.y7d{bottom:115.403100px;}
.y2b{bottom:117.212700px;}
.y10{bottom:117.875550px;}
.y120{bottom:118.374150px;}
.y133{bottom:120.500700px;}
.yda{bottom:120.500850px;}
.y7c{bottom:131.782050px;}
.yf{bottom:132.275550px;}
.ya7{bottom:134.078700px;}
.y69{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.y11f{bottom:139.230150px;}
.y132{bottom:140.300700px;}
.yd9{bottom:140.300850px;}
.ye{bottom:146.675550px;}
.y7b{bottom:148.161000px;}
.ya6{bottom:155.078700px;}
.y68{bottom:155.078850px;}
.y11e{bottom:155.183850px;}
.y29{bottom:159.212700px;}
.y131{bottom:160.100700px;}
.yd{bottom:161.075550px;}
.y7a{bottom:164.539950px;}
.y11d{bottom:168.683850px;}
.ya5{bottom:176.078700px;}
.y67{bottom:176.078850px;}
.y79{bottom:178.039950px;}
.y130{bottom:179.900700px;}
.y28{bottom:180.212700px;}
.y11c{bottom:182.183850px;}
.y78{bottom:194.418900px;}
.ya4{bottom:197.078700px;}
.y66{bottom:197.078850px;}
.y11b{bottom:198.137550px;}
.y37{bottom:199.392600px;}
.y27{bottom:201.212700px;}
.y77{bottom:207.918900px;}
.y11a{bottom:211.637550px;}
.y36{bottom:217.392600px;}
.ya3{bottom:218.078700px;}
.y65{bottom:218.078850px;}
.y26{bottom:222.212700px;}
.y76{bottom:224.297850px;}
.y119{bottom:227.591250px;}
.y35{bottom:235.392600px;}
.y75{bottom:237.797850px;}
.ya2{bottom:239.078700px;}
.y64{bottom:239.078850px;}
.y118{bottom:241.091250px;}
.y25{bottom:243.212700px;}
.y12f{bottom:253.350600px;}
.y34{bottom:253.392600px;}
.y74{bottom:254.476800px;}
.y117{bottom:254.591250px;}
.ya1{bottom:260.078700px;}
.y63{bottom:260.078850px;}
.y24{bottom:264.212700px;}
.y73{bottom:267.976800px;}
.y116{bottom:268.091250px;}
.y33{bottom:271.392600px;}
.y12e{bottom:273.150600px;}
.ya0{bottom:281.078700px;}
.y62{bottom:281.078850px;}
.y115{bottom:281.591250px;}
.y23{bottom:285.212700px;}
.y13a{bottom:286.529400px;}
.y32{bottom:289.392600px;}
.y12d{bottom:292.950600px;}
.y72{bottom:297.333600px;}
.y114{bottom:297.544950px;}
.y9f{bottom:302.078700px;}
.y61{bottom:302.078850px;}
.y22{bottom:306.212700px;}
.y31{bottom:307.392600px;}
.y113{bottom:311.044950px;}
.y12c{bottom:312.750600px;}
.ya9{bottom:315.026550px;}
.y9e{bottom:323.078700px;}
.y60{bottom:323.078850px;}
.y30{bottom:325.392600px;}
.y112{bottom:326.998800px;}
.y21{bottom:327.212700px;}
.y12b{bottom:332.550600px;}
.y111{bottom:342.952500px;}
.y9d{bottom:344.078700px;}
.y5f{bottom:344.078850px;}
.y20{bottom:348.212700px;}
.y139{bottom:349.529400px;}
.y12a{bottom:352.350600px;}
.yd6{bottom:355.935300px;}
.y110{bottom:356.452500px;}
.y2f{bottom:360.400500px;}
.yac{bottom:364.958400px;}
.y9c{bottom:365.078700px;}
.y5e{bottom:365.078850px;}
.yd5{bottom:369.435300px;}
.y10f{bottom:369.952500px;}
.y129{bottom:372.150600px;}
.y2e{bottom:378.400500px;}
.y1f{bottom:382.448400px;}
.y10e{bottom:383.452500px;}
.yab{bottom:384.758400px;}
.y9b{bottom:386.078700px;}
.y5d{bottom:386.078850px;}
.yd4{bottom:391.141650px;}
.y2d{bottom:396.400500px;}
.y10d{bottom:396.952500px;}
.yaa{bottom:404.558400px;}
.y128{bottom:407.078700px;}
.y71{bottom:407.078850px;}
.yd3{bottom:409.221300px;}
.y10c{bottom:410.452500px;}
.y138{bottom:412.529400px;}
.y2c{bottom:414.400500px;}
.y5c{bottom:420.513600px;}
.y9a{bottom:421.440900px;}
.y10b{bottom:423.952500px;}
.yd2{bottom:427.301100px;}
.y127{bottom:428.078700px;}
.y70{bottom:428.078850px;}
.y10a{bottom:439.906200px;}
.yd1{bottom:445.380750px;}
.y126{bottom:449.078700px;}
.y6f{bottom:449.078850px;}
.y5b{bottom:452.811150px;}
.y109{bottom:453.406200px;}
.yd0{bottom:463.460550px;}
.y108{bottom:466.906200px;}
.y1e{bottom:467.227950px;}
.y99{bottom:470.078700px;}
.y6e{bottom:470.078850px;}
.y137{bottom:475.937100px;}
.y107{bottom:480.406200px;}
.ycf{bottom:481.540200px;}
.y98{bottom:491.078700px;}
.y140{bottom:491.078850px;}
.y106{bottom:493.906200px;}
.yce{bottom:495.040200px;}
.y6d{bottom:505.441050px;}
.y105{bottom:507.406200px;}
.y1d{bottom:508.287900px;}
.y97{bottom:512.078700px;}
.y5a{bottom:512.078850px;}
.ycd{bottom:513.120000px;}
.y104{bottom:520.906200px;}
.y1c{bottom:528.087900px;}
.ycc{bottom:531.199650px;}
.y96{bottom:533.078700px;}
.y59{bottom:533.078850px;}
.y103{bottom:536.859900px;}
.y1b{bottom:547.887750px;}
.ycb{bottom:549.279450px;}
.y102{bottom:550.359900px;}
.y95{bottom:554.078700px;}
.y58{bottom:554.078850px;}
.y101{bottom:563.859900px;}
.yca{bottom:567.359100px;}
.y1a{bottom:567.687900px;}
.y94{bottom:575.078700px;}
.y57{bottom:575.078850px;}
.y100{bottom:577.359900px;}
.yc9{bottom:585.438750px;}
.y19{bottom:587.487900px;}
.yff{bottom:590.859900px;}
.y93{bottom:596.078700px;}
.y56{bottom:596.078850px;}
.yc8{bottom:603.518550px;}
.yfe{bottom:606.813750px;}
.y18{bottom:607.287900px;}
.y13f{bottom:610.440900px;}
.yc7{bottom:617.018550px;}
.y92{bottom:617.078700px;}
.y55{bottom:617.078850px;}
.yfd{bottom:620.313750px;}
.y17{bottom:627.087900px;}
.yc6{bottom:635.098350px;}
.yfc{bottom:636.267450px;}
.y91{bottom:638.078700px;}
.y54{bottom:638.078850px;}
.y16{bottom:646.887750px;}
.yfb{bottom:649.767450px;}
.yc5{bottom:653.178000px;}
.y90{bottom:659.078700px;}
.y53{bottom:659.078850px;}
.y135{bottom:660.809400px;}
.yfa{bottom:663.267450px;}
.yc4{bottom:666.678000px;}
.y15{bottom:666.687900px;}
.yf9{bottom:679.221150px;}
.y125{bottom:680.078700px;}
.y52{bottom:680.078850px;}
.y134{bottom:680.609400px;}
.yc3{bottom:684.757800px;}
.y14{bottom:686.487900px;}
.yf8{bottom:692.721150px;}
.y8f{bottom:693.513450px;}
.y142{bottom:693.513600px;}
.yc2{bottom:698.257800px;}
.y124{bottom:701.078700px;}
.y51{bottom:701.078850px;}
.yf7{bottom:706.221150px;}
.y13{bottom:706.287900px;}
.y13e{bottom:706.529250px;}
.yc1{bottom:716.337450px;}
.y123{bottom:722.078700px;}
.y50{bottom:722.078850px;}
.yf6{bottom:722.175000px;}
.y8e{bottom:725.811000px;}
.y141{bottom:725.811150px;}
.yd8{bottom:728.806650px;}
.yc0{bottom:729.837450px;}
.yf5{bottom:735.675000px;}
.y12{bottom:737.385300px;}
.y122{bottom:743.078700px;}
.y4f{bottom:743.078850px;}
.ybf{bottom:747.917250px;}
.yd7{bottom:748.606650px;}
.yf4{bottom:749.175000px;}
.y136{bottom:757.441050px;}
.yf3{bottom:762.675000px;}
.y121{bottom:764.078700px;}
.y4e{bottom:764.078850px;}
.ybe{bottom:765.996900px;}
.yf2{bottom:778.628700px;}
.ybd{bottom:779.496900px;}
.y8d{bottom:785.078700px;}
.y4d{bottom:785.078850px;}
.yf1{bottom:792.128700px;}
.ybc{bottom:792.996900px;}
.y8c{bottom:806.078700px;}
.y4c{bottom:806.078850px;}
.ybb{bottom:806.496900px;}
.yf0{bottom:808.082400px;}
.yc{bottom:816.666900px;}
.yba{bottom:819.996900px;}
.yef{bottom:821.582400px;}
.y8b{bottom:827.078700px;}
.y4b{bottom:827.078850px;}
.yb{bottom:834.666900px;}
.yee{bottom:835.082400px;}
.yb9{bottom:838.376700px;}
.y8a{bottom:848.078700px;}
.y4a{bottom:848.078850px;}
.yed{bottom:848.582400px;}
.ya{bottom:852.666900px;}
.yec{bottom:862.082400px;}
.yb8{bottom:867.733500px;}
.y89{bottom:869.078700px;}
.y49{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.yeb{bottom:875.582400px;}
.y6c{bottom:883.441050px;}
.y8{bottom:888.666900px;}
.yea{bottom:889.082400px;}
.y88{bottom:890.078700px;}
.y48{bottom:890.078850px;}
.ye9{bottom:902.582400px;}
.y7{bottom:906.666900px;}
.y87{bottom:911.078700px;}
.y47{bottom:911.078850px;}
.ye8{bottom:916.082400px;}
.y6{bottom:924.666900px;}
.yb7{bottom:927.030900px;}
.ye7{bottom:929.582400px;}
.y86{bottom:932.078700px;}
.y46{bottom:932.078850px;}
.yb6{bottom:945.110550px;}
.ye6{bottom:945.536100px;}
.y85{bottom:953.078700px;}
.y45{bottom:953.078850px;}
.ye5{bottom:959.036100px;}
.y5{bottom:959.674650px;}
.yb5{bottom:963.190350px;}
.y84{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.ye4{bottom:974.989950px;}
.y4{bottom:979.474800px;}
.yb4{bottom:981.270150px;}
.ye3{bottom:988.489950px;}
.y83{bottom:995.078700px;}
.y43{bottom:995.078850px;}
.yb3{bottom:999.349800px;}
.y13d{bottom:1000.529250px;}
.ye2{bottom:1001.989950px;}
.ye1{bottom:1015.489950px;}
.y82{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.yb2{bottom:1017.429600px;}
.ye0{bottom:1028.989950px;}
.yb1{bottom:1035.509250px;}
.y81{bottom:1037.078700px;}
.y41{bottom:1037.078850px;}
.ydf{bottom:1044.943650px;}
.y2{bottom:1049.282550px;}
.yb0{bottom:1053.588900px;}
.y80{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.yde{bottom:1058.443650px;}
.yaf{bottom:1071.668700px;}
.ydd{bottom:1074.397350px;}
.y7f{bottom:1079.078700px;}
.y3f{bottom:1079.078850px;}
.yae{bottom:1090.048500px;}
.ydc{bottom:1090.351200px;}
.y13c{bottom:1100.078700px;}
.y3e{bottom:1100.078850px;}
.y11{bottom:1109.815500px;}
.y7e{bottom:1112.695800px;}
.y6b{bottom:1116.947850px;}
.ydb{bottom:1119.282900px;}
.yad{bottom:1119.405450px;}
.y3d{bottom:1121.078850px;}
.y13b{bottom:1125.451650px;}
.y39{bottom:1155.615300px;}
.y38{bottom:1175.115300px;}
.y3c{bottom:1178.691750px;}
.h16{height:31.972517px;}
.h12{height:33.448242px;}
.h14{height:34.125000px;}
.h6{height:34.446094px;}
.h15{height:36.380859px;}
.h2{height:38.039062px;}
.hf{height:38.273438px;}
.h5{height:38.531250px;}
.he{height:42.793945px;}
.h7{height:43.004883px;}
.hd{height:43.057617px;}
.h9{height:43.875000px;}
.h17{height:46.775391px;}
.h8{height:47.343750px;}
.hc{height:48.750000px;}
.h11{height:50.176758px;}
.h18{height:50.654297px;}
.hb{height:51.972656px;}
.h10{height:52.078125px;}
.h4{height:53.625000px;}
.ha{height:56.812500px;}
.h13{height:60.448242px;}
.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;}
.xa{left:107.068950px;}
.xc{left:108.286950px;}
.xe{left:112.251900px;}
.x5{left:119.576400px;}
.x6{left:121.047600px;}
.x7{left:123.420750px;}
.xd{left:124.958400px;}
.x28{left:194.896800px;}
.x4e{left:195.986100px;}
.x29{left:197.329650px;}
.x4f{left:199.088550px;}
.x26{left:201.982350px;}
.x27{left:203.459100px;}
.x16{left:204.735750px;}
.x25{left:206.371500px;}
.x18{left:208.199250px;}
.x17{left:210.775350px;}
.x47{left:212.613900px;}
.x39{left:218.589600px;}
.x3c{left:225.100800px;}
.x2a{left:230.666550px;}
.x15{left:233.416500px;}
.x19{left:241.120950px;}
.x44{left:242.287500px;}
.x4b{left:249.744900px;}
.x4{left:300.189000px;}
.x11{left:304.440900px;}
.xb{left:317.196900px;}
.x12{left:345.082500px;}
.x2d{left:350.427750px;}
.x53{left:351.796950px;}
.x2e{left:352.816950px;}
.x2f{left:355.177800px;}
.x50{left:356.411250px;}
.x1c{left:359.000400px;}
.x30{left:360.302550px;}
.x55{left:361.525500px;}
.x1b{left:362.958300px;}
.x54{left:366.391050px;}
.x5a{left:368.121450px;}
.x2b{left:370.495500px;}
.x48{left:371.764500px;}
.x2c{left:373.138500px;}
.x1a{left:376.668300px;}
.x4c{left:378.035100px;}
.x5b{left:385.059450px;}
.xf{left:389.217150px;}
.x3{left:396.050700px;}
.x45{left:399.610350px;}
.x3d{left:405.219450px;}
.x31{left:407.695800px;}
.x60{left:422.608200px;}
.x13{left:466.015800px;}
.x5c{left:508.147950px;}
.x3e{left:509.791650px;}
.x1e{left:511.126650px;}
.x4d{left:512.267400px;}
.x1d{left:513.695250px;}
.x3f{left:514.767000px;}
.x32{left:517.397550px;}
.x61{left:518.543400px;}
.x33{left:520.704300px;}
.x1f{left:523.319250px;}
.x22{left:525.021450px;}
.x3a{left:529.384650px;}
.x59{left:533.962950px;}
.x56{left:536.101350px;}
.x34{left:546.458250px;}
.x42{left:557.199750px;}
.x5d{left:562.527000px;}
.x62{left:566.269650px;}
.x40{left:569.571750px;}
.x46{left:579.931050px;}
.x10{left:585.462300px;}
.x9{left:648.674850px;}
.x51{left:665.567850px;}
.x37{left:667.528800px;}
.x58{left:669.515700px;}
.x20{left:671.100150px;}
.x5e{left:672.250800px;}
.x8{left:674.209950px;}
.x36{left:675.445350px;}
.x23{left:679.057500px;}
.x57{left:680.654550px;}
.x35{left:684.397350px;}
.x49{left:687.525150px;}
.x41{left:693.198300px;}
.x63{left:698.333100px;}
.x38{left:704.206200px;}
.x52{left:705.895650px;}
.x43{left:707.838750px;}
.x4a{left:715.599000px;}
.x24{left:717.513900px;}
.x5f{left:720.274950px;}
.x21{left:724.884300px;}
.x3b{left:737.679150px;}
.x14{left:800.689800px;}
.x1{left:807.210300px;}
@media print{
.v2{vertical-align:-19.536533pt;}
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:12.432000pt;}
.v7{vertical-align:15.984000pt;}
.v6{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:24.000000pt;}
.ls21{letter-spacing:-6.432000pt;}
.ls20{letter-spacing:-2.880000pt;}
.ls26{letter-spacing:-0.960000pt;}
.ls16{letter-spacing:-0.746667pt;}
.lsb{letter-spacing:-0.614400pt;}
.ls9{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.533333pt;}
.ls28{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.453333pt;}
.ls17{letter-spacing:-0.435307pt;}
.lsa{letter-spacing:-0.362667pt;}
.ls7{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.000533pt;}
.ls1d{letter-spacing:0.001067pt;}
.ls1a{letter-spacing:0.007467pt;}
.ls3{letter-spacing:0.010133pt;}
.ls10{letter-spacing:0.010667pt;}
.ls11{letter-spacing:0.011200pt;}
.ls27{letter-spacing:0.012267pt;}
.lsf{letter-spacing:0.013333pt;}
.ls1e{letter-spacing:0.020800pt;}
.ls1c{letter-spacing:0.021333pt;}
.ls1f{letter-spacing:0.021867pt;}
.ls6{letter-spacing:0.022933pt;}
.lsd{letter-spacing:0.522667pt;}
.lsc{letter-spacing:0.533333pt;}
.ls23{letter-spacing:0.606613pt;}
.ls24{letter-spacing:0.607147pt;}
.ls4{letter-spacing:0.960000pt;}
.ls22{letter-spacing:1.066667pt;}
.ls19{letter-spacing:2.585600pt;}
.ls5{letter-spacing:10.031467pt;}
.ls18{letter-spacing:12.000000pt;}
.ls25{letter-spacing:13.487467pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ls2{letter-spacing:38.401104pt;}
.ls13{letter-spacing:202.658219pt;}
.ls14{letter-spacing:316.194667pt;}
.ls15{letter-spacing:354.178133pt;}
.ls12{letter-spacing:386.238688pt;}
.wsad{word-spacing:-53.333333pt;}
.wsa3{word-spacing:-37.333333pt;}
.ws1{word-spacing:-22.032000pt;}
.ws0{word-spacing:-21.941333pt;}
.ws9{word-spacing:-15.936000pt;}
.wscd{word-spacing:-14.826667pt;}
.wsdf{word-spacing:-14.608000pt;}
.ws30{word-spacing:-13.760000pt;}
.ws2f{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.280000pt;}
.ws52{word-spacing:-13.226667pt;}
.wsac{word-spacing:-13.173333pt;}
.wsa{word-spacing:-13.066667pt;}
.ws53{word-spacing:-12.693333pt;}
.wsbe{word-spacing:-11.952000pt;}
.wsbf{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.760000pt;}
.wsf2{word-spacing:-10.944000pt;}
.wsd{word-spacing:-10.800000pt;}
.wsb{word-spacing:-10.464000pt;}
.ws5{word-spacing:-9.685333pt;}
.ws2d{word-spacing:-9.600000pt;}
.wse{word-spacing:-9.301333pt;}
.ws8a{word-spacing:-9.258667pt;}
.ws8b{word-spacing:-9.146667pt;}
.ws9b{word-spacing:-8.512000pt;}
.ws4{word-spacing:-8.482261pt;}
.ws98{word-spacing:-8.474667pt;}
.ws6{word-spacing:-8.371200pt;}
.ws51{word-spacing:-7.711147pt;}
.wsfc{word-spacing:-6.940032pt;}
.wseb{word-spacing:-3.466667pt;}
.ws6b{word-spacing:-2.933333pt;}
.ws8f{word-spacing:-2.613333pt;}
.ws8e{word-spacing:-2.560000pt;}
.ws39{word-spacing:-2.506667pt;}
.ws38{word-spacing:-2.453333pt;}
.ws1a{word-spacing:-2.400000pt;}
.ws102{word-spacing:-2.304000pt;}
.ws37{word-spacing:-2.080000pt;}
.wsd0{word-spacing:-1.973333pt;}
.wsff{word-spacing:-1.968000pt;}
.ws113{word-spacing:-1.920000pt;}
.ws62{word-spacing:-1.813333pt;}
.wsfa{word-spacing:-1.728000pt;}
.wscf{word-spacing:-1.706667pt;}
.ws5e{word-spacing:-1.653333pt;}
.wsb8{word-spacing:-1.600000pt;}
.wsbd{word-spacing:-1.493333pt;}
.ws69{word-spacing:-1.440000pt;}
.ws31{word-spacing:-1.386667pt;}
.wsce{word-spacing:-1.280000pt;}
.ws70{word-spacing:-1.173333pt;}
.ws83{word-spacing:-1.120000pt;}
.wsc0{word-spacing:-1.104000pt;}
.ws48{word-spacing:-1.066667pt;}
.wsc1{word-spacing:-1.056000pt;}
.ws7d{word-spacing:-1.013333pt;}
.ws100{word-spacing:-1.008000pt;}
.ws6c{word-spacing:-0.960000pt;}
.wsef{word-spacing:-0.912000pt;}
.ws21{word-spacing:-0.906667pt;}
.wsb4{word-spacing:-0.853333pt;}
.ws92{word-spacing:-0.800000pt;}
.ws44{word-spacing:-0.746667pt;}
.ws4f{word-spacing:-0.640000pt;}
.ws89{word-spacing:-0.624000pt;}
.wsf1{word-spacing:-0.576000pt;}
.ws40{word-spacing:-0.533333pt;}
.wsc6{word-spacing:-0.528000pt;}
.wse9{word-spacing:-0.426667pt;}
.ws66{word-spacing:-0.410667pt;}
.ws101{word-spacing:-0.384000pt;}
.ws103{word-spacing:-0.336000pt;}
.wse6{word-spacing:-0.320000pt;}
.ws20{word-spacing:-0.288000pt;}
.ws32{word-spacing:-0.266667pt;}
.ws12{word-spacing:-0.192000pt;}
.ws3c{word-spacing:-0.160000pt;}
.ws117{word-spacing:-0.144000pt;}
.ws5f{word-spacing:-0.053333pt;}
.wsc{word-spacing:-0.048000pt;}
.ws2e{word-spacing:-0.042667pt;}
.wsf{word-spacing:0.000000pt;}
.wsc8{word-spacing:0.048000pt;}
.ws10f{word-spacing:0.096000pt;}
.wsbb{word-spacing:0.106667pt;}
.ws23{word-spacing:0.160000pt;}
.ws93{word-spacing:0.224000pt;}
.ws94{word-spacing:0.288000pt;}
.wsc4{word-spacing:0.336000pt;}
.ws95{word-spacing:0.384000pt;}
.ws10e{word-spacing:0.432000pt;}
.wsab{word-spacing:0.435307pt;}
.ws18{word-spacing:0.480000pt;}
.ws110{word-spacing:0.528000pt;}
.ws46{word-spacing:0.533333pt;}
.ws10{word-spacing:0.544000pt;}
.ws13{word-spacing:0.614400pt;}
.ws43{word-spacing:0.640000pt;}
.ws10d{word-spacing:0.672000pt;}
.wsf9{word-spacing:0.720000pt;}
.ws50{word-spacing:0.746667pt;}
.ws2c{word-spacing:0.906667pt;}
.ws7e{word-spacing:0.960000pt;}
.ws76{word-spacing:1.013333pt;}
.wsfe{word-spacing:1.056000pt;}
.ws115{word-spacing:1.104000pt;}
.wsbc{word-spacing:1.120000pt;}
.ws119{word-spacing:1.152000pt;}
.wsed{word-spacing:1.173333pt;}
.ws68{word-spacing:1.226667pt;}
.ws41{word-spacing:1.333333pt;}
.wsb7{word-spacing:1.386667pt;}
.wsf7{word-spacing:1.392000pt;}
.ws24{word-spacing:1.440000pt;}
.ws84{word-spacing:1.493333pt;}
.ws111{word-spacing:1.536000pt;}
.ws60{word-spacing:1.546667pt;}
.ws35{word-spacing:1.653333pt;}
.wsf5{word-spacing:1.680000pt;}
.ws74{word-spacing:1.706667pt;}
.ws112{word-spacing:1.872000pt;}
.ws81{word-spacing:1.920000pt;}
.ws118{word-spacing:1.968000pt;}
.ws80{word-spacing:1.973333pt;}
.wsf8{word-spacing:2.064000pt;}
.ws3f{word-spacing:2.080000pt;}
.wsf6{word-spacing:2.160000pt;}
.ws88{word-spacing:2.208000pt;}
.wsb1{word-spacing:2.240000pt;}
.ws87{word-spacing:2.256000pt;}
.ws7b{word-spacing:2.346667pt;}
.ws22{word-spacing:2.400000pt;}
.ws47{word-spacing:2.506667pt;}
.wsb2{word-spacing:2.560000pt;}
.wsb3{word-spacing:2.613333pt;}
.ws86{word-spacing:2.666667pt;}
.ws104{word-spacing:2.688000pt;}
.ws65{word-spacing:2.720000pt;}
.wscb{word-spacing:2.736000pt;}
.ws6f{word-spacing:2.773333pt;}
.ws42{word-spacing:2.826667pt;}
.wscc{word-spacing:2.832000pt;}
.ws4b{word-spacing:2.880000pt;}
.ws15{word-spacing:2.928000pt;}
.wsd4{word-spacing:2.933333pt;}
.wsd3{word-spacing:2.986667pt;}
.wsfd{word-spacing:3.072000pt;}
.ws26{word-spacing:3.146667pt;}
.ws3d{word-spacing:3.200000pt;}
.wsc5{word-spacing:3.216000pt;}
.ws11c{word-spacing:3.360000pt;}
.ws10c{word-spacing:3.456000pt;}
.ws72{word-spacing:3.573333pt;}
.ws71{word-spacing:3.626667pt;}
.wse5{word-spacing:3.680000pt;}
.wsf0{word-spacing:3.696000pt;}
.wse4{word-spacing:3.733333pt;}
.ws7f{word-spacing:3.786667pt;}
.ws14{word-spacing:3.792000pt;}
.ws5d{word-spacing:3.840000pt;}
.wsb5{word-spacing:3.893333pt;}
.ws17{word-spacing:3.936000pt;}
.wsb6{word-spacing:3.946667pt;}
.ws16{word-spacing:3.984000pt;}
.ws29{word-spacing:4.000000pt;}
.ws10b{word-spacing:4.080000pt;}
.ws91{word-spacing:4.160000pt;}
.ws3e{word-spacing:4.213333pt;}
.ws25{word-spacing:4.266667pt;}
.wsf4{word-spacing:4.272000pt;}
.ws5c{word-spacing:4.320000pt;}
.ws75{word-spacing:4.373333pt;}
.wsee{word-spacing:4.512000pt;}
.ws4e{word-spacing:4.533333pt;}
.ws67{word-spacing:4.693333pt;}
.ws90{word-spacing:4.746667pt;}
.ws4c{word-spacing:4.853333pt;}
.ws3b{word-spacing:4.906667pt;}
.ws3a{word-spacing:4.960000pt;}
.ws7c{word-spacing:5.013333pt;}
.ws1b{word-spacing:5.040000pt;}
.ws77{word-spacing:5.066667pt;}
.wsca{word-spacing:5.136000pt;}
.wsc2{word-spacing:5.184000pt;}
.wsc3{word-spacing:5.232000pt;}
.ws36{word-spacing:5.386667pt;}
.ws64{word-spacing:5.440000pt;}
.ws114{word-spacing:5.472000pt;}
.wsb0{word-spacing:5.493333pt;}
.ws82{word-spacing:5.546667pt;}
.wsd9{word-spacing:5.600000pt;}
.wse0{word-spacing:5.653333pt;}
.ws4d{word-spacing:5.706667pt;}
.ws34{word-spacing:5.760000pt;}
.wsc7{word-spacing:5.904000pt;}
.ws2b{word-spacing:5.973333pt;}
.ws116{word-spacing:6.000000pt;}
.ws2a{word-spacing:6.026667pt;}
.ws106{word-spacing:6.096000pt;}
.wsb9{word-spacing:6.133333pt;}
.wsf3{word-spacing:6.144000pt;}
.ws63{word-spacing:6.186667pt;}
.wse7{word-spacing:6.240000pt;}
.wse8{word-spacing:6.293333pt;}
.ws4a{word-spacing:6.346667pt;}
.ws49{word-spacing:6.400000pt;}
.wsc9{word-spacing:6.432000pt;}
.ws27{word-spacing:6.453333pt;}
.ws78{word-spacing:6.506667pt;}
.ws6d{word-spacing:6.720000pt;}
.wsec{word-spacing:6.773333pt;}
.ws33{word-spacing:6.826667pt;}
.ws105{word-spacing:6.912000pt;}
.ws7a{word-spacing:6.933333pt;}
.ws19{word-spacing:6.960000pt;}
.ws5b{word-spacing:6.986667pt;}
.wsba{word-spacing:7.093333pt;}
.ws59{word-spacing:7.146667pt;}
.ws45{word-spacing:7.253333pt;}
.ws1f{word-spacing:7.344000pt;}
.ws73{word-spacing:7.520000pt;}
.ws79{word-spacing:7.680000pt;}
.ws108{word-spacing:7.920000pt;}
.ws28{word-spacing:7.946667pt;}
.ws11{word-spacing:8.096000pt;}
.wsd2{word-spacing:8.213333pt;}
.ws6a{word-spacing:8.586667pt;}
.ws5a{word-spacing:8.693333pt;}
.ws61{word-spacing:8.746667pt;}
.wse1{word-spacing:8.800000pt;}
.ws85{word-spacing:8.853333pt;}
.ws1c{word-spacing:9.024000pt;}
.ws1e{word-spacing:9.072000pt;}
.ws11a{word-spacing:9.120000pt;}
.ws1d{word-spacing:9.168000pt;}
.wsd1{word-spacing:9.546667pt;}
.wsd8{word-spacing:9.706667pt;}
.wsd7{word-spacing:9.760000pt;}
.wsaf{word-spacing:9.973333pt;}
.wsea{word-spacing:10.293333pt;}
.wsde{word-spacing:10.416000pt;}
.wsdd{word-spacing:10.512000pt;}
.wsdc{word-spacing:10.560000pt;}
.wsda{word-spacing:10.933333pt;}
.wsdb{word-spacing:11.093333pt;}
.ws109{word-spacing:11.136000pt;}
.wsfb{word-spacing:11.568000pt;}
.ws6e{word-spacing:11.946667pt;}
.wsae{word-spacing:12.000000pt;}
.wsd6{word-spacing:12.693333pt;}
.wse2{word-spacing:12.853333pt;}
.wse3{word-spacing:12.960000pt;}
.wsd5{word-spacing:13.493333pt;}
.ws10a{word-spacing:14.976000pt;}
.ws107{word-spacing:15.360000pt;}
.ws11b{word-spacing:22.032000pt;}
.ws2{word-spacing:29.911587pt;}
.ws3{word-spacing:29.912120pt;}
.ws55{word-spacing:79.662933pt;}
.ws56{word-spacing:79.691200pt;}
.ws58{word-spacing:86.711467pt;}
.ws54{word-spacing:131.975467pt;}
.ws9f{word-spacing:151.555733pt;}
.wsaa{word-spacing:154.196800pt;}
.wsa5{word-spacing:160.558400pt;}
.wsa8{word-spacing:166.245867pt;}
.wsa9{word-spacing:188.992000pt;}
.wsa1{word-spacing:190.744000pt;}
.wsa4{word-spacing:197.994667pt;}
.wsa2{word-spacing:201.536533pt;}
.wsa7{word-spacing:209.332267pt;}
.wsa6{word-spacing:236.669333pt;}
.ws9d{word-spacing:236.920000pt;}
.ws57{word-spacing:244.622933pt;}
.ws96{word-spacing:263.569067pt;}
.ws99{word-spacing:295.448000pt;}
.ws9e{word-spacing:303.124800pt;}
.ws9a{word-spacing:315.100267pt;}
.ws97{word-spacing:320.263659pt;}
.ws9c{word-spacing:331.780267pt;}
.ws8c{word-spacing:408.288000pt;}
.ws8d{word-spacing:416.773867pt;}
.wsa0{word-spacing:536.242133pt;}
._3d{margin-left:-10.658133pt;}
._9{margin-left:-9.232000pt;}
._8{margin-left:-8.148800pt;}
._2{margin-left:-6.047467pt;}
._41{margin-left:-5.156800pt;}
._3{margin-left:-4.258133pt;}
._6{margin-left:-3.360000pt;}
._4{margin-left:-2.412301pt;}
._0{margin-left:-1.224000pt;}
._1{width:1.718400pt;}
._b{width:3.045867pt;}
._7{width:4.241067pt;}
._d{width:5.325867pt;}
._c{width:6.296000pt;}
._3f{width:7.417600pt;}
._43{width:8.420800pt;}
._e{width:9.810667pt;}
._a{width:10.704000pt;}
._40{width:11.865600pt;}
._3e{width:14.890667pt;}
._5{width:32.554667pt;}
._3a{width:37.336533pt;}
._42{width:38.297600pt;}
._2d{width:46.512533pt;}
._37{width:65.128533pt;}
._38{width:85.415501pt;}
._2c{width:95.912533pt;}
._2b{width:98.995200pt;}
._2a{width:110.464533pt;}
._15{width:128.866701pt;}
._36{width:134.577600pt;}
._13{width:141.482133pt;}
._14{width:155.628267pt;}
._11{width:158.441600pt;}
._35{width:161.905101pt;}
._28{width:162.925867pt;}
._23{width:165.389867pt;}
._24{width:173.080533pt;}
._34{width:202.062435pt;}
._16{width:203.763200pt;}
._27{width:208.435200pt;}
._33{width:222.169635pt;}
._2f{width:238.135467pt;}
._12{width:248.888000pt;}
._32{width:286.238400pt;}
._3b{width:291.560000pt;}
._39{width:314.929600pt;}
._26{width:325.139200pt;}
._25{width:335.293867pt;}
._f{width:338.378667pt;}
._29{width:347.786168pt;}
._2e{width:371.447467pt;}
._3c{width:377.051200pt;}
._22{width:378.675200pt;}
._30{width:383.541333pt;}
._31{width:385.613333pt;}
._10{width:435.298133pt;}
._17{width:686.220800pt;}
._21{width:699.398400pt;}
._1d{width:985.540267pt;}
._1c{width:1047.457067pt;}
._1a{width:1052.692267pt;}
._19{width:1055.426667pt;}
._1b{width:1088.308267pt;}
._1f{width:1148.210667pt;}
._18{width:1151.965333pt;}
._1e{width:1157.675200pt;}
._20{width:1208.378667pt;}
.fsa{font-size:21.765333pt;}
.fsb{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.698800pt;}
.ya8{bottom:100.514400pt;}
.y6a{bottom:100.514533pt;}
.y7d{bottom:102.580533pt;}
.y2b{bottom:104.189067pt;}
.y10{bottom:104.778267pt;}
.y120{bottom:105.221467pt;}
.y133{bottom:107.111733pt;}
.yda{bottom:107.111867pt;}
.y7c{bottom:117.139600pt;}
.yf{bottom:117.578267pt;}
.ya7{bottom:119.181067pt;}
.y69{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.y11f{bottom:123.760133pt;}
.y132{bottom:124.711733pt;}
.yd9{bottom:124.711867pt;}
.ye{bottom:130.378267pt;}
.y7b{bottom:131.698667pt;}
.ya6{bottom:137.847733pt;}
.y68{bottom:137.847867pt;}
.y11e{bottom:137.941200pt;}
.y29{bottom:141.522400pt;}
.y131{bottom:142.311733pt;}
.yd{bottom:143.178267pt;}
.y7a{bottom:146.257733pt;}
.y11d{bottom:149.941200pt;}
.ya5{bottom:156.514400pt;}
.y67{bottom:156.514533pt;}
.y79{bottom:158.257733pt;}
.y130{bottom:159.911733pt;}
.y28{bottom:160.189067pt;}
.y11c{bottom:161.941200pt;}
.y78{bottom:172.816800pt;}
.ya4{bottom:175.181067pt;}
.y66{bottom:175.181200pt;}
.y11b{bottom:176.122267pt;}
.y37{bottom:177.237867pt;}
.y27{bottom:178.855733pt;}
.y77{bottom:184.816800pt;}
.y11a{bottom:188.122267pt;}
.y36{bottom:193.237867pt;}
.ya3{bottom:193.847733pt;}
.y65{bottom:193.847867pt;}
.y26{bottom:197.522400pt;}
.y76{bottom:199.375867pt;}
.y119{bottom:202.303333pt;}
.y35{bottom:209.237867pt;}
.y75{bottom:211.375867pt;}
.ya2{bottom:212.514400pt;}
.y64{bottom:212.514533pt;}
.y118{bottom:214.303333pt;}
.y25{bottom:216.189067pt;}
.y12f{bottom:225.200533pt;}
.y34{bottom:225.237867pt;}
.y74{bottom:226.201600pt;}
.y117{bottom:226.303333pt;}
.ya1{bottom:231.181067pt;}
.y63{bottom:231.181200pt;}
.y24{bottom:234.855733pt;}
.y73{bottom:238.201600pt;}
.y116{bottom:238.303333pt;}
.y33{bottom:241.237867pt;}
.y12e{bottom:242.800533pt;}
.ya0{bottom:249.847733pt;}
.y62{bottom:249.847867pt;}
.y115{bottom:250.303333pt;}
.y23{bottom:253.522400pt;}
.y13a{bottom:254.692800pt;}
.y32{bottom:257.237867pt;}
.y12d{bottom:260.400533pt;}
.y72{bottom:264.296533pt;}
.y114{bottom:264.484400pt;}
.y9f{bottom:268.514400pt;}
.y61{bottom:268.514533pt;}
.y22{bottom:272.189067pt;}
.y31{bottom:273.237867pt;}
.y113{bottom:276.484400pt;}
.y12c{bottom:278.000533pt;}
.ya9{bottom:280.023600pt;}
.y9e{bottom:287.181067pt;}
.y60{bottom:287.181200pt;}
.y30{bottom:289.237867pt;}
.y112{bottom:290.665600pt;}
.y21{bottom:290.855733pt;}
.y12b{bottom:295.600533pt;}
.y111{bottom:304.846667pt;}
.y9d{bottom:305.847733pt;}
.y5f{bottom:305.847867pt;}
.y20{bottom:309.522400pt;}
.y139{bottom:310.692800pt;}
.y12a{bottom:313.200533pt;}
.yd6{bottom:316.386933pt;}
.y110{bottom:316.846667pt;}
.y2f{bottom:320.356000pt;}
.yac{bottom:324.407467pt;}
.y9c{bottom:324.514400pt;}
.y5e{bottom:324.514533pt;}
.yd5{bottom:328.386933pt;}
.y10f{bottom:328.846667pt;}
.y129{bottom:330.800533pt;}
.y2e{bottom:336.356000pt;}
.y1f{bottom:339.954133pt;}
.y10e{bottom:340.846667pt;}
.yab{bottom:342.007467pt;}
.y9b{bottom:343.181067pt;}
.y5d{bottom:343.181200pt;}
.yd4{bottom:347.681467pt;}
.y2d{bottom:352.356000pt;}
.y10d{bottom:352.846667pt;}
.yaa{bottom:359.607467pt;}
.y128{bottom:361.847733pt;}
.y71{bottom:361.847867pt;}
.yd3{bottom:363.752267pt;}
.y10c{bottom:364.846667pt;}
.y138{bottom:366.692800pt;}
.y2c{bottom:368.356000pt;}
.y5c{bottom:373.789867pt;}
.y9a{bottom:374.614133pt;}
.y10b{bottom:376.846667pt;}
.yd2{bottom:379.823200pt;}
.y127{bottom:380.514400pt;}
.y70{bottom:380.514533pt;}
.y10a{bottom:391.027733pt;}
.yd1{bottom:395.894000pt;}
.y126{bottom:399.181067pt;}
.y6f{bottom:399.181200pt;}
.y5b{bottom:402.498800pt;}
.y109{bottom:403.027733pt;}
.yd0{bottom:411.964933pt;}
.y108{bottom:415.027733pt;}
.y1e{bottom:415.313733pt;}
.y99{bottom:417.847733pt;}
.y6e{bottom:417.847867pt;}
.y137{bottom:423.055200pt;}
.y107{bottom:427.027733pt;}
.ycf{bottom:428.035733pt;}
.y98{bottom:436.514400pt;}
.y140{bottom:436.514533pt;}
.y106{bottom:439.027733pt;}
.yce{bottom:440.035733pt;}
.y6d{bottom:449.280933pt;}
.y105{bottom:451.027733pt;}
.y1d{bottom:451.811467pt;}
.y97{bottom:455.181067pt;}
.y5a{bottom:455.181200pt;}
.ycd{bottom:456.106667pt;}
.y104{bottom:463.027733pt;}
.y1c{bottom:469.411467pt;}
.ycc{bottom:472.177467pt;}
.y96{bottom:473.847733pt;}
.y59{bottom:473.847867pt;}
.y103{bottom:477.208800pt;}
.y1b{bottom:487.011333pt;}
.ycb{bottom:488.248400pt;}
.y102{bottom:489.208800pt;}
.y95{bottom:492.514400pt;}
.y58{bottom:492.514533pt;}
.y101{bottom:501.208800pt;}
.yca{bottom:504.319200pt;}
.y1a{bottom:504.611467pt;}
.y94{bottom:511.181067pt;}
.y57{bottom:511.181200pt;}
.y100{bottom:513.208800pt;}
.yc9{bottom:520.390000pt;}
.y19{bottom:522.211467pt;}
.yff{bottom:525.208800pt;}
.y93{bottom:529.847733pt;}
.y56{bottom:529.847867pt;}
.yc8{bottom:536.460933pt;}
.yfe{bottom:539.390000pt;}
.y18{bottom:539.811467pt;}
.y13f{bottom:542.614133pt;}
.yc7{bottom:548.460933pt;}
.y92{bottom:548.514400pt;}
.y55{bottom:548.514533pt;}
.yfd{bottom:551.390000pt;}
.y17{bottom:557.411467pt;}
.yc6{bottom:564.531867pt;}
.yfc{bottom:565.571067pt;}
.y91{bottom:567.181067pt;}
.y54{bottom:567.181200pt;}
.y16{bottom:575.011333pt;}
.yfb{bottom:577.571067pt;}
.yc5{bottom:580.602667pt;}
.y90{bottom:585.847733pt;}
.y53{bottom:585.847867pt;}
.y135{bottom:587.386133pt;}
.yfa{bottom:589.571067pt;}
.yc4{bottom:592.602667pt;}
.y15{bottom:592.611467pt;}
.yf9{bottom:603.752133pt;}
.y125{bottom:604.514400pt;}
.y52{bottom:604.514533pt;}
.y134{bottom:604.986133pt;}
.yc3{bottom:608.673600pt;}
.y14{bottom:610.211467pt;}
.yf8{bottom:615.752133pt;}
.y8f{bottom:616.456400pt;}
.y142{bottom:616.456533pt;}
.yc2{bottom:620.673600pt;}
.y124{bottom:623.181067pt;}
.y51{bottom:623.181200pt;}
.yf7{bottom:627.752133pt;}
.y13{bottom:627.811467pt;}
.y13e{bottom:628.026000pt;}
.yc1{bottom:636.744400pt;}
.y123{bottom:641.847733pt;}
.y50{bottom:641.847867pt;}
.yf6{bottom:641.933333pt;}
.y8e{bottom:645.165333pt;}
.y141{bottom:645.165467pt;}
.yd8{bottom:647.828133pt;}
.yc0{bottom:648.744400pt;}
.yf5{bottom:653.933333pt;}
.y12{bottom:655.453600pt;}
.y122{bottom:660.514400pt;}
.y4f{bottom:660.514533pt;}
.ybf{bottom:664.815333pt;}
.yd7{bottom:665.428133pt;}
.yf4{bottom:665.933333pt;}
.y136{bottom:673.280933pt;}
.yf3{bottom:677.933333pt;}
.y121{bottom:679.181067pt;}
.y4e{bottom:679.181200pt;}
.ybe{bottom:680.886133pt;}
.yf2{bottom:692.114400pt;}
.ybd{bottom:692.886133pt;}
.y8d{bottom:697.847733pt;}
.y4d{bottom:697.847867pt;}
.yf1{bottom:704.114400pt;}
.ybc{bottom:704.886133pt;}
.y8c{bottom:716.514400pt;}
.y4c{bottom:716.514533pt;}
.ybb{bottom:716.886133pt;}
.yf0{bottom:718.295467pt;}
.yc{bottom:725.926133pt;}
.yba{bottom:728.886133pt;}
.yef{bottom:730.295467pt;}
.y8b{bottom:735.181067pt;}
.y4b{bottom:735.181200pt;}
.yb{bottom:741.926133pt;}
.yee{bottom:742.295467pt;}
.yb9{bottom:745.223733pt;}
.y8a{bottom:753.847733pt;}
.y4a{bottom:753.847867pt;}
.yed{bottom:754.295467pt;}
.ya{bottom:757.926133pt;}
.yec{bottom:766.295467pt;}
.yb8{bottom:771.318667pt;}
.y89{bottom:772.514400pt;}
.y49{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.yeb{bottom:778.295467pt;}
.y6c{bottom:785.280933pt;}
.y8{bottom:789.926133pt;}
.yea{bottom:790.295467pt;}
.y88{bottom:791.181067pt;}
.y48{bottom:791.181200pt;}
.ye9{bottom:802.295467pt;}
.y7{bottom:805.926133pt;}
.y87{bottom:809.847733pt;}
.y47{bottom:809.847867pt;}
.ye8{bottom:814.295467pt;}
.y6{bottom:821.926133pt;}
.yb7{bottom:824.027467pt;}
.ye7{bottom:826.295467pt;}
.y86{bottom:828.514400pt;}
.y46{bottom:828.514533pt;}
.yb6{bottom:840.098267pt;}
.ye6{bottom:840.476533pt;}
.y85{bottom:847.181067pt;}
.y45{bottom:847.181200pt;}
.ye5{bottom:852.476533pt;}
.y5{bottom:853.044133pt;}
.yb5{bottom:856.169200pt;}
.y84{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.ye4{bottom:866.657733pt;}
.y4{bottom:870.644267pt;}
.yb4{bottom:872.240133pt;}
.ye3{bottom:878.657733pt;}
.y83{bottom:884.514400pt;}
.y43{bottom:884.514533pt;}
.yb3{bottom:888.310933pt;}
.y13d{bottom:889.359333pt;}
.ye2{bottom:890.657733pt;}
.ye1{bottom:902.657733pt;}
.y82{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.yb2{bottom:904.381867pt;}
.ye0{bottom:914.657733pt;}
.yb1{bottom:920.452667pt;}
.y81{bottom:921.847733pt;}
.y41{bottom:921.847867pt;}
.ydf{bottom:928.838800pt;}
.y2{bottom:932.695600pt;}
.yb0{bottom:936.523467pt;}
.y80{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.yde{bottom:940.838800pt;}
.yaf{bottom:952.594400pt;}
.ydd{bottom:955.019867pt;}
.y7f{bottom:959.181067pt;}
.y3f{bottom:959.181200pt;}
.yae{bottom:968.932000pt;}
.ydc{bottom:969.201067pt;}
.y13c{bottom:977.847733pt;}
.y3e{bottom:977.847867pt;}
.y11{bottom:986.502667pt;}
.y7e{bottom:989.062933pt;}
.y6b{bottom:992.842533pt;}
.ydb{bottom:994.918133pt;}
.yad{bottom:995.027067pt;}
.y3d{bottom:996.514533pt;}
.y13b{bottom:1000.401467pt;}
.y39{bottom:1027.213600pt;}
.y38{bottom:1044.546933pt;}
.y3c{bottom:1047.726000pt;}
.h16{height:28.420015pt;}
.h12{height:29.731771pt;}
.h14{height:30.333333pt;}
.h6{height:30.618750pt;}
.h15{height:32.338542pt;}
.h2{height:33.812500pt;}
.hf{height:34.020833pt;}
.h5{height:34.250000pt;}
.he{height:38.039062pt;}
.h7{height:38.226562pt;}
.hd{height:38.273438pt;}
.h9{height:39.000000pt;}
.h17{height:41.578125pt;}
.h8{height:42.083333pt;}
.hc{height:43.333333pt;}
.h11{height:44.601562pt;}
.h18{height:45.026042pt;}
.hb{height:46.197917pt;}
.h10{height:46.291667pt;}
.h4{height:47.666667pt;}
.ha{height:50.500000pt;}
.h13{height:53.731771pt;}
.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;}
.xa{left:95.172400pt;}
.xc{left:96.255067pt;}
.xe{left:99.779467pt;}
.x5{left:106.290133pt;}
.x6{left:107.597867pt;}
.x7{left:109.707333pt;}
.xd{left:111.074133pt;}
.x28{left:173.241600pt;}
.x4e{left:174.209867pt;}
.x29{left:175.404133pt;}
.x4f{left:176.967600pt;}
.x26{left:179.539867pt;}
.x27{left:180.852533pt;}
.x16{left:181.987333pt;}
.x25{left:183.441333pt;}
.x18{left:185.066000pt;}
.x17{left:187.355867pt;}
.x47{left:188.990133pt;}
.x39{left:194.301867pt;}
.x3c{left:200.089600pt;}
.x2a{left:205.036933pt;}
.x15{left:207.481333pt;}
.x19{left:214.329733pt;}
.x44{left:215.366667pt;}
.x4b{left:221.995467pt;}
.x4{left:266.834667pt;}
.x11{left:270.614133pt;}
.xb{left:281.952800pt;}
.x12{left:306.740000pt;}
.x2d{left:311.491333pt;}
.x53{left:312.708400pt;}
.x2e{left:313.615067pt;}
.x2f{left:315.713600pt;}
.x50{left:316.810000pt;}
.x1c{left:319.111467pt;}
.x30{left:320.268933pt;}
.x55{left:321.356000pt;}
.x1b{left:322.629600pt;}
.x54{left:325.680933pt;}
.x5a{left:327.219067pt;}
.x2b{left:329.329333pt;}
.x48{left:330.457333pt;}
.x2c{left:331.678667pt;}
.x1a{left:334.816267pt;}
.x4c{left:336.031200pt;}
.x5b{left:342.275067pt;}
.xf{left:345.970800pt;}
.x3{left:352.045067pt;}
.x45{left:355.209200pt;}
.x3d{left:360.195067pt;}
.x31{left:362.396267pt;}
.x60{left:375.651733pt;}
.x13{left:414.236267pt;}
.x5c{left:451.687067pt;}
.x3e{left:453.148133pt;}
.x1e{left:454.334800pt;}
.x4d{left:455.348800pt;}
.x1d{left:456.618000pt;}
.x3f{left:457.570667pt;}
.x32{left:459.908933pt;}
.x61{left:460.927467pt;}
.x33{left:462.848267pt;}
.x1f{left:465.172667pt;}
.x22{left:466.685733pt;}
.x3a{left:470.564133pt;}
.x59{left:474.633733pt;}
.x56{left:476.534533pt;}
.x34{left:485.740667pt;}
.x42{left:495.288667pt;}
.x5d{left:500.024000pt;}
.x62{left:503.350800pt;}
.x40{left:506.286000pt;}
.x46{left:515.494267pt;}
.x10{left:520.410933pt;}
.x9{left:576.599867pt;}
.x51{left:591.615867pt;}
.x37{left:593.358933pt;}
.x58{left:595.125067pt;}
.x20{left:596.533467pt;}
.x5e{left:597.556267pt;}
.x8{left:599.297733pt;}
.x36{left:600.395867pt;}
.x23{left:603.606667pt;}
.x57{left:605.026267pt;}
.x35{left:608.353200pt;}
.x49{left:611.133467pt;}
.x41{left:616.176267pt;}
.x63{left:620.740533pt;}
.x38{left:625.961067pt;}
.x52{left:627.462800pt;}
.x43{left:629.190000pt;}
.x4a{left:636.088000pt;}
.x24{left:637.790133pt;}
.x5f{left:640.244400pt;}
.x21{left:644.341600pt;}
.x3b{left:655.714800pt;}
.x14{left:711.724267pt;}
.x1{left:717.520267pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  