
    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_b9a07f7b5c1055f493c1864a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f8c7337f10cd528dba83a2cd.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_ab3990725cec4ca857dd7e94.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.922000;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_18607a13021327829224acd4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_4168cc647dcdb0afba2ebec5.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.943000;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_435420319e095962d55ac6fa.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.993000;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_d10fa154bd1af19ae3ca2f84.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.995000;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);}
.v1{vertical-align:-5.238000px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.727300px;}
.ls2{letter-spacing:71.732698px;}
.ls7{letter-spacing:1263.524698px;}
.ls12{letter-spacing:1264.178698px;}
.lse{letter-spacing:1264.442698px;}
.lsd{letter-spacing:1264.964698px;}
.ls1a{letter-spacing:1265.096698px;}
.ls6{letter-spacing:1265.420698px;}
.ls28{letter-spacing:1266.074698px;}
.ls8{letter-spacing:1266.404698px;}
.ls26{letter-spacing:1266.734698px;}
.ls22{letter-spacing:1266.794698px;}
.ls23{letter-spacing:1268.366698px;}
.ls1e{letter-spacing:1268.564698px;}
.ls13{letter-spacing:1269.152698px;}
.ls4{letter-spacing:1270.136698px;}
.ls21{letter-spacing:1271.642698px;}
.ls5{letter-spacing:1272.488698px;}
.ls27{letter-spacing:1274.780698px;}
.ls25{letter-spacing:1277.594698px;}
.ls1b{letter-spacing:1293.176698px;}
.ls29{letter-spacing:1295.072698px;}
.ls10{letter-spacing:1295.138698px;}
.ls2b{letter-spacing:1295.468698px;}
.ls15{letter-spacing:1296.512698px;}
.ls2a{letter-spacing:1296.842698px;}
.ls2d{letter-spacing:1298.216698px;}
.ls9{letter-spacing:1298.414698px;}
.ls1d{letter-spacing:1299.194698px;}
.ls20{letter-spacing:1299.722698px;}
.ls11{letter-spacing:1300.112698px;}
.lsa{letter-spacing:1300.376698px;}
.ls1c{letter-spacing:1302.668698px;}
.ls1f{letter-spacing:1302.992698px;}
.lsf{letter-spacing:1303.058698px;}
.lsb{letter-spacing:1303.322698px;}
.ls24{letter-spacing:1305.020698px;}
.lsc{letter-spacing:1307.966698px;}
.ls14{letter-spacing:1308.098698px;}
.ls2e{letter-spacing:1319.030698px;}
.ls2f{letter-spacing:1322.300698px;}
.ls30{letter-spacing:1323.614698px;}
.ls18{letter-spacing:1323.938698px;}
.ls2c{letter-spacing:1327.082698px;}
.ls16{letter-spacing:1328.192698px;}
.ls17{letter-spacing:1328.324698px;}
.ls19{letter-spacing:1329.698698px;}
.ls3{letter-spacing:1435.334698px;}
.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;}
}
.ws1{word-spacing:-427.176183px;}
.ws3{word-spacing:-63.697039px;}
.ws4{word-spacing:-63.123192px;}
.wsf{word-spacing:-37.329373px;}
.wse{word-spacing:-37.180650px;}
.wsb{word-spacing:-32.727300px;}
.ws2{word-spacing:-22.416000px;}
.ws19{word-spacing:-22.254564px;}
.ws11{word-spacing:-21.730927px;}
.ws14{word-spacing:-21.665473px;}
.ws28{word-spacing:-21.519300px;}
.ws7{word-spacing:-19.309107px;}
.ws1e{word-spacing:-19.047289px;}
.ws10{word-spacing:-18.981834px;}
.ws9a{word-spacing:-18.006403px;}
.ws41{word-spacing:-18.005722px;}
.wsa9{word-spacing:-18.005635px;}
.wsa8{word-spacing:-18.004829px;}
.ws2a{word-spacing:-18.004531px;}
.ws9b{word-spacing:-18.003994px;}
.wsa6{word-spacing:-18.003840px;}
.wsa0{word-spacing:-18.002198px;}
.wsa7{word-spacing:-18.001430px;}
.ws9c{word-spacing:-18.001392px;}
.ws50{word-spacing:-17.933510px;}
.ws4c{word-spacing:-17.933376px;}
.ws4e{word-spacing:-17.932819px;}
.ws42{word-spacing:-17.932800px;}
.ws89{word-spacing:-17.932771px;}
.ws4f{word-spacing:-17.932474px;}
.ws49{word-spacing:-17.932003px;}
.ws29{word-spacing:-17.931149px;}
.ws44{word-spacing:-17.930890px;}
.ws47{word-spacing:-17.930707px;}
.wsa5{word-spacing:-17.930208px;}
.wsd{word-spacing:-17.083651px;}
.ws9{word-spacing:-17.018196px;}
.ws5{word-spacing:-16.504103px;}
.ws8{word-spacing:-16.429105px;}
.wsa{word-spacing:-16.363650px;}
.wsc{word-spacing:-16.298195px;}
.ws6{word-spacing:-14.923649px;}
.ws1c{word-spacing:-8.770916px;}
.ws1f{word-spacing:-8.714718px;}
.ws23{word-spacing:-8.712918px;}
.ws22{word-spacing:-8.709768px;}
.ws27{word-spacing:-8.707968px;}
.ws1d{word-spacing:-5.367277px;}
.ws25{word-spacing:-5.304918px;}
.ws20{word-spacing:-3.932718px;}
.ws21{word-spacing:-3.927768px;}
.ws26{word-spacing:-3.925968px;}
.ws17{word-spacing:-2.618184px;}
.ws24{word-spacing:-2.556918px;}
.ws0{word-spacing:0.000000px;}
.ws1a{word-spacing:0.785455px;}
.ws1b{word-spacing:2.160002px;}
.ws18{word-spacing:3.534548px;}
.ws15{word-spacing:23.956384px;}
.ws13{word-spacing:24.021838px;}
.ws12{word-spacing:27.360023px;}
.ws16{word-spacing:28.734569px;}
.ws48{word-spacing:38.937210px;}
.ws67{word-spacing:38.937734px;}
.ws5e{word-spacing:38.937736px;}
.ws63{word-spacing:38.938828px;}
.ws64{word-spacing:38.939373px;}
.ws61{word-spacing:38.939920px;}
.ws66{word-spacing:38.940464px;}
.ws45{word-spacing:38.943210px;}
.ws46{word-spacing:38.999389px;}
.ws60{word-spacing:39.001010px;}
.ws5f{word-spacing:39.001558px;}
.ws65{word-spacing:39.002096px;}
.ws62{word-spacing:39.002101px;}
.ws38{word-spacing:39.002123px;}
.ws3f{word-spacing:39.002665px;}
.ws40{word-spacing:39.005389px;}
.ws8a{word-spacing:39.008123px;}
.ws43{word-spacing:1337.416228px;}
.ws4a{word-spacing:1337.417398px;}
.wsa2{word-spacing:1338.725398px;}
.ws4d{word-spacing:1338.791398px;}
.wsa3{word-spacing:1343.507398px;}
.wsa1{word-spacing:1345.337398px;}
.ws9d{word-spacing:1346.189398px;}
.ws9e{word-spacing:1346.387398px;}
.ws9f{word-spacing:1370.993398px;}
.wsa4{word-spacing:1372.307398px;}
.ws4b{word-spacing:1378.979398px;}
.ws2e{word-spacing:1418.056685px;}
.ws3a{word-spacing:1418.057777px;}
.ws36{word-spacing:1418.057783px;}
.ws32{word-spacing:1418.058317px;}
.ws33{word-spacing:1418.058863px;}
.ws3b{word-spacing:1418.058868px;}
.ws2c{word-spacing:1418.058869px;}
.ws31{word-spacing:1418.059411px;}
.ws3c{word-spacing:1418.059413px;}
.ws2f{word-spacing:1418.059415px;}
.ws3e{word-spacing:1418.119412px;}
.ws3d{word-spacing:1418.119955px;}
.ws37{word-spacing:1418.119963px;}
.ws35{word-spacing:1418.119968px;}
.ws2d{word-spacing:1418.120501px;}
.ws2b{word-spacing:1418.120508px;}
.ws34{word-spacing:1418.121587px;}
.ws39{word-spacing:1418.121594px;}
.ws30{word-spacing:1418.122141px;}
.wsd4{word-spacing:1458.245828px;}
.wsd0{word-spacing:1458.245893px;}
.wsd1{word-spacing:1458.246432px;}
.wsd3{word-spacing:1458.246978px;}
.wscd{word-spacing:1458.248618px;}
.ws103{word-spacing:1458.249709px;}
.ws109{word-spacing:1458.250743px;}
.wse6{word-spacing:1458.251267px;}
.ws102{word-spacing:1458.251347px;}
.ws104{word-spacing:1458.251892px;}
.wse7{word-spacing:1458.252356px;}
.ws10b{word-spacing:1458.252374px;}
.ws10c{word-spacing:1458.252379px;}
.wse2{word-spacing:1458.252381px;}
.wsdd{word-spacing:1458.252432px;}
.wsde{word-spacing:1458.252435px;}
.wse1{word-spacing:1458.252980px;}
.wscf{word-spacing:1458.308620px;}
.wsd9{word-spacing:1458.310168px;}
.wsd8{word-spacing:1458.310172px;}
.wsd7{word-spacing:1458.310181px;}
.wsd6{word-spacing:1458.310191px;}
.wsce{word-spacing:1458.310255px;}
.wsd5{word-spacing:1458.310744px;}
.wsd2{word-spacing:1458.310795px;}
.ws10a{word-spacing:1458.312376px;}
.ws107{word-spacing:1458.312439px;}
.ws108{word-spacing:1458.312979px;}
.wsdf{word-spacing:1458.312980px;}
.ws105{word-spacing:1458.313526px;}
.wsdb{word-spacing:1458.313531px;}
.ws10d{word-spacing:1458.313989px;}
.ws106{word-spacing:1458.314078px;}
.wse8{word-spacing:1458.314527px;}
.wse4{word-spacing:1458.314561px;}
.wse5{word-spacing:1458.314566px;}
.wse0{word-spacing:1458.315162px;}
.wsdc{word-spacing:1458.315166px;}
.wse3{word-spacing:1458.316191px;}
.wsda{word-spacing:1458.316795px;}
.wsb4{word-spacing:1460.343162px;}
.wsb6{word-spacing:1460.343707px;}
.wsbf{word-spacing:1460.344718px;}
.wsbe{word-spacing:1460.345267px;}
.wsb8{word-spacing:1460.345894px;}
.wsba{word-spacing:1460.405829px;}
.wsb9{word-spacing:1460.405894px;}
.wsb7{word-spacing:1460.406979px;}
.wsbc{word-spacing:1460.407445px;}
.wsbd{word-spacing:1460.408003px;}
.wsbb{word-spacing:1460.408025px;}
.wsb5{word-spacing:1460.410795px;}
.ws7e{word-spacing:1460.733162px;}
.ws84{word-spacing:1460.733631px;}
.ws86{word-spacing:1460.734164px;}
.ws88{word-spacing:1460.734168px;}
.ws7a{word-spacing:1460.734254px;}
.ws7c{word-spacing:1460.734255px;}
.ws7b{word-spacing:1460.734797px;}
.ws85{word-spacing:1460.735257px;}
.ws80{word-spacing:1460.795341px;}
.ws7f{word-spacing:1460.796432px;}
.ws87{word-spacing:1460.796889px;}
.ws83{word-spacing:1460.796904px;}
.ws79{word-spacing:1460.796979px;}
.ws81{word-spacing:1460.797525px;}
.ws82{word-spacing:1460.800191px;}
.ws7d{word-spacing:1460.800795px;}
.ws98{word-spacing:1461.190711px;}
.ws92{word-spacing:1461.190800px;}
.ws8c{word-spacing:1461.191887px;}
.ws93{word-spacing:1461.192356px;}
.wsb0{word-spacing:1461.192375px;}
.wsae{word-spacing:1461.192926px;}
.ws8e{word-spacing:1461.192978px;}
.wsaa{word-spacing:1461.194070px;}
.wsab{word-spacing:1461.195166px;}
.ws94{word-spacing:1461.252893px;}
.ws95{word-spacing:1461.252904px;}
.ws90{word-spacing:1461.252985px;}
.ws8b{word-spacing:1461.253525px;}
.ws96{word-spacing:1461.253988px;}
.ws99{word-spacing:1461.254527px;}
.ws91{word-spacing:1461.254621px;}
.ws97{word-spacing:1461.255080px;}
.ws8f{word-spacing:1461.255163px;}
.wsad{word-spacing:1461.255659px;}
.wsb2{word-spacing:1461.256165px;}
.wsaf{word-spacing:1461.256191px;}
.wsb3{word-spacing:1461.256682px;}
.ws8d{word-spacing:1461.256795px;}
.wsac{word-spacing:1461.256801px;}
.wsb1{word-spacing:1461.258889px;}
.wse9{word-spacing:1462.041712px;}
.wsee{word-spacing:1462.042742px;}
.wsed{word-spacing:1462.043828px;}
.wsf0{word-spacing:1462.044350px;}
.ws131{word-spacing:1462.044374px;}
.wsec{word-spacing:1462.044432px;}
.ws134{word-spacing:1462.045471px;}
.ws12d{word-spacing:1462.046070px;}
.ws12c{word-spacing:1462.046076px;}
.ws12f{word-spacing:1462.046558px;}
.ws132{word-spacing:1462.046566px;}
.wsc5{word-spacing:1462.046615px;}
.ws128{word-spacing:1462.047110px;}
.ws121{word-spacing:1462.047162px;}
.wsc0{word-spacing:1462.047712px;}
.ws12a{word-spacing:1462.048196px;}
.ws12b{word-spacing:1462.048199px;}
.wsc6{word-spacing:1462.048252px;}
.ws123{word-spacing:1462.048255px;}
.wsc2{word-spacing:1462.048800px;}
.wscb{word-spacing:1462.049257px;}
.ws120{word-spacing:1462.049347px;}
.ws124{word-spacing:1462.049348px;}
.wsf1{word-spacing:1462.104349px;}
.wsf2{word-spacing:1462.104896px;}
.wsea{word-spacing:1462.105526px;}
.wsf3{word-spacing:1462.105981px;}
.wsef{word-spacing:1462.105995px;}
.ws135{word-spacing:1462.107654px;}
.ws130{word-spacing:1462.108191px;}
.ws133{word-spacing:1462.108193px;}
.wseb{word-spacing:1462.108795px;}
.ws12e{word-spacing:1462.108797px;}
.ws127{word-spacing:1462.109290px;}
.wsc8{word-spacing:1462.109837px;}
.wsc1{word-spacing:1462.109887px;}
.ws125{word-spacing:1462.110439px;}
.wscc{word-spacing:1462.110889px;}
.wsca{word-spacing:1462.110893px;}
.wsc9{word-spacing:1462.110904px;}
.ws129{word-spacing:1462.110921px;}
.ws126{word-spacing:1462.110926px;}
.wsc4{word-spacing:1462.111525px;}
.ws122{word-spacing:1462.111526px;}
.wsc7{word-spacing:1462.114191px;}
.wsc3{word-spacing:1462.114795px;}
.wsfd{word-spacing:1464.530012px;}
.wsf5{word-spacing:1464.530071px;}
.wsfc{word-spacing:1464.532744px;}
.ws143{word-spacing:1464.533828px;}
.ws147{word-spacing:1464.534374px;}
.ws13e{word-spacing:1464.534432px;}
.ws13a{word-spacing:1464.534978px;}
.ws13c{word-spacing:1464.534984px;}
.ws13f{word-spacing:1464.535525px;}
.ws140{word-spacing:1464.536070px;}
.ws139{word-spacing:1464.536071px;}
.ws136{word-spacing:1464.536620px;}
.wsf4{word-spacing:1464.592795px;}
.ws100{word-spacing:1464.593838px;}
.wsf9{word-spacing:1464.593887px;}
.ws101{word-spacing:1464.594350px;}
.wsf8{word-spacing:1464.594432px;}
.wsf7{word-spacing:1464.594439px;}
.wsfe{word-spacing:1464.594926px;}
.wsfa{word-spacing:1464.594979px;}
.wsfb{word-spacing:1464.594980px;}
.wsf6{word-spacing:1464.594985px;}
.ws142{word-spacing:1464.596559px;}
.ws145{word-spacing:1464.596562px;}
.ws141{word-spacing:1464.597162px;}
.wsff{word-spacing:1464.598191px;}
.ws13d{word-spacing:1464.598255px;}
.ws146{word-spacing:1464.598738px;}
.ws144{word-spacing:1464.598744px;}
.ws13b{word-spacing:1464.598795px;}
.ws137{word-spacing:1464.598801px;}
.ws138{word-spacing:1464.598802px;}
.ws110{word-spacing:1467.803890px;}
.ws14f{word-spacing:1467.804374px;}
.ws117{word-spacing:1467.804432px;}
.ws118{word-spacing:1467.804435px;}
.ws111{word-spacing:1467.804439px;}
.ws14c{word-spacing:1467.804923px;}
.ws11e{word-spacing:1467.804925px;}
.ws11f{word-spacing:1467.804932px;}
.ws14b{word-spacing:1467.804984px;}
.ws11c{word-spacing:1467.805475px;}
.ws10f{word-spacing:1467.805526px;}
.ws14a{word-spacing:1467.805531px;}
.ws11a{word-spacing:1467.806012px;}
.ws114{word-spacing:1467.806071px;}
.ws116{word-spacing:1467.806076px;}
.ws14e{word-spacing:1467.806559px;}
.ws119{word-spacing:1467.806563px;}
.ws10e{word-spacing:1467.806618px;}
.ws11d{word-spacing:1467.866569px;}
.ws112{word-spacing:1467.866617px;}
.ws149{word-spacing:1467.867166px;}
.ws115{word-spacing:1467.867711px;}
.ws11b{word-spacing:1467.868191px;}
.ws152{word-spacing:1467.868714px;}
.ws151{word-spacing:1467.868726px;}
.ws150{word-spacing:1467.868738px;}
.ws113{word-spacing:1467.868795px;}
.ws14d{word-spacing:1467.869283px;}
.ws148{word-spacing:1467.869344px;}
.ws5c{word-spacing:1468.455620px;}
.ws58{word-spacing:1468.455628px;}
.ws51{word-spacing:1468.456225px;}
.ws55{word-spacing:1468.456226px;}
.ws52{word-spacing:1468.457320px;}
.ws57{word-spacing:1468.457803px;}
.ws5a{word-spacing:1468.457806px;}
.ws54{word-spacing:1468.458412px;}
.ws78{word-spacing:1468.460527px;}
.ws73{word-spacing:1468.460535px;}
.ws6f{word-spacing:1468.460621px;}
.ws75{word-spacing:1468.461079px;}
.ws70{word-spacing:1468.461166px;}
.ws76{word-spacing:1468.462165px;}
.ws71{word-spacing:1468.462800px;}
.ws59{word-spacing:1468.518349px;}
.ws5d{word-spacing:1468.519964px;}
.ws5b{word-spacing:1468.519988px;}
.ws53{word-spacing:1468.520042px;}
.ws56{word-spacing:1468.520048px;}
.ws6b{word-spacing:1468.523341px;}
.ws74{word-spacing:1468.523806px;}
.ws77{word-spacing:1468.524346px;}
.ws6c{word-spacing:1468.524433px;}
.ws72{word-spacing:1468.524889px;}
.ws6d{word-spacing:1468.524979px;}
.ws69{word-spacing:1468.525525px;}
.ws6a{word-spacing:1468.525529px;}
.ws6e{word-spacing:1468.525532px;}
.ws68{word-spacing:1468.528795px;}
._10{margin-left:-32.792755px;}
._1a{margin-left:-31.779587px;}
._0{margin-left:-28.674477px;}
._e9{margin-left:-9.673859px;}
._b{margin-left:-7.738870px;}
._a{margin-left:-6.061272px;}
._1{margin-left:-4.214208px;}
._9{margin-left:-3.076366px;}
._2{margin-left:-1.793280px;}
._3{width:1.799275px;}
._8{width:2.971463px;}
._79{width:4.016952px;}
._6{width:11.807834px;}
._7{width:14.426018px;}
._4{width:16.480224px;}
._5{width:18.837482px;}
._20{width:20.177923px;}
._15{width:22.576587px;}
._14{width:24.715196px;}
._19{width:25.994382px;}
._17{width:28.283493px;}
._11{width:30.243304px;}
._1c{width:31.823741px;}
._1b{width:33.955037px;}
._12{width:35.346140px;}
._16{width:38.299847px;}
._1d{width:40.827620px;}
._1f{width:42.433087px;}
._25{width:44.648643px;}
._23{width:48.840737px;}
._22{width:50.327087px;}
._1e{width:52.377686px;}
._18{width:55.260538px;}
._13{width:56.698739px;}
._21{width:59.094554px;}
._d{width:62.312779px;}
._f{width:64.180420px;}
._71{width:110.397799px;}
._d3{width:170.148455px;}
._47{width:171.780455px;}
._ca{width:173.094455px;}
._c4{width:175.050455px;}
._5e{width:176.364455px;}
._2e{width:187.296455px;}
._b1{width:189.648455px;}
._d1{width:191.146819px;}
._44{width:192.778819px;}
._36{width:193.902455px;}
._3c{width:194.958455px;}
._c2{width:196.048819px;}
._5b{width:197.362819px;}
._e8{width:198.882455px;}
._53{width:201.168455px;}
._64{width:202.806455px;}
._bc{width:204.048455px;}
._a9{width:205.356455px;}
._2b{width:208.294819px;}
._7f{width:209.695495px;}
._de{width:213.598819px;}
._33{width:214.900819px;}
._3a{width:215.956819px;}
._e4{width:217.396819px;}
._45{width:218.666840px;}
._e7{width:219.880819px;}
._50{width:222.166819px;}
._5c{width:223.250840px;}
._b8{width:225.046819px;}
._a6{width:226.354819px;}
._2c{width:232.383565px;}
._af{width:236.534840px;}
._e2{width:237.681565px;}
._34{width:238.989565px;}
._3b{width:240.561754px;}
._e5{width:242.001754px;}
._8e{width:243.315565px;}
._ab{width:245.174840px;}
._51{width:248.054840px;}
._b9{width:250.934840px;}
._a7{width:252.242840px;}
._d2{width:434.009391px;}
._46{width:435.968664px;}
._c3{width:439.238664px;}
._5d{width:440.552664px;}
._73{width:442.639821px;}
._2d{width:451.484664px;}
._b0{width:453.836664px;}
._df{width:456.461391px;}
._35{width:458.090664px;}
._9c{width:459.731391px;}
._d4{width:460.847391px;}
._8f{width:462.089391px;}
._b3{width:464.117391px;}
._52{width:465.356664px;}
._63{width:466.667391px;}
._bb{width:468.236664px;}
._a8{width:469.544664px;}
._6b{width:529.376315px;}
._d0{width:625.542994px;}
._43{width:627.305903px;}
._c9{width:628.488994px;}
._c1{width:630.575903px;}
._5a{width:631.889903px;}
._2a{width:642.821903px;}
._ae{width:645.173903px;}
._dd{width:647.994994px;}
._32{width:649.427903px;}
._9b{width:651.264994px;}
._98{width:652.439903px;}
._8d{width:653.622994px;}
._4f{width:656.693903px;}
._62{width:658.200994px;}
._b7{width:659.573903px;}
._a5{width:660.881903px;}
._4b{width:683.621749px;}
._48{width:685.323080px;}
._6c{width:706.520485px;}
._4a{width:732.255716px;}
._3f{width:751.137754px;}
._9d{width:752.978818px;}
._90{width:754.772098px;}
._67{width:757.848464px;}
._87{width:772.972819px;}
._e3{width:781.804848px;}
._69{width:784.231776px;}
._ea{width:786.019056px;}
._bd{width:787.302142px;}
._e6{width:790.378508px;}
._88{width:797.577754px;}
._49{width:808.183517px;}
._56{width:810.146690px;}
._94{width:813.484874px;}
._26{width:816.692150px;}
._cf{width:914.551058px;}
._42{width:916.248513px;}
._c8{width:917.497058px;}
._a0{width:919.560775px;}
._59{width:920.832513px;}
._d7{width:921.971851px;}
._bf{width:923.933851px;}
._cd{width:927.203851px;}
._38{width:928.658965px;}
._29{width:931.764513px;}
._a1{width:933.242965px;}
._dc{width:937.003058px;}
._31{width:938.370513px;}
._9a{width:940.273058px;}
._97{width:941.382513px;}
._8c{width:942.631058px;}
._4e{width:945.636513px;}
._61{width:947.209058px;}
._b6{width:948.516513px;}
._a4{width:949.824513px;}
._c7{width:951.049866px;}
._cb{width:953.136775px;}
._58{width:954.450775px;}
._aa{width:956.084965px;}
._c5{width:970.157181px;}
._a2{width:972.776965px;}
._9f{width:974.347866px;}
._96{width:976.308775px;}
._be{width:978.209181px;}
._6a{width:980.761866px;}
._d6{width:982.919181px;}
._92{width:984.823866px;}
._54{width:988.355192px;}
._ac{width:992.540965px;}
._b2{width:994.508965px;}
._b4{width:997.844965px;}
._55{width:1012.896304px;}
._89{width:1015.835391px;}
._41{width:1019.640775px;}
._28{width:1035.156775px;}
._db{width:1040.329866px;}
._30{width:1041.762775px;}
._99{width:1043.599866px;}
._8b{width:1045.957866px;}
._4d{width:1049.028775px;}
._60{width:1050.535866px;}
._ce{width:1124.921251px;}
._40{width:1126.618705px;}
._c6{width:1127.926705px;}
._c0{width:1129.888705px;}
._57{width:1131.202705px;}
._27{width:1142.069251px;}
._ad{width:1144.486705px;}
._da{width:1147.373251px;}
._2f{width:1148.675251px;}
._39{width:1149.731251px;}
._95{width:1151.752705px;}
._8a{width:1152.935796px;}
._4c{width:1156.006705px;}
._5f{width:1157.513796px;}
._b5{width:1158.886705px;}
._a3{width:1160.194705px;}
._82{width:1200.296675px;}
._86{width:1207.368994px;}
._6d{width:1291.698430px;}
._81{width:1325.554591px;}
._72{width:1381.609742px;}
._77{width:1384.420988px;}
._7d{width:1411.085924px;}
._7a{width:1438.944724px;}
._6f{width:1452.128168px;}
._80{width:1454.942167px;}
._7b{width:1467.050753px;}
._7c{width:1477.576351px;}
._74{width:1484.681684px;}
._e0{width:1490.289977px;}
._d8{width:1492.031942px;}
._3d{width:1493.079403px;}
._3e{width:1494.180185px;}
._85{width:1496.377058px;}
._91{width:1497.598504px;}
._66{width:1500.522185px;}
._65{width:1501.756675px;}
._7e{width:1526.406096px;}
._84{width:1533.985866px;}
._c{width:1542.811481px;}
._76{width:1574.936625px;}
._6e{width:1583.864454px;}
._75{width:1615.924390px;}
._78{width:1619.788843px;}
._70{width:1656.126335px;}
._83{width:1706.681796px;}
._d5{width:1756.503446px;}
._d9{width:1759.911446px;}
._e1{width:1761.285446px;}
._93{width:1762.659446px;}
._ba{width:1766.061446px;}
._cc{width:1767.435446px;}
._9e{width:1768.809446px;}
._24{width:1789.233446px;}
._37{width:1792.635446px;}
._68{width:1794.009446px;}
._e{width:1805.442202px;}
.fc5{color:rgb(10,146,141);}
.fc4{color:rgb(79,117,144);}
.fc3{color:rgb(161,49,87);}
.fc2{color:rgb(77,198,244);}
.fc1{color:rgb(16,106,175);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsa{font-size:65.454600px;}
.fs9{font-size:65.753400px;}
.fsd{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsc{font-size:86.077200px;}
.fs7{font-size:89.664000px;}
.fs2{font-size:102.000000px;}
.fs6{font-size:125.529000px;}
.fsb{font-size:148.722600px;}
.fs8{font-size:191.282400px;}
.fs5{font-size:735.243000px;}
.y0{bottom:0.000000px;}
.y95{bottom:61.507500px;}
.y80{bottom:61.507523px;}
.y5{bottom:66.525004px;}
.y48{bottom:67.196167px;}
.y4{bottom:97.125005px;}
.y47{bottom:107.843167px;}
.y1a1{bottom:127.669500px;}
.y46{bottom:128.166667px;}
.y13f{bottom:130.542000px;}
.y179{bottom:134.301000px;}
.y104{bottom:137.173500px;}
.y20{bottom:139.264499px;}
.y1c6{bottom:141.360000px;}
.y185{bottom:143.806500px;}
.ye9{bottom:145.552500px;}
.y1a5{bottom:146.679000px;}
.y7f{bottom:147.505505px;}
.y4e{bottom:147.883522px;}
.y1a0{bottom:147.993000px;}
.y45{bottom:148.490167px;}
.y13e{bottom:150.865500px;}
.y27{bottom:154.584000px;}
.y178{bottom:154.626000px;}
.y103{bottom:157.498500px;}
.y1c5{bottom:161.683500px;}
.y157{bottom:164.130000px;}
.ybf{bottom:164.361000px;}
.y141{bottom:167.002500px;}
.y7e{bottom:167.830505px;}
.y19f{bottom:168.316500px;}
.y44{bottom:168.813667px;}
.y13d{bottom:171.189000px;}
.y177{bottom:174.949500px;}
.y102{bottom:177.822000px;}
.y1c4{bottom:182.007000px;}
.y156{bottom:184.455000px;}
.ybe{bottom:184.684500px;}
.y14a{bottom:187.327500px;}
.y7d{bottom:188.154005px;}
.y19e{bottom:188.640000px;}
.y43{bottom:189.138667px;}
.y13c{bottom:191.512500px;}
.y176{bottom:195.273000px;}
.y17{bottom:196.933500px;}
.y101{bottom:198.145500px;}
.y1c3{bottom:202.332000px;}
.y155{bottom:204.778500px;}
.ybd{bottom:205.008000px;}
.y7c{bottom:208.477505px;}
.y19d{bottom:208.963500px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.ye8{bottom:209.877000px;}
.y13b{bottom:211.836000px;}
.y175{bottom:215.596500px;}
.y100{bottom:218.469000px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y1c2{bottom:222.655500px;}
.y154{bottom:225.102000px;}
.ybc{bottom:225.331500px;}
.y17e{bottom:227.974500px;}
.y7b{bottom:228.801005px;}
.y42{bottom:229.160167px;}
.y19c{bottom:229.288500px;}
.ye7{bottom:230.200500px;}
.y13a{bottom:232.161000px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y174{bottom:235.920000px;}
.yff{bottom:238.792500px;}
.y1c1{bottom:242.979000px;}
.y153{bottom:245.425500px;}
.ybb{bottom:245.655000px;}
.y7a{bottom:249.124505px;}
.y19b{bottom:249.612000px;}
.ye6{bottom:250.525500px;}
.y139{bottom:252.484500px;}
.y173{bottom:256.245000px;}
.y124{bottom:259.116000px;}
.yfe{bottom:259.117500px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y1c0{bottom:263.302500px;}
.y152{bottom:265.749000px;}
.yba{bottom:265.980000px;}
.y79{bottom:269.449505px;}
.y41{bottom:269.826067px;}
.y19a{bottom:269.935500px;}
.ye5{bottom:270.849000px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y138{bottom:272.808000px;}
.y184{bottom:275.254500px;}
.yfd{bottom:279.441000px;}
.y26{bottom:282.561000px;}
.y1bf{bottom:283.626000px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y151{bottom:286.072500px;}
.yb9{bottom:286.303500px;}
.y12c{bottom:288.945000px;}
.y78{bottom:289.773005px;}
.y40{bottom:290.149567px;}
.y199{bottom:290.259000px;}
.ye4{bottom:291.172500px;}
.y137{bottom:293.131500px;}
.yfc{bottom:299.764500px;}
.y1be{bottom:303.951000px;}
.y150{bottom:306.397500px;}
.yb8{bottom:306.627000px;}
.y77{bottom:310.096505px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.ye3{bottom:311.496000px;}
.y136{bottom:313.455000px;}
.y123{bottom:320.088000px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y1bd{bottom:324.274500px;}
.y14f{bottom:326.721000px;}
.yb7{bottom:326.950500px;}
.y17c{bottom:329.593500px;}
.y25{bottom:330.381000px;}
.y76{bottom:330.420005px;}
.ye2{bottom:331.819500px;}
.y135{bottom:333.778500px;}
.y122{bottom:340.411500px;}
.y1bc{bottom:344.598000px;}
.ye{bottom:348.133500px;}
.yfb{bottom:349.917000px;}
.y75{bottom:350.743505px;}
.ye1{bottom:352.144500px;}
.y12b{bottom:354.103500px;}
.y121{bottom:360.735000px;}
.y1bb{bottom:364.921500px;}
.y74{bottom:371.068505px;}
.y172{bottom:371.554500px;}
.ye0{bottom:372.468000px;}
.y12a{bottom:374.427000px;}
.y14e{bottom:376.873500px;}
.yb6{bottom:377.103000px;}
.y24{bottom:378.201000px;}
.y120{bottom:381.060000px;}
.yd{bottom:386.785499px;}
.y73{bottom:391.392005px;}
.y171{bottom:391.878000px;}
.ydf{bottom:392.791500px;}
.y129{bottom:394.750500px;}
.y11f{bottom:401.383500px;}
.y198{bottom:405.568500px;}
.yc{bottom:408.044999px;}
.y72{bottom:411.715505px;}
.y170{bottom:412.201500px;}
.yde{bottom:413.115000px;}
.yfa{bottom:415.074000px;}
.y11e{bottom:421.707000px;}
.y197{bottom:425.893500px;}
.y71{bottom:432.039005px;}
.y16f{bottom:432.525000px;}
.ydd{bottom:433.438500px;}
.yf9{bottom:435.397500px;}
.y11d{bottom:442.030500px;}
.yb5{bottom:442.260000px;}
.y196{bottom:446.217000px;}
.y3f{bottom:450.207022px;}
.y180{bottom:451.536000px;}
.y70{bottom:452.362505px;}
.y16e{bottom:452.850000px;}
.ydc{bottom:453.762000px;}
.yf8{bottom:455.722500px;}
.y11c{bottom:462.354000px;}
.yb4{bottom:462.585000px;}
.y149{bottom:465.226500px;}
.y195{bottom:466.540500px;}
.y3e{bottom:470.530522px;}
.y6f{bottom:472.686005px;}
.y16d{bottom:473.173500px;}
.ydb{bottom:474.087000px;}
.yf7{bottom:476.046000px;}
.y1ba{bottom:480.231000px;}
.y11b{bottom:482.677500px;}
.y14d{bottom:482.679000px;}
.yb3{bottom:482.908500px;}
.y194{bottom:486.864000px;}
.y3d{bottom:490.855522px;}
.y186{bottom:492.183000px;}
.y6e{bottom:493.011005px;}
.y16c{bottom:493.497000px;}
.yda{bottom:494.410500px;}
.yf6{bottom:496.369500px;}
.y1b9{bottom:500.556000px;}
.y11a{bottom:503.002500px;}
.yb2{bottom:503.232000px;}
.y193{bottom:507.187500px;}
.y6d{bottom:513.334505px;}
.y16b{bottom:513.820500px;}
.yd9{bottom:514.734000px;}
.yf5{bottom:516.693000px;}
.yb{bottom:520.864502px;}
.y1b8{bottom:520.879500px;}
.y119{bottom:523.326000px;}
.yb1{bottom:523.555500px;}
.y1a9{bottom:526.198500px;}
.y192{bottom:527.512500px;}
.y148{bottom:530.383500px;}
.y6c{bottom:533.658005px;}
.y16a{bottom:534.144000px;}
.yd8{bottom:535.057500px;}
.yf4{bottom:537.016500px;}
.ya{bottom:538.864499px;}
.y1b7{bottom:541.203000px;}
.y118{bottom:543.649500px;}
.yb0{bottom:543.879000px;}
.y191{bottom:547.836000px;}
.y147{bottom:550.708500px;}
.y6b{bottom:553.981505px;}
.yd7{bottom:555.381000px;}
.y9{bottom:556.864499px;}
.yf3{bottom:557.340000px;}
.y1b6{bottom:561.526500px;}
.y117{bottom:563.973000px;}
.yaf{bottom:564.204000px;}
.y190{bottom:568.159500px;}
.y146{bottom:571.032000px;}
.y1a3{bottom:573.478500px;}
.y6a{bottom:574.305005px;}
.yd6{bottom:575.706000px;}
.y3c{bottom:575.826022px;}
.yf2{bottom:577.665000px;}
.y1b5{bottom:581.850000px;}
.y116{bottom:584.296500px;}
.yae{bottom:584.527500px;}
.y134{bottom:587.169000px;}
.y18f{bottom:588.483000px;}
.y145{bottom:591.355500px;}
.y69{bottom:594.630005px;}
.yd5{bottom:596.029500px;}
.y3b{bottom:596.149522px;}
.yf1{bottom:597.988500px;}
.y1b4{bottom:602.173500px;}
.y115{bottom:604.621500px;}
.yad{bottom:604.851000px;}
.y18e{bottom:608.806500px;}
.y144{bottom:611.679000px;}
.y68{bottom:614.953505px;}
.yd4{bottom:616.353000px;}
.y3a{bottom:616.474522px;}
.yf0{bottom:618.312000px;}
.y1b3{bottom:622.498500px;}
.y114{bottom:624.945000px;}
.yac{bottom:625.174500px;}
.y17d{bottom:627.817500px;}
.y18d{bottom:629.130000px;}
.y143{bottom:632.002500px;}
.y67{bottom:635.277005px;}
.yd3{bottom:636.676500px;}
.y39{bottom:636.798022px;}
.yef{bottom:638.635500px;}
.y1b2{bottom:642.822000px;}
.y113{bottom:645.268500px;}
.yab{bottom:645.498000px;}
.y8{bottom:645.510000px;}
.y1a7{bottom:648.141000px;}
.y169{bottom:649.455000px;}
.y133{bottom:652.327500px;}
.y14c{bottom:654.774000px;}
.y66{bottom:655.600505px;}
.yd2{bottom:657.000000px;}
.y38{bottom:657.121522px;}
.yee{bottom:658.959000px;}
.y1b1{bottom:663.145500px;}
.y112{bottom:665.592000px;}
.yaa{bottom:665.821500px;}
.y7{bottom:666.771000px;}
.y168{bottom:669.778500px;}
.y132{bottom:672.651000px;}
.y183{bottom:675.097500px;}
.y65{bottom:675.924005px;}
.yd1{bottom:677.323500px;}
.y37{bottom:677.445022px;}
.yed{bottom:679.284000px;}
.y1b0{bottom:683.469000px;}
.ya9{bottom:686.146500px;}
.y167{bottom:690.102000px;}
.y131{bottom:692.974500px;}
.y64{bottom:696.249004px;}
.yd0{bottom:697.648500px;}
.y36{bottom:697.768522px;}
.yec{bottom:699.607500px;}
.y1af{bottom:703.792500px;}
.ya8{bottom:706.470000px;}
.y1c7{bottom:709.111500px;}
.y166{bottom:710.425500px;}
.y130{bottom:713.298000px;}
.y111{bottom:715.744500px;}
.y4d{bottom:716.395522px;}
.y63{bottom:716.572504px;}
.ycf{bottom:717.972000px;}
.y35{bottom:718.093522px;}
.y128{bottom:719.931000px;}
.y1ae{bottom:724.117500px;}
.y6{bottom:726.298500px;}
.ya7{bottom:726.793500px;}
.y165{bottom:730.749000px;}
.y12f{bottom:733.621500px;}
.y62{bottom:736.896004px;}
.yce{bottom:738.295500px;}
.y127{bottom:740.254500px;}
.y1ad{bottom:744.441000px;}
.ya6{bottom:747.117000px;}
.yeb{bottom:749.760000px;}
.y164{bottom:751.074000px;}
.y3{bottom:752.599495px;}
.y142{bottom:753.945000px;}
.y12e{bottom:753.946500px;}
.y4c{bottom:757.042522px;}
.y61{bottom:757.219504px;}
.ycd{bottom:758.619000px;}
.y126{bottom:760.578000px;}
.y1ac{bottom:764.764500px;}
.ya5{bottom:767.440500px;}
.y1a6{bottom:770.083500px;}
.y163{bottom:771.397500px;}
.y94{bottom:774.268500px;}
.y12d{bottom:774.270000px;}
.y60{bottom:777.543004px;}
.ycc{bottom:778.942500px;}
.y110{bottom:780.901500px;}
.y1ab{bottom:785.088000px;}
.ya4{bottom:787.765500px;}
.y162{bottom:791.721000px;}
.y93{bottom:794.593500px;}
.y5f{bottom:797.868004px;}
.ycb{bottom:799.267500px;}
.y10f{bottom:801.226500px;}
.y18c{bottom:805.411500px;}
.ya3{bottom:808.089000px;}
.y161{bottom:812.044500px;}
.y34{bottom:814.896646px;}
.y92{bottom:814.917000px;}
.y4b{bottom:818.014522px;}
.y5e{bottom:818.191504px;}
.yca{bottom:819.591000px;}
.y10e{bottom:821.550000px;}
.y18b{bottom:825.735000px;}
.ya2{bottom:828.412500px;}
.y1aa{bottom:831.055500px;}
.y91{bottom:835.240500px;}
.y5d{bottom:838.515005px;}
.y10d{bottom:841.873500px;}
.y18a{bottom:846.060000px;}
.ya1{bottom:848.736000px;}
.y17f{bottom:851.379000px;}
.y33{bottom:855.545146px;}
.y90{bottom:855.564000px;}
.y5c{bottom:858.838504px;}
.y10c{bottom:862.197000px;}
.y4a{bottom:862.845022px;}
.y189{bottom:866.383500px;}
.yc9{bottom:866.386500px;}
.y23{bottom:868.360500px;}
.ya0{bottom:869.059500px;}
.y1a4{bottom:871.702500px;}
.y32{bottom:875.870146px;}
.y8f{bottom:875.887500px;}
.yea{bottom:875.889000px;}
.y5b{bottom:879.162004px;}
.y2{bottom:879.369000px;}
.y10b{bottom:882.520500px;}
.y188{bottom:886.707000px;}
.y9f{bottom:889.383000px;}
.y140{bottom:892.026000px;}
.y31{bottom:896.193646px;}
.y8e{bottom:896.212500px;}
.y5a{bottom:899.487005px;}
.y10a{bottom:902.845500px;}
.y187{bottom:907.030500px;}
.y9e{bottom:909.708000px;}
.y30{bottom:916.517146px;}
.y8d{bottom:916.536000px;}
.y59{bottom:919.810504px;}
.y109{bottom:923.169000px;}
.y160{bottom:927.354000px;}
.y9d{bottom:930.031500px;}
.yc8{bottom:930.711000px;}
.y14b{bottom:932.673000px;}
.y2f{bottom:936.840646px;}
.y8c{bottom:936.859500px;}
.y58{bottom:940.134004px;}
.y108{bottom:943.492500px;}
.y15f{bottom:947.679000px;}
.y9c{bottom:950.355000px;}
.yc7{bottom:951.034500px;}
.y1a8{bottom:952.998000px;}
.y2e{bottom:957.164146px;}
.y8b{bottom:957.183000px;}
.y57{bottom:960.457505px;}
.y107{bottom:963.816000px;}
.y1{bottom:966.726000px;}
.y15e{bottom:968.002500px;}
.y9b{bottom:970.678500px;}
.yc6{bottom:971.359500px;}
.y1a2{bottom:973.321500px;}
.y2d{bottom:977.489146px;}
.y8a{bottom:977.506500px;}
.y56{bottom:980.781004px;}
.y106{bottom:984.139500px;}
.y15d{bottom:988.326000px;}
.y9a{bottom:991.002000px;}
.yc5{bottom:991.683000px;}
.y89{bottom:997.831500px;}
.y55{bottom:1001.106005px;}
.y17b{bottom:1004.463000px;}
.y21{bottom:1006.609500px;}
.y15c{bottom:1008.649500px;}
.y99{bottom:1011.327000px;}
.yc4{bottom:1012.006500px;}
.y125{bottom:1013.968500px;}
.y22{bottom:1015.113000px;}
.y88{bottom:1018.155000px;}
.y2c{bottom:1018.155046px;}
.y54{bottom:1021.429505px;}
.y182{bottom:1024.788000px;}
.y15b{bottom:1028.973000px;}
.y98{bottom:1031.650500px;}
.yc3{bottom:1032.330000px;}
.y105{bottom:1034.292000px;}
.y87{bottom:1038.478500px;}
.y2b{bottom:1038.478546px;}
.y53{bottom:1041.753005px;}
.y15a{bottom:1049.296500px;}
.y97{bottom:1051.974000px;}
.yc2{bottom:1052.653500px;}
.y17a{bottom:1054.617000px;}
.y86{bottom:1058.802000px;}
.y52{bottom:1062.076505px;}
.y159{bottom:1069.621500px;}
.yc1{bottom:1072.977000px;}
.y181{bottom:1074.940500px;}
.y85{bottom:1079.125500px;}
.y51{bottom:1082.400005px;}
.y158{bottom:1089.945000px;}
.yc0{bottom:1093.302000px;}
.y2a{bottom:1099.431604px;}
.y84{bottom:1099.450500px;}
.y96{bottom:1102.126500px;}
.y50{bottom:1102.725005px;}
.y83{bottom:1119.774000px;}
.y29{bottom:1119.774004px;}
.y49{bottom:1120.276519px;}
.y82{bottom:1140.097500px;}
.y28{bottom:1140.097504px;}
.y81{bottom:1193.145000px;}
.y4f{bottom:1193.145022px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h12{height:47.454585px;}
.he{height:47.716403px;}
.h15{height:47.722403px;}
.hd{height:47.934229px;}
.h3{height:48.195000px;}
.h10{height:48.240040px;}
.h13{height:48.370949px;}
.h14{height:52.292045px;}
.h2{height:55.080000px;}
.h11{height:62.405970px;}
.hb{height:65.006400px;}
.h5{height:78.030000px;}
.ha{height:91.008525px;}
.hf{height:107.823885px;}
.h4{height:119.055004px;}
.hc{height:138.679740px;}
.h9{height:489.671838px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:85.039500px;}
.x8{left:87.165000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:133.938000px;}
.xe{left:142.905000px;}
.xd{left:144.378000px;}
.xc{left:146.358000px;}
.xf{left:147.994500px;}
.x1a{left:149.106000px;}
.x1c{left:150.285000px;}
.x1b{left:151.332000px;}
.x2c{left:153.328500px;}
.x2e{left:154.638000px;}
.xb{left:158.484000px;}
.x2a{left:159.972000px;}
.x29{left:161.755500px;}
.x28{left:163.278000px;}
.x12{left:164.914500px;}
.x17{left:166.615500px;}
.x18{left:167.842500px;}
.x1e{left:169.069500px;}
.x1f{left:171.148500px;}
.x20{left:172.228500px;}
.x2f{left:174.912000px;}
.x26{left:176.745000px;}
.x27{left:179.149500px;}
.x2d{left:181.572000px;}
.x24{left:183.142500px;}
.x22{left:184.615500px;}
.x21{left:185.712000px;}
.x1d{left:189.508500px;}
.x19{left:190.605000px;}
.x2b{left:192.289500px;}
.x11{left:193.338000px;}
.x10{left:194.434500px;}
.x4{left:203.484001px;}
.x16{left:275.122500px;}
.x13{left:277.102500px;}
.x14{left:278.199000px;}
.xa{left:417.351013px;}
.x3{left:454.959000px;}
.x5{left:495.478500px;}
.x23{left:643.186500px;}
.x15{left:644.593500px;}
.x25{left:645.919500px;}
.x6{left:832.947000px;}
@media print{
.v1{vertical-align:-4.656000pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:29.090933pt;}
.ls2{letter-spacing:63.762398pt;}
.ls7{letter-spacing:1123.133065pt;}
.ls12{letter-spacing:1123.714398pt;}
.lse{letter-spacing:1123.949065pt;}
.lsd{letter-spacing:1124.413065pt;}
.ls1a{letter-spacing:1124.530398pt;}
.ls6{letter-spacing:1124.818398pt;}
.ls28{letter-spacing:1125.399732pt;}
.ls8{letter-spacing:1125.693065pt;}
.ls26{letter-spacing:1125.986398pt;}
.ls22{letter-spacing:1126.039732pt;}
.ls23{letter-spacing:1127.437065pt;}
.ls1e{letter-spacing:1127.613065pt;}
.ls13{letter-spacing:1128.135732pt;}
.ls4{letter-spacing:1129.010398pt;}
.ls21{letter-spacing:1130.349065pt;}
.ls5{letter-spacing:1131.101065pt;}
.ls27{letter-spacing:1133.138398pt;}
.ls25{letter-spacing:1135.639732pt;}
.ls1b{letter-spacing:1149.490398pt;}
.ls29{letter-spacing:1151.175732pt;}
.ls10{letter-spacing:1151.234398pt;}
.ls2b{letter-spacing:1151.527732pt;}
.ls15{letter-spacing:1152.455732pt;}
.ls2a{letter-spacing:1152.749065pt;}
.ls2d{letter-spacing:1153.970398pt;}
.ls9{letter-spacing:1154.146398pt;}
.ls1d{letter-spacing:1154.839732pt;}
.ls20{letter-spacing:1155.309065pt;}
.ls11{letter-spacing:1155.655732pt;}
.lsa{letter-spacing:1155.890398pt;}
.ls1c{letter-spacing:1157.927732pt;}
.ls1f{letter-spacing:1158.215732pt;}
.lsf{letter-spacing:1158.274398pt;}
.lsb{letter-spacing:1158.509065pt;}
.ls24{letter-spacing:1160.018398pt;}
.lsc{letter-spacing:1162.637065pt;}
.ls14{letter-spacing:1162.754398pt;}
.ls2e{letter-spacing:1172.471732pt;}
.ls2f{letter-spacing:1175.378398pt;}
.ls30{letter-spacing:1176.546398pt;}
.ls18{letter-spacing:1176.834398pt;}
.ls2c{letter-spacing:1179.629065pt;}
.ls16{letter-spacing:1180.615732pt;}
.ls17{letter-spacing:1180.733065pt;}
.ls19{letter-spacing:1181.954398pt;}
.ls3{letter-spacing:1275.853065pt;}
.ws1{word-spacing:-379.712163pt;}
.ws3{word-spacing:-56.619590pt;}
.ws4{word-spacing:-56.109504pt;}
.wsf{word-spacing:-33.181665pt;}
.wse{word-spacing:-33.049467pt;}
.wsb{word-spacing:-29.090933pt;}
.ws2{word-spacing:-19.925333pt;}
.ws19{word-spacing:-19.781835pt;}
.ws11{word-spacing:-19.316380pt;}
.ws14{word-spacing:-19.258198pt;}
.ws28{word-spacing:-19.128267pt;}
.ws7{word-spacing:-17.163651pt;}
.ws1e{word-spacing:-16.930923pt;}
.ws10{word-spacing:-16.872741pt;}
.ws9a{word-spacing:-16.005692pt;}
.ws41{word-spacing:-16.005086pt;}
.wsa9{word-spacing:-16.005009pt;}
.wsa8{word-spacing:-16.004292pt;}
.ws2a{word-spacing:-16.004028pt;}
.ws9b{word-spacing:-16.003550pt;}
.wsa6{word-spacing:-16.003413pt;}
.wsa0{word-spacing:-16.001954pt;}
.wsa7{word-spacing:-16.001271pt;}
.ws9c{word-spacing:-16.001237pt;}
.ws50{word-spacing:-15.940898pt;}
.ws4c{word-spacing:-15.940779pt;}
.ws4e{word-spacing:-15.940284pt;}
.ws42{word-spacing:-15.940267pt;}
.ws89{word-spacing:-15.940241pt;}
.ws4f{word-spacing:-15.939977pt;}
.ws49{word-spacing:-15.939558pt;}
.ws29{word-spacing:-15.938799pt;}
.ws44{word-spacing:-15.938569pt;}
.ws47{word-spacing:-15.938406pt;}
.wsa5{word-spacing:-15.937963pt;}
.wsd{word-spacing:-15.185467pt;}
.ws9{word-spacing:-15.127285pt;}
.ws5{word-spacing:-14.670314pt;}
.ws8{word-spacing:-14.603649pt;}
.wsa{word-spacing:-14.545467pt;}
.wsc{word-spacing:-14.487285pt;}
.ws6{word-spacing:-13.265466pt;}
.ws1c{word-spacing:-7.796370pt;}
.ws1f{word-spacing:-7.746416pt;}
.ws23{word-spacing:-7.744816pt;}
.ws22{word-spacing:-7.742016pt;}
.ws27{word-spacing:-7.740416pt;}
.ws1d{word-spacing:-4.770913pt;}
.ws25{word-spacing:-4.715483pt;}
.ws20{word-spacing:-3.495749pt;}
.ws21{word-spacing:-3.491349pt;}
.ws26{word-spacing:-3.489749pt;}
.ws17{word-spacing:-2.327275pt;}
.ws24{word-spacing:-2.272816pt;}
.ws0{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.698182pt;}
.ws1b{word-spacing:1.920002pt;}
.ws18{word-spacing:3.141821pt;}
.ws15{word-spacing:21.294563pt;}
.ws13{word-spacing:21.352745pt;}
.ws12{word-spacing:24.320020pt;}
.ws16{word-spacing:25.541839pt;}
.ws48{word-spacing:34.610853pt;}
.ws67{word-spacing:34.611319pt;}
.ws5e{word-spacing:34.611321pt;}
.ws63{word-spacing:34.612292pt;}
.ws64{word-spacing:34.612776pt;}
.ws61{word-spacing:34.613262pt;}
.ws66{word-spacing:34.613746pt;}
.ws45{word-spacing:34.616187pt;}
.ws46{word-spacing:34.666123pt;}
.ws60{word-spacing:34.667565pt;}
.ws5f{word-spacing:34.668051pt;}
.ws65{word-spacing:34.668530pt;}
.ws62{word-spacing:34.668534pt;}
.ws38{word-spacing:34.668554pt;}
.ws3f{word-spacing:34.669035pt;}
.ws40{word-spacing:34.671457pt;}
.ws8a{word-spacing:34.673887pt;}
.ws43{word-spacing:1188.814425pt;}
.ws4a{word-spacing:1188.815465pt;}
.wsa2{word-spacing:1189.978132pt;}
.ws4d{word-spacing:1190.036798pt;}
.wsa3{word-spacing:1194.228798pt;}
.wsa1{word-spacing:1195.855465pt;}
.ws9d{word-spacing:1196.612798pt;}
.ws9e{word-spacing:1196.788798pt;}
.ws9f{word-spacing:1218.660798pt;}
.wsa4{word-spacing:1219.828798pt;}
.ws4b{word-spacing:1225.759465pt;}
.ws2e{word-spacing:1260.494831pt;}
.ws3a{word-spacing:1260.495802pt;}
.ws36{word-spacing:1260.495807pt;}
.ws32{word-spacing:1260.496282pt;}
.ws33{word-spacing:1260.496767pt;}
.ws3b{word-spacing:1260.496771pt;}
.ws2c{word-spacing:1260.496772pt;}
.ws31{word-spacing:1260.497254pt;}
.ws3c{word-spacing:1260.497256pt;}
.ws2f{word-spacing:1260.497258pt;}
.ws3e{word-spacing:1260.550589pt;}
.ws3d{word-spacing:1260.551071pt;}
.ws37{word-spacing:1260.551078pt;}
.ws35{word-spacing:1260.551083pt;}
.ws2d{word-spacing:1260.551557pt;}
.ws2b{word-spacing:1260.551563pt;}
.ws34{word-spacing:1260.552522pt;}
.ws39{word-spacing:1260.552528pt;}
.ws30{word-spacing:1260.553014pt;}
.wsd4{word-spacing:1296.218514pt;}
.wsd0{word-spacing:1296.218572pt;}
.wsd1{word-spacing:1296.219051pt;}
.wsd3{word-spacing:1296.219536pt;}
.wscd{word-spacing:1296.220994pt;}
.ws103{word-spacing:1296.221963pt;}
.ws109{word-spacing:1296.222883pt;}
.wse6{word-spacing:1296.223348pt;}
.ws102{word-spacing:1296.223419pt;}
.ws104{word-spacing:1296.223904pt;}
.wse7{word-spacing:1296.224317pt;}
.ws10b{word-spacing:1296.224333pt;}
.ws10c{word-spacing:1296.224337pt;}
.wse2{word-spacing:1296.224339pt;}
.wsdd{word-spacing:1296.224384pt;}
.wsde{word-spacing:1296.224387pt;}
.wse1{word-spacing:1296.224871pt;}
.wscf{word-spacing:1296.274329pt;}
.wsd9{word-spacing:1296.275705pt;}
.wsd8{word-spacing:1296.275708pt;}
.wsd7{word-spacing:1296.275716pt;}
.wsd6{word-spacing:1296.275725pt;}
.wsce{word-spacing:1296.275782pt;}
.wsd5{word-spacing:1296.276217pt;}
.wsd2{word-spacing:1296.276262pt;}
.ws10a{word-spacing:1296.277668pt;}
.ws107{word-spacing:1296.277723pt;}
.ws108{word-spacing:1296.278203pt;}
.wsdf{word-spacing:1296.278204pt;}
.ws105{word-spacing:1296.278690pt;}
.wsdb{word-spacing:1296.278694pt;}
.ws10d{word-spacing:1296.279101pt;}
.ws106{word-spacing:1296.279180pt;}
.wse8{word-spacing:1296.279580pt;}
.wse4{word-spacing:1296.279610pt;}
.wse5{word-spacing:1296.279614pt;}
.wse0{word-spacing:1296.280144pt;}
.wsdc{word-spacing:1296.280148pt;}
.wse3{word-spacing:1296.281059pt;}
.wsda{word-spacing:1296.281595pt;}
.wsb4{word-spacing:1298.082811pt;}
.wsb6{word-spacing:1298.083295pt;}
.wsbf{word-spacing:1298.084194pt;}
.wsbe{word-spacing:1298.084682pt;}
.wsb8{word-spacing:1298.085239pt;}
.wsba{word-spacing:1298.138515pt;}
.wsb9{word-spacing:1298.138572pt;}
.wsb7{word-spacing:1298.139537pt;}
.wsbc{word-spacing:1298.139951pt;}
.wsbd{word-spacing:1298.140447pt;}
.wsbb{word-spacing:1298.140467pt;}
.wsb5{word-spacing:1298.142929pt;}
.ws7e{word-spacing:1298.429477pt;}
.ws84{word-spacing:1298.429894pt;}
.ws86{word-spacing:1298.430368pt;}
.ws88{word-spacing:1298.430371pt;}
.ws7a{word-spacing:1298.430448pt;}
.ws7c{word-spacing:1298.430449pt;}
.ws7b{word-spacing:1298.430931pt;}
.ws85{word-spacing:1298.431339pt;}
.ws80{word-spacing:1298.484748pt;}
.ws7f{word-spacing:1298.485717pt;}
.ws87{word-spacing:1298.486124pt;}
.ws83{word-spacing:1298.486137pt;}
.ws79{word-spacing:1298.486203pt;}
.ws81{word-spacing:1298.486689pt;}
.ws82{word-spacing:1298.489059pt;}
.ws7d{word-spacing:1298.489595pt;}
.ws98{word-spacing:1298.836187pt;}
.ws92{word-spacing:1298.836267pt;}
.ws8c{word-spacing:1298.837233pt;}
.ws93{word-spacing:1298.837650pt;}
.wsb0{word-spacing:1298.837667pt;}
.wsae{word-spacing:1298.838157pt;}
.ws8e{word-spacing:1298.838203pt;}
.wsaa{word-spacing:1298.839173pt;}
.wsab{word-spacing:1298.840148pt;}
.ws94{word-spacing:1298.891461pt;}
.ws95{word-spacing:1298.891470pt;}
.ws90{word-spacing:1298.891542pt;}
.ws8b{word-spacing:1298.892022pt;}
.ws96{word-spacing:1298.892434pt;}
.ws99{word-spacing:1298.892913pt;}
.ws91{word-spacing:1298.892996pt;}
.ws97{word-spacing:1298.893404pt;}
.ws8f{word-spacing:1298.893478pt;}
.wsad{word-spacing:1298.893919pt;}
.wsb2{word-spacing:1298.894369pt;}
.wsaf{word-spacing:1298.894392pt;}
.wsb3{word-spacing:1298.894828pt;}
.ws8d{word-spacing:1298.894929pt;}
.wsac{word-spacing:1298.894934pt;}
.wsb1{word-spacing:1298.896790pt;}
.wse9{word-spacing:1299.592633pt;}
.wsee{word-spacing:1299.593549pt;}
.wsed{word-spacing:1299.594514pt;}
.wsf0{word-spacing:1299.594978pt;}
.ws131{word-spacing:1299.594999pt;}
.wsec{word-spacing:1299.595051pt;}
.ws134{word-spacing:1299.595974pt;}
.ws12d{word-spacing:1299.596507pt;}
.ws12c{word-spacing:1299.596512pt;}
.ws12f{word-spacing:1299.596941pt;}
.ws132{word-spacing:1299.596948pt;}
.wsc5{word-spacing:1299.596991pt;}
.ws128{word-spacing:1299.597431pt;}
.ws121{word-spacing:1299.597477pt;}
.wsc0{word-spacing:1299.597966pt;}
.ws12a{word-spacing:1299.598397pt;}
.ws12b{word-spacing:1299.598399pt;}
.wsc6{word-spacing:1299.598446pt;}
.ws123{word-spacing:1299.598449pt;}
.wsc2{word-spacing:1299.598933pt;}
.wscb{word-spacing:1299.599339pt;}
.ws120{word-spacing:1299.599419pt;}
.ws124{word-spacing:1299.599421pt;}
.wsf1{word-spacing:1299.648310pt;}
.wsf2{word-spacing:1299.648797pt;}
.wsea{word-spacing:1299.649356pt;}
.wsf3{word-spacing:1299.649761pt;}
.wsef{word-spacing:1299.649773pt;}
.ws135{word-spacing:1299.651248pt;}
.ws130{word-spacing:1299.651725pt;}
.ws133{word-spacing:1299.651727pt;}
.wseb{word-spacing:1299.652262pt;}
.ws12e{word-spacing:1299.652264pt;}
.ws127{word-spacing:1299.652702pt;}
.wsc8{word-spacing:1299.653189pt;}
.wsc1{word-spacing:1299.653233pt;}
.ws125{word-spacing:1299.653723pt;}
.wscc{word-spacing:1299.654124pt;}
.wsca{word-spacing:1299.654127pt;}
.wsc9{word-spacing:1299.654137pt;}
.ws129{word-spacing:1299.654152pt;}
.ws126{word-spacing:1299.654156pt;}
.wsc4{word-spacing:1299.654689pt;}
.ws122{word-spacing:1299.654690pt;}
.wsc7{word-spacing:1299.657059pt;}
.wsc3{word-spacing:1299.657595pt;}
.wsfd{word-spacing:1301.804455pt;}
.wsf5{word-spacing:1301.804507pt;}
.wsfc{word-spacing:1301.806883pt;}
.ws143{word-spacing:1301.807847pt;}
.ws147{word-spacing:1301.808333pt;}
.ws13e{word-spacing:1301.808384pt;}
.ws13a{word-spacing:1301.808869pt;}
.ws13c{word-spacing:1301.808875pt;}
.ws13f{word-spacing:1301.809356pt;}
.ws140{word-spacing:1301.809840pt;}
.ws139{word-spacing:1301.809841pt;}
.ws136{word-spacing:1301.810329pt;}
.wsf4{word-spacing:1301.860262pt;}
.ws100{word-spacing:1301.861189pt;}
.wsf9{word-spacing:1301.861233pt;}
.ws101{word-spacing:1301.861644pt;}
.wsf8{word-spacing:1301.861717pt;}
.wsf7{word-spacing:1301.861723pt;}
.wsfe{word-spacing:1301.862156pt;}
.wsfa{word-spacing:1301.862203pt;}
.wsfb{word-spacing:1301.862204pt;}
.wsf6{word-spacing:1301.862209pt;}
.ws142{word-spacing:1301.863608pt;}
.ws145{word-spacing:1301.863611pt;}
.ws141{word-spacing:1301.864144pt;}
.wsff{word-spacing:1301.865059pt;}
.ws13d{word-spacing:1301.865115pt;}
.ws146{word-spacing:1301.865545pt;}
.ws144{word-spacing:1301.865550pt;}
.ws13b{word-spacing:1301.865595pt;}
.ws137{word-spacing:1301.865601pt;}
.ws138{word-spacing:1301.865602pt;}
.ws110{word-spacing:1304.714569pt;}
.ws14f{word-spacing:1304.714999pt;}
.ws117{word-spacing:1304.715051pt;}
.ws118{word-spacing:1304.715053pt;}
.ws111{word-spacing:1304.715057pt;}
.ws14c{word-spacing:1304.715487pt;}
.ws11e{word-spacing:1304.715489pt;}
.ws11f{word-spacing:1304.715495pt;}
.ws14b{word-spacing:1304.715541pt;}
.ws11c{word-spacing:1304.715978pt;}
.ws10f{word-spacing:1304.716023pt;}
.ws14a{word-spacing:1304.716027pt;}
.ws11a{word-spacing:1304.716455pt;}
.ws114{word-spacing:1304.716507pt;}
.ws116{word-spacing:1304.716512pt;}
.ws14e{word-spacing:1304.716941pt;}
.ws119{word-spacing:1304.716945pt;}
.ws10e{word-spacing:1304.716994pt;}
.ws11d{word-spacing:1304.770283pt;}
.ws112{word-spacing:1304.770326pt;}
.ws149{word-spacing:1304.770814pt;}
.ws115{word-spacing:1304.771299pt;}
.ws11b{word-spacing:1304.771725pt;}
.ws152{word-spacing:1304.772190pt;}
.ws151{word-spacing:1304.772201pt;}
.ws150{word-spacing:1304.772211pt;}
.ws113{word-spacing:1304.772262pt;}
.ws14d{word-spacing:1304.772696pt;}
.ws148{word-spacing:1304.772750pt;}
.ws5c{word-spacing:1305.293884pt;}
.ws58{word-spacing:1305.293892pt;}
.ws51{word-spacing:1305.294422pt;}
.ws55{word-spacing:1305.294423pt;}
.ws52{word-spacing:1305.295395pt;}
.ws57{word-spacing:1305.295825pt;}
.ws5a{word-spacing:1305.295827pt;}
.ws54{word-spacing:1305.296366pt;}
.ws78{word-spacing:1305.298246pt;}
.ws73{word-spacing:1305.298253pt;}
.ws6f{word-spacing:1305.298330pt;}
.ws75{word-spacing:1305.298737pt;}
.ws70{word-spacing:1305.298814pt;}
.ws76{word-spacing:1305.299702pt;}
.ws71{word-spacing:1305.300267pt;}
.ws59{word-spacing:1305.349644pt;}
.ws5d{word-spacing:1305.351079pt;}
.ws5b{word-spacing:1305.351101pt;}
.ws53{word-spacing:1305.351149pt;}
.ws56{word-spacing:1305.351154pt;}
.ws6b{word-spacing:1305.354081pt;}
.ws74{word-spacing:1305.354494pt;}
.ws77{word-spacing:1305.354974pt;}
.ws6c{word-spacing:1305.355052pt;}
.ws72{word-spacing:1305.355457pt;}
.ws6d{word-spacing:1305.355537pt;}
.ws69{word-spacing:1305.356022pt;}
.ws6a{word-spacing:1305.356026pt;}
.ws6e{word-spacing:1305.356029pt;}
.ws68{word-spacing:1305.358929pt;}
._10{margin-left:-29.149115pt;}
._1a{margin-left:-28.248522pt;}
._0{margin-left:-25.488424pt;}
._e9{margin-left:-8.598986pt;}
._b{margin-left:-6.878996pt;}
._a{margin-left:-5.387797pt;}
._1{margin-left:-3.745963pt;}
._9{margin-left:-2.734548pt;}
._2{margin-left:-1.594027pt;}
._3{width:1.599356pt;}
._8{width:2.641300pt;}
._79{width:3.570624pt;}
._6{width:10.495852pt;}
._7{width:12.823127pt;}
._4{width:14.649088pt;}
._5{width:16.744428pt;}
._20{width:17.935931pt;}
._15{width:20.068077pt;}
._14{width:21.969063pt;}
._19{width:23.106117pt;}
._17{width:25.140883pt;}
._11{width:26.882937pt;}
._1c{width:28.287770pt;}
._1b{width:30.182255pt;}
._12{width:31.418791pt;}
._16{width:34.044308pt;}
._1d{width:36.291218pt;}
._1f{width:37.718299pt;}
._25{width:39.687683pt;}
._23{width:43.413989pt;}
._22{width:44.735189pt;}
._1e{width:46.557943pt;}
._18{width:49.120478pt;}
._13{width:50.398879pt;}
._21{width:52.528492pt;}
._d{width:55.389137pt;}
._f{width:57.049262pt;}
._71{width:98.131377pt;}
._d3{width:151.243071pt;}
._47{width:152.693738pt;}
._ca{width:153.861738pt;}
._c4{width:155.600405pt;}
._5e{width:156.768405pt;}
._2e{width:166.485738pt;}
._b1{width:168.576405pt;}
._d1{width:169.908284pt;}
._44{width:171.358950pt;}
._36{width:172.357738pt;}
._3c{width:173.296405pt;}
._c2{width:174.265617pt;}
._5b{width:175.433617pt;}
._e8{width:176.784405pt;}
._53{width:178.816405pt;}
._64{width:180.272405pt;}
._bc{width:181.376405pt;}
._a9{width:182.539071pt;}
._2b{width:185.150950pt;}
._7f{width:186.395996pt;}
._de{width:189.865617pt;}
._33{width:191.022950pt;}
._3a{width:191.961617pt;}
._e4{width:193.241617pt;}
._45{width:194.370524pt;}
._e7{width:195.449617pt;}
._50{width:197.481617pt;}
._5c{width:198.445191pt;}
._b8{width:200.041617pt;}
._a6{width:201.204284pt;}
._2c{width:206.563169pt;}
._af{width:210.253191pt;}
._e2{width:211.272502pt;}
._34{width:212.435169pt;}
._3b{width:213.832670pt;}
._e5{width:215.112670pt;}
._8e{width:216.280502pt;}
._ab{width:217.933191pt;}
._51{width:220.493191pt;}
._b9{width:223.053191pt;}
._a7{width:224.215858pt;}
._d2{width:385.786125pt;}
._46{width:387.527701pt;}
._c3{width:390.434368pt;}
._5d{width:391.602368pt;}
._73{width:393.457619pt;}
._2d{width:401.319701pt;}
._b0{width:403.410368pt;}
._df{width:405.743459pt;}
._35{width:407.191701pt;}
._9c{width:408.650125pt;}
._d4{width:409.642125pt;}
._8f{width:410.746125pt;}
._b3{width:412.548792pt;}
._52{width:413.650368pt;}
._63{width:414.815459pt;}
._bb{width:416.210368pt;}
._a8{width:417.373035pt;}
._6b{width:470.556725pt;}
._d0{width:556.038217pt;}
._43{width:557.605247pt;}
._c9{width:558.656883pt;}
._c1{width:560.511914pt;}
._5a{width:561.679914pt;}
._2a{width:571.397247pt;}
._ae{width:573.487914pt;}
._dd{width:575.995550pt;}
._32{width:577.269247pt;}
._9b{width:578.902217pt;}
._98{width:579.946580pt;}
._8d{width:580.998217pt;}
._4f{width:583.727914pt;}
._62{width:585.067550pt;}
._b7{width:586.287914pt;}
._a5{width:587.450580pt;}
._4b{width:607.663777pt;}
._48{width:609.176071pt;}
._6c{width:628.018209pt;}
._4a{width:650.893970pt;}
._3f{width:667.678004pt;}
._9d{width:669.314505pt;}
._90{width:670.908532pt;}
._67{width:673.643079pt;}
._87{width:687.086950pt;}
._e3{width:694.937643pt;}
._69{width:697.094912pt;}
._ea{width:698.683605pt;}
._bd{width:699.824126pt;}
._e6{width:702.558674pt;}
._88{width:708.958003pt;}
._49{width:718.385349pt;}
._56{width:720.130391pt;}
._94{width:723.097666pt;}
._26{width:725.948578pt;}
._cf{width:812.934274pt;}
._42{width:814.443123pt;}
._c8{width:815.552941pt;}
._a0{width:817.387356pt;}
._59{width:818.517789pt;}
._d7{width:819.530534pt;}
._bf{width:821.274534pt;}
._cd{width:824.181201pt;}
._38{width:825.474635pt;}
._29{width:828.235123pt;}
._a1{width:829.549302pt;}
._dc{width:832.891607pt;}
._31{width:834.107123pt;}
._9a{width:835.798274pt;}
._97{width:836.784456pt;}
._8c{width:837.894274pt;}
._4e{width:840.565789pt;}
._61{width:841.963607pt;}
._b6{width:843.125789pt;}
._a4{width:844.288456pt;}
._c7{width:845.377659pt;}
._cb{width:847.232689pt;}
._58{width:848.400689pt;}
._aa{width:849.853302pt;}
._c5{width:862.361939pt;}
._a2{width:864.690635pt;}
._9f{width:866.086992pt;}
._96{width:867.830022pt;}
._be{width:869.519272pt;}
._6a{width:871.788325pt;}
._d6{width:873.705939pt;}
._92{width:875.398992pt;}
._54{width:878.537948pt;}
._ac{width:882.258635pt;}
._b2{width:884.007969pt;}
._b4{width:886.973302pt;}
._55{width:900.352270pt;}
._89{width:902.964792pt;}
._41{width:906.347356pt;}
._28{width:920.139356pt;}
._db{width:924.737659pt;}
._30{width:926.011356pt;}
._99{width:927.644325pt;}
._8b{width:929.740325pt;}
._4d{width:932.470022pt;}
._60{width:933.809659pt;}
._ce{width:999.930001pt;}
._40{width:1001.438849pt;}
._c6{width:1002.601516pt;}
._c0{width:1004.345516pt;}
._57{width:1005.513516pt;}
._27{width:1015.172667pt;}
._ad{width:1017.321516pt;}
._da{width:1019.887334pt;}
._2f{width:1021.044667pt;}
._39{width:1021.983334pt;}
._95{width:1023.780182pt;}
._8a{width:1024.831819pt;}
._4c{width:1027.561516pt;}
._5f{width:1028.901152pt;}
._b5{width:1030.121516pt;}
._a3{width:1031.284182pt;}
._82{width:1066.930378pt;}
._86{width:1073.216883pt;}
._6d{width:1148.176382pt;}
._81{width:1178.270747pt;}
._72{width:1228.097549pt;}
._77{width:1230.596434pt;}
._7d{width:1254.298599pt;}
._7a{width:1279.061977pt;}
._6f{width:1290.780594pt;}
._80{width:1293.281926pt;}
._7b{width:1304.045114pt;}
._7c{width:1313.401201pt;}
._74{width:1319.717052pt;}
._e0{width:1324.702202pt;}
._d8{width:1326.250615pt;}
._3d{width:1327.181692pt;}
._3e{width:1328.160165pt;}
._85{width:1330.112941pt;}
._91{width:1331.198670pt;}
._66{width:1333.797498pt;}
._65{width:1334.894822pt;}
._7e{width:1356.805419pt;}
._84{width:1363.542992pt;}
._c{width:1371.387983pt;}
._76{width:1399.943667pt;}
._6e{width:1407.879515pt;}
._75{width:1436.377236pt;}
._78{width:1439.812305pt;}
._70{width:1472.112298pt;}
._83{width:1517.050485pt;}
._d5{width:1561.336397pt;}
._d9{width:1564.365730pt;}
._e1{width:1565.587063pt;}
._93{width:1566.808397pt;}
._ba{width:1569.832397pt;}
._cc{width:1571.053730pt;}
._9e{width:1572.275063pt;}
._24{width:1590.429730pt;}
._37{width:1593.453730pt;}
._68{width:1594.675063pt;}
._e{width:1604.837513pt;}
.fs4{font-size:37.333333pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsa{font-size:58.181867pt;}
.fs9{font-size:58.447467pt;}
.fsd{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsc{font-size:76.513067pt;}
.fs7{font-size:79.701333pt;}
.fs2{font-size:90.666667pt;}
.fs6{font-size:111.581333pt;}
.fsb{font-size:132.197867pt;}
.fs8{font-size:170.028800pt;}
.fs5{font-size:653.549333pt;}
.y0{bottom:0.000000pt;}
.y95{bottom:54.673333pt;}
.y80{bottom:54.673353pt;}
.y5{bottom:59.133337pt;}
.y48{bottom:59.729926pt;}
.y4{bottom:86.333337pt;}
.y47{bottom:95.860593pt;}
.y1a1{bottom:113.484000pt;}
.y46{bottom:113.925926pt;}
.y13f{bottom:116.037333pt;}
.y179{bottom:119.378667pt;}
.y104{bottom:121.932000pt;}
.y20{bottom:123.790666pt;}
.y1c6{bottom:125.653333pt;}
.y185{bottom:127.828000pt;}
.ye9{bottom:129.380000pt;}
.y1a5{bottom:130.381333pt;}
.y7f{bottom:131.116004pt;}
.y4e{bottom:131.452019pt;}
.y1a0{bottom:131.549333pt;}
.y45{bottom:131.991259pt;}
.y13e{bottom:134.102667pt;}
.y27{bottom:137.408000pt;}
.y178{bottom:137.445333pt;}
.y103{bottom:139.998667pt;}
.y1c5{bottom:143.718667pt;}
.y157{bottom:145.893333pt;}
.ybf{bottom:146.098667pt;}
.y141{bottom:148.446667pt;}
.y7e{bottom:149.182671pt;}
.y19f{bottom:149.614667pt;}
.y44{bottom:150.056593pt;}
.y13d{bottom:152.168000pt;}
.y177{bottom:155.510667pt;}
.y102{bottom:158.064000pt;}
.y1c4{bottom:161.784000pt;}
.y156{bottom:163.960000pt;}
.ybe{bottom:164.164000pt;}
.y14a{bottom:166.513333pt;}
.y7d{bottom:167.248004pt;}
.y19e{bottom:167.680000pt;}
.y43{bottom:168.123259pt;}
.y13c{bottom:170.233333pt;}
.y176{bottom:173.576000pt;}
.y17{bottom:175.052000pt;}
.y101{bottom:176.129333pt;}
.y1c3{bottom:179.850667pt;}
.y155{bottom:182.025333pt;}
.ybd{bottom:182.229333pt;}
.y7c{bottom:185.313337pt;}
.y19d{bottom:185.745333pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.ye8{bottom:186.557333pt;}
.y13b{bottom:188.298667pt;}
.y175{bottom:191.641333pt;}
.y100{bottom:194.194667pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y1c2{bottom:197.916000pt;}
.y154{bottom:200.090667pt;}
.ybc{bottom:200.294667pt;}
.y17e{bottom:202.644000pt;}
.y7b{bottom:203.378671pt;}
.y42{bottom:203.697926pt;}
.y19c{bottom:203.812000pt;}
.ye7{bottom:204.622667pt;}
.y13a{bottom:206.365333pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y174{bottom:209.706667pt;}
.yff{bottom:212.260000pt;}
.y1c1{bottom:215.981333pt;}
.y153{bottom:218.156000pt;}
.ybb{bottom:218.360000pt;}
.y7a{bottom:221.444004pt;}
.y19b{bottom:221.877333pt;}
.ye6{bottom:222.689333pt;}
.y139{bottom:224.430667pt;}
.y173{bottom:227.773333pt;}
.y124{bottom:230.325333pt;}
.yfe{bottom:230.326667pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y1c0{bottom:234.046667pt;}
.y152{bottom:236.221333pt;}
.yba{bottom:236.426667pt;}
.y79{bottom:239.510671pt;}
.y41{bottom:239.845393pt;}
.y19a{bottom:239.942667pt;}
.ye5{bottom:240.754667pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y138{bottom:242.496000pt;}
.y184{bottom:244.670667pt;}
.yfd{bottom:248.392000pt;}
.y26{bottom:251.165333pt;}
.y1bf{bottom:252.112000pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y151{bottom:254.286667pt;}
.yb9{bottom:254.492000pt;}
.y12c{bottom:256.840000pt;}
.y78{bottom:257.576004pt;}
.y40{bottom:257.910726pt;}
.y199{bottom:258.008000pt;}
.ye4{bottom:258.820000pt;}
.y137{bottom:260.561333pt;}
.yfc{bottom:266.457333pt;}
.y1be{bottom:270.178667pt;}
.y150{bottom:272.353333pt;}
.yb8{bottom:272.557333pt;}
.y77{bottom:275.641337pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.ye3{bottom:276.885333pt;}
.y136{bottom:278.626667pt;}
.y123{bottom:284.522667pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y1bd{bottom:288.244000pt;}
.y14f{bottom:290.418667pt;}
.yb7{bottom:290.622667pt;}
.y17c{bottom:292.972000pt;}
.y25{bottom:293.672000pt;}
.y76{bottom:293.706671pt;}
.ye2{bottom:294.950667pt;}
.y135{bottom:296.692000pt;}
.y122{bottom:302.588000pt;}
.y1bc{bottom:306.309333pt;}
.ye{bottom:309.452000pt;}
.yfb{bottom:311.037333pt;}
.y75{bottom:311.772004pt;}
.ye1{bottom:313.017333pt;}
.y12b{bottom:314.758667pt;}
.y121{bottom:320.653333pt;}
.y1bb{bottom:324.374667pt;}
.y74{bottom:329.838671pt;}
.y172{bottom:330.270667pt;}
.ye0{bottom:331.082667pt;}
.y12a{bottom:332.824000pt;}
.y14e{bottom:334.998667pt;}
.yb6{bottom:335.202667pt;}
.y24{bottom:336.178667pt;}
.y120{bottom:338.720000pt;}
.yd{bottom:343.809333pt;}
.y73{bottom:347.904004pt;}
.y171{bottom:348.336000pt;}
.ydf{bottom:349.148000pt;}
.y129{bottom:350.889333pt;}
.y11f{bottom:356.785333pt;}
.y198{bottom:360.505333pt;}
.yc{bottom:362.706666pt;}
.y72{bottom:365.969337pt;}
.y170{bottom:366.401333pt;}
.yde{bottom:367.213333pt;}
.yfa{bottom:368.954667pt;}
.y11e{bottom:374.850667pt;}
.y197{bottom:378.572000pt;}
.y71{bottom:384.034671pt;}
.y16f{bottom:384.466667pt;}
.ydd{bottom:385.278667pt;}
.yf9{bottom:387.020000pt;}
.y11d{bottom:392.916000pt;}
.yb5{bottom:393.120000pt;}
.y196{bottom:396.637333pt;}
.y3f{bottom:400.184019pt;}
.y180{bottom:401.365333pt;}
.y70{bottom:402.100004pt;}
.y16e{bottom:402.533333pt;}
.ydc{bottom:403.344000pt;}
.yf8{bottom:405.086667pt;}
.y11c{bottom:410.981333pt;}
.yb4{bottom:411.186667pt;}
.y149{bottom:413.534667pt;}
.y195{bottom:414.702667pt;}
.y3e{bottom:418.249353pt;}
.y6f{bottom:420.165337pt;}
.y16d{bottom:420.598667pt;}
.ydb{bottom:421.410667pt;}
.yf7{bottom:423.152000pt;}
.y1ba{bottom:426.872000pt;}
.y11b{bottom:429.046667pt;}
.y14d{bottom:429.048000pt;}
.yb3{bottom:429.252000pt;}
.y194{bottom:432.768000pt;}
.y3d{bottom:436.316019pt;}
.y186{bottom:437.496000pt;}
.y6e{bottom:438.232004pt;}
.y16c{bottom:438.664000pt;}
.yda{bottom:439.476000pt;}
.yf6{bottom:441.217333pt;}
.y1b9{bottom:444.938667pt;}
.y11a{bottom:447.113333pt;}
.yb2{bottom:447.317333pt;}
.y193{bottom:450.833333pt;}
.y6d{bottom:456.297337pt;}
.y16b{bottom:456.729333pt;}
.yd9{bottom:457.541333pt;}
.yf5{bottom:459.282667pt;}
.yb{bottom:462.990669pt;}
.y1b8{bottom:463.004000pt;}
.y119{bottom:465.178667pt;}
.yb1{bottom:465.382667pt;}
.y1a9{bottom:467.732000pt;}
.y192{bottom:468.900000pt;}
.y148{bottom:471.452000pt;}
.y6c{bottom:474.362671pt;}
.y16a{bottom:474.794667pt;}
.yd8{bottom:475.606667pt;}
.yf4{bottom:477.348000pt;}
.ya{bottom:478.990666pt;}
.y1b7{bottom:481.069333pt;}
.y118{bottom:483.244000pt;}
.yb0{bottom:483.448000pt;}
.y191{bottom:486.965333pt;}
.y147{bottom:489.518667pt;}
.y6b{bottom:492.428004pt;}
.yd7{bottom:493.672000pt;}
.y9{bottom:494.990666pt;}
.yf3{bottom:495.413333pt;}
.y1b6{bottom:499.134667pt;}
.y117{bottom:501.309333pt;}
.yaf{bottom:501.514667pt;}
.y190{bottom:505.030667pt;}
.y146{bottom:507.584000pt;}
.y1a3{bottom:509.758667pt;}
.y6a{bottom:510.493337pt;}
.yd6{bottom:511.738667pt;}
.y3c{bottom:511.845353pt;}
.yf2{bottom:513.480000pt;}
.y1b5{bottom:517.200000pt;}
.y116{bottom:519.374667pt;}
.yae{bottom:519.580000pt;}
.y134{bottom:521.928000pt;}
.y18f{bottom:523.096000pt;}
.y145{bottom:525.649333pt;}
.y69{bottom:528.560004pt;}
.yd5{bottom:529.804000pt;}
.y3b{bottom:529.910686pt;}
.yf1{bottom:531.545333pt;}
.y1b4{bottom:535.265333pt;}
.y115{bottom:537.441333pt;}
.yad{bottom:537.645333pt;}
.y18e{bottom:541.161333pt;}
.y144{bottom:543.714667pt;}
.y68{bottom:546.625337pt;}
.yd4{bottom:547.869333pt;}
.y3a{bottom:547.977353pt;}
.yf0{bottom:549.610667pt;}
.y1b3{bottom:553.332000pt;}
.y114{bottom:555.506667pt;}
.yac{bottom:555.710667pt;}
.y17d{bottom:558.060000pt;}
.y18d{bottom:559.226667pt;}
.y143{bottom:561.780000pt;}
.y67{bottom:564.690671pt;}
.yd3{bottom:565.934667pt;}
.y39{bottom:566.042686pt;}
.yef{bottom:567.676000pt;}
.y1b2{bottom:571.397333pt;}
.y113{bottom:573.572000pt;}
.yab{bottom:573.776000pt;}
.y8{bottom:573.786667pt;}
.y1a7{bottom:576.125333pt;}
.y169{bottom:577.293333pt;}
.y133{bottom:579.846667pt;}
.y14c{bottom:582.021333pt;}
.y66{bottom:582.756004pt;}
.yd2{bottom:584.000000pt;}
.y38{bottom:584.108019pt;}
.yee{bottom:585.741333pt;}
.y1b1{bottom:589.462667pt;}
.y112{bottom:591.637333pt;}
.yaa{bottom:591.841333pt;}
.y7{bottom:592.685334pt;}
.y168{bottom:595.358667pt;}
.y132{bottom:597.912000pt;}
.y183{bottom:600.086667pt;}
.y65{bottom:600.821337pt;}
.yd1{bottom:602.065333pt;}
.y37{bottom:602.173353pt;}
.yed{bottom:603.808000pt;}
.y1b0{bottom:607.528000pt;}
.ya9{bottom:609.908000pt;}
.y167{bottom:613.424000pt;}
.y131{bottom:615.977333pt;}
.y64{bottom:618.888004pt;}
.yd0{bottom:620.132000pt;}
.y36{bottom:620.238686pt;}
.yec{bottom:621.873333pt;}
.y1af{bottom:625.593333pt;}
.ya8{bottom:627.973333pt;}
.y1c7{bottom:630.321333pt;}
.y166{bottom:631.489333pt;}
.y130{bottom:634.042667pt;}
.y111{bottom:636.217333pt;}
.y4d{bottom:636.796019pt;}
.y63{bottom:636.953337pt;}
.ycf{bottom:638.197333pt;}
.y35{bottom:638.305353pt;}
.y128{bottom:639.938667pt;}
.y1ae{bottom:643.660000pt;}
.y6{bottom:645.598667pt;}
.ya7{bottom:646.038667pt;}
.y165{bottom:649.554667pt;}
.y12f{bottom:652.108000pt;}
.y62{bottom:655.018671pt;}
.yce{bottom:656.262667pt;}
.y127{bottom:658.004000pt;}
.y1ad{bottom:661.725333pt;}
.ya6{bottom:664.104000pt;}
.yeb{bottom:666.453333pt;}
.y164{bottom:667.621333pt;}
.y3{bottom:668.977329pt;}
.y142{bottom:670.173333pt;}
.y12e{bottom:670.174667pt;}
.y4c{bottom:672.926686pt;}
.y61{bottom:673.084004pt;}
.ycd{bottom:674.328000pt;}
.y126{bottom:676.069333pt;}
.y1ac{bottom:679.790667pt;}
.ya5{bottom:682.169333pt;}
.y1a6{bottom:684.518667pt;}
.y163{bottom:685.686667pt;}
.y94{bottom:688.238667pt;}
.y12d{bottom:688.240000pt;}
.y60{bottom:691.149337pt;}
.ycc{bottom:692.393333pt;}
.y110{bottom:694.134667pt;}
.y1ab{bottom:697.856000pt;}
.ya4{bottom:700.236000pt;}
.y162{bottom:703.752000pt;}
.y93{bottom:706.305333pt;}
.y5f{bottom:709.216004pt;}
.ycb{bottom:710.460000pt;}
.y10f{bottom:712.201333pt;}
.y18c{bottom:715.921333pt;}
.ya3{bottom:718.301333pt;}
.y161{bottom:721.817333pt;}
.y34{bottom:724.352574pt;}
.y92{bottom:724.370667pt;}
.y4b{bottom:727.124019pt;}
.y5e{bottom:727.281337pt;}
.yca{bottom:728.525333pt;}
.y10e{bottom:730.266667pt;}
.y18b{bottom:733.986667pt;}
.ya2{bottom:736.366667pt;}
.y1aa{bottom:738.716000pt;}
.y91{bottom:742.436000pt;}
.y5d{bottom:745.346671pt;}
.y10d{bottom:748.332000pt;}
.y18a{bottom:752.053333pt;}
.ya1{bottom:754.432000pt;}
.y17f{bottom:756.781333pt;}
.y33{bottom:760.484574pt;}
.y90{bottom:760.501333pt;}
.y5c{bottom:763.412004pt;}
.y10c{bottom:766.397333pt;}
.y4a{bottom:766.973353pt;}
.y189{bottom:770.118667pt;}
.yc9{bottom:770.121333pt;}
.y23{bottom:771.876000pt;}
.ya0{bottom:772.497333pt;}
.y1a4{bottom:774.846667pt;}
.y32{bottom:778.551241pt;}
.y8f{bottom:778.566667pt;}
.yea{bottom:778.568000pt;}
.y5b{bottom:781.477337pt;}
.y2{bottom:781.661334pt;}
.y10b{bottom:784.462667pt;}
.y188{bottom:788.184000pt;}
.y9f{bottom:790.562667pt;}
.y140{bottom:792.912000pt;}
.y31{bottom:796.616574pt;}
.y8e{bottom:796.633333pt;}
.y5a{bottom:799.544004pt;}
.y10a{bottom:802.529333pt;}
.y187{bottom:806.249333pt;}
.y9e{bottom:808.629333pt;}
.y30{bottom:814.681907pt;}
.y8d{bottom:814.698667pt;}
.y59{bottom:817.609337pt;}
.y109{bottom:820.594667pt;}
.y160{bottom:824.314667pt;}
.y9d{bottom:826.694667pt;}
.yc8{bottom:827.298667pt;}
.y14b{bottom:829.042667pt;}
.y2f{bottom:832.747241pt;}
.y8c{bottom:832.764000pt;}
.y58{bottom:835.674671pt;}
.y108{bottom:838.660000pt;}
.y15f{bottom:842.381333pt;}
.y9c{bottom:844.760000pt;}
.yc7{bottom:845.364000pt;}
.y1a8{bottom:847.109333pt;}
.y2e{bottom:850.812574pt;}
.y8b{bottom:850.829333pt;}
.y57{bottom:853.740004pt;}
.y107{bottom:856.725333pt;}
.y1{bottom:859.312000pt;}
.y15e{bottom:860.446667pt;}
.y9b{bottom:862.825333pt;}
.yc6{bottom:863.430667pt;}
.y1a2{bottom:865.174667pt;}
.y2d{bottom:868.879241pt;}
.y8a{bottom:868.894667pt;}
.y56{bottom:871.805337pt;}
.y106{bottom:874.790667pt;}
.y15d{bottom:878.512000pt;}
.y9a{bottom:880.890667pt;}
.yc5{bottom:881.496000pt;}
.y89{bottom:886.961333pt;}
.y55{bottom:889.872004pt;}
.y17b{bottom:892.856000pt;}
.y21{bottom:894.764000pt;}
.y15c{bottom:896.577333pt;}
.y99{bottom:898.957333pt;}
.yc4{bottom:899.561333pt;}
.y125{bottom:901.305333pt;}
.y22{bottom:902.322667pt;}
.y88{bottom:905.026667pt;}
.y2c{bottom:905.026707pt;}
.y54{bottom:907.937337pt;}
.y182{bottom:910.922667pt;}
.y15b{bottom:914.642667pt;}
.y98{bottom:917.022667pt;}
.yc3{bottom:917.626667pt;}
.y105{bottom:919.370667pt;}
.y87{bottom:923.092000pt;}
.y2b{bottom:923.092041pt;}
.y53{bottom:926.002671pt;}
.y15a{bottom:932.708000pt;}
.y97{bottom:935.088000pt;}
.yc2{bottom:935.692000pt;}
.y17a{bottom:937.437333pt;}
.y86{bottom:941.157333pt;}
.y52{bottom:944.068004pt;}
.y159{bottom:950.774667pt;}
.yc1{bottom:953.757333pt;}
.y181{bottom:955.502667pt;}
.y85{bottom:959.222667pt;}
.y51{bottom:962.133337pt;}
.y158{bottom:968.840000pt;}
.yc0{bottom:971.824000pt;}
.y2a{bottom:977.272537pt;}
.y84{bottom:977.289333pt;}
.y96{bottom:979.668000pt;}
.y50{bottom:980.200004pt;}
.y83{bottom:995.354667pt;}
.y29{bottom:995.354670pt;}
.y49{bottom:995.801351pt;}
.y82{bottom:1013.420000pt;}
.y28{bottom:1013.420003pt;}
.y81{bottom:1060.573333pt;}
.y4f{bottom:1060.573353pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h12{height:42.181853pt;}
.he{height:42.414581pt;}
.h15{height:42.419914pt;}
.hd{height:42.608203pt;}
.h3{height:42.840000pt;}
.h10{height:42.880036pt;}
.h13{height:42.996399pt;}
.h14{height:46.481818pt;}
.h2{height:48.960000pt;}
.h11{height:55.471973pt;}
.hb{height:57.783467pt;}
.h5{height:69.360000pt;}
.ha{height:80.896467pt;}
.hf{height:95.843453pt;}
.h4{height:105.826671pt;}
.hc{height:123.270880pt;}
.h9{height:435.263856pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:75.590667pt;}
.x8{left:77.480000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:119.056000pt;}
.xe{left:127.026667pt;}
.xd{left:128.336000pt;}
.xc{left:130.096000pt;}
.xf{left:131.550667pt;}
.x1a{left:132.538667pt;}
.x1c{left:133.586667pt;}
.x1b{left:134.517333pt;}
.x2c{left:136.292000pt;}
.x2e{left:137.456000pt;}
.xb{left:140.874667pt;}
.x2a{left:142.197333pt;}
.x29{left:143.782667pt;}
.x28{left:145.136000pt;}
.x12{left:146.590667pt;}
.x17{left:148.102667pt;}
.x18{left:149.193333pt;}
.x1e{left:150.284000pt;}
.x1f{left:152.132000pt;}
.x20{left:153.092000pt;}
.x2f{left:155.477333pt;}
.x26{left:157.106667pt;}
.x27{left:159.244000pt;}
.x2d{left:161.397333pt;}
.x24{left:162.793333pt;}
.x22{left:164.102667pt;}
.x21{left:165.077333pt;}
.x1d{left:168.452000pt;}
.x19{left:169.426667pt;}
.x2b{left:170.924000pt;}
.x11{left:171.856000pt;}
.x10{left:172.830667pt;}
.x4{left:180.874667pt;}
.x16{left:244.553333pt;}
.x13{left:246.313333pt;}
.x14{left:247.288000pt;}
.xa{left:370.978679pt;}
.x3{left:404.408000pt;}
.x5{left:440.425333pt;}
.x23{left:571.721333pt;}
.x15{left:572.972000pt;}
.x25{left:574.150667pt;}
.x6{left:740.397333pt;}
}




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