
    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_115d57c97a7f116c36890ef6.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_0bebfc4b7448765f78cad3cc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.939453;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_ce2479824b6da88b3b58b9fb.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_a3c63ae8cd1dbc02d9141cbc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_c64cb8da4f7e81d3e4bba857.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_b4e090402f6a08b41b9f6760.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.794560px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:5.760000px;}
.ls9{letter-spacing:-2.484000px;}
.ls1a{letter-spacing:-2.090880px;}
.ls52{letter-spacing:-1.649520px;}
.ls1c{letter-spacing:-1.457280px;}
.ls19{letter-spacing:-1.393920px;}
.lsf{letter-spacing:-1.365120px;}
.ls53{letter-spacing:-1.308240px;}
.ls24{letter-spacing:-1.140480px;}
.lse{letter-spacing:-1.080720px;}
.ls2c{letter-spacing:-1.073520px;}
.ls1b{letter-spacing:-1.013760px;}
.ls16{letter-spacing:-1.010880px;}
.ls6{letter-spacing:-0.972000px;}
.ls39{letter-spacing:-0.950400px;}
.lsc{letter-spacing:-0.910080px;}
.ls5f{letter-spacing:-0.864000px;}
.ls5e{letter-spacing:-0.810000px;}
.lsa{letter-spacing:-0.758160px;}
.ls61{letter-spacing:-0.756000px;}
.ls18{letter-spacing:-0.696960px;}
.lsb{letter-spacing:-0.682560px;}
.ls17{letter-spacing:-0.673920px;}
.ls10{letter-spacing:-0.670320px;}
.ls8{letter-spacing:-0.648000px;}
.ls5c{letter-spacing:-0.594000px;}
.ls2b{letter-spacing:-0.570240px;}
.ls50{letter-spacing:-0.511920px;}
.ls5d{letter-spacing:-0.486000px;}
.ls7{letter-spacing:-0.432000px;}
.ls51{letter-spacing:-0.398160px;}
.ls23{letter-spacing:-0.380160px;}
.lsd{letter-spacing:-0.341280px;}
.ls2d{letter-spacing:-0.336960px;}
.ls22{letter-spacing:-0.316800px;}
.ls57{letter-spacing:-0.227520px;}
.ls2a{letter-spacing:-0.190080px;}
.ls56{letter-spacing:-0.056880px;}
.ls0{letter-spacing:0.000000px;}
.ls47{letter-spacing:0.011376px;}
.ls4b{letter-spacing:0.056880px;}
.ls1e{letter-spacing:0.063360px;}
.ls5b{letter-spacing:0.108000px;}
.ls5a{letter-spacing:0.124200px;}
.ls1{letter-spacing:0.216000px;}
.ls60{letter-spacing:0.270000px;}
.ls2e{letter-spacing:0.316800px;}
.ls33{letter-spacing:0.341280px;}
.ls62{letter-spacing:0.378000px;}
.ls32{letter-spacing:0.380160px;}
.ls4d{letter-spacing:0.398160px;}
.ls4f{letter-spacing:0.511920px;}
.ls4c{letter-spacing:0.637056px;}
.ls54{letter-spacing:0.682560px;}
.ls55{letter-spacing:0.739440px;}
.ls11{letter-spacing:0.796320px;}
.ls15{letter-spacing:0.966960px;}
.ls49{letter-spacing:1.137600px;}
.ls59{letter-spacing:1.566000px;}
.ls12{letter-spacing:2.534400px;}
.ls34{letter-spacing:3.003264px;}
.ls13{letter-spacing:3.548160px;}
.ls1d{letter-spacing:3.991680px;}
.ls38{letter-spacing:4.188096px;}
.ls40{letter-spacing:4.688640px;}
.ls42{letter-spacing:4.961088px;}
.ls29{letter-spacing:6.272640px;}
.ls5{letter-spacing:7.223760px;}
.ls1f{letter-spacing:8.122752px;}
.ls2{letter-spacing:8.196408px;}
.ls31{letter-spacing:8.997120px;}
.ls3d{letter-spacing:9.757440px;}
.ls4a{letter-spacing:10.807200px;}
.ls3e{letter-spacing:12.361536px;}
.ls41{letter-spacing:12.608640px;}
.ls58{letter-spacing:13.014000px;}
.ls45{letter-spacing:13.025520px;}
.ls37{letter-spacing:13.514688px;}
.ls28{letter-spacing:14.762880px;}
.ls4{letter-spacing:15.869520px;}
.ls20{letter-spacing:15.960384px;}
.ls46{letter-spacing:17.740872px;}
.ls3c{letter-spacing:17.873856px;}
.ls4e{letter-spacing:18.770400px;}
.ls36{letter-spacing:21.288960px;}
.ls2f{letter-spacing:21.985920px;}
.ls3f{letter-spacing:24.368256px;}
.ls3b{letter-spacing:25.597440px;}
.ls3{letter-spacing:26.676720px;}
.ls35{letter-spacing:27.751680px;}
.ls3a{letter-spacing:44.447040px;}
.ls30{letter-spacing:45.169344px;}
.ls14{letter-spacing:57.277440px;}
.ls48{letter-spacing:187.248960px;}
.ls26{letter-spacing:271.455120px;}
.ls27{letter-spacing:493.969680px;}
.ls25{letter-spacing:721.489680px;}
.ls21{letter-spacing:846.362880px;}
.ls43{letter-spacing:846.385920px;}
.ls44{letter-spacing:1355.052240px;}
.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;}
}
.ws8{word-spacing:-56.880000px;}
.ws2{word-spacing:-30.024000px;}
.ws3{word-spacing:-29.376000px;}
.ws1{word-spacing:-29.052000px;}
.ws4{word-spacing:-27.540000px;}
.ws9{word-spacing:-25.950960px;}
.ws35{word-spacing:-23.418720px;}
.ws36{word-spacing:-22.744800px;}
.ws5{word-spacing:-22.660560px;}
.ws34{word-spacing:-22.407840px;}
.ws94{word-spacing:-17.930880px;}
.ws75{word-spacing:-17.677440px;}
.ws37{word-spacing:-17.614080px;}
.wsc4{word-spacing:-17.424000px;}
.wsb9{word-spacing:-17.233920px;}
.ws95{word-spacing:-17.043840px;}
.ws38{word-spacing:-16.917120px;}
.wsb8{word-spacing:-16.663680px;}
.ws33{word-spacing:-16.608960px;}
.wsab{word-spacing:-16.600320px;}
.wsd2{word-spacing:-16.552080px;}
.ws77{word-spacing:-16.473600px;}
.ws39{word-spacing:-16.220160px;}
.ws76{word-spacing:-16.156800px;}
.wscf{word-spacing:-15.869520px;}
.ws6{word-spacing:-15.812640px;}
.wsd0{word-spacing:-15.755760px;}
.wsd1{word-spacing:-15.585120px;}
.wsce{word-spacing:-15.414480px;}
.wse7{word-spacing:-15.228000px;}
.ws7{word-spacing:-15.130080px;}
.wse8{word-spacing:-15.120000px;}
.wse5{word-spacing:-15.012000px;}
.wscd{word-spacing:-14.902560px;}
.wscc{word-spacing:-14.731920px;}
.wse6{word-spacing:-14.526000px;}
.wse4{word-spacing:-14.202000px;}
.ws74{word-spacing:-11.609280px;}
.ws69{word-spacing:-4.688640px;}
.wsf3{word-spacing:-4.428000px;}
.ws66{word-spacing:-3.991680px;}
.ws41{word-spacing:-3.928320px;}
.wsf4{word-spacing:-3.726000px;}
.wsf1{word-spacing:-3.672000px;}
.wsa1{word-spacing:-3.294720px;}
.ws63{word-spacing:-3.231360px;}
.ws1e{word-spacing:-2.900880px;}
.ws4b{word-spacing:-2.534400px;}
.ws30{word-spacing:-2.218320px;}
.ws22{word-spacing:-2.161440px;}
.wsb3{word-spacing:-2.090880px;}
.ws64{word-spacing:-1.837440px;}
.ws53{word-spacing:-1.774080px;}
.ws93{word-spacing:-1.457280px;}
.ws12{word-spacing:-1.422000px;}
.ws3b{word-spacing:-1.077120px;}
.ws3a{word-spacing:-0.910080px;}
.wsf7{word-spacing:-0.810000px;}
.wsd3{word-spacing:-0.796320px;}
.ws2b{word-spacing:-0.739440px;}
.ws97{word-spacing:-0.443520px;}
.ws49{word-spacing:-0.380160px;}
.wsf8{word-spacing:-0.378000px;}
.ws50{word-spacing:-0.316800px;}
.wsad{word-spacing:-0.284400px;}
.wsac{word-spacing:-0.227520px;}
.wsf2{word-spacing:-0.216000px;}
.wseb{word-spacing:-0.108000px;}
.wsc1{word-spacing:-0.084240px;}
.ws7c{word-spacing:-0.063360px;}
.wsd9{word-spacing:-0.056880px;}
.ws0{word-spacing:0.000000px;}
.wsdd{word-spacing:0.056880px;}
.wsf6{word-spacing:0.108000px;}
.ws96{word-spacing:0.190080px;}
.ws98{word-spacing:0.227520px;}
.ws81{word-spacing:0.316800px;}
.ws28{word-spacing:0.341280px;}
.ws62{word-spacing:0.380160px;}
.wsb{word-spacing:0.421200px;}
.wsec{word-spacing:0.486000px;}
.wsd4{word-spacing:0.511920px;}
.ws9a{word-spacing:0.562320px;}
.wsf9{word-spacing:0.648000px;}
.ws21{word-spacing:0.682560px;}
.ws43{word-spacing:0.696960px;}
.ws29{word-spacing:0.739440px;}
.wsf5{word-spacing:0.756000px;}
.ws9b{word-spacing:0.758160px;}
.wsed{word-spacing:0.864000px;}
.ws99{word-spacing:0.966960px;}
.wsa{word-spacing:0.972000px;}
.wsb1{word-spacing:1.010880px;}
.wsa9{word-spacing:1.013760px;}
.ws60{word-spacing:1.077120px;}
.wsdc{word-spacing:1.308240px;}
.wsda{word-spacing:1.365120px;}
.ws68{word-spacing:1.393920px;}
.ws15{word-spacing:1.422000px;}
.ws87{word-spacing:1.774080px;}
.ws3e{word-spacing:1.837440px;}
.wsef{word-spacing:2.052000px;}
.wsee{word-spacing:2.160000px;}
.wsf{word-spacing:2.161440px;}
.ws4c{word-spacing:2.534400px;}
.ws4d{word-spacing:2.851200px;}
.ws19{word-spacing:2.900880px;}
.ws52{word-spacing:3.231360px;}
.ws1a{word-spacing:3.583440px;}
.ws7b{word-spacing:3.928320px;}
.ws3c{word-spacing:3.991680px;}
.ws40{word-spacing:4.688640px;}
.ws67{word-spacing:4.752000px;}
.wsc7{word-spacing:5.005440px;}
.wsd{word-spacing:5.062320px;}
.ws91{word-spacing:5.068800px;}
.ws5b{word-spacing:5.385600px;}
.wsc{word-spacing:5.744880px;}
.ws90{word-spacing:5.829120px;}
.ws65{word-spacing:6.082560px;}
.ws4a{word-spacing:6.145920px;}
.wsaa{word-spacing:6.462720px;}
.wsdf{word-spacing:6.484320px;}
.ws45{word-spacing:6.842880px;}
.ws11{word-spacing:7.223760px;}
.ws48{word-spacing:7.539840px;}
.ws59{word-spacing:7.603200px;}
.wse{word-spacing:7.906320px;}
.ws82{word-spacing:8.236800px;}
.ws4e{word-spacing:8.300160px;}
.wse3{word-spacing:8.645760px;}
.ws55{word-spacing:8.997120px;}
.ws16{word-spacing:9.385200px;}
.ws88{word-spacing:9.694080px;}
.ws5f{word-spacing:9.757440px;}
.wsf0{word-spacing:9.990000px;}
.ws2c{word-spacing:10.067760px;}
.ws9e{word-spacing:10.391040px;}
.ws42{word-spacing:10.454400px;}
.ws2d{word-spacing:10.465920px;}
.ws2f{word-spacing:10.807200px;}
.ws2e{word-spacing:11.034720px;}
.ws5d{word-spacing:11.151360px;}
.ws1c{word-spacing:11.546640px;}
.ws7e{word-spacing:11.848320px;}
.ws46{word-spacing:11.911680px;}
.ws73{word-spacing:12.228480px;}
.ws1d{word-spacing:12.229200px;}
.ws4f{word-spacing:12.608640px;}
.ws3f{word-spacing:13.305600px;}
.wsea{word-spacing:13.554000px;}
.wsdb{word-spacing:13.651200px;}
.wse9{word-spacing:13.662000px;}
.wsd5{word-spacing:13.708080px;}
.ws7d{word-spacing:14.002560px;}
.ws54{word-spacing:14.065920px;}
.ws13{word-spacing:14.390640px;}
.wsbe{word-spacing:14.446080px;}
.ws72{word-spacing:14.762880px;}
.ws1f{word-spacing:15.130080px;}
.ws6c{word-spacing:15.459840px;}
.ws9c{word-spacing:15.523200px;}
.ws84{word-spacing:15.840000px;}
.ws20{word-spacing:15.869520px;}
.ws92{word-spacing:16.220160px;}
.wsfa{word-spacing:16.470000px;}
.wsb4{word-spacing:16.536960px;}
.ws27{word-spacing:16.552080px;}
.wsa7{word-spacing:16.917120px;}
.ws2a{word-spacing:17.291520px;}
.ws6b{word-spacing:17.614080px;}
.ws3d{word-spacing:17.677440px;}
.wsd6{word-spacing:17.974080px;}
.ws7f{word-spacing:18.311040px;}
.wsbc{word-spacing:18.374400px;}
.wse2{word-spacing:18.656640px;}
.ws8f{word-spacing:19.071360px;}
.wsde{word-spacing:19.396080px;}
.ws10{word-spacing:19.452960px;}
.ws86{word-spacing:19.768320px;}
.ws44{word-spacing:19.831680px;}
.ws26{word-spacing:20.363040px;}
.ws78{word-spacing:20.465280px;}
.ws5a{word-spacing:20.528640px;}
.ws14{word-spacing:20.874960px;}
.ws79{word-spacing:21.225600px;}
.ws18{word-spacing:21.614400px;}
.ws6d{word-spacing:21.922560px;}
.ws56{word-spacing:21.985920px;}
.ws1b{word-spacing:22.296960px;}
.ws5c{word-spacing:22.682880px;}
.ws57{word-spacing:22.746240px;}
.ws32{word-spacing:23.036400px;}
.wsa8{word-spacing:23.443200px;}
.wsb2{word-spacing:24.140160px;}
.ws51{word-spacing:24.837120px;}
.ws80{word-spacing:25.534080px;}
.ws9d{word-spacing:25.597440px;}
.ws85{word-spacing:26.231040px;}
.wsb7{word-spacing:26.294400px;}
.ws24{word-spacing:26.619840px;}
.ws5e{word-spacing:26.991360px;}
.wsa2{word-spacing:27.688320px;}
.ws58{word-spacing:27.751680px;}
.wsa6{word-spacing:28.448640px;}
.ws8d{word-spacing:29.145600px;}
.ws31{word-spacing:29.520720px;}
.wsc5{word-spacing:29.842560px;}
.ws71{word-spacing:29.905920px;}
.ws25{word-spacing:30.260160px;}
.wsbb{word-spacing:30.602880px;}
.ws83{word-spacing:31.299840px;}
.wsb0{word-spacing:31.363200px;}
.wsba{word-spacing:32.060160px;}
.ws47{word-spacing:32.757120px;}
.wsa3{word-spacing:33.517440px;}
.ws23{word-spacing:33.843600px;}
.ws8e{word-spacing:34.911360px;}
.ws8c{word-spacing:35.608320px;}
.ws61{word-spacing:35.671680px;}
.wsa5{word-spacing:37.065600px;}
.wsc8{word-spacing:37.825920px;}
.ws89{word-spacing:38.522880px;}
.wse0{word-spacing:38.849040px;}
.wsbf{word-spacing:39.283200px;}
.ws6e{word-spacing:39.980160px;}
.ws6f{word-spacing:40.677120px;}
.wsd8{word-spacing:41.067360px;}
.wsc6{word-spacing:41.374080px;}
.ws7a{word-spacing:42.831360px;}
.wsb6{word-spacing:44.288640px;}
.wsc0{word-spacing:44.985600px;}
.wsb5{word-spacing:45.745920px;}
.ws17{word-spacing:46.072800px;}
.wsaf{word-spacing:47.203200px;}
.wsa4{word-spacing:48.597120px;}
.wsc2{word-spacing:49.357440px;}
.wsc9{word-spacing:50.054400px;}
.ws70{word-spacing:53.665920px;}
.wsc3{word-spacing:55.820160px;}
.wscb{word-spacing:56.517120px;}
.ws8a{word-spacing:57.214080px;}
.wsca{word-spacing:57.277440px;}
.ws8b{word-spacing:57.911040px;}
.ws6a{word-spacing:58.671360px;}
.wsae{word-spacing:60.825600px;}
.wsa0{word-spacing:62.979840px;}
.ws9f{word-spacing:63.740160px;}
.wse1{word-spacing:66.208320px;}
.wsbd{word-spacing:66.591360px;}
.wsd7{word-spacing:187.931520px;}
._16{margin-left:-25.961760px;}
._8{margin-left:-4.942080px;}
._5{margin-left:-3.336480px;}
._6{margin-left:-2.299680px;}
._2{margin-left:-1.285200px;}
._0{width:1.188000px;}
._1{width:2.516400px;}
._3{width:3.963600px;}
._4{width:6.066720px;}
._12{width:7.612560px;}
._a{width:9.060480px;}
._11{width:11.646720px;}
._10{width:12.816720px;}
._13{width:14.337360px;}
._c{width:16.410240px;}
._1d{width:17.429760px;}
._15{width:18.627840px;}
._9{width:20.118960px;}
._b{width:26.982720px;}
._e{width:28.647360px;}
._18{width:30.238560px;}
._f{width:32.567040px;}
._17{width:33.915600px;}
._1c{width:39.715200px;}
._d{width:44.053920px;}
._1f{width:50.408640px;}
._1e{width:57.875760px;}
._14{width:65.722320px;}
._1b{width:106.770240px;}
._1a{width:129.718224px;}
._19{width:164.269440px;}
._20{width:930.321360px;}
._7{width:1371.604320px;}
.fc3{color:rgb(59,56,56);}
.fc2{color:transparent;}
.fc1{color:rgb(13,13,13);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:18.000000px;}
.fsb{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fsd{font-size:51.120000px;}
.fse{font-size:54.000000px;}
.fs6{font-size:56.880000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:63.360000px;}
.fs0{font-size:72.000000px;}
.fs9{font-size:77.760000px;}
.fs8{font-size:84.240000px;}
.fsa{font-size:95.760000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:15.480000px;}
.y71{bottom:18.180000px;}
.y24{bottom:49.860000px;}
.y2fa{bottom:50.402880px;}
.y5{bottom:66.525004px;}
.y315{bottom:86.958000px;}
.y265{bottom:87.868800px;}
.y238{bottom:87.973920px;}
.ycd{bottom:94.017600px;}
.y1be{bottom:94.910400px;}
.y190{bottom:95.021280px;}
.y9f{bottom:95.142240px;}
.y2c1{bottom:95.160960px;}
.y1dd{bottom:95.171040px;}
.y20a{bottom:95.329440px;}
.y14a{bottom:95.760000px;}
.y166{bottom:95.934240px;}
.y293{bottom:96.285600px;}
.y4{bottom:97.125005px;}
.y6d{bottom:106.963200px;}
.y264{bottom:110.187360px;}
.y237{bottom:110.656800px;}
.y314{bottom:113.242500px;}
.ycc{bottom:116.510400px;}
.y1bd{bottom:117.403200px;}
.y18f{bottom:117.514080px;}
.y9e{bottom:117.635040px;}
.y2c0{bottom:117.653760px;}
.y1dc{bottom:117.663840px;}
.y209{bottom:118.012320px;}
.y149{bottom:118.252800px;}
.y165{bottom:118.427040px;}
.y292{bottom:118.778400px;}
.y6c{bottom:125.861580px;}
.y313{bottom:130.522500px;}
.y263{bottom:132.680160px;}
.y236{bottom:133.339680px;}
.ycb{bottom:139.003200px;}
.y21{bottom:139.264499px;}
.y1bc{bottom:139.896000px;}
.y18e{bottom:140.006880px;}
.y9d{bottom:140.127840px;}
.y2bf{bottom:140.146560px;}
.y1db{bottom:140.156640px;}
.y208{bottom:140.695200px;}
.y148{bottom:140.745600px;}
.y164{bottom:140.919840px;}
.y291{bottom:141.271200px;}
.y2f8{bottom:142.740000px;}
.y4c{bottom:144.361800px;}
.y6b{bottom:144.759960px;}
.y312{bottom:147.627000px;}
.y262{bottom:154.998720px;}
.y235{bottom:155.832480px;}
.yca{bottom:161.496000px;}
.y1bb{bottom:162.388800px;}
.y18d{bottom:162.499680px;}
.y9c{bottom:162.620640px;}
.y2be{bottom:162.639360px;}
.y1da{bottom:162.649440px;}
.y4b{bottom:163.075320px;}
.y207{bottom:163.188000px;}
.y147{bottom:163.238400px;}
.y163{bottom:163.412640px;}
.y6a{bottom:163.658340px;}
.y290{bottom:163.764000px;}
.y311{bottom:164.907000px;}
.y2f7{bottom:169.317000px;}
.y261{bottom:177.317280px;}
.y234{bottom:178.515360px;}
.y4a{bottom:181.788840px;}
.y69{bottom:182.556720px;}
.yc9{bottom:183.988800px;}
.y1ba{bottom:184.881600px;}
.y9b{bottom:185.113440px;}
.y2bd{bottom:185.132160px;}
.y1d9{bottom:185.142240px;}
.y146{bottom:185.731200px;}
.y206{bottom:185.870880px;}
.y28f{bottom:186.256800px;}
.y2f6{bottom:187.319520px;}
.y310{bottom:191.191500px;}
.y18c{bottom:194.005440px;}
.y162{bottom:194.918400px;}
.y18{bottom:196.933500px;}
.y260{bottom:199.635840px;}
.y49{bottom:200.502360px;}
.y233{bottom:201.198240px;}
.y68{bottom:201.639960px;}
.y2f5{bottom:205.322040px;}
.yc8{bottom:206.481600px;}
.y1b9{bottom:207.374400px;}
.y11d{bottom:207.499680px;}
.y9a{bottom:207.606240px;}
.y2bc{bottom:207.624960px;}
.y1d8{bottom:207.635040px;}
.y145{bottom:208.224000px;}
.y205{bottom:208.553760px;}
.y28e{bottom:208.749600px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y18b{bottom:216.498240px;}
.y161{bottom:217.411200px;}
.y30f{bottom:217.476000px;}
.y48{bottom:219.215880px;}
.y67{bottom:220.538340px;}
.y25f{bottom:221.954400px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y2f4{bottom:223.324560px;}
.y232{bottom:223.881120px;}
.yf5{bottom:225.478080px;}
.yc7{bottom:228.974400px;}
.y1b8{bottom:229.867200px;}
.y99{bottom:230.099040px;}
.y2bb{bottom:230.117760px;}
.y1d7{bottom:230.127840px;}
.y144{bottom:230.716800px;}
.y204{bottom:231.236640px;}
.y28d{bottom:231.242400px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y30e{bottom:234.756000px;}
.y47{bottom:238.114260px;}
.y18a{bottom:238.991040px;}
.y160{bottom:239.904000px;}
.y25e{bottom:244.272960px;}
.y231{bottom:246.564000px;}
.y66{bottom:246.816900px;}
.yf4{bottom:247.970880px;}
.y11c{bottom:248.002560px;}
.y2f3{bottom:250.328340px;}
.yc6{bottom:251.467200px;}
.y1b7{bottom:252.360000px;}
.y98{bottom:252.591840px;}
.y2ba{bottom:252.610560px;}
.y1d6{bottom:252.620640px;}
.y143{bottom:253.209600px;}
.y30d{bottom:256.531500px;}
.y46{bottom:256.827780px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y189{bottom:261.483840px;}
.y15f{bottom:262.396800px;}
.y28c{bottom:262.748160px;}
.y203{bottom:262.916640px;}
.y65{bottom:265.715280px;}
.y25d{bottom:266.765760px;}
.y2f2{bottom:268.330860px;}
.y230{bottom:269.246880px;}
.yf3{bottom:270.463680px;}
.y11b{bottom:270.685440px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.yc5{bottom:273.960000px;}
.y1b6{bottom:274.860000px;}
.y97{bottom:275.084640px;}
.y2b9{bottom:275.103360px;}
.y1d5{bottom:275.113440px;}
.y45{bottom:275.541300px;}
.y142{bottom:275.702400px;}
.y30c{bottom:281.007000px;}
.y188{bottom:283.976640px;}
.y64{bottom:284.613660px;}
.y15e{bottom:284.889600px;}
.y28b{bottom:284.892480px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y202{bottom:285.235200px;}
.y2f1{bottom:286.333380px;}
.y25c{bottom:289.084320px;}
.y22f{bottom:291.739680px;}
.yf2{bottom:292.956480px;}
.y11a{bottom:293.368320px;}
.y44{bottom:294.254820px;}
.y1b5{bottom:297.396000px;}
.y96{bottom:297.577440px;}
.y2b8{bottom:297.596160px;}
.y1d4{bottom:297.606240px;}
.y141{bottom:298.195200px;}
.y30b{bottom:299.002500px;}
.y63{bottom:303.512040px;}
.y2f0{bottom:304.335900px;}
.y187{bottom:306.469440px;}
.yc4{bottom:306.907200px;}
.y28a{bottom:307.211040px;}
.y15d{bottom:307.382400px;}
.y201{bottom:307.728000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y25b{bottom:311.402880px;}
.y43{bottom:312.968340px;}
.y22e{bottom:314.422560px;}
.yf1{bottom:315.449280px;}
.y119{bottom:316.051200px;}
.y30a{bottom:316.998000px;}
.y1b4{bottom:319.888800px;}
.y95{bottom:320.070240px;}
.y2b7{bottom:320.088960px;}
.y1d3{bottom:320.099040px;}
.y140{bottom:320.688000px;}
.y62{bottom:322.410420px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y186{bottom:328.962240px;}
.y289{bottom:329.355360px;}
.yc3{bottom:329.400000px;}
.y15c{bottom:329.875200px;}
.y200{bottom:330.046560px;}
.y2ef{bottom:331.339680px;}
.y42{bottom:331.681860px;}
.y25a{bottom:333.721440px;}
.y22d{bottom:337.105440px;}
.yf0{bottom:337.942080px;}
.y118{bottom:338.734080px;}
.y61{bottom:341.308800px;}
.y1b3{bottom:342.381600px;}
.y94{bottom:342.563040px;}
.y2b6{bottom:342.581760px;}
.y1d2{bottom:342.591840px;}
.y13f{bottom:343.180800px;}
.y309{bottom:343.998000px;}
.yf{bottom:348.133500px;}
.y2ee{bottom:349.342200px;}
.y41{bottom:350.580240px;}
.y185{bottom:351.455040px;}
.y288{bottom:351.499680px;}
.yc2{bottom:351.892800px;}
.y15b{bottom:352.368000px;}
.y1ff{bottom:352.539360px;}
.y259{bottom:356.040000px;}
.y22c{bottom:359.788320px;}
.y60{bottom:360.392040px;}
.yef{bottom:360.434880px;}
.y117{bottom:361.226880px;}
.y1b2{bottom:364.874400px;}
.y93{bottom:365.055840px;}
.y1d1{bottom:365.084640px;}
.y13e{bottom:365.673600px;}
.y2ed{bottom:367.344720px;}
.y40{bottom:369.293760px;}
.y287{bottom:373.818240px;}
.y184{bottom:373.947840px;}
.y2b5{bottom:374.087520px;}
.yc1{bottom:374.385600px;}
.y15a{bottom:374.860800px;}
.y1fe{bottom:375.032160px;}
.y5f{bottom:379.290420px;}
.y308{bottom:380.002500px;}
.y22b{bottom:382.471200px;}
.yee{bottom:382.927680px;}
.y116{bottom:383.909760px;}
.ye{bottom:386.785499px;}
.y1b1{bottom:387.367200px;}
.y92{bottom:387.548640px;}
.y1d0{bottom:387.577440px;}
.y3f{bottom:388.007280px;}
.y13d{bottom:388.166400px;}
.y258{bottom:388.441080px;}
.y2ec{bottom:394.348500px;}
.y286{bottom:395.962560px;}
.y183{bottom:396.440640px;}
.y2b4{bottom:396.580320px;}
.yc0{bottom:396.878400px;}
.y1fd{bottom:397.350720px;}
.y159{bottom:397.353600px;}
.y307{bottom:397.998000px;}
.y5e{bottom:398.188800px;}
.y22a{bottom:405.154080px;}
.yed{bottom:405.420480px;}
.y115{bottom:406.592640px;}
.yd{bottom:408.044999px;}
.y1b0{bottom:409.860000px;}
.y91{bottom:410.041440px;}
.y13c{bottom:410.659200px;}
.y2eb{bottom:412.351020px;}
.y257{bottom:415.440000px;}
.y3e{bottom:415.722060px;}
.y306{bottom:415.993500px;}
.y285{bottom:418.106880px;}
.y182{bottom:418.933440px;}
.y2b3{bottom:419.073120px;}
.y1cf{bottom:419.083200px;}
.ybf{bottom:419.371200px;}
.y1fc{bottom:419.843520px;}
.y158{bottom:419.846400px;}
.y5d{bottom:424.282500px;}
.y229{bottom:427.646880px;}
.yec{bottom:427.913280px;}
.y114{bottom:429.275520px;}
.y2ea{bottom:430.353540px;}
.y90{bottom:432.534240px;}
.y13b{bottom:433.152000px;}
.y3d{bottom:434.435580px;}
.y284{bottom:440.425440px;}
.y181{bottom:441.426240px;}
.y2b2{bottom:441.565920px;}
.y1ce{bottom:441.576000px;}
.y1af{bottom:441.743040px;}
.ybe{bottom:441.864000px;}
.y1fb{bottom:442.162080px;}
.y157{bottom:442.339200px;}
.y5c{bottom:443.180880px;}
.y228{bottom:450.329760px;}
.yeb{bottom:450.406080px;}
.y113{bottom:451.958400px;}
.y305{bottom:451.998000px;}
.y3c{bottom:453.149100px;}
.y8f{bottom:455.027040px;}
.y13a{bottom:455.644800px;}
.y2e9{bottom:457.357320px;}
.y256{bottom:459.390240px;}
.y5b{bottom:462.079260px;}
.y283{bottom:462.569760px;}
.y180{bottom:463.919040px;}
.y2b1{bottom:464.058720px;}
.y1cd{bottom:464.068800px;}
.y1ae{bottom:464.235840px;}
.ybd{bottom:464.356800px;}
.y1fa{bottom:464.654880px;}
.y156{bottom:464.832000px;}
.y304{bottom:469.453500px;}
.y3b{bottom:472.047480px;}
.yea{bottom:472.898880px;}
.y227{bottom:473.012640px;}
.y112{bottom:474.641280px;}
.y2e8{bottom:475.359840px;}
.y8e{bottom:477.519840px;}
.y139{bottom:478.137600px;}
.y5a{bottom:480.977640px;}
.y255{bottom:481.883040px;}
.y282{bottom:484.714080px;}
.y303{bottom:486.369000px;}
.y17f{bottom:486.411840px;}
.y2b0{bottom:486.551520px;}
.y1cc{bottom:486.561600px;}
.y1ad{bottom:486.728640px;}
.ybc{bottom:486.849600px;}
.y1f9{bottom:487.147680px;}
.y155{bottom:487.324800px;}
.y3a{bottom:490.761000px;}
.y2e7{bottom:493.362360px;}
.ye9{bottom:495.391680px;}
.y226{bottom:495.695520px;}
.y111{bottom:497.134080px;}
.y59{bottom:499.876020px;}
.y8d{bottom:500.012640px;}
.y138{bottom:500.630400px;}
.yc{bottom:502.864502px;}
.y254{bottom:504.201600px;}
.y281{bottom:507.032640px;}
.y17e{bottom:508.904640px;}
.y2af{bottom:509.044320px;}
.y1cb{bottom:509.054400px;}
.y1ac{bottom:509.221440px;}
.ybb{bottom:509.342400px;}
.y1f8{bottom:509.466240px;}
.y39{bottom:509.474520px;}
.y154{bottom:509.817600px;}
.ye8{bottom:517.884480px;}
.y58{bottom:518.774400px;}
.y110{bottom:519.816960px;}
.y2e6{bottom:520.366140px;}
.yb{bottom:520.864502px;}
.y8c{bottom:522.505440px;}
.y137{bottom:523.123200px;}
.y253{bottom:526.520160px;}
.y225{bottom:527.375520px;}
.y38{bottom:528.188040px;}
.y280{bottom:529.176960px;}
.y17d{bottom:531.397440px;}
.y2ae{bottom:531.537120px;}
.y1ca{bottom:531.547200px;}
.y1ab{bottom:531.714240px;}
.yba{bottom:531.835200px;}
.y1f7{bottom:531.959040px;}
.y153{bottom:532.310400px;}
.y57{bottom:537.672780px;}
.y2e5{bottom:538.368660px;}
.ya{bottom:538.864499px;}
.ye7{bottom:540.377280px;}
.y10f{bottom:542.499840px;}
.y8b{bottom:544.998240px;}
.y136{bottom:545.616000px;}
.y37{bottom:546.901560px;}
.y252{bottom:548.838720px;}
.y224{bottom:550.058400px;}
.y27f{bottom:551.321280px;}
.y17c{bottom:553.890240px;}
.y2ad{bottom:554.029920px;}
.y1c9{bottom:554.040000px;}
.y1aa{bottom:554.207040px;}
.y1f6{bottom:554.277600px;}
.yb9{bottom:554.328000px;}
.y152{bottom:554.803200px;}
.y2e4{bottom:556.371180px;}
.y56{bottom:556.571160px;}
.y9{bottom:556.864499px;}
.ye6{bottom:562.870080px;}
.y10e{bottom:565.182720px;}
.y36{bottom:565.615080px;}
.y135{bottom:568.108800px;}
.y251{bottom:571.157280px;}
.y223{bottom:572.551200px;}
.y27e{bottom:573.639840px;}
.y55{bottom:575.469540px;}
.y17b{bottom:576.383040px;}
.y8a{bottom:576.504000px;}
.y2ac{bottom:576.522720px;}
.y1c8{bottom:576.532800px;}
.y1a9{bottom:576.699840px;}
.y1f5{bottom:576.770400px;}
.yb8{bottom:576.820800px;}
.y2e3{bottom:583.374960px;}
.y35{bottom:584.513460px;}
.ye5{bottom:585.362880px;}
.y151{bottom:586.308960px;}
.y10d{bottom:587.865600px;}
.y134{bottom:590.601600px;}
.y250{bottom:593.475840px;}
.y54{bottom:594.552780px;}
.y222{bottom:595.234080px;}
.y27d{bottom:595.784160px;}
.y17a{bottom:598.875840px;}
.y89{bottom:598.996800px;}
.y2ab{bottom:599.015520px;}
.y1c7{bottom:599.025600px;}
.y1f4{bottom:599.088960px;}
.y1a8{bottom:599.192640px;}
.yb7{bottom:599.313600px;}
.y2e2{bottom:601.377480px;}
.y34{bottom:603.226980px;}
.ye4{bottom:607.855680px;}
.y150{bottom:608.801760px;}
.y10c{bottom:610.548480px;}
.y133{bottom:613.094400px;}
.y53{bottom:613.451160px;}
.y24f{bottom:615.968640px;}
.y221{bottom:617.916960px;}
.y27c{bottom:617.928480px;}
.y2e1{bottom:619.380000px;}
.y179{bottom:621.368640px;}
.y88{bottom:621.489600px;}
.y2aa{bottom:621.508320px;}
.y1c6{bottom:621.518400px;}
.y1f3{bottom:621.581760px;}
.y1a7{bottom:621.685440px;}
.yb6{bottom:621.806400px;}
.y33{bottom:621.940500px;}
.y14f{bottom:631.294560px;}
.y10b{bottom:633.041280px;}
.y132{bottom:635.587200px;}
.y24e{bottom:638.287200px;}
.ye3{bottom:639.361440px;}
.y52{bottom:639.729720px;}
.y27b{bottom:640.247040px;}
.y220{bottom:640.599840px;}
.y32{bottom:640.654020px;}
.y178{bottom:643.861440px;}
.y87{bottom:643.982400px;}
.y2a9{bottom:644.001120px;}
.y1c5{bottom:644.011200px;}
.y1f2{bottom:644.074560px;}
.y1a6{bottom:644.178240px;}
.yb5{bottom:644.299200px;}
.y8{bottom:645.510000px;}
.y2e0{bottom:646.377480px;}
.y14e{bottom:653.787360px;}
.y10a{bottom:655.724160px;}
.y131{bottom:658.080000px;}
.y51{bottom:658.628100px;}
.y31{bottom:659.367540px;}
.y24d{bottom:660.605760px;}
.ye2{bottom:661.680000px;}
.y27a{bottom:662.391360px;}
.y21f{bottom:663.282720px;}
.y2df{bottom:664.380000px;}
.y177{bottom:666.354240px;}
.y1f1{bottom:666.393120px;}
.y86{bottom:666.475200px;}
.y2a8{bottom:666.493920px;}
.y1c4{bottom:666.504000px;}
.y1a5{bottom:666.671040px;}
.y7{bottom:666.771000px;}
.yb4{bottom:666.792000px;}
.y14d{bottom:676.280160px;}
.y50{bottom:677.526480px;}
.y30{bottom:678.081060px;}
.y109{bottom:678.407040px;}
.y2de{bottom:682.380000px;}
.y24c{bottom:682.924320px;}
.ye1{bottom:683.998560px;}
.y279{bottom:684.535680px;}
.y21e{bottom:685.965600px;}
.y1f0{bottom:688.885920px;}
.y85{bottom:688.968000px;}
.y2a7{bottom:688.986720px;}
.y1c3{bottom:688.996800px;}
.y1a4{bottom:689.163840px;}
.yb3{bottom:689.284800px;}
.y130{bottom:690.661080px;}
.y4f{bottom:696.424860px;}
.y2f{bottom:696.979440px;}
.y176{bottom:697.860000px;}
.y14c{bottom:698.772960px;}
.y108{bottom:701.089920px;}
.y24b{bottom:705.242880px;}
.ye0{bottom:706.142880px;}
.y278{bottom:706.854240px;}
.y21d{bottom:708.458400px;}
.y2dd{bottom:709.380000px;}
.y1ef{bottom:711.204480px;}
.y84{bottom:711.460800px;}
.y2a6{bottom:711.479520px;}
.y1c2{bottom:711.489600px;}
.y1a3{bottom:711.656640px;}
.yb2{bottom:711.777600px;}
.y4e{bottom:715.323240px;}
.y2e{bottom:715.692960px;}
.y12f{bottom:717.660000px;}
.y14b{bottom:721.265760px;}
.y107{bottom:723.772800px;}
.y6{bottom:726.298500px;}
.y2dc{bottom:727.380000px;}
.y24a{bottom:727.561440px;}
.ydf{bottom:728.461440px;}
.y277{bottom:728.998560px;}
.y175{bottom:730.441080px;}
.y21c{bottom:731.141280px;}
.y1ee{bottom:733.697280px;}
.y83{bottom:733.953600px;}
.y2a5{bottom:733.972320px;}
.y1c1{bottom:733.982400px;}
.y1a2{bottom:734.149440px;}
.y4d{bottom:734.221620px;}
.yb1{bottom:734.270400px;}
.y2d{bottom:734.406480px;}
.y106{bottom:746.455680px;}
.y249{bottom:750.054240px;}
.yde{bottom:750.780000px;}
.y276{bottom:751.142880px;}
.y3{bottom:752.599495px;}
.y2c{bottom:753.120000px;}
.y21b{bottom:753.824160px;}
.y2db{bottom:754.368660px;}
.y1ed{bottom:756.190080px;}
.y82{bottom:756.446400px;}
.y2a4{bottom:756.465120px;}
.y1c0{bottom:756.475200px;}
.y1a1{bottom:756.642240px;}
.yb0{bottom:756.763200px;}
.y174{bottom:757.440000px;}
.y105{bottom:768.948480px;}
.y12e{bottom:769.860000px;}
.y2da{bottom:772.371180px;}
.y248{bottom:772.372800px;}
.ydd{bottom:773.098560px;}
.y275{bottom:773.461440px;}
.y21a{bottom:776.507040px;}
.y1ec{bottom:778.508640px;}
.y81{bottom:778.939200px;}
.y2a3{bottom:778.957920px;}
.y1bf{bottom:778.968000px;}
.y1a0{bottom:779.135040px;}
.yaf{bottom:779.256000px;}
.y2b{bottom:782.460000px;}
.y12d{bottom:784.440000px;}
.y2d9{bottom:790.373700px;}
.y104{bottom:791.631360px;}
.y247{bottom:794.691360px;}
.ydc{bottom:795.242880px;}
.y274{bottom:795.605760px;}
.y12c{bottom:796.320000px;}
.y219{bottom:799.189920px;}
.y1eb{bottom:801.001440px;}
.y80{bottom:801.432000px;}
.y2a2{bottom:801.450720px;}
.y173{bottom:801.460800px;}
.y19f{bottom:801.627840px;}
.yae{bottom:801.748800px;}
.y103{bottom:814.314240px;}
.y12b{bottom:814.320000px;}
.y2d8{bottom:817.377480px;}
.ydb{bottom:817.561440px;}
.y273{bottom:817.750080px;}
.y2a{bottom:818.098560px;}
.y218{bottom:821.872800px;}
.y1ea{bottom:823.320000px;}
.y7f{bottom:823.924800px;}
.y2a1{bottom:823.943520px;}
.y172{bottom:823.953600px;}
.y19e{bottom:824.120640px;}
.yad{bottom:824.241600px;}
.y246{bottom:826.007040px;}
.y2d7{bottom:835.380000px;}
.y102{bottom:836.997120px;}
.yda{bottom:839.880000px;}
.y272{bottom:840.068640px;}
.y29{bottom:840.953700px;}
.y12a{bottom:842.040000px;}
.y217{bottom:844.365600px;}
.y1e9{bottom:845.812800px;}
.y7e{bottom:846.417600px;}
.y2a0{bottom:846.436320px;}
.y171{bottom:846.446400px;}
.y19d{bottom:846.613440px;}
.yac{bottom:846.734400px;}
.y245{bottom:848.325600px;}
.y101{bottom:859.680000px;}
.y129{bottom:860.040000px;}
.yd9{bottom:862.198560px;}
.y271{bottom:862.212960px;}
.y2d6{bottom:862.380000px;}
.y216{bottom:867.048480px;}
.y1e8{bottom:868.131360px;}
.y7d{bottom:868.910400px;}
.y29f{bottom:868.929120px;}
.y170{bottom:868.939200px;}
.y19c{bottom:869.106240px;}
.yab{bottom:869.227200px;}
.y244{bottom:870.644160px;}
.y2{bottom:879.369000px;}
.y2d5{bottom:880.380000px;}
.y302{bottom:881.824500px;}
.y100{bottom:882.362880px;}
.yd8{bottom:884.342880px;}
.y270{bottom:884.357280px;}
.y128{bottom:887.760000px;}
.y215{bottom:889.731360px;}
.y1e7{bottom:890.624160px;}
.y7c{bottom:891.403200px;}
.y29e{bottom:891.421920px;}
.y16f{bottom:891.432000px;}
.y19b{bottom:891.599040px;}
.yaa{bottom:891.720000px;}
.y243{bottom:893.136960px;}
.y2d4{bottom:898.380000px;}
.y301{bottom:899.820000px;}
.y28{bottom:901.080000px;}
.yff{bottom:904.855680px;}
.y127{bottom:905.760000px;}
.yd7{bottom:906.661440px;}
.y26f{bottom:906.675840px;}
.y214{bottom:912.414240px;}
.y1e6{bottom:913.116960px;}
.y7b{bottom:913.896000px;}
.y29d{bottom:913.914720px;}
.y16e{bottom:913.924800px;}
.y19a{bottom:914.091840px;}
.ya9{bottom:914.212800px;}
.y242{bottom:915.455520px;}
.y2d3{bottom:925.358580px;}
.yd6{bottom:928.988640px;}
.y126{bottom:933.480000px;}
.y213{bottom:935.097120px;}
.y1e5{bottom:935.435520px;}
.y2ca{bottom:936.100800px;}
.y7a{bottom:936.388800px;}
.y29c{bottom:936.407520px;}
.y16d{bottom:936.417600px;}
.yfe{bottom:936.535680px;}
.y199{bottom:936.584640px;}
.ya8{bottom:936.705600px;}
.y241{bottom:937.774080px;}
.y26e{bottom:937.817280px;}
.y2d2{bottom:943.361100px;}
.yd5{bottom:951.307200px;}
.y125{bottom:951.480000px;}
.y212{bottom:957.780000px;}
.y1e4{bottom:957.928320px;}
.y79{bottom:958.881600px;}
.y29b{bottom:958.900320px;}
.y16c{bottom:958.910400px;}
.y2c9{bottom:958.957920px;}
.yfd{bottom:959.028480px;}
.y198{bottom:959.077440px;}
.ya7{bottom:959.198400px;}
.y240{bottom:960.092640px;}
.y26d{bottom:960.135840px;}
.y2d1{bottom:961.363620px;}
.y27{bottom:962.622000px;}
.y1{bottom:966.726000px;}
.yd4{bottom:973.451520px;}
.y124{bottom:979.200000px;}
.y2d0{bottom:979.366140px;}
.y1e3{bottom:980.246880px;}
.y211{bottom:980.272800px;}
.y78{bottom:981.374400px;}
.y29a{bottom:981.393120px;}
.y16b{bottom:981.403200px;}
.y2c8{bottom:981.450720px;}
.yfc{bottom:981.521280px;}
.y197{bottom:981.570240px;}
.ya6{bottom:981.691200px;}
.y23f{bottom:982.411200px;}
.y26c{bottom:982.454400px;}
.y26{bottom:994.131000px;}
.yd3{bottom:995.770080px;}
.y123{bottom:997.200000px;}
.y2cf{bottom:997.368660px;}
.y210{bottom:1002.955680px;}
.y77{bottom:1003.867200px;}
.y299{bottom:1003.885920px;}
.y16a{bottom:1003.896000px;}
.y2c7{bottom:1003.943520px;}
.yfb{bottom:1004.014080px;}
.y196{bottom:1004.063040px;}
.ya5{bottom:1004.184000px;}
.y23e{bottom:1004.729760px;}
.y26b{bottom:1004.772960px;}
.y300{bottom:1007.644500px;}
.y1e2{bottom:1011.752640px;}
.y122{bottom:1015.200000px;}
.yd2{bottom:1018.088640px;}
.y2ce{bottom:1024.372440px;}
.y20f{bottom:1025.638560px;}
.y25{bottom:1025.640000px;}
.y76{bottom:1026.360000px;}
.y298{bottom:1026.378720px;}
.y169{bottom:1026.388800px;}
.y2c6{bottom:1026.436320px;}
.yfa{bottom:1026.506880px;}
.y195{bottom:1026.555840px;}
.ya4{bottom:1026.676800px;}
.y23d{bottom:1027.222560px;}
.y26a{bottom:1027.265760px;}
.y2ff{bottom:1029.420000px;}
.y1e1{bottom:1034.245440px;}
.yd1{bottom:1040.407200px;}
.y2cd{bottom:1042.374960px;}
.y121{bottom:1042.920000px;}
.y2fe{bottom:1047.064500px;}
.y20e{bottom:1048.321440px;}
.y297{bottom:1048.871520px;}
.y168{bottom:1048.881600px;}
.y2c5{bottom:1048.929120px;}
.yf9{bottom:1048.999680px;}
.y194{bottom:1049.048640px;}
.ya3{bottom:1049.169600px;}
.y23c{bottom:1049.541120px;}
.y269{bottom:1049.584320px;}
.y75{bottom:1058.942160px;}
.y2cc{bottom:1060.377480px;}
.y120{bottom:1060.920000px;}
.yd0{bottom:1062.551520px;}
.y20d{bottom:1071.004320px;}
.y296{bottom:1071.364320px;}
.y167{bottom:1071.374400px;}
.y2c4{bottom:1071.421920px;}
.yf8{bottom:1071.492480px;}
.y193{bottom:1071.541440px;}
.ya2{bottom:1071.662400px;}
.y1e0{bottom:1071.691200px;}
.y23b{bottom:1071.859680px;}
.y268{bottom:1071.902880px;}
.y2cb{bottom:1078.380000px;}
.y70{bottom:1079.280000px;}
.y2fd{bottom:1081.989000px;}
.y6e{bottom:1083.420000px;}
.y74{bottom:1085.941080px;}
.y11f{bottom:1089.000000px;}
.y20c{bottom:1093.687200px;}
.y295{bottom:1093.857120px;}
.ycf{bottom:1093.867200px;}
.y2c3{bottom:1093.914720px;}
.yf7{bottom:1093.985280px;}
.y192{bottom:1094.034240px;}
.ya1{bottom:1094.155200px;}
.y23a{bottom:1094.178240px;}
.y1df{bottom:1094.184000px;}
.y267{bottom:1094.221440px;}
.y2fc{bottom:1103.764500px;}
.y73{bottom:1112.940000px;}
.y20b{bottom:1116.180000px;}
.y294{bottom:1116.349920px;}
.yce{bottom:1116.360000px;}
.y2c2{bottom:1116.407520px;}
.yf6{bottom:1116.478080px;}
.y239{bottom:1116.496800px;}
.y191{bottom:1116.527040px;}
.y266{bottom:1116.540000px;}
.ya0{bottom:1116.648000px;}
.y1de{bottom:1116.676800px;}
.y11e{bottom:1120.680000px;}
.y2fb{bottom:1121.220000px;}
.y23{bottom:1146.058560px;}
.y2f9{bottom:1184.040000px;}
.y72{bottom:1185.120000px;}
.y22{bottom:1193.040000px;}
.h14{height:13.122070px;}
.h7{height:32.130000px;}
.h15{height:37.266680px;}
.h10{height:37.620000px;}
.h18{height:39.313477px;}
.h17{height:39.366211px;}
.h12{height:41.040000px;}
.hf{height:41.410195px;}
.ha{height:41.465742px;}
.h6{height:45.900000px;}
.h13{height:46.127812px;}
.h9{height:46.189687px;}
.h3{height:48.195000px;}
.h2{height:55.080000px;}
.hd{height:56.611406px;}
.h16{height:60.925823px;}
.he{height:61.329023px;}
.hc{height:61.411289px;}
.h11{height:69.715898px;}
.h5{height:78.030000px;}
.hb{height:78.626953px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:306.000000px;}
.w5{width:306.180000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:15.120000px;}
.xb{left:68.580000px;}
.x7{left:84.960000px;}
.xf{left:93.060000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x4{left:203.484001px;}
.xd{left:216.000000px;}
.x8{left:321.300000px;}
.x10{left:432.540000px;}
.x9{left:446.347080px;}
.xe{left:450.705600px;}
.x3{left:454.959000px;}
.xa{left:463.453740px;}
.x5{left:480.420000px;}
.x6{left:784.801440px;}
@media print{
.v1{vertical-align:-5.150720pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:5.120000pt;}
.ls9{letter-spacing:-2.208000pt;}
.ls1a{letter-spacing:-1.858560pt;}
.ls52{letter-spacing:-1.466240pt;}
.ls1c{letter-spacing:-1.295360pt;}
.ls19{letter-spacing:-1.239040pt;}
.lsf{letter-spacing:-1.213440pt;}
.ls53{letter-spacing:-1.162880pt;}
.ls24{letter-spacing:-1.013760pt;}
.lse{letter-spacing:-0.960640pt;}
.ls2c{letter-spacing:-0.954240pt;}
.ls1b{letter-spacing:-0.901120pt;}
.ls16{letter-spacing:-0.898560pt;}
.ls6{letter-spacing:-0.864000pt;}
.ls39{letter-spacing:-0.844800pt;}
.lsc{letter-spacing:-0.808960pt;}
.ls5f{letter-spacing:-0.768000pt;}
.ls5e{letter-spacing:-0.720000pt;}
.lsa{letter-spacing:-0.673920pt;}
.ls61{letter-spacing:-0.672000pt;}
.ls18{letter-spacing:-0.619520pt;}
.lsb{letter-spacing:-0.606720pt;}
.ls17{letter-spacing:-0.599040pt;}
.ls10{letter-spacing:-0.595840pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls5c{letter-spacing:-0.528000pt;}
.ls2b{letter-spacing:-0.506880pt;}
.ls50{letter-spacing:-0.455040pt;}
.ls5d{letter-spacing:-0.432000pt;}
.ls7{letter-spacing:-0.384000pt;}
.ls51{letter-spacing:-0.353920pt;}
.ls23{letter-spacing:-0.337920pt;}
.lsd{letter-spacing:-0.303360pt;}
.ls2d{letter-spacing:-0.299520pt;}
.ls22{letter-spacing:-0.281600pt;}
.ls57{letter-spacing:-0.202240pt;}
.ls2a{letter-spacing:-0.168960pt;}
.ls56{letter-spacing:-0.050560pt;}
.ls0{letter-spacing:0.000000pt;}
.ls47{letter-spacing:0.010112pt;}
.ls4b{letter-spacing:0.050560pt;}
.ls1e{letter-spacing:0.056320pt;}
.ls5b{letter-spacing:0.096000pt;}
.ls5a{letter-spacing:0.110400pt;}
.ls1{letter-spacing:0.192000pt;}
.ls60{letter-spacing:0.240000pt;}
.ls2e{letter-spacing:0.281600pt;}
.ls33{letter-spacing:0.303360pt;}
.ls62{letter-spacing:0.336000pt;}
.ls32{letter-spacing:0.337920pt;}
.ls4d{letter-spacing:0.353920pt;}
.ls4f{letter-spacing:0.455040pt;}
.ls4c{letter-spacing:0.566272pt;}
.ls54{letter-spacing:0.606720pt;}
.ls55{letter-spacing:0.657280pt;}
.ls11{letter-spacing:0.707840pt;}
.ls15{letter-spacing:0.859520pt;}
.ls49{letter-spacing:1.011200pt;}
.ls59{letter-spacing:1.392000pt;}
.ls12{letter-spacing:2.252800pt;}
.ls34{letter-spacing:2.669568pt;}
.ls13{letter-spacing:3.153920pt;}
.ls1d{letter-spacing:3.548160pt;}
.ls38{letter-spacing:3.722752pt;}
.ls40{letter-spacing:4.167680pt;}
.ls42{letter-spacing:4.409856pt;}
.ls29{letter-spacing:5.575680pt;}
.ls5{letter-spacing:6.421120pt;}
.ls1f{letter-spacing:7.220224pt;}
.ls2{letter-spacing:7.285696pt;}
.ls31{letter-spacing:7.997440pt;}
.ls3d{letter-spacing:8.673280pt;}
.ls4a{letter-spacing:9.606400pt;}
.ls3e{letter-spacing:10.988032pt;}
.ls41{letter-spacing:11.207680pt;}
.ls58{letter-spacing:11.568000pt;}
.ls45{letter-spacing:11.578240pt;}
.ls37{letter-spacing:12.013056pt;}
.ls28{letter-spacing:13.122560pt;}
.ls4{letter-spacing:14.106240pt;}
.ls20{letter-spacing:14.187008pt;}
.ls46{letter-spacing:15.769664pt;}
.ls3c{letter-spacing:15.887872pt;}
.ls4e{letter-spacing:16.684800pt;}
.ls36{letter-spacing:18.923520pt;}
.ls2f{letter-spacing:19.543040pt;}
.ls3f{letter-spacing:21.660672pt;}
.ls3b{letter-spacing:22.753280pt;}
.ls3{letter-spacing:23.712640pt;}
.ls35{letter-spacing:24.668160pt;}
.ls3a{letter-spacing:39.508480pt;}
.ls30{letter-spacing:40.150528pt;}
.ls14{letter-spacing:50.913280pt;}
.ls48{letter-spacing:166.443520pt;}
.ls26{letter-spacing:241.293440pt;}
.ls27{letter-spacing:439.084160pt;}
.ls25{letter-spacing:641.324160pt;}
.ls21{letter-spacing:752.322560pt;}
.ls43{letter-spacing:752.343040pt;}
.ls44{letter-spacing:1204.490880pt;}
.ws8{word-spacing:-50.560000pt;}
.ws2{word-spacing:-26.688000pt;}
.ws3{word-spacing:-26.112000pt;}
.ws1{word-spacing:-25.824000pt;}
.ws4{word-spacing:-24.480000pt;}
.ws9{word-spacing:-23.067520pt;}
.ws35{word-spacing:-20.816640pt;}
.ws36{word-spacing:-20.217600pt;}
.ws5{word-spacing:-20.142720pt;}
.ws34{word-spacing:-19.918080pt;}
.ws94{word-spacing:-15.938560pt;}
.ws75{word-spacing:-15.713280pt;}
.ws37{word-spacing:-15.656960pt;}
.wsc4{word-spacing:-15.488000pt;}
.wsb9{word-spacing:-15.319040pt;}
.ws95{word-spacing:-15.150080pt;}
.ws38{word-spacing:-15.037440pt;}
.wsb8{word-spacing:-14.812160pt;}
.ws33{word-spacing:-14.763520pt;}
.wsab{word-spacing:-14.755840pt;}
.wsd2{word-spacing:-14.712960pt;}
.ws77{word-spacing:-14.643200pt;}
.ws39{word-spacing:-14.417920pt;}
.ws76{word-spacing:-14.361600pt;}
.wscf{word-spacing:-14.106240pt;}
.ws6{word-spacing:-14.055680pt;}
.wsd0{word-spacing:-14.005120pt;}
.wsd1{word-spacing:-13.853440pt;}
.wsce{word-spacing:-13.701760pt;}
.wse7{word-spacing:-13.536000pt;}
.ws7{word-spacing:-13.448960pt;}
.wse8{word-spacing:-13.440000pt;}
.wse5{word-spacing:-13.344000pt;}
.wscd{word-spacing:-13.246720pt;}
.wscc{word-spacing:-13.095040pt;}
.wse6{word-spacing:-12.912000pt;}
.wse4{word-spacing:-12.624000pt;}
.ws74{word-spacing:-10.319360pt;}
.ws69{word-spacing:-4.167680pt;}
.wsf3{word-spacing:-3.936000pt;}
.ws66{word-spacing:-3.548160pt;}
.ws41{word-spacing:-3.491840pt;}
.wsf4{word-spacing:-3.312000pt;}
.wsf1{word-spacing:-3.264000pt;}
.wsa1{word-spacing:-2.928640pt;}
.ws63{word-spacing:-2.872320pt;}
.ws1e{word-spacing:-2.578560pt;}
.ws4b{word-spacing:-2.252800pt;}
.ws30{word-spacing:-1.971840pt;}
.ws22{word-spacing:-1.921280pt;}
.wsb3{word-spacing:-1.858560pt;}
.ws64{word-spacing:-1.633280pt;}
.ws53{word-spacing:-1.576960pt;}
.ws93{word-spacing:-1.295360pt;}
.ws12{word-spacing:-1.264000pt;}
.ws3b{word-spacing:-0.957440pt;}
.ws3a{word-spacing:-0.808960pt;}
.wsf7{word-spacing:-0.720000pt;}
.wsd3{word-spacing:-0.707840pt;}
.ws2b{word-spacing:-0.657280pt;}
.ws97{word-spacing:-0.394240pt;}
.ws49{word-spacing:-0.337920pt;}
.wsf8{word-spacing:-0.336000pt;}
.ws50{word-spacing:-0.281600pt;}
.wsad{word-spacing:-0.252800pt;}
.wsac{word-spacing:-0.202240pt;}
.wsf2{word-spacing:-0.192000pt;}
.wseb{word-spacing:-0.096000pt;}
.wsc1{word-spacing:-0.074880pt;}
.ws7c{word-spacing:-0.056320pt;}
.wsd9{word-spacing:-0.050560pt;}
.ws0{word-spacing:0.000000pt;}
.wsdd{word-spacing:0.050560pt;}
.wsf6{word-spacing:0.096000pt;}
.ws96{word-spacing:0.168960pt;}
.ws98{word-spacing:0.202240pt;}
.ws81{word-spacing:0.281600pt;}
.ws28{word-spacing:0.303360pt;}
.ws62{word-spacing:0.337920pt;}
.wsb{word-spacing:0.374400pt;}
.wsec{word-spacing:0.432000pt;}
.wsd4{word-spacing:0.455040pt;}
.ws9a{word-spacing:0.499840pt;}
.wsf9{word-spacing:0.576000pt;}
.ws21{word-spacing:0.606720pt;}
.ws43{word-spacing:0.619520pt;}
.ws29{word-spacing:0.657280pt;}
.wsf5{word-spacing:0.672000pt;}
.ws9b{word-spacing:0.673920pt;}
.wsed{word-spacing:0.768000pt;}
.ws99{word-spacing:0.859520pt;}
.wsa{word-spacing:0.864000pt;}
.wsb1{word-spacing:0.898560pt;}
.wsa9{word-spacing:0.901120pt;}
.ws60{word-spacing:0.957440pt;}
.wsdc{word-spacing:1.162880pt;}
.wsda{word-spacing:1.213440pt;}
.ws68{word-spacing:1.239040pt;}
.ws15{word-spacing:1.264000pt;}
.ws87{word-spacing:1.576960pt;}
.ws3e{word-spacing:1.633280pt;}
.wsef{word-spacing:1.824000pt;}
.wsee{word-spacing:1.920000pt;}
.wsf{word-spacing:1.921280pt;}
.ws4c{word-spacing:2.252800pt;}
.ws4d{word-spacing:2.534400pt;}
.ws19{word-spacing:2.578560pt;}
.ws52{word-spacing:2.872320pt;}
.ws1a{word-spacing:3.185280pt;}
.ws7b{word-spacing:3.491840pt;}
.ws3c{word-spacing:3.548160pt;}
.ws40{word-spacing:4.167680pt;}
.ws67{word-spacing:4.224000pt;}
.wsc7{word-spacing:4.449280pt;}
.wsd{word-spacing:4.499840pt;}
.ws91{word-spacing:4.505600pt;}
.ws5b{word-spacing:4.787200pt;}
.wsc{word-spacing:5.106560pt;}
.ws90{word-spacing:5.181440pt;}
.ws65{word-spacing:5.406720pt;}
.ws4a{word-spacing:5.463040pt;}
.wsaa{word-spacing:5.744640pt;}
.wsdf{word-spacing:5.763840pt;}
.ws45{word-spacing:6.082560pt;}
.ws11{word-spacing:6.421120pt;}
.ws48{word-spacing:6.702080pt;}
.ws59{word-spacing:6.758400pt;}
.wse{word-spacing:7.027840pt;}
.ws82{word-spacing:7.321600pt;}
.ws4e{word-spacing:7.377920pt;}
.wse3{word-spacing:7.685120pt;}
.ws55{word-spacing:7.997440pt;}
.ws16{word-spacing:8.342400pt;}
.ws88{word-spacing:8.616960pt;}
.ws5f{word-spacing:8.673280pt;}
.wsf0{word-spacing:8.880000pt;}
.ws2c{word-spacing:8.949120pt;}
.ws9e{word-spacing:9.236480pt;}
.ws42{word-spacing:9.292800pt;}
.ws2d{word-spacing:9.303040pt;}
.ws2f{word-spacing:9.606400pt;}
.ws2e{word-spacing:9.808640pt;}
.ws5d{word-spacing:9.912320pt;}
.ws1c{word-spacing:10.263680pt;}
.ws7e{word-spacing:10.531840pt;}
.ws46{word-spacing:10.588160pt;}
.ws73{word-spacing:10.869760pt;}
.ws1d{word-spacing:10.870400pt;}
.ws4f{word-spacing:11.207680pt;}
.ws3f{word-spacing:11.827200pt;}
.wsea{word-spacing:12.048000pt;}
.wsdb{word-spacing:12.134400pt;}
.wse9{word-spacing:12.144000pt;}
.wsd5{word-spacing:12.184960pt;}
.ws7d{word-spacing:12.446720pt;}
.ws54{word-spacing:12.503040pt;}
.ws13{word-spacing:12.791680pt;}
.wsbe{word-spacing:12.840960pt;}
.ws72{word-spacing:13.122560pt;}
.ws1f{word-spacing:13.448960pt;}
.ws6c{word-spacing:13.742080pt;}
.ws9c{word-spacing:13.798400pt;}
.ws84{word-spacing:14.080000pt;}
.ws20{word-spacing:14.106240pt;}
.ws92{word-spacing:14.417920pt;}
.wsfa{word-spacing:14.640000pt;}
.wsb4{word-spacing:14.699520pt;}
.ws27{word-spacing:14.712960pt;}
.wsa7{word-spacing:15.037440pt;}
.ws2a{word-spacing:15.370240pt;}
.ws6b{word-spacing:15.656960pt;}
.ws3d{word-spacing:15.713280pt;}
.wsd6{word-spacing:15.976960pt;}
.ws7f{word-spacing:16.276480pt;}
.wsbc{word-spacing:16.332800pt;}
.wse2{word-spacing:16.583680pt;}
.ws8f{word-spacing:16.952320pt;}
.wsde{word-spacing:17.240960pt;}
.ws10{word-spacing:17.291520pt;}
.ws86{word-spacing:17.571840pt;}
.ws44{word-spacing:17.628160pt;}
.ws26{word-spacing:18.100480pt;}
.ws78{word-spacing:18.191360pt;}
.ws5a{word-spacing:18.247680pt;}
.ws14{word-spacing:18.555520pt;}
.ws79{word-spacing:18.867200pt;}
.ws18{word-spacing:19.212800pt;}
.ws6d{word-spacing:19.486720pt;}
.ws56{word-spacing:19.543040pt;}
.ws1b{word-spacing:19.819520pt;}
.ws5c{word-spacing:20.162560pt;}
.ws57{word-spacing:20.218880pt;}
.ws32{word-spacing:20.476800pt;}
.wsa8{word-spacing:20.838400pt;}
.wsb2{word-spacing:21.457920pt;}
.ws51{word-spacing:22.077440pt;}
.ws80{word-spacing:22.696960pt;}
.ws9d{word-spacing:22.753280pt;}
.ws85{word-spacing:23.316480pt;}
.wsb7{word-spacing:23.372800pt;}
.ws24{word-spacing:23.662080pt;}
.ws5e{word-spacing:23.992320pt;}
.wsa2{word-spacing:24.611840pt;}
.ws58{word-spacing:24.668160pt;}
.wsa6{word-spacing:25.287680pt;}
.ws8d{word-spacing:25.907200pt;}
.ws31{word-spacing:26.240640pt;}
.wsc5{word-spacing:26.526720pt;}
.ws71{word-spacing:26.583040pt;}
.ws25{word-spacing:26.897920pt;}
.wsbb{word-spacing:27.202560pt;}
.ws83{word-spacing:27.822080pt;}
.wsb0{word-spacing:27.878400pt;}
.wsba{word-spacing:28.497920pt;}
.ws47{word-spacing:29.117440pt;}
.wsa3{word-spacing:29.793280pt;}
.ws23{word-spacing:30.083200pt;}
.ws8e{word-spacing:31.032320pt;}
.ws8c{word-spacing:31.651840pt;}
.ws61{word-spacing:31.708160pt;}
.wsa5{word-spacing:32.947200pt;}
.wsc8{word-spacing:33.623040pt;}
.ws89{word-spacing:34.242560pt;}
.wse0{word-spacing:34.532480pt;}
.wsbf{word-spacing:34.918400pt;}
.ws6e{word-spacing:35.537920pt;}
.ws6f{word-spacing:36.157440pt;}
.wsd8{word-spacing:36.504320pt;}
.wsc6{word-spacing:36.776960pt;}
.ws7a{word-spacing:38.072320pt;}
.wsb6{word-spacing:39.367680pt;}
.wsc0{word-spacing:39.987200pt;}
.wsb5{word-spacing:40.663040pt;}
.ws17{word-spacing:40.953600pt;}
.wsaf{word-spacing:41.958400pt;}
.wsa4{word-spacing:43.197440pt;}
.wsc2{word-spacing:43.873280pt;}
.wsc9{word-spacing:44.492800pt;}
.ws70{word-spacing:47.703040pt;}
.wsc3{word-spacing:49.617920pt;}
.wscb{word-spacing:50.237440pt;}
.ws8a{word-spacing:50.856960pt;}
.wsca{word-spacing:50.913280pt;}
.ws8b{word-spacing:51.476480pt;}
.ws6a{word-spacing:52.152320pt;}
.wsae{word-spacing:54.067200pt;}
.wsa0{word-spacing:55.982080pt;}
.ws9f{word-spacing:56.657920pt;}
.wse1{word-spacing:58.851840pt;}
.wsbd{word-spacing:59.192320pt;}
.wsd7{word-spacing:167.050240pt;}
._16{margin-left:-23.077120pt;}
._8{margin-left:-4.392960pt;}
._5{margin-left:-2.965760pt;}
._6{margin-left:-2.044160pt;}
._2{margin-left:-1.142400pt;}
._0{width:1.056000pt;}
._1{width:2.236800pt;}
._3{width:3.523200pt;}
._4{width:5.392640pt;}
._12{width:6.766720pt;}
._a{width:8.053760pt;}
._11{width:10.352640pt;}
._10{width:11.392640pt;}
._13{width:12.744320pt;}
._c{width:14.586880pt;}
._1d{width:15.493120pt;}
._15{width:16.558080pt;}
._9{width:17.883520pt;}
._b{width:23.984640pt;}
._e{width:25.464320pt;}
._18{width:26.878720pt;}
._f{width:28.948480pt;}
._17{width:30.147200pt;}
._1c{width:35.302400pt;}
._d{width:39.159040pt;}
._1f{width:44.807680pt;}
._1e{width:51.445120pt;}
._14{width:58.419840pt;}
._1b{width:94.906880pt;}
._1a{width:115.305088pt;}
._19{width:146.017280pt;}
._20{width:826.952320pt;}
._7{width:1219.203840pt;}
.fsc{font-size:16.000000pt;}
.fsb{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fsd{font-size:45.440000pt;}
.fse{font-size:48.000000pt;}
.fs6{font-size:50.560000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:56.320000pt;}
.fs0{font-size:64.000000pt;}
.fs9{font-size:69.120000pt;}
.fs8{font-size:74.880000pt;}
.fsa{font-size:85.120000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:13.760000pt;}
.y71{bottom:16.160000pt;}
.y24{bottom:44.320000pt;}
.y2fa{bottom:44.802560pt;}
.y5{bottom:59.133337pt;}
.y315{bottom:77.296000pt;}
.y265{bottom:78.105600pt;}
.y238{bottom:78.199040pt;}
.ycd{bottom:83.571200pt;}
.y1be{bottom:84.364800pt;}
.y190{bottom:84.463360pt;}
.y9f{bottom:84.570880pt;}
.y2c1{bottom:84.587520pt;}
.y1dd{bottom:84.596480pt;}
.y20a{bottom:84.737280pt;}
.y14a{bottom:85.120000pt;}
.y166{bottom:85.274880pt;}
.y293{bottom:85.587200pt;}
.y4{bottom:86.333337pt;}
.y6d{bottom:95.078400pt;}
.y264{bottom:97.944320pt;}
.y237{bottom:98.361600pt;}
.y314{bottom:100.660000pt;}
.ycc{bottom:103.564800pt;}
.y1bd{bottom:104.358400pt;}
.y18f{bottom:104.456960pt;}
.y9e{bottom:104.564480pt;}
.y2c0{bottom:104.581120pt;}
.y1dc{bottom:104.590080pt;}
.y209{bottom:104.899840pt;}
.y149{bottom:105.113600pt;}
.y165{bottom:105.268480pt;}
.y292{bottom:105.580800pt;}
.y6c{bottom:111.876960pt;}
.y313{bottom:116.020000pt;}
.y263{bottom:117.937920pt;}
.y236{bottom:118.524160pt;}
.ycb{bottom:123.558400pt;}
.y21{bottom:123.790666pt;}
.y1bc{bottom:124.352000pt;}
.y18e{bottom:124.450560pt;}
.y9d{bottom:124.558080pt;}
.y2bf{bottom:124.574720pt;}
.y1db{bottom:124.583680pt;}
.y208{bottom:125.062400pt;}
.y148{bottom:125.107200pt;}
.y164{bottom:125.262080pt;}
.y291{bottom:125.574400pt;}
.y2f8{bottom:126.880000pt;}
.y4c{bottom:128.321600pt;}
.y6b{bottom:128.675520pt;}
.y312{bottom:131.224000pt;}
.y262{bottom:137.776640pt;}
.y235{bottom:138.517760pt;}
.yca{bottom:143.552000pt;}
.y1bb{bottom:144.345600pt;}
.y18d{bottom:144.444160pt;}
.y9c{bottom:144.551680pt;}
.y2be{bottom:144.568320pt;}
.y1da{bottom:144.577280pt;}
.y4b{bottom:144.955840pt;}
.y207{bottom:145.056000pt;}
.y147{bottom:145.100800pt;}
.y163{bottom:145.255680pt;}
.y6a{bottom:145.474080pt;}
.y290{bottom:145.568000pt;}
.y311{bottom:146.584000pt;}
.y2f7{bottom:150.504000pt;}
.y261{bottom:157.615360pt;}
.y234{bottom:158.680320pt;}
.y4a{bottom:161.590080pt;}
.y69{bottom:162.272640pt;}
.yc9{bottom:163.545600pt;}
.y1ba{bottom:164.339200pt;}
.y9b{bottom:164.545280pt;}
.y2bd{bottom:164.561920pt;}
.y1d9{bottom:164.570880pt;}
.y146{bottom:165.094400pt;}
.y206{bottom:165.218560pt;}
.y28f{bottom:165.561600pt;}
.y2f6{bottom:166.506240pt;}
.y310{bottom:169.948000pt;}
.y18c{bottom:172.449280pt;}
.y162{bottom:173.260800pt;}
.y18{bottom:175.052000pt;}
.y260{bottom:177.454080pt;}
.y49{bottom:178.224320pt;}
.y233{bottom:178.842880pt;}
.y68{bottom:179.235520pt;}
.y2f5{bottom:182.508480pt;}
.yc8{bottom:183.539200pt;}
.y1b9{bottom:184.332800pt;}
.y11d{bottom:184.444160pt;}
.y9a{bottom:184.538880pt;}
.y2bc{bottom:184.555520pt;}
.y1d8{bottom:184.564480pt;}
.y145{bottom:185.088000pt;}
.y205{bottom:185.381120pt;}
.y28e{bottom:185.555200pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y18b{bottom:192.442880pt;}
.y161{bottom:193.254400pt;}
.y30f{bottom:193.312000pt;}
.y48{bottom:194.858560pt;}
.y67{bottom:196.034080pt;}
.y25f{bottom:197.292800pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y2f4{bottom:198.510720pt;}
.y232{bottom:199.005440pt;}
.yf5{bottom:200.424960pt;}
.yc7{bottom:203.532800pt;}
.y1b8{bottom:204.326400pt;}
.y99{bottom:204.532480pt;}
.y2bb{bottom:204.549120pt;}
.y1d7{bottom:204.558080pt;}
.y144{bottom:205.081600pt;}
.y204{bottom:205.543680pt;}
.y28d{bottom:205.548800pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y30e{bottom:208.672000pt;}
.y47{bottom:211.657120pt;}
.y18a{bottom:212.436480pt;}
.y160{bottom:213.248000pt;}
.y25e{bottom:217.131520pt;}
.y231{bottom:219.168000pt;}
.y66{bottom:219.392800pt;}
.yf4{bottom:220.418560pt;}
.y11c{bottom:220.446720pt;}
.y2f3{bottom:222.514080pt;}
.yc6{bottom:223.526400pt;}
.y1b7{bottom:224.320000pt;}
.y98{bottom:224.526080pt;}
.y2ba{bottom:224.542720pt;}
.y1d6{bottom:224.551680pt;}
.y143{bottom:225.075200pt;}
.y30d{bottom:228.028000pt;}
.y46{bottom:228.291360pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y189{bottom:232.430080pt;}
.y15f{bottom:233.241600pt;}
.y28c{bottom:233.553920pt;}
.y203{bottom:233.703680pt;}
.y65{bottom:236.191360pt;}
.y25d{bottom:237.125120pt;}
.y2f2{bottom:238.516320pt;}
.y230{bottom:239.330560pt;}
.yf3{bottom:240.412160pt;}
.y11b{bottom:240.609280pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.yc5{bottom:243.520000pt;}
.y1b6{bottom:244.320000pt;}
.y97{bottom:244.519680pt;}
.y2b9{bottom:244.536320pt;}
.y1d5{bottom:244.545280pt;}
.y45{bottom:244.925600pt;}
.y142{bottom:245.068800pt;}
.y30c{bottom:249.784000pt;}
.y188{bottom:252.423680pt;}
.y64{bottom:252.989920pt;}
.y15e{bottom:253.235200pt;}
.y28b{bottom:253.237760pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y202{bottom:253.542400pt;}
.y2f1{bottom:254.518560pt;}
.y25c{bottom:256.963840pt;}
.y22f{bottom:259.324160pt;}
.yf2{bottom:260.405760pt;}
.y11a{bottom:260.771840pt;}
.y44{bottom:261.559840pt;}
.y1b5{bottom:264.352000pt;}
.y96{bottom:264.513280pt;}
.y2b8{bottom:264.529920pt;}
.y1d4{bottom:264.538880pt;}
.y141{bottom:265.062400pt;}
.y30b{bottom:265.780000pt;}
.y63{bottom:269.788480pt;}
.y2f0{bottom:270.520800pt;}
.y187{bottom:272.417280pt;}
.yc4{bottom:272.806400pt;}
.y28a{bottom:273.076480pt;}
.y15d{bottom:273.228800pt;}
.y201{bottom:273.536000pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y25b{bottom:276.802560pt;}
.y43{bottom:278.194080pt;}
.y22e{bottom:279.486720pt;}
.yf1{bottom:280.399360pt;}
.y119{bottom:280.934400pt;}
.y30a{bottom:281.776000pt;}
.y1b4{bottom:284.345600pt;}
.y95{bottom:284.506880pt;}
.y2b7{bottom:284.523520pt;}
.y1d3{bottom:284.532480pt;}
.y140{bottom:285.056000pt;}
.y62{bottom:286.587040pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y186{bottom:292.410880pt;}
.y289{bottom:292.760320pt;}
.yc3{bottom:292.800000pt;}
.y15c{bottom:293.222400pt;}
.y200{bottom:293.374720pt;}
.y2ef{bottom:294.524160pt;}
.y42{bottom:294.828320pt;}
.y25a{bottom:296.641280pt;}
.y22d{bottom:299.649280pt;}
.yf0{bottom:300.392960pt;}
.y118{bottom:301.096960pt;}
.y61{bottom:303.385600pt;}
.y1b3{bottom:304.339200pt;}
.y94{bottom:304.500480pt;}
.y2b6{bottom:304.517120pt;}
.y1d2{bottom:304.526080pt;}
.y13f{bottom:305.049600pt;}
.y309{bottom:305.776000pt;}
.yf{bottom:309.452000pt;}
.y2ee{bottom:310.526400pt;}
.y41{bottom:311.626880pt;}
.y185{bottom:312.404480pt;}
.y288{bottom:312.444160pt;}
.yc2{bottom:312.793600pt;}
.y15b{bottom:313.216000pt;}
.y1ff{bottom:313.368320pt;}
.y259{bottom:316.480000pt;}
.y22c{bottom:319.811840pt;}
.y60{bottom:320.348480pt;}
.yef{bottom:320.386560pt;}
.y117{bottom:321.090560pt;}
.y1b2{bottom:324.332800pt;}
.y93{bottom:324.494080pt;}
.y1d1{bottom:324.519680pt;}
.y13e{bottom:325.043200pt;}
.y2ed{bottom:326.528640pt;}
.y40{bottom:328.261120pt;}
.y287{bottom:332.282880pt;}
.y184{bottom:332.398080pt;}
.y2b5{bottom:332.522240pt;}
.yc1{bottom:332.787200pt;}
.y15a{bottom:333.209600pt;}
.y1fe{bottom:333.361920pt;}
.y5f{bottom:337.147040pt;}
.y308{bottom:337.780000pt;}
.y22b{bottom:339.974400pt;}
.yee{bottom:340.380160pt;}
.y116{bottom:341.253120pt;}
.ye{bottom:343.809333pt;}
.y1b1{bottom:344.326400pt;}
.y92{bottom:344.487680pt;}
.y1d0{bottom:344.513280pt;}
.y3f{bottom:344.895360pt;}
.y13d{bottom:345.036800pt;}
.y258{bottom:345.280960pt;}
.y2ec{bottom:350.532000pt;}
.y286{bottom:351.966720pt;}
.y183{bottom:352.391680pt;}
.y2b4{bottom:352.515840pt;}
.yc0{bottom:352.780800pt;}
.y1fd{bottom:353.200640pt;}
.y159{bottom:353.203200pt;}
.y307{bottom:353.776000pt;}
.y5e{bottom:353.945600pt;}
.y22a{bottom:360.136960pt;}
.yed{bottom:360.373760pt;}
.y115{bottom:361.415680pt;}
.yd{bottom:362.706666pt;}
.y1b0{bottom:364.320000pt;}
.y91{bottom:364.481280pt;}
.y13c{bottom:365.030400pt;}
.y2eb{bottom:366.534240pt;}
.y257{bottom:369.280000pt;}
.y3e{bottom:369.530720pt;}
.y306{bottom:369.772000pt;}
.y285{bottom:371.650560pt;}
.y182{bottom:372.385280pt;}
.y2b3{bottom:372.509440pt;}
.y1cf{bottom:372.518400pt;}
.ybf{bottom:372.774400pt;}
.y1fc{bottom:373.194240pt;}
.y158{bottom:373.196800pt;}
.y5d{bottom:377.140000pt;}
.y229{bottom:380.130560pt;}
.yec{bottom:380.367360pt;}
.y114{bottom:381.578240pt;}
.y2ea{bottom:382.536480pt;}
.y90{bottom:384.474880pt;}
.y13b{bottom:385.024000pt;}
.y3d{bottom:386.164960pt;}
.y284{bottom:391.489280pt;}
.y181{bottom:392.378880pt;}
.y2b2{bottom:392.503040pt;}
.y1ce{bottom:392.512000pt;}
.y1af{bottom:392.660480pt;}
.ybe{bottom:392.768000pt;}
.y1fb{bottom:393.032960pt;}
.y157{bottom:393.190400pt;}
.y5c{bottom:393.938560pt;}
.y228{bottom:400.293120pt;}
.yeb{bottom:400.360960pt;}
.y113{bottom:401.740800pt;}
.y305{bottom:401.776000pt;}
.y3c{bottom:402.799200pt;}
.y8f{bottom:404.468480pt;}
.y13a{bottom:405.017600pt;}
.y2e9{bottom:406.539840pt;}
.y256{bottom:408.346880pt;}
.y5b{bottom:410.737120pt;}
.y283{bottom:411.173120pt;}
.y180{bottom:412.372480pt;}
.y2b1{bottom:412.496640pt;}
.y1cd{bottom:412.505600pt;}
.y1ae{bottom:412.654080pt;}
.ybd{bottom:412.761600pt;}
.y1fa{bottom:413.026560pt;}
.y156{bottom:413.184000pt;}
.y304{bottom:417.292000pt;}
.y3b{bottom:419.597760pt;}
.yea{bottom:420.354560pt;}
.y227{bottom:420.455680pt;}
.y112{bottom:421.903360pt;}
.y2e8{bottom:422.542080pt;}
.y8e{bottom:424.462080pt;}
.y139{bottom:425.011200pt;}
.y5a{bottom:427.535680pt;}
.y255{bottom:428.340480pt;}
.y282{bottom:430.856960pt;}
.y303{bottom:432.328000pt;}
.y17f{bottom:432.366080pt;}
.y2b0{bottom:432.490240pt;}
.y1cc{bottom:432.499200pt;}
.y1ad{bottom:432.647680pt;}
.ybc{bottom:432.755200pt;}
.y1f9{bottom:433.020160pt;}
.y155{bottom:433.177600pt;}
.y3a{bottom:436.232000pt;}
.y2e7{bottom:438.544320pt;}
.ye9{bottom:440.348160pt;}
.y226{bottom:440.618240pt;}
.y111{bottom:441.896960pt;}
.y59{bottom:444.334240pt;}
.y8d{bottom:444.455680pt;}
.y138{bottom:445.004800pt;}
.yc{bottom:446.990669pt;}
.y254{bottom:448.179200pt;}
.y281{bottom:450.695680pt;}
.y17e{bottom:452.359680pt;}
.y2af{bottom:452.483840pt;}
.y1cb{bottom:452.492800pt;}
.y1ac{bottom:452.641280pt;}
.ybb{bottom:452.748800pt;}
.y1f8{bottom:452.858880pt;}
.y39{bottom:452.866240pt;}
.y154{bottom:453.171200pt;}
.ye8{bottom:460.341760pt;}
.y58{bottom:461.132800pt;}
.y110{bottom:462.059520pt;}
.y2e6{bottom:462.547680pt;}
.yb{bottom:462.990669pt;}
.y8c{bottom:464.449280pt;}
.y137{bottom:464.998400pt;}
.y253{bottom:468.017920pt;}
.y225{bottom:468.778240pt;}
.y38{bottom:469.500480pt;}
.y280{bottom:470.379520pt;}
.y17d{bottom:472.353280pt;}
.y2ae{bottom:472.477440pt;}
.y1ca{bottom:472.486400pt;}
.y1ab{bottom:472.634880pt;}
.yba{bottom:472.742400pt;}
.y1f7{bottom:472.852480pt;}
.y153{bottom:473.164800pt;}
.y57{bottom:477.931360pt;}
.y2e5{bottom:478.549920pt;}
.ya{bottom:478.990666pt;}
.ye7{bottom:480.335360pt;}
.y10f{bottom:482.222080pt;}
.y8b{bottom:484.442880pt;}
.y136{bottom:484.992000pt;}
.y37{bottom:486.134720pt;}
.y252{bottom:487.856640pt;}
.y224{bottom:488.940800pt;}
.y27f{bottom:490.063360pt;}
.y17c{bottom:492.346880pt;}
.y2ad{bottom:492.471040pt;}
.y1c9{bottom:492.480000pt;}
.y1aa{bottom:492.628480pt;}
.y1f6{bottom:492.691200pt;}
.yb9{bottom:492.736000pt;}
.y152{bottom:493.158400pt;}
.y2e4{bottom:494.552160pt;}
.y56{bottom:494.729920pt;}
.y9{bottom:494.990666pt;}
.ye6{bottom:500.328960pt;}
.y10e{bottom:502.384640pt;}
.y36{bottom:502.768960pt;}
.y135{bottom:504.985600pt;}
.y251{bottom:507.695360pt;}
.y223{bottom:508.934400pt;}
.y27e{bottom:509.902080pt;}
.y55{bottom:511.528480pt;}
.y17b{bottom:512.340480pt;}
.y8a{bottom:512.448000pt;}
.y2ac{bottom:512.464640pt;}
.y1c8{bottom:512.473600pt;}
.y1a9{bottom:512.622080pt;}
.y1f5{bottom:512.684800pt;}
.yb8{bottom:512.729600pt;}
.y2e3{bottom:518.555520pt;}
.y35{bottom:519.567520pt;}
.ye5{bottom:520.322560pt;}
.y151{bottom:521.163520pt;}
.y10d{bottom:522.547200pt;}
.y134{bottom:524.979200pt;}
.y250{bottom:527.534080pt;}
.y54{bottom:528.491360pt;}
.y222{bottom:529.096960pt;}
.y27d{bottom:529.585920pt;}
.y17a{bottom:532.334080pt;}
.y89{bottom:532.441600pt;}
.y2ab{bottom:532.458240pt;}
.y1c7{bottom:532.467200pt;}
.y1f4{bottom:532.523520pt;}
.y1a8{bottom:532.615680pt;}
.yb7{bottom:532.723200pt;}
.y2e2{bottom:534.557760pt;}
.y34{bottom:536.201760pt;}
.ye4{bottom:540.316160pt;}
.y150{bottom:541.157120pt;}
.y10c{bottom:542.709760pt;}
.y133{bottom:544.972800pt;}
.y53{bottom:545.289920pt;}
.y24f{bottom:547.527680pt;}
.y221{bottom:549.259520pt;}
.y27c{bottom:549.269760pt;}
.y2e1{bottom:550.560000pt;}
.y179{bottom:552.327680pt;}
.y88{bottom:552.435200pt;}
.y2aa{bottom:552.451840pt;}
.y1c6{bottom:552.460800pt;}
.y1f3{bottom:552.517120pt;}
.y1a7{bottom:552.609280pt;}
.yb6{bottom:552.716800pt;}
.y33{bottom:552.836000pt;}
.y14f{bottom:561.150720pt;}
.y10b{bottom:562.703360pt;}
.y132{bottom:564.966400pt;}
.y24e{bottom:567.366400pt;}
.ye3{bottom:568.321280pt;}
.y52{bottom:568.648640pt;}
.y27b{bottom:569.108480pt;}
.y220{bottom:569.422080pt;}
.y32{bottom:569.470240pt;}
.y178{bottom:572.321280pt;}
.y87{bottom:572.428800pt;}
.y2a9{bottom:572.445440pt;}
.y1c5{bottom:572.454400pt;}
.y1f2{bottom:572.510720pt;}
.y1a6{bottom:572.602880pt;}
.yb5{bottom:572.710400pt;}
.y8{bottom:573.786667pt;}
.y2e0{bottom:574.557760pt;}
.y14e{bottom:581.144320pt;}
.y10a{bottom:582.865920pt;}
.y131{bottom:584.960000pt;}
.y51{bottom:585.447200pt;}
.y31{bottom:586.104480pt;}
.y24d{bottom:587.205120pt;}
.ye2{bottom:588.160000pt;}
.y27a{bottom:588.792320pt;}
.y21f{bottom:589.584640pt;}
.y2df{bottom:590.560000pt;}
.y177{bottom:592.314880pt;}
.y1f1{bottom:592.349440pt;}
.y86{bottom:592.422400pt;}
.y2a8{bottom:592.439040pt;}
.y1c4{bottom:592.448000pt;}
.y1a5{bottom:592.596480pt;}
.y7{bottom:592.685334pt;}
.yb4{bottom:592.704000pt;}
.y14d{bottom:601.137920pt;}
.y50{bottom:602.245760pt;}
.y30{bottom:602.738720pt;}
.y109{bottom:603.028480pt;}
.y2de{bottom:606.560000pt;}
.y24c{bottom:607.043840pt;}
.ye1{bottom:607.998720pt;}
.y279{bottom:608.476160pt;}
.y21e{bottom:609.747200pt;}
.y1f0{bottom:612.343040pt;}
.y85{bottom:612.416000pt;}
.y2a7{bottom:612.432640pt;}
.y1c3{bottom:612.441600pt;}
.y1a4{bottom:612.590080pt;}
.yb3{bottom:612.697600pt;}
.y130{bottom:613.920960pt;}
.y4f{bottom:619.044320pt;}
.y2f{bottom:619.537280pt;}
.y176{bottom:620.320000pt;}
.y14c{bottom:621.131520pt;}
.y108{bottom:623.191040pt;}
.y24b{bottom:626.882560pt;}
.ye0{bottom:627.682560pt;}
.y278{bottom:628.314880pt;}
.y21d{bottom:629.740800pt;}
.y2dd{bottom:630.560000pt;}
.y1ef{bottom:632.181760pt;}
.y84{bottom:632.409600pt;}
.y2a6{bottom:632.426240pt;}
.y1c2{bottom:632.435200pt;}
.y1a3{bottom:632.583680pt;}
.yb2{bottom:632.691200pt;}
.y4e{bottom:635.842880pt;}
.y2e{bottom:636.171520pt;}
.y12f{bottom:637.920000pt;}
.y14b{bottom:641.125120pt;}
.y107{bottom:643.353600pt;}
.y6{bottom:645.598667pt;}
.y2dc{bottom:646.560000pt;}
.y24a{bottom:646.721280pt;}
.ydf{bottom:647.521280pt;}
.y277{bottom:647.998720pt;}
.y175{bottom:649.280960pt;}
.y21c{bottom:649.903360pt;}
.y1ee{bottom:652.175360pt;}
.y83{bottom:652.403200pt;}
.y2a5{bottom:652.419840pt;}
.y1c1{bottom:652.428800pt;}
.y1a2{bottom:652.577280pt;}
.y4d{bottom:652.641440pt;}
.yb1{bottom:652.684800pt;}
.y2d{bottom:652.805760pt;}
.y106{bottom:663.516160pt;}
.y249{bottom:666.714880pt;}
.yde{bottom:667.360000pt;}
.y276{bottom:667.682560pt;}
.y3{bottom:668.977329pt;}
.y2c{bottom:669.440000pt;}
.y21b{bottom:670.065920pt;}
.y2db{bottom:670.549920pt;}
.y1ed{bottom:672.168960pt;}
.y82{bottom:672.396800pt;}
.y2a4{bottom:672.413440pt;}
.y1c0{bottom:672.422400pt;}
.y1a1{bottom:672.570880pt;}
.yb0{bottom:672.678400pt;}
.y174{bottom:673.280000pt;}
.y105{bottom:683.509760pt;}
.y12e{bottom:684.320000pt;}
.y2da{bottom:686.552160pt;}
.y248{bottom:686.553600pt;}
.ydd{bottom:687.198720pt;}
.y275{bottom:687.521280pt;}
.y21a{bottom:690.228480pt;}
.y1ec{bottom:692.007680pt;}
.y81{bottom:692.390400pt;}
.y2a3{bottom:692.407040pt;}
.y1bf{bottom:692.416000pt;}
.y1a0{bottom:692.564480pt;}
.yaf{bottom:692.672000pt;}
.y2b{bottom:695.520000pt;}
.y12d{bottom:697.280000pt;}
.y2d9{bottom:702.554400pt;}
.y104{bottom:703.672320pt;}
.y247{bottom:706.392320pt;}
.ydc{bottom:706.882560pt;}
.y274{bottom:707.205120pt;}
.y12c{bottom:707.840000pt;}
.y219{bottom:710.391040pt;}
.y1eb{bottom:712.001280pt;}
.y80{bottom:712.384000pt;}
.y2a2{bottom:712.400640pt;}
.y173{bottom:712.409600pt;}
.y19f{bottom:712.558080pt;}
.yae{bottom:712.665600pt;}
.y103{bottom:723.834880pt;}
.y12b{bottom:723.840000pt;}
.y2d8{bottom:726.557760pt;}
.ydb{bottom:726.721280pt;}
.y273{bottom:726.888960pt;}
.y2a{bottom:727.198720pt;}
.y218{bottom:730.553600pt;}
.y1ea{bottom:731.840000pt;}
.y7f{bottom:732.377600pt;}
.y2a1{bottom:732.394240pt;}
.y172{bottom:732.403200pt;}
.y19e{bottom:732.551680pt;}
.yad{bottom:732.659200pt;}
.y246{bottom:734.228480pt;}
.y2d7{bottom:742.560000pt;}
.y102{bottom:743.997440pt;}
.yda{bottom:746.560000pt;}
.y272{bottom:746.727680pt;}
.y29{bottom:747.514400pt;}
.y12a{bottom:748.480000pt;}
.y217{bottom:750.547200pt;}
.y1e9{bottom:751.833600pt;}
.y7e{bottom:752.371200pt;}
.y2a0{bottom:752.387840pt;}
.y171{bottom:752.396800pt;}
.y19d{bottom:752.545280pt;}
.yac{bottom:752.652800pt;}
.y245{bottom:754.067200pt;}
.y101{bottom:764.160000pt;}
.y129{bottom:764.480000pt;}
.yd9{bottom:766.398720pt;}
.y271{bottom:766.411520pt;}
.y2d6{bottom:766.560000pt;}
.y216{bottom:770.709760pt;}
.y1e8{bottom:771.672320pt;}
.y7d{bottom:772.364800pt;}
.y29f{bottom:772.381440pt;}
.y170{bottom:772.390400pt;}
.y19c{bottom:772.538880pt;}
.yab{bottom:772.646400pt;}
.y244{bottom:773.905920pt;}
.y2{bottom:781.661334pt;}
.y2d5{bottom:782.560000pt;}
.y302{bottom:783.844000pt;}
.y100{bottom:784.322560pt;}
.yd8{bottom:786.082560pt;}
.y270{bottom:786.095360pt;}
.y128{bottom:789.120000pt;}
.y215{bottom:790.872320pt;}
.y1e7{bottom:791.665920pt;}
.y7c{bottom:792.358400pt;}
.y29e{bottom:792.375040pt;}
.y16f{bottom:792.384000pt;}
.y19b{bottom:792.532480pt;}
.yaa{bottom:792.640000pt;}
.y243{bottom:793.899520pt;}
.y2d4{bottom:798.560000pt;}
.y301{bottom:799.840000pt;}
.y28{bottom:800.960000pt;}
.yff{bottom:804.316160pt;}
.y127{bottom:805.120000pt;}
.yd7{bottom:805.921280pt;}
.y26f{bottom:805.934080pt;}
.y214{bottom:811.034880pt;}
.y1e6{bottom:811.659520pt;}
.y7b{bottom:812.352000pt;}
.y29d{bottom:812.368640pt;}
.y16e{bottom:812.377600pt;}
.y19a{bottom:812.526080pt;}
.ya9{bottom:812.633600pt;}
.y242{bottom:813.738240pt;}
.y2d3{bottom:822.540960pt;}
.yd6{bottom:825.767680pt;}
.y126{bottom:829.760000pt;}
.y213{bottom:831.197440pt;}
.y1e5{bottom:831.498240pt;}
.y2ca{bottom:832.089600pt;}
.y7a{bottom:832.345600pt;}
.y29c{bottom:832.362240pt;}
.y16d{bottom:832.371200pt;}
.yfe{bottom:832.476160pt;}
.y199{bottom:832.519680pt;}
.ya8{bottom:832.627200pt;}
.y241{bottom:833.576960pt;}
.y26e{bottom:833.615360pt;}
.y2d2{bottom:838.543200pt;}
.yd5{bottom:845.606400pt;}
.y125{bottom:845.760000pt;}
.y212{bottom:851.360000pt;}
.y1e4{bottom:851.491840pt;}
.y79{bottom:852.339200pt;}
.y29b{bottom:852.355840pt;}
.y16c{bottom:852.364800pt;}
.y2c9{bottom:852.407040pt;}
.yfd{bottom:852.469760pt;}
.y198{bottom:852.513280pt;}
.ya7{bottom:852.620800pt;}
.y240{bottom:853.415680pt;}
.y26d{bottom:853.454080pt;}
.y2d1{bottom:854.545440pt;}
.y27{bottom:855.664000pt;}
.y1{bottom:859.312000pt;}
.yd4{bottom:865.290240pt;}
.y124{bottom:870.400000pt;}
.y2d0{bottom:870.547680pt;}
.y1e3{bottom:871.330560pt;}
.y211{bottom:871.353600pt;}
.y78{bottom:872.332800pt;}
.y29a{bottom:872.349440pt;}
.y16b{bottom:872.358400pt;}
.y2c8{bottom:872.400640pt;}
.yfc{bottom:872.463360pt;}
.y197{bottom:872.506880pt;}
.ya6{bottom:872.614400pt;}
.y23f{bottom:873.254400pt;}
.y26c{bottom:873.292800pt;}
.y26{bottom:883.672000pt;}
.yd3{bottom:885.128960pt;}
.y123{bottom:886.400000pt;}
.y2cf{bottom:886.549920pt;}
.y210{bottom:891.516160pt;}
.y77{bottom:892.326400pt;}
.y299{bottom:892.343040pt;}
.y16a{bottom:892.352000pt;}
.y2c7{bottom:892.394240pt;}
.yfb{bottom:892.456960pt;}
.y196{bottom:892.500480pt;}
.ya5{bottom:892.608000pt;}
.y23e{bottom:893.093120pt;}
.y26b{bottom:893.131520pt;}
.y300{bottom:895.684000pt;}
.y1e2{bottom:899.335680pt;}
.y122{bottom:902.400000pt;}
.yd2{bottom:904.967680pt;}
.y2ce{bottom:910.553280pt;}
.y20f{bottom:911.678720pt;}
.y25{bottom:911.680000pt;}
.y76{bottom:912.320000pt;}
.y298{bottom:912.336640pt;}
.y169{bottom:912.345600pt;}
.y2c6{bottom:912.387840pt;}
.yfa{bottom:912.450560pt;}
.y195{bottom:912.494080pt;}
.ya4{bottom:912.601600pt;}
.y23d{bottom:913.086720pt;}
.y26a{bottom:913.125120pt;}
.y2ff{bottom:915.040000pt;}
.y1e1{bottom:919.329280pt;}
.yd1{bottom:924.806400pt;}
.y2cd{bottom:926.555520pt;}
.y121{bottom:927.040000pt;}
.y2fe{bottom:930.724000pt;}
.y20e{bottom:931.841280pt;}
.y297{bottom:932.330240pt;}
.y168{bottom:932.339200pt;}
.y2c5{bottom:932.381440pt;}
.yf9{bottom:932.444160pt;}
.y194{bottom:932.487680pt;}
.ya3{bottom:932.595200pt;}
.y23c{bottom:932.925440pt;}
.y269{bottom:932.963840pt;}
.y75{bottom:941.281920pt;}
.y2cc{bottom:942.557760pt;}
.y120{bottom:943.040000pt;}
.yd0{bottom:944.490240pt;}
.y20d{bottom:952.003840pt;}
.y296{bottom:952.323840pt;}
.y167{bottom:952.332800pt;}
.y2c4{bottom:952.375040pt;}
.yf8{bottom:952.437760pt;}
.y193{bottom:952.481280pt;}
.ya2{bottom:952.588800pt;}
.y1e0{bottom:952.614400pt;}
.y23b{bottom:952.764160pt;}
.y268{bottom:952.802560pt;}
.y2cb{bottom:958.560000pt;}
.y70{bottom:959.360000pt;}
.y2fd{bottom:961.768000pt;}
.y6e{bottom:963.040000pt;}
.y74{bottom:965.280960pt;}
.y11f{bottom:968.000000pt;}
.y20c{bottom:972.166400pt;}
.y295{bottom:972.317440pt;}
.ycf{bottom:972.326400pt;}
.y2c3{bottom:972.368640pt;}
.yf7{bottom:972.431360pt;}
.y192{bottom:972.474880pt;}
.ya1{bottom:972.582400pt;}
.y23a{bottom:972.602880pt;}
.y1df{bottom:972.608000pt;}
.y267{bottom:972.641280pt;}
.y2fc{bottom:981.124000pt;}
.y73{bottom:989.280000pt;}
.y20b{bottom:992.160000pt;}
.y294{bottom:992.311040pt;}
.yce{bottom:992.320000pt;}
.y2c2{bottom:992.362240pt;}
.yf6{bottom:992.424960pt;}
.y239{bottom:992.441600pt;}
.y191{bottom:992.468480pt;}
.y266{bottom:992.480000pt;}
.ya0{bottom:992.576000pt;}
.y1de{bottom:992.601600pt;}
.y11e{bottom:996.160000pt;}
.y2fb{bottom:996.640000pt;}
.y23{bottom:1018.718720pt;}
.y2f9{bottom:1052.480000pt;}
.y72{bottom:1053.440000pt;}
.y22{bottom:1060.480000pt;}
.h14{height:11.664062pt;}
.h7{height:28.560000pt;}
.h15{height:33.125937pt;}
.h10{height:33.440000pt;}
.h18{height:34.945312pt;}
.h17{height:34.992188pt;}
.h12{height:36.480000pt;}
.hf{height:36.809062pt;}
.ha{height:36.858438pt;}
.h6{height:40.800000pt;}
.h13{height:41.002500pt;}
.h9{height:41.057500pt;}
.h3{height:42.840000pt;}
.h2{height:48.960000pt;}
.hd{height:50.321250pt;}
.h16{height:54.156287pt;}
.he{height:54.514687pt;}
.hc{height:54.587812pt;}
.h11{height:61.969687pt;}
.h5{height:69.360000pt;}
.hb{height:69.890625pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:272.000000pt;}
.w5{width:272.160000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:13.440000pt;}
.xb{left:60.960000pt;}
.x7{left:75.520000pt;}
.xf{left:82.720000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x4{left:180.874667pt;}
.xd{left:192.000000pt;}
.x8{left:285.600000pt;}
.x10{left:384.480000pt;}
.x9{left:396.752960pt;}
.xe{left:400.627200pt;}
.x3{left:404.408000pt;}
.xa{left:411.958880pt;}
.x5{left:427.040000pt;}
.x6{left:697.601280pt;}
}




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