
    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_d66f8141fcb26765d02b9fa5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065581;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_8d707cdf90be51f0db33032c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.222000;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_f05eeceb7de19276a7d3b1ae.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.213000;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_82ff7e9ff3220552dce8fdc0.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_f7938436dc13b81bf6dd6a7d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.924000;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_a9b34d591f48e82dde04fa6d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065581;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:ffa;src:url('chunks/assets/font_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;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:ffb;src:url('chunks/assets/font_d798f5590c4c437dc82b67fe.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.230000;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:ffc;src:url('chunks/assets/font_e13ce940b9e9b5a239e0f478.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_3166c3278702dcf4b1f0e485.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.607000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.199982px;}
.v6{vertical-align:-13.818000px;}
.v5{vertical-align:-12.106771px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.080092px;}
.v1{vertical-align:22.799931px;}
.v3{vertical-align:23.880659px;}
.ls3{letter-spacing:-3.078000px;}
.ls16{letter-spacing:-2.736000px;}
.ls4{letter-spacing:-1.767000px;}
.ls8{letter-spacing:-1.536000px;}
.lsa{letter-spacing:-0.960000px;}
.ls9{letter-spacing:-0.480000px;}
.ls7{letter-spacing:-0.384000px;}
.ls19{letter-spacing:-0.228000px;}
.ls20{letter-spacing:-0.171000px;}
.ls17{letter-spacing:-0.114000px;}
.ls18{letter-spacing:-0.057000px;}
.ls1{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000018px;}
.ls6{letter-spacing:0.000568px;}
.ls1b{letter-spacing:0.057000px;}
.ls1d{letter-spacing:0.114000px;}
.ls14{letter-spacing:0.171000px;}
.ls15{letter-spacing:0.228000px;}
.ls12{letter-spacing:0.233679px;}
.ls3c{letter-spacing:0.240000px;}
.lse{letter-spacing:0.285000px;}
.ls1e{letter-spacing:0.290700px;}
.lsf{letter-spacing:0.342000px;}
.ls21{letter-spacing:0.370500px;}
.ls10{letter-spacing:0.399000px;}
.ls13{letter-spacing:0.456000px;}
.ls1a{letter-spacing:0.513000px;}
.ls2f{letter-spacing:0.532768px;}
.lsb{letter-spacing:0.558539px;}
.ls23{letter-spacing:0.570000px;}
.ls25{letter-spacing:0.576067px;}
.ls1f{letter-spacing:0.598500px;}
.ls11{letter-spacing:0.627000px;}
.ls26{letter-spacing:0.672000px;}
.ls30{letter-spacing:0.676800px;}
.ls27{letter-spacing:0.681600px;}
.ls2c{letter-spacing:0.686368px;}
.lsc{letter-spacing:0.695373px;}
.ls1c{letter-spacing:0.741000px;}
.ls5{letter-spacing:0.798000px;}
.lsd{letter-spacing:0.809393px;}
.ls28{letter-spacing:0.820757px;}
.ls22{letter-spacing:0.855000px;}
.ls36{letter-spacing:1.012800px;}
.ls39{letter-spacing:1.118400px;}
.ls2e{letter-spacing:1.488000px;}
.ls34{letter-spacing:2.543982px;}
.ls33{letter-spacing:2.985600px;}
.ls2b{letter-spacing:3.249600px;}
.ls37{letter-spacing:3.263968px;}
.ls0{letter-spacing:3.360000px;}
.ls24{letter-spacing:4.176000px;}
.ls31{letter-spacing:5.097577px;}
.ls38{letter-spacing:5.208000px;}
.ls2a{letter-spacing:5.616050px;}
.ls2d{letter-spacing:9.734400px;}
.ls35{letter-spacing:12.484800px;}
.ls3a{letter-spacing:15.840000px;}
.ls29{letter-spacing:17.596795px;}
.ls3b{letter-spacing:20.020770px;}
.ls3d{letter-spacing:22.656000px;}
.ls32{letter-spacing:25.919990px;}
.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;}
}
.wsb6{word-spacing:-15.048000px;}
.ws1{word-spacing:-14.976000px;}
.wsf1{word-spacing:-14.535000px;}
.ws41{word-spacing:-14.250000px;}
.ws1c{word-spacing:-13.332000px;}
.ws10c{word-spacing:-12.672000px;}
.wsa6{word-spacing:-12.483000px;}
.wsa7{word-spacing:-12.000000px;}
.ws2{word-spacing:-11.799000px;}
.wsc5{word-spacing:-11.616000px;}
.ws4{word-spacing:-11.514000px;}
.wscf{word-spacing:-11.340000px;}
.wsa5{word-spacing:-11.172000px;}
.ws5{word-spacing:-10.944000px;}
.wsc6{word-spacing:-10.464000px;}
.ws1d{word-spacing:-9.975000px;}
.ws0{word-spacing:-9.408000px;}
.wsf6{word-spacing:-9.216000px;}
.ws6{word-spacing:-8.400000px;}
.ws3{word-spacing:-8.259300px;}
.wsc7{word-spacing:-6.000000px;}
.ws8{word-spacing:-1.890000px;}
.wsed{word-spacing:-1.425000px;}
.wsef{word-spacing:-1.368000px;}
.wsee{word-spacing:-1.311000px;}
.wsb5{word-spacing:-1.197000px;}
.wsb9{word-spacing:-1.083000px;}
.ws3c{word-spacing:-0.969000px;}
.ws137{word-spacing:-0.960000px;}
.ws80{word-spacing:-0.912000px;}
.wsd4{word-spacing:-0.855000px;}
.ws36{word-spacing:-0.798000px;}
.wsf0{word-spacing:-0.741000px;}
.ws29{word-spacing:-0.684000px;}
.ws111{word-spacing:-0.672000px;}
.wsf8{word-spacing:-0.624000px;}
.ws13e{word-spacing:-0.576000px;}
.wsa9{word-spacing:-0.570000px;}
.ws27{word-spacing:-0.513000px;}
.ws9{word-spacing:-0.480000px;}
.wsec{word-spacing:-0.456000px;}
.wsfa{word-spacing:-0.432000px;}
.wsd3{word-spacing:-0.399000px;}
.wsd{word-spacing:-0.342000px;}
.ws96{word-spacing:-0.285000px;}
.ws32{word-spacing:-0.228000px;}
.ws104{word-spacing:-0.192000px;}
.ws6a{word-spacing:-0.171000px;}
.ws14b{word-spacing:-0.144000px;}
.ws7f{word-spacing:-0.114000px;}
.ws126{word-spacing:-0.096000px;}
.wsd7{word-spacing:-0.057000px;}
.ws7{word-spacing:0.000000px;}
.ws5f{word-spacing:0.057000px;}
.ws34{word-spacing:0.114000px;}
.ws2e{word-spacing:0.171000px;}
.wsce{word-spacing:0.192000px;}
.ws7b{word-spacing:0.228000px;}
.ws10f{word-spacing:0.240000px;}
.ws68{word-spacing:0.285000px;}
.wsab{word-spacing:0.342000px;}
.ws10e{word-spacing:0.384000px;}
.ws24{word-spacing:0.399000px;}
.ws2b{word-spacing:0.456000px;}
.ws8a{word-spacing:0.513000px;}
.ws21{word-spacing:0.570000px;}
.ws148{word-spacing:0.576000px;}
.wsf{word-spacing:0.627000px;}
.ws97{word-spacing:0.684000px;}
.ws81{word-spacing:0.741000px;}
.ws69{word-spacing:0.798000px;}
.wsfb{word-spacing:0.816000px;}
.ws5c{word-spacing:0.855000px;}
.ws2c{word-spacing:0.912000px;}
.wscc{word-spacing:0.960000px;}
.ws70{word-spacing:0.969000px;}
.ws43{word-spacing:1.026000px;}
.wsfc{word-spacing:1.056000px;}
.ws13a{word-spacing:1.104000px;}
.ws11{word-spacing:1.140000px;}
.wsda{word-spacing:1.197000px;}
.ws12b{word-spacing:1.248000px;}
.wsb8{word-spacing:1.254000px;}
.ws121{word-spacing:1.296000px;}
.ws50{word-spacing:1.311000px;}
.ws101{word-spacing:1.344000px;}
.ws74{word-spacing:1.368000px;}
.ws12a{word-spacing:1.392000px;}
.wsae{word-spacing:1.425000px;}
.ws23{word-spacing:1.482000px;}
.ws28{word-spacing:1.539000px;}
.wsba{word-spacing:1.596000px;}
.ws106{word-spacing:1.632000px;}
.wsb3{word-spacing:1.653000px;}
.ws146{word-spacing:1.680000px;}
.wsd6{word-spacing:1.710000px;}
.wsf9{word-spacing:1.728000px;}
.ws99{word-spacing:1.767000px;}
.ws10a{word-spacing:1.776000px;}
.ws5e{word-spacing:1.824000px;}
.ws3f{word-spacing:1.872000px;}
.ws14{word-spacing:1.881000px;}
.ws147{word-spacing:1.920000px;}
.ws65{word-spacing:1.938000px;}
.ws134{word-spacing:1.968000px;}
.ws9b{word-spacing:1.995000px;}
.wsc{word-spacing:2.052000px;}
.ws95{word-spacing:2.109000px;}
.ws129{word-spacing:2.112000px;}
.ws82{word-spacing:2.223000px;}
.wsf2{word-spacing:2.280000px;}
.ws2d{word-spacing:2.337000px;}
.ws130{word-spacing:2.352000px;}
.ws2a{word-spacing:2.394000px;}
.ws7c{word-spacing:2.451000px;}
.ws107{word-spacing:2.496000px;}
.ws39{word-spacing:2.508000px;}
.ws120{word-spacing:2.544000px;}
.wsf7{word-spacing:2.565000px;}
.ws11a{word-spacing:2.592000px;}
.ws64{word-spacing:2.622000px;}
.ws6c{word-spacing:2.679000px;}
.ws117{word-spacing:2.688000px;}
.wsfd{word-spacing:2.832000px;}
.wsb{word-spacing:2.850000px;}
.ws84{word-spacing:2.907000px;}
.ws26{word-spacing:2.964000px;}
.ws133{word-spacing:2.976000px;}
.ws2f{word-spacing:3.021000px;}
.ws136{word-spacing:3.024000px;}
.ws125{word-spacing:3.072000px;}
.ws59{word-spacing:3.078000px;}
.ws1a{word-spacing:3.135000px;}
.ws142{word-spacing:3.168000px;}
.ws79{word-spacing:3.192000px;}
.ws4d{word-spacing:3.249000px;}
.ws49{word-spacing:3.306000px;}
.ws139{word-spacing:3.312000px;}
.ws128{word-spacing:3.360000px;}
.wsa1{word-spacing:3.363000px;}
.ws103{word-spacing:3.408000px;}
.ws33{word-spacing:3.420000px;}
.ws22{word-spacing:3.477000px;}
.ws12{word-spacing:3.591000px;}
.ws14a{word-spacing:3.600000px;}
.ws15{word-spacing:3.648000px;}
.wsfe{word-spacing:3.696000px;}
.ws6f{word-spacing:3.705000px;}
.ws5b{word-spacing:3.762000px;}
.ws73{word-spacing:3.819000px;}
.ws108{word-spacing:3.840000px;}
.ws3b{word-spacing:3.876000px;}
.ws37{word-spacing:3.933000px;}
.wse{word-spacing:3.990000px;}
.ws30{word-spacing:4.047000px;}
.ws4a{word-spacing:4.104000px;}
.ws35{word-spacing:4.161000px;}
.ws127{word-spacing:4.176000px;}
.wsf5{word-spacing:4.218000px;}
.ws105{word-spacing:4.224000px;}
.ws131{word-spacing:4.272000px;}
.ws93{word-spacing:4.275000px;}
.ws7d{word-spacing:4.332000px;}
.ws109{word-spacing:4.368000px;}
.ws9e{word-spacing:4.389000px;}
.ws10d{word-spacing:4.416000px;}
.ws47{word-spacing:4.446000px;}
.ws12c{word-spacing:4.464000px;}
.ws86{word-spacing:4.503000px;}
.ws17{word-spacing:4.560000px;}
.ws67{word-spacing:4.617000px;}
.ws115{word-spacing:4.656000px;}
.ws16{word-spacing:4.674000px;}
.ws40{word-spacing:4.704000px;}
.ws7a{word-spacing:4.731000px;}
.ws140{word-spacing:4.752000px;}
.ws83{word-spacing:4.788000px;}
.wsbc{word-spacing:4.845000px;}
.ws5a{word-spacing:4.896000px;}
.ws118{word-spacing:4.944000px;}
.ws6d{word-spacing:4.959000px;}
.ws12d{word-spacing:4.992000px;}
.ws5d{word-spacing:5.016000px;}
.wsb2{word-spacing:5.073000px;}
.ws13f{word-spacing:5.088000px;}
.ws144{word-spacing:5.136000px;}
.ws4c{word-spacing:5.187000px;}
.ws19{word-spacing:5.244000px;}
.ws61{word-spacing:5.301000px;}
.ws44{word-spacing:5.358000px;}
.ws4e{word-spacing:5.415000px;}
.ws6b{word-spacing:5.472000px;}
.ws138{word-spacing:5.520000px;}
.ws13{word-spacing:5.586000px;}
.ws20{word-spacing:5.643000px;}
.ws98{word-spacing:5.700000px;}
.ws123{word-spacing:5.712000px;}
.wsc4{word-spacing:5.757000px;}
.ws132{word-spacing:5.808000px;}
.ws8e{word-spacing:5.814000px;}
.ws122{word-spacing:5.856000px;}
.ws56{word-spacing:5.871000px;}
.ws8d{word-spacing:5.928000px;}
.ws38{word-spacing:6.042000px;}
.ws31{word-spacing:6.099000px;}
.wsa{word-spacing:6.156000px;}
.ws13d{word-spacing:6.192000px;}
.ws8b{word-spacing:6.213000px;}
.wsb4{word-spacing:6.270000px;}
.wsc3{word-spacing:6.327000px;}
.wseb{word-spacing:6.384000px;}
.ws11b{word-spacing:6.432000px;}
.wsbd{word-spacing:6.441000px;}
.ws52{word-spacing:6.498000px;}
.wsa4{word-spacing:6.555000px;}
.ws112{word-spacing:6.576000px;}
.ws51{word-spacing:6.612000px;}
.ws54{word-spacing:6.669000px;}
.ws110{word-spacing:6.672000px;}
.ws42{word-spacing:6.726000px;}
.ws55{word-spacing:6.783000px;}
.ws57{word-spacing:6.840000px;}
.ws9c{word-spacing:6.897000px;}
.ws78{word-spacing:6.954000px;}
.wsbe{word-spacing:7.068000px;}
.ws10{word-spacing:7.125000px;}
.ws100{word-spacing:7.152000px;}
.wsff{word-spacing:7.200000px;}
.wsd0{word-spacing:7.296000px;}
.ws135{word-spacing:7.344000px;}
.ws3a{word-spacing:7.353000px;}
.ws114{word-spacing:7.392000px;}
.ws8f{word-spacing:7.410000px;}
.ws18{word-spacing:7.467000px;}
.ws124{word-spacing:7.488000px;}
.ws72{word-spacing:7.524000px;}
.ws58{word-spacing:7.581000px;}
.ws66{word-spacing:7.638000px;}
.ws113{word-spacing:7.680000px;}
.ws3d{word-spacing:7.752000px;}
.ws9a{word-spacing:7.809000px;}
.ws119{word-spacing:7.824000px;}
.wsd1{word-spacing:7.866000px;}
.ws3e{word-spacing:7.980000px;}
.wsbb{word-spacing:8.037000px;}
.ws4f{word-spacing:8.094000px;}
.ws25{word-spacing:8.151000px;}
.wsa3{word-spacing:8.208000px;}
.ws4b{word-spacing:8.265000px;}
.wsb1{word-spacing:8.322000px;}
.ws75{word-spacing:8.379000px;}
.ws63{word-spacing:8.493000px;}
.ws7e{word-spacing:8.550000px;}
.wsac{word-spacing:8.607000px;}
.wsc1{word-spacing:8.664000px;}
.wsa2{word-spacing:8.721000px;}
.wsd5{word-spacing:8.835000px;}
.ws48{word-spacing:9.006000px;}
.ws11f{word-spacing:9.072000px;}
.wsea{word-spacing:9.120000px;}
.ws11c{word-spacing:9.168000px;}
.ws1f{word-spacing:9.177000px;}
.ws85{word-spacing:9.291000px;}
.ws71{word-spacing:9.348000px;}
.ws53{word-spacing:9.405000px;}
.ws12e{word-spacing:9.408000px;}
.ws1e{word-spacing:9.462000px;}
.ws92{word-spacing:9.519000px;}
.wsd9{word-spacing:9.633000px;}
.ws10b{word-spacing:9.648000px;}
.wsa0{word-spacing:9.690000px;}
.ws87{word-spacing:9.861000px;}
.wsb0{word-spacing:9.918000px;}
.wsbf{word-spacing:9.975000px;}
.ws6e{word-spacing:10.032000px;}
.wsf3{word-spacing:10.089000px;}
.ws46{word-spacing:10.146000px;}
.wsc2{word-spacing:10.260000px;}
.ws11e{word-spacing:10.320000px;}
.ws89{word-spacing:10.374000px;}
.ws94{word-spacing:10.488000px;}
.ws13b{word-spacing:10.608000px;}
.ws90{word-spacing:10.659000px;}
.ws45{word-spacing:10.716000px;}
.wsaf{word-spacing:10.887000px;}
.ws91{word-spacing:11.001000px;}
.wsaa{word-spacing:11.058000px;}
.ws62{word-spacing:11.286000px;}
.ws60{word-spacing:11.514000px;}
.ws77{word-spacing:11.628000px;}
.wsd2{word-spacing:11.799000px;}
.wsc0{word-spacing:11.970000px;}
.ws9f{word-spacing:12.027000px;}
.ws88{word-spacing:12.369000px;}
.ws13c{word-spacing:12.384000px;}
.wsf4{word-spacing:12.654000px;}
.ws102{word-spacing:13.248000px;}
.wsd8{word-spacing:13.623000px;}
.wsad{word-spacing:13.737000px;}
.ws8c{word-spacing:13.794000px;}
.ws76{word-spacing:14.421000px;}
.ws9d{word-spacing:15.276000px;}
.ws141{word-spacing:15.696000px;}
.ws11d{word-spacing:16.320000px;}
.ws145{word-spacing:16.752000px;}
.ws116{word-spacing:16.944000px;}
.wsb7{word-spacing:19.380000px;}
.ws143{word-spacing:19.968000px;}
.ws149{word-spacing:22.656000px;}
.ws12f{word-spacing:25.968000px;}
.wsdb{word-spacing:30.144000px;}
.wse4{word-spacing:30.528000px;}
.wsc8{word-spacing:30.960000px;}
.wse2{word-spacing:42.048000px;}
.wscd{word-spacing:42.864000px;}
.wse3{word-spacing:47.088000px;}
.ws1b{word-spacing:73.056000px;}
.wse1{word-spacing:74.016000px;}
.wse7{word-spacing:74.400000px;}
.wsca{word-spacing:74.832000px;}
.wse8{word-spacing:92.400000px;}
.wsde{word-spacing:152.064000px;}
.wse5{word-spacing:162.768000px;}
.wse6{word-spacing:171.648000px;}
.wse0{word-spacing:184.032000px;}
.wscb{word-spacing:185.664000px;}
.wse9{word-spacing:202.752000px;}
.wsa8{word-spacing:240.959981px;}
.wsdc{word-spacing:298.751993px;}
.wsc9{word-spacing:299.568000px;}
.wsdd{word-spacing:340.511993px;}
.wsdf{word-spacing:628.800000px;}
._4a{margin-left:-21.447008px;}
._4{margin-left:-15.600000px;}
._22{margin-left:-12.192000px;}
._45{margin-left:-6.384000px;}
._6b{margin-left:-5.260800px;}
._3{margin-left:-4.017600px;}
._2{margin-left:-2.735400px;}
._0{margin-left:-1.632000px;}
._1{width:1.296000px;}
._8{width:2.344800px;}
._c{width:3.391500px;}
._e{width:4.438200px;}
._d{width:5.699100px;}
._a{width:7.112700px;}
._b{width:8.529000px;}
._9{width:10.128000px;}
._13{width:11.418900px;}
._f{width:14.682600px;}
._27{width:17.903400px;}
._5{width:22.320000px;}
._53{width:35.712000px;}
._54{width:37.631984px;}
._33{width:38.688000px;}
._4f{width:39.887993px;}
._34{width:41.520000px;}
._69{width:43.008600px;}
._4b{width:49.296000px;}
._41{width:54.864000px;}
._6{width:56.255995px;}
._55{width:58.896000px;}
._50{width:60.000000px;}
._43{width:65.567994px;}
._35{width:68.160000px;}
._62{width:72.335375px;}
._18{width:75.888000px;}
._1e{width:81.072000px;}
._36{width:86.927994px;}
._3d{width:88.512000px;}
._2c{width:90.480000px;}
._5b{width:104.016000px;}
._19{width:105.407994px;}
._2f{width:120.095994px;}
._1a{width:121.104000px;}
._5d{width:123.407984px;}
._44{width:136.848000px;}
._65{width:141.888000px;}
._63{width:162.336000px;}
._4d{width:183.455384px;}
._2b{width:185.183994px;}
._56{width:192.191400px;}
._5e{width:195.215993px;}
._3c{width:197.664000px;}
._51{width:201.504000px;}
._26{width:205.392000px;}
._59{width:210.768000px;}
._3f{width:213.599389px;}
._64{width:215.999975px;}
._37{width:217.440000px;}
._2d{width:220.560000px;}
._24{width:227.760000px;}
._12{width:229.919981px;}
._52{width:236.687984px;}
._31{width:246.863389px;}
._1b{width:248.960831px;}
._1c{width:250.918501px;}
._32{width:256.271400px;}
._57{width:260.433584px;}
._5c{width:269.088000px;}
._21{width:273.072000px;}
._48{width:278.688000px;}
._46{width:281.472000px;}
._66{width:284.783981px;}
._25{width:289.439994px;}
._4e{width:303.407400px;}
._6a{width:312.000000px;}
._38{width:313.535989px;}
._60{width:315.550800px;}
._61{width:325.152000px;}
._14{width:333.984000px;}
._3b{width:344.448000px;}
._40{width:353.328000px;}
._39{width:356.400000px;}
._11{width:359.135384px;}
._10{width:366.047380px;}
._15{width:378.768000px;}
._5a{width:387.887985px;}
._49{width:389.520000px;}
._17{width:407.135994px;}
._2a{width:418.464000px;}
._47{width:422.400000px;}
._68{width:430.080000px;}
._67{width:431.231991px;}
._16{width:439.152000px;}
._3e{width:455.280000px;}
._58{width:462.527985px;}
._42{width:464.160000px;}
._3a{width:500.399978px;}
._30{width:713.697594px;}
._20{width:715.535986px;}
._4c{width:760.175400px;}
._5f{width:776.015375px;}
._1f{width:818.975972px;}
._1d{width:865.055972px;}
._29{width:1003.823972px;}
._7{width:1437.839955px;}
._23{width:1443.120075px;}
._28{width:1464.383318px;}
._2e{width:1467.167918px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:33.600000px;}
.fs4{font-size:39.900000px;}
.fs0{font-size:48.000000px;}
.fs3{font-size:57.000000px;}
.fs7{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:32.687250px;}
.y8a{bottom:33.984900px;}
.y4{bottom:33.985050px;}
.y231{bottom:73.215137px;}
.y242{bottom:73.239064px;}
.y227{bottom:73.239083px;}
.y29b{bottom:73.263013px;}
.y239{bottom:73.263017px;}
.y295{bottom:73.263037px;}
.y219{bottom:73.263039px;}
.y1bd{bottom:73.274998px;}
.y89{bottom:73.277998px;}
.y58{bottom:73.280998px;}
.y218{bottom:73.286950px;}
.y1be{bottom:73.286984px;}
.y2b1{bottom:73.287037px;}
.y2b6{bottom:73.287076px;}
.y1d2{bottom:73.298826px;}
.y2bc{bottom:73.299117px;}
.y2bf{bottom:73.299156px;}
.y1fe{bottom:73.310949px;}
.y112{bottom:73.426031px;}
.y12a{bottom:73.928557px;}
.ycf{bottom:74.285991px;}
.y268{bottom:74.346741px;}
.y16b{bottom:74.407491px;}
.y1bc{bottom:74.511759px;}
.yaf{bottom:74.646759px;}
.y326{bottom:75.793200px;}
.y1dc{bottom:77.767628px;}
.y1c6{bottom:77.774826px;}
.y1df{bottom:77.779633px;}
.y1ec{bottom:77.786813px;}
.y1ca{bottom:77.786840px;}
.y1bf{bottom:77.786984px;}
.y1d5{bottom:77.798803px;}
.y1d3{bottom:77.798826px;}
.y1f8{bottom:77.798963px;}
.y1c5{bottom:77.798970px;}
.y1ff{bottom:77.810949px;}
.y205{bottom:77.822935px;}
.y20b{bottom:77.834922px;}
.y28{bottom:78.074999px;}
.y2e9{bottom:81.058781px;}
.yf1{bottom:82.534031px;}
.y304{bottom:86.331281px;}
.y57{bottom:87.152998px;}
.y325{bottom:89.665200px;}
.y1ed{bottom:89.786813px;}
.y215{bottom:89.786984px;}
.y206{bottom:89.822935px;}
.y20c{bottom:89.834922px;}
.y111{bottom:90.682781px;}
.y294{bottom:90.703031px;}
.y129{bottom:91.185307px;}
.yce{bottom:91.542741px;}
.y267{bottom:91.603491px;}
.y191{bottom:91.653444px;}
.y16a{bottom:91.664241px;}
.y1bb{bottom:91.768509px;}
.yae{bottom:91.903509px;}
.y88{bottom:91.949999px;}
.y2e8{bottom:98.315531px;}
.y35e{bottom:98.861531px;}
.y27{bottom:99.497246px;}
.yf0{bottom:99.790781px;}
.y324{bottom:103.537200px;}
.y303{bottom:103.588031px;}
.y56{bottom:105.825005px;}
.y110{bottom:107.939531px;}
.y293{bottom:107.959781px;}
.y128{bottom:108.442057px;}
.ycd{bottom:108.799491px;}
.y266{bottom:108.860241px;}
.y190{bottom:108.910194px;}
.y169{bottom:108.920991px;}
.y1ba{bottom:109.025259px;}
.yad{bottom:109.160259px;}
.y35d{bottom:112.733531px;}
.y2e7{bottom:115.572281px;}
.yef{bottom:117.047531px;}
.y323{bottom:117.409200px;}
.y302{bottom:120.844781px;}
.y26{bottom:120.919498px;}
.y2ac{bottom:122.858821px;}
.y2a9{bottom:122.870870px;}
.y2a6{bottom:122.882918px;}
.y2a1{bottom:122.894966px;}
.y29e{bottom:122.907010px;}
.y298{bottom:122.919032px;}
.y10f{bottom:125.196281px;}
.y292{bottom:125.216531px;}
.y127{bottom:125.698807px;}
.ycc{bottom:126.056241px;}
.y265{bottom:126.116991px;}
.y18f{bottom:126.166944px;}
.y168{bottom:126.177741px;}
.y1b9{bottom:126.282009px;}
.yac{bottom:126.417009px;}
.y35c{bottom:126.605531px;}
.y2b9{bottom:129.567078px;}
.y2c7{bottom:129.579110px;}
.y2c2{bottom:129.591133px;}
.y236{bottom:129.591148px;}
.y247{bottom:129.615075px;}
.y22c{bottom:129.615094px;}
.y23f{bottom:129.639021px;}
.y224{bottom:129.639041px;}
.y23a{bottom:129.651009px;}
.y21c{bottom:129.651021px;}
.y21f{bottom:129.651028px;}
.y322{bottom:131.281200px;}
.y2a2{bottom:131.894966px;}
.y2e6{bottom:132.829031px;}
.yee{bottom:134.304281px;}
.y301{bottom:138.101531px;}
.y2b2{bottom:138.567037px;}
.y2c3{bottom:138.591133px;}
.y232{bottom:138.603135px;}
.y248{bottom:138.615075px;}
.y22d{bottom:138.615094px;}
.y243{bottom:138.627063px;}
.y228{bottom:138.627082px;}
.y23b{bottom:138.651009px;}
.y220{bottom:138.651028px;}
.y35b{bottom:140.477531px;}
.y10e{bottom:142.453031px;}
.y291{bottom:142.473281px;}
.y87{bottom:142.493531px;}
.y126{bottom:142.955557px;}
.ycb{bottom:143.312991px;}
.y264{bottom:143.373741px;}
.y18e{bottom:143.423694px;}
.y167{bottom:143.434491px;}
.y1b8{bottom:143.538759px;}
.yab{bottom:143.673759px;}
.y25{bottom:144.397500px;}
.y321{bottom:145.153200px;}
.y2e5{bottom:150.085781px;}
.yed{bottom:151.561031px;}
.y35a{bottom:154.349531px;}
.y300{bottom:155.358281px;}
.y55{bottom:157.555803px;}
.y24{bottom:158.269500px;}
.y320{bottom:159.025200px;}
.y10d{bottom:159.709781px;}
.y290{bottom:159.730031px;}
.y86{bottom:159.750281px;}
.y125{bottom:160.212307px;}
.yca{bottom:160.569741px;}
.y263{bottom:160.630491px;}
.y18d{bottom:160.680444px;}
.y166{bottom:160.691241px;}
.y1b7{bottom:160.795509px;}
.yaa{bottom:160.930509px;}
.y2e4{bottom:167.342531px;}
.y359{bottom:168.221531px;}
.yec{bottom:168.817781px;}
.y2ff{bottom:172.615031px;}
.y31f{bottom:172.897200px;}
.y54{bottom:174.542531px;}
.y10c{bottom:176.966531px;}
.y28f{bottom:176.986781px;}
.y85{bottom:177.007031px;}
.y124{bottom:177.469057px;}
.yc9{bottom:177.826491px;}
.y262{bottom:177.887241px;}
.y18c{bottom:177.937194px;}
.y165{bottom:177.947991px;}
.y1b6{bottom:178.052259px;}
.ya9{bottom:178.187259px;}
.y358{bottom:182.093531px;}
.y2e3{bottom:184.599281px;}
.yeb{bottom:186.074531px;}
.y31e{bottom:186.769200px;}
.y2fe{bottom:189.871781px;}
.y53{bottom:191.799281px;}
.y10b{bottom:194.223281px;}
.y28e{bottom:194.243531px;}
.y84{bottom:194.263781px;}
.y123{bottom:194.725807px;}
.yc8{bottom:195.083241px;}
.y261{bottom:195.143991px;}
.y18b{bottom:195.193944px;}
.y164{bottom:195.204741px;}
.y1b5{bottom:195.309009px;}
.ya8{bottom:195.444009px;}
.y357{bottom:195.965531px;}
.y31d{bottom:200.641200px;}
.y2e2{bottom:201.856031px;}
.yea{bottom:203.331281px;}
.y2fd{bottom:207.128531px;}
.y52{bottom:209.056031px;}
.y356{bottom:209.837531px;}
.y10a{bottom:211.480031px;}
.y28d{bottom:211.500281px;}
.y83{bottom:211.520531px;}
.y122{bottom:211.982557px;}
.yc7{bottom:212.339991px;}
.y260{bottom:212.400741px;}
.y18a{bottom:212.450694px;}
.y163{bottom:212.461491px;}
.y1b4{bottom:212.565759px;}
.ya7{bottom:212.700759px;}
.y31c{bottom:214.513200px;}
.y2e1{bottom:219.112781px;}
.ye9{bottom:220.588031px;}
.y355{bottom:223.709531px;}
.y2fc{bottom:224.385281px;}
.y51{bottom:226.312781px;}
.y31b{bottom:228.385200px;}
.y109{bottom:228.736781px;}
.y28c{bottom:228.757031px;}
.y82{bottom:228.777281px;}
.y121{bottom:229.239307px;}
.yc6{bottom:229.596741px;}
.y25f{bottom:229.657491px;}
.y189{bottom:229.707444px;}
.y162{bottom:229.718241px;}
.y1b3{bottom:229.822509px;}
.ya6{bottom:229.957509px;}
.y2e0{bottom:236.369531px;}
.y354{bottom:237.581531px;}
.ye8{bottom:237.844781px;}
.y2fb{bottom:241.642031px;}
.y1ee{bottom:241.718813px;}
.y200{bottom:241.742949px;}
.y207{bottom:241.754935px;}
.y20d{bottom:241.766922px;}
.y31a{bottom:242.257200px;}
.y50{bottom:243.569531px;}
.y23{bottom:245.207694px;}
.y108{bottom:245.993531px;}
.y28b{bottom:246.013781px;}
.y81{bottom:246.034031px;}
.y120{bottom:246.496057px;}
.yc5{bottom:246.853491px;}
.y25e{bottom:246.914241px;}
.y188{bottom:246.964194px;}
.y161{bottom:246.974991px;}
.y1b2{bottom:247.079259px;}
.ya5{bottom:247.214259px;}
.y1e5{bottom:250.706826px;}
.y1e0{bottom:250.711633px;}
.y1ef{bottom:250.718813px;}
.y1cb{bottom:250.718840px;}
.y1c0{bottom:250.718984px;}
.y1d6{bottom:250.730803px;}
.y1f9{bottom:250.730963px;}
.y20e{bottom:250.766922px;}
.y353{bottom:251.453531px;}
.y2df{bottom:253.626281px;}
.ye7{bottom:255.101531px;}
.y319{bottom:256.129200px;}
.y2fa{bottom:258.898781px;}
.y4f{bottom:260.826281px;}
.y22{bottom:262.464444px;}
.y107{bottom:263.250281px;}
.y28a{bottom:263.270531px;}
.y80{bottom:263.290781px;}
.y11f{bottom:263.752807px;}
.yc4{bottom:264.110241px;}
.y25d{bottom:264.170991px;}
.y187{bottom:264.220944px;}
.y1b1{bottom:264.336009px;}
.ya4{bottom:264.471009px;}
.y352{bottom:265.325531px;}
.y318{bottom:270.001200px;}
.y2de{bottom:270.883031px;}
.ye6{bottom:272.358281px;}
.y2f9{bottom:276.155531px;}
.y4e{bottom:278.083031px;}
.y351{bottom:279.197531px;}
.y106{bottom:280.507031px;}
.y289{bottom:280.527281px;}
.y7f{bottom:280.547531px;}
.y11e{bottom:281.009557px;}
.yc3{bottom:281.366991px;}
.y25c{bottom:281.427741px;}
.y186{bottom:281.477694px;}
.y1b0{bottom:281.592759px;}
.ya3{bottom:281.727759px;}
.y160{bottom:282.224991px;}
.y317{bottom:283.873200px;}
.y2dd{bottom:288.139781px;}
.ye5{bottom:289.615031px;}
.y350{bottom:293.069531px;}
.y2f8{bottom:293.412281px;}
.y4d{bottom:295.339781px;}
.y21{bottom:296.963694px;}
.y316{bottom:297.745200px;}
.y105{bottom:297.763781px;}
.y288{bottom:297.784031px;}
.y7e{bottom:297.804281px;}
.y11d{bottom:298.266307px;}
.yc2{bottom:298.623741px;}
.y25b{bottom:298.684491px;}
.y185{bottom:298.734444px;}
.y1af{bottom:298.849509px;}
.ya2{bottom:298.984509px;}
.y2dc{bottom:305.396531px;}
.ye4{bottom:306.871781px;}
.y34f{bottom:306.941531px;}
.y2f7{bottom:310.669031px;}
.y315{bottom:311.617200px;}
.y4c{bottom:312.596531px;}
.y20{bottom:314.220444px;}
.y104{bottom:315.020531px;}
.y287{bottom:315.040781px;}
.y7d{bottom:315.061031px;}
.y11c{bottom:315.523057px;}
.yc1{bottom:315.880491px;}
.y25a{bottom:315.941241px;}
.y184{bottom:315.991194px;}
.y1ae{bottom:316.106259px;}
.ya1{bottom:316.241259px;}
.y34e{bottom:320.813531px;}
.y2db{bottom:322.653281px;}
.ye3{bottom:324.128531px;}
.y314{bottom:325.489200px;}
.y2f6{bottom:327.925781px;}
.y4b{bottom:329.853281px;}
.y1f{bottom:331.477194px;}
.y103{bottom:332.277281px;}
.y286{bottom:332.297531px;}
.y7c{bottom:332.317781px;}
.y11b{bottom:332.779807px;}
.yc0{bottom:333.137241px;}
.y259{bottom:333.197991px;}
.y183{bottom:333.247944px;}
.y1ad{bottom:333.363009px;}
.ya0{bottom:333.498009px;}
.y34d{bottom:334.685531px;}
.y313{bottom:339.361200px;}
.y2da{bottom:339.910031px;}
.ye2{bottom:341.385281px;}
.y15f{bottom:341.545194px;}
.y233{bottom:344.931135px;}
.y249{bottom:344.943075px;}
.y22e{bottom:344.943094px;}
.y244{bottom:344.955063px;}
.y229{bottom:344.955082px;}
.y23c{bottom:344.979009px;}
.y221{bottom:344.979028px;}
.y2f5{bottom:345.182531px;}
.y4a{bottom:347.110031px;}
.y34c{bottom:348.557531px;}
.y1e{bottom:348.733944px;}
.y102{bottom:349.534031px;}
.y285{bottom:349.554281px;}
.y7b{bottom:349.574531px;}
.y2a3{bottom:349.838966px;}
.y11a{bottom:350.036557px;}
.ybf{bottom:350.393991px;}
.y258{bottom:350.454741px;}
.y182{bottom:350.504694px;}
.y1ac{bottom:350.619759px;}
.y9f{bottom:350.754759px;}
.y312{bottom:353.233200px;}
.y2d9{bottom:357.166781px;}
.ye1{bottom:358.642031px;}
.y15e{bottom:358.801944px;}
.y2b3{bottom:360.495031px;}
.y2c4{bottom:360.519127px;}
.y34b{bottom:362.429531px;}
.y2f4{bottom:362.439281px;}
.y49{bottom:364.366781px;}
.y1d{bottom:365.990694px;}
.y101{bottom:366.790781px;}
.y284{bottom:366.811031px;}
.y7a{bottom:366.831281px;}
.y119{bottom:367.293307px;}
.ybe{bottom:367.650741px;}
.y257{bottom:367.711491px;}
.y181{bottom:367.761444px;}
.y1ab{bottom:367.876509px;}
.y9e{bottom:368.011509px;}
.y2d8{bottom:374.423531px;}
.ye0{bottom:375.898781px;}
.y15d{bottom:376.058694px;}
.y34a{bottom:376.301531px;}
.y2f3{bottom:379.696031px;}
.y48{bottom:381.623531px;}
.y1c{bottom:383.247444px;}
.y100{bottom:384.047531px;}
.y283{bottom:384.067781px;}
.y79{bottom:384.088031px;}
.y118{bottom:384.550057px;}
.ybd{bottom:384.907491px;}
.y256{bottom:384.968241px;}
.y180{bottom:385.018194px;}
.y1aa{bottom:385.133259px;}
.y9d{bottom:385.268259px;}
.y311{bottom:385.408218px;}
.y349{bottom:390.173531px;}
.y2d7{bottom:391.680281px;}
.ydf{bottom:393.155531px;}
.y15c{bottom:393.315444px;}
.y2f2{bottom:396.952781px;}
.y47{bottom:398.880281px;}
.y1b{bottom:400.504194px;}
.yff{bottom:401.304281px;}
.y282{bottom:401.324531px;}
.y78{bottom:401.344781px;}
.y117{bottom:401.806807px;}
.ybc{bottom:402.164241px;}
.y255{bottom:402.224991px;}
.y17f{bottom:402.274944px;}
.y1a9{bottom:402.390009px;}
.y9c{bottom:402.525009px;}
.y348{bottom:404.045531px;}
.y2d6{bottom:408.937031px;}
.y1e6{bottom:409.370826px;}
.y1e1{bottom:409.375633px;}
.y1cc{bottom:409.382840px;}
.y1c1{bottom:409.382984px;}
.y1d7{bottom:409.394803px;}
.y1fa{bottom:409.394963px;}
.y201{bottom:409.406949px;}
.y208{bottom:409.418935px;}
.y20f{bottom:409.430922px;}
.yde{bottom:410.412281px;}
.y15b{bottom:410.572194px;}
.y2f1{bottom:414.209531px;}
.y46{bottom:416.137031px;}
.y1a{bottom:417.760944px;}
.y347{bottom:417.917531px;}
.y1e2{bottom:418.370532px;}
.y1c7{bottom:418.370819px;}
.y1e7{bottom:418.370826px;}
.y1cd{bottom:418.382840px;}
.y1f3{bottom:418.382977px;}
.y1c2{bottom:418.382984px;}
.y1d8{bottom:418.394803px;}
.y1fb{bottom:418.394963px;}
.y210{bottom:418.430922px;}
.yfe{bottom:418.561031px;}
.y281{bottom:418.581281px;}
.y77{bottom:418.601531px;}
.y116{bottom:419.063557px;}
.ybb{bottom:419.420991px;}
.y17e{bottom:419.531694px;}
.y1a8{bottom:419.646759px;}
.y2d5{bottom:426.193781px;}
.ydd{bottom:427.669031px;}
.y15a{bottom:427.828944px;}
.y2f0{bottom:431.466281px;}
.y346{bottom:431.789531px;}
.y45{bottom:433.393781px;}
.y19{bottom:435.017694px;}
.yfd{bottom:435.817781px;}
.y280{bottom:435.838031px;}
.y76{bottom:435.858281px;}
.y115{bottom:436.320307px;}
.yba{bottom:436.677741px;}
.y17d{bottom:436.788444px;}
.y1a7{bottom:436.903509px;}
.y254{bottom:437.474991px;}
.y9b{bottom:437.775009px;}
.y2d4{bottom:443.450531px;}
.y310{bottom:443.914218px;}
.ydc{bottom:444.925781px;}
.y159{bottom:445.085694px;}
.y345{bottom:445.661531px;}
.y2ef{bottom:448.723031px;}
.y44{bottom:450.650531px;}
.y18{bottom:452.274444px;}
.yfc{bottom:453.074531px;}
.y27f{bottom:453.094781px;}
.y75{bottom:453.115031px;}
.y114{bottom:453.577057px;}
.yb9{bottom:453.934491px;}
.y17c{bottom:454.045194px;}
.y1a6{bottom:454.160259px;}
.y253{bottom:455.474991px;}
.y30f{bottom:457.786218px;}
.y344{bottom:459.533531px;}
.y2d3{bottom:460.707281px;}
.ydb{bottom:462.182531px;}
.y158{bottom:462.342444px;}
.y2ee{bottom:465.979781px;}
.y43{bottom:467.907281px;}
.y17{bottom:469.531194px;}
.yfb{bottom:470.331281px;}
.y27e{bottom:470.351531px;}
.y74{bottom:470.371781px;}
.yb8{bottom:471.191241px;}
.y17b{bottom:471.301944px;}
.y1a5{bottom:471.417009px;}
.y30e{bottom:471.658218px;}
.y343{bottom:473.405531px;}
.y2d2{bottom:477.964031px;}
.yda{bottom:479.439281px;}
.y157{bottom:479.599194px;}
.y9a{bottom:481.103838px;}
.y2ed{bottom:483.236531px;}
.y42{bottom:485.164031px;}
.y30d{bottom:485.530218px;}
.y16{bottom:486.787944px;}
.y342{bottom:487.277531px;}
.yfa{bottom:487.588031px;}
.y27d{bottom:487.608281px;}
.y73{bottom:487.628531px;}
.yb7{bottom:488.447991px;}
.y17a{bottom:488.558694px;}
.y1a4{bottom:488.673759px;}
.y113{bottom:488.827057px;}
.y2d1{bottom:495.220781px;}
.yd9{bottom:496.696031px;}
.y156{bottom:496.855944px;}
.y99{bottom:498.360588px;}
.y2ad{bottom:499.226817px;}
.y2aa{bottom:499.238865px;}
.y2a7{bottom:499.250914px;}
.y2a4{bottom:499.262962px;}
.y29f{bottom:499.275006px;}
.y29c{bottom:499.287008px;}
.y299{bottom:499.287028px;}
.y296{bottom:499.287033px;}
.y2ec{bottom:500.493281px;}
.y341{bottom:501.149531px;}
.y41{bottom:502.420781px;}
.y15{bottom:504.044694px;}
.yf9{bottom:504.844781px;}
.y27c{bottom:504.865031px;}
.y72{bottom:504.885281px;}
.y252{bottom:504.952781px;}
.yb6{bottom:505.704741px;}
.y179{bottom:505.815444px;}
.y1a3{bottom:505.930509px;}
.y237{bottom:510.195145px;}
.y234{bottom:510.207133px;}
.y24a{bottom:510.219072px;}
.y22f{bottom:510.219091px;}
.y245{bottom:510.231060px;}
.y22a{bottom:510.231079px;}
.y240{bottom:510.243019px;}
.y225{bottom:510.243038px;}
.y23d{bottom:510.255006px;}
.y21d{bottom:510.255018px;}
.y222{bottom:510.255025px;}
.y21a{bottom:510.255035px;}
.y2d0{bottom:512.477531px;}
.yd8{bottom:513.952781px;}
.y155{bottom:514.112694px;}
.y340{bottom:515.021531px;}
.y98{bottom:515.617338px;}
.y30c{bottom:516.658218px;}
.y2eb{bottom:517.750031px;}
.y40{bottom:519.677531px;}
.y14{bottom:521.301444px;}
.yf8{bottom:522.101531px;}
.y27b{bottom:522.121781px;}
.y71{bottom:522.142031px;}
.y251{bottom:522.209531px;}
.yb5{bottom:522.961491px;}
.y178{bottom:523.072194px;}
.y1a2{bottom:523.187259px;}
.y33f{bottom:528.893531px;}
.y2cf{bottom:529.734281px;}
.yd7{bottom:531.209531px;}
.y154{bottom:531.369444px;}
.y97{bottom:532.874088px;}
.y2b4{bottom:533.679031px;}
.y2b7{bottom:533.679070px;}
.y2ba{bottom:533.679072px;}
.y2c8{bottom:533.691104px;}
.y2bd{bottom:533.691111px;}
.y2c0{bottom:533.691150px;}
.y2c5{bottom:533.703127px;}
.y3f{bottom:536.934281px;}
.y13{bottom:538.558194px;}
.yf7{bottom:539.358281px;}
.y27a{bottom:539.378531px;}
.y70{bottom:539.398781px;}
.y250{bottom:539.466281px;}
.yb4{bottom:540.218241px;}
.y177{bottom:540.328944px;}
.y1a1{bottom:540.444009px;}
.y33e{bottom:542.765531px;}
.y30b{bottom:547.783218px;}
.yd6{bottom:548.466281px;}
.y153{bottom:548.626194px;}
.y96{bottom:550.130838px;}
.y150{bottom:552.323265px;}
.y2ea{bottom:553.000031px;}
.y3e{bottom:554.191031px;}
.y12{bottom:555.814944px;}
.yf6{bottom:556.615031px;}
.y279{bottom:556.635281px;}
.y33d{bottom:556.637531px;}
.y6f{bottom:556.655531px;}
.y24f{bottom:556.723031px;}
.yb3{bottom:557.474991px;}
.y176{bottom:557.585694px;}
.y1a0{bottom:557.700759px;}
.yd5{bottom:565.723031px;}
.y2ce{bottom:565.729781px;}
.y152{bottom:565.882944px;}
.y14f{bottom:566.195265px;}
.y95{bottom:567.387588px;}
.y33c{bottom:570.509531px;}
.y3d{bottom:571.447781px;}
.y11{bottom:573.071694px;}
.yf5{bottom:573.871781px;}
.y278{bottom:573.892031px;}
.y6e{bottom:573.912281px;}
.y24e{bottom:573.979781px;}
.y175{bottom:574.842444px;}
.y19f{bottom:574.957509px;}
.y1d9{bottom:577.490383px;}
.y1e3{bottom:577.490532px;}
.y1c8{bottom:577.490819px;}
.y1e8{bottom:577.490826px;}
.y216{bottom:577.490963px;}
.y1f0{bottom:577.502813px;}
.y1ce{bottom:577.502840px;}
.y1f4{bottom:577.502977px;}
.y1c3{bottom:577.502984px;}
.y1fc{bottom:577.514963px;}
.y202{bottom:577.526949px;}
.y209{bottom:577.538935px;}
.y211{bottom:577.550922px;}
.y14e{bottom:580.067265px;}
.y30a{bottom:580.765032px;}
.yd4{bottom:582.979781px;}
.y2cd{bottom:582.986531px;}
.y151{bottom:583.139694px;}
.y33b{bottom:584.381531px;}
.y1db{bottom:586.483646px;}
.y1da{bottom:586.490383px;}
.y1c9{bottom:586.490819px;}
.y1e9{bottom:586.490826px;}
.y1f2{bottom:586.490963px;}
.y1f1{bottom:586.502813px;}
.y1cf{bottom:586.502840px;}
.y1f5{bottom:586.502977px;}
.y212{bottom:586.550922px;}
.y3c{bottom:588.704531px;}
.y10{bottom:590.328444px;}
.yf4{bottom:591.128531px;}
.y277{bottom:591.148781px;}
.y6d{bottom:591.169031px;}
.y24d{bottom:591.236531px;}
.y174{bottom:592.099194px;}
.y19e{bottom:592.214259px;}
.yb2{bottom:592.724991px;}
.y14a{bottom:593.927265px;}
.y14d{bottom:593.939265px;}
.y309{bottom:594.637032px;}
.y33a{bottom:598.253531px;}
.yd3{bottom:600.236531px;}
.y2cc{bottom:600.243281px;}
.y94{bottom:602.636088px;}
.y3b{bottom:605.961281px;}
.yf{bottom:607.585194px;}
.y149{bottom:607.799265px;}
.y14c{bottom:607.811265px;}
.yf3{bottom:608.385281px;}
.y276{bottom:608.405531px;}
.y6c{bottom:608.425781px;}
.y24c{bottom:608.493281px;}
.y173{bottom:609.355944px;}
.y19d{bottom:609.471009px;}
.y339{bottom:612.125531px;}
.yd2{bottom:617.493281px;}
.y2cb{bottom:617.500031px;}
.y93{bottom:620.637588px;}
.y148{bottom:621.671265px;}
.y14b{bottom:621.683265px;}
.y308{bottom:622.009031px;}
.y3a{bottom:623.218031px;}
.ye{bottom:624.841944px;}
.yf2{bottom:625.642031px;}
.y275{bottom:625.662281px;}
.y6b{bottom:625.682531px;}
.y338{bottom:625.997531px;}
.y172{bottom:626.612694px;}
.y19c{bottom:626.727759px;}
.yd1{bottom:634.750031px;}
.y307{bottom:635.881031px;}
.y141{bottom:639.323265px;}
.y147{bottom:639.335265px;}
.y337{bottom:639.869531px;}
.y39{bottom:640.474781px;}
.yd{bottom:642.098694px;}
.yb1{bottom:642.898781px;}
.y274{bottom:642.919031px;}
.y6a{bottom:642.939281px;}
.y171{bottom:643.869444px;}
.y19b{bottom:643.984509px;}
.y306{bottom:649.753031px;}
.y2ca{bottom:652.750031px;}
.y140{bottom:653.195265px;}
.y146{bottom:653.207265px;}
.y336{bottom:653.741531px;}
.y38{bottom:657.731531px;}
.yb0{bottom:660.155531px;}
.y273{bottom:660.175781px;}
.y69{bottom:660.196031px;}
.y170{bottom:661.126194px;}
.y19a{bottom:661.241259px;}
.y305{bottom:663.625031px;}
.y13f{bottom:667.067265px;}
.y145{bottom:667.079265px;}
.y335{bottom:667.613531px;}
.yd0{bottom:670.000031px;}
.y37{bottom:674.988281px;}
.y92{bottom:677.412281px;}
.y272{bottom:677.432531px;}
.y68{bottom:677.452781px;}
.y16f{bottom:678.382944px;}
.y199{bottom:678.498009px;}
.y13e{bottom:680.939265px;}
.y144{bottom:680.951265px;}
.y334{bottom:681.485531px;}
.yc{bottom:689.837702px;}
.y36{bottom:692.245031px;}
.y91{bottom:694.669031px;}
.y271{bottom:694.689281px;}
.y67{bottom:694.709531px;}
.y13d{bottom:694.811265px;}
.y143{bottom:694.823265px;}
.y333{bottom:695.357531px;}
.y16e{bottom:695.639694px;}
.y198{bottom:695.754759px;}
.yb{bottom:703.709702px;}
.y13c{bottom:708.683265px;}
.y142{bottom:708.695265px;}
.y332{bottom:709.229531px;}
.y35{bottom:709.501781px;}
.y90{bottom:711.925781px;}
.y270{bottom:711.946031px;}
.y66{bottom:711.966281px;}
.y197{bottom:713.011509px;}
.y238{bottom:716.151145px;}
.y235{bottom:716.163133px;}
.y24b{bottom:716.175072px;}
.y230{bottom:716.175091px;}
.y246{bottom:716.187060px;}
.y22b{bottom:716.187079px;}
.y241{bottom:716.199019px;}
.y226{bottom:716.199038px;}
.y21e{bottom:716.211018px;}
.y223{bottom:716.211025px;}
.y21b{bottom:716.211035px;}
.y2ae{bottom:716.966817px;}
.y2ab{bottom:716.978865px;}
.y2a8{bottom:716.990914px;}
.y2a5{bottom:717.002962px;}
.y2a0{bottom:717.015006px;}
.y29d{bottom:717.027008px;}
.y29a{bottom:717.027028px;}
.y297{bottom:717.027033px;}
.y331{bottom:723.101531px;}
.y34{bottom:726.758531px;}
.y13b{bottom:726.827265px;}
.y8f{bottom:729.182531px;}
.y26f{bottom:729.202781px;}
.y65{bottom:729.223031px;}
.y196{bottom:730.268259px;}
.y330{bottom:736.973531px;}
.y13a{bottom:740.699265px;}
.ya{bottom:741.474450px;}
.y33{bottom:744.015281px;}
.y1dd{bottom:745.423645px;}
.y1ea{bottom:745.430825px;}
.y1d0{bottom:745.442839px;}
.y1f6{bottom:745.442976px;}
.y203{bottom:745.466948px;}
.y20a{bottom:745.478934px;}
.y213{bottom:745.490920px;}
.y8e{bottom:746.439281px;}
.y26e{bottom:746.459531px;}
.y64{bottom:746.479781px;}
.y195{bottom:747.525009px;}
.y192{bottom:750.169052px;}
.y32f{bottom:750.845531px;}
.y1de{bottom:754.423645px;}
.y1e4{bottom:754.430531px;}
.y1eb{bottom:754.430825px;}
.y217{bottom:754.430962px;}
.y1d4{bottom:754.442816px;}
.y1d1{bottom:754.442839px;}
.y1f7{bottom:754.442976px;}
.y1c4{bottom:754.442983px;}
.y1fd{bottom:754.454962px;}
.y204{bottom:754.466948px;}
.y214{bottom:754.490920px;}
.y2af{bottom:754.490991px;}
.y2b5{bottom:754.503031px;}
.y2b8{bottom:754.503070px;}
.y2bb{bottom:754.503072px;}
.y2c9{bottom:754.515104px;}
.y2be{bottom:754.515111px;}
.y2c1{bottom:754.515150px;}
.y2c6{bottom:754.527127px;}
.y139{bottom:754.571265px;}
.y9{bottom:758.731200px;}
.y32{bottom:761.272031px;}
.y8d{bottom:763.696031px;}
.y26d{bottom:763.716281px;}
.y63{bottom:763.736531px;}
.y32e{bottom:764.717531px;}
.y138{bottom:768.443265px;}
.y31{bottom:778.528781px;}
.y32d{bottom:778.589531px;}
.y8c{bottom:780.952781px;}
.y26c{bottom:780.973031px;}
.y62{bottom:780.993281px;}
.y137{bottom:782.315265px;}
.y194{bottom:782.774963px;}
.y32c{bottom:792.461531px;}
.y30{bottom:795.785531px;}
.y131{bottom:796.175265px;}
.y136{bottom:796.187265px;}
.y8b{bottom:798.209531px;}
.y26b{bottom:798.229781px;}
.y61{bottom:798.250031px;}
.y8{bottom:801.160168px;}
.y32b{bottom:806.333531px;}
.y2b0{bottom:806.402991px;}
.y130{bottom:810.047265px;}
.y135{bottom:810.059265px;}
.y2f{bottom:813.042281px;}
.y60{bottom:815.466281px;}
.y26a{bottom:815.486531px;}
.y360{bottom:818.237531px;}
.y193{bottom:818.774963px;}
.y32a{bottom:820.205531px;}
.y7{bottom:823.663168px;}
.y12f{bottom:823.919265px;}
.y134{bottom:823.931265px;}
.y2e{bottom:830.299031px;}
.y35f{bottom:832.109531px;}
.y5f{bottom:832.723031px;}
.y269{bottom:832.743281px;}
.y329{bottom:834.077531px;}
.y12e{bottom:837.791265px;}
.y133{bottom:837.803265px;}
.y23e{bottom:838.251006px;}
.y6{bottom:846.166168px;}
.y2d{bottom:847.555781px;}
.y328{bottom:847.949531px;}
.y5e{bottom:849.979781px;}
.y12d{bottom:851.663265px;}
.y132{bottom:851.675265px;}
.y327{bottom:861.821531px;}
.y2c{bottom:864.812531px;}
.y5d{bottom:867.236531px;}
.y16d{bottom:875.693531px;}
.y12c{bottom:879.671265px;}
.y5c{bottom:884.493281px;}
.y16c{bottom:889.565531px;}
.y5{bottom:899.785217px;}
.y2b{bottom:900.062531px;}
.y5b{bottom:901.750031px;}
.y12b{bottom:903.437531px;}
.y3{bottom:926.117136px;}
.y29{bottom:939.109314px;}
.y2a{bottom:939.985314px;}
.y5a{bottom:939.989089px;}
.y2{bottom:939.989136px;}
.y59{bottom:940.241089px;}
.hd{height:23.721600px;}
.hc{height:33.888000px;}
.hb{height:34.687500px;}
.h9{height:40.242000px;}
.h15{height:40.323000px;}
.h14{height:40.674000px;}
.h2{height:42.048000px;}
.h13{height:46.224000px;}
.h4{height:46.656000px;}
.h16{height:49.104000px;}
.h17{height:50.640000px;}
.h10{height:51.104327px;}
.hf{height:52.050059px;}
.h3{height:54.862258px;}
.ha{height:54.891000px;}
.h8{height:56.373000px;}
.h12{height:58.311000px;}
.h11{height:58.800000px;}
.h6{height:61.582731px;}
.h7{height:61.609731px;}
.he{height:65.274000px;}
.h5{height:75.114000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:70.157553px;}
.x5{left:71.220450px;}
.x6{left:72.368402px;}
.x4{left:74.529448px;}
.x9{left:79.157544px;}
.x7{left:87.171903px;}
.x8d{left:94.154398px;}
.x6c{left:95.716198px;}
.xd{left:102.923847px;}
.x6d{left:119.482498px;}
.xe{left:130.175847px;}
.x7f{left:139.216198px;}
.x2c{left:143.454144px;}
.x4a{left:144.803847px;}
.xf{left:148.319847px;}
.x65{left:157.326144px;}
.x4b{left:158.675847px;}
.x2d{left:161.046144px;}
.x10{left:162.191847px;}
.x4c{left:172.547847px;}
.x48{left:174.990144px;}
.x11{left:176.063847px;}
.x2e{left:178.638144px;}
.xa{left:185.645539px;}
.x66{left:188.790144px;}
.x4d{left:190.691847px;}
.x2f{left:192.510144px;}
.x12{left:193.643847px;}
.x49{left:201.474144px;}
.x67{left:202.662144px;}
.x4e{left:204.563847px;}
.x30{left:206.382144px;}
.x13{left:211.262540px;}
.x4f{left:218.435847px;}
.x68{left:220.254144px;}
.x31{left:223.974144px;}
.x14{left:225.134540px;}
.x80{left:232.594498px;}
.x69{left:234.126144px;}
.x50{left:236.027847px;}
.x32{left:237.846144px;}
.x15{left:239.006540px;}
.x81{left:246.466498px;}
.x6a{left:247.998144px;}
.x51{left:249.899847px;}
.x33{left:251.718144px;}
.x16{left:256.598540px;}
.x6b{left:261.870144px;}
.x52{left:263.771847px;}
.x34{left:265.590144px;}
.x17{left:270.470540px;}
.x53{left:277.643847px;}
.x35{left:279.462144px;}
.x18{left:284.342540px;}
.x54{left:291.515847px;}
.x36{left:293.334144px;}
.x19{left:298.214540px;}
.x37{left:307.206144px;}
.x55{left:309.107847px;}
.x1a{left:315.806540px;}
.x64{left:319.918350px;}
.x38{left:321.078144px;}
.x56{left:322.979847px;}
.x6e{left:325.678501px;}
.x1b{left:333.398540px;}
.x39{left:334.950144px;}
.x57{left:336.851847px;}
.x6f{left:339.550501px;}
.x82{left:341.398498px;}
.x1c{left:347.270540px;}
.x3a{left:348.822144px;}
.x58{left:354.443847px;}
.x70{left:357.142501px;}
.x1d{left:361.142540px;}
.x3b{left:362.694144px;}
.x59{left:368.315847px;}
.x71{left:371.014501px;}
.x3c{left:376.566144px;}
.x1e{left:378.734540px;}
.x5a{left:382.187847px;}
.x72{left:384.886501px;}
.x83{left:386.734498px;}
.x3d{left:390.438144px;}
.x1f{left:392.606540px;}
.x5b{left:396.059847px;}
.x73{left:398.758501px;}
.x84{left:400.606498px;}
.x3e{left:404.310144px;}
.x20{left:406.478540px;}
.x5c{left:409.931847px;}
.xb{left:413.069535px;}
.x85{left:414.478498px;}
.x74{left:416.350501px;}
.x21{left:420.379071px;}
.xc{left:422.069535px;}
.x5d{left:427.523847px;}
.x75{left:430.222501px;}
.x86{left:432.070498px;}
.x22{left:434.251071px;}
.x3f{left:439.494139px;}
.x5e{left:441.395847px;}
.x76{left:444.094501px;}
.x87{left:445.942498px;}
.x23{left:451.843071px;}
.x40{left:453.366139px;}
.x5f{left:455.267847px;}
.x88{left:459.814498px;}
.x77{left:461.686501px;}
.x24{left:465.715071px;}
.x41{left:467.238139px;}
.x60{left:469.139847px;}
.x89{left:473.686498px;}
.x78{left:475.558501px;}
.x25{left:483.307071px;}
.x42{left:484.830139px;}
.x1{left:485.858414px;}
.x79{left:489.430501px;}
.x8a{left:491.350498px;}
.x26{left:497.179071px;}
.x43{left:498.702139px;}
.x61{left:500.603847px;}
.x7a{left:503.302501px;}
.x8b{left:505.222498px;}
.x44{left:512.574139px;}
.x27{left:514.787709px;}
.x7b{left:517.174501px;}
.x8c{left:519.094498px;}
.x3{left:528.009430px;}
.x45{left:530.154139px;}
.x7c{left:534.838501px;}
.x28{left:542.531709px;}
.x46{left:544.026139px;}
.x62{left:545.927847px;}
.x7d{left:548.710501px;}
.x47{left:557.898139px;}
.x29{left:560.111709px;}
.x7e{left:562.582501px;}
.x8{left:569.671967px;}
.x2a{left:573.983709px;}
.x63{left:587.543847px;}
.x2b{left:591.575709px;}
@media print{
.v2{vertical-align:-17.066650pt;}
.v6{vertical-align:-12.282667pt;}
.v5{vertical-align:-10.761574pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:0.960081pt;}
.v1{vertical-align:20.266606pt;}
.v3{vertical-align:21.227253pt;}
.ls3{letter-spacing:-2.736000pt;}
.ls16{letter-spacing:-2.432000pt;}
.ls4{letter-spacing:-1.570667pt;}
.ls8{letter-spacing:-1.365333pt;}
.lsa{letter-spacing:-0.853333pt;}
.ls9{letter-spacing:-0.426667pt;}
.ls7{letter-spacing:-0.341333pt;}
.ls19{letter-spacing:-0.202667pt;}
.ls20{letter-spacing:-0.152000pt;}
.ls17{letter-spacing:-0.101333pt;}
.ls18{letter-spacing:-0.050667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000016pt;}
.ls6{letter-spacing:0.000505pt;}
.ls1b{letter-spacing:0.050667pt;}
.ls1d{letter-spacing:0.101333pt;}
.ls14{letter-spacing:0.152000pt;}
.ls15{letter-spacing:0.202667pt;}
.ls12{letter-spacing:0.207715pt;}
.ls3c{letter-spacing:0.213333pt;}
.lse{letter-spacing:0.253333pt;}
.ls1e{letter-spacing:0.258400pt;}
.lsf{letter-spacing:0.304000pt;}
.ls21{letter-spacing:0.329333pt;}
.ls10{letter-spacing:0.354667pt;}
.ls13{letter-spacing:0.405333pt;}
.ls1a{letter-spacing:0.456000pt;}
.ls2f{letter-spacing:0.473572pt;}
.lsb{letter-spacing:0.496479pt;}
.ls23{letter-spacing:0.506667pt;}
.ls25{letter-spacing:0.512060pt;}
.ls1f{letter-spacing:0.532000pt;}
.ls11{letter-spacing:0.557333pt;}
.ls26{letter-spacing:0.597333pt;}
.ls30{letter-spacing:0.601600pt;}
.ls27{letter-spacing:0.605867pt;}
.ls2c{letter-spacing:0.610105pt;}
.lsc{letter-spacing:0.618109pt;}
.ls1c{letter-spacing:0.658667pt;}
.ls5{letter-spacing:0.709333pt;}
.lsd{letter-spacing:0.719460pt;}
.ls28{letter-spacing:0.729562pt;}
.ls22{letter-spacing:0.760000pt;}
.ls36{letter-spacing:0.900267pt;}
.ls39{letter-spacing:0.994133pt;}
.ls2e{letter-spacing:1.322667pt;}
.ls34{letter-spacing:2.261317pt;}
.ls33{letter-spacing:2.653867pt;}
.ls2b{letter-spacing:2.888533pt;}
.ls37{letter-spacing:2.901305pt;}
.ls0{letter-spacing:2.986667pt;}
.ls24{letter-spacing:3.712000pt;}
.ls31{letter-spacing:4.531180pt;}
.ls38{letter-spacing:4.629333pt;}
.ls2a{letter-spacing:4.992044pt;}
.ls2d{letter-spacing:8.652800pt;}
.ls35{letter-spacing:11.097600pt;}
.ls3a{letter-spacing:14.080000pt;}
.ls29{letter-spacing:15.641595pt;}
.ls3b{letter-spacing:17.796240pt;}
.ls3d{letter-spacing:20.138667pt;}
.ls32{letter-spacing:23.039991pt;}
.wsb6{word-spacing:-13.376000pt;}
.ws1{word-spacing:-13.312000pt;}
.wsf1{word-spacing:-12.920000pt;}
.ws41{word-spacing:-12.666667pt;}
.ws1c{word-spacing:-11.850667pt;}
.ws10c{word-spacing:-11.264000pt;}
.wsa6{word-spacing:-11.096000pt;}
.wsa7{word-spacing:-10.666667pt;}
.ws2{word-spacing:-10.488000pt;}
.wsc5{word-spacing:-10.325333pt;}
.ws4{word-spacing:-10.234667pt;}
.wscf{word-spacing:-10.080000pt;}
.wsa5{word-spacing:-9.930667pt;}
.ws5{word-spacing:-9.728000pt;}
.wsc6{word-spacing:-9.301333pt;}
.ws1d{word-spacing:-8.866667pt;}
.ws0{word-spacing:-8.362667pt;}
.wsf6{word-spacing:-8.192000pt;}
.ws6{word-spacing:-7.466667pt;}
.ws3{word-spacing:-7.341600pt;}
.wsc7{word-spacing:-5.333333pt;}
.ws8{word-spacing:-1.680000pt;}
.wsed{word-spacing:-1.266667pt;}
.wsef{word-spacing:-1.216000pt;}
.wsee{word-spacing:-1.165333pt;}
.wsb5{word-spacing:-1.064000pt;}
.wsb9{word-spacing:-0.962667pt;}
.ws3c{word-spacing:-0.861333pt;}
.ws137{word-spacing:-0.853333pt;}
.ws80{word-spacing:-0.810667pt;}
.wsd4{word-spacing:-0.760000pt;}
.ws36{word-spacing:-0.709333pt;}
.wsf0{word-spacing:-0.658667pt;}
.ws29{word-spacing:-0.608000pt;}
.ws111{word-spacing:-0.597333pt;}
.wsf8{word-spacing:-0.554667pt;}
.ws13e{word-spacing:-0.512000pt;}
.wsa9{word-spacing:-0.506667pt;}
.ws27{word-spacing:-0.456000pt;}
.ws9{word-spacing:-0.426667pt;}
.wsec{word-spacing:-0.405333pt;}
.wsfa{word-spacing:-0.384000pt;}
.wsd3{word-spacing:-0.354667pt;}
.wsd{word-spacing:-0.304000pt;}
.ws96{word-spacing:-0.253333pt;}
.ws32{word-spacing:-0.202667pt;}
.ws104{word-spacing:-0.170667pt;}
.ws6a{word-spacing:-0.152000pt;}
.ws14b{word-spacing:-0.128000pt;}
.ws7f{word-spacing:-0.101333pt;}
.ws126{word-spacing:-0.085333pt;}
.wsd7{word-spacing:-0.050667pt;}
.ws7{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.050667pt;}
.ws34{word-spacing:0.101333pt;}
.ws2e{word-spacing:0.152000pt;}
.wsce{word-spacing:0.170667pt;}
.ws7b{word-spacing:0.202667pt;}
.ws10f{word-spacing:0.213333pt;}
.ws68{word-spacing:0.253333pt;}
.wsab{word-spacing:0.304000pt;}
.ws10e{word-spacing:0.341333pt;}
.ws24{word-spacing:0.354667pt;}
.ws2b{word-spacing:0.405333pt;}
.ws8a{word-spacing:0.456000pt;}
.ws21{word-spacing:0.506667pt;}
.ws148{word-spacing:0.512000pt;}
.wsf{word-spacing:0.557333pt;}
.ws97{word-spacing:0.608000pt;}
.ws81{word-spacing:0.658667pt;}
.ws69{word-spacing:0.709333pt;}
.wsfb{word-spacing:0.725333pt;}
.ws5c{word-spacing:0.760000pt;}
.ws2c{word-spacing:0.810667pt;}
.wscc{word-spacing:0.853333pt;}
.ws70{word-spacing:0.861333pt;}
.ws43{word-spacing:0.912000pt;}
.wsfc{word-spacing:0.938667pt;}
.ws13a{word-spacing:0.981333pt;}
.ws11{word-spacing:1.013333pt;}
.wsda{word-spacing:1.064000pt;}
.ws12b{word-spacing:1.109333pt;}
.wsb8{word-spacing:1.114667pt;}
.ws121{word-spacing:1.152000pt;}
.ws50{word-spacing:1.165333pt;}
.ws101{word-spacing:1.194667pt;}
.ws74{word-spacing:1.216000pt;}
.ws12a{word-spacing:1.237333pt;}
.wsae{word-spacing:1.266667pt;}
.ws23{word-spacing:1.317333pt;}
.ws28{word-spacing:1.368000pt;}
.wsba{word-spacing:1.418667pt;}
.ws106{word-spacing:1.450667pt;}
.wsb3{word-spacing:1.469333pt;}
.ws146{word-spacing:1.493333pt;}
.wsd6{word-spacing:1.520000pt;}
.wsf9{word-spacing:1.536000pt;}
.ws99{word-spacing:1.570667pt;}
.ws10a{word-spacing:1.578667pt;}
.ws5e{word-spacing:1.621333pt;}
.ws3f{word-spacing:1.664000pt;}
.ws14{word-spacing:1.672000pt;}
.ws147{word-spacing:1.706667pt;}
.ws65{word-spacing:1.722667pt;}
.ws134{word-spacing:1.749333pt;}
.ws9b{word-spacing:1.773333pt;}
.wsc{word-spacing:1.824000pt;}
.ws95{word-spacing:1.874667pt;}
.ws129{word-spacing:1.877333pt;}
.ws82{word-spacing:1.976000pt;}
.wsf2{word-spacing:2.026667pt;}
.ws2d{word-spacing:2.077333pt;}
.ws130{word-spacing:2.090667pt;}
.ws2a{word-spacing:2.128000pt;}
.ws7c{word-spacing:2.178667pt;}
.ws107{word-spacing:2.218667pt;}
.ws39{word-spacing:2.229333pt;}
.ws120{word-spacing:2.261333pt;}
.wsf7{word-spacing:2.280000pt;}
.ws11a{word-spacing:2.304000pt;}
.ws64{word-spacing:2.330667pt;}
.ws6c{word-spacing:2.381333pt;}
.ws117{word-spacing:2.389333pt;}
.wsfd{word-spacing:2.517333pt;}
.wsb{word-spacing:2.533333pt;}
.ws84{word-spacing:2.584000pt;}
.ws26{word-spacing:2.634667pt;}
.ws133{word-spacing:2.645333pt;}
.ws2f{word-spacing:2.685333pt;}
.ws136{word-spacing:2.688000pt;}
.ws125{word-spacing:2.730667pt;}
.ws59{word-spacing:2.736000pt;}
.ws1a{word-spacing:2.786667pt;}
.ws142{word-spacing:2.816000pt;}
.ws79{word-spacing:2.837333pt;}
.ws4d{word-spacing:2.888000pt;}
.ws49{word-spacing:2.938667pt;}
.ws139{word-spacing:2.944000pt;}
.ws128{word-spacing:2.986667pt;}
.wsa1{word-spacing:2.989333pt;}
.ws103{word-spacing:3.029333pt;}
.ws33{word-spacing:3.040000pt;}
.ws22{word-spacing:3.090667pt;}
.ws12{word-spacing:3.192000pt;}
.ws14a{word-spacing:3.200000pt;}
.ws15{word-spacing:3.242667pt;}
.wsfe{word-spacing:3.285333pt;}
.ws6f{word-spacing:3.293333pt;}
.ws5b{word-spacing:3.344000pt;}
.ws73{word-spacing:3.394667pt;}
.ws108{word-spacing:3.413333pt;}
.ws3b{word-spacing:3.445333pt;}
.ws37{word-spacing:3.496000pt;}
.wse{word-spacing:3.546667pt;}
.ws30{word-spacing:3.597333pt;}
.ws4a{word-spacing:3.648000pt;}
.ws35{word-spacing:3.698667pt;}
.ws127{word-spacing:3.712000pt;}
.wsf5{word-spacing:3.749333pt;}
.ws105{word-spacing:3.754667pt;}
.ws131{word-spacing:3.797333pt;}
.ws93{word-spacing:3.800000pt;}
.ws7d{word-spacing:3.850667pt;}
.ws109{word-spacing:3.882667pt;}
.ws9e{word-spacing:3.901333pt;}
.ws10d{word-spacing:3.925333pt;}
.ws47{word-spacing:3.952000pt;}
.ws12c{word-spacing:3.968000pt;}
.ws86{word-spacing:4.002667pt;}
.ws17{word-spacing:4.053333pt;}
.ws67{word-spacing:4.104000pt;}
.ws115{word-spacing:4.138667pt;}
.ws16{word-spacing:4.154667pt;}
.ws40{word-spacing:4.181333pt;}
.ws7a{word-spacing:4.205333pt;}
.ws140{word-spacing:4.224000pt;}
.ws83{word-spacing:4.256000pt;}
.wsbc{word-spacing:4.306667pt;}
.ws5a{word-spacing:4.352000pt;}
.ws118{word-spacing:4.394667pt;}
.ws6d{word-spacing:4.408000pt;}
.ws12d{word-spacing:4.437333pt;}
.ws5d{word-spacing:4.458667pt;}
.wsb2{word-spacing:4.509333pt;}
.ws13f{word-spacing:4.522667pt;}
.ws144{word-spacing:4.565333pt;}
.ws4c{word-spacing:4.610667pt;}
.ws19{word-spacing:4.661333pt;}
.ws61{word-spacing:4.712000pt;}
.ws44{word-spacing:4.762667pt;}
.ws4e{word-spacing:4.813333pt;}
.ws6b{word-spacing:4.864000pt;}
.ws138{word-spacing:4.906667pt;}
.ws13{word-spacing:4.965333pt;}
.ws20{word-spacing:5.016000pt;}
.ws98{word-spacing:5.066667pt;}
.ws123{word-spacing:5.077333pt;}
.wsc4{word-spacing:5.117333pt;}
.ws132{word-spacing:5.162667pt;}
.ws8e{word-spacing:5.168000pt;}
.ws122{word-spacing:5.205333pt;}
.ws56{word-spacing:5.218667pt;}
.ws8d{word-spacing:5.269333pt;}
.ws38{word-spacing:5.370667pt;}
.ws31{word-spacing:5.421333pt;}
.wsa{word-spacing:5.472000pt;}
.ws13d{word-spacing:5.504000pt;}
.ws8b{word-spacing:5.522667pt;}
.wsb4{word-spacing:5.573333pt;}
.wsc3{word-spacing:5.624000pt;}
.wseb{word-spacing:5.674667pt;}
.ws11b{word-spacing:5.717333pt;}
.wsbd{word-spacing:5.725333pt;}
.ws52{word-spacing:5.776000pt;}
.wsa4{word-spacing:5.826667pt;}
.ws112{word-spacing:5.845333pt;}
.ws51{word-spacing:5.877333pt;}
.ws54{word-spacing:5.928000pt;}
.ws110{word-spacing:5.930667pt;}
.ws42{word-spacing:5.978667pt;}
.ws55{word-spacing:6.029333pt;}
.ws57{word-spacing:6.080000pt;}
.ws9c{word-spacing:6.130667pt;}
.ws78{word-spacing:6.181333pt;}
.wsbe{word-spacing:6.282667pt;}
.ws10{word-spacing:6.333333pt;}
.ws100{word-spacing:6.357333pt;}
.wsff{word-spacing:6.400000pt;}
.wsd0{word-spacing:6.485333pt;}
.ws135{word-spacing:6.528000pt;}
.ws3a{word-spacing:6.536000pt;}
.ws114{word-spacing:6.570667pt;}
.ws8f{word-spacing:6.586667pt;}
.ws18{word-spacing:6.637333pt;}
.ws124{word-spacing:6.656000pt;}
.ws72{word-spacing:6.688000pt;}
.ws58{word-spacing:6.738667pt;}
.ws66{word-spacing:6.789333pt;}
.ws113{word-spacing:6.826667pt;}
.ws3d{word-spacing:6.890667pt;}
.ws9a{word-spacing:6.941333pt;}
.ws119{word-spacing:6.954667pt;}
.wsd1{word-spacing:6.992000pt;}
.ws3e{word-spacing:7.093333pt;}
.wsbb{word-spacing:7.144000pt;}
.ws4f{word-spacing:7.194667pt;}
.ws25{word-spacing:7.245333pt;}
.wsa3{word-spacing:7.296000pt;}
.ws4b{word-spacing:7.346667pt;}
.wsb1{word-spacing:7.397333pt;}
.ws75{word-spacing:7.448000pt;}
.ws63{word-spacing:7.549333pt;}
.ws7e{word-spacing:7.600000pt;}
.wsac{word-spacing:7.650667pt;}
.wsc1{word-spacing:7.701333pt;}
.wsa2{word-spacing:7.752000pt;}
.wsd5{word-spacing:7.853333pt;}
.ws48{word-spacing:8.005333pt;}
.ws11f{word-spacing:8.064000pt;}
.wsea{word-spacing:8.106667pt;}
.ws11c{word-spacing:8.149333pt;}
.ws1f{word-spacing:8.157333pt;}
.ws85{word-spacing:8.258667pt;}
.ws71{word-spacing:8.309333pt;}
.ws53{word-spacing:8.360000pt;}
.ws12e{word-spacing:8.362667pt;}
.ws1e{word-spacing:8.410667pt;}
.ws92{word-spacing:8.461333pt;}
.wsd9{word-spacing:8.562667pt;}
.ws10b{word-spacing:8.576000pt;}
.wsa0{word-spacing:8.613333pt;}
.ws87{word-spacing:8.765333pt;}
.wsb0{word-spacing:8.816000pt;}
.wsbf{word-spacing:8.866667pt;}
.ws6e{word-spacing:8.917333pt;}
.wsf3{word-spacing:8.968000pt;}
.ws46{word-spacing:9.018667pt;}
.wsc2{word-spacing:9.120000pt;}
.ws11e{word-spacing:9.173333pt;}
.ws89{word-spacing:9.221333pt;}
.ws94{word-spacing:9.322667pt;}
.ws13b{word-spacing:9.429333pt;}
.ws90{word-spacing:9.474667pt;}
.ws45{word-spacing:9.525333pt;}
.wsaf{word-spacing:9.677333pt;}
.ws91{word-spacing:9.778667pt;}
.wsaa{word-spacing:9.829333pt;}
.ws62{word-spacing:10.032000pt;}
.ws60{word-spacing:10.234667pt;}
.ws77{word-spacing:10.336000pt;}
.wsd2{word-spacing:10.488000pt;}
.wsc0{word-spacing:10.640000pt;}
.ws9f{word-spacing:10.690667pt;}
.ws88{word-spacing:10.994667pt;}
.ws13c{word-spacing:11.008000pt;}
.wsf4{word-spacing:11.248000pt;}
.ws102{word-spacing:11.776000pt;}
.wsd8{word-spacing:12.109333pt;}
.wsad{word-spacing:12.210667pt;}
.ws8c{word-spacing:12.261333pt;}
.ws76{word-spacing:12.818667pt;}
.ws9d{word-spacing:13.578667pt;}
.ws141{word-spacing:13.952000pt;}
.ws11d{word-spacing:14.506667pt;}
.ws145{word-spacing:14.890667pt;}
.ws116{word-spacing:15.061333pt;}
.wsb7{word-spacing:17.226667pt;}
.ws143{word-spacing:17.749333pt;}
.ws149{word-spacing:20.138667pt;}
.ws12f{word-spacing:23.082667pt;}
.wsdb{word-spacing:26.794667pt;}
.wse4{word-spacing:27.136000pt;}
.wsc8{word-spacing:27.520000pt;}
.wse2{word-spacing:37.376000pt;}
.wscd{word-spacing:38.101333pt;}
.wse3{word-spacing:41.856000pt;}
.ws1b{word-spacing:64.938667pt;}
.wse1{word-spacing:65.792000pt;}
.wse7{word-spacing:66.133333pt;}
.wsca{word-spacing:66.517333pt;}
.wse8{word-spacing:82.133333pt;}
.wsde{word-spacing:135.168000pt;}
.wse5{word-spacing:144.682667pt;}
.wse6{word-spacing:152.576000pt;}
.wse0{word-spacing:163.584000pt;}
.wscb{word-spacing:165.034667pt;}
.wse9{word-spacing:180.224000pt;}
.wsa8{word-spacing:214.186649pt;}
.wsdc{word-spacing:265.557327pt;}
.wsc9{word-spacing:266.282667pt;}
.wsdd{word-spacing:302.677327pt;}
.wsdf{word-spacing:558.933333pt;}
._4a{margin-left:-19.064007pt;}
._4{margin-left:-13.866667pt;}
._22{margin-left:-10.837333pt;}
._45{margin-left:-5.674667pt;}
._6b{margin-left:-4.676267pt;}
._3{margin-left:-3.571200pt;}
._2{margin-left:-2.431467pt;}
._0{margin-left:-1.450667pt;}
._1{width:1.152000pt;}
._8{width:2.084267pt;}
._c{width:3.014667pt;}
._e{width:3.945067pt;}
._d{width:5.065867pt;}
._a{width:6.322400pt;}
._b{width:7.581333pt;}
._9{width:9.002667pt;}
._13{width:10.150133pt;}
._f{width:13.051200pt;}
._27{width:15.914133pt;}
._5{width:19.840000pt;}
._53{width:31.744000pt;}
._54{width:33.450652pt;}
._33{width:34.389333pt;}
._4f{width:35.455994pt;}
._34{width:36.906667pt;}
._69{width:38.229867pt;}
._4b{width:43.818667pt;}
._41{width:48.768000pt;}
._6{width:50.005329pt;}
._55{width:52.352000pt;}
._50{width:53.333333pt;}
._43{width:58.282662pt;}
._35{width:60.586667pt;}
._62{width:64.298111pt;}
._18{width:67.456000pt;}
._1e{width:72.064000pt;}
._36{width:77.269328pt;}
._3d{width:78.677333pt;}
._2c{width:80.426667pt;}
._5b{width:92.458667pt;}
._19{width:93.695995pt;}
._2f{width:106.751995pt;}
._1a{width:107.648000pt;}
._5d{width:109.695986pt;}
._44{width:121.642667pt;}
._65{width:126.122667pt;}
._63{width:144.298667pt;}
._4d{width:163.071452pt;}
._2b{width:164.607995pt;}
._56{width:170.836800pt;}
._5e{width:173.525327pt;}
._3c{width:175.701333pt;}
._51{width:179.114667pt;}
._26{width:182.570667pt;}
._59{width:187.349333pt;}
._3f{width:189.866123pt;}
._64{width:191.999978pt;}
._37{width:193.280000pt;}
._2d{width:196.053333pt;}
._24{width:202.453333pt;}
._12{width:204.373316pt;}
._52{width:210.389319pt;}
._31{width:219.434123pt;}
._1b{width:221.298517pt;}
._1c{width:223.038668pt;}
._32{width:227.796800pt;}
._57{width:231.496519pt;}
._5c{width:239.189333pt;}
._21{width:242.730667pt;}
._48{width:247.722667pt;}
._46{width:250.197333pt;}
._66{width:253.141316pt;}
._25{width:257.279995pt;}
._4e{width:269.695467pt;}
._6a{width:277.333333pt;}
._38{width:278.698657pt;}
._60{width:280.489600pt;}
._61{width:289.024000pt;}
._14{width:296.874667pt;}
._3b{width:306.176000pt;}
._40{width:314.069333pt;}
._39{width:316.800000pt;}
._11{width:319.231452pt;}
._10{width:325.375449pt;}
._15{width:336.682667pt;}
._5a{width:344.789320pt;}
._49{width:346.240000pt;}
._17{width:361.898662pt;}
._2a{width:371.968000pt;}
._47{width:375.466667pt;}
._68{width:382.293333pt;}
._67{width:383.317326pt;}
._16{width:390.357333pt;}
._3e{width:404.693333pt;}
._58{width:411.135986pt;}
._42{width:412.586667pt;}
._3a{width:444.799980pt;}
._30{width:634.397862pt;}
._20{width:636.031988pt;}
._4c{width:675.711467pt;}
._5f{width:689.791444pt;}
._1f{width:727.978642pt;}
._1d{width:768.938642pt;}
._29{width:892.287975pt;}
._7{width:1278.079960pt;}
._23{width:1282.773400pt;}
._28{width:1301.674060pt;}
._2e{width:1304.149260pt;}
.fs5{font-size:29.866667pt;}
.fs4{font-size:35.466667pt;}
.fs0{font-size:42.666667pt;}
.fs3{font-size:50.666667pt;}
.fs7{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:29.055333pt;}
.y8a{bottom:30.208800pt;}
.y4{bottom:30.208933pt;}
.y231{bottom:65.080122pt;}
.y242{bottom:65.101390pt;}
.y227{bottom:65.101407pt;}
.y29b{bottom:65.122678pt;}
.y239{bottom:65.122682pt;}
.y295{bottom:65.122700pt;}
.y219{bottom:65.122701pt;}
.y1bd{bottom:65.133331pt;}
.y89{bottom:65.135998pt;}
.y58{bottom:65.138665pt;}
.y218{bottom:65.143955pt;}
.y1be{bottom:65.143986pt;}
.y2b1{bottom:65.144033pt;}
.y2b6{bottom:65.144068pt;}
.y1d2{bottom:65.154512pt;}
.y2bc{bottom:65.154771pt;}
.y2bf{bottom:65.154806pt;}
.y1fe{bottom:65.165288pt;}
.y112{bottom:65.267583pt;}
.y12a{bottom:65.714273pt;}
.ycf{bottom:66.031992pt;}
.y268{bottom:66.085992pt;}
.y16b{bottom:66.139992pt;}
.y1bc{bottom:66.232675pt;}
.yaf{bottom:66.352675pt;}
.y326{bottom:67.371733pt;}
.y1dc{bottom:69.126780pt;}
.y1c6{bottom:69.133179pt;}
.y1df{bottom:69.137451pt;}
.y1ec{bottom:69.143833pt;}
.y1ca{bottom:69.143858pt;}
.y1bf{bottom:69.143986pt;}
.y1d5{bottom:69.154492pt;}
.y1d3{bottom:69.154512pt;}
.y1f8{bottom:69.154634pt;}
.y1c5{bottom:69.154640pt;}
.y1ff{bottom:69.165288pt;}
.y205{bottom:69.175943pt;}
.y20b{bottom:69.186597pt;}
.y28{bottom:69.399999pt;}
.y2e9{bottom:72.052249pt;}
.yf1{bottom:73.363583pt;}
.y304{bottom:76.738916pt;}
.y57{bottom:77.469331pt;}
.y325{bottom:79.702400pt;}
.y1ed{bottom:79.810500pt;}
.y215{bottom:79.810652pt;}
.y206{bottom:79.842609pt;}
.y20c{bottom:79.853264pt;}
.y111{bottom:80.606916pt;}
.y294{bottom:80.624916pt;}
.y129{bottom:81.053606pt;}
.yce{bottom:81.371325pt;}
.y267{bottom:81.425325pt;}
.y191{bottom:81.469728pt;}
.y16a{bottom:81.479325pt;}
.y1bb{bottom:81.572008pt;}
.yae{bottom:81.692008pt;}
.y88{bottom:81.733332pt;}
.y2e8{bottom:87.391583pt;}
.y35e{bottom:87.876916pt;}
.y27{bottom:88.441996pt;}
.yf0{bottom:88.702916pt;}
.y324{bottom:92.033067pt;}
.y303{bottom:92.078249pt;}
.y56{bottom:94.066671pt;}
.y110{bottom:95.946249pt;}
.y293{bottom:95.964249pt;}
.y128{bottom:96.392939pt;}
.ycd{bottom:96.710659pt;}
.y266{bottom:96.764659pt;}
.y190{bottom:96.809062pt;}
.y169{bottom:96.818659pt;}
.y1ba{bottom:96.911341pt;}
.yad{bottom:97.031341pt;}
.y35d{bottom:100.207583pt;}
.y2e7{bottom:102.730916pt;}
.yef{bottom:104.042249pt;}
.y323{bottom:104.363733pt;}
.y302{bottom:107.417583pt;}
.y26{bottom:107.483999pt;}
.y2ac{bottom:109.207841pt;}
.y2a9{bottom:109.218551pt;}
.y2a6{bottom:109.229260pt;}
.y2a1{bottom:109.239970pt;}
.y29e{bottom:109.250676pt;}
.y298{bottom:109.261362pt;}
.y10f{bottom:111.285583pt;}
.y292{bottom:111.303583pt;}
.y127{bottom:111.732273pt;}
.ycc{bottom:112.049992pt;}
.y265{bottom:112.103992pt;}
.y18f{bottom:112.148395pt;}
.y168{bottom:112.157992pt;}
.y1b9{bottom:112.250675pt;}
.yac{bottom:112.370675pt;}
.y35c{bottom:112.538249pt;}
.y2b9{bottom:115.170736pt;}
.y2c7{bottom:115.181431pt;}
.y2c2{bottom:115.192118pt;}
.y236{bottom:115.192132pt;}
.y247{bottom:115.213400pt;}
.y22c{bottom:115.213417pt;}
.y23f{bottom:115.234686pt;}
.y224{bottom:115.234703pt;}
.y23a{bottom:115.245341pt;}
.y21c{bottom:115.245352pt;}
.y21f{bottom:115.245358pt;}
.y322{bottom:116.694400pt;}
.y2a2{bottom:117.239970pt;}
.y2e6{bottom:118.070249pt;}
.yee{bottom:119.381583pt;}
.y301{bottom:122.756916pt;}
.y2b2{bottom:123.170699pt;}
.y2c3{bottom:123.192118pt;}
.y232{bottom:123.202787pt;}
.y248{bottom:123.213400pt;}
.y22d{bottom:123.213417pt;}
.y243{bottom:123.224056pt;}
.y228{bottom:123.224073pt;}
.y23b{bottom:123.245341pt;}
.y220{bottom:123.245358pt;}
.y35b{bottom:124.868916pt;}
.y10e{bottom:126.624916pt;}
.y291{bottom:126.642916pt;}
.y87{bottom:126.660916pt;}
.y126{bottom:127.071606pt;}
.ycb{bottom:127.389325pt;}
.y264{bottom:127.443325pt;}
.y18e{bottom:127.487728pt;}
.y167{bottom:127.497325pt;}
.y1b8{bottom:127.590008pt;}
.yab{bottom:127.710008pt;}
.y25{bottom:128.353333pt;}
.y321{bottom:129.025067pt;}
.y2e5{bottom:133.409583pt;}
.yed{bottom:134.720916pt;}
.y35a{bottom:137.199583pt;}
.y300{bottom:138.096249pt;}
.y55{bottom:140.049603pt;}
.y24{bottom:140.684000pt;}
.y320{bottom:141.355733pt;}
.y10d{bottom:141.964249pt;}
.y290{bottom:141.982249pt;}
.y86{bottom:142.000249pt;}
.y125{bottom:142.410939pt;}
.yca{bottom:142.728659pt;}
.y263{bottom:142.782659pt;}
.y18d{bottom:142.827062pt;}
.y166{bottom:142.836659pt;}
.y1b7{bottom:142.929341pt;}
.yaa{bottom:143.049341pt;}
.y2e4{bottom:148.748916pt;}
.y359{bottom:149.530249pt;}
.yec{bottom:150.060249pt;}
.y2ff{bottom:153.435583pt;}
.y31f{bottom:153.686400pt;}
.y54{bottom:155.148916pt;}
.y10c{bottom:157.303583pt;}
.y28f{bottom:157.321583pt;}
.y85{bottom:157.339583pt;}
.y124{bottom:157.750273pt;}
.yc9{bottom:158.067992pt;}
.y262{bottom:158.121992pt;}
.y18c{bottom:158.166395pt;}
.y165{bottom:158.175992pt;}
.y1b6{bottom:158.268675pt;}
.ya9{bottom:158.388675pt;}
.y358{bottom:161.860916pt;}
.y2e3{bottom:164.088249pt;}
.yeb{bottom:165.399583pt;}
.y31e{bottom:166.017067pt;}
.y2fe{bottom:168.774916pt;}
.y53{bottom:170.488249pt;}
.y10b{bottom:172.642916pt;}
.y28e{bottom:172.660916pt;}
.y84{bottom:172.678916pt;}
.y123{bottom:173.089606pt;}
.yc8{bottom:173.407325pt;}
.y261{bottom:173.461325pt;}
.y18b{bottom:173.505728pt;}
.y164{bottom:173.515325pt;}
.y1b5{bottom:173.608008pt;}
.ya8{bottom:173.728008pt;}
.y357{bottom:174.191583pt;}
.y31d{bottom:178.347733pt;}
.y2e2{bottom:179.427583pt;}
.yea{bottom:180.738916pt;}
.y2fd{bottom:184.114249pt;}
.y52{bottom:185.827583pt;}
.y356{bottom:186.522249pt;}
.y10a{bottom:187.982249pt;}
.y28d{bottom:188.000249pt;}
.y83{bottom:188.018249pt;}
.y122{bottom:188.428939pt;}
.yc7{bottom:188.746659pt;}
.y260{bottom:188.800659pt;}
.y18a{bottom:188.845062pt;}
.y163{bottom:188.854659pt;}
.y1b4{bottom:188.947341pt;}
.ya7{bottom:189.067341pt;}
.y31c{bottom:190.678400pt;}
.y2e1{bottom:194.766916pt;}
.ye9{bottom:196.078249pt;}
.y355{bottom:198.852916pt;}
.y2fc{bottom:199.453583pt;}
.y51{bottom:201.166916pt;}
.y31b{bottom:203.009067pt;}
.y109{bottom:203.321583pt;}
.y28c{bottom:203.339583pt;}
.y82{bottom:203.357583pt;}
.y121{bottom:203.768273pt;}
.yc6{bottom:204.085992pt;}
.y25f{bottom:204.139992pt;}
.y189{bottom:204.184395pt;}
.y162{bottom:204.193992pt;}
.y1b3{bottom:204.286675pt;}
.ya6{bottom:204.406675pt;}
.y2e0{bottom:210.106249pt;}
.y354{bottom:211.183583pt;}
.ye8{bottom:211.417583pt;}
.y2fb{bottom:214.792916pt;}
.y1ee{bottom:214.861167pt;}
.y200{bottom:214.882622pt;}
.y207{bottom:214.893276pt;}
.y20d{bottom:214.903930pt;}
.y31a{bottom:215.339733pt;}
.y50{bottom:216.506249pt;}
.y23{bottom:217.962395pt;}
.y108{bottom:218.660916pt;}
.y28b{bottom:218.678916pt;}
.y81{bottom:218.696916pt;}
.y120{bottom:219.107606pt;}
.yc5{bottom:219.425325pt;}
.y25e{bottom:219.479325pt;}
.y188{bottom:219.523728pt;}
.y161{bottom:219.533325pt;}
.y1b2{bottom:219.626008pt;}
.ya5{bottom:219.746008pt;}
.y1e5{bottom:222.850512pt;}
.y1e0{bottom:222.854785pt;}
.y1ef{bottom:222.861167pt;}
.y1cb{bottom:222.861191pt;}
.y1c0{bottom:222.861319pt;}
.y1d6{bottom:222.871825pt;}
.y1f9{bottom:222.871967pt;}
.y20e{bottom:222.903930pt;}
.y353{bottom:223.514249pt;}
.y2df{bottom:225.445583pt;}
.ye7{bottom:226.756916pt;}
.y319{bottom:227.670400pt;}
.y2fa{bottom:230.132249pt;}
.y4f{bottom:231.845583pt;}
.y22{bottom:233.301728pt;}
.y107{bottom:234.000249pt;}
.y28a{bottom:234.018249pt;}
.y80{bottom:234.036249pt;}
.y11f{bottom:234.446939pt;}
.yc4{bottom:234.764659pt;}
.y25d{bottom:234.818659pt;}
.y187{bottom:234.863062pt;}
.y1b1{bottom:234.965341pt;}
.ya4{bottom:235.085341pt;}
.y352{bottom:235.844916pt;}
.y318{bottom:240.001067pt;}
.y2de{bottom:240.784916pt;}
.ye6{bottom:242.096249pt;}
.y2f9{bottom:245.471583pt;}
.y4e{bottom:247.184916pt;}
.y351{bottom:248.175583pt;}
.y106{bottom:249.339583pt;}
.y289{bottom:249.357583pt;}
.y7f{bottom:249.375583pt;}
.y11e{bottom:249.786273pt;}
.yc3{bottom:250.103992pt;}
.y25c{bottom:250.157992pt;}
.y186{bottom:250.202395pt;}
.y1b0{bottom:250.304675pt;}
.ya3{bottom:250.424675pt;}
.y160{bottom:250.866659pt;}
.y317{bottom:252.331733pt;}
.y2dd{bottom:256.124249pt;}
.ye5{bottom:257.435583pt;}
.y350{bottom:260.506249pt;}
.y2f8{bottom:260.810916pt;}
.y4d{bottom:262.524249pt;}
.y21{bottom:263.967728pt;}
.y316{bottom:264.662400pt;}
.y105{bottom:264.678916pt;}
.y288{bottom:264.696916pt;}
.y7e{bottom:264.714916pt;}
.y11d{bottom:265.125606pt;}
.yc2{bottom:265.443325pt;}
.y25b{bottom:265.497325pt;}
.y185{bottom:265.541728pt;}
.y1af{bottom:265.644008pt;}
.ya2{bottom:265.764008pt;}
.y2dc{bottom:271.463583pt;}
.ye4{bottom:272.774916pt;}
.y34f{bottom:272.836916pt;}
.y2f7{bottom:276.150249pt;}
.y315{bottom:276.993067pt;}
.y4c{bottom:277.863583pt;}
.y20{bottom:279.307061pt;}
.y104{bottom:280.018249pt;}
.y287{bottom:280.036249pt;}
.y7d{bottom:280.054249pt;}
.y11c{bottom:280.464939pt;}
.yc1{bottom:280.782659pt;}
.y25a{bottom:280.836659pt;}
.y184{bottom:280.881062pt;}
.y1ae{bottom:280.983341pt;}
.ya1{bottom:281.103341pt;}
.y34e{bottom:285.167583pt;}
.y2db{bottom:286.802916pt;}
.ye3{bottom:288.114249pt;}
.y314{bottom:289.323733pt;}
.y2f6{bottom:291.489583pt;}
.y4b{bottom:293.202916pt;}
.y1f{bottom:294.646395pt;}
.y103{bottom:295.357583pt;}
.y286{bottom:295.375583pt;}
.y7c{bottom:295.393583pt;}
.y11b{bottom:295.804273pt;}
.yc0{bottom:296.121992pt;}
.y259{bottom:296.175992pt;}
.y183{bottom:296.220395pt;}
.y1ad{bottom:296.322675pt;}
.ya0{bottom:296.442675pt;}
.y34d{bottom:297.498249pt;}
.y313{bottom:301.654400pt;}
.y2da{bottom:302.142249pt;}
.ye2{bottom:303.453583pt;}
.y15f{bottom:303.595728pt;}
.y233{bottom:306.605454pt;}
.y249{bottom:306.616067pt;}
.y22e{bottom:306.616084pt;}
.y244{bottom:306.626722pt;}
.y229{bottom:306.626739pt;}
.y23c{bottom:306.648008pt;}
.y221{bottom:306.648025pt;}
.y2f5{bottom:306.828916pt;}
.y4a{bottom:308.542249pt;}
.y34c{bottom:309.828916pt;}
.y1e{bottom:309.985728pt;}
.y102{bottom:310.696916pt;}
.y285{bottom:310.714916pt;}
.y7b{bottom:310.732916pt;}
.y2a3{bottom:310.967970pt;}
.y11a{bottom:311.143606pt;}
.ybf{bottom:311.461325pt;}
.y258{bottom:311.515325pt;}
.y182{bottom:311.559728pt;}
.y1ac{bottom:311.662008pt;}
.y9f{bottom:311.782008pt;}
.y312{bottom:313.985067pt;}
.y2d9{bottom:317.481583pt;}
.ye1{bottom:318.792916pt;}
.y15e{bottom:318.935062pt;}
.y2b3{bottom:320.440027pt;}
.y2c4{bottom:320.461446pt;}
.y34b{bottom:322.159583pt;}
.y2f4{bottom:322.168249pt;}
.y49{bottom:323.881583pt;}
.y1d{bottom:325.325061pt;}
.y101{bottom:326.036249pt;}
.y284{bottom:326.054249pt;}
.y7a{bottom:326.072249pt;}
.y119{bottom:326.482939pt;}
.ybe{bottom:326.800659pt;}
.y257{bottom:326.854659pt;}
.y181{bottom:326.899062pt;}
.y1ab{bottom:327.001341pt;}
.y9e{bottom:327.121341pt;}
.y2d8{bottom:332.820916pt;}
.ye0{bottom:334.132249pt;}
.y15d{bottom:334.274395pt;}
.y34a{bottom:334.490249pt;}
.y2f3{bottom:337.507583pt;}
.y48{bottom:339.220916pt;}
.y1c{bottom:340.664395pt;}
.y100{bottom:341.375583pt;}
.y283{bottom:341.393583pt;}
.y79{bottom:341.411583pt;}
.y118{bottom:341.822273pt;}
.ybd{bottom:342.139992pt;}
.y256{bottom:342.193992pt;}
.y180{bottom:342.238395pt;}
.y1aa{bottom:342.340675pt;}
.y9d{bottom:342.460675pt;}
.y311{bottom:342.585083pt;}
.y349{bottom:346.820916pt;}
.y2d7{bottom:348.160249pt;}
.ydf{bottom:349.471583pt;}
.y15c{bottom:349.613728pt;}
.y2f2{bottom:352.846916pt;}
.y47{bottom:354.560249pt;}
.y1b{bottom:356.003728pt;}
.yff{bottom:356.714916pt;}
.y282{bottom:356.732916pt;}
.y78{bottom:356.750916pt;}
.y117{bottom:357.161606pt;}
.ybc{bottom:357.479325pt;}
.y255{bottom:357.533325pt;}
.y17f{bottom:357.577728pt;}
.y1a9{bottom:357.680008pt;}
.y9c{bottom:357.800008pt;}
.y348{bottom:359.151583pt;}
.y2d6{bottom:363.499583pt;}
.y1e6{bottom:363.885179pt;}
.y1e1{bottom:363.889451pt;}
.y1cc{bottom:363.895858pt;}
.y1c1{bottom:363.895986pt;}
.y1d7{bottom:363.906492pt;}
.y1fa{bottom:363.906634pt;}
.y201{bottom:363.917288pt;}
.y208{bottom:363.927943pt;}
.y20f{bottom:363.938597pt;}
.yde{bottom:364.810916pt;}
.y15b{bottom:364.953062pt;}
.y2f1{bottom:368.186249pt;}
.y46{bottom:369.899583pt;}
.y1a{bottom:371.343061pt;}
.y347{bottom:371.482249pt;}
.y1e2{bottom:371.884918pt;}
.y1c7{bottom:371.885173pt;}
.y1e7{bottom:371.885179pt;}
.y1cd{bottom:371.895858pt;}
.y1f3{bottom:371.895979pt;}
.y1c2{bottom:371.895986pt;}
.y1d8{bottom:371.906492pt;}
.y1fb{bottom:371.906634pt;}
.y210{bottom:371.938597pt;}
.yfe{bottom:372.054249pt;}
.y281{bottom:372.072249pt;}
.y77{bottom:372.090249pt;}
.y116{bottom:372.500939pt;}
.ybb{bottom:372.818659pt;}
.y17e{bottom:372.917062pt;}
.y1a8{bottom:373.019341pt;}
.y2d5{bottom:378.838916pt;}
.ydd{bottom:380.150249pt;}
.y15a{bottom:380.292395pt;}
.y2f0{bottom:383.525583pt;}
.y346{bottom:383.812916pt;}
.y45{bottom:385.238916pt;}
.y19{bottom:386.682395pt;}
.yfd{bottom:387.393583pt;}
.y280{bottom:387.411583pt;}
.y76{bottom:387.429583pt;}
.y115{bottom:387.840273pt;}
.yba{bottom:388.157992pt;}
.y17d{bottom:388.256395pt;}
.y1a7{bottom:388.358675pt;}
.y254{bottom:388.866659pt;}
.y9b{bottom:389.133341pt;}
.y2d4{bottom:394.178249pt;}
.y310{bottom:394.590416pt;}
.ydc{bottom:395.489583pt;}
.y159{bottom:395.631728pt;}
.y345{bottom:396.143583pt;}
.y2ef{bottom:398.864916pt;}
.y44{bottom:400.578249pt;}
.y18{bottom:402.021728pt;}
.yfc{bottom:402.732916pt;}
.y27f{bottom:402.750916pt;}
.y75{bottom:402.768916pt;}
.y114{bottom:403.179606pt;}
.yb9{bottom:403.497325pt;}
.y17c{bottom:403.595728pt;}
.y1a6{bottom:403.698008pt;}
.y253{bottom:404.866659pt;}
.y30f{bottom:406.921083pt;}
.y344{bottom:408.474249pt;}
.y2d3{bottom:409.517583pt;}
.ydb{bottom:410.828916pt;}
.y158{bottom:410.971062pt;}
.y2ee{bottom:414.204249pt;}
.y43{bottom:415.917583pt;}
.y17{bottom:417.361061pt;}
.yfb{bottom:418.072249pt;}
.y27e{bottom:418.090249pt;}
.y74{bottom:418.108249pt;}
.yb8{bottom:418.836659pt;}
.y17b{bottom:418.935062pt;}
.y1a5{bottom:419.037341pt;}
.y30e{bottom:419.251750pt;}
.y343{bottom:420.804916pt;}
.y2d2{bottom:424.856916pt;}
.yda{bottom:426.168249pt;}
.y157{bottom:426.310395pt;}
.y9a{bottom:427.647856pt;}
.y2ed{bottom:429.543583pt;}
.y42{bottom:431.256916pt;}
.y30d{bottom:431.582416pt;}
.y16{bottom:432.700395pt;}
.y342{bottom:433.135583pt;}
.yfa{bottom:433.411583pt;}
.y27d{bottom:433.429583pt;}
.y73{bottom:433.447583pt;}
.yb7{bottom:434.175992pt;}
.y17a{bottom:434.274395pt;}
.y1a4{bottom:434.376675pt;}
.y113{bottom:434.512939pt;}
.y2d1{bottom:440.196249pt;}
.yd9{bottom:441.507583pt;}
.y156{bottom:441.649728pt;}
.y99{bottom:442.987190pt;}
.y2ad{bottom:443.757171pt;}
.y2aa{bottom:443.767880pt;}
.y2a7{bottom:443.778590pt;}
.y2a4{bottom:443.789299pt;}
.y29f{bottom:443.800005pt;}
.y29c{bottom:443.810674pt;}
.y299{bottom:443.810691pt;}
.y296{bottom:443.810696pt;}
.y2ec{bottom:444.882916pt;}
.y341{bottom:445.466249pt;}
.y41{bottom:446.596249pt;}
.y15{bottom:448.039728pt;}
.yf9{bottom:448.750916pt;}
.y27c{bottom:448.768916pt;}
.y72{bottom:448.786916pt;}
.y252{bottom:448.846916pt;}
.yb6{bottom:449.515325pt;}
.y179{bottom:449.613728pt;}
.y1a3{bottom:449.716008pt;}
.y237{bottom:453.506796pt;}
.y234{bottom:453.517451pt;}
.y24a{bottom:453.528064pt;}
.y22f{bottom:453.528081pt;}
.y245{bottom:453.538720pt;}
.y22a{bottom:453.538737pt;}
.y240{bottom:453.549350pt;}
.y225{bottom:453.549367pt;}
.y23d{bottom:453.560005pt;}
.y21d{bottom:453.560016pt;}
.y222{bottom:453.560022pt;}
.y21a{bottom:453.560031pt;}
.y2d0{bottom:455.535583pt;}
.yd8{bottom:456.846916pt;}
.y155{bottom:456.989062pt;}
.y340{bottom:457.796916pt;}
.y98{bottom:458.326523pt;}
.y30c{bottom:459.251750pt;}
.y2eb{bottom:460.222249pt;}
.y40{bottom:461.935583pt;}
.y14{bottom:463.379061pt;}
.yf8{bottom:464.090249pt;}
.y27b{bottom:464.108249pt;}
.y71{bottom:464.126249pt;}
.y251{bottom:464.186249pt;}
.yb5{bottom:464.854659pt;}
.y178{bottom:464.953062pt;}
.y1a2{bottom:465.055341pt;}
.y33f{bottom:470.127583pt;}
.y2cf{bottom:470.874916pt;}
.yd7{bottom:472.186249pt;}
.y154{bottom:472.328395pt;}
.y97{bottom:473.665856pt;}
.y2b4{bottom:474.381361pt;}
.y2b7{bottom:474.381395pt;}
.y2ba{bottom:474.381397pt;}
.y2c8{bottom:474.392092pt;}
.y2bd{bottom:474.392099pt;}
.y2c0{bottom:474.392133pt;}
.y2c5{bottom:474.402780pt;}
.y3f{bottom:477.274916pt;}
.y13{bottom:478.718395pt;}
.yf7{bottom:479.429583pt;}
.y27a{bottom:479.447583pt;}
.y70{bottom:479.465583pt;}
.y250{bottom:479.525583pt;}
.yb4{bottom:480.193992pt;}
.y177{bottom:480.292395pt;}
.y1a1{bottom:480.394675pt;}
.y33e{bottom:482.458249pt;}
.y30b{bottom:486.918416pt;}
.yd6{bottom:487.525583pt;}
.y153{bottom:487.667728pt;}
.y96{bottom:489.005190pt;}
.y150{bottom:490.954013pt;}
.y2ea{bottom:491.555583pt;}
.y3e{bottom:492.614249pt;}
.y12{bottom:494.057728pt;}
.yf6{bottom:494.768916pt;}
.y279{bottom:494.786916pt;}
.y33d{bottom:494.788916pt;}
.y6f{bottom:494.804916pt;}
.y24f{bottom:494.864916pt;}
.yb3{bottom:495.533325pt;}
.y176{bottom:495.631728pt;}
.y1a0{bottom:495.734008pt;}
.yd5{bottom:502.864916pt;}
.y2ce{bottom:502.870916pt;}
.y152{bottom:503.007062pt;}
.y14f{bottom:503.284680pt;}
.y95{bottom:504.344523pt;}
.y33c{bottom:507.119583pt;}
.y3d{bottom:507.953583pt;}
.y11{bottom:509.397061pt;}
.yf5{bottom:510.108249pt;}
.y278{bottom:510.126249pt;}
.y6e{bottom:510.144249pt;}
.y24e{bottom:510.204249pt;}
.y175{bottom:510.971062pt;}
.y19f{bottom:511.073341pt;}
.y1d9{bottom:513.324785pt;}
.y1e3{bottom:513.324918pt;}
.y1c8{bottom:513.325173pt;}
.y1e8{bottom:513.325179pt;}
.y216{bottom:513.325301pt;}
.y1f0{bottom:513.335833pt;}
.y1ce{bottom:513.335858pt;}
.y1f4{bottom:513.335979pt;}
.y1c3{bottom:513.335986pt;}
.y1fc{bottom:513.346634pt;}
.y202{bottom:513.357288pt;}
.y209{bottom:513.367943pt;}
.y211{bottom:513.378597pt;}
.y14e{bottom:515.615346pt;}
.y30a{bottom:516.235584pt;}
.yd4{bottom:518.204249pt;}
.y2cd{bottom:518.210249pt;}
.y151{bottom:518.346395pt;}
.y33b{bottom:519.450249pt;}
.y1db{bottom:521.318797pt;}
.y1da{bottom:521.324785pt;}
.y1c9{bottom:521.325173pt;}
.y1e9{bottom:521.325179pt;}
.y1f2{bottom:521.325301pt;}
.y1f1{bottom:521.335833pt;}
.y1cf{bottom:521.335858pt;}
.y1f5{bottom:521.335979pt;}
.y212{bottom:521.378597pt;}
.y3c{bottom:523.292916pt;}
.y10{bottom:524.736395pt;}
.yf4{bottom:525.447583pt;}
.y277{bottom:525.465583pt;}
.y6d{bottom:525.483583pt;}
.y24d{bottom:525.543583pt;}
.y174{bottom:526.310395pt;}
.y19e{bottom:526.412675pt;}
.yb2{bottom:526.866659pt;}
.y14a{bottom:527.935346pt;}
.y14d{bottom:527.946013pt;}
.y309{bottom:528.566250pt;}
.y33a{bottom:531.780916pt;}
.yd3{bottom:533.543583pt;}
.y2cc{bottom:533.549583pt;}
.y94{bottom:535.676523pt;}
.y3b{bottom:538.632249pt;}
.yf{bottom:540.075728pt;}
.y149{bottom:540.266013pt;}
.y14c{bottom:540.276680pt;}
.yf3{bottom:540.786916pt;}
.y276{bottom:540.804916pt;}
.y6c{bottom:540.822916pt;}
.y24c{bottom:540.882916pt;}
.y173{bottom:541.649728pt;}
.y19d{bottom:541.752008pt;}
.y339{bottom:544.111583pt;}
.yd2{bottom:548.882916pt;}
.y2cb{bottom:548.888916pt;}
.y93{bottom:551.677856pt;}
.y148{bottom:552.596680pt;}
.y14b{bottom:552.607346pt;}
.y308{bottom:552.896916pt;}
.y3a{bottom:553.971583pt;}
.ye{bottom:555.415061pt;}
.yf2{bottom:556.126249pt;}
.y275{bottom:556.144249pt;}
.y6b{bottom:556.162249pt;}
.y338{bottom:556.442249pt;}
.y172{bottom:556.989062pt;}
.y19c{bottom:557.091341pt;}
.yd1{bottom:564.222249pt;}
.y307{bottom:565.227583pt;}
.y141{bottom:568.287346pt;}
.y147{bottom:568.298013pt;}
.y337{bottom:568.772916pt;}
.y39{bottom:569.310916pt;}
.yd{bottom:570.754395pt;}
.yb1{bottom:571.465583pt;}
.y274{bottom:571.483583pt;}
.y6a{bottom:571.501583pt;}
.y171{bottom:572.328395pt;}
.y19b{bottom:572.430675pt;}
.y306{bottom:577.558249pt;}
.y2ca{bottom:580.222249pt;}
.y140{bottom:580.618013pt;}
.y146{bottom:580.628680pt;}
.y336{bottom:581.103583pt;}
.y38{bottom:584.650249pt;}
.yb0{bottom:586.804916pt;}
.y273{bottom:586.822916pt;}
.y69{bottom:586.840916pt;}
.y170{bottom:587.667728pt;}
.y19a{bottom:587.770008pt;}
.y305{bottom:589.888916pt;}
.y13f{bottom:592.948680pt;}
.y145{bottom:592.959346pt;}
.y335{bottom:593.434249pt;}
.yd0{bottom:595.555583pt;}
.y37{bottom:599.989583pt;}
.y92{bottom:602.144249pt;}
.y272{bottom:602.162249pt;}
.y68{bottom:602.180249pt;}
.y16f{bottom:603.007062pt;}
.y199{bottom:603.109341pt;}
.y13e{bottom:605.279346pt;}
.y144{bottom:605.290013pt;}
.y334{bottom:605.764916pt;}
.yc{bottom:613.189068pt;}
.y36{bottom:615.328916pt;}
.y91{bottom:617.483583pt;}
.y271{bottom:617.501583pt;}
.y67{bottom:617.519583pt;}
.y13d{bottom:617.610013pt;}
.y143{bottom:617.620680pt;}
.y333{bottom:618.095583pt;}
.y16e{bottom:618.346395pt;}
.y198{bottom:618.448675pt;}
.yb{bottom:625.519735pt;}
.y13c{bottom:629.940680pt;}
.y142{bottom:629.951346pt;}
.y332{bottom:630.426249pt;}
.y35{bottom:630.668249pt;}
.y90{bottom:632.822916pt;}
.y270{bottom:632.840916pt;}
.y66{bottom:632.858916pt;}
.y197{bottom:633.788008pt;}
.y238{bottom:636.578796pt;}
.y235{bottom:636.589451pt;}
.y24b{bottom:636.600064pt;}
.y230{bottom:636.600081pt;}
.y246{bottom:636.610720pt;}
.y22b{bottom:636.610737pt;}
.y241{bottom:636.621350pt;}
.y226{bottom:636.621367pt;}
.y21e{bottom:636.632016pt;}
.y223{bottom:636.632022pt;}
.y21b{bottom:636.632031pt;}
.y2ae{bottom:637.303838pt;}
.y2ab{bottom:637.314547pt;}
.y2a8{bottom:637.325257pt;}
.y2a5{bottom:637.335966pt;}
.y2a0{bottom:637.346672pt;}
.y29d{bottom:637.357341pt;}
.y29a{bottom:637.357358pt;}
.y297{bottom:637.357363pt;}
.y331{bottom:642.756916pt;}
.y34{bottom:646.007583pt;}
.y13b{bottom:646.068680pt;}
.y8f{bottom:648.162249pt;}
.y26f{bottom:648.180249pt;}
.y65{bottom:648.198249pt;}
.y196{bottom:649.127341pt;}
.y330{bottom:655.087583pt;}
.y13a{bottom:658.399346pt;}
.ya{bottom:659.088400pt;}
.y33{bottom:661.346916pt;}
.y1dd{bottom:662.598796pt;}
.y1ea{bottom:662.605178pt;}
.y1d0{bottom:662.615857pt;}
.y1f6{bottom:662.615978pt;}
.y203{bottom:662.637287pt;}
.y20a{bottom:662.647941pt;}
.y213{bottom:662.658596pt;}
.y8e{bottom:663.501583pt;}
.y26e{bottom:663.519583pt;}
.y64{bottom:663.537583pt;}
.y195{bottom:664.466675pt;}
.y192{bottom:666.816935pt;}
.y32f{bottom:667.418249pt;}
.y1de{bottom:670.598796pt;}
.y1e4{bottom:670.604916pt;}
.y1eb{bottom:670.605178pt;}
.y217{bottom:670.605300pt;}
.y1d4{bottom:670.615836pt;}
.y1d1{bottom:670.615857pt;}
.y1f7{bottom:670.615978pt;}
.y1c4{bottom:670.615984pt;}
.y1fd{bottom:670.626633pt;}
.y204{bottom:670.637287pt;}
.y214{bottom:670.658596pt;}
.y2af{bottom:670.658659pt;}
.y2b5{bottom:670.669361pt;}
.y2b8{bottom:670.669395pt;}
.y2bb{bottom:670.669397pt;}
.y2c9{bottom:670.680092pt;}
.y2be{bottom:670.680099pt;}
.y2c1{bottom:670.680133pt;}
.y2c6{bottom:670.690780pt;}
.y139{bottom:670.730013pt;}
.y9{bottom:674.427733pt;}
.y32{bottom:676.686249pt;}
.y8d{bottom:678.840916pt;}
.y26d{bottom:678.858916pt;}
.y63{bottom:678.876916pt;}
.y32e{bottom:679.748916pt;}
.y138{bottom:683.060680pt;}
.y31{bottom:692.025583pt;}
.y32d{bottom:692.079583pt;}
.y8c{bottom:694.180249pt;}
.y26c{bottom:694.198249pt;}
.y62{bottom:694.216249pt;}
.y137{bottom:695.391346pt;}
.y194{bottom:695.799967pt;}
.y32c{bottom:704.410249pt;}
.y30{bottom:707.364916pt;}
.y131{bottom:707.711346pt;}
.y136{bottom:707.722013pt;}
.y8b{bottom:709.519583pt;}
.y26b{bottom:709.537583pt;}
.y61{bottom:709.555583pt;}
.y8{bottom:712.142372pt;}
.y32b{bottom:716.740916pt;}
.y2b0{bottom:716.802659pt;}
.y130{bottom:720.042013pt;}
.y135{bottom:720.052680pt;}
.y2f{bottom:722.704249pt;}
.y60{bottom:724.858916pt;}
.y26a{bottom:724.876916pt;}
.y360{bottom:727.322249pt;}
.y193{bottom:727.799967pt;}
.y32a{bottom:729.071583pt;}
.y7{bottom:732.145038pt;}
.y12f{bottom:732.372680pt;}
.y134{bottom:732.383346pt;}
.y2e{bottom:738.043583pt;}
.y35f{bottom:739.652916pt;}
.y5f{bottom:740.198249pt;}
.y269{bottom:740.216249pt;}
.y329{bottom:741.402249pt;}
.y12e{bottom:744.703346pt;}
.y133{bottom:744.714013pt;}
.y23e{bottom:745.112005pt;}
.y6{bottom:752.147705pt;}
.y2d{bottom:753.382916pt;}
.y328{bottom:753.732916pt;}
.y5e{bottom:755.537583pt;}
.y12d{bottom:757.034013pt;}
.y132{bottom:757.044680pt;}
.y327{bottom:766.063583pt;}
.y2c{bottom:768.722249pt;}
.y5d{bottom:770.876916pt;}
.y16d{bottom:778.394249pt;}
.y12c{bottom:781.930013pt;}
.y5c{bottom:786.216249pt;}
.y16c{bottom:790.724916pt;}
.y5{bottom:799.809082pt;}
.y2b{bottom:800.055583pt;}
.y5b{bottom:801.555583pt;}
.y12b{bottom:803.055583pt;}
.y3{bottom:823.215232pt;}
.y29{bottom:834.763835pt;}
.y2a{bottom:835.542501pt;}
.y5a{bottom:835.545857pt;}
.y2{bottom:835.545898pt;}
.y59{bottom:835.769857pt;}
.hd{height:21.085867pt;}
.hc{height:30.122667pt;}
.hb{height:30.833333pt;}
.h9{height:35.770667pt;}
.h15{height:35.842667pt;}
.h14{height:36.154667pt;}
.h2{height:37.376000pt;}
.h13{height:41.088000pt;}
.h4{height:41.472000pt;}
.h16{height:43.648000pt;}
.h17{height:45.013333pt;}
.h10{height:45.426068pt;}
.hf{height:46.266719pt;}
.h3{height:48.766452pt;}
.ha{height:48.792000pt;}
.h8{height:50.109333pt;}
.h12{height:51.832000pt;}
.h11{height:52.266667pt;}
.h6{height:54.740206pt;}
.h7{height:54.764206pt;}
.he{height:58.021333pt;}
.h5{height:66.768000pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:62.362269pt;}
.x5{left:63.307067pt;}
.x6{left:64.327469pt;}
.x4{left:66.248398pt;}
.x9{left:70.362261pt;}
.x7{left:77.486136pt;}
.x8d{left:83.692798pt;}
.x6c{left:85.081065pt;}
.xd{left:91.487864pt;}
.x6d{left:106.206665pt;}
.xe{left:115.711864pt;}
.x7f{left:123.747732pt;}
.x2c{left:127.514794pt;}
.x4a{left:128.714531pt;}
.xf{left:131.839864pt;}
.x65{left:139.845461pt;}
.x4b{left:141.045198pt;}
.x2d{left:143.152128pt;}
.x10{left:144.170531pt;}
.x4c{left:153.375864pt;}
.x48{left:155.546794pt;}
.x11{left:156.501198pt;}
.x2e{left:158.789461pt;}
.xa{left:165.018257pt;}
.x66{left:167.813461pt;}
.x4d{left:169.503864pt;}
.x2f{left:171.120128pt;}
.x12{left:172.127864pt;}
.x49{left:179.088128pt;}
.x67{left:180.144128pt;}
.x4e{left:181.834531pt;}
.x30{left:183.450794pt;}
.x13{left:187.788924pt;}
.x4f{left:194.165198pt;}
.x68{left:195.781461pt;}
.x31{left:199.088128pt;}
.x14{left:200.119591pt;}
.x80{left:206.750665pt;}
.x69{left:208.112128pt;}
.x50{left:209.802531pt;}
.x32{left:211.418794pt;}
.x15{left:212.450258pt;}
.x81{left:219.081332pt;}
.x6a{left:220.442794pt;}
.x51{left:222.133198pt;}
.x33{left:223.749461pt;}
.x16{left:228.087591pt;}
.x6b{left:232.773461pt;}
.x52{left:234.463864pt;}
.x34{left:236.080128pt;}
.x17{left:240.418258pt;}
.x53{left:246.794531pt;}
.x35{left:248.410794pt;}
.x18{left:252.748924pt;}
.x54{left:259.125198pt;}
.x36{left:260.741461pt;}
.x19{left:265.079591pt;}
.x37{left:273.072128pt;}
.x55{left:274.762531pt;}
.x1a{left:280.716924pt;}
.x64{left:284.371867pt;}
.x38{left:285.402794pt;}
.x56{left:287.093198pt;}
.x6e{left:289.492001pt;}
.x1b{left:296.354258pt;}
.x39{left:297.733461pt;}
.x57{left:299.423864pt;}
.x6f{left:301.822667pt;}
.x82{left:303.465332pt;}
.x1c{left:308.684924pt;}
.x3a{left:310.064128pt;}
.x58{left:315.061198pt;}
.x70{left:317.460001pt;}
.x1d{left:321.015591pt;}
.x3b{left:322.394794pt;}
.x59{left:327.391864pt;}
.x71{left:329.790667pt;}
.x3c{left:334.725461pt;}
.x1e{left:336.652924pt;}
.x5a{left:339.722531pt;}
.x72{left:342.121334pt;}
.x83{left:343.763998pt;}
.x3d{left:347.056128pt;}
.x1f{left:348.983591pt;}
.x5b{left:352.053198pt;}
.x73{left:354.452001pt;}
.x84{left:356.094665pt;}
.x3e{left:359.386794pt;}
.x20{left:361.314258pt;}
.x5c{left:364.383864pt;}
.xb{left:367.172920pt;}
.x85{left:368.425332pt;}
.x74{left:370.089334pt;}
.x21{left:373.670285pt;}
.xc{left:375.172920pt;}
.x5d{left:380.021198pt;}
.x75{left:382.420001pt;}
.x86{left:384.062665pt;}
.x22{left:386.000952pt;}
.x3f{left:390.661457pt;}
.x5e{left:392.351864pt;}
.x76{left:394.750667pt;}
.x87{left:396.393332pt;}
.x23{left:401.638285pt;}
.x40{left:402.992124pt;}
.x5f{left:404.682531pt;}
.x88{left:408.723998pt;}
.x77{left:410.388001pt;}
.x24{left:413.968952pt;}
.x41{left:415.322790pt;}
.x60{left:417.013198pt;}
.x89{left:421.054665pt;}
.x78{left:422.718667pt;}
.x25{left:429.606285pt;}
.x42{left:430.960124pt;}
.x1{left:431.874146pt;}
.x79{left:435.049334pt;}
.x8a{left:436.755998pt;}
.x26{left:441.936952pt;}
.x43{left:443.290790pt;}
.x61{left:444.981198pt;}
.x7a{left:447.380001pt;}
.x8b{left:449.086665pt;}
.x44{left:455.621457pt;}
.x27{left:457.589075pt;}
.x7b{left:459.710667pt;}
.x8c{left:461.417332pt;}
.x3{left:469.341715pt;}
.x45{left:471.248124pt;}
.x7c{left:475.412001pt;}
.x28{left:482.250408pt;}
.x46{left:483.578790pt;}
.x62{left:485.269198pt;}
.x7d{left:487.742667pt;}
.x47{left:495.909457pt;}
.x29{left:497.877075pt;}
.x7e{left:500.073334pt;}
.x8{left:506.375081pt;}
.x2a{left:510.207742pt;}
.x63{left:522.261198pt;}
.x2b{left:525.845075pt;}
}




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