
    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_29bdbd454528d13a36dd8b81.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;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_4d914828aac6405753c0e597.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.910645;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_ba1bba98ee420363a001015b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.722656;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_330ff6c9bbbe703f6a95d8f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.136000;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_dbfb339f5ec2c9090647b80e.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.222000;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_57ee3d03dc19cbb0a0db910d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;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_3df5dce13df17b533167a2b8.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910645;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_451fce770689b048b07c34b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.256000;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_12f702399ea0b444bc17825e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.144000;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_9840f4e7802fd45931851c45.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.750000;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_88114fc18e348f7b2468ce41.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.705000;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_f8064fb63bbbd5fbbab44a93.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.907000;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_24f248240410a109554b0589.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.051000;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_caff87fcdb72a7386384758d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.907000;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_a768fb2e90549b3915c7cb29.woff2')format("woff");}.fff{font-family:fff;line-height:0.690918;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.m1{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);}
.v1{vertical-align:-19.199982px;}
.v3{vertical-align:-14.250000px;}
.v6{vertical-align:-12.000000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:7.999695px;}
.v4{vertical-align:19.199982px;}
.v2{vertical-align:22.799927px;}
.ls13{letter-spacing:-12.000000px;}
.lsc{letter-spacing:-1.776000px;}
.ls6{letter-spacing:-0.192000px;}
.ls4{letter-spacing:-0.096000px;}
.ls3{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.000009px;}
.ls2{letter-spacing:0.000044px;}
.ls9{letter-spacing:0.000073px;}
.ls12{letter-spacing:0.000439px;}
.lsa{letter-spacing:0.000604px;}
.lsd{letter-spacing:0.007129px;}
.lsf{letter-spacing:0.007219px;}
.lsb{letter-spacing:0.007221px;}
.lse{letter-spacing:0.007313px;}
.ls11{letter-spacing:0.007770px;}
.ls8{letter-spacing:0.008386px;}
.ls14{letter-spacing:0.240000px;}
.ls7{letter-spacing:2.146532px;}
.ls0{letter-spacing:30.703189px;}
.ls1{letter-spacing:53.016035px;}
.ls5{letter-spacing:55.254607px;}
.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;}
}
.ws1{word-spacing:-14.976000px;}
.ws5{word-spacing:-14.250000px;}
.wse7{word-spacing:-13.332000px;}
.ws85{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.799000px;}
.ws4{word-spacing:-11.514000px;}
.ws62{word-spacing:-11.340000px;}
.ws97{word-spacing:-10.224000px;}
.ws15{word-spacing:-9.975000px;}
.ws16{word-spacing:-9.696000px;}
.ws3{word-spacing:-9.408000px;}
.wsd7{word-spacing:-9.216000px;}
.ws0{word-spacing:-8.400000px;}
.ws3e{word-spacing:-5.301000px;}
.ws7a{word-spacing:-4.275000px;}
.ws75{word-spacing:-3.762000px;}
.ws10d{word-spacing:-3.600000px;}
.ws81{word-spacing:-3.135000px;}
.ws4b{word-spacing:-2.907000px;}
.ws82{word-spacing:-2.850000px;}
.ws4a{word-spacing:-2.736000px;}
.ws46{word-spacing:-2.622000px;}
.wsa8{word-spacing:-2.451000px;}
.ws42{word-spacing:-2.394000px;}
.ws4c{word-spacing:-2.337000px;}
.ws74{word-spacing:-2.280000px;}
.ws8b{word-spacing:-2.186283px;}
.ws88{word-spacing:-2.160000px;}
.ws35{word-spacing:-2.109000px;}
.ws2f{word-spacing:-1.995000px;}
.wsf5{word-spacing:-1.968000px;}
.wsc4{word-spacing:-1.938000px;}
.ws18{word-spacing:-1.881000px;}
.ws108{word-spacing:-1.872000px;}
.wsd1{word-spacing:-1.824000px;}
.ws105{word-spacing:-1.776000px;}
.ws6d{word-spacing:-1.767000px;}
.ws13{word-spacing:-1.710000px;}
.ws87{word-spacing:-1.680000px;}
.ws38{word-spacing:-1.653000px;}
.ws36{word-spacing:-1.596000px;}
.wse6{word-spacing:-1.584000px;}
.wsc0{word-spacing:-1.539000px;}
.ws50{word-spacing:-1.488000px;}
.ws11a{word-spacing:-1.440000px;}
.ws1e{word-spacing:-1.425000px;}
.ws107{word-spacing:-1.392000px;}
.wsac{word-spacing:-1.368000px;}
.ws37{word-spacing:-1.311000px;}
.ws14{word-spacing:-1.254000px;}
.wsb4{word-spacing:-1.248000px;}
.wsfe{word-spacing:-1.200000px;}
.wsec{word-spacing:-1.152000px;}
.ws73{word-spacing:-1.140000px;}
.wsc1{word-spacing:-1.083000px;}
.wsce{word-spacing:-1.026000px;}
.ws99{word-spacing:-0.969000px;}
.ws106{word-spacing:-0.864000px;}
.ws55{word-spacing:-0.855000px;}
.ws64{word-spacing:-0.798000px;}
.ws6c{word-spacing:-0.741000px;}
.ws1c{word-spacing:-0.684000px;}
.wsb9{word-spacing:-0.672000px;}
.ws22{word-spacing:-0.627000px;}
.wsf4{word-spacing:-0.576000px;}
.ws68{word-spacing:-0.570000px;}
.wsb8{word-spacing:-0.528000px;}
.wsff{word-spacing:-0.480000px;}
.wsd3{word-spacing:-0.456000px;}
.ws5d{word-spacing:-0.399000px;}
.wsed{word-spacing:-0.384000px;}
.ws41{word-spacing:-0.342000px;}
.ws98{word-spacing:-0.285000px;}
.ws117{word-spacing:-0.240000px;}
.ws5e{word-spacing:-0.228000px;}
.ws89{word-spacing:-0.192000px;}
.ws78{word-spacing:-0.171000px;}
.wsb2{word-spacing:-0.144000px;}
.ws54{word-spacing:-0.114000px;}
.ws96{word-spacing:-0.048000px;}
.ws8c{word-spacing:-0.041843px;}
.ws8a{word-spacing:-0.039751px;}
.ws6{word-spacing:0.000000px;}
.wsfa{word-spacing:0.048000px;}
.ws51{word-spacing:0.096000px;}
.ws1b{word-spacing:0.114000px;}
.ws10f{word-spacing:0.144000px;}
.ws4e{word-spacing:0.171000px;}
.ws52{word-spacing:0.192000px;}
.wsf{word-spacing:0.228000px;}
.ws101{word-spacing:0.240000px;}
.ws59{word-spacing:0.285000px;}
.wse9{word-spacing:0.288000px;}
.ws2c{word-spacing:0.342000px;}
.wse4{word-spacing:0.384000px;}
.ws9a{word-spacing:0.456000px;}
.ws3b{word-spacing:0.513000px;}
.wsbb{word-spacing:0.528000px;}
.ws6f{word-spacing:0.570000px;}
.wsca{word-spacing:0.576000px;}
.ws109{word-spacing:0.624000px;}
.ws19{word-spacing:0.627000px;}
.ws6b{word-spacing:0.684000px;}
.ws66{word-spacing:0.741000px;}
.ws7b{word-spacing:0.798000px;}
.ws29{word-spacing:0.855000px;}
.ws56{word-spacing:0.912000px;}
.ws103{word-spacing:0.960000px;}
.ws79{word-spacing:0.969000px;}
.wsf6{word-spacing:1.008000px;}
.ws70{word-spacing:1.026000px;}
.wsd9{word-spacing:1.083000px;}
.ws7d{word-spacing:1.140000px;}
.wse8{word-spacing:1.152000px;}
.ws5b{word-spacing:1.197000px;}
.ws102{word-spacing:1.200000px;}
.ws118{word-spacing:1.248000px;}
.ws28{word-spacing:1.311000px;}
.ws23{word-spacing:1.368000px;}
.ws61{word-spacing:1.425000px;}
.wsf9{word-spacing:1.440000px;}
.ws60{word-spacing:1.482000px;}
.wsc9{word-spacing:1.536000px;}
.ws34{word-spacing:1.539000px;}
.wsea{word-spacing:1.584000px;}
.wsd8{word-spacing:1.596000px;}
.wsa1{word-spacing:1.632000px;}
.ws25{word-spacing:1.653000px;}
.wsa2{word-spacing:1.680000px;}
.ws47{word-spacing:1.710000px;}
.ws90{word-spacing:1.767000px;}
.wsfc{word-spacing:1.776000px;}
.ws76{word-spacing:1.824000px;}
.ws110{word-spacing:1.872000px;}
.ws20{word-spacing:1.881000px;}
.ws39{word-spacing:1.938000px;}
.wsf7{word-spacing:1.968000px;}
.ws3c{word-spacing:1.995000px;}
.ws31{word-spacing:2.052000px;}
.wsb3{word-spacing:2.064000px;}
.ws57{word-spacing:2.109000px;}
.ws112{word-spacing:2.112000px;}
.wsa0{word-spacing:2.160000px;}
.ws33{word-spacing:2.166000px;}
.wseb{word-spacing:2.208000px;}
.ws94{word-spacing:2.223000px;}
.ws104{word-spacing:2.256000px;}
.ws9c{word-spacing:2.280000px;}
.wsdd{word-spacing:2.304000px;}
.ws4d{word-spacing:2.337000px;}
.ws9e{word-spacing:2.352000px;}
.ws83{word-spacing:2.394000px;}
.wsdf{word-spacing:2.400000px;}
.ws3f{word-spacing:2.451000px;}
.ws80{word-spacing:2.508000px;}
.ws7f{word-spacing:2.565000px;}
.wsef{word-spacing:2.640000px;}
.ws6a{word-spacing:2.679000px;}
.ws116{word-spacing:2.688000px;}
.ws77{word-spacing:2.736000px;}
.ws2a{word-spacing:2.793000px;}
.ws17{word-spacing:2.832000px;}
.wsd4{word-spacing:2.850000px;}
.ws45{word-spacing:2.907000px;}
.ws5c{word-spacing:2.964000px;}
.wsa3{word-spacing:3.021000px;}
.ws9f{word-spacing:3.072000px;}
.ws95{word-spacing:3.078000px;}
.wse0{word-spacing:3.120000px;}
.wsbd{word-spacing:3.135000px;}
.wsd0{word-spacing:3.168000px;}
.ws5a{word-spacing:3.192000px;}
.ws1a{word-spacing:3.249000px;}
.wsf1{word-spacing:3.264000px;}
.ws69{word-spacing:3.306000px;}
.wsd6{word-spacing:3.363000px;}
.wsd2{word-spacing:3.420000px;}
.ws65{word-spacing:3.477000px;}
.wsb6{word-spacing:3.534000px;}
.ws21{word-spacing:3.648000px;}
.wsb0{word-spacing:3.696000px;}
.ws2b{word-spacing:3.705000px;}
.ws10b{word-spacing:3.744000px;}
.ws9b{word-spacing:3.762000px;}
.wsba{word-spacing:3.792000px;}
.ws44{word-spacing:3.819000px;}
.wsdc{word-spacing:3.888000px;}
.ws43{word-spacing:3.933000px;}
.ws100{word-spacing:3.936000px;}
.ws72{word-spacing:3.990000px;}
.wsc7{word-spacing:4.032000px;}
.wsc{word-spacing:4.047000px;}
.wsa4{word-spacing:4.161000px;}
.ws6e{word-spacing:4.218000px;}
.wsfd{word-spacing:4.224000px;}
.ws10{word-spacing:4.275000px;}
.ws53{word-spacing:4.332000px;}
.ws63{word-spacing:4.446000px;}
.wsad{word-spacing:4.503000px;}
.ws67{word-spacing:4.560000px;}
.wscf{word-spacing:4.608000px;}
.ws27{word-spacing:4.617000px;}
.wsab{word-spacing:4.674000px;}
.ws115{word-spacing:4.704000px;}
.ws10c{word-spacing:4.752000px;}
.wsb1{word-spacing:4.800000px;}
.ws4f{word-spacing:4.845000px;}
.wsfb{word-spacing:4.848000px;}
.wsa7{word-spacing:4.902000px;}
.wsde{word-spacing:4.944000px;}
.ws2d{word-spacing:4.959000px;}
.wse2{word-spacing:4.992000px;}
.ws1d{word-spacing:5.016000px;}
.ws93{word-spacing:5.130000px;}
.wsf8{word-spacing:5.136000px;}
.wse{word-spacing:5.187000px;}
.wsc8{word-spacing:5.232000px;}
.ws92{word-spacing:5.244000px;}
.ws111{word-spacing:5.328000px;}
.ws7{word-spacing:5.358000px;}
.wscd{word-spacing:5.415000px;}
.wsc5{word-spacing:5.472000px;}
.ws8d{word-spacing:5.529000px;}
.wse1{word-spacing:5.568000px;}
.wsa5{word-spacing:5.700000px;}
.ws9d{word-spacing:5.757000px;}
.ws7e{word-spacing:5.814000px;}
.wsb5{word-spacing:5.871000px;}
.wscb{word-spacing:5.985000px;}
.wscc{word-spacing:6.042000px;}
.wsb{word-spacing:6.099000px;}
.wse3{word-spacing:6.144000px;}
.ws24{word-spacing:6.156000px;}
.ws9{word-spacing:6.213000px;}
.wsbe{word-spacing:6.270000px;}
.ws12{word-spacing:6.327000px;}
.ws49{word-spacing:6.441000px;}
.ws3d{word-spacing:6.498000px;}
.ws8f{word-spacing:6.555000px;}
.wsc3{word-spacing:6.612000px;}
.wsf2{word-spacing:6.624000px;}
.ws30{word-spacing:6.669000px;}
.wsda{word-spacing:6.720000px;}
.wsbf{word-spacing:6.726000px;}
.ws114{word-spacing:6.768000px;}
.ws8e{word-spacing:6.783000px;}
.ws113{word-spacing:6.912000px;}
.wsee{word-spacing:6.960000px;}
.ws7c{word-spacing:7.011000px;}
.ws32{word-spacing:7.068000px;}
.ws26{word-spacing:7.125000px;}
.ws48{word-spacing:7.239000px;}
.ws1f{word-spacing:7.296000px;}
.wsa{word-spacing:7.353000px;}
.ws10a{word-spacing:7.392000px;}
.wsb7{word-spacing:7.410000px;}
.ws71{word-spacing:7.467000px;}
.wsbc{word-spacing:7.581000px;}
.wse5{word-spacing:7.584000px;}
.ws58{word-spacing:7.638000px;}
.wsd5{word-spacing:7.752000px;}
.wsae{word-spacing:7.809000px;}
.wsa6{word-spacing:8.037000px;}
.ws2e{word-spacing:8.094000px;}
.wsd{word-spacing:8.322000px;}
.ws40{word-spacing:8.436000px;}
.ws10e{word-spacing:8.592000px;}
.wsaa{word-spacing:8.607000px;}
.wsa9{word-spacing:8.721000px;}
.wsc6{word-spacing:8.835000px;}
.wsc2{word-spacing:9.120000px;}
.wsdb{word-spacing:9.696000px;}
.ws8{word-spacing:9.975000px;}
.wsaf{word-spacing:10.488000px;}
.wsf3{word-spacing:10.848000px;}
.ws91{word-spacing:11.229000px;}
.ws119{word-spacing:11.376000px;}
.ws5f{word-spacing:11.571000px;}
.wsf0{word-spacing:12.000000px;}
.ws3a{word-spacing:17.784000px;}
.ws11{word-spacing:19.668000px;}
.ws86{word-spacing:80.215201px;}
.ws84{word-spacing:354.958734px;}
._3{margin-left:-66.350989px;}
._13{margin-left:-48.678607px;}
._24{margin-left:-14.649000px;}
._26{margin-left:-13.200850px;}
._27{margin-left:-12.000000px;}
._25{margin-left:-7.478825px;}
._5{margin-left:-6.331200px;}
._12{margin-left:-5.221200px;}
._6{margin-left:-3.557176px;}
._0{margin-left:-2.164800px;}
._2{margin-left:-1.108800px;}
._1{width:1.200000px;}
._d{width:3.130768px;}
._b{width:4.269300px;}
._a{width:5.592076px;}
._9{width:6.811501px;}
._8{width:8.475900px;}
._7{width:10.442400px;}
._15{width:12.426000px;}
._16{width:14.888175px;}
._c{width:16.641612px;}
._11{width:18.660000px;}
._28{width:22.833599px;}
._14{width:24.624000px;}
._f{width:34.599000px;}
._e{width:35.759411px;}
._10{width:41.838000px;}
._17{width:43.010985px;}
._20{width:48.156475px;}
._4{width:56.255995px;}
._23{width:82.812475px;}
._19{width:100.188475px;}
._1b{width:187.058985px;}
._18{width:192.500223px;}
._1c{width:213.468475px;}
._22{width:232.140475px;}
._1e{width:240.156475px;}
._21{width:400.286572px;}
._1d{width:412.318734px;}
._1a{width:584.174572px;}
._1f{width:615.763749px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:33.600000px;}
.fsa{font-size:39.750600px;}
.fs4{font-size:39.900000px;}
.fsb{font-size:41.842800px;}
.fs0{font-size:48.000000px;}
.fs9{font-size:56.787000px;}
.fs3{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs2{font-size:78.000000px;}
.fs6{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y5f{bottom:0.300568px;}
.y63{bottom:3.385666px;}
.y67{bottom:3.387177px;}
.y61{bottom:5.515640px;}
.y65{bottom:5.517151px;}
.y24{bottom:33.647400px;}
.y53{bottom:36.141749px;}
.y56{bottom:64.833600px;}
.y58{bottom:76.535402px;}
.y7{bottom:78.661348px;}
.y55{bottom:78.708600px;}
.y6c{bottom:90.410402px;}
.y52{bottom:90.425102px;}
.y10f{bottom:91.479898px;}
.yd3{bottom:92.300102px;}
.y6{bottom:92.536348px;}
.y54{bottom:92.583600px;}
.y6b{bottom:104.285397px;}
.y10e{bottom:105.354904px;}
.yd2{bottom:106.175102px;}
.y51{bottom:108.425102px;}
.y5{bottom:111.211349px;}
.y6a{bottom:118.160397px;}
.y10d{bottom:119.229904px;}
.yd1{bottom:120.050102px;}
.y50{bottom:126.425102px;}
.y69{bottom:132.035397px;}
.y10c{bottom:133.104904px;}
.yd0{bottom:133.925102px;}
.y4{bottom:135.168297px;}
.y59{bottom:143.292149px;}
.y4f{bottom:144.425102px;}
.y68{bottom:145.910397px;}
.y10b{bottom:146.979904px;}
.ycf{bottom:147.800102px;}
.y3{bottom:149.043297px;}
.y10a{bottom:160.854904px;}
.y9b{bottom:160.927952px;}
.yce{bottom:161.675102px;}
.y4e{bottom:162.425102px;}
.y109{bottom:174.729904px;}
.y9a{bottom:174.802952px;}
.ycd{bottom:175.550102px;}
.y4d{bottom:180.425102px;}
.y108{bottom:188.604904px;}
.y99{bottom:188.677952px;}
.ycc{bottom:189.425102px;}
.y4c{bottom:198.425102px;}
.y107{bottom:202.479904px;}
.y98{bottom:202.552940px;}
.ycb{bottom:203.300102px;}
.y106{bottom:216.354904px;}
.y4b{bottom:216.425102px;}
.y23{bottom:216.425240px;}
.y97{bottom:216.427940px;}
.yca{bottom:217.175102px;}
.y105{bottom:230.229904px;}
.y96{bottom:230.302940px;}
.yc9{bottom:231.050102px;}
.y4a{bottom:234.425102px;}
.y22{bottom:234.425240px;}
.y104{bottom:244.104904px;}
.y95{bottom:244.177940px;}
.yc8{bottom:244.925102px;}
.y49{bottom:252.425102px;}
.y21{bottom:252.425240px;}
.y103{bottom:257.979904px;}
.y94{bottom:258.052940px;}
.yc7{bottom:258.800102px;}
.y48{bottom:270.425102px;}
.y102{bottom:271.854904px;}
.yc6{bottom:272.675102px;}
.y101{bottom:285.729904px;}
.yc5{bottom:286.550102px;}
.y47{bottom:288.425102px;}
.y20{bottom:288.425240px;}
.y93{bottom:289.926590px;}
.y5a{bottom:294.843910px;}
.y72{bottom:297.004050px;}
.y100{bottom:299.604904px;}
.yc4{bottom:300.425102px;}
.y46{bottom:306.425102px;}
.y71{bottom:310.879050px;}
.yff{bottom:313.479904px;}
.yc3{bottom:314.300102px;}
.y92{bottom:321.800102px;}
.y45{bottom:324.425102px;}
.y70{bottom:324.754050px;}
.yfe{bottom:327.354904px;}
.yc2{bottom:328.175102px;}
.y6f{bottom:338.629050px;}
.yfd{bottom:341.229904px;}
.yc1{bottom:342.050102px;}
.y44{bottom:342.425102px;}
.y6e{bottom:352.504050px;}
.yfc{bottom:355.104904px;}
.y1f{bottom:355.147202px;}
.yc0{bottom:355.925102px;}
.y91{bottom:356.300102px;}
.y43{bottom:360.425102px;}
.y79{bottom:367.369194px;}
.yfb{bottom:368.979904px;}
.ybf{bottom:369.800102px;}
.y90{bottom:370.175102px;}
.y1e{bottom:372.397202px;}
.y42{bottom:378.425102px;}
.y78{bottom:381.244194px;}
.yfa{bottom:382.854904px;}
.ybe{bottom:383.675102px;}
.y8f{bottom:384.050079px;}
.y5b{bottom:390.211029px;}
.y77{bottom:395.119217px;}
.y41{bottom:396.425079px;}
.yf9{bottom:396.729904px;}
.ybd{bottom:397.550079px;}
.y1d{bottom:407.647202px;}
.y76{bottom:408.994217px;}
.yf8{bottom:410.604904px;}
.ybc{bottom:411.425079px;}
.y40{bottom:414.425079px;}
.y8e{bottom:415.925079px;}
.y75{bottom:422.869217px;}
.yf7{bottom:424.479904px;}
.y1c{bottom:424.897202px;}
.ybb{bottom:425.300079px;}
.y3f{bottom:432.425079px;}
.y74{bottom:436.744217px;}
.yf6{bottom:438.354904px;}
.yba{bottom:439.175079px;}
.y1b{bottom:442.147202px;}
.y8d{bottom:447.800079px;}
.y3e{bottom:450.425079px;}
.yf5{bottom:452.229904px;}
.yb9{bottom:453.050079px;}
.y1a{bottom:459.397202px;}
.y6d{bottom:460.670563px;}
.y8c{bottom:461.675079px;}
.yf4{bottom:466.104904px;}
.yb8{bottom:466.925079px;}
.y3d{bottom:468.425079px;}
.y8b{bottom:475.550079px;}
.y19{bottom:476.647202px;}
.yf3{bottom:479.979904px;}
.yb7{bottom:480.800079px;}
.y82{bottom:482.704514px;}
.y3c{bottom:486.425079px;}
.yf2{bottom:493.854904px;}
.y18{bottom:493.897202px;}
.yb6{bottom:494.675079px;}
.y81{bottom:496.579514px;}
.y3b{bottom:504.425079px;}
.y8a{bottom:507.425079px;}
.yf1{bottom:507.729904px;}
.yb5{bottom:508.550079px;}
.y80{bottom:510.454514px;}
.y17{bottom:511.147202px;}
.y64{bottom:517.037979px;}
.y66{bottom:520.425156px;}
.y89{bottom:521.300079px;}
.yf0{bottom:521.604904px;}
.y3a{bottom:522.425079px;}
.y7f{bottom:524.329514px;}
.y16{bottom:528.397202px;}
.y60{bottom:535.039490px;}
.y88{bottom:535.175079px;}
.yef{bottom:535.479904px;}
.yb4{bottom:536.300079px;}
.y7e{bottom:538.204514px;}
.y62{bottom:538.425156px;}
.y39{bottom:540.425079px;}
.y73{bottom:543.995682px;}
.y15{bottom:545.647202px;}
.y87{bottom:549.050079px;}
.yee{bottom:549.354904px;}
.yb3{bottom:550.175079px;}
.y7d{bottom:552.079514px;}
.y38{bottom:558.425079px;}
.y14{bottom:562.897202px;}
.y86{bottom:562.925079px;}
.yed{bottom:563.229904px;}
.yb2{bottom:564.050079px;}
.y7c{bottom:565.954514px;}
.y37{bottom:576.425079px;}
.y85{bottom:576.800079px;}
.yec{bottom:577.104904px;}
.yb1{bottom:577.925079px;}
.y7b{bottom:579.829514px;}
.y13{bottom:580.147202px;}
.yeb{bottom:590.979904px;}
.yb0{bottom:591.800079px;}
.y7a{bottom:593.704514px;}
.y36{bottom:594.425079px;}
.y12{bottom:597.397202px;}
.yea{bottom:604.854904px;}
.yaf{bottom:605.675079px;}
.y84{bottom:608.675079px;}
.y35{bottom:612.425079px;}
.y11{bottom:614.647202px;}
.ye9{bottom:618.729904px;}
.yae{bottom:619.550079px;}
.y83{bottom:622.550079px;}
.y5c{bottom:628.582672px;}
.y34{bottom:630.425079px;}
.y10{bottom:631.897202px;}
.ye8{bottom:632.604904px;}
.yad{bottom:633.425079px;}
.ye7{bottom:646.479904px;}
.yac{bottom:647.300079px;}
.y33{bottom:648.425079px;}
.yf{bottom:649.147202px;}
.ye6{bottom:660.354904px;}
.yab{bottom:661.175079px;}
.y5e{bottom:666.124512px;}
.ye{bottom:666.397202px;}
.y32{bottom:666.425079px;}
.ye5{bottom:674.229904px;}
.yaa{bottom:675.050079px;}
.y31{bottom:684.425079px;}
.ye4{bottom:688.104904px;}
.ya9{bottom:688.925079px;}
.ye3{bottom:701.979904px;}
.y30{bottom:702.425079px;}
.ya8{bottom:702.800079px;}
.y2{bottom:706.848312px;}
.ye2{bottom:715.854904px;}
.ya7{bottom:716.675079px;}
.y2f{bottom:720.425079px;}
.y1{bottom:720.723312px;}
.ye1{bottom:729.729904px;}
.ya6{bottom:730.550079px;}
.y2e{bottom:738.425079px;}
.y5d{bottom:741.658493px;}
.ye0{bottom:743.604904px;}
.ya5{bottom:744.425079px;}
.y2d{bottom:756.425079px;}
.ydf{bottom:757.479904px;}
.ya4{bottom:758.300079px;}
.yb{bottom:759.487198px;}
.yde{bottom:771.354858px;}
.ya3{bottom:772.175079px;}
.y2c{bottom:774.425079px;}
.ydd{bottom:785.229858px;}
.ya2{bottom:786.050079px;}
.y2b{bottom:792.425079px;}
.ydc{bottom:799.104858px;}
.ya1{bottom:799.925079px;}
.ya{bottom:801.186035px;}
.y2a{bottom:810.425079px;}
.ydb{bottom:812.979858px;}
.ya0{bottom:813.800079px;}
.y9{bottom:823.686035px;}
.yda{bottom:826.854858px;}
.y9f{bottom:827.675079px;}
.y29{bottom:828.425079px;}
.yd9{bottom:840.729858px;}
.y9e{bottom:841.550079px;}
.y8{bottom:846.186035px;}
.y28{bottom:846.425079px;}
.yd8{bottom:854.604858px;}
.y9d{bottom:855.425079px;}
.y27{bottom:864.425079px;}
.yd7{bottom:868.479858px;}
.y9c{bottom:869.300079px;}
.yd6{bottom:882.354858px;}
.y26{bottom:882.425079px;}
.yd5{bottom:896.229858px;}
.y25{bottom:900.425079px;}
.y57{bottom:905.944611px;}
.yd4{bottom:910.104858px;}
.yd{bottom:925.313965px;}
.yc{bottom:939.188965px;}
.h19{height:0.000000px;}
.h15{height:10.455000px;}
.h17{height:15.659999px;}
.h5{height:23.346094px;}
.h18{height:27.944672px;}
.h4{height:33.351562px;}
.h3{height:34.687500px;}
.h16{height:38.785521px;}
.h9{height:39.604980px;}
.h2{height:42.048000px;}
.he{height:42.528000px;}
.h14{height:42.546075px;}
.h12{height:42.750000px;}
.hd{height:47.472000px;}
.h1a{height:47.604675px;}
.hf{height:50.027344px;}
.ha{height:50.502000px;}
.h11{height:50.523596px;}
.h13{height:50.524054px;}
.h10{height:53.640000px;}
.h8{height:56.373000px;}
.h7{height:61.582727px;}
.hb{height:65.274000px;}
.h6{height:69.108000px;}
.hc{height:72.000000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w2{width:14.194500px;}
.w4{width:62.299500px;}
.w3{width:77.646000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x28{left:2.753403px;}
.x2f{left:28.476299px;}
.x2b{left:43.810066px;}
.x1{left:70.583702px;}
.x9{left:78.764550px;}
.x2{left:83.745300px;}
.x6{left:87.059097px;}
.x3{left:91.417350px;}
.xa{left:92.578050px;}
.x7{left:95.018103px;}
.x2d{left:147.328503px;}
.x2e{left:158.364304px;}
.xb{left:178.684650px;}
.xc{left:192.559639px;}
.xd{left:209.383942px;}
.xe{left:226.952248px;}
.xf{left:240.827248px;}
.x10{left:254.702248px;}
.x11{left:257.651550px;}
.x12{left:271.526550px;}
.x13{left:288.350693px;}
.x29{left:289.867493px;}
.x2a{left:300.904060px;}
.x14{left:302.225693px;}
.x15{left:319.049995px;}
.x16{left:332.924995px;}
.x18{left:335.874298px;}
.x2c{left:342.850044px;}
.x17{left:346.799995px;}
.x19{left:349.749298px;}
.x1a{left:366.573441px;}
.x1b{left:380.448441px;}
.x1c{left:394.323441px;}
.x1d{left:411.147766px;}
.x1e{left:425.022766px;}
.x1f{left:438.897766px;}
.x5{left:447.132750px;}
.x20{left:452.772766px;}
.x22{left:455.722046px;}
.x21{left:466.647766px;}
.x23{left:469.597046px;}
.x24{left:486.421188px;}
.x25{left:500.296188px;}
.x8{left:505.859116px;}
.x26{left:517.120514px;}
.x4{left:527.540680px;}
.x27{left:530.995514px;}
@media print{
.v1{vertical-align:-17.066650pt;}
.v3{vertical-align:-12.666667pt;}
.v6{vertical-align:-10.666667pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:7.110840pt;}
.v4{vertical-align:17.066650pt;}
.v2{vertical-align:20.266602pt;}
.ls13{letter-spacing:-10.666667pt;}
.lsc{letter-spacing:-1.578667pt;}
.ls6{letter-spacing:-0.170667pt;}
.ls4{letter-spacing:-0.085333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.000008pt;}
.ls2{letter-spacing:0.000039pt;}
.ls9{letter-spacing:0.000065pt;}
.ls12{letter-spacing:0.000391pt;}
.lsa{letter-spacing:0.000537pt;}
.lsd{letter-spacing:0.006337pt;}
.lsf{letter-spacing:0.006417pt;}
.lsb{letter-spacing:0.006419pt;}
.lse{letter-spacing:0.006500pt;}
.ls11{letter-spacing:0.006907pt;}
.ls8{letter-spacing:0.007454pt;}
.ls14{letter-spacing:0.213333pt;}
.ls7{letter-spacing:1.908029pt;}
.ls0{letter-spacing:27.291724pt;}
.ls1{letter-spacing:47.125365pt;}
.ls5{letter-spacing:49.115206pt;}
.ws1{word-spacing:-13.312000pt;}
.ws5{word-spacing:-12.666667pt;}
.wse7{word-spacing:-11.850667pt;}
.ws85{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.488000pt;}
.ws4{word-spacing:-10.234667pt;}
.ws62{word-spacing:-10.080000pt;}
.ws97{word-spacing:-9.088000pt;}
.ws15{word-spacing:-8.866667pt;}
.ws16{word-spacing:-8.618667pt;}
.ws3{word-spacing:-8.362667pt;}
.wsd7{word-spacing:-8.192000pt;}
.ws0{word-spacing:-7.466667pt;}
.ws3e{word-spacing:-4.712000pt;}
.ws7a{word-spacing:-3.800000pt;}
.ws75{word-spacing:-3.344000pt;}
.ws10d{word-spacing:-3.200000pt;}
.ws81{word-spacing:-2.786667pt;}
.ws4b{word-spacing:-2.584000pt;}
.ws82{word-spacing:-2.533333pt;}
.ws4a{word-spacing:-2.432000pt;}
.ws46{word-spacing:-2.330667pt;}
.wsa8{word-spacing:-2.178667pt;}
.ws42{word-spacing:-2.128000pt;}
.ws4c{word-spacing:-2.077333pt;}
.ws74{word-spacing:-2.026667pt;}
.ws8b{word-spacing:-1.943363pt;}
.ws88{word-spacing:-1.920000pt;}
.ws35{word-spacing:-1.874667pt;}
.ws2f{word-spacing:-1.773333pt;}
.wsf5{word-spacing:-1.749333pt;}
.wsc4{word-spacing:-1.722667pt;}
.ws18{word-spacing:-1.672000pt;}
.ws108{word-spacing:-1.664000pt;}
.wsd1{word-spacing:-1.621333pt;}
.ws105{word-spacing:-1.578667pt;}
.ws6d{word-spacing:-1.570667pt;}
.ws13{word-spacing:-1.520000pt;}
.ws87{word-spacing:-1.493333pt;}
.ws38{word-spacing:-1.469333pt;}
.ws36{word-spacing:-1.418667pt;}
.wse6{word-spacing:-1.408000pt;}
.wsc0{word-spacing:-1.368000pt;}
.ws50{word-spacing:-1.322667pt;}
.ws11a{word-spacing:-1.280000pt;}
.ws1e{word-spacing:-1.266667pt;}
.ws107{word-spacing:-1.237333pt;}
.wsac{word-spacing:-1.216000pt;}
.ws37{word-spacing:-1.165333pt;}
.ws14{word-spacing:-1.114667pt;}
.wsb4{word-spacing:-1.109333pt;}
.wsfe{word-spacing:-1.066667pt;}
.wsec{word-spacing:-1.024000pt;}
.ws73{word-spacing:-1.013333pt;}
.wsc1{word-spacing:-0.962667pt;}
.wsce{word-spacing:-0.912000pt;}
.ws99{word-spacing:-0.861333pt;}
.ws106{word-spacing:-0.768000pt;}
.ws55{word-spacing:-0.760000pt;}
.ws64{word-spacing:-0.709333pt;}
.ws6c{word-spacing:-0.658667pt;}
.ws1c{word-spacing:-0.608000pt;}
.wsb9{word-spacing:-0.597333pt;}
.ws22{word-spacing:-0.557333pt;}
.wsf4{word-spacing:-0.512000pt;}
.ws68{word-spacing:-0.506667pt;}
.wsb8{word-spacing:-0.469333pt;}
.wsff{word-spacing:-0.426667pt;}
.wsd3{word-spacing:-0.405333pt;}
.ws5d{word-spacing:-0.354667pt;}
.wsed{word-spacing:-0.341333pt;}
.ws41{word-spacing:-0.304000pt;}
.ws98{word-spacing:-0.253333pt;}
.ws117{word-spacing:-0.213333pt;}
.ws5e{word-spacing:-0.202667pt;}
.ws89{word-spacing:-0.170667pt;}
.ws78{word-spacing:-0.152000pt;}
.wsb2{word-spacing:-0.128000pt;}
.ws54{word-spacing:-0.101333pt;}
.ws96{word-spacing:-0.042667pt;}
.ws8c{word-spacing:-0.037194pt;}
.ws8a{word-spacing:-0.035334pt;}
.ws6{word-spacing:0.000000pt;}
.wsfa{word-spacing:0.042667pt;}
.ws51{word-spacing:0.085333pt;}
.ws1b{word-spacing:0.101333pt;}
.ws10f{word-spacing:0.128000pt;}
.ws4e{word-spacing:0.152000pt;}
.ws52{word-spacing:0.170667pt;}
.wsf{word-spacing:0.202667pt;}
.ws101{word-spacing:0.213333pt;}
.ws59{word-spacing:0.253333pt;}
.wse9{word-spacing:0.256000pt;}
.ws2c{word-spacing:0.304000pt;}
.wse4{word-spacing:0.341333pt;}
.ws9a{word-spacing:0.405333pt;}
.ws3b{word-spacing:0.456000pt;}
.wsbb{word-spacing:0.469333pt;}
.ws6f{word-spacing:0.506667pt;}
.wsca{word-spacing:0.512000pt;}
.ws109{word-spacing:0.554667pt;}
.ws19{word-spacing:0.557333pt;}
.ws6b{word-spacing:0.608000pt;}
.ws66{word-spacing:0.658667pt;}
.ws7b{word-spacing:0.709333pt;}
.ws29{word-spacing:0.760000pt;}
.ws56{word-spacing:0.810667pt;}
.ws103{word-spacing:0.853333pt;}
.ws79{word-spacing:0.861333pt;}
.wsf6{word-spacing:0.896000pt;}
.ws70{word-spacing:0.912000pt;}
.wsd9{word-spacing:0.962667pt;}
.ws7d{word-spacing:1.013333pt;}
.wse8{word-spacing:1.024000pt;}
.ws5b{word-spacing:1.064000pt;}
.ws102{word-spacing:1.066667pt;}
.ws118{word-spacing:1.109333pt;}
.ws28{word-spacing:1.165333pt;}
.ws23{word-spacing:1.216000pt;}
.ws61{word-spacing:1.266667pt;}
.wsf9{word-spacing:1.280000pt;}
.ws60{word-spacing:1.317333pt;}
.wsc9{word-spacing:1.365333pt;}
.ws34{word-spacing:1.368000pt;}
.wsea{word-spacing:1.408000pt;}
.wsd8{word-spacing:1.418667pt;}
.wsa1{word-spacing:1.450667pt;}
.ws25{word-spacing:1.469333pt;}
.wsa2{word-spacing:1.493333pt;}
.ws47{word-spacing:1.520000pt;}
.ws90{word-spacing:1.570667pt;}
.wsfc{word-spacing:1.578667pt;}
.ws76{word-spacing:1.621333pt;}
.ws110{word-spacing:1.664000pt;}
.ws20{word-spacing:1.672000pt;}
.ws39{word-spacing:1.722667pt;}
.wsf7{word-spacing:1.749333pt;}
.ws3c{word-spacing:1.773333pt;}
.ws31{word-spacing:1.824000pt;}
.wsb3{word-spacing:1.834667pt;}
.ws57{word-spacing:1.874667pt;}
.ws112{word-spacing:1.877333pt;}
.wsa0{word-spacing:1.920000pt;}
.ws33{word-spacing:1.925333pt;}
.wseb{word-spacing:1.962667pt;}
.ws94{word-spacing:1.976000pt;}
.ws104{word-spacing:2.005333pt;}
.ws9c{word-spacing:2.026667pt;}
.wsdd{word-spacing:2.048000pt;}
.ws4d{word-spacing:2.077333pt;}
.ws9e{word-spacing:2.090667pt;}
.ws83{word-spacing:2.128000pt;}
.wsdf{word-spacing:2.133333pt;}
.ws3f{word-spacing:2.178667pt;}
.ws80{word-spacing:2.229333pt;}
.ws7f{word-spacing:2.280000pt;}
.wsef{word-spacing:2.346667pt;}
.ws6a{word-spacing:2.381333pt;}
.ws116{word-spacing:2.389333pt;}
.ws77{word-spacing:2.432000pt;}
.ws2a{word-spacing:2.482667pt;}
.ws17{word-spacing:2.517333pt;}
.wsd4{word-spacing:2.533333pt;}
.ws45{word-spacing:2.584000pt;}
.ws5c{word-spacing:2.634667pt;}
.wsa3{word-spacing:2.685333pt;}
.ws9f{word-spacing:2.730667pt;}
.ws95{word-spacing:2.736000pt;}
.wse0{word-spacing:2.773333pt;}
.wsbd{word-spacing:2.786667pt;}
.wsd0{word-spacing:2.816000pt;}
.ws5a{word-spacing:2.837333pt;}
.ws1a{word-spacing:2.888000pt;}
.wsf1{word-spacing:2.901333pt;}
.ws69{word-spacing:2.938667pt;}
.wsd6{word-spacing:2.989333pt;}
.wsd2{word-spacing:3.040000pt;}
.ws65{word-spacing:3.090667pt;}
.wsb6{word-spacing:3.141333pt;}
.ws21{word-spacing:3.242667pt;}
.wsb0{word-spacing:3.285333pt;}
.ws2b{word-spacing:3.293333pt;}
.ws10b{word-spacing:3.328000pt;}
.ws9b{word-spacing:3.344000pt;}
.wsba{word-spacing:3.370667pt;}
.ws44{word-spacing:3.394667pt;}
.wsdc{word-spacing:3.456000pt;}
.ws43{word-spacing:3.496000pt;}
.ws100{word-spacing:3.498667pt;}
.ws72{word-spacing:3.546667pt;}
.wsc7{word-spacing:3.584000pt;}
.wsc{word-spacing:3.597333pt;}
.wsa4{word-spacing:3.698667pt;}
.ws6e{word-spacing:3.749333pt;}
.wsfd{word-spacing:3.754667pt;}
.ws10{word-spacing:3.800000pt;}
.ws53{word-spacing:3.850667pt;}
.ws63{word-spacing:3.952000pt;}
.wsad{word-spacing:4.002667pt;}
.ws67{word-spacing:4.053333pt;}
.wscf{word-spacing:4.096000pt;}
.ws27{word-spacing:4.104000pt;}
.wsab{word-spacing:4.154667pt;}
.ws115{word-spacing:4.181333pt;}
.ws10c{word-spacing:4.224000pt;}
.wsb1{word-spacing:4.266667pt;}
.ws4f{word-spacing:4.306667pt;}
.wsfb{word-spacing:4.309333pt;}
.wsa7{word-spacing:4.357333pt;}
.wsde{word-spacing:4.394667pt;}
.ws2d{word-spacing:4.408000pt;}
.wse2{word-spacing:4.437333pt;}
.ws1d{word-spacing:4.458667pt;}
.ws93{word-spacing:4.560000pt;}
.wsf8{word-spacing:4.565333pt;}
.wse{word-spacing:4.610667pt;}
.wsc8{word-spacing:4.650667pt;}
.ws92{word-spacing:4.661333pt;}
.ws111{word-spacing:4.736000pt;}
.ws7{word-spacing:4.762667pt;}
.wscd{word-spacing:4.813333pt;}
.wsc5{word-spacing:4.864000pt;}
.ws8d{word-spacing:4.914667pt;}
.wse1{word-spacing:4.949333pt;}
.wsa5{word-spacing:5.066667pt;}
.ws9d{word-spacing:5.117333pt;}
.ws7e{word-spacing:5.168000pt;}
.wsb5{word-spacing:5.218667pt;}
.wscb{word-spacing:5.320000pt;}
.wscc{word-spacing:5.370667pt;}
.wsb{word-spacing:5.421333pt;}
.wse3{word-spacing:5.461333pt;}
.ws24{word-spacing:5.472000pt;}
.ws9{word-spacing:5.522667pt;}
.wsbe{word-spacing:5.573333pt;}
.ws12{word-spacing:5.624000pt;}
.ws49{word-spacing:5.725333pt;}
.ws3d{word-spacing:5.776000pt;}
.ws8f{word-spacing:5.826667pt;}
.wsc3{word-spacing:5.877333pt;}
.wsf2{word-spacing:5.888000pt;}
.ws30{word-spacing:5.928000pt;}
.wsda{word-spacing:5.973333pt;}
.wsbf{word-spacing:5.978667pt;}
.ws114{word-spacing:6.016000pt;}
.ws8e{word-spacing:6.029333pt;}
.ws113{word-spacing:6.144000pt;}
.wsee{word-spacing:6.186667pt;}
.ws7c{word-spacing:6.232000pt;}
.ws32{word-spacing:6.282667pt;}
.ws26{word-spacing:6.333333pt;}
.ws48{word-spacing:6.434667pt;}
.ws1f{word-spacing:6.485333pt;}
.wsa{word-spacing:6.536000pt;}
.ws10a{word-spacing:6.570667pt;}
.wsb7{word-spacing:6.586667pt;}
.ws71{word-spacing:6.637333pt;}
.wsbc{word-spacing:6.738667pt;}
.wse5{word-spacing:6.741333pt;}
.ws58{word-spacing:6.789333pt;}
.wsd5{word-spacing:6.890667pt;}
.wsae{word-spacing:6.941333pt;}
.wsa6{word-spacing:7.144000pt;}
.ws2e{word-spacing:7.194667pt;}
.wsd{word-spacing:7.397333pt;}
.ws40{word-spacing:7.498667pt;}
.ws10e{word-spacing:7.637333pt;}
.wsaa{word-spacing:7.650667pt;}
.wsa9{word-spacing:7.752000pt;}
.wsc6{word-spacing:7.853333pt;}
.wsc2{word-spacing:8.106667pt;}
.wsdb{word-spacing:8.618667pt;}
.ws8{word-spacing:8.866667pt;}
.wsaf{word-spacing:9.322667pt;}
.wsf3{word-spacing:9.642667pt;}
.ws91{word-spacing:9.981333pt;}
.ws119{word-spacing:10.112000pt;}
.ws5f{word-spacing:10.285333pt;}
.wsf0{word-spacing:10.666667pt;}
.ws3a{word-spacing:15.808000pt;}
.ws11{word-spacing:17.482667pt;}
.ws86{word-spacing:71.302401pt;}
.ws84{word-spacing:315.518875pt;}
._3{margin-left:-58.978657pt;}
._13{margin-left:-43.269873pt;}
._24{margin-left:-13.021333pt;}
._26{margin-left:-11.734089pt;}
._27{margin-left:-10.666667pt;}
._25{margin-left:-6.647845pt;}
._5{margin-left:-5.627733pt;}
._12{margin-left:-4.641067pt;}
._6{margin-left:-3.161934pt;}
._0{margin-left:-1.924267pt;}
._2{margin-left:-0.985600pt;}
._1{width:1.066667pt;}
._d{width:2.782905pt;}
._b{width:3.794933pt;}
._a{width:4.970734pt;}
._9{width:6.054667pt;}
._8{width:7.534133pt;}
._7{width:9.282133pt;}
._15{width:11.045333pt;}
._16{width:13.233934pt;}
._c{width:14.792544pt;}
._11{width:16.586667pt;}
._28{width:20.296533pt;}
._14{width:21.888000pt;}
._f{width:30.754667pt;}
._e{width:31.786143pt;}
._10{width:37.189333pt;}
._17{width:38.231987pt;}
._20{width:42.805756pt;}
._4{width:50.005329pt;}
._23{width:73.611089pt;}
._19{width:89.056423pt;}
._1b{width:166.274653pt;}
._18{width:171.111309pt;}
._1c{width:189.749756pt;}
._22{width:206.347089pt;}
._1e{width:213.472423pt;}
._21{width:355.810286pt;}
._1d{width:366.505542pt;}
._1a{width:519.266286pt;}
._1f{width:547.345554pt;}
.fs1{font-size:29.866667pt;}
.fsa{font-size:35.333867pt;}
.fs4{font-size:35.466667pt;}
.fsb{font-size:37.193600pt;}
.fs0{font-size:42.666667pt;}
.fs9{font-size:50.477333pt;}
.fs3{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs2{font-size:69.333333pt;}
.fs6{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y5f{bottom:0.267171pt;}
.y63{bottom:3.009481pt;}
.y67{bottom:3.010824pt;}
.y61{bottom:4.902791pt;}
.y65{bottom:4.904134pt;}
.y24{bottom:29.908800pt;}
.y53{bottom:32.125999pt;}
.y56{bottom:57.629867pt;}
.y58{bottom:68.031469pt;}
.y7{bottom:69.921199pt;}
.y55{bottom:69.963200pt;}
.y6c{bottom:80.364802pt;}
.y52{bottom:80.377869pt;}
.y10f{bottom:81.315465pt;}
.yd3{bottom:82.044535pt;}
.y6{bottom:82.254532pt;}
.y54{bottom:82.296533pt;}
.y6b{bottom:92.698130pt;}
.y10e{bottom:93.648804pt;}
.yd2{bottom:94.377869pt;}
.y51{bottom:96.377869pt;}
.y5{bottom:98.854533pt;}
.y6a{bottom:105.031464pt;}
.y10d{bottom:105.982137pt;}
.yd1{bottom:106.711202pt;}
.y50{bottom:112.377869pt;}
.y69{bottom:117.364797pt;}
.y10c{bottom:118.315470pt;}
.yd0{bottom:119.044535pt;}
.y4{bottom:120.149597pt;}
.y59{bottom:127.370799pt;}
.y4f{bottom:128.377869pt;}
.y68{bottom:129.698130pt;}
.y10b{bottom:130.648804pt;}
.ycf{bottom:131.377869pt;}
.y3{bottom:132.482930pt;}
.y10a{bottom:142.982137pt;}
.y9b{bottom:143.047068pt;}
.yce{bottom:143.711202pt;}
.y4e{bottom:144.377869pt;}
.y109{bottom:155.315470pt;}
.y9a{bottom:155.380402pt;}
.ycd{bottom:156.044535pt;}
.y4d{bottom:160.377869pt;}
.y108{bottom:167.648804pt;}
.y99{bottom:167.713735pt;}
.ycc{bottom:168.377869pt;}
.y4c{bottom:176.377869pt;}
.y107{bottom:179.982137pt;}
.y98{bottom:180.047058pt;}
.ycb{bottom:180.711202pt;}
.y106{bottom:192.315470pt;}
.y4b{bottom:192.377869pt;}
.y23{bottom:192.377991pt;}
.y97{bottom:192.380391pt;}
.yca{bottom:193.044535pt;}
.y105{bottom:204.648804pt;}
.y96{bottom:204.713725pt;}
.yc9{bottom:205.377869pt;}
.y4a{bottom:208.377869pt;}
.y22{bottom:208.377991pt;}
.y104{bottom:216.982137pt;}
.y95{bottom:217.047058pt;}
.yc8{bottom:217.711202pt;}
.y49{bottom:224.377869pt;}
.y21{bottom:224.377991pt;}
.y103{bottom:229.315470pt;}
.y94{bottom:229.380391pt;}
.yc7{bottom:230.044535pt;}
.y48{bottom:240.377869pt;}
.y102{bottom:241.648804pt;}
.yc6{bottom:242.377869pt;}
.y101{bottom:253.982137pt;}
.yc5{bottom:254.711202pt;}
.y47{bottom:256.377869pt;}
.y20{bottom:256.377991pt;}
.y93{bottom:257.712524pt;}
.y5a{bottom:262.083476pt;}
.y72{bottom:264.003600pt;}
.y100{bottom:266.315470pt;}
.yc4{bottom:267.044535pt;}
.y46{bottom:272.377869pt;}
.y71{bottom:276.336933pt;}
.yff{bottom:278.648804pt;}
.yc3{bottom:279.377869pt;}
.y92{bottom:286.044535pt;}
.y45{bottom:288.377869pt;}
.y70{bottom:288.670267pt;}
.yfe{bottom:290.982137pt;}
.yc2{bottom:291.711202pt;}
.y6f{bottom:301.003600pt;}
.yfd{bottom:303.315470pt;}
.yc1{bottom:304.044535pt;}
.y44{bottom:304.377869pt;}
.y6e{bottom:313.336933pt;}
.yfc{bottom:315.648804pt;}
.y1f{bottom:315.686401pt;}
.yc0{bottom:316.377869pt;}
.y91{bottom:316.711202pt;}
.y43{bottom:320.377869pt;}
.y79{bottom:326.550395pt;}
.yfb{bottom:327.982137pt;}
.ybf{bottom:328.711202pt;}
.y90{bottom:329.044535pt;}
.y1e{bottom:331.019735pt;}
.y42{bottom:336.377869pt;}
.y78{bottom:338.883728pt;}
.yfa{bottom:340.315470pt;}
.ybe{bottom:341.044535pt;}
.y8f{bottom:341.377848pt;}
.y5b{bottom:346.854248pt;}
.y77{bottom:351.217082pt;}
.y41{bottom:352.377848pt;}
.yf9{bottom:352.648804pt;}
.ybd{bottom:353.377848pt;}
.y1d{bottom:362.353068pt;}
.y76{bottom:363.550415pt;}
.yf8{bottom:364.982137pt;}
.ybc{bottom:365.711182pt;}
.y40{bottom:368.377848pt;}
.y8e{bottom:369.711182pt;}
.y75{bottom:375.883748pt;}
.yf7{bottom:377.315470pt;}
.y1c{bottom:377.686401pt;}
.ybb{bottom:378.044515pt;}
.y3f{bottom:384.377848pt;}
.y74{bottom:388.217082pt;}
.yf6{bottom:389.648804pt;}
.yba{bottom:390.377848pt;}
.y1b{bottom:393.019735pt;}
.y8d{bottom:398.044515pt;}
.y3e{bottom:400.377848pt;}
.yf5{bottom:401.982137pt;}
.yb9{bottom:402.711182pt;}
.y1a{bottom:408.353068pt;}
.y6d{bottom:409.484945pt;}
.y8c{bottom:410.377848pt;}
.yf4{bottom:414.315470pt;}
.yb8{bottom:415.044515pt;}
.y3d{bottom:416.377848pt;}
.y8b{bottom:422.711182pt;}
.y19{bottom:423.686401pt;}
.yf3{bottom:426.648804pt;}
.yb7{bottom:427.377848pt;}
.y82{bottom:429.070679pt;}
.y3c{bottom:432.377848pt;}
.yf2{bottom:438.982137pt;}
.y18{bottom:439.019735pt;}
.yb6{bottom:439.711182pt;}
.y81{bottom:441.404012pt;}
.y3b{bottom:448.377848pt;}
.y8a{bottom:451.044515pt;}
.yf1{bottom:451.315470pt;}
.yb5{bottom:452.044515pt;}
.y80{bottom:453.737345pt;}
.y17{bottom:454.353068pt;}
.y64{bottom:459.589315pt;}
.y66{bottom:462.600138pt;}
.y89{bottom:463.377848pt;}
.yf0{bottom:463.648804pt;}
.y3a{bottom:464.377848pt;}
.y7f{bottom:466.070679pt;}
.y16{bottom:469.686401pt;}
.y60{bottom:475.590658pt;}
.y88{bottom:475.711182pt;}
.yef{bottom:475.982137pt;}
.yb4{bottom:476.711182pt;}
.y7e{bottom:478.404012pt;}
.y62{bottom:478.600138pt;}
.y39{bottom:480.377848pt;}
.y73{bottom:483.551717pt;}
.y15{bottom:485.019735pt;}
.y87{bottom:488.044515pt;}
.yee{bottom:488.315470pt;}
.yb3{bottom:489.044515pt;}
.y7d{bottom:490.737345pt;}
.y38{bottom:496.377848pt;}
.y14{bottom:500.353068pt;}
.y86{bottom:500.377848pt;}
.yed{bottom:500.648804pt;}
.yb2{bottom:501.377848pt;}
.y7c{bottom:503.070679pt;}
.y37{bottom:512.377848pt;}
.y85{bottom:512.711182pt;}
.yec{bottom:512.982137pt;}
.yb1{bottom:513.711182pt;}
.y7b{bottom:515.404012pt;}
.y13{bottom:515.686401pt;}
.yeb{bottom:525.315470pt;}
.yb0{bottom:526.044515pt;}
.y7a{bottom:527.737345pt;}
.y36{bottom:528.377848pt;}
.y12{bottom:531.019735pt;}
.yea{bottom:537.648804pt;}
.yaf{bottom:538.377848pt;}
.y84{bottom:541.044515pt;}
.y35{bottom:544.377848pt;}
.y11{bottom:546.353068pt;}
.ye9{bottom:549.982137pt;}
.yae{bottom:550.711182pt;}
.y83{bottom:553.377848pt;}
.y5c{bottom:558.740153pt;}
.y34{bottom:560.377848pt;}
.y10{bottom:561.686401pt;}
.ye8{bottom:562.315470pt;}
.yad{bottom:563.044515pt;}
.ye7{bottom:574.648804pt;}
.yac{bottom:575.377848pt;}
.y33{bottom:576.377848pt;}
.yf{bottom:577.019735pt;}
.ye6{bottom:586.982137pt;}
.yab{bottom:587.711182pt;}
.y5e{bottom:592.110677pt;}
.ye{bottom:592.353068pt;}
.y32{bottom:592.377848pt;}
.ye5{bottom:599.315470pt;}
.yaa{bottom:600.044515pt;}
.y31{bottom:608.377848pt;}
.ye4{bottom:611.648804pt;}
.ya9{bottom:612.377848pt;}
.ye3{bottom:623.982137pt;}
.y30{bottom:624.377848pt;}
.ya8{bottom:624.711182pt;}
.y2{bottom:628.309611pt;}
.ye2{bottom:636.315470pt;}
.ya7{bottom:637.044515pt;}
.y2f{bottom:640.377848pt;}
.y1{bottom:640.642944pt;}
.ye1{bottom:648.648804pt;}
.ya6{bottom:649.377848pt;}
.y2e{bottom:656.377848pt;}
.y5d{bottom:659.251994pt;}
.ye0{bottom:660.982137pt;}
.ya5{bottom:661.711182pt;}
.y2d{bottom:672.377848pt;}
.ydf{bottom:673.315470pt;}
.ya4{bottom:674.044515pt;}
.yb{bottom:675.099731pt;}
.yde{bottom:685.648763pt;}
.ya3{bottom:686.377848pt;}
.y2c{bottom:688.377848pt;}
.ydd{bottom:697.982096pt;}
.ya2{bottom:698.711182pt;}
.y2b{bottom:704.377848pt;}
.ydc{bottom:710.315430pt;}
.ya1{bottom:711.044515pt;}
.ya{bottom:712.165365pt;}
.y2a{bottom:720.377848pt;}
.ydb{bottom:722.648763pt;}
.ya0{bottom:723.377848pt;}
.y9{bottom:732.165365pt;}
.yda{bottom:734.982096pt;}
.y9f{bottom:735.711182pt;}
.y29{bottom:736.377848pt;}
.yd9{bottom:747.315430pt;}
.y9e{bottom:748.044515pt;}
.y8{bottom:752.165365pt;}
.y28{bottom:752.377848pt;}
.yd8{bottom:759.648763pt;}
.y9d{bottom:760.377848pt;}
.y27{bottom:768.377848pt;}
.yd7{bottom:771.982096pt;}
.y9c{bottom:772.711182pt;}
.yd6{bottom:784.315430pt;}
.y26{bottom:784.377848pt;}
.yd5{bottom:796.648763pt;}
.y25{bottom:800.377848pt;}
.y57{bottom:805.284098pt;}
.yd4{bottom:808.982096pt;}
.yd{bottom:822.501302pt;}
.yc{bottom:834.834635pt;}
.h19{height:0.000000pt;}
.h15{height:9.293333pt;}
.h17{height:13.919999pt;}
.h5{height:20.752083pt;}
.h18{height:24.839708pt;}
.h4{height:29.645833pt;}
.h3{height:30.833333pt;}
.h16{height:34.476019pt;}
.h9{height:35.204427pt;}
.h2{height:37.376000pt;}
.he{height:37.802667pt;}
.h14{height:37.818734pt;}
.h12{height:38.000000pt;}
.hd{height:42.197333pt;}
.h1a{height:42.315267pt;}
.hf{height:44.468750pt;}
.ha{height:44.890667pt;}
.h11{height:44.909863pt;}
.h13{height:44.910270pt;}
.h10{height:47.680000pt;}
.h8{height:50.109333pt;}
.h7{height:54.740202pt;}
.hb{height:58.021333pt;}
.h6{height:61.429333pt;}
.hc{height:64.000000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w2{width:12.617333pt;}
.w4{width:55.377333pt;}
.w3{width:69.018667pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x28{left:2.447469pt;}
.x2f{left:25.312266pt;}
.x2b{left:38.942281pt;}
.x1{left:62.741069pt;}
.x9{left:70.012933pt;}
.x2{left:74.440267pt;}
.x6{left:77.385864pt;}
.x3{left:81.259867pt;}
.xa{left:82.291600pt;}
.x7{left:84.460536pt;}
.x2d{left:130.958669pt;}
.x2e{left:140.768270pt;}
.xb{left:158.830800pt;}
.xc{left:171.164124pt;}
.xd{left:186.119059pt;}
.xe{left:201.735331pt;}
.xf{left:214.068665pt;}
.x10{left:226.401998pt;}
.x11{left:229.023600pt;}
.x12{left:241.356933pt;}
.x13{left:256.311727pt;}
.x29{left:257.659993pt;}
.x2a{left:267.470276pt;}
.x14{left:268.645060pt;}
.x15{left:283.599996pt;}
.x16{left:295.933329pt;}
.x18{left:298.554932pt;}
.x2c{left:304.755595pt;}
.x17{left:308.266663pt;}
.x19{left:310.888265pt;}
.x1a{left:325.843058pt;}
.x1b{left:338.176392pt;}
.x1c{left:350.509725pt;}
.x1d{left:365.464681pt;}
.x1e{left:377.798014pt;}
.x1f{left:390.131348pt;}
.x5{left:397.451333pt;}
.x20{left:402.464681pt;}
.x22{left:405.086263pt;}
.x21{left:414.798014pt;}
.x23{left:417.419596pt;}
.x24{left:432.374390pt;}
.x25{left:444.707723pt;}
.x8{left:449.652547pt;}
.x26{left:459.662679pt;}
.x4{left:468.925049pt;}
.x27{left:471.996012pt;}
}




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