
    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_e4e7f3dcf479383d138c7fed.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_a4f2077c0fb322aef5db2c90.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.022461;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_46373bff9ac6375c3e194f02.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.760309;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_ee4ad83f87a050314145a031.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.041992;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_a18dddd8e64e2f5771ea79ed.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031738;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_5b22a51244d96cfc9bd2cf6b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_b230530f93af638e5c93cfa7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.026855;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_d3ff4ad2d1d455d5cdb91837.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.011230;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_9e0ce712f76c0b7acb5018b9.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.041992;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_9b2172b549b0b0c5aa42c517.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976118;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_b9c99589af08504b80d7ffe0.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_a0d53b3fbb469075b526241e.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.760345;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_0e61c521a3e3dad0169de90f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005371;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_644795147d08047ab22fc479.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.965352;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_141f2c9791d731c88413e713.woff2')format("woff");}.fff{font-family:fff;line-height:0.976094;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:ff10;src:url('chunks/assets/font_74dcbc9d15ba2c9d57728b61.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.770020;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:18.630000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v4{vertical-align:30.000000px;}
.ls9{letter-spacing:-9.504000px;}
.ls20{letter-spacing:-9.480000px;}
.ls22{letter-spacing:-8.400000px;}
.lsd{letter-spacing:-8.208000px;}
.ls19{letter-spacing:-7.236000px;}
.lsc{letter-spacing:-4.212000px;}
.ls8{letter-spacing:-3.672000px;}
.ls18{letter-spacing:-3.240000px;}
.ls7{letter-spacing:-0.972000px;}
.ls12{letter-spacing:-0.960000px;}
.lsb{letter-spacing:-0.918000px;}
.ls6{letter-spacing:-0.691200px;}
.ls1a{letter-spacing:-0.600000px;}
.ls1f{letter-spacing:-0.480000px;}
.lsa{letter-spacing:-0.420000px;}
.ls5{letter-spacing:-0.384000px;}
.lse{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.300000px;}
.ls3{letter-spacing:-0.204000px;}
.ls4{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.420000px;}
.ls14{letter-spacing:0.450000px;}
.ls16{letter-spacing:0.510000px;}
.ls15{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.600000px;}
.ls1c{letter-spacing:0.630000px;}
.ls1e{letter-spacing:0.690000px;}
.ls1d{letter-spacing:0.720000px;}
.ls21{letter-spacing:1.080000px;}
.ls17{letter-spacing:2.916000px;}
.ls0{letter-spacing:43.181364px;}
.ls1{letter-spacing:43.181964px;}
.ls10{letter-spacing:626.688000px;}
.ls11{letter-spacing:672.336000px;}
.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;}
}
.ws98{word-spacing:-60.000000px;}
.ws7{word-spacing:-48.000000px;}
.ws3{word-spacing:-47.856000px;}
.ws6{word-spacing:-47.616000px;}
.ws57{word-spacing:-47.040000px;}
.wse{word-spacing:-17.928000px;}
.wsba{word-spacing:-16.434000px;}
.wsaf{word-spacing:-15.780000px;}
.ws91{word-spacing:-15.420000px;}
.ws6c{word-spacing:-15.240000px;}
.ws7b{word-spacing:-15.120000px;}
.ws9{word-spacing:-14.940000px;}
.ws46{word-spacing:-14.880000px;}
.ws5a{word-spacing:-14.820000px;}
.ws7c{word-spacing:-14.700000px;}
.ws44{word-spacing:-14.580000px;}
.ws99{word-spacing:-14.460000px;}
.ws45{word-spacing:-14.400000px;}
.ws77{word-spacing:-13.446000px;}
.wsbb{word-spacing:-13.392000px;}
.wsbc{word-spacing:-13.230000px;}
.ws3c{word-spacing:-12.474000px;}
.ws10{word-spacing:-12.366000px;}
.wsa{word-spacing:-12.258000px;}
.ws14{word-spacing:-12.150000px;}
.ws4{word-spacing:-11.596800px;}
.ws11{word-spacing:-11.448000px;}
.ws12{word-spacing:-11.232000px;}
.ws2{word-spacing:-11.184000px;}
.ws15{word-spacing:-10.992000px;}
.ws3b{word-spacing:-10.800000px;}
.ws5{word-spacing:-10.492800px;}
.ws76{word-spacing:-10.206000px;}
.ws8{word-spacing:-9.892800px;}
.ws1{word-spacing:-9.618000px;}
.wsb{word-spacing:-9.558000px;}
.ws3d{word-spacing:-9.234000px;}
.wsf{word-spacing:-8.675040px;}
.wsc3{word-spacing:-7.807536px;}
.wsad{word-spacing:-7.320000px;}
.ws78{word-spacing:-6.210000px;}
.wsa2{word-spacing:-5.640000px;}
.wsa3{word-spacing:-5.580000px;}
.ws3e{word-spacing:-5.238000px;}
.ws41{word-spacing:-4.212000px;}
.ws1e{word-spacing:-3.996000px;}
.ws21{word-spacing:-3.888000px;}
.wsa7{word-spacing:-3.780000px;}
.wsa8{word-spacing:-3.720000px;}
.ws5b{word-spacing:-3.540000px;}
.ws47{word-spacing:-3.360000px;}
.ws22{word-spacing:-3.186000px;}
.ws1d{word-spacing:-3.024000px;}
.ws1f{word-spacing:-2.970000px;}
.ws20{word-spacing:-2.916000px;}
.wsa4{word-spacing:-2.700000px;}
.ws61{word-spacing:-2.400000px;}
.wsc7{word-spacing:-2.268000px;}
.ws8e{word-spacing:-2.214000px;}
.ws8f{word-spacing:-2.160000px;}
.ws9f{word-spacing:-2.100000px;}
.ws9b{word-spacing:-2.040000px;}
.ws5f{word-spacing:-1.980000px;}
.ws65{word-spacing:-1.920000px;}
.wsb1{word-spacing:-1.860000px;}
.ws1a{word-spacing:-1.728000px;}
.ws40{word-spacing:-1.680000px;}
.ws8d{word-spacing:-1.560000px;}
.ws54{word-spacing:-1.500000px;}
.ws29{word-spacing:-1.458000px;}
.ws87{word-spacing:-1.260000px;}
.ws72{word-spacing:-1.140000px;}
.ws68{word-spacing:-1.080000px;}
.ws39{word-spacing:-1.026000px;}
.ws7d{word-spacing:-1.020000px;}
.ws59{word-spacing:-0.960000px;}
.ws33{word-spacing:-0.918000px;}
.ws97{word-spacing:-0.900000px;}
.ws6d{word-spacing:-0.780000px;}
.ws94{word-spacing:-0.600000px;}
.wsc5{word-spacing:-0.540000px;}
.wsb3{word-spacing:-0.480000px;}
.ws75{word-spacing:-0.420000px;}
.ws56{word-spacing:-0.300000px;}
.ws93{word-spacing:-0.240000px;}
.ws17{word-spacing:-0.216000px;}
.wsb2{word-spacing:-0.120000px;}
.ws7e{word-spacing:-0.060000px;}
.ws13{word-spacing:-0.054000px;}
.ws16{word-spacing:0.000000px;}
.ws34{word-spacing:0.054000px;}
.wsa1{word-spacing:0.060000px;}
.ws0{word-spacing:0.102000px;}
.ws9e{word-spacing:0.120000px;}
.wsc1{word-spacing:0.270000px;}
.ws53{word-spacing:0.300000px;}
.ws48{word-spacing:0.360000px;}
.ws23{word-spacing:0.378000px;}
.ws37{word-spacing:0.420000px;}
.ws36{word-spacing:0.480000px;}
.ws86{word-spacing:0.600000px;}
.ws26{word-spacing:0.648000px;}
.ws18{word-spacing:0.691200px;}
.wsc9{word-spacing:0.702000px;}
.ws49{word-spacing:0.900000px;}
.ws3a{word-spacing:0.918000px;}
.ws58{word-spacing:0.960000px;}
.ws19{word-spacing:0.972000px;}
.ws95{word-spacing:1.020000px;}
.ws3f{word-spacing:1.440000px;}
.ws9c{word-spacing:1.560000px;}
.ws90{word-spacing:1.566000px;}
.ws27{word-spacing:1.620000px;}
.ws85{word-spacing:1.740000px;}
.wsb9{word-spacing:2.160000px;}
.ws25{word-spacing:2.322000px;}
.ws9a{word-spacing:2.460000px;}
.ws35{word-spacing:2.592000px;}
.ws4e{word-spacing:2.760000px;}
.ws7a{word-spacing:2.916000px;}
.ws79{word-spacing:2.970000px;}
.ws8c{word-spacing:3.060000px;}
.wsb0{word-spacing:3.210000px;}
.ws42{word-spacing:3.240000px;}
.ws24{word-spacing:3.294000px;}
.ws83{word-spacing:3.300000px;}
.ws4a{word-spacing:3.480000px;}
.ws43{word-spacing:3.564000px;}
.ws74{word-spacing:3.720000px;}
.ws73{word-spacing:3.780000px;}
.ws28{word-spacing:3.834000px;}
.ws4c{word-spacing:3.900000px;}
.ws7f{word-spacing:4.200000px;}
.wsa5{word-spacing:4.206000px;}
.ws64{word-spacing:4.320000px;}
.ws6a{word-spacing:4.560000px;}
.wscc{word-spacing:4.590000px;}
.ws69{word-spacing:4.620000px;}
.wsa9{word-spacing:4.740000px;}
.ws60{word-spacing:4.800000px;}
.wsc{word-spacing:4.806000px;}
.wsd{word-spacing:4.833000px;}
.wsa6{word-spacing:5.100000px;}
.ws81{word-spacing:5.160000px;}
.ws2b{word-spacing:5.184000px;}
.wsa0{word-spacing:5.340000px;}
.ws80{word-spacing:5.400000px;}
.ws6b{word-spacing:5.580000px;}
.ws88{word-spacing:5.700000px;}
.ws89{word-spacing:5.760000px;}
.ws38{word-spacing:5.940000px;}
.ws92{word-spacing:6.000000px;}
.wsc6{word-spacing:6.048000px;}
.ws2a{word-spacing:6.102000px;}
.ws2d{word-spacing:6.156000px;}
.ws4f{word-spacing:6.420000px;}
.ws63{word-spacing:6.480000px;}
.ws6e{word-spacing:6.660000px;}
.ws55{word-spacing:6.720000px;}
.ws4d{word-spacing:6.840000px;}
.ws2e{word-spacing:7.074000px;}
.ws2c{word-spacing:7.128000px;}
.ws4b{word-spacing:7.200000px;}
.ws62{word-spacing:7.380000px;}
.ws66{word-spacing:7.500000px;}
.ws2f{word-spacing:7.560000px;}
.ws5c{word-spacing:7.740000px;}
.ws84{word-spacing:7.800000px;}
.wsb6{word-spacing:7.920000px;}
.ws1b{word-spacing:8.208000px;}
.ws8b{word-spacing:8.340000px;}
.ws50{word-spacing:8.400000px;}
.ws5e{word-spacing:8.460000px;}
.ws5d{word-spacing:8.520000px;}
.ws30{word-spacing:8.532000px;}
.ws82{word-spacing:8.700000px;}
.ws71{word-spacing:8.940000px;}
.wsb5{word-spacing:9.000000px;}
.ws1c{word-spacing:9.180000px;}
.ws70{word-spacing:9.600000px;}
.ws6f{word-spacing:9.660000px;}
.ws51{word-spacing:9.840000px;}
.ws67{word-spacing:10.380000px;}
.wsc4{word-spacing:10.422000px;}
.ws8a{word-spacing:10.440000px;}
.wsb4{word-spacing:10.920000px;}
.wsb8{word-spacing:11.040000px;}
.wsac{word-spacing:11.880000px;}
.wsb7{word-spacing:12.120000px;}
.ws31{word-spacing:12.906000px;}
.wsaa{word-spacing:13.020000px;}
.ws32{word-spacing:13.878000px;}
.wsab{word-spacing:14.340000px;}
.wsc0{word-spacing:14.472000px;}
.wsbd{word-spacing:14.526000px;}
.wsca{word-spacing:15.174000px;}
.wsbe{word-spacing:16.146000px;}
.ws52{word-spacing:16.200000px;}
.wsae{word-spacing:19.440000px;}
.wsc8{word-spacing:20.142000px;}
.wsc2{word-spacing:21.492000px;}
.wscb{word-spacing:21.870000px;}
.wscd{word-spacing:24.786000px;}
.ws9d{word-spacing:29.220000px;}
.wsbf{word-spacing:32.184000px;}
.ws96{word-spacing:35.400000px;}
._e{margin-left:-11.583600px;}
._c6{margin-left:-10.314000px;}
._c9{margin-left:-8.893800px;}
._6{margin-left:-7.312800px;}
._4{margin-left:-5.834400px;}
._5{margin-left:-4.386000px;}
._7{margin-left:-3.288000px;}
._1{margin-left:-2.233800px;}
._2{margin-left:-1.040400px;}
._3{width:1.101600px;}
._0{width:2.458200px;}
._a{width:3.726000px;}
._b{width:5.167800px;}
._c5{width:6.183000px;}
._8{width:7.214400px;}
._9{width:8.650200px;}
._10{width:9.868200px;}
._d{width:11.070000px;}
._c{width:12.371400px;}
._f{width:13.461600px;}
._cf{width:14.602200px;}
._c4{width:16.194000px;}
._d4{width:17.214000px;}
._c8{width:19.416000px;}
._d1{width:20.611800px;}
._d0{width:21.722400px;}
._d2{width:23.416200px;}
._cd{width:24.759000px;}
._d5{width:28.836000px;}
._d6{width:29.921400px;}
._cb{width:32.097600px;}
._ce{width:34.165800px;}
._c7{width:35.400000px;}
._d3{width:36.444600px;}
._ca{width:43.267200px;}
._cc{width:52.623000px;}
._51{width:61.093200px;}
._30{width:74.101200px;}
._2e{width:119.749200px;}
._3c{width:120.774000px;}
._95{width:128.607000px;}
._7a{width:145.866000px;}
._87{width:152.887200px;}
._76{width:158.874000px;}
._3d{width:174.334200px;}
._97{width:195.664800px;}
._84{width:204.522000px;}
._21{width:220.566600px;}
._b1{width:224.713800px;}
._80{width:226.681800px;}
._82{width:229.309800px;}
._1e{width:234.073800px;}
._8e{width:235.264800px;}
._1a{width:247.081800px;}
._89{width:248.084400px;}
._8c{width:255.277800px;}
._9b{width:258.331800px;}
._74{width:273.193800px;}
._73{width:278.650200px;}
._69{width:279.721800px;}
._14{width:285.481800px;}
._38{width:292.729800px;}
._9a{width:297.082200px;}
._16{width:298.153800px;}
._9f{width:300.948000px;}
._2f{width:308.617800px;}
._c2{width:309.774600px;}
._ae{width:311.113800px;}
._bb{width:322.672800px;}
._26{width:324.121800px;}
._86{width:327.428400px;}
._b5{width:359.929800px;}
._a0{width:363.895200px;}
._55{width:369.817800px;}
._c0{width:371.847000px;}
._ad{width:372.889800px;}
._9c{width:384.831600px;}
._24{width:385.897800px;}
._96{width:394.209600px;}
._a6{width:401.789400px;}
._7c{width:412.992000px;}
._32{width:414.195600px;}
._19{width:415.602600px;}
._53{width:417.216000px;}
._18{width:418.585800px;}
._90{width:422.056800px;}
._70{width:426.201000px;}
._67{width:430.086600px;}
._3a{width:431.593800px;}
._79{width:434.292000px;}
._83{width:436.210200px;}
._68{width:446.315400px;}
._1c{width:452.281800px;}
._20{width:455.558400px;}
._12{width:457.657800px;}
._62{width:461.892000px;}
._37{width:468.228000px;}
._72{width:471.648000px;}
._94{width:474.858600px;}
._1d{width:477.654000px;}
._3b{width:481.643400px;}
._7e{width:489.610200px;}
._75{width:497.194200px;}
._b0{width:503.252400px;}
._8f{width:508.794600px;}
._64{width:530.290200px;}
._6c{width:531.472800px;}
._ac{width:534.666600px;}
._48{width:537.856800px;}
._6a{width:540.163200px;}
._78{width:546.538200px;}
._b7{width:554.235000px;}
._b9{width:555.729600px;}
._7f{width:564.516000px;}
._50{width:570.804000px;}
._45{width:573.891600px;}
._4f{width:577.140000px;}
._bf{width:582.304800px;}
._2d{width:583.971600px;}
._b8{width:587.396400px;}
._c1{width:590.922600px;}
._91{width:600.651000px;}
._5b{width:604.116000px;}
._92{width:606.369600px;}
._5a{width:608.244000px;}
._81{width:609.972000px;}
._a4{width:611.412000px;}
._31{width:613.858200px;}
._43{width:619.796400px;}
._71{width:621.965400px;}
._49{width:623.329200px;}
._59{width:627.034200px;}
._1b{width:631.435800px;}
._44{width:634.836000px;}
._5e{width:637.428000px;}
._2a{width:640.585800px;}
._93{width:641.595000px;}
._34{width:647.427600px;}
._36{width:651.082200px;}
._88{width:652.803600px;}
._2b{width:657.492000px;}
._57{width:663.178200px;}
._33{width:670.083600px;}
._b2{width:671.412000px;}
._25{width:672.753600px;}
._4c{width:675.466200px;}
._c3{width:679.240800px;}
._58{width:682.330200px;}
._7b{width:683.482200px;}
._85{width:684.740400px;}
._bc{width:686.228400px;}
._ab{width:689.082600px;}
._3e{width:691.786200px;}
._46{width:693.476400px;}
._5d{width:697.044000px;}
._a9{width:698.091600px;}
._4d{width:699.946200px;}
._7d{width:701.370600px;}
._b3{width:705.683400px;}
._aa{width:710.652000px;}
._3f{width:713.545800px;}
._56{width:717.232800px;}
._a5{width:723.420000px;}
._40{width:725.161800px;}
._be{width:726.928800px;}
._77{width:734.792400px;}
._b6{width:736.692000px;}
._47{width:737.840400px;}
._8b{width:742.297800px;}
._af{width:750.538200px;}
._6f{width:754.445400px;}
._2c{width:759.505800px;}
._b4{width:762.481800px;}
._bd{width:769.899000px;}
._5c{width:787.524000px;}
._61{width:790.234200px;}
._a1{width:792.149400px;}
._22{width:793.460400px;}
._60{width:797.108400px;}
._99{width:803.968800px;}
._65{width:805.164600px;}
._41{width:807.315600px;}
._1f{width:810.461400px;}
._a8{width:816.339600px;}
._54{width:827.080800px;}
._27{width:830.700000px;}
._13{width:834.460200px;}
._4a{width:836.131200px;}
._5f{width:844.963200px;}
._6d{width:852.075000px;}
._63{width:857.412000px;}
._29{width:861.267600px;}
._a2{width:866.320200px;}
._42{width:876.138600px;}
._6e{width:877.395600px;}
._23{width:883.024800px;}
._4e{width:885.780000px;}
._39{width:893.069400px;}
._52{width:895.524000px;}
._8a{width:898.851600px;}
._6b{width:910.635000px;}
._15{width:916.426200px;}
._8d{width:933.241800px;}
._9e{width:945.258600px;}
._28{width:947.076000px;}
._98{width:949.642200px;}
._11{width:956.688000px;}
._a3{width:958.098000px;}
._ba{width:972.618600px;}
._a7{width:987.588000px;}
._35{width:1009.971600px;}
._4b{width:1028.948400px;}
._66{width:1050.651000px;}
._17{width:1053.162600px;}
._9d{width:1163.442600px;}
.fc4{color:rgb(38,64,138);}
.fc2{color:rgb(75,119,196);}
.fc1{color:rgb(65,102,168);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(35,31,32);}
.fsa{font-size:31.482000px;}
.fs9{font-size:34.980000px;}
.fs3{font-size:38.478000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:43.200000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs8{font-size:72.000000px;}
.fs1{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:68.124750px;}
.y3e{bottom:71.212050px;}
.y3f{bottom:75.040050px;}
.y1a0{bottom:112.940700px;}
.y1d0{bottom:112.952850px;}
.y78{bottom:113.078850px;}
.yf{bottom:117.205050px;}
.y2b{bottom:117.212700px;}
.y114{bottom:117.315750px;}
.ye1{bottom:117.658500px;}
.y146{bottom:117.809550px;}
.yab{bottom:118.280550px;}
.y4b{bottom:120.482850px;}
.y175{bottom:120.491850px;}
.ye{bottom:131.601450px;}
.y19f{bottom:133.946700px;}
.y1cf{bottom:133.958850px;}
.y16c{bottom:134.078700px;}
.y77{bottom:134.078850px;}
.y113{bottom:137.199750px;}
.y2a{bottom:138.212700px;}
.ye0{bottom:138.341550px;}
.yaa{bottom:138.632550px;}
.y145{bottom:138.713550px;}
.y179{bottom:139.937100px;}
.y4a{bottom:140.287350px;}
.y174{bottom:140.296350px;}
.yd{bottom:145.997850px;}
.y19e{bottom:154.952700px;}
.y1ce{bottom:154.964850px;}
.y16b{bottom:155.078700px;}
.y76{bottom:155.078850px;}
.y112{bottom:157.083750px;}
.ydf{bottom:158.993550px;}
.ya9{bottom:159.011850px;}
.y29{bottom:159.212700px;}
.y144{bottom:159.617550px;}
.y49{bottom:160.091850px;}
.y173{bottom:160.100850px;}
.yc{bottom:160.397850px;}
.y178{bottom:169.440900px;}
.y19d{bottom:175.958700px;}
.y1cd{bottom:175.970850px;}
.y16a{bottom:176.078700px;}
.y75{bottom:176.078850px;}
.y111{bottom:176.967750px;}
.ya8{bottom:179.363850px;}
.yde{bottom:179.645550px;}
.y48{bottom:179.896350px;}
.y28{bottom:180.212700px;}
.y143{bottom:180.521550px;}
.y110{bottom:191.967750px;}
.y19c{bottom:196.964700px;}
.y1cc{bottom:196.976850px;}
.y74{bottom:197.078850px;}
.y47{bottom:199.700850px;}
.ya7{bottom:199.715850px;}
.ydd{bottom:200.297550px;}
.y27{bottom:201.212700px;}
.y142{bottom:201.341550px;}
.y3b{bottom:203.463450px;}
.y10f{bottom:211.851750px;}
.y19b{bottom:217.970700px;}
.y1cb{bottom:217.982850px;}
.y169{bottom:218.078700px;}
.y73{bottom:218.078850px;}
.ya6{bottom:220.067850px;}
.ydc{bottom:220.949550px;}
.y3a{bottom:221.458950px;}
.y141{bottom:222.161550px;}
.y10e{bottom:231.735750px;}
.y26{bottom:237.352500px;}
.y19a{bottom:238.976700px;}
.y1ca{bottom:238.988850px;}
.y72{bottom:239.078850px;}
.y39{bottom:239.454450px;}
.ya5{bottom:240.419850px;}
.ydb{bottom:241.601550px;}
.y140{bottom:242.981550px;}
.y10d{bottom:251.657550px;}
.y38{bottom:257.449950px;}
.y199{bottom:259.982700px;}
.y1c9{bottom:259.994850px;}
.y71{bottom:260.078850px;}
.ya4{bottom:260.771850px;}
.yda{bottom:262.253550px;}
.y13f{bottom:263.801550px;}
.y10c{bottom:271.541550px;}
.y37{bottom:275.445450px;}
.y198{bottom:280.988700px;}
.y1c8{bottom:281.000850px;}
.y168{bottom:281.078700px;}
.y70{bottom:281.078850px;}
.ya3{bottom:281.123850px;}
.yd9{bottom:282.905550px;}
.y13e{bottom:284.621550px;}
.y10b{bottom:291.425550px;}
.y36{bottom:293.440950px;}
.ya2{bottom:301.475850px;}
.y197{bottom:301.994700px;}
.y1c7{bottom:302.006850px;}
.y167{bottom:302.078700px;}
.y6f{bottom:302.078850px;}
.yd8{bottom:303.557550px;}
.y13d{bottom:305.441550px;}
.y10a{bottom:311.309550px;}
.y35{bottom:311.436450px;}
.y25{bottom:313.627950px;}
.y176{bottom:316.441050px;}
.yd7{bottom:318.557550px;}
.y13c{bottom:320.441550px;}
.ya1{bottom:321.827850px;}
.y196{bottom:323.000700px;}
.y1c6{bottom:323.012850px;}
.y166{bottom:323.078700px;}
.y6e{bottom:323.078850px;}
.y34{bottom:329.431950px;}
.y109{bottom:331.193550px;}
.y177{bottom:337.440900px;}
.yd6{bottom:339.209550px;}
.y13b{bottom:341.261550px;}
.ya0{bottom:342.179850px;}
.y195{bottom:344.006700px;}
.y1c5{bottom:344.018850px;}
.y165{bottom:344.078700px;}
.y6d{bottom:344.078850px;}
.y33{bottom:347.427450px;}
.y108{bottom:351.077550px;}
.yd5{bottom:354.209550px;}
.y24{bottom:354.606900px;}
.y13a{bottom:362.081550px;}
.y9f{bottom:362.531850px;}
.y194{bottom:365.012700px;}
.y1c4{bottom:365.024850px;}
.y164{bottom:365.078700px;}
.y6c{bottom:365.078850px;}
.y107{bottom:370.961550px;}
.y23{bottom:374.411400px;}
.yd4{bottom:374.861550px;}
.y139{bottom:377.081550px;}
.y9e{bottom:377.531850px;}
.y32{bottom:382.432950px;}
.y193{bottom:386.018700px;}
.y1c3{bottom:386.030850px;}
.y163{bottom:386.078700px;}
.y172{bottom:386.078850px;}
.yd3{bottom:389.861550px;}
.y106{bottom:390.845550px;}
.y22{bottom:394.215900px;}
.y9d{bottom:397.883850px;}
.y138{bottom:397.901550px;}
.y31{bottom:400.428450px;}
.y6b{bottom:400.441050px;}
.y192{bottom:407.024700px;}
.y1c2{bottom:407.036850px;}
.y171{bottom:407.078850px;}
.yd2{bottom:410.513550px;}
.y105{bottom:410.729550px;}
.y21{bottom:414.020400px;}
.y9c{bottom:418.235850px;}
.y30{bottom:418.423950px;}
.y137{bottom:418.721550px;}
.yd1{bottom:425.513550px;}
.y1db{bottom:428.024850px;}
.y191{bottom:428.030700px;}
.y1c1{bottom:428.042850px;}
.y162{bottom:428.078700px;}
.y170{bottom:428.078850px;}
.y104{bottom:430.613550px;}
.y20{bottom:433.824900px;}
.y9b{bottom:438.587850px;}
.y136{bottom:439.541550px;}
.y103{bottom:445.613550px;}
.yd0{bottom:446.165550px;}
.y1da{bottom:449.030850px;}
.y190{bottom:449.036700px;}
.y1c0{bottom:449.048850px;}
.y6a{bottom:449.078850px;}
.y2f{bottom:453.429450px;}
.y1f{bottom:453.629400px;}
.y135{bottom:454.541550px;}
.y9a{bottom:458.939850px;}
.ycf{bottom:461.165550px;}
.y102{bottom:465.497550px;}
.y1d9{bottom:470.036850px;}
.y18f{bottom:470.042700px;}
.y1bf{bottom:470.054850px;}
.y69{bottom:470.078850px;}
.y2e{bottom:471.429450px;}
.y1e{bottom:473.433900px;}
.y134{bottom:475.361550px;}
.y99{bottom:479.291850px;}
.yce{bottom:481.817550px;}
.y101{bottom:485.381550px;}
.y2d{bottom:489.429450px;}
.y1d8{bottom:491.042850px;}
.y18e{bottom:491.048700px;}
.y1be{bottom:491.060850px;}
.y161{bottom:491.078700px;}
.y68{bottom:491.078850px;}
.y1d{bottom:493.238400px;}
.y133{bottom:496.181550px;}
.y98{bottom:499.643850px;}
.ycd{bottom:502.469550px;}
.y100{bottom:505.265550px;}
.y2c{bottom:507.429450px;}
.y132{bottom:511.181550px;}
.y1d7{bottom:512.048850px;}
.y18d{bottom:512.054700px;}
.y1bd{bottom:512.066850px;}
.y160{bottom:512.078700px;}
.y67{bottom:512.078850px;}
.y1c{bottom:513.042900px;}
.y97{bottom:519.995850px;}
.ycc{bottom:523.121550px;}
.yff{bottom:525.149550px;}
.y131{bottom:532.001550px;}
.y1b{bottom:532.847400px;}
.y1d6{bottom:533.054850px;}
.y18c{bottom:533.060700px;}
.y1bc{bottom:533.072850px;}
.y15f{bottom:533.078700px;}
.y66{bottom:533.078850px;}
.y96{bottom:540.347850px;}
.ycb{bottom:543.773550px;}
.yfe{bottom:545.033550px;}
.y1a{bottom:552.651900px;}
.y130{bottom:552.821550px;}
.y1bb{bottom:553.916850px;}
.y1d5{bottom:554.060850px;}
.y18b{bottom:554.066700px;}
.y15e{bottom:554.078700px;}
.y65{bottom:554.078850px;}
.y95{bottom:560.699850px;}
.yca{bottom:564.425550px;}
.yfd{bottom:564.917550px;}
.y19{bottom:572.456400px;}
.y12f{bottom:573.641550px;}
.y1ba{bottom:574.922850px;}
.y1d4{bottom:575.066850px;}
.y18a{bottom:575.072700px;}
.y15d{bottom:575.078700px;}
.y64{bottom:575.078850px;}
.y94{bottom:575.699850px;}
.yc9{bottom:579.425550px;}
.yfc{bottom:584.801550px;}
.y18{bottom:592.260900px;}
.y12e{bottom:594.461550px;}
.y1b9{bottom:595.928850px;}
.y93{bottom:596.051850px;}
.y1d3{bottom:596.072850px;}
.y189{bottom:596.078700px;}
.y63{bottom:596.078850px;}
.yc8{bottom:600.077550px;}
.yfb{bottom:604.685550px;}
.y17{bottom:612.065400px;}
.yc7{bottom:615.077550px;}
.y12d{bottom:615.281550px;}
.y92{bottom:616.403850px;}
.y1b8{bottom:616.934850px;}
.y15c{bottom:617.078700px;}
.y62{bottom:617.078850px;}
.yfa{bottom:624.569550px;}
.y188{bottom:631.440900px;}
.y16{bottom:631.869900px;}
.yc6{bottom:635.729550px;}
.y12c{bottom:636.101550px;}
.y91{bottom:636.755850px;}
.y1b7{bottom:637.940850px;}
.y61{bottom:638.078850px;}
.yf9{bottom:644.453550px;}
.y1d2{bottom:651.513600px;}
.y15{bottom:651.674400px;}
.y15b{bottom:652.597500px;}
.yc5{bottom:656.381550px;}
.y12b{bottom:656.921550px;}
.y90{bottom:657.107850px;}
.y1b6{bottom:658.946850px;}
.y60{bottom:659.078850px;}
.yf8{bottom:664.337550px;}
.yc4{bottom:671.381550px;}
.y14{bottom:671.478900px;}
.y12a{bottom:671.921550px;}
.y8f{bottom:677.459850px;}
.y1b5{bottom:679.952850px;}
.y187{bottom:680.072700px;}
.y5f{bottom:680.078850px;}
.y1d1{bottom:683.811150px;}
.yf7{bottom:684.221550px;}
.y13{bottom:691.283400px;}
.yc3{bottom:692.033550px;}
.y129{bottom:692.741550px;}
.y8e{bottom:697.811850px;}
.y1b4{bottom:700.958850px;}
.y186{bottom:701.078700px;}
.y5e{bottom:701.078850px;}
.yf6{bottom:704.105550px;}
.y128{bottom:707.741550px;}
.y15a{bottom:708.641550px;}
.y12{bottom:711.087900px;}
.yc2{bottom:712.685550px;}
.y8d{bottom:718.163850px;}
.y1b3{bottom:721.964850px;}
.y5d{bottom:722.078850px;}
.yf5{bottom:723.989550px;}
.y185{bottom:727.529250px;}
.y159{bottom:728.273550px;}
.y127{bottom:728.561550px;}
.yc1{bottom:733.337550px;}
.y8c{bottom:738.515850px;}
.y11{bottom:742.185300px;}
.y1b2{bottom:742.970850px;}
.y5c{bottom:743.078850px;}
.yf4{bottom:743.873550px;}
.y158{bottom:747.905550px;}
.yc0{bottom:748.337550px;}
.y126{bottom:749.381550px;}
.y8b{bottom:758.867850px;}
.yf3{bottom:763.757550px;}
.y1b1{bottom:763.976850px;}
.y184{bottom:764.072700px;}
.y5b{bottom:764.078850px;}
.y157{bottom:767.537550px;}
.ybf{bottom:768.989550px;}
.y125{bottom:770.201550px;}
.y8a{bottom:779.219850px;}
.yf2{bottom:783.641550px;}
.y1b0{bottom:784.982850px;}
.y183{bottom:785.072700px;}
.y5a{bottom:785.078850px;}
.y156{bottom:787.169550px;}
.ybe{bottom:789.641550px;}
.y124{bottom:791.021550px;}
.y89{bottom:794.219850px;}
.yf1{bottom:803.525550px;}
.y1af{bottom:805.988850px;}
.y123{bottom:806.021550px;}
.y182{bottom:806.078700px;}
.y59{bottom:806.078850px;}
.y155{bottom:806.801550px;}
.ybd{bottom:810.293550px;}
.y88{bottom:814.571850px;}
.yb{bottom:821.466750px;}
.yf0{bottom:823.409550px;}
.y154{bottom:826.433550px;}
.y122{bottom:826.841550px;}
.y1ae{bottom:826.994850px;}
.y58{bottom:827.078850px;}
.ybc{bottom:830.945550px;}
.y181{bottom:832.529250px;}
.y87{bottom:834.923850px;}
.ya{bottom:839.466750px;}
.yef{bottom:843.293550px;}
.ybb{bottom:845.945550px;}
.y153{bottom:846.065550px;}
.y121{bottom:847.661550px;}
.y1ad{bottom:848.000850px;}
.y57{bottom:848.078850px;}
.y86{bottom:849.923850px;}
.y9{bottom:857.466750px;}
.y152{bottom:861.065550px;}
.yee{bottom:863.177550px;}
.yba{bottom:866.597550px;}
.y120{bottom:868.481550px;}
.y1ac{bottom:869.006850px;}
.y180{bottom:869.078700px;}
.y56{bottom:869.078850px;}
.y85{bottom:870.275850px;}
.y8{bottom:875.466750px;}
.yed{bottom:878.177550px;}
.y151{bottom:880.697550px;}
.yb9{bottom:887.249550px;}
.y11f{bottom:889.301550px;}
.y1ab{bottom:890.012850px;}
.y55{bottom:890.078850px;}
.y84{bottom:890.627850px;}
.y7{bottom:893.466750px;}
.y17f{bottom:895.529250px;}
.yec{bottom:898.061550px;}
.y150{bottom:900.329550px;}
.yb8{bottom:907.901550px;}
.y11e{bottom:910.121550px;}
.y83{bottom:910.979850px;}
.y1aa{bottom:911.018850px;}
.y54{bottom:911.078850px;}
.y6{bottom:911.466750px;}
.yeb{bottom:917.945550px;}
.y14f{bottom:919.961550px;}
.yb7{bottom:922.901550px;}
.y11d{bottom:930.941550px;}
.y82{bottom:931.331850px;}
.y1a9{bottom:932.024850px;}
.y17e{bottom:932.066850px;}
.y16f{bottom:932.078850px;}
.yea{bottom:932.945550px;}
.y14e{bottom:939.593550px;}
.yb6{bottom:943.553550px;}
.y53{bottom:946.441050px;}
.y5{bottom:946.474800px;}
.y81{bottom:951.683850px;}
.y11c{bottom:951.761550px;}
.ye9{bottom:952.829550px;}
.y1a8{bottom:953.030850px;}
.y17d{bottom:953.072850px;}
.y16e{bottom:953.078850px;}
.y14d{bottom:959.225550px;}
.yb5{bottom:964.205550px;}
.y80{bottom:972.035850px;}
.y11b{bottom:972.581550px;}
.ye8{bottom:972.713550px;}
.y1a7{bottom:974.036850px;}
.y16d{bottom:974.078850px;}
.y14c{bottom:978.857550px;}
.y4{bottom:983.288550px;}
.yb4{bottom:984.857550px;}
.y7f{bottom:992.387850px;}
.ye7{bottom:992.597550px;}
.y11a{bottom:993.401550px;}
.y1a6{bottom:995.042850px;}
.y52{bottom:995.078850px;}
.y14b{bottom:998.489550px;}
.y17c{bottom:1000.529250px;}
.yb3{bottom:1005.509550px;}
.ye6{bottom:1012.481550px;}
.y7e{bottom:1012.739850px;}
.y14a{bottom:1013.489550px;}
.y119{bottom:1014.221550px;}
.y1a5{bottom:1016.048850px;}
.y46{bottom:1016.078700px;}
.y51{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.yb2{bottom:1020.509550px;}
.ye5{bottom:1032.365550px;}
.y7d{bottom:1033.091850px;}
.y149{bottom:1033.121550px;}
.y118{bottom:1035.041550px;}
.y1a4{bottom:1037.054850px;}
.y45{bottom:1037.078700px;}
.y50{bottom:1037.078850px;}
.yb1{bottom:1041.161550px;}
.y2{bottom:1049.282550px;}
.ye4{bottom:1052.249550px;}
.y148{bottom:1052.753550px;}
.y7c{bottom:1053.575850px;}
.y117{bottom:1055.861550px;}
.yb0{bottom:1056.161550px;}
.y1a3{bottom:1058.060850px;}
.y44{bottom:1058.078700px;}
.y4f{bottom:1058.078850px;}
.y7b{bottom:1061.075850px;}
.y17b{bottom:1063.529250px;}
.ye3{bottom:1072.133550px;}
.y147{bottom:1072.385550px;}
.y116{bottom:1076.681550px;}
.yaf{bottom:1076.813550px;}
.y1a2{bottom:1079.066850px;}
.y43{bottom:1079.078700px;}
.y4e{bottom:1079.078850px;}
.y115{bottom:1091.681550px;}
.yae{bottom:1091.813550px;}
.ye2{bottom:1092.017550px;}
.y7a{bottom:1099.478400px;}
.y1a1{bottom:1100.072850px;}
.y42{bottom:1100.078700px;}
.y4d{bottom:1100.078850px;}
.y10{bottom:1109.815500px;}
.yad{bottom:1112.801550px;}
.y79{bottom:1119.282900px;}
.yac{bottom:1120.301550px;}
.y41{bottom:1121.078700px;}
.y4c{bottom:1121.078850px;}
.y17a{bottom:1125.451800px;}
.y3d{bottom:1159.189500px;}
.y3c{bottom:1178.689500px;}
.y40{bottom:1178.692050px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h12{height:37.875000px;}
.h11{height:38.226562px;}
.hf{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h13{height:39.000000px;}
.h14{height:39.211800px;}
.h8{height:43.004883px;}
.he{height:43.057617px;}
.hd{height:43.321289px;}
.ha{height:43.875000px;}
.h17{height:43.899000px;}
.h18{height:44.523000px;}
.h9{height:47.343750px;}
.hc{height:48.750000px;}
.h16{height:50.176758px;}
.h15{height:52.078125px;}
.h4{height:53.625000px;}
.hb{height:56.812500px;}
.h10{height:68.226562px;}
.h3{height:81.231445px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:73.984200px;}
.x3{left:90.992100px;}
.xb{left:107.063850px;}
.xc{left:108.289650px;}
.xf{left:112.257150px;}
.x6{left:119.878950px;}
.x7{left:122.032500px;}
.x8{left:124.102950px;}
.xd{left:245.925150px;}
.x5{left:300.189000px;}
.x21{left:317.214000px;}
.x4{left:396.050700px;}
.x1b{left:460.953150px;}
.x10{left:477.669150px;}
.x18{left:484.773150px;}
.x12{left:492.693150px;}
.x1d{left:495.729150px;}
.x13{left:504.177150px;}
.x20{left:523.389150px;}
.x16{left:531.081150px;}
.x19{left:535.569150px;}
.x1f{left:538.833150px;}
.x1a{left:549.261150px;}
.x1e{left:566.337150px;}
.x1c{left:599.553150px;}
.xa{left:648.907800px;}
.x9{left:669.715800px;}
.x11{left:757.437150px;}
.xe{left:759.153150px;}
.x17{left:760.689150px;}
.x14{left:763.941150px;}
.x15{left:775.281150px;}
.x1{left:801.157500px;}
@media print{
.v3{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:16.560000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v4{vertical-align:26.666667pt;}
.ls9{letter-spacing:-8.448000pt;}
.ls20{letter-spacing:-8.426667pt;}
.ls22{letter-spacing:-7.466667pt;}
.lsd{letter-spacing:-7.296000pt;}
.ls19{letter-spacing:-6.432000pt;}
.lsc{letter-spacing:-3.744000pt;}
.ls8{letter-spacing:-3.264000pt;}
.ls18{letter-spacing:-2.880000pt;}
.ls7{letter-spacing:-0.864000pt;}
.ls12{letter-spacing:-0.853333pt;}
.lsb{letter-spacing:-0.816000pt;}
.ls6{letter-spacing:-0.614400pt;}
.ls1a{letter-spacing:-0.533333pt;}
.ls1f{letter-spacing:-0.426667pt;}
.lsa{letter-spacing:-0.373333pt;}
.ls5{letter-spacing:-0.341333pt;}
.lse{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.266667pt;}
.ls3{letter-spacing:-0.181333pt;}
.ls4{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.373333pt;}
.ls14{letter-spacing:0.400000pt;}
.ls16{letter-spacing:0.453333pt;}
.ls15{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.533333pt;}
.ls1c{letter-spacing:0.560000pt;}
.ls1e{letter-spacing:0.613333pt;}
.ls1d{letter-spacing:0.640000pt;}
.ls21{letter-spacing:0.960000pt;}
.ls17{letter-spacing:2.592000pt;}
.ls0{letter-spacing:38.383435pt;}
.ls1{letter-spacing:38.383968pt;}
.ls10{letter-spacing:557.056000pt;}
.ls11{letter-spacing:597.632000pt;}
.ws98{word-spacing:-53.333333pt;}
.ws7{word-spacing:-42.666667pt;}
.ws3{word-spacing:-42.538667pt;}
.ws6{word-spacing:-42.325333pt;}
.ws57{word-spacing:-41.813333pt;}
.wse{word-spacing:-15.936000pt;}
.wsba{word-spacing:-14.608000pt;}
.wsaf{word-spacing:-14.026667pt;}
.ws91{word-spacing:-13.706667pt;}
.ws6c{word-spacing:-13.546667pt;}
.ws7b{word-spacing:-13.440000pt;}
.ws9{word-spacing:-13.280000pt;}
.ws46{word-spacing:-13.226667pt;}
.ws5a{word-spacing:-13.173333pt;}
.ws7c{word-spacing:-13.066667pt;}
.ws44{word-spacing:-12.960000pt;}
.ws99{word-spacing:-12.853333pt;}
.ws45{word-spacing:-12.800000pt;}
.ws77{word-spacing:-11.952000pt;}
.wsbb{word-spacing:-11.904000pt;}
.wsbc{word-spacing:-11.760000pt;}
.ws3c{word-spacing:-11.088000pt;}
.ws10{word-spacing:-10.992000pt;}
.wsa{word-spacing:-10.896000pt;}
.ws14{word-spacing:-10.800000pt;}
.ws4{word-spacing:-10.308267pt;}
.ws11{word-spacing:-10.176000pt;}
.ws12{word-spacing:-9.984000pt;}
.ws2{word-spacing:-9.941333pt;}
.ws15{word-spacing:-9.770667pt;}
.ws3b{word-spacing:-9.600000pt;}
.ws5{word-spacing:-9.326933pt;}
.ws76{word-spacing:-9.072000pt;}
.ws8{word-spacing:-8.793600pt;}
.ws1{word-spacing:-8.549333pt;}
.wsb{word-spacing:-8.496000pt;}
.ws3d{word-spacing:-8.208000pt;}
.wsf{word-spacing:-7.711147pt;}
.wsc3{word-spacing:-6.940032pt;}
.wsad{word-spacing:-6.506667pt;}
.ws78{word-spacing:-5.520000pt;}
.wsa2{word-spacing:-5.013333pt;}
.wsa3{word-spacing:-4.960000pt;}
.ws3e{word-spacing:-4.656000pt;}
.ws41{word-spacing:-3.744000pt;}
.ws1e{word-spacing:-3.552000pt;}
.ws21{word-spacing:-3.456000pt;}
.wsa7{word-spacing:-3.360000pt;}
.wsa8{word-spacing:-3.306667pt;}
.ws5b{word-spacing:-3.146667pt;}
.ws47{word-spacing:-2.986667pt;}
.ws22{word-spacing:-2.832000pt;}
.ws1d{word-spacing:-2.688000pt;}
.ws1f{word-spacing:-2.640000pt;}
.ws20{word-spacing:-2.592000pt;}
.wsa4{word-spacing:-2.400000pt;}
.ws61{word-spacing:-2.133333pt;}
.wsc7{word-spacing:-2.016000pt;}
.ws8e{word-spacing:-1.968000pt;}
.ws8f{word-spacing:-1.920000pt;}
.ws9f{word-spacing:-1.866667pt;}
.ws9b{word-spacing:-1.813333pt;}
.ws5f{word-spacing:-1.760000pt;}
.ws65{word-spacing:-1.706667pt;}
.wsb1{word-spacing:-1.653333pt;}
.ws1a{word-spacing:-1.536000pt;}
.ws40{word-spacing:-1.493333pt;}
.ws8d{word-spacing:-1.386667pt;}
.ws54{word-spacing:-1.333333pt;}
.ws29{word-spacing:-1.296000pt;}
.ws87{word-spacing:-1.120000pt;}
.ws72{word-spacing:-1.013333pt;}
.ws68{word-spacing:-0.960000pt;}
.ws39{word-spacing:-0.912000pt;}
.ws7d{word-spacing:-0.906667pt;}
.ws59{word-spacing:-0.853333pt;}
.ws33{word-spacing:-0.816000pt;}
.ws97{word-spacing:-0.800000pt;}
.ws6d{word-spacing:-0.693333pt;}
.ws94{word-spacing:-0.533333pt;}
.wsc5{word-spacing:-0.480000pt;}
.wsb3{word-spacing:-0.426667pt;}
.ws75{word-spacing:-0.373333pt;}
.ws56{word-spacing:-0.266667pt;}
.ws93{word-spacing:-0.213333pt;}
.ws17{word-spacing:-0.192000pt;}
.wsb2{word-spacing:-0.106667pt;}
.ws7e{word-spacing:-0.053333pt;}
.ws13{word-spacing:-0.048000pt;}
.ws16{word-spacing:0.000000pt;}
.ws34{word-spacing:0.048000pt;}
.wsa1{word-spacing:0.053333pt;}
.ws0{word-spacing:0.090667pt;}
.ws9e{word-spacing:0.106667pt;}
.wsc1{word-spacing:0.240000pt;}
.ws53{word-spacing:0.266667pt;}
.ws48{word-spacing:0.320000pt;}
.ws23{word-spacing:0.336000pt;}
.ws37{word-spacing:0.373333pt;}
.ws36{word-spacing:0.426667pt;}
.ws86{word-spacing:0.533333pt;}
.ws26{word-spacing:0.576000pt;}
.ws18{word-spacing:0.614400pt;}
.wsc9{word-spacing:0.624000pt;}
.ws49{word-spacing:0.800000pt;}
.ws3a{word-spacing:0.816000pt;}
.ws58{word-spacing:0.853333pt;}
.ws19{word-spacing:0.864000pt;}
.ws95{word-spacing:0.906667pt;}
.ws3f{word-spacing:1.280000pt;}
.ws9c{word-spacing:1.386667pt;}
.ws90{word-spacing:1.392000pt;}
.ws27{word-spacing:1.440000pt;}
.ws85{word-spacing:1.546667pt;}
.wsb9{word-spacing:1.920000pt;}
.ws25{word-spacing:2.064000pt;}
.ws9a{word-spacing:2.186667pt;}
.ws35{word-spacing:2.304000pt;}
.ws4e{word-spacing:2.453333pt;}
.ws7a{word-spacing:2.592000pt;}
.ws79{word-spacing:2.640000pt;}
.ws8c{word-spacing:2.720000pt;}
.wsb0{word-spacing:2.853333pt;}
.ws42{word-spacing:2.880000pt;}
.ws24{word-spacing:2.928000pt;}
.ws83{word-spacing:2.933333pt;}
.ws4a{word-spacing:3.093333pt;}
.ws43{word-spacing:3.168000pt;}
.ws74{word-spacing:3.306667pt;}
.ws73{word-spacing:3.360000pt;}
.ws28{word-spacing:3.408000pt;}
.ws4c{word-spacing:3.466667pt;}
.ws7f{word-spacing:3.733333pt;}
.wsa5{word-spacing:3.738667pt;}
.ws64{word-spacing:3.840000pt;}
.ws6a{word-spacing:4.053333pt;}
.wscc{word-spacing:4.080000pt;}
.ws69{word-spacing:4.106667pt;}
.wsa9{word-spacing:4.213333pt;}
.ws60{word-spacing:4.266667pt;}
.wsc{word-spacing:4.272000pt;}
.wsd{word-spacing:4.296000pt;}
.wsa6{word-spacing:4.533333pt;}
.ws81{word-spacing:4.586667pt;}
.ws2b{word-spacing:4.608000pt;}
.wsa0{word-spacing:4.746667pt;}
.ws80{word-spacing:4.800000pt;}
.ws6b{word-spacing:4.960000pt;}
.ws88{word-spacing:5.066667pt;}
.ws89{word-spacing:5.120000pt;}
.ws38{word-spacing:5.280000pt;}
.ws92{word-spacing:5.333333pt;}
.wsc6{word-spacing:5.376000pt;}
.ws2a{word-spacing:5.424000pt;}
.ws2d{word-spacing:5.472000pt;}
.ws4f{word-spacing:5.706667pt;}
.ws63{word-spacing:5.760000pt;}
.ws6e{word-spacing:5.920000pt;}
.ws55{word-spacing:5.973333pt;}
.ws4d{word-spacing:6.080000pt;}
.ws2e{word-spacing:6.288000pt;}
.ws2c{word-spacing:6.336000pt;}
.ws4b{word-spacing:6.400000pt;}
.ws62{word-spacing:6.560000pt;}
.ws66{word-spacing:6.666667pt;}
.ws2f{word-spacing:6.720000pt;}
.ws5c{word-spacing:6.880000pt;}
.ws84{word-spacing:6.933333pt;}
.wsb6{word-spacing:7.040000pt;}
.ws1b{word-spacing:7.296000pt;}
.ws8b{word-spacing:7.413333pt;}
.ws50{word-spacing:7.466667pt;}
.ws5e{word-spacing:7.520000pt;}
.ws5d{word-spacing:7.573333pt;}
.ws30{word-spacing:7.584000pt;}
.ws82{word-spacing:7.733333pt;}
.ws71{word-spacing:7.946667pt;}
.wsb5{word-spacing:8.000000pt;}
.ws1c{word-spacing:8.160000pt;}
.ws70{word-spacing:8.533333pt;}
.ws6f{word-spacing:8.586667pt;}
.ws51{word-spacing:8.746667pt;}
.ws67{word-spacing:9.226667pt;}
.wsc4{word-spacing:9.264000pt;}
.ws8a{word-spacing:9.280000pt;}
.wsb4{word-spacing:9.706667pt;}
.wsb8{word-spacing:9.813333pt;}
.wsac{word-spacing:10.560000pt;}
.wsb7{word-spacing:10.773333pt;}
.ws31{word-spacing:11.472000pt;}
.wsaa{word-spacing:11.573333pt;}
.ws32{word-spacing:12.336000pt;}
.wsab{word-spacing:12.746667pt;}
.wsc0{word-spacing:12.864000pt;}
.wsbd{word-spacing:12.912000pt;}
.wsca{word-spacing:13.488000pt;}
.wsbe{word-spacing:14.352000pt;}
.ws52{word-spacing:14.400000pt;}
.wsae{word-spacing:17.280000pt;}
.wsc8{word-spacing:17.904000pt;}
.wsc2{word-spacing:19.104000pt;}
.wscb{word-spacing:19.440000pt;}
.wscd{word-spacing:22.032000pt;}
.ws9d{word-spacing:25.973333pt;}
.wsbf{word-spacing:28.608000pt;}
.ws96{word-spacing:31.466667pt;}
._e{margin-left:-10.296533pt;}
._c6{margin-left:-9.168000pt;}
._c9{margin-left:-7.905600pt;}
._6{margin-left:-6.500267pt;}
._4{margin-left:-5.186133pt;}
._5{margin-left:-3.898667pt;}
._7{margin-left:-2.922667pt;}
._1{margin-left:-1.985600pt;}
._2{margin-left:-0.924800pt;}
._3{width:0.979200pt;}
._0{width:2.185067pt;}
._a{width:3.312000pt;}
._b{width:4.593600pt;}
._c5{width:5.496000pt;}
._8{width:6.412800pt;}
._9{width:7.689067pt;}
._10{width:8.771733pt;}
._d{width:9.840000pt;}
._c{width:10.996800pt;}
._f{width:11.965867pt;}
._cf{width:12.979733pt;}
._c4{width:14.394667pt;}
._d4{width:15.301333pt;}
._c8{width:17.258667pt;}
._d1{width:18.321600pt;}
._d0{width:19.308800pt;}
._d2{width:20.814400pt;}
._cd{width:22.008000pt;}
._d5{width:25.632000pt;}
._d6{width:26.596800pt;}
._cb{width:28.531200pt;}
._ce{width:30.369600pt;}
._c7{width:31.466667pt;}
._d3{width:32.395200pt;}
._ca{width:38.459733pt;}
._cc{width:46.776000pt;}
._51{width:54.305067pt;}
._30{width:65.867733pt;}
._2e{width:106.443733pt;}
._3c{width:107.354667pt;}
._95{width:114.317333pt;}
._7a{width:129.658667pt;}
._87{width:135.899733pt;}
._76{width:141.221333pt;}
._3d{width:154.963733pt;}
._97{width:173.924267pt;}
._84{width:181.797333pt;}
._21{width:196.059200pt;}
._b1{width:199.745600pt;}
._80{width:201.494933pt;}
._82{width:203.830933pt;}
._1e{width:208.065600pt;}
._8e{width:209.124267pt;}
._1a{width:219.628267pt;}
._89{width:220.519467pt;}
._8c{width:226.913600pt;}
._9b{width:229.628267pt;}
._74{width:242.838933pt;}
._73{width:247.689067pt;}
._69{width:248.641600pt;}
._14{width:253.761600pt;}
._38{width:260.204267pt;}
._9a{width:264.073067pt;}
._16{width:265.025600pt;}
._9f{width:267.509333pt;}
._2f{width:274.326933pt;}
._c2{width:275.355200pt;}
._ae{width:276.545600pt;}
._bb{width:286.820267pt;}
._26{width:288.108267pt;}
._86{width:291.047467pt;}
._b5{width:319.937600pt;}
._a0{width:323.462400pt;}
._55{width:328.726933pt;}
._c0{width:330.530667pt;}
._ad{width:331.457600pt;}
._9c{width:342.072533pt;}
._24{width:343.020267pt;}
._96{width:350.408533pt;}
._a6{width:357.146133pt;}
._7c{width:367.104000pt;}
._32{width:368.173867pt;}
._19{width:369.424533pt;}
._53{width:370.858667pt;}
._18{width:372.076267pt;}
._90{width:375.161600pt;}
._70{width:378.845333pt;}
._67{width:382.299200pt;}
._3a{width:383.638933pt;}
._79{width:386.037333pt;}
._83{width:387.742400pt;}
._68{width:396.724800pt;}
._1c{width:402.028267pt;}
._20{width:404.940800pt;}
._12{width:406.806933pt;}
._62{width:410.570667pt;}
._37{width:416.202667pt;}
._72{width:419.242667pt;}
._94{width:422.096533pt;}
._1d{width:424.581333pt;}
._3b{width:428.127467pt;}
._7e{width:435.209067pt;}
._75{width:441.950400pt;}
._b0{width:447.335467pt;}
._8f{width:452.261867pt;}
._64{width:471.369067pt;}
._6c{width:472.420267pt;}
._ac{width:475.259200pt;}
._48{width:478.094933pt;}
._6a{width:480.145067pt;}
._78{width:485.811733pt;}
._b7{width:492.653333pt;}
._b9{width:493.981867pt;}
._7f{width:501.792000pt;}
._50{width:507.381333pt;}
._45{width:510.125867pt;}
._4f{width:513.013333pt;}
._bf{width:517.604267pt;}
._2d{width:519.085867pt;}
._b8{width:522.130133pt;}
._c1{width:525.264533pt;}
._91{width:533.912000pt;}
._5b{width:536.992000pt;}
._92{width:538.995200pt;}
._5a{width:540.661333pt;}
._81{width:542.197333pt;}
._a4{width:543.477333pt;}
._31{width:545.651733pt;}
._43{width:550.930133pt;}
._71{width:552.858133pt;}
._49{width:554.070400pt;}
._59{width:557.363733pt;}
._1b{width:561.276267pt;}
._44{width:564.298667pt;}
._5e{width:566.602667pt;}
._2a{width:569.409600pt;}
._93{width:570.306667pt;}
._34{width:575.491200pt;}
._36{width:578.739733pt;}
._88{width:580.269867pt;}
._2b{width:584.437333pt;}
._57{width:589.491733pt;}
._33{width:595.629867pt;}
._b2{width:596.810667pt;}
._25{width:598.003200pt;}
._4c{width:600.414400pt;}
._c3{width:603.769600pt;}
._58{width:606.515733pt;}
._7b{width:607.539733pt;}
._85{width:608.658133pt;}
._bc{width:609.980800pt;}
._ab{width:612.517867pt;}
._3e{width:614.921067pt;}
._46{width:616.423467pt;}
._5d{width:619.594667pt;}
._a9{width:620.525867pt;}
._4d{width:622.174400pt;}
._7d{width:623.440533pt;}
._b3{width:627.274133pt;}
._aa{width:631.690667pt;}
._3f{width:634.262933pt;}
._56{width:637.540267pt;}
._a5{width:643.040000pt;}
._40{width:644.588267pt;}
._be{width:646.158933pt;}
._77{width:653.148800pt;}
._b6{width:654.837333pt;}
._47{width:655.858133pt;}
._8b{width:659.820267pt;}
._af{width:667.145067pt;}
._6f{width:670.618133pt;}
._2c{width:675.116267pt;}
._b4{width:677.761600pt;}
._bd{width:684.354667pt;}
._5c{width:700.021333pt;}
._61{width:702.430400pt;}
._a1{width:704.132800pt;}
._22{width:705.298133pt;}
._60{width:708.540800pt;}
._99{width:714.638933pt;}
._65{width:715.701867pt;}
._41{width:717.613867pt;}
._1f{width:720.410133pt;}
._a8{width:725.635200pt;}
._54{width:735.182933pt;}
._27{width:738.400000pt;}
._13{width:741.742400pt;}
._4a{width:743.227733pt;}
._5f{width:751.078400pt;}
._6d{width:757.400000pt;}
._63{width:762.144000pt;}
._29{width:765.571200pt;}
._a2{width:770.062400pt;}
._42{width:778.789867pt;}
._6e{width:779.907200pt;}
._23{width:784.910933pt;}
._4e{width:787.360000pt;}
._39{width:793.839467pt;}
._52{width:796.021333pt;}
._8a{width:798.979200pt;}
._6b{width:809.453333pt;}
._15{width:814.601067pt;}
._8d{width:829.548267pt;}
._9e{width:840.229867pt;}
._28{width:841.845333pt;}
._98{width:844.126400pt;}
._11{width:850.389333pt;}
._a3{width:851.642667pt;}
._ba{width:864.549867pt;}
._a7{width:877.856000pt;}
._35{width:897.752533pt;}
._4b{width:914.620800pt;}
._66{width:933.912000pt;}
._17{width:936.144533pt;}
._9d{width:1034.171200pt;}
.fsa{font-size:27.984000pt;}
.fs9{font-size:31.093333pt;}
.fs3{font-size:34.202667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:38.400000pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs8{font-size:64.000000pt;}
.fs1{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:60.555333pt;}
.y3e{bottom:63.299600pt;}
.y3f{bottom:66.702267pt;}
.y1a0{bottom:100.391733pt;}
.y1d0{bottom:100.402533pt;}
.y78{bottom:100.514533pt;}
.yf{bottom:104.182267pt;}
.y2b{bottom:104.189067pt;}
.y114{bottom:104.280667pt;}
.ye1{bottom:104.585333pt;}
.y146{bottom:104.719600pt;}
.yab{bottom:105.138267pt;}
.y4b{bottom:107.095867pt;}
.y175{bottom:107.103867pt;}
.ye{bottom:116.979067pt;}
.y19f{bottom:119.063733pt;}
.y1cf{bottom:119.074533pt;}
.y16c{bottom:119.181067pt;}
.y77{bottom:119.181200pt;}
.y113{bottom:121.955333pt;}
.y2a{bottom:122.855733pt;}
.ye0{bottom:122.970267pt;}
.yaa{bottom:123.228933pt;}
.y145{bottom:123.300933pt;}
.y179{bottom:124.388533pt;}
.y4a{bottom:124.699867pt;}
.y174{bottom:124.707867pt;}
.yd{bottom:129.775867pt;}
.y19e{bottom:137.735733pt;}
.y1ce{bottom:137.746533pt;}
.y16b{bottom:137.847733pt;}
.y76{bottom:137.847867pt;}
.y112{bottom:139.630000pt;}
.ydf{bottom:141.327600pt;}
.ya9{bottom:141.343867pt;}
.y29{bottom:141.522400pt;}
.y144{bottom:141.882267pt;}
.y49{bottom:142.303867pt;}
.y173{bottom:142.311867pt;}
.yc{bottom:142.575867pt;}
.y178{bottom:150.614133pt;}
.y19d{bottom:156.407733pt;}
.y1cd{bottom:156.418533pt;}
.y16a{bottom:156.514400pt;}
.y75{bottom:156.514533pt;}
.y111{bottom:157.304667pt;}
.ya8{bottom:159.434533pt;}
.yde{bottom:159.684933pt;}
.y48{bottom:159.907867pt;}
.y28{bottom:160.189067pt;}
.y143{bottom:160.463600pt;}
.y110{bottom:170.638000pt;}
.y19c{bottom:175.079733pt;}
.y1cc{bottom:175.090533pt;}
.y74{bottom:175.181200pt;}
.y47{bottom:177.511867pt;}
.ya7{bottom:177.525200pt;}
.ydd{bottom:178.042267pt;}
.y27{bottom:178.855733pt;}
.y142{bottom:178.970267pt;}
.y3b{bottom:180.856400pt;}
.y10f{bottom:188.312667pt;}
.y19b{bottom:193.751733pt;}
.y1cb{bottom:193.762533pt;}
.y169{bottom:193.847733pt;}
.y73{bottom:193.847867pt;}
.ya6{bottom:195.615867pt;}
.ydc{bottom:196.399600pt;}
.y3a{bottom:196.852400pt;}
.y141{bottom:197.476933pt;}
.y10e{bottom:205.987333pt;}
.y26{bottom:210.980000pt;}
.y19a{bottom:212.423733pt;}
.y1ca{bottom:212.434533pt;}
.y72{bottom:212.514533pt;}
.y39{bottom:212.848400pt;}
.ya5{bottom:213.706533pt;}
.ydb{bottom:214.756933pt;}
.y140{bottom:215.983600pt;}
.y10d{bottom:223.695600pt;}
.y38{bottom:228.844400pt;}
.y199{bottom:231.095733pt;}
.y1c9{bottom:231.106533pt;}
.y71{bottom:231.181200pt;}
.ya4{bottom:231.797200pt;}
.yda{bottom:233.114267pt;}
.y13f{bottom:234.490267pt;}
.y10c{bottom:241.370267pt;}
.y37{bottom:244.840400pt;}
.y198{bottom:249.767733pt;}
.y1c8{bottom:249.778533pt;}
.y168{bottom:249.847733pt;}
.y70{bottom:249.847867pt;}
.ya3{bottom:249.887867pt;}
.yd9{bottom:251.471600pt;}
.y13e{bottom:252.996933pt;}
.y10b{bottom:259.044933pt;}
.y36{bottom:260.836400pt;}
.ya2{bottom:267.978533pt;}
.y197{bottom:268.439733pt;}
.y1c7{bottom:268.450533pt;}
.y167{bottom:268.514400pt;}
.y6f{bottom:268.514533pt;}
.yd8{bottom:269.828933pt;}
.y13d{bottom:271.503600pt;}
.y10a{bottom:276.719600pt;}
.y35{bottom:276.832400pt;}
.y25{bottom:278.780400pt;}
.y176{bottom:281.280933pt;}
.yd7{bottom:283.162267pt;}
.y13c{bottom:284.836933pt;}
.ya1{bottom:286.069200pt;}
.y196{bottom:287.111733pt;}
.y1c6{bottom:287.122533pt;}
.y166{bottom:287.181067pt;}
.y6e{bottom:287.181200pt;}
.y34{bottom:292.828400pt;}
.y109{bottom:294.394267pt;}
.y177{bottom:299.947467pt;}
.yd6{bottom:301.519600pt;}
.y13b{bottom:303.343600pt;}
.ya0{bottom:304.159867pt;}
.y195{bottom:305.783733pt;}
.y1c5{bottom:305.794533pt;}
.y165{bottom:305.847733pt;}
.y6d{bottom:305.847867pt;}
.y33{bottom:308.824400pt;}
.y108{bottom:312.068933pt;}
.yd5{bottom:314.852933pt;}
.y24{bottom:315.206133pt;}
.y13a{bottom:321.850267pt;}
.y9f{bottom:322.250533pt;}
.y194{bottom:324.455733pt;}
.y1c4{bottom:324.466533pt;}
.y164{bottom:324.514400pt;}
.y6c{bottom:324.514533pt;}
.y107{bottom:329.743600pt;}
.y23{bottom:332.810133pt;}
.yd4{bottom:333.210267pt;}
.y139{bottom:335.183600pt;}
.y9e{bottom:335.583867pt;}
.y32{bottom:339.940400pt;}
.y193{bottom:343.127733pt;}
.y1c3{bottom:343.138533pt;}
.y163{bottom:343.181067pt;}
.y172{bottom:343.181200pt;}
.yd3{bottom:346.543600pt;}
.y106{bottom:347.418267pt;}
.y22{bottom:350.414133pt;}
.y9d{bottom:353.674533pt;}
.y138{bottom:353.690267pt;}
.y31{bottom:355.936400pt;}
.y6b{bottom:355.947600pt;}
.y192{bottom:361.799733pt;}
.y1c2{bottom:361.810533pt;}
.y171{bottom:361.847867pt;}
.yd2{bottom:364.900933pt;}
.y105{bottom:365.092933pt;}
.y21{bottom:368.018133pt;}
.y9c{bottom:371.765200pt;}
.y30{bottom:371.932400pt;}
.y137{bottom:372.196933pt;}
.yd1{bottom:378.234267pt;}
.y1db{bottom:380.466533pt;}
.y191{bottom:380.471733pt;}
.y1c1{bottom:380.482533pt;}
.y162{bottom:380.514400pt;}
.y170{bottom:380.514533pt;}
.y104{bottom:382.767600pt;}
.y20{bottom:385.622133pt;}
.y9b{bottom:389.855867pt;}
.y136{bottom:390.703600pt;}
.y103{bottom:396.100933pt;}
.yd0{bottom:396.591600pt;}
.y1da{bottom:399.138533pt;}
.y190{bottom:399.143733pt;}
.y1c0{bottom:399.154533pt;}
.y6a{bottom:399.181200pt;}
.y2f{bottom:403.048400pt;}
.y1f{bottom:403.226133pt;}
.y135{bottom:404.036933pt;}
.y9a{bottom:407.946533pt;}
.ycf{bottom:409.924933pt;}
.y102{bottom:413.775600pt;}
.y1d9{bottom:417.810533pt;}
.y18f{bottom:417.815733pt;}
.y1bf{bottom:417.826533pt;}
.y69{bottom:417.847867pt;}
.y2e{bottom:419.048400pt;}
.y1e{bottom:420.830133pt;}
.y134{bottom:422.543600pt;}
.y99{bottom:426.037200pt;}
.yce{bottom:428.282267pt;}
.y101{bottom:431.450267pt;}
.y2d{bottom:435.048400pt;}
.y1d8{bottom:436.482533pt;}
.y18e{bottom:436.487733pt;}
.y1be{bottom:436.498533pt;}
.y161{bottom:436.514400pt;}
.y68{bottom:436.514533pt;}
.y1d{bottom:438.434133pt;}
.y133{bottom:441.050267pt;}
.y98{bottom:444.127867pt;}
.ycd{bottom:446.639600pt;}
.y100{bottom:449.124933pt;}
.y2c{bottom:451.048400pt;}
.y132{bottom:454.383600pt;}
.y1d7{bottom:455.154533pt;}
.y18d{bottom:455.159733pt;}
.y1bd{bottom:455.170533pt;}
.y160{bottom:455.181067pt;}
.y67{bottom:455.181200pt;}
.y1c{bottom:456.038133pt;}
.y97{bottom:462.218533pt;}
.ycc{bottom:464.996933pt;}
.yff{bottom:466.799600pt;}
.y131{bottom:472.890267pt;}
.y1b{bottom:473.642133pt;}
.y1d6{bottom:473.826533pt;}
.y18c{bottom:473.831733pt;}
.y1bc{bottom:473.842533pt;}
.y15f{bottom:473.847733pt;}
.y66{bottom:473.847867pt;}
.y96{bottom:480.309200pt;}
.ycb{bottom:483.354267pt;}
.yfe{bottom:484.474267pt;}
.y1a{bottom:491.246133pt;}
.y130{bottom:491.396933pt;}
.y1bb{bottom:492.370533pt;}
.y1d5{bottom:492.498533pt;}
.y18b{bottom:492.503733pt;}
.y15e{bottom:492.514400pt;}
.y65{bottom:492.514533pt;}
.y95{bottom:498.399867pt;}
.yca{bottom:501.711600pt;}
.yfd{bottom:502.148933pt;}
.y19{bottom:508.850133pt;}
.y12f{bottom:509.903600pt;}
.y1ba{bottom:511.042533pt;}
.y1d4{bottom:511.170533pt;}
.y18a{bottom:511.175733pt;}
.y15d{bottom:511.181067pt;}
.y64{bottom:511.181200pt;}
.y94{bottom:511.733200pt;}
.yc9{bottom:515.044933pt;}
.yfc{bottom:519.823600pt;}
.y18{bottom:526.454133pt;}
.y12e{bottom:528.410267pt;}
.y1b9{bottom:529.714533pt;}
.y93{bottom:529.823867pt;}
.y1d3{bottom:529.842533pt;}
.y189{bottom:529.847733pt;}
.y63{bottom:529.847867pt;}
.yc8{bottom:533.402267pt;}
.yfb{bottom:537.498267pt;}
.y17{bottom:544.058133pt;}
.yc7{bottom:546.735600pt;}
.y12d{bottom:546.916933pt;}
.y92{bottom:547.914533pt;}
.y1b8{bottom:548.386533pt;}
.y15c{bottom:548.514400pt;}
.y62{bottom:548.514533pt;}
.yfa{bottom:555.172933pt;}
.y188{bottom:561.280800pt;}
.y16{bottom:561.662133pt;}
.yc6{bottom:565.092933pt;}
.y12c{bottom:565.423600pt;}
.y91{bottom:566.005200pt;}
.y1b7{bottom:567.058533pt;}
.y61{bottom:567.181200pt;}
.yf9{bottom:572.847600pt;}
.y1d2{bottom:579.123200pt;}
.y15{bottom:579.266133pt;}
.y15b{bottom:580.086667pt;}
.yc5{bottom:583.450267pt;}
.y12b{bottom:583.930267pt;}
.y90{bottom:584.095867pt;}
.y1b6{bottom:585.730533pt;}
.y60{bottom:585.847867pt;}
.yf8{bottom:590.522267pt;}
.yc4{bottom:596.783600pt;}
.y14{bottom:596.870133pt;}
.y12a{bottom:597.263600pt;}
.y8f{bottom:602.186533pt;}
.y1b5{bottom:604.402533pt;}
.y187{bottom:604.509067pt;}
.y5f{bottom:604.514533pt;}
.y1d1{bottom:607.832133pt;}
.yf7{bottom:608.196933pt;}
.y13{bottom:614.474133pt;}
.yc3{bottom:615.140933pt;}
.y129{bottom:615.770267pt;}
.y8e{bottom:620.277200pt;}
.y1b4{bottom:623.074533pt;}
.y186{bottom:623.181067pt;}
.y5e{bottom:623.181200pt;}
.yf6{bottom:625.871600pt;}
.y128{bottom:629.103600pt;}
.y15a{bottom:629.903600pt;}
.y12{bottom:632.078133pt;}
.yc2{bottom:633.498267pt;}
.y8d{bottom:638.367867pt;}
.y1b3{bottom:641.746533pt;}
.y5d{bottom:641.847867pt;}
.yf5{bottom:643.546267pt;}
.y185{bottom:646.692667pt;}
.y159{bottom:647.354267pt;}
.y127{bottom:647.610267pt;}
.yc1{bottom:651.855600pt;}
.y8c{bottom:656.458533pt;}
.y11{bottom:659.720267pt;}
.y1b2{bottom:660.418533pt;}
.y5c{bottom:660.514533pt;}
.yf4{bottom:661.220933pt;}
.y158{bottom:664.804933pt;}
.yc0{bottom:665.188933pt;}
.y126{bottom:666.116933pt;}
.y8b{bottom:674.549200pt;}
.yf3{bottom:678.895600pt;}
.y1b1{bottom:679.090533pt;}
.y184{bottom:679.175733pt;}
.y5b{bottom:679.181200pt;}
.y157{bottom:682.255600pt;}
.ybf{bottom:683.546267pt;}
.y125{bottom:684.623600pt;}
.y8a{bottom:692.639867pt;}
.yf2{bottom:696.570267pt;}
.y1b0{bottom:697.762533pt;}
.y183{bottom:697.842400pt;}
.y5a{bottom:697.847867pt;}
.y156{bottom:699.706267pt;}
.ybe{bottom:701.903600pt;}
.y124{bottom:703.130267pt;}
.y89{bottom:705.973200pt;}
.yf1{bottom:714.244933pt;}
.y1af{bottom:716.434533pt;}
.y123{bottom:716.463600pt;}
.y182{bottom:716.514400pt;}
.y59{bottom:716.514533pt;}
.y155{bottom:717.156933pt;}
.ybd{bottom:720.260933pt;}
.y88{bottom:724.063867pt;}
.yb{bottom:730.192667pt;}
.yf0{bottom:731.919600pt;}
.y154{bottom:734.607600pt;}
.y122{bottom:734.970267pt;}
.y1ae{bottom:735.106533pt;}
.y58{bottom:735.181200pt;}
.ybc{bottom:738.618267pt;}
.y181{bottom:740.026000pt;}
.y87{bottom:742.154533pt;}
.ya{bottom:746.192667pt;}
.yef{bottom:749.594267pt;}
.ybb{bottom:751.951600pt;}
.y153{bottom:752.058267pt;}
.y121{bottom:753.476933pt;}
.y1ad{bottom:753.778533pt;}
.y57{bottom:753.847867pt;}
.y86{bottom:755.487867pt;}
.y9{bottom:762.192667pt;}
.y152{bottom:765.391600pt;}
.yee{bottom:767.268933pt;}
.yba{bottom:770.308933pt;}
.y120{bottom:771.983600pt;}
.y1ac{bottom:772.450533pt;}
.y180{bottom:772.514400pt;}
.y56{bottom:772.514533pt;}
.y85{bottom:773.578533pt;}
.y8{bottom:778.192667pt;}
.yed{bottom:780.602267pt;}
.y151{bottom:782.842267pt;}
.yb9{bottom:788.666267pt;}
.y11f{bottom:790.490267pt;}
.y1ab{bottom:791.122533pt;}
.y55{bottom:791.181200pt;}
.y84{bottom:791.669200pt;}
.y7{bottom:794.192667pt;}
.y17f{bottom:796.026000pt;}
.yec{bottom:798.276933pt;}
.y150{bottom:800.292933pt;}
.yb8{bottom:807.023600pt;}
.y11e{bottom:808.996933pt;}
.y83{bottom:809.759867pt;}
.y1aa{bottom:809.794533pt;}
.y54{bottom:809.847867pt;}
.y6{bottom:810.192667pt;}
.yeb{bottom:815.951600pt;}
.y14f{bottom:817.743600pt;}
.yb7{bottom:820.356933pt;}
.y11d{bottom:827.503600pt;}
.y82{bottom:827.850533pt;}
.y1a9{bottom:828.466533pt;}
.y17e{bottom:828.503867pt;}
.y16f{bottom:828.514533pt;}
.yea{bottom:829.284933pt;}
.y14e{bottom:835.194267pt;}
.yb6{bottom:838.714267pt;}
.y53{bottom:841.280933pt;}
.y5{bottom:841.310933pt;}
.y81{bottom:845.941200pt;}
.y11c{bottom:846.010267pt;}
.ye9{bottom:846.959600pt;}
.y1a8{bottom:847.138533pt;}
.y17d{bottom:847.175867pt;}
.y16e{bottom:847.181200pt;}
.y14d{bottom:852.644933pt;}
.yb5{bottom:857.071600pt;}
.y80{bottom:864.031867pt;}
.y11b{bottom:864.516933pt;}
.ye8{bottom:864.634267pt;}
.y1a7{bottom:865.810533pt;}
.y16d{bottom:865.847867pt;}
.y14c{bottom:870.095600pt;}
.y4{bottom:874.034267pt;}
.yb4{bottom:875.428933pt;}
.y7f{bottom:882.122533pt;}
.ye7{bottom:882.308933pt;}
.y11a{bottom:883.023600pt;}
.y1a6{bottom:884.482533pt;}
.y52{bottom:884.514533pt;}
.y14b{bottom:887.546267pt;}
.y17c{bottom:889.359333pt;}
.yb3{bottom:893.786267pt;}
.ye6{bottom:899.983600pt;}
.y7e{bottom:900.213200pt;}
.y14a{bottom:900.879600pt;}
.y119{bottom:901.530267pt;}
.y1a5{bottom:903.154533pt;}
.y46{bottom:903.181067pt;}
.y51{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.yb2{bottom:907.119600pt;}
.ye5{bottom:917.658267pt;}
.y7d{bottom:918.303867pt;}
.y149{bottom:918.330267pt;}
.y118{bottom:920.036933pt;}
.y1a4{bottom:921.826533pt;}
.y45{bottom:921.847733pt;}
.y50{bottom:921.847867pt;}
.yb1{bottom:925.476933pt;}
.y2{bottom:932.695600pt;}
.ye4{bottom:935.332933pt;}
.y148{bottom:935.780933pt;}
.y7c{bottom:936.511867pt;}
.y117{bottom:938.543600pt;}
.yb0{bottom:938.810267pt;}
.y1a3{bottom:940.498533pt;}
.y44{bottom:940.514400pt;}
.y4f{bottom:940.514533pt;}
.y7b{bottom:943.178533pt;}
.y17b{bottom:945.359333pt;}
.ye3{bottom:953.007600pt;}
.y147{bottom:953.231600pt;}
.y116{bottom:957.050267pt;}
.yaf{bottom:957.167600pt;}
.y1a2{bottom:959.170533pt;}
.y43{bottom:959.181067pt;}
.y4e{bottom:959.181200pt;}
.y115{bottom:970.383600pt;}
.yae{bottom:970.500933pt;}
.ye2{bottom:970.682267pt;}
.y7a{bottom:977.314133pt;}
.y1a1{bottom:977.842533pt;}
.y42{bottom:977.847733pt;}
.y4d{bottom:977.847867pt;}
.y10{bottom:986.502667pt;}
.yad{bottom:989.156933pt;}
.y79{bottom:994.918133pt;}
.yac{bottom:995.823600pt;}
.y41{bottom:996.514400pt;}
.y4c{bottom:996.514533pt;}
.y17a{bottom:1000.401600pt;}
.y3d{bottom:1030.390667pt;}
.y3c{bottom:1047.724000pt;}
.y40{bottom:1047.726267pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h12{height:33.666667pt;}
.h11{height:33.979167pt;}
.hf{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h13{height:34.666667pt;}
.h14{height:34.854933pt;}
.h8{height:38.226562pt;}
.he{height:38.273438pt;}
.hd{height:38.507812pt;}
.ha{height:39.000000pt;}
.h17{height:39.021333pt;}
.h18{height:39.576000pt;}
.h9{height:42.083333pt;}
.hc{height:43.333333pt;}
.h16{height:44.601562pt;}
.h15{height:46.291667pt;}
.h4{height:47.666667pt;}
.hb{height:50.500000pt;}
.h10{height:60.645833pt;}
.h3{height:72.205729pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:65.763733pt;}
.x3{left:80.881867pt;}
.xb{left:95.167867pt;}
.xc{left:96.257467pt;}
.xf{left:99.784133pt;}
.x6{left:106.559067pt;}
.x7{left:108.473333pt;}
.x8{left:110.313733pt;}
.xd{left:218.600133pt;}
.x5{left:266.834667pt;}
.x21{left:281.968000pt;}
.x4{left:352.045067pt;}
.x1b{left:409.736133pt;}
.x10{left:424.594800pt;}
.x18{left:430.909467pt;}
.x12{left:437.949467pt;}
.x1d{left:440.648133pt;}
.x13{left:448.157467pt;}
.x20{left:465.234800pt;}
.x16{left:472.072133pt;}
.x19{left:476.061467pt;}
.x1f{left:478.962800pt;}
.x1a{left:488.232133pt;}
.x1e{left:503.410800pt;}
.x1c{left:532.936133pt;}
.xa{left:576.806933pt;}
.x9{left:595.302933pt;}
.x11{left:673.277467pt;}
.xe{left:674.802800pt;}
.x17{left:676.168133pt;}
.x14{left:679.058800pt;}
.x15{left:689.138800pt;}
.x1{left:712.140000pt;}
}




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