
    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_2b038cde088cb08934f71a85.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.167000;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_85b12a75c40e562d20161f52.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.165000;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_9f43ab30cdcea63caf481d4c.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.040048;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_af90dd6c571387a3722c9a75.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.184000;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_520cee1738bbb61a949d50bc.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.166000;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_52d3f7cbc4e1499058fd533d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.200900;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_1155a11a7a4d26496aaf16e2.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.160000;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_abc8928cb93665ab7522acca.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.160000;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_8cbbb8217bef50ac35d21e62.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.196000;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_1155a11a7a4d26496aaf16e2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.160000;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_9b261c75cf4099234d6f81d8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.157000;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_9587160bef144c3b1a5197ff.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.186000;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-19.980000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:18.387600px;}
.v1{vertical-align:19.980000px;}
.v3{vertical-align:64.783800px;}
.ls67{letter-spacing:-4.129200px;}
.ls71{letter-spacing:-3.818400px;}
.ls6c{letter-spacing:-3.120000px;}
.ls70{letter-spacing:-1.909200px;}
.ls61{letter-spacing:-1.836000px;}
.ls73{letter-spacing:-1.350000px;}
.ls5b{letter-spacing:-0.960000px;}
.ls43{letter-spacing:-0.780000px;}
.ls46{letter-spacing:-0.720000px;}
.ls37{letter-spacing:-0.648000px;}
.ls41{letter-spacing:-0.600000px;}
.ls45{letter-spacing:-0.540000px;}
.ls6e{letter-spacing:-0.516000px;}
.ls3d{letter-spacing:-0.486000px;}
.ls42{letter-spacing:-0.420000px;}
.ls52{letter-spacing:-0.414000px;}
.ls69{letter-spacing:-0.360000px;}
.ls4f{letter-spacing:-0.349800px;}
.ls6b{letter-spacing:-0.324000px;}
.ls40{letter-spacing:-0.300000px;}
.ls58{letter-spacing:-0.279000px;}
.lsa{letter-spacing:-0.240000px;}
.ls2f{letter-spacing:-0.223200px;}
.lsc{letter-spacing:-0.180000px;}
.ls48{letter-spacing:-0.174900px;}
.ls2e{letter-spacing:-0.167400px;}
.ls8{letter-spacing:-0.153000px;}
.ls65{letter-spacing:-0.139920px;}
.ls2c{letter-spacing:-0.120000px;}
.ls2d{letter-spacing:-0.111600px;}
.ls57{letter-spacing:-0.069960px;}
.lsb{letter-spacing:-0.060000px;}
.ls20{letter-spacing:-0.055800px;}
.ls6f{letter-spacing:-0.054000px;}
.ls3e{letter-spacing:-0.034980px;}
.ls6{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.000746px;}
.ls28{letter-spacing:0.027900px;}
.ls59{letter-spacing:0.030000px;}
.ls51{letter-spacing:0.034980px;}
.ls25{letter-spacing:0.039960px;}
.ls0{letter-spacing:0.051000px;}
.ls27{letter-spacing:0.055800px;}
.ls5{letter-spacing:0.060000px;}
.ls55{letter-spacing:0.069960px;}
.ls1e{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.111600px;}
.ls30{letter-spacing:0.120000px;}
.ls50{letter-spacing:0.139920px;}
.ls24{letter-spacing:0.150000px;}
.ls63{letter-spacing:0.162000px;}
.ls18{letter-spacing:0.167400px;}
.ls38{letter-spacing:0.174900px;}
.ls10{letter-spacing:0.180000px;}
.ls5a{letter-spacing:0.216000px;}
.lsd{letter-spacing:0.222000px;}
.ls29{letter-spacing:0.223200px;}
.ls11{letter-spacing:0.240000px;}
.ls5f{letter-spacing:0.244860px;}
.ls36{letter-spacing:0.251100px;}
.ls22{letter-spacing:0.254061px;}
.ls44{letter-spacing:0.270000px;}
.ls17{letter-spacing:0.279000px;}
.ls3f{letter-spacing:0.279840px;}
.lsf{letter-spacing:0.300000px;}
.ls5d{letter-spacing:0.330000px;}
.lse{letter-spacing:0.333000px;}
.ls1a{letter-spacing:0.334800px;}
.ls31{letter-spacing:0.349080px;}
.ls4{letter-spacing:0.360000px;}
.ls34{letter-spacing:0.390000px;}
.ls1d{letter-spacing:0.390600px;}
.ls19{letter-spacing:0.413400px;}
.ls13{letter-spacing:0.420000px;}
.ls32{letter-spacing:0.446400px;}
.ls39{letter-spacing:0.450000px;}
.ls60{letter-spacing:0.454740px;}
.ls12{letter-spacing:0.480000px;}
.ls3a{letter-spacing:0.540000px;}
.ls1b{letter-spacing:0.558000px;}
.ls23{letter-spacing:0.600000px;}
.ls4e{letter-spacing:0.613800px;}
.ls3b{letter-spacing:0.660000px;}
.ls49{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.750000px;}
.ls2{letter-spacing:0.780000px;}
.ls4d{letter-spacing:0.781200px;}
.ls1f{letter-spacing:0.810000px;}
.ls35{letter-spacing:0.840000px;}
.ls54{letter-spacing:0.864000px;}
.ls3{letter-spacing:0.900000px;}
.ls1c{letter-spacing:0.948600px;}
.ls21{letter-spacing:0.972000px;}
.ls9{letter-spacing:1.032000px;}
.ls2a{letter-spacing:1.080000px;}
.ls62{letter-spacing:1.140000px;}
.ls2b{letter-spacing:1.200000px;}
.ls14{letter-spacing:1.260000px;}
.ls4b{letter-spacing:1.458000px;}
.ls53{letter-spacing:1.512000px;}
.ls56{letter-spacing:1.566000px;}
.ls33{letter-spacing:1.620000px;}
.ls5e{letter-spacing:1.728000px;}
.ls5c{letter-spacing:1.740000px;}
.ls1{letter-spacing:1.806000px;}
.ls6a{letter-spacing:1.836000px;}
.ls6d{letter-spacing:1.944000px;}
.ls4a{letter-spacing:1.998000px;}
.ls68{letter-spacing:2.052000px;}
.ls64{letter-spacing:2.214000px;}
.ls7{letter-spacing:2.322000px;}
.ls47{letter-spacing:2.340000px;}
.ls66{letter-spacing:2.376000px;}
.ls72{letter-spacing:2.838000px;}
.ls4c{letter-spacing:26.728200px;}
.ls3c{letter-spacing:36.381600px;}
.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;}
}
.ws10b{word-spacing:-15.174000px;}
.wsaa{word-spacing:-14.796000px;}
.ws121{word-spacing:-14.742000px;}
.ws117{word-spacing:-14.634000px;}
.wsf2{word-spacing:-14.526000px;}
.ws5d{word-spacing:-14.418000px;}
.wsda{word-spacing:-14.364000px;}
.wsc8{word-spacing:-14.310000px;}
.ws128{word-spacing:-14.241600px;}
.wsea{word-spacing:-14.100000px;}
.ws1{word-spacing:-13.725600px;}
.ws2{word-spacing:-13.209600px;}
.ws4c{word-spacing:-13.200000px;}
.ws100{word-spacing:-12.960000px;}
.ws1c{word-spacing:-12.906000px;}
.ws9c{word-spacing:-12.900000px;}
.ws0{word-spacing:-12.798000px;}
.ws5e{word-spacing:-12.600000px;}
.wsdd{word-spacing:-12.480000px;}
.ws5f{word-spacing:-12.420000px;}
.ws87{word-spacing:-12.312000px;}
.ws118{word-spacing:-12.000000px;}
.ws60{word-spacing:-11.997000px;}
.wsf4{word-spacing:-11.940000px;}
.ws89{word-spacing:-11.730000px;}
.ws20{word-spacing:-11.718000px;}
.ws101{word-spacing:-11.700000px;}
.ws9b{word-spacing:-11.640000px;}
.wsf6{word-spacing:-11.580000px;}
.ws107{word-spacing:-11.550600px;}
.wseb{word-spacing:-11.520000px;}
.ws1f{word-spacing:-11.494800px;}
.wsdb{word-spacing:-11.460000px;}
.wsdf{word-spacing:-11.280000px;}
.wsdc{word-spacing:-11.220000px;}
.wsab{word-spacing:-11.160000px;}
.ws122{word-spacing:-11.094000px;}
.ws110{word-spacing:-10.920000px;}
.ws3{word-spacing:-10.710000px;}
.ws12c{word-spacing:-10.578000px;}
.wse9{word-spacing:-10.320000px;}
.ws11c{word-spacing:-10.140000px;}
.ws1e{word-spacing:-8.901000px;}
.wsbf{word-spacing:-8.487000px;}
.ws10c{word-spacing:-7.867800px;}
.wsf5{word-spacing:-7.800540px;}
.ws8a{word-spacing:-7.625640px;}
.wsf3{word-spacing:-7.590660px;}
.ws72{word-spacing:-7.520700px;}
.wsbd{word-spacing:-7.485720px;}
.wsd0{word-spacing:-7.415760px;}
.wsbe{word-spacing:-7.380780px;}
.ws1d{word-spacing:-7.345800px;}
.ws88{word-spacing:-7.310820px;}
.wsde{word-spacing:-7.275840px;}
.ws108{word-spacing:-7.205880px;}
.ws9d{word-spacing:-7.170900px;}
.wsb4{word-spacing:-2.400000px;}
.wsa0{word-spacing:-2.340000px;}
.ws116{word-spacing:-2.280000px;}
.wsa8{word-spacing:-2.100000px;}
.wsad{word-spacing:-2.040000px;}
.ws64{word-spacing:-1.980000px;}
.ws3d{word-spacing:-1.953000px;}
.ws18{word-spacing:-1.920000px;}
.ws5c{word-spacing:-1.897200px;}
.ws15{word-spacing:-1.860000px;}
.ws37{word-spacing:-1.841400px;}
.wsa5{word-spacing:-1.800000px;}
.ws3a{word-spacing:-1.785600px;}
.ws92{word-spacing:-1.740000px;}
.ws31{word-spacing:-1.729800px;}
.ws7c{word-spacing:-1.680000px;}
.wsd9{word-spacing:-1.674000px;}
.wsc{word-spacing:-1.632000px;}
.wsf9{word-spacing:-1.620000px;}
.wsfe{word-spacing:-1.618200px;}
.ws32{word-spacing:-1.562400px;}
.wsf8{word-spacing:-1.560000px;}
.ws113{word-spacing:-1.500000px;}
.ws38{word-spacing:-1.450800px;}
.ws80{word-spacing:-1.440000px;}
.ws56{word-spacing:-1.395000px;}
.ws7f{word-spacing:-1.380000px;}
.ws4b{word-spacing:-1.339200px;}
.ws84{word-spacing:-1.320000px;}
.ws85{word-spacing:-1.283400px;}
.wsca{word-spacing:-1.260000px;}
.ws4a{word-spacing:-1.227600px;}
.ws27{word-spacing:-1.200000px;}
.ws7{word-spacing:-1.173000px;}
.ws42{word-spacing:-1.171800px;}
.ws98{word-spacing:-1.140000px;}
.ws44{word-spacing:-1.116000px;}
.ws4d{word-spacing:-1.080000px;}
.ws8{word-spacing:-1.071000px;}
.ws43{word-spacing:-1.060200px;}
.wsf{word-spacing:-1.032000px;}
.ws53{word-spacing:-1.020000px;}
.ws86{word-spacing:-1.004400px;}
.ws16{word-spacing:-0.960000px;}
.ws47{word-spacing:-0.948600px;}
.ws90{word-spacing:-0.900000px;}
.ws65{word-spacing:-0.840000px;}
.ws36{word-spacing:-0.837000px;}
.ws9{word-spacing:-0.816000px;}
.wsd8{word-spacing:-0.781200px;}
.ws4f{word-spacing:-0.780000px;}
.ws39{word-spacing:-0.725400px;}
.ws125{word-spacing:-0.722400px;}
.ws105{word-spacing:-0.720000px;}
.ws8e{word-spacing:-0.660000px;}
.ws70{word-spacing:-0.613800px;}
.ws75{word-spacing:-0.600000px;}
.ws40{word-spacing:-0.558000px;}
.wsb7{word-spacing:-0.540000px;}
.ws10e{word-spacing:-0.502200px;}
.ws17{word-spacing:-0.480000px;}
.ws55{word-spacing:-0.446400px;}
.wsb9{word-spacing:-0.420000px;}
.ws49{word-spacing:-0.390600px;}
.wscc{word-spacing:-0.360000px;}
.ws4{word-spacing:-0.355200px;}
.ws3f{word-spacing:-0.334800px;}
.ws9f{word-spacing:-0.300000px;}
.ws3e{word-spacing:-0.279000px;}
.ws126{word-spacing:-0.258000px;}
.wsa{word-spacing:-0.255000px;}
.ws28{word-spacing:-0.240000px;}
.ws3c{word-spacing:-0.223200px;}
.ws1b{word-spacing:-0.222000px;}
.ws124{word-spacing:-0.206400px;}
.ws6{word-spacing:-0.204000px;}
.wsc2{word-spacing:-0.180000px;}
.ws58{word-spacing:-0.167400px;}
.ws19{word-spacing:-0.120000px;}
.wsc5{word-spacing:-0.111600px;}
.ws7b{word-spacing:-0.060000px;}
.wsc4{word-spacing:-0.055800px;}
.ws5{word-spacing:0.000000px;}
.ws10{word-spacing:0.051000px;}
.ws30{word-spacing:0.055800px;}
.wse3{word-spacing:0.060000px;}
.ws8c{word-spacing:0.120000px;}
.ws41{word-spacing:0.167400px;}
.ws78{word-spacing:0.180000px;}
.ws6a{word-spacing:0.223200px;}
.ws67{word-spacing:0.240000px;}
.ws6f{word-spacing:0.279000px;}
.ws62{word-spacing:0.300000px;}
.wsbc{word-spacing:0.334800px;}
.wsc1{word-spacing:0.349800px;}
.ws68{word-spacing:0.360000px;}
.wsc3{word-spacing:0.390600px;}
.ws2b{word-spacing:0.420000px;}
.wsa9{word-spacing:0.446400px;}
.wsfa{word-spacing:0.480000px;}
.wsd7{word-spacing:0.502200px;}
.ws127{word-spacing:0.516000px;}
.wse2{word-spacing:0.540000px;}
.wse6{word-spacing:0.558000px;}
.wsa1{word-spacing:0.600000px;}
.ws83{word-spacing:0.660000px;}
.wsff{word-spacing:0.669600px;}
.wse{word-spacing:0.714000px;}
.ws24{word-spacing:0.720000px;}
.ws9a{word-spacing:0.725400px;}
.wsd{word-spacing:0.765000px;}
.ws63{word-spacing:0.780000px;}
.wsc6{word-spacing:0.781200px;}
.ws2f{word-spacing:0.837000px;}
.wse4{word-spacing:0.840000px;}
.wse7{word-spacing:0.892800px;}
.wsb8{word-spacing:0.900000px;}
.ws6e{word-spacing:0.948600px;}
.ws79{word-spacing:0.960000px;}
.ws45{word-spacing:1.004400px;}
.ws7a{word-spacing:1.020000px;}
.ws34{word-spacing:1.060200px;}
.ws52{word-spacing:1.080000px;}
.ws3b{word-spacing:1.116000px;}
.ws50{word-spacing:1.140000px;}
.ws5a{word-spacing:1.171800px;}
.ws8d{word-spacing:1.200000px;}
.ws99{word-spacing:1.260000px;}
.ws48{word-spacing:1.283400px;}
.ws8f{word-spacing:1.320000px;}
.ws69{word-spacing:1.380000px;}
.ws10a{word-spacing:1.395000px;}
.wsf0{word-spacing:1.440000px;}
.wsb1{word-spacing:1.500000px;}
.ws59{word-spacing:1.506600px;}
.ws112{word-spacing:1.560000px;}
.ws71{word-spacing:1.562400px;}
.wscd{word-spacing:1.620000px;}
.wsb{word-spacing:1.632000px;}
.ws6b{word-spacing:1.674000px;}
.wsa2{word-spacing:1.680000px;}
.wsa6{word-spacing:1.740000px;}
.ws35{word-spacing:1.785600px;}
.wsd3{word-spacing:1.800000px;}
.ws5b{word-spacing:1.841400px;}
.ws2e{word-spacing:1.860000px;}
.ws33{word-spacing:1.897200px;}
.ws12a{word-spacing:1.909200px;}
.ws1a{word-spacing:1.920000px;}
.wscf{word-spacing:1.953000px;}
.ws25{word-spacing:1.980000px;}
.ws93{word-spacing:2.040000px;}
.ws2d{word-spacing:2.100000px;}
.ws23{word-spacing:2.160000px;}
.ws81{word-spacing:2.220000px;}
.wsb6{word-spacing:2.280000px;}
.ws7e{word-spacing:2.340000px;}
.ws95{word-spacing:2.400000px;}
.ws77{word-spacing:2.460000px;}
.ws66{word-spacing:2.520000px;}
.ws22{word-spacing:2.580000px;}
.wsd6{word-spacing:2.622600px;}
.ws13{word-spacing:2.640000px;}
.ws120{word-spacing:2.700000px;}
.ws115{word-spacing:2.760000px;}
.ws54{word-spacing:2.790000px;}
.wsd5{word-spacing:2.820000px;}
.ws46{word-spacing:2.845800px;}
.wsf1{word-spacing:2.880000px;}
.wsee{word-spacing:2.940000px;}
.ws57{word-spacing:2.957400px;}
.ws11e{word-spacing:3.000000px;}
.ws6c{word-spacing:3.013200px;}
.ws14{word-spacing:3.060000px;}
.ws94{word-spacing:3.120000px;}
.wsed{word-spacing:3.180000px;}
.ws114{word-spacing:3.240000px;}
.wscb{word-spacing:3.300000px;}
.ws97{word-spacing:3.360000px;}
.ws29{word-spacing:3.420000px;}
.wse8{word-spacing:3.459600px;}
.ws76{word-spacing:3.480000px;}
.wsba{word-spacing:3.515400px;}
.ws74{word-spacing:3.540000px;}
.ws2a{word-spacing:3.600000px;}
.ws12b{word-spacing:3.612000px;}
.ws6d{word-spacing:3.627000px;}
.wsef{word-spacing:3.660000px;}
.wsbb{word-spacing:3.682800px;}
.wsae{word-spacing:3.780000px;}
.wse1{word-spacing:3.840000px;}
.ws7d{word-spacing:3.900000px;}
.ws26{word-spacing:3.960000px;}
.wsa7{word-spacing:4.020000px;}
.ws91{word-spacing:4.080000px;}
.wsa4{word-spacing:4.140000px;}
.ws103{word-spacing:4.200000px;}
.wsd2{word-spacing:4.320000px;}
.wsb0{word-spacing:4.440000px;}
.wsb5{word-spacing:4.560000px;}
.ws106{word-spacing:4.620000px;}
.ws11a{word-spacing:4.680000px;}
.ws104{word-spacing:4.860000px;}
.wse5{word-spacing:4.966200px;}
.wsfc{word-spacing:5.040000px;}
.ws10f{word-spacing:5.100000px;}
.wsaf{word-spacing:5.280000px;}
.ws2c{word-spacing:5.340000px;}
.ws96{word-spacing:5.460000px;}
.wsce{word-spacing:5.520000px;}
.wsb3{word-spacing:5.580000px;}
.ws11f{word-spacing:5.700000px;}
.wsb2{word-spacing:5.820000px;}
.wsa3{word-spacing:6.180000px;}
.wsc7{word-spacing:6.193800px;}
.wsfb{word-spacing:6.240000px;}
.wsd4{word-spacing:6.300000px;}
.ws11{word-spacing:6.480000px;}
.ws51{word-spacing:6.600000px;}
.ws11b{word-spacing:6.660000px;}
.ws82{word-spacing:7.080000px;}
.ws12{word-spacing:7.200000px;}
.ws109{word-spacing:1559.358000px;}
.ws111{word-spacing:1559.682000px;}
.ws9e{word-spacing:1560.546000px;}
.wsc0{word-spacing:1560.924000px;}
.ws4e{word-spacing:1561.896000px;}
.wsd1{word-spacing:1562.058000px;}
.wsec{word-spacing:1563.354000px;}
.ws129{word-spacing:1563.894000px;}
.ws11d{word-spacing:1564.434000px;}
.ws73{word-spacing:1565.082000px;}
.ws12d{word-spacing:1566.486000px;}
.wsfd{word-spacing:1567.458000px;}
.ws10d{word-spacing:1613.952000px;}
.wsac{word-spacing:1614.330000px;}
.ws123{word-spacing:1614.384000px;}
.ws119{word-spacing:1614.492000px;}
.wsf7{word-spacing:1614.600000px;}
.ws61{word-spacing:1614.654000px;}
.wse0{word-spacing:1614.708000px;}
.wsc9{word-spacing:1614.762000px;}
.ws102{word-spacing:1616.112000px;}
.ws21{word-spacing:1616.166000px;}
.ws8b{word-spacing:1616.760000px;}
._9{margin-left:-1616.325600px;}
._10{margin-left:-1614.960600px;}
._1b{margin-left:-1613.649600px;}
._24{margin-left:-20.651280px;}
._a{margin-left:-15.229800px;}
._17{margin-left:-13.080000px;}
._8{margin-left:-11.160000px;}
._14{margin-left:-8.274420px;}
._b{margin-left:-6.660000px;}
._6{margin-left:-5.560500px;}
._5{margin-left:-4.345200px;}
._0{margin-left:-2.880000px;}
._1{margin-left:-1.440000px;}
._3{width:1.365000px;}
._2{width:2.778000px;}
._4{width:4.351800px;}
._7{width:5.658000px;}
._2a{width:6.852000px;}
._23{width:23.658600px;}
._26{width:25.140000px;}
._25{width:27.118200px;}
._22{width:28.177800px;}
._1f{width:29.182200px;}
._16{width:30.354000px;}
._20{width:32.473800px;}
._1e{width:34.428000px;}
._1a{width:35.767800px;}
._1c{width:37.162200px;}
._19{width:38.166000px;}
._18{width:39.895800px;}
._1d{width:41.872200px;}
._29{width:44.863200px;}
._e{width:48.880200px;}
._f{width:51.615000px;}
._d{width:53.065800px;}
._15{width:55.074000px;}
._c{width:56.580600px;}
._11{width:69.638400px;}
._21{width:71.228700px;}
._13{width:73.265400px;}
._12{width:74.269800px;}
._28{width:134.178000px;}
._27{width:641.532600px;}
.fc1{color:rgb(123,121,121);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:22.200000px;}
.fsb{font-size:24.000000px;}
.fsa{font-size:32.531400px;}
.fs7{font-size:34.980000px;}
.fs8{font-size:41.400000px;}
.fs4{font-size:51.000000px;}
.fs3{font-size:51.600000px;}
.fs2{font-size:54.000000px;}
.fs9{font-size:55.800000px;}
.fs5{font-size:60.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y92{bottom:63.779550px;}
.y53{bottom:63.779700px;}
.y6c{bottom:63.784050px;}
.y81{bottom:63.788400px;}
.yb7{bottom:63.801450px;}
.y145{bottom:64.054650px;}
.y158{bottom:64.071450px;}
.y22{bottom:64.842450px;}
.y1e3{bottom:69.275100px;}
.y1a1{bottom:69.285600px;}
.y1b3{bottom:69.298200px;}
.y91{bottom:81.179550px;}
.y52{bottom:81.179700px;}
.y116{bottom:81.183900px;}
.y80{bottom:81.184050px;}
.y96{bottom:81.188400px;}
.yb6{bottom:81.197100px;}
.y144{bottom:81.456750px;}
.y157{bottom:81.473550px;}
.y21{bottom:83.442450px;}
.y1e2{bottom:86.677200px;}
.y1a0{bottom:86.687700px;}
.y1b2{bottom:86.696100px;}
.y90{bottom:98.579550px;}
.y7f{bottom:98.579700px;}
.y97{bottom:98.579850px;}
.y51{bottom:98.584050px;}
.ye8{bottom:98.584200px;}
.y6b{bottom:98.592750px;}
.y143{bottom:98.858850px;}
.y156{bottom:98.875650px;}
.y20{bottom:102.042450px;}
.y1e1{bottom:104.079300px;}
.y19f{bottom:104.089800px;}
.y1b1{bottom:104.098200px;}
.y8f{bottom:115.979550px;}
.y50{bottom:115.979700px;}
.yb3{bottom:115.979850px;}
.yd6{bottom:115.983900px;}
.y9b{bottom:115.984200px;}
.y6a{bottom:115.988400px;}
.yce{bottom:116.001450px;}
.y142{bottom:116.260950px;}
.y155{bottom:116.277750px;}
.y1f{bottom:120.642450px;}
.y1b0{bottom:121.453200px;}
.y1e0{bottom:121.481400px;}
.y19e{bottom:121.491900px;}
.yd5{bottom:133.379550px;}
.y8e{bottom:133.379700px;}
.y9a{bottom:133.379850px;}
.y4f{bottom:133.384050px;}
.y95{bottom:133.384200px;}
.yc4{bottom:133.388400px;}
.ycd{bottom:133.397100px;}
.y141{bottom:133.663050px;}
.y154{bottom:133.679850px;}
.y1af{bottom:138.855300px;}
.y1df{bottom:138.883500px;}
.y19d{bottom:138.894000px;}
.y1e{bottom:139.242450px;}
.y4e{bottom:150.779700px;}
.y8d{bottom:150.779850px;}
.yc3{bottom:150.784050px;}
.ye7{bottom:150.784200px;}
.yd4{bottom:150.788250px;}
.ycc{bottom:150.792750px;}
.y140{bottom:151.065150px;}
.y153{bottom:151.081950px;}
.y1ae{bottom:156.257400px;}
.y1de{bottom:156.285600px;}
.y19c{bottom:156.296100px;}
.y1d{bottom:157.842450px;}
.y69{bottom:168.179700px;}
.y99{bottom:168.179850px;}
.yb2{bottom:168.180000px;}
.yd3{bottom:168.183900px;}
.y4d{bottom:168.184050px;}
.yb5{bottom:168.184200px;}
.ycb{bottom:168.188400px;}
.y13f{bottom:168.467250px;}
.y152{bottom:168.484050px;}
.y21c{bottom:173.610000px;}
.y1ad{bottom:173.659500px;}
.y1dd{bottom:173.687700px;}
.y19b{bottom:173.698200px;}
.y1c{bottom:176.442450px;}
.yd2{bottom:185.579550px;}
.y4c{bottom:185.579700px;}
.yb4{bottom:185.579850px;}
.yb1{bottom:185.580000px;}
.y68{bottom:185.584050px;}
.y98{bottom:185.584200px;}
.y13e{bottom:185.869350px;}
.y151{bottom:185.886150px;}
.y21b{bottom:191.012100px;}
.y244{bottom:191.014200px;}
.y1ac{bottom:191.061600px;}
.y1dc{bottom:191.089800px;}
.y19a{bottom:191.098200px;}
.y1b{bottom:195.042450px;}
.yd1{bottom:202.979550px;}
.y67{bottom:202.979700px;}
.y8c{bottom:202.979850px;}
.yb0{bottom:202.980150px;}
.y4b{bottom:202.984050px;}
.y7e{bottom:202.984200px;}
.y13d{bottom:203.271450px;}
.y150{bottom:203.288250px;}
.y199{bottom:208.362600px;}
.y21a{bottom:208.414200px;}
.y243{bottom:208.416300px;}
.y1ab{bottom:208.463700px;}
.y1db{bottom:208.491900px;}
.y20c{bottom:208.498200px;}
.y1a{bottom:213.642450px;}
.yd0{bottom:220.379550px;}
.y4a{bottom:220.379700px;}
.y7d{bottom:220.379850px;}
.yaf{bottom:220.380300px;}
.yc2{bottom:220.384200px;}
.y66{bottom:220.388400px;}
.yca{bottom:220.392750px;}
.y13c{bottom:220.673550px;}
.y14f{bottom:220.690350px;}
.y198{bottom:225.764700px;}
.y219{bottom:225.816300px;}
.y242{bottom:225.818400px;}
.y1aa{bottom:225.865800px;}
.y1da{bottom:225.894000px;}
.y20b{bottom:225.898200px;}
.y19{bottom:232.242450px;}
.y49{bottom:237.779700px;}
.y7c{bottom:237.779850px;}
.y65{bottom:237.784050px;}
.y8b{bottom:237.784200px;}
.yae{bottom:237.784650px;}
.yc9{bottom:237.788400px;}
.y13b{bottom:238.075650px;}
.y14e{bottom:238.092450px;}
.y197{bottom:243.166800px;}
.y218{bottom:243.218400px;}
.y241{bottom:243.220500px;}
.y1a9{bottom:243.267900px;}
.y1d9{bottom:243.296100px;}
.y20a{bottom:243.298200px;}
.y18{bottom:250.842450px;}
.y48{bottom:255.179700px;}
.y8a{bottom:255.179850px;}
.y7b{bottom:255.180000px;}
.yad{bottom:255.180300px;}
.yc8{bottom:255.184050px;}
.y14d{bottom:255.439050px;}
.y13a{bottom:255.477750px;}
.y196{bottom:260.568900px;}
.y217{bottom:260.620500px;}
.y240{bottom:260.622600px;}
.y1a8{bottom:260.670000px;}
.y209{bottom:260.673000px;}
.y1d8{bottom:260.698200px;}
.y94{bottom:269.442450px;}
.ycf{bottom:272.579550px;}
.y47{bottom:272.579700px;}
.y64{bottom:272.584050px;}
.yc1{bottom:272.588550px;}
.yac{bottom:272.593350px;}
.y7a{bottom:272.610450px;}
.y14c{bottom:272.841150px;}
.y139{bottom:272.879850px;}
.y195{bottom:277.971000px;}
.y216{bottom:278.022600px;}
.y23f{bottom:278.024700px;}
.y1d7{bottom:278.060400px;}
.y1a7{bottom:278.072100px;}
.y208{bottom:278.075100px;}
.y93{bottom:288.042450px;}
.y63{bottom:289.979700px;}
.y46{bottom:289.984050px;}
.yc0{bottom:289.984200px;}
.yab{bottom:289.989000px;}
.yc7{bottom:289.992750px;}
.y79{bottom:290.006100px;}
.y14b{bottom:290.243250px;}
.y138{bottom:290.281950px;}
.y194{bottom:295.373100px;}
.y215{bottom:295.424700px;}
.y23e{bottom:295.426800px;}
.y1d6{bottom:295.462500px;}
.y1a6{bottom:295.474200px;}
.y207{bottom:295.477200px;}
.y89{bottom:306.642450px;}
.y45{bottom:307.379700px;}
.ybf{bottom:307.379850px;}
.yaa{bottom:307.384650px;}
.y62{bottom:307.388400px;}
.y78{bottom:307.401750px;}
.y14a{bottom:307.645350px;}
.y137{bottom:307.684050px;}
.y193{bottom:312.775200px;}
.y214{bottom:312.826800px;}
.y23d{bottom:312.828900px;}
.y1d5{bottom:312.864600px;}
.y1a5{bottom:312.876300px;}
.y206{bottom:312.879300px;}
.y17{bottom:312.942450px;}
.y44{bottom:324.779850px;}
.ya9{bottom:324.780300px;}
.y61{bottom:324.784050px;}
.ybe{bottom:324.792900px;}
.y77{bottom:324.797400px;}
.y149{bottom:325.047450px;}
.y136{bottom:325.086150px;}
.y88{bottom:325.242450px;}
.y192{bottom:330.177300px;}
.y16{bottom:330.192450px;}
.y213{bottom:330.228900px;}
.y23c{bottom:330.231000px;}
.y1d4{bottom:330.266700px;}
.y1a4{bottom:330.278400px;}
.y205{bottom:330.281400px;}
.y60{bottom:342.179700px;}
.ya8{bottom:342.180300px;}
.ybd{bottom:342.188550px;}
.y76{bottom:342.193050px;}
.y43{bottom:342.197100px;}
.y148{bottom:342.449550px;}
.y135{bottom:342.488250px;}
.y87{bottom:343.842450px;}
.y191{bottom:347.579400px;}
.y212{bottom:347.631000px;}
.y23b{bottom:347.633100px;}
.y1d3{bottom:347.668800px;}
.y1a3{bottom:347.680500px;}
.y204{bottom:347.683500px;}
.y5f{bottom:359.579700px;}
.ya7{bottom:359.580300px;}
.yc6{bottom:359.584050px;}
.ybc{bottom:359.584200px;}
.y75{bottom:359.588700px;}
.y42{bottom:359.592750px;}
.y147{bottom:359.851650px;}
.y134{bottom:359.890350px;}
.y86{bottom:362.442450px;}
.y190{bottom:364.981500px;}
.y15{bottom:364.991700px;}
.y211{bottom:365.033100px;}
.y23a{bottom:365.035200px;}
.y1d2{bottom:365.070900px;}
.y1a2{bottom:365.082600px;}
.y203{bottom:365.085600px;}
.yc5{bottom:376.979700px;}
.ybb{bottom:376.979850px;}
.y5e{bottom:376.984050px;}
.y74{bottom:376.984350px;}
.ya6{bottom:376.984650px;}
.y41{bottom:376.988400px;}
.y146{bottom:377.253750px;}
.y133{bottom:377.292450px;}
.y85{bottom:381.042450px;}
.y14{bottom:382.242450px;}
.y210{bottom:382.435200px;}
.y239{bottom:382.437300px;}
.y1d1{bottom:382.473000px;}
.y202{bottom:382.487700px;}
.y115{bottom:394.275150px;}
.y5d{bottom:394.379700px;}
.y73{bottom:394.380000px;}
.ya5{bottom:394.380300px;}
.y40{bottom:394.384050px;}
.yba{bottom:394.388550px;}
.y13{bottom:399.492450px;}
.y84{bottom:399.642450px;}
.y18f{bottom:399.785700px;}
.y20f{bottom:399.837300px;}
.y238{bottom:399.839400px;}
.y1d0{bottom:399.875100px;}
.y201{bottom:399.889800px;}
.y114{bottom:410.471100px;}
.y3f{bottom:411.779700px;}
.ya4{bottom:411.780300px;}
.y5c{bottom:411.784050px;}
.yb9{bottom:411.784200px;}
.y132{bottom:411.942450px;}
.y20e{bottom:417.239400px;}
.y237{bottom:417.241500px;}
.y1cf{bottom:417.277200px;}
.y200{bottom:417.291900px;}
.y83{bottom:418.242450px;}
.y113{bottom:426.667050px;}
.y3e{bottom:429.179700px;}
.yb8{bottom:429.179850px;}
.ya3{bottom:429.189000px;}
.y12{bottom:434.284950px;}
.y20d{bottom:434.641500px;}
.y236{bottom:434.643600px;}
.y1ce{bottom:434.679300px;}
.y1ff{bottom:434.694000px;}
.y72{bottom:436.842450px;}
.y112{bottom:442.863000px;}
.y125{bottom:446.417250px;}
.y5b{bottom:446.579700px;}
.y3d{bottom:446.584200px;}
.ya2{bottom:446.584650px;}
.y11{bottom:451.535700px;}
.y18e{bottom:451.992000px;}
.y173{bottom:452.043600px;}
.y235{bottom:452.045700px;}
.y1cd{bottom:452.081400px;}
.y1fe{bottom:452.096100px;}
.y71{bottom:455.442450px;}
.y111{bottom:459.058950px;}
.y131{bottom:463.793550px;}
.y124{bottom:463.819350px;}
.y3c{bottom:463.979850px;}
.ya1{bottom:463.980300px;}
.y10{bottom:468.786450px;}
.y18d{bottom:469.394100px;}
.y172{bottom:469.445700px;}
.y234{bottom:469.447800px;}
.y1cc{bottom:469.483500px;}
.y1fd{bottom:469.498200px;}
.y70{bottom:474.042450px;}
.y110{bottom:475.254900px;}
.y130{bottom:481.195650px;}
.y123{bottom:481.221450px;}
.y3b{bottom:481.379850px;}
.y5a{bottom:481.384200px;}
.ya0{bottom:481.384800px;}
.yf{bottom:486.037200px;}
.y18c{bottom:486.796200px;}
.y171{bottom:486.847800px;}
.y233{bottom:486.849900px;}
.y1cb{bottom:486.885600px;}
.y1fc{bottom:486.891900px;}
.y10f{bottom:491.450850px;}
.y6f{bottom:492.642450px;}
.y12f{bottom:498.597750px;}
.y122{bottom:498.623550px;}
.y3a{bottom:498.779700px;}
.y59{bottom:498.779850px;}
.y9f{bottom:498.780450px;}
.ye{bottom:503.287950px;}
.y18b{bottom:504.198300px;}
.y170{bottom:504.249900px;}
.y232{bottom:504.252000px;}
.y1ca{bottom:504.287700px;}
.y1fb{bottom:504.294000px;}
.ye3{bottom:505.217700px;}
.y10e{bottom:507.646800px;}
.y6e{bottom:511.242450px;}
.y12e{bottom:515.999850px;}
.y121{bottom:516.025650px;}
.y39{bottom:516.179700px;}
.y58{bottom:516.180000px;}
.y9e{bottom:516.180450px;}
.yd{bottom:520.538700px;}
.ye2{bottom:521.413650px;}
.y18a{bottom:521.600400px;}
.y16f{bottom:521.652000px;}
.y231{bottom:521.654100px;}
.y1c9{bottom:521.689800px;}
.y1fa{bottom:521.696100px;}
.y10d{bottom:523.842750px;}
.y82{bottom:529.842450px;}
.y12d{bottom:533.401950px;}
.y120{bottom:533.427750px;}
.y9d{bottom:533.580300px;}
.y57{bottom:533.593050px;}
.ye1{bottom:537.609600px;}
.yc{bottom:537.789450px;}
.y189{bottom:539.002500px;}
.y16e{bottom:539.054100px;}
.y230{bottom:539.056200px;}
.y1c8{bottom:539.091900px;}
.y1f9{bottom:539.098200px;}
.y10c{bottom:540.038700px;}
.y6d{bottom:548.442450px;}
.y12c{bottom:550.804050px;}
.y11f{bottom:550.829850px;}
.y9c{bottom:550.980450px;}
.y56{bottom:550.988700px;}
.ye0{bottom:553.805550px;}
.yb{bottom:555.040200px;}
.y10b{bottom:556.234650px;}
.y188{bottom:556.404600px;}
.y1f8{bottom:556.430700px;}
.y16d{bottom:556.456200px;}
.y22f{bottom:556.458300px;}
.y1c7{bottom:556.494000px;}
.y38{bottom:567.042450px;}
.y12b{bottom:568.206150px;}
.y11e{bottom:568.231950px;}
.y55{bottom:568.384350px;}
.ydf{bottom:570.001500px;}
.ya{bottom:572.290950px;}
.y10a{bottom:572.430600px;}
.y187{bottom:573.806700px;}
.y1f7{bottom:573.832800px;}
.y16c{bottom:573.858300px;}
.y22e{bottom:573.860400px;}
.y1c6{bottom:573.896100px;}
.y12a{bottom:585.608250px;}
.y11d{bottom:585.634050px;}
.y37{bottom:585.642450px;}
.y54{bottom:585.780000px;}
.yde{bottom:586.197450px;}
.y109{bottom:588.626550px;}
.y9{bottom:589.541700px;}
.y186{bottom:591.208800px;}
.y1f6{bottom:591.234900px;}
.y16b{bottom:591.260400px;}
.y22d{bottom:591.262500px;}
.y1c5{bottom:591.298200px;}
.ydd{bottom:602.393400px;}
.y129{bottom:603.010350px;}
.y11c{bottom:603.036150px;}
.y36{bottom:604.242450px;}
.y108{bottom:604.822500px;}
.y8{bottom:606.792450px;}
.y185{bottom:608.610900px;}
.y1f5{bottom:608.637000px;}
.y16a{bottom:608.662500px;}
.y22c{bottom:608.664600px;}
.y1c4{bottom:608.683500px;}
.ydc{bottom:618.589350px;}
.y128{bottom:620.412450px;}
.y11b{bottom:620.438250px;}
.y107{bottom:621.018450px;}
.y35{bottom:622.842450px;}
.y7{bottom:624.042450px;}
.y184{bottom:626.013000px;}
.y1f4{bottom:626.039100px;}
.y169{bottom:626.064600px;}
.y22b{bottom:626.066700px;}
.y1c3{bottom:626.085600px;}
.ydb{bottom:634.785300px;}
.ye6{bottom:634.827150px;}
.y106{bottom:637.214400px;}
.y127{bottom:637.814550px;}
.y11a{bottom:637.840350px;}
.y34{bottom:641.442450px;}
.y183{bottom:643.415100px;}
.y1f3{bottom:643.441200px;}
.y168{bottom:643.466700px;}
.y22a{bottom:643.468800px;}
.y1c2{bottom:643.487700px;}
.yda{bottom:650.981250px;}
.ye5{bottom:651.023100px;}
.y105{bottom:653.410350px;}
.y126{bottom:655.216650px;}
.y119{bottom:655.242450px;}
.y33{bottom:660.042450px;}
.y182{bottom:660.817200px;}
.y1f2{bottom:660.843300px;}
.y167{bottom:660.868800px;}
.y229{bottom:660.870900px;}
.y1c1{bottom:660.889800px;}
.yd9{bottom:667.177200px;}
.ye4{bottom:667.219050px;}
.y104{bottom:669.606300px;}
.y181{bottom:678.219300px;}
.y1f1{bottom:678.245400px;}
.y166{bottom:678.270900px;}
.y228{bottom:678.273000px;}
.y1c0{bottom:678.291900px;}
.y32{bottom:678.642450px;}
.yf6{bottom:685.760400px;}
.y103{bottom:685.802250px;}
.yd8{bottom:686.149200px;}
.y118{bottom:689.142450px;}
.y180{bottom:695.621400px;}
.y1f0{bottom:695.647500px;}
.y165{bottom:695.673000px;}
.y227{bottom:695.675100px;}
.y1bf{bottom:695.694000px;}
.y31{bottom:697.242450px;}
.yf5{bottom:701.956350px;}
.y102{bottom:701.998200px;}
.yd7{bottom:702.345150px;}
.y17f{bottom:713.023500px;}
.y1ef{bottom:713.049600px;}
.y164{bottom:713.075100px;}
.y226{bottom:713.077200px;}
.y1be{bottom:713.096100px;}
.y30{bottom:715.842450px;}
.yf4{bottom:718.152300px;}
.y101{bottom:718.194150px;}
.y117{bottom:722.142450px;}
.y17e{bottom:730.425600px;}
.y1ee{bottom:730.451700px;}
.y163{bottom:730.477200px;}
.y225{bottom:730.479300px;}
.y1bd{bottom:730.498200px;}
.yf3{bottom:734.348250px;}
.y100{bottom:734.390100px;}
.y2f{bottom:734.442450px;}
.y6{bottom:734.449800px;}
.y17d{bottom:747.827700px;}
.y1ed{bottom:747.853800px;}
.y162{bottom:747.879300px;}
.y224{bottom:747.881400px;}
.y1bc{bottom:747.883500px;}
.yf2{bottom:750.544200px;}
.yff{bottom:750.586050px;}
.y5{bottom:752.445300px;}
.y2e{bottom:753.042450px;}
.y17c{bottom:765.229800px;}
.y1ec{bottom:765.255900px;}
.y161{bottom:765.281400px;}
.y223{bottom:765.283500px;}
.y1bb{bottom:765.285600px;}
.yf1{bottom:766.740150px;}
.yfe{bottom:766.782000px;}
.y2d{bottom:771.642450px;}
.y17b{bottom:782.631900px;}
.y1eb{bottom:782.658000px;}
.y160{bottom:782.683500px;}
.y222{bottom:782.685600px;}
.y1ba{bottom:782.687700px;}
.yf0{bottom:782.936100px;}
.yfd{bottom:782.977950px;}
.y4{bottom:788.445300px;}
.y2c{bottom:790.242450px;}
.yef{bottom:799.132050px;}
.yfc{bottom:799.173900px;}
.y17a{bottom:800.034000px;}
.y1ea{bottom:800.060100px;}
.y15f{bottom:800.085600px;}
.y221{bottom:800.087700px;}
.y1b9{bottom:800.089800px;}
.y2b{bottom:808.842450px;}
.yee{bottom:815.328000px;}
.yfb{bottom:815.369850px;}
.y179{bottom:817.436100px;}
.y1e9{bottom:817.462200px;}
.y15e{bottom:817.487700px;}
.y220{bottom:817.489800px;}
.y1b8{bottom:817.491900px;}
.y2a{bottom:827.442450px;}
.yed{bottom:831.523950px;}
.yfa{bottom:831.565800px;}
.y178{bottom:834.838200px;}
.y1e8{bottom:834.864300px;}
.y15d{bottom:834.889800px;}
.y21f{bottom:834.891900px;}
.y1b7{bottom:834.894000px;}
.y3{bottom:835.453200px;}
.y29{bottom:846.042450px;}
.yec{bottom:847.719900px;}
.yf9{bottom:847.761750px;}
.y177{bottom:852.240300px;}
.y1e7{bottom:852.266400px;}
.y15c{bottom:852.291900px;}
.y21e{bottom:852.294000px;}
.y1b6{bottom:852.296100px;}
.y24{bottom:857.391000px;}
.yeb{bottom:863.915850px;}
.yf8{bottom:863.957700px;}
.y28{bottom:864.642450px;}
.y23{bottom:864.889050px;}
.y2{bottom:865.453200px;}
.y176{bottom:869.642400px;}
.y1e6{bottom:869.668500px;}
.y15b{bottom:869.694000px;}
.y21d{bottom:869.696100px;}
.y1b5{bottom:869.698200px;}
.yea{bottom:880.111800px;}
.yf7{bottom:880.153650px;}
.y27{bottom:883.242450px;}
.y175{bottom:887.044500px;}
.y1e5{bottom:887.070600px;}
.y15a{bottom:887.096100px;}
.y1b4{bottom:887.098200px;}
.y1{bottom:895.453200px;}
.ye9{bottom:899.083800px;}
.y26{bottom:901.842450px;}
.y174{bottom:904.446600px;}
.y1e4{bottom:904.472700px;}
.y159{bottom:904.498200px;}
.y25{bottom:955.942350px;}
.h9{height:20.823600px;}
.h7{height:45.900000px;}
.h12{height:46.078800px;}
.h15{height:46.137600px;}
.h11{height:46.233600px;}
.h14{height:46.413600px;}
.h16{height:46.503600px;}
.h17{height:46.586400px;}
.h6{height:46.614000px;}
.h13{height:46.776000px;}
.h10{height:47.110800px;}
.h5{height:48.762000px;}
.hf{height:49.829400px;}
.ha{height:49.996800px;}
.h4{height:50.868000px;}
.hd{height:50.945400px;}
.hc{height:53.880000px;}
.h8{height:54.000000px;}
.hb{height:56.700000px;}
.h3{height:67.824000px;}
.h2{height:90.720000px;}
.he{height:115.729200px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:697.323000px;}
.w1{width:697.500000px;}
.x0{left:0.000000px;}
.x7{left:25.730100px;}
.x6{left:28.599450px;}
.x4{left:72.283500px;}
.x1{left:80.787450px;}
.xc{left:85.041600px;}
.x5{left:93.538500px;}
.x8{left:102.047250px;}
.xb{left:348.660900px;}
.xd{left:353.413200px;}
.xa{left:357.485700px;}
.x10{left:361.917150px;}
.xe{left:366.171300px;}
.xf{left:374.675250px;}
.x9{left:625.039350px;}
.x3{left:650.769450px;}
.x2{left:653.638800px;}
@media print{
.v2{vertical-align:-17.760000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:16.344533pt;}
.v1{vertical-align:17.760000pt;}
.v3{vertical-align:57.585600pt;}
.ls67{letter-spacing:-3.670400pt;}
.ls71{letter-spacing:-3.394133pt;}
.ls6c{letter-spacing:-2.773333pt;}
.ls70{letter-spacing:-1.697067pt;}
.ls61{letter-spacing:-1.632000pt;}
.ls73{letter-spacing:-1.200000pt;}
.ls5b{letter-spacing:-0.853333pt;}
.ls43{letter-spacing:-0.693333pt;}
.ls46{letter-spacing:-0.640000pt;}
.ls37{letter-spacing:-0.576000pt;}
.ls41{letter-spacing:-0.533333pt;}
.ls45{letter-spacing:-0.480000pt;}
.ls6e{letter-spacing:-0.458667pt;}
.ls3d{letter-spacing:-0.432000pt;}
.ls42{letter-spacing:-0.373333pt;}
.ls52{letter-spacing:-0.368000pt;}
.ls69{letter-spacing:-0.320000pt;}
.ls4f{letter-spacing:-0.310933pt;}
.ls6b{letter-spacing:-0.288000pt;}
.ls40{letter-spacing:-0.266667pt;}
.ls58{letter-spacing:-0.248000pt;}
.lsa{letter-spacing:-0.213333pt;}
.ls2f{letter-spacing:-0.198400pt;}
.lsc{letter-spacing:-0.160000pt;}
.ls48{letter-spacing:-0.155467pt;}
.ls2e{letter-spacing:-0.148800pt;}
.ls8{letter-spacing:-0.136000pt;}
.ls65{letter-spacing:-0.124373pt;}
.ls2c{letter-spacing:-0.106667pt;}
.ls2d{letter-spacing:-0.099200pt;}
.ls57{letter-spacing:-0.062187pt;}
.lsb{letter-spacing:-0.053333pt;}
.ls20{letter-spacing:-0.049600pt;}
.ls6f{letter-spacing:-0.048000pt;}
.ls3e{letter-spacing:-0.031093pt;}
.ls6{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.000663pt;}
.ls28{letter-spacing:0.024800pt;}
.ls59{letter-spacing:0.026667pt;}
.ls51{letter-spacing:0.031093pt;}
.ls25{letter-spacing:0.035520pt;}
.ls0{letter-spacing:0.045333pt;}
.ls27{letter-spacing:0.049600pt;}
.ls5{letter-spacing:0.053333pt;}
.ls55{letter-spacing:0.062187pt;}
.ls1e{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.099200pt;}
.ls30{letter-spacing:0.106667pt;}
.ls50{letter-spacing:0.124373pt;}
.ls24{letter-spacing:0.133333pt;}
.ls63{letter-spacing:0.144000pt;}
.ls18{letter-spacing:0.148800pt;}
.ls38{letter-spacing:0.155467pt;}
.ls10{letter-spacing:0.160000pt;}
.ls5a{letter-spacing:0.192000pt;}
.lsd{letter-spacing:0.197333pt;}
.ls29{letter-spacing:0.198400pt;}
.ls11{letter-spacing:0.213333pt;}
.ls5f{letter-spacing:0.217653pt;}
.ls36{letter-spacing:0.223200pt;}
.ls22{letter-spacing:0.225832pt;}
.ls44{letter-spacing:0.240000pt;}
.ls17{letter-spacing:0.248000pt;}
.ls3f{letter-spacing:0.248747pt;}
.lsf{letter-spacing:0.266667pt;}
.ls5d{letter-spacing:0.293333pt;}
.lse{letter-spacing:0.296000pt;}
.ls1a{letter-spacing:0.297600pt;}
.ls31{letter-spacing:0.310293pt;}
.ls4{letter-spacing:0.320000pt;}
.ls34{letter-spacing:0.346667pt;}
.ls1d{letter-spacing:0.347200pt;}
.ls19{letter-spacing:0.367467pt;}
.ls13{letter-spacing:0.373333pt;}
.ls32{letter-spacing:0.396800pt;}
.ls39{letter-spacing:0.400000pt;}
.ls60{letter-spacing:0.404213pt;}
.ls12{letter-spacing:0.426667pt;}
.ls3a{letter-spacing:0.480000pt;}
.ls1b{letter-spacing:0.496000pt;}
.ls23{letter-spacing:0.533333pt;}
.ls4e{letter-spacing:0.545600pt;}
.ls3b{letter-spacing:0.586667pt;}
.ls49{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.666667pt;}
.ls2{letter-spacing:0.693333pt;}
.ls4d{letter-spacing:0.694400pt;}
.ls1f{letter-spacing:0.720000pt;}
.ls35{letter-spacing:0.746667pt;}
.ls54{letter-spacing:0.768000pt;}
.ls3{letter-spacing:0.800000pt;}
.ls1c{letter-spacing:0.843200pt;}
.ls21{letter-spacing:0.864000pt;}
.ls9{letter-spacing:0.917333pt;}
.ls2a{letter-spacing:0.960000pt;}
.ls62{letter-spacing:1.013333pt;}
.ls2b{letter-spacing:1.066667pt;}
.ls14{letter-spacing:1.120000pt;}
.ls4b{letter-spacing:1.296000pt;}
.ls53{letter-spacing:1.344000pt;}
.ls56{letter-spacing:1.392000pt;}
.ls33{letter-spacing:1.440000pt;}
.ls5e{letter-spacing:1.536000pt;}
.ls5c{letter-spacing:1.546667pt;}
.ls1{letter-spacing:1.605333pt;}
.ls6a{letter-spacing:1.632000pt;}
.ls6d{letter-spacing:1.728000pt;}
.ls4a{letter-spacing:1.776000pt;}
.ls68{letter-spacing:1.824000pt;}
.ls64{letter-spacing:1.968000pt;}
.ls7{letter-spacing:2.064000pt;}
.ls47{letter-spacing:2.080000pt;}
.ls66{letter-spacing:2.112000pt;}
.ls72{letter-spacing:2.522667pt;}
.ls4c{letter-spacing:23.758400pt;}
.ls3c{letter-spacing:32.339200pt;}
.ws10b{word-spacing:-13.488000pt;}
.wsaa{word-spacing:-13.152000pt;}
.ws121{word-spacing:-13.104000pt;}
.ws117{word-spacing:-13.008000pt;}
.wsf2{word-spacing:-12.912000pt;}
.ws5d{word-spacing:-12.816000pt;}
.wsda{word-spacing:-12.768000pt;}
.wsc8{word-spacing:-12.720000pt;}
.ws128{word-spacing:-12.659200pt;}
.wsea{word-spacing:-12.533333pt;}
.ws1{word-spacing:-12.200533pt;}
.ws2{word-spacing:-11.741867pt;}
.ws4c{word-spacing:-11.733333pt;}
.ws100{word-spacing:-11.520000pt;}
.ws1c{word-spacing:-11.472000pt;}
.ws9c{word-spacing:-11.466667pt;}
.ws0{word-spacing:-11.376000pt;}
.ws5e{word-spacing:-11.200000pt;}
.wsdd{word-spacing:-11.093333pt;}
.ws5f{word-spacing:-11.040000pt;}
.ws87{word-spacing:-10.944000pt;}
.ws118{word-spacing:-10.666667pt;}
.ws60{word-spacing:-10.664000pt;}
.wsf4{word-spacing:-10.613333pt;}
.ws89{word-spacing:-10.426667pt;}
.ws20{word-spacing:-10.416000pt;}
.ws101{word-spacing:-10.400000pt;}
.ws9b{word-spacing:-10.346667pt;}
.wsf6{word-spacing:-10.293333pt;}
.ws107{word-spacing:-10.267200pt;}
.wseb{word-spacing:-10.240000pt;}
.ws1f{word-spacing:-10.217600pt;}
.wsdb{word-spacing:-10.186667pt;}
.wsdf{word-spacing:-10.026667pt;}
.wsdc{word-spacing:-9.973333pt;}
.wsab{word-spacing:-9.920000pt;}
.ws122{word-spacing:-9.861333pt;}
.ws110{word-spacing:-9.706667pt;}
.ws3{word-spacing:-9.520000pt;}
.ws12c{word-spacing:-9.402667pt;}
.wse9{word-spacing:-9.173333pt;}
.ws11c{word-spacing:-9.013333pt;}
.ws1e{word-spacing:-7.912000pt;}
.wsbf{word-spacing:-7.544000pt;}
.ws10c{word-spacing:-6.993600pt;}
.wsf5{word-spacing:-6.933813pt;}
.ws8a{word-spacing:-6.778347pt;}
.wsf3{word-spacing:-6.747253pt;}
.ws72{word-spacing:-6.685067pt;}
.wsbd{word-spacing:-6.653973pt;}
.wsd0{word-spacing:-6.591787pt;}
.wsbe{word-spacing:-6.560693pt;}
.ws1d{word-spacing:-6.529600pt;}
.ws88{word-spacing:-6.498507pt;}
.wsde{word-spacing:-6.467413pt;}
.ws108{word-spacing:-6.405227pt;}
.ws9d{word-spacing:-6.374133pt;}
.wsb4{word-spacing:-2.133333pt;}
.wsa0{word-spacing:-2.080000pt;}
.ws116{word-spacing:-2.026667pt;}
.wsa8{word-spacing:-1.866667pt;}
.wsad{word-spacing:-1.813333pt;}
.ws64{word-spacing:-1.760000pt;}
.ws3d{word-spacing:-1.736000pt;}
.ws18{word-spacing:-1.706667pt;}
.ws5c{word-spacing:-1.686400pt;}
.ws15{word-spacing:-1.653333pt;}
.ws37{word-spacing:-1.636800pt;}
.wsa5{word-spacing:-1.600000pt;}
.ws3a{word-spacing:-1.587200pt;}
.ws92{word-spacing:-1.546667pt;}
.ws31{word-spacing:-1.537600pt;}
.ws7c{word-spacing:-1.493333pt;}
.wsd9{word-spacing:-1.488000pt;}
.wsc{word-spacing:-1.450667pt;}
.wsf9{word-spacing:-1.440000pt;}
.wsfe{word-spacing:-1.438400pt;}
.ws32{word-spacing:-1.388800pt;}
.wsf8{word-spacing:-1.386667pt;}
.ws113{word-spacing:-1.333333pt;}
.ws38{word-spacing:-1.289600pt;}
.ws80{word-spacing:-1.280000pt;}
.ws56{word-spacing:-1.240000pt;}
.ws7f{word-spacing:-1.226667pt;}
.ws4b{word-spacing:-1.190400pt;}
.ws84{word-spacing:-1.173333pt;}
.ws85{word-spacing:-1.140800pt;}
.wsca{word-spacing:-1.120000pt;}
.ws4a{word-spacing:-1.091200pt;}
.ws27{word-spacing:-1.066667pt;}
.ws7{word-spacing:-1.042667pt;}
.ws42{word-spacing:-1.041600pt;}
.ws98{word-spacing:-1.013333pt;}
.ws44{word-spacing:-0.992000pt;}
.ws4d{word-spacing:-0.960000pt;}
.ws8{word-spacing:-0.952000pt;}
.ws43{word-spacing:-0.942400pt;}
.wsf{word-spacing:-0.917333pt;}
.ws53{word-spacing:-0.906667pt;}
.ws86{word-spacing:-0.892800pt;}
.ws16{word-spacing:-0.853333pt;}
.ws47{word-spacing:-0.843200pt;}
.ws90{word-spacing:-0.800000pt;}
.ws65{word-spacing:-0.746667pt;}
.ws36{word-spacing:-0.744000pt;}
.ws9{word-spacing:-0.725333pt;}
.wsd8{word-spacing:-0.694400pt;}
.ws4f{word-spacing:-0.693333pt;}
.ws39{word-spacing:-0.644800pt;}
.ws125{word-spacing:-0.642133pt;}
.ws105{word-spacing:-0.640000pt;}
.ws8e{word-spacing:-0.586667pt;}
.ws70{word-spacing:-0.545600pt;}
.ws75{word-spacing:-0.533333pt;}
.ws40{word-spacing:-0.496000pt;}
.wsb7{word-spacing:-0.480000pt;}
.ws10e{word-spacing:-0.446400pt;}
.ws17{word-spacing:-0.426667pt;}
.ws55{word-spacing:-0.396800pt;}
.wsb9{word-spacing:-0.373333pt;}
.ws49{word-spacing:-0.347200pt;}
.wscc{word-spacing:-0.320000pt;}
.ws4{word-spacing:-0.315733pt;}
.ws3f{word-spacing:-0.297600pt;}
.ws9f{word-spacing:-0.266667pt;}
.ws3e{word-spacing:-0.248000pt;}
.ws126{word-spacing:-0.229333pt;}
.wsa{word-spacing:-0.226667pt;}
.ws28{word-spacing:-0.213333pt;}
.ws3c{word-spacing:-0.198400pt;}
.ws1b{word-spacing:-0.197333pt;}
.ws124{word-spacing:-0.183467pt;}
.ws6{word-spacing:-0.181333pt;}
.wsc2{word-spacing:-0.160000pt;}
.ws58{word-spacing:-0.148800pt;}
.ws19{word-spacing:-0.106667pt;}
.wsc5{word-spacing:-0.099200pt;}
.ws7b{word-spacing:-0.053333pt;}
.wsc4{word-spacing:-0.049600pt;}
.ws5{word-spacing:0.000000pt;}
.ws10{word-spacing:0.045333pt;}
.ws30{word-spacing:0.049600pt;}
.wse3{word-spacing:0.053333pt;}
.ws8c{word-spacing:0.106667pt;}
.ws41{word-spacing:0.148800pt;}
.ws78{word-spacing:0.160000pt;}
.ws6a{word-spacing:0.198400pt;}
.ws67{word-spacing:0.213333pt;}
.ws6f{word-spacing:0.248000pt;}
.ws62{word-spacing:0.266667pt;}
.wsbc{word-spacing:0.297600pt;}
.wsc1{word-spacing:0.310933pt;}
.ws68{word-spacing:0.320000pt;}
.wsc3{word-spacing:0.347200pt;}
.ws2b{word-spacing:0.373333pt;}
.wsa9{word-spacing:0.396800pt;}
.wsfa{word-spacing:0.426667pt;}
.wsd7{word-spacing:0.446400pt;}
.ws127{word-spacing:0.458667pt;}
.wse2{word-spacing:0.480000pt;}
.wse6{word-spacing:0.496000pt;}
.wsa1{word-spacing:0.533333pt;}
.ws83{word-spacing:0.586667pt;}
.wsff{word-spacing:0.595200pt;}
.wse{word-spacing:0.634667pt;}
.ws24{word-spacing:0.640000pt;}
.ws9a{word-spacing:0.644800pt;}
.wsd{word-spacing:0.680000pt;}
.ws63{word-spacing:0.693333pt;}
.wsc6{word-spacing:0.694400pt;}
.ws2f{word-spacing:0.744000pt;}
.wse4{word-spacing:0.746667pt;}
.wse7{word-spacing:0.793600pt;}
.wsb8{word-spacing:0.800000pt;}
.ws6e{word-spacing:0.843200pt;}
.ws79{word-spacing:0.853333pt;}
.ws45{word-spacing:0.892800pt;}
.ws7a{word-spacing:0.906667pt;}
.ws34{word-spacing:0.942400pt;}
.ws52{word-spacing:0.960000pt;}
.ws3b{word-spacing:0.992000pt;}
.ws50{word-spacing:1.013333pt;}
.ws5a{word-spacing:1.041600pt;}
.ws8d{word-spacing:1.066667pt;}
.ws99{word-spacing:1.120000pt;}
.ws48{word-spacing:1.140800pt;}
.ws8f{word-spacing:1.173333pt;}
.ws69{word-spacing:1.226667pt;}
.ws10a{word-spacing:1.240000pt;}
.wsf0{word-spacing:1.280000pt;}
.wsb1{word-spacing:1.333333pt;}
.ws59{word-spacing:1.339200pt;}
.ws112{word-spacing:1.386667pt;}
.ws71{word-spacing:1.388800pt;}
.wscd{word-spacing:1.440000pt;}
.wsb{word-spacing:1.450667pt;}
.ws6b{word-spacing:1.488000pt;}
.wsa2{word-spacing:1.493333pt;}
.wsa6{word-spacing:1.546667pt;}
.ws35{word-spacing:1.587200pt;}
.wsd3{word-spacing:1.600000pt;}
.ws5b{word-spacing:1.636800pt;}
.ws2e{word-spacing:1.653333pt;}
.ws33{word-spacing:1.686400pt;}
.ws12a{word-spacing:1.697067pt;}
.ws1a{word-spacing:1.706667pt;}
.wscf{word-spacing:1.736000pt;}
.ws25{word-spacing:1.760000pt;}
.ws93{word-spacing:1.813333pt;}
.ws2d{word-spacing:1.866667pt;}
.ws23{word-spacing:1.920000pt;}
.ws81{word-spacing:1.973333pt;}
.wsb6{word-spacing:2.026667pt;}
.ws7e{word-spacing:2.080000pt;}
.ws95{word-spacing:2.133333pt;}
.ws77{word-spacing:2.186667pt;}
.ws66{word-spacing:2.240000pt;}
.ws22{word-spacing:2.293333pt;}
.wsd6{word-spacing:2.331200pt;}
.ws13{word-spacing:2.346667pt;}
.ws120{word-spacing:2.400000pt;}
.ws115{word-spacing:2.453333pt;}
.ws54{word-spacing:2.480000pt;}
.wsd5{word-spacing:2.506667pt;}
.ws46{word-spacing:2.529600pt;}
.wsf1{word-spacing:2.560000pt;}
.wsee{word-spacing:2.613333pt;}
.ws57{word-spacing:2.628800pt;}
.ws11e{word-spacing:2.666667pt;}
.ws6c{word-spacing:2.678400pt;}
.ws14{word-spacing:2.720000pt;}
.ws94{word-spacing:2.773333pt;}
.wsed{word-spacing:2.826667pt;}
.ws114{word-spacing:2.880000pt;}
.wscb{word-spacing:2.933333pt;}
.ws97{word-spacing:2.986667pt;}
.ws29{word-spacing:3.040000pt;}
.wse8{word-spacing:3.075200pt;}
.ws76{word-spacing:3.093333pt;}
.wsba{word-spacing:3.124800pt;}
.ws74{word-spacing:3.146667pt;}
.ws2a{word-spacing:3.200000pt;}
.ws12b{word-spacing:3.210667pt;}
.ws6d{word-spacing:3.224000pt;}
.wsef{word-spacing:3.253333pt;}
.wsbb{word-spacing:3.273600pt;}
.wsae{word-spacing:3.360000pt;}
.wse1{word-spacing:3.413333pt;}
.ws7d{word-spacing:3.466667pt;}
.ws26{word-spacing:3.520000pt;}
.wsa7{word-spacing:3.573333pt;}
.ws91{word-spacing:3.626667pt;}
.wsa4{word-spacing:3.680000pt;}
.ws103{word-spacing:3.733333pt;}
.wsd2{word-spacing:3.840000pt;}
.wsb0{word-spacing:3.946667pt;}
.wsb5{word-spacing:4.053333pt;}
.ws106{word-spacing:4.106667pt;}
.ws11a{word-spacing:4.160000pt;}
.ws104{word-spacing:4.320000pt;}
.wse5{word-spacing:4.414400pt;}
.wsfc{word-spacing:4.480000pt;}
.ws10f{word-spacing:4.533333pt;}
.wsaf{word-spacing:4.693333pt;}
.ws2c{word-spacing:4.746667pt;}
.ws96{word-spacing:4.853333pt;}
.wsce{word-spacing:4.906667pt;}
.wsb3{word-spacing:4.960000pt;}
.ws11f{word-spacing:5.066667pt;}
.wsb2{word-spacing:5.173333pt;}
.wsa3{word-spacing:5.493333pt;}
.wsc7{word-spacing:5.505600pt;}
.wsfb{word-spacing:5.546667pt;}
.wsd4{word-spacing:5.600000pt;}
.ws11{word-spacing:5.760000pt;}
.ws51{word-spacing:5.866667pt;}
.ws11b{word-spacing:5.920000pt;}
.ws82{word-spacing:6.293333pt;}
.ws12{word-spacing:6.400000pt;}
.ws109{word-spacing:1386.096000pt;}
.ws111{word-spacing:1386.384000pt;}
.ws9e{word-spacing:1387.152000pt;}
.wsc0{word-spacing:1387.488000pt;}
.ws4e{word-spacing:1388.352000pt;}
.wsd1{word-spacing:1388.496000pt;}
.wsec{word-spacing:1389.648000pt;}
.ws129{word-spacing:1390.128000pt;}
.ws11d{word-spacing:1390.608000pt;}
.ws73{word-spacing:1391.184000pt;}
.ws12d{word-spacing:1392.432000pt;}
.wsfd{word-spacing:1393.296000pt;}
.ws10d{word-spacing:1434.624000pt;}
.wsac{word-spacing:1434.960000pt;}
.ws123{word-spacing:1435.008000pt;}
.ws119{word-spacing:1435.104000pt;}
.wsf7{word-spacing:1435.200000pt;}
.ws61{word-spacing:1435.248000pt;}
.wse0{word-spacing:1435.296000pt;}
.wsc9{word-spacing:1435.344000pt;}
.ws102{word-spacing:1436.544000pt;}
.ws21{word-spacing:1436.592000pt;}
.ws8b{word-spacing:1437.120000pt;}
._9{margin-left:-1436.733867pt;}
._10{margin-left:-1435.520533pt;}
._1b{margin-left:-1434.355200pt;}
._24{margin-left:-18.356693pt;}
._a{margin-left:-13.537600pt;}
._17{margin-left:-11.626667pt;}
._8{margin-left:-9.920000pt;}
._14{margin-left:-7.355040pt;}
._b{margin-left:-5.920000pt;}
._6{margin-left:-4.942667pt;}
._5{margin-left:-3.862400pt;}
._0{margin-left:-2.560000pt;}
._1{margin-left:-1.280000pt;}
._3{width:1.213333pt;}
._2{width:2.469333pt;}
._4{width:3.868267pt;}
._7{width:5.029333pt;}
._2a{width:6.090667pt;}
._23{width:21.029867pt;}
._26{width:22.346667pt;}
._25{width:24.105067pt;}
._22{width:25.046933pt;}
._1f{width:25.939733pt;}
._16{width:26.981333pt;}
._20{width:28.865600pt;}
._1e{width:30.602667pt;}
._1a{width:31.793600pt;}
._1c{width:33.033067pt;}
._19{width:33.925333pt;}
._18{width:35.462933pt;}
._1d{width:37.219733pt;}
._29{width:39.878400pt;}
._e{width:43.449067pt;}
._f{width:45.880000pt;}
._d{width:47.169600pt;}
._15{width:48.954667pt;}
._c{width:50.293867pt;}
._11{width:61.900800pt;}
._21{width:63.314400pt;}
._13{width:65.124800pt;}
._12{width:66.017600pt;}
._28{width:119.269333pt;}
._27{width:570.251200pt;}
.fs6{font-size:19.733333pt;}
.fsb{font-size:21.333333pt;}
.fsa{font-size:28.916800pt;}
.fs7{font-size:31.093333pt;}
.fs8{font-size:36.800000pt;}
.fs4{font-size:45.333333pt;}
.fs3{font-size:45.866667pt;}
.fs2{font-size:48.000000pt;}
.fs9{font-size:49.600000pt;}
.fs5{font-size:53.333333pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y92{bottom:56.692933pt;}
.y53{bottom:56.693067pt;}
.y6c{bottom:56.696933pt;}
.y81{bottom:56.700800pt;}
.yb7{bottom:56.712400pt;}
.y145{bottom:56.937467pt;}
.y158{bottom:56.952400pt;}
.y22{bottom:57.637733pt;}
.y1e3{bottom:61.577867pt;}
.y1a1{bottom:61.587200pt;}
.y1b3{bottom:61.598400pt;}
.y91{bottom:72.159600pt;}
.y52{bottom:72.159733pt;}
.y116{bottom:72.163467pt;}
.y80{bottom:72.163600pt;}
.y96{bottom:72.167467pt;}
.yb6{bottom:72.175200pt;}
.y144{bottom:72.406000pt;}
.y157{bottom:72.420933pt;}
.y21{bottom:74.171067pt;}
.y1e2{bottom:77.046400pt;}
.y1a0{bottom:77.055733pt;}
.y1b2{bottom:77.063200pt;}
.y90{bottom:87.626267pt;}
.y7f{bottom:87.626400pt;}
.y97{bottom:87.626533pt;}
.y51{bottom:87.630267pt;}
.ye8{bottom:87.630400pt;}
.y6b{bottom:87.638000pt;}
.y143{bottom:87.874533pt;}
.y156{bottom:87.889467pt;}
.y20{bottom:90.704400pt;}
.y1e1{bottom:92.514933pt;}
.y19f{bottom:92.524267pt;}
.y1b1{bottom:92.531733pt;}
.y8f{bottom:103.092933pt;}
.y50{bottom:103.093067pt;}
.yb3{bottom:103.093200pt;}
.yd6{bottom:103.096800pt;}
.y9b{bottom:103.097067pt;}
.y6a{bottom:103.100800pt;}
.yce{bottom:103.112400pt;}
.y142{bottom:103.343067pt;}
.y155{bottom:103.358000pt;}
.y1f{bottom:107.237733pt;}
.y1b0{bottom:107.958400pt;}
.y1e0{bottom:107.983467pt;}
.y19e{bottom:107.992800pt;}
.yd5{bottom:118.559600pt;}
.y8e{bottom:118.559733pt;}
.y9a{bottom:118.559867pt;}
.y4f{bottom:118.563600pt;}
.y95{bottom:118.563733pt;}
.yc4{bottom:118.567467pt;}
.ycd{bottom:118.575200pt;}
.y141{bottom:118.811600pt;}
.y154{bottom:118.826533pt;}
.y1af{bottom:123.426933pt;}
.y1df{bottom:123.452000pt;}
.y19d{bottom:123.461333pt;}
.y1e{bottom:123.771067pt;}
.y4e{bottom:134.026400pt;}
.y8d{bottom:134.026533pt;}
.yc3{bottom:134.030267pt;}
.ye7{bottom:134.030400pt;}
.yd4{bottom:134.034000pt;}
.ycc{bottom:134.038000pt;}
.y140{bottom:134.280133pt;}
.y153{bottom:134.295067pt;}
.y1ae{bottom:138.895467pt;}
.y1de{bottom:138.920533pt;}
.y19c{bottom:138.929867pt;}
.y1d{bottom:140.304400pt;}
.y69{bottom:149.493067pt;}
.y99{bottom:149.493200pt;}
.yb2{bottom:149.493333pt;}
.yd3{bottom:149.496800pt;}
.y4d{bottom:149.496933pt;}
.yb5{bottom:149.497067pt;}
.ycb{bottom:149.500800pt;}
.y13f{bottom:149.748667pt;}
.y152{bottom:149.763600pt;}
.y21c{bottom:154.320000pt;}
.y1ad{bottom:154.364000pt;}
.y1dd{bottom:154.389067pt;}
.y19b{bottom:154.398400pt;}
.y1c{bottom:156.837733pt;}
.yd2{bottom:164.959600pt;}
.y4c{bottom:164.959733pt;}
.yb4{bottom:164.959867pt;}
.yb1{bottom:164.960000pt;}
.y68{bottom:164.963600pt;}
.y98{bottom:164.963733pt;}
.y13e{bottom:165.217200pt;}
.y151{bottom:165.232133pt;}
.y21b{bottom:169.788533pt;}
.y244{bottom:169.790400pt;}
.y1ac{bottom:169.832533pt;}
.y1dc{bottom:169.857600pt;}
.y19a{bottom:169.865067pt;}
.y1b{bottom:173.371067pt;}
.yd1{bottom:180.426267pt;}
.y67{bottom:180.426400pt;}
.y8c{bottom:180.426533pt;}
.yb0{bottom:180.426800pt;}
.y4b{bottom:180.430267pt;}
.y7e{bottom:180.430400pt;}
.y13d{bottom:180.685733pt;}
.y150{bottom:180.700667pt;}
.y199{bottom:185.211200pt;}
.y21a{bottom:185.257067pt;}
.y243{bottom:185.258933pt;}
.y1ab{bottom:185.301067pt;}
.y1db{bottom:185.326133pt;}
.y20c{bottom:185.331733pt;}
.y1a{bottom:189.904400pt;}
.yd0{bottom:195.892933pt;}
.y4a{bottom:195.893067pt;}
.y7d{bottom:195.893200pt;}
.yaf{bottom:195.893600pt;}
.yc2{bottom:195.897067pt;}
.y66{bottom:195.900800pt;}
.yca{bottom:195.904667pt;}
.y13c{bottom:196.154267pt;}
.y14f{bottom:196.169200pt;}
.y198{bottom:200.679733pt;}
.y219{bottom:200.725600pt;}
.y242{bottom:200.727467pt;}
.y1aa{bottom:200.769600pt;}
.y1da{bottom:200.794667pt;}
.y20b{bottom:200.798400pt;}
.y19{bottom:206.437733pt;}
.y49{bottom:211.359733pt;}
.y7c{bottom:211.359867pt;}
.y65{bottom:211.363600pt;}
.y8b{bottom:211.363733pt;}
.yae{bottom:211.364133pt;}
.yc9{bottom:211.367467pt;}
.y13b{bottom:211.622800pt;}
.y14e{bottom:211.637733pt;}
.y197{bottom:216.148267pt;}
.y218{bottom:216.194133pt;}
.y241{bottom:216.196000pt;}
.y1a9{bottom:216.238133pt;}
.y1d9{bottom:216.263200pt;}
.y20a{bottom:216.265067pt;}
.y18{bottom:222.971067pt;}
.y48{bottom:226.826400pt;}
.y8a{bottom:226.826533pt;}
.y7b{bottom:226.826667pt;}
.yad{bottom:226.826933pt;}
.yc8{bottom:226.830267pt;}
.y14d{bottom:227.056933pt;}
.y13a{bottom:227.091333pt;}
.y196{bottom:231.616800pt;}
.y217{bottom:231.662667pt;}
.y240{bottom:231.664533pt;}
.y1a8{bottom:231.706667pt;}
.y209{bottom:231.709333pt;}
.y1d8{bottom:231.731733pt;}
.y94{bottom:239.504400pt;}
.ycf{bottom:242.292933pt;}
.y47{bottom:242.293067pt;}
.y64{bottom:242.296933pt;}
.yc1{bottom:242.300933pt;}
.yac{bottom:242.305200pt;}
.y7a{bottom:242.320400pt;}
.y14c{bottom:242.525467pt;}
.y139{bottom:242.559867pt;}
.y195{bottom:247.085333pt;}
.y216{bottom:247.131200pt;}
.y23f{bottom:247.133067pt;}
.y1d7{bottom:247.164800pt;}
.y1a7{bottom:247.175200pt;}
.y208{bottom:247.177867pt;}
.y93{bottom:256.037733pt;}
.y63{bottom:257.759733pt;}
.y46{bottom:257.763600pt;}
.yc0{bottom:257.763733pt;}
.yab{bottom:257.768000pt;}
.yc7{bottom:257.771333pt;}
.y79{bottom:257.783200pt;}
.y14b{bottom:257.994000pt;}
.y138{bottom:258.028400pt;}
.y194{bottom:262.553867pt;}
.y215{bottom:262.599733pt;}
.y23e{bottom:262.601600pt;}
.y1d6{bottom:262.633333pt;}
.y1a6{bottom:262.643733pt;}
.y207{bottom:262.646400pt;}
.y89{bottom:272.571067pt;}
.y45{bottom:273.226400pt;}
.ybf{bottom:273.226533pt;}
.yaa{bottom:273.230800pt;}
.y62{bottom:273.234133pt;}
.y78{bottom:273.246000pt;}
.y14a{bottom:273.462533pt;}
.y137{bottom:273.496933pt;}
.y193{bottom:278.022400pt;}
.y214{bottom:278.068267pt;}
.y23d{bottom:278.070133pt;}
.y1d5{bottom:278.101867pt;}
.y1a5{bottom:278.112267pt;}
.y206{bottom:278.114933pt;}
.y17{bottom:278.171067pt;}
.y44{bottom:288.693200pt;}
.ya9{bottom:288.693600pt;}
.y61{bottom:288.696933pt;}
.ybe{bottom:288.704800pt;}
.y77{bottom:288.708800pt;}
.y149{bottom:288.931067pt;}
.y136{bottom:288.965467pt;}
.y88{bottom:289.104400pt;}
.y192{bottom:293.490933pt;}
.y16{bottom:293.504400pt;}
.y213{bottom:293.536800pt;}
.y23c{bottom:293.538667pt;}
.y1d4{bottom:293.570400pt;}
.y1a4{bottom:293.580800pt;}
.y205{bottom:293.583467pt;}
.y60{bottom:304.159733pt;}
.ya8{bottom:304.160267pt;}
.ybd{bottom:304.167600pt;}
.y76{bottom:304.171600pt;}
.y43{bottom:304.175200pt;}
.y148{bottom:304.399600pt;}
.y135{bottom:304.434000pt;}
.y87{bottom:305.637733pt;}
.y191{bottom:308.959467pt;}
.y212{bottom:309.005333pt;}
.y23b{bottom:309.007200pt;}
.y1d3{bottom:309.038933pt;}
.y1a3{bottom:309.049333pt;}
.y204{bottom:309.052000pt;}
.y5f{bottom:319.626400pt;}
.ya7{bottom:319.626933pt;}
.yc6{bottom:319.630267pt;}
.ybc{bottom:319.630400pt;}
.y75{bottom:319.634400pt;}
.y42{bottom:319.638000pt;}
.y147{bottom:319.868133pt;}
.y134{bottom:319.902533pt;}
.y86{bottom:322.171067pt;}
.y190{bottom:324.428000pt;}
.y15{bottom:324.437067pt;}
.y211{bottom:324.473867pt;}
.y23a{bottom:324.475733pt;}
.y1d2{bottom:324.507467pt;}
.y1a2{bottom:324.517867pt;}
.y203{bottom:324.520533pt;}
.yc5{bottom:335.093067pt;}
.ybb{bottom:335.093200pt;}
.y5e{bottom:335.096933pt;}
.y74{bottom:335.097200pt;}
.ya6{bottom:335.097467pt;}
.y41{bottom:335.100800pt;}
.y146{bottom:335.336667pt;}
.y133{bottom:335.371067pt;}
.y85{bottom:338.704400pt;}
.y14{bottom:339.771067pt;}
.y210{bottom:339.942400pt;}
.y239{bottom:339.944267pt;}
.y1d1{bottom:339.976000pt;}
.y202{bottom:339.989067pt;}
.y115{bottom:350.466800pt;}
.y5d{bottom:350.559733pt;}
.y73{bottom:350.560000pt;}
.ya5{bottom:350.560267pt;}
.y40{bottom:350.563600pt;}
.yba{bottom:350.567600pt;}
.y13{bottom:355.104400pt;}
.y84{bottom:355.237733pt;}
.y18f{bottom:355.365067pt;}
.y20f{bottom:355.410933pt;}
.y238{bottom:355.412800pt;}
.y1d0{bottom:355.444533pt;}
.y201{bottom:355.457600pt;}
.y114{bottom:364.863200pt;}
.y3f{bottom:366.026400pt;}
.ya4{bottom:366.026933pt;}
.y5c{bottom:366.030267pt;}
.yb9{bottom:366.030400pt;}
.y132{bottom:366.171067pt;}
.y20e{bottom:370.879467pt;}
.y237{bottom:370.881333pt;}
.y1cf{bottom:370.913067pt;}
.y200{bottom:370.926133pt;}
.y83{bottom:371.771067pt;}
.y113{bottom:379.259600pt;}
.y3e{bottom:381.493067pt;}
.yb8{bottom:381.493200pt;}
.ya3{bottom:381.501333pt;}
.y12{bottom:386.031067pt;}
.y20d{bottom:386.348000pt;}
.y236{bottom:386.349867pt;}
.y1ce{bottom:386.381600pt;}
.y1ff{bottom:386.394667pt;}
.y72{bottom:388.304400pt;}
.y112{bottom:393.656000pt;}
.y125{bottom:396.815333pt;}
.y5b{bottom:396.959733pt;}
.y3d{bottom:396.963733pt;}
.ya2{bottom:396.964133pt;}
.y11{bottom:401.365067pt;}
.y18e{bottom:401.770667pt;}
.y173{bottom:401.816533pt;}
.y235{bottom:401.818400pt;}
.y1cd{bottom:401.850133pt;}
.y1fe{bottom:401.863200pt;}
.y71{bottom:404.837733pt;}
.y111{bottom:408.052400pt;}
.y131{bottom:412.260933pt;}
.y124{bottom:412.283867pt;}
.y3c{bottom:412.426533pt;}
.ya1{bottom:412.426933pt;}
.y10{bottom:416.699067pt;}
.y18d{bottom:417.239200pt;}
.y172{bottom:417.285067pt;}
.y234{bottom:417.286933pt;}
.y1cc{bottom:417.318667pt;}
.y1fd{bottom:417.331733pt;}
.y70{bottom:421.371067pt;}
.y110{bottom:422.448800pt;}
.y130{bottom:427.729467pt;}
.y123{bottom:427.752400pt;}
.y3b{bottom:427.893200pt;}
.y5a{bottom:427.897067pt;}
.ya0{bottom:427.897600pt;}
.yf{bottom:432.033067pt;}
.y18c{bottom:432.707733pt;}
.y171{bottom:432.753600pt;}
.y233{bottom:432.755467pt;}
.y1cb{bottom:432.787200pt;}
.y1fc{bottom:432.792800pt;}
.y10f{bottom:436.845200pt;}
.y6f{bottom:437.904400pt;}
.y12f{bottom:443.198000pt;}
.y122{bottom:443.220933pt;}
.y3a{bottom:443.359733pt;}
.y59{bottom:443.359867pt;}
.y9f{bottom:443.360400pt;}
.ye{bottom:447.367067pt;}
.y18b{bottom:448.176267pt;}
.y170{bottom:448.222133pt;}
.y232{bottom:448.224000pt;}
.y1ca{bottom:448.255733pt;}
.y1fb{bottom:448.261333pt;}
.ye3{bottom:449.082400pt;}
.y10e{bottom:451.241600pt;}
.y6e{bottom:454.437733pt;}
.y12e{bottom:458.666533pt;}
.y121{bottom:458.689467pt;}
.y39{bottom:458.826400pt;}
.y58{bottom:458.826667pt;}
.y9e{bottom:458.827067pt;}
.yd{bottom:462.701067pt;}
.ye2{bottom:463.478800pt;}
.y18a{bottom:463.644800pt;}
.y16f{bottom:463.690667pt;}
.y231{bottom:463.692533pt;}
.y1c9{bottom:463.724267pt;}
.y1fa{bottom:463.729867pt;}
.y10d{bottom:465.638000pt;}
.y82{bottom:470.971067pt;}
.y12d{bottom:474.135067pt;}
.y120{bottom:474.158000pt;}
.y9d{bottom:474.293600pt;}
.y57{bottom:474.304933pt;}
.ye1{bottom:477.875200pt;}
.yc{bottom:478.035067pt;}
.y189{bottom:479.113333pt;}
.y16e{bottom:479.159200pt;}
.y230{bottom:479.161067pt;}
.y1c8{bottom:479.192800pt;}
.y1f9{bottom:479.198400pt;}
.y10c{bottom:480.034400pt;}
.y6d{bottom:487.504400pt;}
.y12c{bottom:489.603600pt;}
.y11f{bottom:489.626533pt;}
.y9c{bottom:489.760400pt;}
.y56{bottom:489.767733pt;}
.ye0{bottom:492.271600pt;}
.yb{bottom:493.369067pt;}
.y10b{bottom:494.430800pt;}
.y188{bottom:494.581867pt;}
.y1f8{bottom:494.605067pt;}
.y16d{bottom:494.627733pt;}
.y22f{bottom:494.629600pt;}
.y1c7{bottom:494.661333pt;}
.y38{bottom:504.037733pt;}
.y12b{bottom:505.072133pt;}
.y11e{bottom:505.095067pt;}
.y55{bottom:505.230533pt;}
.ydf{bottom:506.668000pt;}
.ya{bottom:508.703067pt;}
.y10a{bottom:508.827200pt;}
.y187{bottom:510.050400pt;}
.y1f7{bottom:510.073600pt;}
.y16c{bottom:510.096267pt;}
.y22e{bottom:510.098133pt;}
.y1c6{bottom:510.129867pt;}
.y12a{bottom:520.540667pt;}
.y11d{bottom:520.563600pt;}
.y37{bottom:520.571067pt;}
.y54{bottom:520.693333pt;}
.yde{bottom:521.064400pt;}
.y109{bottom:523.223600pt;}
.y9{bottom:524.037067pt;}
.y186{bottom:525.518933pt;}
.y1f6{bottom:525.542133pt;}
.y16b{bottom:525.564800pt;}
.y22d{bottom:525.566667pt;}
.y1c5{bottom:525.598400pt;}
.ydd{bottom:535.460800pt;}
.y129{bottom:536.009200pt;}
.y11c{bottom:536.032133pt;}
.y36{bottom:537.104400pt;}
.y108{bottom:537.620000pt;}
.y8{bottom:539.371067pt;}
.y185{bottom:540.987467pt;}
.y1f5{bottom:541.010667pt;}
.y16a{bottom:541.033333pt;}
.y22c{bottom:541.035200pt;}
.y1c4{bottom:541.052000pt;}
.ydc{bottom:549.857200pt;}
.y128{bottom:551.477733pt;}
.y11b{bottom:551.500667pt;}
.y107{bottom:552.016400pt;}
.y35{bottom:553.637733pt;}
.y7{bottom:554.704400pt;}
.y184{bottom:556.456000pt;}
.y1f4{bottom:556.479200pt;}
.y169{bottom:556.501867pt;}
.y22b{bottom:556.503733pt;}
.y1c3{bottom:556.520533pt;}
.ydb{bottom:564.253600pt;}
.ye6{bottom:564.290800pt;}
.y106{bottom:566.412800pt;}
.y127{bottom:566.946267pt;}
.y11a{bottom:566.969200pt;}
.y34{bottom:570.171067pt;}
.y183{bottom:571.924533pt;}
.y1f3{bottom:571.947733pt;}
.y168{bottom:571.970400pt;}
.y22a{bottom:571.972267pt;}
.y1c2{bottom:571.989067pt;}
.yda{bottom:578.650000pt;}
.ye5{bottom:578.687200pt;}
.y105{bottom:580.809200pt;}
.y126{bottom:582.414800pt;}
.y119{bottom:582.437733pt;}
.y33{bottom:586.704400pt;}
.y182{bottom:587.393067pt;}
.y1f2{bottom:587.416267pt;}
.y167{bottom:587.438933pt;}
.y229{bottom:587.440800pt;}
.y1c1{bottom:587.457600pt;}
.yd9{bottom:593.046400pt;}
.ye4{bottom:593.083600pt;}
.y104{bottom:595.205600pt;}
.y181{bottom:602.861600pt;}
.y1f1{bottom:602.884800pt;}
.y166{bottom:602.907467pt;}
.y228{bottom:602.909333pt;}
.y1c0{bottom:602.926133pt;}
.y32{bottom:603.237733pt;}
.yf6{bottom:609.564800pt;}
.y103{bottom:609.602000pt;}
.yd8{bottom:609.910400pt;}
.y118{bottom:612.571067pt;}
.y180{bottom:618.330133pt;}
.y1f0{bottom:618.353333pt;}
.y165{bottom:618.376000pt;}
.y227{bottom:618.377867pt;}
.y1bf{bottom:618.394667pt;}
.y31{bottom:619.771067pt;}
.yf5{bottom:623.961200pt;}
.y102{bottom:623.998400pt;}
.yd7{bottom:624.306800pt;}
.y17f{bottom:633.798667pt;}
.y1ef{bottom:633.821867pt;}
.y164{bottom:633.844533pt;}
.y226{bottom:633.846400pt;}
.y1be{bottom:633.863200pt;}
.y30{bottom:636.304400pt;}
.yf4{bottom:638.357600pt;}
.y101{bottom:638.394800pt;}
.y117{bottom:641.904400pt;}
.y17e{bottom:649.267200pt;}
.y1ee{bottom:649.290400pt;}
.y163{bottom:649.313067pt;}
.y225{bottom:649.314933pt;}
.y1bd{bottom:649.331733pt;}
.yf3{bottom:652.754000pt;}
.y100{bottom:652.791200pt;}
.y2f{bottom:652.837733pt;}
.y6{bottom:652.844267pt;}
.y17d{bottom:664.735733pt;}
.y1ed{bottom:664.758933pt;}
.y162{bottom:664.781600pt;}
.y224{bottom:664.783467pt;}
.y1bc{bottom:664.785333pt;}
.yf2{bottom:667.150400pt;}
.yff{bottom:667.187600pt;}
.y5{bottom:668.840267pt;}
.y2e{bottom:669.371067pt;}
.y17c{bottom:680.204267pt;}
.y1ec{bottom:680.227467pt;}
.y161{bottom:680.250133pt;}
.y223{bottom:680.252000pt;}
.y1bb{bottom:680.253867pt;}
.yf1{bottom:681.546800pt;}
.yfe{bottom:681.584000pt;}
.y2d{bottom:685.904400pt;}
.y17b{bottom:695.672800pt;}
.y1eb{bottom:695.696000pt;}
.y160{bottom:695.718667pt;}
.y222{bottom:695.720533pt;}
.y1ba{bottom:695.722400pt;}
.yf0{bottom:695.943200pt;}
.yfd{bottom:695.980400pt;}
.y4{bottom:700.840267pt;}
.y2c{bottom:702.437733pt;}
.yef{bottom:710.339600pt;}
.yfc{bottom:710.376800pt;}
.y17a{bottom:711.141333pt;}
.y1ea{bottom:711.164533pt;}
.y15f{bottom:711.187200pt;}
.y221{bottom:711.189067pt;}
.y1b9{bottom:711.190933pt;}
.y2b{bottom:718.971067pt;}
.yee{bottom:724.736000pt;}
.yfb{bottom:724.773200pt;}
.y179{bottom:726.609867pt;}
.y1e9{bottom:726.633067pt;}
.y15e{bottom:726.655733pt;}
.y220{bottom:726.657600pt;}
.y1b8{bottom:726.659467pt;}
.y2a{bottom:735.504400pt;}
.yed{bottom:739.132400pt;}
.yfa{bottom:739.169600pt;}
.y178{bottom:742.078400pt;}
.y1e8{bottom:742.101600pt;}
.y15d{bottom:742.124267pt;}
.y21f{bottom:742.126133pt;}
.y1b7{bottom:742.128000pt;}
.y3{bottom:742.625067pt;}
.y29{bottom:752.037733pt;}
.yec{bottom:753.528800pt;}
.yf9{bottom:753.566000pt;}
.y177{bottom:757.546933pt;}
.y1e7{bottom:757.570133pt;}
.y15c{bottom:757.592800pt;}
.y21e{bottom:757.594667pt;}
.y1b6{bottom:757.596533pt;}
.y24{bottom:762.125333pt;}
.yeb{bottom:767.925200pt;}
.yf8{bottom:767.962400pt;}
.y28{bottom:768.571067pt;}
.y23{bottom:768.790267pt;}
.y2{bottom:769.291733pt;}
.y176{bottom:773.015467pt;}
.y1e6{bottom:773.038667pt;}
.y15b{bottom:773.061333pt;}
.y21d{bottom:773.063200pt;}
.y1b5{bottom:773.065067pt;}
.yea{bottom:782.321600pt;}
.yf7{bottom:782.358800pt;}
.y27{bottom:785.104400pt;}
.y175{bottom:788.484000pt;}
.y1e5{bottom:788.507200pt;}
.y15a{bottom:788.529867pt;}
.y1b4{bottom:788.531733pt;}
.y1{bottom:795.958400pt;}
.ye9{bottom:799.185600pt;}
.y26{bottom:801.637733pt;}
.y174{bottom:803.952533pt;}
.y1e4{bottom:803.975733pt;}
.y159{bottom:803.998400pt;}
.y25{bottom:849.726533pt;}
.h9{height:18.509867pt;}
.h7{height:40.800000pt;}
.h12{height:40.958933pt;}
.h15{height:41.011200pt;}
.h11{height:41.096533pt;}
.h14{height:41.256533pt;}
.h16{height:41.336533pt;}
.h17{height:41.410133pt;}
.h6{height:41.434667pt;}
.h13{height:41.578667pt;}
.h10{height:41.876267pt;}
.h5{height:43.344000pt;}
.hf{height:44.292800pt;}
.ha{height:44.441600pt;}
.h4{height:45.216000pt;}
.hd{height:45.284800pt;}
.hc{height:47.893333pt;}
.h8{height:48.000000pt;}
.hb{height:50.400000pt;}
.h3{height:60.288000pt;}
.h2{height:80.640000pt;}
.he{height:102.870400pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:619.842667pt;}
.w1{width:620.000000pt;}
.x0{left:0.000000pt;}
.x7{left:22.871200pt;}
.x6{left:25.421733pt;}
.x4{left:64.252000pt;}
.x1{left:71.811067pt;}
.xc{left:75.592533pt;}
.x5{left:83.145333pt;}
.x8{left:90.708667pt;}
.xb{left:309.920800pt;}
.xd{left:314.145067pt;}
.xa{left:317.765067pt;}
.x10{left:321.704133pt;}
.xe{left:325.485600pt;}
.xf{left:333.044667pt;}
.x9{left:555.590533pt;}
.x3{left:578.461733pt;}
.x2{left:581.012267pt;}
}




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