
    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_a8b26d06fb46c04a166dc535.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_0a7ac5408740b98420911aaa.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_e64ef036c9b557710f928a91.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_40280243249a7d2c21139ab0.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_928d97a4e26afc1b08a569ce.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_c25725b09918f2cc1228fe1f.woff')format("woff");}.ff6{font-family:ff6;line-height:1.142000;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_34b64341e240b140c5d36dd1.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_4928f190b0881de6fc0eac42.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_3f41bf788775bdf7e31f2fd3.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;}
.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.199982px;}
.v3{vertical-align:-3.600769px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.799931px;}
.v4{vertical-align:55.488000px;}
.ls2{letter-spacing:-3.360000px;}
.ls9{letter-spacing:-0.798000px;}
.ls1{letter-spacing:-0.720000px;}
.ls0{letter-spacing:0.000000px;}
.ls1c{letter-spacing:0.163263px;}
.ls6{letter-spacing:0.524400px;}
.ls1d{letter-spacing:0.528000px;}
.lsf{letter-spacing:0.672000px;}
.ls10{letter-spacing:0.676789px;}
.ls5{letter-spacing:0.683984px;}
.ls7{letter-spacing:0.769493px;}
.ls8{letter-spacing:0.789600px;}
.ls3{letter-spacing:0.798000px;}
.ls1e{letter-spacing:1.007965px;}
.ls4{letter-spacing:1.088636px;}
.ls11{letter-spacing:1.248000px;}
.ls14{letter-spacing:1.876789px;}
.ls16{letter-spacing:2.889585px;}
.ls1a{letter-spacing:3.513600px;}
.ls15{letter-spacing:4.800054px;}
.lsc{letter-spacing:4.905600px;}
.lsb{letter-spacing:5.188800px;}
.ls1f{letter-spacing:5.971200px;}
.ls18{letter-spacing:6.244800px;}
.ls12{letter-spacing:6.249654px;}
.ls17{letter-spacing:6.436758px;}
.ls1b{letter-spacing:6.484800px;}
.lsa{letter-spacing:6.864000px;}
.ls19{letter-spacing:8.591987px;}
.lse{letter-spacing:8.740848px;}
.lsd{letter-spacing:9.551978px;}
.ls13{letter-spacing:15.312000px;}
.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;}
}
.ws5{word-spacing:-14.250000px;}
.ws19{word-spacing:-13.332000px;}
.wsfb{word-spacing:-12.672000px;}
.ws98{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.799000px;}
.ws9a{word-spacing:-11.520000px;}
.ws4{word-spacing:-11.514000px;}
.ws65{word-spacing:-11.340000px;}
.ws6{word-spacing:-10.944000px;}
.ws1{word-spacing:-9.408000px;}
.wsd0{word-spacing:-9.216000px;}
.ws7{word-spacing:-8.400000px;}
.ws3{word-spacing:-8.259300px;}
.ws7d{word-spacing:-7.125000px;}
.ws99{word-spacing:-6.000000px;}
.wsc3{word-spacing:-0.969000px;}
.ws121{word-spacing:-0.864000px;}
.ws7f{word-spacing:-0.798000px;}
.ws80{word-spacing:-0.789600px;}
.ws44{word-spacing:-0.741000px;}
.ws15{word-spacing:-0.684000px;}
.ws102{word-spacing:-0.672000px;}
.wsc6{word-spacing:-0.627000px;}
.wsf3{word-spacing:-0.576000px;}
.ws6f{word-spacing:-0.570000px;}
.ws84{word-spacing:-0.513000px;}
.ws12{word-spacing:-0.456000px;}
.ws2f{word-spacing:-0.399000px;}
.ws3a{word-spacing:-0.342000px;}
.wsd6{word-spacing:-0.288000px;}
.ws68{word-spacing:-0.285000px;}
.ws123{word-spacing:-0.240000px;}
.ws31{word-spacing:-0.228000px;}
.ws12a{word-spacing:-0.192000px;}
.wsc7{word-spacing:-0.171000px;}
.ws11d{word-spacing:-0.144000px;}
.ws70{word-spacing:-0.114000px;}
.ws127{word-spacing:-0.096000px;}
.ws86{word-spacing:-0.057000px;}
.ws0{word-spacing:-0.048000px;}
.ws8{word-spacing:0.000000px;}
.wsee{word-spacing:0.048000px;}
.ws94{word-spacing:0.057000px;}
.ws7b{word-spacing:0.114000px;}
.ws13{word-spacing:0.171000px;}
.wsde{word-spacing:0.192000px;}
.ws9{word-spacing:0.228000px;}
.wsdf{word-spacing:0.240000px;}
.ws60{word-spacing:0.285000px;}
.wsd7{word-spacing:0.288000px;}
.wsd2{word-spacing:0.336000px;}
.wsca{word-spacing:0.342000px;}
.ws115{word-spacing:0.384000px;}
.ws26{word-spacing:0.399000px;}
.wsd3{word-spacing:0.432000px;}
.ws5d{word-spacing:0.456000px;}
.ws62{word-spacing:0.513000px;}
.ws21{word-spacing:0.570000px;}
.wsfe{word-spacing:0.624000px;}
.wsc0{word-spacing:0.627000px;}
.wse{word-spacing:0.684000px;}
.wsf6{word-spacing:0.720000px;}
.wsb0{word-spacing:0.741000px;}
.wsb6{word-spacing:0.798000px;}
.wsaa{word-spacing:0.855000px;}
.ws125{word-spacing:0.864000px;}
.wsf9{word-spacing:0.912000px;}
.ws11b{word-spacing:0.960000px;}
.ws89{word-spacing:0.969000px;}
.wsfd{word-spacing:1.008000px;}
.ws90{word-spacing:1.026000px;}
.wscd{word-spacing:1.083000px;}
.ws22{word-spacing:1.140000px;}
.wsab{word-spacing:1.197000px;}
.ws10a{word-spacing:1.200000px;}
.ws2c{word-spacing:1.254000px;}
.ws14{word-spacing:1.311000px;}
.ws122{word-spacing:1.344000px;}
.ws3b{word-spacing:1.368000px;}
.ws24{word-spacing:1.425000px;}
.ws55{word-spacing:1.482000px;}
.wse9{word-spacing:1.488000px;}
.ws61{word-spacing:1.539000px;}
.ws87{word-spacing:1.596000px;}
.wsba{word-spacing:1.653000px;}
.ws10b{word-spacing:1.680000px;}
.wsa{word-spacing:1.710000px;}
.ws124{word-spacing:1.728000px;}
.ws9c{word-spacing:1.767000px;}
.wse6{word-spacing:1.776000px;}
.ws56{word-spacing:1.824000px;}
.wsbb{word-spacing:1.881000px;}
.wsf2{word-spacing:1.920000px;}
.ws30{word-spacing:1.938000px;}
.ws10d{word-spacing:1.968000px;}
.ws71{word-spacing:1.995000px;}
.ws42{word-spacing:2.052000px;}
.ws8b{word-spacing:2.109000px;}
.ws10e{word-spacing:2.160000px;}
.ws66{word-spacing:2.166000px;}
.ws39{word-spacing:2.223000px;}
.wsa4{word-spacing:2.280000px;}
.ws101{word-spacing:2.304000px;}
.ws11{word-spacing:2.337000px;}
.ws100{word-spacing:2.352000px;}
.wsa5{word-spacing:2.394000px;}
.wse8{word-spacing:2.400000px;}
.wse3{word-spacing:2.448000px;}
.ws32{word-spacing:2.451000px;}
.ws118{word-spacing:2.496000px;}
.wsac{word-spacing:2.508000px;}
.wse7{word-spacing:2.544000px;}
.ws4a{word-spacing:2.565000px;}
.wsdc{word-spacing:2.592000px;}
.ws3f{word-spacing:2.622000px;}
.wsa7{word-spacing:2.679000px;}
.wsc4{word-spacing:2.736000px;}
.wsfa{word-spacing:2.784000px;}
.ws5c{word-spacing:2.793000px;}
.ws4e{word-spacing:2.850000px;}
.ws54{word-spacing:2.907000px;}
.ws128{word-spacing:2.928000px;}
.ws1a{word-spacing:2.964000px;}
.wsff{word-spacing:2.976000px;}
.ws40{word-spacing:3.021000px;}
.ws112{word-spacing:3.072000px;}
.ws29{word-spacing:3.078000px;}
.ws33{word-spacing:3.135000px;}
.ws95{word-spacing:3.192000px;}
.wsb{word-spacing:3.249000px;}
.ws5b{word-spacing:3.306000px;}
.ws11f{word-spacing:3.312000px;}
.wsdd{word-spacing:3.360000px;}
.wsbe{word-spacing:3.363000px;}
.ws74{word-spacing:3.420000px;}
.wsf8{word-spacing:3.456000px;}
.ws1c{word-spacing:3.477000px;}
.ws5f{word-spacing:3.534000px;}
.ws109{word-spacing:3.552000px;}
.ws92{word-spacing:3.591000px;}
.ws108{word-spacing:3.600000px;}
.ws5a{word-spacing:3.648000px;}
.ws126{word-spacing:3.696000px;}
.ws27{word-spacing:3.705000px;}
.ws10f{word-spacing:3.744000px;}
.ws20{word-spacing:3.762000px;}
.ws7e{word-spacing:3.819000px;}
.wsef{word-spacing:3.840000px;}
.ws93{word-spacing:3.876000px;}
.ws16{word-spacing:3.933000px;}
.ws10c{word-spacing:3.936000px;}
.ws4d{word-spacing:3.990000px;}
.wsd9{word-spacing:4.032000px;}
.ws3e{word-spacing:4.047000px;}
.ws45{word-spacing:4.104000px;}
.wsbd{word-spacing:4.161000px;}
.ws119{word-spacing:4.176000px;}
.ws82{word-spacing:4.218000px;}
.wsda{word-spacing:4.224000px;}
.wsa0{word-spacing:4.275000px;}
.ws10{word-spacing:4.332000px;}
.wsa8{word-spacing:4.389000px;}
.ws11c{word-spacing:4.416000px;}
.wsc{word-spacing:4.446000px;}
.ws107{word-spacing:4.464000px;}
.ws5e{word-spacing:4.503000px;}
.ws35{word-spacing:4.560000px;}
.ws116{word-spacing:4.608000px;}
.ws1e{word-spacing:4.617000px;}
.ws103{word-spacing:4.656000px;}
.ws37{word-spacing:4.674000px;}
.wsd5{word-spacing:4.704000px;}
.ws8c{word-spacing:4.731000px;}
.ws23{word-spacing:4.788000px;}
.wse4{word-spacing:4.800000px;}
.ws2a{word-spacing:4.845000px;}
.wsf5{word-spacing:4.848000px;}
.ws11a{word-spacing:4.896000px;}
.ws25{word-spacing:4.902000px;}
.ws9f{word-spacing:4.959000px;}
.ws28{word-spacing:5.016000px;}
.wsf0{word-spacing:5.088000px;}
.ws3c{word-spacing:5.130000px;}
.ws8e{word-spacing:5.187000px;}
.wse5{word-spacing:5.232000px;}
.ws36{word-spacing:5.244000px;}
.wsaf{word-spacing:5.301000px;}
.ws104{word-spacing:5.328000px;}
.ws41{word-spacing:5.358000px;}
.ws111{word-spacing:5.376000px;}
.ws43{word-spacing:5.415000px;}
.ws38{word-spacing:5.472000px;}
.wsdb{word-spacing:5.520000px;}
.wsb5{word-spacing:5.529000px;}
.ws53{word-spacing:5.586000px;}
.wscc{word-spacing:5.643000px;}
.ws7c{word-spacing:5.700000px;}
.ws110{word-spacing:5.760000px;}
.ws17{word-spacing:5.814000px;}
.ws47{word-spacing:5.871000px;}
.ws6b{word-spacing:5.928000px;}
.ws129{word-spacing:6.000000px;}
.ws6d{word-spacing:6.042000px;}
.ws11e{word-spacing:6.096000px;}
.ws59{word-spacing:6.099000px;}
.wsc1{word-spacing:6.156000px;}
.ws72{word-spacing:6.213000px;}
.wsd{word-spacing:6.270000px;}
.ws64{word-spacing:6.327000px;}
.ws67{word-spacing:6.498000px;}
.ws105{word-spacing:6.528000px;}
.ws50{word-spacing:6.555000px;}
.ws8a{word-spacing:6.612000px;}
.wsb1{word-spacing:6.669000px;}
.ws1f{word-spacing:6.726000px;}
.ws81{word-spacing:6.783000px;}
.wsed{word-spacing:6.816000px;}
.wsb2{word-spacing:6.840000px;}
.ws4f{word-spacing:6.897000px;}
.wsa9{word-spacing:6.954000px;}
.wsf1{word-spacing:7.008000px;}
.ws2d{word-spacing:7.011000px;}
.ws88{word-spacing:7.068000px;}
.wse2{word-spacing:7.104000px;}
.ws51{word-spacing:7.125000px;}
.wsce{word-spacing:7.182000px;}
.wsd4{word-spacing:7.200000px;}
.wsb8{word-spacing:7.239000px;}
.ws49{word-spacing:7.296000px;}
.ws3d{word-spacing:7.353000px;}
.wse0{word-spacing:7.392000px;}
.wsd1{word-spacing:7.410000px;}
.wsb3{word-spacing:7.467000px;}
.ws117{word-spacing:7.488000px;}
.ws9b{word-spacing:7.524000px;}
.ws1b{word-spacing:7.581000px;}
.ws6e{word-spacing:7.638000px;}
.ws48{word-spacing:7.695000px;}
.ws6a{word-spacing:7.752000px;}
.wsf4{word-spacing:7.776000px;}
.ws46{word-spacing:7.809000px;}
.ws8f{word-spacing:7.923000px;}
.ws113{word-spacing:7.968000px;}
.ws73{word-spacing:8.037000px;}
.wsb4{word-spacing:8.094000px;}
.wsd8{word-spacing:8.112000px;}
.wsad{word-spacing:8.151000px;}
.wscb{word-spacing:8.208000px;}
.ws1d{word-spacing:8.265000px;}
.ws63{word-spacing:8.322000px;}
.ws6c{word-spacing:8.379000px;}
.ws4c{word-spacing:8.436000px;}
.ws85{word-spacing:8.493000px;}
.wsb9{word-spacing:8.550000px;}
.wsc2{word-spacing:8.664000px;}
.wsfc{word-spacing:8.784000px;}
.ws120{word-spacing:8.832000px;}
.ws91{word-spacing:8.835000px;}
.wsf{word-spacing:8.949000px;}
.wsbc{word-spacing:9.006000px;}
.ws75{word-spacing:9.063000px;}
.ws114{word-spacing:9.072000px;}
.wsa3{word-spacing:9.120000px;}
.wsc8{word-spacing:9.177000px;}
.wsbf{word-spacing:9.234000px;}
.ws8d{word-spacing:9.405000px;}
.ws2b{word-spacing:9.576000px;}
.wse1{word-spacing:9.600000px;}
.wsf7{word-spacing:9.648000px;}
.ws9e{word-spacing:9.747000px;}
.wscf{word-spacing:9.804000px;}
.ws4b{word-spacing:9.975000px;}
.ws83{word-spacing:10.089000px;}
.ws2e{word-spacing:10.260000px;}
.ws9d{word-spacing:10.431000px;}
.wsae{word-spacing:10.488000px;}
.wsc9{word-spacing:10.545000px;}
.wsa2{word-spacing:10.659000px;}
.ws58{word-spacing:10.773000px;}
.ws34{word-spacing:10.830000px;}
.ws57{word-spacing:11.058000px;}
.ws69{word-spacing:11.856000px;}
.wsc5{word-spacing:12.996000px;}
.wsa1{word-spacing:13.053000px;}
.wsa6{word-spacing:13.566000px;}
.wsb7{word-spacing:13.851000px;}
.ws106{word-spacing:14.736000px;}
.ws52{word-spacing:16.416000px;}
.ws7a{word-spacing:18.012000px;}
.wsea{word-spacing:18.768000px;}
.wseb{word-spacing:18.912000px;}
.wsec{word-spacing:36.480000px;}
.ws77{word-spacing:70.032000px;}
.ws18{word-spacing:73.056000px;}
.ws79{word-spacing:139.104000px;}
.ws96{word-spacing:146.425313px;}
.ws76{word-spacing:266.832000px;}
.ws78{word-spacing:360.432000px;}
.ws97{word-spacing:753.792000px;}
._5{margin-left:-15.600000px;}
._11{margin-left:-11.749200px;}
._d{margin-left:-7.089000px;}
._40{margin-left:-5.568000px;}
._2{margin-left:-4.394700px;}
._4{margin-left:-2.736000px;}
._0{margin-left:-1.632000px;}
._1{width:1.468200px;}
._b{width:2.932200px;}
._c{width:4.385400px;}
._42{width:5.423952px;}
._a{width:6.558600px;}
._f{width:7.560000px;}
._3f{width:9.767700px;}
._e{width:11.090100px;}
._29{width:12.891900px;}
._12{width:14.683200px;}
._33{width:17.904000px;}
._41{width:19.584000px;}
._6{width:22.320000px;}
._10{width:35.489391px;}
._3{width:40.069546px;}
._3e{width:42.143978px;}
._36{width:43.487978px;}
._8{width:56.255995px;}
._38{width:64.799978px;}
._2c{width:67.535978px;}
._7{width:73.056000px;}
._3a{width:74.275778px;}
._1f{width:82.511989px;}
._1b{width:97.823989px;}
._2f{width:99.936000px;}
._13{width:101.635800px;}
._1c{width:106.032000px;}
._23{width:108.480000px;}
._2e{width:112.175978px;}
._20{width:124.512000px;}
._1a{width:130.032000px;}
._16{width:137.328000px;}
._1e{width:157.920000px;}
._3c{width:167.471978px;}
._25{width:174.288000px;}
._35{width:183.455978px;}
._30{width:195.743978px;}
._32{width:199.487978px;}
._3d{width:234.499800px;}
._17{width:236.063990px;}
._22{width:248.371800px;}
._37{width:255.455978px;}
._2d{width:260.831978px;}
._14{width:262.368000px;}
._34{width:265.055978px;}
._27{width:283.199994px;}
._26{width:305.663994px;}
._18{width:309.647994px;}
._1d{width:316.271994px;}
._31{width:319.632000px;}
._28{width:336.576000px;}
._21{width:345.599994px;}
._39{width:420.864000px;}
._19{width:487.200000px;}
._15{width:499.919993px;}
._24{width:507.216000px;}
._3b{width:548.256000px;}
._2b{width:619.151960px;}
._2a{width:806.899760px;}
._9{width:1746.576000px;}
.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;}
.fs7{font-size:56.399998px;}
.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;}
.yc7{bottom:73.226930px;}
.yc1{bottom:73.262996px;}
.yc0{bottom:73.274998px;}
.y114{bottom:73.280127px;}
.y11b{bottom:73.304117px;}
.y137{bottom:73.340101px;}
.y254{bottom:73.426031px;}
.y1e8{bottom:74.298741px;}
.ya2{bottom:74.326491px;}
.y1fe{bottom:74.364741px;}
.y266{bottom:74.366991px;}
.y184{bottom:74.401491px;}
.y161{bottom:74.448002px;}
.ybf{bottom:74.461502px;}
.y1a7{bottom:74.468252px;}
.y7c{bottom:74.768248px;}
.y28{bottom:78.074999px;}
.y12b{bottom:82.280127px;}
.y11c{bottom:82.304117px;}
.y138{bottom:82.340101px;}
.y52{bottom:82.508553px;}
.y2b3{bottom:83.587065px;}
.y112{bottom:84.839531px;}
.y2ef{bottom:84.989531px;}
.y1c6{bottom:85.837053px;}
.y21a{bottom:86.111553px;}
.yf5{bottom:89.992200px;}
.y253{bottom:90.682781px;}
.y1e7{bottom:91.555491px;}
.ya1{bottom:91.583241px;}
.y1fd{bottom:91.621491px;}
.y265{bottom:91.623741px;}
.y239{bottom:91.657491px;}
.y183{bottom:91.658241px;}
.y160{bottom:91.704752px;}
.ybe{bottom:91.718252px;}
.y1a6{bottom:91.725002px;}
.y7b{bottom:92.024998px;}
.y27{bottom:94.700250px;}
.y2b2{bottom:97.459065px;}
.y2f1{bottom:98.849531px;}
.y2ee{bottom:98.861531px;}
.y51{bottom:99.765303px;}
.y111{bottom:102.096281px;}
.y1c5{bottom:103.093803px;}
.y219{bottom:103.368303px;}
.yf4{bottom:107.248950px;}
.y252{bottom:107.939531px;}
.ya0{bottom:108.839991px;}
.y264{bottom:108.880491px;}
.y238{bottom:108.914241px;}
.y15f{bottom:108.961502px;}
.ybd{bottom:108.975002px;}
.y2b1{bottom:111.331065px;}
.y2f0{bottom:112.721531px;}
.y2ed{bottom:112.733531px;}
.y26{bottom:113.372246px;}
.y50{bottom:117.022053px;}
.y1e6{bottom:117.433491px;}
.y280{bottom:117.452553px;}
.y1fc{bottom:117.499491px;}
.y182{bottom:117.536241px;}
.y110{bottom:119.353031px;}
.y1c4{bottom:120.350553px;}
.y218{bottom:120.625053px;}
.yf3{bottom:124.505700px;}
.y251{bottom:125.196281px;}
.y2b0{bottom:125.203065px;}
.y9f{bottom:126.096741px;}
.y263{bottom:126.137241px;}
.y237{bottom:126.170991px;}
.y15e{bottom:126.218252px;}
.y2ec{bottom:126.605531px;}
.y1a5{bottom:126.975002px;}
.y7a{bottom:127.274998px;}
.y25{bottom:129.997503px;}
.y27f{bottom:131.324553px;}
.y4f{bottom:134.278803px;}
.y1e5{bottom:134.690241px;}
.y1fb{bottom:134.756241px;}
.y181{bottom:134.792991px;}
.ycc{bottom:138.302865px;}
.ycb{bottom:138.302867px;}
.yca{bottom:138.302869px;}
.yc9{bottom:138.314889px;}
.yc8{bottom:138.326910px;}
.yc6{bottom:138.338932px;}
.yc5{bottom:138.338933px;}
.yc4{bottom:138.338935px;}
.yc3{bottom:138.350955px;}
.yc2{bottom:138.362976px;}
.y2af{bottom:139.075065px;}
.y2eb{bottom:140.477531px;}
.yf2{bottom:141.762450px;}
.y250{bottom:142.453031px;}
.y9e{bottom:143.353491px;}
.y262{bottom:143.393991px;}
.y236{bottom:143.427741px;}
.y15d{bottom:143.475002px;}
.ybc{bottom:144.225002px;}
.y10f{bottom:145.231031px;}
.y1c3{bottom:146.228553px;}
.y24{bottom:148.669498px;}
.y4e{bottom:151.535553px;}
.y1e4{bottom:151.946991px;}
.y1fa{bottom:152.012991px;}
.y180{bottom:152.049741px;}
.y2ae{bottom:152.947065px;}
.y2ea{bottom:154.349531px;}
.y217{bottom:155.875053px;}
.y27e{bottom:159.080553px;}
.y24f{bottom:159.709781px;}
.y9d{bottom:160.610241px;}
.y261{bottom:160.650741px;}
.y235{bottom:160.684491px;}
.y10e{bottom:162.487781px;}
.y79{bottom:163.274998px;}
.y1c2{bottom:163.485303px;}
.y2ad{bottom:166.819065px;}
.y2e9{bottom:168.221531px;}
.y4d{bottom:168.792303px;}
.y1e3{bottom:169.203741px;}
.y1f9{bottom:169.269741px;}
.y17f{bottom:169.306491px;}
.y23{bottom:172.158006px;}
.y27d{bottom:172.952553px;}
.y24e{bottom:176.966531px;}
.yf1{bottom:177.012450px;}
.y1a4{bottom:177.781194px;}
.y9c{bottom:177.866991px;}
.y260{bottom:177.907491px;}
.y234{bottom:177.941241px;}
.y15c{bottom:178.725002px;}
.y10d{bottom:179.744531px;}
.y2ac{bottom:180.691065px;}
.y1c1{bottom:180.742053px;}
.y2e8{bottom:182.093531px;}
.y22{bottom:186.030006px;}
.y4c{bottom:186.049053px;}
.y1f8{bottom:186.526491px;}
.y17e{bottom:186.563241px;}
.y27c{bottom:186.824553px;}
.ybb{bottom:190.409110px;}
.y24d{bottom:194.223281px;}
.y2ab{bottom:194.563065px;}
.y1a3{bottom:195.037944px;}
.y1e2{bottom:195.081741px;}
.y9b{bottom:195.123741px;}
.y25f{bottom:195.164241px;}
.y233{bottom:195.197991px;}
.y2e7{bottom:195.965531px;}
.y10c{bottom:197.001281px;}
.y1c0{bottom:197.998803px;}
.y216{bottom:200.449803px;}
.y27b{bottom:200.696553px;}
.y4b{bottom:203.305803px;}
.y1f7{bottom:203.783241px;}
.y17d{bottom:203.819991px;}
.y21{bottom:207.450006px;}
.yba{bottom:207.665860px;}
.y2aa{bottom:208.435065px;}
.y2e6{bottom:209.837531px;}
.y24c{bottom:211.480031px;}
.y1a2{bottom:212.294694px;}
.y1e1{bottom:212.338491px;}
.y9a{bottom:212.380491px;}
.y25e{bottom:212.420991px;}
.y232{bottom:212.454741px;}
.y10b{bottom:214.258031px;}
.y27a{bottom:214.568553px;}
.y1bf{bottom:215.255553px;}
.y215{bottom:217.706553px;}
.y15b{bottom:218.474102px;}
.yf0{bottom:219.137241px;}
.y78{bottom:219.573588px;}
.y4a{bottom:220.562553px;}
.y1f6{bottom:221.039991px;}
.y20{bottom:221.322006px;}
.y2a9{bottom:222.307065px;}
.y2e5{bottom:223.709531px;}
.yb9{bottom:224.922610px;}
.y279{bottom:228.440553px;}
.y24b{bottom:228.736781px;}
.y1a1{bottom:229.551444px;}
.y99{bottom:229.637241px;}
.y25d{bottom:229.677741px;}
.y17c{bottom:229.697991px;}
.y231{bottom:229.711491px;}
.y1be{bottom:232.512303px;}
.y214{bottom:234.963303px;}
.y15a{bottom:235.730852px;}
.y2a8{bottom:236.179065px;}
.yef{bottom:236.393991px;}
.y77{bottom:236.830338px;}
.y2e4{bottom:237.581531px;}
.y1e0{bottom:238.216491px;}
.y1f5{bottom:238.296741px;}
.y10a{bottom:240.136031px;}
.yb8{bottom:242.179360px;}
.y278{bottom:242.312553px;}
.y1f{bottom:242.742006px;}
.y24a{bottom:245.993531px;}
.y1a0{bottom:246.808194px;}
.y98{bottom:246.893991px;}
.y25c{bottom:246.934491px;}
.y17b{bottom:246.954741px;}
.y230{bottom:246.968241px;}
.y2a7{bottom:250.051065px;}
.y2e3{bottom:251.453531px;}
.y213{bottom:252.220053px;}
.y159{bottom:252.987602px;}
.yee{bottom:253.650741px;}
.y76{bottom:254.087088px;}
.y1df{bottom:255.473241px;}
.y49{bottom:255.812553px;}
.y277{bottom:256.184553px;}
.y1e{bottom:256.614006px;}
.y109{bottom:257.392781px;}
.y1bd{bottom:258.390303px;}
.yb7{bottom:259.436110px;}
.y249{bottom:263.250281px;}
.y2a6{bottom:263.923065px;}
.y19f{bottom:264.064944px;}
.y97{bottom:264.150741px;}
.y1f4{bottom:264.174741px;}
.y25b{bottom:264.191241px;}
.y17a{bottom:264.211491px;}
.y22f{bottom:264.224991px;}
.y2e2{bottom:265.325531px;}
.yed{bottom:270.907491px;}
.y75{bottom:271.343838px;}
.y1de{bottom:272.729991px;}
.y108{bottom:274.649531px;}
.y1bc{bottom:275.647053px;}
.yb6{bottom:276.692860px;}
.y2a5{bottom:277.795065px;}
.y212{bottom:278.098053px;}
.y2e1{bottom:279.197531px;}
.y248{bottom:280.507031px;}
.y19e{bottom:281.321694px;}
.y96{bottom:281.407491px;}
.y1f3{bottom:281.431491px;}
.y25a{bottom:281.447991px;}
.y179{bottom:281.468241px;}
.y276{bottom:283.940553px;}
.yec{bottom:288.164241px;}
.y158{bottom:288.237602px;}
.y74{bottom:288.600588px;}
.y2a4{bottom:291.667065px;}
.y48{bottom:291.812553px;}
.y107{bottom:291.906281px;}
.y1bb{bottom:292.903803px;}
.y2e0{bottom:293.069531px;}
.yb5{bottom:293.949610px;}
.y211{bottom:295.354803px;}
.y247{bottom:297.763781px;}
.y275{bottom:297.812553px;}
.y1dd{bottom:298.607991px;}
.y95{bottom:298.664241px;}
.y1f2{bottom:298.688241px;}
.y259{bottom:298.704741px;}
.y178{bottom:298.724991px;}
.y22e{bottom:299.474991px;}
.yeb{bottom:305.420991px;}
.y2a3{bottom:305.539065px;}
.y73{bottom:305.857338px;}
.y2df{bottom:306.941531px;}
.y19d{bottom:307.199694px;}
.y106{bottom:309.163031px;}
.y1ba{bottom:310.160553px;}
.yb4{bottom:311.206360px;}
.y210{bottom:312.611553px;}
.y1d{bottom:314.227944px;}
.y246{bottom:315.020531px;}
.y1dc{bottom:315.864741px;}
.y94{bottom:315.920991px;}
.y1f1{bottom:315.944991px;}
.y258{bottom:315.961491px;}
.y2a2{bottom:319.411065px;}
.y12c{bottom:320.048117px;}
.y117{bottom:320.060112px;}
.y12d{bottom:320.072106px;}
.y11d{bottom:320.072107px;}
.y132{bottom:320.084101px;}
.y11f{bottom:320.084102px;}
.y136{bottom:320.096095px;}
.y122{bottom:320.096097px;}
.y124{bottom:320.108091px;}
.y128{bottom:320.120086px;}
.y139{bottom:320.132080px;}
.y2de{bottom:320.813531px;}
.yea{bottom:322.677741px;}
.y72{bottom:323.114088px;}
.y19c{bottom:324.456444px;}
.y105{bottom:326.419781px;}
.y1b9{bottom:327.417303px;}
.yb3{bottom:328.463110px;}
.y20f{bottom:329.868303px;}
.y1c{bottom:331.484694px;}
.y245{bottom:332.277281px;}
.y157{bottom:332.320031px;}
.y1db{bottom:333.121491px;}
.y93{bottom:333.177741px;}
.y1f0{bottom:333.201741px;}
.y257{bottom:333.218241px;}
.y2a1{bottom:333.283065px;}
.y177{bottom:333.974991px;}
.y2dd{bottom:334.685531px;}
.ye9{bottom:339.934491px;}
.y71{bottom:340.370838px;}
.y19b{bottom:341.713194px;}
.y274{bottom:342.731531px;}
.y1b8{bottom:344.674053px;}
.yb2{bottom:345.719860px;}
.y20e{bottom:347.125053px;}
.y2a0{bottom:347.155065px;}
.y2dc{bottom:348.557531px;}
.y244{bottom:349.534031px;}
.y156{bottom:349.576781px;}
.y92{bottom:350.434491px;}
.y256{bottom:350.474991px;}
.y104{bottom:352.297781px;}
.ye8{bottom:357.191241px;}
.y70{bottom:357.627588px;}
.y19a{bottom:358.969944px;}
.y1da{bottom:358.999491px;}
.y1ef{bottom:359.079741px;}
.y273{bottom:359.988281px;}
.y29f{bottom:361.027065px;}
.y1b7{bottom:361.930803px;}
.y2db{bottom:362.429531px;}
.yb1{bottom:362.976610px;}
.y22d{bottom:363.321579px;}
.y47{bottom:364.366781px;}
.y1b{bottom:365.983944px;}
.y243{bottom:366.790781px;}
.y155{bottom:366.833531px;}
.y91{bottom:367.691241px;}
.y103{bottom:369.554531px;}
.ye7{bottom:374.447991px;}
.y6f{bottom:374.884338px;}
.y29e{bottom:374.899065px;}
.y199{bottom:376.226694px;}
.y1d9{bottom:376.256241px;}
.y2da{bottom:376.301531px;}
.y1ee{bottom:376.336491px;}
.y272{bottom:377.245031px;}
.y1b6{bottom:379.187553px;}
.y176{bottom:380.183079px;}
.yb0{bottom:380.233360px;}
.y22c{bottom:380.578329px;}
.y46{bottom:381.623531px;}
.y20d{bottom:382.375053px;}
.y1a{bottom:383.240694px;}
.y242{bottom:384.047531px;}
.y154{bottom:384.090281px;}
.y90{bottom:384.947991px;}
.y255{bottom:385.724991px;}
.y102{bottom:386.811281px;}
.y29d{bottom:388.771065px;}
.y2d9{bottom:390.173531px;}
.ye6{bottom:391.704741px;}
.y6e{bottom:392.141088px;}
.y198{bottom:393.483444px;}
.y1d8{bottom:393.512991px;}
.y1ed{bottom:393.593241px;}
.y271{bottom:394.501781px;}
.y175{bottom:397.439829px;}
.y22b{bottom:397.835079px;}
.y45{bottom:398.880281px;}
.y19{bottom:400.497444px;}
.y241{bottom:401.304281px;}
.y153{bottom:401.347031px;}
.y8f{bottom:402.204741px;}
.y29c{bottom:402.643065px;}
.y2d8{bottom:404.045531px;}
.y101{bottom:404.068031px;}
.ye5{bottom:408.961491px;}
.y6d{bottom:409.397838px;}
.y1d7{bottom:410.769741px;}
.y1ec{bottom:410.849991px;}
.y270{bottom:411.758531px;}
.y1b5{bottom:414.437531px;}
.y174{bottom:414.696579px;}
.yaf{bottom:415.483337px;}
.y44{bottom:416.137031px;}
.y29b{bottom:416.515065px;}
.y18{bottom:417.754194px;}
.y2d7{bottom:417.917531px;}
.y20c{bottom:418.368281px;}
.y240{bottom:418.561031px;}
.y8e{bottom:419.461491px;}
.y113{bottom:419.900116px;}
.y115{bottom:419.912112px;}
.y118{bottom:419.924106px;}
.y12e{bottom:419.936101px;}
.y11e{bottom:419.936102px;}
.y133{bottom:419.948095px;}
.y120{bottom:419.948097px;}
.y126{bottom:419.972086px;}
.y129{bottom:419.984080px;}
.y13a{bottom:419.996075px;}
.y100{bottom:421.324781px;}
.y22a{bottom:423.713079px;}
.ye4{bottom:426.218241px;}
.y6c{bottom:426.654588px;}
.y152{bottom:427.225031px;}
.y1d6{bottom:428.026491px;}
.y197{bottom:428.733444px;}
.y119{bottom:428.924106px;}
.y12f{bottom:428.936101px;}
.y134{bottom:428.948095px;}
.y125{bottom:428.972086px;}
.y26f{bottom:429.015281px;}
.y29a{bottom:430.387065px;}
.y2d6{bottom:431.789531px;}
.y173{bottom:431.953329px;}
.y43{bottom:433.393781px;}
.y17{bottom:435.010944px;}
.y20b{bottom:435.625031px;}
.y23f{bottom:435.817781px;}
.y8d{bottom:436.718241px;}
.yff{bottom:438.581531px;}
.y229{bottom:440.969829px;}
.ye3{bottom:443.474991px;}
.y6b{bottom:443.911338px;}
.y299{bottom:444.259065px;}
.y151{bottom:444.481781px;}
.y2d5{bottom:445.661531px;}
.y1eb{bottom:446.099991px;}
.y26e{bottom:446.272031px;}
.y172{bottom:449.210079px;}
.y42{bottom:450.650531px;}
.y16{bottom:452.267694px;}
.y23e{bottom:453.074531px;}
.y1d5{bottom:453.904491px;}
.y8c{bottom:453.974991px;}
.yfe{bottom:455.838281px;}
.y298{bottom:458.131065px;}
.y228{bottom:458.226579px;}
.y2d4{bottom:459.533531px;}
.y6a{bottom:461.168088px;}
.yae{bottom:461.714684px;}
.y150{bottom:461.738531px;}
.y26d{bottom:463.528781px;}
.y41{bottom:467.907281px;}
.y15{bottom:469.524444px;}
.y23d{bottom:470.331281px;}
.y20a{bottom:470.875031px;}
.y1d4{bottom:471.161241px;}
.y297{bottom:472.003065px;}
.y2d3{bottom:473.405531px;}
.y196{bottom:475.020010px;}
.y171{bottom:475.088079px;}
.y227{bottom:475.483329px;}
.y1b4{bottom:477.682031px;}
.y69{bottom:478.424838px;}
.ye2{bottom:478.724991px;}
.yad{bottom:478.971434px;}
.y26c{bottom:480.785531px;}
.yfd{bottom:481.716281px;}
.y40{bottom:485.164031px;}
.y296{bottom:485.875065px;}
.y14{bottom:486.781194px;}
.y2d2{bottom:487.277531px;}
.y23c{bottom:487.588031px;}
.y14f{bottom:487.616531px;}
.y1d3{bottom:488.417991px;}
.y8b{bottom:489.224991px;}
.y195{bottom:492.276760px;}
.y170{bottom:492.344829px;}
.y1b3{bottom:494.938781px;}
.y68{bottom:495.681588px;}
.yac{bottom:496.228184px;}
.y26b{bottom:498.042281px;}
.yfc{bottom:498.973031px;}
.y295{bottom:499.747065px;}
.y2d1{bottom:501.149531px;}
.y226{bottom:501.361329px;}
.y3f{bottom:502.420781px;}
.y13{bottom:504.037944px;}
.y23b{bottom:504.844781px;}
.y14e{bottom:504.873281px;}
.y1d2{bottom:505.674741px;}
.y194{bottom:509.533510px;}
.y16f{bottom:509.601579px;}
.y1b2{bottom:512.195531px;}
.y67{bottom:512.938338px;}
.yab{bottom:513.484934px;}
.y294{bottom:513.619065px;}
.y2d0{bottom:515.021531px;}
.y26a{bottom:515.299031px;}
.yfb{bottom:516.229781px;}
.y225{bottom:518.618079px;}
.y3e{bottom:519.677531px;}
.y209{bottom:519.943031px;}
.ye1{bottom:520.930781px;}
.y12{bottom:521.294694px;}
.y23a{bottom:522.101531px;}
.y14d{bottom:522.130031px;}
.y1d1{bottom:522.931491px;}
.y193{bottom:526.790260px;}
.y16e{bottom:526.858329px;}
.y293{bottom:527.491065px;}
.y2cf{bottom:528.893531px;}
.y1b1{bottom:529.452281px;}
.y66{bottom:530.195088px;}
.yaa{bottom:530.741684px;}
.y269{bottom:532.555781px;}
.yfa{bottom:533.486531px;}
.y224{bottom:535.874829px;}
.y3d{bottom:536.934281px;}
.y208{bottom:537.199781px;}
.y11{bottom:538.551444px;}
.ye0{bottom:539.087723px;}
.y8a{bottom:539.358281px;}
.y14c{bottom:539.386781px;}
.y1d0{bottom:540.188241px;}
.y292{bottom:541.363065px;}
.y2ce{bottom:542.765531px;}
.y16d{bottom:544.115079px;}
.y65{bottom:547.451838px;}
.y268{bottom:549.812531px;}
.yf9{bottom:550.743281px;}
.y192{bottom:552.668260px;}
.y223{bottom:553.131579px;}
.y3c{bottom:554.191031px;}
.y291{bottom:555.235065px;}
.y1b0{bottom:555.330281px;}
.ydf{bottom:555.430781px;}
.y10{bottom:555.808194px;}
.y89{bottom:556.615031px;}
.y2cd{bottom:556.637531px;}
.y14b{bottom:556.643531px;}
.y207{bottom:563.077781px;}
.y64{bottom:564.708588px;}
.ya9{bottom:565.991684px;}
.y1cf{bottom:566.066241px;}
.yf8{bottom:568.000031px;}
.y290{bottom:569.107065px;}
.y191{bottom:569.925010px;}
.y16c{bottom:569.993079px;}
.y222{bottom:570.388329px;}
.y2cc{bottom:570.509531px;}
.y3b{bottom:571.447781px;}
.y1af{bottom:572.587031px;}
.yf{bottom:573.064944px;}
.yde{bottom:573.587723px;}
.y88{bottom:573.871781px;}
.y14a{bottom:573.900281px;}
.y206{bottom:580.334531px;}
.y63{bottom:581.965338px;}
.y1ea{bottom:582.521531px;}
.y28f{bottom:582.979065px;}
.y1ce{bottom:583.322991px;}
.y2cb{bottom:584.381531px;}
.y267{bottom:585.062531px;}
.y16b{bottom:587.249829px;}
.y221{bottom:587.645079px;}
.y3a{bottom:588.704531px;}
.y1ae{bottom:589.843781px;}
.ye{bottom:590.321694px;}
.ydd{bottom:590.837723px;}
.y87{bottom:591.128531px;}
.y190{bottom:595.803010px;}
.y205{bottom:597.591281px;}
.y2ca{bottom:598.253531px;}
.y62{bottom:599.222088px;}
.y149{bottom:599.778281px;}
.y1cd{bottom:600.579741px;}
.yf7{bottom:603.250031px;}
.y16a{bottom:604.506579px;}
.y39{bottom:605.961281px;}
.yd{bottom:607.578444px;}
.ydc{bottom:608.087723px;}
.y86{bottom:608.385281px;}
.y2c9{bottom:612.125531px;}
.y18f{bottom:613.059760px;}
.y220{bottom:613.523079px;}
.y204{bottom:614.848031px;}
.y28e{bottom:615.154221px;}
.y1ad{bottom:615.721781px;}
.y61{bottom:616.478838px;}
.y148{bottom:617.035031px;}
.y1cc{bottom:617.836491px;}
.y169{bottom:621.763329px;}
.y38{bottom:623.218031px;}
.yc{bottom:624.835194px;}
.y85{bottom:625.642031px;}
.ya8{bottom:625.743281px;}
.y2c8{bottom:625.997531px;}
.y18e{bottom:630.316510px;}
.y21f{bottom:630.779829px;}
.y203{bottom:632.104781px;}
.y1ac{bottom:632.978531px;}
.y60{bottom:633.735588px;}
.y147{bottom:634.291781px;}
.y1cb{bottom:635.093241px;}
.y168{bottom:639.020079px;}
.yf6{bottom:639.250031px;}
.y2c7{bottom:639.869531px;}
.y37{bottom:640.474781px;}
.ydb{bottom:641.599781px;}
.yb{bottom:642.091944px;}
.y84{bottom:642.898781px;}
.ya7{bottom:643.900223px;}
.y18d{bottom:647.573260px;}
.y21e{bottom:648.036579px;}
.y202{bottom:649.361531px;}
.y1ab{bottom:650.235281px;}
.y5f{bottom:650.992338px;}
.y1e9{bottom:651.548531px;}
.y1ca{bottom:652.349991px;}
.y2c6{bottom:653.741531px;}
.y36{bottom:657.731531px;}
.yda{bottom:658.856531px;}
.ya{bottom:659.348694px;}
.y83{bottom:660.155531px;}
.y146{bottom:660.169781px;}
.ya6{bottom:660.243281px;}
.y18c{bottom:664.830010px;}
.y167{bottom:664.898079px;}
.y21d{bottom:665.293329px;}
.y201{bottom:666.618281px;}
.y116{bottom:666.812112px;}
.y11a{bottom:666.824106px;}
.y130{bottom:666.836101px;}
.y135{bottom:666.848095px;}
.y121{bottom:666.848097px;}
.y127{bottom:666.872086px;}
.y12a{bottom:666.884080px;}
.y13b{bottom:666.896075px;}
.y1aa{bottom:667.492031px;}
.y2c5{bottom:667.613531px;}
.y5e{bottom:668.249088px;}
.y28d{bottom:670.688531px;}
.y35{bottom:674.988281px;}
.y131{bottom:675.836101px;}
.y123{bottom:675.860091px;}
.yd9{bottom:676.113281px;}
.y82{bottom:677.412281px;}
.y145{bottom:677.426531px;}
.ya5{bottom:678.400223px;}
.y2c4{bottom:681.485531px;}
.y18b{bottom:682.086760px;}
.y166{bottom:682.154829px;}
.y21c{bottom:682.550079px;}
.y200{bottom:683.875031px;}
.y28c{bottom:684.560531px;}
.y1a9{bottom:684.748781px;}
.y5d{bottom:685.505838px;}
.y1c9{bottom:687.599991px;}
.y34{bottom:692.245031px;}
.yd8{bottom:693.370031px;}
.y81{bottom:694.669031px;}
.y144{bottom:694.683281px;}
.ya4{bottom:694.743281px;}
.y2c3{bottom:695.357531px;}
.y28b{bottom:698.432531px;}
.y165{bottom:699.411579px;}
.y1a8{bottom:702.005531px;}
.y5c{bottom:702.762588px;}
.y9{bottom:707.087702px;}
.y18a{bottom:707.964760px;}
.y2c2{bottom:709.229531px;}
.y33{bottom:709.501781px;}
.yd7{bottom:710.626781px;}
.y80{bottom:711.925781px;}
.y143{bottom:711.940031px;}
.y28a{bottom:712.304531px;}
.ya3{bottom:712.900223px;}
.y164{bottom:716.668329px;}
.y21b{bottom:717.800079px;}
.y1ff{bottom:719.125031px;}
.y8{bottom:720.959702px;}
.y2c1{bottom:723.101531px;}
.y189{bottom:725.221510px;}
.y289{bottom:726.176531px;}
.y32{bottom:726.758531px;}
.yd6{bottom:727.883531px;}
.y7f{bottom:729.182531px;}
.y142{bottom:729.196781px;}
.y163{bottom:733.925079px;}
.y2c0{bottom:736.973531px;}
.y1c8{bottom:737.818031px;}
.y5b{bottom:738.012588px;}
.y288{bottom:740.048531px;}
.y188{bottom:742.478260px;}
.y31{bottom:744.015281px;}
.yd5{bottom:745.140281px;}
.y7e{bottom:746.439281px;}
.y141{bottom:746.453531px;}
.y2bf{bottom:750.845531px;}
.y287{bottom:753.920531px;}
.y1c7{bottom:755.074781px;}
.y7{bottom:758.731200px;}
.y187{bottom:759.735010px;}
.y30{bottom:761.272031px;}
.yd4{bottom:762.397031px;}
.y7d{bottom:763.696031px;}
.y2be{bottom:764.717531px;}
.y286{bottom:767.792531px;}
.y162{bottom:769.175079px;}
.y140{bottom:772.331531px;}
.y186{bottom:776.991760px;}
.y2f{bottom:778.528781px;}
.y2bd{bottom:778.589531px;}
.yd3{bottom:779.653781px;}
.y5a{bottom:780.952781px;}
.y13f{bottom:789.588281px;}
.y2bc{bottom:792.461531px;}
.y2e{bottom:795.785531px;}
.yd2{bottom:796.910531px;}
.y59{bottom:798.209531px;}
.y6{bottom:801.160168px;}
.y285{bottom:803.024531px;}
.y2bb{bottom:806.333531px;}
.y13e{bottom:806.845031px;}
.y185{bottom:812.241760px;}
.y2d{bottom:813.042281px;}
.yd1{bottom:814.167281px;}
.y58{bottom:815.466281px;}
.y2ba{bottom:820.205531px;}
.y5{bottom:823.663168px;}
.y13d{bottom:824.101781px;}
.y2c{bottom:830.299031px;}
.y284{bottom:830.696531px;}
.yd0{bottom:831.424031px;}
.y57{bottom:832.723031px;}
.y2b9{bottom:834.077531px;}
.y13c{bottom:841.358531px;}
.y283{bottom:844.568531px;}
.y4{bottom:846.166168px;}
.y2b{bottom:847.555781px;}
.y2b8{bottom:847.949531px;}
.ycf{bottom:848.680781px;}
.y56{bottom:849.979781px;}
.y282{bottom:858.440531px;}
.y2b7{bottom:861.821531px;}
.y2a{bottom:864.812531px;}
.yce{bottom:865.937531px;}
.y55{bottom:867.236531px;}
.y281{bottom:872.312531px;}
.y2b6{bottom:875.693531px;}
.y54{bottom:884.493281px;}
.y2b5{bottom:889.565531px;}
.y29{bottom:900.062531px;}
.ycd{bottom:901.187531px;}
.y53{bottom:901.750031px;}
.y2b4{bottom:903.437531px;}
.y3{bottom:926.117136px;}
.y2{bottom:939.989136px;}
.h9{height:31.046400px;}
.h2{height:33.840000px;}
.h3{height:42.048000px;}
.h8{height:44.352000px;}
.he{height:44.640000px;}
.hf{height:49.104000px;}
.hc{height:52.113598px;}
.h7{height:52.668000px;}
.h11{height:53.160000px;}
.hb{height:53.640000px;}
.h6{height:56.373000px;}
.hd{height:58.311000px;}
.h5{height:61.622631px;}
.ha{height:65.274000px;}
.h4{height:69.108000px;}
.h10{height:104.592000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:70.157553px;}
.x14{left:79.157553px;}
.x4{left:87.171898px;}
.x5{left:89.929200px;}
.x3{left:91.421552px;}
.x48{left:95.669553px;}
.x15{left:102.923698px;}
.x16{left:126.767698px;}
.x2d{left:153.426144px;}
.x17{left:154.775698px;}
.x2e{left:167.298144px;}
.x18{left:168.647698px;}
.x2f{left:181.170144px;}
.x19{left:182.519698px;}
.x1a{left:196.391698px;}
.x30{left:203.862144px;}
.x6{left:205.966347px;}
.x1b{left:210.263698px;}
.x31{left:217.734144px;}
.x1c{left:228.407698px;}
.x7{left:229.732498px;}
.x32{left:231.606144px;}
.x1d{left:242.279698px;}
.x33{left:254.298144px;}
.x1e{left:256.151698px;}
.x8{left:257.740498px;}
.x34{left:268.170144px;}
.x1f{left:270.023698px;}
.x9{left:275.884498px;}
.x3e{left:276.954147px;}
.x35{left:282.042144px;}
.x20{left:283.895698px;}
.x3f{left:290.826147px;}
.xa{left:293.476498px;}
.x36{left:295.914144px;}
.x21{left:297.767698px;}
.x40{left:304.698147px;}
.x37{left:309.786144px;}
.xb{left:311.068498px;}
.x38{left:323.658144px;}
.xc{left:328.660498px;}
.x39{left:337.530144px;}
.x22{left:343.115701px;}
.xd{left:346.252498px;}
.x3a{left:351.402144px;}
.x23{left:360.707701px;}
.xe{left:363.916498px;}
.x3b{left:365.274144px;}
.x24{left:374.579701px;}
.x3c{left:379.146144px;}
.xf{left:381.436498px;}
.x25{left:388.451701px;}
.x3d{left:393.018144px;}
.x10{left:399.028498px;}
.x26{left:402.323701px;}
.x11{left:416.620498px;}
.x27{left:419.915701px;}
.x41{left:429.570147px;}
.x12{left:434.212498px;}
.x42{left:443.442147px;}
.x13{left:451.876498px;}
.x43{left:457.314147px;}
.x28{left:465.251701px;}
.x29{left:479.123701px;}
.x1{left:485.858414px;}
.x2a{left:496.715701px;}
.x2b{left:510.587701px;}
.x44{left:515.178147px;}
.x2c{left:524.459701px;}
.x45{left:529.050147px;}
.x46{left:546.726147px;}
.x47{left:560.598147px;}
@media print{
.v2{vertical-align:-17.066650pt;}
.v3{vertical-align:-3.200684pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.266606pt;}
.v4{vertical-align:49.322667pt;}
.ls2{letter-spacing:-2.986667pt;}
.ls9{letter-spacing:-0.709333pt;}
.ls1{letter-spacing:-0.640000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1c{letter-spacing:0.145123pt;}
.ls6{letter-spacing:0.466133pt;}
.ls1d{letter-spacing:0.469333pt;}
.lsf{letter-spacing:0.597333pt;}
.ls10{letter-spacing:0.601590pt;}
.ls5{letter-spacing:0.607986pt;}
.ls7{letter-spacing:0.683994pt;}
.ls8{letter-spacing:0.701867pt;}
.ls3{letter-spacing:0.709333pt;}
.ls1e{letter-spacing:0.895969pt;}
.ls4{letter-spacing:0.967676pt;}
.ls11{letter-spacing:1.109333pt;}
.ls14{letter-spacing:1.668257pt;}
.ls16{letter-spacing:2.568520pt;}
.ls1a{letter-spacing:3.123200pt;}
.ls15{letter-spacing:4.266715pt;}
.lsc{letter-spacing:4.360533pt;}
.lsb{letter-spacing:4.612267pt;}
.ls1f{letter-spacing:5.307733pt;}
.ls18{letter-spacing:5.550933pt;}
.ls12{letter-spacing:5.555248pt;}
.ls17{letter-spacing:5.721562pt;}
.ls1b{letter-spacing:5.764267pt;}
.lsa{letter-spacing:6.101333pt;}
.ls19{letter-spacing:7.637322pt;}
.lse{letter-spacing:7.769643pt;}
.lsd{letter-spacing:8.490647pt;}
.ls13{letter-spacing:13.610667pt;}
.ws5{word-spacing:-12.666667pt;}
.ws19{word-spacing:-11.850667pt;}
.wsfb{word-spacing:-11.264000pt;}
.ws98{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.488000pt;}
.ws9a{word-spacing:-10.240000pt;}
.ws4{word-spacing:-10.234667pt;}
.ws65{word-spacing:-10.080000pt;}
.ws6{word-spacing:-9.728000pt;}
.ws1{word-spacing:-8.362667pt;}
.wsd0{word-spacing:-8.192000pt;}
.ws7{word-spacing:-7.466667pt;}
.ws3{word-spacing:-7.341600pt;}
.ws7d{word-spacing:-6.333333pt;}
.ws99{word-spacing:-5.333333pt;}
.wsc3{word-spacing:-0.861333pt;}
.ws121{word-spacing:-0.768000pt;}
.ws7f{word-spacing:-0.709333pt;}
.ws80{word-spacing:-0.701867pt;}
.ws44{word-spacing:-0.658667pt;}
.ws15{word-spacing:-0.608000pt;}
.ws102{word-spacing:-0.597333pt;}
.wsc6{word-spacing:-0.557333pt;}
.wsf3{word-spacing:-0.512000pt;}
.ws6f{word-spacing:-0.506667pt;}
.ws84{word-spacing:-0.456000pt;}
.ws12{word-spacing:-0.405333pt;}
.ws2f{word-spacing:-0.354667pt;}
.ws3a{word-spacing:-0.304000pt;}
.wsd6{word-spacing:-0.256000pt;}
.ws68{word-spacing:-0.253333pt;}
.ws123{word-spacing:-0.213333pt;}
.ws31{word-spacing:-0.202667pt;}
.ws12a{word-spacing:-0.170667pt;}
.wsc7{word-spacing:-0.152000pt;}
.ws11d{word-spacing:-0.128000pt;}
.ws70{word-spacing:-0.101333pt;}
.ws127{word-spacing:-0.085333pt;}
.ws86{word-spacing:-0.050667pt;}
.ws0{word-spacing:-0.042667pt;}
.ws8{word-spacing:0.000000pt;}
.wsee{word-spacing:0.042667pt;}
.ws94{word-spacing:0.050667pt;}
.ws7b{word-spacing:0.101333pt;}
.ws13{word-spacing:0.152000pt;}
.wsde{word-spacing:0.170667pt;}
.ws9{word-spacing:0.202667pt;}
.wsdf{word-spacing:0.213333pt;}
.ws60{word-spacing:0.253333pt;}
.wsd7{word-spacing:0.256000pt;}
.wsd2{word-spacing:0.298667pt;}
.wsca{word-spacing:0.304000pt;}
.ws115{word-spacing:0.341333pt;}
.ws26{word-spacing:0.354667pt;}
.wsd3{word-spacing:0.384000pt;}
.ws5d{word-spacing:0.405333pt;}
.ws62{word-spacing:0.456000pt;}
.ws21{word-spacing:0.506667pt;}
.wsfe{word-spacing:0.554667pt;}
.wsc0{word-spacing:0.557333pt;}
.wse{word-spacing:0.608000pt;}
.wsf6{word-spacing:0.640000pt;}
.wsb0{word-spacing:0.658667pt;}
.wsb6{word-spacing:0.709333pt;}
.wsaa{word-spacing:0.760000pt;}
.ws125{word-spacing:0.768000pt;}
.wsf9{word-spacing:0.810667pt;}
.ws11b{word-spacing:0.853333pt;}
.ws89{word-spacing:0.861333pt;}
.wsfd{word-spacing:0.896000pt;}
.ws90{word-spacing:0.912000pt;}
.wscd{word-spacing:0.962667pt;}
.ws22{word-spacing:1.013333pt;}
.wsab{word-spacing:1.064000pt;}
.ws10a{word-spacing:1.066667pt;}
.ws2c{word-spacing:1.114667pt;}
.ws14{word-spacing:1.165333pt;}
.ws122{word-spacing:1.194667pt;}
.ws3b{word-spacing:1.216000pt;}
.ws24{word-spacing:1.266667pt;}
.ws55{word-spacing:1.317333pt;}
.wse9{word-spacing:1.322667pt;}
.ws61{word-spacing:1.368000pt;}
.ws87{word-spacing:1.418667pt;}
.wsba{word-spacing:1.469333pt;}
.ws10b{word-spacing:1.493333pt;}
.wsa{word-spacing:1.520000pt;}
.ws124{word-spacing:1.536000pt;}
.ws9c{word-spacing:1.570667pt;}
.wse6{word-spacing:1.578667pt;}
.ws56{word-spacing:1.621333pt;}
.wsbb{word-spacing:1.672000pt;}
.wsf2{word-spacing:1.706667pt;}
.ws30{word-spacing:1.722667pt;}
.ws10d{word-spacing:1.749333pt;}
.ws71{word-spacing:1.773333pt;}
.ws42{word-spacing:1.824000pt;}
.ws8b{word-spacing:1.874667pt;}
.ws10e{word-spacing:1.920000pt;}
.ws66{word-spacing:1.925333pt;}
.ws39{word-spacing:1.976000pt;}
.wsa4{word-spacing:2.026667pt;}
.ws101{word-spacing:2.048000pt;}
.ws11{word-spacing:2.077333pt;}
.ws100{word-spacing:2.090667pt;}
.wsa5{word-spacing:2.128000pt;}
.wse8{word-spacing:2.133333pt;}
.wse3{word-spacing:2.176000pt;}
.ws32{word-spacing:2.178667pt;}
.ws118{word-spacing:2.218667pt;}
.wsac{word-spacing:2.229333pt;}
.wse7{word-spacing:2.261333pt;}
.ws4a{word-spacing:2.280000pt;}
.wsdc{word-spacing:2.304000pt;}
.ws3f{word-spacing:2.330667pt;}
.wsa7{word-spacing:2.381333pt;}
.wsc4{word-spacing:2.432000pt;}
.wsfa{word-spacing:2.474667pt;}
.ws5c{word-spacing:2.482667pt;}
.ws4e{word-spacing:2.533333pt;}
.ws54{word-spacing:2.584000pt;}
.ws128{word-spacing:2.602667pt;}
.ws1a{word-spacing:2.634667pt;}
.wsff{word-spacing:2.645333pt;}
.ws40{word-spacing:2.685333pt;}
.ws112{word-spacing:2.730667pt;}
.ws29{word-spacing:2.736000pt;}
.ws33{word-spacing:2.786667pt;}
.ws95{word-spacing:2.837333pt;}
.wsb{word-spacing:2.888000pt;}
.ws5b{word-spacing:2.938667pt;}
.ws11f{word-spacing:2.944000pt;}
.wsdd{word-spacing:2.986667pt;}
.wsbe{word-spacing:2.989333pt;}
.ws74{word-spacing:3.040000pt;}
.wsf8{word-spacing:3.072000pt;}
.ws1c{word-spacing:3.090667pt;}
.ws5f{word-spacing:3.141333pt;}
.ws109{word-spacing:3.157333pt;}
.ws92{word-spacing:3.192000pt;}
.ws108{word-spacing:3.200000pt;}
.ws5a{word-spacing:3.242667pt;}
.ws126{word-spacing:3.285333pt;}
.ws27{word-spacing:3.293333pt;}
.ws10f{word-spacing:3.328000pt;}
.ws20{word-spacing:3.344000pt;}
.ws7e{word-spacing:3.394667pt;}
.wsef{word-spacing:3.413333pt;}
.ws93{word-spacing:3.445333pt;}
.ws16{word-spacing:3.496000pt;}
.ws10c{word-spacing:3.498667pt;}
.ws4d{word-spacing:3.546667pt;}
.wsd9{word-spacing:3.584000pt;}
.ws3e{word-spacing:3.597333pt;}
.ws45{word-spacing:3.648000pt;}
.wsbd{word-spacing:3.698667pt;}
.ws119{word-spacing:3.712000pt;}
.ws82{word-spacing:3.749333pt;}
.wsda{word-spacing:3.754667pt;}
.wsa0{word-spacing:3.800000pt;}
.ws10{word-spacing:3.850667pt;}
.wsa8{word-spacing:3.901333pt;}
.ws11c{word-spacing:3.925333pt;}
.wsc{word-spacing:3.952000pt;}
.ws107{word-spacing:3.968000pt;}
.ws5e{word-spacing:4.002667pt;}
.ws35{word-spacing:4.053333pt;}
.ws116{word-spacing:4.096000pt;}
.ws1e{word-spacing:4.104000pt;}
.ws103{word-spacing:4.138667pt;}
.ws37{word-spacing:4.154667pt;}
.wsd5{word-spacing:4.181333pt;}
.ws8c{word-spacing:4.205333pt;}
.ws23{word-spacing:4.256000pt;}
.wse4{word-spacing:4.266667pt;}
.ws2a{word-spacing:4.306667pt;}
.wsf5{word-spacing:4.309333pt;}
.ws11a{word-spacing:4.352000pt;}
.ws25{word-spacing:4.357333pt;}
.ws9f{word-spacing:4.408000pt;}
.ws28{word-spacing:4.458667pt;}
.wsf0{word-spacing:4.522667pt;}
.ws3c{word-spacing:4.560000pt;}
.ws8e{word-spacing:4.610667pt;}
.wse5{word-spacing:4.650667pt;}
.ws36{word-spacing:4.661333pt;}
.wsaf{word-spacing:4.712000pt;}
.ws104{word-spacing:4.736000pt;}
.ws41{word-spacing:4.762667pt;}
.ws111{word-spacing:4.778667pt;}
.ws43{word-spacing:4.813333pt;}
.ws38{word-spacing:4.864000pt;}
.wsdb{word-spacing:4.906667pt;}
.wsb5{word-spacing:4.914667pt;}
.ws53{word-spacing:4.965333pt;}
.wscc{word-spacing:5.016000pt;}
.ws7c{word-spacing:5.066667pt;}
.ws110{word-spacing:5.120000pt;}
.ws17{word-spacing:5.168000pt;}
.ws47{word-spacing:5.218667pt;}
.ws6b{word-spacing:5.269333pt;}
.ws129{word-spacing:5.333333pt;}
.ws6d{word-spacing:5.370667pt;}
.ws11e{word-spacing:5.418667pt;}
.ws59{word-spacing:5.421333pt;}
.wsc1{word-spacing:5.472000pt;}
.ws72{word-spacing:5.522667pt;}
.wsd{word-spacing:5.573333pt;}
.ws64{word-spacing:5.624000pt;}
.ws67{word-spacing:5.776000pt;}
.ws105{word-spacing:5.802667pt;}
.ws50{word-spacing:5.826667pt;}
.ws8a{word-spacing:5.877333pt;}
.wsb1{word-spacing:5.928000pt;}
.ws1f{word-spacing:5.978667pt;}
.ws81{word-spacing:6.029333pt;}
.wsed{word-spacing:6.058667pt;}
.wsb2{word-spacing:6.080000pt;}
.ws4f{word-spacing:6.130667pt;}
.wsa9{word-spacing:6.181333pt;}
.wsf1{word-spacing:6.229333pt;}
.ws2d{word-spacing:6.232000pt;}
.ws88{word-spacing:6.282667pt;}
.wse2{word-spacing:6.314667pt;}
.ws51{word-spacing:6.333333pt;}
.wsce{word-spacing:6.384000pt;}
.wsd4{word-spacing:6.400000pt;}
.wsb8{word-spacing:6.434667pt;}
.ws49{word-spacing:6.485333pt;}
.ws3d{word-spacing:6.536000pt;}
.wse0{word-spacing:6.570667pt;}
.wsd1{word-spacing:6.586667pt;}
.wsb3{word-spacing:6.637333pt;}
.ws117{word-spacing:6.656000pt;}
.ws9b{word-spacing:6.688000pt;}
.ws1b{word-spacing:6.738667pt;}
.ws6e{word-spacing:6.789333pt;}
.ws48{word-spacing:6.840000pt;}
.ws6a{word-spacing:6.890667pt;}
.wsf4{word-spacing:6.912000pt;}
.ws46{word-spacing:6.941333pt;}
.ws8f{word-spacing:7.042667pt;}
.ws113{word-spacing:7.082667pt;}
.ws73{word-spacing:7.144000pt;}
.wsb4{word-spacing:7.194667pt;}
.wsd8{word-spacing:7.210667pt;}
.wsad{word-spacing:7.245333pt;}
.wscb{word-spacing:7.296000pt;}
.ws1d{word-spacing:7.346667pt;}
.ws63{word-spacing:7.397333pt;}
.ws6c{word-spacing:7.448000pt;}
.ws4c{word-spacing:7.498667pt;}
.ws85{word-spacing:7.549333pt;}
.wsb9{word-spacing:7.600000pt;}
.wsc2{word-spacing:7.701333pt;}
.wsfc{word-spacing:7.808000pt;}
.ws120{word-spacing:7.850667pt;}
.ws91{word-spacing:7.853333pt;}
.wsf{word-spacing:7.954667pt;}
.wsbc{word-spacing:8.005333pt;}
.ws75{word-spacing:8.056000pt;}
.ws114{word-spacing:8.064000pt;}
.wsa3{word-spacing:8.106667pt;}
.wsc8{word-spacing:8.157333pt;}
.wsbf{word-spacing:8.208000pt;}
.ws8d{word-spacing:8.360000pt;}
.ws2b{word-spacing:8.512000pt;}
.wse1{word-spacing:8.533333pt;}
.wsf7{word-spacing:8.576000pt;}
.ws9e{word-spacing:8.664000pt;}
.wscf{word-spacing:8.714667pt;}
.ws4b{word-spacing:8.866667pt;}
.ws83{word-spacing:8.968000pt;}
.ws2e{word-spacing:9.120000pt;}
.ws9d{word-spacing:9.272000pt;}
.wsae{word-spacing:9.322667pt;}
.wsc9{word-spacing:9.373333pt;}
.wsa2{word-spacing:9.474667pt;}
.ws58{word-spacing:9.576000pt;}
.ws34{word-spacing:9.626667pt;}
.ws57{word-spacing:9.829333pt;}
.ws69{word-spacing:10.538667pt;}
.wsc5{word-spacing:11.552000pt;}
.wsa1{word-spacing:11.602667pt;}
.wsa6{word-spacing:12.058667pt;}
.wsb7{word-spacing:12.312000pt;}
.ws106{word-spacing:13.098667pt;}
.ws52{word-spacing:14.592000pt;}
.ws7a{word-spacing:16.010667pt;}
.wsea{word-spacing:16.682667pt;}
.wseb{word-spacing:16.810667pt;}
.wsec{word-spacing:32.426667pt;}
.ws77{word-spacing:62.250667pt;}
.ws18{word-spacing:64.938667pt;}
.ws79{word-spacing:123.648000pt;}
.ws96{word-spacing:130.155833pt;}
.ws76{word-spacing:237.184000pt;}
.ws78{word-spacing:320.384000pt;}
.ws97{word-spacing:670.037333pt;}
._5{margin-left:-13.866667pt;}
._11{margin-left:-10.443733pt;}
._d{margin-left:-6.301333pt;}
._40{margin-left:-4.949333pt;}
._2{margin-left:-3.906400pt;}
._4{margin-left:-2.432000pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.305067pt;}
._b{width:2.606400pt;}
._c{width:3.898133pt;}
._42{width:4.821291pt;}
._a{width:5.829867pt;}
._f{width:6.720000pt;}
._3f{width:8.682400pt;}
._e{width:9.857867pt;}
._29{width:11.459466pt;}
._12{width:13.051733pt;}
._33{width:15.914667pt;}
._41{width:17.408000pt;}
._6{width:19.840000pt;}
._10{width:31.546125pt;}
._3{width:35.617374pt;}
._3e{width:37.461314pt;}
._36{width:38.655981pt;}
._8{width:50.005329pt;}
._38{width:57.599981pt;}
._2c{width:60.031981pt;}
._7{width:64.938667pt;}
._3a{width:66.022914pt;}
._1f{width:73.343990pt;}
._1b{width:86.954657pt;}
._2f{width:88.832000pt;}
._13{width:90.342933pt;}
._1c{width:94.250667pt;}
._23{width:96.426667pt;}
._2e{width:99.711981pt;}
._20{width:110.677333pt;}
._1a{width:115.584000pt;}
._16{width:122.069333pt;}
._1e{width:140.373333pt;}
._3c{width:148.863981pt;}
._25{width:154.922667pt;}
._35{width:163.071981pt;}
._30{width:173.994647pt;}
._32{width:177.322647pt;}
._3d{width:208.444267pt;}
._17{width:209.834658pt;}
._22{width:220.774933pt;}
._37{width:227.071981pt;}
._2d{width:231.850647pt;}
._14{width:233.216000pt;}
._34{width:235.605314pt;}
._27{width:251.733328pt;}
._26{width:271.701328pt;}
._18{width:275.242661pt;}
._1d{width:281.130661pt;}
._31{width:284.117333pt;}
._28{width:299.178667pt;}
._21{width:307.199994pt;}
._39{width:374.101333pt;}
._19{width:433.066667pt;}
._15{width:444.373327pt;}
._24{width:450.858667pt;}
._3b{width:487.338667pt;}
._2b{width:550.357298pt;}
._2a{width:717.244232pt;}
._9{width:1552.512000pt;}
.fs4{font-size:29.866667pt;}
.fs3{font-size:35.466667pt;}
.fs0{font-size:42.666667pt;}
.fs7{font-size:50.133331pt;}
.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;}
.yc7{bottom:65.090604pt;}
.yc1{bottom:65.122663pt;}
.yc0{bottom:65.133331pt;}
.y114{bottom:65.137891pt;}
.y11b{bottom:65.159215pt;}
.y137{bottom:65.191201pt;}
.y254{bottom:65.267583pt;}
.y1e8{bottom:66.043325pt;}
.ya2{bottom:66.067992pt;}
.y1fe{bottom:66.101992pt;}
.y266{bottom:66.103992pt;}
.y184{bottom:66.134659pt;}
.y161{bottom:66.176002pt;}
.ybf{bottom:66.188002pt;}
.y1a7{bottom:66.194002pt;}
.y7c{bottom:66.460665pt;}
.y28{bottom:69.399999pt;}
.y12b{bottom:73.137891pt;}
.y11c{bottom:73.159215pt;}
.y138{bottom:73.191201pt;}
.y52{bottom:73.340936pt;}
.y2b3{bottom:74.299613pt;}
.y112{bottom:75.412916pt;}
.y2ef{bottom:75.546249pt;}
.y1c6{bottom:76.299603pt;}
.y21a{bottom:76.543603pt;}
.yf5{bottom:79.993067pt;}
.y253{bottom:80.606916pt;}
.y1e7{bottom:81.382659pt;}
.ya1{bottom:81.407325pt;}
.y1fd{bottom:81.441325pt;}
.y265{bottom:81.443325pt;}
.y239{bottom:81.473325pt;}
.y183{bottom:81.473992pt;}
.y160{bottom:81.515335pt;}
.ybe{bottom:81.527335pt;}
.y1a6{bottom:81.533335pt;}
.y7b{bottom:81.799998pt;}
.y27{bottom:84.178000pt;}
.y2b2{bottom:86.630280pt;}
.y2f1{bottom:87.866249pt;}
.y2ee{bottom:87.876916pt;}
.y51{bottom:88.680270pt;}
.y111{bottom:90.752249pt;}
.y1c5{bottom:91.638936pt;}
.y219{bottom:91.882936pt;}
.yf4{bottom:95.332400pt;}
.y252{bottom:95.946249pt;}
.ya0{bottom:96.746659pt;}
.y264{bottom:96.782659pt;}
.y238{bottom:96.812659pt;}
.y15f{bottom:96.854669pt;}
.ybd{bottom:96.866669pt;}
.y2b1{bottom:98.960947pt;}
.y2f0{bottom:100.196916pt;}
.y2ed{bottom:100.207583pt;}
.y26{bottom:100.775330pt;}
.y50{bottom:104.019603pt;}
.y1e6{bottom:104.385325pt;}
.y280{bottom:104.402270pt;}
.y1fc{bottom:104.443992pt;}
.y182{bottom:104.476659pt;}
.y110{bottom:106.091583pt;}
.y1c4{bottom:106.978270pt;}
.y218{bottom:107.222270pt;}
.yf3{bottom:110.671733pt;}
.y251{bottom:111.285583pt;}
.y2b0{bottom:111.291613pt;}
.y9f{bottom:112.085992pt;}
.y263{bottom:112.121992pt;}
.y237{bottom:112.151992pt;}
.y15e{bottom:112.194002pt;}
.y2ec{bottom:112.538249pt;}
.y1a5{bottom:112.866669pt;}
.y7a{bottom:113.133331pt;}
.y25{bottom:115.553336pt;}
.y27f{bottom:116.732936pt;}
.y4f{bottom:119.358936pt;}
.y1e5{bottom:119.724659pt;}
.y1fb{bottom:119.783325pt;}
.y181{bottom:119.815992pt;}
.ycc{bottom:122.935880pt;}
.ycb{bottom:122.935882pt;}
.yca{bottom:122.935883pt;}
.yc9{bottom:122.946568pt;}
.yc8{bottom:122.957253pt;}
.yc6{bottom:122.967939pt;}
.yc5{bottom:122.967941pt;}
.yc4{bottom:122.967942pt;}
.yc3{bottom:122.978627pt;}
.yc2{bottom:122.989312pt;}
.y2af{bottom:123.622280pt;}
.y2eb{bottom:124.868916pt;}
.yf2{bottom:126.011067pt;}
.y250{bottom:126.624916pt;}
.y9e{bottom:127.425325pt;}
.y262{bottom:127.461325pt;}
.y236{bottom:127.491325pt;}
.y15d{bottom:127.533335pt;}
.ybc{bottom:128.200002pt;}
.y10f{bottom:129.094249pt;}
.y1c3{bottom:129.980936pt;}
.y24{bottom:132.150665pt;}
.y4e{bottom:134.698270pt;}
.y1e4{bottom:135.063992pt;}
.y1fa{bottom:135.122659pt;}
.y180{bottom:135.155325pt;}
.y2ae{bottom:135.952947pt;}
.y2ea{bottom:137.199583pt;}
.y217{bottom:138.555603pt;}
.y27e{bottom:141.404936pt;}
.y24f{bottom:141.964249pt;}
.y9d{bottom:142.764659pt;}
.y261{bottom:142.800659pt;}
.y235{bottom:142.830659pt;}
.y10e{bottom:144.433583pt;}
.y79{bottom:145.133331pt;}
.y1c2{bottom:145.320270pt;}
.y2ad{bottom:148.283613pt;}
.y2e9{bottom:149.530249pt;}
.y4d{bottom:150.037603pt;}
.y1e3{bottom:150.403325pt;}
.y1f9{bottom:150.461992pt;}
.y17f{bottom:150.494659pt;}
.y23{bottom:153.029339pt;}
.y27d{bottom:153.735603pt;}
.y24e{bottom:157.303583pt;}
.yf1{bottom:157.344400pt;}
.y1a4{bottom:158.027728pt;}
.y9c{bottom:158.103992pt;}
.y260{bottom:158.139992pt;}
.y234{bottom:158.169992pt;}
.y15c{bottom:158.866669pt;}
.y10d{bottom:159.772916pt;}
.y2ac{bottom:160.614280pt;}
.y1c1{bottom:160.659603pt;}
.y2e8{bottom:161.860916pt;}
.y22{bottom:165.360005pt;}
.y4c{bottom:165.376936pt;}
.y1f8{bottom:165.801325pt;}
.y17e{bottom:165.833992pt;}
.y27c{bottom:166.066270pt;}
.ybb{bottom:169.252542pt;}
.y24d{bottom:172.642916pt;}
.y2ab{bottom:172.944947pt;}
.y1a3{bottom:173.367062pt;}
.y1e2{bottom:173.405992pt;}
.y9b{bottom:173.443325pt;}
.y25f{bottom:173.479325pt;}
.y233{bottom:173.509325pt;}
.y2e7{bottom:174.191583pt;}
.y10c{bottom:175.112249pt;}
.y1c0{bottom:175.998936pt;}
.y216{bottom:178.177603pt;}
.y27b{bottom:178.396936pt;}
.y4b{bottom:180.716270pt;}
.y1f7{bottom:181.140659pt;}
.y17d{bottom:181.173325pt;}
.y21{bottom:184.400005pt;}
.yba{bottom:184.591876pt;}
.y2aa{bottom:185.275613pt;}
.y2e6{bottom:186.522249pt;}
.y24c{bottom:187.982249pt;}
.y1a2{bottom:188.706395pt;}
.y1e1{bottom:188.745325pt;}
.y9a{bottom:188.782659pt;}
.y25e{bottom:188.818659pt;}
.y232{bottom:188.848659pt;}
.y10b{bottom:190.451583pt;}
.y27a{bottom:190.727603pt;}
.y1bf{bottom:191.338270pt;}
.y215{bottom:193.516936pt;}
.y15b{bottom:194.199202pt;}
.yf0{bottom:194.788659pt;}
.y78{bottom:195.176523pt;}
.y4a{bottom:196.055603pt;}
.y1f6{bottom:196.479992pt;}
.y20{bottom:196.730672pt;}
.y2a9{bottom:197.606280pt;}
.y2e5{bottom:198.852916pt;}
.yb9{bottom:199.931209pt;}
.y279{bottom:203.058270pt;}
.y24b{bottom:203.321583pt;}
.y1a1{bottom:204.045728pt;}
.y99{bottom:204.121992pt;}
.y25d{bottom:204.157992pt;}
.y17c{bottom:204.175992pt;}
.y231{bottom:204.187992pt;}
.y1be{bottom:206.677603pt;}
.y214{bottom:208.856270pt;}
.y15a{bottom:209.538535pt;}
.y2a8{bottom:209.936947pt;}
.yef{bottom:210.127992pt;}
.y77{bottom:210.515856pt;}
.y2e4{bottom:211.183583pt;}
.y1e0{bottom:211.747992pt;}
.y1f5{bottom:211.819325pt;}
.y10a{bottom:213.454249pt;}
.yb8{bottom:215.270542pt;}
.y278{bottom:215.388936pt;}
.y1f{bottom:215.770672pt;}
.y24a{bottom:218.660916pt;}
.y1a0{bottom:219.385062pt;}
.y98{bottom:219.461325pt;}
.y25c{bottom:219.497325pt;}
.y17b{bottom:219.515325pt;}
.y230{bottom:219.527325pt;}
.y2a7{bottom:222.267613pt;}
.y2e3{bottom:223.514249pt;}
.y213{bottom:224.195603pt;}
.y159{bottom:224.877869pt;}
.yee{bottom:225.467325pt;}
.y76{bottom:225.855190pt;}
.y1df{bottom:227.087325pt;}
.y49{bottom:227.388936pt;}
.y277{bottom:227.719603pt;}
.y1e{bottom:228.101339pt;}
.y109{bottom:228.793583pt;}
.y1bd{bottom:229.680270pt;}
.yb7{bottom:230.609876pt;}
.y249{bottom:234.000249pt;}
.y2a6{bottom:234.598280pt;}
.y19f{bottom:234.724395pt;}
.y97{bottom:234.800659pt;}
.y1f4{bottom:234.821992pt;}
.y25b{bottom:234.836659pt;}
.y17a{bottom:234.854659pt;}
.y22f{bottom:234.866659pt;}
.y2e2{bottom:235.844916pt;}
.yed{bottom:240.806659pt;}
.y75{bottom:241.194523pt;}
.y1de{bottom:242.426659pt;}
.y108{bottom:244.132916pt;}
.y1bc{bottom:245.019603pt;}
.yb6{bottom:245.949209pt;}
.y2a5{bottom:246.928947pt;}
.y212{bottom:247.198270pt;}
.y2e1{bottom:248.175583pt;}
.y248{bottom:249.339583pt;}
.y19e{bottom:250.063728pt;}
.y96{bottom:250.139992pt;}
.y1f3{bottom:250.161325pt;}
.y25a{bottom:250.175992pt;}
.y179{bottom:250.193992pt;}
.y276{bottom:252.391603pt;}
.yec{bottom:256.145992pt;}
.y158{bottom:256.211202pt;}
.y74{bottom:256.533856pt;}
.y2a4{bottom:259.259613pt;}
.y48{bottom:259.388936pt;}
.y107{bottom:259.472249pt;}
.y1bb{bottom:260.358936pt;}
.y2e0{bottom:260.506249pt;}
.yb5{bottom:261.288542pt;}
.y211{bottom:262.537603pt;}
.y247{bottom:264.678916pt;}
.y275{bottom:264.722270pt;}
.y1dd{bottom:265.429325pt;}
.y95{bottom:265.479325pt;}
.y1f2{bottom:265.500659pt;}
.y259{bottom:265.515325pt;}
.y178{bottom:265.533325pt;}
.y22e{bottom:266.199992pt;}
.yeb{bottom:271.485325pt;}
.y2a3{bottom:271.590280pt;}
.y73{bottom:271.873190pt;}
.y2df{bottom:272.836916pt;}
.y19d{bottom:273.066395pt;}
.y106{bottom:274.811583pt;}
.y1ba{bottom:275.698270pt;}
.yb4{bottom:276.627876pt;}
.y210{bottom:277.876936pt;}
.y1d{bottom:279.313728pt;}
.y246{bottom:280.018249pt;}
.y1dc{bottom:280.768659pt;}
.y94{bottom:280.818659pt;}
.y1f1{bottom:280.839992pt;}
.y258{bottom:280.854659pt;}
.y2a2{bottom:283.920947pt;}
.y12c{bottom:284.487215pt;}
.y117{bottom:284.497877pt;}
.y12d{bottom:284.508539pt;}
.y11d{bottom:284.508540pt;}
.y132{bottom:284.519201pt;}
.y11f{bottom:284.519202pt;}
.y136{bottom:284.529863pt;}
.y122{bottom:284.529864pt;}
.y124{bottom:284.540525pt;}
.y128{bottom:284.551187pt;}
.y139{bottom:284.561849pt;}
.y2de{bottom:285.167583pt;}
.yea{bottom:286.824659pt;}
.y72{bottom:287.212523pt;}
.y19c{bottom:288.405728pt;}
.y105{bottom:290.150916pt;}
.y1b9{bottom:291.037603pt;}
.yb3{bottom:291.967209pt;}
.y20f{bottom:293.216270pt;}
.y1c{bottom:294.653061pt;}
.y245{bottom:295.357583pt;}
.y157{bottom:295.395583pt;}
.y1db{bottom:296.107992pt;}
.y93{bottom:296.157992pt;}
.y1f0{bottom:296.179325pt;}
.y257{bottom:296.193992pt;}
.y2a1{bottom:296.251613pt;}
.y177{bottom:296.866659pt;}
.y2dd{bottom:297.498249pt;}
.ye9{bottom:302.163992pt;}
.y71{bottom:302.551856pt;}
.y19b{bottom:303.745062pt;}
.y274{bottom:304.650249pt;}
.y1b8{bottom:306.376936pt;}
.yb2{bottom:307.306542pt;}
.y20e{bottom:308.555603pt;}
.y2a0{bottom:308.582280pt;}
.y2dc{bottom:309.828916pt;}
.y244{bottom:310.696916pt;}
.y156{bottom:310.734916pt;}
.y92{bottom:311.497325pt;}
.y256{bottom:311.533325pt;}
.y104{bottom:313.153583pt;}
.ye8{bottom:317.503325pt;}
.y70{bottom:317.891190pt;}
.y19a{bottom:319.084395pt;}
.y1da{bottom:319.110659pt;}
.y1ef{bottom:319.181992pt;}
.y273{bottom:319.989583pt;}
.y29f{bottom:320.912947pt;}
.y1b7{bottom:321.716270pt;}
.y2db{bottom:322.159583pt;}
.yb1{bottom:322.645876pt;}
.y22d{bottom:322.952515pt;}
.y47{bottom:323.881583pt;}
.y1b{bottom:325.319061pt;}
.y243{bottom:326.036249pt;}
.y155{bottom:326.074249pt;}
.y91{bottom:326.836659pt;}
.y103{bottom:328.492916pt;}
.ye7{bottom:332.842659pt;}
.y6f{bottom:333.230523pt;}
.y29e{bottom:333.243613pt;}
.y199{bottom:334.423728pt;}
.y1d9{bottom:334.449992pt;}
.y2da{bottom:334.490249pt;}
.y1ee{bottom:334.521325pt;}
.y272{bottom:335.328916pt;}
.y1b6{bottom:337.055603pt;}
.y176{bottom:337.940515pt;}
.yb0{bottom:337.985209pt;}
.y22c{bottom:338.291848pt;}
.y46{bottom:339.220916pt;}
.y20d{bottom:339.888936pt;}
.y1a{bottom:340.658395pt;}
.y242{bottom:341.375583pt;}
.y154{bottom:341.413583pt;}
.y90{bottom:342.175992pt;}
.y255{bottom:342.866659pt;}
.y102{bottom:343.832249pt;}
.y29d{bottom:345.574280pt;}
.y2d9{bottom:346.820916pt;}
.ye6{bottom:348.181992pt;}
.y6e{bottom:348.569856pt;}
.y198{bottom:349.763062pt;}
.y1d8{bottom:349.789325pt;}
.y1ed{bottom:349.860659pt;}
.y271{bottom:350.668249pt;}
.y175{bottom:353.279848pt;}
.y22b{bottom:353.631182pt;}
.y45{bottom:354.560249pt;}
.y19{bottom:355.997728pt;}
.y241{bottom:356.714916pt;}
.y153{bottom:356.752916pt;}
.y8f{bottom:357.515325pt;}
.y29c{bottom:357.904947pt;}
.y2d8{bottom:359.151583pt;}
.y101{bottom:359.171583pt;}
.ye5{bottom:363.521325pt;}
.y6d{bottom:363.909190pt;}
.y1d7{bottom:365.128659pt;}
.y1ec{bottom:365.199992pt;}
.y270{bottom:366.007583pt;}
.y1b5{bottom:368.388916pt;}
.y174{bottom:368.619182pt;}
.yaf{bottom:369.318522pt;}
.y44{bottom:369.899583pt;}
.y29b{bottom:370.235613pt;}
.y18{bottom:371.337061pt;}
.y2d7{bottom:371.482249pt;}
.y20c{bottom:371.882916pt;}
.y240{bottom:372.054249pt;}
.y8e{bottom:372.854659pt;}
.y113{bottom:373.244548pt;}
.y115{bottom:373.255210pt;}
.y118{bottom:373.265872pt;}
.y12e{bottom:373.276534pt;}
.y11e{bottom:373.276535pt;}
.y133{bottom:373.287196pt;}
.y120{bottom:373.287197pt;}
.y126{bottom:373.308521pt;}
.y129{bottom:373.319182pt;}
.y13a{bottom:373.329844pt;}
.y100{bottom:374.510916pt;}
.y22a{bottom:376.633848pt;}
.ye4{bottom:378.860659pt;}
.y6c{bottom:379.248523pt;}
.y152{bottom:379.755583pt;}
.y1d6{bottom:380.467992pt;}
.y197{bottom:381.096395pt;}
.y119{bottom:381.265872pt;}
.y12f{bottom:381.276534pt;}
.y134{bottom:381.287196pt;}
.y125{bottom:381.308521pt;}
.y26f{bottom:381.346916pt;}
.y29a{bottom:382.566280pt;}
.y2d6{bottom:383.812916pt;}
.y173{bottom:383.958515pt;}
.y43{bottom:385.238916pt;}
.y17{bottom:386.676395pt;}
.y20b{bottom:387.222249pt;}
.y23f{bottom:387.393583pt;}
.y8d{bottom:388.193992pt;}
.yff{bottom:389.850249pt;}
.y229{bottom:391.973182pt;}
.ye3{bottom:394.199992pt;}
.y6b{bottom:394.587856pt;}
.y299{bottom:394.896947pt;}
.y151{bottom:395.094916pt;}
.y2d5{bottom:396.143583pt;}
.y1eb{bottom:396.533325pt;}
.y26e{bottom:396.686249pt;}
.y172{bottom:399.297848pt;}
.y42{bottom:400.578249pt;}
.y16{bottom:402.015728pt;}
.y23e{bottom:402.732916pt;}
.y1d5{bottom:403.470659pt;}
.y8c{bottom:403.533325pt;}
.yfe{bottom:405.189583pt;}
.y298{bottom:407.227613pt;}
.y228{bottom:407.312515pt;}
.y2d4{bottom:408.474249pt;}
.y6a{bottom:409.927190pt;}
.yae{bottom:410.413052pt;}
.y150{bottom:410.434249pt;}
.y26d{bottom:412.025583pt;}
.y41{bottom:415.917583pt;}
.y15{bottom:417.355061pt;}
.y23d{bottom:418.072249pt;}
.y20a{bottom:418.555583pt;}
.y1d4{bottom:418.809992pt;}
.y297{bottom:419.558280pt;}
.y2d3{bottom:420.804916pt;}
.y196{bottom:422.240009pt;}
.y171{bottom:422.300515pt;}
.y227{bottom:422.651848pt;}
.y1b4{bottom:424.606249pt;}
.y69{bottom:425.266523pt;}
.ye2{bottom:425.533325pt;}
.yad{bottom:425.752386pt;}
.y26c{bottom:427.364916pt;}
.yfd{bottom:428.192249pt;}
.y40{bottom:431.256916pt;}
.y296{bottom:431.888947pt;}
.y14{bottom:432.694395pt;}
.y2d2{bottom:433.135583pt;}
.y23c{bottom:433.411583pt;}
.y14f{bottom:433.436916pt;}
.y1d3{bottom:434.149325pt;}
.y8b{bottom:434.866659pt;}
.y195{bottom:437.579342pt;}
.y170{bottom:437.639848pt;}
.y1b3{bottom:439.945583pt;}
.y68{bottom:440.605856pt;}
.yac{bottom:441.091719pt;}
.y26b{bottom:442.704249pt;}
.yfc{bottom:443.531583pt;}
.y295{bottom:444.219613pt;}
.y2d1{bottom:445.466249pt;}
.y226{bottom:445.654515pt;}
.y3f{bottom:446.596249pt;}
.y13{bottom:448.033728pt;}
.y23b{bottom:448.750916pt;}
.y14e{bottom:448.776249pt;}
.y1d2{bottom:449.488659pt;}
.y194{bottom:452.918676pt;}
.y16f{bottom:452.979182pt;}
.y1b2{bottom:455.284916pt;}
.y67{bottom:455.945190pt;}
.yab{bottom:456.431052pt;}
.y294{bottom:456.550280pt;}
.y2d0{bottom:457.796916pt;}
.y26a{bottom:458.043583pt;}
.yfb{bottom:458.870916pt;}
.y225{bottom:460.993848pt;}
.y3e{bottom:461.935583pt;}
.y209{bottom:462.171583pt;}
.ye1{bottom:463.049583pt;}
.y12{bottom:463.373061pt;}
.y23a{bottom:464.090249pt;}
.y14d{bottom:464.115583pt;}
.y1d1{bottom:464.827992pt;}
.y193{bottom:468.258009pt;}
.y16e{bottom:468.318515pt;}
.y293{bottom:468.880947pt;}
.y2cf{bottom:470.127583pt;}
.y1b1{bottom:470.624249pt;}
.y66{bottom:471.284523pt;}
.yaa{bottom:471.770386pt;}
.y269{bottom:473.382916pt;}
.yfa{bottom:474.210249pt;}
.y224{bottom:476.333182pt;}
.y3d{bottom:477.274916pt;}
.y208{bottom:477.510916pt;}
.y11{bottom:478.712395pt;}
.ye0{bottom:479.189087pt;}
.y8a{bottom:479.429583pt;}
.y14c{bottom:479.454916pt;}
.y1d0{bottom:480.167325pt;}
.y292{bottom:481.211613pt;}
.y2ce{bottom:482.458249pt;}
.y16d{bottom:483.657848pt;}
.y65{bottom:486.623856pt;}
.y268{bottom:488.722249pt;}
.yf9{bottom:489.549583pt;}
.y192{bottom:491.260676pt;}
.y223{bottom:491.672515pt;}
.y3c{bottom:492.614249pt;}
.y291{bottom:493.542280pt;}
.y1b0{bottom:493.626916pt;}
.ydf{bottom:493.716249pt;}
.y10{bottom:494.051728pt;}
.y89{bottom:494.768916pt;}
.y2cd{bottom:494.788916pt;}
.y14b{bottom:494.794249pt;}
.y207{bottom:500.513583pt;}
.y64{bottom:501.963190pt;}
.ya9{bottom:503.103719pt;}
.y1cf{bottom:503.169992pt;}
.yf8{bottom:504.888916pt;}
.y290{bottom:505.872947pt;}
.y191{bottom:506.600009pt;}
.y16c{bottom:506.660515pt;}
.y222{bottom:507.011848pt;}
.y2cc{bottom:507.119583pt;}
.y3b{bottom:507.953583pt;}
.y1af{bottom:508.966249pt;}
.yf{bottom:509.391061pt;}
.yde{bottom:509.855754pt;}
.y88{bottom:510.108249pt;}
.y14a{bottom:510.133583pt;}
.y206{bottom:515.852916pt;}
.y63{bottom:517.302523pt;}
.y1ea{bottom:517.796916pt;}
.y28f{bottom:518.203613pt;}
.y1ce{bottom:518.509325pt;}
.y2cb{bottom:519.450249pt;}
.y267{bottom:520.055583pt;}
.y16b{bottom:521.999848pt;}
.y221{bottom:522.351182pt;}
.y3a{bottom:523.292916pt;}
.y1ae{bottom:524.305583pt;}
.ye{bottom:524.730395pt;}
.ydd{bottom:525.189087pt;}
.y87{bottom:525.447583pt;}
.y190{bottom:529.602676pt;}
.y205{bottom:531.192249pt;}
.y2ca{bottom:531.780916pt;}
.y62{bottom:532.641856pt;}
.y149{bottom:533.136249pt;}
.y1cd{bottom:533.848659pt;}
.yf7{bottom:536.222249pt;}
.y16a{bottom:537.339182pt;}
.y39{bottom:538.632249pt;}
.yd{bottom:540.069728pt;}
.ydc{bottom:540.522420pt;}
.y86{bottom:540.786916pt;}
.y2c9{bottom:544.111583pt;}
.y18f{bottom:544.942009pt;}
.y220{bottom:545.353848pt;}
.y204{bottom:546.531583pt;}
.y28e{bottom:546.803752pt;}
.y1ad{bottom:547.308249pt;}
.y61{bottom:547.981190pt;}
.y148{bottom:548.475583pt;}
.y1cc{bottom:549.187992pt;}
.y169{bottom:552.678515pt;}
.y38{bottom:553.971583pt;}
.yc{bottom:555.409061pt;}
.y85{bottom:556.126249pt;}
.ya8{bottom:556.216249pt;}
.y2c8{bottom:556.442249pt;}
.y18e{bottom:560.281342pt;}
.y21f{bottom:560.693182pt;}
.y203{bottom:561.870916pt;}
.y1ac{bottom:562.647583pt;}
.y60{bottom:563.320523pt;}
.y147{bottom:563.814916pt;}
.y1cb{bottom:564.527325pt;}
.y168{bottom:568.017848pt;}
.yf6{bottom:568.222249pt;}
.y2c7{bottom:568.772916pt;}
.y37{bottom:569.310916pt;}
.ydb{bottom:570.310916pt;}
.yb{bottom:570.748395pt;}
.y84{bottom:571.465583pt;}
.ya7{bottom:572.355754pt;}
.y18d{bottom:575.620676pt;}
.y21e{bottom:576.032515pt;}
.y202{bottom:577.210249pt;}
.y1ab{bottom:577.986916pt;}
.y5f{bottom:578.659856pt;}
.y1e9{bottom:579.154249pt;}
.y1ca{bottom:579.866659pt;}
.y2c6{bottom:581.103583pt;}
.y36{bottom:584.650249pt;}
.yda{bottom:585.650249pt;}
.ya{bottom:586.087728pt;}
.y83{bottom:586.804916pt;}
.y146{bottom:586.817583pt;}
.ya6{bottom:586.882916pt;}
.y18c{bottom:590.960009pt;}
.y167{bottom:591.020515pt;}
.y21d{bottom:591.371848pt;}
.y201{bottom:592.549583pt;}
.y116{bottom:592.721877pt;}
.y11a{bottom:592.732539pt;}
.y130{bottom:592.743201pt;}
.y135{bottom:592.753863pt;}
.y121{bottom:592.753864pt;}
.y127{bottom:592.775187pt;}
.y12a{bottom:592.785849pt;}
.y13b{bottom:592.796511pt;}
.y1aa{bottom:593.326249pt;}
.y2c5{bottom:593.434249pt;}
.y5e{bottom:593.999190pt;}
.y28d{bottom:596.167583pt;}
.y35{bottom:599.989583pt;}
.y131{bottom:600.743201pt;}
.y123{bottom:600.764525pt;}
.yd9{bottom:600.989583pt;}
.y82{bottom:602.144249pt;}
.y145{bottom:602.156916pt;}
.ya5{bottom:603.022420pt;}
.y2c4{bottom:605.764916pt;}
.y18b{bottom:606.299342pt;}
.y166{bottom:606.359848pt;}
.y21c{bottom:606.711182pt;}
.y200{bottom:607.888916pt;}
.y28c{bottom:608.498249pt;}
.y1a9{bottom:608.665583pt;}
.y5d{bottom:609.338523pt;}
.y1c9{bottom:611.199992pt;}
.y34{bottom:615.328916pt;}
.yd8{bottom:616.328916pt;}
.y81{bottom:617.483583pt;}
.y144{bottom:617.496249pt;}
.ya4{bottom:617.549583pt;}
.y2c3{bottom:618.095583pt;}
.y28b{bottom:620.828916pt;}
.y165{bottom:621.699182pt;}
.y1a8{bottom:624.004916pt;}
.y5c{bottom:624.677856pt;}
.y9{bottom:628.522401pt;}
.y18a{bottom:629.302009pt;}
.y2c2{bottom:630.426249pt;}
.y33{bottom:630.668249pt;}
.yd7{bottom:631.668249pt;}
.y80{bottom:632.822916pt;}
.y143{bottom:632.835583pt;}
.y28a{bottom:633.159583pt;}
.ya3{bottom:633.689087pt;}
.y164{bottom:637.038515pt;}
.y21b{bottom:638.044515pt;}
.y1ff{bottom:639.222249pt;}
.y8{bottom:640.853068pt;}
.y2c1{bottom:642.756916pt;}
.y189{bottom:644.641342pt;}
.y289{bottom:645.490249pt;}
.y32{bottom:646.007583pt;}
.yd6{bottom:647.007583pt;}
.y7f{bottom:648.162249pt;}
.y142{bottom:648.174916pt;}
.y163{bottom:652.377848pt;}
.y2c0{bottom:655.087583pt;}
.y1c8{bottom:655.838249pt;}
.y5b{bottom:656.011190pt;}
.y288{bottom:657.820916pt;}
.y188{bottom:659.980676pt;}
.y31{bottom:661.346916pt;}
.yd5{bottom:662.346916pt;}
.y7e{bottom:663.501583pt;}
.y141{bottom:663.514249pt;}
.y2bf{bottom:667.418249pt;}
.y287{bottom:670.151583pt;}
.y1c7{bottom:671.177583pt;}
.y7{bottom:674.427733pt;}
.y187{bottom:675.320009pt;}
.y30{bottom:676.686249pt;}
.yd4{bottom:677.686249pt;}
.y7d{bottom:678.840916pt;}
.y2be{bottom:679.748916pt;}
.y286{bottom:682.482249pt;}
.y162{bottom:683.711182pt;}
.y140{bottom:686.516916pt;}
.y186{bottom:690.659342pt;}
.y2f{bottom:692.025583pt;}
.y2bd{bottom:692.079583pt;}
.yd3{bottom:693.025583pt;}
.y5a{bottom:694.180249pt;}
.y13f{bottom:701.856249pt;}
.y2bc{bottom:704.410249pt;}
.y2e{bottom:707.364916pt;}
.yd2{bottom:708.364916pt;}
.y59{bottom:709.519583pt;}
.y6{bottom:712.142372pt;}
.y285{bottom:713.799583pt;}
.y2bb{bottom:716.740916pt;}
.y13e{bottom:717.195583pt;}
.y185{bottom:721.992676pt;}
.y2d{bottom:722.704249pt;}
.yd1{bottom:723.704249pt;}
.y58{bottom:724.858916pt;}
.y2ba{bottom:729.071583pt;}
.y5{bottom:732.145038pt;}
.y13d{bottom:732.534916pt;}
.y2c{bottom:738.043583pt;}
.y284{bottom:738.396916pt;}
.yd0{bottom:739.043583pt;}
.y57{bottom:740.198249pt;}
.y2b9{bottom:741.402249pt;}
.y13c{bottom:747.874249pt;}
.y283{bottom:750.727583pt;}
.y4{bottom:752.147705pt;}
.y2b{bottom:753.382916pt;}
.y2b8{bottom:753.732916pt;}
.ycf{bottom:754.382916pt;}
.y56{bottom:755.537583pt;}
.y282{bottom:763.058249pt;}
.y2b7{bottom:766.063583pt;}
.y2a{bottom:768.722249pt;}
.yce{bottom:769.722249pt;}
.y55{bottom:770.876916pt;}
.y281{bottom:775.388916pt;}
.y2b6{bottom:778.394249pt;}
.y54{bottom:786.216249pt;}
.y2b5{bottom:790.724916pt;}
.y29{bottom:800.055583pt;}
.ycd{bottom:801.055583pt;}
.y53{bottom:801.555583pt;}
.y2b4{bottom:803.055583pt;}
.y3{bottom:823.215232pt;}
.y2{bottom:835.545898pt;}
.h9{height:27.596800pt;}
.h2{height:30.080000pt;}
.h3{height:37.376000pt;}
.h8{height:39.424000pt;}
.he{height:39.680000pt;}
.hf{height:43.648000pt;}
.hc{height:46.323198pt;}
.h7{height:46.816000pt;}
.h11{height:47.253333pt;}
.hb{height:47.680000pt;}
.h6{height:50.109333pt;}
.hd{height:51.832000pt;}
.h5{height:54.775672pt;}
.ha{height:58.021333pt;}
.h4{height:61.429333pt;}
.h10{height:92.970667pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:62.362269pt;}
.x14{left:70.362269pt;}
.x4{left:77.486132pt;}
.x5{left:79.937067pt;}
.x3{left:81.263601pt;}
.x48{left:85.039602pt;}
.x15{left:91.487732pt;}
.x16{left:112.682399pt;}
.x2d{left:136.378794pt;}
.x17{left:137.578399pt;}
.x2e{left:148.709461pt;}
.x18{left:149.909065pt;}
.x2f{left:161.040128pt;}
.x19{left:162.239732pt;}
.x1a{left:174.570399pt;}
.x30{left:181.210794pt;}
.x6{left:183.081197pt;}
.x1b{left:186.901065pt;}
.x31{left:193.541461pt;}
.x1c{left:203.029065pt;}
.x7{left:204.206665pt;}
.x32{left:205.872128pt;}
.x1d{left:215.359732pt;}
.x33{left:226.042794pt;}
.x1e{left:227.690399pt;}
.x8{left:229.102665pt;}
.x34{left:238.373461pt;}
.x1f{left:240.021065pt;}
.x9{left:245.230665pt;}
.x3e{left:246.181464pt;}
.x35{left:250.704128pt;}
.x20{left:252.351732pt;}
.x3f{left:258.512131pt;}
.xa{left:260.867998pt;}
.x36{left:263.034794pt;}
.x21{left:264.682399pt;}
.x40{left:270.842797pt;}
.x37{left:275.365461pt;}
.xb{left:276.505332pt;}
.x38{left:287.696128pt;}
.xc{left:292.142665pt;}
.x39{left:300.026794pt;}
.x22{left:304.991734pt;}
.xd{left:307.779998pt;}
.x3a{left:312.357461pt;}
.x23{left:320.629067pt;}
.xe{left:323.481332pt;}
.x3b{left:324.688128pt;}
.x24{left:332.959734pt;}
.x3c{left:337.018794pt;}
.xf{left:339.054665pt;}
.x25{left:345.290401pt;}
.x3d{left:349.349461pt;}
.x10{left:354.691998pt;}
.x26{left:357.621067pt;}
.x11{left:370.329332pt;}
.x27{left:373.258401pt;}
.x41{left:381.840131pt;}
.x12{left:385.966665pt;}
.x42{left:394.170797pt;}
.x13{left:401.667998pt;}
.x43{left:406.501464pt;}
.x28{left:413.557067pt;}
.x29{left:425.887734pt;}
.x1{left:431.874146pt;}
.x2a{left:441.525067pt;}
.x2b{left:453.855734pt;}
.x44{left:457.936131pt;}
.x2c{left:466.186401pt;}
.x45{left:470.266797pt;}
.x46{left:485.978797pt;}
.x47{left:498.309464pt;}
}




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