
    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_0f3883a8c9a58d33dff8511c.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.991000;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_a89eb2d15b4fb92de623e9f4.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.991000;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_e1a3fd704747ba0bb4c0b1ca.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.990000;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_b0773cd9c790c5594cdafb6f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.990000;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_295a8d013222884eb83a2e9b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.747000;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_d21f9c358a82d99c3738760e.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.711000;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_d21f9c358a82d99c3738760e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.711000;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_d21f9c358a82d99c3738760e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.711000;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_ee1c6697caa0687d878e7ce2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.913000;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_a57541647429ce5805ef7781.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.892000;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_e2d54c342cb3420f02bb93af.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.911000;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_2813620bec11a02e0905e972.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.942000;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_b54acb2f4fc5daedece7fdef.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.908000;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_d21f9c358a82d99c3738760e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.711000;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);}
.v4{vertical-align:-18.981000px;}
.v2{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:18.981000px;}
.v1{vertical-align:21.978000px;}
.ls7{letter-spacing:-2.492325px;}
.ls6{letter-spacing:-2.459094px;}
.ls8{letter-spacing:-1.628319px;}
.ls4{letter-spacing:-0.324000px;}
.ls9{letter-spacing:-0.199386px;}
.lsb{letter-spacing:-0.171000px;}
.ls2{letter-spacing:-0.162000px;}
.ls3{letter-spacing:-0.054000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000006px;}
.ls5{letter-spacing:0.900000px;}
.lsa{letter-spacing:1.080000px;}
.lsc{letter-spacing:7.071000px;}
.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;}
}
.ws39{word-spacing:-14.934000px;}
.ws1{word-spacing:-14.148000px;}
.ws24{word-spacing:-13.824000px;}
.ws7f{word-spacing:-13.362000px;}
.ws17{word-spacing:-12.576000px;}
.wsee{word-spacing:-11.514000px;}
.wsb4{word-spacing:-8.949000px;}
.wsb5{word-spacing:-8.835000px;}
.ws2{word-spacing:-8.706522px;}
.wsb9{word-spacing:-8.550000px;}
.ws7e{word-spacing:-8.507136px;}
.ws0{word-spacing:-7.331808px;}
.ws3a{word-spacing:-7.078203px;}
.ws37{word-spacing:-6.247428px;}
.ws38{word-spacing:-6.214197px;}
.ws81{word-spacing:-3.990000px;}
.ws68{word-spacing:-3.762000px;}
.ws1d{word-spacing:-3.726000px;}
.ws60{word-spacing:-3.534000px;}
.wsaa{word-spacing:-3.363000px;}
.wsa1{word-spacing:-3.249000px;}
.ws4e{word-spacing:-2.907000px;}
.ws25{word-spacing:-2.862000px;}
.ws51{word-spacing:-2.850000px;}
.ws59{word-spacing:-2.793000px;}
.ws70{word-spacing:-2.736000px;}
.ws10c{word-spacing:-2.679000px;}
.ws101{word-spacing:-2.622000px;}
.wscc{word-spacing:-2.565000px;}
.ws6f{word-spacing:-2.451000px;}
.ws95{word-spacing:-2.337000px;}
.wscd{word-spacing:-2.280000px;}
.ws9e{word-spacing:-2.166000px;}
.wsf3{word-spacing:-2.052000px;}
.ws12{word-spacing:-1.998000px;}
.ws4d{word-spacing:-1.938000px;}
.ws63{word-spacing:-1.881000px;}
.wsd{word-spacing:-1.782000px;}
.ws57{word-spacing:-1.767000px;}
.wsd1{word-spacing:-1.710000px;}
.ws13{word-spacing:-1.620000px;}
.ws2e{word-spacing:-1.596000px;}
.wsc4{word-spacing:-1.539000px;}
.ws71{word-spacing:-1.482000px;}
.wsb{word-spacing:-1.458000px;}
.ws9a{word-spacing:-1.368000px;}
.ws48{word-spacing:-1.254000px;}
.wsd7{word-spacing:-1.134000px;}
.wsfa{word-spacing:-1.083000px;}
.wsda{word-spacing:-1.080000px;}
.wsc0{word-spacing:-1.026000px;}
.ws83{word-spacing:-0.969000px;}
.wse9{word-spacing:-0.927600px;}
.wsba{word-spacing:-0.912000px;}
.ws65{word-spacing:-0.855000px;}
.wsb8{word-spacing:-0.847800px;}
.wsa0{word-spacing:-0.798000px;}
.wse{word-spacing:-0.756000px;}
.ws9d{word-spacing:-0.741000px;}
.ws7{word-spacing:-0.702000px;}
.ws10d{word-spacing:-0.684000px;}
.ws98{word-spacing:-0.627000px;}
.wsf4{word-spacing:-0.570000px;}
.wsd5{word-spacing:-0.540000px;}
.ws5f{word-spacing:-0.513000px;}
.ws62{word-spacing:-0.456000px;}
.ws3b{word-spacing:-0.450000px;}
.ws56{word-spacing:-0.342000px;}
.ws1e{word-spacing:-0.324000px;}
.ws41{word-spacing:-0.285000px;}
.ws2c{word-spacing:-0.228000px;}
.ws5d{word-spacing:-0.114000px;}
.ws1b{word-spacing:-0.108000px;}
.ws3{word-spacing:0.000000px;}
.wsa5{word-spacing:0.057000px;}
.ws1c{word-spacing:0.162000px;}
.ws55{word-spacing:0.285000px;}
.wsbe{word-spacing:0.342000px;}
.ws6e{word-spacing:0.399000px;}
.ws3e{word-spacing:0.513000px;}
.ws5{word-spacing:0.540000px;}
.ws96{word-spacing:0.570000px;}
.ws74{word-spacing:0.627000px;}
.ws69{word-spacing:0.798000px;}
.ws8e{word-spacing:0.855000px;}
.wsb3{word-spacing:0.867000px;}
.ws58{word-spacing:0.969000px;}
.wsea{word-spacing:1.031400px;}
.ws8b{word-spacing:1.083000px;}
.wsc2{word-spacing:1.140000px;}
.ws54{word-spacing:1.197000px;}
.wsf{word-spacing:1.242000px;}
.ws79{word-spacing:1.254000px;}
.wsce{word-spacing:1.425000px;}
.ws114{word-spacing:1.482000px;}
.ws1a{word-spacing:1.512000px;}
.wse6{word-spacing:1.539000px;}
.ws87{word-spacing:1.596000px;}
.wsa9{word-spacing:1.710000px;}
.wsfd{word-spacing:1.767000px;}
.ws49{word-spacing:1.824000px;}
.ws52{word-spacing:1.881000px;}
.ws6{word-spacing:1.890000px;}
.ws14{word-spacing:1.944000px;}
.wse5{word-spacing:1.959600px;}
.ws23{word-spacing:2.106000px;}
.wsa3{word-spacing:2.280000px;}
.wsd2{word-spacing:2.337000px;}
.wsed{word-spacing:2.345400px;}
.ws4{word-spacing:2.376000px;}
.ws31{word-spacing:2.394000px;}
.wse7{word-spacing:2.397600px;}
.wsdc{word-spacing:2.451000px;}
.wsd8{word-spacing:2.508000px;}
.ws36{word-spacing:2.622000px;}
.ws94{word-spacing:2.679000px;}
.wsa7{word-spacing:2.736000px;}
.wsc{word-spacing:2.754000px;}
.ws90{word-spacing:2.793000px;}
.wsf2{word-spacing:2.907000px;}
.wsb0{word-spacing:2.958000px;}
.ws4c{word-spacing:2.964000px;}
.wsf7{word-spacing:3.021000px;}
.ws18{word-spacing:3.078000px;}
.wse8{word-spacing:3.124800px;}
.ws9f{word-spacing:3.135000px;}
.wsdb{word-spacing:3.192000px;}
.wsa4{word-spacing:3.249000px;}
.wse4{word-spacing:3.306000px;}
.ws76{word-spacing:3.363000px;}
.ws44{word-spacing:3.420000px;}
.ws22{word-spacing:3.510000px;}
.ws77{word-spacing:3.534000px;}
.wsc8{word-spacing:3.591000px;}
.wsad{word-spacing:3.705000px;}
.wsbf{word-spacing:3.762000px;}
.wsd6{word-spacing:3.819000px;}
.ws2f{word-spacing:3.876000px;}
.ws5a{word-spacing:3.990000px;}
.ws9{word-spacing:4.050000px;}
.ws100{word-spacing:4.104000px;}
.wsa2{word-spacing:4.161000px;}
.wsfc{word-spacing:4.218000px;}
.ws64{word-spacing:4.275000px;}
.wsac{word-spacing:4.332000px;}
.wsd0{word-spacing:4.446000px;}
.wsc9{word-spacing:4.503000px;}
.wsbc{word-spacing:4.560000px;}
.ws11{word-spacing:4.590000px;}
.ws5c{word-spacing:4.617000px;}
.ws75{word-spacing:4.731000px;}
.ws84{word-spacing:4.788000px;}
.ws19{word-spacing:4.860000px;}
.ws9b{word-spacing:4.902000px;}
.wsec{word-spacing:5.075400px;}
.ws82{word-spacing:5.130000px;}
.ws4f{word-spacing:5.187000px;}
.wsbb{word-spacing:5.244000px;}
.ws30{word-spacing:5.301000px;}
.ws42{word-spacing:5.358000px;}
.wse0{word-spacing:5.415000px;}
.wsb7{word-spacing:5.459400px;}
.ws61{word-spacing:5.472000px;}
.wsb2{word-spacing:5.508000px;}
.wse2{word-spacing:5.586000px;}
.ws35{word-spacing:5.643000px;}
.ws73{word-spacing:5.700000px;}
.ws5b{word-spacing:5.814000px;}
.ws7a{word-spacing:5.928000px;}
.ws5e{word-spacing:5.985000px;}
.ws20{word-spacing:6.102000px;}
.ws110{word-spacing:6.213000px;}
.ws1f{word-spacing:6.264000px;}
.ws112{word-spacing:6.327000px;}
.ws85{word-spacing:6.441000px;}
.wsb6{word-spacing:6.546600px;}
.wsb1{word-spacing:6.579000px;}
.wsc3{word-spacing:6.669000px;}
.ws99{word-spacing:6.726000px;}
.ws15{word-spacing:6.750000px;}
.ws43{word-spacing:6.783000px;}
.ws40{word-spacing:6.840000px;}
.ws8d{word-spacing:6.897000px;}
.ws91{word-spacing:6.954000px;}
.wsdf{word-spacing:7.011000px;}
.ws7c{word-spacing:7.191000px;}
.wsc1{word-spacing:7.239000px;}
.ws116{word-spacing:7.410000px;}
.ws7d{word-spacing:7.548000px;}
.ws8a{word-spacing:7.581000px;}
.ws106{word-spacing:7.638000px;}
.ws115{word-spacing:7.695000px;}
.ws50{word-spacing:7.752000px;}
.ws92{word-spacing:7.866000px;}
.ws53{word-spacing:7.980000px;}
.ws2a{word-spacing:8.094000px;}
.ws111{word-spacing:8.265000px;}
.ws8f{word-spacing:8.322000px;}
.ws26{word-spacing:8.379000px;}
.ws16{word-spacing:8.424000px;}
.wsa8{word-spacing:8.493000px;}
.ws8{word-spacing:8.586000px;}
.wsa{word-spacing:8.640000px;}
.ws86{word-spacing:8.664000px;}
.ws7b{word-spacing:8.670000px;}
.ws3c{word-spacing:8.721000px;}
.ws72{word-spacing:8.778000px;}
.wsaf{word-spacing:8.823000px;}
.wsfe{word-spacing:8.892000px;}
.wsbd{word-spacing:9.006000px;}
.ws28{word-spacing:9.063000px;}
.ws47{word-spacing:9.120000px;}
.ws33{word-spacing:9.177000px;}
.wseb{word-spacing:9.202800px;}
.ws10f{word-spacing:9.234000px;}
.wsd9{word-spacing:9.291000px;}
.ws4b{word-spacing:9.348000px;}
.wsc7{word-spacing:9.405000px;}
.ws29{word-spacing:9.462000px;}
.ws4a{word-spacing:9.519000px;}
.ws78{word-spacing:9.576000px;}
.ws104{word-spacing:9.861000px;}
.ws105{word-spacing:9.918000px;}
.wsdd{word-spacing:9.975000px;}
.wsd3{word-spacing:10.032000px;}
.ws6b{word-spacing:10.146000px;}
.ws93{word-spacing:10.260000px;}
.ws2b{word-spacing:10.317000px;}
.wsf6{word-spacing:10.374000px;}
.wse3{word-spacing:10.431000px;}
.ws3f{word-spacing:10.488000px;}
.wsae{word-spacing:10.608000px;}
.ws107{word-spacing:10.659000px;}
.wsf1{word-spacing:10.773000px;}
.wsc5{word-spacing:10.887000px;}
.ws10{word-spacing:11.016000px;}
.ws2d{word-spacing:11.172000px;}
.wsf9{word-spacing:11.229000px;}
.ws21{word-spacing:11.556000px;}
.ws113{word-spacing:11.571000px;}
.ws46{word-spacing:11.685000px;}
.ws89{word-spacing:11.742000px;}
.ws6c{word-spacing:11.856000px;}
.ws66{word-spacing:11.970000px;}
.ws67{word-spacing:12.198000px;}
.wsff{word-spacing:12.255000px;}
.ws27{word-spacing:12.369000px;}
.ws103{word-spacing:12.882000px;}
.ws32{word-spacing:13.167000px;}
.wsd4{word-spacing:13.395000px;}
.wsf5{word-spacing:13.509000px;}
.ws9c{word-spacing:13.794000px;}
.ws8c{word-spacing:13.851000px;}
.ws10b{word-spacing:13.908000px;}
.wsc6{word-spacing:13.965000px;}
.wsf0{word-spacing:14.079000px;}
.wsab{word-spacing:14.250000px;}
.ws45{word-spacing:14.478000px;}
.ws10e{word-spacing:14.592000px;}
.wsf8{word-spacing:14.649000px;}
.ws3d{word-spacing:15.390000px;}
.ws102{word-spacing:15.447000px;}
.wsfb{word-spacing:15.618000px;}
.ws109{word-spacing:16.017000px;}
.ws34{word-spacing:16.131000px;}
.wsa6{word-spacing:17.385000px;}
.wsca{word-spacing:18.069000px;}
.ws10a{word-spacing:18.126000px;}
.wscf{word-spacing:18.297000px;}
.wse1{word-spacing:18.639000px;}
.ws6d{word-spacing:19.836000px;}
.wsde{word-spacing:20.064000px;}
.wscb{word-spacing:20.748000px;}
.ws6a{word-spacing:20.919000px;}
.ws88{word-spacing:22.971000px;}
.ws108{word-spacing:23.484000px;}
.ws97{word-spacing:27.645000px;}
.wsef{word-spacing:2261.376000px;}
.ws80{word-spacing:2263.152000px;}
._10{margin-left:-24.471000px;}
._13{margin-left:-18.194400px;}
._11{margin-left:-14.307000px;}
._c{margin-left:-11.358000px;}
._12{margin-left:-8.829300px;}
._5{margin-left:-7.005600px;}
._e{margin-left:-5.672400px;}
._6{margin-left:-4.586400px;}
._a{margin-left:-3.583800px;}
._4{margin-left:-2.532600px;}
._1{margin-left:-1.008000px;}
._2{width:1.738800px;}
._0{width:2.937600px;}
._14{width:4.176600px;}
._3{width:5.405400px;}
._f{width:6.552000px;}
._8{width:8.537400px;}
._b{width:9.986400px;}
._7{width:12.256800px;}
._9{width:16.780800px;}
._d{width:2260.798800px;}
.fc2{color:rgb(84,98,146);}
.fc1{color:rgb(32,64,111);}
.fc3{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:27.984000px;}
.fs8{font-size:33.231000px;}
.fs3{font-size:38.478000px;}
.fs9{font-size:45.000000px;}
.fs6{font-size:48.000000px;}
.fsa{font-size:51.000000px;}
.fs4{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs1{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y55{bottom:39.983250px;}
.ya0{bottom:39.983400px;}
.yee{bottom:87.936900px;}
.y115{bottom:90.186900px;}
.y9e{bottom:96.972600px;}
.y88{bottom:97.686900px;}
.ybf{bottom:97.728000px;}
.y2d{bottom:99.441750px;}
.y53{bottom:99.845550px;}
.yed{bottom:105.936900px;}
.y114{bottom:108.186900px;}
.y9d{bottom:111.972600px;}
.y2c{bottom:114.441750px;}
.y87{bottom:115.686900px;}
.ybe{bottom:115.728000px;}
.y52{bottom:117.845550px;}
.yec{bottom:123.936900px;}
.y9c{bottom:126.972600px;}
.y2b{bottom:129.441750px;}
.y113{bottom:132.486900px;}
.y86{bottom:133.686900px;}
.ybd{bottom:133.728000px;}
.y51{bottom:135.845550px;}
.yeb{bottom:141.936900px;}
.y2a{bottom:144.441750px;}
.y112{bottom:150.486900px;}
.y85{bottom:151.686900px;}
.ybc{bottom:151.728000px;}
.y50{bottom:153.845550px;}
.y29{bottom:159.441750px;}
.yea{bottom:159.936900px;}
.y111{bottom:168.486900px;}
.y84{bottom:169.686900px;}
.ybb{bottom:169.728000px;}
.y4f{bottom:171.845550px;}
.ye9{bottom:177.936900px;}
.y28{bottom:186.441750px;}
.y83{bottom:187.686900px;}
.yba{bottom:187.728000px;}
.y4e{bottom:189.845550px;}
.y110{bottom:192.786900px;}
.ye8{bottom:195.936900px;}
.y27{bottom:201.441750px;}
.y82{bottom:205.686900px;}
.yb9{bottom:205.728000px;}
.y4d{bottom:207.845550px;}
.y10f{bottom:210.786900px;}
.ye7{bottom:213.936900px;}
.y26{bottom:220.437750px;}
.y81{bottom:223.686900px;}
.yb8{bottom:223.728000px;}
.y4c{bottom:225.845550px;}
.y10e{bottom:228.786900px;}
.y25{bottom:231.441750px;}
.ye6{bottom:231.936900px;}
.y80{bottom:241.686900px;}
.yb7{bottom:241.728000px;}
.y4b{bottom:243.845550px;}
.y10d{bottom:246.786900px;}
.ye5{bottom:249.936900px;}
.y24{bottom:250.437750px;}
.y13d{bottom:251.533200px;}
.y7f{bottom:259.686900px;}
.yb6{bottom:259.728000px;}
.y23{bottom:261.441750px;}
.y4a{bottom:261.845550px;}
.ye4{bottom:267.936900px;}
.y13c{bottom:269.533200px;}
.y10c{bottom:271.086900px;}
.y22{bottom:276.441750px;}
.y7e{bottom:277.686900px;}
.yc3{bottom:277.728000px;}
.y49{bottom:279.845550px;}
.ye3{bottom:285.936900px;}
.yb5{bottom:286.728000px;}
.y14b{bottom:287.533200px;}
.y10b{bottom:289.086900px;}
.y13b{bottom:293.833200px;}
.y21{bottom:295.437750px;}
.y7d{bottom:295.686900px;}
.yc2{bottom:295.728000px;}
.y48{bottom:297.845550px;}
.ye2{bottom:303.936900px;}
.y10a{bottom:307.086900px;}
.y13a{bottom:311.833200px;}
.y7c{bottom:313.686900px;}
.yc1{bottom:313.728000px;}
.y47{bottom:315.845550px;}
.ye1{bottom:321.936900px;}
.y14a{bottom:329.833200px;}
.y20{bottom:331.295550px;}
.y109{bottom:331.386900px;}
.y7b{bottom:331.686900px;}
.yc0{bottom:331.728000px;}
.y46{bottom:333.845550px;}
.y139{bottom:336.133200px;}
.ye0{bottom:339.936900px;}
.y1f{bottom:349.295550px;}
.y108{bottom:349.386900px;}
.y7a{bottom:349.686900px;}
.yb4{bottom:349.728000px;}
.y45{bottom:351.845550px;}
.y138{bottom:354.133200px;}
.ydf{bottom:357.936900px;}
.y1e{bottom:367.295550px;}
.y79{bottom:367.686900px;}
.yb3{bottom:367.728000px;}
.y44{bottom:369.845550px;}
.y137{bottom:372.133200px;}
.y107{bottom:373.686900px;}
.yde{bottom:375.936900px;}
.y1d{bottom:385.295550px;}
.y78{bottom:385.686900px;}
.yb2{bottom:385.728000px;}
.y43{bottom:387.845550px;}
.y149{bottom:390.133200px;}
.y106{bottom:391.686900px;}
.ydd{bottom:393.936900px;}
.y136{bottom:396.433200px;}
.y1c{bottom:403.295550px;}
.y77{bottom:403.686900px;}
.yb1{bottom:403.728000px;}
.y42{bottom:405.845550px;}
.y105{bottom:409.686900px;}
.ydc{bottom:411.936900px;}
.y135{bottom:414.433200px;}
.y76{bottom:421.686900px;}
.yb0{bottom:421.728000px;}
.y41{bottom:423.845550px;}
.y104{bottom:427.686900px;}
.ydb{bottom:429.936900px;}
.y1b{bottom:430.295550px;}
.y134{bottom:432.433200px;}
.y9b{bottom:432.936900px;}
.y75{bottom:439.686900px;}
.yaf{bottom:439.728000px;}
.yda{bottom:447.936900px;}
.y1a{bottom:448.295550px;}
.y148{bottom:450.433200px;}
.y40{bottom:450.845550px;}
.y9a{bottom:450.936900px;}
.y103{bottom:456.186900px;}
.y133{bottom:456.733200px;}
.y74{bottom:457.686900px;}
.yae{bottom:457.728000px;}
.yd9{bottom:465.936900px;}
.y19{bottom:466.295550px;}
.y99{bottom:468.936900px;}
.y102{bottom:474.186900px;}
.y132{bottom:474.733200px;}
.y73{bottom:475.686900px;}
.yad{bottom:475.728000px;}
.yd8{bottom:483.936900px;}
.y18{bottom:484.295550px;}
.y98{bottom:486.936900px;}
.y101{bottom:492.186900px;}
.y131{bottom:492.733200px;}
.y72{bottom:493.686900px;}
.yac{bottom:493.728000px;}
.yd7{bottom:501.936900px;}
.y17{bottom:502.295550px;}
.y97{bottom:504.936900px;}
.y100{bottom:510.186900px;}
.y147{bottom:510.733200px;}
.y71{bottom:511.686900px;}
.yab{bottom:511.728000px;}
.y3f{bottom:513.095550px;}
.y130{bottom:517.033200px;}
.yd6{bottom:519.936900px;}
.y16{bottom:520.295550px;}
.yff{bottom:528.186900px;}
.y70{bottom:529.686900px;}
.yaa{bottom:529.728000px;}
.y96{bottom:530.436900px;}
.y3e{bottom:531.095550px;}
.y12f{bottom:535.033200px;}
.yd5{bottom:537.936900px;}
.y15{bottom:538.295550px;}
.y6f{bottom:547.686900px;}
.ya9{bottom:547.728000px;}
.y146{bottom:553.033200px;}
.yd4{bottom:555.936900px;}
.y14{bottom:556.295550px;}
.yfe{bottom:556.686900px;}
.y12e{bottom:559.333200px;}
.y6e{bottom:565.686900px;}
.ya8{bottom:565.728000px;}
.y3d{bottom:567.095550px;}
.y145{bottom:571.033200px;}
.yd3{bottom:573.936900px;}
.y13{bottom:574.295550px;}
.yfd{bottom:574.686900px;}
.y12d{bottom:577.333200px;}
.y6d{bottom:583.686900px;}
.ya7{bottom:583.728000px;}
.y3c{bottom:585.095550px;}
.yd2{bottom:591.936900px;}
.y12c{bottom:595.333200px;}
.y12{bottom:601.295550px;}
.y6c{bottom:601.686900px;}
.ya6{bottom:601.728000px;}
.y3b{bottom:603.095550px;}
.yfc{bottom:603.186900px;}
.yd1{bottom:609.936900px;}
.y144{bottom:613.333200px;}
.y11{bottom:619.295550px;}
.y12b{bottom:619.633200px;}
.y6b{bottom:619.686900px;}
.ya5{bottom:619.728000px;}
.y3a{bottom:621.095550px;}
.yfb{bottom:621.186900px;}
.yd0{bottom:627.936900px;}
.y143{bottom:631.333200px;}
.y10{bottom:637.295550px;}
.y12a{bottom:637.633200px;}
.y6a{bottom:637.686900px;}
.ya4{bottom:637.728000px;}
.y39{bottom:639.095550px;}
.yfa{bottom:639.186900px;}
.ycf{bottom:645.936900px;}
.yf{bottom:655.295550px;}
.y129{bottom:655.633200px;}
.y69{bottom:655.686900px;}
.ya3{bottom:655.728000px;}
.y38{bottom:657.095550px;}
.yf9{bottom:657.186900px;}
.yce{bottom:663.936900px;}
.ye{bottom:673.295550px;}
.y128{bottom:673.633200px;}
.y95{bottom:673.686900px;}
.ya2{bottom:673.728000px;}
.yf8{bottom:675.186900px;}
.ycd{bottom:681.936900px;}
.y68{bottom:682.686900px;}
.y37{bottom:684.095550px;}
.yd{bottom:691.295550px;}
.y94{bottom:691.686900px;}
.ya1{bottom:691.728000px;}
.y127{bottom:697.933200px;}
.ycc{bottom:699.936900px;}
.yf7{bottom:703.686900px;}
.yc{bottom:709.295550px;}
.y93{bottom:709.686900px;}
.y36{bottom:711.095550px;}
.y126{bottom:715.933200px;}
.ycb{bottom:717.936900px;}
.yf6{bottom:721.686900px;}
.y92{bottom:727.686900px;}
.y35{bottom:729.095550px;}
.yb{bottom:731.945550px;}
.y125{bottom:733.933200px;}
.y67{bottom:735.936900px;}
.yf5{bottom:739.686900px;}
.yc9{bottom:741.356250px;}
.y91{bottom:745.686900px;}
.y34{bottom:747.095550px;}
.yc6{bottom:747.476250px;}
.y66{bottom:753.936900px;}
.yc8{bottom:756.356250px;}
.yf4{bottom:757.686900px;}
.y124{bottom:758.233200px;}
.yc5{bottom:762.476250px;}
.y90{bottom:763.686900px;}
.y33{bottom:765.095550px;}
.yc7{bottom:771.356250px;}
.y65{bottom:771.936900px;}
.yf3{bottom:775.686900px;}
.y123{bottom:776.233200px;}
.ya{bottom:777.095550px;}
.yc4{bottom:777.476250px;}
.y8f{bottom:781.686900px;}
.y64{bottom:789.936900px;}
.y32{bottom:792.095550px;}
.y9{bottom:798.095550px;}
.y8e{bottom:799.686900px;}
.y122{bottom:800.533200px;}
.yf2{bottom:804.186900px;}
.y63{bottom:807.936900px;}
.y31{bottom:810.095550px;}
.y8d{bottom:817.686900px;}
.y121{bottom:818.533200px;}
.y8{bottom:819.095550px;}
.yf1{bottom:822.186900px;}
.y62{bottom:825.936900px;}
.y30{bottom:828.095550px;}
.y8c{bottom:835.686900px;}
.y142{bottom:836.533200px;}
.y7{bottom:840.095550px;}
.yf0{bottom:840.186900px;}
.y120{bottom:842.833200px;}
.y61{bottom:843.936900px;}
.y2f{bottom:846.095550px;}
.y8b{bottom:853.686900px;}
.y11f{bottom:860.833200px;}
.y6{bottom:861.095550px;}
.y60{bottom:861.936900px;}
.y2e{bottom:864.095550px;}
.y8a{bottom:871.686900px;}
.yef{bottom:878.436900px;}
.y141{bottom:878.833200px;}
.y5f{bottom:879.936900px;}
.y11e{bottom:885.133050px;}
.y140{bottom:896.833200px;}
.y5e{bottom:897.936900px;}
.y89{bottom:898.686900px;}
.y11d{bottom:903.133050px;}
.y5{bottom:915.095550px;}
.y5d{bottom:915.936900px;}
.y11c{bottom:921.133050px;}
.y5c{bottom:933.936900px;}
.y13f{bottom:939.133050px;}
.y11b{bottom:945.433200px;}
.y4{bottom:949.595550px;}
.y5b{bottom:951.936900px;}
.y11a{bottom:963.433200px;}
.y5a{bottom:969.936900px;}
.y119{bottom:981.433200px;}
.y3{bottom:984.095550px;}
.y59{bottom:987.936900px;}
.y13e{bottom:999.433200px;}
.y118{bottom:1005.733200px;}
.y58{bottom:1005.936900px;}
.y2{bottom:1018.595550px;}
.y117{bottom:1023.733200px;}
.y57{bottom:1023.936900px;}
.y116{bottom:1041.733200px;}
.y56{bottom:1041.936900px;}
.y1{bottom:1086.652500px;}
.y9f{bottom:1098.952350px;}
.y54{bottom:1098.969900px;}
.yca{bottom:1098.970050px;}
.h7{height:20.736144px;}
.hc{height:31.500000px;}
.h8{height:35.568000px;}
.hd{height:37.791000px;}
.h10{height:37.800000px;}
.hf{height:39.690000px;}
.he{height:39.900000px;}
.h5{height:39.960000px;}
.h6{height:40.014000px;}
.h11{height:41.097000px;}
.ha{height:42.237000px;}
.hb{height:43.605171px;}
.h4{height:50.490198px;}
.h9{height:52.920000px;}
.h2{height:53.352000px;}
.h3{height:93.366000px;}
.h1{height:1169.250000px;}
.h0{height:1169.292000px;}
.w0{width:905.670000px;}
.w1{width:906.000000px;}
.x0{left:0.000000px;}
.x2{left:74.475000px;}
.x1{left:83.520450px;}
.x6{left:92.475000px;}
.x3{left:466.334700px;}
.x4{left:484.334700px;}
.x5{left:572.093550px;}
@media print{
.v4{vertical-align:-16.872000pt;}
.v2{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:16.872000pt;}
.v1{vertical-align:19.536000pt;}
.ls7{letter-spacing:-2.215400pt;}
.ls6{letter-spacing:-2.185861pt;}
.ls8{letter-spacing:-1.447395pt;}
.ls4{letter-spacing:-0.288000pt;}
.ls9{letter-spacing:-0.177232pt;}
.lsb{letter-spacing:-0.152000pt;}
.ls2{letter-spacing:-0.144000pt;}
.ls3{letter-spacing:-0.048000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000005pt;}
.ls5{letter-spacing:0.800000pt;}
.lsa{letter-spacing:0.960000pt;}
.lsc{letter-spacing:6.285333pt;}
.ws39{word-spacing:-13.274667pt;}
.ws1{word-spacing:-12.576000pt;}
.ws24{word-spacing:-12.288000pt;}
.ws7f{word-spacing:-11.877333pt;}
.ws17{word-spacing:-11.178667pt;}
.wsee{word-spacing:-10.234667pt;}
.wsb4{word-spacing:-7.954667pt;}
.wsb5{word-spacing:-7.853333pt;}
.ws2{word-spacing:-7.739131pt;}
.wsb9{word-spacing:-7.600000pt;}
.ws7e{word-spacing:-7.561899pt;}
.ws0{word-spacing:-6.517163pt;}
.ws3a{word-spacing:-6.291736pt;}
.ws37{word-spacing:-5.553269pt;}
.ws38{word-spacing:-5.523731pt;}
.ws81{word-spacing:-3.546667pt;}
.ws68{word-spacing:-3.344000pt;}
.ws1d{word-spacing:-3.312000pt;}
.ws60{word-spacing:-3.141333pt;}
.wsaa{word-spacing:-2.989333pt;}
.wsa1{word-spacing:-2.888000pt;}
.ws4e{word-spacing:-2.584000pt;}
.ws25{word-spacing:-2.544000pt;}
.ws51{word-spacing:-2.533333pt;}
.ws59{word-spacing:-2.482667pt;}
.ws70{word-spacing:-2.432000pt;}
.ws10c{word-spacing:-2.381333pt;}
.ws101{word-spacing:-2.330667pt;}
.wscc{word-spacing:-2.280000pt;}
.ws6f{word-spacing:-2.178667pt;}
.ws95{word-spacing:-2.077333pt;}
.wscd{word-spacing:-2.026667pt;}
.ws9e{word-spacing:-1.925333pt;}
.wsf3{word-spacing:-1.824000pt;}
.ws12{word-spacing:-1.776000pt;}
.ws4d{word-spacing:-1.722667pt;}
.ws63{word-spacing:-1.672000pt;}
.wsd{word-spacing:-1.584000pt;}
.ws57{word-spacing:-1.570667pt;}
.wsd1{word-spacing:-1.520000pt;}
.ws13{word-spacing:-1.440000pt;}
.ws2e{word-spacing:-1.418667pt;}
.wsc4{word-spacing:-1.368000pt;}
.ws71{word-spacing:-1.317333pt;}
.wsb{word-spacing:-1.296000pt;}
.ws9a{word-spacing:-1.216000pt;}
.ws48{word-spacing:-1.114667pt;}
.wsd7{word-spacing:-1.008000pt;}
.wsfa{word-spacing:-0.962667pt;}
.wsda{word-spacing:-0.960000pt;}
.wsc0{word-spacing:-0.912000pt;}
.ws83{word-spacing:-0.861333pt;}
.wse9{word-spacing:-0.824533pt;}
.wsba{word-spacing:-0.810667pt;}
.ws65{word-spacing:-0.760000pt;}
.wsb8{word-spacing:-0.753600pt;}
.wsa0{word-spacing:-0.709333pt;}
.wse{word-spacing:-0.672000pt;}
.ws9d{word-spacing:-0.658667pt;}
.ws7{word-spacing:-0.624000pt;}
.ws10d{word-spacing:-0.608000pt;}
.ws98{word-spacing:-0.557333pt;}
.wsf4{word-spacing:-0.506667pt;}
.wsd5{word-spacing:-0.480000pt;}
.ws5f{word-spacing:-0.456000pt;}
.ws62{word-spacing:-0.405333pt;}
.ws3b{word-spacing:-0.400000pt;}
.ws56{word-spacing:-0.304000pt;}
.ws1e{word-spacing:-0.288000pt;}
.ws41{word-spacing:-0.253333pt;}
.ws2c{word-spacing:-0.202667pt;}
.ws5d{word-spacing:-0.101333pt;}
.ws1b{word-spacing:-0.096000pt;}
.ws3{word-spacing:0.000000pt;}
.wsa5{word-spacing:0.050667pt;}
.ws1c{word-spacing:0.144000pt;}
.ws55{word-spacing:0.253333pt;}
.wsbe{word-spacing:0.304000pt;}
.ws6e{word-spacing:0.354667pt;}
.ws3e{word-spacing:0.456000pt;}
.ws5{word-spacing:0.480000pt;}
.ws96{word-spacing:0.506667pt;}
.ws74{word-spacing:0.557333pt;}
.ws69{word-spacing:0.709333pt;}
.ws8e{word-spacing:0.760000pt;}
.wsb3{word-spacing:0.770667pt;}
.ws58{word-spacing:0.861333pt;}
.wsea{word-spacing:0.916800pt;}
.ws8b{word-spacing:0.962667pt;}
.wsc2{word-spacing:1.013333pt;}
.ws54{word-spacing:1.064000pt;}
.wsf{word-spacing:1.104000pt;}
.ws79{word-spacing:1.114667pt;}
.wsce{word-spacing:1.266667pt;}
.ws114{word-spacing:1.317333pt;}
.ws1a{word-spacing:1.344000pt;}
.wse6{word-spacing:1.368000pt;}
.ws87{word-spacing:1.418667pt;}
.wsa9{word-spacing:1.520000pt;}
.wsfd{word-spacing:1.570667pt;}
.ws49{word-spacing:1.621333pt;}
.ws52{word-spacing:1.672000pt;}
.ws6{word-spacing:1.680000pt;}
.ws14{word-spacing:1.728000pt;}
.wse5{word-spacing:1.741867pt;}
.ws23{word-spacing:1.872000pt;}
.wsa3{word-spacing:2.026667pt;}
.wsd2{word-spacing:2.077333pt;}
.wsed{word-spacing:2.084800pt;}
.ws4{word-spacing:2.112000pt;}
.ws31{word-spacing:2.128000pt;}
.wse7{word-spacing:2.131200pt;}
.wsdc{word-spacing:2.178667pt;}
.wsd8{word-spacing:2.229333pt;}
.ws36{word-spacing:2.330667pt;}
.ws94{word-spacing:2.381333pt;}
.wsa7{word-spacing:2.432000pt;}
.wsc{word-spacing:2.448000pt;}
.ws90{word-spacing:2.482667pt;}
.wsf2{word-spacing:2.584000pt;}
.wsb0{word-spacing:2.629333pt;}
.ws4c{word-spacing:2.634667pt;}
.wsf7{word-spacing:2.685333pt;}
.ws18{word-spacing:2.736000pt;}
.wse8{word-spacing:2.777600pt;}
.ws9f{word-spacing:2.786667pt;}
.wsdb{word-spacing:2.837333pt;}
.wsa4{word-spacing:2.888000pt;}
.wse4{word-spacing:2.938667pt;}
.ws76{word-spacing:2.989333pt;}
.ws44{word-spacing:3.040000pt;}
.ws22{word-spacing:3.120000pt;}
.ws77{word-spacing:3.141333pt;}
.wsc8{word-spacing:3.192000pt;}
.wsad{word-spacing:3.293333pt;}
.wsbf{word-spacing:3.344000pt;}
.wsd6{word-spacing:3.394667pt;}
.ws2f{word-spacing:3.445333pt;}
.ws5a{word-spacing:3.546667pt;}
.ws9{word-spacing:3.600000pt;}
.ws100{word-spacing:3.648000pt;}
.wsa2{word-spacing:3.698667pt;}
.wsfc{word-spacing:3.749333pt;}
.ws64{word-spacing:3.800000pt;}
.wsac{word-spacing:3.850667pt;}
.wsd0{word-spacing:3.952000pt;}
.wsc9{word-spacing:4.002667pt;}
.wsbc{word-spacing:4.053333pt;}
.ws11{word-spacing:4.080000pt;}
.ws5c{word-spacing:4.104000pt;}
.ws75{word-spacing:4.205333pt;}
.ws84{word-spacing:4.256000pt;}
.ws19{word-spacing:4.320000pt;}
.ws9b{word-spacing:4.357333pt;}
.wsec{word-spacing:4.511467pt;}
.ws82{word-spacing:4.560000pt;}
.ws4f{word-spacing:4.610667pt;}
.wsbb{word-spacing:4.661333pt;}
.ws30{word-spacing:4.712000pt;}
.ws42{word-spacing:4.762667pt;}
.wse0{word-spacing:4.813333pt;}
.wsb7{word-spacing:4.852800pt;}
.ws61{word-spacing:4.864000pt;}
.wsb2{word-spacing:4.896000pt;}
.wse2{word-spacing:4.965333pt;}
.ws35{word-spacing:5.016000pt;}
.ws73{word-spacing:5.066667pt;}
.ws5b{word-spacing:5.168000pt;}
.ws7a{word-spacing:5.269333pt;}
.ws5e{word-spacing:5.320000pt;}
.ws20{word-spacing:5.424000pt;}
.ws110{word-spacing:5.522667pt;}
.ws1f{word-spacing:5.568000pt;}
.ws112{word-spacing:5.624000pt;}
.ws85{word-spacing:5.725333pt;}
.wsb6{word-spacing:5.819200pt;}
.wsb1{word-spacing:5.848000pt;}
.wsc3{word-spacing:5.928000pt;}
.ws99{word-spacing:5.978667pt;}
.ws15{word-spacing:6.000000pt;}
.ws43{word-spacing:6.029333pt;}
.ws40{word-spacing:6.080000pt;}
.ws8d{word-spacing:6.130667pt;}
.ws91{word-spacing:6.181333pt;}
.wsdf{word-spacing:6.232000pt;}
.ws7c{word-spacing:6.392000pt;}
.wsc1{word-spacing:6.434667pt;}
.ws116{word-spacing:6.586667pt;}
.ws7d{word-spacing:6.709333pt;}
.ws8a{word-spacing:6.738667pt;}
.ws106{word-spacing:6.789333pt;}
.ws115{word-spacing:6.840000pt;}
.ws50{word-spacing:6.890667pt;}
.ws92{word-spacing:6.992000pt;}
.ws53{word-spacing:7.093333pt;}
.ws2a{word-spacing:7.194667pt;}
.ws111{word-spacing:7.346667pt;}
.ws8f{word-spacing:7.397333pt;}
.ws26{word-spacing:7.448000pt;}
.ws16{word-spacing:7.488000pt;}
.wsa8{word-spacing:7.549333pt;}
.ws8{word-spacing:7.632000pt;}
.wsa{word-spacing:7.680000pt;}
.ws86{word-spacing:7.701333pt;}
.ws7b{word-spacing:7.706667pt;}
.ws3c{word-spacing:7.752000pt;}
.ws72{word-spacing:7.802667pt;}
.wsaf{word-spacing:7.842667pt;}
.wsfe{word-spacing:7.904000pt;}
.wsbd{word-spacing:8.005333pt;}
.ws28{word-spacing:8.056000pt;}
.ws47{word-spacing:8.106667pt;}
.ws33{word-spacing:8.157333pt;}
.wseb{word-spacing:8.180267pt;}
.ws10f{word-spacing:8.208000pt;}
.wsd9{word-spacing:8.258667pt;}
.ws4b{word-spacing:8.309333pt;}
.wsc7{word-spacing:8.360000pt;}
.ws29{word-spacing:8.410667pt;}
.ws4a{word-spacing:8.461333pt;}
.ws78{word-spacing:8.512000pt;}
.ws104{word-spacing:8.765333pt;}
.ws105{word-spacing:8.816000pt;}
.wsdd{word-spacing:8.866667pt;}
.wsd3{word-spacing:8.917333pt;}
.ws6b{word-spacing:9.018667pt;}
.ws93{word-spacing:9.120000pt;}
.ws2b{word-spacing:9.170667pt;}
.wsf6{word-spacing:9.221333pt;}
.wse3{word-spacing:9.272000pt;}
.ws3f{word-spacing:9.322667pt;}
.wsae{word-spacing:9.429333pt;}
.ws107{word-spacing:9.474667pt;}
.wsf1{word-spacing:9.576000pt;}
.wsc5{word-spacing:9.677333pt;}
.ws10{word-spacing:9.792000pt;}
.ws2d{word-spacing:9.930667pt;}
.wsf9{word-spacing:9.981333pt;}
.ws21{word-spacing:10.272000pt;}
.ws113{word-spacing:10.285333pt;}
.ws46{word-spacing:10.386667pt;}
.ws89{word-spacing:10.437333pt;}
.ws6c{word-spacing:10.538667pt;}
.ws66{word-spacing:10.640000pt;}
.ws67{word-spacing:10.842667pt;}
.wsff{word-spacing:10.893333pt;}
.ws27{word-spacing:10.994667pt;}
.ws103{word-spacing:11.450667pt;}
.ws32{word-spacing:11.704000pt;}
.wsd4{word-spacing:11.906667pt;}
.wsf5{word-spacing:12.008000pt;}
.ws9c{word-spacing:12.261333pt;}
.ws8c{word-spacing:12.312000pt;}
.ws10b{word-spacing:12.362667pt;}
.wsc6{word-spacing:12.413333pt;}
.wsf0{word-spacing:12.514667pt;}
.wsab{word-spacing:12.666667pt;}
.ws45{word-spacing:12.869333pt;}
.ws10e{word-spacing:12.970667pt;}
.wsf8{word-spacing:13.021333pt;}
.ws3d{word-spacing:13.680000pt;}
.ws102{word-spacing:13.730667pt;}
.wsfb{word-spacing:13.882667pt;}
.ws109{word-spacing:14.237333pt;}
.ws34{word-spacing:14.338667pt;}
.wsa6{word-spacing:15.453333pt;}
.wsca{word-spacing:16.061333pt;}
.ws10a{word-spacing:16.112000pt;}
.wscf{word-spacing:16.264000pt;}
.wse1{word-spacing:16.568000pt;}
.ws6d{word-spacing:17.632000pt;}
.wsde{word-spacing:17.834667pt;}
.wscb{word-spacing:18.442667pt;}
.ws6a{word-spacing:18.594667pt;}
.ws88{word-spacing:20.418667pt;}
.ws108{word-spacing:20.874667pt;}
.ws97{word-spacing:24.573333pt;}
.wsef{word-spacing:2010.112000pt;}
.ws80{word-spacing:2011.690667pt;}
._10{margin-left:-21.752000pt;}
._13{margin-left:-16.172800pt;}
._11{margin-left:-12.717333pt;}
._c{margin-left:-10.096000pt;}
._12{margin-left:-7.848267pt;}
._5{margin-left:-6.227200pt;}
._e{margin-left:-5.042133pt;}
._6{margin-left:-4.076800pt;}
._a{margin-left:-3.185600pt;}
._4{margin-left:-2.251200pt;}
._1{margin-left:-0.896000pt;}
._2{width:1.545600pt;}
._0{width:2.611200pt;}
._14{width:3.712533pt;}
._3{width:4.804800pt;}
._f{width:5.824000pt;}
._8{width:7.588800pt;}
._b{width:8.876800pt;}
._7{width:10.894933pt;}
._9{width:14.916267pt;}
._d{width:2009.598933pt;}
.fs5{font-size:24.874667pt;}
.fs8{font-size:29.538667pt;}
.fs3{font-size:34.202667pt;}
.fs9{font-size:40.000000pt;}
.fs6{font-size:42.666667pt;}
.fsa{font-size:45.333333pt;}
.fs4{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs1{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y55{bottom:35.540667pt;}
.ya0{bottom:35.540800pt;}
.yee{bottom:78.166133pt;}
.y115{bottom:80.166133pt;}
.y9e{bottom:86.197867pt;}
.y88{bottom:86.832800pt;}
.ybf{bottom:86.869333pt;}
.y2d{bottom:88.392667pt;}
.y53{bottom:88.751600pt;}
.yed{bottom:94.166133pt;}
.y114{bottom:96.166133pt;}
.y9d{bottom:99.531200pt;}
.y2c{bottom:101.726000pt;}
.y87{bottom:102.832800pt;}
.ybe{bottom:102.869333pt;}
.y52{bottom:104.751600pt;}
.yec{bottom:110.166133pt;}
.y9c{bottom:112.864533pt;}
.y2b{bottom:115.059333pt;}
.y113{bottom:117.766133pt;}
.y86{bottom:118.832800pt;}
.ybd{bottom:118.869333pt;}
.y51{bottom:120.751600pt;}
.yeb{bottom:126.166133pt;}
.y2a{bottom:128.392667pt;}
.y112{bottom:133.766133pt;}
.y85{bottom:134.832800pt;}
.ybc{bottom:134.869333pt;}
.y50{bottom:136.751600pt;}
.y29{bottom:141.726000pt;}
.yea{bottom:142.166133pt;}
.y111{bottom:149.766133pt;}
.y84{bottom:150.832800pt;}
.ybb{bottom:150.869333pt;}
.y4f{bottom:152.751600pt;}
.ye9{bottom:158.166133pt;}
.y28{bottom:165.726000pt;}
.y83{bottom:166.832800pt;}
.yba{bottom:166.869333pt;}
.y4e{bottom:168.751600pt;}
.y110{bottom:171.366133pt;}
.ye8{bottom:174.166133pt;}
.y27{bottom:179.059333pt;}
.y82{bottom:182.832800pt;}
.yb9{bottom:182.869333pt;}
.y4d{bottom:184.751600pt;}
.y10f{bottom:187.366133pt;}
.ye7{bottom:190.166133pt;}
.y26{bottom:195.944667pt;}
.y81{bottom:198.832800pt;}
.yb8{bottom:198.869333pt;}
.y4c{bottom:200.751600pt;}
.y10e{bottom:203.366133pt;}
.y25{bottom:205.726000pt;}
.ye6{bottom:206.166133pt;}
.y80{bottom:214.832800pt;}
.yb7{bottom:214.869333pt;}
.y4b{bottom:216.751600pt;}
.y10d{bottom:219.366133pt;}
.ye5{bottom:222.166133pt;}
.y24{bottom:222.611333pt;}
.y13d{bottom:223.585067pt;}
.y7f{bottom:230.832800pt;}
.yb6{bottom:230.869333pt;}
.y23{bottom:232.392667pt;}
.y4a{bottom:232.751600pt;}
.ye4{bottom:238.166133pt;}
.y13c{bottom:239.585067pt;}
.y10c{bottom:240.966133pt;}
.y22{bottom:245.726000pt;}
.y7e{bottom:246.832800pt;}
.yc3{bottom:246.869333pt;}
.y49{bottom:248.751600pt;}
.ye3{bottom:254.166133pt;}
.yb5{bottom:254.869333pt;}
.y14b{bottom:255.585067pt;}
.y10b{bottom:256.966133pt;}
.y13b{bottom:261.185067pt;}
.y21{bottom:262.611333pt;}
.y7d{bottom:262.832800pt;}
.yc2{bottom:262.869333pt;}
.y48{bottom:264.751600pt;}
.ye2{bottom:270.166133pt;}
.y10a{bottom:272.966133pt;}
.y13a{bottom:277.185067pt;}
.y7c{bottom:278.832800pt;}
.yc1{bottom:278.869333pt;}
.y47{bottom:280.751600pt;}
.ye1{bottom:286.166133pt;}
.y14a{bottom:293.185067pt;}
.y20{bottom:294.484933pt;}
.y109{bottom:294.566133pt;}
.y7b{bottom:294.832800pt;}
.yc0{bottom:294.869333pt;}
.y46{bottom:296.751600pt;}
.y139{bottom:298.785067pt;}
.ye0{bottom:302.166133pt;}
.y1f{bottom:310.484933pt;}
.y108{bottom:310.566133pt;}
.y7a{bottom:310.832800pt;}
.yb4{bottom:310.869333pt;}
.y45{bottom:312.751600pt;}
.y138{bottom:314.785067pt;}
.ydf{bottom:318.166133pt;}
.y1e{bottom:326.484933pt;}
.y79{bottom:326.832800pt;}
.yb3{bottom:326.869333pt;}
.y44{bottom:328.751600pt;}
.y137{bottom:330.785067pt;}
.y107{bottom:332.166133pt;}
.yde{bottom:334.166133pt;}
.y1d{bottom:342.484933pt;}
.y78{bottom:342.832800pt;}
.yb2{bottom:342.869333pt;}
.y43{bottom:344.751600pt;}
.y149{bottom:346.785067pt;}
.y106{bottom:348.166133pt;}
.ydd{bottom:350.166133pt;}
.y136{bottom:352.385067pt;}
.y1c{bottom:358.484933pt;}
.y77{bottom:358.832800pt;}
.yb1{bottom:358.869333pt;}
.y42{bottom:360.751600pt;}
.y105{bottom:364.166133pt;}
.ydc{bottom:366.166133pt;}
.y135{bottom:368.385067pt;}
.y76{bottom:374.832800pt;}
.yb0{bottom:374.869333pt;}
.y41{bottom:376.751600pt;}
.y104{bottom:380.166133pt;}
.ydb{bottom:382.166133pt;}
.y1b{bottom:382.484933pt;}
.y134{bottom:384.385067pt;}
.y9b{bottom:384.832800pt;}
.y75{bottom:390.832800pt;}
.yaf{bottom:390.869333pt;}
.yda{bottom:398.166133pt;}
.y1a{bottom:398.484933pt;}
.y148{bottom:400.385067pt;}
.y40{bottom:400.751600pt;}
.y9a{bottom:400.832800pt;}
.y103{bottom:405.499467pt;}
.y133{bottom:405.985067pt;}
.y74{bottom:406.832800pt;}
.yae{bottom:406.869333pt;}
.yd9{bottom:414.166133pt;}
.y19{bottom:414.484933pt;}
.y99{bottom:416.832800pt;}
.y102{bottom:421.499467pt;}
.y132{bottom:421.985067pt;}
.y73{bottom:422.832800pt;}
.yad{bottom:422.869333pt;}
.yd8{bottom:430.166133pt;}
.y18{bottom:430.484933pt;}
.y98{bottom:432.832800pt;}
.y101{bottom:437.499467pt;}
.y131{bottom:437.985067pt;}
.y72{bottom:438.832800pt;}
.yac{bottom:438.869333pt;}
.yd7{bottom:446.166133pt;}
.y17{bottom:446.484933pt;}
.y97{bottom:448.832800pt;}
.y100{bottom:453.499467pt;}
.y147{bottom:453.985067pt;}
.y71{bottom:454.832800pt;}
.yab{bottom:454.869333pt;}
.y3f{bottom:456.084933pt;}
.y130{bottom:459.585067pt;}
.yd6{bottom:462.166133pt;}
.y16{bottom:462.484933pt;}
.yff{bottom:469.499467pt;}
.y70{bottom:470.832800pt;}
.yaa{bottom:470.869333pt;}
.y96{bottom:471.499467pt;}
.y3e{bottom:472.084933pt;}
.y12f{bottom:475.585067pt;}
.yd5{bottom:478.166133pt;}
.y15{bottom:478.484933pt;}
.y6f{bottom:486.832800pt;}
.ya9{bottom:486.869333pt;}
.y146{bottom:491.585067pt;}
.yd4{bottom:494.166133pt;}
.y14{bottom:494.484933pt;}
.yfe{bottom:494.832800pt;}
.y12e{bottom:497.185067pt;}
.y6e{bottom:502.832800pt;}
.ya8{bottom:502.869333pt;}
.y3d{bottom:504.084933pt;}
.y145{bottom:507.585067pt;}
.yd3{bottom:510.166133pt;}
.y13{bottom:510.484933pt;}
.yfd{bottom:510.832800pt;}
.y12d{bottom:513.185067pt;}
.y6d{bottom:518.832800pt;}
.ya7{bottom:518.869333pt;}
.y3c{bottom:520.084933pt;}
.yd2{bottom:526.166133pt;}
.y12c{bottom:529.185067pt;}
.y12{bottom:534.484933pt;}
.y6c{bottom:534.832800pt;}
.ya6{bottom:534.869333pt;}
.y3b{bottom:536.084933pt;}
.yfc{bottom:536.166133pt;}
.yd1{bottom:542.166133pt;}
.y144{bottom:545.185067pt;}
.y11{bottom:550.484933pt;}
.y12b{bottom:550.785067pt;}
.y6b{bottom:550.832800pt;}
.ya5{bottom:550.869333pt;}
.y3a{bottom:552.084933pt;}
.yfb{bottom:552.166133pt;}
.yd0{bottom:558.166133pt;}
.y143{bottom:561.185067pt;}
.y10{bottom:566.484933pt;}
.y12a{bottom:566.785067pt;}
.y6a{bottom:566.832800pt;}
.ya4{bottom:566.869333pt;}
.y39{bottom:568.084933pt;}
.yfa{bottom:568.166133pt;}
.ycf{bottom:574.166133pt;}
.yf{bottom:582.484933pt;}
.y129{bottom:582.785067pt;}
.y69{bottom:582.832800pt;}
.ya3{bottom:582.869333pt;}
.y38{bottom:584.084933pt;}
.yf9{bottom:584.166133pt;}
.yce{bottom:590.166133pt;}
.ye{bottom:598.484933pt;}
.y128{bottom:598.785067pt;}
.y95{bottom:598.832800pt;}
.ya2{bottom:598.869333pt;}
.yf8{bottom:600.166133pt;}
.ycd{bottom:606.166133pt;}
.y68{bottom:606.832800pt;}
.y37{bottom:608.084933pt;}
.yd{bottom:614.484933pt;}
.y94{bottom:614.832800pt;}
.ya1{bottom:614.869333pt;}
.y127{bottom:620.385067pt;}
.ycc{bottom:622.166133pt;}
.yf7{bottom:625.499467pt;}
.yc{bottom:630.484933pt;}
.y93{bottom:630.832800pt;}
.y36{bottom:632.084933pt;}
.y126{bottom:636.385067pt;}
.ycb{bottom:638.166133pt;}
.yf6{bottom:641.499467pt;}
.y92{bottom:646.832800pt;}
.y35{bottom:648.084933pt;}
.yb{bottom:650.618267pt;}
.y125{bottom:652.385067pt;}
.y67{bottom:654.166133pt;}
.yf5{bottom:657.499467pt;}
.yc9{bottom:658.983333pt;}
.y91{bottom:662.832800pt;}
.y34{bottom:664.084933pt;}
.yc6{bottom:664.423333pt;}
.y66{bottom:670.166133pt;}
.yc8{bottom:672.316667pt;}
.yf4{bottom:673.499467pt;}
.y124{bottom:673.985067pt;}
.yc5{bottom:677.756667pt;}
.y90{bottom:678.832800pt;}
.y33{bottom:680.084933pt;}
.yc7{bottom:685.650000pt;}
.y65{bottom:686.166133pt;}
.yf3{bottom:689.499467pt;}
.y123{bottom:689.985067pt;}
.ya{bottom:690.751600pt;}
.yc4{bottom:691.090000pt;}
.y8f{bottom:694.832800pt;}
.y64{bottom:702.166133pt;}
.y32{bottom:704.084933pt;}
.y9{bottom:709.418267pt;}
.y8e{bottom:710.832800pt;}
.y122{bottom:711.585067pt;}
.yf2{bottom:714.832800pt;}
.y63{bottom:718.166133pt;}
.y31{bottom:720.084933pt;}
.y8d{bottom:726.832800pt;}
.y121{bottom:727.585067pt;}
.y8{bottom:728.084933pt;}
.yf1{bottom:730.832800pt;}
.y62{bottom:734.166133pt;}
.y30{bottom:736.084933pt;}
.y8c{bottom:742.832800pt;}
.y142{bottom:743.585067pt;}
.y7{bottom:746.751600pt;}
.yf0{bottom:746.832800pt;}
.y120{bottom:749.185067pt;}
.y61{bottom:750.166133pt;}
.y2f{bottom:752.084933pt;}
.y8b{bottom:758.832800pt;}
.y11f{bottom:765.185067pt;}
.y6{bottom:765.418267pt;}
.y60{bottom:766.166133pt;}
.y2e{bottom:768.084933pt;}
.y8a{bottom:774.832800pt;}
.yef{bottom:780.832800pt;}
.y141{bottom:781.185067pt;}
.y5f{bottom:782.166133pt;}
.y11e{bottom:786.784933pt;}
.y140{bottom:797.185067pt;}
.y5e{bottom:798.166133pt;}
.y89{bottom:798.832800pt;}
.y11d{bottom:802.784933pt;}
.y5{bottom:813.418267pt;}
.y5d{bottom:814.166133pt;}
.y11c{bottom:818.784933pt;}
.y5c{bottom:830.166133pt;}
.y13f{bottom:834.784933pt;}
.y11b{bottom:840.385067pt;}
.y4{bottom:844.084933pt;}
.y5b{bottom:846.166133pt;}
.y11a{bottom:856.385067pt;}
.y5a{bottom:862.166133pt;}
.y119{bottom:872.385067pt;}
.y3{bottom:874.751600pt;}
.y59{bottom:878.166133pt;}
.y13e{bottom:888.385067pt;}
.y118{bottom:893.985067pt;}
.y58{bottom:894.166133pt;}
.y2{bottom:905.418267pt;}
.y117{bottom:909.985067pt;}
.y57{bottom:910.166133pt;}
.y116{bottom:925.985067pt;}
.y56{bottom:926.166133pt;}
.y1{bottom:965.913333pt;}
.y9f{bottom:976.846533pt;}
.y54{bottom:976.862133pt;}
.yca{bottom:976.862267pt;}
.h7{height:18.432128pt;}
.hc{height:28.000000pt;}
.h8{height:31.616000pt;}
.hd{height:33.592000pt;}
.h10{height:33.600000pt;}
.hf{height:35.280000pt;}
.he{height:35.466667pt;}
.h5{height:35.520000pt;}
.h6{height:35.568000pt;}
.h11{height:36.530667pt;}
.ha{height:37.544000pt;}
.hb{height:38.760152pt;}
.h4{height:44.880176pt;}
.h9{height:47.040000pt;}
.h2{height:47.424000pt;}
.h3{height:82.992000pt;}
.h1{height:1039.333333pt;}
.h0{height:1039.370667pt;}
.w0{width:805.040000pt;}
.w1{width:805.333333pt;}
.x0{left:0.000000pt;}
.x2{left:66.200000pt;}
.x1{left:74.240400pt;}
.x6{left:82.200000pt;}
.x3{left:414.519733pt;}
.x4{left:430.519733pt;}
.x5{left:508.527600pt;}
}




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