
    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_78f567c938b541c7c8d54f65.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a0cc50e324cc8634bdf31e92.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.964863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_ff56372c7d79f3ea6a355f4a.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_107af9bade8c6e136ce89f1a.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_dd0258a1f7d1a01f4f612e18.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_eb8ccca7c83ce2d39be796c7.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_06a3da5c5a4d92d7c2d95c06.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_62c5601916a762c3c4e93ef2.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_c54408a71da2fc8fcef392c8.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.031738;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_ef7fc63bd0834e48d5e047e1.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;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_c303a5bf2168c7216b8e93eb.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.760345;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1d8d74da19c2ee146105067b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.771120;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_dbdc6db1005811f7b1dfd3a8.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e1e88dd211d075ea863482ed.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.921875;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_b9a49eb6271b535e87a14168.woff2')format("woff");}.fff{font-family:fff;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;}
@font-face{font-family:ff10;src:url('chunks/assets/font_ff5cb431bbedc17ed3a51216.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_6a51e4328143c5e3e47c01fb.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_98ae102c56cac5ea54e88990.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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:ff13;src:url('chunks/assets/font_fd67a8c50c2b36d44bae2dcd.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.730588;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:ff14;src:url('chunks/assets/font_dbdc6db1005811f7b1dfd3a8.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_0941c0380209e724bcfff9e8.woff2')format("woff");}.ff15{font-family:ff15;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;}
.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);}
.m3{transform:matrix(0.241484,0.000000,-0.064695,0.241484,0,0);-ms-transform:matrix(0.241484,0.000000,-0.064695,0.241484,0,0);-webkit-transform:matrix(0.241484,0.000000,-0.064695,0.241484,0,0);}
.m4{transform:matrix(0.249996,0.000000,-0.064695,0.241484,0,0);-ms-transform:matrix(0.249996,0.000000,-0.064695,0.241484,0,0);-webkit-transform:matrix(0.249996,0.000000,-0.064695,0.241484,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.978000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.lse{letter-spacing:-7.236000px;}
.lsd{letter-spacing:-3.240000px;}
.ls7{letter-spacing:-1.200000px;}
.ls6{letter-spacing:-1.020000px;}
.ls4{letter-spacing:-0.691200px;}
.lsa{letter-spacing:-0.600000px;}
.ls3{letter-spacing:-0.306000px;}
.ls10{letter-spacing:-0.300000px;}
.ls5{letter-spacing:-0.162000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.025200px;}
.lsb{letter-spacing:0.041378px;}
.ls9{letter-spacing:0.540000px;}
.lsc{letter-spacing:7.137000px;}
.lsf{letter-spacing:9.345000px;}
.ls8{letter-spacing:9.973200px;}
.ls0{letter-spacing:43.181364px;}
.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;}
}
.ws69{word-spacing:-60.000000px;}
.ws6{word-spacing:-17.928000px;}
.ws96{word-spacing:-16.434000px;}
.ws5{word-spacing:-14.940000px;}
.ws68{word-spacing:-14.880000px;}
.ws28{word-spacing:-14.700000px;}
.ws80{word-spacing:-14.400000px;}
.ws6a{word-spacing:-14.340000px;}
.ws7f{word-spacing:-14.100000px;}
.ws6b{word-spacing:-13.770000px;}
.ws7{word-spacing:-13.680000px;}
.ws79{word-spacing:-13.446000px;}
.wsab{word-spacing:-13.392000px;}
.wsac{word-spacing:-13.230000px;}
.ws8{word-spacing:-12.366000px;}
.ws9{word-spacing:-12.150000px;}
.ws44{word-spacing:-11.904000px;}
.wsa{word-spacing:-10.992000px;}
.ws3{word-spacing:-10.896000px;}
.ws27{word-spacing:-10.800000px;}
.ws6d{word-spacing:-10.303222px;}
.ws6c{word-spacing:-10.261843px;}
.ws7a{word-spacing:-10.206000px;}
.ws4{word-spacing:-9.892800px;}
.ws2{word-spacing:-9.618000px;}
.ws1{word-spacing:-9.542544px;}
.wsae{word-spacing:-7.884000px;}
.ws10{word-spacing:-6.588000px;}
.ws97{word-spacing:-6.540000px;}
.wsf{word-spacing:-6.534000px;}
.ws98{word-spacing:-6.480000px;}
.ws7b{word-spacing:-6.210000px;}
.ws6f{word-spacing:-6.157046px;}
.wsca{word-spacing:-5.616000px;}
.wsc8{word-spacing:-3.780000px;}
.ws17{word-spacing:-3.564000px;}
.wsd5{word-spacing:-3.186000px;}
.ws5b{word-spacing:-3.120000px;}
.ws5c{word-spacing:-3.060000px;}
.wsba{word-spacing:-2.700000px;}
.wscc{word-spacing:-2.646000px;}
.wsb9{word-spacing:-2.538000px;}
.ws83{word-spacing:-2.400000px;}
.ws1a{word-spacing:-2.340000px;}
.ws4e{word-spacing:-2.160000px;}
.ws37{word-spacing:-2.100000px;}
.wsd0{word-spacing:-2.052000px;}
.ws9b{word-spacing:-1.980000px;}
.ws66{word-spacing:-1.920000px;}
.ws88{word-spacing:-1.860000px;}
.wsc0{word-spacing:-1.836000px;}
.ws77{word-spacing:-1.740000px;}
.wsc6{word-spacing:-1.728000px;}
.ws1b{word-spacing:-1.680000px;}
.ws89{word-spacing:-1.620000px;}
.wsdd{word-spacing:-1.566000px;}
.ws50{word-spacing:-1.560000px;}
.wsb5{word-spacing:-1.512000px;}
.ws76{word-spacing:-1.500000px;}
.ws8a{word-spacing:-1.380000px;}
.ws1f{word-spacing:-1.320000px;}
.wsbf{word-spacing:-1.296000px;}
.ws55{word-spacing:-1.200000px;}
.ws9f{word-spacing:-1.140000px;}
.ws26{word-spacing:-1.080000px;}
.ws92{word-spacing:-0.900000px;}
.ws87{word-spacing:-0.840000px;}
.ws18{word-spacing:-0.810000px;}
.ws42{word-spacing:-0.780000px;}
.wsc9{word-spacing:-0.702000px;}
.ws52{word-spacing:-0.660000px;}
.wsd7{word-spacing:-0.486000px;}
.ws72{word-spacing:-0.480000px;}
.wsdb{word-spacing:-0.432000px;}
.ws22{word-spacing:-0.420000px;}
.ws67{word-spacing:-0.384000px;}
.ws11{word-spacing:-0.378000px;}
.ws39{word-spacing:-0.300000px;}
.wsd{word-spacing:-0.216000px;}
.ws49{word-spacing:-0.180000px;}
.ws51{word-spacing:-0.120000px;}
.wsa9{word-spacing:-0.054000px;}
.ws6e{word-spacing:-0.042838px;}
.wsb{word-spacing:0.000000px;}
.ws41{word-spacing:0.120000px;}
.ws14{word-spacing:0.162000px;}
.wsbb{word-spacing:0.270000px;}
.ws54{word-spacing:0.300000px;}
.wsc{word-spacing:0.306000px;}
.ws78{word-spacing:0.378000px;}
.wsa6{word-spacing:0.480000px;}
.ws19{word-spacing:0.540000px;}
.ws3e{word-spacing:0.600000px;}
.ws2f{word-spacing:0.660000px;}
.wse{word-spacing:0.691200px;}
.ws4b{word-spacing:0.840000px;}
.wsa8{word-spacing:0.918000px;}
.ws23{word-spacing:1.020000px;}
.wsa7{word-spacing:1.080000px;}
.ws31{word-spacing:1.200000px;}
.wsbd{word-spacing:1.242000px;}
.ws1e{word-spacing:1.260000px;}
.ws5d{word-spacing:1.320000px;}
.wsde{word-spacing:1.350000px;}
.ws86{word-spacing:1.380000px;}
.ws36{word-spacing:1.440000px;}
.ws3a{word-spacing:1.500000px;}
.wsdc{word-spacing:1.566000px;}
.ws34{word-spacing:1.680000px;}
.wsd3{word-spacing:1.728000px;}
.ws40{word-spacing:1.740000px;}
.ws2b{word-spacing:1.800000px;}
.wsa1{word-spacing:1.860000px;}
.wsdf{word-spacing:1.944000px;}
.wsa4{word-spacing:1.980000px;}
.wsc3{word-spacing:1.998000px;}
.ws2e{word-spacing:2.040000px;}
.ws2d{word-spacing:2.100000px;}
.ws84{word-spacing:2.160000px;}
.ws8b{word-spacing:2.220000px;}
.wsb8{word-spacing:2.268000px;}
.wsc7{word-spacing:2.322000px;}
.wsc5{word-spacing:2.376000px;}
.ws1c{word-spacing:2.400000px;}
.ws29{word-spacing:2.460000px;}
.wsad{word-spacing:2.646000px;}
.ws1d{word-spacing:2.760000px;}
.ws57{word-spacing:2.880000px;}
.ws38{word-spacing:3.060000px;}
.ws81{word-spacing:3.180000px;}
.ws16{word-spacing:3.186000px;}
.ws15{word-spacing:3.240000px;}
.ws85{word-spacing:3.300000px;}
.ws48{word-spacing:3.360000px;}
.ws30{word-spacing:3.420000px;}
.wsaa{word-spacing:3.672000px;}
.ws20{word-spacing:3.720000px;}
.wsb7{word-spacing:3.834000px;}
.ws3c{word-spacing:3.900000px;}
.wsc2{word-spacing:3.942000px;}
.ws5f{word-spacing:3.960000px;}
.ws3d{word-spacing:4.080000px;}
.ws32{word-spacing:4.140000px;}
.ws95{word-spacing:4.320000px;}
.ws7e{word-spacing:4.374000px;}
.wsd9{word-spacing:4.482000px;}
.ws4c{word-spacing:4.500000px;}
.ws75{word-spacing:4.560000px;}
.ws35{word-spacing:4.620000px;}
.ws24{word-spacing:4.740000px;}
.ws9e{word-spacing:4.920000px;}
.ws9d{word-spacing:4.980000px;}
.ws5e{word-spacing:5.160000px;}
.wsc1{word-spacing:5.184000px;}
.wsa0{word-spacing:5.280000px;}
.wscf{word-spacing:5.292000px;}
.ws8f{word-spacing:5.400000px;}
.ws65{word-spacing:5.520000px;}
.ws64{word-spacing:5.580000px;}
.ws13{word-spacing:5.670000px;}
.ws12{word-spacing:5.724000px;}
.ws3b{word-spacing:5.760000px;}
.ws53{word-spacing:5.820000px;}
.wsaf{word-spacing:5.832000px;}
.ws56{word-spacing:5.880000px;}
.wsd8{word-spacing:5.886000px;}
.ws9c{word-spacing:5.940000px;}
.ws25{word-spacing:6.000000px;}
.wsd6{word-spacing:6.210000px;}
.ws2a{word-spacing:6.300000px;}
.ws61{word-spacing:6.480000px;}
.ws60{word-spacing:6.540000px;}
.wsb6{word-spacing:6.750000px;}
.ws90{word-spacing:7.020000px;}
.ws7d{word-spacing:7.074000px;}
.ws99{word-spacing:7.080000px;}
.wsbe{word-spacing:7.128000px;}
.ws9a{word-spacing:7.140000px;}
.ws7c{word-spacing:7.182000px;}
.wsd1{word-spacing:7.614000px;}
.ws4d{word-spacing:7.680000px;}
.wsa5{word-spacing:7.740000px;}
.ws4a{word-spacing:7.800000px;}
.wsa3{word-spacing:7.860000px;}
.ws3f{word-spacing:7.980000px;}
.ws82{word-spacing:8.100000px;}
.wsa2{word-spacing:8.520000px;}
.wscd{word-spacing:8.748000px;}
.ws93{word-spacing:8.940000px;}
.ws94{word-spacing:9.000000px;}
.ws91{word-spacing:9.600000px;}
.wsb4{word-spacing:9.666000px;}
.ws2c{word-spacing:9.840000px;}
.ws71{word-spacing:9.900000px;}
.ws70{word-spacing:9.960000px;}
.wsbc{word-spacing:10.422000px;}
.ws8d{word-spacing:10.440000px;}
.ws8e{word-spacing:10.560000px;}
.ws33{word-spacing:10.620000px;}
.ws4f{word-spacing:11.700000px;}
.wsb0{word-spacing:11.826000px;}
.ws63{word-spacing:12.480000px;}
.ws62{word-spacing:12.660000px;}
.wsce{word-spacing:12.798000px;}
.wsd4{word-spacing:13.446000px;}
.wscb{word-spacing:13.500000px;}
.ws74{word-spacing:15.600000px;}
.ws21{word-spacing:15.660000px;}
.ws73{word-spacing:15.780000px;}
.wsb2{word-spacing:15.876000px;}
.wsb1{word-spacing:16.038000px;}
.wsc4{word-spacing:16.632000px;}
.wsd2{word-spacing:18.144000px;}
.wsb3{word-spacing:19.494000px;}
.ws8c{word-spacing:23.700000px;}
.wsda{word-spacing:24.300000px;}
.ws0{word-spacing:33.651135px;}
.ws5a{word-spacing:76.577400px;}
.ws58{word-spacing:106.450200px;}
.ws47{word-spacing:226.789800px;}
.ws46{word-spacing:229.314600px;}
.ws43{word-spacing:234.439200px;}
.ws45{word-spacing:235.273200px;}
.ws59{word-spacing:284.620800px;}
._53{margin-left:-27.652392px;}
._52{margin-left:-25.274201px;}
._54{margin-left:-21.654343px;}
._a{margin-left:-11.427600px;}
._58{margin-left:-9.543000px;}
._9{margin-left:-8.531400px;}
._8{margin-left:-6.606000px;}
._c{margin-left:-5.271000px;}
._7{margin-left:-4.110000px;}
._3{margin-left:-2.845800px;}
._2{margin-left:-1.071000px;}
._1{width:1.030200px;}
._0{width:2.131800px;}
._6{width:3.331800px;}
._56{width:4.380600px;}
._5{width:5.386200px;}
._55{width:7.140000px;}
._b{width:8.616000px;}
._32{width:10.062000px;}
._31{width:11.160000px;}
._57{width:12.795000px;}
._4{width:36.369600px;}
._59{width:42.653400px;}
._44{width:48.784200px;}
._4a{width:80.858400px;}
._46{width:82.410600px;}
._51{width:89.547000px;}
._4d{width:104.097000px;}
._45{width:107.433600px;}
._43{width:110.995800px;}
._4b{width:116.179200px;}
._3c{width:142.552800px;}
._47{width:158.013000px;}
._3b{width:210.436800px;}
._42{width:237.992400px;}
._33{width:244.848000px;}
._49{width:249.018000px;}
._48{width:250.754400px;}
._4c{width:289.233000px;}
._35{width:297.487200px;}
._34{width:309.541200px;}
._41{width:311.170800px;}
._3e{width:312.917400px;}
._3f{width:337.075200px;}
._3a{width:342.802800px;}
._40{width:362.179800px;}
._3d{width:364.225200px;}
._36{width:365.929800px;}
._50{width:373.120800px;}
._39{width:391.838400px;}
._f{width:425.701800px;}
._37{width:435.730800px;}
._4e{width:437.834400px;}
._38{width:443.320200px;}
._e{width:465.804000px;}
._4f{width:470.242200px;}
._d{width:475.910400px;}
._2a{width:510.337200px;}
._2b{width:562.157400px;}
._30{width:569.673000px;}
._1d{width:599.386200px;}
._11{width:605.605800px;}
._13{width:618.772800px;}
._1f{width:643.882200px;}
._17{width:652.912800px;}
._22{width:675.533400px;}
._1b{width:681.282000px;}
._2f{width:682.316400px;}
._25{width:684.874200px;}
._14{width:686.166000px;}
._28{width:696.682200px;}
._15{width:698.790000px;}
._27{width:703.949400px;}
._10{width:706.134000px;}
._21{width:708.298200px;}
._1e{width:713.069400px;}
._12{width:714.102000px;}
._2d{width:715.277400px;}
._18{width:719.535600px;}
._23{width:722.362200px;}
._29{width:727.901400px;}
._1a{width:728.938200px;}
._2e{width:738.621600px;}
._2c{width:744.586200px;}
._20{width:752.045400px;}
._19{width:761.309400px;}
._24{width:769.997400px;}
._26{width:787.133400px;}
._1c{width:795.869400px;}
._16{width:809.213400px;}
.fc1{color:rgb(12,87,47);}
.fc3{color:rgb(49,45,46);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:15.723600px;}
.fsc{font-size:24.826800px;}
.fsd{font-size:35.100000px;}
.fs3{font-size:38.478000px;}
.fsa{font-size:41.378400px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:42.837630px;}
.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;}
.y117{bottom:1.021350px;}
.y118{bottom:1.040850px;}
.y1{bottom:68.124750px;}
.y3a{bottom:71.212050px;}
.y3b{bottom:75.036150px;}
.y7d{bottom:113.078700px;}
.y66{bottom:113.078850px;}
.yf{bottom:117.197850px;}
.y2b{bottom:117.212700px;}
.yc5{bottom:117.529200px;}
.y147{bottom:120.500850px;}
.ye{bottom:131.597850px;}
.yc4{bottom:132.529200px;}
.y7c{bottom:134.078700px;}
.y65{bottom:134.078850px;}
.y2a{bottom:138.212700px;}
.y146{bottom:140.300850px;}
.yd{bottom:145.997850px;}
.yc3{bottom:147.529200px;}
.y7b{bottom:155.078700px;}
.y64{bottom:155.078850px;}
.y29{bottom:159.212700px;}
.y145{bottom:160.100850px;}
.yc{bottom:160.397850px;}
.yc2{bottom:168.434700px;}
.y7a{bottom:176.078700px;}
.y63{bottom:176.078850px;}
.y28{bottom:180.212700px;}
.yc1{bottom:189.340200px;}
.y79{bottom:197.078700px;}
.y62{bottom:197.078850px;}
.y27{bottom:201.212700px;}
.y37{bottom:203.413650px;}
.yc0{bottom:204.340200px;}
.y78{bottom:218.078700px;}
.y61{bottom:218.078850px;}
.y36{bottom:221.413650px;}
.y26{bottom:222.212700px;}
.ybf{bottom:225.245700px;}
.yca{bottom:239.078700px;}
.y60{bottom:239.078850px;}
.y35{bottom:239.413500px;}
.ybe{bottom:240.245700px;}
.y25{bottom:243.212700px;}
.y15a{bottom:244.529400px;}
.y77{bottom:252.513450px;}
.y34{bottom:257.413500px;}
.yc9{bottom:260.078700px;}
.y5f{bottom:260.078850px;}
.ybd{bottom:261.151200px;}
.y24{bottom:264.212700px;}
.y33{bottom:275.413500px;}
.ybc{bottom:276.151200px;}
.yc8{bottom:281.078700px;}
.y5e{bottom:281.078850px;}
.y76{bottom:284.811000px;}
.y23{bottom:285.212700px;}
.y32{bottom:293.413500px;}
.ybb{bottom:297.056700px;}
.y16b{bottom:302.078700px;}
.y5d{bottom:302.078850px;}
.y22{bottom:306.212700px;}
.y31{bottom:311.413500px;}
.yba{bottom:312.056700px;}
.y153{bottom:316.441050px;}
.yc7{bottom:323.078700px;}
.y5c{bottom:323.078850px;}
.y21{bottom:327.212700px;}
.y159{bottom:328.529400px;}
.y30{bottom:329.413500px;}
.yb9{bottom:332.962200px;}
.y75{bottom:344.078700px;}
.y5b{bottom:344.078850px;}
.yb8{bottom:347.962200px;}
.y20{bottom:348.212700px;}
.yb7{bottom:362.962200px;}
.y2f{bottom:364.421400px;}
.y74{bottom:365.078700px;}
.y152{bottom:365.078850px;}
.y1f{bottom:369.212700px;}
.yb6{bottom:377.962200px;}
.y5a{bottom:379.441050px;}
.y2e{bottom:382.421400px;}
.y73{bottom:386.078700px;}
.y151{bottom:386.078850px;}
.y1e{bottom:390.212550px;}
.y158{bottom:391.529400px;}
.yb5{bottom:398.867700px;}
.y2d{bottom:400.421400px;}
.y72{bottom:407.078700px;}
.y150{bottom:407.078850px;}
.y1d{bottom:411.212550px;}
.yb4{bottom:413.867700px;}
.y2c{bottom:418.421400px;}
.yc6{bottom:419.258850px;}
.y71{bottom:428.078700px;}
.y59{bottom:428.078850px;}
.yb3{bottom:434.773200px;}
.y1c{bottom:444.300450px;}
.y70{bottom:449.078700px;}
.y58{bottom:449.078850px;}
.yb2{bottom:449.773200px;}
.y157{bottom:454.529400px;}
.yb1{bottom:464.773200px;}
.y6f{bottom:470.078700px;}
.y57{bottom:470.078850px;}
.ycc{bottom:474.938100px;}
.yb0{bottom:485.678700px;}
.y6e{bottom:491.078700px;}
.y56{bottom:491.078850px;}
.ycb{bottom:494.738100px;}
.yaf{bottom:506.584200px;}
.y6d{bottom:512.078700px;}
.y55{bottom:512.078850px;}
.yd3{bottom:515.493000px;}
.y156{bottom:517.937100px;}
.yae{bottom:521.584200px;}
.y1b{bottom:524.827950px;}
.y115{bottom:532.030950px;}
.y116{bottom:532.051050px;}
.y6c{bottom:533.078700px;}
.y54{bottom:533.078850px;}
.y128{bottom:540.636600px;}
.yad{bottom:542.489850px;}
.y155{bottom:547.441050px;}
.y113{bottom:547.548450px;}
.y114{bottom:547.568250px;}
.y11e{bottom:552.274650px;}
.y6b{bottom:554.078700px;}
.y53{bottom:554.078850px;}
.yac{bottom:557.489850px;}
.y143{bottom:563.195550px;}
.y144{bottom:563.214900px;}
.y1a{bottom:565.887750px;}
.y12d{bottom:567.791850px;}
.y6a{bottom:575.078700px;}
.y52{bottom:575.078850px;}
.yd4{bottom:575.164050px;}
.y111{bottom:578.196150px;}
.y112{bottom:578.215950px;}
.yab{bottom:578.395350px;}
.y19{bottom:585.687900px;}
.yaa{bottom:593.395350px;}
.y10f{bottom:594.099000px;}
.y110{bottom:594.118800px;}
.y127{bottom:594.946050px;}
.y69{bottom:596.078700px;}
.y51{bottom:596.078850px;}
.y137{bottom:598.825200px;}
.y18{bottom:605.487900px;}
.y10d{bottom:609.229350px;}
.y10e{bottom:609.249300px;}
.ya9{bottom:614.300700px;}
.y123{bottom:614.342400px;}
.y68{bottom:617.078700px;}
.y14f{bottom:617.078850px;}
.y142{bottom:620.114850px;}
.y13e{bottom:624.707250px;}
.y13f{bottom:624.726450px;}
.y17{bottom:625.287900px;}
.ya8{bottom:629.300700px;}
.y13d{bottom:629.627100px;}
.y50{bottom:631.441050px;}
.y67{bottom:638.078700px;}
.y14e{bottom:638.078850px;}
.y10b{bottom:640.263300px;}
.y10c{bottom:640.282800px;}
.ya7{bottom:644.300700px;}
.y16{bottom:645.087900px;}
.y109{bottom:656.166150px;}
.y10a{bottom:656.185500px;}
.y16a{bottom:659.078700px;}
.y14d{bottom:659.078850px;}
.y129{bottom:664.771950px;}
.y15{bottom:664.887750px;}
.ya6{bottom:665.206350px;}
.y107{bottom:671.682750px;}
.y108{bottom:671.702550px;}
.y141{bottom:676.409100px;}
.y93{bottom:679.194600px;}
.y169{bottom:680.078700px;}
.y4f{bottom:680.078850px;}
.y14{bottom:684.687900px;}
.ya5{bottom:686.111850px;}
.y105{bottom:687.199350px;}
.y106{bottom:687.218850px;}
.y92{bottom:699.675000px;}
.y168{bottom:701.078700px;}
.y4e{bottom:701.078850px;}
.y103{bottom:702.716700px;}
.y104{bottom:702.735900px;}
.y13{bottom:704.487900px;}
.y120{bottom:715.349100px;}
.y154{bottom:715.441050px;}
.ya4{bottom:716.593650px;}
.y101{bottom:718.233450px;}
.y102{bottom:718.253100px;}
.y91{bottom:720.155250px;}
.y167{bottom:722.078700px;}
.y4d{bottom:722.078850px;}
.y12{bottom:724.287900px;}
.y126{bottom:731.930850px;}
.yff{bottom:733.749900px;}
.y100{bottom:733.769400px;}
.y90{bottom:740.635500px;}
.y166{bottom:743.078700px;}
.y4c{bottom:743.078850px;}
.y134{bottom:748.659000px;}
.yfd{bottom:749.267400px;}
.yfe{bottom:749.286600px;}
.y11{bottom:755.385300px;}
.y8f{bottom:761.115900px;}
.ya3{bottom:764.078550px;}
.y165{bottom:764.078700px;}
.y4b{bottom:764.078850px;}
.yfb{bottom:764.784900px;}
.yfc{bottom:764.803650px;}
.y125{bottom:765.926250px;}
.y11d{bottom:766.600350px;}
.yf9{bottom:780.300450px;}
.yfa{bottom:780.319950px;}
.y8e{bottom:781.596150px;}
.ya2{bottom:785.078550px;}
.y164{bottom:785.078700px;}
.y4a{bottom:785.078850px;}
.y13b{bottom:786.966900px;}
.y12e{bottom:788.906400px;}
.yf7{bottom:795.817950px;}
.yf8{bottom:795.837000px;}
.y139{bottom:800.544000px;}
.y8d{bottom:802.076550px;}
.ya1{bottom:806.078550px;}
.y163{bottom:806.078700px;}
.y49{bottom:806.078850px;}
.yf5{bottom:811.334550px;}
.yf6{bottom:811.353750px;}
.y121{bottom:812.181600px;}
.y8c{bottom:822.556800px;}
.yf3{bottom:826.852050px;}
.yf4{bottom:826.870950px;}
.ya0{bottom:827.078550px;}
.y162{bottom:827.078700px;}
.y14c{bottom:827.078850px;}
.y12c{bottom:832.168650px;}
.yb{bottom:834.666900px;}
.y138{bottom:835.456950px;}
.y48{bottom:840.513600px;}
.y11a{bottom:842.368650px;}
.y11b{bottom:842.387550px;}
.y8b{bottom:843.037200px;}
.y119{bottom:847.094550px;}
.y9f{bottom:848.078550px;}
.y161{bottom:848.078700px;}
.y14b{bottom:848.078850px;}
.ya{bottom:852.666900px;}
.yf1{bottom:857.885250px;}
.yf2{bottom:857.904300px;}
.y8a{bottom:863.517450px;}
.y9e{bottom:869.078550px;}
.y160{bottom:869.078700px;}
.y14a{bottom:869.078850px;}
.y9{bottom:870.666900px;}
.y47{bottom:872.811000px;}
.yef{bottom:873.402600px;}
.yf0{bottom:873.421500px;}
.y130{bottom:883.947000px;}
.y89{bottom:883.997700px;}
.y8{bottom:888.666900px;}
.yed{bottom:888.919200px;}
.yee{bottom:888.938100px;}
.y9d{bottom:890.078550px;}
.y15f{bottom:890.078700px;}
.y149{bottom:890.078850px;}
.y11c{bottom:897.524100px;}
.yeb{bottom:904.435800px;}
.yec{bottom:904.454850px;}
.y88{bottom:904.478100px;}
.y7{bottom:906.666900px;}
.y12f{bottom:909.161700px;}
.y9c{bottom:911.078550px;}
.y148{bottom:911.078850px;}
.ye9{bottom:919.952400px;}
.yea{bottom:919.971450px;}
.y6{bottom:924.666900px;}
.y87{bottom:924.958350px;}
.y15e{bottom:925.440900px;}
.y46{bottom:932.078850px;}
.y131{bottom:932.406600px;}
.ye7{bottom:935.469900px;}
.ye8{bottom:935.488650px;}
.y86{bottom:945.438750px;}
.y132{bottom:946.014150px;}
.y9b{bottom:946.440900px;}
.ye5{bottom:950.986500px;}
.ye6{bottom:951.005400px;}
.y45{bottom:953.078850px;}
.y124{bottom:959.591400px;}
.y5{bottom:959.674650px;}
.y85{bottom:965.919000px;}
.ye3{bottom:966.502950px;}
.ye4{bottom:966.522000px;}
.y140{bottom:971.229000px;}
.y15d{bottom:974.078700px;}
.y44{bottom:974.078850px;}
.y4{bottom:979.474800px;}
.y11f{bottom:980.866200px;}
.ye1{bottom:982.020600px;}
.ye2{bottom:982.039200px;}
.y84{bottom:986.399250px;}
.y9a{bottom:995.078700px;}
.y43{bottom:995.078850px;}
.ydf{bottom:997.537050px;}
.ye0{bottom:997.555800px;}
.y83{bottom:1006.879650px;}
.ydd{bottom:1013.053650px;}
.yde{bottom:1013.072550px;}
.y122{bottom:1015.718700px;}
.y99{bottom:1016.078700px;}
.y42{bottom:1016.078850px;}
.y3{bottom:1016.282550px;}
.y13a{bottom:1017.779550px;}
.y15c{bottom:1021.529250px;}
.y82{bottom:1027.360050px;}
.ydb{bottom:1028.571150px;}
.ydc{bottom:1028.589750px;}
.y135{bottom:1036.933050px;}
.y98{bottom:1037.078700px;}
.y41{bottom:1037.078850px;}
.yd9{bottom:1044.087750px;}
.yda{bottom:1044.106500px;}
.y81{bottom:1047.840300px;}
.y2{bottom:1049.282550px;}
.y12b{bottom:1056.086850px;}
.y97{bottom:1058.078700px;}
.y40{bottom:1058.078850px;}
.yd7{bottom:1059.604200px;}
.yd8{bottom:1059.623100px;}
.y80{bottom:1068.320550px;}
.y12a{bottom:1071.118350px;}
.yd5{bottom:1075.121700px;}
.yd6{bottom:1075.140300px;}
.y96{bottom:1079.078700px;}
.y3f{bottom:1079.078850px;}
.y13c{bottom:1085.665800px;}
.y7f{bottom:1088.800950px;}
.yd1{bottom:1090.638300px;}
.yd2{bottom:1090.657050px;}
.y133{bottom:1099.243050px;}
.y95{bottom:1100.078700px;}
.y3e{bottom:1100.078850px;}
.ycf{bottom:1106.155350px;}
.yd0{bottom:1106.173650px;}
.y10{bottom:1109.815500px;}
.y136{bottom:1110.880650px;}
.y7e{bottom:1119.282900px;}
.y94{bottom:1121.078700px;}
.y3d{bottom:1121.078850px;}
.ycd{bottom:1121.672400px;}
.yce{bottom:1121.690850px;}
.y15b{bottom:1125.451650px;}
.y39{bottom:1159.189500px;}
.y38{bottom:1178.689500px;}
.y3c{bottom:1178.691750px;}
.h1b{height:20.171775px;}
.h1c{height:28.518750px;}
.h1a{height:31.458090px;}
.h19{height:32.128222px;}
.h15{height:32.610163px;}
.h16{height:33.619950px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h18{height:34.805574px;}
.h12{height:36.492188px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h13{height:39.000000px;}
.h8{height:41.053711px;}
.he{height:43.057617px;}
.hb{height:43.321289px;}
.ha{height:43.875000px;}
.h9{height:45.615234px;}
.h10{height:48.134766px;}
.hd{height:48.750000px;}
.h14{height:49.218750px;}
.h11{height:50.176758px;}
.h4{height:53.625000px;}
.hc{height:54.738281px;}
.h3{height:77.545898px;}
.h17{height:626.584500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:697.915500px;}
.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.252050px;}
.x4b{left:114.507000px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.xd{left:180.760500px;}
.x29{left:196.046250px;}
.x35{left:198.803100px;}
.x1c{left:210.061800px;}
.x1b{left:216.782550px;}
.x1d{left:221.311800px;}
.x1e{left:228.070650px;}
.x3a{left:233.982750px;}
.x25{left:235.283550px;}
.x14{left:239.968050px;}
.x3e{left:242.522850px;}
.x31{left:244.916400px;}
.x72{left:262.961400px;}
.x4{left:300.189000px;}
.xb{left:317.196900px;}
.x73{left:350.697300px;}
.x1f{left:361.039950px;}
.x3f{left:362.671800px;}
.x36{left:367.546800px;}
.x2a{left:368.970750px;}
.x40{left:370.095750px;}
.x78{left:372.348900px;}
.x15{left:374.481450px;}
.x2b{left:377.408250px;}
.x26{left:379.693350px;}
.x7d{left:381.435750px;}
.x7c{left:382.537350px;}
.x20{left:386.126850px;}
.x16{left:387.706050px;}
.x77{left:389.488050px;}
.xf{left:391.971600px;}
.x83{left:393.089700px;}
.x7f{left:394.112700px;}
.x3{left:396.050700px;}
.x76{left:398.851950px;}
.x3b{left:401.935500px;}
.x79{left:404.178750px;}
.x69{left:405.374400px;}
.x71{left:409.416750px;}
.x7e{left:411.138450px;}
.x5a{left:412.697100px;}
.x84{left:415.732050px;}
.x37{left:420.049800px;}
.x81{left:422.528550px;}
.x58{left:425.338500px;}
.x74{left:426.402900px;}
.x7a{left:427.444950px;}
.x32{left:429.978450px;}
.x5c{left:432.411300px;}
.x65{left:434.505450px;}
.x67{left:437.559900px;}
.x52{left:439.048350px;}
.x7b{left:440.326650px;}
.x80{left:441.627300px;}
.x63{left:445.701750px;}
.x56{left:449.795400px;}
.x5f{left:452.108400px;}
.x4d{left:453.736050px;}
.x6b{left:455.288550px;}
.x6f{left:456.438600px;}
.x50{left:461.311350px;}
.x54{left:462.835050px;}
.x57{left:464.592750px;}
.x45{left:466.496700px;}
.x60{left:472.745550px;}
.x5d{left:475.265700px;}
.x47{left:486.568950px;}
.x4f{left:489.058950px;}
.x6d{left:490.224600px;}
.x6a{left:516.433800px;}
.x59{left:520.269450px;}
.x64{left:522.363750px;}
.x38{left:525.641250px;}
.x41{left:526.860000px;}
.x17{left:527.970300px;}
.x2d{left:529.760400px;}
.x33{left:532.657800px;}
.x11{left:533.847300px;}
.x75{left:535.380450px;}
.x2c{left:538.939050px;}
.x3c{left:541.681200px;}
.x10{left:542.791650px;}
.x21{left:545.314050px;}
.x68{left:548.019450px;}
.x53{left:549.506100px;}
.x62{left:551.159550px;}
.x46{left:556.233150px;}
.x5b{left:558.219300px;}
.x51{left:561.403800px;}
.x2e{left:563.926350px;}
.x66{left:565.115700px;}
.x82{left:567.482700px;}
.x18{left:569.759400px;}
.x61{left:571.100400px;}
.x12{left:573.108000px;}
.x70{left:575.777400px;}
.x6c{left:579.234600px;}
.x4e{left:583.776000px;}
.x48{left:584.944200px;}
.x27{left:589.435200px;}
.x6e{left:596.932200px;}
.x5e{left:621.991800px;}
.x9{left:645.903300px;}
.x55{left:650.367300px;}
.x4c{left:662.048250px;}
.x49{left:665.413950px;}
.x8{left:678.797850px;}
.x19{left:682.866000px;}
.x2f{left:683.981550px;}
.x1a{left:685.525500px;}
.x22{left:686.580150px;}
.x3d{left:690.500100px;}
.x23{left:693.157350px;}
.x44{left:696.133950px;}
.x43{left:698.422050px;}
.x42{left:699.752100px;}
.x24{left:705.878100px;}
.x28{left:706.932750px;}
.x39{left:713.052900px;}
.x34{left:721.100700px;}
.x13{left:725.524500px;}
.x30{left:732.860400px;}
.x4a{left:761.471100px;}
.x1{left:807.087300px;}
@media print{
.v2{vertical-align:-19.536000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.lse{letter-spacing:-6.432000pt;}
.lsd{letter-spacing:-2.880000pt;}
.ls7{letter-spacing:-1.066667pt;}
.ls6{letter-spacing:-0.906667pt;}
.ls4{letter-spacing:-0.614400pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls3{letter-spacing:-0.272000pt;}
.ls10{letter-spacing:-0.266667pt;}
.ls5{letter-spacing:-0.144000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.022400pt;}
.lsb{letter-spacing:0.036781pt;}
.ls9{letter-spacing:0.480000pt;}
.lsc{letter-spacing:6.344000pt;}
.lsf{letter-spacing:8.306667pt;}
.ls8{letter-spacing:8.865067pt;}
.ls0{letter-spacing:38.383435pt;}
.ws69{word-spacing:-53.333333pt;}
.ws6{word-spacing:-15.936000pt;}
.ws96{word-spacing:-14.608000pt;}
.ws5{word-spacing:-13.280000pt;}
.ws68{word-spacing:-13.226667pt;}
.ws28{word-spacing:-13.066667pt;}
.ws80{word-spacing:-12.800000pt;}
.ws6a{word-spacing:-12.746667pt;}
.ws7f{word-spacing:-12.533333pt;}
.ws6b{word-spacing:-12.240000pt;}
.ws7{word-spacing:-12.160000pt;}
.ws79{word-spacing:-11.952000pt;}
.wsab{word-spacing:-11.904000pt;}
.wsac{word-spacing:-11.760000pt;}
.ws8{word-spacing:-10.992000pt;}
.ws9{word-spacing:-10.800000pt;}
.ws44{word-spacing:-10.581333pt;}
.wsa{word-spacing:-9.770667pt;}
.ws3{word-spacing:-9.685333pt;}
.ws27{word-spacing:-9.600000pt;}
.ws6d{word-spacing:-9.158419pt;}
.ws6c{word-spacing:-9.121638pt;}
.ws7a{word-spacing:-9.072000pt;}
.ws4{word-spacing:-8.793600pt;}
.ws2{word-spacing:-8.549333pt;}
.ws1{word-spacing:-8.482261pt;}
.wsae{word-spacing:-7.008000pt;}
.ws10{word-spacing:-5.856000pt;}
.ws97{word-spacing:-5.813333pt;}
.wsf{word-spacing:-5.808000pt;}
.ws98{word-spacing:-5.760000pt;}
.ws7b{word-spacing:-5.520000pt;}
.ws6f{word-spacing:-5.472930pt;}
.wsca{word-spacing:-4.992000pt;}
.wsc8{word-spacing:-3.360000pt;}
.ws17{word-spacing:-3.168000pt;}
.wsd5{word-spacing:-2.832000pt;}
.ws5b{word-spacing:-2.773333pt;}
.ws5c{word-spacing:-2.720000pt;}
.wsba{word-spacing:-2.400000pt;}
.wscc{word-spacing:-2.352000pt;}
.wsb9{word-spacing:-2.256000pt;}
.ws83{word-spacing:-2.133333pt;}
.ws1a{word-spacing:-2.080000pt;}
.ws4e{word-spacing:-1.920000pt;}
.ws37{word-spacing:-1.866667pt;}
.wsd0{word-spacing:-1.824000pt;}
.ws9b{word-spacing:-1.760000pt;}
.ws66{word-spacing:-1.706667pt;}
.ws88{word-spacing:-1.653333pt;}
.wsc0{word-spacing:-1.632000pt;}
.ws77{word-spacing:-1.546667pt;}
.wsc6{word-spacing:-1.536000pt;}
.ws1b{word-spacing:-1.493333pt;}
.ws89{word-spacing:-1.440000pt;}
.wsdd{word-spacing:-1.392000pt;}
.ws50{word-spacing:-1.386667pt;}
.wsb5{word-spacing:-1.344000pt;}
.ws76{word-spacing:-1.333333pt;}
.ws8a{word-spacing:-1.226667pt;}
.ws1f{word-spacing:-1.173333pt;}
.wsbf{word-spacing:-1.152000pt;}
.ws55{word-spacing:-1.066667pt;}
.ws9f{word-spacing:-1.013333pt;}
.ws26{word-spacing:-0.960000pt;}
.ws92{word-spacing:-0.800000pt;}
.ws87{word-spacing:-0.746667pt;}
.ws18{word-spacing:-0.720000pt;}
.ws42{word-spacing:-0.693333pt;}
.wsc9{word-spacing:-0.624000pt;}
.ws52{word-spacing:-0.586667pt;}
.wsd7{word-spacing:-0.432000pt;}
.ws72{word-spacing:-0.426667pt;}
.wsdb{word-spacing:-0.384000pt;}
.ws22{word-spacing:-0.373333pt;}
.ws67{word-spacing:-0.341333pt;}
.ws11{word-spacing:-0.336000pt;}
.ws39{word-spacing:-0.266667pt;}
.wsd{word-spacing:-0.192000pt;}
.ws49{word-spacing:-0.160000pt;}
.ws51{word-spacing:-0.106667pt;}
.wsa9{word-spacing:-0.048000pt;}
.ws6e{word-spacing:-0.038078pt;}
.wsb{word-spacing:0.000000pt;}
.ws41{word-spacing:0.106667pt;}
.ws14{word-spacing:0.144000pt;}
.wsbb{word-spacing:0.240000pt;}
.ws54{word-spacing:0.266667pt;}
.wsc{word-spacing:0.272000pt;}
.ws78{word-spacing:0.336000pt;}
.wsa6{word-spacing:0.426667pt;}
.ws19{word-spacing:0.480000pt;}
.ws3e{word-spacing:0.533333pt;}
.ws2f{word-spacing:0.586667pt;}
.wse{word-spacing:0.614400pt;}
.ws4b{word-spacing:0.746667pt;}
.wsa8{word-spacing:0.816000pt;}
.ws23{word-spacing:0.906667pt;}
.wsa7{word-spacing:0.960000pt;}
.ws31{word-spacing:1.066667pt;}
.wsbd{word-spacing:1.104000pt;}
.ws1e{word-spacing:1.120000pt;}
.ws5d{word-spacing:1.173333pt;}
.wsde{word-spacing:1.200000pt;}
.ws86{word-spacing:1.226667pt;}
.ws36{word-spacing:1.280000pt;}
.ws3a{word-spacing:1.333333pt;}
.wsdc{word-spacing:1.392000pt;}
.ws34{word-spacing:1.493333pt;}
.wsd3{word-spacing:1.536000pt;}
.ws40{word-spacing:1.546667pt;}
.ws2b{word-spacing:1.600000pt;}
.wsa1{word-spacing:1.653333pt;}
.wsdf{word-spacing:1.728000pt;}
.wsa4{word-spacing:1.760000pt;}
.wsc3{word-spacing:1.776000pt;}
.ws2e{word-spacing:1.813333pt;}
.ws2d{word-spacing:1.866667pt;}
.ws84{word-spacing:1.920000pt;}
.ws8b{word-spacing:1.973333pt;}
.wsb8{word-spacing:2.016000pt;}
.wsc7{word-spacing:2.064000pt;}
.wsc5{word-spacing:2.112000pt;}
.ws1c{word-spacing:2.133333pt;}
.ws29{word-spacing:2.186667pt;}
.wsad{word-spacing:2.352000pt;}
.ws1d{word-spacing:2.453333pt;}
.ws57{word-spacing:2.560000pt;}
.ws38{word-spacing:2.720000pt;}
.ws81{word-spacing:2.826667pt;}
.ws16{word-spacing:2.832000pt;}
.ws15{word-spacing:2.880000pt;}
.ws85{word-spacing:2.933333pt;}
.ws48{word-spacing:2.986667pt;}
.ws30{word-spacing:3.040000pt;}
.wsaa{word-spacing:3.264000pt;}
.ws20{word-spacing:3.306667pt;}
.wsb7{word-spacing:3.408000pt;}
.ws3c{word-spacing:3.466667pt;}
.wsc2{word-spacing:3.504000pt;}
.ws5f{word-spacing:3.520000pt;}
.ws3d{word-spacing:3.626667pt;}
.ws32{word-spacing:3.680000pt;}
.ws95{word-spacing:3.840000pt;}
.ws7e{word-spacing:3.888000pt;}
.wsd9{word-spacing:3.984000pt;}
.ws4c{word-spacing:4.000000pt;}
.ws75{word-spacing:4.053333pt;}
.ws35{word-spacing:4.106667pt;}
.ws24{word-spacing:4.213333pt;}
.ws9e{word-spacing:4.373333pt;}
.ws9d{word-spacing:4.426667pt;}
.ws5e{word-spacing:4.586667pt;}
.wsc1{word-spacing:4.608000pt;}
.wsa0{word-spacing:4.693333pt;}
.wscf{word-spacing:4.704000pt;}
.ws8f{word-spacing:4.800000pt;}
.ws65{word-spacing:4.906667pt;}
.ws64{word-spacing:4.960000pt;}
.ws13{word-spacing:5.040000pt;}
.ws12{word-spacing:5.088000pt;}
.ws3b{word-spacing:5.120000pt;}
.ws53{word-spacing:5.173333pt;}
.wsaf{word-spacing:5.184000pt;}
.ws56{word-spacing:5.226667pt;}
.wsd8{word-spacing:5.232000pt;}
.ws9c{word-spacing:5.280000pt;}
.ws25{word-spacing:5.333333pt;}
.wsd6{word-spacing:5.520000pt;}
.ws2a{word-spacing:5.600000pt;}
.ws61{word-spacing:5.760000pt;}
.ws60{word-spacing:5.813333pt;}
.wsb6{word-spacing:6.000000pt;}
.ws90{word-spacing:6.240000pt;}
.ws7d{word-spacing:6.288000pt;}
.ws99{word-spacing:6.293333pt;}
.wsbe{word-spacing:6.336000pt;}
.ws9a{word-spacing:6.346667pt;}
.ws7c{word-spacing:6.384000pt;}
.wsd1{word-spacing:6.768000pt;}
.ws4d{word-spacing:6.826667pt;}
.wsa5{word-spacing:6.880000pt;}
.ws4a{word-spacing:6.933333pt;}
.wsa3{word-spacing:6.986667pt;}
.ws3f{word-spacing:7.093333pt;}
.ws82{word-spacing:7.200000pt;}
.wsa2{word-spacing:7.573333pt;}
.wscd{word-spacing:7.776000pt;}
.ws93{word-spacing:7.946667pt;}
.ws94{word-spacing:8.000000pt;}
.ws91{word-spacing:8.533333pt;}
.wsb4{word-spacing:8.592000pt;}
.ws2c{word-spacing:8.746667pt;}
.ws71{word-spacing:8.800000pt;}
.ws70{word-spacing:8.853333pt;}
.wsbc{word-spacing:9.264000pt;}
.ws8d{word-spacing:9.280000pt;}
.ws8e{word-spacing:9.386667pt;}
.ws33{word-spacing:9.440000pt;}
.ws4f{word-spacing:10.400000pt;}
.wsb0{word-spacing:10.512000pt;}
.ws63{word-spacing:11.093333pt;}
.ws62{word-spacing:11.253333pt;}
.wsce{word-spacing:11.376000pt;}
.wsd4{word-spacing:11.952000pt;}
.wscb{word-spacing:12.000000pt;}
.ws74{word-spacing:13.866667pt;}
.ws21{word-spacing:13.920000pt;}
.ws73{word-spacing:14.026667pt;}
.wsb2{word-spacing:14.112000pt;}
.wsb1{word-spacing:14.256000pt;}
.wsc4{word-spacing:14.784000pt;}
.wsd2{word-spacing:16.128000pt;}
.wsb3{word-spacing:17.328000pt;}
.ws8c{word-spacing:21.066667pt;}
.wsda{word-spacing:21.600000pt;}
.ws0{word-spacing:29.912120pt;}
.ws5a{word-spacing:68.068800pt;}
.ws58{word-spacing:94.622400pt;}
.ws47{word-spacing:201.590933pt;}
.ws46{word-spacing:203.835200pt;}
.ws43{word-spacing:208.390400pt;}
.ws45{word-spacing:209.131733pt;}
.ws59{word-spacing:252.996267pt;}
._53{margin-left:-24.579904pt;}
._52{margin-left:-22.465957pt;}
._54{margin-left:-19.248305pt;}
._a{margin-left:-10.157867pt;}
._58{margin-left:-8.482667pt;}
._9{margin-left:-7.583467pt;}
._8{margin-left:-5.872000pt;}
._c{margin-left:-4.685333pt;}
._7{margin-left:-3.653333pt;}
._3{margin-left:-2.529600pt;}
._2{margin-left:-0.952000pt;}
._1{width:0.915733pt;}
._0{width:1.894933pt;}
._6{width:2.961600pt;}
._56{width:3.893867pt;}
._5{width:4.787733pt;}
._55{width:6.346667pt;}
._b{width:7.658667pt;}
._32{width:8.944000pt;}
._31{width:9.920000pt;}
._57{width:11.373333pt;}
._4{width:32.328533pt;}
._59{width:37.914133pt;}
._44{width:43.363733pt;}
._4a{width:71.874133pt;}
._46{width:73.253867pt;}
._51{width:79.597333pt;}
._4d{width:92.530667pt;}
._45{width:95.496533pt;}
._43{width:98.662933pt;}
._4b{width:103.270400pt;}
._3c{width:126.713600pt;}
._47{width:140.456000pt;}
._3b{width:187.054933pt;}
._42{width:211.548800pt;}
._33{width:217.642667pt;}
._49{width:221.349333pt;}
._48{width:222.892800pt;}
._4c{width:257.096000pt;}
._35{width:264.433067pt;}
._34{width:275.147733pt;}
._41{width:276.596267pt;}
._3e{width:278.148800pt;}
._3f{width:299.622400pt;}
._3a{width:304.713600pt;}
._40{width:321.937600pt;}
._3d{width:323.755733pt;}
._36{width:325.270933pt;}
._50{width:331.662933pt;}
._39{width:348.300800pt;}
._f{width:378.401600pt;}
._37{width:387.316267pt;}
._4e{width:389.186133pt;}
._38{width:394.062400pt;}
._e{width:414.048000pt;}
._4f{width:417.993067pt;}
._d{width:423.031467pt;}
._2a{width:453.633067pt;}
._2b{width:499.695467pt;}
._30{width:506.376000pt;}
._1d{width:532.787733pt;}
._11{width:538.316267pt;}
._13{width:550.020267pt;}
._1f{width:572.339733pt;}
._17{width:580.366933pt;}
._22{width:600.474133pt;}
._1b{width:605.584000pt;}
._2f{width:606.503467pt;}
._25{width:608.777067pt;}
._14{width:609.925333pt;}
._28{width:619.273067pt;}
._15{width:621.146667pt;}
._27{width:625.732800pt;}
._10{width:627.674667pt;}
._21{width:629.598400pt;}
._1e{width:633.839467pt;}
._12{width:634.757333pt;}
._2d{width:635.802133pt;}
._18{width:639.587200pt;}
._23{width:642.099733pt;}
._29{width:647.023467pt;}
._1a{width:647.945067pt;}
._2e{width:656.552533pt;}
._2c{width:661.854400pt;}
._20{width:668.484800pt;}
._19{width:676.719467pt;}
._24{width:684.442133pt;}
._26{width:699.674133pt;}
._1c{width:707.439467pt;}
._16{width:719.300800pt;}
.fsb{font-size:13.976533pt;}
.fsc{font-size:22.068267pt;}
.fsd{font-size:31.200000pt;}
.fs3{font-size:34.202667pt;}
.fsa{font-size:36.780800pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:38.077893pt;}
.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;}
.y117{bottom:0.907867pt;}
.y118{bottom:0.925200pt;}
.y1{bottom:60.555333pt;}
.y3a{bottom:63.299600pt;}
.y3b{bottom:66.698800pt;}
.y7d{bottom:100.514400pt;}
.y66{bottom:100.514533pt;}
.yf{bottom:104.175867pt;}
.y2b{bottom:104.189067pt;}
.yc5{bottom:104.470400pt;}
.y147{bottom:107.111867pt;}
.ye{bottom:116.975867pt;}
.yc4{bottom:117.803733pt;}
.y7c{bottom:119.181067pt;}
.y65{bottom:119.181200pt;}
.y2a{bottom:122.855733pt;}
.y146{bottom:124.711867pt;}
.yd{bottom:129.775867pt;}
.yc3{bottom:131.137067pt;}
.y7b{bottom:137.847733pt;}
.y64{bottom:137.847867pt;}
.y29{bottom:141.522400pt;}
.y145{bottom:142.311867pt;}
.yc{bottom:142.575867pt;}
.yc2{bottom:149.719733pt;}
.y7a{bottom:156.514400pt;}
.y63{bottom:156.514533pt;}
.y28{bottom:160.189067pt;}
.yc1{bottom:168.302400pt;}
.y79{bottom:175.181067pt;}
.y62{bottom:175.181200pt;}
.y27{bottom:178.855733pt;}
.y37{bottom:180.812133pt;}
.yc0{bottom:181.635733pt;}
.y78{bottom:193.847733pt;}
.y61{bottom:193.847867pt;}
.y36{bottom:196.812133pt;}
.y26{bottom:197.522400pt;}
.ybf{bottom:200.218400pt;}
.yca{bottom:212.514400pt;}
.y60{bottom:212.514533pt;}
.y35{bottom:212.812000pt;}
.ybe{bottom:213.551733pt;}
.y25{bottom:216.189067pt;}
.y15a{bottom:217.359467pt;}
.y77{bottom:224.456400pt;}
.y34{bottom:228.812000pt;}
.yc9{bottom:231.181067pt;}
.y5f{bottom:231.181200pt;}
.ybd{bottom:232.134400pt;}
.y24{bottom:234.855733pt;}
.y33{bottom:244.812000pt;}
.ybc{bottom:245.467733pt;}
.yc8{bottom:249.847733pt;}
.y5e{bottom:249.847867pt;}
.y76{bottom:253.165333pt;}
.y23{bottom:253.522400pt;}
.y32{bottom:260.812000pt;}
.ybb{bottom:264.050400pt;}
.y16b{bottom:268.514400pt;}
.y5d{bottom:268.514533pt;}
.y22{bottom:272.189067pt;}
.y31{bottom:276.812000pt;}
.yba{bottom:277.383733pt;}
.y153{bottom:281.280933pt;}
.yc7{bottom:287.181067pt;}
.y5c{bottom:287.181200pt;}
.y21{bottom:290.855733pt;}
.y159{bottom:292.026133pt;}
.y30{bottom:292.812000pt;}
.yb9{bottom:295.966400pt;}
.y75{bottom:305.847733pt;}
.y5b{bottom:305.847867pt;}
.yb8{bottom:309.299733pt;}
.y20{bottom:309.522400pt;}
.yb7{bottom:322.633067pt;}
.y2f{bottom:323.930133pt;}
.y74{bottom:324.514400pt;}
.y152{bottom:324.514533pt;}
.y1f{bottom:328.189067pt;}
.yb6{bottom:335.966400pt;}
.y5a{bottom:337.280933pt;}
.y2e{bottom:339.930133pt;}
.y73{bottom:343.181067pt;}
.y151{bottom:343.181200pt;}
.y1e{bottom:346.855600pt;}
.y158{bottom:348.026133pt;}
.yb5{bottom:354.549067pt;}
.y2d{bottom:355.930133pt;}
.y72{bottom:361.847733pt;}
.y150{bottom:361.847867pt;}
.y1d{bottom:365.522267pt;}
.yb4{bottom:367.882400pt;}
.y2c{bottom:371.930133pt;}
.yc6{bottom:372.674533pt;}
.y71{bottom:380.514400pt;}
.y59{bottom:380.514533pt;}
.yb3{bottom:386.465067pt;}
.y1c{bottom:394.933733pt;}
.y70{bottom:399.181067pt;}
.y58{bottom:399.181200pt;}
.yb2{bottom:399.798400pt;}
.y157{bottom:404.026133pt;}
.yb1{bottom:413.131733pt;}
.y6f{bottom:417.847733pt;}
.y57{bottom:417.847867pt;}
.ycc{bottom:422.167200pt;}
.yb0{bottom:431.714400pt;}
.y6e{bottom:436.514400pt;}
.y56{bottom:436.514533pt;}
.ycb{bottom:439.767200pt;}
.yaf{bottom:450.297067pt;}
.y6d{bottom:455.181067pt;}
.y55{bottom:455.181200pt;}
.yd3{bottom:458.216000pt;}
.y156{bottom:460.388533pt;}
.yae{bottom:463.630400pt;}
.y1b{bottom:466.513733pt;}
.y115{bottom:472.916400pt;}
.y116{bottom:472.934267pt;}
.y6c{bottom:473.847733pt;}
.y54{bottom:473.847867pt;}
.y128{bottom:480.565867pt;}
.yad{bottom:482.213200pt;}
.y155{bottom:486.614267pt;}
.y113{bottom:486.709733pt;}
.y114{bottom:486.727333pt;}
.y11e{bottom:490.910800pt;}
.y6b{bottom:492.514400pt;}
.y53{bottom:492.514533pt;}
.yac{bottom:495.546533pt;}
.y143{bottom:500.618267pt;}
.y144{bottom:500.635467pt;}
.y1a{bottom:503.011333pt;}
.y12d{bottom:504.703867pt;}
.y6a{bottom:511.181067pt;}
.y52{bottom:511.181200pt;}
.yd4{bottom:511.256933pt;}
.y111{bottom:513.952133pt;}
.y112{bottom:513.969733pt;}
.yab{bottom:514.129200pt;}
.y19{bottom:520.611467pt;}
.yaa{bottom:527.462533pt;}
.y10f{bottom:528.088000pt;}
.y110{bottom:528.105600pt;}
.y127{bottom:528.840933pt;}
.y69{bottom:529.847733pt;}
.y51{bottom:529.847867pt;}
.y137{bottom:532.289067pt;}
.y18{bottom:538.211467pt;}
.y10d{bottom:541.537200pt;}
.y10e{bottom:541.554933pt;}
.ya9{bottom:546.045067pt;}
.y123{bottom:546.082133pt;}
.y68{bottom:548.514400pt;}
.y14f{bottom:548.514533pt;}
.y142{bottom:551.213200pt;}
.y13e{bottom:555.295333pt;}
.y13f{bottom:555.312400pt;}
.y17{bottom:555.811467pt;}
.ya8{bottom:559.378400pt;}
.y13d{bottom:559.668533pt;}
.y50{bottom:561.280933pt;}
.y67{bottom:567.181067pt;}
.y14e{bottom:567.181200pt;}
.y10b{bottom:569.122933pt;}
.y10c{bottom:569.140267pt;}
.ya7{bottom:572.711733pt;}
.y16{bottom:573.411467pt;}
.y109{bottom:583.258800pt;}
.y10a{bottom:583.276000pt;}
.y16a{bottom:585.847733pt;}
.y14d{bottom:585.847867pt;}
.y129{bottom:590.908400pt;}
.y15{bottom:591.011333pt;}
.ya6{bottom:591.294533pt;}
.y107{bottom:597.051333pt;}
.y108{bottom:597.068933pt;}
.y141{bottom:601.252533pt;}
.y93{bottom:603.728533pt;}
.y169{bottom:604.514400pt;}
.y4f{bottom:604.514533pt;}
.y14{bottom:608.611467pt;}
.ya5{bottom:609.877200pt;}
.y105{bottom:610.843867pt;}
.y106{bottom:610.861200pt;}
.y92{bottom:621.933333pt;}
.y168{bottom:623.181067pt;}
.y4e{bottom:623.181200pt;}
.y103{bottom:624.637067pt;}
.y104{bottom:624.654133pt;}
.y13{bottom:626.211467pt;}
.y120{bottom:635.865867pt;}
.y154{bottom:635.947600pt;}
.ya4{bottom:636.972133pt;}
.y101{bottom:638.429733pt;}
.y102{bottom:638.447200pt;}
.y91{bottom:640.138000pt;}
.y167{bottom:641.847733pt;}
.y4d{bottom:641.847867pt;}
.y12{bottom:643.811467pt;}
.y126{bottom:650.605200pt;}
.yff{bottom:652.222133pt;}
.y100{bottom:652.239467pt;}
.y90{bottom:658.342667pt;}
.y166{bottom:660.514400pt;}
.y4c{bottom:660.514533pt;}
.y134{bottom:665.474667pt;}
.yfd{bottom:666.015467pt;}
.yfe{bottom:666.032533pt;}
.y11{bottom:671.453600pt;}
.y8f{bottom:676.547467pt;}
.ya3{bottom:679.180933pt;}
.y165{bottom:679.181067pt;}
.y4b{bottom:679.181200pt;}
.yfb{bottom:679.808800pt;}
.yfc{bottom:679.825467pt;}
.y125{bottom:680.823333pt;}
.y11d{bottom:681.422533pt;}
.yf9{bottom:693.600400pt;}
.yfa{bottom:693.617733pt;}
.y8e{bottom:694.752133pt;}
.ya2{bottom:697.847600pt;}
.y164{bottom:697.847733pt;}
.y4a{bottom:697.847867pt;}
.y13b{bottom:699.526133pt;}
.y12e{bottom:701.250133pt;}
.yf7{bottom:707.393733pt;}
.yf8{bottom:707.410667pt;}
.y139{bottom:711.594667pt;}
.y8d{bottom:712.956933pt;}
.ya1{bottom:716.514267pt;}
.y163{bottom:716.514400pt;}
.y49{bottom:716.514533pt;}
.yf5{bottom:721.186267pt;}
.yf6{bottom:721.203333pt;}
.y121{bottom:721.939200pt;}
.y8c{bottom:731.161600pt;}
.yf3{bottom:734.979600pt;}
.yf4{bottom:734.996400pt;}
.ya0{bottom:735.180933pt;}
.y162{bottom:735.181067pt;}
.y14c{bottom:735.181200pt;}
.y12c{bottom:739.705467pt;}
.yb{bottom:741.926133pt;}
.y138{bottom:742.628400pt;}
.y48{bottom:747.123200pt;}
.y11a{bottom:748.772133pt;}
.y11b{bottom:748.788933pt;}
.y8b{bottom:749.366400pt;}
.y119{bottom:752.972933pt;}
.y9f{bottom:753.847600pt;}
.y161{bottom:753.847733pt;}
.y14b{bottom:753.847867pt;}
.ya{bottom:757.926133pt;}
.yf1{bottom:762.564667pt;}
.yf2{bottom:762.581600pt;}
.y8a{bottom:767.571067pt;}
.y9e{bottom:772.514267pt;}
.y160{bottom:772.514400pt;}
.y14a{bottom:772.514533pt;}
.y9{bottom:773.926133pt;}
.y47{bottom:775.832000pt;}
.yef{bottom:776.357867pt;}
.yf0{bottom:776.374667pt;}
.y130{bottom:785.730667pt;}
.y89{bottom:785.775733pt;}
.y8{bottom:789.926133pt;}
.yed{bottom:790.150400pt;}
.yee{bottom:790.167200pt;}
.y9d{bottom:791.180933pt;}
.y15f{bottom:791.181067pt;}
.y149{bottom:791.181200pt;}
.y11c{bottom:797.799200pt;}
.yeb{bottom:803.942933pt;}
.yec{bottom:803.959867pt;}
.y88{bottom:803.980533pt;}
.y7{bottom:805.926133pt;}
.y12f{bottom:808.143733pt;}
.y9c{bottom:809.847600pt;}
.y148{bottom:809.847867pt;}
.ye9{bottom:817.735467pt;}
.yea{bottom:817.752400pt;}
.y6{bottom:821.926133pt;}
.y87{bottom:822.185200pt;}
.y15e{bottom:822.614133pt;}
.y46{bottom:828.514533pt;}
.y131{bottom:828.805867pt;}
.ye7{bottom:831.528800pt;}
.ye8{bottom:831.545467pt;}
.y86{bottom:840.390000pt;}
.y132{bottom:840.901467pt;}
.y9b{bottom:841.280800pt;}
.ye5{bottom:845.321333pt;}
.ye6{bottom:845.338133pt;}
.y45{bottom:847.181200pt;}
.y124{bottom:852.970133pt;}
.y5{bottom:853.044133pt;}
.y85{bottom:858.594667pt;}
.ye3{bottom:859.113733pt;}
.ye4{bottom:859.130667pt;}
.y140{bottom:863.314667pt;}
.y15d{bottom:865.847733pt;}
.y44{bottom:865.847867pt;}
.y4{bottom:870.644267pt;}
.y11f{bottom:871.881067pt;}
.ye1{bottom:872.907200pt;}
.ye2{bottom:872.923733pt;}
.y84{bottom:876.799333pt;}
.y9a{bottom:884.514400pt;}
.y43{bottom:884.514533pt;}
.ydf{bottom:886.699600pt;}
.ye0{bottom:886.716267pt;}
.y83{bottom:895.004133pt;}
.ydd{bottom:900.492133pt;}
.yde{bottom:900.508933pt;}
.y122{bottom:902.861067pt;}
.y99{bottom:903.181067pt;}
.y42{bottom:903.181200pt;}
.y3{bottom:903.362267pt;}
.y13a{bottom:904.692933pt;}
.y15c{bottom:908.026000pt;}
.y82{bottom:913.208933pt;}
.ydb{bottom:914.285467pt;}
.ydc{bottom:914.302000pt;}
.y135{bottom:921.718267pt;}
.y98{bottom:921.847733pt;}
.y41{bottom:921.847867pt;}
.yd9{bottom:928.078000pt;}
.yda{bottom:928.094667pt;}
.y81{bottom:931.413600pt;}
.y2{bottom:932.695600pt;}
.y12b{bottom:938.743867pt;}
.y97{bottom:940.514400pt;}
.y40{bottom:940.514533pt;}
.yd7{bottom:941.870400pt;}
.yd8{bottom:941.887200pt;}
.y80{bottom:949.618267pt;}
.y12a{bottom:952.105200pt;}
.yd5{bottom:955.663733pt;}
.yd6{bottom:955.680267pt;}
.y96{bottom:959.181067pt;}
.y3f{bottom:959.181200pt;}
.y13c{bottom:965.036267pt;}
.y7f{bottom:967.823067pt;}
.yd1{bottom:969.456267pt;}
.yd2{bottom:969.472933pt;}
.y133{bottom:977.104933pt;}
.y95{bottom:977.847733pt;}
.y3e{bottom:977.847867pt;}
.ycf{bottom:983.249200pt;}
.yd0{bottom:983.265467pt;}
.y10{bottom:986.502667pt;}
.y136{bottom:987.449467pt;}
.y7e{bottom:994.918133pt;}
.y94{bottom:996.514400pt;}
.y3d{bottom:996.514533pt;}
.ycd{bottom:997.042133pt;}
.yce{bottom:997.058533pt;}
.y15b{bottom:1000.401467pt;}
.y39{bottom:1030.390667pt;}
.y38{bottom:1047.724000pt;}
.y3c{bottom:1047.726000pt;}
.h1b{height:17.930467pt;}
.h1c{height:25.350000pt;}
.h1a{height:27.962747pt;}
.h19{height:28.558420pt;}
.h15{height:28.986811pt;}
.h16{height:29.884400pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h18{height:30.938288pt;}
.h12{height:32.437500pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h13{height:34.666667pt;}
.h8{height:36.492188pt;}
.he{height:38.273438pt;}
.hb{height:38.507812pt;}
.ha{height:39.000000pt;}
.h9{height:40.546875pt;}
.h10{height:42.786458pt;}
.hd{height:43.333333pt;}
.h14{height:43.750000pt;}
.h11{height:44.601562pt;}
.h4{height:47.666667pt;}
.hc{height:48.656250pt;}
.h3{height:68.929688pt;}
.h17{height:556.964000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:620.369333pt;}
.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.779600pt;}
.x4b{left:101.784000pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.xd{left:160.676000pt;}
.x29{left:174.263333pt;}
.x35{left:176.713867pt;}
.x1c{left:186.721600pt;}
.x1b{left:192.695600pt;}
.x1d{left:196.721600pt;}
.x1e{left:202.729467pt;}
.x3a{left:207.984667pt;}
.x25{left:209.140933pt;}
.x14{left:213.304933pt;}
.x3e{left:215.575867pt;}
.x31{left:217.703467pt;}
.x72{left:233.743467pt;}
.x4{left:266.834667pt;}
.xb{left:281.952800pt;}
.x73{left:311.730933pt;}
.x1f{left:320.924400pt;}
.x3f{left:322.374933pt;}
.x36{left:326.708267pt;}
.x2a{left:327.974000pt;}
.x40{left:328.974000pt;}
.x78{left:330.976800pt;}
.x15{left:332.872400pt;}
.x2b{left:335.474000pt;}
.x26{left:337.505200pt;}
.x7d{left:339.054000pt;}
.x7c{left:340.033200pt;}
.x20{left:343.223867pt;}
.x16{left:344.627600pt;}
.x77{left:346.211600pt;}
.xf{left:348.419200pt;}
.x83{left:349.413067pt;}
.x7f{left:350.322400pt;}
.x3{left:352.045067pt;}
.x76{left:354.535067pt;}
.x3b{left:357.276000pt;}
.x79{left:359.270000pt;}
.x69{left:360.332800pt;}
.x71{left:363.926000pt;}
.x7e{left:365.456400pt;}
.x5a{left:366.841867pt;}
.x84{left:369.539600pt;}
.x37{left:373.377600pt;}
.x81{left:375.580933pt;}
.x58{left:378.078667pt;}
.x74{left:379.024800pt;}
.x7a{left:379.951067pt;}
.x32{left:382.203067pt;}
.x5c{left:384.365600pt;}
.x65{left:386.227067pt;}
.x67{left:388.942133pt;}
.x52{left:390.265200pt;}
.x7b{left:391.401467pt;}
.x80{left:392.557600pt;}
.x63{left:396.179333pt;}
.x56{left:399.818133pt;}
.x5f{left:401.874133pt;}
.x4d{left:403.320933pt;}
.x6b{left:404.700933pt;}
.x6f{left:405.723200pt;}
.x50{left:410.054533pt;}
.x54{left:411.408933pt;}
.x57{left:412.971333pt;}
.x45{left:414.663733pt;}
.x60{left:420.218267pt;}
.x5d{left:422.458400pt;}
.x47{left:432.505733pt;}
.x4f{left:434.719067pt;}
.x6d{left:435.755200pt;}
.x6a{left:459.052267pt;}
.x59{left:462.461733pt;}
.x64{left:464.323333pt;}
.x38{left:467.236667pt;}
.x41{left:468.320000pt;}
.x17{left:469.306933pt;}
.x2d{left:470.898133pt;}
.x33{left:473.473600pt;}
.x11{left:474.530933pt;}
.x75{left:475.893733pt;}
.x2c{left:479.056933pt;}
.x3c{left:481.494400pt;}
.x10{left:482.481467pt;}
.x21{left:484.723600pt;}
.x68{left:487.128400pt;}
.x53{left:488.449867pt;}
.x62{left:489.919600pt;}
.x46{left:494.429467pt;}
.x5b{left:496.194933pt;}
.x51{left:499.025600pt;}
.x2e{left:501.267867pt;}
.x66{left:502.325067pt;}
.x82{left:504.429067pt;}
.x18{left:506.452800pt;}
.x61{left:507.644800pt;}
.x12{left:509.429333pt;}
.x70{left:511.802133pt;}
.x6c{left:514.875200pt;}
.x4e{left:518.912000pt;}
.x48{left:519.950400pt;}
.x27{left:523.942400pt;}
.x6e{left:530.606400pt;}
.x5e{left:552.881600pt;}
.x9{left:574.136267pt;}
.x55{left:578.104267pt;}
.x4c{left:588.487333pt;}
.x49{left:591.479067pt;}
.x8{left:603.375867pt;}
.x19{left:606.992000pt;}
.x2f{left:607.983600pt;}
.x1a{left:609.356000pt;}
.x22{left:610.293467pt;}
.x3d{left:613.777867pt;}
.x23{left:616.139867pt;}
.x44{left:618.785733pt;}
.x43{left:620.819600pt;}
.x42{left:622.001867pt;}
.x24{left:627.447200pt;}
.x28{left:628.384667pt;}
.x39{left:633.824800pt;}
.x34{left:640.978400pt;}
.x13{left:644.910667pt;}
.x30{left:651.431467pt;}
.x4a{left:676.863200pt;}
.x1{left:717.410933pt;}
}




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