
    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_b9af4d25c83c84791cc15fa8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_fabb2d34201592bccc7c3503.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.840820;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_082702a43209790aedcc7301.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.675781;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_628cbd6190b2210dd608395c.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_f06425656782e61caa4ee749.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910645;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_8ca1bd1872f473829d375364.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;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_8b9d06190ba2c652b491d08a.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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;}
.m1{transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.161290,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);-ms-transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);-webkit-transform:matrix(0.237927,0.000000,-0.076751,0.237927,0,0);}
.m3{transform:matrix(0.238620,0.000000,-0.074569,0.238620,0,0);-ms-transform:matrix(0.238620,0.000000,-0.074569,0.238620,0,0);-webkit-transform:matrix(0.238620,0.000000,-0.074569,0.238620,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);}
.m4{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);}
.v3{vertical-align:-31.122000px;}
.v2{vertical-align:-23.754000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.754000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.180000px;}
.ls3{letter-spacing:18.210000px;}
.ls2{letter-spacing:18.222000px;}
.ls6{letter-spacing:26.419920px;}
.ls5{letter-spacing:102.552648px;}
.ls4{letter-spacing:367.443000px;}
.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;}
}
.ws1b{word-spacing:-55.944000px;}
.ws101{word-spacing:-46.913664px;}
.ws1{word-spacing:-41.877300px;}
.ws9{word-spacing:-40.536000px;}
.wse2{word-spacing:-38.638656px;}
.ws3{word-spacing:-38.573100px;}
.ws86{word-spacing:-38.368800px;}
.ws5a{word-spacing:-38.152800px;}
.ws4{word-spacing:-38.149200px;}
.ws5{word-spacing:-38.141400px;}
.wsc5{word-spacing:-38.087100px;}
.ws32{word-spacing:-38.075400px;}
.ws139{word-spacing:-38.070000px;}
.ws8b{word-spacing:-37.431198px;}
.ws10a{word-spacing:-37.372200px;}
.wsb8{word-spacing:-34.592160px;}
.wsb4{word-spacing:-33.956160px;}
.wsbe{word-spacing:-33.791856px;}
.ws2{word-spacing:-33.547800px;}
.wsa4{word-spacing:-27.996864px;}
.ws9b{word-spacing:-27.121962px;}
.ws8e{word-spacing:-26.348400px;}
.wsac{word-spacing:-23.463000px;}
.ws134{word-spacing:-23.461200px;}
.wsef{word-spacing:-23.253300px;}
.ws14a{word-spacing:-23.252400px;}
.ws17{word-spacing:-23.251200px;}
.ws61{word-spacing:-23.245200px;}
.wsa7{word-spacing:-23.241000px;}
.ws16e{word-spacing:-23.240400px;}
.ws99{word-spacing:-23.239800px;}
.ws111{word-spacing:-23.235000px;}
.ws31{word-spacing:-23.227200px;}
.wsf4{word-spacing:-23.182200px;}
.ws4f{word-spacing:-23.175000px;}
.wsed{word-spacing:-23.035500px;}
.wsa0{word-spacing:-23.029800px;}
.wsc1{word-spacing:-23.029200px;}
.wsf2{word-spacing:-23.027400px;}
.ws8c{word-spacing:-23.025000px;}
.wsc4{word-spacing:-23.022900px;}
.ws10b{word-spacing:-23.021700px;}
.wsad{word-spacing:-22.963500px;}
.wsca{word-spacing:-22.953600px;}
.wsc2{word-spacing:-22.758000px;}
.ws6{word-spacing:-22.752000px;}
.ws105{word-spacing:-22.747200px;}
.ws12a{word-spacing:-22.742100px;}
.ws165{word-spacing:-22.741200px;}
.ws2c{word-spacing:-22.740000px;}
.wsf1{word-spacing:-22.734000px;}
.ws90{word-spacing:-22.730400px;}
.ws162{word-spacing:-22.595400px;}
.ws120{word-spacing:-22.540200px;}
.ws9f{word-spacing:-22.536000px;}
.ws8d{word-spacing:-22.534200px;}
.ws14b{word-spacing:-22.533300px;}
.ws13d{word-spacing:-22.532400px;}
.ws114{word-spacing:-22.531200px;}
.wsf5{word-spacing:-22.530300px;}
.ws7{word-spacing:-22.529400px;}
.ws14e{word-spacing:-22.528800px;}
.ws42{word-spacing:-22.526100px;}
.ws62{word-spacing:-22.521600px;}
.ws6f{word-spacing:-22.517100px;}
.ws138{word-spacing:-22.516200px;}
.wsa5{word-spacing:-22.515300px;}
.ws85{word-spacing:-22.514400px;}
.ws3f{word-spacing:-22.503600px;}
.ws9a{word-spacing:-22.455900px;}
.wsf6{word-spacing:-22.326000px;}
.ws11b{word-spacing:-22.322400px;}
.wsea{word-spacing:-22.315500px;}
.wsf8{word-spacing:-22.313400px;}
.ws59{word-spacing:-22.309200px;}
.ws1a{word-spacing:-22.307400px;}
.wsfd{word-spacing:-22.303200px;}
.ws136{word-spacing:-22.302000px;}
.wse9{word-spacing:-22.297500px;}
.ws109{word-spacing:-22.296600px;}
.ws37{word-spacing:-22.032600px;}
.wsd8{word-spacing:-22.032000px;}
.wsf3{word-spacing:-22.027500px;}
.ws8a{word-spacing:-22.025700px;}
.wsec{word-spacing:-22.021200px;}
.ws20{word-spacing:-22.002600px;}
.ws12f{word-spacing:-21.816000px;}
.ws44{word-spacing:-21.814200px;}
.ws3d{word-spacing:-21.813300px;}
.ws14c{word-spacing:-21.810600px;}
.wsf9{word-spacing:-21.806100px;}
.ws8{word-spacing:-21.804300px;}
.ws5b{word-spacing:-21.592800px;}
.wsd0{word-spacing:-21.583800px;}
.ws130{word-spacing:-21.310200px;}
.ws16d{word-spacing:-21.304800px;}
.ws13f{word-spacing:-21.287700px;}
.ws153{word-spacing:-21.096000px;}
.ws34{word-spacing:-21.094200px;}
.ws11{word-spacing:-21.093000px;}
.wsfe{word-spacing:-21.085200px;}
.ws1d{word-spacing:-21.084600px;}
.ws5c{word-spacing:-21.083400px;}
.ws52{word-spacing:-21.079800px;}
.ws103{word-spacing:-20.867400px;}
.ws3e{word-spacing:-20.865600px;}
.wse1{word-spacing:-20.766336px;}
.wsdd{word-spacing:-20.592600px;}
.ws11e{word-spacing:-20.592000px;}
.ws148{word-spacing:-20.376000px;}
.ws4c{word-spacing:-20.356200px;}
.wsce{word-spacing:-19.860000px;}
.ws2a{word-spacing:-19.859400px;}
.ws7c{word-spacing:-19.855800px;}
.ws3a{word-spacing:-19.648800px;}
.wsb7{word-spacing:-19.197888px;}
.wsfb{word-spacing:-19.150200px;}
.ws13c{word-spacing:-19.140300px;}
.ws163{word-spacing:-19.080000px;}
.ws7e{word-spacing:-18.936000px;}
.ws14f{word-spacing:-18.930600px;}
.ws113{word-spacing:-18.928800px;}
.ws2e{word-spacing:-18.928200px;}
.ws21{word-spacing:-18.927000px;}
.ws156{word-spacing:-18.926100px;}
.wsbd{word-spacing:-18.903888px;}
.ws36{word-spacing:-18.709200px;}
.wsb0{word-spacing:-18.675888px;}
.ws67{word-spacing:-18.432000px;}
.ws75{word-spacing:-18.431100px;}
.ws110{word-spacing:-18.428400px;}
.ws129{word-spacing:-18.404400px;}
.ws82{word-spacing:-18.179100px;}
.ws83{word-spacing:-17.998200px;}
.wsf0{word-spacing:-17.994600px;}
.wsba{word-spacing:-17.775888px;}
.ws60{word-spacing:-17.718000px;}
.ws11c{word-spacing:-17.709000px;}
.ws4a{word-spacing:-17.694000px;}
.ws150{word-spacing:-17.496600px;}
.ws133{word-spacing:-17.493300px;}
.ws161{word-spacing:-17.483100px;}
.wsd7{word-spacing:-17.481600px;}
.ws147{word-spacing:-17.479800px;}
.wsdc{word-spacing:-17.475600px;}
.ws71{word-spacing:-17.272800px;}
.ws121{word-spacing:-16.992000px;}
.ws144{word-spacing:-16.776000px;}
.ws2d{word-spacing:-16.768200px;}
.ws77{word-spacing:-16.756200px;}
.ws118{word-spacing:-16.552800px;}
.ws45{word-spacing:-16.549200px;}
.ws106{word-spacing:-16.062000px;}
.ws143{word-spacing:-16.056000px;}
.ws49{word-spacing:-15.545400px;}
.ws1e{word-spacing:-15.340200px;}
.ws25{word-spacing:-15.333300px;}
.wsd5{word-spacing:-15.116400px;}
.wsc3{word-spacing:-15.114600px;}
.ws6b{word-spacing:-14.834400px;}
.ws152{word-spacing:-14.621100px;}
.ws8f{word-spacing:-14.616000px;}
.ws87{word-spacing:-14.614200px;}
.wsc7{word-spacing:-14.580000px;}
.ws40{word-spacing:-14.579400px;}
.ws68{word-spacing:-14.392800px;}
.ws29{word-spacing:-14.108400px;}
.ws3c{word-spacing:-14.094000px;}
.ws16c{word-spacing:-13.893300px;}
.ws35{word-spacing:-13.883400px;}
.ws12{word-spacing:-13.882200px;}
.ws51{word-spacing:-13.856400px;}
.wsd2{word-spacing:-13.392000px;}
.wsde{word-spacing:-13.388400px;}
.wsfc{word-spacing:-13.377600px;}
.wsb6{word-spacing:-13.176000px;}
.wsb9{word-spacing:-13.174200px;}
.ws151{word-spacing:-13.170600px;}
.ws70{word-spacing:-13.167000px;}
.ws168{word-spacing:-13.166400px;}
.ws146{word-spacing:-13.163400px;}
.wsbc{word-spacing:-12.951000px;}
.ws13e{word-spacing:-12.672000px;}
.ws69{word-spacing:-12.668400px;}
.ws4b{word-spacing:-12.652200px;}
.ws7f{word-spacing:-12.647700px;}
.wsb2{word-spacing:-12.600198px;}
.ws140{word-spacing:-12.455100px;}
.ws159{word-spacing:-12.450600px;}
.wsd1{word-spacing:-11.948400px;}
.ws158{word-spacing:-11.736000px;}
.ws15d{word-spacing:-11.727000px;}
.ws112{word-spacing:-11.724900px;}
.ws15f{word-spacing:-11.510100px;}
.ws127{word-spacing:-11.509800px;}
.wse7{word-spacing:-11.228400px;}
.ws97{word-spacing:-11.016000px;}
.ws98{word-spacing:-11.014200px;}
.ws65{word-spacing:-10.996200px;}
.ws119{word-spacing:-10.796400px;}
.wse4{word-spacing:-10.719984px;}
.ws55{word-spacing:-10.503000px;}
.ws124{word-spacing:-10.296000px;}
.ws15c{word-spacing:-10.287900px;}
.ws80{word-spacing:-10.284000px;}
.ws18{word-spacing:-10.071900px;}
.ws142{word-spacing:-9.792000px;}
.ws89{word-spacing:-9.783000px;}
.ws50{word-spacing:-9.579300px;}
.ws74{word-spacing:-9.571200px;}
.ws123{word-spacing:-9.567900px;}
.ws135{word-spacing:-9.565200px;}
.ws14{word-spacing:-9.550200px;}
.ws4d{word-spacing:-9.072000px;}
.wsd4{word-spacing:-9.068400px;}
.wsd{word-spacing:-9.063000px;}
.ws39{word-spacing:-8.860200px;}
.wse0{word-spacing:-8.858400px;}
.ws53{word-spacing:-8.856000px;}
.ws16a{word-spacing:-8.855100px;}
.ws58{word-spacing:-8.854200px;}
.wscb{word-spacing:-8.849700px;}
.ws155{word-spacing:-8.352000px;}
.ws4e{word-spacing:-8.134200px;}
.wsaa{word-spacing:-8.127000px;}
.ws88{word-spacing:-8.125200px;}
.ws26{word-spacing:-7.416600px;}
.wsdf{word-spacing:-7.414200px;}
.wscc{word-spacing:-7.399800px;}
.ws12c{word-spacing:-6.912000px;}
.ws149{word-spacing:-6.696600px;}
.ws126{word-spacing:-6.694200px;}
.wsa9{word-spacing:-6.685200px;}
.ws2f{word-spacing:-6.683400px;}
.ws116{word-spacing:-6.192000px;}
.ws48{word-spacing:-6.175800px;}
.wse8{word-spacing:-5.976000px;}
.ws12e{word-spacing:-5.963400px;}
.wscf{word-spacing:-5.952600px;}
.ws108{word-spacing:-5.951400px;}
.ws12d{word-spacing:-5.740200px;}
.ws13a{word-spacing:-5.254200px;}
.ws132{word-spacing:-5.252400px;}
.ws122{word-spacing:-5.249400px;}
.wsbf{word-spacing:-4.758000px;}
.ws13b{word-spacing:-4.752000px;}
.ws47{word-spacing:-4.746600px;}
.ws30{word-spacing:-4.525200px;}
.ws73{word-spacing:-4.517100px;}
.wsb3{word-spacing:-4.461396px;}
.wse{word-spacing:-4.313400px;}
.ws15{word-spacing:-4.311000px;}
.ws100{word-spacing:-4.306500px;}
.wsc0{word-spacing:-4.038000px;}
.ws76{word-spacing:-4.032000px;}
.ws2b{word-spacing:-3.992400px;}
.ws6c{word-spacing:-3.816000px;}
.ws102{word-spacing:-3.814200px;}
.ws16b{word-spacing:-3.801900px;}
.ws125{word-spacing:-3.585600px;}
.ws79{word-spacing:-3.305700px;}
.ws141{word-spacing:-3.289500px;}
.wsc8{word-spacing:-3.087900px;}
.wsc9{word-spacing:-3.082200px;}
.ws6a{word-spacing:-2.863800px;}
.ws6e{word-spacing:-2.382000px;}
.ws137{word-spacing:-2.371200px;}
.ws27{word-spacing:-1.872000px;}
.ws12b{word-spacing:-1.648200px;}
.ws5e{word-spacing:-1.645200px;}
.ws1c{word-spacing:-1.641600px;}
.ws13{word-spacing:-0.934200px;}
.ws10f{word-spacing:-0.919200px;}
.ws72{word-spacing:-0.702000px;}
.wsb1{word-spacing:-0.368280px;}
.ws3b{word-spacing:-0.216000px;}
.ws10{word-spacing:-0.210600px;}
.ws117{word-spacing:-0.206100px;}
.ws38{word-spacing:-0.204300px;}
.wsda{word-spacing:-0.203100px;}
.ws0{word-spacing:0.000000px;}
.ws54{word-spacing:0.003000px;}
.ws66{word-spacing:0.010800px;}
.wsa{word-spacing:0.018900px;}
.ws160{word-spacing:0.288000px;}
.ws5d{word-spacing:0.513000px;}
.wsdb{word-spacing:0.514800px;}
.wsff{word-spacing:0.516600px;}
.ws11d{word-spacing:0.723600px;}
.ws41{word-spacing:1.008000px;}
.ws128{word-spacing:1.450800px;}
.wsaf{word-spacing:1.754538px;}
.ws167{word-spacing:1.959300px;}
.ws131{word-spacing:1.963800px;}
.ws57{word-spacing:2.172600px;}
.ws63{word-spacing:2.458800px;}
.ws22{word-spacing:2.678700px;}
.wsab{word-spacing:2.885400px;}
.ws107{word-spacing:2.894400px;}
.ws7d{word-spacing:3.392400px;}
.ws6d{word-spacing:4.107000px;}
.ws7b{word-spacing:4.120200px;}
.ws33{word-spacing:4.332600px;}
.ws43{word-spacing:4.845600px;}
.ws19{word-spacing:4.851600px;}
.wsa6{word-spacing:5.037600px;}
.ws154{word-spacing:5.544900px;}
.ws56{word-spacing:5.552400px;}
.wsa8{word-spacing:5.577000px;}
.ws11a{word-spacing:6.048000px;}
.ws115{word-spacing:6.259800px;}
.ws64{word-spacing:6.268800px;}
.ws28{word-spacing:6.498000px;}
.ws166{word-spacing:8.435700px;}
.ws15e{word-spacing:9.149400px;}
.ws145{word-spacing:9.648000px;}
.ws84{word-spacing:9.859800px;}
.ws78{word-spacing:9.878400px;}
.ws104{word-spacing:11.314800px;}
.wsd6{word-spacing:11.322000px;}
.wsc{word-spacing:11.521200px;}
.wsc6{word-spacing:15.620700px;}
.ws1f{word-spacing:15.624000px;}
.wsb{word-spacing:15.625800px;}
.ws24{word-spacing:16.381800px;}
.ws23{word-spacing:17.575200px;}
.ws7a{word-spacing:17.577300px;}
.ws10c{word-spacing:17.786700px;}
.ws164{word-spacing:18.354000px;}
.ws10e{word-spacing:18.733500px;}
.ws95{word-spacing:19.863840px;}
.wsf{word-spacing:21.396000px;}
.wscd{word-spacing:21.607200px;}
.ws15a{word-spacing:22.608000px;}
.ws11f{word-spacing:24.280200px;}
.ws16{word-spacing:25.928100px;}
.ws157{word-spacing:26.942400px;}
.ws46{word-spacing:27.156600px;}
.ws14d{word-spacing:27.864000px;}
.ws15b{word-spacing:29.304000px;}
.ws92{word-spacing:31.809174px;}
.ws81{word-spacing:31.979700px;}
.wsbb{word-spacing:38.373840px;}
.ws5f{word-spacing:39.394800px;}
.wsfa{word-spacing:40.396500px;}
.wsd3{word-spacing:45.149400px;}
.wsd9{word-spacing:46.378800px;}
.ws9e{word-spacing:49.497840px;}
.ws96{word-spacing:51.415296px;}
.ws94{word-spacing:52.688604px;}
.wsa3{word-spacing:52.905840px;}
.ws91{word-spacing:53.005038px;}
.ws93{word-spacing:57.200604px;}
.ws10d{word-spacing:58.326300px;}
.wseb{word-spacing:59.056200px;}
.wsb5{word-spacing:66.586512px;}
.ws169{word-spacing:88.361400px;}
.ws9d{word-spacing:107.912604px;}
.wsf7{word-spacing:108.509400px;}
.wsa2{word-spacing:121.832604px;}
.ws9c{word-spacing:125.958336px;}
.wsa1{word-spacing:143.178336px;}
.wse3{word-spacing:207.596688px;}
.wse5{word-spacing:208.297013px;}
.wse6{word-spacing:233.260464px;}
.wsee{word-spacing:266.697300px;}
.wsae{word-spacing:589.848036px;}
._41{margin-left:-285.960000px;}
._36{margin-left:-128.890224px;}
._35{margin-left:-123.196224px;}
._27{margin-left:-7.404000px;}
._15{margin-left:-2.409000px;}
._3{margin-left:-1.276500px;}
._1{width:1.894200px;}
._28{width:3.264000px;}
._21{width:16.650000px;}
._2{width:18.438000px;}
._1d{width:19.452300px;}
._9{width:20.469300px;}
._38{width:21.482700px;}
._0{width:22.505400px;}
._18{width:23.832600px;}
._16{width:24.877200px;}
._10{width:26.490600px;}
._a{width:28.066200px;}
._b{width:29.551200px;}
._22{width:30.796200px;}
._1e{width:31.990200px;}
._6{width:33.039000px;}
._1c{width:34.059000px;}
._c{width:35.071500px;}
._17{width:37.069200px;}
._7{width:38.225400px;}
._23{width:39.367800px;}
._f{width:40.444500px;}
._19{width:41.892300px;}
._1a{width:42.912000px;}
._11{width:44.877300px;}
._e{width:46.417800px;}
._1f{width:47.721600px;}
._14{width:48.771600px;}
._45{width:50.162400px;}
._24{width:51.877200px;}
._5{width:53.064000px;}
._42{width:54.224700px;}
._4{width:57.263700px;}
._13{width:58.570200px;}
._12{width:60.040800px;}
._8{width:62.946300px;}
._44{width:64.584000px;}
._43{width:65.935800px;}
._d{width:67.830000px;}
._1b{width:69.526800px;}
._3d{width:71.009568px;}
._25{width:73.522800px;}
._20{width:81.061200px;}
._37{width:86.860200px;}
._39{width:88.033800px;}
._3c{width:94.380816px;}
._32{width:100.911696px;}
._2d{width:102.712974px;}
._31{width:118.650144px;}
._46{width:130.501200px;}
._40{width:150.402600px;}
._3b{width:187.344672px;}
._29{width:191.705184px;}
._2f{width:195.823776px;}
._2b{width:199.307184px;}
._2c{width:225.414144px;}
._2a{width:227.094144px;}
._3a{width:273.642672px;}
._26{width:288.127632px;}
._3e{width:294.685344px;}
._34{width:299.738256px;}
._33{width:323.622144px;}
._2e{width:326.022288px;}
._30{width:335.881776px;}
._3f{width:598.837872px;}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(255,153,0);}
.fc0{color:rgb(0,153,255);}
.fs5{font-size:46.800000px;}
.fs3{font-size:48.174000px;}
.fs6{font-size:49.728000px;}
.fs1{font-size:66.300000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:83.328000px;}
.fs7{font-size:86.016000px;}
.fs9{font-size:87.556210px;}
.fsa{font-size:90.118182px;}
.fs0{font-size:95.700000px;}
.fs8{font-size:130.944000px;}
.y0{bottom:0.000000px;}
.ye5{bottom:3.006000px;}
.y9d{bottom:3.516000px;}
.y117{bottom:3.871500px;}
.y11e{bottom:3.915000px;}
.yf0{bottom:3.930000px;}
.ya2{bottom:4.032000px;}
.ybf{bottom:4.453500px;}
.y5{bottom:4.500000px;}
.y100{bottom:4.815000px;}
.yf8{bottom:5.355000px;}
.yf6{bottom:5.461500px;}
.ye8{bottom:5.475000px;}
.y88{bottom:6.516000px;}
.ye2{bottom:6.586500px;}
.ya9{bottom:6.600000px;}
.yf4{bottom:6.825000px;}
.yec{bottom:6.855000px;}
.yfc{bottom:6.915000px;}
.y11a{bottom:6.946500px;}
.y90{bottom:6.954000px;}
.y122{bottom:6.975000px;}
.y126{bottom:7.740000px;}
.y9e{bottom:8.953500px;}
.yb8{bottom:11.812500px;}
.y89{bottom:11.953500px;}
.ye3{bottom:12.082500px;}
.yaa{bottom:12.109500px;}
.yee{bottom:14.190000px;}
.y114{bottom:14.311500px;}
.y11f{bottom:14.355000px;}
.yfe{bottom:15.075000px;}
.yea{bottom:17.115000px;}
.yfa{bottom:17.175000px;}
.y11b{bottom:17.205000px;}
.y123{bottom:17.236500px;}
.yf2{bottom:17.265000px;}
.y127{bottom:18.000000px;}
.y9c{bottom:18.375000px;}
.ya5{bottom:18.516000px;}
.y92{bottom:21.279000px;}
.yb6{bottom:21.469500px;}
.ye1{bottom:21.607500px;}
.ya8{bottom:21.654000px;}
.ya3{bottom:23.953500px;}
.yef{bottom:24.450000px;}
.y115{bottom:24.571500px;}
.y11d{bottom:24.615000px;}
.yff{bottom:25.336500px;}
.y93{bottom:26.658000px;}
.y119{bottom:27.465000px;}
.y121{bottom:27.495000px;}
.yf3{bottom:27.525000px;}
.yeb{bottom:27.555000px;}
.yfb{bottom:27.615000px;}
.y125{bottom:28.440000px;}
.y4{bottom:32.475000px;}
.ya1{bottom:33.375000px;}
.y113{bottom:35.011500px;}
.y99{bottom:35.976000px;}
.yb7{bottom:39.141000px;}
.ya4{bottom:45.234000px;}
.y116{bottom:45.270000px;}
.y91{bottom:47.704500px;}
.y82{bottom:109.336500px;}
.y32{bottom:111.136500px;}
.y5f{bottom:114.736500px;}
.y14d{bottom:114.915000px;}
.y168{bottom:125.536500px;}
.y11c{bottom:126.300000px;}
.y81{bottom:130.036500px;}
.y31{bottom:131.836500px;}
.y5e{bottom:135.436500px;}
.y14c{bottom:135.615000px;}
.yb4{bottom:144.615000px;}
.y167{bottom:146.236500px;}
.y80{bottom:150.736500px;}
.y30{bottom:152.536500px;}
.ye0{bottom:155.325000px;}
.y5d{bottom:156.136500px;}
.y14b{bottom:156.315000px;}
.ye4{bottom:164.325000px;}
.ydf{bottom:167.296500px;}
.y118{bottom:168.450000px;}
.y2f{bottom:173.236500px;}
.yb3{bottom:174.315000px;}
.y166{bottom:175.936500px;}
.y5c{bottom:176.836500px;}
.y14a{bottom:177.015000px;}
.y7f{bottom:180.436500px;}
.y173{bottom:184.936500px;}
.y2e{bottom:193.936500px;}
.yb2{bottom:195.015000px;}
.y165{bottom:196.636500px;}
.y5b{bottom:197.536500px;}
.y149{bottom:197.715000px;}
.yde{bottom:199.200000px;}
.y7e{bottom:201.136500px;}
.y172{bottom:205.636500px;}
.yb1{bottom:215.715000px;}
.y112{bottom:216.525000px;}
.y148{bottom:218.415000px;}
.y7d{bottom:221.836500px;}
.y2d{bottom:223.636500px;}
.y164{bottom:226.336500px;}
.y5a{bottom:227.236500px;}
.yb0{bottom:236.415000px;}
.y7c{bottom:242.536500px;}
.y2c{bottom:244.336500px;}
.ydd{bottom:247.036500px;}
.y147{bottom:248.115000px;}
.y171{bottom:256.036500px;}
.y59{bottom:256.936500px;}
.yaf{bottom:257.115000px;}
.y7b{bottom:263.236500px;}
.y2b{bottom:265.036500px;}
.ydc{bottom:276.736500px;}
.y58{bottom:277.636500px;}
.y146{bottom:277.815000px;}
.y7a{bottom:283.936500px;}
.y2a{bottom:285.736500px;}
.yae{bottom:286.815000px;}
.y111{bottom:292.215000px;}
.ydb{bottom:297.436500px;}
.y57{bottom:298.336500px;}
.y145{bottom:298.515000px;}
.y79{bottom:304.636500px;}
.y29{bottom:306.436500px;}
.yad{bottom:307.515000px;}
.yda{bottom:318.136500px;}
.y56{bottom:319.036500px;}
.y144{bottom:319.215000px;}
.y110{bottom:321.915000px;}
.y78{bottom:325.336500px;}
.y28{bottom:327.136500px;}
.yac{bottom:333.300000px;}
.yd9{bottom:338.836500px;}
.y55{bottom:339.736500px;}
.y143{bottom:339.915000px;}
.y77{bottom:346.036500px;}
.y27{bottom:347.836500px;}
.y10f{bottom:351.615000px;}
.yd8{bottom:359.536500px;}
.y54{bottom:360.436500px;}
.y142{bottom:360.615000px;}
.y76{bottom:366.736500px;}
.y26{bottom:368.536500px;}
.y10e{bottom:372.315000px;}
.yab{bottom:377.715000px;}
.yd7{bottom:380.236500px;}
.y53{bottom:381.136500px;}
.y141{bottom:381.315000px;}
.y75{bottom:387.436500px;}
.y25{bottom:389.236500px;}
.y10d{bottom:393.015000px;}
.yd6{bottom:400.936500px;}
.y52{bottom:401.836500px;}
.y140{bottom:402.015000px;}
.ya7{bottom:403.500000px;}
.y74{bottom:408.136500px;}
.y24{bottom:409.936500px;}
.y10c{bottom:413.715000px;}
.ya6{bottom:415.515000px;}
.y163{bottom:418.936500px;}
.yd5{bottom:421.636500px;}
.y51{bottom:422.536500px;}
.y13f{bottom:422.715000px;}
.y73{bottom:428.836500px;}
.y23{bottom:430.636500px;}
.y162{bottom:439.636500px;}
.yd4{bottom:442.336500px;}
.y50{bottom:443.236500px;}
.y10b{bottom:443.415000px;}
.ya0{bottom:447.450000px;}
.y72{bottom:449.536500px;}
.y22{bottom:451.336500px;}
.y161{bottom:460.336500px;}
.y13e{bottom:464.115000px;}
.y71{bottom:470.236500px;}
.y21{bottom:472.036500px;}
.y4f{bottom:472.936500px;}
.y10a{bottom:473.115000px;}
.y160{bottom:481.036500px;}
.y13d{bottom:484.815000px;}
.y70{bottom:490.936500px;}
.y20{bottom:492.736500px;}
.y4e{bottom:493.636500px;}
.y109{bottom:493.815000px;}
.y15f{bottom:501.736500px;}
.y13c{bottom:505.515000px;}
.y170{bottom:510.736500px;}
.y6f{bottom:511.636500px;}
.y1f{bottom:513.436500px;}
.y4d{bottom:514.336500px;}
.y108{bottom:514.515000px;}
.y9f{bottom:518.836500px;}
.y15e{bottom:522.436500px;}
.y13b{bottom:526.215000px;}
.y107{bottom:531.300000px;}
.y16f{bottom:531.436500px;}
.y6e{bottom:532.336500px;}
.y1e{bottom:534.136500px;}
.y4c{bottom:535.036500px;}
.y106{bottom:535.755000px;}
.y9b{bottom:544.650000px;}
.y15d{bottom:552.136500px;}
.y9a{bottom:553.575000px;}
.y1d{bottom:554.836500px;}
.y4b{bottom:555.736500px;}
.y13a{bottom:555.915000px;}
.y105{bottom:557.715000px;}
.y6d{bottom:562.036500px;}
.y15c{bottom:572.836500px;}
.yd3{bottom:575.536500px;}
.y4a{bottom:576.436500px;}
.y139{bottom:576.615000px;}
.y104{bottom:578.415000px;}
.y16e{bottom:581.836500px;}
.y6c{bottom:582.736500px;}
.y1c{bottom:584.536500px;}
.y98{bottom:585.000000px;}
.y15b{bottom:593.536500px;}
.yd2{bottom:596.236500px;}
.y49{bottom:597.136500px;}
.y138{bottom:597.315000px;}
.y16d{bottom:602.536500px;}
.y6b{bottom:603.436500px;}
.y103{bottom:608.115000px;}
.y1b{bottom:614.236500px;}
.yd1{bottom:616.936500px;}
.y48{bottom:617.836500px;}
.y137{bottom:618.015000px;}
.y15a{bottom:623.236500px;}
.y6a{bottom:624.136500px;}
.y102{bottom:628.815000px;}
.y1a{bottom:634.936500px;}
.yd0{bottom:637.636500px;}
.y47{bottom:638.536500px;}
.y136{bottom:638.715000px;}
.y159{bottom:643.936500px;}
.y69{bottom:644.836500px;}
.y101{bottom:649.515000px;}
.ycf{bottom:658.336500px;}
.y97{bottom:658.695000px;}
.y46{bottom:659.236500px;}
.y135{bottom:659.415000px;}
.y19{bottom:664.636500px;}
.y68{bottom:665.536500px;}
.y16c{bottom:673.636500px;}
.yce{bottom:679.036500px;}
.y45{bottom:679.936500px;}
.y134{bottom:680.115000px;}
.y18{bottom:685.336500px;}
.y67{bottom:686.236500px;}
.y96{bottom:688.396500px;}
.y158{bottom:694.336500px;}
.yfd{bottom:696.000000px;}
.ycd{bottom:699.736500px;}
.y44{bottom:700.636500px;}
.y133{bottom:700.815000px;}
.y95{bottom:705.225000px;}
.y17{bottom:706.036500px;}
.y66{bottom:706.936500px;}
.y157{bottom:715.036500px;}
.y94{bottom:717.195000px;}
.ycc{bottom:720.436500px;}
.y43{bottom:721.336500px;}
.y132{bottom:721.515000px;}
.y16{bottom:726.736500px;}
.y65{bottom:727.636500px;}
.y156{bottom:735.736500px;}
.yf9{bottom:738.900000px;}
.ycb{bottom:741.136500px;}
.y42{bottom:742.036500px;}
.y131{bottom:742.215000px;}
.y8f{bottom:745.725000px;}
.y15{bottom:747.436500px;}
.y64{bottom:748.336500px;}
.yca{bottom:761.836500px;}
.y41{bottom:762.736500px;}
.y130{bottom:762.915000px;}
.y155{bottom:765.436500px;}
.y14{bottom:768.136500px;}
.y63{bottom:769.036500px;}
.y8e{bottom:772.815000px;}
.y40{bottom:783.436500px;}
.y12f{bottom:783.615000px;}
.y154{bottom:786.136500px;}
.yf7{bottom:786.900000px;}
.y13{bottom:788.836500px;}
.y62{bottom:789.736500px;}
.yc9{bottom:791.536500px;}
.y3f{bottom:804.136500px;}
.y12e{bottom:804.315000px;}
.y153{bottom:806.836500px;}
.y12{bottom:809.536500px;}
.y61{bottom:810.436500px;}
.yf5{bottom:811.275000px;}
.yc8{bottom:812.236500px;}
.y8d{bottom:819.436500px;}
.y12d{bottom:825.015000px;}
.y152{bottom:827.536500px;}
.y11{bottom:830.236500px;}
.yc7{bottom:832.936500px;}
.y3e{bottom:833.836500px;}
.yf1{bottom:835.650000px;}
.y60{bottom:840.136500px;}
.y12c{bottom:845.715000px;}
.y8c{bottom:849.136500px;}
.y10{bottom:850.936500px;}
.yc6{bottom:853.636500px;}
.y3d{bottom:854.536500px;}
.y151{bottom:857.236500px;}
.y12b{bottom:866.415000px;}
.y8b{bottom:869.836500px;}
.yf{bottom:871.636500px;}
.yc5{bottom:874.336500px;}
.y3c{bottom:875.236500px;}
.y16b{bottom:877.936500px;}
.yed{bottom:883.725000px;}
.y150{bottom:886.936500px;}
.ye{bottom:892.336500px;}
.y87{bottom:895.650000px;}
.y3b{bottom:895.936500px;}
.y12a{bottom:896.115000px;}
.y16a{bottom:898.636500px;}
.yc4{bottom:904.036500px;}
.y8a{bottom:907.636500px;}
.yd{bottom:913.036500px;}
.y3a{bottom:916.636500px;}
.y129{bottom:916.815000px;}
.y169{bottom:919.336500px;}
.ye9{bottom:925.800000px;}
.y14f{bottom:928.336500px;}
.yc3{bottom:933.736500px;}
.y39{bottom:937.336500px;}
.y128{bottom:937.515000px;}
.y86{bottom:940.036500px;}
.yc{bottom:942.736500px;}
.y14e{bottom:949.036500px;}
.yc2{bottom:954.255000px;}
.y38{bottom:958.036500px;}
.y85{bottom:969.736500px;}
.yb{bottom:972.436500px;}
.ye7{bottom:973.800000px;}
.y37{bottom:978.736500px;}
.yc1{bottom:980.100000px;}
.y124{bottom:983.775000px;}
.yc0{bottom:984.675000px;}
.y84{bottom:990.436500px;}
.y36{bottom:999.436500px;}
.ya{bottom:1002.136500px;}
.ybd{bottom:1002.600000px;}
.ybe{bottom:1007.100000px;}
.y83{bottom:1011.136500px;}
.ybc{bottom:1011.675000px;}
.y35{bottom:1020.136500px;}
.ybb{bottom:1029.600000px;}
.y9{bottom:1031.836500px;}
.yba{bottom:1032.600000px;}
.y34{bottom:1040.836500px;}
.yb9{bottom:1041.555000px;}
.y8{bottom:1061.536500px;}
.yb5{bottom:1070.100000px;}
.ye6{bottom:1070.536500px;}
.y120{bottom:1080.600000px;}
.y33{bottom:1082.236500px;}
.y7{bottom:1091.236500px;}
.y6{bottom:1111.755000px;}
.y3{bottom:1153.695000px;}
.y2{bottom:1183.755000px;}
.y1{bottom:1210.936500px;}
.h4{height:20.175000px;}
.h1b{height:21.375000px;}
.h17{height:22.500000px;}
.h1c{height:24.375000px;}
.h16{height:27.000000px;}
.h8{height:31.500000px;}
.h9{height:33.448939px;}
.hd{height:33.472462px;}
.h12{height:34.527938px;}
.h11{height:34.552219px;}
.h1a{height:34.875000px;}
.h10{height:34.950000px;}
.h1e{height:42.075000px;}
.h21{height:42.150000px;}
.h1f{height:42.900000px;}
.h5{height:44.189209px;}
.h1d{height:48.000000px;}
.h6{height:48.796875px;}
.h22{height:48.825000px;}
.h7{height:50.027344px;}
.hb{height:56.271773px;}
.ha{height:57.857625px;}
.he{height:57.898313px;}
.hf{height:58.500000px;}
.h13{height:59.724000px;}
.h18{height:59.766000px;}
.h15{height:60.793423px;}
.hc{height:60.825000px;}
.h19{height:62.572292px;}
.h20{height:62.775000px;}
.h2{height:63.784424px;}
.h3{height:66.868506px;}
.h14{height:90.919125px;}
.h0{height:1262.850000px;}
.h1{height:1263.000000px;}
.wd{width:18.000000px;}
.w5{width:21.450000px;}
.w3{width:22.500000px;}
.w2{width:25.050000px;}
.wc{width:37.050000px;}
.wa{width:38.325000px;}
.wf{width:40.500000px;}
.w7{width:41.550000px;}
.w8{width:55.050000px;}
.wb{width:57.450000px;}
.w11{width:77.625000px;}
.w15{width:85.350000px;}
.w13{width:98.325000px;}
.w16{width:107.700000px;}
.w17{width:113.325000px;}
.w14{width:119.775000px;}
.w4{width:138.450000px;}
.w12{width:141.975000px;}
.w6{width:209.325000px;}
.w10{width:216.075000px;}
.we{width:285.825000px;}
.w9{width:358.875000px;}
.w0{width:892.950000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:1.359000px;}
.x17{left:2.394000px;}
.xd{left:3.655500px;}
.x34{left:4.677000px;}
.x25{left:6.070500px;}
.x1d{left:7.294500px;}
.x24{left:9.364500px;}
.x16{left:11.347500px;}
.xc{left:12.421500px;}
.x30{left:14.556000px;}
.x21{left:15.859500px;}
.x1a{left:17.506500px;}
.x27{left:19.338000px;}
.x14{left:21.492000px;}
.x29{left:25.714500px;}
.x1e{left:28.330500px;}
.x33{left:32.740500px;}
.x1c{left:37.131000px;}
.x46{left:38.346000px;}
.x13{left:41.055000px;}
.x11{left:44.347500px;}
.x10{left:51.072000px;}
.x2e{left:59.640000px;}
.x19{left:82.402500px;}
.x23{left:83.721000px;}
.x2d{left:91.314000px;}
.x12{left:95.419500px;}
.x1b{left:105.462000px;}
.x28{left:119.844000px;}
.x4{left:127.950000px;}
.x1{left:129.238500px;}
.x2b{left:130.449000px;}
.x6{left:132.660000px;}
.x1f{left:140.005500px;}
.x26{left:144.334500px;}
.x3c{left:148.009500px;}
.xe{left:154.620000px;}
.x2f{left:165.735000px;}
.x5{left:169.200000px;}
.x2a{left:192.763500px;}
.x20{left:194.400000px;}
.x15{left:200.325000px;}
.x36{left:210.075000px;}
.x18{left:231.838500px;}
.x3d{left:239.400000px;}
.x22{left:240.660000px;}
.x31{left:246.960000px;}
.xf{left:251.100000px;}
.x37{left:261.000000px;}
.x45{left:262.950000px;}
.x2c{left:268.452000px;}
.x3a{left:315.000000px;}
.x43{left:335.100000px;}
.x3b{left:342.000000px;}
.x47{left:345.420000px;}
.x3e{left:357.450000px;}
.x48{left:359.250000px;}
.x8{left:372.780000px;}
.x40{left:384.480000px;}
.x49{left:478.950000px;}
.x7{left:507.600000px;}
.x3{left:515.880000px;}
.xb{left:522.538500px;}
.x44{left:551.100000px;}
.x4a{left:564.225000px;}
.x38{left:601.725000px;}
.x2{left:604.620000px;}
.x41{left:612.375000px;}
.x9{left:624.600000px;}
.x39{left:633.420000px;}
.x42{left:634.860000px;}
.x32{left:654.825000px;}
.xa{left:660.060000px;}
.x4b{left:671.850000px;}
.x35{left:721.620000px;}
@media print{
.v3{vertical-align:-27.664000pt;}
.v2{vertical-align:-21.114667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.114667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.160000pt;}
.ls3{letter-spacing:16.186667pt;}
.ls2{letter-spacing:16.197333pt;}
.ls6{letter-spacing:23.484373pt;}
.ls5{letter-spacing:91.157909pt;}
.ls4{letter-spacing:326.616000pt;}
.ws1b{word-spacing:-49.728000pt;}
.ws101{word-spacing:-41.701035pt;}
.ws1{word-spacing:-37.224267pt;}
.ws9{word-spacing:-36.032000pt;}
.wse2{word-spacing:-34.345472pt;}
.ws3{word-spacing:-34.287200pt;}
.ws86{word-spacing:-34.105600pt;}
.ws5a{word-spacing:-33.913600pt;}
.ws4{word-spacing:-33.910400pt;}
.ws5{word-spacing:-33.903467pt;}
.wsc5{word-spacing:-33.855200pt;}
.ws32{word-spacing:-33.844800pt;}
.ws139{word-spacing:-33.840000pt;}
.ws8b{word-spacing:-33.272176pt;}
.ws10a{word-spacing:-33.219733pt;}
.wsb8{word-spacing:-30.748587pt;}
.wsb4{word-spacing:-30.183253pt;}
.wsbe{word-spacing:-30.037205pt;}
.ws2{word-spacing:-29.820267pt;}
.wsa4{word-spacing:-24.886101pt;}
.ws9b{word-spacing:-24.108411pt;}
.ws8e{word-spacing:-23.420800pt;}
.wsac{word-spacing:-20.856000pt;}
.ws134{word-spacing:-20.854400pt;}
.wsef{word-spacing:-20.669600pt;}
.ws14a{word-spacing:-20.668800pt;}
.ws17{word-spacing:-20.667733pt;}
.ws61{word-spacing:-20.662400pt;}
.wsa7{word-spacing:-20.658667pt;}
.ws16e{word-spacing:-20.658133pt;}
.ws99{word-spacing:-20.657600pt;}
.ws111{word-spacing:-20.653333pt;}
.ws31{word-spacing:-20.646400pt;}
.wsf4{word-spacing:-20.606400pt;}
.ws4f{word-spacing:-20.600000pt;}
.wsed{word-spacing:-20.476000pt;}
.wsa0{word-spacing:-20.470933pt;}
.wsc1{word-spacing:-20.470400pt;}
.wsf2{word-spacing:-20.468800pt;}
.ws8c{word-spacing:-20.466667pt;}
.wsc4{word-spacing:-20.464800pt;}
.ws10b{word-spacing:-20.463733pt;}
.wsad{word-spacing:-20.412000pt;}
.wsca{word-spacing:-20.403200pt;}
.wsc2{word-spacing:-20.229333pt;}
.ws6{word-spacing:-20.224000pt;}
.ws105{word-spacing:-20.219733pt;}
.ws12a{word-spacing:-20.215200pt;}
.ws165{word-spacing:-20.214400pt;}
.ws2c{word-spacing:-20.213333pt;}
.wsf1{word-spacing:-20.208000pt;}
.ws90{word-spacing:-20.204800pt;}
.ws162{word-spacing:-20.084800pt;}
.ws120{word-spacing:-20.035733pt;}
.ws9f{word-spacing:-20.032000pt;}
.ws8d{word-spacing:-20.030400pt;}
.ws14b{word-spacing:-20.029600pt;}
.ws13d{word-spacing:-20.028800pt;}
.ws114{word-spacing:-20.027733pt;}
.wsf5{word-spacing:-20.026933pt;}
.ws7{word-spacing:-20.026133pt;}
.ws14e{word-spacing:-20.025600pt;}
.ws42{word-spacing:-20.023200pt;}
.ws62{word-spacing:-20.019200pt;}
.ws6f{word-spacing:-20.015200pt;}
.ws138{word-spacing:-20.014400pt;}
.wsa5{word-spacing:-20.013600pt;}
.ws85{word-spacing:-20.012800pt;}
.ws3f{word-spacing:-20.003200pt;}
.ws9a{word-spacing:-19.960800pt;}
.wsf6{word-spacing:-19.845333pt;}
.ws11b{word-spacing:-19.842133pt;}
.wsea{word-spacing:-19.836000pt;}
.wsf8{word-spacing:-19.834133pt;}
.ws59{word-spacing:-19.830400pt;}
.ws1a{word-spacing:-19.828800pt;}
.wsfd{word-spacing:-19.825067pt;}
.ws136{word-spacing:-19.824000pt;}
.wse9{word-spacing:-19.820000pt;}
.ws109{word-spacing:-19.819200pt;}
.ws37{word-spacing:-19.584533pt;}
.wsd8{word-spacing:-19.584000pt;}
.wsf3{word-spacing:-19.580000pt;}
.ws8a{word-spacing:-19.578400pt;}
.wsec{word-spacing:-19.574400pt;}
.ws20{word-spacing:-19.557867pt;}
.ws12f{word-spacing:-19.392000pt;}
.ws44{word-spacing:-19.390400pt;}
.ws3d{word-spacing:-19.389600pt;}
.ws14c{word-spacing:-19.387200pt;}
.wsf9{word-spacing:-19.383200pt;}
.ws8{word-spacing:-19.381600pt;}
.ws5b{word-spacing:-19.193600pt;}
.wsd0{word-spacing:-19.185600pt;}
.ws130{word-spacing:-18.942400pt;}
.ws16d{word-spacing:-18.937600pt;}
.ws13f{word-spacing:-18.922400pt;}
.ws153{word-spacing:-18.752000pt;}
.ws34{word-spacing:-18.750400pt;}
.ws11{word-spacing:-18.749333pt;}
.wsfe{word-spacing:-18.742400pt;}
.ws1d{word-spacing:-18.741867pt;}
.ws5c{word-spacing:-18.740800pt;}
.ws52{word-spacing:-18.737600pt;}
.ws103{word-spacing:-18.548800pt;}
.ws3e{word-spacing:-18.547200pt;}
.wse1{word-spacing:-18.458965pt;}
.wsdd{word-spacing:-18.304533pt;}
.ws11e{word-spacing:-18.304000pt;}
.ws148{word-spacing:-18.112000pt;}
.ws4c{word-spacing:-18.094400pt;}
.wsce{word-spacing:-17.653333pt;}
.ws2a{word-spacing:-17.652800pt;}
.ws7c{word-spacing:-17.649600pt;}
.ws3a{word-spacing:-17.465600pt;}
.wsb7{word-spacing:-17.064789pt;}
.wsfb{word-spacing:-17.022400pt;}
.ws13c{word-spacing:-17.013600pt;}
.ws163{word-spacing:-16.960000pt;}
.ws7e{word-spacing:-16.832000pt;}
.ws14f{word-spacing:-16.827200pt;}
.ws113{word-spacing:-16.825600pt;}
.ws2e{word-spacing:-16.825067pt;}
.ws21{word-spacing:-16.824000pt;}
.ws156{word-spacing:-16.823200pt;}
.wsbd{word-spacing:-16.803456pt;}
.ws36{word-spacing:-16.630400pt;}
.wsb0{word-spacing:-16.600789pt;}
.ws67{word-spacing:-16.384000pt;}
.ws75{word-spacing:-16.383200pt;}
.ws110{word-spacing:-16.380800pt;}
.ws129{word-spacing:-16.359467pt;}
.ws82{word-spacing:-16.159200pt;}
.ws83{word-spacing:-15.998400pt;}
.wsf0{word-spacing:-15.995200pt;}
.wsba{word-spacing:-15.800789pt;}
.ws60{word-spacing:-15.749333pt;}
.ws11c{word-spacing:-15.741333pt;}
.ws4a{word-spacing:-15.728000pt;}
.ws150{word-spacing:-15.552533pt;}
.ws133{word-spacing:-15.549600pt;}
.ws161{word-spacing:-15.540533pt;}
.wsd7{word-spacing:-15.539200pt;}
.ws147{word-spacing:-15.537600pt;}
.wsdc{word-spacing:-15.533867pt;}
.ws71{word-spacing:-15.353600pt;}
.ws121{word-spacing:-15.104000pt;}
.ws144{word-spacing:-14.912000pt;}
.ws2d{word-spacing:-14.905067pt;}
.ws77{word-spacing:-14.894400pt;}
.ws118{word-spacing:-14.713600pt;}
.ws45{word-spacing:-14.710400pt;}
.ws106{word-spacing:-14.277333pt;}
.ws143{word-spacing:-14.272000pt;}
.ws49{word-spacing:-13.818133pt;}
.ws1e{word-spacing:-13.635733pt;}
.ws25{word-spacing:-13.629600pt;}
.wsd5{word-spacing:-13.436800pt;}
.wsc3{word-spacing:-13.435200pt;}
.ws6b{word-spacing:-13.186133pt;}
.ws152{word-spacing:-12.996533pt;}
.ws8f{word-spacing:-12.992000pt;}
.ws87{word-spacing:-12.990400pt;}
.wsc7{word-spacing:-12.960000pt;}
.ws40{word-spacing:-12.959467pt;}
.ws68{word-spacing:-12.793600pt;}
.ws29{word-spacing:-12.540800pt;}
.ws3c{word-spacing:-12.528000pt;}
.ws16c{word-spacing:-12.349600pt;}
.ws35{word-spacing:-12.340800pt;}
.ws12{word-spacing:-12.339733pt;}
.ws51{word-spacing:-12.316800pt;}
.wsd2{word-spacing:-11.904000pt;}
.wsde{word-spacing:-11.900800pt;}
.wsfc{word-spacing:-11.891200pt;}
.wsb6{word-spacing:-11.712000pt;}
.wsb9{word-spacing:-11.710400pt;}
.ws151{word-spacing:-11.707200pt;}
.ws70{word-spacing:-11.704000pt;}
.ws168{word-spacing:-11.703467pt;}
.ws146{word-spacing:-11.700800pt;}
.wsbc{word-spacing:-11.512000pt;}
.ws13e{word-spacing:-11.264000pt;}
.ws69{word-spacing:-11.260800pt;}
.ws4b{word-spacing:-11.246400pt;}
.ws7f{word-spacing:-11.242400pt;}
.wsb2{word-spacing:-11.200176pt;}
.ws140{word-spacing:-11.071200pt;}
.ws159{word-spacing:-11.067200pt;}
.wsd1{word-spacing:-10.620800pt;}
.ws158{word-spacing:-10.432000pt;}
.ws15d{word-spacing:-10.424000pt;}
.ws112{word-spacing:-10.422133pt;}
.ws15f{word-spacing:-10.231200pt;}
.ws127{word-spacing:-10.230933pt;}
.wse7{word-spacing:-9.980800pt;}
.ws97{word-spacing:-9.792000pt;}
.ws98{word-spacing:-9.790400pt;}
.ws65{word-spacing:-9.774400pt;}
.ws119{word-spacing:-9.596800pt;}
.wse4{word-spacing:-9.528875pt;}
.ws55{word-spacing:-9.336000pt;}
.ws124{word-spacing:-9.152000pt;}
.ws15c{word-spacing:-9.144800pt;}
.ws80{word-spacing:-9.141333pt;}
.ws18{word-spacing:-8.952800pt;}
.ws142{word-spacing:-8.704000pt;}
.ws89{word-spacing:-8.696000pt;}
.ws50{word-spacing:-8.514933pt;}
.ws74{word-spacing:-8.507733pt;}
.ws123{word-spacing:-8.504800pt;}
.ws135{word-spacing:-8.502400pt;}
.ws14{word-spacing:-8.489067pt;}
.ws4d{word-spacing:-8.064000pt;}
.wsd4{word-spacing:-8.060800pt;}
.wsd{word-spacing:-8.056000pt;}
.ws39{word-spacing:-7.875733pt;}
.wse0{word-spacing:-7.874133pt;}
.ws53{word-spacing:-7.872000pt;}
.ws16a{word-spacing:-7.871200pt;}
.ws58{word-spacing:-7.870400pt;}
.wscb{word-spacing:-7.866400pt;}
.ws155{word-spacing:-7.424000pt;}
.ws4e{word-spacing:-7.230400pt;}
.wsaa{word-spacing:-7.224000pt;}
.ws88{word-spacing:-7.222400pt;}
.ws26{word-spacing:-6.592533pt;}
.wsdf{word-spacing:-6.590400pt;}
.wscc{word-spacing:-6.577600pt;}
.ws12c{word-spacing:-6.144000pt;}
.ws149{word-spacing:-5.952533pt;}
.ws126{word-spacing:-5.950400pt;}
.wsa9{word-spacing:-5.942400pt;}
.ws2f{word-spacing:-5.940800pt;}
.ws116{word-spacing:-5.504000pt;}
.ws48{word-spacing:-5.489600pt;}
.wse8{word-spacing:-5.312000pt;}
.ws12e{word-spacing:-5.300800pt;}
.wscf{word-spacing:-5.291200pt;}
.ws108{word-spacing:-5.290133pt;}
.ws12d{word-spacing:-5.102400pt;}
.ws13a{word-spacing:-4.670400pt;}
.ws132{word-spacing:-4.668800pt;}
.ws122{word-spacing:-4.666133pt;}
.wsbf{word-spacing:-4.229333pt;}
.ws13b{word-spacing:-4.224000pt;}
.ws47{word-spacing:-4.219200pt;}
.ws30{word-spacing:-4.022400pt;}
.ws73{word-spacing:-4.015200pt;}
.wsb3{word-spacing:-3.965685pt;}
.wse{word-spacing:-3.834133pt;}
.ws15{word-spacing:-3.832000pt;}
.ws100{word-spacing:-3.828000pt;}
.wsc0{word-spacing:-3.589333pt;}
.ws76{word-spacing:-3.584000pt;}
.ws2b{word-spacing:-3.548800pt;}
.ws6c{word-spacing:-3.392000pt;}
.ws102{word-spacing:-3.390400pt;}
.ws16b{word-spacing:-3.379467pt;}
.ws125{word-spacing:-3.187200pt;}
.ws79{word-spacing:-2.938400pt;}
.ws141{word-spacing:-2.924000pt;}
.wsc8{word-spacing:-2.744800pt;}
.wsc9{word-spacing:-2.739733pt;}
.ws6a{word-spacing:-2.545600pt;}
.ws6e{word-spacing:-2.117333pt;}
.ws137{word-spacing:-2.107733pt;}
.ws27{word-spacing:-1.664000pt;}
.ws12b{word-spacing:-1.465067pt;}
.ws5e{word-spacing:-1.462400pt;}
.ws1c{word-spacing:-1.459200pt;}
.ws13{word-spacing:-0.830400pt;}
.ws10f{word-spacing:-0.817067pt;}
.ws72{word-spacing:-0.624000pt;}
.wsb1{word-spacing:-0.327360pt;}
.ws3b{word-spacing:-0.192000pt;}
.ws10{word-spacing:-0.187200pt;}
.ws117{word-spacing:-0.183200pt;}
.ws38{word-spacing:-0.181600pt;}
.wsda{word-spacing:-0.180533pt;}
.ws0{word-spacing:0.000000pt;}
.ws54{word-spacing:0.002667pt;}
.ws66{word-spacing:0.009600pt;}
.wsa{word-spacing:0.016800pt;}
.ws160{word-spacing:0.256000pt;}
.ws5d{word-spacing:0.456000pt;}
.wsdb{word-spacing:0.457600pt;}
.wsff{word-spacing:0.459200pt;}
.ws11d{word-spacing:0.643200pt;}
.ws41{word-spacing:0.896000pt;}
.ws128{word-spacing:1.289600pt;}
.wsaf{word-spacing:1.559589pt;}
.ws167{word-spacing:1.741600pt;}
.ws131{word-spacing:1.745600pt;}
.ws57{word-spacing:1.931200pt;}
.ws63{word-spacing:2.185600pt;}
.ws22{word-spacing:2.381067pt;}
.wsab{word-spacing:2.564800pt;}
.ws107{word-spacing:2.572800pt;}
.ws7d{word-spacing:3.015467pt;}
.ws6d{word-spacing:3.650667pt;}
.ws7b{word-spacing:3.662400pt;}
.ws33{word-spacing:3.851200pt;}
.ws43{word-spacing:4.307200pt;}
.ws19{word-spacing:4.312533pt;}
.wsa6{word-spacing:4.477867pt;}
.ws154{word-spacing:4.928800pt;}
.ws56{word-spacing:4.935467pt;}
.wsa8{word-spacing:4.957333pt;}
.ws11a{word-spacing:5.376000pt;}
.ws115{word-spacing:5.564267pt;}
.ws64{word-spacing:5.572267pt;}
.ws28{word-spacing:5.776000pt;}
.ws166{word-spacing:7.498400pt;}
.ws15e{word-spacing:8.132800pt;}
.ws145{word-spacing:8.576000pt;}
.ws84{word-spacing:8.764267pt;}
.ws78{word-spacing:8.780800pt;}
.ws104{word-spacing:10.057600pt;}
.wsd6{word-spacing:10.064000pt;}
.wsc{word-spacing:10.241067pt;}
.wsc6{word-spacing:13.885067pt;}
.ws1f{word-spacing:13.888000pt;}
.wsb{word-spacing:13.889600pt;}
.ws24{word-spacing:14.561600pt;}
.ws23{word-spacing:15.622400pt;}
.ws7a{word-spacing:15.624267pt;}
.ws10c{word-spacing:15.810400pt;}
.ws164{word-spacing:16.314667pt;}
.ws10e{word-spacing:16.652000pt;}
.ws95{word-spacing:17.656747pt;}
.wsf{word-spacing:19.018667pt;}
.wscd{word-spacing:19.206400pt;}
.ws15a{word-spacing:20.096000pt;}
.ws11f{word-spacing:21.582400pt;}
.ws16{word-spacing:23.047200pt;}
.ws157{word-spacing:23.948800pt;}
.ws46{word-spacing:24.139200pt;}
.ws14d{word-spacing:24.768000pt;}
.ws15b{word-spacing:26.048000pt;}
.ws92{word-spacing:28.274821pt;}
.ws81{word-spacing:28.426400pt;}
.wsbb{word-spacing:34.110080pt;}
.ws5f{word-spacing:35.017600pt;}
.wsfa{word-spacing:35.908000pt;}
.wsd3{word-spacing:40.132800pt;}
.wsd9{word-spacing:41.225600pt;}
.ws9e{word-spacing:43.998080pt;}
.ws96{word-spacing:45.702485pt;}
.ws94{word-spacing:46.834315pt;}
.wsa3{word-spacing:47.027413pt;}
.ws91{word-spacing:47.115589pt;}
.ws93{word-spacing:50.844981pt;}
.ws10d{word-spacing:51.845600pt;}
.wseb{word-spacing:52.494400pt;}
.wsb5{word-spacing:59.188011pt;}
.ws169{word-spacing:78.543467pt;}
.ws9d{word-spacing:95.922315pt;}
.wsf7{word-spacing:96.452800pt;}
.wsa2{word-spacing:108.295648pt;}
.ws9c{word-spacing:111.962965pt;}
.wsa1{word-spacing:127.269632pt;}
.wse3{word-spacing:184.530389pt;}
.wse5{word-spacing:185.152900pt;}
.wse6{word-spacing:207.342635pt;}
.wsee{word-spacing:237.064267pt;}
.wsae{word-spacing:524.309365pt;}
._41{margin-left:-254.186667pt;}
._36{margin-left:-114.569088pt;}
._35{margin-left:-109.507755pt;}
._27{margin-left:-6.581333pt;}
._15{margin-left:-2.141333pt;}
._3{margin-left:-1.134667pt;}
._1{width:1.683733pt;}
._28{width:2.901333pt;}
._21{width:14.800000pt;}
._2{width:16.389333pt;}
._1d{width:17.290933pt;}
._9{width:18.194933pt;}
._38{width:19.095733pt;}
._0{width:20.004800pt;}
._18{width:21.184533pt;}
._16{width:22.113067pt;}
._10{width:23.547200pt;}
._a{width:24.947733pt;}
._b{width:26.267733pt;}
._22{width:27.374400pt;}
._1e{width:28.435733pt;}
._6{width:29.368000pt;}
._1c{width:30.274667pt;}
._c{width:31.174667pt;}
._17{width:32.950400pt;}
._7{width:33.978133pt;}
._23{width:34.993600pt;}
._f{width:35.950667pt;}
._19{width:37.237600pt;}
._1a{width:38.144000pt;}
._11{width:39.890933pt;}
._e{width:41.260267pt;}
._1f{width:42.419200pt;}
._14{width:43.352533pt;}
._45{width:44.588800pt;}
._24{width:46.113067pt;}
._5{width:47.168000pt;}
._42{width:48.199733pt;}
._4{width:50.901067pt;}
._13{width:52.062400pt;}
._12{width:53.369600pt;}
._8{width:55.952267pt;}
._44{width:57.408000pt;}
._43{width:58.609600pt;}
._d{width:60.293333pt;}
._1b{width:61.801600pt;}
._3d{width:63.119616pt;}
._25{width:65.353600pt;}
._20{width:72.054400pt;}
._37{width:77.209067pt;}
._39{width:78.252267pt;}
._3c{width:83.894059pt;}
._32{width:89.699285pt;}
._2d{width:91.300421pt;}
._31{width:105.466795pt;}
._46{width:116.001067pt;}
._40{width:133.691200pt;}
._3b{width:166.528597pt;}
._29{width:170.404608pt;}
._2f{width:174.065579pt;}
._2b{width:177.161941pt;}
._2c{width:200.368128pt;}
._2a{width:201.861461pt;}
._3a{width:243.237931pt;}
._26{width:256.113451pt;}
._3e{width:261.942528pt;}
._34{width:266.434005pt;}
._33{width:287.664128pt;}
._2e{width:289.797589pt;}
._30{width:298.561579pt;}
._3f{width:532.300331pt;}
.fs5{font-size:41.600000pt;}
.fs3{font-size:42.821333pt;}
.fs6{font-size:44.202667pt;}
.fs1{font-size:58.933333pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.069333pt;}
.fs7{font-size:76.458667pt;}
.fs9{font-size:77.827743pt;}
.fsa{font-size:80.105050pt;}
.fs0{font-size:85.066667pt;}
.fs8{font-size:116.394667pt;}
.y0{bottom:0.000000pt;}
.ye5{bottom:2.672000pt;}
.y9d{bottom:3.125333pt;}
.y117{bottom:3.441333pt;}
.y11e{bottom:3.480000pt;}
.yf0{bottom:3.493333pt;}
.ya2{bottom:3.584000pt;}
.ybf{bottom:3.958667pt;}
.y5{bottom:4.000000pt;}
.y100{bottom:4.280000pt;}
.yf8{bottom:4.760000pt;}
.yf6{bottom:4.854667pt;}
.ye8{bottom:4.866667pt;}
.y88{bottom:5.792000pt;}
.ye2{bottom:5.854667pt;}
.ya9{bottom:5.866667pt;}
.yf4{bottom:6.066667pt;}
.yec{bottom:6.093333pt;}
.yfc{bottom:6.146667pt;}
.y11a{bottom:6.174667pt;}
.y90{bottom:6.181333pt;}
.y122{bottom:6.200000pt;}
.y126{bottom:6.880000pt;}
.y9e{bottom:7.958667pt;}
.yb8{bottom:10.500000pt;}
.y89{bottom:10.625333pt;}
.ye3{bottom:10.740000pt;}
.yaa{bottom:10.764000pt;}
.yee{bottom:12.613333pt;}
.y114{bottom:12.721333pt;}
.y11f{bottom:12.760000pt;}
.yfe{bottom:13.400000pt;}
.yea{bottom:15.213333pt;}
.yfa{bottom:15.266667pt;}
.y11b{bottom:15.293333pt;}
.y123{bottom:15.321333pt;}
.yf2{bottom:15.346667pt;}
.y127{bottom:16.000000pt;}
.y9c{bottom:16.333333pt;}
.ya5{bottom:16.458667pt;}
.y92{bottom:18.914667pt;}
.yb6{bottom:19.084000pt;}
.ye1{bottom:19.206667pt;}
.ya8{bottom:19.248000pt;}
.ya3{bottom:21.292000pt;}
.yef{bottom:21.733333pt;}
.y115{bottom:21.841333pt;}
.y11d{bottom:21.880000pt;}
.yff{bottom:22.521333pt;}
.y93{bottom:23.696000pt;}
.y119{bottom:24.413333pt;}
.y121{bottom:24.440000pt;}
.yf3{bottom:24.466667pt;}
.yeb{bottom:24.493333pt;}
.yfb{bottom:24.546667pt;}
.y125{bottom:25.280000pt;}
.y4{bottom:28.866667pt;}
.ya1{bottom:29.666667pt;}
.y113{bottom:31.121333pt;}
.y99{bottom:31.978667pt;}
.yb7{bottom:34.792000pt;}
.ya4{bottom:40.208000pt;}
.y116{bottom:40.240000pt;}
.y91{bottom:42.404000pt;}
.y82{bottom:97.188000pt;}
.y32{bottom:98.788000pt;}
.y5f{bottom:101.988000pt;}
.y14d{bottom:102.146667pt;}
.y168{bottom:111.588000pt;}
.y11c{bottom:112.266667pt;}
.y81{bottom:115.588000pt;}
.y31{bottom:117.188000pt;}
.y5e{bottom:120.388000pt;}
.y14c{bottom:120.546667pt;}
.yb4{bottom:128.546667pt;}
.y167{bottom:129.988000pt;}
.y80{bottom:133.988000pt;}
.y30{bottom:135.588000pt;}
.ye0{bottom:138.066667pt;}
.y5d{bottom:138.788000pt;}
.y14b{bottom:138.946667pt;}
.ye4{bottom:146.066667pt;}
.ydf{bottom:148.708000pt;}
.y118{bottom:149.733333pt;}
.y2f{bottom:153.988000pt;}
.yb3{bottom:154.946667pt;}
.y166{bottom:156.388000pt;}
.y5c{bottom:157.188000pt;}
.y14a{bottom:157.346667pt;}
.y7f{bottom:160.388000pt;}
.y173{bottom:164.388000pt;}
.y2e{bottom:172.388000pt;}
.yb2{bottom:173.346667pt;}
.y165{bottom:174.788000pt;}
.y5b{bottom:175.588000pt;}
.y149{bottom:175.746667pt;}
.yde{bottom:177.066667pt;}
.y7e{bottom:178.788000pt;}
.y172{bottom:182.788000pt;}
.yb1{bottom:191.746667pt;}
.y112{bottom:192.466667pt;}
.y148{bottom:194.146667pt;}
.y7d{bottom:197.188000pt;}
.y2d{bottom:198.788000pt;}
.y164{bottom:201.188000pt;}
.y5a{bottom:201.988000pt;}
.yb0{bottom:210.146667pt;}
.y7c{bottom:215.588000pt;}
.y2c{bottom:217.188000pt;}
.ydd{bottom:219.588000pt;}
.y147{bottom:220.546667pt;}
.y171{bottom:227.588000pt;}
.y59{bottom:228.388000pt;}
.yaf{bottom:228.546667pt;}
.y7b{bottom:233.988000pt;}
.y2b{bottom:235.588000pt;}
.ydc{bottom:245.988000pt;}
.y58{bottom:246.788000pt;}
.y146{bottom:246.946667pt;}
.y7a{bottom:252.388000pt;}
.y2a{bottom:253.988000pt;}
.yae{bottom:254.946667pt;}
.y111{bottom:259.746667pt;}
.ydb{bottom:264.388000pt;}
.y57{bottom:265.188000pt;}
.y145{bottom:265.346667pt;}
.y79{bottom:270.788000pt;}
.y29{bottom:272.388000pt;}
.yad{bottom:273.346667pt;}
.yda{bottom:282.788000pt;}
.y56{bottom:283.588000pt;}
.y144{bottom:283.746667pt;}
.y110{bottom:286.146667pt;}
.y78{bottom:289.188000pt;}
.y28{bottom:290.788000pt;}
.yac{bottom:296.266667pt;}
.yd9{bottom:301.188000pt;}
.y55{bottom:301.988000pt;}
.y143{bottom:302.146667pt;}
.y77{bottom:307.588000pt;}
.y27{bottom:309.188000pt;}
.y10f{bottom:312.546667pt;}
.yd8{bottom:319.588000pt;}
.y54{bottom:320.388000pt;}
.y142{bottom:320.546667pt;}
.y76{bottom:325.988000pt;}
.y26{bottom:327.588000pt;}
.y10e{bottom:330.946667pt;}
.yab{bottom:335.746667pt;}
.yd7{bottom:337.988000pt;}
.y53{bottom:338.788000pt;}
.y141{bottom:338.946667pt;}
.y75{bottom:344.388000pt;}
.y25{bottom:345.988000pt;}
.y10d{bottom:349.346667pt;}
.yd6{bottom:356.388000pt;}
.y52{bottom:357.188000pt;}
.y140{bottom:357.346667pt;}
.ya7{bottom:358.666667pt;}
.y74{bottom:362.788000pt;}
.y24{bottom:364.388000pt;}
.y10c{bottom:367.746667pt;}
.ya6{bottom:369.346667pt;}
.y163{bottom:372.388000pt;}
.yd5{bottom:374.788000pt;}
.y51{bottom:375.588000pt;}
.y13f{bottom:375.746667pt;}
.y73{bottom:381.188000pt;}
.y23{bottom:382.788000pt;}
.y162{bottom:390.788000pt;}
.yd4{bottom:393.188000pt;}
.y50{bottom:393.988000pt;}
.y10b{bottom:394.146667pt;}
.ya0{bottom:397.733333pt;}
.y72{bottom:399.588000pt;}
.y22{bottom:401.188000pt;}
.y161{bottom:409.188000pt;}
.y13e{bottom:412.546667pt;}
.y71{bottom:417.988000pt;}
.y21{bottom:419.588000pt;}
.y4f{bottom:420.388000pt;}
.y10a{bottom:420.546667pt;}
.y160{bottom:427.588000pt;}
.y13d{bottom:430.946667pt;}
.y70{bottom:436.388000pt;}
.y20{bottom:437.988000pt;}
.y4e{bottom:438.788000pt;}
.y109{bottom:438.946667pt;}
.y15f{bottom:445.988000pt;}
.y13c{bottom:449.346667pt;}
.y170{bottom:453.988000pt;}
.y6f{bottom:454.788000pt;}
.y1f{bottom:456.388000pt;}
.y4d{bottom:457.188000pt;}
.y108{bottom:457.346667pt;}
.y9f{bottom:461.188000pt;}
.y15e{bottom:464.388000pt;}
.y13b{bottom:467.746667pt;}
.y107{bottom:472.266667pt;}
.y16f{bottom:472.388000pt;}
.y6e{bottom:473.188000pt;}
.y1e{bottom:474.788000pt;}
.y4c{bottom:475.588000pt;}
.y106{bottom:476.226667pt;}
.y9b{bottom:484.133333pt;}
.y15d{bottom:490.788000pt;}
.y9a{bottom:492.066667pt;}
.y1d{bottom:493.188000pt;}
.y4b{bottom:493.988000pt;}
.y13a{bottom:494.146667pt;}
.y105{bottom:495.746667pt;}
.y6d{bottom:499.588000pt;}
.y15c{bottom:509.188000pt;}
.yd3{bottom:511.588000pt;}
.y4a{bottom:512.388000pt;}
.y139{bottom:512.546667pt;}
.y104{bottom:514.146667pt;}
.y16e{bottom:517.188000pt;}
.y6c{bottom:517.988000pt;}
.y1c{bottom:519.588000pt;}
.y98{bottom:520.000000pt;}
.y15b{bottom:527.588000pt;}
.yd2{bottom:529.988000pt;}
.y49{bottom:530.788000pt;}
.y138{bottom:530.946667pt;}
.y16d{bottom:535.588000pt;}
.y6b{bottom:536.388000pt;}
.y103{bottom:540.546667pt;}
.y1b{bottom:545.988000pt;}
.yd1{bottom:548.388000pt;}
.y48{bottom:549.188000pt;}
.y137{bottom:549.346667pt;}
.y15a{bottom:553.988000pt;}
.y6a{bottom:554.788000pt;}
.y102{bottom:558.946667pt;}
.y1a{bottom:564.388000pt;}
.yd0{bottom:566.788000pt;}
.y47{bottom:567.588000pt;}
.y136{bottom:567.746667pt;}
.y159{bottom:572.388000pt;}
.y69{bottom:573.188000pt;}
.y101{bottom:577.346667pt;}
.ycf{bottom:585.188000pt;}
.y97{bottom:585.506667pt;}
.y46{bottom:585.988000pt;}
.y135{bottom:586.146667pt;}
.y19{bottom:590.788000pt;}
.y68{bottom:591.588000pt;}
.y16c{bottom:598.788000pt;}
.yce{bottom:603.588000pt;}
.y45{bottom:604.388000pt;}
.y134{bottom:604.546667pt;}
.y18{bottom:609.188000pt;}
.y67{bottom:609.988000pt;}
.y96{bottom:611.908000pt;}
.y158{bottom:617.188000pt;}
.yfd{bottom:618.666667pt;}
.ycd{bottom:621.988000pt;}
.y44{bottom:622.788000pt;}
.y133{bottom:622.946667pt;}
.y95{bottom:626.866667pt;}
.y17{bottom:627.588000pt;}
.y66{bottom:628.388000pt;}
.y157{bottom:635.588000pt;}
.y94{bottom:637.506667pt;}
.ycc{bottom:640.388000pt;}
.y43{bottom:641.188000pt;}
.y132{bottom:641.346667pt;}
.y16{bottom:645.988000pt;}
.y65{bottom:646.788000pt;}
.y156{bottom:653.988000pt;}
.yf9{bottom:656.800000pt;}
.ycb{bottom:658.788000pt;}
.y42{bottom:659.588000pt;}
.y131{bottom:659.746667pt;}
.y8f{bottom:662.866667pt;}
.y15{bottom:664.388000pt;}
.y64{bottom:665.188000pt;}
.yca{bottom:677.188000pt;}
.y41{bottom:677.988000pt;}
.y130{bottom:678.146667pt;}
.y155{bottom:680.388000pt;}
.y14{bottom:682.788000pt;}
.y63{bottom:683.588000pt;}
.y8e{bottom:686.946667pt;}
.y40{bottom:696.388000pt;}
.y12f{bottom:696.546667pt;}
.y154{bottom:698.788000pt;}
.yf7{bottom:699.466667pt;}
.y13{bottom:701.188000pt;}
.y62{bottom:701.988000pt;}
.yc9{bottom:703.588000pt;}
.y3f{bottom:714.788000pt;}
.y12e{bottom:714.946667pt;}
.y153{bottom:717.188000pt;}
.y12{bottom:719.588000pt;}
.y61{bottom:720.388000pt;}
.yf5{bottom:721.133333pt;}
.yc8{bottom:721.988000pt;}
.y8d{bottom:728.388000pt;}
.y12d{bottom:733.346667pt;}
.y152{bottom:735.588000pt;}
.y11{bottom:737.988000pt;}
.yc7{bottom:740.388000pt;}
.y3e{bottom:741.188000pt;}
.yf1{bottom:742.800000pt;}
.y60{bottom:746.788000pt;}
.y12c{bottom:751.746667pt;}
.y8c{bottom:754.788000pt;}
.y10{bottom:756.388000pt;}
.yc6{bottom:758.788000pt;}
.y3d{bottom:759.588000pt;}
.y151{bottom:761.988000pt;}
.y12b{bottom:770.146667pt;}
.y8b{bottom:773.188000pt;}
.yf{bottom:774.788000pt;}
.yc5{bottom:777.188000pt;}
.y3c{bottom:777.988000pt;}
.y16b{bottom:780.388000pt;}
.yed{bottom:785.533333pt;}
.y150{bottom:788.388000pt;}
.ye{bottom:793.188000pt;}
.y87{bottom:796.133333pt;}
.y3b{bottom:796.388000pt;}
.y12a{bottom:796.546667pt;}
.y16a{bottom:798.788000pt;}
.yc4{bottom:803.588000pt;}
.y8a{bottom:806.788000pt;}
.yd{bottom:811.588000pt;}
.y3a{bottom:814.788000pt;}
.y129{bottom:814.946667pt;}
.y169{bottom:817.188000pt;}
.ye9{bottom:822.933333pt;}
.y14f{bottom:825.188000pt;}
.yc3{bottom:829.988000pt;}
.y39{bottom:833.188000pt;}
.y128{bottom:833.346667pt;}
.y86{bottom:835.588000pt;}
.yc{bottom:837.988000pt;}
.y14e{bottom:843.588000pt;}
.yc2{bottom:848.226667pt;}
.y38{bottom:851.588000pt;}
.y85{bottom:861.988000pt;}
.yb{bottom:864.388000pt;}
.ye7{bottom:865.600000pt;}
.y37{bottom:869.988000pt;}
.yc1{bottom:871.200000pt;}
.y124{bottom:874.466667pt;}
.yc0{bottom:875.266667pt;}
.y84{bottom:880.388000pt;}
.y36{bottom:888.388000pt;}
.ya{bottom:890.788000pt;}
.ybd{bottom:891.200000pt;}
.ybe{bottom:895.200000pt;}
.y83{bottom:898.788000pt;}
.ybc{bottom:899.266667pt;}
.y35{bottom:906.788000pt;}
.ybb{bottom:915.200000pt;}
.y9{bottom:917.188000pt;}
.yba{bottom:917.866667pt;}
.y34{bottom:925.188000pt;}
.yb9{bottom:925.826667pt;}
.y8{bottom:943.588000pt;}
.yb5{bottom:951.200000pt;}
.ye6{bottom:951.588000pt;}
.y120{bottom:960.533333pt;}
.y33{bottom:961.988000pt;}
.y7{bottom:969.988000pt;}
.y6{bottom:988.226667pt;}
.y3{bottom:1025.506667pt;}
.y2{bottom:1052.226667pt;}
.y1{bottom:1076.388000pt;}
.h4{height:17.933333pt;}
.h1b{height:19.000000pt;}
.h17{height:20.000000pt;}
.h1c{height:21.666667pt;}
.h16{height:24.000000pt;}
.h8{height:28.000000pt;}
.h9{height:29.732391pt;}
.hd{height:29.753299pt;}
.h12{height:30.691500pt;}
.h11{height:30.713083pt;}
.h1a{height:31.000000pt;}
.h10{height:31.066667pt;}
.h1e{height:37.400000pt;}
.h21{height:37.466667pt;}
.h1f{height:38.133333pt;}
.h5{height:39.279297pt;}
.h1d{height:42.666667pt;}
.h6{height:43.375000pt;}
.h22{height:43.400000pt;}
.h7{height:44.468750pt;}
.hb{height:50.019354pt;}
.ha{height:51.429000pt;}
.he{height:51.465167pt;}
.hf{height:52.000000pt;}
.h13{height:53.088000pt;}
.h18{height:53.125333pt;}
.h15{height:54.038599pt;}
.hc{height:54.066667pt;}
.h19{height:55.619815pt;}
.h20{height:55.800000pt;}
.h2{height:56.697266pt;}
.h3{height:59.438672pt;}
.h14{height:80.817000pt;}
.h0{height:1122.533333pt;}
.h1{height:1122.666667pt;}
.wd{width:16.000000pt;}
.w5{width:19.066667pt;}
.w3{width:20.000000pt;}
.w2{width:22.266667pt;}
.wc{width:32.933333pt;}
.wa{width:34.066667pt;}
.wf{width:36.000000pt;}
.w7{width:36.933333pt;}
.w8{width:48.933333pt;}
.wb{width:51.066667pt;}
.w11{width:69.000000pt;}
.w15{width:75.866667pt;}
.w13{width:87.400000pt;}
.w16{width:95.733333pt;}
.w17{width:100.733333pt;}
.w14{width:106.466667pt;}
.w4{width:123.066667pt;}
.w12{width:126.200000pt;}
.w6{width:186.066667pt;}
.w10{width:192.066667pt;}
.we{width:254.066667pt;}
.w9{width:319.000000pt;}
.w0{width:793.733333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:1.208000pt;}
.x17{left:2.128000pt;}
.xd{left:3.249333pt;}
.x34{left:4.157333pt;}
.x25{left:5.396000pt;}
.x1d{left:6.484000pt;}
.x24{left:8.324000pt;}
.x16{left:10.086667pt;}
.xc{left:11.041333pt;}
.x30{left:12.938667pt;}
.x21{left:14.097333pt;}
.x1a{left:15.561333pt;}
.x27{left:17.189333pt;}
.x14{left:19.104000pt;}
.x29{left:22.857333pt;}
.x1e{left:25.182667pt;}
.x33{left:29.102667pt;}
.x1c{left:33.005333pt;}
.x46{left:34.085333pt;}
.x13{left:36.493333pt;}
.x11{left:39.420000pt;}
.x10{left:45.397333pt;}
.x2e{left:53.013333pt;}
.x19{left:73.246667pt;}
.x23{left:74.418667pt;}
.x2d{left:81.168000pt;}
.x12{left:84.817333pt;}
.x1b{left:93.744000pt;}
.x28{left:106.528000pt;}
.x4{left:113.733333pt;}
.x1{left:114.878667pt;}
.x2b{left:115.954667pt;}
.x6{left:117.920000pt;}
.x1f{left:124.449333pt;}
.x26{left:128.297333pt;}
.x3c{left:131.564000pt;}
.xe{left:137.440000pt;}
.x2f{left:147.320000pt;}
.x5{left:150.400000pt;}
.x2a{left:171.345333pt;}
.x20{left:172.800000pt;}
.x15{left:178.066667pt;}
.x36{left:186.733333pt;}
.x18{left:206.078667pt;}
.x3d{left:212.800000pt;}
.x22{left:213.920000pt;}
.x31{left:219.520000pt;}
.xf{left:223.200000pt;}
.x37{left:232.000000pt;}
.x45{left:233.733333pt;}
.x2c{left:238.624000pt;}
.x3a{left:280.000000pt;}
.x43{left:297.866667pt;}
.x3b{left:304.000000pt;}
.x47{left:307.040000pt;}
.x3e{left:317.733333pt;}
.x48{left:319.333333pt;}
.x8{left:331.360000pt;}
.x40{left:341.760000pt;}
.x49{left:425.733333pt;}
.x7{left:451.200000pt;}
.x3{left:458.560000pt;}
.xb{left:464.478667pt;}
.x44{left:489.866667pt;}
.x4a{left:501.533333pt;}
.x38{left:534.866667pt;}
.x2{left:537.440000pt;}
.x41{left:544.333333pt;}
.x9{left:555.200000pt;}
.x39{left:563.040000pt;}
.x42{left:564.320000pt;}
.x32{left:582.066667pt;}
.xa{left:586.720000pt;}
.x4b{left:597.200000pt;}
.x35{left:641.440000pt;}
}




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