
    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_a3d2faccc2a2aff58d299c91.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_430a4ed1b3b4e94f36296420.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.029000;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_6c62f65aeb38e23a2566ecac.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.000000;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_89f5bde7974a08c3ca38b93a.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_f72276ee84d1536569407ec3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666000;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_40c291a1d8a0c52a42ca2d95.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_99960c9808b9ceb38b14a8b9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.029000;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_46d4be173dae09d5799da15e.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.093000;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_1c12b2a7a571b0d95aa63c24.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.087000;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_65538ee4ae8174d7da7dfef8.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.951000;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_000e70f1be67545c33fef184.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.029000;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_2d25cb2480cd8416c90fe9aa.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.681000;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_d31b5ccb54a82983f2b8251a.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_d31b5ccb54a82983f2b8251a.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_d1276ebd58d88e4106df9be4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.850000;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;}
.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);}
.v3{vertical-align:-44.972400px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:12.000000px;}
.ls1c{letter-spacing:-6.750000px;}
.ls20{letter-spacing:-2.244000px;}
.ls27{letter-spacing:-0.840000px;}
.ls21{letter-spacing:-0.552000px;}
.ls45{letter-spacing:-0.540000px;}
.ls25{letter-spacing:-0.496800px;}
.ls57{letter-spacing:-0.450000px;}
.ls44{letter-spacing:-0.441600px;}
.ls46{letter-spacing:-0.405000px;}
.ls48{letter-spacing:-0.360000px;}
.ls37{letter-spacing:-0.331200px;}
.ls26{letter-spacing:-0.330000px;}
.ls4c{letter-spacing:-0.315000px;}
.ls5f{letter-spacing:-0.288000px;}
.ls35{letter-spacing:-0.276000px;}
.ls4d{letter-spacing:-0.273000px;}
.ls53{letter-spacing:-0.270000px;}
.ls5e{letter-spacing:-0.240000px;}
.ls5a{letter-spacing:-0.225000px;}
.ls36{letter-spacing:-0.220800px;}
.ls4e{letter-spacing:-0.195000px;}
.ls3a{letter-spacing:-0.192000px;}
.ls24{letter-spacing:-0.165600px;}
.ls5d{letter-spacing:-0.135000px;}
.ls22{letter-spacing:-0.110400px;}
.ls4f{letter-spacing:-0.090000px;}
.ls1e{letter-spacing:-0.055200px;}
.ls38{letter-spacing:-0.048000px;}
.ls47{letter-spacing:-0.045000px;}
.ls4b{letter-spacing:-0.039000px;}
.ls0{letter-spacing:0.000000px;}
.ls29{letter-spacing:0.027600px;}
.ls2c{letter-spacing:0.048000px;}
.ls7{letter-spacing:0.055200px;}
.ls51{letter-spacing:0.078000px;}
.ls5c{letter-spacing:0.090000px;}
.ls39{letter-spacing:0.096000px;}
.ls6{letter-spacing:0.110400px;}
.ls59{letter-spacing:0.138000px;}
.ls2f{letter-spacing:0.144000px;}
.ls13{letter-spacing:0.165600px;}
.ls2e{letter-spacing:0.168000px;}
.ls41{letter-spacing:0.192000px;}
.ls2b{letter-spacing:0.193200px;}
.lsd{letter-spacing:0.220800px;}
.ls3e{letter-spacing:0.234000px;}
.ls3f{letter-spacing:0.240000px;}
.ls1b{letter-spacing:0.276000px;}
.ls31{letter-spacing:0.288000px;}
.ls40{letter-spacing:0.312000px;}
.ls28{letter-spacing:0.331200px;}
.ls32{letter-spacing:0.336000px;}
.ls3c{letter-spacing:0.358800px;}
.ls43{letter-spacing:0.384000px;}
.lsc{letter-spacing:0.386400px;}
.ls2d{letter-spacing:0.432000px;}
.lsa{letter-spacing:0.441600px;}
.ls5b{letter-spacing:0.450000px;}
.ls3b{letter-spacing:0.469200px;}
.ls30{letter-spacing:0.480000px;}
.ls14{letter-spacing:0.496800px;}
.ls42{letter-spacing:0.528000px;}
.lse{letter-spacing:0.552000px;}
.ls55{letter-spacing:0.576000px;}
.ls1{letter-spacing:0.600000px;}
.ls18{letter-spacing:0.607200px;}
.ls2a{letter-spacing:0.662400px;}
.ls49{letter-spacing:0.672000px;}
.ls4a{letter-spacing:0.690000px;}
.ls1f{letter-spacing:0.714000px;}
.ls5{letter-spacing:0.717600px;}
.ls33{letter-spacing:0.720000px;}
.ls9{letter-spacing:0.772800px;}
.ls11{letter-spacing:0.828000px;}
.ls3d{letter-spacing:0.855600px;}
.lsb{letter-spacing:0.883200px;}
.ls1a{letter-spacing:0.938400px;}
.ls19{letter-spacing:0.993600px;}
.ls54{letter-spacing:1.008000px;}
.ls15{letter-spacing:1.048800px;}
.ls4{letter-spacing:1.104000px;}
.ls58{letter-spacing:1.159200px;}
.ls1d{letter-spacing:1.200000px;}
.ls23{letter-spacing:1.214400px;}
.ls56{letter-spacing:1.296000px;}
.ls3{letter-spacing:1.324800px;}
.ls50{letter-spacing:1.380000px;}
.ls16{letter-spacing:1.490400px;}
.ls12{letter-spacing:1.628400px;}
.lsf{letter-spacing:1.766400px;}
.ls17{letter-spacing:1.876800px;}
.ls10{letter-spacing:2.649600px;}
.ls2{letter-spacing:18.791400px;}
.ls8{letter-spacing:20.116200px;}
.ls34{letter-spacing:99.082800px;}
.ls52{letter-spacing:683.054400px;}
.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;}
}
.ws2{word-spacing:-21.114000px;}
.ws3{word-spacing:-20.400000px;}
.ws4{word-spacing:-18.156000px;}
.ws6e{word-spacing:-14.400000px;}
.ws5{word-spacing:-13.358400px;}
.ws17{word-spacing:-12.806400px;}
.ws76{word-spacing:-12.600000px;}
.ws101{word-spacing:-11.376000px;}
.ws19{word-spacing:-11.040000px;}
.ws75{word-spacing:-10.800000px;}
.ws100{word-spacing:-9.000000px;}
.wse7{word-spacing:-8.775000px;}
.ws78{word-spacing:-4.526400px;}
.ws5a{word-spacing:-3.588000px;}
.wsa4{word-spacing:-3.146400px;}
.wseb{word-spacing:-2.870400px;}
.wsf5{word-spacing:-2.815200px;}
.ws56{word-spacing:-2.760000px;}
.ws30{word-spacing:-2.704800px;}
.ws3c{word-spacing:-2.649600px;}
.wsf2{word-spacing:-2.428800px;}
.ws10d{word-spacing:-2.304000px;}
.wsc{word-spacing:-2.208000px;}
.ws64{word-spacing:-2.160000px;}
.ws108{word-spacing:-2.016000px;}
.ws59{word-spacing:-1.987200px;}
.wsc8{word-spacing:-1.932000px;}
.ws5f{word-spacing:-1.920000px;}
.ws37{word-spacing:-1.821600px;}
.ws63{word-spacing:-1.728000px;}
.wsa3{word-spacing:-1.711200px;}
.wse4{word-spacing:-1.632000px;}
.wsb1{word-spacing:-1.560000px;}
.wsd4{word-spacing:-1.490400px;}
.ws10e{word-spacing:-1.488000px;}
.wsc6{word-spacing:-1.435200px;}
.ws113{word-spacing:-1.392000px;}
.ws1f{word-spacing:-1.380000px;}
.ws22{word-spacing:-1.324800px;}
.ws110{word-spacing:-1.296000px;}
.wsd2{word-spacing:-1.269600px;}
.ws90{word-spacing:-1.200000px;}
.ws10{word-spacing:-1.159200px;}
.wsfb{word-spacing:-1.104000px;}
.ws5e{word-spacing:-0.938400px;}
.ws107{word-spacing:-0.900000px;}
.ws87{word-spacing:-0.883200px;}
.ws60{word-spacing:-0.864000px;}
.wsc9{word-spacing:-0.772800px;}
.wsd3{word-spacing:-0.717600px;}
.ws8f{word-spacing:-0.624000px;}
.ws7c{word-spacing:-0.607200px;}
.wsfc{word-spacing:-0.552000px;}
.ws6d{word-spacing:-0.528000px;}
.ws106{word-spacing:-0.450000px;}
.ws77{word-spacing:-0.441600px;}
.ws6c{word-spacing:-0.384000px;}
.ws99{word-spacing:-0.336000px;}
.ws2f{word-spacing:-0.331200px;}
.wsb2{word-spacing:-0.312000px;}
.ws68{word-spacing:-0.288000px;}
.wsad{word-spacing:-0.220800px;}
.wse5{word-spacing:-0.192000px;}
.wsd9{word-spacing:-0.180000px;}
.wsbb{word-spacing:-0.165600px;}
.ws111{word-spacing:-0.144000px;}
.wsf7{word-spacing:-0.110400px;}
.ws0{word-spacing:0.000000px;}
.wsb3{word-spacing:0.039000px;}
.ws8e{word-spacing:0.045000px;}
.wse2{word-spacing:0.048000px;}
.wscc{word-spacing:0.078000px;}
.wsb4{word-spacing:0.090000px;}
.ws14{word-spacing:0.110400px;}
.wsff{word-spacing:0.180000px;}
.wsdf{word-spacing:0.192000px;}
.ws7f{word-spacing:0.220800px;}
.ws94{word-spacing:0.240000px;}
.ws51{word-spacing:0.331200px;}
.wsd6{word-spacing:0.390000px;}
.wsdb{word-spacing:0.405000px;}
.wsbc{word-spacing:0.441600px;}
.wsd8{word-spacing:0.450000px;}
.wsd5{word-spacing:0.496800px;}
.ws88{word-spacing:0.662400px;}
.ws58{word-spacing:0.717600px;}
.ws9b{word-spacing:0.720000px;}
.ws8d{word-spacing:0.819000px;}
.ws79{word-spacing:0.828000px;}
.ws33{word-spacing:0.883200px;}
.ws61{word-spacing:0.960000px;}
.ws39{word-spacing:0.993600px;}
.ws102{word-spacing:1.080000px;}
.wscb{word-spacing:1.159200px;}
.ws92{word-spacing:1.200000px;}
.wsf3{word-spacing:1.214400px;}
.ws21{word-spacing:1.269600px;}
.ws25{word-spacing:1.324800px;}
.ws6b{word-spacing:1.344000px;}
.wsc5{word-spacing:1.380000px;}
.ws95{word-spacing:1.392000px;}
.wsd7{word-spacing:1.482000px;}
.ws4f{word-spacing:1.490400px;}
.ws96{word-spacing:1.536000px;}
.ws44{word-spacing:1.545600px;}
.wscd{word-spacing:1.560000px;}
.ws66{word-spacing:1.584000px;}
.ws4e{word-spacing:1.600800px;}
.ws67{word-spacing:1.632000px;}
.wsb{word-spacing:1.656000px;}
.wsd{word-spacing:1.711200px;}
.ws83{word-spacing:1.766400px;}
.ws6a{word-spacing:1.776000px;}
.ws82{word-spacing:1.821600px;}
.wse3{word-spacing:1.824000px;}
.wsf4{word-spacing:1.876800px;}
.ws98{word-spacing:1.920000px;}
.wsd1{word-spacing:1.932000px;}
.wsc2{word-spacing:1.987200px;}
.ws36{word-spacing:2.042400px;}
.wse0{word-spacing:2.064000px;}
.ws1d{word-spacing:2.097600px;}
.ws91{word-spacing:2.112000px;}
.ws104{word-spacing:2.115000px;}
.ws62{word-spacing:2.160000px;}
.ws103{word-spacing:2.205000px;}
.ws9{word-spacing:2.208000px;}
.ws8b{word-spacing:2.223000px;}
.wsbe{word-spacing:2.263200px;}
.ws65{word-spacing:2.304000px;}
.ws42{word-spacing:2.373600px;}
.ws8c{word-spacing:2.418000px;}
.wsbf{word-spacing:2.428800px;}
.ws13{word-spacing:2.484000px;}
.wsc1{word-spacing:2.539200px;}
.wsea{word-spacing:2.594400px;}
.ws105{word-spacing:2.610000px;}
.ws97{word-spacing:2.640000px;}
.ws3e{word-spacing:2.649600px;}
.ws3f{word-spacing:2.704800px;}
.ws9a{word-spacing:2.784000px;}
.ws3d{word-spacing:2.815200px;}
.ws2e{word-spacing:2.870400px;}
.ws46{word-spacing:2.980800px;}
.ws48{word-spacing:3.036000px;}
.ws27{word-spacing:3.091200px;}
.ws10b{word-spacing:3.120000px;}
.wsa5{word-spacing:3.146400px;}
.wsae{word-spacing:3.201600px;}
.ws93{word-spacing:3.216000px;}
.ws45{word-spacing:3.256800px;}
.wse1{word-spacing:3.264000px;}
.ws5d{word-spacing:3.367200px;}
.wse6{word-spacing:3.408000px;}
.ws85{word-spacing:3.532800px;}
.ws69{word-spacing:3.552000px;}
.ws7d{word-spacing:3.588000px;}
.ws7a{word-spacing:3.643200px;}
.ws12{word-spacing:3.698400px;}
.wsf1{word-spacing:3.753600px;}
.wsac{word-spacing:3.808800px;}
.wsa7{word-spacing:3.864000px;}
.ws10f{word-spacing:3.888000px;}
.ws32{word-spacing:3.974400px;}
.ws1e{word-spacing:4.029600px;}
.ws112{word-spacing:4.080000px;}
.ws52{word-spacing:4.084800px;}
.wsec{word-spacing:4.140000px;}
.wsab{word-spacing:4.195200px;}
.ws10c{word-spacing:4.224000px;}
.ws38{word-spacing:4.360800px;}
.ws7b{word-spacing:4.416000px;}
.ws43{word-spacing:4.471200px;}
.wsf{word-spacing:4.526400px;}
.ws10a{word-spacing:4.560000px;}
.ws80{word-spacing:4.581600px;}
.wsc4{word-spacing:4.636800px;}
.ws31{word-spacing:4.692000px;}
.ws41{word-spacing:4.747200px;}
.wsca{word-spacing:4.802400px;}
.wsb0{word-spacing:4.857600px;}
.ws7e{word-spacing:4.912800px;}
.ws89{word-spacing:4.968000px;}
.ws116{word-spacing:4.992000px;}
.wsdc{word-spacing:5.040000px;}
.ws86{word-spacing:5.078400px;}
.ws28{word-spacing:5.133600px;}
.ws109{word-spacing:5.136000px;}
.ws5b{word-spacing:5.188800px;}
.wse8{word-spacing:5.299200px;}
.ws115{word-spacing:5.376000px;}
.ws4a{word-spacing:5.409600px;}
.wsfa{word-spacing:5.464800px;}
.ws1b{word-spacing:5.630400px;}
.ws34{word-spacing:5.685600px;}
.ws81{word-spacing:5.740800px;}
.wsa8{word-spacing:5.796000px;}
.wsa6{word-spacing:5.851200px;}
.ws24{word-spacing:5.906400px;}
.wsdd{word-spacing:5.952000px;}
.wse9{word-spacing:6.016800px;}
.wsaa{word-spacing:6.182400px;}
.ws4b{word-spacing:6.237600px;}
.wsa1{word-spacing:6.292800px;}
.wsfd{word-spacing:6.403200px;}
.wsc3{word-spacing:6.458400px;}
.ws1{word-spacing:6.480000px;}
.ws20{word-spacing:6.513600px;}
.wsde{word-spacing:6.528000px;}
.ws8a{word-spacing:6.624000px;}
.ws54{word-spacing:6.679200px;}
.ws57{word-spacing:6.844800px;}
.ws53{word-spacing:6.900000px;}
.ws8{word-spacing:7.010400px;}
.wsa{word-spacing:7.065600px;}
.ws84{word-spacing:7.176000px;}
.wsaf{word-spacing:7.231200px;}
.ws35{word-spacing:7.286400px;}
.ws49{word-spacing:7.341600px;}
.ws23{word-spacing:7.452000px;}
.ws15{word-spacing:7.507200px;}
.ws4c{word-spacing:7.672800px;}
.wse{word-spacing:7.838400px;}
.ws3a{word-spacing:8.059200px;}
.wsee{word-spacing:8.114400px;}
.ws2b{word-spacing:8.169600px;}
.wsed{word-spacing:8.224800px;}
.ws47{word-spacing:8.280000px;}
.ws4d{word-spacing:8.335200px;}
.ws114{word-spacing:8.352000px;}
.ws3b{word-spacing:8.390400px;}
.wsa2{word-spacing:8.445600px;}
.wsc7{word-spacing:8.500800px;}
.ws1a{word-spacing:8.556000px;}
.ws29{word-spacing:8.721600px;}
.wsda{word-spacing:8.730000px;}
.ws5c{word-spacing:8.832000px;}
.ws11{word-spacing:8.887200px;}
.wsc0{word-spacing:8.942400px;}
.ws26{word-spacing:9.494400px;}
.ws2c{word-spacing:9.660000px;}
.ws40{word-spacing:9.715200px;}
.ws55{word-spacing:9.991200px;}
.ws2d{word-spacing:10.046400px;}
.ws2a{word-spacing:10.101600px;}
.wsef{word-spacing:10.156800px;}
.ws50{word-spacing:10.874400px;}
.ws7{word-spacing:11.150400px;}
.wsa9{word-spacing:11.260800px;}
.wsf9{word-spacing:11.481600px;}
.wsf0{word-spacing:11.923200px;}
.wsf8{word-spacing:12.254400px;}
.wsfe{word-spacing:13.082400px;}
.ws6{word-spacing:13.468800px;}
.wsf6{word-spacing:13.524000px;}
.ws16{word-spacing:13.689600px;}
.wsbd{word-spacing:13.800000px;}
.ws1c{word-spacing:16.284000px;}
.ws18{word-spacing:26.440800px;}
.wsd0{word-spacing:53.832000px;}
.wscf{word-spacing:53.832600px;}
.wsb7{word-spacing:54.726000px;}
.wsce{word-spacing:55.397400px;}
.wsb5{word-spacing:55.714800px;}
.wsb8{word-spacing:55.944600px;}
.wsb9{word-spacing:57.619200px;}
.wsb6{word-spacing:58.149600px;}
.wsba{word-spacing:59.124000px;}
.ws9d{word-spacing:77.341200px;}
.ws9c{word-spacing:78.585600px;}
.ws9e{word-spacing:79.321200px;}
.ws9f{word-spacing:93.972600px;}
.wsa0{word-spacing:98.806800px;}
.ws74{word-spacing:99.981000px;}
.ws71{word-spacing:101.758200px;}
.ws72{word-spacing:101.812200px;}
.ws6f{word-spacing:103.619400px;}
.ws73{word-spacing:104.193000px;}
.ws70{word-spacing:106.032600px;}
._29{margin-left:-2194.791120px;}
._32{margin-left:-1584.528120px;}
._17{margin-left:-966.316200px;}
._1d{margin-left:-964.341600px;}
._22{margin-left:-830.319600px;}
._33{margin-left:-697.836000px;}
._3a{margin-left:-689.812800px;}
._2c{margin-left:-688.698600px;}
._37{margin-left:-681.194400px;}
._21{margin-left:-603.478200px;}
._1b{margin-left:-177.484800px;}
._20{margin-left:-175.713000px;}
._27{margin-left:-153.747600px;}
._30{margin-left:-130.413600px;}
._6{margin-left:-53.064000px;}
._e{margin-left:-40.130400px;}
._b{margin-left:-24.851400px;}
._7{margin-left:-23.791200px;}
._14{margin-left:-14.967000px;}
._9{margin-left:-12.979800px;}
._15{margin-left:-11.000400px;}
._16{margin-left:-8.539320px;}
._a{margin-left:-7.474920px;}
._12{margin-left:-5.395320px;}
._10{margin-left:-4.311120px;}
._8{margin-left:-2.792280px;}
._4{margin-left:-1.593000px;}
._13{width:1.005600px;}
._5{width:2.025000px;}
._0{width:4.104000px;}
._2{width:5.832000px;}
._3{width:7.641000px;}
._f{width:9.582720px;}
._11{width:11.363400px;}
._1{width:26.217000px;}
._d{width:38.030520px;}
._c{width:39.084840px;}
._3b{width:64.353600px;}
._38{width:65.979600px;}
._34{width:67.857600px;}
._39{width:69.843600px;}
._2d{width:77.170800px;}
._35{width:79.243800px;}
._23{width:88.785600px;}
._3d{width:93.015000px;}
._24{width:101.796600px;}
._2a{width:111.059400px;}
._18{width:122.646000px;}
._1e{width:125.212800px;}
._2f{width:192.372000px;}
._31{width:195.118800px;}
._36{width:196.124400px;}
._2e{width:197.238600px;}
._3c{width:198.348600px;}
._26{width:238.771200px;}
._28{width:241.981800px;}
._25{width:244.716600px;}
._2b{width:282.298200px;}
._1f{width:283.711200px;}
._1c{width:285.439200px;}
._19{width:286.494000px;}
._1a{width:290.353200px;}
.fc6{color:rgb(48,88,159);}
.fc4{color:transparent;}
.fc1{color:rgb(23,62,125);}
.fc5{color:rgb(255,255,255);}
.fc3{color:rgb(35,31,32);}
.fc2{color:rgb(57,53,54);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:12.000000px;}
.fsc{font-size:39.000000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:45.000000px;}
.fsb{font-size:48.000000px;}
.fsa{font-size:54.000000px;}
.fs7{font-size:55.200000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:168.000000px;}
.fs5{font-size:270.000000px;}
.y0{bottom:0.000000px;}
.ybf{bottom:34.015800px;}
.y6{bottom:35.925007px;}
.y5{bottom:66.525004px;}
.y27{bottom:73.795200px;}
.y1b1{bottom:75.007350px;}
.y9f{bottom:75.295200px;}
.y5a{bottom:75.295350px;}
.y1b0{bottom:88.507350px;}
.y103{bottom:91.960050px;}
.ybd{bottom:92.480250px;}
.y4{bottom:97.125005px;}
.y9e{bottom:97.795200px;}
.y59{bottom:97.795350px;}
.y115{bottom:97.984200px;}
.y14b{bottom:98.362200px;}
.y1af{bottom:102.007350px;}
.y102{bottom:107.260050px;}
.ybc{bottom:107.780250px;}
.y164{bottom:112.795200px;}
.y1ab{bottom:112.795350px;}
.y114{bottom:112.984200px;}
.y14a{bottom:113.362200px;}
.y1ae{bottom:115.507350px;}
.y1aa{bottom:117.047250px;}
.y9d{bottom:120.295200px;}
.y58{bottom:120.295350px;}
.y101{bottom:122.560050px;}
.ybb{bottom:123.080250px;}
.y163{bottom:124.795200px;}
.y113{bottom:124.984200px;}
.y149{bottom:125.362200px;}
.y1ad{bottom:129.007350px;}
.y1a9{bottom:132.047250px;}
.y100{bottom:137.860050px;}
.yba{bottom:138.380250px;}
.y23{bottom:139.264499px;}
.y162{bottom:139.795200px;}
.y112{bottom:139.984200px;}
.y148{bottom:140.362200px;}
.y1ac{bottom:142.507350px;}
.y9c{bottom:142.795200px;}
.y57{bottom:142.795350px;}
.y1a8{bottom:147.047250px;}
.yff{bottom:153.160050px;}
.yb9{bottom:153.680250px;}
.y161{bottom:154.795200px;}
.y111{bottom:154.984200px;}
.y147{bottom:155.362200px;}
.y1a7{bottom:162.047250px;}
.y9b{bottom:165.295200px;}
.y56{bottom:165.295350px;}
.y160{bottom:166.795200px;}
.y110{bottom:166.984200px;}
.y146{bottom:167.362200px;}
.yb8{bottom:168.980250px;}
.yfe{bottom:171.835050px;}
.y15f{bottom:178.795200px;}
.y10f{bottom:178.984200px;}
.y1a6{bottom:181.299300px;}
.yb7{bottom:184.280250px;}
.yfd{bottom:187.135050px;}
.y9a{bottom:187.795200px;}
.y55{bottom:187.795350px;}
.y151{bottom:194.331900px;}
.y1a{bottom:196.933500px;}
.yb6{bottom:199.580250px;}
.y15e{bottom:201.363900px;}
.yfc{bottom:202.435050px;}
.y120{bottom:206.428200px;}
.y183{bottom:206.517750px;}
.y18a{bottom:206.517900px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y99{bottom:210.295200px;}
.y54{bottom:210.295350px;}
.y15b{bottom:210.645150px;}
.y44{bottom:213.776100px;}
.yfb{bottom:217.735050px;}
.yb5{bottom:218.255250px;}
.y126{bottom:220.894650px;}
.y11f{bottom:221.477400px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y189{bottom:222.994050px;}
.y182{bottom:222.994200px;}
.y150{bottom:223.015800px;}
.y159{bottom:223.033500px;}
.y43{bottom:231.776100px;}
.y11a{bottom:232.157550px;}
.y98{bottom:232.795200px;}
.y53{bottom:232.795350px;}
.yfa{bottom:233.035050px;}
.yb4{bottom:233.555250px;}
.y12c{bottom:233.712150px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y17d{bottom:238.837200px;}
.y187{bottom:238.837350px;}
.yf9{bottom:248.335050px;}
.yb3{bottom:248.855250px;}
.y42{bottom:249.776100px;}
.y12d{bottom:254.963400px;}
.y97{bottom:255.295200px;}
.y5b{bottom:255.295350px;}
.y155{bottom:259.495950px;}
.y15d{bottom:259.565250px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.yf8{bottom:263.635050px;}
.yb2{bottom:264.155250px;}
.y184{bottom:265.589100px;}
.y41{bottom:267.776100px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.y11b{bottom:274.971150px;}
.y122{bottom:276.214800px;}
.y96{bottom:277.795200px;}
.y52{bottom:277.795350px;}
.yf7{bottom:278.935050px;}
.yb1{bottom:279.455250px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y40{bottom:285.776100px;}
.y17e{bottom:292.164000px;}
.yf6{bottom:294.235050px;}
.y15a{bottom:294.457500px;}
.y153{bottom:295.790700px;}
.y128{bottom:297.466200px;}
.yb0{bottom:298.130250px;}
.y95{bottom:300.295200px;}
.y51{bottom:300.295350px;}
.y3f{bottom:303.776100px;}
.yf5{bottom:309.535050px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.yaf{bottom:313.430250px;}
.y17c{bottom:316.891800px;}
.y119{bottom:317.784750px;}
.y127{bottom:318.717450px;}
.y3e{bottom:321.776100px;}
.y94{bottom:322.795200px;}
.y50{bottom:322.795350px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.yf4{bottom:324.835050px;}
.yae{bottom:328.730250px;}
.y15c{bottom:330.250800px;}
.y154{bottom:331.361550px;}
.y3d{bottom:339.776100px;}
.y129{bottom:339.968850px;}
.yf3{bottom:340.135050px;}
.y17f{bottom:341.553150px;}
.y188{bottom:341.553450px;}
.yad{bottom:344.030250px;}
.y93{bottom:345.295200px;}
.y4f{bottom:345.295350px;}
.y11{bottom:348.133500px;}
.yf2{bottom:355.435050px;}
.y3c{bottom:356.276100px;}
.y11c{bottom:360.598350px;}
.y123{bottom:361.220100px;}
.yac{bottom:362.705250px;}
.y158{bottom:365.755050px;}
.y181{bottom:366.639900px;}
.y92{bottom:367.795200px;}
.y4e{bottom:367.795350px;}
.y152{bottom:368.101650px;}
.yf1{bottom:370.735050px;}
.yab{bottom:378.005250px;}
.y121{bottom:382.471500px;}
.y3b{bottom:383.429550px;}
.yf0{bottom:386.035050px;}
.y10{bottom:386.785499px;}
.y157{bottom:388.199850px;}
.y91{bottom:390.295200px;}
.y4d{bottom:390.295350px;}
.y180{bottom:391.726500px;}
.yaa{bottom:393.305250px;}
.y156{bottom:396.971400px;}
.y3a{bottom:401.429550px;}
.y11e{bottom:403.411800px;}
.y124{bottom:403.722750px;}
.yef{bottom:404.710050px;}
.y186{bottom:406.801050px;}
.yf{bottom:408.044999px;}
.ya9{bottom:408.605250px;}
.y90{bottom:412.795200px;}
.y4c{bottom:412.795350px;}
.y39{bottom:419.429550px;}
.yee{bottom:420.010050px;}
.y185{bottom:420.301050px;}
.ya8{bottom:423.905250px;}
.y14e{bottom:424.608900px;}
.y125{bottom:424.974000px;}
.y8f{bottom:435.295200px;}
.y4b{bottom:435.295350px;}
.yed{bottom:435.310050px;}
.y38{bottom:437.429550px;}
.ya7{bottom:439.205250px;}
.y14d{bottom:445.386900px;}
.y11d{bottom:446.225400px;}
.y37{bottom:455.429550px;}
.y17a{bottom:457.505850px;}
.y8e{bottom:457.795200px;}
.y4a{bottom:457.795350px;}
.ya6{bottom:457.880250px;}
.yec{bottom:459.114000px;}
.y170{bottom:459.631800px;}
.y14c{bottom:463.386900px;}
.y12a{bottom:467.924250px;}
.y36{bottom:471.929550px;}
.ya5{bottom:473.180250px;}
.y179{bottom:475.045050px;}
.y16f{bottom:477.013950px;}
.y8d{bottom:480.295200px;}
.y49{bottom:480.295350px;}
.y104{bottom:482.819400px;}
.ye{bottom:484.864502px;}
.y14f{bottom:488.262900px;}
.ya4{bottom:488.480250px;}
.y174{bottom:491.950950px;}
.y16a{bottom:491.951250px;}
.y35{bottom:499.083150px;}
.y12b{bottom:500.797800px;}
.y117{bottom:502.136550px;}
.y8c{bottom:502.795200px;}
.y48{bottom:502.795350px;}
.yd{bottom:502.864502px;}
.ya3{bottom:503.780250px;}
.y34{bottom:517.083150px;}
.y17b{bottom:517.640100px;}
.y171{bottom:518.703150px;}
.ya2{bottom:519.080250px;}
.yc{bottom:520.864502px;}
.y116{bottom:522.914400px;}
.y8b{bottom:525.295200px;}
.y47{bottom:525.295350px;}
.ya1{bottom:534.380250px;}
.y33{bottom:535.083150px;}
.yce{bottom:537.153600px;}
.yb{bottom:538.864499px;}
.y175{bottom:544.214850px;}
.y16b{bottom:545.278050px;}
.y118{bottom:547.790400px;}
.y8a{bottom:547.795200px;}
.y46{bottom:547.795350px;}
.ycd{bottom:552.153600px;}
.y32{bottom:553.083150px;}
.ya{bottom:556.864499px;}
.ya0{bottom:558.184200px;}
.ycc{bottom:567.153600px;}
.y173{bottom:568.942950px;}
.y31{bottom:569.583150px;}
.y169{bottom:570.005850px;}
.y89{bottom:570.295200px;}
.yc8{bottom:570.295350px;}
.y1d4{bottom:575.024100px;}
.ycb{bottom:579.153600px;}
.ybe{bottom:581.889750px;}
.y1d3{bottom:590.774100px;}
.yca{bottom:591.153600px;}
.y134{bottom:592.759800px;}
.y88{bottom:592.795200px;}
.yc7{bottom:592.795350px;}
.y176{bottom:593.604300px;}
.y16c{bottom:594.667200px;}
.y30{bottom:596.736750px;}
.yc9{bottom:603.153600px;}
.y1d2{bottom:606.524100px;}
.y133{bottom:607.759800px;}
.y2f{bottom:614.736750px;}
.y87{bottom:615.295200px;}
.yc6{bottom:615.295350px;}
.y178{bottom:618.690900px;}
.y16e{bottom:619.753800px;}
.y132{bottom:619.759800px;}
.y1d1{bottom:626.526150px;}
.y2e{bottom:632.736750px;}
.yea{bottom:632.803650px;}
.y131{bottom:634.759800px;}
.y86{bottom:637.795200px;}
.y78{bottom:637.795350px;}
.y1d0{bottom:642.276150px;}
.y177{bottom:643.777350px;}
.y16d{bottom:644.840550px;}
.y9{bottom:645.510000px;}
.y130{bottom:646.759800px;}
.ye9{bottom:648.178350px;}
.y2d{bottom:650.736750px;}
.y1cf{bottom:658.026150px;}
.y172{bottom:659.474250px;}
.y85{bottom:660.295200px;}
.y77{bottom:660.295350px;}
.ye7{bottom:660.974850px;}
.y12f{bottom:661.759800px;}
.y60{bottom:664.356450px;}
.y8{bottom:666.771000px;}
.y2c{bottom:668.736750px;}
.y12e{bottom:673.759800px;}
.y1ce{bottom:673.776150px;}
.ye8{bottom:677.064750px;}
.y84{bottom:682.795200px;}
.y76{bottom:682.795350px;}
.y2b{bottom:686.736750px;}
.ye5{bottom:693.154500px;}
.y1cd{bottom:693.778050px;}
.y13c{bottom:700.082100px;}
.y18b{bottom:700.957650px;}
.y167{bottom:701.425050px;}
.y2a{bottom:704.736600px;}
.y83{bottom:705.295200px;}
.y75{bottom:705.295350px;}
.y5f{bottom:705.416400px;}
.ye6{bottom:709.244550px;}
.y1cc{bottom:709.528050px;}
.y13b{bottom:715.495650px;}
.y166{bottom:722.202900px;}
.y29{bottom:722.736600px;}
.y136{bottom:724.960500px;}
.y1cb{bottom:725.278050px;}
.ye0{bottom:725.334300px;}
.y7{bottom:726.298500px;}
.y82{bottom:727.795200px;}
.y74{bottom:727.795350px;}
.y28{bottom:739.236600px;}
.y165{bottom:740.202900px;}
.ye1{bottom:741.424200px;}
.y1ca{bottom:745.280100px;}
.y81{bottom:750.295200px;}
.y73{bottom:750.295350px;}
.y5e{bottom:751.916400px;}
.y3{bottom:752.599495px;}
.ydf{bottom:757.513950px;}
.y1c9{bottom:761.030100px;}
.y137{bottom:761.469150px;}
.y168{bottom:765.078900px;}
.y80{bottom:772.795200px;}
.y72{bottom:772.795350px;}
.ye2{bottom:773.603550px;}
.y1c8{bottom:776.780100px;}
.y145{bottom:784.045200px;}
.ye4{bottom:789.693450px;}
.y7f{bottom:795.295200px;}
.y71{bottom:795.295350px;}
.y1c7{bottom:796.782000px;}
.y135{bottom:797.977500px;}
.y5d{bottom:798.416250px;}
.ye3{bottom:805.783500px;}
.y144{bottom:806.545200px;}
.y1c6{bottom:812.532000px;}
.y7e{bottom:817.795200px;}
.y70{bottom:817.795350px;}
.yeb{bottom:820.629900px;}
.y1c5{bottom:828.282000px;}
.y143{bottom:829.045200px;}
.y138{bottom:834.486000px;}
.y19f{bottom:835.852650px;}
.y10e{bottom:840.295200px;}
.y6f{bottom:840.295350px;}
.y1c4{bottom:848.284050px;}
.y19e{bottom:851.302650px;}
.y7d{bottom:851.545200px;}
.y26{bottom:853.419300px;}
.y5c{bottom:853.420200px;}
.ydd{bottom:860.704650px;}
.y10d{bottom:862.795200px;}
.y6e{bottom:862.795350px;}
.y1c3{bottom:864.034050px;}
.y19d{bottom:866.752650px;}
.y13a{bottom:870.994650px;}
.y7c{bottom:874.045200px;}
.ydc{bottom:876.477000px;}
.y2{bottom:879.369000px;}
.y1c2{bottom:879.784050px;}
.y19c{bottom:882.202650px;}
.y10c{bottom:885.295200px;}
.y6d{bottom:885.295350px;}
.yda{bottom:890.310900px;}
.y1c1{bottom:895.534050px;}
.y7b{bottom:896.545200px;}
.y19b{bottom:897.652650px;}
.y139{bottom:907.503300px;}
.y10b{bottom:907.795200px;}
.y6c{bottom:907.795350px;}
.ydb{bottom:910.944900px;}
.y19a{bottom:913.102650px;}
.y1c0{bottom:915.535950px;}
.y142{bottom:923.833050px;}
.y199{bottom:928.552650px;}
.y10a{bottom:930.295200px;}
.y6b{bottom:930.295350px;}
.y1bf{bottom:931.285950px;}
.yd5{bottom:931.578600px;}
.y140{bottom:933.745950px;}
.y198{bottom:944.002650px;}
.y1be{bottom:947.035950px;}
.y13f{bottom:948.145800px;}
.yd6{bottom:952.212450px;}
.y7a{bottom:952.795200px;}
.y6a{bottom:952.795350px;}
.y197{bottom:959.452650px;}
.y1bd{bottom:962.785950px;}
.y25{bottom:962.899650px;}
.y45{bottom:964.384800px;}
.y1{bottom:966.726000px;}
.y13e{bottom:968.923800px;}
.yd4{bottom:972.846000px;}
.y196{bottom:974.902650px;}
.y79{bottom:975.295200px;}
.y69{bottom:975.295350px;}
.y1bc{bottom:982.788000px;}
.y13d{bottom:986.923800px;}
.y195{bottom:990.352650px;}
.yd7{bottom:993.479700px;}
.y24{bottom:994.606350px;}
.y68{bottom:997.795200px;}
.y1a4{bottom:997.795350px;}
.y1bb{bottom:998.538000px;}
.y194{bottom:1005.802650px;}
.yc5{bottom:1009.045350px;}
.y141{bottom:1011.799650px;}
.yd9{bottom:1014.113550px;}
.y1ba{bottom:1014.288000px;}
.y67{bottom:1020.295200px;}
.y1a3{bottom:1020.295350px;}
.y193{bottom:1021.252650px;}
.y1b9{bottom:1030.038000px;}
.yc4{bottom:1031.545350px;}
.yd8{bottom:1034.747550px;}
.y192{bottom:1036.702650px;}
.y66{bottom:1042.795200px;}
.y1a2{bottom:1042.795350px;}
.y1b8{bottom:1050.039900px;}
.yde{bottom:1050.435300px;}
.y191{bottom:1052.152650px;}
.yc3{bottom:1054.045350px;}
.y65{bottom:1065.295200px;}
.y1a1{bottom:1065.295350px;}
.y109{bottom:1065.295500px;}
.y1b7{bottom:1065.789900px;}
.y190{bottom:1067.602650px;}
.y1b6{bottom:1081.539900px;}
.y18f{bottom:1083.052650px;}
.yd2{bottom:1083.558150px;}
.y64{bottom:1087.795200px;}
.y1a0{bottom:1087.795350px;}
.y108{bottom:1087.795500px;}
.yd1{bottom:1097.958000px;}
.y18e{bottom:1098.502650px;}
.y1b5{bottom:1101.541950px;}
.y63{bottom:1110.295200px;}
.yc2{bottom:1110.295350px;}
.y107{bottom:1110.295500px;}
.y18d{bottom:1113.952650px;}
.y1b4{bottom:1117.291950px;}
.yd0{bottom:1118.736000px;}
.y62{bottom:1132.795200px;}
.yc1{bottom:1132.795350px;}
.y106{bottom:1132.795500px;}
.y1b3{bottom:1133.041950px;}
.ycf{bottom:1136.736000px;}
.y18c{bottom:1137.906600px;}
.y1a5{bottom:1154.145750px;}
.y61{bottom:1155.295200px;}
.yc0{bottom:1155.295350px;}
.y105{bottom:1155.295500px;}
.y1b2{bottom:1157.295750px;}
.yd3{bottom:1161.611850px;}
.h19{height:29.250000px;}
.h7{height:32.130000px;}
.h1c{height:33.030000px;}
.h1b{height:33.750000px;}
.h1a{height:36.000000px;}
.h17{height:36.018000px;}
.h16{height:38.304000px;}
.h15{height:39.636000px;}
.h1e{height:40.032000px;}
.h1d{height:40.516800px;}
.hd{height:44.049600px;}
.ha{height:45.000000px;}
.h6{height:45.900000px;}
.h10{height:46.036800px;}
.hf{height:47.140800px;}
.h3{height:48.195000px;}
.h11{height:48.444000px;}
.h13{height:49.500000px;}
.hc{height:50.049600px;}
.h18{height:50.274000px;}
.h14{height:54.000000px;}
.h2{height:55.080000px;}
.h5{height:78.030000px;}
.he{height:88.500000px;}
.h4{height:119.055004px;}
.h12{height:134.064000px;}
.h9{height:215.460000px;}
.hb{height:803.610300px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w4{width:247.347600px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:18.965100px;}
.x9{left:26.691900px;}
.x19{left:42.519600px;}
.x2c{left:50.063400px;}
.x2d{left:55.463400px;}
.x17{left:59.310300px;}
.x16{left:60.840300px;}
.x32{left:62.163000px;}
.x5{left:69.732300px;}
.x37{left:72.093000px;}
.x8{left:75.035400px;}
.x6{left:76.535400px;}
.x52{left:78.940650px;}
.x3f{left:84.163800px;}
.x56{left:85.757100px;}
.x1a{left:89.023650px;}
.x55{left:93.492000px;}
.x7{left:95.669250px;}
.x54{left:98.357400px;}
.x51{left:100.708200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x41{left:108.793350px;}
.x53{left:130.520700px;}
.x2f{left:138.646650px;}
.x34{left:156.202650px;}
.x12{left:182.748750px;}
.x10{left:183.936750px;}
.x49{left:185.598900px;}
.x42{left:188.592600px;}
.x48{left:190.927050px;}
.x11{left:196.424550px;}
.x4{left:203.484001px;}
.x44{left:223.450050px;}
.x4b{left:224.711400px;}
.x40{left:262.049850px;}
.x5a{left:286.201200px;}
.x2e{left:290.695950px;}
.x5b{left:297.867000px;}
.x5d{left:304.796400px;}
.x33{left:311.147700px;}
.x59{left:316.108350px;}
.xc{left:322.481850px;}
.xd{left:323.725650px;}
.x5c{left:325.074600px;}
.x36{left:365.760600px;}
.x43{left:367.227300px;}
.x4a{left:369.876600px;}
.x3d{left:400.223550px;}
.x39{left:401.396400px;}
.x38{left:402.699600px;}
.x1b{left:403.936950px;}
.x3b{left:408.844200px;}
.x1d{left:414.809100px;}
.x21{left:416.022900px;}
.x23{left:420.707250px;}
.x22{left:433.996050px;}
.x20{left:438.331800px;}
.x3c{left:440.680350px;}
.x28{left:442.055400px;}
.x27{left:447.661950px;}
.x35{left:450.655200px;}
.x29{left:452.525700px;}
.x3{left:454.959000px;}
.x18{left:456.116100px;}
.x2a{left:460.907100px;}
.x30{left:475.075050px;}
.x58{left:495.942300px;}
.x14{left:509.512650px;}
.x13{left:510.704250px;}
.x4d{left:513.362550px;}
.x1f{left:517.152900px;}
.x4c{left:518.752200px;}
.x15{left:523.609500px;}
.x4f{left:526.765200px;}
.x4e{left:527.906400px;}
.x47{left:532.559100px;}
.x57{left:535.473450px;}
.x46{left:554.038650px;}
.xe{left:591.054150px;}
.x3e{left:593.399550px;}
.xf{left:603.810150px;}
.x3a{left:670.971450px;}
.x1e{left:673.244100px;}
.x2b{left:676.524450px;}
.x45{left:698.152350px;}
.x31{left:710.716500px;}
.x61{left:721.179750px;}
.x5f{left:725.713500px;}
.x60{left:733.233900px;}
.x62{left:734.251800px;}
.x5e{left:753.759150px;}
.xb{left:755.157600px;}
.x26{left:777.832650px;}
.x50{left:782.879700px;}
.x1c{left:811.848450px;}
.x24{left:816.533700px;}
.x25{left:842.849700px;}
@media print{
.v3{vertical-align:-39.975467pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:10.666667pt;}
.ls1c{letter-spacing:-6.000000pt;}
.ls20{letter-spacing:-1.994667pt;}
.ls27{letter-spacing:-0.746667pt;}
.ls21{letter-spacing:-0.490667pt;}
.ls45{letter-spacing:-0.480000pt;}
.ls25{letter-spacing:-0.441600pt;}
.ls57{letter-spacing:-0.400000pt;}
.ls44{letter-spacing:-0.392533pt;}
.ls46{letter-spacing:-0.360000pt;}
.ls48{letter-spacing:-0.320000pt;}
.ls37{letter-spacing:-0.294400pt;}
.ls26{letter-spacing:-0.293333pt;}
.ls4c{letter-spacing:-0.280000pt;}
.ls5f{letter-spacing:-0.256000pt;}
.ls35{letter-spacing:-0.245333pt;}
.ls4d{letter-spacing:-0.242667pt;}
.ls53{letter-spacing:-0.240000pt;}
.ls5e{letter-spacing:-0.213333pt;}
.ls5a{letter-spacing:-0.200000pt;}
.ls36{letter-spacing:-0.196267pt;}
.ls4e{letter-spacing:-0.173333pt;}
.ls3a{letter-spacing:-0.170667pt;}
.ls24{letter-spacing:-0.147200pt;}
.ls5d{letter-spacing:-0.120000pt;}
.ls22{letter-spacing:-0.098133pt;}
.ls4f{letter-spacing:-0.080000pt;}
.ls1e{letter-spacing:-0.049067pt;}
.ls38{letter-spacing:-0.042667pt;}
.ls47{letter-spacing:-0.040000pt;}
.ls4b{letter-spacing:-0.034667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls29{letter-spacing:0.024533pt;}
.ls2c{letter-spacing:0.042667pt;}
.ls7{letter-spacing:0.049067pt;}
.ls51{letter-spacing:0.069333pt;}
.ls5c{letter-spacing:0.080000pt;}
.ls39{letter-spacing:0.085333pt;}
.ls6{letter-spacing:0.098133pt;}
.ls59{letter-spacing:0.122667pt;}
.ls2f{letter-spacing:0.128000pt;}
.ls13{letter-spacing:0.147200pt;}
.ls2e{letter-spacing:0.149333pt;}
.ls41{letter-spacing:0.170667pt;}
.ls2b{letter-spacing:0.171733pt;}
.lsd{letter-spacing:0.196267pt;}
.ls3e{letter-spacing:0.208000pt;}
.ls3f{letter-spacing:0.213333pt;}
.ls1b{letter-spacing:0.245333pt;}
.ls31{letter-spacing:0.256000pt;}
.ls40{letter-spacing:0.277333pt;}
.ls28{letter-spacing:0.294400pt;}
.ls32{letter-spacing:0.298667pt;}
.ls3c{letter-spacing:0.318933pt;}
.ls43{letter-spacing:0.341333pt;}
.lsc{letter-spacing:0.343467pt;}
.ls2d{letter-spacing:0.384000pt;}
.lsa{letter-spacing:0.392533pt;}
.ls5b{letter-spacing:0.400000pt;}
.ls3b{letter-spacing:0.417067pt;}
.ls30{letter-spacing:0.426667pt;}
.ls14{letter-spacing:0.441600pt;}
.ls42{letter-spacing:0.469333pt;}
.lse{letter-spacing:0.490667pt;}
.ls55{letter-spacing:0.512000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls18{letter-spacing:0.539733pt;}
.ls2a{letter-spacing:0.588800pt;}
.ls49{letter-spacing:0.597333pt;}
.ls4a{letter-spacing:0.613333pt;}
.ls1f{letter-spacing:0.634667pt;}
.ls5{letter-spacing:0.637867pt;}
.ls33{letter-spacing:0.640000pt;}
.ls9{letter-spacing:0.686933pt;}
.ls11{letter-spacing:0.736000pt;}
.ls3d{letter-spacing:0.760533pt;}
.lsb{letter-spacing:0.785067pt;}
.ls1a{letter-spacing:0.834133pt;}
.ls19{letter-spacing:0.883200pt;}
.ls54{letter-spacing:0.896000pt;}
.ls15{letter-spacing:0.932267pt;}
.ls4{letter-spacing:0.981333pt;}
.ls58{letter-spacing:1.030400pt;}
.ls1d{letter-spacing:1.066667pt;}
.ls23{letter-spacing:1.079467pt;}
.ls56{letter-spacing:1.152000pt;}
.ls3{letter-spacing:1.177600pt;}
.ls50{letter-spacing:1.226667pt;}
.ls16{letter-spacing:1.324800pt;}
.ls12{letter-spacing:1.447467pt;}
.lsf{letter-spacing:1.570133pt;}
.ls17{letter-spacing:1.668267pt;}
.ls10{letter-spacing:2.355200pt;}
.ls2{letter-spacing:16.703467pt;}
.ls8{letter-spacing:17.881067pt;}
.ls34{letter-spacing:88.073600pt;}
.ls52{letter-spacing:607.159467pt;}
.ws2{word-spacing:-18.768000pt;}
.ws3{word-spacing:-18.133333pt;}
.ws4{word-spacing:-16.138667pt;}
.ws6e{word-spacing:-12.800000pt;}
.ws5{word-spacing:-11.874133pt;}
.ws17{word-spacing:-11.383467pt;}
.ws76{word-spacing:-11.200000pt;}
.ws101{word-spacing:-10.112000pt;}
.ws19{word-spacing:-9.813333pt;}
.ws75{word-spacing:-9.600000pt;}
.ws100{word-spacing:-8.000000pt;}
.wse7{word-spacing:-7.800000pt;}
.ws78{word-spacing:-4.023467pt;}
.ws5a{word-spacing:-3.189333pt;}
.wsa4{word-spacing:-2.796800pt;}
.wseb{word-spacing:-2.551467pt;}
.wsf5{word-spacing:-2.502400pt;}
.ws56{word-spacing:-2.453333pt;}
.ws30{word-spacing:-2.404267pt;}
.ws3c{word-spacing:-2.355200pt;}
.wsf2{word-spacing:-2.158933pt;}
.ws10d{word-spacing:-2.048000pt;}
.wsc{word-spacing:-1.962667pt;}
.ws64{word-spacing:-1.920000pt;}
.ws108{word-spacing:-1.792000pt;}
.ws59{word-spacing:-1.766400pt;}
.wsc8{word-spacing:-1.717333pt;}
.ws5f{word-spacing:-1.706667pt;}
.ws37{word-spacing:-1.619200pt;}
.ws63{word-spacing:-1.536000pt;}
.wsa3{word-spacing:-1.521067pt;}
.wse4{word-spacing:-1.450667pt;}
.wsb1{word-spacing:-1.386667pt;}
.wsd4{word-spacing:-1.324800pt;}
.ws10e{word-spacing:-1.322667pt;}
.wsc6{word-spacing:-1.275733pt;}
.ws113{word-spacing:-1.237333pt;}
.ws1f{word-spacing:-1.226667pt;}
.ws22{word-spacing:-1.177600pt;}
.ws110{word-spacing:-1.152000pt;}
.wsd2{word-spacing:-1.128533pt;}
.ws90{word-spacing:-1.066667pt;}
.ws10{word-spacing:-1.030400pt;}
.wsfb{word-spacing:-0.981333pt;}
.ws5e{word-spacing:-0.834133pt;}
.ws107{word-spacing:-0.800000pt;}
.ws87{word-spacing:-0.785067pt;}
.ws60{word-spacing:-0.768000pt;}
.wsc9{word-spacing:-0.686933pt;}
.wsd3{word-spacing:-0.637867pt;}
.ws8f{word-spacing:-0.554667pt;}
.ws7c{word-spacing:-0.539733pt;}
.wsfc{word-spacing:-0.490667pt;}
.ws6d{word-spacing:-0.469333pt;}
.ws106{word-spacing:-0.400000pt;}
.ws77{word-spacing:-0.392533pt;}
.ws6c{word-spacing:-0.341333pt;}
.ws99{word-spacing:-0.298667pt;}
.ws2f{word-spacing:-0.294400pt;}
.wsb2{word-spacing:-0.277333pt;}
.ws68{word-spacing:-0.256000pt;}
.wsad{word-spacing:-0.196267pt;}
.wse5{word-spacing:-0.170667pt;}
.wsd9{word-spacing:-0.160000pt;}
.wsbb{word-spacing:-0.147200pt;}
.ws111{word-spacing:-0.128000pt;}
.wsf7{word-spacing:-0.098133pt;}
.ws0{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.034667pt;}
.ws8e{word-spacing:0.040000pt;}
.wse2{word-spacing:0.042667pt;}
.wscc{word-spacing:0.069333pt;}
.wsb4{word-spacing:0.080000pt;}
.ws14{word-spacing:0.098133pt;}
.wsff{word-spacing:0.160000pt;}
.wsdf{word-spacing:0.170667pt;}
.ws7f{word-spacing:0.196267pt;}
.ws94{word-spacing:0.213333pt;}
.ws51{word-spacing:0.294400pt;}
.wsd6{word-spacing:0.346667pt;}
.wsdb{word-spacing:0.360000pt;}
.wsbc{word-spacing:0.392533pt;}
.wsd8{word-spacing:0.400000pt;}
.wsd5{word-spacing:0.441600pt;}
.ws88{word-spacing:0.588800pt;}
.ws58{word-spacing:0.637867pt;}
.ws9b{word-spacing:0.640000pt;}
.ws8d{word-spacing:0.728000pt;}
.ws79{word-spacing:0.736000pt;}
.ws33{word-spacing:0.785067pt;}
.ws61{word-spacing:0.853333pt;}
.ws39{word-spacing:0.883200pt;}
.ws102{word-spacing:0.960000pt;}
.wscb{word-spacing:1.030400pt;}
.ws92{word-spacing:1.066667pt;}
.wsf3{word-spacing:1.079467pt;}
.ws21{word-spacing:1.128533pt;}
.ws25{word-spacing:1.177600pt;}
.ws6b{word-spacing:1.194667pt;}
.wsc5{word-spacing:1.226667pt;}
.ws95{word-spacing:1.237333pt;}
.wsd7{word-spacing:1.317333pt;}
.ws4f{word-spacing:1.324800pt;}
.ws96{word-spacing:1.365333pt;}
.ws44{word-spacing:1.373867pt;}
.wscd{word-spacing:1.386667pt;}
.ws66{word-spacing:1.408000pt;}
.ws4e{word-spacing:1.422933pt;}
.ws67{word-spacing:1.450667pt;}
.wsb{word-spacing:1.472000pt;}
.wsd{word-spacing:1.521067pt;}
.ws83{word-spacing:1.570133pt;}
.ws6a{word-spacing:1.578667pt;}
.ws82{word-spacing:1.619200pt;}
.wse3{word-spacing:1.621333pt;}
.wsf4{word-spacing:1.668267pt;}
.ws98{word-spacing:1.706667pt;}
.wsd1{word-spacing:1.717333pt;}
.wsc2{word-spacing:1.766400pt;}
.ws36{word-spacing:1.815467pt;}
.wse0{word-spacing:1.834667pt;}
.ws1d{word-spacing:1.864533pt;}
.ws91{word-spacing:1.877333pt;}
.ws104{word-spacing:1.880000pt;}
.ws62{word-spacing:1.920000pt;}
.ws103{word-spacing:1.960000pt;}
.ws9{word-spacing:1.962667pt;}
.ws8b{word-spacing:1.976000pt;}
.wsbe{word-spacing:2.011733pt;}
.ws65{word-spacing:2.048000pt;}
.ws42{word-spacing:2.109867pt;}
.ws8c{word-spacing:2.149333pt;}
.wsbf{word-spacing:2.158933pt;}
.ws13{word-spacing:2.208000pt;}
.wsc1{word-spacing:2.257067pt;}
.wsea{word-spacing:2.306133pt;}
.ws105{word-spacing:2.320000pt;}
.ws97{word-spacing:2.346667pt;}
.ws3e{word-spacing:2.355200pt;}
.ws3f{word-spacing:2.404267pt;}
.ws9a{word-spacing:2.474667pt;}
.ws3d{word-spacing:2.502400pt;}
.ws2e{word-spacing:2.551467pt;}
.ws46{word-spacing:2.649600pt;}
.ws48{word-spacing:2.698667pt;}
.ws27{word-spacing:2.747733pt;}
.ws10b{word-spacing:2.773333pt;}
.wsa5{word-spacing:2.796800pt;}
.wsae{word-spacing:2.845867pt;}
.ws93{word-spacing:2.858667pt;}
.ws45{word-spacing:2.894933pt;}
.wse1{word-spacing:2.901333pt;}
.ws5d{word-spacing:2.993067pt;}
.wse6{word-spacing:3.029333pt;}
.ws85{word-spacing:3.140267pt;}
.ws69{word-spacing:3.157333pt;}
.ws7d{word-spacing:3.189333pt;}
.ws7a{word-spacing:3.238400pt;}
.ws12{word-spacing:3.287467pt;}
.wsf1{word-spacing:3.336533pt;}
.wsac{word-spacing:3.385600pt;}
.wsa7{word-spacing:3.434667pt;}
.ws10f{word-spacing:3.456000pt;}
.ws32{word-spacing:3.532800pt;}
.ws1e{word-spacing:3.581867pt;}
.ws112{word-spacing:3.626667pt;}
.ws52{word-spacing:3.630933pt;}
.wsec{word-spacing:3.680000pt;}
.wsab{word-spacing:3.729067pt;}
.ws10c{word-spacing:3.754667pt;}
.ws38{word-spacing:3.876267pt;}
.ws7b{word-spacing:3.925333pt;}
.ws43{word-spacing:3.974400pt;}
.wsf{word-spacing:4.023467pt;}
.ws10a{word-spacing:4.053333pt;}
.ws80{word-spacing:4.072533pt;}
.wsc4{word-spacing:4.121600pt;}
.ws31{word-spacing:4.170667pt;}
.ws41{word-spacing:4.219733pt;}
.wsca{word-spacing:4.268800pt;}
.wsb0{word-spacing:4.317867pt;}
.ws7e{word-spacing:4.366933pt;}
.ws89{word-spacing:4.416000pt;}
.ws116{word-spacing:4.437333pt;}
.wsdc{word-spacing:4.480000pt;}
.ws86{word-spacing:4.514133pt;}
.ws28{word-spacing:4.563200pt;}
.ws109{word-spacing:4.565333pt;}
.ws5b{word-spacing:4.612267pt;}
.wse8{word-spacing:4.710400pt;}
.ws115{word-spacing:4.778667pt;}
.ws4a{word-spacing:4.808533pt;}
.wsfa{word-spacing:4.857600pt;}
.ws1b{word-spacing:5.004800pt;}
.ws34{word-spacing:5.053867pt;}
.ws81{word-spacing:5.102933pt;}
.wsa8{word-spacing:5.152000pt;}
.wsa6{word-spacing:5.201067pt;}
.ws24{word-spacing:5.250133pt;}
.wsdd{word-spacing:5.290667pt;}
.wse9{word-spacing:5.348267pt;}
.wsaa{word-spacing:5.495467pt;}
.ws4b{word-spacing:5.544533pt;}
.wsa1{word-spacing:5.593600pt;}
.wsfd{word-spacing:5.691733pt;}
.wsc3{word-spacing:5.740800pt;}
.ws1{word-spacing:5.760000pt;}
.ws20{word-spacing:5.789867pt;}
.wsde{word-spacing:5.802667pt;}
.ws8a{word-spacing:5.888000pt;}
.ws54{word-spacing:5.937067pt;}
.ws57{word-spacing:6.084267pt;}
.ws53{word-spacing:6.133333pt;}
.ws8{word-spacing:6.231467pt;}
.wsa{word-spacing:6.280533pt;}
.ws84{word-spacing:6.378667pt;}
.wsaf{word-spacing:6.427733pt;}
.ws35{word-spacing:6.476800pt;}
.ws49{word-spacing:6.525867pt;}
.ws23{word-spacing:6.624000pt;}
.ws15{word-spacing:6.673067pt;}
.ws4c{word-spacing:6.820267pt;}
.wse{word-spacing:6.967467pt;}
.ws3a{word-spacing:7.163733pt;}
.wsee{word-spacing:7.212800pt;}
.ws2b{word-spacing:7.261867pt;}
.wsed{word-spacing:7.310933pt;}
.ws47{word-spacing:7.360000pt;}
.ws4d{word-spacing:7.409067pt;}
.ws114{word-spacing:7.424000pt;}
.ws3b{word-spacing:7.458133pt;}
.wsa2{word-spacing:7.507200pt;}
.wsc7{word-spacing:7.556267pt;}
.ws1a{word-spacing:7.605333pt;}
.ws29{word-spacing:7.752533pt;}
.wsda{word-spacing:7.760000pt;}
.ws5c{word-spacing:7.850667pt;}
.ws11{word-spacing:7.899733pt;}
.wsc0{word-spacing:7.948800pt;}
.ws26{word-spacing:8.439467pt;}
.ws2c{word-spacing:8.586667pt;}
.ws40{word-spacing:8.635733pt;}
.ws55{word-spacing:8.881067pt;}
.ws2d{word-spacing:8.930133pt;}
.ws2a{word-spacing:8.979200pt;}
.wsef{word-spacing:9.028267pt;}
.ws50{word-spacing:9.666133pt;}
.ws7{word-spacing:9.911467pt;}
.wsa9{word-spacing:10.009600pt;}
.wsf9{word-spacing:10.205867pt;}
.wsf0{word-spacing:10.598400pt;}
.wsf8{word-spacing:10.892800pt;}
.wsfe{word-spacing:11.628800pt;}
.ws6{word-spacing:11.972267pt;}
.wsf6{word-spacing:12.021333pt;}
.ws16{word-spacing:12.168533pt;}
.wsbd{word-spacing:12.266667pt;}
.ws1c{word-spacing:14.474667pt;}
.ws18{word-spacing:23.502933pt;}
.wsd0{word-spacing:47.850667pt;}
.wscf{word-spacing:47.851200pt;}
.wsb7{word-spacing:48.645333pt;}
.wsce{word-spacing:49.242133pt;}
.wsb5{word-spacing:49.524267pt;}
.wsb8{word-spacing:49.728533pt;}
.wsb9{word-spacing:51.217067pt;}
.wsb6{word-spacing:51.688533pt;}
.wsba{word-spacing:52.554667pt;}
.ws9d{word-spacing:68.747733pt;}
.ws9c{word-spacing:69.853867pt;}
.ws9e{word-spacing:70.507733pt;}
.ws9f{word-spacing:83.531200pt;}
.wsa0{word-spacing:87.828267pt;}
.ws74{word-spacing:88.872000pt;}
.ws71{word-spacing:90.451733pt;}
.ws72{word-spacing:90.499733pt;}
.ws6f{word-spacing:92.106133pt;}
.ws73{word-spacing:92.616000pt;}
.ws70{word-spacing:94.251200pt;}
._29{margin-left:-1950.925440pt;}
._32{margin-left:-1408.469440pt;}
._17{margin-left:-858.947733pt;}
._1d{margin-left:-857.192533pt;}
._22{margin-left:-738.061867pt;}
._33{margin-left:-620.298667pt;}
._3a{margin-left:-613.166933pt;}
._2c{margin-left:-612.176533pt;}
._37{margin-left:-605.506133pt;}
._21{margin-left:-536.425067pt;}
._1b{margin-left:-157.764267pt;}
._20{margin-left:-156.189333pt;}
._27{margin-left:-136.664533pt;}
._30{margin-left:-115.923200pt;}
._6{margin-left:-47.168000pt;}
._e{margin-left:-35.671467pt;}
._b{margin-left:-22.090133pt;}
._7{margin-left:-21.147733pt;}
._14{margin-left:-13.304000pt;}
._9{margin-left:-11.537600pt;}
._15{margin-left:-9.778133pt;}
._16{margin-left:-7.590507pt;}
._a{margin-left:-6.644373pt;}
._12{margin-left:-4.795840pt;}
._10{margin-left:-3.832107pt;}
._8{margin-left:-2.482027pt;}
._4{margin-left:-1.416000pt;}
._13{width:0.893867pt;}
._5{width:1.800000pt;}
._0{width:3.648000pt;}
._2{width:5.184000pt;}
._3{width:6.792000pt;}
._f{width:8.517973pt;}
._11{width:10.100800pt;}
._1{width:23.304000pt;}
._d{width:33.804907pt;}
._c{width:34.742080pt;}
._3b{width:57.203200pt;}
._38{width:58.648533pt;}
._34{width:60.317867pt;}
._39{width:62.083200pt;}
._2d{width:68.596267pt;}
._35{width:70.438933pt;}
._23{width:78.920533pt;}
._3d{width:82.680000pt;}
._24{width:90.485867pt;}
._2a{width:98.719467pt;}
._18{width:109.018667pt;}
._1e{width:111.300267pt;}
._2f{width:170.997333pt;}
._31{width:173.438933pt;}
._36{width:174.332800pt;}
._2e{width:175.323200pt;}
._3c{width:176.309867pt;}
._26{width:212.241067pt;}
._28{width:215.094933pt;}
._25{width:217.525867pt;}
._2b{width:250.931733pt;}
._1f{width:252.187733pt;}
._1c{width:253.723733pt;}
._19{width:254.661333pt;}
._1a{width:258.091733pt;}
.fs8{font-size:10.666667pt;}
.fsc{font-size:34.666667pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:40.000000pt;}
.fsb{font-size:42.666667pt;}
.fsa{font-size:48.000000pt;}
.fs7{font-size:49.066667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:149.333333pt;}
.fs5{font-size:240.000000pt;}
.y0{bottom:0.000000pt;}
.ybf{bottom:30.236267pt;}
.y6{bottom:31.933340pt;}
.y5{bottom:59.133337pt;}
.y27{bottom:65.595733pt;}
.y1b1{bottom:66.673200pt;}
.y9f{bottom:66.929067pt;}
.y5a{bottom:66.929200pt;}
.y1b0{bottom:78.673200pt;}
.y103{bottom:81.742267pt;}
.ybd{bottom:82.204667pt;}
.y4{bottom:86.333337pt;}
.y9e{bottom:86.929067pt;}
.y59{bottom:86.929200pt;}
.y115{bottom:87.097067pt;}
.y14b{bottom:87.433067pt;}
.y1af{bottom:90.673200pt;}
.y102{bottom:95.342267pt;}
.ybc{bottom:95.804667pt;}
.y164{bottom:100.262400pt;}
.y1ab{bottom:100.262533pt;}
.y114{bottom:100.430400pt;}
.y14a{bottom:100.766400pt;}
.y1ae{bottom:102.673200pt;}
.y1aa{bottom:104.042000pt;}
.y9d{bottom:106.929067pt;}
.y58{bottom:106.929200pt;}
.y101{bottom:108.942267pt;}
.ybb{bottom:109.404667pt;}
.y163{bottom:110.929067pt;}
.y113{bottom:111.097067pt;}
.y149{bottom:111.433067pt;}
.y1ad{bottom:114.673200pt;}
.y1a9{bottom:117.375333pt;}
.y100{bottom:122.542267pt;}
.yba{bottom:123.004667pt;}
.y23{bottom:123.790666pt;}
.y162{bottom:124.262400pt;}
.y112{bottom:124.430400pt;}
.y148{bottom:124.766400pt;}
.y1ac{bottom:126.673200pt;}
.y9c{bottom:126.929067pt;}
.y57{bottom:126.929200pt;}
.y1a8{bottom:130.708667pt;}
.yff{bottom:136.142267pt;}
.yb9{bottom:136.604667pt;}
.y161{bottom:137.595733pt;}
.y111{bottom:137.763733pt;}
.y147{bottom:138.099733pt;}
.y1a7{bottom:144.042000pt;}
.y9b{bottom:146.929067pt;}
.y56{bottom:146.929200pt;}
.y160{bottom:148.262400pt;}
.y110{bottom:148.430400pt;}
.y146{bottom:148.766400pt;}
.yb8{bottom:150.204667pt;}
.yfe{bottom:152.742267pt;}
.y15f{bottom:158.929067pt;}
.y10f{bottom:159.097067pt;}
.y1a6{bottom:161.154933pt;}
.yb7{bottom:163.804667pt;}
.yfd{bottom:166.342267pt;}
.y9a{bottom:166.929067pt;}
.y55{bottom:166.929200pt;}
.y151{bottom:172.739467pt;}
.y1a{bottom:175.052000pt;}
.yb6{bottom:177.404667pt;}
.y15e{bottom:178.990133pt;}
.yfc{bottom:179.942267pt;}
.y120{bottom:183.491733pt;}
.y183{bottom:183.571333pt;}
.y18a{bottom:183.571467pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y99{bottom:186.929067pt;}
.y54{bottom:186.929200pt;}
.y15b{bottom:187.240133pt;}
.y44{bottom:190.023200pt;}
.yfb{bottom:193.542267pt;}
.yb5{bottom:194.004667pt;}
.y126{bottom:196.350800pt;}
.y11f{bottom:196.868800pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y189{bottom:198.216933pt;}
.y182{bottom:198.217067pt;}
.y150{bottom:198.236267pt;}
.y159{bottom:198.252000pt;}
.y43{bottom:206.023200pt;}
.y11a{bottom:206.362267pt;}
.y98{bottom:206.929067pt;}
.y53{bottom:206.929200pt;}
.yfa{bottom:207.142267pt;}
.yb4{bottom:207.604667pt;}
.y12c{bottom:207.744133pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y17d{bottom:212.299733pt;}
.y187{bottom:212.299867pt;}
.yf9{bottom:220.742267pt;}
.yb3{bottom:221.204667pt;}
.y42{bottom:222.023200pt;}
.y12d{bottom:226.634133pt;}
.y97{bottom:226.929067pt;}
.y5b{bottom:226.929200pt;}
.y155{bottom:230.663067pt;}
.y15d{bottom:230.724667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.yf8{bottom:234.342267pt;}
.yb2{bottom:234.804667pt;}
.y184{bottom:236.079200pt;}
.y41{bottom:238.023200pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.y11b{bottom:244.418800pt;}
.y122{bottom:245.524267pt;}
.y96{bottom:246.929067pt;}
.y52{bottom:246.929200pt;}
.yf7{bottom:247.942267pt;}
.yb1{bottom:248.404667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y40{bottom:254.023200pt;}
.y17e{bottom:259.701333pt;}
.yf6{bottom:261.542267pt;}
.y15a{bottom:261.740000pt;}
.y153{bottom:262.925067pt;}
.y128{bottom:264.414400pt;}
.yb0{bottom:265.004667pt;}
.y95{bottom:266.929067pt;}
.y51{bottom:266.929200pt;}
.y3f{bottom:270.023200pt;}
.yf5{bottom:275.142267pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.yaf{bottom:278.604667pt;}
.y17c{bottom:281.681600pt;}
.y119{bottom:282.475333pt;}
.y127{bottom:283.304400pt;}
.y3e{bottom:286.023200pt;}
.y94{bottom:286.929067pt;}
.y50{bottom:286.929200pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.yf4{bottom:288.742267pt;}
.yae{bottom:292.204667pt;}
.y15c{bottom:293.556267pt;}
.y154{bottom:294.543600pt;}
.y3d{bottom:302.023200pt;}
.y129{bottom:302.194533pt;}
.yf3{bottom:302.342267pt;}
.y17f{bottom:303.602800pt;}
.y188{bottom:303.603067pt;}
.yad{bottom:305.804667pt;}
.y93{bottom:306.929067pt;}
.y4f{bottom:306.929200pt;}
.y11{bottom:309.452000pt;}
.yf2{bottom:315.942267pt;}
.y3c{bottom:316.689867pt;}
.y11c{bottom:320.531867pt;}
.y123{bottom:321.084533pt;}
.yac{bottom:322.404667pt;}
.y158{bottom:325.115600pt;}
.y181{bottom:325.902133pt;}
.y92{bottom:326.929067pt;}
.y4e{bottom:326.929200pt;}
.y152{bottom:327.201467pt;}
.yf1{bottom:329.542267pt;}
.yab{bottom:336.004667pt;}
.y121{bottom:339.974667pt;}
.y3b{bottom:340.826267pt;}
.yf0{bottom:343.142267pt;}
.y10{bottom:343.809333pt;}
.y157{bottom:345.066533pt;}
.y91{bottom:346.929067pt;}
.y4d{bottom:346.929200pt;}
.y180{bottom:348.201333pt;}
.yaa{bottom:349.604667pt;}
.y156{bottom:352.863467pt;}
.y3a{bottom:356.826267pt;}
.y11e{bottom:358.588267pt;}
.y124{bottom:358.864667pt;}
.yef{bottom:359.742267pt;}
.y186{bottom:361.600933pt;}
.yf{bottom:362.706666pt;}
.ya9{bottom:363.204667pt;}
.y90{bottom:366.929067pt;}
.y4c{bottom:366.929200pt;}
.y39{bottom:372.826267pt;}
.yee{bottom:373.342267pt;}
.y185{bottom:373.600933pt;}
.ya8{bottom:376.804667pt;}
.y14e{bottom:377.430133pt;}
.y125{bottom:377.754667pt;}
.y8f{bottom:386.929067pt;}
.y4b{bottom:386.929200pt;}
.yed{bottom:386.942267pt;}
.y38{bottom:388.826267pt;}
.ya7{bottom:390.404667pt;}
.y14d{bottom:395.899467pt;}
.y11d{bottom:396.644800pt;}
.y37{bottom:404.826267pt;}
.y17a{bottom:406.671867pt;}
.y8e{bottom:406.929067pt;}
.y4a{bottom:406.929200pt;}
.ya6{bottom:407.004667pt;}
.yec{bottom:408.101333pt;}
.y170{bottom:408.561600pt;}
.y14c{bottom:411.899467pt;}
.y12a{bottom:415.932667pt;}
.y36{bottom:419.492933pt;}
.ya5{bottom:420.604667pt;}
.y179{bottom:422.262267pt;}
.y16f{bottom:424.012400pt;}
.y8d{bottom:426.929067pt;}
.y49{bottom:426.929200pt;}
.y104{bottom:429.172800pt;}
.ye{bottom:430.990669pt;}
.y14f{bottom:434.011467pt;}
.ya4{bottom:434.204667pt;}
.y174{bottom:437.289733pt;}
.y16a{bottom:437.290000pt;}
.y35{bottom:443.629467pt;}
.y12b{bottom:445.153600pt;}
.y117{bottom:446.343600pt;}
.y8c{bottom:446.929067pt;}
.y48{bottom:446.929200pt;}
.yd{bottom:446.990669pt;}
.ya3{bottom:447.804667pt;}
.y34{bottom:459.629467pt;}
.y17b{bottom:460.124533pt;}
.y171{bottom:461.069467pt;}
.ya2{bottom:461.404667pt;}
.yc{bottom:462.990669pt;}
.y116{bottom:464.812800pt;}
.y8b{bottom:466.929067pt;}
.y47{bottom:466.929200pt;}
.ya1{bottom:475.004667pt;}
.y33{bottom:475.629467pt;}
.yce{bottom:477.469867pt;}
.yb{bottom:478.990666pt;}
.y175{bottom:483.746533pt;}
.y16b{bottom:484.691600pt;}
.y118{bottom:486.924800pt;}
.y8a{bottom:486.929067pt;}
.y46{bottom:486.929200pt;}
.ycd{bottom:490.803200pt;}
.y32{bottom:491.629467pt;}
.ya{bottom:494.990666pt;}
.ya0{bottom:496.163733pt;}
.ycc{bottom:504.136533pt;}
.y173{bottom:505.727067pt;}
.y31{bottom:506.296133pt;}
.y169{bottom:506.671867pt;}
.y89{bottom:506.929067pt;}
.yc8{bottom:506.929200pt;}
.y1d4{bottom:511.132533pt;}
.ycb{bottom:514.803200pt;}
.ybe{bottom:517.235333pt;}
.y1d3{bottom:525.132533pt;}
.yca{bottom:525.469867pt;}
.y134{bottom:526.897600pt;}
.y88{bottom:526.929067pt;}
.yc7{bottom:526.929200pt;}
.y176{bottom:527.648267pt;}
.y16c{bottom:528.593067pt;}
.y30{bottom:530.432667pt;}
.yc9{bottom:536.136533pt;}
.y1d2{bottom:539.132533pt;}
.y133{bottom:540.230933pt;}
.y2f{bottom:546.432667pt;}
.y87{bottom:546.929067pt;}
.yc6{bottom:546.929200pt;}
.y178{bottom:549.947467pt;}
.y16e{bottom:550.892267pt;}
.y132{bottom:550.897600pt;}
.y1d1{bottom:556.912133pt;}
.y2e{bottom:562.432667pt;}
.yea{bottom:562.492133pt;}
.y131{bottom:564.230933pt;}
.y86{bottom:566.929067pt;}
.y78{bottom:566.929200pt;}
.y1d0{bottom:570.912133pt;}
.y177{bottom:572.246533pt;}
.y16d{bottom:573.191600pt;}
.y9{bottom:573.786667pt;}
.y130{bottom:574.897600pt;}
.ye9{bottom:576.158533pt;}
.y2d{bottom:578.432667pt;}
.y1cf{bottom:584.912133pt;}
.y172{bottom:586.199333pt;}
.y85{bottom:586.929067pt;}
.y77{bottom:586.929200pt;}
.ye7{bottom:587.533200pt;}
.y12f{bottom:588.230933pt;}
.y60{bottom:590.539067pt;}
.y8{bottom:592.685334pt;}
.y2c{bottom:594.432667pt;}
.y12e{bottom:598.897600pt;}
.y1ce{bottom:598.912133pt;}
.ye8{bottom:601.835333pt;}
.y84{bottom:606.929067pt;}
.y76{bottom:606.929200pt;}
.y2b{bottom:610.432667pt;}
.ye5{bottom:616.137333pt;}
.y1cd{bottom:616.691600pt;}
.y13c{bottom:622.295200pt;}
.y18b{bottom:623.073467pt;}
.y167{bottom:623.488933pt;}
.y2a{bottom:626.432533pt;}
.y83{bottom:626.929067pt;}
.y75{bottom:626.929200pt;}
.y5f{bottom:627.036800pt;}
.ye6{bottom:630.439600pt;}
.y1cc{bottom:630.691600pt;}
.y13b{bottom:635.996133pt;}
.y166{bottom:641.958133pt;}
.y29{bottom:642.432533pt;}
.y136{bottom:644.409333pt;}
.y1cb{bottom:644.691600pt;}
.ye0{bottom:644.741600pt;}
.y7{bottom:645.598667pt;}
.y82{bottom:646.929067pt;}
.y74{bottom:646.929200pt;}
.y28{bottom:657.099200pt;}
.y165{bottom:657.958133pt;}
.ye1{bottom:659.043733pt;}
.y1ca{bottom:662.471200pt;}
.y81{bottom:666.929067pt;}
.y73{bottom:666.929200pt;}
.y5e{bottom:668.370133pt;}
.y3{bottom:668.977329pt;}
.ydf{bottom:673.345733pt;}
.y1c9{bottom:676.471200pt;}
.y137{bottom:676.861467pt;}
.y168{bottom:680.070133pt;}
.y80{bottom:686.929067pt;}
.y72{bottom:686.929200pt;}
.ye2{bottom:687.647600pt;}
.y1c8{bottom:690.471200pt;}
.y145{bottom:696.929067pt;}
.ye4{bottom:701.949733pt;}
.y7f{bottom:706.929067pt;}
.y71{bottom:706.929200pt;}
.y1c7{bottom:708.250667pt;}
.y135{bottom:709.313333pt;}
.y5d{bottom:709.703333pt;}
.ye3{bottom:716.252000pt;}
.y144{bottom:716.929067pt;}
.y1c6{bottom:722.250667pt;}
.y7e{bottom:726.929067pt;}
.y70{bottom:726.929200pt;}
.yeb{bottom:729.448800pt;}
.y1c5{bottom:736.250667pt;}
.y143{bottom:736.929067pt;}
.y138{bottom:741.765333pt;}
.y19f{bottom:742.980133pt;}
.y10e{bottom:746.929067pt;}
.y6f{bottom:746.929200pt;}
.y1c4{bottom:754.030267pt;}
.y19e{bottom:756.713467pt;}
.y7d{bottom:756.929067pt;}
.y26{bottom:758.594933pt;}
.y5c{bottom:758.595733pt;}
.ydd{bottom:765.070800pt;}
.y10d{bottom:766.929067pt;}
.y6e{bottom:766.929200pt;}
.y1c3{bottom:768.030267pt;}
.y19d{bottom:770.446800pt;}
.y13a{bottom:774.217467pt;}
.y7c{bottom:776.929067pt;}
.ydc{bottom:779.090667pt;}
.y2{bottom:781.661334pt;}
.y1c2{bottom:782.030267pt;}
.y19c{bottom:784.180133pt;}
.y10c{bottom:786.929067pt;}
.y6d{bottom:786.929200pt;}
.yda{bottom:791.387467pt;}
.y1c1{bottom:796.030267pt;}
.y7b{bottom:796.929067pt;}
.y19b{bottom:797.913467pt;}
.y139{bottom:806.669600pt;}
.y10b{bottom:806.929067pt;}
.y6c{bottom:806.929200pt;}
.ydb{bottom:809.728800pt;}
.y19a{bottom:811.646800pt;}
.y1c0{bottom:813.809733pt;}
.y142{bottom:821.184933pt;}
.y199{bottom:825.380133pt;}
.y10a{bottom:826.929067pt;}
.y6b{bottom:826.929200pt;}
.y1bf{bottom:827.809733pt;}
.yd5{bottom:828.069867pt;}
.y140{bottom:829.996400pt;}
.y198{bottom:839.113467pt;}
.y1be{bottom:841.809733pt;}
.y13f{bottom:842.796267pt;}
.yd6{bottom:846.411067pt;}
.y7a{bottom:846.929067pt;}
.y6a{bottom:846.929200pt;}
.y197{bottom:852.846800pt;}
.y1bd{bottom:855.809733pt;}
.y25{bottom:855.910800pt;}
.y45{bottom:857.230933pt;}
.y1{bottom:859.312000pt;}
.y13e{bottom:861.265600pt;}
.yd4{bottom:864.752000pt;}
.y196{bottom:866.580133pt;}
.y79{bottom:866.929067pt;}
.y69{bottom:866.929200pt;}
.y1bc{bottom:873.589333pt;}
.y13d{bottom:877.265600pt;}
.y195{bottom:880.313467pt;}
.yd7{bottom:883.093067pt;}
.y24{bottom:884.094533pt;}
.y68{bottom:886.929067pt;}
.y1a4{bottom:886.929200pt;}
.y1bb{bottom:887.589333pt;}
.y194{bottom:894.046800pt;}
.yc5{bottom:896.929200pt;}
.y141{bottom:899.377467pt;}
.yd9{bottom:901.434267pt;}
.y1ba{bottom:901.589333pt;}
.y67{bottom:906.929067pt;}
.y1a3{bottom:906.929200pt;}
.y193{bottom:907.780133pt;}
.y1b9{bottom:915.589333pt;}
.yc4{bottom:916.929200pt;}
.yd8{bottom:919.775600pt;}
.y192{bottom:921.513467pt;}
.y66{bottom:926.929067pt;}
.y1a2{bottom:926.929200pt;}
.y1b8{bottom:933.368800pt;}
.yde{bottom:933.720267pt;}
.y191{bottom:935.246800pt;}
.yc3{bottom:936.929200pt;}
.y65{bottom:946.929067pt;}
.y1a1{bottom:946.929200pt;}
.y109{bottom:946.929333pt;}
.y1b7{bottom:947.368800pt;}
.y190{bottom:948.980133pt;}
.y1b6{bottom:961.368800pt;}
.y18f{bottom:962.713467pt;}
.yd2{bottom:963.162800pt;}
.y64{bottom:966.929067pt;}
.y1a0{bottom:966.929200pt;}
.y108{bottom:966.929333pt;}
.yd1{bottom:975.962667pt;}
.y18e{bottom:976.446800pt;}
.y1b5{bottom:979.148400pt;}
.y63{bottom:986.929067pt;}
.yc2{bottom:986.929200pt;}
.y107{bottom:986.929333pt;}
.y18d{bottom:990.180133pt;}
.y1b4{bottom:993.148400pt;}
.yd0{bottom:994.432000pt;}
.y62{bottom:1006.929067pt;}
.yc1{bottom:1006.929200pt;}
.y106{bottom:1006.929333pt;}
.y1b3{bottom:1007.148400pt;}
.ycf{bottom:1010.432000pt;}
.y18c{bottom:1011.472533pt;}
.y1a5{bottom:1025.907333pt;}
.y61{bottom:1026.929067pt;}
.yc0{bottom:1026.929200pt;}
.y105{bottom:1026.929333pt;}
.y1b2{bottom:1028.707333pt;}
.yd3{bottom:1032.543867pt;}
.h19{height:26.000000pt;}
.h7{height:28.560000pt;}
.h1c{height:29.360000pt;}
.h1b{height:30.000000pt;}
.h1a{height:32.000000pt;}
.h17{height:32.016000pt;}
.h16{height:34.048000pt;}
.h15{height:35.232000pt;}
.h1e{height:35.584000pt;}
.h1d{height:36.014933pt;}
.hd{height:39.155200pt;}
.ha{height:40.000000pt;}
.h6{height:40.800000pt;}
.h10{height:40.921600pt;}
.hf{height:41.902933pt;}
.h3{height:42.840000pt;}
.h11{height:43.061333pt;}
.h13{height:44.000000pt;}
.hc{height:44.488533pt;}
.h18{height:44.688000pt;}
.h14{height:48.000000pt;}
.h2{height:48.960000pt;}
.h5{height:69.360000pt;}
.he{height:78.666667pt;}
.h4{height:105.826671pt;}
.h12{height:119.168000pt;}
.h9{height:191.520000pt;}
.hb{height:714.320267pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w4{width:219.864533pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:16.857867pt;}
.x9{left:23.726133pt;}
.x19{left:37.795200pt;}
.x2c{left:44.500800pt;}
.x2d{left:49.300800pt;}
.x17{left:52.720267pt;}
.x16{left:54.080267pt;}
.x32{left:55.256000pt;}
.x5{left:61.984267pt;}
.x37{left:64.082667pt;}
.x8{left:66.698133pt;}
.x6{left:68.031467pt;}
.x52{left:70.169467pt;}
.x3f{left:74.812267pt;}
.x56{left:76.228533pt;}
.x1a{left:79.132133pt;}
.x55{left:83.104000pt;}
.x7{left:85.039333pt;}
.x54{left:87.428800pt;}
.x51{left:89.518400pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x41{left:96.705200pt;}
.x53{left:116.018400pt;}
.x2f{left:123.241467pt;}
.x34{left:138.846800pt;}
.x12{left:162.443333pt;}
.x10{left:163.499333pt;}
.x49{left:164.976800pt;}
.x42{left:167.637867pt;}
.x48{left:169.712933pt;}
.x11{left:174.599600pt;}
.x4{left:180.874667pt;}
.x44{left:198.622267pt;}
.x4b{left:199.743467pt;}
.x40{left:232.933200pt;}
.x5a{left:254.401067pt;}
.x2e{left:258.396400pt;}
.x5b{left:264.770667pt;}
.x5d{left:270.930133pt;}
.x33{left:276.575733pt;}
.x59{left:280.985200pt;}
.xc{left:286.650533pt;}
.xd{left:287.756133pt;}
.x5c{left:288.955200pt;}
.x36{left:325.120533pt;}
.x43{left:326.424267pt;}
.x4a{left:328.779200pt;}
.x3d{left:355.754267pt;}
.x39{left:356.796800pt;}
.x38{left:357.955200pt;}
.x1b{left:359.055067pt;}
.x3b{left:363.417067pt;}
.x1d{left:368.719200pt;}
.x21{left:369.798133pt;}
.x23{left:373.962000pt;}
.x22{left:385.774267pt;}
.x20{left:389.628267pt;}
.x3c{left:391.715867pt;}
.x28{left:392.938133pt;}
.x27{left:397.921733pt;}
.x35{left:400.582400pt;}
.x29{left:402.245067pt;}
.x3{left:404.408000pt;}
.x18{left:405.436533pt;}
.x2a{left:409.695200pt;}
.x30{left:422.288933pt;}
.x58{left:440.837600pt;}
.x14{left:452.900133pt;}
.x13{left:453.959333pt;}
.x4d{left:456.322267pt;}
.x1f{left:459.691467pt;}
.x4c{left:461.113067pt;}
.x15{left:465.430667pt;}
.x4f{left:468.235733pt;}
.x4e{left:469.250133pt;}
.x47{left:473.385867pt;}
.x57{left:475.976400pt;}
.x46{left:492.478800pt;}
.xe{left:525.381467pt;}
.x3e{left:527.466267pt;}
.xf{left:536.720133pt;}
.x3a{left:596.419067pt;}
.x1e{left:598.439200pt;}
.x2b{left:601.355067pt;}
.x45{left:620.579867pt;}
.x31{left:631.748000pt;}
.x61{left:641.048667pt;}
.x5f{left:645.078667pt;}
.x60{left:651.763467pt;}
.x62{left:652.668267pt;}
.x5e{left:670.008133pt;}
.xb{left:671.251200pt;}
.x26{left:691.406800pt;}
.x50{left:695.893067pt;}
.x1c{left:721.643067pt;}
.x24{left:725.807733pt;}
.x25{left:749.199733pt;}
}




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