
    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_fd6ad34abd65d43777e8b702.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.984048;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_619ee16b28344c11208cd409.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.019000;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_69fcea53d93ec8c0426eea7a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.979980;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_065d39d153a2683186f3a8cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.979004;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_45acf1d72daf7c3adbecc855.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.984048;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_7ac3ce0908d33c77983f2809.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739000;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_ad94ee305f54441ed547d0b2.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.764160;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_05992b7e8396bcdb89e024e0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.960938;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_ff225372f5c86d43869a97fa.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.966309;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_c6388c7b59729e9e654904a4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.984048;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_029b4bb3f1ac43990a795ddf.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.984000;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_12c9cab49ae3469cdbef4a68.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.677246;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_cd186e650030bc56a3271d03.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.965000;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_2e9fa93c406b417d866d388e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.938477;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;}
.m6{transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-ms-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);-webkit-transform:matrix(0.000009,-0.250000,0.250000,0.000009,0,0);}
.m7{transform:matrix(0.000010,-0.249779,0.250000,0.000010,0,0);-ms-transform:matrix(0.000010,-0.249779,0.250000,0.000010,0,0);-webkit-transform:matrix(0.000010,-0.249779,0.250000,0.000010,0,0);}
.m1{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227273,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.243307,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.243307,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.243307,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250086,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.277778,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:17.838000px;}
.v1{vertical-align:22.577400px;}
.ls8{letter-spacing:-3.780000px;}
.lse{letter-spacing:-2.046069px;}
.lsf{letter-spacing:-1.764192px;}
.ls10{letter-spacing:-1.320000px;}
.ls11{letter-spacing:-1.200000px;}
.ls12{letter-spacing:-0.600000px;}
.ls6{letter-spacing:-0.576000px;}
.ls5{letter-spacing:-0.480000px;}
.ls4{letter-spacing:-0.456000px;}
.lsa{letter-spacing:-0.396000px;}
.lsd{letter-spacing:-0.330000px;}
.ls3{letter-spacing:-0.192000px;}
.ls7{letter-spacing:-0.037800px;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000300px;}
.ls9{letter-spacing:0.330000px;}
.lsc{letter-spacing:0.461736px;}
.lsb{letter-spacing:0.792000px;}
.ls1{letter-spacing:4.896000px;}
.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;}
}
.ws7c{word-spacing:-66.000000px;}
.ws26{word-spacing:-18.348000px;}
.ws7b{word-spacing:-16.500000px;}
.ws25{word-spacing:-15.012000px;}
.wsf0{word-spacing:-15.000000px;}
.ws8c{word-spacing:-13.500000px;}
.ws7d{word-spacing:-12.960000px;}
.ws0{word-spacing:-10.988617px;}
.ws1{word-spacing:-10.944000px;}
.ws4{word-spacing:-10.508400px;}
.ws3{word-spacing:-10.470600px;}
.ws41{word-spacing:-10.081236px;}
.ws57{word-spacing:-9.619500px;}
.ws2{word-spacing:-7.870500px;}
.ws107{word-spacing:-5.220000px;}
.ws48{word-spacing:-3.960000px;}
.ws106{word-spacing:-3.780000px;}
.wsbc{word-spacing:-3.300000px;}
.wsa7{word-spacing:-3.234000px;}
.wsa0{word-spacing:-3.168000px;}
.ws5f{word-spacing:-3.102000px;}
.wsce{word-spacing:-3.060000px;}
.wseb{word-spacing:-2.940000px;}
.ws82{word-spacing:-2.904000px;}
.wsad{word-spacing:-2.838000px;}
.wse6{word-spacing:-2.700000px;}
.ws73{word-spacing:-2.640000px;}
.wsfb{word-spacing:-2.520000px;}
.ws84{word-spacing:-2.508000px;}
.ws104{word-spacing:-2.460000px;}
.ws81{word-spacing:-2.442000px;}
.ws100{word-spacing:-2.340000px;}
.ws1b{word-spacing:-2.322000px;}
.ws9e{word-spacing:-2.310000px;}
.ws105{word-spacing:-2.280000px;}
.ws5b{word-spacing:-2.244000px;}
.ws50{word-spacing:-2.178000px;}
.ws31{word-spacing:-2.112000px;}
.ws8a{word-spacing:-1.998000px;}
.ws40{word-spacing:-1.980000px;}
.ws19{word-spacing:-1.836000px;}
.ws53{word-spacing:-1.782000px;}
.wsed{word-spacing:-1.740000px;}
.wscf{word-spacing:-1.680000px;}
.ws76{word-spacing:-1.650000px;}
.ws3e{word-spacing:-1.584000px;}
.ws27{word-spacing:-1.566000px;}
.wsd0{word-spacing:-1.560000px;}
.ws55{word-spacing:-1.518000px;}
.ws22{word-spacing:-1.512000px;}
.ws11{word-spacing:-1.488000px;}
.ws51{word-spacing:-1.452000px;}
.ws47{word-spacing:-1.386000px;}
.ws35{word-spacing:-1.320000px;}
.wsec{word-spacing:-1.260000px;}
.wsae{word-spacing:-1.254000px;}
.wsbe{word-spacing:-1.188000px;}
.wsf9{word-spacing:-1.140000px;}
.ws2f{word-spacing:-1.122000px;}
.wsea{word-spacing:-1.080000px;}
.ws29{word-spacing:-1.056000px;}
.ws6{word-spacing:-1.017000px;}
.ws87{word-spacing:-0.990000px;}
.ws67{word-spacing:-0.924000px;}
.ws5c{word-spacing:-0.858000px;}
.wsc2{word-spacing:-0.792000px;}
.ws4c{word-spacing:-0.660000px;}
.ws8b{word-spacing:-0.648000px;}
.wsf6{word-spacing:-0.600000px;}
.ws5d{word-spacing:-0.594000px;}
.ws1d{word-spacing:-0.540000px;}
.ws77{word-spacing:-0.528000px;}
.ws10f{word-spacing:-0.480000px;}
.ws6a{word-spacing:-0.462000px;}
.ws6c{word-spacing:-0.396000px;}
.wscb{word-spacing:-0.360000px;}
.ws2c{word-spacing:-0.330000px;}
.wsa5{word-spacing:-0.270000px;}
.ws56{word-spacing:-0.264000px;}
.ws9b{word-spacing:-0.198000px;}
.wsb{word-spacing:-0.192000px;}
.wsa{word-spacing:-0.162000px;}
.ws2b{word-spacing:-0.132000px;}
.ws103{word-spacing:-0.120000px;}
.ws4f{word-spacing:-0.066000px;}
.ws115{word-spacing:-0.060000px;}
.ws13{word-spacing:-0.054000px;}
.ws5{word-spacing:0.000000px;}
.ws112{word-spacing:0.060000px;}
.wsaf{word-spacing:0.066000px;}
.ws12{word-spacing:0.096000px;}
.wsb8{word-spacing:0.132000px;}
.wsee{word-spacing:0.180000px;}
.wsc{word-spacing:0.192000px;}
.ws1c{word-spacing:0.216000px;}
.wsfa{word-spacing:0.240000px;}
.ws9d{word-spacing:0.264000px;}
.wsa4{word-spacing:0.270000px;}
.wsa3{word-spacing:0.324000px;}
.ws3b{word-spacing:0.330000px;}
.wsb0{word-spacing:0.396000px;}
.wsf{word-spacing:0.456000px;}
.wsb4{word-spacing:0.462000px;}
.ws4a{word-spacing:0.594000px;}
.wscc{word-spacing:0.600000px;}
.ws42{word-spacing:0.660000px;}
.ws43{word-spacing:0.726000px;}
.ws95{word-spacing:0.756000px;}
.ws46{word-spacing:0.792000px;}
.ws44{word-spacing:0.858000px;}
.ws54{word-spacing:0.924000px;}
.ws7f{word-spacing:0.990000px;}
.ws37{word-spacing:1.056000px;}
.ws69{word-spacing:1.080000px;}
.ws68{word-spacing:1.188000px;}
.wsd6{word-spacing:1.200000px;}
.ws9a{word-spacing:1.254000px;}
.ws10a{word-spacing:1.260000px;}
.ws58{word-spacing:1.320000px;}
.ws94{word-spacing:1.350000px;}
.ws33{word-spacing:1.386000px;}
.wsdc{word-spacing:1.440000px;}
.wsb2{word-spacing:1.452000px;}
.ws93{word-spacing:1.458000px;}
.wsb6{word-spacing:1.518000px;}
.ws114{word-spacing:1.560000px;}
.wsc7{word-spacing:1.584000px;}
.wsab{word-spacing:1.650000px;}
.ws28{word-spacing:1.716000px;}
.ws92{word-spacing:1.720087px;}
.wsda{word-spacing:1.740000px;}
.ws3c{word-spacing:1.782000px;}
.ws10c{word-spacing:1.800000px;}
.ws52{word-spacing:1.848000px;}
.ws1a{word-spacing:1.890000px;}
.ws6f{word-spacing:1.914000px;}
.ws21{word-spacing:1.944000px;}
.ws111{word-spacing:1.980000px;}
.ws90{word-spacing:2.005950px;}
.wsa2{word-spacing:2.046000px;}
.ws63{word-spacing:2.112000px;}
.ws59{word-spacing:2.178000px;}
.wsc5{word-spacing:2.310000px;}
.ws60{word-spacing:2.442000px;}
.ws45{word-spacing:2.574000px;}
.wsf1{word-spacing:2.580000px;}
.ws18{word-spacing:2.592000px;}
.ws5e{word-spacing:2.640000px;}
.ws1e{word-spacing:2.700000px;}
.ws62{word-spacing:2.706000px;}
.ws70{word-spacing:2.772000px;}
.wsa6{word-spacing:2.838000px;}
.wsf8{word-spacing:2.880000px;}
.ws83{word-spacing:2.904000px;}
.ws20{word-spacing:2.970000px;}
.wsac{word-spacing:3.036000px;}
.wsf5{word-spacing:3.060000px;}
.wsc3{word-spacing:3.168000px;}
.ws17{word-spacing:3.186000px;}
.ws86{word-spacing:3.234000px;}
.ws9{word-spacing:3.240000px;}
.ws2a{word-spacing:3.300000px;}
.ws39{word-spacing:3.366000px;}
.ws96{word-spacing:3.402000px;}
.wscd{word-spacing:3.420000px;}
.ws75{word-spacing:3.432000px;}
.ws2d{word-spacing:3.498000px;}
.wsef{word-spacing:3.540000px;}
.wsb5{word-spacing:3.564000px;}
.wsd5{word-spacing:3.600000px;}
.ws2e{word-spacing:3.630000px;}
.ws61{word-spacing:3.696000px;}
.ws109{word-spacing:3.720000px;}
.wsa9{word-spacing:3.762000px;}
.ws23{word-spacing:3.780000px;}
.wsf4{word-spacing:3.840000px;}
.ws10{word-spacing:3.888000px;}
.ws6b{word-spacing:3.894000px;}
.wse3{word-spacing:3.900000px;}
.ws24{word-spacing:3.960000px;}
.ws49{word-spacing:4.026000px;}
.ws3d{word-spacing:4.092000px;}
.ws64{word-spacing:4.158000px;}
.ws110{word-spacing:4.200000px;}
.ws38{word-spacing:4.224000px;}
.ws117{word-spacing:4.260000px;}
.ws8{word-spacing:4.266000px;}
.ws7a{word-spacing:4.290000px;}
.wsbb{word-spacing:4.356000px;}
.ws4e{word-spacing:4.422000px;}
.wsf3{word-spacing:4.440000px;}
.wsb7{word-spacing:4.488000px;}
.wsd1{word-spacing:4.500000px;}
.wsa8{word-spacing:4.620000px;}
.ws101{word-spacing:4.680000px;}
.wsa1{word-spacing:4.686000px;}
.ws116{word-spacing:4.740000px;}
.ws88{word-spacing:4.752000px;}
.ws14{word-spacing:4.806000px;}
.ws78{word-spacing:4.818000px;}
.wsdb{word-spacing:4.860000px;}
.wse{word-spacing:4.896000px;}
.wsd3{word-spacing:4.980000px;}
.ws6d{word-spacing:5.016000px;}
.ws7e{word-spacing:5.082000px;}
.wse0{word-spacing:5.100000px;}
.wsd{word-spacing:5.152800px;}
.ws65{word-spacing:5.214000px;}
.wsc8{word-spacing:5.280000px;}
.wsc1{word-spacing:5.346000px;}
.wsd9{word-spacing:5.400000px;}
.ws108{word-spacing:5.460000px;}
.wsfd{word-spacing:5.520000px;}
.ws89{word-spacing:5.544000px;}
.ws10d{word-spacing:5.580000px;}
.ws85{word-spacing:5.610000px;}
.ws10b{word-spacing:5.760000px;}
.wsba{word-spacing:5.808000px;}
.ws4d{word-spacing:5.874000px;}
.ws79{word-spacing:5.940000px;}
.wse7{word-spacing:6.000000px;}
.wsb3{word-spacing:6.006000px;}
.wsd7{word-spacing:6.060000px;}
.wsc6{word-spacing:6.204000px;}
.wsca{word-spacing:6.270000px;}
.ws5a{word-spacing:6.402000px;}
.wse1{word-spacing:6.540000px;}
.wsbf{word-spacing:6.732000px;}
.ws102{word-spacing:6.780000px;}
.ws74{word-spacing:6.798000px;}
.wsff{word-spacing:6.840000px;}
.ws99{word-spacing:6.864000px;}
.ws80{word-spacing:6.996000px;}
.ws36{word-spacing:7.062000px;}
.ws15{word-spacing:7.074000px;}
.wsd8{word-spacing:7.080000px;}
.ws66{word-spacing:7.128000px;}
.wsc9{word-spacing:7.194000px;}
.ws16{word-spacing:7.290000px;}
.wse9{word-spacing:7.320000px;}
.wse5{word-spacing:7.380000px;}
.ws3a{word-spacing:7.392000px;}
.wsfc{word-spacing:7.560000px;}
.wsb1{word-spacing:7.722000px;}
.ws113{word-spacing:7.800000px;}
.ws71{word-spacing:7.854000px;}
.wsc0{word-spacing:7.986000px;}
.ws9f{word-spacing:8.052000px;}
.ws32{word-spacing:8.250000px;}
.ws1f{word-spacing:8.262000px;}
.ws6e{word-spacing:8.316000px;}
.wsbd{word-spacing:8.382000px;}
.wsb9{word-spacing:8.514000px;}
.wsc4{word-spacing:8.580000px;}
.ws4b{word-spacing:8.976000px;}
.ws7{word-spacing:9.072000px;}
.ws10e{word-spacing:9.360000px;}
.ws30{word-spacing:9.504000px;}
.wsaa{word-spacing:9.636000px;}
.ws3f{word-spacing:9.834000px;}
.ws34{word-spacing:9.966000px;}
.wsfe{word-spacing:10.020000px;}
.wsdd{word-spacing:10.200000px;}
.wsf7{word-spacing:10.500000px;}
.ws98{word-spacing:11.022000px;}
.ws91{word-spacing:11.072844px;}
.ws8f{word-spacing:11.112963px;}
.wsd4{word-spacing:11.460000px;}
.ws72{word-spacing:11.616000px;}
.ws8e{word-spacing:12.172925px;}
.ws8d{word-spacing:12.217030px;}
.wsde{word-spacing:13.200000px;}
.ws97{word-spacing:14.322000px;}
.wsd2{word-spacing:15.600000px;}
.wse4{word-spacing:18.840000px;}
.wsf2{word-spacing:19.320000px;}
.wse2{word-spacing:19.680000px;}
.ws118{word-spacing:20.064000px;}
.wse8{word-spacing:20.940000px;}
.wsdf{word-spacing:54.660000px;}
.ws9c{word-spacing:445.114200px;}
._3{margin-left:-11.531520px;}
._6{margin-left:-10.422000px;}
._8{margin-left:-9.354600px;}
._b{margin-left:-7.554600px;}
._0{margin-left:-6.270000px;}
._9{margin-left:-4.536000px;}
._5{margin-left:-3.177000px;}
._1{margin-left:-1.710000px;}
._4{width:1.838760px;}
._7{width:3.618000px;}
._a{width:5.580840px;}
._2a{width:23.139714px;}
._2b{width:37.952574px;}
._29{width:43.930305px;}
._28{width:67.399920px;}
._c{width:113.764200px;}
._16{width:190.734000px;}
._f{width:193.411200px;}
._13{width:217.338600px;}
._11{width:219.781200px;}
._1a{width:225.108000px;}
._18{width:230.523600px;}
._d{width:233.281200px;}
._10{width:240.514200px;}
._19{width:242.454600px;}
._e{width:246.781200px;}
._12{width:252.108000px;}
._20{width:270.037800px;}
._14{width:273.781200px;}
._17{width:279.108000px;}
._2d{width:291.400200px;}
._15{width:292.608000px;}
._27{width:332.923200px;}
._1b{width:345.676200px;}
._26{width:356.098800px;}
._24{width:383.287800px;}
._2{width:397.365600px;}
._2c{width:407.462400px;}
._1c{width:408.963000px;}
._2f{width:410.647200px;}
._23{width:412.146600px;}
._22{width:424.588200px;}
._1d{width:427.801800px;}
._30{width:434.082000px;}
._25{width:435.226200px;}
._21{width:438.356400px;}
._2e{width:458.322600px;}
._1e{width:461.074200px;}
._1f{width:470.002200px;}
.fc4{color:rgb(16,15,13);}
.fc3{color:transparent;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(107,26,30);}
.fc0{color:rgb(35,31,32);}
.fsb{font-size:17.820000px;}
.fsa{font-size:19.800000px;}
.fs7{font-size:31.482000px;}
.fs8{font-size:37.800000px;}
.fsd{font-size:38.478000px;}
.fs3{font-size:39.527400px;}
.fs9{font-size:39.600000px;}
.fs10{font-size:40.119000px;}
.fsf{font-size:44.104800px;}
.fs6{font-size:45.600000px;}
.fs5{font-size:48.000000px;}
.fse{font-size:48.143400px;}
.fs4{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs11{font-size:60.000000px;}
.fsc{font-size:66.000000px;}
.fs2{font-size:67.800000px;}
.fs1{font-size:92.400000px;}
.y0{bottom:0.000000px;}
.y25{bottom:55.408350px;}
.y24{bottom:68.005200px;}
.y51{bottom:84.033000px;}
.y50{bottom:103.832850px;}
.y6e{bottom:103.833000px;}
.ye7{bottom:103.888350px;}
.y111{bottom:105.104700px;}
.y87{bottom:108.460050px;}
.y4f{bottom:123.632850px;}
.y75{bottom:123.633000px;}
.ycd{bottom:123.633150px;}
.ye6{bottom:123.688350px;}
.y110{bottom:124.904700px;}
.y86{bottom:126.751350px;}
.yce{bottom:134.985750px;}
.y4e{bottom:143.432850px;}
.y74{bottom:143.433000px;}
.ycc{bottom:143.433150px;}
.y6d{bottom:143.488350px;}
.y10f{bottom:144.704550px;}
.y85{bottom:145.042650px;}
.y20{bottom:149.377650px;}
.y4d{bottom:163.232850px;}
.y73{bottom:163.233000px;}
.ycb{bottom:163.233150px;}
.ye5{bottom:163.288350px;}
.y84{bottom:163.333950px;}
.y10e{bottom:164.504550px;}
.y1f{bottom:167.373150px;}
.y6c{bottom:174.585750px;}
.y83{bottom:181.625250px;}
.y4c{bottom:183.032850px;}
.y7a{bottom:183.033000px;}
.yca{bottom:183.033150px;}
.ye4{bottom:183.088350px;}
.y10d{bottom:184.304700px;}
.y1e{bottom:185.368650px;}
.y72{bottom:194.385750px;}
.y82{bottom:199.916550px;}
.y4b{bottom:202.833000px;}
.ye3{bottom:202.888350px;}
.y1d{bottom:203.364150px;}
.y10c{bottom:204.104550px;}
.y79{bottom:214.185750px;}
.y81{bottom:218.395500px;}
.y1c{bottom:221.359650px;}
.y4a{bottom:222.632850px;}
.ya1{bottom:222.633000px;}
.yc9{bottom:222.633150px;}
.ye2{bottom:222.688350px;}
.y10b{bottom:223.904550px;}
.y80{bottom:234.595500px;}
.y1b{bottom:239.355150px;}
.y49{bottom:242.432850px;}
.y6b{bottom:242.433000px;}
.yc8{bottom:242.433150px;}
.ye1{bottom:242.488350px;}
.y10a{bottom:243.704700px;}
.y1a{bottom:257.350650px;}
.y48{bottom:262.232850px;}
.y6a{bottom:262.233000px;}
.yc7{bottom:262.233150px;}
.ye0{bottom:262.288350px;}
.y109{bottom:263.504550px;}
.y7f{bottom:265.639650px;}
.y19{bottom:275.346150px;}
.y47{bottom:282.032850px;}
.y69{bottom:282.033000px;}
.yc6{bottom:282.033150px;}
.ydf{bottom:282.088350px;}
.y108{bottom:283.304700px;}
.y7e{bottom:283.639650px;}
.y18{bottom:293.377650px;}
.y7d{bottom:301.639650px;}
.y46{bottom:301.833000px;}
.yde{bottom:301.888350px;}
.y107{bottom:303.104550px;}
.y17{bottom:311.373150px;}
.y7c{bottom:319.639650px;}
.y45{bottom:321.632850px;}
.y68{bottom:321.633000px;}
.yc5{bottom:321.633150px;}
.ydd{bottom:321.688350px;}
.y106{bottom:322.904550px;}
.y16{bottom:329.368650px;}
.y44{bottom:341.432850px;}
.y67{bottom:341.433000px;}
.yc4{bottom:341.433150px;}
.ydc{bottom:341.488350px;}
.y105{bottom:342.704700px;}
.y15{bottom:347.364150px;}
.y94{bottom:351.995700px;}
.y43{bottom:361.232850px;}
.y66{bottom:361.233000px;}
.yc3{bottom:361.233150px;}
.ydb{bottom:361.288350px;}
.y104{bottom:362.504550px;}
.y14{bottom:365.359650px;}
.y93{bottom:369.995700px;}
.y42{bottom:381.032850px;}
.y65{bottom:381.033000px;}
.yc2{bottom:381.033150px;}
.yda{bottom:381.088350px;}
.y103{bottom:382.304700px;}
.y13{bottom:383.355150px;}
.y92{bottom:387.995700px;}
.y41{bottom:400.833000px;}
.yd9{bottom:400.888350px;}
.y12{bottom:401.350650px;}
.y102{bottom:402.104550px;}
.y91{bottom:411.000600px;}
.y64{bottom:412.185750px;}
.y11{bottom:419.346150px;}
.y40{bottom:420.632850px;}
.y71{bottom:420.633000px;}
.ya4{bottom:420.633150px;}
.yd8{bottom:420.688350px;}
.y101{bottom:421.904550px;}
.y90{bottom:429.291900px;}
.y10{bottom:437.341650px;}
.y3f{bottom:440.432850px;}
.y70{bottom:440.433000px;}
.yc1{bottom:440.433150px;}
.yd7{bottom:440.488350px;}
.y100{bottom:441.704700px;}
.y8f{bottom:447.583200px;}
.y3e{bottom:460.232850px;}
.y6f{bottom:460.233000px;}
.yc0{bottom:460.233150px;}
.yd6{bottom:460.288350px;}
.yff{bottom:461.504550px;}
.y8e{bottom:465.874500px;}
.y3d{bottom:480.032850px;}
.y63{bottom:480.033000px;}
.ybf{bottom:480.033150px;}
.yd5{bottom:480.088350px;}
.yfe{bottom:481.304700px;}
.y8d{bottom:484.165800px;}
.yf{bottom:497.733900px;}
.y3c{bottom:499.833000px;}
.yd4{bottom:499.888350px;}
.yfd{bottom:501.104550px;}
.y8c{bottom:502.457100px;}
.ye{bottom:515.733900px;}
.y3b{bottom:519.632850px;}
.y62{bottom:519.633000px;}
.ybe{bottom:519.633150px;}
.yd3{bottom:519.688350px;}
.yfc{bottom:520.904550px;}
.y8b{bottom:520.935900px;}
.yd{bottom:533.734500px;}
.y3a{bottom:539.432850px;}
.y61{bottom:539.433000px;}
.ybd{bottom:539.433150px;}
.yd2{bottom:539.488350px;}
.yfb{bottom:540.704700px;}
.y8a{bottom:551.980200px;}
.y39{bottom:559.233000px;}
.ybc{bottom:559.233150px;}
.yd1{bottom:559.288350px;}
.yc{bottom:560.237700px;}
.yfa{bottom:560.504550px;}
.y89{bottom:569.980200px;}
.y38{bottom:579.032850px;}
.y60{bottom:579.033000px;}
.yf9{bottom:580.304700px;}
.yb{bottom:586.741650px;}
.y88{bottom:587.980200px;}
.yd0{bottom:590.385750px;}
.ya3{bottom:595.297650px;}
.y37{bottom:598.832850px;}
.y5f{bottom:598.833000px;}
.yf8{bottom:600.104700px;}
.y36{bottom:618.632850px;}
.y5e{bottom:618.633000px;}
.ybb{bottom:618.633150px;}
.yf7{bottom:619.904550px;}
.y96{bottom:623.203950px;}
.ya{bottom:624.543150px;}
.ya2{bottom:626.395050px;}
.y78{bottom:629.985750px;}
.y35{bottom:638.432850px;}
.y5d{bottom:638.433000px;}
.yba{bottom:638.433150px;}
.yf6{bottom:639.704550px;}
.y95{bottom:641.203950px;}
.y77{bottom:648.294750px;}
.y113{bottom:649.785750px;}
.y9{bottom:653.858550px;}
.y34{bottom:658.233000px;}
.yb9{bottom:658.233150px;}
.yf5{bottom:659.504550px;}
.y76{bottom:666.294750px;}
.y97{bottom:667.992300px;}
.y8{bottom:671.854050px;}
.y33{bottom:678.032850px;}
.y5c{bottom:678.033000px;}
.yf4{bottom:679.304700px;}
.yb1{bottom:682.007100px;}
.y7b{bottom:689.385750px;}
.y7{bottom:689.849550px;}
.y9d{bottom:694.352369px;}
.y9e{bottom:694.352550px;}
.y32{bottom:697.832850px;}
.y5b{bottom:697.833000px;}
.yf3{bottom:699.104700px;}
.yb0{bottom:700.007100px;}
.y6{bottom:707.845050px;}
.y98{bottom:714.648900px;}
.y9a{bottom:715.956450px;}
.y31{bottom:717.632850px;}
.y5a{bottom:717.633000px;}
.yb8{bottom:717.633150px;}
.yaf{bottom:718.007100px;}
.yf2{bottom:718.904550px;}
.y99{bottom:722.254050px;}
.y5{bottom:725.840550px;}
.y30{bottom:737.432850px;}
.y59{bottom:737.433000px;}
.yb7{bottom:737.433150px;}
.yf1{bottom:738.704550px;}
.yae{bottom:741.012300px;}
.y2f{bottom:757.233000px;}
.yb6{bottom:757.233150px;}
.yf0{bottom:758.504550px;}
.yad{bottom:759.303750px;}
.y4{bottom:760.848450px;}
.y2e{bottom:777.033000px;}
.yac{bottom:777.595050px;}
.yef{bottom:778.304700px;}
.y9b{bottom:782.814764px;}
.yab{bottom:795.886350px;}
.y58{bottom:796.833000px;}
.yee{bottom:798.104700px;}
.ycf{bottom:808.185750px;}
.y2d{bottom:809.892900px;}
.yaa{bottom:814.177650px;}
.y3{bottom:815.999400px;}
.y57{bottom:816.633000px;}
.yb5{bottom:816.633150px;}
.yed{bottom:817.904700px;}
.ya9{bottom:832.468950px;}
.y56{bottom:836.433000px;}
.yb4{bottom:836.433150px;}
.yec{bottom:837.704550px;}
.y2{bottom:841.199400px;}
.y9c{bottom:849.612899px;}
.ya8{bottom:850.947750px;}
.y55{bottom:856.233000px;}
.yb3{bottom:856.233150px;}
.yeb{bottom:857.504550px;}
.y54{bottom:876.033000px;}
.yea{bottom:877.304700px;}
.y2c{bottom:877.740150px;}
.ya7{bottom:881.992200px;}
.y2b{bottom:895.740150px;}
.y53{bottom:895.833000px;}
.ye9{bottom:897.104700px;}
.ya6{bottom:899.992200px;}
.yb2{bottom:907.313250px;}
.y112{bottom:907.875300px;}
.ya0{bottom:911.308050px;}
.y9f{bottom:911.320350px;}
.y2a{bottom:913.740150px;}
.y52{bottom:915.633000px;}
.ye8{bottom:916.904700px;}
.ya5{bottom:917.992200px;}
.y27{bottom:935.356350px;}
.y23{bottom:935.709300px;}
.y22{bottom:950.706450px;}
.y26{bottom:951.778500px;}
.y1{bottom:959.117700px;}
.y29{bottom:959.661450px;}
.y21{bottom:965.703600px;}
.y28{bottom:971.677800px;}
.hd{height:13.539023px;}
.hc{height:15.043359px;}
.ha{height:28.350000px;}
.h14{height:29.207729px;}
.hb{height:29.700000px;}
.h15{height:32.109500px;}
.h13{height:32.153605px;}
.h8{height:32.606171px;}
.h12{height:35.049712px;}
.h7{height:36.000000px;}
.h11{height:38.610000px;}
.h6{height:38.612571px;}
.h5{height:40.500000px;}
.h9{height:41.449500px;}
.h2{height:42.750000px;}
.h16{height:45.000000px;}
.h10{height:47.190000px;}
.he{height:49.500000px;}
.hf{height:50.836500px;}
.h4{height:52.222950px;}
.h3{height:69.300000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:701.250000px;}
.w0{width:701.575500px;}
.x0{left:0.000000px;}
.x5{left:78.661350px;}
.x14{left:83.006400px;}
.x1f{left:93.636750px;}
.x4{left:97.096050px;}
.x17{left:98.888700px;}
.x25{left:99.921150px;}
.x1b{left:101.077350px;}
.x18{left:102.290550px;}
.xb{left:104.173200px;}
.x16{left:105.685800px;}
.x15{left:111.213900px;}
.x19{left:115.230300px;}
.x1a{left:121.819500px;}
.x1d{left:123.756750px;}
.x20{left:125.057988px;}
.x1c{left:129.284850px;}
.x2{left:152.061600px;}
.x21{left:158.401950px;}
.x1{left:192.202500px;}
.xa{left:196.652700px;}
.xc{left:198.813000px;}
.xd{left:200.466900px;}
.x6{left:205.815000px;}
.x22{left:210.347250px;}
.x23{left:213.633000px;}
.x3{left:256.169550px;}
.x7{left:303.421650px;}
.xf{left:305.821350px;}
.xe{left:308.149800px;}
.x1e{left:336.746100px;}
.x10{left:413.261250px;}
.x11{left:415.603350px;}
.x24{left:445.350000px;}
.x8{left:488.546100px;}
.x13{left:509.141100px;}
.x12{left:514.128900px;}
.x9{left:531.217200px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:15.856000pt;}
.v1{vertical-align:20.068800pt;}
.ls8{letter-spacing:-3.360000pt;}
.lse{letter-spacing:-1.818728pt;}
.lsf{letter-spacing:-1.568171pt;}
.ls10{letter-spacing:-1.173333pt;}
.ls11{letter-spacing:-1.066667pt;}
.ls12{letter-spacing:-0.533333pt;}
.ls6{letter-spacing:-0.512000pt;}
.ls5{letter-spacing:-0.426667pt;}
.ls4{letter-spacing:-0.405333pt;}
.lsa{letter-spacing:-0.352000pt;}
.lsd{letter-spacing:-0.293333pt;}
.ls3{letter-spacing:-0.170667pt;}
.ls7{letter-spacing:-0.033600pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000267pt;}
.ls9{letter-spacing:0.293333pt;}
.lsc{letter-spacing:0.410432pt;}
.lsb{letter-spacing:0.704000pt;}
.ls1{letter-spacing:4.352000pt;}
.ws7c{word-spacing:-58.666667pt;}
.ws26{word-spacing:-16.309333pt;}
.ws7b{word-spacing:-14.666667pt;}
.ws25{word-spacing:-13.344000pt;}
.wsf0{word-spacing:-13.333333pt;}
.ws8c{word-spacing:-12.000000pt;}
.ws7d{word-spacing:-11.520000pt;}
.ws0{word-spacing:-9.767660pt;}
.ws1{word-spacing:-9.728000pt;}
.ws4{word-spacing:-9.340800pt;}
.ws3{word-spacing:-9.307200pt;}
.ws41{word-spacing:-8.961099pt;}
.ws57{word-spacing:-8.550667pt;}
.ws2{word-spacing:-6.996000pt;}
.ws107{word-spacing:-4.640000pt;}
.ws48{word-spacing:-3.520000pt;}
.ws106{word-spacing:-3.360000pt;}
.wsbc{word-spacing:-2.933333pt;}
.wsa7{word-spacing:-2.874667pt;}
.wsa0{word-spacing:-2.816000pt;}
.ws5f{word-spacing:-2.757333pt;}
.wsce{word-spacing:-2.720000pt;}
.wseb{word-spacing:-2.613333pt;}
.ws82{word-spacing:-2.581333pt;}
.wsad{word-spacing:-2.522667pt;}
.wse6{word-spacing:-2.400000pt;}
.ws73{word-spacing:-2.346667pt;}
.wsfb{word-spacing:-2.240000pt;}
.ws84{word-spacing:-2.229333pt;}
.ws104{word-spacing:-2.186667pt;}
.ws81{word-spacing:-2.170667pt;}
.ws100{word-spacing:-2.080000pt;}
.ws1b{word-spacing:-2.064000pt;}
.ws9e{word-spacing:-2.053333pt;}
.ws105{word-spacing:-2.026667pt;}
.ws5b{word-spacing:-1.994667pt;}
.ws50{word-spacing:-1.936000pt;}
.ws31{word-spacing:-1.877333pt;}
.ws8a{word-spacing:-1.776000pt;}
.ws40{word-spacing:-1.760000pt;}
.ws19{word-spacing:-1.632000pt;}
.ws53{word-spacing:-1.584000pt;}
.wsed{word-spacing:-1.546667pt;}
.wscf{word-spacing:-1.493333pt;}
.ws76{word-spacing:-1.466667pt;}
.ws3e{word-spacing:-1.408000pt;}
.ws27{word-spacing:-1.392000pt;}
.wsd0{word-spacing:-1.386667pt;}
.ws55{word-spacing:-1.349333pt;}
.ws22{word-spacing:-1.344000pt;}
.ws11{word-spacing:-1.322667pt;}
.ws51{word-spacing:-1.290667pt;}
.ws47{word-spacing:-1.232000pt;}
.ws35{word-spacing:-1.173333pt;}
.wsec{word-spacing:-1.120000pt;}
.wsae{word-spacing:-1.114667pt;}
.wsbe{word-spacing:-1.056000pt;}
.wsf9{word-spacing:-1.013333pt;}
.ws2f{word-spacing:-0.997333pt;}
.wsea{word-spacing:-0.960000pt;}
.ws29{word-spacing:-0.938667pt;}
.ws6{word-spacing:-0.904000pt;}
.ws87{word-spacing:-0.880000pt;}
.ws67{word-spacing:-0.821333pt;}
.ws5c{word-spacing:-0.762667pt;}
.wsc2{word-spacing:-0.704000pt;}
.ws4c{word-spacing:-0.586667pt;}
.ws8b{word-spacing:-0.576000pt;}
.wsf6{word-spacing:-0.533333pt;}
.ws5d{word-spacing:-0.528000pt;}
.ws1d{word-spacing:-0.480000pt;}
.ws77{word-spacing:-0.469333pt;}
.ws10f{word-spacing:-0.426667pt;}
.ws6a{word-spacing:-0.410667pt;}
.ws6c{word-spacing:-0.352000pt;}
.wscb{word-spacing:-0.320000pt;}
.ws2c{word-spacing:-0.293333pt;}
.wsa5{word-spacing:-0.240000pt;}
.ws56{word-spacing:-0.234667pt;}
.ws9b{word-spacing:-0.176000pt;}
.wsb{word-spacing:-0.170667pt;}
.wsa{word-spacing:-0.144000pt;}
.ws2b{word-spacing:-0.117333pt;}
.ws103{word-spacing:-0.106667pt;}
.ws4f{word-spacing:-0.058667pt;}
.ws115{word-spacing:-0.053333pt;}
.ws13{word-spacing:-0.048000pt;}
.ws5{word-spacing:0.000000pt;}
.ws112{word-spacing:0.053333pt;}
.wsaf{word-spacing:0.058667pt;}
.ws12{word-spacing:0.085333pt;}
.wsb8{word-spacing:0.117333pt;}
.wsee{word-spacing:0.160000pt;}
.wsc{word-spacing:0.170667pt;}
.ws1c{word-spacing:0.192000pt;}
.wsfa{word-spacing:0.213333pt;}
.ws9d{word-spacing:0.234667pt;}
.wsa4{word-spacing:0.240000pt;}
.wsa3{word-spacing:0.288000pt;}
.ws3b{word-spacing:0.293333pt;}
.wsb0{word-spacing:0.352000pt;}
.wsf{word-spacing:0.405333pt;}
.wsb4{word-spacing:0.410667pt;}
.ws4a{word-spacing:0.528000pt;}
.wscc{word-spacing:0.533333pt;}
.ws42{word-spacing:0.586667pt;}
.ws43{word-spacing:0.645333pt;}
.ws95{word-spacing:0.672000pt;}
.ws46{word-spacing:0.704000pt;}
.ws44{word-spacing:0.762667pt;}
.ws54{word-spacing:0.821333pt;}
.ws7f{word-spacing:0.880000pt;}
.ws37{word-spacing:0.938667pt;}
.ws69{word-spacing:0.960000pt;}
.ws68{word-spacing:1.056000pt;}
.wsd6{word-spacing:1.066667pt;}
.ws9a{word-spacing:1.114667pt;}
.ws10a{word-spacing:1.120000pt;}
.ws58{word-spacing:1.173333pt;}
.ws94{word-spacing:1.200000pt;}
.ws33{word-spacing:1.232000pt;}
.wsdc{word-spacing:1.280000pt;}
.wsb2{word-spacing:1.290667pt;}
.ws93{word-spacing:1.296000pt;}
.wsb6{word-spacing:1.349333pt;}
.ws114{word-spacing:1.386667pt;}
.wsc7{word-spacing:1.408000pt;}
.wsab{word-spacing:1.466667pt;}
.ws28{word-spacing:1.525333pt;}
.ws92{word-spacing:1.528966pt;}
.wsda{word-spacing:1.546667pt;}
.ws3c{word-spacing:1.584000pt;}
.ws10c{word-spacing:1.600000pt;}
.ws52{word-spacing:1.642667pt;}
.ws1a{word-spacing:1.680000pt;}
.ws6f{word-spacing:1.701333pt;}
.ws21{word-spacing:1.728000pt;}
.ws111{word-spacing:1.760000pt;}
.ws90{word-spacing:1.783067pt;}
.wsa2{word-spacing:1.818667pt;}
.ws63{word-spacing:1.877333pt;}
.ws59{word-spacing:1.936000pt;}
.wsc5{word-spacing:2.053333pt;}
.ws60{word-spacing:2.170667pt;}
.ws45{word-spacing:2.288000pt;}
.wsf1{word-spacing:2.293333pt;}
.ws18{word-spacing:2.304000pt;}
.ws5e{word-spacing:2.346667pt;}
.ws1e{word-spacing:2.400000pt;}
.ws62{word-spacing:2.405333pt;}
.ws70{word-spacing:2.464000pt;}
.wsa6{word-spacing:2.522667pt;}
.wsf8{word-spacing:2.560000pt;}
.ws83{word-spacing:2.581333pt;}
.ws20{word-spacing:2.640000pt;}
.wsac{word-spacing:2.698667pt;}
.wsf5{word-spacing:2.720000pt;}
.wsc3{word-spacing:2.816000pt;}
.ws17{word-spacing:2.832000pt;}
.ws86{word-spacing:2.874667pt;}
.ws9{word-spacing:2.880000pt;}
.ws2a{word-spacing:2.933333pt;}
.ws39{word-spacing:2.992000pt;}
.ws96{word-spacing:3.024000pt;}
.wscd{word-spacing:3.040000pt;}
.ws75{word-spacing:3.050667pt;}
.ws2d{word-spacing:3.109333pt;}
.wsef{word-spacing:3.146667pt;}
.wsb5{word-spacing:3.168000pt;}
.wsd5{word-spacing:3.200000pt;}
.ws2e{word-spacing:3.226667pt;}
.ws61{word-spacing:3.285333pt;}
.ws109{word-spacing:3.306667pt;}
.wsa9{word-spacing:3.344000pt;}
.ws23{word-spacing:3.360000pt;}
.wsf4{word-spacing:3.413333pt;}
.ws10{word-spacing:3.456000pt;}
.ws6b{word-spacing:3.461333pt;}
.wse3{word-spacing:3.466667pt;}
.ws24{word-spacing:3.520000pt;}
.ws49{word-spacing:3.578667pt;}
.ws3d{word-spacing:3.637333pt;}
.ws64{word-spacing:3.696000pt;}
.ws110{word-spacing:3.733333pt;}
.ws38{word-spacing:3.754667pt;}
.ws117{word-spacing:3.786667pt;}
.ws8{word-spacing:3.792000pt;}
.ws7a{word-spacing:3.813333pt;}
.wsbb{word-spacing:3.872000pt;}
.ws4e{word-spacing:3.930667pt;}
.wsf3{word-spacing:3.946667pt;}
.wsb7{word-spacing:3.989333pt;}
.wsd1{word-spacing:4.000000pt;}
.wsa8{word-spacing:4.106667pt;}
.ws101{word-spacing:4.160000pt;}
.wsa1{word-spacing:4.165333pt;}
.ws116{word-spacing:4.213333pt;}
.ws88{word-spacing:4.224000pt;}
.ws14{word-spacing:4.272000pt;}
.ws78{word-spacing:4.282667pt;}
.wsdb{word-spacing:4.320000pt;}
.wse{word-spacing:4.352000pt;}
.wsd3{word-spacing:4.426667pt;}
.ws6d{word-spacing:4.458667pt;}
.ws7e{word-spacing:4.517333pt;}
.wse0{word-spacing:4.533333pt;}
.wsd{word-spacing:4.580267pt;}
.ws65{word-spacing:4.634667pt;}
.wsc8{word-spacing:4.693333pt;}
.wsc1{word-spacing:4.752000pt;}
.wsd9{word-spacing:4.800000pt;}
.ws108{word-spacing:4.853333pt;}
.wsfd{word-spacing:4.906667pt;}
.ws89{word-spacing:4.928000pt;}
.ws10d{word-spacing:4.960000pt;}
.ws85{word-spacing:4.986667pt;}
.ws10b{word-spacing:5.120000pt;}
.wsba{word-spacing:5.162667pt;}
.ws4d{word-spacing:5.221333pt;}
.ws79{word-spacing:5.280000pt;}
.wse7{word-spacing:5.333333pt;}
.wsb3{word-spacing:5.338667pt;}
.wsd7{word-spacing:5.386667pt;}
.wsc6{word-spacing:5.514667pt;}
.wsca{word-spacing:5.573333pt;}
.ws5a{word-spacing:5.690667pt;}
.wse1{word-spacing:5.813333pt;}
.wsbf{word-spacing:5.984000pt;}
.ws102{word-spacing:6.026667pt;}
.ws74{word-spacing:6.042667pt;}
.wsff{word-spacing:6.080000pt;}
.ws99{word-spacing:6.101333pt;}
.ws80{word-spacing:6.218667pt;}
.ws36{word-spacing:6.277333pt;}
.ws15{word-spacing:6.288000pt;}
.wsd8{word-spacing:6.293333pt;}
.ws66{word-spacing:6.336000pt;}
.wsc9{word-spacing:6.394667pt;}
.ws16{word-spacing:6.480000pt;}
.wse9{word-spacing:6.506667pt;}
.wse5{word-spacing:6.560000pt;}
.ws3a{word-spacing:6.570667pt;}
.wsfc{word-spacing:6.720000pt;}
.wsb1{word-spacing:6.864000pt;}
.ws113{word-spacing:6.933333pt;}
.ws71{word-spacing:6.981333pt;}
.wsc0{word-spacing:7.098667pt;}
.ws9f{word-spacing:7.157333pt;}
.ws32{word-spacing:7.333333pt;}
.ws1f{word-spacing:7.344000pt;}
.ws6e{word-spacing:7.392000pt;}
.wsbd{word-spacing:7.450667pt;}
.wsb9{word-spacing:7.568000pt;}
.wsc4{word-spacing:7.626667pt;}
.ws4b{word-spacing:7.978667pt;}
.ws7{word-spacing:8.064000pt;}
.ws10e{word-spacing:8.320000pt;}
.ws30{word-spacing:8.448000pt;}
.wsaa{word-spacing:8.565333pt;}
.ws3f{word-spacing:8.741333pt;}
.ws34{word-spacing:8.858667pt;}
.wsfe{word-spacing:8.906667pt;}
.wsdd{word-spacing:9.066667pt;}
.wsf7{word-spacing:9.333333pt;}
.ws98{word-spacing:9.797333pt;}
.ws91{word-spacing:9.842528pt;}
.ws8f{word-spacing:9.878189pt;}
.wsd4{word-spacing:10.186667pt;}
.ws72{word-spacing:10.325333pt;}
.ws8e{word-spacing:10.820378pt;}
.ws8d{word-spacing:10.859582pt;}
.wsde{word-spacing:11.733333pt;}
.ws97{word-spacing:12.730667pt;}
.wsd2{word-spacing:13.866667pt;}
.wse4{word-spacing:16.746667pt;}
.wsf2{word-spacing:17.173333pt;}
.wse2{word-spacing:17.493333pt;}
.ws118{word-spacing:17.834667pt;}
.wse8{word-spacing:18.613333pt;}
.wsdf{word-spacing:48.586667pt;}
.ws9c{word-spacing:395.657067pt;}
._3{margin-left:-10.250240pt;}
._6{margin-left:-9.264000pt;}
._8{margin-left:-8.315200pt;}
._b{margin-left:-6.715200pt;}
._0{margin-left:-5.573333pt;}
._9{margin-left:-4.032000pt;}
._5{margin-left:-2.824000pt;}
._1{margin-left:-1.520000pt;}
._4{width:1.634453pt;}
._7{width:3.216000pt;}
._a{width:4.960747pt;}
._2a{width:20.568635pt;}
._2b{width:33.735621pt;}
._29{width:39.049160pt;}
._28{width:59.911040pt;}
._c{width:101.123733pt;}
._16{width:169.541333pt;}
._f{width:171.921067pt;}
._13{width:193.189867pt;}
._11{width:195.361067pt;}
._1a{width:200.096000pt;}
._18{width:204.909867pt;}
._d{width:207.361067pt;}
._10{width:213.790400pt;}
._19{width:215.515200pt;}
._e{width:219.361067pt;}
._12{width:224.096000pt;}
._20{width:240.033600pt;}
._14{width:243.361067pt;}
._17{width:248.096000pt;}
._2d{width:259.022400pt;}
._15{width:260.096000pt;}
._27{width:295.931733pt;}
._1b{width:307.267733pt;}
._26{width:316.532267pt;}
._24{width:340.700267pt;}
._2{width:353.213867pt;}
._2c{width:362.188800pt;}
._1c{width:363.522667pt;}
._2f{width:365.019733pt;}
._23{width:366.352533pt;}
._22{width:377.411733pt;}
._1d{width:380.268267pt;}
._30{width:385.850667pt;}
._25{width:386.867733pt;}
._21{width:389.650133pt;}
._2e{width:407.397867pt;}
._1e{width:409.843733pt;}
._1f{width:417.779733pt;}
.fsb{font-size:15.840000pt;}
.fsa{font-size:17.600000pt;}
.fs7{font-size:27.984000pt;}
.fs8{font-size:33.600000pt;}
.fsd{font-size:34.202667pt;}
.fs3{font-size:35.135467pt;}
.fs9{font-size:35.200000pt;}
.fs10{font-size:35.661333pt;}
.fsf{font-size:39.204267pt;}
.fs6{font-size:40.533333pt;}
.fs5{font-size:42.666667pt;}
.fse{font-size:42.794133pt;}
.fs4{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs11{font-size:53.333333pt;}
.fsc{font-size:58.666667pt;}
.fs2{font-size:60.266667pt;}
.fs1{font-size:82.133333pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:49.251867pt;}
.y24{bottom:60.449067pt;}
.y51{bottom:74.696000pt;}
.y50{bottom:92.295867pt;}
.y6e{bottom:92.296000pt;}
.ye7{bottom:92.345200pt;}
.y111{bottom:93.426400pt;}
.y87{bottom:96.408933pt;}
.y4f{bottom:109.895867pt;}
.y75{bottom:109.896000pt;}
.ycd{bottom:109.896133pt;}
.ye6{bottom:109.945200pt;}
.y110{bottom:111.026400pt;}
.y86{bottom:112.667867pt;}
.yce{bottom:119.987333pt;}
.y4e{bottom:127.495867pt;}
.y74{bottom:127.496000pt;}
.ycc{bottom:127.496133pt;}
.y6d{bottom:127.545200pt;}
.y10f{bottom:128.626267pt;}
.y85{bottom:128.926800pt;}
.y20{bottom:132.780133pt;}
.y4d{bottom:145.095867pt;}
.y73{bottom:145.096000pt;}
.ycb{bottom:145.096133pt;}
.ye5{bottom:145.145200pt;}
.y84{bottom:145.185733pt;}
.y10e{bottom:146.226267pt;}
.y1f{bottom:148.776133pt;}
.y6c{bottom:155.187333pt;}
.y83{bottom:161.444667pt;}
.y4c{bottom:162.695867pt;}
.y7a{bottom:162.696000pt;}
.yca{bottom:162.696133pt;}
.ye4{bottom:162.745200pt;}
.y10d{bottom:163.826400pt;}
.y1e{bottom:164.772133pt;}
.y72{bottom:172.787333pt;}
.y82{bottom:177.703600pt;}
.y4b{bottom:180.296000pt;}
.ye3{bottom:180.345200pt;}
.y1d{bottom:180.768133pt;}
.y10c{bottom:181.426267pt;}
.y79{bottom:190.387333pt;}
.y81{bottom:194.129333pt;}
.y1c{bottom:196.764133pt;}
.y4a{bottom:197.895867pt;}
.ya1{bottom:197.896000pt;}
.yc9{bottom:197.896133pt;}
.ye2{bottom:197.945200pt;}
.y10b{bottom:199.026267pt;}
.y80{bottom:208.529333pt;}
.y1b{bottom:212.760133pt;}
.y49{bottom:215.495867pt;}
.y6b{bottom:215.496000pt;}
.yc8{bottom:215.496133pt;}
.ye1{bottom:215.545200pt;}
.y10a{bottom:216.626400pt;}
.y1a{bottom:228.756133pt;}
.y48{bottom:233.095867pt;}
.y6a{bottom:233.096000pt;}
.yc7{bottom:233.096133pt;}
.ye0{bottom:233.145200pt;}
.y109{bottom:234.226267pt;}
.y7f{bottom:236.124133pt;}
.y19{bottom:244.752133pt;}
.y47{bottom:250.695867pt;}
.y69{bottom:250.696000pt;}
.yc6{bottom:250.696133pt;}
.ydf{bottom:250.745200pt;}
.y108{bottom:251.826400pt;}
.y7e{bottom:252.124133pt;}
.y18{bottom:260.780133pt;}
.y7d{bottom:268.124133pt;}
.y46{bottom:268.296000pt;}
.yde{bottom:268.345200pt;}
.y107{bottom:269.426267pt;}
.y17{bottom:276.776133pt;}
.y7c{bottom:284.124133pt;}
.y45{bottom:285.895867pt;}
.y68{bottom:285.896000pt;}
.yc5{bottom:285.896133pt;}
.ydd{bottom:285.945200pt;}
.y106{bottom:287.026267pt;}
.y16{bottom:292.772133pt;}
.y44{bottom:303.495867pt;}
.y67{bottom:303.496000pt;}
.yc4{bottom:303.496133pt;}
.ydc{bottom:303.545200pt;}
.y105{bottom:304.626400pt;}
.y15{bottom:308.768133pt;}
.y94{bottom:312.885067pt;}
.y43{bottom:321.095867pt;}
.y66{bottom:321.096000pt;}
.yc3{bottom:321.096133pt;}
.ydb{bottom:321.145200pt;}
.y104{bottom:322.226267pt;}
.y14{bottom:324.764133pt;}
.y93{bottom:328.885067pt;}
.y42{bottom:338.695867pt;}
.y65{bottom:338.696000pt;}
.yc2{bottom:338.696133pt;}
.yda{bottom:338.745200pt;}
.y103{bottom:339.826400pt;}
.y13{bottom:340.760133pt;}
.y92{bottom:344.885067pt;}
.y41{bottom:356.296000pt;}
.yd9{bottom:356.345200pt;}
.y12{bottom:356.756133pt;}
.y102{bottom:357.426267pt;}
.y91{bottom:365.333867pt;}
.y64{bottom:366.387333pt;}
.y11{bottom:372.752133pt;}
.y40{bottom:373.895867pt;}
.y71{bottom:373.896000pt;}
.ya4{bottom:373.896133pt;}
.yd8{bottom:373.945200pt;}
.y101{bottom:375.026267pt;}
.y90{bottom:381.592800pt;}
.y10{bottom:388.748133pt;}
.y3f{bottom:391.495867pt;}
.y70{bottom:391.496000pt;}
.yc1{bottom:391.496133pt;}
.yd7{bottom:391.545200pt;}
.y100{bottom:392.626400pt;}
.y8f{bottom:397.851733pt;}
.y3e{bottom:409.095867pt;}
.y6f{bottom:409.096000pt;}
.yc0{bottom:409.096133pt;}
.yd6{bottom:409.145200pt;}
.yff{bottom:410.226267pt;}
.y8e{bottom:414.110667pt;}
.y3d{bottom:426.695867pt;}
.y63{bottom:426.696000pt;}
.ybf{bottom:426.696133pt;}
.yd5{bottom:426.745200pt;}
.yfe{bottom:427.826400pt;}
.y8d{bottom:430.369600pt;}
.yf{bottom:442.430133pt;}
.y3c{bottom:444.296000pt;}
.yd4{bottom:444.345200pt;}
.yfd{bottom:445.426267pt;}
.y8c{bottom:446.628533pt;}
.ye{bottom:458.430133pt;}
.y3b{bottom:461.895867pt;}
.y62{bottom:461.896000pt;}
.ybe{bottom:461.896133pt;}
.yd3{bottom:461.945200pt;}
.yfc{bottom:463.026267pt;}
.y8b{bottom:463.054133pt;}
.yd{bottom:474.430667pt;}
.y3a{bottom:479.495867pt;}
.y61{bottom:479.496000pt;}
.ybd{bottom:479.496133pt;}
.yd2{bottom:479.545200pt;}
.yfb{bottom:480.626400pt;}
.y8a{bottom:490.649067pt;}
.y39{bottom:497.096000pt;}
.ybc{bottom:497.096133pt;}
.yd1{bottom:497.145200pt;}
.yc{bottom:497.989067pt;}
.yfa{bottom:498.226267pt;}
.y89{bottom:506.649067pt;}
.y38{bottom:514.695867pt;}
.y60{bottom:514.696000pt;}
.yf9{bottom:515.826400pt;}
.yb{bottom:521.548133pt;}
.y88{bottom:522.649067pt;}
.yd0{bottom:524.787333pt;}
.ya3{bottom:529.153467pt;}
.y37{bottom:532.295867pt;}
.y5f{bottom:532.296000pt;}
.yf8{bottom:533.426400pt;}
.y36{bottom:549.895867pt;}
.y5e{bottom:549.896000pt;}
.ybb{bottom:549.896133pt;}
.yf7{bottom:551.026267pt;}
.y96{bottom:553.959067pt;}
.ya{bottom:555.149467pt;}
.ya2{bottom:556.795600pt;}
.y78{bottom:559.987333pt;}
.y35{bottom:567.495867pt;}
.y5d{bottom:567.496000pt;}
.yba{bottom:567.496133pt;}
.yf6{bottom:568.626267pt;}
.y95{bottom:569.959067pt;}
.y77{bottom:576.262000pt;}
.y113{bottom:577.587333pt;}
.y9{bottom:581.207600pt;}
.y34{bottom:585.096000pt;}
.yb9{bottom:585.096133pt;}
.yf5{bottom:586.226267pt;}
.y76{bottom:592.262000pt;}
.y97{bottom:593.770933pt;}
.y8{bottom:597.203600pt;}
.y33{bottom:602.695867pt;}
.y5c{bottom:602.696000pt;}
.yf4{bottom:603.826400pt;}
.yb1{bottom:606.228533pt;}
.y7b{bottom:612.787333pt;}
.y7{bottom:613.199600pt;}
.y9d{bottom:617.202105pt;}
.y9e{bottom:617.202267pt;}
.y32{bottom:620.295867pt;}
.y5b{bottom:620.296000pt;}
.yf3{bottom:621.426400pt;}
.yb0{bottom:622.228533pt;}
.y6{bottom:629.195600pt;}
.y98{bottom:635.243467pt;}
.y9a{bottom:636.405733pt;}
.y31{bottom:637.895867pt;}
.y5a{bottom:637.896000pt;}
.yb8{bottom:637.896133pt;}
.yaf{bottom:638.228533pt;}
.yf2{bottom:639.026267pt;}
.y99{bottom:642.003600pt;}
.y5{bottom:645.191600pt;}
.y30{bottom:655.495867pt;}
.y59{bottom:655.496000pt;}
.yb7{bottom:655.496133pt;}
.yf1{bottom:656.626267pt;}
.yae{bottom:658.677600pt;}
.y2f{bottom:673.096000pt;}
.yb6{bottom:673.096133pt;}
.yf0{bottom:674.226267pt;}
.yad{bottom:674.936667pt;}
.y4{bottom:676.309733pt;}
.y2e{bottom:690.696000pt;}
.yac{bottom:691.195600pt;}
.yef{bottom:691.826400pt;}
.y9b{bottom:695.835345pt;}
.yab{bottom:707.454533pt;}
.y58{bottom:708.296000pt;}
.yee{bottom:709.426400pt;}
.ycf{bottom:718.387333pt;}
.y2d{bottom:719.904800pt;}
.yaa{bottom:723.713467pt;}
.y3{bottom:725.332800pt;}
.y57{bottom:725.896000pt;}
.yb5{bottom:725.896133pt;}
.yed{bottom:727.026400pt;}
.ya9{bottom:739.972400pt;}
.y56{bottom:743.496000pt;}
.yb4{bottom:743.496133pt;}
.yec{bottom:744.626267pt;}
.y2{bottom:747.732800pt;}
.y9c{bottom:755.211465pt;}
.ya8{bottom:756.398000pt;}
.y55{bottom:761.096000pt;}
.yb3{bottom:761.096133pt;}
.yeb{bottom:762.226267pt;}
.y54{bottom:778.696000pt;}
.yea{bottom:779.826400pt;}
.y2c{bottom:780.213467pt;}
.ya7{bottom:783.993067pt;}
.y2b{bottom:796.213467pt;}
.y53{bottom:796.296000pt;}
.ye9{bottom:797.426400pt;}
.ya6{bottom:799.993067pt;}
.yb2{bottom:806.500667pt;}
.y112{bottom:807.000267pt;}
.ya0{bottom:810.051600pt;}
.y9f{bottom:810.062533pt;}
.y2a{bottom:812.213467pt;}
.y52{bottom:813.896000pt;}
.ye8{bottom:815.026400pt;}
.ya5{bottom:815.993067pt;}
.y27{bottom:831.427867pt;}
.y23{bottom:831.741600pt;}
.y22{bottom:845.072400pt;}
.y26{bottom:846.025333pt;}
.y1{bottom:852.549067pt;}
.y29{bottom:853.032400pt;}
.y21{bottom:858.403200pt;}
.y28{bottom:863.713600pt;}
.hd{height:12.034688pt;}
.hc{height:13.371875pt;}
.ha{height:25.200000pt;}
.h14{height:25.962426pt;}
.hb{height:26.400000pt;}
.h15{height:28.541778pt;}
.h13{height:28.580982pt;}
.h8{height:28.983263pt;}
.h12{height:31.155299pt;}
.h7{height:32.000000pt;}
.h11{height:34.320000pt;}
.h6{height:34.322286pt;}
.h5{height:36.000000pt;}
.h9{height:36.844000pt;}
.h2{height:38.000000pt;}
.h16{height:40.000000pt;}
.h10{height:41.946667pt;}
.he{height:44.000000pt;}
.hf{height:45.188000pt;}
.h4{height:46.420400pt;}
.h3{height:61.600000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:623.333333pt;}
.w0{width:623.622667pt;}
.x0{left:0.000000pt;}
.x5{left:69.921200pt;}
.x14{left:73.783467pt;}
.x1f{left:83.232667pt;}
.x4{left:86.307600pt;}
.x17{left:87.901067pt;}
.x25{left:88.818800pt;}
.x1b{left:89.846533pt;}
.x18{left:90.924933pt;}
.xb{left:92.598400pt;}
.x16{left:93.942933pt;}
.x15{left:98.856800pt;}
.x19{left:102.426933pt;}
.x1a{left:108.284000pt;}
.x1d{left:110.006000pt;}
.x20{left:111.162656pt;}
.x1c{left:114.919867pt;}
.x2{left:135.165867pt;}
.x21{left:140.801733pt;}
.x1{left:170.846667pt;}
.xa{left:174.802400pt;}
.xc{left:176.722667pt;}
.xd{left:178.192800pt;}
.x6{left:182.946667pt;}
.x22{left:186.975333pt;}
.x23{left:189.896000pt;}
.x3{left:227.706267pt;}
.x7{left:269.708133pt;}
.xf{left:271.841200pt;}
.xe{left:273.910933pt;}
.x1e{left:299.329867pt;}
.x10{left:367.343333pt;}
.x11{left:369.425200pt;}
.x24{left:395.866667pt;}
.x8{left:434.263200pt;}
.x13{left:452.569867pt;}
.x12{left:457.003467pt;}
.x9{left:472.193067pt;}
}




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