
    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_03ad58d342e6b1c51f13eea5.woff')format("woff");}.ff1{font-family:ff1;line-height:0.825000;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_134116f6a84681047f988417.woff')format("woff");}.ff2{font-family:ff2;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_4f9371231551f97fb3d8fb0f.woff')format("woff");}.ff3{font-family:ff3;line-height:1.223000;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_13e97afd790216687f772cd4.woff')format("woff");}.ff4{font-family:ff4;line-height:1.136000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1fa1c84151ba266218eb2063.woff')format("woff");}.ff5{font-family:ff5;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_fb11ccaa97e4aedef4577984.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090000;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_1dae859f78e8781adf517147.woff')format("woff");}.ff7{font-family:ff7;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_796e46e86553c6e5a03881a1.woff')format("woff");}.ff8{font-family:ff8;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2ad9da900bf06032dc7e2f40.woff')format("woff");}.ff9{font-family:ff9;line-height:1.328000;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_f83381241fce119ad4f33f18.woff')format("woff");}.ffa{font-family:ffa;line-height:0.951660;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_1966ada4342e7d8458ce8bc3.woff')format("woff");}.ffb{font-family:ffb;line-height:0.487000;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_20c5e8e2f710b9bf0a5c7349.woff')format("woff");}.ffc{font-family:ffc;line-height:0.921875;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.200005px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.800293px;}
.lsa{letter-spacing:-1.824000px;}
.ls20{letter-spacing:-0.960000px;}
.ls19{letter-spacing:-0.768000px;}
.ls9{letter-spacing:-0.720000px;}
.lsb{letter-spacing:-0.576000px;}
.lsc{letter-spacing:-0.570000px;}
.ls1f{letter-spacing:-0.480000px;}
.ls17{letter-spacing:-0.288000px;}
.ls7{letter-spacing:-0.171000px;}
.ls6{letter-spacing:-0.114000px;}
.ls18{letter-spacing:-0.048000px;}
.ls1{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.148800px;}
.ls4{letter-spacing:0.171000px;}
.ls24{letter-spacing:0.187190px;}
.lse{letter-spacing:0.192000px;}
.ls5{letter-spacing:0.285000px;}
.ls21{letter-spacing:0.431990px;}
.ls22{letter-spacing:0.580760px;}
.ls25{letter-spacing:0.671981px;}
.ls11{letter-spacing:0.671982px;}
.lsd{letter-spacing:0.672000px;}
.ls10{letter-spacing:0.676782px;}
.ls26{letter-spacing:0.676800px;}
.ls3{letter-spacing:0.684000px;}
.ls2{letter-spacing:0.798000px;}
.ls14{letter-spacing:0.964800px;}
.ls1e{letter-spacing:2.078400px;}
.ls15{letter-spacing:3.129555px;}
.ls1d{letter-spacing:3.144000px;}
.ls0{letter-spacing:3.360000px;}
.ls1c{letter-spacing:4.089527px;}
.ls1b{letter-spacing:4.847971px;}
.ls13{letter-spacing:5.140800px;}
.ls1a{letter-spacing:5.712060px;}
.lsf{letter-spacing:6.287992px;}
.ls27{letter-spacing:7.012854px;}
.ls29{letter-spacing:7.012866px;}
.ls12{letter-spacing:7.440000px;}
.ls28{letter-spacing:7.636857px;}
.ls16{letter-spacing:11.188854px;}
.ls8{letter-spacing:61.968000px;}
.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;}
}
.ws7{word-spacing:-14.250000px;}
.ws4e{word-spacing:-13.332000px;}
.ws2{word-spacing:-13.296000px;}
.wse7{word-spacing:-12.672000px;}
.wsf8{word-spacing:-12.192000px;}
.ws78{word-spacing:-12.000000px;}
.wsf5{word-spacing:-11.952000px;}
.ws3{word-spacing:-11.799000px;}
.wsf2{word-spacing:-11.712000px;}
.ws118{word-spacing:-11.520000px;}
.ws5{word-spacing:-11.514000px;}
.ws129{word-spacing:-11.280000px;}
.wse8{word-spacing:-11.232000px;}
.ws11b{word-spacing:-11.040000px;}
.ws6{word-spacing:-10.944000px;}
.ws1{word-spacing:-9.408000px;}
.wsd6{word-spacing:-9.216000px;}
.ws8{word-spacing:-8.400000px;}
.ws4{word-spacing:-8.259300px;}
.ws85{word-spacing:-6.000000px;}
.ws70{word-spacing:-2.040000px;}
.ws5a{word-spacing:-1.425000px;}
.wscc{word-spacing:-1.083000px;}
.wsba{word-spacing:-0.912000px;}
.ws12d{word-spacing:-0.864000px;}
.ws5f{word-spacing:-0.855000px;}
.ws12f{word-spacing:-0.816000px;}
.ws52{word-spacing:-0.798000px;}
.ws25{word-spacing:-0.741000px;}
.ws5c{word-spacing:-0.684000px;}
.wsef{word-spacing:-0.672000px;}
.wsc0{word-spacing:-0.627000px;}
.wsb5{word-spacing:-0.570000px;}
.ws12e{word-spacing:-0.528000px;}
.ws34{word-spacing:-0.513000px;}
.wsea{word-spacing:-0.480000px;}
.ws6b{word-spacing:-0.456000px;}
.ws11f{word-spacing:-0.432000px;}
.ws45{word-spacing:-0.399000px;}
.wsff{word-spacing:-0.384000px;}
.ws51{word-spacing:-0.342000px;}
.ws105{word-spacing:-0.336000px;}
.ws127{word-spacing:-0.288000px;}
.ws59{word-spacing:-0.285000px;}
.wsf7{word-spacing:-0.192000px;}
.wsbf{word-spacing:-0.171000px;}
.ws141{word-spacing:-0.144000px;}
.wsab{word-spacing:-0.114000px;}
.ws115{word-spacing:-0.096000px;}
.ws0{word-spacing:-0.048000px;}
.ws9{word-spacing:0.000000px;}
.wsf4{word-spacing:0.048000px;}
.ws5e{word-spacing:0.057000px;}
.ws62{word-spacing:0.114000px;}
.wseb{word-spacing:0.144000px;}
.ws5b{word-spacing:0.171000px;}
.ws107{word-spacing:0.192000px;}
.ws42{word-spacing:0.228000px;}
.wsa{word-spacing:0.285000px;}
.wsf1{word-spacing:0.288000px;}
.ws119{word-spacing:0.336000px;}
.wsad{word-spacing:0.342000px;}
.wsd5{word-spacing:0.399000px;}
.wsfa{word-spacing:0.432000px;}
.ws47{word-spacing:0.456000px;}
.ws10a{word-spacing:0.480000px;}
.wscf{word-spacing:0.513000px;}
.wsa6{word-spacing:0.570000px;}
.ws97{word-spacing:0.576000px;}
.ws130{word-spacing:0.624000px;}
.ws2f{word-spacing:0.627000px;}
.wsc4{word-spacing:0.684000px;}
.ws128{word-spacing:0.720000px;}
.wsb6{word-spacing:0.741000px;}
.ws106{word-spacing:0.768000px;}
.wscd{word-spacing:0.798000px;}
.ws4d{word-spacing:0.855000px;}
.wsf3{word-spacing:0.864000px;}
.wsce{word-spacing:0.912000px;}
.ws11a{word-spacing:0.960000px;}
.ws36{word-spacing:0.969000px;}
.ws137{word-spacing:1.008000px;}
.wsd4{word-spacing:1.026000px;}
.ws10{word-spacing:1.083000px;}
.ws35{word-spacing:1.140000px;}
.ws29{word-spacing:1.197000px;}
.ws10e{word-spacing:1.200000px;}
.ws138{word-spacing:1.248000px;}
.wsde{word-spacing:1.254000px;}
.ws9b{word-spacing:1.311000px;}
.wsee{word-spacing:1.344000px;}
.ws27{word-spacing:1.368000px;}
.ws117{word-spacing:1.392000px;}
.ws16{word-spacing:1.425000px;}
.ws13f{word-spacing:1.440000px;}
.ws1c{word-spacing:1.482000px;}
.ws12b{word-spacing:1.488000px;}
.ws110{word-spacing:1.536000px;}
.wsb9{word-spacing:1.539000px;}
.ws26{word-spacing:1.596000px;}
.ws1d{word-spacing:1.653000px;}
.ws134{word-spacing:1.680000px;}
.ws4c{word-spacing:1.710000px;}
.wse5{word-spacing:1.776000px;}
.ws6a{word-spacing:1.824000px;}
.ws133{word-spacing:1.872000px;}
.wsb3{word-spacing:1.881000px;}
.ws11e{word-spacing:1.920000px;}
.ws6e{word-spacing:1.938000px;}
.ws113{word-spacing:1.968000px;}
.ws15{word-spacing:1.995000px;}
.wsc{word-spacing:2.052000px;}
.wsc7{word-spacing:2.109000px;}
.wsf0{word-spacing:2.160000px;}
.ws66{word-spacing:2.166000px;}
.ws132{word-spacing:2.208000px;}
.ws111{word-spacing:2.352000px;}
.ws101{word-spacing:2.400000px;}
.wse2{word-spacing:2.448000px;}
.wsd3{word-spacing:2.451000px;}
.ws24{word-spacing:2.508000px;}
.wse6{word-spacing:2.544000px;}
.ws1f{word-spacing:2.565000px;}
.ws114{word-spacing:2.592000px;}
.wsc1{word-spacing:2.622000px;}
.wsaf{word-spacing:2.679000px;}
.wsa3{word-spacing:2.736000px;}
.ws13a{word-spacing:2.784000px;}
.ws12c{word-spacing:2.832000px;}
.ws2d{word-spacing:2.850000px;}
.ws100{word-spacing:2.880000px;}
.ws3f{word-spacing:2.907000px;}
.wsb0{word-spacing:2.964000px;}
.wsb4{word-spacing:3.021000px;}
.ws72{word-spacing:3.072000px;}
.ws56{word-spacing:3.078000px;}
.ws126{word-spacing:3.120000px;}
.ws54{word-spacing:3.135000px;}
.wsfd{word-spacing:3.168000px;}
.ws63{word-spacing:3.192000px;}
.wsb1{word-spacing:3.249000px;}
.ws11{word-spacing:3.306000px;}
.ws12a{word-spacing:3.312000px;}
.ws13e{word-spacing:3.360000px;}
.wsbc{word-spacing:3.420000px;}
.ws112{word-spacing:3.456000px;}
.ws40{word-spacing:3.477000px;}
.ws3e{word-spacing:3.534000px;}
.ws65{word-spacing:3.591000px;}
.wse9{word-spacing:3.600000px;}
.ws19{word-spacing:3.648000px;}
.ws37{word-spacing:3.705000px;}
.ws1e{word-spacing:3.819000px;}
.ws123{word-spacing:3.840000px;}
.wsda{word-spacing:3.876000px;}
.wsb8{word-spacing:3.933000px;}
.ws11c{word-spacing:3.984000px;}
.wsa4{word-spacing:3.990000px;}
.ws3d{word-spacing:4.047000px;}
.ws121{word-spacing:4.080000px;}
.ws21{word-spacing:4.104000px;}
.ws10b{word-spacing:4.128000px;}
.ws69{word-spacing:4.275000px;}
.ws46{word-spacing:4.332000px;}
.ws10f{word-spacing:4.368000px;}
.wsa1{word-spacing:4.389000px;}
.ws104{word-spacing:4.416000px;}
.ws28{word-spacing:4.446000px;}
.wsf{word-spacing:4.503000px;}
.ws99{word-spacing:4.560000px;}
.ws18{word-spacing:4.617000px;}
.ws122{word-spacing:4.656000px;}
.ws4a{word-spacing:4.674000px;}
.ws17{word-spacing:4.788000px;}
.wse3{word-spacing:4.800000px;}
.ws20{word-spacing:4.845000px;}
.ws139{word-spacing:4.848000px;}
.wsf9{word-spacing:4.896000px;}
.ws49{word-spacing:4.902000px;}
.wsd0{word-spacing:4.959000px;}
.wse{word-spacing:5.016000px;}
.ws48{word-spacing:5.073000px;}
.ws38{word-spacing:5.130000px;}
.ws116{word-spacing:5.136000px;}
.ws10d{word-spacing:5.184000px;}
.ws3b{word-spacing:5.187000px;}
.wse4{word-spacing:5.232000px;}
.ws14{word-spacing:5.244000px;}
.ws32{word-spacing:5.301000px;}
.wsc2{word-spacing:5.358000px;}
.wsd1{word-spacing:5.415000px;}
.ws2a{word-spacing:5.472000px;}
.wsfb{word-spacing:5.520000px;}
.ws43{word-spacing:5.529000px;}
.ws9e{word-spacing:5.586000px;}
.ws4b{word-spacing:5.643000px;}
.ws131{word-spacing:5.664000px;}
.wsc5{word-spacing:5.700000px;}
.wsd{word-spacing:5.757000px;}
.ws3c{word-spacing:5.814000px;}
.ws67{word-spacing:5.871000px;}
.wsec{word-spacing:5.904000px;}
.ws3a{word-spacing:5.985000px;}
.ws11d{word-spacing:6.000000px;}
.wsc8{word-spacing:6.042000px;}
.ws13d{word-spacing:6.096000px;}
.wsd8{word-spacing:6.099000px;}
.ws64{word-spacing:6.156000px;}
.wsf6{word-spacing:6.192000px;}
.ws2c{word-spacing:6.213000px;}
.ws4f{word-spacing:6.270000px;}
.wsdd{word-spacing:6.327000px;}
.ws125{word-spacing:6.384000px;}
.ws33{word-spacing:6.441000px;}
.wsbb{word-spacing:6.498000px;}
.wsed{word-spacing:6.528000px;}
.ws6c{word-spacing:6.555000px;}
.wscb{word-spacing:6.612000px;}
.ws124{word-spacing:6.624000px;}
.ws53{word-spacing:6.669000px;}
.ws120{word-spacing:6.720000px;}
.wsd2{word-spacing:6.726000px;}
.ws103{word-spacing:6.768000px;}
.wsc6{word-spacing:6.783000px;}
.ws102{word-spacing:6.816000px;}
.wsa5{word-spacing:6.840000px;}
.wsc3{word-spacing:6.897000px;}
.ws58{word-spacing:6.954000px;}
.ws135{word-spacing:6.960000px;}
.ws55{word-spacing:7.011000px;}
.ws140{word-spacing:7.056000px;}
.wsa7{word-spacing:7.068000px;}
.wse1{word-spacing:7.104000px;}
.wsb7{word-spacing:7.125000px;}
.ws108{word-spacing:7.152000px;}
.wsfc{word-spacing:7.344000px;}
.ws6f{word-spacing:7.353000px;}
.wsdf{word-spacing:7.392000px;}
.wsa9{word-spacing:7.410000px;}
.ws5d{word-spacing:7.524000px;}
.ws9a{word-spacing:7.581000px;}
.ws71{word-spacing:7.680000px;}
.wsbd{word-spacing:7.695000px;}
.wsc9{word-spacing:7.809000px;}
.ws61{word-spacing:7.866000px;}
.ws50{word-spacing:7.923000px;}
.ws31{word-spacing:7.980000px;}
.wsb{word-spacing:8.037000px;}
.wsa8{word-spacing:8.094000px;}
.ws13b{word-spacing:8.352000px;}
.wsbe{word-spacing:8.493000px;}
.ws9f{word-spacing:8.550000px;}
.wsb2{word-spacing:8.664000px;}
.ws1a{word-spacing:8.721000px;}
.ws39{word-spacing:8.949000px;}
.wsdb{word-spacing:9.006000px;}
.wsa0{word-spacing:9.063000px;}
.ws98{word-spacing:9.120000px;}
.ws41{word-spacing:9.177000px;}
.ws9c{word-spacing:9.291000px;}
.ws57{word-spacing:9.462000px;}
.ws13c{word-spacing:9.504000px;}
.ws30{word-spacing:9.576000px;}
.wse0{word-spacing:9.600000px;}
.wsac{word-spacing:9.804000px;}
.ws60{word-spacing:9.861000px;}
.ws9d{word-spacing:10.032000px;}
.wsae{word-spacing:10.146000px;}
.wsaa{word-spacing:10.260000px;}
.ws22{word-spacing:10.374000px;}
.ws68{word-spacing:10.431000px;}
.wsfe{word-spacing:10.464000px;}
.ws136{word-spacing:10.560000px;}
.ws10c{word-spacing:10.608000px;}
.ws109{word-spacing:11.040000px;}
.wsd9{word-spacing:11.172000px;}
.ws23{word-spacing:11.628000px;}
.ws12{word-spacing:11.856000px;}
.wsa2{word-spacing:12.369000px;}
.ws2e{word-spacing:12.483000px;}
.ws6d{word-spacing:12.996000px;}
.wsca{word-spacing:13.053000px;}
.ws44{word-spacing:13.110000px;}
.wsdc{word-spacing:13.167000px;}
.wsd7{word-spacing:13.908000px;}
.ws13{word-spacing:14.535000px;}
.ws2b{word-spacing:15.903000px;}
.ws73{word-spacing:25.824000px;}
.ws94{word-spacing:25.828800px;}
.ws79{word-spacing:53.088000px;}
.ws74{word-spacing:56.592000px;}
.ws1b{word-spacing:73.056000px;}
.ws7d{word-spacing:77.040000px;}
.ws76{word-spacing:80.692800px;}
.ws77{word-spacing:92.784000px;}
.ws7e{word-spacing:114.676800px;}
.ws95{word-spacing:115.300800px;}
.ws84{word-spacing:173.812800px;}
.ws88{word-spacing:175.780800px;}
.ws93{word-spacing:188.976000px;}
.ws8d{word-spacing:196.656000px;}
.ws7c{word-spacing:241.824000px;}
.ws8a{word-spacing:250.752000px;}
.ws83{word-spacing:256.320000px;}
.ws7b{word-spacing:257.856000px;}
.ws8f{word-spacing:268.512000px;}
.ws87{word-spacing:273.840000px;}
.ws91{word-spacing:281.712000px;}
.ws82{word-spacing:287.184000px;}
.ws7a{word-spacing:289.872000px;}
.ws90{word-spacing:290.592000px;}
.ws81{word-spacing:297.840000px;}
.ws8e{word-spacing:300.528000px;}
.ws92{word-spacing:301.968000px;}
.ws8c{word-spacing:314.016000px;}
.ws86{word-spacing:327.168000px;}
.ws96{word-spacing:349.392000px;}
.ws8b{word-spacing:362.976000px;}
.ws89{word-spacing:384.048000px;}
.ws80{word-spacing:419.232000px;}
.ws7f{word-spacing:740.160000px;}
.ws75{word-spacing:746.928000px;}
._6{margin-left:-15.600000px;}
._13{margin-left:-11.364023px;}
._3{margin-left:-4.695000px;}
._4{margin-left:-3.138000px;}
._0{margin-left:-1.632000px;}
._1{width:1.281600px;}
._c{width:2.806800px;}
._5{width:4.157100px;}
._e{width:5.677200px;}
._10{width:6.879600px;}
._d{width:8.294400px;}
._b{width:10.374000px;}
._f{width:11.922000px;}
._34{width:13.027500px;}
._14{width:14.784000px;}
._25{width:18.306000px;}
._7{width:22.320000px;}
._11{width:30.780000px;}
._12{width:35.682000px;}
._22{width:37.510200px;}
._29{width:38.784000px;}
._2{width:40.441786px;}
._2a{width:41.451600px;}
._32{width:43.392000px;}
._28{width:52.128000px;}
._9{width:56.255995px;}
._1a{width:57.614400px;}
._1f{width:61.824000px;}
._1d{width:64.777800px;}
._8{width:73.056000px;}
._31{width:74.107200px;}
._18{width:75.168000px;}
._21{width:79.606200px;}
._1c{width:85.824000px;}
._2c{width:96.480000px;}
._1e{width:97.824000px;}
._2b{width:98.976000px;}
._23{width:100.176000px;}
._20{width:101.394000px;}
._24{width:106.272000px;}
._26{width:107.280000px;}
._30{width:122.262000px;}
._2d{width:132.354000px;}
._1b{width:135.168000px;}
._33{width:140.352000px;}
._27{width:203.423978px;}
._2f{width:246.672000px;}
._2e{width:270.192000px;}
._15{width:381.582581px;}
._19{width:472.142400px;}
._16{width:491.256683px;}
._a{width:1096.752000px;}
._17{width:1260.624000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:33.600000px;}
.fs3{font-size:39.900000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:57.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs1{font-size:78.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:32.687250px;}
.ycb{bottom:73.274998px;}
.ycd{bottom:73.275510px;}
.y28{bottom:73.277998px;}
.yce{bottom:73.287526px;}
.yf6{bottom:73.287572px;}
.yfb{bottom:73.287617px;}
.yd3{bottom:73.299542px;}
.yd8{bottom:73.299588px;}
.ydd{bottom:73.299631px;}
.y100{bottom:73.299633px;}
.ye2{bottom:73.299676px;}
.y118{bottom:73.299679px;}
.ye7{bottom:73.299722px;}
.y11d{bottom:73.299724px;}
.yec{bottom:73.299767px;}
.y122{bottom:73.299769px;}
.yf1{bottom:73.299812px;}
.y12c{bottom:73.311558px;}
.y105{bottom:73.311649px;}
.y10a{bottom:73.311695px;}
.y10d{bottom:73.311735px;}
.y127{bottom:73.311786px;}
.y1b2{bottom:73.426031px;}
.y192{bottom:74.238741px;}
.yc1{bottom:74.346741px;}
.y1bf{bottom:74.400741px;}
.y16a{bottom:74.454752px;}
.y77{bottom:74.727759px;}
.y53{bottom:74.754748px;}
.y14f{bottom:75.243298px;}
.y1dc{bottom:76.923302px;}
.y9b{bottom:82.980300px;}
.yc7{bottom:84.556956px;}
.y1b1{bottom:90.682781px;}
.y1db{bottom:90.795302px;}
.y191{bottom:91.495491px;}
.yc0{bottom:91.603491px;}
.y1be{bottom:91.657491px;}
.y169{bottom:91.711502px;}
.y27{bottom:91.949999px;}
.y76{bottom:91.984509px;}
.y52{bottom:92.011498px;}
.y14e{bottom:92.500048px;}
.y250{bottom:98.861531px;}
.y9a{bottom:100.237050px;}
.ycc{bottom:100.729649px;}
.yc6{bottom:101.813706px;}
.y1da{bottom:104.667302px;}
.y215{bottom:104.927512px;}
.y1b0{bottom:107.939531px;}
.y190{bottom:108.752241px;}
.ybf{bottom:108.860241px;}
.y1bd{bottom:108.914241px;}
.y168{bottom:108.968252px;}
.y75{bottom:109.241259px;}
.y51{bottom:109.268248px;}
.y24f{bottom:112.733531px;}
.y26{bottom:115.433248px;}
.y99{bottom:117.493800px;}
.y1d9{bottom:118.539302px;}
.y214{bottom:118.799512px;}
.yc5{bottom:119.070456px;}
.y1af{bottom:125.196281px;}
.y18f{bottom:126.008991px;}
.ybe{bottom:126.116991px;}
.y1bc{bottom:126.170991px;}
.y167{bottom:126.225002px;}
.y74{bottom:126.498009px;}
.y50{bottom:126.524998px;}
.y24e{bottom:126.605531px;}
.y14d{bottom:127.750053px;}
.y25{bottom:129.305248px;}
.y1d8{bottom:132.411302px;}
.y213{bottom:132.671512px;}
.yc4{bottom:136.327206px;}
.y24d{bottom:140.477531px;}
.y1ae{bottom:142.453031px;}
.y18e{bottom:143.265741px;}
.ybd{bottom:143.373741px;}
.y1bb{bottom:143.427741px;}
.y73{bottom:143.754759px;}
.y1d7{bottom:146.283302px;}
.y212{bottom:146.543512px;}
.y24{bottom:150.725248px;}
.y98{bottom:152.743800px;}
.y24c{bottom:154.349531px;}
.y1ad{bottom:159.709781px;}
.y1d6{bottom:160.155302px;}
.y211{bottom:160.415512px;}
.y18d{bottom:160.522491px;}
.ybc{bottom:160.630491px;}
.y1ba{bottom:160.684491px;}
.y72{bottom:161.011509px;}
.y166{bottom:161.475002px;}
.y4f{bottom:161.774998px;}
.y14c{bottom:163.743303px;}
.y23{bottom:164.597248px;}
.y24b{bottom:168.221531px;}
.yc3{bottom:171.577057px;}
.y1d5{bottom:174.027302px;}
.y210{bottom:174.287512px;}
.y1ac{bottom:176.966531px;}
.y18c{bottom:177.779241px;}
.ybb{bottom:177.887241px;}
.y1b9{bottom:177.941241px;}
.y71{bottom:178.268259px;}
.y14b{bottom:181.000053px;}
.y24a{bottom:182.093531px;}
.y20f{bottom:188.159512px;}
.y1ab{bottom:194.223281px;}
.y18b{bottom:195.035991px;}
.yba{bottom:195.143991px;}
.y1b8{bottom:195.197991px;}
.y70{bottom:195.525009px;}
.y249{bottom:195.965531px;}
.y1d4{bottom:201.783302px;}
.y20e{bottom:202.031512px;}
.y165{bottom:203.628308px;}
.y4e{bottom:205.289884px;}
.yc2{bottom:207.577057px;}
.y248{bottom:209.837531px;}
.y1aa{bottom:211.480031px;}
.y18a{bottom:212.292741px;}
.yb9{bottom:212.400741px;}
.y1b7{bottom:212.454741px;}
.y22{bottom:212.952307px;}
.y97{bottom:215.416491px;}
.y20d{bottom:215.903512px;}
.y14a{bottom:216.250053px;}
.y164{bottom:220.885058px;}
.y4d{bottom:222.546634px;}
.y247{bottom:223.709531px;}
.y1a9{bottom:228.736781px;}
.y1d3{bottom:229.533302px;}
.y189{bottom:229.549491px;}
.yb8{bottom:229.657491px;}
.y1b6{bottom:229.711491px;}
.y20c{bottom:229.775512px;}
.y21{bottom:230.209057px;}
.y6f{bottom:230.775009px;}
.y96{bottom:232.673241px;}
.y246{bottom:237.581531px;}
.y163{bottom:238.141808px;}
.y4c{bottom:239.803384px;}
.y20b{bottom:243.647512px;}
.y1a8{bottom:245.993531px;}
.y188{bottom:246.806241px;}
.yb7{bottom:246.914241px;}
.y1b5{bottom:246.968241px;}
.y20{bottom:247.465807px;}
.yca{bottom:248.300540px;}
.y95{bottom:249.929991px;}
.y245{bottom:251.453531px;}
.y149{bottom:252.196031px;}
.y162{bottom:255.398558px;}
.y4b{bottom:257.060134px;}
.y20a{bottom:257.519512px;}
.y1d2{bottom:260.733444px;}
.yc9{bottom:262.172540px;}
.y1a7{bottom:263.250281px;}
.y187{bottom:264.062991px;}
.yb6{bottom:264.170991px;}
.y1b4{bottom:264.224991px;}
.y1f{bottom:264.722557px;}
.y244{bottom:265.325531px;}
.y6e{bottom:267.743096px;}
.y148{bottom:269.452781px;}
.y209{bottom:271.391512px;}
.y161{bottom:272.655308px;}
.y4a{bottom:274.316884px;}
.yc8{bottom:276.044540px;}
.y243{bottom:279.197531px;}
.y1a6{bottom:280.507031px;}
.y186{bottom:281.319741px;}
.yb5{bottom:281.427741px;}
.y1e{bottom:281.979307px;}
.y6d{bottom:284.999846px;}
.y208{bottom:285.263512px;}
.y94{bottom:285.925491px;}
.y147{bottom:286.709531px;}
.y1d1{bottom:288.436194px;}
.y160{bottom:289.912058px;}
.y49{bottom:291.573634px;}
.y242{bottom:293.069531px;}
.y1a5{bottom:297.763781px;}
.y185{bottom:298.576491px;}
.yb4{bottom:298.684491px;}
.y207{bottom:299.135512px;}
.y1d{bottom:299.236057px;}
.y1b3{bottom:299.474991px;}
.y6c{bottom:302.256596px;}
.y93{bottom:303.182241px;}
.y146{bottom:303.966281px;}
.y1d0{bottom:305.692944px;}
.y241{bottom:306.941531px;}
.y15f{bottom:307.168808px;}
.y48{bottom:308.830384px;}
.y206{bottom:313.007512px;}
.y1a4{bottom:315.020531px;}
.y184{bottom:315.833241px;}
.yb3{bottom:315.941241px;}
.y1c{bottom:316.492807px;}
.y6b{bottom:319.513346px;}
.y92{bottom:320.438991px;}
.y240{bottom:320.813531px;}
.y145{bottom:321.223031px;}
.y1cf{bottom:322.949694px;}
.y47{bottom:326.087134px;}
.y205{bottom:326.879512px;}
.y1a3{bottom:332.277281px;}
.y183{bottom:333.089991px;}
.yb2{bottom:333.197991px;}
.y1b{bottom:333.749557px;}
.y23f{bottom:334.685531px;}
.y6a{bottom:336.770096px;}
.y91{bottom:337.695741px;}
.y144{bottom:338.479781px;}
.y1ce{bottom:340.206444px;}
.y204{bottom:340.751512px;}
.y15e{bottom:342.418808px;}
.y46{bottom:343.343884px;}
.y23e{bottom:348.557531px;}
.y1a2{bottom:349.534031px;}
.y182{bottom:350.346741px;}
.yb1{bottom:350.454741px;}
.y1a{bottom:351.006307px;}
.y203{bottom:354.623512px;}
.y90{bottom:354.952491px;}
.y143{bottom:355.736531px;}
.y1cd{bottom:357.463194px;}
.y45{bottom:360.600634px;}
.y23d{bottom:362.429531px;}
.y1a1{bottom:366.790781px;}
.y181{bottom:367.603491px;}
.yb0{bottom:367.711491px;}
.y19{bottom:368.263057px;}
.y202{bottom:368.495512px;}
.y69{bottom:372.020096px;}
.y8f{bottom:372.209241px;}
.y142{bottom:372.993281px;}
.y1cc{bottom:374.719944px;}
.y23c{bottom:376.301531px;}
.y44{bottom:377.857384px;}
.y201{bottom:382.367512px;}
.y1a0{bottom:384.047531px;}
.y15d{bottom:384.605829px;}
.y180{bottom:384.860241px;}
.yaf{bottom:384.968241px;}
.y8e{bottom:389.465991px;}
.y23b{bottom:390.173531px;}
.y141{bottom:390.250031px;}
.y1cb{bottom:391.976694px;}
.y43{bottom:395.114134px;}
.y200{bottom:396.239512px;}
.y19f{bottom:401.304281px;}
.y15c{bottom:401.862579px;}
.y17f{bottom:402.116991px;}
.yae{bottom:402.224991px;}
.y23a{bottom:404.045531px;}
.y68{bottom:408.974545px;}
.y1ca{bottom:409.233444px;}
.y1ff{bottom:410.111512px;}
.y42{bottom:412.370884px;}
.y239{bottom:417.917531px;}
.y19e{bottom:418.561031px;}
.y17e{bottom:419.373741px;}
.y18{bottom:423.011557px;}
.y1fe{bottom:423.983512px;}
.y8d{bottom:425.461491px;}
.y140{bottom:425.500031px;}
.y67{bottom:426.231295px;}
.y41{bottom:429.627634px;}
.y238{bottom:431.789531px;}
.y19d{bottom:435.817781px;}
.y17d{bottom:436.630491px;}
.y15b{bottom:437.112579px;}
.yad{bottom:437.474991px;}
.y1fd{bottom:437.855512px;}
.y17{bottom:440.268307px;}
.y8c{bottom:442.718241px;}
.y66{bottom:443.488045px;}
.y1c9{bottom:444.483444px;}
.y237{bottom:445.661531px;}
.y40{bottom:446.884384px;}
.y1fc{bottom:451.727512px;}
.y19c{bottom:453.074531px;}
.y17c{bottom:453.887241px;}
.y236{bottom:459.533531px;}
.y8b{bottom:459.974991px;}
.y65{bottom:460.744795px;}
.y13f{bottom:461.493281px;}
.y3f{bottom:464.141134px;}
.y1fb{bottom:465.599512px;}
.y19b{bottom:470.331281px;}
.y17b{bottom:471.143991px;}
.y235{bottom:473.405531px;}
.ycf{bottom:474.303526px;}
.yf7{bottom:474.303572px;}
.yfc{bottom:474.303617px;}
.yd4{bottom:474.315542px;}
.yd9{bottom:474.315585px;}
.y112{bottom:474.315588px;}
.yde{bottom:474.315631px;}
.y101{bottom:474.315633px;}
.ye3{bottom:474.315676px;}
.y119{bottom:474.315679px;}
.ye8{bottom:474.315722px;}
.y11e{bottom:474.315724px;}
.yed{bottom:474.315767px;}
.y123{bottom:474.315769px;}
.yf2{bottom:474.315812px;}
.y12d{bottom:474.327558px;}
.y106{bottom:474.327649px;}
.y10b{bottom:474.327695px;}
.y10e{bottom:474.327735px;}
.y128{bottom:474.327786px;}
.y16{bottom:474.767557px;}
.y64{bottom:478.001545px;}
.y13e{bottom:478.750031px;}
.y15a{bottom:479.279396px;}
.y1fa{bottom:479.471512px;}
.y3e{bottom:481.397884px;}
.y234{bottom:487.277531px;}
.y19a{bottom:487.588031px;}
.y17a{bottom:488.400741px;}
.yac{bottom:489.203829px;}
.y15{bottom:492.024307px;}
.y1f9{bottom:493.343512px;}
.y8a{bottom:495.224991px;}
.y63{bottom:495.258295px;}
.y159{bottom:496.536146px;}
.y3d{bottom:498.654634px;}
.y233{bottom:501.149531px;}
.y199{bottom:504.844781px;}
.y179{bottom:505.657491px;}
.yab{bottom:506.460579px;}
.y1c8{bottom:506.944510px;}
.y1f8{bottom:507.215512px;}
.y14{bottom:509.281057px;}
.y62{bottom:512.515045px;}
.y158{bottom:513.792896px;}
.y13d{bottom:514.000031px;}
.y232{bottom:515.021531px;}
.y3c{bottom:515.911384px;}
.y1f7{bottom:521.087512px;}
.y198{bottom:522.101531px;}
.y178{bottom:522.914241px;}
.yaa{bottom:523.717329px;}
.y1c7{bottom:524.201260px;}
.y13{bottom:526.537807px;}
.y231{bottom:528.893531px;}
.y157{bottom:531.049646px;}
.y3b{bottom:533.168134px;}
.y1f6{bottom:534.959512px;}
.y197{bottom:539.358281px;}
.y177{bottom:540.170991px;}
.ya9{bottom:540.974079px;}
.y1c6{bottom:541.458010px;}
.y230{bottom:542.765531px;}
.y12{bottom:543.794557px;}
.y89{bottom:544.422579px;}
.y61{bottom:547.765045px;}
.y156{bottom:548.306396px;}
.y1f5{bottom:548.831512px;}
.y13c{bottom:549.993281px;}
.y3a{bottom:550.424884px;}
.y196{bottom:556.615031px;}
.y22f{bottom:556.637531px;}
.y176{bottom:557.427741px;}
.ya8{bottom:558.230829px;}
.y1c5{bottom:558.714760px;}
.y11{bottom:561.051307px;}
.y88{bottom:561.679329px;}
.y1f4{bottom:562.703512px;}
.y13b{bottom:567.250031px;}
.y39{bottom:567.681634px;}
.y22e{bottom:570.509531px;}
.y195{bottom:573.871781px;}
.y175{bottom:574.684491px;}
.ya7{bottom:575.487579px;}
.y1c4{bottom:575.971510px;}
.y1f3{bottom:576.575512px;}
.y10{bottom:578.308057px;}
.y87{bottom:578.936079px;}
.y155{bottom:583.556396px;}
.y22d{bottom:584.381531px;}
.y60{bottom:584.733132px;}
.y38{bottom:584.938384px;}
.y1f2{bottom:590.447512px;}
.y194{bottom:591.128531px;}
.y174{bottom:591.941241px;}
.y1c3{bottom:593.228260px;}
.yf{bottom:595.564807px;}
.y86{bottom:596.192829px;}
.y22c{bottom:598.253531px;}
.y5f{bottom:601.989882px;}
.y37{bottom:602.195134px;}
.y13a{bottom:602.500031px;}
.y1f1{bottom:604.319512px;}
.y193{bottom:608.385281px;}
.y173{bottom:609.197991px;}
.y1c2{bottom:610.485010px;}
.ya6{bottom:610.737579px;}
.y22b{bottom:612.125531px;}
.ye{bottom:612.821557px;}
.y85{bottom:613.449579px;}
.y1f0{bottom:618.191512px;}
.y5e{bottom:619.246632px;}
.y36{bottom:619.451884px;}
.y154{bottom:625.642031px;}
.y22a{bottom:625.997531px;}
.y172{bottom:626.454741px;}
.y1c1{bottom:627.741760px;}
.yd{bottom:630.078307px;}
.y84{bottom:630.706329px;}
.y1ef{bottom:632.063512px;}
.y5d{bottom:636.503382px;}
.y35{bottom:636.708634px;}
.y139{bottom:638.479781px;}
.y229{bottom:639.869531px;}
.y153{bottom:642.898781px;}
.y171{bottom:643.711491px;}
.y1ee{bottom:645.935512px;}
.ya5{bottom:646.737579px;}
.yc{bottom:647.335057px;}
.y228{bottom:653.741531px;}
.y5c{bottom:653.760132px;}
.y34{bottom:653.965384px;}
.y138{bottom:655.736531px;}
.y1ed{bottom:659.807512px;}
.y152{bottom:660.155531px;}
.y170{bottom:660.968241px;}
.y1c0{bottom:662.991760px;}
.yb{bottom:664.591807px;}
.y83{bottom:665.956329px;}
.y227{bottom:667.613531px;}
.yd0{bottom:670.995526px;}
.yf8{bottom:670.995572px;}
.yfd{bottom:670.995617px;}
.yd5{bottom:671.007542px;}
.yda{bottom:671.007585px;}
.y113{bottom:671.007588px;}
.ydf{bottom:671.007631px;}
.y102{bottom:671.007633px;}
.ye4{bottom:671.007676px;}
.y11a{bottom:671.007679px;}
.ye9{bottom:671.007722px;}
.y11f{bottom:671.007724px;}
.yee{bottom:671.007767px;}
.y124{bottom:671.007769px;}
.yf3{bottom:671.007812px;}
.y12e{bottom:671.019558px;}
.y107{bottom:671.019649px;}
.y10c{bottom:671.019695px;}
.y10f{bottom:671.019735px;}
.y129{bottom:671.019786px;}
.y33{bottom:671.222134px;}
.y137{bottom:672.993281px;}
.y1ec{bottom:673.679512px;}
.y151{bottom:677.412281px;}
.y16f{bottom:678.224991px;}
.yd1{bottom:679.995526px;}
.yf9{bottom:679.995572px;}
.yfe{bottom:679.995617px;}
.yd6{bottom:680.007542px;}
.ydb{bottom:680.007585px;}
.y114{bottom:680.007588px;}
.ye0{bottom:680.007631px;}
.y103{bottom:680.007633px;}
.ye5{bottom:680.007676px;}
.y11b{bottom:680.007679px;}
.yea{bottom:680.007722px;}
.y120{bottom:680.007724px;}
.yef{bottom:680.007767px;}
.y125{bottom:680.007769px;}
.yf4{bottom:680.007812px;}
.y12f{bottom:680.019558px;}
.y108{bottom:680.019649px;}
.y116{bottom:680.019695px;}
.y110{bottom:680.019735px;}
.y12a{bottom:680.019786px;}
.y226{bottom:681.485531px;}
.ya{bottom:681.848557px;}
.y1eb{bottom:687.551512px;}
.y32{bottom:688.478884px;}
.y5b{bottom:689.010132px;}
.y136{bottom:690.250031px;}
.y150{bottom:694.669031px;}
.y225{bottom:695.357531px;}
.y1ea{bottom:701.423512px;}
.y31{bottom:705.735634px;}
.y224{bottom:709.229531px;}
.y82{bottom:710.626781px;}
.ya4{bottom:711.925781px;}
.y16e{bottom:713.474991px;}
.y1e9{bottom:715.295512px;}
.y30{bottom:722.992384px;}
.y223{bottom:723.101531px;}
.y135{bottom:725.500031px;}
.y5a{bottom:725.971377px;}
.y81{bottom:727.883531px;}
.y1e8{bottom:729.167512px;}
.ya3{bottom:729.182531px;}
.y9{bottom:729.587564px;}
.y222{bottom:736.973531px;}
.y2f{bottom:740.249134px;}
.y1e7{bottom:743.039512px;}
.y59{bottom:743.228127px;}
.y8{bottom:743.459564px;}
.y80{bottom:745.140281px;}
.ya2{bottom:746.439281px;}
.y221{bottom:750.845531px;}
.y1e6{bottom:756.911512px;}
.y2e{bottom:757.505884px;}
.y58{bottom:760.484877px;}
.y134{bottom:761.486531px;}
.y7f{bottom:762.397031px;}
.ya1{bottom:763.696031px;}
.y220{bottom:764.717531px;}
.y1e5{bottom:770.783512px;}
.y2d{bottom:774.762634px;}
.y57{bottom:777.741627px;}
.y21f{bottom:778.589531px;}
.y133{bottom:778.743281px;}
.y7e{bottom:779.653781px;}
.ya0{bottom:780.952781px;}
.y7{bottom:781.231018px;}
.y16d{bottom:781.730829px;}
.y1e4{bottom:784.655512px;}
.y21e{bottom:792.461531px;}
.y56{bottom:794.998377px;}
.y132{bottom:796.000031px;}
.y7d{bottom:796.910531px;}
.y9f{bottom:798.209531px;}
.y1e3{bottom:798.527512px;}
.y16c{bottom:798.987579px;}
.y21d{bottom:806.333531px;}
.y2c{bottom:810.012634px;}
.y55{bottom:812.255127px;}
.y1e2{bottom:812.399512px;}
.y7c{bottom:814.167281px;}
.y9e{bottom:815.466281px;}
.y21c{bottom:820.205531px;}
.y6{bottom:823.663077px;}
.y1e1{bottom:826.271512px;}
.y131{bottom:831.250031px;}
.y7b{bottom:831.424031px;}
.y9d{bottom:832.723031px;}
.y21b{bottom:834.077531px;}
.y16b{bottom:834.237579px;}
.y252{bottom:837.065531px;}
.y1e0{bottom:840.143512px;}
.y5{bottom:846.166077px;}
.y54{bottom:847.505127px;}
.y21a{bottom:847.949531px;}
.y7a{bottom:848.680781px;}
.y9c{bottom:849.979781px;}
.y251{bottom:850.937531px;}
.y1df{bottom:854.015512px;}
.y219{bottom:861.821531px;}
.y79{bottom:865.937531px;}
.y2b{bottom:867.236531px;}
.y1de{bottom:867.887512px;}
.y218{bottom:875.693531px;}
.yd2{bottom:875.703526px;}
.yfa{bottom:875.703572px;}
.yff{bottom:875.703617px;}
.yd7{bottom:875.715542px;}
.ydc{bottom:875.715585px;}
.y115{bottom:875.715588px;}
.ye1{bottom:875.715631px;}
.y104{bottom:875.715633px;}
.ye6{bottom:875.715676px;}
.y11c{bottom:875.715679px;}
.yeb{bottom:875.715722px;}
.y121{bottom:875.715724px;}
.yf0{bottom:875.715767px;}
.y126{bottom:875.715769px;}
.yf5{bottom:875.715812px;}
.y130{bottom:875.727558px;}
.y109{bottom:875.727649px;}
.y117{bottom:875.727695px;}
.y111{bottom:875.727735px;}
.y12b{bottom:875.727786px;}
.y2a{bottom:884.493281px;}
.y217{bottom:889.565531px;}
.y4{bottom:899.785217px;}
.y1dd{bottom:900.062531px;}
.y78{bottom:901.187531px;}
.y29{bottom:901.750031px;}
.y216{bottom:903.437531px;}
.y3{bottom:926.117136px;}
.y2{bottom:939.989136px;}
.hb{height:29.299200px;}
.h2{height:33.840000px;}
.ha{height:41.856000px;}
.h3{height:42.048000px;}
.h10{height:42.528000px;}
.h4{height:46.704000px;}
.hf{height:49.104000px;}
.h8{height:49.704000px;}
.h9{height:50.502000px;}
.he{height:53.160000px;}
.hd{height:53.640000px;}
.h7{height:56.373000px;}
.h6{height:61.622993px;}
.hc{height:65.274000px;}
.h5{height:69.108000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:70.157553px;}
.x3{left:74.529448px;}
.x7{left:79.157553px;}
.x4{left:87.171898px;}
.x5{left:91.421552px;}
.x6{left:94.154398px;}
.x6e{left:95.669553px;}
.x8{left:102.923847px;}
.x9{left:126.767847px;}
.x26{left:152.946145px;}
.xa{left:154.763847px;}
.x27{left:166.818145px;}
.xb{left:168.635847px;}
.x62{left:181.170144px;}
.xc{left:186.791847px;}
.x28{left:189.510145px;}
.x42{left:191.010145px;}
.x63{left:198.762144px;}
.xd{left:200.663847px;}
.x29{left:203.382145px;}
.x43{left:204.882145px;}
.x64{left:212.634144px;}
.xe{left:214.535847px;}
.x2a{left:217.254145px;}
.x54{left:221.454144px;}
.x57{left:226.554144px;}
.x44{left:227.574145px;}
.x65{left:230.226144px;}
.xf{left:232.127847px;}
.x2b{left:234.846145px;}
.x58{left:240.426144px;}
.x45{left:241.446145px;}
.x66{left:244.098144px;}
.x10{left:245.999847px;}
.x2c{left:248.718145px;}
.x55{left:252.918144px;}
.x46{left:255.318145px;}
.x11{left:259.871847px;}
.x67{left:261.690144px;}
.x59{left:263.118144px;}
.x2d{left:266.310145px;}
.x47{left:269.190145px;}
.x68{left:275.562144px;}
.x12{left:277.451847px;}
.x2e{left:280.182145px;}
.x48{left:283.062145px;}
.x56{left:284.382144px;}
.x13{left:291.323847px;}
.x69{left:293.154144px;}
.x2f{left:297.774145px;}
.x49{left:300.654145px;}
.x6a{left:307.026144px;}
.x14{left:308.915847px;}
.x30{left:311.646145px;}
.x4a{left:314.526145px;}
.x15{left:322.787847px;}
.x6b{left:324.702144px;}
.x31{left:329.238145px;}
.x4b{left:332.118145px;}
.x16{left:336.659847px;}
.x6c{left:338.574144px;}
.x32{left:343.110145px;}
.x4c{left:345.990145px;}
.x5a{left:350.118144px;}
.x17{left:354.251847px;}
.x33{left:356.982145px;}
.x4d{left:359.862145px;}
.x6d{left:365.058144px;}
.x18{left:368.123847px;}
.x34{left:374.574145px;}
.x4e{left:377.454145px;}
.x5b{left:381.582144px;}
.x19{left:385.715847px;}
.x35{left:388.446145px;}
.x4f{left:391.326145px;}
.x1a{left:399.587847px;}
.x36{left:406.038145px;}
.x5c{left:413.046144px;}
.x1b{left:417.179847px;}
.x37{left:419.910145px;}
.x50{left:422.790145px;}
.x5d{left:426.918144px;}
.x1c{left:431.051847px;}
.x38{left:437.502145px;}
.x5e{left:444.510144px;}
.x1d{left:448.643847px;}
.x39{left:451.374145px;}
.x51{left:454.254145px;}
.x5f{left:458.382144px;}
.x1e{left:462.515847px;}
.x3a{left:468.966145px;}
.x1f{left:476.387847px;}
.x3b{left:482.838145px;}
.x1{left:485.858414px;}
.x20{left:490.259847px;}
.x3c{left:496.710145px;}
.x21{left:504.131847px;}
.x60{left:507.438144px;}
.x3d{left:510.582145px;}
.x52{left:513.462145px;}
.x22{left:517.991847px;}
.x61{left:521.310144px;}
.x3e{left:524.454145px;}
.x53{left:527.334145px;}
.x23{left:531.863847px;}
.x3f{left:542.046145px;}
.x24{left:545.735847px;}
.x40{left:555.918145px;}
.x25{left:559.607847px;}
.x41{left:569.790145px;}
@media print{
.v2{vertical-align:-17.066671pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.266927pt;}
.lsa{letter-spacing:-1.621333pt;}
.ls20{letter-spacing:-0.853333pt;}
.ls19{letter-spacing:-0.682667pt;}
.ls9{letter-spacing:-0.640000pt;}
.lsb{letter-spacing:-0.512000pt;}
.lsc{letter-spacing:-0.506667pt;}
.ls1f{letter-spacing:-0.426667pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls7{letter-spacing:-0.152000pt;}
.ls6{letter-spacing:-0.101333pt;}
.ls18{letter-spacing:-0.042667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.132267pt;}
.ls4{letter-spacing:0.152000pt;}
.ls24{letter-spacing:0.166391pt;}
.lse{letter-spacing:0.170667pt;}
.ls5{letter-spacing:0.253333pt;}
.ls21{letter-spacing:0.383991pt;}
.ls22{letter-spacing:0.516231pt;}
.ls25{letter-spacing:0.597316pt;}
.ls11{letter-spacing:0.597318pt;}
.lsd{letter-spacing:0.597333pt;}
.ls10{letter-spacing:0.601584pt;}
.ls26{letter-spacing:0.601600pt;}
.ls3{letter-spacing:0.608000pt;}
.ls2{letter-spacing:0.709333pt;}
.ls14{letter-spacing:0.857600pt;}
.ls1e{letter-spacing:1.847467pt;}
.ls15{letter-spacing:2.781827pt;}
.ls1d{letter-spacing:2.794667pt;}
.ls0{letter-spacing:2.986667pt;}
.ls1c{letter-spacing:3.635135pt;}
.ls1b{letter-spacing:4.309307pt;}
.ls13{letter-spacing:4.569600pt;}
.ls1a{letter-spacing:5.077387pt;}
.lsf{letter-spacing:5.589326pt;}
.ls27{letter-spacing:6.233648pt;}
.ls29{letter-spacing:6.233659pt;}
.ls12{letter-spacing:6.613333pt;}
.ls28{letter-spacing:6.788317pt;}
.ls16{letter-spacing:9.945648pt;}
.ls8{letter-spacing:55.082667pt;}
.ws7{word-spacing:-12.666667pt;}
.ws4e{word-spacing:-11.850667pt;}
.ws2{word-spacing:-11.818667pt;}
.wse7{word-spacing:-11.264000pt;}
.wsf8{word-spacing:-10.837333pt;}
.ws78{word-spacing:-10.666667pt;}
.wsf5{word-spacing:-10.624000pt;}
.ws3{word-spacing:-10.488000pt;}
.wsf2{word-spacing:-10.410667pt;}
.ws118{word-spacing:-10.240000pt;}
.ws5{word-spacing:-10.234667pt;}
.ws129{word-spacing:-10.026667pt;}
.wse8{word-spacing:-9.984000pt;}
.ws11b{word-spacing:-9.813333pt;}
.ws6{word-spacing:-9.728000pt;}
.ws1{word-spacing:-8.362667pt;}
.wsd6{word-spacing:-8.192000pt;}
.ws8{word-spacing:-7.466667pt;}
.ws4{word-spacing:-7.341600pt;}
.ws85{word-spacing:-5.333333pt;}
.ws70{word-spacing:-1.813333pt;}
.ws5a{word-spacing:-1.266667pt;}
.wscc{word-spacing:-0.962667pt;}
.wsba{word-spacing:-0.810667pt;}
.ws12d{word-spacing:-0.768000pt;}
.ws5f{word-spacing:-0.760000pt;}
.ws12f{word-spacing:-0.725333pt;}
.ws52{word-spacing:-0.709333pt;}
.ws25{word-spacing:-0.658667pt;}
.ws5c{word-spacing:-0.608000pt;}
.wsef{word-spacing:-0.597333pt;}
.wsc0{word-spacing:-0.557333pt;}
.wsb5{word-spacing:-0.506667pt;}
.ws12e{word-spacing:-0.469333pt;}
.ws34{word-spacing:-0.456000pt;}
.wsea{word-spacing:-0.426667pt;}
.ws6b{word-spacing:-0.405333pt;}
.ws11f{word-spacing:-0.384000pt;}
.ws45{word-spacing:-0.354667pt;}
.wsff{word-spacing:-0.341333pt;}
.ws51{word-spacing:-0.304000pt;}
.ws105{word-spacing:-0.298667pt;}
.ws127{word-spacing:-0.256000pt;}
.ws59{word-spacing:-0.253333pt;}
.wsf7{word-spacing:-0.170667pt;}
.wsbf{word-spacing:-0.152000pt;}
.ws141{word-spacing:-0.128000pt;}
.wsab{word-spacing:-0.101333pt;}
.ws115{word-spacing:-0.085333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws9{word-spacing:0.000000pt;}
.wsf4{word-spacing:0.042667pt;}
.ws5e{word-spacing:0.050667pt;}
.ws62{word-spacing:0.101333pt;}
.wseb{word-spacing:0.128000pt;}
.ws5b{word-spacing:0.152000pt;}
.ws107{word-spacing:0.170667pt;}
.ws42{word-spacing:0.202667pt;}
.wsa{word-spacing:0.253333pt;}
.wsf1{word-spacing:0.256000pt;}
.ws119{word-spacing:0.298667pt;}
.wsad{word-spacing:0.304000pt;}
.wsd5{word-spacing:0.354667pt;}
.wsfa{word-spacing:0.384000pt;}
.ws47{word-spacing:0.405333pt;}
.ws10a{word-spacing:0.426667pt;}
.wscf{word-spacing:0.456000pt;}
.wsa6{word-spacing:0.506667pt;}
.ws97{word-spacing:0.512000pt;}
.ws130{word-spacing:0.554667pt;}
.ws2f{word-spacing:0.557333pt;}
.wsc4{word-spacing:0.608000pt;}
.ws128{word-spacing:0.640000pt;}
.wsb6{word-spacing:0.658667pt;}
.ws106{word-spacing:0.682667pt;}
.wscd{word-spacing:0.709333pt;}
.ws4d{word-spacing:0.760000pt;}
.wsf3{word-spacing:0.768000pt;}
.wsce{word-spacing:0.810667pt;}
.ws11a{word-spacing:0.853333pt;}
.ws36{word-spacing:0.861333pt;}
.ws137{word-spacing:0.896000pt;}
.wsd4{word-spacing:0.912000pt;}
.ws10{word-spacing:0.962667pt;}
.ws35{word-spacing:1.013333pt;}
.ws29{word-spacing:1.064000pt;}
.ws10e{word-spacing:1.066667pt;}
.ws138{word-spacing:1.109333pt;}
.wsde{word-spacing:1.114667pt;}
.ws9b{word-spacing:1.165333pt;}
.wsee{word-spacing:1.194667pt;}
.ws27{word-spacing:1.216000pt;}
.ws117{word-spacing:1.237333pt;}
.ws16{word-spacing:1.266667pt;}
.ws13f{word-spacing:1.280000pt;}
.ws1c{word-spacing:1.317333pt;}
.ws12b{word-spacing:1.322667pt;}
.ws110{word-spacing:1.365333pt;}
.wsb9{word-spacing:1.368000pt;}
.ws26{word-spacing:1.418667pt;}
.ws1d{word-spacing:1.469333pt;}
.ws134{word-spacing:1.493333pt;}
.ws4c{word-spacing:1.520000pt;}
.wse5{word-spacing:1.578667pt;}
.ws6a{word-spacing:1.621333pt;}
.ws133{word-spacing:1.664000pt;}
.wsb3{word-spacing:1.672000pt;}
.ws11e{word-spacing:1.706667pt;}
.ws6e{word-spacing:1.722667pt;}
.ws113{word-spacing:1.749333pt;}
.ws15{word-spacing:1.773333pt;}
.wsc{word-spacing:1.824000pt;}
.wsc7{word-spacing:1.874667pt;}
.wsf0{word-spacing:1.920000pt;}
.ws66{word-spacing:1.925333pt;}
.ws132{word-spacing:1.962667pt;}
.ws111{word-spacing:2.090667pt;}
.ws101{word-spacing:2.133333pt;}
.wse2{word-spacing:2.176000pt;}
.wsd3{word-spacing:2.178667pt;}
.ws24{word-spacing:2.229333pt;}
.wse6{word-spacing:2.261333pt;}
.ws1f{word-spacing:2.280000pt;}
.ws114{word-spacing:2.304000pt;}
.wsc1{word-spacing:2.330667pt;}
.wsaf{word-spacing:2.381333pt;}
.wsa3{word-spacing:2.432000pt;}
.ws13a{word-spacing:2.474667pt;}
.ws12c{word-spacing:2.517333pt;}
.ws2d{word-spacing:2.533333pt;}
.ws100{word-spacing:2.560000pt;}
.ws3f{word-spacing:2.584000pt;}
.wsb0{word-spacing:2.634667pt;}
.wsb4{word-spacing:2.685333pt;}
.ws72{word-spacing:2.730667pt;}
.ws56{word-spacing:2.736000pt;}
.ws126{word-spacing:2.773333pt;}
.ws54{word-spacing:2.786667pt;}
.wsfd{word-spacing:2.816000pt;}
.ws63{word-spacing:2.837333pt;}
.wsb1{word-spacing:2.888000pt;}
.ws11{word-spacing:2.938667pt;}
.ws12a{word-spacing:2.944000pt;}
.ws13e{word-spacing:2.986667pt;}
.wsbc{word-spacing:3.040000pt;}
.ws112{word-spacing:3.072000pt;}
.ws40{word-spacing:3.090667pt;}
.ws3e{word-spacing:3.141333pt;}
.ws65{word-spacing:3.192000pt;}
.wse9{word-spacing:3.200000pt;}
.ws19{word-spacing:3.242667pt;}
.ws37{word-spacing:3.293333pt;}
.ws1e{word-spacing:3.394667pt;}
.ws123{word-spacing:3.413333pt;}
.wsda{word-spacing:3.445333pt;}
.wsb8{word-spacing:3.496000pt;}
.ws11c{word-spacing:3.541333pt;}
.wsa4{word-spacing:3.546667pt;}
.ws3d{word-spacing:3.597333pt;}
.ws121{word-spacing:3.626667pt;}
.ws21{word-spacing:3.648000pt;}
.ws10b{word-spacing:3.669333pt;}
.ws69{word-spacing:3.800000pt;}
.ws46{word-spacing:3.850667pt;}
.ws10f{word-spacing:3.882667pt;}
.wsa1{word-spacing:3.901333pt;}
.ws104{word-spacing:3.925333pt;}
.ws28{word-spacing:3.952000pt;}
.wsf{word-spacing:4.002667pt;}
.ws99{word-spacing:4.053333pt;}
.ws18{word-spacing:4.104000pt;}
.ws122{word-spacing:4.138667pt;}
.ws4a{word-spacing:4.154667pt;}
.ws17{word-spacing:4.256000pt;}
.wse3{word-spacing:4.266667pt;}
.ws20{word-spacing:4.306667pt;}
.ws139{word-spacing:4.309333pt;}
.wsf9{word-spacing:4.352000pt;}
.ws49{word-spacing:4.357333pt;}
.wsd0{word-spacing:4.408000pt;}
.wse{word-spacing:4.458667pt;}
.ws48{word-spacing:4.509333pt;}
.ws38{word-spacing:4.560000pt;}
.ws116{word-spacing:4.565333pt;}
.ws10d{word-spacing:4.608000pt;}
.ws3b{word-spacing:4.610667pt;}
.wse4{word-spacing:4.650667pt;}
.ws14{word-spacing:4.661333pt;}
.ws32{word-spacing:4.712000pt;}
.wsc2{word-spacing:4.762667pt;}
.wsd1{word-spacing:4.813333pt;}
.ws2a{word-spacing:4.864000pt;}
.wsfb{word-spacing:4.906667pt;}
.ws43{word-spacing:4.914667pt;}
.ws9e{word-spacing:4.965333pt;}
.ws4b{word-spacing:5.016000pt;}
.ws131{word-spacing:5.034667pt;}
.wsc5{word-spacing:5.066667pt;}
.wsd{word-spacing:5.117333pt;}
.ws3c{word-spacing:5.168000pt;}
.ws67{word-spacing:5.218667pt;}
.wsec{word-spacing:5.248000pt;}
.ws3a{word-spacing:5.320000pt;}
.ws11d{word-spacing:5.333333pt;}
.wsc8{word-spacing:5.370667pt;}
.ws13d{word-spacing:5.418667pt;}
.wsd8{word-spacing:5.421333pt;}
.ws64{word-spacing:5.472000pt;}
.wsf6{word-spacing:5.504000pt;}
.ws2c{word-spacing:5.522667pt;}
.ws4f{word-spacing:5.573333pt;}
.wsdd{word-spacing:5.624000pt;}
.ws125{word-spacing:5.674667pt;}
.ws33{word-spacing:5.725333pt;}
.wsbb{word-spacing:5.776000pt;}
.wsed{word-spacing:5.802667pt;}
.ws6c{word-spacing:5.826667pt;}
.wscb{word-spacing:5.877333pt;}
.ws124{word-spacing:5.888000pt;}
.ws53{word-spacing:5.928000pt;}
.ws120{word-spacing:5.973333pt;}
.wsd2{word-spacing:5.978667pt;}
.ws103{word-spacing:6.016000pt;}
.wsc6{word-spacing:6.029333pt;}
.ws102{word-spacing:6.058667pt;}
.wsa5{word-spacing:6.080000pt;}
.wsc3{word-spacing:6.130667pt;}
.ws58{word-spacing:6.181333pt;}
.ws135{word-spacing:6.186667pt;}
.ws55{word-spacing:6.232000pt;}
.ws140{word-spacing:6.272000pt;}
.wsa7{word-spacing:6.282667pt;}
.wse1{word-spacing:6.314667pt;}
.wsb7{word-spacing:6.333333pt;}
.ws108{word-spacing:6.357333pt;}
.wsfc{word-spacing:6.528000pt;}
.ws6f{word-spacing:6.536000pt;}
.wsdf{word-spacing:6.570667pt;}
.wsa9{word-spacing:6.586667pt;}
.ws5d{word-spacing:6.688000pt;}
.ws9a{word-spacing:6.738667pt;}
.ws71{word-spacing:6.826667pt;}
.wsbd{word-spacing:6.840000pt;}
.wsc9{word-spacing:6.941333pt;}
.ws61{word-spacing:6.992000pt;}
.ws50{word-spacing:7.042667pt;}
.ws31{word-spacing:7.093333pt;}
.wsb{word-spacing:7.144000pt;}
.wsa8{word-spacing:7.194667pt;}
.ws13b{word-spacing:7.424000pt;}
.wsbe{word-spacing:7.549333pt;}
.ws9f{word-spacing:7.600000pt;}
.wsb2{word-spacing:7.701333pt;}
.ws1a{word-spacing:7.752000pt;}
.ws39{word-spacing:7.954667pt;}
.wsdb{word-spacing:8.005333pt;}
.wsa0{word-spacing:8.056000pt;}
.ws98{word-spacing:8.106667pt;}
.ws41{word-spacing:8.157333pt;}
.ws9c{word-spacing:8.258667pt;}
.ws57{word-spacing:8.410667pt;}
.ws13c{word-spacing:8.448000pt;}
.ws30{word-spacing:8.512000pt;}
.wse0{word-spacing:8.533333pt;}
.wsac{word-spacing:8.714667pt;}
.ws60{word-spacing:8.765333pt;}
.ws9d{word-spacing:8.917333pt;}
.wsae{word-spacing:9.018667pt;}
.wsaa{word-spacing:9.120000pt;}
.ws22{word-spacing:9.221333pt;}
.ws68{word-spacing:9.272000pt;}
.wsfe{word-spacing:9.301333pt;}
.ws136{word-spacing:9.386667pt;}
.ws10c{word-spacing:9.429333pt;}
.ws109{word-spacing:9.813333pt;}
.wsd9{word-spacing:9.930667pt;}
.ws23{word-spacing:10.336000pt;}
.ws12{word-spacing:10.538667pt;}
.wsa2{word-spacing:10.994667pt;}
.ws2e{word-spacing:11.096000pt;}
.ws6d{word-spacing:11.552000pt;}
.wsca{word-spacing:11.602667pt;}
.ws44{word-spacing:11.653333pt;}
.wsdc{word-spacing:11.704000pt;}
.wsd7{word-spacing:12.362667pt;}
.ws13{word-spacing:12.920000pt;}
.ws2b{word-spacing:14.136000pt;}
.ws73{word-spacing:22.954667pt;}
.ws94{word-spacing:22.958933pt;}
.ws79{word-spacing:47.189333pt;}
.ws74{word-spacing:50.304000pt;}
.ws1b{word-spacing:64.938667pt;}
.ws7d{word-spacing:68.480000pt;}
.ws76{word-spacing:71.726933pt;}
.ws77{word-spacing:82.474667pt;}
.ws7e{word-spacing:101.934933pt;}
.ws95{word-spacing:102.489600pt;}
.ws84{word-spacing:154.500267pt;}
.ws88{word-spacing:156.249600pt;}
.ws93{word-spacing:167.978667pt;}
.ws8d{word-spacing:174.805333pt;}
.ws7c{word-spacing:214.954667pt;}
.ws8a{word-spacing:222.890667pt;}
.ws83{word-spacing:227.840000pt;}
.ws7b{word-spacing:229.205333pt;}
.ws8f{word-spacing:238.677333pt;}
.ws87{word-spacing:243.413333pt;}
.ws91{word-spacing:250.410667pt;}
.ws82{word-spacing:255.274667pt;}
.ws7a{word-spacing:257.664000pt;}
.ws90{word-spacing:258.304000pt;}
.ws81{word-spacing:264.746667pt;}
.ws8e{word-spacing:267.136000pt;}
.ws92{word-spacing:268.416000pt;}
.ws8c{word-spacing:279.125333pt;}
.ws86{word-spacing:290.816000pt;}
.ws96{word-spacing:310.570667pt;}
.ws8b{word-spacing:322.645333pt;}
.ws89{word-spacing:341.376000pt;}
.ws80{word-spacing:372.650667pt;}
.ws7f{word-spacing:657.920000pt;}
.ws75{word-spacing:663.936000pt;}
._6{margin-left:-13.866667pt;}
._13{margin-left:-10.101354pt;}
._3{margin-left:-4.173333pt;}
._4{margin-left:-2.789333pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.139200pt;}
._c{width:2.494933pt;}
._5{width:3.695200pt;}
._e{width:5.046400pt;}
._10{width:6.115200pt;}
._d{width:7.372800pt;}
._b{width:9.221333pt;}
._f{width:10.597333pt;}
._34{width:11.580000pt;}
._14{width:13.141333pt;}
._25{width:16.272000pt;}
._7{width:19.840000pt;}
._11{width:27.360000pt;}
._12{width:31.717333pt;}
._22{width:33.342400pt;}
._29{width:34.474667pt;}
._2{width:35.948255pt;}
._2a{width:36.845867pt;}
._32{width:38.570667pt;}
._28{width:46.336000pt;}
._9{width:50.005329pt;}
._1a{width:51.212800pt;}
._1f{width:54.954667pt;}
._1d{width:57.580267pt;}
._8{width:64.938667pt;}
._31{width:65.873067pt;}
._18{width:66.816000pt;}
._21{width:70.761067pt;}
._1c{width:76.288000pt;}
._2c{width:85.760000pt;}
._1e{width:86.954667pt;}
._2b{width:87.978667pt;}
._23{width:89.045333pt;}
._20{width:90.128000pt;}
._24{width:94.464000pt;}
._26{width:95.360000pt;}
._30{width:108.677333pt;}
._2d{width:117.648000pt;}
._1b{width:120.149333pt;}
._33{width:124.757333pt;}
._27{width:180.821313pt;}
._2f{width:219.264000pt;}
._2e{width:240.170667pt;}
._15{width:339.184517pt;}
._19{width:419.682133pt;}
._16{width:436.672607pt;}
._a{width:974.890667pt;}
._17{width:1120.554667pt;}
.fs4{font-size:29.866667pt;}
.fs3{font-size:35.466667pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:50.666667pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs1{font-size:69.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:29.055333pt;}
.ycb{bottom:65.133331pt;}
.ycd{bottom:65.133787pt;}
.y28{bottom:65.135998pt;}
.yce{bottom:65.144468pt;}
.yf6{bottom:65.144508pt;}
.yfb{bottom:65.144549pt;}
.yd3{bottom:65.155149pt;}
.yd8{bottom:65.155189pt;}
.ydd{bottom:65.155227pt;}
.y100{bottom:65.155230pt;}
.ye2{bottom:65.155268pt;}
.y118{bottom:65.155270pt;}
.ye7{bottom:65.155308pt;}
.y11d{bottom:65.155310pt;}
.yec{bottom:65.155348pt;}
.y122{bottom:65.155351pt;}
.yf1{bottom:65.155389pt;}
.y12c{bottom:65.165830pt;}
.y105{bottom:65.165911pt;}
.y10a{bottom:65.165951pt;}
.y10d{bottom:65.165986pt;}
.y127{bottom:65.166032pt;}
.y1b2{bottom:65.267583pt;}
.y192{bottom:65.989992pt;}
.yc1{bottom:66.085992pt;}
.y1bf{bottom:66.133992pt;}
.y16a{bottom:66.182002pt;}
.y77{bottom:66.424675pt;}
.y53{bottom:66.448665pt;}
.y14f{bottom:66.882931pt;}
.y1dc{bottom:68.376269pt;}
.y9b{bottom:73.760267pt;}
.yc7{bottom:75.161738pt;}
.y1b1{bottom:80.606916pt;}
.y1db{bottom:80.706935pt;}
.y191{bottom:81.329325pt;}
.yc0{bottom:81.425325pt;}
.y1be{bottom:81.473325pt;}
.y169{bottom:81.521335pt;}
.y27{bottom:81.733332pt;}
.y76{bottom:81.764008pt;}
.y52{bottom:81.787998pt;}
.y14e{bottom:82.222265pt;}
.y250{bottom:87.876916pt;}
.y9a{bottom:89.099600pt;}
.ycc{bottom:89.537465pt;}
.yc6{bottom:90.501072pt;}
.y1da{bottom:93.037602pt;}
.y215{bottom:93.268900pt;}
.y1b0{bottom:95.946249pt;}
.y190{bottom:96.668659pt;}
.ybf{bottom:96.764659pt;}
.y1bd{bottom:96.812659pt;}
.y168{bottom:96.860669pt;}
.y75{bottom:97.103341pt;}
.y51{bottom:97.127331pt;}
.y24f{bottom:100.207583pt;}
.y26{bottom:102.607332pt;}
.y99{bottom:104.438933pt;}
.y1d9{bottom:105.368269pt;}
.y214{bottom:105.599566pt;}
.yc5{bottom:105.840405pt;}
.y1af{bottom:111.285583pt;}
.y18f{bottom:112.007992pt;}
.ybe{bottom:112.103992pt;}
.y1bc{bottom:112.151992pt;}
.y167{bottom:112.200002pt;}
.y74{bottom:112.442675pt;}
.y50{bottom:112.466665pt;}
.y24e{bottom:112.538249pt;}
.y14d{bottom:113.555603pt;}
.y25{bottom:114.937998pt;}
.y1d8{bottom:117.698935pt;}
.y213{bottom:117.930233pt;}
.yc4{bottom:121.179738pt;}
.y24d{bottom:124.868916pt;}
.y1ae{bottom:126.624916pt;}
.y18e{bottom:127.347325pt;}
.ybd{bottom:127.443325pt;}
.y1bb{bottom:127.491325pt;}
.y73{bottom:127.782008pt;}
.y1d7{bottom:130.029602pt;}
.y212{bottom:130.260900pt;}
.y24{bottom:133.977998pt;}
.y98{bottom:135.772267pt;}
.y24c{bottom:137.199583pt;}
.y1ad{bottom:141.964249pt;}
.y1d6{bottom:142.360269pt;}
.y211{bottom:142.591566pt;}
.y18d{bottom:142.686659pt;}
.ybc{bottom:142.782659pt;}
.y1ba{bottom:142.830659pt;}
.y72{bottom:143.121341pt;}
.y166{bottom:143.533335pt;}
.y4f{bottom:143.799998pt;}
.y14c{bottom:145.549603pt;}
.y23{bottom:146.308665pt;}
.y24b{bottom:149.530249pt;}
.yc3{bottom:152.512939pt;}
.y1d5{bottom:154.690935pt;}
.y210{bottom:154.922233pt;}
.y1ac{bottom:157.303583pt;}
.y18c{bottom:158.025992pt;}
.ybb{bottom:158.121992pt;}
.y1b9{bottom:158.169992pt;}
.y71{bottom:158.460675pt;}
.y14b{bottom:160.888936pt;}
.y24a{bottom:161.860916pt;}
.y20f{bottom:167.252900pt;}
.y1ab{bottom:172.642916pt;}
.y18b{bottom:173.365325pt;}
.yba{bottom:173.461325pt;}
.y1b8{bottom:173.509325pt;}
.y70{bottom:173.800008pt;}
.y249{bottom:174.191583pt;}
.y1d4{bottom:179.362935pt;}
.y20e{bottom:179.583566pt;}
.y165{bottom:181.002940pt;}
.y4e{bottom:182.479897pt;}
.yc2{bottom:184.512939pt;}
.y248{bottom:186.522249pt;}
.y1aa{bottom:187.982249pt;}
.y18a{bottom:188.704659pt;}
.yb9{bottom:188.800659pt;}
.y1b7{bottom:188.848659pt;}
.y22{bottom:189.290939pt;}
.y97{bottom:191.481325pt;}
.y20d{bottom:191.914233pt;}
.y14a{bottom:192.222270pt;}
.y164{bottom:196.342274pt;}
.y4d{bottom:197.819230pt;}
.y247{bottom:198.852916pt;}
.y1a9{bottom:203.321583pt;}
.y1d3{bottom:204.029602pt;}
.y189{bottom:204.043992pt;}
.yb8{bottom:204.139992pt;}
.y1b6{bottom:204.187992pt;}
.y20c{bottom:204.244900pt;}
.y21{bottom:204.630272pt;}
.y6f{bottom:205.133341pt;}
.y96{bottom:206.820659pt;}
.y246{bottom:211.183583pt;}
.y163{bottom:211.681607pt;}
.y4c{bottom:213.158564pt;}
.y20b{bottom:216.575566pt;}
.y1a8{bottom:218.660916pt;}
.y188{bottom:219.383325pt;}
.yb7{bottom:219.479325pt;}
.y1b5{bottom:219.527325pt;}
.y20{bottom:219.969606pt;}
.yca{bottom:220.711591pt;}
.y95{bottom:222.159992pt;}
.y245{bottom:223.514249pt;}
.y149{bottom:224.174249pt;}
.y162{bottom:227.020940pt;}
.y4b{bottom:228.497897pt;}
.y20a{bottom:228.906233pt;}
.y1d2{bottom:231.763062pt;}
.yc9{bottom:233.042258pt;}
.y1a7{bottom:234.000249pt;}
.y187{bottom:234.722659pt;}
.yb6{bottom:234.818659pt;}
.y1b4{bottom:234.866659pt;}
.y1f{bottom:235.308939pt;}
.y244{bottom:235.844916pt;}
.y6e{bottom:237.993863pt;}
.y148{bottom:239.513583pt;}
.y209{bottom:241.236900pt;}
.y161{bottom:242.360274pt;}
.y4a{bottom:243.837230pt;}
.yc8{bottom:245.372925pt;}
.y243{bottom:248.175583pt;}
.y1a6{bottom:249.339583pt;}
.y186{bottom:250.061992pt;}
.yb5{bottom:250.157992pt;}
.y1e{bottom:250.648272pt;}
.y6d{bottom:253.333196pt;}
.y208{bottom:253.567566pt;}
.y94{bottom:254.155992pt;}
.y147{bottom:254.852916pt;}
.y1d1{bottom:256.387728pt;}
.y160{bottom:257.699607pt;}
.y49{bottom:259.176564pt;}
.y242{bottom:260.506249pt;}
.y1a5{bottom:264.678916pt;}
.y185{bottom:265.401325pt;}
.yb4{bottom:265.497325pt;}
.y207{bottom:265.898233pt;}
.y1d{bottom:265.987606pt;}
.y1b3{bottom:266.199992pt;}
.y6c{bottom:268.672530pt;}
.y93{bottom:269.495325pt;}
.y146{bottom:270.192249pt;}
.y1d0{bottom:271.727062pt;}
.y241{bottom:272.836916pt;}
.y15f{bottom:273.038940pt;}
.y48{bottom:274.515897pt;}
.y206{bottom:278.228900pt;}
.y1a4{bottom:280.018249pt;}
.y184{bottom:280.740659pt;}
.yb3{bottom:280.836659pt;}
.y1c{bottom:281.326939pt;}
.y6b{bottom:284.011863pt;}
.y92{bottom:284.834659pt;}
.y240{bottom:285.167583pt;}
.y145{bottom:285.531583pt;}
.y1cf{bottom:287.066395pt;}
.y47{bottom:289.855230pt;}
.y205{bottom:290.559566pt;}
.y1a3{bottom:295.357583pt;}
.y183{bottom:296.079992pt;}
.yb2{bottom:296.175992pt;}
.y1b{bottom:296.666272pt;}
.y23f{bottom:297.498249pt;}
.y6a{bottom:299.351196pt;}
.y91{bottom:300.173992pt;}
.y144{bottom:300.870916pt;}
.y1ce{bottom:302.405728pt;}
.y204{bottom:302.890233pt;}
.y15e{bottom:304.372274pt;}
.y46{bottom:305.194564pt;}
.y23e{bottom:309.828916pt;}
.y1a2{bottom:310.696916pt;}
.y182{bottom:311.419325pt;}
.yb1{bottom:311.515325pt;}
.y1a{bottom:312.005606pt;}
.y203{bottom:315.220900pt;}
.y90{bottom:315.513325pt;}
.y143{bottom:316.210249pt;}
.y1cd{bottom:317.745062pt;}
.y45{bottom:320.533897pt;}
.y23d{bottom:322.159583pt;}
.y1a1{bottom:326.036249pt;}
.y181{bottom:326.758659pt;}
.yb0{bottom:326.854659pt;}
.y19{bottom:327.344939pt;}
.y202{bottom:327.551566pt;}
.y69{bottom:330.684530pt;}
.y8f{bottom:330.852659pt;}
.y142{bottom:331.549583pt;}
.y1cc{bottom:333.084395pt;}
.y23c{bottom:334.490249pt;}
.y44{bottom:335.873230pt;}
.y201{bottom:339.882233pt;}
.y1a0{bottom:341.375583pt;}
.y15d{bottom:341.871848pt;}
.y180{bottom:342.097992pt;}
.yaf{bottom:342.193992pt;}
.y8e{bottom:346.191992pt;}
.y23b{bottom:346.820916pt;}
.y141{bottom:346.888916pt;}
.y1cb{bottom:348.423728pt;}
.y43{bottom:351.212564pt;}
.y200{bottom:352.212900pt;}
.y19f{bottom:356.714916pt;}
.y15c{bottom:357.211182pt;}
.y17f{bottom:357.437325pt;}
.yae{bottom:357.533325pt;}
.y23a{bottom:359.151583pt;}
.y68{bottom:363.532929pt;}
.y1ca{bottom:363.763062pt;}
.y1ff{bottom:364.543566pt;}
.y42{bottom:366.551897pt;}
.y239{bottom:371.482249pt;}
.y19e{bottom:372.054249pt;}
.y17e{bottom:372.776659pt;}
.y18{bottom:376.010272pt;}
.y1fe{bottom:376.874233pt;}
.y8d{bottom:378.187992pt;}
.y140{bottom:378.222249pt;}
.y67{bottom:378.872262pt;}
.y41{bottom:381.891230pt;}
.y238{bottom:383.812916pt;}
.y19d{bottom:387.393583pt;}
.y17d{bottom:388.115992pt;}
.y15b{bottom:388.544515pt;}
.yad{bottom:388.866659pt;}
.y1fd{bottom:389.204900pt;}
.y17{bottom:391.349606pt;}
.y8c{bottom:393.527325pt;}
.y66{bottom:394.211596pt;}
.y1c9{bottom:395.096395pt;}
.y237{bottom:396.143583pt;}
.y40{bottom:397.230564pt;}
.y1fc{bottom:401.535566pt;}
.y19c{bottom:402.732916pt;}
.y17c{bottom:403.455325pt;}
.y236{bottom:408.474249pt;}
.y8b{bottom:408.866659pt;}
.y65{bottom:409.550929pt;}
.y13f{bottom:410.216249pt;}
.y3f{bottom:412.569897pt;}
.y1fb{bottom:413.866233pt;}
.y19b{bottom:418.072249pt;}
.y17b{bottom:418.794659pt;}
.y235{bottom:420.804916pt;}
.ycf{bottom:421.603134pt;}
.yf7{bottom:421.603175pt;}
.yfc{bottom:421.603215pt;}
.yd4{bottom:421.613815pt;}
.yd9{bottom:421.613854pt;}
.y112{bottom:421.613856pt;}
.yde{bottom:421.613894pt;}
.y101{bottom:421.613896pt;}
.ye3{bottom:421.613934pt;}
.y119{bottom:421.613937pt;}
.ye8{bottom:421.613975pt;}
.y11e{bottom:421.613977pt;}
.yed{bottom:421.614015pt;}
.y123{bottom:421.614017pt;}
.yf2{bottom:421.614056pt;}
.y12d{bottom:421.624496pt;}
.y106{bottom:421.624577pt;}
.y10b{bottom:421.624618pt;}
.y10e{bottom:421.624653pt;}
.y128{bottom:421.624698pt;}
.y16{bottom:422.015606pt;}
.y64{bottom:424.890262pt;}
.y13e{bottom:425.555583pt;}
.y15a{bottom:426.026130pt;}
.y1fa{bottom:426.196900pt;}
.y3e{bottom:427.909230pt;}
.y234{bottom:433.135583pt;}
.y19a{bottom:433.411583pt;}
.y17a{bottom:434.133992pt;}
.yac{bottom:434.847848pt;}
.y15{bottom:437.354939pt;}
.y1f9{bottom:438.527566pt;}
.y8a{bottom:440.199992pt;}
.y63{bottom:440.229596pt;}
.y159{bottom:441.365464pt;}
.y3d{bottom:443.248564pt;}
.y233{bottom:445.466249pt;}
.y199{bottom:448.750916pt;}
.y179{bottom:449.473325pt;}
.yab{bottom:450.187182pt;}
.y1c8{bottom:450.617342pt;}
.y1f8{bottom:450.858233pt;}
.y14{bottom:452.694272pt;}
.y62{bottom:455.568929pt;}
.y158{bottom:456.704797pt;}
.y13d{bottom:456.888916pt;}
.y232{bottom:457.796916pt;}
.y3c{bottom:458.587897pt;}
.y1f7{bottom:463.188900pt;}
.y198{bottom:464.090249pt;}
.y178{bottom:464.812659pt;}
.yaa{bottom:465.526515pt;}
.y1c7{bottom:465.956676pt;}
.y13{bottom:468.033606pt;}
.y231{bottom:470.127583pt;}
.y157{bottom:472.044130pt;}
.y3b{bottom:473.927230pt;}
.y1f6{bottom:475.519566pt;}
.y197{bottom:479.429583pt;}
.y177{bottom:480.151992pt;}
.ya9{bottom:480.865848pt;}
.y1c6{bottom:481.296009pt;}
.y230{bottom:482.458249pt;}
.y12{bottom:483.372939pt;}
.y89{bottom:483.931182pt;}
.y61{bottom:486.902262pt;}
.y156{bottom:487.383464pt;}
.y1f5{bottom:487.850233pt;}
.y13c{bottom:488.882916pt;}
.y3a{bottom:489.266564pt;}
.y196{bottom:494.768916pt;}
.y22f{bottom:494.788916pt;}
.y176{bottom:495.491325pt;}
.ya8{bottom:496.205182pt;}
.y1c5{bottom:496.635342pt;}
.y11{bottom:498.712272pt;}
.y88{bottom:499.270515pt;}
.y1f4{bottom:500.180900pt;}
.y13b{bottom:504.222249pt;}
.y39{bottom:504.605897pt;}
.y22e{bottom:507.119583pt;}
.y195{bottom:510.108249pt;}
.y175{bottom:510.830659pt;}
.ya7{bottom:511.544515pt;}
.y1c4{bottom:511.974676pt;}
.y1f3{bottom:512.511566pt;}
.y10{bottom:514.051606pt;}
.y87{bottom:514.609848pt;}
.y155{bottom:518.716797pt;}
.y22d{bottom:519.450249pt;}
.y60{bottom:519.762784pt;}
.y38{bottom:519.945230pt;}
.y1f2{bottom:524.842233pt;}
.y194{bottom:525.447583pt;}
.y174{bottom:526.169992pt;}
.y1c3{bottom:527.314009pt;}
.yf{bottom:529.390939pt;}
.y86{bottom:529.949182pt;}
.y22c{bottom:531.780916pt;}
.y5f{bottom:535.102117pt;}
.y37{bottom:535.284564pt;}
.y13a{bottom:535.555583pt;}
.y1f1{bottom:537.172900pt;}
.y193{bottom:540.786916pt;}
.y173{bottom:541.509325pt;}
.y1c2{bottom:542.653342pt;}
.ya6{bottom:542.877848pt;}
.y22b{bottom:544.111583pt;}
.ye{bottom:544.730272pt;}
.y85{bottom:545.288515pt;}
.y1f0{bottom:549.503566pt;}
.y5e{bottom:550.441451pt;}
.y36{bottom:550.623897pt;}
.y154{bottom:556.126249pt;}
.y22a{bottom:556.442249pt;}
.y172{bottom:556.848659pt;}
.y1c1{bottom:557.992676pt;}
.yd{bottom:560.069606pt;}
.y84{bottom:560.627848pt;}
.y1ef{bottom:561.834233pt;}
.y5d{bottom:565.780784pt;}
.y35{bottom:565.963230pt;}
.y139{bottom:567.537583pt;}
.y229{bottom:568.772916pt;}
.y153{bottom:571.465583pt;}
.y171{bottom:572.187992pt;}
.y1ee{bottom:574.164900pt;}
.ya5{bottom:574.877848pt;}
.yc{bottom:575.408939pt;}
.y228{bottom:581.103583pt;}
.y5c{bottom:581.120117pt;}
.y34{bottom:581.302564pt;}
.y138{bottom:582.876916pt;}
.y1ed{bottom:586.495566pt;}
.y152{bottom:586.804916pt;}
.y170{bottom:587.527325pt;}
.y1c0{bottom:589.326009pt;}
.yb{bottom:590.748272pt;}
.y83{bottom:591.961182pt;}
.y227{bottom:593.434249pt;}
.yd0{bottom:596.440468pt;}
.yf8{bottom:596.440508pt;}
.yfd{bottom:596.440549pt;}
.yd5{bottom:596.451149pt;}
.yda{bottom:596.451187pt;}
.y113{bottom:596.451189pt;}
.ydf{bottom:596.451227pt;}
.y102{bottom:596.451230pt;}
.ye4{bottom:596.451268pt;}
.y11a{bottom:596.451270pt;}
.ye9{bottom:596.451308pt;}
.y11f{bottom:596.451310pt;}
.yee{bottom:596.451348pt;}
.y124{bottom:596.451351pt;}
.yf3{bottom:596.451389pt;}
.y12e{bottom:596.461830pt;}
.y107{bottom:596.461911pt;}
.y10c{bottom:596.461951pt;}
.y10f{bottom:596.461986pt;}
.y129{bottom:596.462032pt;}
.y33{bottom:596.641897pt;}
.y137{bottom:598.216249pt;}
.y1ec{bottom:598.826233pt;}
.y151{bottom:602.144249pt;}
.y16f{bottom:602.866659pt;}
.yd1{bottom:604.440468pt;}
.yf9{bottom:604.440508pt;}
.yfe{bottom:604.440549pt;}
.yd6{bottom:604.451149pt;}
.ydb{bottom:604.451187pt;}
.y114{bottom:604.451189pt;}
.ye0{bottom:604.451227pt;}
.y103{bottom:604.451230pt;}
.ye5{bottom:604.451268pt;}
.y11b{bottom:604.451270pt;}
.yea{bottom:604.451308pt;}
.y120{bottom:604.451310pt;}
.yef{bottom:604.451348pt;}
.y125{bottom:604.451351pt;}
.yf4{bottom:604.451389pt;}
.y12f{bottom:604.461830pt;}
.y108{bottom:604.461911pt;}
.y116{bottom:604.461951pt;}
.y110{bottom:604.461986pt;}
.y12a{bottom:604.462032pt;}
.y226{bottom:605.764916pt;}
.ya{bottom:606.087606pt;}
.y1eb{bottom:611.156900pt;}
.y32{bottom:611.981230pt;}
.y5b{bottom:612.453451pt;}
.y136{bottom:613.555583pt;}
.y150{bottom:617.483583pt;}
.y225{bottom:618.095583pt;}
.y1ea{bottom:623.487566pt;}
.y31{bottom:627.320564pt;}
.y224{bottom:630.426249pt;}
.y82{bottom:631.668249pt;}
.ya4{bottom:632.822916pt;}
.y16e{bottom:634.199992pt;}
.y1e9{bottom:635.818233pt;}
.y30{bottom:642.659897pt;}
.y223{bottom:642.756916pt;}
.y135{bottom:644.888916pt;}
.y5a{bottom:645.307891pt;}
.y81{bottom:647.007583pt;}
.y1e8{bottom:648.148900pt;}
.ya3{bottom:648.162249pt;}
.y9{bottom:648.522279pt;}
.y222{bottom:655.087583pt;}
.y2f{bottom:657.999230pt;}
.y1e7{bottom:660.479566pt;}
.y59{bottom:660.647224pt;}
.y8{bottom:660.852946pt;}
.y80{bottom:662.346916pt;}
.ya2{bottom:663.501583pt;}
.y221{bottom:667.418249pt;}
.y1e6{bottom:672.810233pt;}
.y2e{bottom:673.338564pt;}
.y58{bottom:675.986557pt;}
.y134{bottom:676.876916pt;}
.y7f{bottom:677.686249pt;}
.ya1{bottom:678.840916pt;}
.y220{bottom:679.748916pt;}
.y1e5{bottom:685.140900pt;}
.y2d{bottom:688.677897pt;}
.y57{bottom:691.325891pt;}
.y21f{bottom:692.079583pt;}
.y133{bottom:692.216249pt;}
.y7e{bottom:693.025583pt;}
.ya0{bottom:694.180249pt;}
.y7{bottom:694.427572pt;}
.y16d{bottom:694.871848pt;}
.y1e4{bottom:697.471566pt;}
.y21e{bottom:704.410249pt;}
.y56{bottom:706.665224pt;}
.y132{bottom:707.555583pt;}
.y7d{bottom:708.364916pt;}
.y9f{bottom:709.519583pt;}
.y1e3{bottom:709.802233pt;}
.y16c{bottom:710.211182pt;}
.y21d{bottom:716.740916pt;}
.y2c{bottom:720.011230pt;}
.y55{bottom:722.004557pt;}
.y1e2{bottom:722.132900pt;}
.y7c{bottom:723.704249pt;}
.y9e{bottom:724.858916pt;}
.y21c{bottom:729.071583pt;}
.y6{bottom:732.144957pt;}
.y1e1{bottom:734.463566pt;}
.y131{bottom:738.888916pt;}
.y7b{bottom:739.043583pt;}
.y9d{bottom:740.198249pt;}
.y21b{bottom:741.402249pt;}
.y16b{bottom:741.544515pt;}
.y252{bottom:744.058249pt;}
.y1e0{bottom:746.794233pt;}
.y5{bottom:752.147624pt;}
.y54{bottom:753.337891pt;}
.y21a{bottom:753.732916pt;}
.y7a{bottom:754.382916pt;}
.y9c{bottom:755.537583pt;}
.y251{bottom:756.388916pt;}
.y1df{bottom:759.124900pt;}
.y219{bottom:766.063583pt;}
.y79{bottom:769.722249pt;}
.y2b{bottom:770.876916pt;}
.y1de{bottom:771.455566pt;}
.y218{bottom:778.394249pt;}
.yd2{bottom:778.403134pt;}
.yfa{bottom:778.403175pt;}
.yff{bottom:778.403215pt;}
.yd7{bottom:778.413815pt;}
.ydc{bottom:778.413854pt;}
.y115{bottom:778.413856pt;}
.ye1{bottom:778.413894pt;}
.y104{bottom:778.413896pt;}
.ye6{bottom:778.413934pt;}
.y11c{bottom:778.413937pt;}
.yeb{bottom:778.413975pt;}
.y121{bottom:778.413977pt;}
.yf0{bottom:778.414015pt;}
.y126{bottom:778.414017pt;}
.yf5{bottom:778.414056pt;}
.y130{bottom:778.424496pt;}
.y109{bottom:778.424577pt;}
.y117{bottom:778.424618pt;}
.y111{bottom:778.424653pt;}
.y12b{bottom:778.424698pt;}
.y2a{bottom:786.216249pt;}
.y217{bottom:790.724916pt;}
.y4{bottom:799.809082pt;}
.y1dd{bottom:800.055583pt;}
.y78{bottom:801.055583pt;}
.y29{bottom:801.555583pt;}
.y216{bottom:803.055583pt;}
.y3{bottom:823.215232pt;}
.y2{bottom:835.545898pt;}
.hb{height:26.043733pt;}
.h2{height:30.080000pt;}
.ha{height:37.205333pt;}
.h3{height:37.376000pt;}
.h10{height:37.802667pt;}
.h4{height:41.514667pt;}
.hf{height:43.648000pt;}
.h8{height:44.181333pt;}
.h9{height:44.890667pt;}
.he{height:47.253333pt;}
.hd{height:47.680000pt;}
.h7{height:50.109333pt;}
.h6{height:54.775994pt;}
.hc{height:58.021333pt;}
.h5{height:61.429333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:62.362269pt;}
.x3{left:66.248398pt;}
.x7{left:70.362269pt;}
.x4{left:77.486132pt;}
.x5{left:81.263601pt;}
.x6{left:83.692798pt;}
.x6e{left:85.039602pt;}
.x8{left:91.487864pt;}
.x9{left:112.682531pt;}
.x26{left:135.952129pt;}
.xa{left:137.567864pt;}
.x27{left:148.282796pt;}
.xb{left:149.898531pt;}
.x62{left:161.040128pt;}
.xc{left:166.037198pt;}
.x28{left:168.453462pt;}
.x42{left:169.786796pt;}
.x63{left:176.677461pt;}
.xd{left:178.367864pt;}
.x29{left:180.784129pt;}
.x43{left:182.117462pt;}
.x64{left:189.008128pt;}
.xe{left:190.698531pt;}
.x2a{left:193.114796pt;}
.x54{left:196.848128pt;}
.x57{left:201.381461pt;}
.x44{left:202.288129pt;}
.x65{left:204.645461pt;}
.xf{left:206.335864pt;}
.x2b{left:208.752129pt;}
.x58{left:213.712128pt;}
.x45{left:214.618796pt;}
.x66{left:216.976128pt;}
.x10{left:218.666531pt;}
.x2c{left:221.082796pt;}
.x55{left:224.816128pt;}
.x46{left:226.949462pt;}
.x11{left:230.997198pt;}
.x67{left:232.613461pt;}
.x59{left:233.882794pt;}
.x2d{left:236.720129pt;}
.x47{left:239.280129pt;}
.x68{left:244.944128pt;}
.x12{left:246.623864pt;}
.x2e{left:249.050796pt;}
.x48{left:251.610796pt;}
.x56{left:252.784128pt;}
.x13{left:258.954531pt;}
.x69{left:260.581461pt;}
.x2f{left:264.688129pt;}
.x49{left:267.248129pt;}
.x6a{left:272.912128pt;}
.x14{left:274.591864pt;}
.x30{left:277.018796pt;}
.x4a{left:279.578796pt;}
.x15{left:286.922531pt;}
.x6b{left:288.624128pt;}
.x31{left:292.656129pt;}
.x4b{left:295.216129pt;}
.x16{left:299.253198pt;}
.x6c{left:300.954794pt;}
.x32{left:304.986796pt;}
.x4c{left:307.546796pt;}
.x5a{left:311.216128pt;}
.x17{left:314.890531pt;}
.x33{left:317.317462pt;}
.x4d{left:319.877462pt;}
.x6d{left:324.496128pt;}
.x18{left:327.221198pt;}
.x34{left:332.954796pt;}
.x4e{left:335.514796pt;}
.x5b{left:339.184128pt;}
.x19{left:342.858531pt;}
.x35{left:345.285462pt;}
.x4f{left:347.845462pt;}
.x1a{left:355.189198pt;}
.x36{left:360.922796pt;}
.x5c{left:367.152128pt;}
.x1b{left:370.826531pt;}
.x37{left:373.253462pt;}
.x50{left:375.813462pt;}
.x5d{left:379.482794pt;}
.x1c{left:383.157198pt;}
.x38{left:388.890796pt;}
.x5e{left:395.120128pt;}
.x1d{left:398.794531pt;}
.x39{left:401.221462pt;}
.x51{left:403.781462pt;}
.x5f{left:407.450794pt;}
.x1e{left:411.125198pt;}
.x3a{left:416.858796pt;}
.x1f{left:423.455864pt;}
.x3b{left:429.189462pt;}
.x1{left:431.874146pt;}
.x20{left:435.786531pt;}
.x3c{left:441.520129pt;}
.x21{left:448.117198pt;}
.x60{left:451.056128pt;}
.x3d{left:453.850796pt;}
.x52{left:456.410796pt;}
.x22{left:460.437198pt;}
.x61{left:463.386794pt;}
.x3e{left:466.181462pt;}
.x53{left:468.741462pt;}
.x23{left:472.767864pt;}
.x3f{left:481.818796pt;}
.x24{left:485.098531pt;}
.x40{left:494.149462pt;}
.x25{left:497.429198pt;}
.x41{left:506.480129pt;}
}




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