
    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_0c61dc1b10555d4d9b26915c.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.010000;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_df91aa5d306c695bef2a82f7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.061000;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_b3af81b60db72d430d6ce0ce.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.020000;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_5e296c2bbaddd7f78541241c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.061000;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_b84147d8ca399e5f2a3e6d72.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_5e296c2bbaddd7f78541241c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.061000;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_2e530db21255ab5bd21bf300.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e83375817797fb4056ccd5b2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.858000;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_e3b67e5adc68b7317fb219e8.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.911000;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_e3b67e5adc68b7317fb219e8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.911000;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_e3b67e5adc68b7317fb219e8.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.911000;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_ac83690fa14792db51a6cca3.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.892000;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_e3b67e5adc68b7317fb219e8.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.911000;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:ffe;src:url('chunks/assets/font_e3b67e5adc68b7317fb219e8.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.911000;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:fff;src:url('chunks/assets/font_e3b67e5adc68b7317fb219e8.woff2')format("woff");}.fff{font-family:fff;line-height:0.911000;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;}
.m6{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);}
.m5{transform:matrix(0.106436,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.106436,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.106436,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.111250,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.120968,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.146429,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.146429,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.146429,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.192308,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-21.600000px;}
.v4{vertical-align:-5.748414px;}
.v5{vertical-align:-4.057704px;}
.v8{vertical-align:-1.046601px;}
.v0{vertical-align:0.000000px;}
.v7{vertical-align:1.015146px;}
.v3{vertical-align:4.057704px;}
.v6{vertical-align:8.459550px;}
.v1{vertical-align:32.400000px;}
.ls13{letter-spacing:-2.397000px;}
.lsb{letter-spacing:-1.326000px;}
.lsc{letter-spacing:-1.224000px;}
.ls1b{letter-spacing:-0.969000px;}
.ls43{letter-spacing:-0.900000px;}
.ls1e{letter-spacing:-0.867000px;}
.ls9{letter-spacing:-0.816000px;}
.ls41{letter-spacing:-0.765000px;}
.lse{letter-spacing:-0.663000px;}
.ls1d{letter-spacing:-0.561000px;}
.ls3e{letter-spacing:-0.489838px;}
.ls16{letter-spacing:-0.459000px;}
.lsd{letter-spacing:-0.408000px;}
.ls2b{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.306000px;}
.ls15{letter-spacing:-0.255000px;}
.ls3b{letter-spacing:-0.209930px;}
.ls19{letter-spacing:-0.204000px;}
.ls2f{letter-spacing:-0.153000px;}
.ls3c{letter-spacing:-0.139954px;}
.ls26{letter-spacing:-0.099083px;}
.ls31{letter-spacing:-0.071681px;}
.ls39{letter-spacing:-0.069977px;}
.ls35{letter-spacing:-0.067676px;}
.ls28{letter-spacing:-0.049541px;}
.ls4{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.049541px;}
.ls2d{letter-spacing:0.067676px;}
.ls38{letter-spacing:0.069977px;}
.ls2e{letter-spacing:0.071681px;}
.ls27{letter-spacing:0.099083px;}
.ls37{letter-spacing:0.139954px;}
.ls21{letter-spacing:0.148624px;}
.ls17{letter-spacing:0.153000px;}
.ls12{letter-spacing:0.255000px;}
.ls14{letter-spacing:0.561000px;}
.ls10{letter-spacing:0.612000px;}
.lsa{letter-spacing:0.663000px;}
.ls11{letter-spacing:0.714000px;}
.ls29{letter-spacing:0.720000px;}
.ls42{letter-spacing:0.765000px;}
.ls1c{letter-spacing:0.816000px;}
.ls1f{letter-spacing:0.900000px;}
.ls18{letter-spacing:1.020000px;}
.ls1a{letter-spacing:1.173000px;}
.ls2c{letter-spacing:2.580000px;}
.ls2a{letter-spacing:3.120000px;}
.ls36{letter-spacing:4.740000px;}
.ls3f{letter-spacing:6.000000px;}
.ls40{letter-spacing:6.600000px;}
.ls8{letter-spacing:7.140000px;}
.ls5{letter-spacing:7.200000px;}
.ls20{letter-spacing:7.800000px;}
.ls6{letter-spacing:9.600000px;}
.ls1{letter-spacing:10.800000px;}
.ls30{letter-spacing:16.919100px;}
.ls32{letter-spacing:17.848669px;}
.ls3a{letter-spacing:21.762785px;}
.ls3d{letter-spacing:24.841764px;}
.ls0{letter-spacing:25.788000px;}
.ls2{letter-spacing:62.999400px;}
.ls3{letter-spacing:63.000000px;}
.ls25{letter-spacing:84.071756px;}
.ls24{letter-spacing:96.605730px;}
.ls23{letter-spacing:109.189246px;}
.ls34{letter-spacing:132.375038px;}
.ls7{letter-spacing:165.393000px;}
.ls33{letter-spacing:212.977631px;}
.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;}
}
.wsa6{word-spacing:-120.385602px;}
.wsa7{word-spacing:-107.802086px;}
.wsa8{word-spacing:-95.268112px;}
.wsdd{word-spacing:-42.335964px;}
.wsda{word-spacing:-39.256985px;}
.wsc6{word-spacing:-35.769019px;}
.wsc4{word-spacing:-33.838200px;}
.ws10{word-spacing:-24.120000px;}
.wsf2{word-spacing:-20.100000px;}
.wsd9{word-spacing:-17.564177px;}
.wsde{word-spacing:-17.354246px;}
.wsdb{word-spacing:-17.284270px;}
.ws4{word-spacing:-16.920000px;}
.wsa5{word-spacing:-15.000000px;}
.ws11{word-spacing:-14.100000px;}
.wsf4{word-spacing:-13.500000px;}
.ws127{word-spacing:-12.750000px;}
.ws74{word-spacing:-12.597000px;}
.ws7d{word-spacing:-12.240000px;}
.ws7b{word-spacing:-12.138000px;}
.wsfa{word-spacing:-11.985000px;}
.ws7e{word-spacing:-11.781000px;}
.ws94{word-spacing:-11.577000px;}
.wsf3{word-spacing:-11.475000px;}
.wsa9{word-spacing:-11.344981px;}
.ws73{word-spacing:-11.322000px;}
.wsab{word-spacing:-11.295439px;}
.ws2{word-spacing:-11.280000px;}
.wsaa{word-spacing:-11.245898px;}
.ws111{word-spacing:-11.220000px;}
.wsac{word-spacing:-11.196356px;}
.ws0{word-spacing:-9.870000px;}
.ws34{word-spacing:-9.600000px;}
.ws1{word-spacing:-7.896000px;}
.wsdf{word-spacing:-7.200000px;}
.ws6c{word-spacing:-6.600000px;}
.ws13c{word-spacing:-5.580000px;}
.ws18{word-spacing:-4.260000px;}
.wscf{word-spacing:-3.240000px;}
.ws100{word-spacing:-3.111000px;}
.ws116{word-spacing:-2.907000px;}
.wsc0{word-spacing:-2.880000px;}
.wse4{word-spacing:-2.760000px;}
.ws58{word-spacing:-2.700000px;}
.ws6a{word-spacing:-2.640000px;}
.ws6d{word-spacing:-2.520000px;}
.ws2d{word-spacing:-2.400000px;}
.wsf5{word-spacing:-2.397000px;}
.ws35{word-spacing:-2.340000px;}
.ws47{word-spacing:-2.280000px;}
.ws55{word-spacing:-2.160000px;}
.ws1e{word-spacing:-2.100000px;}
.ws40{word-spacing:-2.040000px;}
.ws4c{word-spacing:-1.980000px;}
.ws5c{word-spacing:-1.920000px;}
.wsf{word-spacing:-1.860000px;}
.wsc3{word-spacing:-1.800000px;}
.wsd2{word-spacing:-1.740000px;}
.ws110{word-spacing:-1.734000px;}
.wsb4{word-spacing:-1.680000px;}
.ws1d{word-spacing:-1.620000px;}
.ws3e{word-spacing:-1.560000px;}
.ws11a{word-spacing:-1.479000px;}
.ws4b{word-spacing:-1.440000px;}
.ws52{word-spacing:-1.380000px;}
.wsf6{word-spacing:-1.326000px;}
.wsb0{word-spacing:-1.320000px;}
.ws6b{word-spacing:-1.260000px;}
.ws16{word-spacing:-1.200000px;}
.ws4f{word-spacing:-1.140000px;}
.wsd5{word-spacing:-1.080000px;}
.ws112{word-spacing:-1.071000px;}
.ws96{word-spacing:-1.020000px;}
.wsa1{word-spacing:-0.900000px;}
.ws14{word-spacing:-0.840000px;}
.ws129{word-spacing:-0.816000px;}
.wsd7{word-spacing:-0.780000px;}
.ws12d{word-spacing:-0.765000px;}
.ws6e{word-spacing:-0.720000px;}
.ws8e{word-spacing:-0.663000px;}
.ws5a{word-spacing:-0.600000px;}
.ws95{word-spacing:-0.561000px;}
.ws26{word-spacing:-0.540000px;}
.ws4d{word-spacing:-0.480000px;}
.wsfb{word-spacing:-0.459000px;}
.ws98{word-spacing:-0.420000px;}
.ws10f{word-spacing:-0.408000px;}
.wsd1{word-spacing:-0.360000px;}
.ws13{word-spacing:-0.300000px;}
.ws91{word-spacing:-0.255000px;}
.wsa{word-spacing:-0.240000px;}
.ws8d{word-spacing:-0.180000px;}
.wsf7{word-spacing:-0.153000px;}
.wse5{word-spacing:-0.139954px;}
.ws24{word-spacing:-0.120000px;}
.wsb8{word-spacing:-0.099083px;}
.wse7{word-spacing:-0.069977px;}
.wscc{word-spacing:-0.067676px;}
.ws3d{word-spacing:-0.060000px;}
.ws105{word-spacing:-0.051000px;}
.wsb7{word-spacing:-0.049541px;}
.ws3{word-spacing:0.000000px;}
.ws5b{word-spacing:0.060000px;}
.wse6{word-spacing:0.069977px;}
.wsb6{word-spacing:0.099083px;}
.wsea{word-spacing:0.120000px;}
.wscb{word-spacing:0.153000px;}
.ws5e{word-spacing:0.180000px;}
.ws10c{word-spacing:0.204000px;}
.wse9{word-spacing:0.209930px;}
.wse{word-spacing:0.240000px;}
.ws93{word-spacing:0.255000px;}
.wsba{word-spacing:0.300000px;}
.ws90{word-spacing:0.306000px;}
.wsc2{word-spacing:0.360000px;}
.ws8f{word-spacing:0.408000px;}
.ws7{word-spacing:0.420000px;}
.ws131{word-spacing:0.459000px;}
.wsd4{word-spacing:0.480000px;}
.wse8{word-spacing:0.489838px;}
.wsc7{word-spacing:0.501770px;}
.ws2a{word-spacing:0.540000px;}
.ws119{word-spacing:0.561000px;}
.ws3f{word-spacing:0.600000px;}
.ws10e{word-spacing:0.612000px;}
.wse0{word-spacing:0.660000px;}
.wsec{word-spacing:0.720000px;}
.wsff{word-spacing:0.765000px;}
.wsd3{word-spacing:0.780000px;}
.ws15{word-spacing:0.840000px;}
.ws97{word-spacing:0.867000px;}
.ws99{word-spacing:0.900000px;}
.ws10d{word-spacing:0.918000px;}
.wsc8{word-spacing:1.020000px;}
.ws122{word-spacing:1.071000px;}
.wseb{word-spacing:1.080000px;}
.ws28{word-spacing:1.140000px;}
.ws22{word-spacing:1.200000px;}
.ws121{word-spacing:1.224000px;}
.ws60{word-spacing:1.260000px;}
.ws120{word-spacing:1.275000px;}
.wsb9{word-spacing:1.320000px;}
.ws115{word-spacing:1.377000px;}
.ws43{word-spacing:1.380000px;}
.ws114{word-spacing:1.479000px;}
.ws6{word-spacing:1.500000px;}
.wsa3{word-spacing:1.560000px;}
.ws124{word-spacing:1.581000px;}
.wsa2{word-spacing:1.620000px;}
.ws4e{word-spacing:1.680000px;}
.ws1a{word-spacing:1.740000px;}
.wsbf{word-spacing:1.800000px;}
.ws136{word-spacing:1.836000px;}
.ws107{word-spacing:1.887000px;}
.ws9f{word-spacing:1.920000px;}
.ws5f{word-spacing:1.980000px;}
.ws11e{word-spacing:1.989000px;}
.ws104{word-spacing:2.040000px;}
.wsa0{word-spacing:2.100000px;}
.ws103{word-spacing:2.142000px;}
.ws59{word-spacing:2.160000px;}
.ws102{word-spacing:2.193000px;}
.wsbc{word-spacing:2.220000px;}
.ws12e{word-spacing:2.244000px;}
.wsca{word-spacing:2.280000px;}
.ws101{word-spacing:2.295000px;}
.ws38{word-spacing:2.340000px;}
.ws92{word-spacing:2.397000px;}
.wsbb{word-spacing:2.400000px;}
.wsa4{word-spacing:2.460000px;}
.ws9d{word-spacing:2.520000px;}
.ws46{word-spacing:2.580000px;}
.ws132{word-spacing:2.601000px;}
.ws56{word-spacing:2.640000px;}
.ws62{word-spacing:2.700000px;}
.ws12a{word-spacing:2.754000px;}
.ws85{word-spacing:2.760000px;}
.ws63{word-spacing:2.820000px;}
.ws57{word-spacing:2.880000px;}
.ws5d{word-spacing:2.940000px;}
.ws9b{word-spacing:3.000000px;}
.wsc1{word-spacing:3.060000px;}
.ws2c{word-spacing:3.120000px;}
.wsfc{word-spacing:3.162000px;}
.ws9c{word-spacing:3.180000px;}
.ws44{word-spacing:3.240000px;}
.ws64{word-spacing:3.300000px;}
.ws8{word-spacing:3.360000px;}
.ws11c{word-spacing:3.366000px;}
.ws53{word-spacing:3.480000px;}
.ws11b{word-spacing:3.519000px;}
.ws1c{word-spacing:3.540000px;}
.ws11f{word-spacing:3.570000px;}
.ws88{word-spacing:3.660000px;}
.wsbd{word-spacing:3.720000px;}
.ws138{word-spacing:3.723000px;}
.wsbe{word-spacing:3.780000px;}
.ws113{word-spacing:3.825000px;}
.ws30{word-spacing:3.840000px;}
.ws137{word-spacing:3.876000px;}
.ws8b{word-spacing:3.900000px;}
.wsad{word-spacing:3.960000px;}
.wsd8{word-spacing:4.058654px;}
.ws23{word-spacing:4.080000px;}
.ws69{word-spacing:4.140000px;}
.wsd6{word-spacing:4.200000px;}
.ws12f{word-spacing:4.233000px;}
.wsc{word-spacing:4.260000px;}
.ws13b{word-spacing:4.284000px;}
.wsf1{word-spacing:4.380000px;}
.ws126{word-spacing:4.437000px;}
.wsb2{word-spacing:4.440000px;}
.ws2b{word-spacing:4.500000px;}
.ws39{word-spacing:4.620000px;}
.ws125{word-spacing:4.641000px;}
.ws20{word-spacing:4.680000px;}
.wsd0{word-spacing:4.740000px;}
.ws89{word-spacing:4.800000px;}
.ws65{word-spacing:4.860000px;}
.wsf0{word-spacing:4.920000px;}
.wsfe{word-spacing:4.947000px;}
.ws2e{word-spacing:4.980000px;}
.ws12c{word-spacing:4.998000px;}
.wsee{word-spacing:5.040000px;}
.ws106{word-spacing:5.049000px;}
.wsfd{word-spacing:5.151000px;}
.ws42{word-spacing:5.160000px;}
.ws12b{word-spacing:5.202000px;}
.ws128{word-spacing:5.253000px;}
.ws50{word-spacing:5.340000px;}
.ws25{word-spacing:5.520000px;}
.ws3b{word-spacing:5.580000px;}
.wsb1{word-spacing:5.640000px;}
.wsce{word-spacing:5.760000px;}
.ws13a{word-spacing:5.814000px;}
.ws54{word-spacing:5.820000px;}
.ws130{word-spacing:5.865000px;}
.ws1f{word-spacing:5.880000px;}
.ws2f{word-spacing:5.940000px;}
.ws41{word-spacing:6.060000px;}
.ws123{word-spacing:6.069000px;}
.ws51{word-spacing:6.120000px;}
.ws5{word-spacing:6.180000px;}
.ws3c{word-spacing:6.240000px;}
.ws17{word-spacing:6.360000px;}
.ws3a{word-spacing:6.420000px;}
.ws1b{word-spacing:6.480000px;}
.wscd{word-spacing:6.540000px;}
.ws10b{word-spacing:6.579000px;}
.ws87{word-spacing:6.600000px;}
.wse1{word-spacing:6.720000px;}
.wsf9{word-spacing:6.732000px;}
.wsb{word-spacing:6.780000px;}
.ws10a{word-spacing:6.834000px;}
.wsc9{word-spacing:6.840000px;}
.ws67{word-spacing:6.900000px;}
.ws8c{word-spacing:7.020000px;}
.wsf8{word-spacing:7.038000px;}
.wsaf{word-spacing:7.080000px;}
.ws8a{word-spacing:7.140000px;}
.ws68{word-spacing:7.200000px;}
.ws133{word-spacing:7.344000px;}
.wsb5{word-spacing:7.380000px;}
.ws27{word-spacing:7.560000px;}
.ws134{word-spacing:7.650000px;}
.ws21{word-spacing:7.860000px;}
.ws49{word-spacing:8.040000px;}
.ws45{word-spacing:8.100000px;}
.ws135{word-spacing:8.364000px;}
.wsdc{word-spacing:8.397216px;}
.wsae{word-spacing:8.400000px;}
.ws11d{word-spacing:8.721000px;}
.ws61{word-spacing:8.880000px;}
.ws9a{word-spacing:8.940000px;}
.wsb3{word-spacing:9.000000px;}
.ws109{word-spacing:9.129000px;}
.ws66{word-spacing:9.240000px;}
.ws86{word-spacing:9.480000px;}
.ws108{word-spacing:9.537000px;}
.wsd{word-spacing:9.600000px;}
.ws29{word-spacing:9.720000px;}
.wsed{word-spacing:10.380000px;}
.ws9e{word-spacing:10.500000px;}
.wse3{word-spacing:10.920000px;}
.ws36{word-spacing:11.130000px;}
.ws32{word-spacing:11.280000px;}
.wsef{word-spacing:11.520000px;}
.ws118{word-spacing:11.526000px;}
.ws48{word-spacing:11.760000px;}
.ws139{word-spacing:11.883000px;}
.ws117{word-spacing:12.036000px;}
.wse2{word-spacing:12.120000px;}
.ws31{word-spacing:12.540000px;}
.ws4a{word-spacing:13.140000px;}
.ws9{word-spacing:14.640000px;}
.ws33{word-spacing:16.500000px;}
.ws19{word-spacing:21.960000px;}
.ws37{word-spacing:27.804000px;}
.ws12{word-spacing:32.130000px;}
.ws75{word-spacing:84.348900px;}
.ws77{word-spacing:87.658800px;}
.ws79{word-spacing:109.553100px;}
.ws7f{word-spacing:109.578600px;}
.ws70{word-spacing:110.874000px;}
.ws7c{word-spacing:111.470700px;}
.ws81{word-spacing:126.684000px;}
.ws84{word-spacing:130.050000px;}
.ws72{word-spacing:153.408000px;}
.ws78{word-spacing:156.927000px;}
.ws80{word-spacing:190.179000px;}
.ws83{word-spacing:191.250000px;}
.ws71{word-spacing:197.370000px;}
.ws7a{word-spacing:295.065600px;}
.ws6f{word-spacing:359.203200px;}
.ws76{word-spacing:383.902500px;}
.wsc5{word-spacing:784.369476px;}
.ws82{word-spacing:821.717100px;}
._2d{margin-left:-109.189246px;}
._2e{margin-left:-96.605730px;}
._2f{margin-left:-84.071756px;}
._6{margin-left:-25.920000px;}
._38{margin-left:-24.914695px;}
._e{margin-left:-23.700000px;}
._2b{margin-left:-22.431600px;}
._1a{margin-left:-21.411600px;}
._15{margin-left:-19.581600px;}
._1b{margin-left:-17.940000px;}
._9{margin-left:-16.920000px;}
._d{margin-left:-15.660000px;}
._12{margin-left:-14.425200px;}
._3a{margin-left:-13.362000px;}
._18{margin-left:-12.115200px;}
._a{margin-left:-10.320000px;}
._1c{margin-left:-9.300000px;}
._11{margin-left:-6.202800px;}
._10{margin-left:-5.106000px;}
._4{margin-left:-3.998400px;}
._0{margin-left:-2.108400px;}
._7{margin-left:-1.101600px;}
._8{width:1.696800px;}
._b{width:3.303600px;}
._16{width:4.968000px;}
._13{width:6.494400px;}
._17{width:7.845600px;}
._3{width:9.870000px;}
._c{width:11.275200px;}
._36{width:12.330000px;}
._19{width:13.388400px;}
._2c{width:15.908400px;}
._3c{width:18.704400px;}
._14{width:20.565600px;}
._37{width:22.057850px;}
._5{width:24.948000px;}
._1d{width:39.015000px;}
._39{width:51.099600px;}
._34{width:52.330050px;}
._21{width:62.424000px;}
._3b{width:65.637000px;}
._22{width:74.358000px;}
._23{width:78.948000px;}
._24{width:92.721000px;}
._29{width:100.458000px;}
._27{width:115.912800px;}
._20{width:129.591000px;}
._30{width:136.812253px;}
._32{width:138.232450px;}
._33{width:143.947703px;}
._25{width:165.159300px;}
._28{width:230.542500px;}
._26{width:231.780300px;}
._1f{width:303.195000px;}
._31{width:307.573963px;}
._2a{width:310.191600px;}
._1e{width:314.466000px;}
._1{width:569.318400px;}
._35{width:691.663714px;}
._2{width:1043.196000px;}
._f{width:1619.837400px;}
.fc5{color:rgb(112,109,110);}
.fc4{color:rgb(90,87,88);}
.fc3{color:rgb(90,87,88);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fsd{font-size:27.360000px;}
.fs8{font-size:33.600000px;}
.fs0{font-size:42.000000px;}
.fsf{font-size:45.000000px;}
.fs9{font-size:48.000000px;}
.fs10{font-size:49.541400px;}
.fs6{font-size:50.400000px;}
.fsc{font-size:51.000000px;}
.fs3{font-size:54.000000px;}
.fsa{font-size:60.000000px;}
.fs11{font-size:67.628400px;}
.fs12{font-size:67.676400px;}
.fs15{font-size:69.773400px;}
.fs16{font-size:69.976800px;}
.fs13{font-size:71.681400px;}
.fs5{font-size:72.000000px;}
.fs14{font-size:75.228600px;}
.fse{font-size:84.000000px;}
.fsb{font-size:84.840000px;}
.fs1{font-size:88.200000px;}
.fs7{font-size:93.600000px;}
.fs2{font-size:104.160000px;}
.fs4{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:29.632800px;}
.y1{bottom:31.012800px;}
.y3{bottom:31.033350px;}
.yda{bottom:39.826500px;}
.yd3{bottom:41.329200px;}
.yd9{bottom:57.829500px;}
.y1b{bottom:60.816000px;}
.ye6{bottom:60.826500px;}
.y9e{bottom:60.829200px;}
.y5e{bottom:60.829350px;}
.yb1{bottom:60.829500px;}
.y115{bottom:63.802200px;}
.y1a{bottom:75.820500px;}
.ye5{bottom:78.829500px;}
.y9d{bottom:80.329200px;}
.y5d{bottom:80.329350px;}
.y114{bottom:81.052950px;}
.yb0{bottom:85.593000px;}
.y19{bottom:90.825000px;}
.y113{bottom:98.303700px;}
.y148{bottom:99.321900px;}
.y9c{bottom:99.829200px;}
.y5c{bottom:99.829350px;}
.y18{bottom:105.829500px;}
.yaf{bottom:107.306250px;}
.yc1{bottom:109.478907px;}
.yd0{bottom:110.184872px;}
.y112{bottom:115.554450px;}
.y147{bottom:116.572650px;}
.y9b{bottom:119.329200px;}
.y5b{bottom:119.329350px;}
.ye8{bottom:120.795000px;}
.ye7{bottom:121.360350px;}
.yae{bottom:124.557000px;}
.yc0{bottom:130.026202px;}
.ycf{bottom:130.732167px;}
.y111{bottom:132.805200px;}
.y146{bottom:133.823400px;}
.y1f{bottom:135.979500px;}
.y9a{bottom:138.829200px;}
.y5a{bottom:138.829350px;}
.yad{bottom:141.807750px;}
.ye1{bottom:144.739327px;}
.y110{bottom:150.055950px;}
.ybf{bottom:150.573498px;}
.y145{bottom:151.074150px;}
.yce{bottom:151.279463px;}
.y1e{bottom:152.479500px;}
.y99{bottom:158.329200px;}
.y59{bottom:158.329350px;}
.yac{bottom:159.058500px;}
.y10f{bottom:167.306700px;}
.y144{bottom:168.324900px;}
.y1d{bottom:168.979500px;}
.ybe{bottom:171.120793px;}
.ycd{bottom:171.826758px;}
.ye0{bottom:175.651931px;}
.y98{bottom:177.829200px;}
.y58{bottom:177.829350px;}
.yab{bottom:180.771750px;}
.y10e{bottom:184.557450px;}
.y1c{bottom:185.479500px;}
.y143{bottom:185.575650px;}
.ybd{bottom:191.668089px;}
.ycc{bottom:192.374054px;}
.y97{bottom:197.329200px;}
.y57{bottom:197.329350px;}
.yaa{bottom:198.022500px;}
.y10d{bottom:201.808200px;}
.y142{bottom:202.826400px;}
.ydf{bottom:206.564535px;}
.ybc{bottom:212.215385px;}
.ycb{bottom:212.921350px;}
.ya9{bottom:215.273250px;}
.y96{bottom:216.829200px;}
.y56{bottom:216.829350px;}
.y10c{bottom:219.058950px;}
.y141{bottom:220.077150px;}
.ybb{bottom:232.762680px;}
.y38{bottom:232.775400px;}
.yca{bottom:233.468645px;}
.y10b{bottom:236.309700px;}
.yd2{bottom:236.329200px;}
.y55{bottom:236.329350px;}
.ya8{bottom:236.986500px;}
.y140{bottom:237.327900px;}
.yde{bottom:237.477139px;}
.yba{bottom:253.309976px;}
.y10a{bottom:253.560450px;}
.yc9{bottom:254.015941px;}
.y13f{bottom:254.578650px;}
.y37{bottom:255.275400px;}
.y95{bottom:255.829200px;}
.y54{bottom:255.829350px;}
.ya7{bottom:258.699750px;}
.ydd{bottom:268.389743px;}
.y109{bottom:270.811200px;}
.y13e{bottom:271.829400px;}
.yb9{bottom:273.857272px;}
.yc8{bottom:274.563237px;}
.yb3{bottom:275.329200px;}
.y53{bottom:275.329350px;}
.y36{bottom:277.775400px;}
.y2c{bottom:278.563500px;}
.ya6{bottom:280.413000px;}
.y108{bottom:288.061950px;}
.y13d{bottom:289.080150px;}
.yb8{bottom:294.404567px;}
.yb2{bottom:294.829200px;}
.y52{bottom:294.829350px;}
.y2b{bottom:295.063500px;}
.yc7{bottom:295.110532px;}
.ydc{bottom:299.302346px;}
.y35{bottom:300.275400px;}
.ya5{bottom:302.126250px;}
.y107{bottom:305.312700px;}
.y13c{bottom:306.330900px;}
.ye3{bottom:309.742800px;}
.y2a{bottom:311.563500px;}
.y94{bottom:314.329200px;}
.y51{bottom:314.329350px;}
.yb7{bottom:314.951863px;}
.yc6{bottom:315.657828px;}
.y106{bottom:322.563450px;}
.y34{bottom:322.775400px;}
.y13b{bottom:323.581650px;}
.ya4{bottom:323.839500px;}
.ye2{bottom:327.745800px;}
.y29{bottom:328.063500px;}
.ydb{bottom:330.214950px;}
.y93{bottom:333.829200px;}
.y50{bottom:333.829350px;}
.yb6{bottom:335.499159px;}
.yc5{bottom:336.205124px;}
.y105{bottom:339.814200px;}
.y13a{bottom:340.832400px;}
.ya3{bottom:341.090250px;}
.y28{bottom:344.563500px;}
.y33{bottom:345.275400px;}
.y92{bottom:353.329200px;}
.y4f{bottom:353.329350px;}
.yd1{bottom:353.335200px;}
.yb5{bottom:356.046454px;}
.yc4{bottom:356.752419px;}
.y104{bottom:357.064950px;}
.y139{bottom:358.083150px;}
.y27{bottom:361.063500px;}
.ya2{bottom:362.803500px;}
.y32{bottom:367.775400px;}
.ye4{bottom:370.696650px;}
.y91{bottom:372.829200px;}
.y4e{bottom:372.829350px;}
.y103{bottom:374.315700px;}
.y138{bottom:375.333900px;}
.yb4{bottom:376.593750px;}
.yc3{bottom:377.299715px;}
.y26{bottom:377.563500px;}
.ya1{bottom:380.054250px;}
.y31{bottom:390.275400px;}
.y102{bottom:391.566450px;}
.y90{bottom:392.329200px;}
.y4d{bottom:392.329350px;}
.y137{bottom:392.584650px;}
.yc2{bottom:403.680510px;}
.ya0{bottom:404.993250px;}
.yd7{bottom:408.715050px;}
.y101{bottom:408.817200px;}
.y136{bottom:409.835400px;}
.y25{bottom:410.563500px;}
.y8f{bottom:411.829200px;}
.y4c{bottom:411.829350px;}
.y30{bottom:412.775400px;}
.y100{bottom:426.067950px;}
.y24{bottom:427.063500px;}
.y135{bottom:427.086150px;}
.y8e{bottom:431.329200px;}
.y4b{bottom:431.329350px;}
.y9f{bottom:433.683600px;}
.y2f{bottom:435.275400px;}
.yff{bottom:443.318700px;}
.y23{bottom:443.563500px;}
.y134{bottom:444.336900px;}
.yd8{bottom:449.976900px;}
.y8d{bottom:450.829200px;}
.y4a{bottom:450.829350px;}
.y2e{bottom:457.775400px;}
.y22{bottom:460.063500px;}
.yfe{bottom:460.569450px;}
.y133{bottom:461.587650px;}
.y8c{bottom:470.329200px;}
.y49{bottom:470.329350px;}
.y21{bottom:476.563500px;}
.yfd{bottom:477.820200px;}
.y132{bottom:478.838400px;}
.y2d{bottom:480.275400px;}
.y8b{bottom:489.829200px;}
.y48{bottom:489.829350px;}
.y20{bottom:493.063500px;}
.yfc{bottom:495.070950px;}
.y131{bottom:496.089150px;}
.y8a{bottom:509.329200px;}
.y47{bottom:509.329350px;}
.yfb{bottom:512.321700px;}
.y130{bottom:513.339900px;}
.y89{bottom:528.829200px;}
.y46{bottom:528.829350px;}
.yfa{bottom:529.572450px;}
.y12f{bottom:530.590650px;}
.y157{bottom:537.864900px;}
.yf9{bottom:546.823200px;}
.y12e{bottom:547.841400px;}
.y88{bottom:548.329200px;}
.y45{bottom:548.329350px;}
.y72{bottom:548.335350px;}
.y17{bottom:551.105100px;}
.y156{bottom:557.364900px;}
.yf8{bottom:564.073950px;}
.y12d{bottom:565.092150px;}
.y87{bottom:567.829200px;}
.y44{bottom:567.829350px;}
.y16{bottom:572.105100px;}
.y155{bottom:576.864900px;}
.yf7{bottom:581.324700px;}
.y12c{bottom:582.342900px;}
.y86{bottom:587.329200px;}
.y43{bottom:587.329350px;}
.y15{bottom:593.105100px;}
.y154{bottom:596.364900px;}
.yf6{bottom:598.575450px;}
.y12b{bottom:599.593650px;}
.y85{bottom:606.829200px;}
.y42{bottom:606.829350px;}
.y14{bottom:614.105100px;}
.yf5{bottom:615.826200px;}
.y12a{bottom:616.844400px;}
.y84{bottom:626.329200px;}
.y41{bottom:626.329350px;}
.yf4{bottom:633.076950px;}
.y129{bottom:634.095150px;}
.y13{bottom:635.105100px;}
.y83{bottom:645.829200px;}
.y40{bottom:645.829350px;}
.yf3{bottom:650.327700px;}
.y128{bottom:651.345900px;}
.y12{bottom:662.705100px;}
.y82{bottom:665.329200px;}
.y3f{bottom:665.329350px;}
.yf2{bottom:667.578450px;}
.y127{bottom:668.596650px;}
.y81{bottom:684.829200px;}
.y3e{bottom:684.829350px;}
.y126{bottom:685.847400px;}
.y153{bottom:687.144900px;}
.y11{bottom:687.455100px;}
.y10{bottom:689.705100px;}
.y125{bottom:703.098150px;}
.y80{bottom:704.329200px;}
.y3d{bottom:704.329350px;}
.y152{bottom:706.644900px;}
.yea{bottom:713.701500px;}
.yf{bottom:714.455100px;}
.ye{bottom:716.705100px;}
.y124{bottom:720.348900px;}
.y7f{bottom:723.829200px;}
.y3c{bottom:723.829350px;}
.ye9{bottom:731.704500px;}
.y123{bottom:737.599650px;}
.yd{bottom:741.455100px;}
.y7e{bottom:743.329200px;}
.y71{bottom:743.329350px;}
.yc{bottom:743.705100px;}
.y151{bottom:745.644900px;}
.y122{bottom:754.850400px;}
.y7d{bottom:762.829200px;}
.y3b{bottom:762.829350px;}
.y150{bottom:765.144900px;}
.yd5{bottom:766.918350px;}
.y121{bottom:772.101150px;}
.yf1{bottom:773.715930px;}
.y7c{bottom:782.329200px;}
.y70{bottom:782.329350px;}
.yd4{bottom:784.921350px;}
.y120{bottom:789.351900px;}
.y7b{bottom:801.829200px;}
.y6f{bottom:801.829350px;}
.yb{bottom:802.193250px;}
.yf0{bottom:803.893425px;}
.y14f{bottom:804.144900px;}
.y11f{bottom:806.602650px;}
.y7a{bottom:821.329200px;}
.y6e{bottom:821.329350px;}
.y14e{bottom:823.644900px;}
.y11e{bottom:823.853400px;}
.yd6{bottom:827.696100px;}
.yef{bottom:834.070920px;}
.ya{bottom:836.699250px;}
.y79{bottom:840.829200px;}
.y6d{bottom:840.829350px;}
.y11d{bottom:841.104150px;}
.y63{bottom:847.644900px;}
.y11c{bottom:858.354900px;}
.y78{bottom:860.329200px;}
.y6c{bottom:860.329350px;}
.y14d{bottom:862.644900px;}
.yee{bottom:864.248415px;}
.y62{bottom:868.644900px;}
.y9{bottom:871.205250px;}
.y11b{bottom:875.605650px;}
.y77{bottom:879.829200px;}
.y6b{bottom:879.829350px;}
.y14c{bottom:882.144900px;}
.y11a{bottom:892.856400px;}
.yed{bottom:894.425910px;}
.y76{bottom:899.329200px;}
.y6a{bottom:899.329350px;}
.y61{bottom:904.644900px;}
.y119{bottom:910.107150px;}
.y75{bottom:918.829200px;}
.y69{bottom:918.829350px;}
.y14b{bottom:921.144900px;}
.yec{bottom:924.603405px;}
.y60{bottom:927.144900px;}
.y118{bottom:927.357900px;}
.y74{bottom:938.329200px;}
.y68{bottom:938.329350px;}
.y14a{bottom:940.644900px;}
.y8{bottom:941.705250px;}
.y117{bottom:944.608650px;}
.y5f{bottom:949.644900px;}
.yeb{bottom:954.780900px;}
.y73{bottom:957.829200px;}
.y67{bottom:957.829350px;}
.y149{bottom:960.144900px;}
.y116{bottom:961.859400px;}
.y7{bottom:982.094850px;}
.y5{bottom:997.558350px;}
.y3a{bottom:999.841500px;}
.y65{bottom:999.961500px;}
.y39{bottom:1003.036500px;}
.y66{bottom:1003.039350px;}
.y4{bottom:1004.005350px;}
.y6{bottom:1004.008350px;}
.y64{bottom:1025.070000px;}
.h14{height:26.852344px;}
.ha{height:27.753600px;}
.hf{height:32.970000px;}
.h18{height:33.688152px;}
.h2{height:34.692000px;}
.h11{height:34.703400px;}
.h17{height:37.170000px;}
.hc{height:37.680000px;}
.hb{height:39.648000px;}
.h16{height:40.035000px;}
.h12{height:42.126000px;}
.h5{height:42.390000px;}
.h1e{height:47.035098px;}
.hd{height:47.100000px;}
.h1f{height:48.492513px;}
.h20{height:48.633876px;}
.he{height:49.560000px;}
.h1c{height:49.818573px;}
.h1d{height:50.854534px;}
.h1a{height:51.059442px;}
.h1b{height:55.494648px;}
.h9{height:56.520000px;}
.h19{height:59.472000px;}
.h15{height:65.940000px;}
.h10{height:66.599400px;}
.h7{height:71.964000px;}
.h3{height:72.853200px;}
.h8{height:77.313600px;}
.h6{height:84.780000px;}
.h4{height:86.036160px;}
.h13{height:1045.980000px;}
.h0{height:1045.984500px;}
.h1{height:1046.250000px;}
.w1{width:726.750000px;}
.w2{width:727.080000px;}
.w0{width:727.086000px;}
.x0{left:0.000000px;}
.x1{left:60.803100px;}
.x19{left:65.303100px;}
.x33{left:69.803100px;}
.x30{left:71.730750px;}
.x15{left:80.303100px;}
.x13{left:85.572450px;}
.x14{left:88.218300px;}
.x2c{left:90.745800px;}
.x2a{left:117.384929px;}
.x29{left:147.555641px;}
.x31{left:149.425350px;}
.x2d{left:158.610600px;}
.x2b{left:175.348366px;}
.x27{left:179.385991px;}
.x28{left:183.027284px;}
.x5{left:185.362500px;}
.x6{left:189.041700px;}
.x24{left:191.399780px;}
.x1b{left:196.500600px;}
.x26{left:197.641997px;}
.x25{left:199.673194px;}
.x23{left:223.849397px;}
.x22{left:253.611393px;}
.x21{left:257.277457px;}
.x20{left:264.621969px;}
.xf{left:271.194000px;}
.x10{left:276.000000px;}
.x1f{left:279.310994px;}
.x7{left:299.454150px;}
.xb{left:301.596000px;}
.x8{left:304.260150px;}
.xc{left:306.402000px;}
.x2f{left:311.587050px;}
.x32{left:322.432050px;}
.x1e{left:349.065286px;}
.x2e{left:361.706550px;}
.x1d{left:374.764887px;}
.x4{left:463.776000px;}
.x1a{left:516.181350px;}
.x11{left:529.284900px;}
.x12{left:534.090750px;}
.x1c{left:569.326350px;}
.x9{left:583.698450px;}
.xa{left:588.504450px;}
.xd{left:601.409550px;}
.xe{left:606.215550px;}
.x17{left:610.814700px;}
.x2{left:637.348050px;}
.x18{left:638.702700px;}
.x3{left:640.796250px;}
.x16{left:705.255000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v4{vertical-align:-5.109701pt;}
.v5{vertical-align:-3.606848pt;}
.v8{vertical-align:-0.930312pt;}
.v0{vertical-align:0.000000pt;}
.v7{vertical-align:0.902352pt;}
.v3{vertical-align:3.606848pt;}
.v6{vertical-align:7.519600pt;}
.v1{vertical-align:28.800000pt;}
.ls13{letter-spacing:-2.130667pt;}
.lsb{letter-spacing:-1.178667pt;}
.lsc{letter-spacing:-1.088000pt;}
.ls1b{letter-spacing:-0.861333pt;}
.ls43{letter-spacing:-0.800000pt;}
.ls1e{letter-spacing:-0.770667pt;}
.ls9{letter-spacing:-0.725333pt;}
.ls41{letter-spacing:-0.680000pt;}
.lse{letter-spacing:-0.589333pt;}
.ls1d{letter-spacing:-0.498667pt;}
.ls3e{letter-spacing:-0.435411pt;}
.ls16{letter-spacing:-0.408000pt;}
.lsd{letter-spacing:-0.362667pt;}
.ls2b{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.272000pt;}
.ls15{letter-spacing:-0.226667pt;}
.ls3b{letter-spacing:-0.186605pt;}
.ls19{letter-spacing:-0.181333pt;}
.ls2f{letter-spacing:-0.136000pt;}
.ls3c{letter-spacing:-0.124403pt;}
.ls26{letter-spacing:-0.088074pt;}
.ls31{letter-spacing:-0.063717pt;}
.ls39{letter-spacing:-0.062202pt;}
.ls35{letter-spacing:-0.060157pt;}
.ls28{letter-spacing:-0.044037pt;}
.ls4{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.044037pt;}
.ls2d{letter-spacing:0.060157pt;}
.ls38{letter-spacing:0.062202pt;}
.ls2e{letter-spacing:0.063717pt;}
.ls27{letter-spacing:0.088074pt;}
.ls37{letter-spacing:0.124403pt;}
.ls21{letter-spacing:0.132110pt;}
.ls17{letter-spacing:0.136000pt;}
.ls12{letter-spacing:0.226667pt;}
.ls14{letter-spacing:0.498667pt;}
.ls10{letter-spacing:0.544000pt;}
.lsa{letter-spacing:0.589333pt;}
.ls11{letter-spacing:0.634667pt;}
.ls29{letter-spacing:0.640000pt;}
.ls42{letter-spacing:0.680000pt;}
.ls1c{letter-spacing:0.725333pt;}
.ls1f{letter-spacing:0.800000pt;}
.ls18{letter-spacing:0.906667pt;}
.ls1a{letter-spacing:1.042667pt;}
.ls2c{letter-spacing:2.293333pt;}
.ls2a{letter-spacing:2.773333pt;}
.ls36{letter-spacing:4.213333pt;}
.ls3f{letter-spacing:5.333333pt;}
.ls40{letter-spacing:5.866667pt;}
.ls8{letter-spacing:6.346667pt;}
.ls5{letter-spacing:6.400000pt;}
.ls20{letter-spacing:6.933333pt;}
.ls6{letter-spacing:8.533333pt;}
.ls1{letter-spacing:9.600000pt;}
.ls30{letter-spacing:15.039200pt;}
.ls32{letter-spacing:15.865483pt;}
.ls3a{letter-spacing:19.344698pt;}
.ls3d{letter-spacing:22.081568pt;}
.ls0{letter-spacing:22.922667pt;}
.ls2{letter-spacing:55.999467pt;}
.ls3{letter-spacing:56.000000pt;}
.ls25{letter-spacing:74.730450pt;}
.ls24{letter-spacing:85.871760pt;}
.ls23{letter-spacing:97.057107pt;}
.ls34{letter-spacing:117.666701pt;}
.ls7{letter-spacing:147.016000pt;}
.ls33{letter-spacing:189.313450pt;}
.wsa6{word-spacing:-107.009424pt;}
.wsa7{word-spacing:-95.824077pt;}
.wsa8{word-spacing:-84.682766pt;}
.wsdd{word-spacing:-37.631968pt;}
.wsda{word-spacing:-34.895098pt;}
.wsc6{word-spacing:-31.794683pt;}
.wsc4{word-spacing:-30.078400pt;}
.ws10{word-spacing:-21.440000pt;}
.wsf2{word-spacing:-17.866667pt;}
.wsd9{word-spacing:-15.612602pt;}
.wsde{word-spacing:-15.425997pt;}
.wsdb{word-spacing:-15.363795pt;}
.ws4{word-spacing:-15.040000pt;}
.wsa5{word-spacing:-13.333333pt;}
.ws11{word-spacing:-12.533333pt;}
.wsf4{word-spacing:-12.000000pt;}
.ws127{word-spacing:-11.333333pt;}
.ws74{word-spacing:-11.197333pt;}
.ws7d{word-spacing:-10.880000pt;}
.ws7b{word-spacing:-10.789333pt;}
.wsfa{word-spacing:-10.653333pt;}
.ws7e{word-spacing:-10.472000pt;}
.ws94{word-spacing:-10.290667pt;}
.wsf3{word-spacing:-10.200000pt;}
.wsa9{word-spacing:-10.084427pt;}
.ws73{word-spacing:-10.064000pt;}
.wsab{word-spacing:-10.040390pt;}
.ws2{word-spacing:-10.026667pt;}
.wsaa{word-spacing:-9.996354pt;}
.ws111{word-spacing:-9.973333pt;}
.wsac{word-spacing:-9.952317pt;}
.ws0{word-spacing:-8.773333pt;}
.ws34{word-spacing:-8.533333pt;}
.ws1{word-spacing:-7.018667pt;}
.wsdf{word-spacing:-6.400000pt;}
.ws6c{word-spacing:-5.866667pt;}
.ws13c{word-spacing:-4.960000pt;}
.ws18{word-spacing:-3.786667pt;}
.wscf{word-spacing:-2.880000pt;}
.ws100{word-spacing:-2.765333pt;}
.ws116{word-spacing:-2.584000pt;}
.wsc0{word-spacing:-2.560000pt;}
.wse4{word-spacing:-2.453333pt;}
.ws58{word-spacing:-2.400000pt;}
.ws6a{word-spacing:-2.346667pt;}
.ws6d{word-spacing:-2.240000pt;}
.ws2d{word-spacing:-2.133333pt;}
.wsf5{word-spacing:-2.130667pt;}
.ws35{word-spacing:-2.080000pt;}
.ws47{word-spacing:-2.026667pt;}
.ws55{word-spacing:-1.920000pt;}
.ws1e{word-spacing:-1.866667pt;}
.ws40{word-spacing:-1.813333pt;}
.ws4c{word-spacing:-1.760000pt;}
.ws5c{word-spacing:-1.706667pt;}
.wsf{word-spacing:-1.653333pt;}
.wsc3{word-spacing:-1.600000pt;}
.wsd2{word-spacing:-1.546667pt;}
.ws110{word-spacing:-1.541333pt;}
.wsb4{word-spacing:-1.493333pt;}
.ws1d{word-spacing:-1.440000pt;}
.ws3e{word-spacing:-1.386667pt;}
.ws11a{word-spacing:-1.314667pt;}
.ws4b{word-spacing:-1.280000pt;}
.ws52{word-spacing:-1.226667pt;}
.wsf6{word-spacing:-1.178667pt;}
.wsb0{word-spacing:-1.173333pt;}
.ws6b{word-spacing:-1.120000pt;}
.ws16{word-spacing:-1.066667pt;}
.ws4f{word-spacing:-1.013333pt;}
.wsd5{word-spacing:-0.960000pt;}
.ws112{word-spacing:-0.952000pt;}
.ws96{word-spacing:-0.906667pt;}
.wsa1{word-spacing:-0.800000pt;}
.ws14{word-spacing:-0.746667pt;}
.ws129{word-spacing:-0.725333pt;}
.wsd7{word-spacing:-0.693333pt;}
.ws12d{word-spacing:-0.680000pt;}
.ws6e{word-spacing:-0.640000pt;}
.ws8e{word-spacing:-0.589333pt;}
.ws5a{word-spacing:-0.533333pt;}
.ws95{word-spacing:-0.498667pt;}
.ws26{word-spacing:-0.480000pt;}
.ws4d{word-spacing:-0.426667pt;}
.wsfb{word-spacing:-0.408000pt;}
.ws98{word-spacing:-0.373333pt;}
.ws10f{word-spacing:-0.362667pt;}
.wsd1{word-spacing:-0.320000pt;}
.ws13{word-spacing:-0.266667pt;}
.ws91{word-spacing:-0.226667pt;}
.wsa{word-spacing:-0.213333pt;}
.ws8d{word-spacing:-0.160000pt;}
.wsf7{word-spacing:-0.136000pt;}
.wse5{word-spacing:-0.124403pt;}
.ws24{word-spacing:-0.106667pt;}
.wsb8{word-spacing:-0.088074pt;}
.wse7{word-spacing:-0.062202pt;}
.wscc{word-spacing:-0.060157pt;}
.ws3d{word-spacing:-0.053333pt;}
.ws105{word-spacing:-0.045333pt;}
.wsb7{word-spacing:-0.044037pt;}
.ws3{word-spacing:0.000000pt;}
.ws5b{word-spacing:0.053333pt;}
.wse6{word-spacing:0.062202pt;}
.wsb6{word-spacing:0.088074pt;}
.wsea{word-spacing:0.106667pt;}
.wscb{word-spacing:0.136000pt;}
.ws5e{word-spacing:0.160000pt;}
.ws10c{word-spacing:0.181333pt;}
.wse9{word-spacing:0.186605pt;}
.wse{word-spacing:0.213333pt;}
.ws93{word-spacing:0.226667pt;}
.wsba{word-spacing:0.266667pt;}
.ws90{word-spacing:0.272000pt;}
.wsc2{word-spacing:0.320000pt;}
.ws8f{word-spacing:0.362667pt;}
.ws7{word-spacing:0.373333pt;}
.ws131{word-spacing:0.408000pt;}
.wsd4{word-spacing:0.426667pt;}
.wse8{word-spacing:0.435411pt;}
.wsc7{word-spacing:0.446018pt;}
.ws2a{word-spacing:0.480000pt;}
.ws119{word-spacing:0.498667pt;}
.ws3f{word-spacing:0.533333pt;}
.ws10e{word-spacing:0.544000pt;}
.wse0{word-spacing:0.586667pt;}
.wsec{word-spacing:0.640000pt;}
.wsff{word-spacing:0.680000pt;}
.wsd3{word-spacing:0.693333pt;}
.ws15{word-spacing:0.746667pt;}
.ws97{word-spacing:0.770667pt;}
.ws99{word-spacing:0.800000pt;}
.ws10d{word-spacing:0.816000pt;}
.wsc8{word-spacing:0.906667pt;}
.ws122{word-spacing:0.952000pt;}
.wseb{word-spacing:0.960000pt;}
.ws28{word-spacing:1.013333pt;}
.ws22{word-spacing:1.066667pt;}
.ws121{word-spacing:1.088000pt;}
.ws60{word-spacing:1.120000pt;}
.ws120{word-spacing:1.133333pt;}
.wsb9{word-spacing:1.173333pt;}
.ws115{word-spacing:1.224000pt;}
.ws43{word-spacing:1.226667pt;}
.ws114{word-spacing:1.314667pt;}
.ws6{word-spacing:1.333333pt;}
.wsa3{word-spacing:1.386667pt;}
.ws124{word-spacing:1.405333pt;}
.wsa2{word-spacing:1.440000pt;}
.ws4e{word-spacing:1.493333pt;}
.ws1a{word-spacing:1.546667pt;}
.wsbf{word-spacing:1.600000pt;}
.ws136{word-spacing:1.632000pt;}
.ws107{word-spacing:1.677333pt;}
.ws9f{word-spacing:1.706667pt;}
.ws5f{word-spacing:1.760000pt;}
.ws11e{word-spacing:1.768000pt;}
.ws104{word-spacing:1.813333pt;}
.wsa0{word-spacing:1.866667pt;}
.ws103{word-spacing:1.904000pt;}
.ws59{word-spacing:1.920000pt;}
.ws102{word-spacing:1.949333pt;}
.wsbc{word-spacing:1.973333pt;}
.ws12e{word-spacing:1.994667pt;}
.wsca{word-spacing:2.026667pt;}
.ws101{word-spacing:2.040000pt;}
.ws38{word-spacing:2.080000pt;}
.ws92{word-spacing:2.130667pt;}
.wsbb{word-spacing:2.133333pt;}
.wsa4{word-spacing:2.186667pt;}
.ws9d{word-spacing:2.240000pt;}
.ws46{word-spacing:2.293333pt;}
.ws132{word-spacing:2.312000pt;}
.ws56{word-spacing:2.346667pt;}
.ws62{word-spacing:2.400000pt;}
.ws12a{word-spacing:2.448000pt;}
.ws85{word-spacing:2.453333pt;}
.ws63{word-spacing:2.506667pt;}
.ws57{word-spacing:2.560000pt;}
.ws5d{word-spacing:2.613333pt;}
.ws9b{word-spacing:2.666667pt;}
.wsc1{word-spacing:2.720000pt;}
.ws2c{word-spacing:2.773333pt;}
.wsfc{word-spacing:2.810667pt;}
.ws9c{word-spacing:2.826667pt;}
.ws44{word-spacing:2.880000pt;}
.ws64{word-spacing:2.933333pt;}
.ws8{word-spacing:2.986667pt;}
.ws11c{word-spacing:2.992000pt;}
.ws53{word-spacing:3.093333pt;}
.ws11b{word-spacing:3.128000pt;}
.ws1c{word-spacing:3.146667pt;}
.ws11f{word-spacing:3.173333pt;}
.ws88{word-spacing:3.253333pt;}
.wsbd{word-spacing:3.306667pt;}
.ws138{word-spacing:3.309333pt;}
.wsbe{word-spacing:3.360000pt;}
.ws113{word-spacing:3.400000pt;}
.ws30{word-spacing:3.413333pt;}
.ws137{word-spacing:3.445333pt;}
.ws8b{word-spacing:3.466667pt;}
.wsad{word-spacing:3.520000pt;}
.wsd8{word-spacing:3.607693pt;}
.ws23{word-spacing:3.626667pt;}
.ws69{word-spacing:3.680000pt;}
.wsd6{word-spacing:3.733333pt;}
.ws12f{word-spacing:3.762667pt;}
.wsc{word-spacing:3.786667pt;}
.ws13b{word-spacing:3.808000pt;}
.wsf1{word-spacing:3.893333pt;}
.ws126{word-spacing:3.944000pt;}
.wsb2{word-spacing:3.946667pt;}
.ws2b{word-spacing:4.000000pt;}
.ws39{word-spacing:4.106667pt;}
.ws125{word-spacing:4.125333pt;}
.ws20{word-spacing:4.160000pt;}
.wsd0{word-spacing:4.213333pt;}
.ws89{word-spacing:4.266667pt;}
.ws65{word-spacing:4.320000pt;}
.wsf0{word-spacing:4.373333pt;}
.wsfe{word-spacing:4.397333pt;}
.ws2e{word-spacing:4.426667pt;}
.ws12c{word-spacing:4.442667pt;}
.wsee{word-spacing:4.480000pt;}
.ws106{word-spacing:4.488000pt;}
.wsfd{word-spacing:4.578667pt;}
.ws42{word-spacing:4.586667pt;}
.ws12b{word-spacing:4.624000pt;}
.ws128{word-spacing:4.669333pt;}
.ws50{word-spacing:4.746667pt;}
.ws25{word-spacing:4.906667pt;}
.ws3b{word-spacing:4.960000pt;}
.wsb1{word-spacing:5.013333pt;}
.wsce{word-spacing:5.120000pt;}
.ws13a{word-spacing:5.168000pt;}
.ws54{word-spacing:5.173333pt;}
.ws130{word-spacing:5.213333pt;}
.ws1f{word-spacing:5.226667pt;}
.ws2f{word-spacing:5.280000pt;}
.ws41{word-spacing:5.386667pt;}
.ws123{word-spacing:5.394667pt;}
.ws51{word-spacing:5.440000pt;}
.ws5{word-spacing:5.493333pt;}
.ws3c{word-spacing:5.546667pt;}
.ws17{word-spacing:5.653333pt;}
.ws3a{word-spacing:5.706667pt;}
.ws1b{word-spacing:5.760000pt;}
.wscd{word-spacing:5.813333pt;}
.ws10b{word-spacing:5.848000pt;}
.ws87{word-spacing:5.866667pt;}
.wse1{word-spacing:5.973333pt;}
.wsf9{word-spacing:5.984000pt;}
.wsb{word-spacing:6.026667pt;}
.ws10a{word-spacing:6.074667pt;}
.wsc9{word-spacing:6.080000pt;}
.ws67{word-spacing:6.133333pt;}
.ws8c{word-spacing:6.240000pt;}
.wsf8{word-spacing:6.256000pt;}
.wsaf{word-spacing:6.293333pt;}
.ws8a{word-spacing:6.346667pt;}
.ws68{word-spacing:6.400000pt;}
.ws133{word-spacing:6.528000pt;}
.wsb5{word-spacing:6.560000pt;}
.ws27{word-spacing:6.720000pt;}
.ws134{word-spacing:6.800000pt;}
.ws21{word-spacing:6.986667pt;}
.ws49{word-spacing:7.146667pt;}
.ws45{word-spacing:7.200000pt;}
.ws135{word-spacing:7.434667pt;}
.wsdc{word-spacing:7.464192pt;}
.wsae{word-spacing:7.466667pt;}
.ws11d{word-spacing:7.752000pt;}
.ws61{word-spacing:7.893333pt;}
.ws9a{word-spacing:7.946667pt;}
.wsb3{word-spacing:8.000000pt;}
.ws109{word-spacing:8.114667pt;}
.ws66{word-spacing:8.213333pt;}
.ws86{word-spacing:8.426667pt;}
.ws108{word-spacing:8.477333pt;}
.wsd{word-spacing:8.533333pt;}
.ws29{word-spacing:8.640000pt;}
.wsed{word-spacing:9.226667pt;}
.ws9e{word-spacing:9.333333pt;}
.wse3{word-spacing:9.706667pt;}
.ws36{word-spacing:9.893333pt;}
.ws32{word-spacing:10.026667pt;}
.wsef{word-spacing:10.240000pt;}
.ws118{word-spacing:10.245333pt;}
.ws48{word-spacing:10.453333pt;}
.ws139{word-spacing:10.562667pt;}
.ws117{word-spacing:10.698667pt;}
.wse2{word-spacing:10.773333pt;}
.ws31{word-spacing:11.146667pt;}
.ws4a{word-spacing:11.680000pt;}
.ws9{word-spacing:13.013333pt;}
.ws33{word-spacing:14.666667pt;}
.ws19{word-spacing:19.520000pt;}
.ws37{word-spacing:24.714667pt;}
.ws12{word-spacing:28.560000pt;}
.ws75{word-spacing:74.976800pt;}
.ws77{word-spacing:77.918933pt;}
.ws79{word-spacing:97.380533pt;}
.ws7f{word-spacing:97.403200pt;}
.ws70{word-spacing:98.554667pt;}
.ws7c{word-spacing:99.085067pt;}
.ws81{word-spacing:112.608000pt;}
.ws84{word-spacing:115.600000pt;}
.ws72{word-spacing:136.362667pt;}
.ws78{word-spacing:139.490667pt;}
.ws80{word-spacing:169.048000pt;}
.ws83{word-spacing:170.000000pt;}
.ws71{word-spacing:175.440000pt;}
.ws7a{word-spacing:262.280533pt;}
.ws6f{word-spacing:319.291733pt;}
.ws76{word-spacing:341.246667pt;}
.wsc5{word-spacing:697.217312pt;}
.ws82{word-spacing:730.415200pt;}
._2d{margin-left:-97.057107pt;}
._2e{margin-left:-85.871760pt;}
._2f{margin-left:-74.730450pt;}
._6{margin-left:-23.040000pt;}
._38{margin-left:-22.146396pt;}
._e{margin-left:-21.066667pt;}
._2b{margin-left:-19.939200pt;}
._1a{margin-left:-19.032533pt;}
._15{margin-left:-17.405867pt;}
._1b{margin-left:-15.946667pt;}
._9{margin-left:-15.040000pt;}
._d{margin-left:-13.920000pt;}
._12{margin-left:-12.822400pt;}
._3a{margin-left:-11.877333pt;}
._18{margin-left:-10.769067pt;}
._a{margin-left:-9.173333pt;}
._1c{margin-left:-8.266667pt;}
._11{margin-left:-5.513600pt;}
._10{margin-left:-4.538667pt;}
._4{margin-left:-3.554133pt;}
._0{margin-left:-1.874133pt;}
._7{margin-left:-0.979200pt;}
._8{width:1.508267pt;}
._b{width:2.936533pt;}
._16{width:4.416000pt;}
._13{width:5.772800pt;}
._17{width:6.973867pt;}
._3{width:8.773333pt;}
._c{width:10.022400pt;}
._36{width:10.960000pt;}
._19{width:11.900800pt;}
._2c{width:14.140800pt;}
._3c{width:16.626133pt;}
._14{width:18.280533pt;}
._37{width:19.606978pt;}
._5{width:22.176000pt;}
._1d{width:34.680000pt;}
._39{width:45.421867pt;}
._34{width:46.515600pt;}
._21{width:55.488000pt;}
._3b{width:58.344000pt;}
._22{width:66.096000pt;}
._23{width:70.176000pt;}
._24{width:82.418667pt;}
._29{width:89.296000pt;}
._27{width:103.033600pt;}
._20{width:115.192000pt;}
._30{width:121.610892pt;}
._32{width:122.873289pt;}
._33{width:127.953514pt;}
._25{width:146.808267pt;}
._28{width:204.926667pt;}
._26{width:206.026933pt;}
._1f{width:269.506667pt;}
._31{width:273.399078pt;}
._2a{width:275.725867pt;}
._1e{width:279.525333pt;}
._1{width:506.060800pt;}
._35{width:614.812190pt;}
._2{width:927.285333pt;}
._f{width:1439.855467pt;}
.fsd{font-size:24.320000pt;}
.fs8{font-size:29.866667pt;}
.fs0{font-size:37.333333pt;}
.fsf{font-size:40.000000pt;}
.fs9{font-size:42.666667pt;}
.fs10{font-size:44.036800pt;}
.fs6{font-size:44.800000pt;}
.fsc{font-size:45.333333pt;}
.fs3{font-size:48.000000pt;}
.fsa{font-size:53.333333pt;}
.fs11{font-size:60.114133pt;}
.fs12{font-size:60.156800pt;}
.fs15{font-size:62.020800pt;}
.fs16{font-size:62.201600pt;}
.fs13{font-size:63.716800pt;}
.fs5{font-size:64.000000pt;}
.fs14{font-size:66.869867pt;}
.fse{font-size:74.666667pt;}
.fsb{font-size:75.413333pt;}
.fs1{font-size:78.400000pt;}
.fs7{font-size:83.200000pt;}
.fs2{font-size:92.586667pt;}
.fs4{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:26.340267pt;}
.y1{bottom:27.566933pt;}
.y3{bottom:27.585200pt;}
.yda{bottom:35.401333pt;}
.yd3{bottom:36.737067pt;}
.yd9{bottom:51.404000pt;}
.y1b{bottom:54.058667pt;}
.ye6{bottom:54.068000pt;}
.y9e{bottom:54.070400pt;}
.y5e{bottom:54.070533pt;}
.yb1{bottom:54.070667pt;}
.y115{bottom:56.713067pt;}
.y1a{bottom:67.396000pt;}
.ye5{bottom:70.070667pt;}
.y9d{bottom:71.403733pt;}
.y5d{bottom:71.403867pt;}
.y114{bottom:72.047067pt;}
.yb0{bottom:76.082667pt;}
.y19{bottom:80.733333pt;}
.y113{bottom:87.381067pt;}
.y148{bottom:88.286133pt;}
.y9c{bottom:88.737067pt;}
.y5c{bottom:88.737200pt;}
.y18{bottom:94.070667pt;}
.yaf{bottom:95.383333pt;}
.yc1{bottom:97.314584pt;}
.yd0{bottom:97.942108pt;}
.y112{bottom:102.715067pt;}
.y147{bottom:103.620133pt;}
.y9b{bottom:106.070400pt;}
.y5b{bottom:106.070533pt;}
.ye8{bottom:107.373333pt;}
.ye7{bottom:107.875867pt;}
.yae{bottom:110.717333pt;}
.yc0{bottom:115.578846pt;}
.ycf{bottom:116.206371pt;}
.y111{bottom:118.049067pt;}
.y146{bottom:118.954133pt;}
.y1f{bottom:120.870667pt;}
.y9a{bottom:123.403733pt;}
.y5a{bottom:123.403867pt;}
.yad{bottom:126.051333pt;}
.ye1{bottom:128.657180pt;}
.y110{bottom:133.383067pt;}
.ybf{bottom:133.843109pt;}
.y145{bottom:134.288133pt;}
.yce{bottom:134.470634pt;}
.y1e{bottom:135.537333pt;}
.y99{bottom:140.737067pt;}
.y59{bottom:140.737200pt;}
.yac{bottom:141.385333pt;}
.y10f{bottom:148.717067pt;}
.y144{bottom:149.622133pt;}
.y1d{bottom:150.204000pt;}
.ybe{bottom:152.107372pt;}
.ycd{bottom:152.734896pt;}
.ye0{bottom:156.135050pt;}
.y98{bottom:158.070400pt;}
.y58{bottom:158.070533pt;}
.yab{bottom:160.686000pt;}
.y10e{bottom:164.051067pt;}
.y1c{bottom:164.870667pt;}
.y143{bottom:164.956133pt;}
.ybd{bottom:170.371635pt;}
.ycc{bottom:170.999159pt;}
.y97{bottom:175.403733pt;}
.y57{bottom:175.403867pt;}
.yaa{bottom:176.020000pt;}
.y10d{bottom:179.385067pt;}
.y142{bottom:180.290133pt;}
.ydf{bottom:183.612920pt;}
.ybc{bottom:188.635898pt;}
.ycb{bottom:189.263422pt;}
.ya9{bottom:191.354000pt;}
.y96{bottom:192.737067pt;}
.y56{bottom:192.737200pt;}
.y10c{bottom:194.719067pt;}
.y141{bottom:195.624133pt;}
.ybb{bottom:206.900160pt;}
.y38{bottom:206.911467pt;}
.yca{bottom:207.527685pt;}
.y10b{bottom:210.053067pt;}
.yd2{bottom:210.070400pt;}
.y55{bottom:210.070533pt;}
.ya8{bottom:210.654667pt;}
.y140{bottom:210.958133pt;}
.yde{bottom:211.090790pt;}
.yba{bottom:225.164423pt;}
.y10a{bottom:225.387067pt;}
.yc9{bottom:225.791948pt;}
.y13f{bottom:226.292133pt;}
.y37{bottom:226.911467pt;}
.y95{bottom:227.403733pt;}
.y54{bottom:227.403867pt;}
.ya7{bottom:229.955333pt;}
.ydd{bottom:238.568660pt;}
.y109{bottom:240.721067pt;}
.y13e{bottom:241.626133pt;}
.yb9{bottom:243.428686pt;}
.yc8{bottom:244.056210pt;}
.yb3{bottom:244.737067pt;}
.y53{bottom:244.737200pt;}
.y36{bottom:246.911467pt;}
.y2c{bottom:247.612000pt;}
.ya6{bottom:249.256000pt;}
.y108{bottom:256.055067pt;}
.y13d{bottom:256.960133pt;}
.yb8{bottom:261.692949pt;}
.yb2{bottom:262.070400pt;}
.y52{bottom:262.070533pt;}
.y2b{bottom:262.278667pt;}
.yc7{bottom:262.320473pt;}
.ydc{bottom:266.046530pt;}
.y35{bottom:266.911467pt;}
.ya5{bottom:268.556667pt;}
.y107{bottom:271.389067pt;}
.y13c{bottom:272.294133pt;}
.ye3{bottom:275.326933pt;}
.y2a{bottom:276.945333pt;}
.y94{bottom:279.403733pt;}
.y51{bottom:279.403867pt;}
.yb7{bottom:279.957212pt;}
.yc6{bottom:280.584736pt;}
.y106{bottom:286.723067pt;}
.y34{bottom:286.911467pt;}
.y13b{bottom:287.628133pt;}
.ya4{bottom:287.857333pt;}
.ye2{bottom:291.329600pt;}
.y29{bottom:291.612000pt;}
.ydb{bottom:293.524400pt;}
.y93{bottom:296.737067pt;}
.y50{bottom:296.737200pt;}
.yb6{bottom:298.221474pt;}
.yc5{bottom:298.848999pt;}
.y105{bottom:302.057067pt;}
.y13a{bottom:302.962133pt;}
.ya3{bottom:303.191333pt;}
.y28{bottom:306.278667pt;}
.y33{bottom:306.911467pt;}
.y92{bottom:314.070400pt;}
.y4f{bottom:314.070533pt;}
.yd1{bottom:314.075733pt;}
.yb5{bottom:316.485737pt;}
.yc4{bottom:317.113262pt;}
.y104{bottom:317.391067pt;}
.y139{bottom:318.296133pt;}
.y27{bottom:320.945333pt;}
.ya2{bottom:322.492000pt;}
.y32{bottom:326.911467pt;}
.ye4{bottom:329.508133pt;}
.y91{bottom:331.403733pt;}
.y4e{bottom:331.403867pt;}
.y103{bottom:332.725067pt;}
.y138{bottom:333.630133pt;}
.yb4{bottom:334.750000pt;}
.yc3{bottom:335.377524pt;}
.y26{bottom:335.612000pt;}
.ya1{bottom:337.826000pt;}
.y31{bottom:346.911467pt;}
.y102{bottom:348.059067pt;}
.y90{bottom:348.737067pt;}
.y4d{bottom:348.737200pt;}
.y137{bottom:348.964133pt;}
.yc2{bottom:358.827120pt;}
.ya0{bottom:359.994000pt;}
.yd7{bottom:363.302267pt;}
.y101{bottom:363.393067pt;}
.y136{bottom:364.298133pt;}
.y25{bottom:364.945333pt;}
.y8f{bottom:366.070400pt;}
.y4c{bottom:366.070533pt;}
.y30{bottom:366.911467pt;}
.y100{bottom:378.727067pt;}
.y24{bottom:379.612000pt;}
.y135{bottom:379.632133pt;}
.y8e{bottom:383.403733pt;}
.y4b{bottom:383.403867pt;}
.y9f{bottom:385.496533pt;}
.y2f{bottom:386.911467pt;}
.yff{bottom:394.061067pt;}
.y23{bottom:394.278667pt;}
.y134{bottom:394.966133pt;}
.yd8{bottom:399.979467pt;}
.y8d{bottom:400.737067pt;}
.y4a{bottom:400.737200pt;}
.y2e{bottom:406.911467pt;}
.y22{bottom:408.945333pt;}
.yfe{bottom:409.395067pt;}
.y133{bottom:410.300133pt;}
.y8c{bottom:418.070400pt;}
.y49{bottom:418.070533pt;}
.y21{bottom:423.612000pt;}
.yfd{bottom:424.729067pt;}
.y132{bottom:425.634133pt;}
.y2d{bottom:426.911467pt;}
.y8b{bottom:435.403733pt;}
.y48{bottom:435.403867pt;}
.y20{bottom:438.278667pt;}
.yfc{bottom:440.063067pt;}
.y131{bottom:440.968133pt;}
.y8a{bottom:452.737067pt;}
.y47{bottom:452.737200pt;}
.yfb{bottom:455.397067pt;}
.y130{bottom:456.302133pt;}
.y89{bottom:470.070400pt;}
.y46{bottom:470.070533pt;}
.yfa{bottom:470.731067pt;}
.y12f{bottom:471.636133pt;}
.y157{bottom:478.102133pt;}
.yf9{bottom:486.065067pt;}
.y12e{bottom:486.970133pt;}
.y88{bottom:487.403733pt;}
.y45{bottom:487.403867pt;}
.y72{bottom:487.409200pt;}
.y17{bottom:489.871200pt;}
.y156{bottom:495.435467pt;}
.yf8{bottom:501.399067pt;}
.y12d{bottom:502.304133pt;}
.y87{bottom:504.737067pt;}
.y44{bottom:504.737200pt;}
.y16{bottom:508.537867pt;}
.y155{bottom:512.768800pt;}
.yf7{bottom:516.733067pt;}
.y12c{bottom:517.638133pt;}
.y86{bottom:522.070400pt;}
.y43{bottom:522.070533pt;}
.y15{bottom:527.204533pt;}
.y154{bottom:530.102133pt;}
.yf6{bottom:532.067067pt;}
.y12b{bottom:532.972133pt;}
.y85{bottom:539.403733pt;}
.y42{bottom:539.403867pt;}
.y14{bottom:545.871200pt;}
.yf5{bottom:547.401067pt;}
.y12a{bottom:548.306133pt;}
.y84{bottom:556.737067pt;}
.y41{bottom:556.737200pt;}
.yf4{bottom:562.735067pt;}
.y129{bottom:563.640133pt;}
.y13{bottom:564.537867pt;}
.y83{bottom:574.070400pt;}
.y40{bottom:574.070533pt;}
.yf3{bottom:578.069067pt;}
.y128{bottom:578.974133pt;}
.y12{bottom:589.071200pt;}
.y82{bottom:591.403733pt;}
.y3f{bottom:591.403867pt;}
.yf2{bottom:593.403067pt;}
.y127{bottom:594.308133pt;}
.y81{bottom:608.737067pt;}
.y3e{bottom:608.737200pt;}
.y126{bottom:609.642133pt;}
.y153{bottom:610.795467pt;}
.y11{bottom:611.071200pt;}
.y10{bottom:613.071200pt;}
.y125{bottom:624.976133pt;}
.y80{bottom:626.070400pt;}
.y3d{bottom:626.070533pt;}
.y152{bottom:628.128800pt;}
.yea{bottom:634.401333pt;}
.yf{bottom:635.071200pt;}
.ye{bottom:637.071200pt;}
.y124{bottom:640.310133pt;}
.y7f{bottom:643.403733pt;}
.y3c{bottom:643.403867pt;}
.ye9{bottom:650.404000pt;}
.y123{bottom:655.644133pt;}
.yd{bottom:659.071200pt;}
.y7e{bottom:660.737067pt;}
.y71{bottom:660.737200pt;}
.yc{bottom:661.071200pt;}
.y151{bottom:662.795467pt;}
.y122{bottom:670.978133pt;}
.y7d{bottom:678.070400pt;}
.y3b{bottom:678.070533pt;}
.y150{bottom:680.128800pt;}
.yd5{bottom:681.705200pt;}
.y121{bottom:686.312133pt;}
.yf1{bottom:687.747493pt;}
.y7c{bottom:695.403733pt;}
.y70{bottom:695.403867pt;}
.yd4{bottom:697.707867pt;}
.y120{bottom:701.646133pt;}
.y7b{bottom:712.737067pt;}
.y6f{bottom:712.737200pt;}
.yb{bottom:713.060667pt;}
.yf0{bottom:714.571933pt;}
.y14f{bottom:714.795467pt;}
.y11f{bottom:716.980133pt;}
.y7a{bottom:730.070400pt;}
.y6e{bottom:730.070533pt;}
.y14e{bottom:732.128800pt;}
.y11e{bottom:732.314133pt;}
.yd6{bottom:735.729867pt;}
.yef{bottom:741.396373pt;}
.ya{bottom:743.732667pt;}
.y79{bottom:747.403733pt;}
.y6d{bottom:747.403867pt;}
.y11d{bottom:747.648133pt;}
.y63{bottom:753.462133pt;}
.y11c{bottom:762.982133pt;}
.y78{bottom:764.737067pt;}
.y6c{bottom:764.737200pt;}
.y14d{bottom:766.795467pt;}
.yee{bottom:768.220813pt;}
.y62{bottom:772.128800pt;}
.y9{bottom:774.404667pt;}
.y11b{bottom:778.316133pt;}
.y77{bottom:782.070400pt;}
.y6b{bottom:782.070533pt;}
.y14c{bottom:784.128800pt;}
.y11a{bottom:793.650133pt;}
.yed{bottom:795.045253pt;}
.y76{bottom:799.403733pt;}
.y6a{bottom:799.403867pt;}
.y61{bottom:804.128800pt;}
.y119{bottom:808.984133pt;}
.y75{bottom:816.737067pt;}
.y69{bottom:816.737200pt;}
.y14b{bottom:818.795467pt;}
.yec{bottom:821.869693pt;}
.y60{bottom:824.128800pt;}
.y118{bottom:824.318133pt;}
.y74{bottom:834.070400pt;}
.y68{bottom:834.070533pt;}
.y14a{bottom:836.128800pt;}
.y8{bottom:837.071333pt;}
.y117{bottom:839.652133pt;}
.y5f{bottom:844.128800pt;}
.yeb{bottom:848.694133pt;}
.y73{bottom:851.403733pt;}
.y67{bottom:851.403867pt;}
.y149{bottom:853.462133pt;}
.y116{bottom:854.986133pt;}
.y7{bottom:872.973200pt;}
.y5{bottom:886.718533pt;}
.y3a{bottom:888.748000pt;}
.y65{bottom:888.854667pt;}
.y39{bottom:891.588000pt;}
.y66{bottom:891.590533pt;}
.y4{bottom:892.449200pt;}
.y6{bottom:892.451867pt;}
.y64{bottom:911.173333pt;}
.h14{height:23.868750pt;}
.ha{height:24.669867pt;}
.hf{height:29.306667pt;}
.h18{height:29.945024pt;}
.h2{height:30.837333pt;}
.h11{height:30.847467pt;}
.h17{height:33.040000pt;}
.hc{height:33.493333pt;}
.hb{height:35.242667pt;}
.h16{height:35.586667pt;}
.h12{height:37.445333pt;}
.h5{height:37.680000pt;}
.h1e{height:41.808976pt;}
.hd{height:41.866667pt;}
.h1f{height:43.104456pt;}
.h20{height:43.230112pt;}
.he{height:44.053333pt;}
.h1c{height:44.283176pt;}
.h1d{height:45.204030pt;}
.h1a{height:45.386171pt;}
.h1b{height:49.328576pt;}
.h9{height:50.240000pt;}
.h19{height:52.864000pt;}
.h15{height:58.613333pt;}
.h10{height:59.199467pt;}
.h7{height:63.968000pt;}
.h3{height:64.758400pt;}
.h8{height:68.723200pt;}
.h6{height:75.360000pt;}
.h4{height:76.476587pt;}
.h13{height:929.760000pt;}
.h0{height:929.764000pt;}
.h1{height:930.000000pt;}
.w1{width:646.000000pt;}
.w2{width:646.293333pt;}
.w0{width:646.298667pt;}
.x0{left:0.000000pt;}
.x1{left:54.047200pt;}
.x19{left:58.047200pt;}
.x33{left:62.047200pt;}
.x30{left:63.760667pt;}
.x15{left:71.380533pt;}
.x13{left:76.064400pt;}
.x14{left:78.416267pt;}
.x2c{left:80.662933pt;}
.x2a{left:104.342159pt;}
.x29{left:131.160570pt;}
.x31{left:132.822533pt;}
.x2d{left:140.987200pt;}
.x2b{left:155.865215pt;}
.x27{left:159.454214pt;}
.x28{left:162.690919pt;}
.x5{left:164.766667pt;}
.x6{left:168.037067pt;}
.x24{left:170.133138pt;}
.x1b{left:174.667200pt;}
.x26{left:175.681775pt;}
.x25{left:177.487283pt;}
.x23{left:198.977242pt;}
.x22{left:225.432349pt;}
.x21{left:228.691073pt;}
.x20{left:235.219528pt;}
.xf{left:241.061333pt;}
.x10{left:245.333333pt;}
.x1f{left:248.276439pt;}
.x7{left:266.181467pt;}
.xb{left:268.085333pt;}
.x8{left:270.453467pt;}
.xc{left:272.357333pt;}
.x2f{left:276.966267pt;}
.x32{left:286.606267pt;}
.x1e{left:310.280254pt;}
.x2e{left:321.516933pt;}
.x1d{left:333.124344pt;}
.x4{left:412.245333pt;}
.x1a{left:458.827867pt;}
.x11{left:470.475467pt;}
.x12{left:474.747333pt;}
.x1c{left:506.067867pt;}
.x9{left:518.843067pt;}
.xa{left:523.115067pt;}
.xd{left:534.586267pt;}
.xe{left:538.858267pt;}
.x17{left:542.946400pt;}
.x2{left:566.531600pt;}
.x18{left:567.735733pt;}
.x3{left:569.596667pt;}
.x16{left:626.893333pt;}
}




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