
    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_aed2b7e5c405460b61573ad0.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_c7dec40b98fb49558ffab779.woff2')format("woff");}.ff4{font-family:ff4;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;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f00492491eb29c8e9df37209.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.961000;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_8d2108bd5b5c8f710f6bfddf.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.949000;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_38ba70f3b42b5b69a6ba0cc2.woff2')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_dd202eef86a11102405e09e0.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:-7.098000px;}
.v2{vertical-align:-5.466000px;}
.v5{vertical-align:-2.844000px;}
.v6{vertical-align:-1.800000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:5.466000px;}
.v4{vertical-align:6.840000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:32.727300px;}
.ls2{letter-spacing:71.732698px;}
.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;}
}
.ws2{word-spacing:-95.641200px;}
.wsf{word-spacing:-74.361300px;}
.ws3{word-spacing:-64.079604px;}
.ws4{word-spacing:-63.888322px;}
.ws13{word-spacing:-43.038600px;}
.ws11{word-spacing:-37.329373px;}
.ws10{word-spacing:-37.180650px;}
.wsb{word-spacing:-32.727300px;}
.ws34{word-spacing:-26.116385px;}
.ws33{word-spacing:-24.021838px;}
.ws36{word-spacing:-23.105474px;}
.ws1{word-spacing:-22.416000px;}
.ws5f{word-spacing:-22.058200px;}
.ws38{word-spacing:-21.665473px;}
.ws39{word-spacing:-21.605377px;}
.ws30{word-spacing:-21.600018px;}
.ws2f{word-spacing:-21.519300px;}
.ws35{word-spacing:-21.338200px;}
.ws32{word-spacing:-20.225471px;}
.ws7{word-spacing:-19.309107px;}
.ws12{word-spacing:-19.047289px;}
.ws195{word-spacing:-18.981834px;}
.ws31{word-spacing:-18.458197px;}
.ws4d{word-spacing:-18.006835px;}
.ws110{word-spacing:-18.006710px;}
.wsd0{word-spacing:-18.006307px;}
.ws15d{word-spacing:-18.006038px;}
.ws120{word-spacing:-18.005866px;}
.ws191{word-spacing:-18.005808px;}
.ws49{word-spacing:-18.005722px;}
.wsd3{word-spacing:-18.005712px;}
.ws16c{word-spacing:-18.005299px;}
.ws12d{word-spacing:-18.005126px;}
.ws76{word-spacing:-18.004800px;}
.ws194{word-spacing:-18.004694px;}
.ws3b{word-spacing:-18.004531px;}
.ws17b{word-spacing:-18.004454px;}
.ws193{word-spacing:-18.004320px;}
.wseb{word-spacing:-18.003946px;}
.wsc9{word-spacing:-18.003782px;}
.ws184{word-spacing:-18.003715px;}
.wsea{word-spacing:-18.003581px;}
.ws61{word-spacing:-18.002918px;}
.ws9a{word-spacing:-18.002870px;}
.wsc8{word-spacing:-18.002851px;}
.ws13b{word-spacing:-18.002534px;}
.ws152{word-spacing:-18.002333px;}
.ws192{word-spacing:-18.002246px;}
.ws13a{word-spacing:-18.002170px;}
.ws52{word-spacing:-18.002045px;}
.wsbf{word-spacing:-18.001901px;}
.ws5a{word-spacing:-18.001622px;}
.ws5d{word-spacing:-18.001546px;}
.ws102{word-spacing:-18.001450px;}
.ws59{word-spacing:-18.001344px;}
.ws86{word-spacing:-18.001267px;}
.wsaa{word-spacing:-17.934240px;}
.ws85{word-spacing:-17.934163px;}
.ws4a{word-spacing:-17.932800px;}
.wsa0{word-spacing:-17.931418px;}
.ws4f{word-spacing:-17.931283px;}
.ws3a{word-spacing:-17.931149px;}
.ws37{word-spacing:-17.803651px;}
.wse{word-spacing:-17.083651px;}
.ws9{word-spacing:-17.018196px;}
.ws5{word-spacing:-16.438350px;}
.ws8{word-spacing:-16.429105px;}
.wsa{word-spacing:-16.363650px;}
.ws60{word-spacing:-15.120013px;}
.ws6{word-spacing:-14.923649px;}
.wsc{word-spacing:-11.127282px;}
.wsd{word-spacing:-9.818190px;}
.ws2e{word-spacing:-8.716518px;}
.ws2b{word-spacing:-8.710068px;}
.ws24{word-spacing:-5.301823px;}
.ws1f{word-spacing:-2.566218px;}
.ws2c{word-spacing:-2.561568px;}
.ws2d{word-spacing:-2.559468px;}
.ws20{word-spacing:-2.558718px;}
.ws2a{word-spacing:-2.557668px;}
.ws22{word-spacing:-2.555868px;}
.ws28{word-spacing:-2.554818px;}
.ws23{word-spacing:-2.554068px;}
.ws25{word-spacing:-2.545518px;}
.ws26{word-spacing:-2.541618px;}
.ws0{word-spacing:0.000000px;}
.ws27{word-spacing:0.848232px;}
.ws29{word-spacing:2.229432px;}
.ws21{word-spacing:3.588432px;}
.ws1b{word-spacing:24.007782px;}
.ws1e{word-spacing:24.008832px;}
.ws1c{word-spacing:24.011682px;}
.ws15{word-spacing:24.012732px;}
.ws14{word-spacing:24.015282px;}
.ws19{word-spacing:24.015582px;}
.ws1a{word-spacing:24.017082px;}
.ws17{word-spacing:27.413682px;}
.ws16{word-spacing:27.415482px;}
.ws18{word-spacing:27.428682px;}
.ws1d{word-spacing:28.783782px;}
.ws47{word-spacing:38.937210px;}
.ws4e{word-spacing:38.943210px;}
.ws75{word-spacing:38.999389px;}
.ws9e{word-spacing:39.002096px;}
.ws41{word-spacing:39.002123px;}
.ws58{word-spacing:39.002665px;}
.ws57{word-spacing:39.003191px;}
.ws48{word-spacing:39.005389px;}
.ws5e{word-spacing:39.008123px;}
.ws9b{word-spacing:1063.828118px;}
.wscf{word-spacing:1099.557517px;}
.ws53{word-spacing:1131.701262px;}
.wscb{word-spacing:1142.499629px;}
.ws9c{word-spacing:1142.961071px;}
.ws9d{word-spacing:1147.412530px;}
.wsce{word-spacing:1168.939393px;}
.wscd{word-spacing:1181.771308px;}
.ws51{word-spacing:1185.240401px;}
.wsca{word-spacing:1193.747290px;}
.ws9f{word-spacing:1194.274118px;}
.ws5b{word-spacing:1195.645481px;}
.ws5c{word-spacing:1196.430880px;}
.ws55{word-spacing:1205.858600px;}
.wscc{word-spacing:1219.147484px;}
.ws54{word-spacing:1221.375677px;}
.ws50{word-spacing:1241.793696px;}
.ws56{word-spacing:1247.687332px;}
.wsab{word-spacing:1397.111398px;}
.ws15a{word-spacing:1397.112230px;}
.ws63{word-spacing:1397.112286px;}
.ws4b{word-spacing:1397.113493px;}
.ws88{word-spacing:1398.552286px;}
.ws87{word-spacing:1400.316286px;}
.ws151{word-spacing:1401.101398px;}
.wsd1{word-spacing:1401.632014px;}
.ws62{word-spacing:1401.690286px;}
.wsd2{word-spacing:1401.696463px;}
.ws15c{word-spacing:1402.286904px;}
.ws101{word-spacing:1411.253398px;}
.ws4c{word-spacing:1416.093130px;}
.ws118{word-spacing:1418.451162px;}
.ws116{word-spacing:1422.508795px;}
.ws68{word-spacing:1426.955200px;}
.ws66{word-spacing:1426.956286px;}
.ws8d{word-spacing:1428.395200px;}
.ws8b{word-spacing:1428.396286px;}
.ws69{word-spacing:1429.515562px;}
.ws65{word-spacing:1429.836286px;}
.ws173{word-spacing:1430.038795px;}
.ws8e{word-spacing:1430.955562px;}
.ws6b{word-spacing:1431.540286px;}
.ws8c{word-spacing:1431.607378px;}
.ws89{word-spacing:1431.608468px;}
.ws6c{word-spacing:1431.930286px;}
.ws15b{word-spacing:1431.995788px;}
.wsac{word-spacing:1432.001398px;}
.ws64{word-spacing:1432.196468px;}
.ws6e{word-spacing:1432.785561px;}
.ws90{word-spacing:1432.980286px;}
.wsc0{word-spacing:1433.507398px;}
.ws8a{word-spacing:1433.634286px;}
.ws91{word-spacing:1433.898286px;}
.ws67{word-spacing:1435.465378px;}
.ws93{word-spacing:1435.467561px;}
.ws6a{word-spacing:1436.846469px;}
.ws8f{word-spacing:1438.286469px;}
.wsad{word-spacing:1438.937398px;}
.ws92{word-spacing:1440.966286px;}
.ws6d{word-spacing:1441.032286px;}
.ws159{word-spacing:1443.256592px;}
.wsae{word-spacing:1444.961398px;}
.ws111{word-spacing:1447.318795px;}
.ws16e{word-spacing:1457.068795px;}
.ws12f{word-spacing:1457.200795px;}
.ws186{word-spacing:1459.426795px;}
.ws72{word-spacing:1461.783561px;}
.ws6f{word-spacing:1461.846286px;}
.wsc1{word-spacing:1462.763398px;}
.ws97{word-spacing:1463.223561px;}
.ws96{word-spacing:1463.285746px;}
.ws94{word-spacing:1463.286286px;}
.ws71{word-spacing:1465.379746px;}
.wsfb{word-spacing:1465.573140px;}
.wsec{word-spacing:1465.577398px;}
.ws73{word-spacing:1466.032654px;}
.wsb6{word-spacing:1466.819920px;}
.wsb7{word-spacing:1466.882101px;}
.wsb0{word-spacing:1466.885398px;}
.wsb4{word-spacing:1466.887558px;}
.ws70{word-spacing:1467.673923px;}
.wsb5{word-spacing:1468.135556px;}
.wsb1{word-spacing:1468.199398px;}
.ws95{word-spacing:1468.261923px;}
.ws98{word-spacing:1469.242654px;}
.wsaf{word-spacing:1470.161398px;}
.ws13c{word-spacing:1470.485398px;}
.wsfe{word-spacing:1471.470599px;}
.wsb3{word-spacing:1471.797191px;}
.wsb2{word-spacing:1471.799398px;}
.ws112{word-spacing:1482.208795px;}
.ws11a{word-spacing:1483.513493px;}
.ws121{word-spacing:1487.240099px;}
.ws138{word-spacing:1488.025493px;}
.ws131{word-spacing:1488.028795px;}
.ws177{word-spacing:1490.647493px;}
.ws170{word-spacing:1490.650795px;}
.ws188{word-spacing:1494.316795px;}
.wsc3{word-spacing:1494.377398px;}
.ws18f{word-spacing:1495.555493px;}
.ws74{word-spacing:1496.667561px;}
.wsc2{word-spacing:1497.653398px;}
.ws99{word-spacing:1498.107561px;}
.wsc4{word-spacing:1499.879398px;}
.ws145{word-spacing:1500.395504px;}
.ws13d{word-spacing:1500.396046px;}
.ws150{word-spacing:1500.396056px;}
.ws147{word-spacing:1500.396057px;}
.ws14e{word-spacing:1500.396596px;}
.ws14b{word-spacing:1500.396599px;}
.ws14c{word-spacing:1500.397144px;}
.ws149{word-spacing:1500.397695px;}
.ws143{word-spacing:1500.397699px;}
.ws14a{word-spacing:1500.399337px;}
.wsef{word-spacing:1500.400411px;}
.wsf8{word-spacing:1500.400435px;}
.wsf1{word-spacing:1500.400760px;}
.wsf6{word-spacing:1500.400971px;}
.wsf2{word-spacing:1500.400976px;}
.wsfa{word-spacing:1500.401504px;}
.wsfc{word-spacing:1500.401509px;}
.ws100{word-spacing:1500.402056px;}
.wsed{word-spacing:1500.402606px;}
.wsee{word-spacing:1500.402607px;}
.wsf0{word-spacing:1500.402608px;}
.wsf7{word-spacing:1500.403141px;}
.wsf5{word-spacing:1500.403148px;}
.ws141{word-spacing:1500.459331px;}
.ws142{word-spacing:1500.459340px;}
.ws13e{word-spacing:1500.459865px;}
.ws146{word-spacing:1500.459872px;}
.ws144{word-spacing:1500.459889px;}
.ws140{word-spacing:1500.460214px;}
.ws14d{word-spacing:1500.460415px;}
.ws13f{word-spacing:1500.460447px;}
.ws14f{word-spacing:1500.460954px;}
.wsf3{word-spacing:1500.463692px;}
.wsfd{word-spacing:1500.464234px;}
.ws148{word-spacing:1500.464602px;}
.wsff{word-spacing:1500.464771px;}
.wsf4{word-spacing:1500.464779px;}
.wsf9{word-spacing:1500.464794px;}
.wsbd{word-spacing:1501.709270px;}
.wsbc{word-spacing:1501.710358px;}
.wsb8{word-spacing:1501.711466px;}
.ws158{word-spacing:1501.711895px;}
.ws153{word-spacing:1501.712524px;}
.ws156{word-spacing:1501.713587px;}
.wsb9{word-spacing:1501.772559px;}
.wsbb{word-spacing:1501.773076px;}
.wsbe{word-spacing:1501.773626px;}
.ws157{word-spacing:1501.774110px;}
.wsba{word-spacing:1501.774191px;}
.ws154{word-spacing:1501.779016px;}
.ws155{word-spacing:1501.779038px;}
.ws17e{word-spacing:1504.260432px;}
.ws11f{word-spacing:1517.025133px;}
.ws11d{word-spacing:1517.087315px;}
.ws11b{word-spacing:1517.087860px;}
.ws113{word-spacing:1517.087887px;}
.ws119{word-spacing:1517.087890px;}
.ws11c{word-spacing:1517.088405px;}
.ws117{word-spacing:1517.088435px;}
.ws11e{word-spacing:1517.089493px;}
.ws115{word-spacing:1517.089525px;}
.ws114{word-spacing:1517.092795px;}
.ws10f{word-spacing:1521.147138px;}
.ws104{word-spacing:1521.147162px;}
.ws10c{word-spacing:1521.148225px;}
.ws109{word-spacing:1521.149324px;}
.ws106{word-spacing:1521.149349px;}
.ws10d{word-spacing:1521.149863px;}
.ws108{word-spacing:1521.149887px;}
.ws105{word-spacing:1521.209887px;}
.ws107{word-spacing:1521.209894px;}
.ws10e{word-spacing:1521.210953px;}
.ws10a{word-spacing:1521.210961px;}
.ws10b{word-spacing:1521.211497px;}
.ws103{word-spacing:1521.214795px;}
.ws12a{word-spacing:1522.066228px;}
.ws125{word-spacing:1522.066800px;}
.ws126{word-spacing:1522.066802px;}
.ws128{word-spacing:1522.067860px;}
.ws12b{word-spacing:1522.129505px;}
.ws122{word-spacing:1522.129526px;}
.ws12c{word-spacing:1522.130039px;}
.ws129{word-spacing:1522.130045px;}
.ws124{word-spacing:1522.130070px;}
.ws127{word-spacing:1522.130077px;}
.ws123{word-spacing:1522.132795px;}
.ws134{word-spacing:1522.851130px;}
.ws130{word-spacing:1522.851708px;}
.ws135{word-spacing:1522.852222px;}
.ws136{word-spacing:1522.852768px;}
.ws132{word-spacing:1522.913887px;}
.ws137{word-spacing:1522.914956px;}
.ws139{word-spacing:1522.915493px;}
.ws133{word-spacing:1522.915525px;}
.ws12e{word-spacing:1522.918795px;}
.ws16f{word-spacing:1525.467708px;}
.ws179{word-spacing:1525.529315px;}
.ws176{word-spacing:1525.529864px;}
.ws171{word-spacing:1525.529887px;}
.ws178{word-spacing:1525.530405px;}
.ws174{word-spacing:1525.530435px;}
.ws175{word-spacing:1525.530956px;}
.ws17a{word-spacing:1525.531493px;}
.ws172{word-spacing:1525.531525px;}
.ws16d{word-spacing:1525.534795px;}
.ws18b{word-spacing:1529.133130px;}
.ws187{word-spacing:1529.133708px;}
.ws18c{word-spacing:1529.134222px;}
.ws18d{word-spacing:1529.134768px;}
.ws189{word-spacing:1529.195887px;}
.ws18e{word-spacing:1529.196956px;}
.ws190{word-spacing:1529.197493px;}
.ws18a{word-spacing:1529.197525px;}
.ws185{word-spacing:1529.200795px;}
.wsc7{word-spacing:1529.201373px;}
.wsc6{word-spacing:1529.265191px;}
.wsc5{word-spacing:1529.267398px;}
.ws82{word-spacing:1529.791987px;}
.ws79{word-spacing:1529.792527px;}
.ws84{word-spacing:1529.792534px;}
.ws7b{word-spacing:1529.793073px;}
.ws80{word-spacing:1529.793079px;}
.ws83{word-spacing:1529.793081px;}
.ws7c{word-spacing:1529.793619px;}
.ws7e{word-spacing:1529.793627px;}
.ws77{word-spacing:1529.854169px;}
.ws81{word-spacing:1529.854171px;}
.ws7f{word-spacing:1529.855803px;}
.ws7d{word-spacing:1529.856349px;}
.ws78{word-spacing:1529.856351px;}
.ws7a{word-spacing:1529.856889px;}
.ws169{word-spacing:1531.095137px;}
.ws16b{word-spacing:1531.095138px;}
.ws182{word-spacing:1531.095682px;}
.ws168{word-spacing:1531.096772px;}
.ws17c{word-spacing:1531.096802px;}
.ws180{word-spacing:1531.097867px;}
.wsd9{word-spacing:1531.098089px;}
.wsd4{word-spacing:1531.098628px;}
.wsdd{word-spacing:1531.098631px;}
.wsd5{word-spacing:1531.098634px;}
.wse8{word-spacing:1531.099181px;}
.wse6{word-spacing:1531.099184px;}
.wsd8{word-spacing:1531.099196px;}
.wsdf{word-spacing:1531.099742px;}
.wsa5{word-spacing:1531.099987px;}
.wsa8{word-spacing:1531.100527px;}
.wsd6{word-spacing:1531.100806px;}
.wse3{word-spacing:1531.100837px;}
.wsa3{word-spacing:1531.101073px;}
.ws161{word-spacing:1531.101162px;}
.wse5{word-spacing:1531.101349px;}
.wsd7{word-spacing:1531.101353px;}
.wse1{word-spacing:1531.101364px;}
.wsa7{word-spacing:1531.101619px;}
.wsa2{word-spacing:1531.101626px;}
.ws164{word-spacing:1531.103349px;}
.ws17f{word-spacing:1531.157864px;}
.ws165{word-spacing:1531.157894px;}
.ws163{word-spacing:1531.158984px;}
.ws167{word-spacing:1531.159497px;}
.ws16a{word-spacing:1531.159505px;}
.ws15f{word-spacing:1531.159525px;}
.ws183{word-spacing:1531.160039px;}
.ws181{word-spacing:1531.160045px;}
.ws17d{word-spacing:1531.160077px;}
.wse2{word-spacing:1531.161893px;}
.wse9{word-spacing:1531.161958px;}
.wsde{word-spacing:1531.162443px;}
.wse4{word-spacing:1531.162453px;}
.wse7{word-spacing:1531.162456px;}
.wsda{word-spacing:1531.162457px;}
.wsa4{word-spacing:1531.162714px;}
.wsa9{word-spacing:1531.162719px;}
.ws15e{word-spacing:1531.162795px;}
.wsdb{word-spacing:1531.162981px;}
.wsdc{word-spacing:1531.162987px;}
.wse0{word-spacing:1531.163584px;}
.ws162{word-spacing:1531.163887px;}
.wsa6{word-spacing:1531.164355px;}
.ws166{word-spacing:1531.164432px;}
.wsa1{word-spacing:1531.164889px;}
.ws160{word-spacing:1531.166077px;}
.ws3e{word-spacing:1532.012478px;}
.ws40{word-spacing:1532.013017px;}
.ws45{word-spacing:1532.013023px;}
.ws43{word-spacing:1532.014115px;}
.ws3d{word-spacing:1532.015750px;}
.ws44{word-spacing:1532.075748px;}
.ws46{word-spacing:1532.076840px;}
.ws3f{word-spacing:1532.076842px;}
.ws3c{word-spacing:1532.077380px;}
.ws42{word-spacing:1532.077389px;}
._11{margin-left:-32.792755px;}
._25{margin-left:-31.782436px;}
._27{margin-left:-7.920007px;}
._6{margin-left:-6.886166px;}
._b{margin-left:-5.676062px;}
._0{margin-left:-4.214208px;}
._5{margin-left:-2.863241px;}
._1{margin-left:-1.793280px;}
._2{width:1.607993px;}
._3{width:2.869236px;}
._8{width:12.223249px;}
._9{width:14.704528px;}
._a{width:17.018196px;}
._24{width:19.580281px;}
._7{width:20.723937px;}
._17{width:22.655897px;}
._14{width:24.598930px;}
._1b{width:27.481782px;}
._1d{width:29.598735px;}
._16{width:31.362859px;}
._4{width:32.900573px;}
._19{width:35.861021px;}
._1e{width:38.672663px;}
._13{width:40.594058px;}
._18{width:43.126481px;}
._1a{width:44.388325px;}
._22{width:46.154365px;}
._10{width:50.737721px;}
._21{width:52.140002px;}
._1f{width:54.330918px;}
._12{width:58.267550px;}
._15{width:59.656519px;}
._1c{width:60.720326px;}
._d{width:62.312779px;}
._40{width:71.242558px;}
._7f{width:72.616558px;}
._8f{width:76.041310px;}
._b7{width:94.018558px;}
._bb{width:98.080558px;}
._20{width:100.875600px;}
._23{width:106.078152px;}
._c{width:119.932850px;}
._a8{width:124.467304px;}
._a0{width:128.595304px;}
._b2{width:132.915304px;}
._3f{width:134.890435px;}
._ac{width:138.543304px;}
._3e{width:160.236295px;}
._64{width:171.921304px;}
._55{width:173.944558px;}
._8b{width:176.967304px;}
._38{width:194.637304px;}
._48{width:196.720558px;}
._ab{width:198.105304px;}
._79{width:202.749304px;}
._bd{width:203.986558px;}
._5a{width:205.294558px;}
._30{width:207.267304px;}
._63{width:234.514435px;}
._72{width:235.954435px;}
._54{width:237.592435px;}
._7e{width:239.554435px;}
._97{width:247.840558px;}
._a7{width:254.872435px;}
._37{width:257.230435px;}
._9f{width:258.994435px;}
._47{width:260.368435px;}
._53{width:262.938295px;}
._78{width:265.342435px;}
._6a{width:267.640435px;}
._2f{width:269.860435px;}
._a6{width:281.102968px;}
._36{width:283.460968px;}
._46{width:285.714295px;}
._aa{width:286.928968px;}
._b1{width:289.544968px;}
._77{width:291.572968px;}
._b4{width:293.210968px;}
._59{width:294.288295px;}
._2e{width:296.090968px;}
._96{width:414.772435px;}
._3d{width:425.327425px;}
._62{width:430.670098px;}
._71{width:432.110098px;}
._52{width:433.938462px;}
._95{width:440.118295px;}
._a5{width:441.530098px;}
._9e{width:445.658098px;}
._b0{width:449.978098px;}
._a9{width:456.062098px;}
._80{width:462.311425px;}
._8d{width:464.207425px;}
._98{width:528.683425px;}
._88{width:530.882098px;}
._35{width:548.552098px;}
._45{width:550.805425px;}
._ba{width:555.449425px;}
._76{width:556.664098px;}
._bc{width:558.071425px;}
._58{width:559.379425px;}
._2d{width:561.182098px;}
._3c{width:620.432658px;}
._5c{width:684.611689px;}
._6b{width:686.897755px;}
._6c{width:688.108578px;}
._28{width:693.024481px;}
._94{width:705.209425px;}
._bf{width:712.029649px;}
._8c{width:713.822929px;}
._39{width:718.731132px;}
._61{width:719.991203px;}
._70{width:721.431203px;}
._51{width:723.134658px;}
._7d{width:725.096658px;}
._a4{width:740.349203px;}
._34{width:742.707203px;}
._9d{width:744.471203px;}
._44{width:745.910658px;}
._99{width:748.716231px;}
._75{width:750.819203px;}
._68{width:753.117203px;}
._2c{width:755.337203px;}
._84{width:781.684153px;}
._5d{width:783.007304px;}
._5e{width:818.355132px;}
._6d{width:819.795132px;}
._4e{width:821.367677px;}
._7a{width:823.329677px;}
._b6{width:826.834240px;}
._b8{width:836.458240px;}
._a1{width:838.713132px;}
._31{width:841.071132px;}
._9a{width:842.835132px;}
._41{width:844.209132px;}
._ad{width:847.155132px;}
._4d{width:848.436628px;}
._65{width:851.481132px;}
._29{width:853.701132px;}
._86{width:881.331880px;}
._c0{width:892.908521px;}
._b5{width:899.164351px;}
._93{width:900.314658px;}
._3b{width:919.307606px;}
._90{width:998.613132px;}
._60{width:1018.931606px;}
._6f{width:1020.371606px;}
._50{width:1022.009606px;}
._7c{width:1023.971606px;}
._87{width:1025.491125px;}
._3a{width:1033.152283px;}
._a3{width:1039.289606px;}
._33{width:1041.647606px;}
._9c{width:1043.411606px;}
._43{width:1044.785606px;}
._af{width:1047.731606px;}
._74{width:1049.759606px;}
._67{width:1052.057606px;}
._2b{width:1054.277606px;}
._4c{width:1063.348165px;}
._49{width:1080.892740px;}
._f{width:1086.696209px;}
._b9{width:1093.500283px;}
._4a{width:1114.879405px;}
._ae{width:1126.692283px;}
._b3{width:1130.358283px;}
._5f{width:1132.776283px;}
._6e{width:1134.216283px;}
._4f{width:1135.854283px;}
._7b{width:1137.816283px;}
._a2{width:1153.134283px;}
._32{width:1155.492283px;}
._9b{width:1157.256283px;}
._42{width:1158.630283px;}
._73{width:1163.604283px;}
._66{width:1165.902283px;}
._2a{width:1168.122283px;}
._4b{width:1182.691405px;}
._92{width:1199.189606px;}
._8e{width:1202.322786px;}
._91{width:1209.684283px;}
._8a{width:1428.871552px;}
._81{width:1449.619552px;}
._69{width:1456.951552px;}
._56{width:1459.226366px;}
._57{width:1496.142278px;}
._89{width:1498.644463px;}
._85{width:1521.324334px;}
._83{width:1525.300750px;}
._82{width:1555.251571px;}
._be{width:1562.873309px;}
._5b{width:1563.955175px;}
._26{width:1671.547384px;}
._e{width:1684.543356px;}
.fc6{color:transparent;}
.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;}
.y6{bottom:35.925007px;}
.y7f{bottom:61.507500px;}
.y5{bottom:66.525004px;}
.y4b{bottom:67.196167px;}
.y4{bottom:97.125005px;}
.y4a{bottom:107.843167px;}
.y49{bottom:128.166667px;}
.y142{bottom:130.542000px;}
.y192{bottom:132.975000px;}
.y103{bottom:134.887500px;}
.y120{bottom:137.173500px;}
.y21{bottom:139.264499px;}
.y17b{bottom:141.360000px;}
.yd2{bottom:143.806500px;}
.ya9{bottom:145.552500px;}
.y54{bottom:147.883522px;}
.y48{bottom:148.490167px;}
.y141{bottom:150.865500px;}
.y191{bottom:153.300000px;}
.y29{bottom:153.843000px;}
.y102{bottom:155.211000px;}
.y11f{bottom:157.498500px;}
.y17a{bottom:161.683500px;}
.yd1{bottom:164.130000px;}
.y13d{bottom:167.002500px;}
.y53{bottom:168.207022px;}
.y47{bottom:168.813667px;}
.y140{bottom:171.189000px;}
.y101{bottom:175.534500px;}
.y11e{bottom:177.822000px;}
.y179{bottom:182.007000px;}
.yd0{bottom:184.455000px;}
.y190{bottom:188.473500px;}
.y46{bottom:189.138667px;}
.ya8{bottom:190.231500px;}
.y13f{bottom:191.512500px;}
.y17d{bottom:193.959000px;}
.y100{bottom:195.858000px;}
.y18{bottom:196.933500px;}
.y11d{bottom:198.145500px;}
.y178{bottom:202.332000px;}
.ycf{bottom:204.778500px;}
.y18f{bottom:208.797000px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.ya7{bottom:210.555000px;}
.y13c{bottom:211.836000px;}
.yff{bottom:216.181500px;}
.y11c{bottom:218.469000px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y177{bottom:222.655500px;}
.yce{bottom:225.102000px;}
.y18e{bottom:229.120500px;}
.y45{bottom:229.160167px;}
.ya6{bottom:230.878500px;}
.y13b{bottom:232.161000px;}
.y28{bottom:233.784000px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.yfe{bottom:236.506500px;}
.y11b{bottom:238.792500px;}
.y176{bottom:242.979000px;}
.ycd{bottom:245.425500px;}
.y18d{bottom:249.444000px;}
.ya5{bottom:251.203500px;}
.y13a{bottom:252.484500px;}
.yfd{bottom:256.830000px;}
.y11a{bottom:259.117500px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y175{bottom:263.302500px;}
.ycc{bottom:265.749000px;}
.y18c{bottom:269.767500px;}
.y44{bottom:269.826067px;}
.ya4{bottom:271.527000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y139{bottom:272.808000px;}
.yfc{bottom:277.153500px;}
.y7e{bottom:277.369500px;}
.y135{bottom:279.441000px;}
.y27{bottom:281.604000px;}
.y174{bottom:283.626000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.ycb{bottom:286.072500px;}
.y18b{bottom:290.092500px;}
.y43{bottom:290.149567px;}
.ya3{bottom:291.850500px;}
.y138{bottom:293.131500px;}
.yfb{bottom:297.477000px;}
.y7d{bottom:297.693000px;}
.y134{bottom:299.764500px;}
.y173{bottom:303.951000px;}
.yca{bottom:306.397500px;}
.y119{bottom:309.270000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y18a{bottom:310.416000px;}
.ya2{bottom:312.174000px;}
.y137{bottom:313.455000px;}
.yfa{bottom:317.800500px;}
.y133{bottom:320.088000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y172{bottom:324.274500px;}
.yc9{bottom:326.721000px;}
.y26{bottom:329.424000px;}
.y189{bottom:330.739500px;}
.ya1{bottom:332.497500px;}
.y136{bottom:333.778500px;}
.y7c{bottom:334.380000px;}
.y147{bottom:336.226500px;}
.yf9{bottom:338.124000px;}
.y132{bottom:340.411500px;}
.y171{bottom:344.598000px;}
.yc8{bottom:347.044500px;}
.yf{bottom:348.133500px;}
.y188{bottom:351.063000px;}
.ya0{bottom:352.822500px;}
.y118{bottom:354.103500px;}
.y7b{bottom:354.703500px;}
.yf8{bottom:358.449000px;}
.y131{bottom:360.735000px;}
.y170{bottom:364.921500px;}
.yde{bottom:367.368000px;}
.y149{bottom:370.240500px;}
.y187{bottom:371.386500px;}
.y9f{bottom:373.146000px;}
.y117{bottom:374.427000px;}
.y7a{bottom:375.028500px;}
.y25{bottom:377.245500px;}
.yf7{bottom:378.772500px;}
.y130{bottom:381.060000px;}
.y16f{bottom:385.245000px;}
.ye{bottom:386.785499px;}
.ydd{bottom:387.691500px;}
.y9e{bottom:393.469500px;}
.y116{bottom:394.750500px;}
.y79{bottom:395.352000px;}
.yc7{bottom:397.197000px;}
.yf6{bottom:399.096000px;}
.y12f{bottom:401.383500px;}
.ydc{bottom:408.016500px;}
.yd{bottom:408.044999px;}
.y9d{bottom:413.793000px;}
.y115{bottom:415.074000px;}
.y78{bottom:415.675500px;}
.yf5{bottom:419.419500px;}
.y186{bottom:421.539000px;}
.y12e{bottom:421.707000px;}
.y9c{bottom:434.116500px;}
.y114{bottom:435.397500px;}
.y77{bottom:435.999000px;}
.y42{bottom:437.383522px;}
.yf4{bottom:439.743000px;}
.yc6{bottom:442.030500px;}
.y9b{bottom:454.440000px;}
.y113{bottom:455.722500px;}
.y76{bottom:456.322500px;}
.y41{bottom:457.707022px;}
.ydb{bottom:458.169000px;}
.yf3{bottom:460.068000px;}
.yc5{bottom:462.354000px;}
.y185{bottom:466.552500px;}
.y17c{bottom:471.859500px;}
.y9a{bottom:474.765000px;}
.y112{bottom:476.046000px;}
.y75{bottom:476.647500px;}
.y40{bottom:478.030522px;}
.y16e{bottom:480.231000px;}
.yf2{bottom:480.391500px;}
.yc4{bottom:482.679000px;}
.y14e{bottom:492.183000px;}
.y99{bottom:495.088500px;}
.y111{bottom:496.369500px;}
.y74{bottom:496.971000px;}
.y3f{bottom:498.355522px;}
.y16d{bottom:500.556000px;}
.yf1{bottom:500.715000px;}
.yc3{bottom:503.002500px;}
.y184{bottom:503.925000px;}
.y98{bottom:515.412000px;}
.y110{bottom:516.693000px;}
.y73{bottom:517.294500px;}
.yc{bottom:520.864502px;}
.y16c{bottom:520.879500px;}
.yf0{bottom:521.038500px;}
.yc2{bottom:523.326000px;}
.y97{bottom:535.735500px;}
.y10f{bottom:537.016500px;}
.y72{bottom:537.618000px;}
.yb{bottom:538.864499px;}
.y16b{bottom:541.203000px;}
.yef{bottom:541.362000px;}
.yc1{bottom:543.649500px;}
.y183{bottom:550.708500px;}
.y12b{bottom:550.867500px;}
.y12d{bottom:553.155000px;}
.y96{bottom:556.059000px;}
.ya{bottom:556.864499px;}
.y10e{bottom:557.340000px;}
.y71{bottom:557.941500px;}
.y16a{bottom:561.526500px;}
.yee{bottom:561.685500px;}
.yc0{bottom:563.973000px;}
.y3e{bottom:566.826022px;}
.y182{bottom:571.032000px;}
.y95{bottom:576.384000px;}
.y10d{bottom:577.665000px;}
.y70{bottom:578.266500px;}
.y169{bottom:581.850000px;}
.yed{bottom:582.010500px;}
.ybf{bottom:584.296500px;}
.y3d{bottom:587.149522px;}
.y181{bottom:591.355500px;}
.y12a{bottom:595.881000px;}
.y94{bottom:596.707500px;}
.y10c{bottom:597.988500px;}
.y6f{bottom:598.590000px;}
.y168{bottom:602.173500px;}
.yec{bottom:602.334000px;}
.ybe{bottom:604.621500px;}
.y3c{bottom:607.474522px;}
.y180{bottom:611.679000px;}
.y129{bottom:616.204500px;}
.y93{bottom:617.031000px;}
.y10b{bottom:618.312000px;}
.y6e{bottom:618.913500px;}
.y167{bottom:622.498500px;}
.yeb{bottom:622.657500px;}
.ybd{bottom:624.945000px;}
.y52{bottom:626.731522px;}
.y3b{bottom:627.798022px;}
.y14b{bottom:627.817500px;}
.y17f{bottom:632.002500px;}
.y128{bottom:636.528000px;}
.y92{bottom:637.354500px;}
.y10a{bottom:638.635500px;}
.y6d{bottom:639.237000px;}
.y166{bottom:642.822000px;}
.yea{bottom:642.981000px;}
.yda{bottom:645.268500px;}
.y9{bottom:645.510000px;}
.y3a{bottom:648.121522px;}
.y148{bottom:648.141000px;}
.y17e{bottom:652.327500px;}
.y91{bottom:657.678000px;}
.y109{bottom:658.959000px;}
.y6c{bottom:659.560500px;}
.y165{bottom:663.145500px;}
.yd9{bottom:665.592000px;}
.y8{bottom:666.771000px;}
.y51{bottom:667.378522px;}
.y39{bottom:668.445022px;}
.y127{bottom:672.651000px;}
.ybc{bottom:675.097500px;}
.y90{bottom:678.001500px;}
.y108{bottom:679.284000px;}
.y6b{bottom:679.885500px;}
.y164{bottom:683.469000px;}
.yd8{bottom:685.915500px;}
.y38{bottom:688.768522px;}
.y14a{bottom:688.788000px;}
.y126{bottom:692.974500px;}
.ye9{bottom:693.133500px;}
.y8f{bottom:698.326500px;}
.y107{bottom:699.607500px;}
.y6a{bottom:700.209000px;}
.y163{bottom:703.792500px;}
.y37{bottom:709.093522px;}
.y125{bottom:713.298000px;}
.y8e{bottom:718.650000px;}
.ybb{bottom:719.931000px;}
.y69{bottom:720.532500px;}
.y162{bottom:724.117500px;}
.y7{bottom:726.298500px;}
.y50{bottom:728.350522px;}
.y124{bottom:733.621500px;}
.yd7{bottom:736.068000px;}
.ye8{bottom:738.147000px;}
.y8d{bottom:738.973500px;}
.yba{bottom:740.254500px;}
.y68{bottom:740.856000px;}
.y161{bottom:744.441000px;}
.y13e{bottom:749.760000px;}
.y3{bottom:752.599495px;}
.y123{bottom:753.945000px;}
.ye7{bottom:758.470500px;}
.y8c{bottom:759.297000px;}
.yb9{bottom:760.578000px;}
.y67{bottom:761.179500px;}
.y160{bottom:764.764500px;}
.y4f{bottom:773.182522px;}
.y122{bottom:774.270000px;}
.ye6{bottom:778.794000px;}
.y8b{bottom:779.620500px;}
.yb8{bottom:780.901500px;}
.y66{bottom:781.504500px;}
.y15f{bottom:785.088000px;}
.y121{bottom:794.593500px;}
.y8a{bottom:799.945500px;}
.yb7{bottom:801.226500px;}
.y65{bottom:801.828000px;}
.y15e{bottom:805.411500px;}
.y14f{bottom:810.730500px;}
.y36{bottom:814.896646px;}
.ye5{bottom:814.917000px;}
.y4e{bottom:818.014522px;}
.yb6{bottom:821.550000px;}
.y64{bottom:822.151500px;}
.y15d{bottom:825.735000px;}
.ye4{bottom:835.240500px;}
.yb5{bottom:841.873500px;}
.y63{bottom:842.475000px;}
.y15c{bottom:846.060000px;}
.y89{bottom:849.474000px;}
.y35{bottom:855.545146px;}
.ye3{bottom:855.564000px;}
.yb4{bottom:862.197000px;}
.y62{bottom:862.798500px;}
.y4d{bottom:862.845022px;}
.y15b{bottom:866.383500px;}
.y24{bottom:868.360500px;}
.y12c{bottom:871.702500px;}
.y34{bottom:875.870146px;}
.ye2{bottom:875.889000px;}
.y2{bottom:879.369000px;}
.yd6{bottom:882.520500px;}
.y61{bottom:883.123500px;}
.y15a{bottom:886.707000px;}
.y88{bottom:887.445000px;}
.y33{bottom:896.193646px;}
.ye1{bottom:896.212500px;}
.yd5{bottom:902.845500px;}
.y60{bottom:903.447000px;}
.y159{bottom:907.030500px;}
.yb3{bottom:912.349500px;}
.y32{bottom:916.517146px;}
.ye0{bottom:916.536000px;}
.yd4{bottom:923.169000px;}
.y5f{bottom:923.770500px;}
.y158{bottom:927.354000px;}
.y31{bottom:936.840646px;}
.ydf{bottom:936.859500px;}
.y87{bottom:940.134000px;}
.y106{bottom:943.492500px;}
.y5e{bottom:944.094000px;}
.y157{bottom:947.679000px;}
.y14c{bottom:952.998000px;}
.y30{bottom:957.164146px;}
.yb2{bottom:957.183000px;}
.y86{bottom:960.457500px;}
.y105{bottom:963.816000px;}
.y5d{bottom:964.417500px;}
.y1{bottom:966.726000px;}
.y156{bottom:968.002500px;}
.yd3{bottom:973.321500px;}
.y2f{bottom:977.489146px;}
.yb1{bottom:977.506500px;}
.y85{bottom:980.781000px;}
.y146{bottom:984.139500px;}
.y5c{bottom:984.742500px;}
.y155{bottom:988.326000px;}
.y14d{bottom:993.645000px;}
.yb0{bottom:997.831500px;}
.y22{bottom:999.439500px;}
.y84{bottom:1001.106000px;}
.y145{bottom:1004.463000px;}
.y5b{bottom:1005.066000px;}
.y23{bottom:1007.944500px;}
.y154{bottom:1008.649500px;}
.y104{bottom:1013.968500px;}
.yaf{bottom:1018.155000px;}
.y2e{bottom:1018.155046px;}
.y83{bottom:1021.429500px;}
.y144{bottom:1024.788000px;}
.y5a{bottom:1025.389500px;}
.y153{bottom:1028.973000px;}
.yae{bottom:1038.478500px;}
.y2d{bottom:1038.478546px;}
.y82{bottom:1041.753000px;}
.y59{bottom:1045.713000px;}
.y152{bottom:1049.296500px;}
.yad{bottom:1058.802000px;}
.y81{bottom:1062.076500px;}
.y58{bottom:1066.036500px;}
.y151{bottom:1069.621500px;}
.y143{bottom:1074.940500px;}
.yac{bottom:1079.125500px;}
.y80{bottom:1082.400000px;}
.y150{bottom:1089.945000px;}
.y2c{bottom:1099.431604px;}
.yab{bottom:1099.450500px;}
.y57{bottom:1102.725000px;}
.yaa{bottom:1119.774000px;}
.y2b{bottom:1119.774004px;}
.y4c{bottom:1120.276519px;}
.y56{bottom:1140.097500px;}
.y2a{bottom:1140.097504px;}
.y55{bottom:1193.145000px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.he{height:48.109131px;}
.h14{height:48.115131px;}
.h12{height:48.174586px;}
.h3{height:48.195000px;}
.hd{height:48.328749px;}
.h10{height:48.370949px;}
.h15{height:48.829131px;}
.h13{height:52.794163px;}
.h2{height:55.080000px;}
.h11{height:63.352819px;}
.hb{height:65.992704px;}
.h5{height:78.030000px;}
.ha{height:92.389344px;}
.hf{height:109.459834px;}
.h4{height:119.055004px;}
.hc{height:140.783846px;}
.h9{height:543.344577px;}
.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;}
.xd{left:142.905000px;}
.xe{left:144.949500px;}
.x17{left:145.998000px;}
.x18{left:147.045000px;}
.x13{left:148.681500px;}
.x12{left:150.579000px;}
.x20{left:151.626000px;}
.x3e{left:153.115500px;}
.x41{left:154.326000px;}
.xb{left:158.484000px;}
.x3f{left:160.348500px;}
.x42{left:163.458000px;}
.x46{left:165.912000px;}
.x11{left:167.172000px;}
.x47{left:168.268500px;}
.x14{left:172.948500px;}
.x23{left:177.465000px;}
.x30{left:180.198000px;}
.x24{left:183.241500px;}
.x22{left:185.139000px;}
.x32{left:186.775500px;}
.x10{left:201.012000px;}
.xf{left:202.108500px;}
.x4{left:203.484001px;}
.x28{left:227.488500px;}
.x45{left:248.712000px;}
.x34{left:255.535500px;}
.x31{left:265.125000px;}
.x43{left:266.286000px;}
.x40{left:267.382500px;}
.x1e{left:268.789500px;}
.x15{left:270.589500px;}
.x16{left:271.686000px;}
.x2f{left:273.732000px;}
.x35{left:275.122500px;}
.x44{left:276.579000px;}
.x4d{left:289.702500px;}
.x2d{left:294.138000px;}
.x4c{left:305.118000px;}
.x36{left:310.729500px;}
.x4b{left:314.215500px;}
.x39{left:318.829500px;}
.x48{left:323.346000px;}
.x49{left:330.006000px;}
.x4a{left:331.086000px;}
.x2c{left:337.369500px;}
.x1c{left:340.119000px;}
.x1b{left:342.034500px;}
.x21{left:343.048500px;}
.x3c{left:350.035500px;}
.x3a{left:352.752000px;}
.x2b{left:363.568500px;}
.x33{left:368.166000px;}
.x3d{left:375.628500px;}
.x1a{left:381.502500px;}
.x1d{left:382.599000px;}
.x37{left:399.814500px;}
.x29{left:402.432000px;}
.xa{left:417.351013px;}
.x2a{left:422.182500px;}
.x3{left:454.959000px;}
.x27{left:466.086000px;}
.x2e{left:467.182500px;}
.x5{left:488.862000px;}
.x59{left:489.928500px;}
.x5a{left:504.295500px;}
.x5b{left:506.586000px;}
.x56{left:544.959000px;}
.x58{left:559.326000px;}
.x57{left:565.675500px;}
.x52{left:569.685000px;}
.x53{left:571.158000px;}
.x54{left:592.708500px;}
.x4e{left:742.611000px;}
.x25{left:744.150000px;}
.x38{left:745.687500px;}
.xc{left:750.793500px;}
.x1f{left:751.987500px;}
.x3b{left:758.796000px;}
.x19{left:765.816000px;}
.x51{left:768.012000px;}
.x6{left:832.947000px;}
.x26{left:834.166500px;}
.x50{left:1006.609500px;}
.x55{left:1007.706000px;}
.x4f{left:1390.923000px;}
@media print{
.v1{vertical-align:-6.309333pt;}
.v2{vertical-align:-4.858667pt;}
.v5{vertical-align:-2.528000pt;}
.v6{vertical-align:-1.600000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:4.858667pt;}
.v4{vertical-align:6.080000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:29.090933pt;}
.ls2{letter-spacing:63.762398pt;}
.ws2{word-spacing:-85.014400pt;}
.wsf{word-spacing:-66.098933pt;}
.ws3{word-spacing:-56.959648pt;}
.ws4{word-spacing:-56.789619pt;}
.ws13{word-spacing:-38.256533pt;}
.ws11{word-spacing:-33.181665pt;}
.ws10{word-spacing:-33.049467pt;}
.wsb{word-spacing:-29.090933pt;}
.ws34{word-spacing:-23.214565pt;}
.ws33{word-spacing:-21.352745pt;}
.ws36{word-spacing:-20.538199pt;}
.ws1{word-spacing:-19.925333pt;}
.ws5f{word-spacing:-19.607289pt;}
.ws38{word-spacing:-19.258198pt;}
.ws39{word-spacing:-19.204780pt;}
.ws30{word-spacing:-19.200016pt;}
.ws2f{word-spacing:-19.128267pt;}
.ws35{word-spacing:-18.967289pt;}
.ws32{word-spacing:-17.978197pt;}
.ws7{word-spacing:-17.163651pt;}
.ws12{word-spacing:-16.930923pt;}
.ws195{word-spacing:-16.872741pt;}
.ws31{word-spacing:-16.407286pt;}
.ws4d{word-spacing:-16.006076pt;}
.ws110{word-spacing:-16.005965pt;}
.wsd0{word-spacing:-16.005606pt;}
.ws15d{word-spacing:-16.005367pt;}
.ws120{word-spacing:-16.005214pt;}
.ws191{word-spacing:-16.005163pt;}
.ws49{word-spacing:-16.005086pt;}
.wsd3{word-spacing:-16.005077pt;}
.ws16c{word-spacing:-16.004710pt;}
.ws12d{word-spacing:-16.004557pt;}
.ws76{word-spacing:-16.004267pt;}
.ws194{word-spacing:-16.004173pt;}
.ws3b{word-spacing:-16.004028pt;}
.ws17b{word-spacing:-16.003959pt;}
.ws193{word-spacing:-16.003840pt;}
.wseb{word-spacing:-16.003507pt;}
.wsc9{word-spacing:-16.003362pt;}
.ws184{word-spacing:-16.003302pt;}
.wsea{word-spacing:-16.003183pt;}
.ws61{word-spacing:-16.002594pt;}
.ws9a{word-spacing:-16.002551pt;}
.wsc8{word-spacing:-16.002534pt;}
.ws13b{word-spacing:-16.002253pt;}
.ws152{word-spacing:-16.002074pt;}
.ws192{word-spacing:-16.001997pt;}
.ws13a{word-spacing:-16.001929pt;}
.ws52{word-spacing:-16.001818pt;}
.wsbf{word-spacing:-16.001690pt;}
.ws5a{word-spacing:-16.001442pt;}
.ws5d{word-spacing:-16.001374pt;}
.ws102{word-spacing:-16.001289pt;}
.ws59{word-spacing:-16.001195pt;}
.ws86{word-spacing:-16.001126pt;}
.wsaa{word-spacing:-15.941547pt;}
.ws85{word-spacing:-15.941478pt;}
.ws4a{word-spacing:-15.940267pt;}
.wsa0{word-spacing:-15.939038pt;}
.ws4f{word-spacing:-15.938918pt;}
.ws3a{word-spacing:-15.938799pt;}
.ws37{word-spacing:-15.825468pt;}
.wse{word-spacing:-15.185467pt;}
.ws9{word-spacing:-15.127285pt;}
.ws5{word-spacing:-14.611867pt;}
.ws8{word-spacing:-14.603649pt;}
.wsa{word-spacing:-14.545467pt;}
.ws60{word-spacing:-13.440011pt;}
.ws6{word-spacing:-13.265466pt;}
.wsc{word-spacing:-9.890917pt;}
.wsd{word-spacing:-8.727280pt;}
.ws2e{word-spacing:-7.748016pt;}
.ws2b{word-spacing:-7.742283pt;}
.ws24{word-spacing:-4.712731pt;}
.ws1f{word-spacing:-2.281083pt;}
.ws2c{word-spacing:-2.276949pt;}
.ws2d{word-spacing:-2.275083pt;}
.ws20{word-spacing:-2.274416pt;}
.ws2a{word-spacing:-2.273483pt;}
.ws22{word-spacing:-2.271883pt;}
.ws28{word-spacing:-2.270949pt;}
.ws23{word-spacing:-2.270283pt;}
.ws25{word-spacing:-2.262683pt;}
.ws26{word-spacing:-2.259216pt;}
.ws0{word-spacing:0.000000pt;}
.ws27{word-spacing:0.753984pt;}
.ws29{word-spacing:1.981717pt;}
.ws21{word-spacing:3.189717pt;}
.ws1b{word-spacing:21.340251pt;}
.ws1e{word-spacing:21.341184pt;}
.ws1c{word-spacing:21.343717pt;}
.ws15{word-spacing:21.344651pt;}
.ws14{word-spacing:21.346917pt;}
.ws19{word-spacing:21.347184pt;}
.ws1a{word-spacing:21.348517pt;}
.ws17{word-spacing:24.367717pt;}
.ws16{word-spacing:24.369317pt;}
.ws18{word-spacing:24.381051pt;}
.ws1d{word-spacing:25.585584pt;}
.ws47{word-spacing:34.610853pt;}
.ws4e{word-spacing:34.616187pt;}
.ws75{word-spacing:34.666123pt;}
.ws9e{word-spacing:34.668530pt;}
.ws41{word-spacing:34.668554pt;}
.ws58{word-spacing:34.669035pt;}
.ws57{word-spacing:34.669503pt;}
.ws48{word-spacing:34.671457pt;}
.ws5e{word-spacing:34.673887pt;}
.ws9b{word-spacing:945.624994pt;}
.wscf{word-spacing:977.384459pt;}
.ws53{word-spacing:1005.956677pt;}
.wscb{word-spacing:1015.555226pt;}
.ws9c{word-spacing:1015.965396pt;}
.ws9d{word-spacing:1019.922249pt;}
.wsce{word-spacing:1039.057238pt;}
.wscd{word-spacing:1050.463385pt;}
.ws51{word-spacing:1053.547023pt;}
.wsca{word-spacing:1061.108702pt;}
.ws9f{word-spacing:1061.576994pt;}
.ws5b{word-spacing:1062.795983pt;}
.ws5c{word-spacing:1063.494116pt;}
.ws55{word-spacing:1071.874311pt;}
.wscc{word-spacing:1083.686652pt;}
.ws54{word-spacing:1085.667268pt;}
.ws50{word-spacing:1103.816619pt;}
.ws56{word-spacing:1109.055406pt;}
.wsab{word-spacing:1241.876798pt;}
.ws15a{word-spacing:1241.877538pt;}
.ws63{word-spacing:1241.877587pt;}
.ws4b{word-spacing:1241.878660pt;}
.ws88{word-spacing:1243.157587pt;}
.ws87{word-spacing:1244.725587pt;}
.ws151{word-spacing:1245.423465pt;}
.wsd1{word-spacing:1245.895124pt;}
.ws62{word-spacing:1245.946921pt;}
.wsd2{word-spacing:1245.952412pt;}
.ws15c{word-spacing:1246.477248pt;}
.ws101{word-spacing:1254.447465pt;}
.ws4c{word-spacing:1258.749449pt;}
.ws118{word-spacing:1260.845477pt;}
.ws116{word-spacing:1264.452262pt;}
.ws68{word-spacing:1268.404622pt;}
.ws66{word-spacing:1268.405587pt;}
.ws8d{word-spacing:1269.684622pt;}
.ws8b{word-spacing:1269.685587pt;}
.ws69{word-spacing:1270.680499pt;}
.ws65{word-spacing:1270.965587pt;}
.ws173{word-spacing:1271.145595pt;}
.ws8e{word-spacing:1271.960499pt;}
.ws6b{word-spacing:1272.480254pt;}
.ws8c{word-spacing:1272.539891pt;}
.ws89{word-spacing:1272.540861pt;}
.ws6c{word-spacing:1272.826921pt;}
.ws15b{word-spacing:1272.885145pt;}
.wsac{word-spacing:1272.890132pt;}
.ws64{word-spacing:1273.063527pt;}
.ws6e{word-spacing:1273.587165pt;}
.ws90{word-spacing:1273.760254pt;}
.wsc0{word-spacing:1274.228798pt;}
.ws8a{word-spacing:1274.341587pt;}
.ws91{word-spacing:1274.576254pt;}
.ws67{word-spacing:1275.969225pt;}
.ws93{word-spacing:1275.971165pt;}
.ws6a{word-spacing:1277.196861pt;}
.ws8f{word-spacing:1278.476861pt;}
.wsad{word-spacing:1279.055465pt;}
.ws92{word-spacing:1280.858921pt;}
.ws6d{word-spacing:1280.917587pt;}
.ws159{word-spacing:1282.894748pt;}
.wsae{word-spacing:1284.410132pt;}
.ws111{word-spacing:1286.505595pt;}
.ws16e{word-spacing:1295.172262pt;}
.ws12f{word-spacing:1295.289595pt;}
.ws186{word-spacing:1297.268262pt;}
.ws72{word-spacing:1299.363165pt;}
.ws6f{word-spacing:1299.418921pt;}
.wsc1{word-spacing:1300.234132pt;}
.ws97{word-spacing:1300.643165pt;}
.ws96{word-spacing:1300.698441pt;}
.ws94{word-spacing:1300.698921pt;}
.ws71{word-spacing:1302.559774pt;}
.wsfb{word-spacing:1302.731680pt;}
.wsec{word-spacing:1302.735465pt;}
.ws73{word-spacing:1303.140137pt;}
.wsb6{word-spacing:1303.839929pt;}
.wsb7{word-spacing:1303.895201pt;}
.wsb0{word-spacing:1303.898132pt;}
.wsb4{word-spacing:1303.900051pt;}
.ws70{word-spacing:1304.599043pt;}
.wsb5{word-spacing:1305.009383pt;}
.wsb1{word-spacing:1305.066132pt;}
.ws95{word-spacing:1305.121709pt;}
.ws98{word-spacing:1305.993470pt;}
.wsaf{word-spacing:1306.810132pt;}
.ws13c{word-spacing:1307.098132pt;}
.wsfe{word-spacing:1307.973866pt;}
.wsb3{word-spacing:1308.264170pt;}
.wsb2{word-spacing:1308.266132pt;}
.ws112{word-spacing:1317.518929pt;}
.ws11a{word-spacing:1318.678660pt;}
.ws121{word-spacing:1321.991199pt;}
.ws138{word-spacing:1322.689327pt;}
.ws131{word-spacing:1322.692262pt;}
.ws177{word-spacing:1325.019994pt;}
.ws170{word-spacing:1325.022929pt;}
.ws188{word-spacing:1328.281595pt;}
.wsc3{word-spacing:1328.335465pt;}
.ws18f{word-spacing:1329.382660pt;}
.ws74{word-spacing:1330.371165pt;}
.wsc2{word-spacing:1331.247465pt;}
.ws99{word-spacing:1331.651165pt;}
.wsc4{word-spacing:1333.226132pt;}
.ws145{word-spacing:1333.684892pt;}
.ws13d{word-spacing:1333.685374pt;}
.ws150{word-spacing:1333.685383pt;}
.ws147{word-spacing:1333.685384pt;}
.ws14e{word-spacing:1333.685863pt;}
.ws14b{word-spacing:1333.685866pt;}
.ws14c{word-spacing:1333.686350pt;}
.ws149{word-spacing:1333.686840pt;}
.ws143{word-spacing:1333.686844pt;}
.ws14a{word-spacing:1333.688300pt;}
.wsef{word-spacing:1333.689254pt;}
.wsf8{word-spacing:1333.689275pt;}
.wsf1{word-spacing:1333.689564pt;}
.wsf6{word-spacing:1333.689752pt;}
.wsf2{word-spacing:1333.689757pt;}
.wsfa{word-spacing:1333.690226pt;}
.wsfc{word-spacing:1333.690230pt;}
.ws100{word-spacing:1333.690716pt;}
.wsed{word-spacing:1333.691205pt;}
.wsee{word-spacing:1333.691206pt;}
.wsf0{word-spacing:1333.691207pt;}
.wsf7{word-spacing:1333.691681pt;}
.wsf5{word-spacing:1333.691687pt;}
.ws141{word-spacing:1333.741627pt;}
.ws142{word-spacing:1333.741636pt;}
.ws13e{word-spacing:1333.742102pt;}
.ws146{word-spacing:1333.742109pt;}
.ws144{word-spacing:1333.742124pt;}
.ws140{word-spacing:1333.742413pt;}
.ws14d{word-spacing:1333.742591pt;}
.ws13f{word-spacing:1333.742619pt;}
.ws14f{word-spacing:1333.743070pt;}
.wsf3{word-spacing:1333.745504pt;}
.wsfd{word-spacing:1333.745986pt;}
.ws148{word-spacing:1333.746313pt;}
.wsff{word-spacing:1333.746463pt;}
.wsf4{word-spacing:1333.746470pt;}
.wsf9{word-spacing:1333.746483pt;}
.wsbd{word-spacing:1334.852684pt;}
.wsbc{word-spacing:1334.853652pt;}
.wsb8{word-spacing:1334.854637pt;}
.ws158{word-spacing:1334.855018pt;}
.ws153{word-spacing:1334.855577pt;}
.ws156{word-spacing:1334.856522pt;}
.wsb9{word-spacing:1334.908941pt;}
.wsbb{word-spacing:1334.909401pt;}
.wsbe{word-spacing:1334.909890pt;}
.ws157{word-spacing:1334.910320pt;}
.wsba{word-spacing:1334.910392pt;}
.ws154{word-spacing:1334.914681pt;}
.ws155{word-spacing:1334.914701pt;}
.ws17e{word-spacing:1337.120384pt;}
.ws11f{word-spacing:1348.466785pt;}
.ws11d{word-spacing:1348.522058pt;}
.ws11b{word-spacing:1348.522542pt;}
.ws113{word-spacing:1348.522566pt;}
.ws119{word-spacing:1348.522569pt;}
.ws11c{word-spacing:1348.523027pt;}
.ws117{word-spacing:1348.523053pt;}
.ws11e{word-spacing:1348.523994pt;}
.ws115{word-spacing:1348.524022pt;}
.ws114{word-spacing:1348.526929pt;}
.ws10f{word-spacing:1352.130789pt;}
.ws104{word-spacing:1352.130811pt;}
.ws10c{word-spacing:1352.131755pt;}
.ws109{word-spacing:1352.132732pt;}
.ws106{word-spacing:1352.132755pt;}
.ws10d{word-spacing:1352.133211pt;}
.ws108{word-spacing:1352.133233pt;}
.ws105{word-spacing:1352.186566pt;}
.ws107{word-spacing:1352.186572pt;}
.ws10e{word-spacing:1352.187514pt;}
.ws10a{word-spacing:1352.187521pt;}
.ws10b{word-spacing:1352.187997pt;}
.ws103{word-spacing:1352.190929pt;}
.ws12a{word-spacing:1352.947758pt;}
.ws125{word-spacing:1352.948267pt;}
.ws126{word-spacing:1352.948269pt;}
.ws128{word-spacing:1352.949209pt;}
.ws12b{word-spacing:1353.004004pt;}
.ws122{word-spacing:1353.004023pt;}
.ws12c{word-spacing:1353.004479pt;}
.ws129{word-spacing:1353.004484pt;}
.ws124{word-spacing:1353.004507pt;}
.ws127{word-spacing:1353.004513pt;}
.ws123{word-spacing:1353.006929pt;}
.ws134{word-spacing:1353.645449pt;}
.ws130{word-spacing:1353.645963pt;}
.ws135{word-spacing:1353.646420pt;}
.ws136{word-spacing:1353.646905pt;}
.ws132{word-spacing:1353.701233pt;}
.ws137{word-spacing:1353.702183pt;}
.ws139{word-spacing:1353.702660pt;}
.ws133{word-spacing:1353.702689pt;}
.ws12e{word-spacing:1353.705595pt;}
.ws16f{word-spacing:1355.971296pt;}
.ws179{word-spacing:1356.026058pt;}
.ws176{word-spacing:1356.026546pt;}
.ws171{word-spacing:1356.026566pt;}
.ws178{word-spacing:1356.027027pt;}
.ws174{word-spacing:1356.027053pt;}
.ws175{word-spacing:1356.027516pt;}
.ws17a{word-spacing:1356.027994pt;}
.ws172{word-spacing:1356.028022pt;}
.ws16d{word-spacing:1356.030929pt;}
.ws18b{word-spacing:1359.229449pt;}
.ws187{word-spacing:1359.229963pt;}
.ws18c{word-spacing:1359.230420pt;}
.ws18d{word-spacing:1359.230905pt;}
.ws189{word-spacing:1359.285233pt;}
.ws18e{word-spacing:1359.286183pt;}
.ws190{word-spacing:1359.286660pt;}
.ws18a{word-spacing:1359.286689pt;}
.ws185{word-spacing:1359.289595pt;}
.wsc7{word-spacing:1359.290109pt;}
.wsc6{word-spacing:1359.346836pt;}
.wsc5{word-spacing:1359.348798pt;}
.ws82{word-spacing:1359.815099pt;}
.ws79{word-spacing:1359.815579pt;}
.ws84{word-spacing:1359.815586pt;}
.ws7b{word-spacing:1359.816065pt;}
.ws80{word-spacing:1359.816070pt;}
.ws83{word-spacing:1359.816072pt;}
.ws7c{word-spacing:1359.816550pt;}
.ws7e{word-spacing:1359.816557pt;}
.ws77{word-spacing:1359.870373pt;}
.ws81{word-spacing:1359.870374pt;}
.ws7f{word-spacing:1359.871825pt;}
.ws7d{word-spacing:1359.872310pt;}
.ws78{word-spacing:1359.872312pt;}
.ws7a{word-spacing:1359.872790pt;}
.ws169{word-spacing:1360.973455pt;}
.ws16b{word-spacing:1360.973456pt;}
.ws182{word-spacing:1360.973940pt;}
.ws168{word-spacing:1360.974909pt;}
.ws17c{word-spacing:1360.974935pt;}
.ws180{word-spacing:1360.975882pt;}
.wsd9{word-spacing:1360.976079pt;}
.wsd4{word-spacing:1360.976558pt;}
.wsdd{word-spacing:1360.976561pt;}
.wsd5{word-spacing:1360.976564pt;}
.wse8{word-spacing:1360.977050pt;}
.wse6{word-spacing:1360.977052pt;}
.wsd8{word-spacing:1360.977063pt;}
.wsdf{word-spacing:1360.977549pt;}
.wsa5{word-spacing:1360.977766pt;}
.wsa8{word-spacing:1360.978246pt;}
.wsd6{word-spacing:1360.978494pt;}
.wse3{word-spacing:1360.978522pt;}
.wsa3{word-spacing:1360.978731pt;}
.ws161{word-spacing:1360.978811pt;}
.wse5{word-spacing:1360.978977pt;}
.wsd7{word-spacing:1360.978980pt;}
.wse1{word-spacing:1360.978990pt;}
.wsa7{word-spacing:1360.979217pt;}
.wsa2{word-spacing:1360.979223pt;}
.ws164{word-spacing:1360.980755pt;}
.ws17f{word-spacing:1361.029213pt;}
.ws165{word-spacing:1361.029239pt;}
.ws163{word-spacing:1361.030208pt;}
.ws167{word-spacing:1361.030664pt;}
.ws16a{word-spacing:1361.030671pt;}
.ws15f{word-spacing:1361.030689pt;}
.ws183{word-spacing:1361.031146pt;}
.ws181{word-spacing:1361.031151pt;}
.ws17d{word-spacing:1361.031179pt;}
.wse2{word-spacing:1361.032794pt;}
.wse9{word-spacing:1361.032852pt;}
.wsde{word-spacing:1361.033283pt;}
.wse4{word-spacing:1361.033291pt;}
.wse7{word-spacing:1361.033294pt;}
.wsda{word-spacing:1361.033295pt;}
.wsa4{word-spacing:1361.033524pt;}
.wsa9{word-spacing:1361.033528pt;}
.ws15e{word-spacing:1361.033595pt;}
.wsdb{word-spacing:1361.033761pt;}
.wsdc{word-spacing:1361.033766pt;}
.wse0{word-spacing:1361.034297pt;}
.ws162{word-spacing:1361.034566pt;}
.wsa6{word-spacing:1361.034982pt;}
.ws166{word-spacing:1361.035051pt;}
.wsa1{word-spacing:1361.035457pt;}
.ws160{word-spacing:1361.036513pt;}
.ws3e{word-spacing:1361.788869pt;}
.ws40{word-spacing:1361.789349pt;}
.ws45{word-spacing:1361.789354pt;}
.ws43{word-spacing:1361.790325pt;}
.ws3d{word-spacing:1361.791778pt;}
.ws44{word-spacing:1361.845109pt;}
.ws46{word-spacing:1361.846080pt;}
.ws3f{word-spacing:1361.846082pt;}
.ws3c{word-spacing:1361.846560pt;}
.ws42{word-spacing:1361.846568pt;}
._11{margin-left:-29.149115pt;}
._25{margin-left:-28.251054pt;}
._27{margin-left:-7.040006pt;}
._6{margin-left:-6.121037pt;}
._b{margin-left:-5.045388pt;}
._0{margin-left:-3.745963pt;}
._5{margin-left:-2.545103pt;}
._1{margin-left:-1.594027pt;}
._2{width:1.429327pt;}
._3{width:2.550432pt;}
._8{width:10.865110pt;}
._9{width:13.070692pt;}
._a{width:15.127285pt;}
._24{width:17.404694pt;}
._7{width:18.421277pt;}
._17{width:20.138575pt;}
._14{width:21.865715pt;}
._1b{width:24.428251pt;}
._1d{width:26.309987pt;}
._16{width:27.878097pt;}
._4{width:29.244954pt;}
._19{width:31.876463pt;}
._1e{width:34.375700pt;}
._13{width:36.083607pt;}
._18{width:38.334650pt;}
._1a{width:39.456289pt;}
._22{width:41.026102pt;}
._10{width:45.100196pt;}
._21{width:46.346669pt;}
._1f{width:48.294149pt;}
._12{width:51.793378pt;}
._15{width:53.028017pt;}
._1c{width:53.973623pt;}
._d{width:55.389137pt;}
._40{width:63.326718pt;}
._7f{width:64.548052pt;}
._8f{width:67.592275pt;}
._b7{width:83.572052pt;}
._bb{width:87.182718pt;}
._20{width:89.667200pt;}
._23{width:94.291691pt;}
._c{width:106.606978pt;}
._a8{width:110.637603pt;}
._a0{width:114.306937pt;}
._b2{width:118.146937pt;}
._3f{width:119.902609pt;}
._ac{width:123.149603pt;}
._3e{width:142.432262pt;}
._64{width:152.818937pt;}
._55{width:154.617385pt;}
._8b{width:157.304270pt;}
._38{width:173.010937pt;}
._48{width:174.862718pt;}
._ab{width:176.093603pt;}
._79{width:180.221603pt;}
._bd{width:181.321385pt;}
._5a{width:182.484052pt;}
._30{width:184.237603pt;}
._63{width:208.457276pt;}
._72{width:209.737276pt;}
._54{width:211.193276pt;}
._7e{width:212.937276pt;}
._97{width:220.302718pt;}
._a7{width:226.553276pt;}
._37{width:228.649276pt;}
._9f{width:230.217276pt;}
._47{width:231.438609pt;}
._53{width:233.722929pt;}
._78{width:235.859942pt;}
._6a{width:237.902609pt;}
._2f{width:239.875942pt;}
._a6{width:249.869305pt;}
._36{width:251.965305pt;}
._46{width:253.968262pt;}
._aa{width:255.047972pt;}
._b1{width:257.373305pt;}
._77{width:259.175972pt;}
._b4{width:260.631972pt;}
._59{width:261.589595pt;}
._2e{width:263.191972pt;}
._96{width:368.686609pt;}
._3d{width:378.068822pt;}
._62{width:382.817865pt;}
._71{width:384.097865pt;}
._52{width:385.723077pt;}
._95{width:391.216262pt;}
._a5{width:392.471198pt;}
._9e{width:396.140532pt;}
._b0{width:399.980532pt;}
._a9{width:405.388532pt;}
._80{width:410.943489pt;}
._8d{width:412.628822pt;}
._98{width:469.940822pt;}
._88{width:471.895198pt;}
._35{width:487.601865pt;}
._45{width:489.604822pt;}
._ba{width:493.732822pt;}
._76{width:494.812532pt;}
._bc{width:496.063489pt;}
._58{width:497.226155pt;}
._2d{width:498.828532pt;}
._3c{width:551.495696pt;}
._5c{width:608.543724pt;}
._6b{width:610.575782pt;}
._6c{width:611.652069pt;}
._28{width:616.021761pt;}
._94{width:626.852822pt;}
._bf{width:632.915244pt;}
._8c{width:634.509270pt;}
._39{width:638.872117pt;}
._61{width:639.992181pt;}
._70{width:641.272181pt;}
._51{width:642.786363pt;}
._7d{width:644.530363pt;}
._a4{width:658.088181pt;}
._34{width:660.184181pt;}
._9d{width:661.752181pt;}
._44{width:663.031696pt;}
._99{width:665.525539pt;}
._75{width:667.394847pt;}
._68{width:669.437514pt;}
._2c{width:671.410847pt;}
._84{width:694.830358pt;}
._5d{width:696.006493pt;}
._5e{width:727.426784pt;}
._6d{width:728.706784pt;}
._4e{width:730.104602pt;}
._7a{width:731.848602pt;}
._b6{width:734.963769pt;}
._b8{width:743.518435pt;}
._a1{width:745.522784pt;}
._31{width:747.618784pt;}
._9a{width:749.186784pt;}
._41{width:750.408117pt;}
._ad{width:753.026784pt;}
._4d{width:754.165892pt;}
._65{width:756.872117pt;}
._29{width:758.845451pt;}
._86{width:783.406116pt;}
._c0{width:793.696463pt;}
._b5{width:799.257201pt;}
._93{width:800.279696pt;}
._3b{width:817.162316pt;}
._90{width:887.656117pt;}
._60{width:905.716983pt;}
._6f{width:906.996983pt;}
._50{width:908.452983pt;}
._7c{width:910.196983pt;}
._87{width:911.547667pt;}
._3a{width:918.357585pt;}
._a3{width:923.812983pt;}
._33{width:925.908983pt;}
._9c{width:927.476983pt;}
._43{width:928.698316pt;}
._af{width:931.316983pt;}
._74{width:933.119650pt;}
._67{width:935.162316pt;}
._2b{width:937.135650pt;}
._4c{width:945.198369pt;}
._49{width:960.793547pt;}
._f{width:965.952186pt;}
._b9{width:972.000252pt;}
._4a{width:991.003915pt;}
._ae{width:1001.504252pt;}
._b3{width:1004.762918pt;}
._5f{width:1006.912252pt;}
._6e{width:1008.192252pt;}
._4f{width:1009.648252pt;}
._7b{width:1011.392252pt;}
._a2{width:1025.008252pt;}
._32{width:1027.104252pt;}
._9b{width:1028.672252pt;}
._42{width:1029.893585pt;}
._73{width:1034.314918pt;}
._66{width:1036.357585pt;}
._2a{width:1038.330918pt;}
._4b{width:1051.281249pt;}
._92{width:1065.946316pt;}
._8e{width:1068.731365pt;}
._91{width:1075.274918pt;}
._8a{width:1270.108046pt;}
._81{width:1288.550713pt;}
._69{width:1295.068046pt;}
._56{width:1297.090103pt;}
._57{width:1329.904247pt;}
._89{width:1332.128412pt;}
._85{width:1352.288297pt;}
._83{width:1355.822889pt;}
._82{width:1382.445841pt;}
._be{width:1389.220719pt;}
._5b{width:1390.182378pt;}
._26{width:1485.819897pt;}
._e{width:1497.371872pt;}
.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;}
.y6{bottom:31.933340pt;}
.y7f{bottom:54.673333pt;}
.y5{bottom:59.133337pt;}
.y4b{bottom:59.729926pt;}
.y4{bottom:86.333337pt;}
.y4a{bottom:95.860593pt;}
.y49{bottom:113.925926pt;}
.y142{bottom:116.037333pt;}
.y192{bottom:118.200000pt;}
.y103{bottom:119.900000pt;}
.y120{bottom:121.932000pt;}
.y21{bottom:123.790666pt;}
.y17b{bottom:125.653333pt;}
.yd2{bottom:127.828000pt;}
.ya9{bottom:129.380000pt;}
.y54{bottom:131.452019pt;}
.y48{bottom:131.991259pt;}
.y141{bottom:134.102667pt;}
.y191{bottom:136.266667pt;}
.y29{bottom:136.749333pt;}
.y102{bottom:137.965333pt;}
.y11f{bottom:139.998667pt;}
.y17a{bottom:143.718667pt;}
.yd1{bottom:145.893333pt;}
.y13d{bottom:148.446667pt;}
.y53{bottom:149.517353pt;}
.y47{bottom:150.056593pt;}
.y140{bottom:152.168000pt;}
.y101{bottom:156.030667pt;}
.y11e{bottom:158.064000pt;}
.y179{bottom:161.784000pt;}
.yd0{bottom:163.960000pt;}
.y190{bottom:167.532000pt;}
.y46{bottom:168.123259pt;}
.ya8{bottom:169.094667pt;}
.y13f{bottom:170.233333pt;}
.y17d{bottom:172.408000pt;}
.y100{bottom:174.096000pt;}
.y18{bottom:175.052000pt;}
.y11d{bottom:176.129333pt;}
.y178{bottom:179.850667pt;}
.ycf{bottom:182.025333pt;}
.y18f{bottom:185.597333pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.ya7{bottom:187.160000pt;}
.y13c{bottom:188.298667pt;}
.yff{bottom:192.161333pt;}
.y11c{bottom:194.194667pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y177{bottom:197.916000pt;}
.yce{bottom:200.090667pt;}
.y18e{bottom:203.662667pt;}
.y45{bottom:203.697926pt;}
.ya6{bottom:205.225333pt;}
.y13b{bottom:206.365333pt;}
.y28{bottom:207.808000pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.yfe{bottom:210.228000pt;}
.y11b{bottom:212.260000pt;}
.y176{bottom:215.981333pt;}
.ycd{bottom:218.156000pt;}
.y18d{bottom:221.728000pt;}
.ya5{bottom:223.292000pt;}
.y13a{bottom:224.430667pt;}
.yfd{bottom:228.293333pt;}
.y11a{bottom:230.326667pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y175{bottom:234.046667pt;}
.ycc{bottom:236.221333pt;}
.y18c{bottom:239.793333pt;}
.y44{bottom:239.845393pt;}
.ya4{bottom:241.357333pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y139{bottom:242.496000pt;}
.yfc{bottom:246.358667pt;}
.y7e{bottom:246.550667pt;}
.y135{bottom:248.392000pt;}
.y27{bottom:250.314667pt;}
.y174{bottom:252.112000pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.ycb{bottom:254.286667pt;}
.y18b{bottom:257.860000pt;}
.y43{bottom:257.910726pt;}
.ya3{bottom:259.422667pt;}
.y138{bottom:260.561333pt;}
.yfb{bottom:264.424000pt;}
.y7d{bottom:264.616000pt;}
.y134{bottom:266.457333pt;}
.y173{bottom:270.178667pt;}
.yca{bottom:272.353333pt;}
.y119{bottom:274.906667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y18a{bottom:275.925333pt;}
.ya2{bottom:277.488000pt;}
.y137{bottom:278.626667pt;}
.yfa{bottom:282.489333pt;}
.y133{bottom:284.522667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y172{bottom:288.244000pt;}
.yc9{bottom:290.418667pt;}
.y26{bottom:292.821333pt;}
.y189{bottom:293.990667pt;}
.ya1{bottom:295.553333pt;}
.y136{bottom:296.692000pt;}
.y7c{bottom:297.226667pt;}
.y147{bottom:298.868000pt;}
.yf9{bottom:300.554667pt;}
.y132{bottom:302.588000pt;}
.y171{bottom:306.309333pt;}
.yc8{bottom:308.484000pt;}
.yf{bottom:309.452000pt;}
.y188{bottom:312.056000pt;}
.ya0{bottom:313.620000pt;}
.y118{bottom:314.758667pt;}
.y7b{bottom:315.292000pt;}
.yf8{bottom:318.621333pt;}
.y131{bottom:320.653333pt;}
.y170{bottom:324.374667pt;}
.yde{bottom:326.549333pt;}
.y149{bottom:329.102667pt;}
.y187{bottom:330.121333pt;}
.y9f{bottom:331.685333pt;}
.y117{bottom:332.824000pt;}
.y7a{bottom:333.358667pt;}
.y25{bottom:335.329333pt;}
.yf7{bottom:336.686667pt;}
.y130{bottom:338.720000pt;}
.y16f{bottom:342.440000pt;}
.ye{bottom:343.809333pt;}
.ydd{bottom:344.614667pt;}
.y9e{bottom:349.750667pt;}
.y116{bottom:350.889333pt;}
.y79{bottom:351.424000pt;}
.yc7{bottom:353.064000pt;}
.yf6{bottom:354.752000pt;}
.y12f{bottom:356.785333pt;}
.ydc{bottom:362.681333pt;}
.yd{bottom:362.706666pt;}
.y9d{bottom:367.816000pt;}
.y115{bottom:368.954667pt;}
.y78{bottom:369.489333pt;}
.yf5{bottom:372.817333pt;}
.y186{bottom:374.701333pt;}
.y12e{bottom:374.850667pt;}
.y9c{bottom:385.881333pt;}
.y114{bottom:387.020000pt;}
.y77{bottom:387.554667pt;}
.y42{bottom:388.785353pt;}
.yf4{bottom:390.882667pt;}
.yc6{bottom:392.916000pt;}
.y9b{bottom:403.946667pt;}
.y113{bottom:405.086667pt;}
.y76{bottom:405.620000pt;}
.y41{bottom:406.850686pt;}
.ydb{bottom:407.261333pt;}
.yf3{bottom:408.949333pt;}
.yc5{bottom:410.981333pt;}
.y185{bottom:414.713333pt;}
.y17c{bottom:419.430667pt;}
.y9a{bottom:422.013333pt;}
.y112{bottom:423.152000pt;}
.y75{bottom:423.686667pt;}
.y40{bottom:424.916019pt;}
.y16e{bottom:426.872000pt;}
.yf2{bottom:427.014667pt;}
.yc4{bottom:429.048000pt;}
.y14e{bottom:437.496000pt;}
.y99{bottom:440.078667pt;}
.y111{bottom:441.217333pt;}
.y74{bottom:441.752000pt;}
.y3f{bottom:442.982686pt;}
.y16d{bottom:444.938667pt;}
.yf1{bottom:445.080000pt;}
.yc3{bottom:447.113333pt;}
.y184{bottom:447.933333pt;}
.y98{bottom:458.144000pt;}
.y110{bottom:459.282667pt;}
.y73{bottom:459.817333pt;}
.yc{bottom:462.990669pt;}
.y16c{bottom:463.004000pt;}
.yf0{bottom:463.145333pt;}
.yc2{bottom:465.178667pt;}
.y97{bottom:476.209333pt;}
.y10f{bottom:477.348000pt;}
.y72{bottom:477.882667pt;}
.yb{bottom:478.990666pt;}
.y16b{bottom:481.069333pt;}
.yef{bottom:481.210667pt;}
.yc1{bottom:483.244000pt;}
.y183{bottom:489.518667pt;}
.y12b{bottom:489.660000pt;}
.y12d{bottom:491.693333pt;}
.y96{bottom:494.274667pt;}
.ya{bottom:494.990666pt;}
.y10e{bottom:495.413333pt;}
.y71{bottom:495.948000pt;}
.y16a{bottom:499.134667pt;}
.yee{bottom:499.276000pt;}
.yc0{bottom:501.309333pt;}
.y3e{bottom:503.845353pt;}
.y182{bottom:507.584000pt;}
.y95{bottom:512.341333pt;}
.y10d{bottom:513.480000pt;}
.y70{bottom:514.014667pt;}
.y169{bottom:517.200000pt;}
.yed{bottom:517.342667pt;}
.ybf{bottom:519.374667pt;}
.y3d{bottom:521.910686pt;}
.y181{bottom:525.649333pt;}
.y12a{bottom:529.672000pt;}
.y94{bottom:530.406667pt;}
.y10c{bottom:531.545333pt;}
.y6f{bottom:532.080000pt;}
.y168{bottom:535.265333pt;}
.yec{bottom:535.408000pt;}
.ybe{bottom:537.441333pt;}
.y3c{bottom:539.977353pt;}
.y180{bottom:543.714667pt;}
.y129{bottom:547.737333pt;}
.y93{bottom:548.472000pt;}
.y10b{bottom:549.610667pt;}
.y6e{bottom:550.145333pt;}
.y167{bottom:553.332000pt;}
.yeb{bottom:553.473333pt;}
.ybd{bottom:555.506667pt;}
.y52{bottom:557.094686pt;}
.y3b{bottom:558.042686pt;}
.y14b{bottom:558.060000pt;}
.y17f{bottom:561.780000pt;}
.y128{bottom:565.802667pt;}
.y92{bottom:566.537333pt;}
.y10a{bottom:567.676000pt;}
.y6d{bottom:568.210667pt;}
.y166{bottom:571.397333pt;}
.yea{bottom:571.538667pt;}
.yda{bottom:573.572000pt;}
.y9{bottom:573.786667pt;}
.y3a{bottom:576.108019pt;}
.y148{bottom:576.125333pt;}
.y17e{bottom:579.846667pt;}
.y91{bottom:584.602667pt;}
.y109{bottom:585.741333pt;}
.y6c{bottom:586.276000pt;}
.y165{bottom:589.462667pt;}
.yd9{bottom:591.637333pt;}
.y8{bottom:592.685334pt;}
.y51{bottom:593.225353pt;}
.y39{bottom:594.173353pt;}
.y127{bottom:597.912000pt;}
.ybc{bottom:600.086667pt;}
.y90{bottom:602.668000pt;}
.y108{bottom:603.808000pt;}
.y6b{bottom:604.342667pt;}
.y164{bottom:607.528000pt;}
.yd8{bottom:609.702667pt;}
.y38{bottom:612.238686pt;}
.y14a{bottom:612.256000pt;}
.y126{bottom:615.977333pt;}
.ye9{bottom:616.118667pt;}
.y8f{bottom:620.734667pt;}
.y107{bottom:621.873333pt;}
.y6a{bottom:622.408000pt;}
.y163{bottom:625.593333pt;}
.y37{bottom:630.305353pt;}
.y125{bottom:634.042667pt;}
.y8e{bottom:638.800000pt;}
.ybb{bottom:639.938667pt;}
.y69{bottom:640.473333pt;}
.y162{bottom:643.660000pt;}
.y7{bottom:645.598667pt;}
.y50{bottom:647.422686pt;}
.y124{bottom:652.108000pt;}
.yd7{bottom:654.282667pt;}
.ye8{bottom:656.130667pt;}
.y8d{bottom:656.865333pt;}
.yba{bottom:658.004000pt;}
.y68{bottom:658.538667pt;}
.y161{bottom:661.725333pt;}
.y13e{bottom:666.453333pt;}
.y3{bottom:668.977329pt;}
.y123{bottom:670.173333pt;}
.ye7{bottom:674.196000pt;}
.y8c{bottom:674.930667pt;}
.yb9{bottom:676.069333pt;}
.y67{bottom:676.604000pt;}
.y160{bottom:679.790667pt;}
.y4f{bottom:687.273353pt;}
.y122{bottom:688.240000pt;}
.ye6{bottom:692.261333pt;}
.y8b{bottom:692.996000pt;}
.yb8{bottom:694.134667pt;}
.y66{bottom:694.670667pt;}
.y15f{bottom:697.856000pt;}
.y121{bottom:706.305333pt;}
.y8a{bottom:711.062667pt;}
.yb7{bottom:712.201333pt;}
.y65{bottom:712.736000pt;}
.y15e{bottom:715.921333pt;}
.y14f{bottom:720.649333pt;}
.y36{bottom:724.352574pt;}
.ye5{bottom:724.370667pt;}
.y4e{bottom:727.124019pt;}
.yb6{bottom:730.266667pt;}
.y64{bottom:730.801333pt;}
.y15d{bottom:733.986667pt;}
.ye4{bottom:742.436000pt;}
.yb5{bottom:748.332000pt;}
.y63{bottom:748.866667pt;}
.y15c{bottom:752.053333pt;}
.y89{bottom:755.088000pt;}
.y35{bottom:760.484574pt;}
.ye3{bottom:760.501333pt;}
.yb4{bottom:766.397333pt;}
.y62{bottom:766.932000pt;}
.y4d{bottom:766.973353pt;}
.y15b{bottom:770.118667pt;}
.y24{bottom:771.876000pt;}
.y12c{bottom:774.846667pt;}
.y34{bottom:778.551241pt;}
.ye2{bottom:778.568000pt;}
.y2{bottom:781.661334pt;}
.yd6{bottom:784.462667pt;}
.y61{bottom:784.998667pt;}
.y15a{bottom:788.184000pt;}
.y88{bottom:788.840000pt;}
.y33{bottom:796.616574pt;}
.ye1{bottom:796.633333pt;}
.yd5{bottom:802.529333pt;}
.y60{bottom:803.064000pt;}
.y159{bottom:806.249333pt;}
.yb3{bottom:810.977333pt;}
.y32{bottom:814.681907pt;}
.ye0{bottom:814.698667pt;}
.yd4{bottom:820.594667pt;}
.y5f{bottom:821.129333pt;}
.y158{bottom:824.314667pt;}
.y31{bottom:832.747241pt;}
.ydf{bottom:832.764000pt;}
.y87{bottom:835.674667pt;}
.y106{bottom:838.660000pt;}
.y5e{bottom:839.194667pt;}
.y157{bottom:842.381333pt;}
.y14c{bottom:847.109333pt;}
.y30{bottom:850.812574pt;}
.yb2{bottom:850.829333pt;}
.y86{bottom:853.740000pt;}
.y105{bottom:856.725333pt;}
.y5d{bottom:857.260000pt;}
.y1{bottom:859.312000pt;}
.y156{bottom:860.446667pt;}
.yd3{bottom:865.174667pt;}
.y2f{bottom:868.879241pt;}
.yb1{bottom:868.894667pt;}
.y85{bottom:871.805333pt;}
.y146{bottom:874.790667pt;}
.y5c{bottom:875.326667pt;}
.y155{bottom:878.512000pt;}
.y14d{bottom:883.240000pt;}
.yb0{bottom:886.961333pt;}
.y22{bottom:888.390667pt;}
.y84{bottom:889.872000pt;}
.y145{bottom:892.856000pt;}
.y5b{bottom:893.392000pt;}
.y23{bottom:895.950667pt;}
.y154{bottom:896.577333pt;}
.y104{bottom:901.305333pt;}
.yaf{bottom:905.026667pt;}
.y2e{bottom:905.026707pt;}
.y83{bottom:907.937333pt;}
.y144{bottom:910.922667pt;}
.y5a{bottom:911.457333pt;}
.y153{bottom:914.642667pt;}
.yae{bottom:923.092000pt;}
.y2d{bottom:923.092041pt;}
.y82{bottom:926.002667pt;}
.y59{bottom:929.522667pt;}
.y152{bottom:932.708000pt;}
.yad{bottom:941.157333pt;}
.y81{bottom:944.068000pt;}
.y58{bottom:947.588000pt;}
.y151{bottom:950.774667pt;}
.y143{bottom:955.502667pt;}
.yac{bottom:959.222667pt;}
.y80{bottom:962.133333pt;}
.y150{bottom:968.840000pt;}
.y2c{bottom:977.272537pt;}
.yab{bottom:977.289333pt;}
.y57{bottom:980.200000pt;}
.yaa{bottom:995.354667pt;}
.y2b{bottom:995.354670pt;}
.y4c{bottom:995.801351pt;}
.y56{bottom:1013.420000pt;}
.y2a{bottom:1013.420003pt;}
.y55{bottom:1060.573333pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.he{height:42.763672pt;}
.h14{height:42.769005pt;}
.h12{height:42.821854pt;}
.h3{height:42.840000pt;}
.hd{height:42.958888pt;}
.h10{height:42.996399pt;}
.h15{height:43.403672pt;}
.h13{height:46.928145pt;}
.h2{height:48.960000pt;}
.h11{height:56.313617pt;}
.hb{height:58.660181pt;}
.h5{height:69.360000pt;}
.ha{height:82.123861pt;}
.hf{height:97.297630pt;}
.h4{height:105.826671pt;}
.hc{height:125.141197pt;}
.h9{height:482.972957pt;}
.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;}
.xd{left:127.026667pt;}
.xe{left:128.844000pt;}
.x17{left:129.776000pt;}
.x18{left:130.706667pt;}
.x13{left:132.161333pt;}
.x12{left:133.848000pt;}
.x20{left:134.778667pt;}
.x3e{left:136.102667pt;}
.x41{left:137.178667pt;}
.xb{left:140.874667pt;}
.x3f{left:142.532000pt;}
.x42{left:145.296000pt;}
.x46{left:147.477333pt;}
.x11{left:148.597333pt;}
.x47{left:149.572000pt;}
.x14{left:153.732000pt;}
.x23{left:157.746667pt;}
.x30{left:160.176000pt;}
.x24{left:162.881333pt;}
.x22{left:164.568000pt;}
.x32{left:166.022667pt;}
.x10{left:178.677333pt;}
.xf{left:179.652000pt;}
.x4{left:180.874667pt;}
.x28{left:202.212000pt;}
.x45{left:221.077333pt;}
.x34{left:227.142667pt;}
.x31{left:235.666667pt;}
.x43{left:236.698667pt;}
.x40{left:237.673333pt;}
.x1e{left:238.924000pt;}
.x15{left:240.524000pt;}
.x16{left:241.498667pt;}
.x2f{left:243.317333pt;}
.x35{left:244.553333pt;}
.x44{left:245.848000pt;}
.x4d{left:257.513333pt;}
.x2d{left:261.456000pt;}
.x4c{left:271.216000pt;}
.x36{left:276.204000pt;}
.x4b{left:279.302667pt;}
.x39{left:283.404000pt;}
.x48{left:287.418667pt;}
.x49{left:293.338667pt;}
.x4a{left:294.298667pt;}
.x2c{left:299.884000pt;}
.x1c{left:302.328000pt;}
.x1b{left:304.030667pt;}
.x21{left:304.932000pt;}
.x3c{left:311.142667pt;}
.x3a{left:313.557333pt;}
.x2b{left:323.172000pt;}
.x33{left:327.258667pt;}
.x3d{left:333.892000pt;}
.x1a{left:339.113333pt;}
.x1d{left:340.088000pt;}
.x37{left:355.390667pt;}
.x29{left:357.717333pt;}
.xa{left:370.978679pt;}
.x2a{left:375.273333pt;}
.x3{left:404.408000pt;}
.x27{left:414.298667pt;}
.x2e{left:415.273333pt;}
.x5{left:434.544000pt;}
.x59{left:435.492000pt;}
.x5a{left:448.262667pt;}
.x5b{left:450.298667pt;}
.x56{left:484.408000pt;}
.x58{left:497.178667pt;}
.x57{left:502.822667pt;}
.x52{left:506.386667pt;}
.x53{left:507.696000pt;}
.x54{left:526.852000pt;}
.x4e{left:660.098667pt;}
.x25{left:661.466667pt;}
.x38{left:662.833333pt;}
.xc{left:667.372000pt;}
.x1f{left:668.433333pt;}
.x3b{left:674.485333pt;}
.x19{left:680.725333pt;}
.x51{left:682.677333pt;}
.x6{left:740.397333pt;}
.x26{left:741.481333pt;}
.x50{left:894.764000pt;}
.x55{left:895.738667pt;}
.x4f{left:1236.376000pt;}
}




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