
    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_abe1658462257d4d1bb3ac41.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_9d2921f3703517cff24682fb.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_b744614a4c9d7d31da1fa487.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.964861;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_8146ced8e733dc9668dec022.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.131836;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_5d6b006c0ec0a911b3bc6a90.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.032715;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_00c345e19757e2211061e84d.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_f3e413e9f71fa3c03cbb207e.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.973633;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_a507ac7a87274351aeee5b25.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2a2e87a792243f17155699b6.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_55a6a7bfba299880f6109ccb.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_a9665c956932d4b0ad42e959.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.964863;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_b9aa0256e607734566c19b7b.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.964844;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_cd4a53e855c5139925d30d27.woff2')format("woff");}.ffd{font-family:ffd;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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.980000px;}
.v1{vertical-align:21.978000px;}
.v3{vertical-align:37.842000px;}
.lsb{letter-spacing:-3.240000px;}
.ls1b{letter-spacing:-2.808000px;}
.ls7{letter-spacing:-1.140000px;}
.ls5{letter-spacing:-0.918000px;}
.ls8{letter-spacing:-0.900000px;}
.ls4{letter-spacing:-0.691200px;}
.lsc{letter-spacing:-0.600000px;}
.ls1d{letter-spacing:-0.594000px;}
.ls18{letter-spacing:-0.540000px;}
.ls19{letter-spacing:-0.432000px;}
.ls3{letter-spacing:-0.408000px;}
.lsd{letter-spacing:-0.349800px;}
.ls17{letter-spacing:-0.300000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.108000px;}
.ls2{letter-spacing:0.000000px;}
.lse{letter-spacing:0.900000px;}
.ls12{letter-spacing:1.200000px;}
.ls15{letter-spacing:2.430000px;}
.ls10{letter-spacing:4.380000px;}
.ls16{letter-spacing:6.420000px;}
.ls14{letter-spacing:7.560000px;}
.ls11{letter-spacing:7.638000px;}
.ls9{letter-spacing:8.280000px;}
.lsa{letter-spacing:8.899200px;}
.lsf{letter-spacing:14.460000px;}
.ls13{letter-spacing:17.064000px;}
.ls1{letter-spacing:43.181364px;}
.ls0{letter-spacing:43.181964px;}
.ls6{letter-spacing:95.466000px;}
.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;}
}
.ws0{word-spacing:-24.786000px;}
.ws6{word-spacing:-17.928000px;}
.ws4d{word-spacing:-16.434000px;}
.wsa2{word-spacing:-15.840000px;}
.wsa3{word-spacing:-15.600000px;}
.ws4{word-spacing:-14.940000px;}
.ws70{word-spacing:-14.880000px;}
.ws4e{word-spacing:-14.820000px;}
.ws7{word-spacing:-14.700000px;}
.wse9{word-spacing:-14.400000px;}
.wsea{word-spacing:-14.100000px;}
.ws4f{word-spacing:-14.040000px;}
.ws4c{word-spacing:-13.800000px;}
.ws7f{word-spacing:-13.446000px;}
.ws5{word-spacing:-13.392000px;}
.ws145{word-spacing:-13.284000px;}
.ws3a{word-spacing:-13.230000px;}
.ws12b{word-spacing:-13.176000px;}
.ws12c{word-spacing:-13.014000px;}
.ws10f{word-spacing:-12.960000px;}
.ws163{word-spacing:-12.636000px;}
.ws8{word-spacing:-12.366000px;}
.wsc{word-spacing:-12.150000px;}
.ws9{word-spacing:-11.448000px;}
.wsa{word-spacing:-11.232000px;}
.wsd{word-spacing:-10.992000px;}
.ws2{word-spacing:-10.896000px;}
.ws38{word-spacing:-10.800000px;}
.ws43{word-spacing:-10.416000px;}
.ws80{word-spacing:-10.206000px;}
.ws3{word-spacing:-9.892800px;}
.ws1{word-spacing:-9.618000px;}
.ws8e{word-spacing:-8.325240px;}
.ws136{word-spacing:-7.452000px;}
.ws168{word-spacing:-6.966000px;}
.ws66{word-spacing:-6.480000px;}
.wse6{word-spacing:-6.420000px;}
.ws7b{word-spacing:-5.880000px;}
.ws15c{word-spacing:-5.670000px;}
.ws16b{word-spacing:-5.184000px;}
.ws12f{word-spacing:-5.076000px;}
.wse2{word-spacing:-5.040000px;}
.ws108{word-spacing:-4.752000px;}
.ws23{word-spacing:-4.428000px;}
.ws121{word-spacing:-4.320000px;}
.ws117{word-spacing:-4.212000px;}
.ws161{word-spacing:-4.158000px;}
.ws19{word-spacing:-3.888000px;}
.ws15d{word-spacing:-3.834000px;}
.wsf8{word-spacing:-3.780000px;}
.ws142{word-spacing:-3.726000px;}
.ws109{word-spacing:-3.672000px;}
.ws102{word-spacing:-3.660000px;}
.ws103{word-spacing:-3.600000px;}
.ws6d{word-spacing:-3.540000px;}
.ws24{word-spacing:-3.402000px;}
.ws22{word-spacing:-3.348000px;}
.ws12d{word-spacing:-3.186000px;}
.ws20{word-spacing:-3.078000px;}
.ws88{word-spacing:-3.060000px;}
.ws1a{word-spacing:-2.862000px;}
.wsd2{word-spacing:-2.820000px;}
.ws18{word-spacing:-2.808000px;}
.wse3{word-spacing:-2.760000px;}
.ws95{word-spacing:-2.700000px;}
.ws61{word-spacing:-2.640000px;}
.ws65{word-spacing:-2.580000px;}
.ws128{word-spacing:-2.484000px;}
.ws73{word-spacing:-2.460000px;}
.ws155{word-spacing:-2.430000px;}
.ws114{word-spacing:-2.376000px;}
.ws133{word-spacing:-2.322000px;}
.ws5e{word-spacing:-2.220000px;}
.ws143{word-spacing:-2.214000px;}
.ws71{word-spacing:-2.100000px;}
.ws21{word-spacing:-2.052000px;}
.ws75{word-spacing:-2.040000px;}
.ws99{word-spacing:-1.980000px;}
.ws13d{word-spacing:-1.944000px;}
.ws54{word-spacing:-1.920000px;}
.ws76{word-spacing:-1.860000px;}
.ws13e{word-spacing:-1.836000px;}
.wsda{word-spacing:-1.674000px;}
.wsb2{word-spacing:-1.620000px;}
.wsa7{word-spacing:-1.560000px;}
.ws49{word-spacing:-1.554000px;}
.ws4a{word-spacing:-1.512000px;}
.ws15a{word-spacing:-1.458000px;}
.ws105{word-spacing:-1.440000px;}
.wsdc{word-spacing:-1.404000px;}
.wsf2{word-spacing:-1.380000px;}
.ws83{word-spacing:-1.320000px;}
.ws139{word-spacing:-1.296000px;}
.ws11{word-spacing:-1.254000px;}
.wsc0{word-spacing:-1.200000px;}
.wsb3{word-spacing:-1.140000px;}
.ws123{word-spacing:-1.134000px;}
.ws5c{word-spacing:-1.080000px;}
.ws36{word-spacing:-1.026000px;}
.wsd7{word-spacing:-1.020000px;}
.ws98{word-spacing:-0.960000px;}
.wsaf{word-spacing:-0.900000px;}
.ws10e{word-spacing:-0.864000px;}
.ws8b{word-spacing:-0.840000px;}
.ws46{word-spacing:-0.798000px;}
.ws67{word-spacing:-0.780000px;}
.ws144{word-spacing:-0.702000px;}
.ws79{word-spacing:-0.600000px;}
.ws149{word-spacing:-0.540000px;}
.ws16d{word-spacing:-0.432000px;}
.ws5b{word-spacing:-0.420000px;}
.ws35{word-spacing:-0.360000px;}
.ws112{word-spacing:-0.324000px;}
.ws47{word-spacing:-0.294000px;}
.ws64{word-spacing:-0.240000px;}
.ws12{word-spacing:-0.216000px;}
.wsb5{word-spacing:-0.180000px;}
.ws124{word-spacing:-0.162000px;}
.ws3e{word-spacing:-0.060000px;}
.wsb{word-spacing:-0.054000px;}
.ws39{word-spacing:-0.048000px;}
.wsa1{word-spacing:-0.042000px;}
.wse{word-spacing:0.000000px;}
.ws1f{word-spacing:0.054000px;}
.wsf7{word-spacing:0.060000px;}
.ws6e{word-spacing:0.120000px;}
.ws4b{word-spacing:0.126000px;}
.ws60{word-spacing:0.180000px;}
.wsf3{word-spacing:0.300000px;}
.wscb{word-spacing:0.360000px;}
.wsd1{word-spacing:0.420000px;}
.ws118{word-spacing:0.432000px;}
.wsdf{word-spacing:0.480000px;}
.ws3c{word-spacing:0.540000px;}
.ws16a{word-spacing:0.594000px;}
.ws9c{word-spacing:0.600000px;}
.wse5{word-spacing:0.660000px;}
.ws13{word-spacing:0.691200px;}
.ws48{word-spacing:0.714000px;}
.ws85{word-spacing:0.720000px;}
.ws166{word-spacing:0.756000px;}
.wscc{word-spacing:0.780000px;}
.wsfb{word-spacing:0.840000px;}
.ws74{word-spacing:0.900000px;}
.ws37{word-spacing:0.918000px;}
.wsb6{word-spacing:0.960000px;}
.ws160{word-spacing:0.972000px;}
.wsa0{word-spacing:1.026000px;}
.ws9f{word-spacing:1.080000px;}
.ws1e{word-spacing:1.134000px;}
.ws92{word-spacing:1.140000px;}
.ws170{word-spacing:1.188000px;}
.ws91{word-spacing:1.200000px;}
.ws82{word-spacing:1.260000px;}
.ws5f{word-spacing:1.440000px;}
.wsf1{word-spacing:1.500000px;}
.wsb1{word-spacing:1.620000px;}
.ws28{word-spacing:1.674000px;}
.ws84{word-spacing:1.680000px;}
.ws27{word-spacing:1.728000px;}
.ws97{word-spacing:1.740000px;}
.ws164{word-spacing:1.782000px;}
.ws148{word-spacing:1.836000px;}
.ws5a{word-spacing:1.860000px;}
.wsee{word-spacing:1.920000px;}
.ws16f{word-spacing:1.944000px;}
.wsa6{word-spacing:1.980000px;}
.ws131{word-spacing:1.998000px;}
.ws94{word-spacing:2.040000px;}
.ws72{word-spacing:2.100000px;}
.wsc8{word-spacing:2.106000px;}
.ws3f{word-spacing:2.160000px;}
.ws3d{word-spacing:2.220000px;}
.ws2c{word-spacing:2.280000px;}
.wse8{word-spacing:2.340000px;}
.wse7{word-spacing:2.400000px;}
.wsd9{word-spacing:2.430000px;}
.wsca{word-spacing:2.460000px;}
.wsd8{word-spacing:2.484000px;}
.ws32{word-spacing:2.520000px;}
.wsd4{word-spacing:2.640000px;}
.ws11a{word-spacing:2.646000px;}
.ws9b{word-spacing:2.700000px;}
.ws141{word-spacing:2.754000px;}
.wsed{word-spacing:2.760000px;}
.wsb4{word-spacing:2.820000px;}
.ws107{word-spacing:2.862000px;}
.ws56{word-spacing:2.940000px;}
.ws13a{word-spacing:2.970000px;}
.ws115{word-spacing:3.024000px;}
.ws89{word-spacing:3.060000px;}
.ws68{word-spacing:3.120000px;}
.ws167{word-spacing:3.132000px;}
.ws127{word-spacing:3.186000px;}
.ws81{word-spacing:3.240000px;}
.ws30{word-spacing:3.600000px;}
.ws93{word-spacing:3.660000px;}
.ws150{word-spacing:3.672000px;}
.wsf6{word-spacing:3.720000px;}
.ws8d{word-spacing:3.834000px;}
.ws8c{word-spacing:3.888000px;}
.ws10d{word-spacing:3.942000px;}
.ws33{word-spacing:3.960000px;}
.ws14e{word-spacing:3.996000px;}
.ws62{word-spacing:4.020000px;}
.ws154{word-spacing:4.050000px;}
.wsd5{word-spacing:4.140000px;}
.ws58{word-spacing:4.200000px;}
.ws57{word-spacing:4.260000px;}
.ws16e{word-spacing:4.266000px;}
.ws14b{word-spacing:4.374000px;}
.ws14a{word-spacing:4.428000px;}
.ws3b{word-spacing:4.500000px;}
.wsd6{word-spacing:4.620000px;}
.wsef{word-spacing:4.680000px;}
.ws6c{word-spacing:4.740000px;}
.ws2f{word-spacing:4.800000px;}
.wsff{word-spacing:4.860000px;}
.ws34{word-spacing:4.920000px;}
.wsd3{word-spacing:4.980000px;}
.ws96{word-spacing:5.040000px;}
.ws13b{word-spacing:5.076000px;}
.wsae{word-spacing:5.160000px;}
.ws87{word-spacing:5.220000px;}
.ws146{word-spacing:5.238000px;}
.ws104{word-spacing:5.280000px;}
.wsbf{word-spacing:5.340000px;}
.wsc9{word-spacing:5.346000px;}
.ws69{word-spacing:5.460000px;}
.wsb8{word-spacing:5.520000px;}
.wsb7{word-spacing:5.580000px;}
.ws26{word-spacing:5.616000px;}
.ws25{word-spacing:5.670000px;}
.ws162{word-spacing:5.724000px;}
.ws59{word-spacing:5.760000px;}
.wsb0{word-spacing:5.820000px;}
.ws9e{word-spacing:5.880000px;}
.ws119{word-spacing:5.886000px;}
.ws50{word-spacing:5.940000px;}
.ws129{word-spacing:5.994000px;}
.ws11d{word-spacing:6.048000px;}
.ws55{word-spacing:6.060000px;}
.wsf5{word-spacing:6.120000px;}
.wsf0{word-spacing:6.180000px;}
.ws9d{word-spacing:6.240000px;}
.wse0{word-spacing:6.360000px;}
.ws147{word-spacing:6.372000px;}
.wse1{word-spacing:6.420000px;}
.ws9a{word-spacing:6.480000px;}
.ws158{word-spacing:6.534000px;}
.wsbe{word-spacing:6.540000px;}
.wsbd{word-spacing:6.600000px;}
.ws6b{word-spacing:6.720000px;}
.ws151{word-spacing:6.750000px;}
.ws6a{word-spacing:6.780000px;}
.ws11e{word-spacing:6.804000px;}
.wsfa{word-spacing:6.840000px;}
.ws106{word-spacing:6.900000px;}
.ws2d{word-spacing:7.020000px;}
.ws159{word-spacing:7.074000px;}
.ws31{word-spacing:7.080000px;}
.ws8a{word-spacing:7.140000px;}
.ws130{word-spacing:7.290000px;}
.wsde{word-spacing:7.380000px;}
.wsc3{word-spacing:7.440000px;}
.wsd0{word-spacing:7.506000px;}
.ws40{word-spacing:7.560000px;}
.ws15e{word-spacing:7.776000px;}
.ws113{word-spacing:7.830000px;}
.ws12e{word-spacing:7.938000px;}
.ws1d{word-spacing:7.992000px;}
.ws1c{word-spacing:8.046000px;}
.ws10b{word-spacing:8.208000px;}
.wse4{word-spacing:8.220000px;}
.ws15f{word-spacing:8.262000px;}
.wsbb{word-spacing:8.280000px;}
.ws2e{word-spacing:8.340000px;}
.wsa5{word-spacing:8.400000px;}
.ws120{word-spacing:8.424000px;}
.wsa4{word-spacing:8.460000px;}
.ws14c{word-spacing:8.478000px;}
.ws5d{word-spacing:8.520000px;}
.ws45{word-spacing:8.532000px;}
.ws44{word-spacing:8.586000px;}
.ws63{word-spacing:8.640000px;}
.wsa9{word-spacing:8.760000px;}
.wsba{word-spacing:8.820000px;}
.ws7e{word-spacing:8.910000px;}
.ws7d{word-spacing:8.964000px;}
.wsf4{word-spacing:9.000000px;}
.ws7c{word-spacing:9.018000px;}
.wsbc{word-spacing:9.120000px;}
.ws125{word-spacing:9.126000px;}
.ws14d{word-spacing:9.180000px;}
.ws157{word-spacing:9.234000px;}
.wsec{word-spacing:9.240000px;}
.ws6f{word-spacing:9.300000px;}
.wseb{word-spacing:9.360000px;}
.ws78{word-spacing:9.480000px;}
.ws77{word-spacing:9.540000px;}
.ws53{word-spacing:9.660000px;}
.ws138{word-spacing:9.774000px;}
.ws51{word-spacing:9.780000px;}
.ws52{word-spacing:9.840000px;}
.ws41{word-spacing:9.900000px;}
.ws16c{word-spacing:9.990000px;}
.wsc7{word-spacing:10.152000px;}
.wsc6{word-spacing:10.260000px;}
.wsc5{word-spacing:10.368000px;}
.wsfc{word-spacing:10.500000px;}
.ws15b{word-spacing:10.530000px;}
.wsfd{word-spacing:10.560000px;}
.ws100{word-spacing:10.800000px;}
.ws101{word-spacing:10.920000px;}
.wsc2{word-spacing:11.340000px;}
.ws10c{word-spacing:11.394000px;}
.ws2a{word-spacing:11.640000px;}
.ws86{word-spacing:11.700000px;}
.wsdb{word-spacing:12.528000px;}
.ws1b{word-spacing:12.690000px;}
.ws29{word-spacing:12.900000px;}
.ws16{word-spacing:12.906000px;}
.ws17{word-spacing:12.960000px;}
.ws11c{word-spacing:13.068000px;}
.ws11f{word-spacing:13.392000px;}
.ws2b{word-spacing:13.500000px;}
.ws165{word-spacing:13.554000px;}
.wsfe{word-spacing:13.560000px;}
.wsa8{word-spacing:13.620000px;}
.wsac{word-spacing:13.740000px;}
.wsad{word-spacing:13.920000px;}
.wsb9{word-spacing:13.980000px;}
.ws13c{word-spacing:14.310000px;}
.wsc4{word-spacing:14.520000px;}
.ws137{word-spacing:15.876000px;}
.ws135{word-spacing:16.200000px;}
.ws122{word-spacing:16.362000px;}
.ws14f{word-spacing:16.416000px;}
.ws12a{word-spacing:16.578000px;}
.wscf{word-spacing:16.902000px;}
.wsce{word-spacing:17.118000px;}
.wscd{word-spacing:17.172000px;}
.ws134{word-spacing:17.280000px;}
.ws10a{word-spacing:17.496000px;}
.ws132{word-spacing:19.170000px;}
.ws153{word-spacing:19.224000px;}
.wsab{word-spacing:19.500000px;}
.ws11b{word-spacing:19.602000px;}
.ws169{word-spacing:19.656000px;}
.wsaa{word-spacing:19.680000px;}
.ws172{word-spacing:19.980000px;}
.wsc1{word-spacing:20.460000px;}
.ws140{word-spacing:20.790000px;}
.wsdd{word-spacing:21.120000px;}
.ws13f{word-spacing:21.654000px;}
.ws126{word-spacing:22.248000px;}
.wsf9{word-spacing:23.700000px;}
.ws110{word-spacing:25.002000px;}
.ws15{word-spacing:25.704000px;}
.ws14{word-spacing:25.920000px;}
.ws116{word-spacing:28.728000px;}
.ws152{word-spacing:29.268000px;}
.ws171{word-spacing:30.672000px;}
.ws111{word-spacing:30.780000px;}
.wsf{word-spacing:32.340000px;}
.ws156{word-spacing:32.616000px;}
.ws10{word-spacing:33.660000px;}
.ws7a{word-spacing:40.440000px;}
.ws42{word-spacing:61.446000px;}
.ws90{word-spacing:320.166000px;}
.ws8f{word-spacing:1234.510200px;}
._9{margin-left:-10.842000px;}
._0{margin-left:-8.904600px;}
._87{margin-left:-7.225200px;}
._4{margin-left:-6.099600px;}
._39{margin-left:-4.796400px;}
._3{margin-left:-3.641400px;}
._1{margin-left:-1.734000px;}
._2{width:1.071000px;}
._a{width:2.352000px;}
._5{width:3.580200px;}
._95{width:4.860000px;}
._8{width:6.540000px;}
._88{width:7.664400px;}
._86{width:8.693400px;}
._85{width:9.840000px;}
._7{width:11.736000px;}
._9b{width:17.772000px;}
._97{width:19.790400px;}
._96{width:21.780000px;}
._9a{width:25.139400px;}
._6{width:36.369600px;}
._99{width:43.124400px;}
._98{width:44.719800px;}
._70{width:90.030000px;}
._76{width:95.196000px;}
._94{width:110.544000px;}
._21{width:112.824000px;}
._3b{width:132.567000px;}
._3d{width:147.918000px;}
._2c{width:153.474000px;}
._58{width:157.116000px;}
._71{width:168.810000px;}
._74{width:172.560000px;}
._1b{width:175.062000px;}
._89{width:176.366400px;}
._5c{width:181.086000px;}
._6f{width:187.164000px;}
._7c{width:191.302800px;}
._6a{width:196.248000px;}
._65{width:218.070000px;}
._3e{width:220.592400px;}
._78{width:221.742000px;}
._3c{width:231.975600px;}
._77{width:233.124000px;}
._91{width:238.392000px;}
._20{width:240.882000px;}
._37{width:245.766000px;}
._15{width:246.804000px;}
._6b{width:248.034000px;}
._8b{width:249.480000px;}
._48{width:251.550000px;}
._52{width:252.738000px;}
._8d{width:263.214000px;}
._4a{width:265.422000px;}
._82{width:266.490000px;}
._2a{width:278.010000px;}
._4d{width:281.274000px;}
._42{width:283.806000px;}
._47{width:289.800000px;}
._61{width:292.332000px;}
._5b{width:299.166000px;}
._3a{width:304.718400px;}
._55{width:307.524000px;}
._54{width:311.988000px;}
._28{width:316.524000px;}
._5a{width:319.326000px;}
._5f{width:324.672000px;}
._66{width:329.022000px;}
._8a{width:332.121000px;}
._4f{width:333.276000px;}
._34{width:340.620000px;}
._5e{width:343.140000px;}
._2f{width:345.072000px;}
._31{width:348.070800px;}
._59{width:350.910000px;}
._2e{width:352.446000px;}
._84{width:359.898000px;}
._63{width:364.722000px;}
._13{width:368.004000px;}
._2b{width:370.398000px;}
._69{width:372.678000px;}
._67{width:376.134000px;}
._6e{width:379.821000px;}
._45{width:382.758000px;}
._38{width:390.192000px;}
._92{width:392.100000px;}
._40{width:399.474000px;}
._80{width:401.562000px;}
._27{width:403.368000px;}
._b{width:411.978000px;}
._62{width:415.644000px;}
._57{width:421.860000px;}
._64{width:423.216000px;}
._36{width:426.888000px;}
._72{width:430.865400px;}
._1e{width:436.308000px;}
._49{width:440.592000px;}
._93{width:444.738000px;}
._8c{width:447.090000px;}
._79{width:452.091000px;}
._29{width:453.726000px;}
._4e{width:456.972000px;}
._75{width:460.344000px;}
._f{width:463.104000px;}
._50{width:464.604000px;}
._6d{width:474.570000px;}
._19{width:481.265400px;}
._46{width:483.546000px;}
._6c{width:486.090000px;}
._11{width:487.158000px;}
._17{width:488.208000px;}
._26{width:491.400000px;}
._60{width:494.298000px;}
._51{width:498.636000px;}
._53{width:512.424000px;}
._2d{width:519.792000px;}
._90{width:525.042000px;}
._1a{width:526.176000px;}
._8e{width:527.919000px;}
._33{width:533.202000px;}
._73{width:538.842000px;}
._5d{width:545.874000px;}
._30{width:548.856000px;}
._3f{width:552.560400px;}
._4c{width:553.812000px;}
._16{width:555.786000px;}
._23{width:558.696000px;}
._4b{width:567.798000px;}
._1c{width:588.222000px;}
._7d{width:592.266000px;}
._7b{width:601.272000px;}
._8f{width:602.406000px;}
._7a{width:614.316000px;}
._12{width:620.508000px;}
._68{width:627.378000px;}
._7e{width:633.654000px;}
._7f{width:636.413400px;}
._d{width:644.994000px;}
._35{width:651.042000px;}
._14{width:679.518000px;}
._25{width:683.676000px;}
._1f{width:696.368400px;}
._56{width:711.312000px;}
._32{width:722.358000px;}
._24{width:731.388000px;}
._e{width:753.467400px;}
._18{width:758.184000px;}
._1d{width:765.180000px;}
._22{width:775.194000px;}
._44{width:786.870000px;}
._43{width:799.470000px;}
._10{width:802.767600px;}
._41{width:823.284000px;}
._83{width:858.492000px;}
._81{width:905.334000px;}
._c{width:1011.864000px;}
.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);}
.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;}
.y179{bottom:112.790850px;}
.y149{bottom:113.066850px;}
.yf7{bottom:113.078850px;}
.ye{bottom:117.205050px;}
.y2a{bottom:117.212550px;}
.y8d{bottom:117.839100px;}
.y111{bottom:117.914250px;}
.y4b{bottom:120.121350px;}
.y119{bottom:120.491850px;}
.yfb{bottom:120.496350px;}
.ycd{bottom:120.671550px;}
.y110{bottom:131.417250px;}
.yd{bottom:131.601450px;}
.y178{bottom:133.796850px;}
.y148{bottom:134.072850px;}
.y12b{bottom:134.078700px;}
.yf6{bottom:134.078850px;}
.ycc{bottom:134.174550px;}
.y8c{bottom:134.639100px;}
.y29{bottom:138.212550px;}
.y4a{bottom:139.925850px;}
.y118{bottom:140.296350px;}
.yfa{bottom:140.300850px;}
.yc{bottom:145.997850px;}
.ycb{bottom:147.677550px;}
.y8b{bottom:151.439100px;}
.y10f{bottom:152.049750px;}
.y177{bottom:154.802850px;}
.y12a{bottom:155.078700px;}
.yf5{bottom:155.078850px;}
.y28{bottom:159.212550px;}
.y117{bottom:160.100850px;}
.yb{bottom:160.397850px;}
.yca{bottom:161.180550px;}
.y8a{bottom:164.942100px;}
.y10e{bottom:165.552750px;}
.yc9{bottom:174.683550px;}
.y176{bottom:175.808850px;}
.y129{bottom:176.078700px;}
.yf4{bottom:176.078850px;}
.y27{bottom:180.212550px;}
.y89{bottom:181.742100px;}
.y10d{bottom:186.185250px;}
.yc8{bottom:188.186550px;}
.y147{bottom:190.441050px;}
.y175{bottom:196.814850px;}
.y128{bottom:197.078700px;}
.yf3{bottom:197.078850px;}
.y88{bottom:198.542100px;}
.y10c{bottom:199.688250px;}
.y26{bottom:201.212550px;}
.y3b{bottom:203.467800px;}
.yc7{bottom:209.470050px;}
.y87{bottom:212.045100px;}
.y174{bottom:217.820850px;}
.y127{bottom:218.078700px;}
.yf2{bottom:218.078850px;}
.y10b{bottom:220.320750px;}
.y3a{bottom:221.463300px;}
.y25{bottom:222.212550px;}
.yc6{bottom:226.270050px;}
.y86{bottom:228.845100px;}
.y133{bottom:232.441050px;}
.y10a{bottom:233.823750px;}
.y173{bottom:238.826850px;}
.y126{bottom:239.078700px;}
.yf1{bottom:239.078850px;}
.y39{bottom:239.458800px;}
.y85{bottom:242.348100px;}
.yc5{bottom:243.070050px;}
.y24{bottom:243.212550px;}
.y109{bottom:254.456250px;}
.y38{bottom:257.454300px;}
.y83{bottom:259.158600px;}
.y172{bottom:259.832850px;}
.yc4{bottom:259.870050px;}
.y125{bottom:260.078700px;}
.yf0{bottom:260.078850px;}
.y23{bottom:264.212550px;}
.y146{bottom:265.529400px;}
.y82{bottom:272.661600px;}
.y108{bottom:275.088750px;}
.y37{bottom:275.449800px;}
.yc3{bottom:276.670050px;}
.y171{bottom:280.838850px;}
.y124{bottom:281.078700px;}
.y116{bottom:281.078850px;}
.y22{bottom:285.212550px;}
.y84{bottom:286.154100px;}
.y81{bottom:286.164600px;}
.y36{bottom:293.445300px;}
.yc2{bottom:293.470050px;}
.y107{bottom:295.721250px;}
.y170{bottom:301.844850px;}
.y145{bottom:302.072850px;}
.y123{bottom:302.078700px;}
.yef{bottom:302.078850px;}
.y80{bottom:302.964600px;}
.y21{bottom:306.212550px;}
.yc1{bottom:310.270050px;}
.y35{bottom:311.440800px;}
.y106{bottom:316.353750px;}
.y7f{bottom:319.764600px;}
.y16f{bottom:322.850850px;}
.y144{bottom:323.072850px;}
.y122{bottom:323.078700px;}
.y115{bottom:323.078850px;}
.yc0{bottom:327.070050px;}
.y20{bottom:327.212550px;}
.y34{bottom:329.436300px;}
.y105{bottom:329.856750px;}
.y7e{bottom:336.564600px;}
.ybf{bottom:340.573050px;}
.y16e{bottom:343.856850px;}
.y143{bottom:344.072850px;}
.y121{bottom:344.078700px;}
.yee{bottom:344.078850px;}
.y33{bottom:347.431800px;}
.y1f{bottom:348.212550px;}
.y104{bottom:350.489250px;}
.y7d{bottom:353.364600px;}
.ybe{bottom:357.373050px;}
.y16d{bottom:364.862850px;}
.y142{bottom:365.072850px;}
.y120{bottom:365.078700px;}
.y132{bottom:365.078850px;}
.y32{bottom:365.427300px;}
.y1e{bottom:369.212550px;}
.y7c{bottom:370.164600px;}
.ybd{bottom:370.876050px;}
.y103{bottom:371.121750px;}
.yed{bottom:378.513600px;}
.y7b{bottom:383.667600px;}
.y16c{bottom:385.868850px;}
.y11f{bottom:386.078700px;}
.y114{bottom:386.078850px;}
.ybc{bottom:387.676050px;}
.y102{bottom:391.754250px;}
.y31{bottom:400.432800px;}
.y7a{bottom:400.467600px;}
.y1d{bottom:403.448400px;}
.ybb{bottom:404.476050px;}
.y16b{bottom:406.874850px;}
.y11e{bottom:407.078700px;}
.y113{bottom:407.078850px;}
.yec{bottom:410.811150px;}
.y101{bottom:412.386750px;}
.y141{bottom:412.529400px;}
.y79{bottom:417.267600px;}
.y30{bottom:418.428300px;}
.yba{bottom:421.276050px;}
.y16a{bottom:427.880850px;}
.y11d{bottom:428.078700px;}
.y112{bottom:428.078850px;}
.y100{bottom:433.019250px;}
.y78{bottom:434.067600px;}
.y2f{bottom:436.423800px;}
.yb9{bottom:438.076050px;}
.yff{bottom:442.490250px;}
.y77{bottom:447.570600px;}
.y169{bottom:448.886850px;}
.y140{bottom:449.042850px;}
.y11c{bottom:449.078700px;}
.y131{bottom:449.078850px;}
.yb8{bottom:451.579050px;}
.y76{bottom:464.370600px;}
.yb7{bottom:468.379050px;}
.y168{bottom:469.892850px;}
.y13f{bottom:470.048850px;}
.y11b{bottom:470.078700px;}
.yeb{bottom:470.078850px;}
.y2e{bottom:471.429300px;}
.y75{bottom:481.170600px;}
.yfe{bottom:481.307700px;}
.yb6{bottom:485.179050px;}
.y1c{bottom:488.223450px;}
.y2d{bottom:489.429300px;}
.y167{bottom:490.898850px;}
.y13e{bottom:491.054850px;}
.y11a{bottom:491.078700px;}
.yea{bottom:491.078850px;}
.y74{bottom:497.970600px;}
.yb5{bottom:498.682050px;}
.yfd{bottom:501.112200px;}
.y2c{bottom:507.429300px;}
.y1b{bottom:508.027950px;}
.y73{bottom:511.473600px;}
.y166{bottom:511.904850px;}
.y13d{bottom:512.060850px;}
.ye9{bottom:512.078850px;}
.yb4{bottom:515.482050px;}
.y2b{bottom:525.429300px;}
.y72{bottom:528.273600px;}
.yb3{bottom:532.282050px;}
.y165{bottom:532.910850px;}
.y13c{bottom:533.066850px;}
.ye8{bottom:533.078850px;}
.y130{bottom:544.625550px;}
.y71{bottom:545.073600px;}
.y1a{bottom:549.047250px;}
.yb2{bottom:549.082050px;}
.y164{bottom:553.916850px;}
.y13b{bottom:554.072850px;}
.ye7{bottom:554.078850px;}
.y70{bottom:561.873600px;}
.y12f{bottom:564.430050px;}
.yb1{bottom:565.882050px;}
.y19{bottom:568.851750px;}
.y163{bottom:574.922850px;}
.ye6{bottom:575.078850px;}
.y6f{bottom:578.673600px;}
.yb0{bottom:582.682050px;}
.y12e{bottom:584.234550px;}
.y18{bottom:588.656250px;}
.y6e{bottom:592.176600px;}
.y162{bottom:595.928850px;}
.ye5{bottom:596.078850px;}
.yaf{bottom:596.185050px;}
.y13a{bottom:601.529400px;}
.y134{bottom:603.813150px;}
.y12d{bottom:604.039050px;}
.y17{bottom:608.460750px;}
.y6d{bottom:608.976600px;}
.yae{bottom:612.985050px;}
.y161{bottom:616.934850px;}
.ye4{bottom:617.078850px;}
.y12c{bottom:623.843550px;}
.y6c{bottom:625.776600px;}
.y16{bottom:628.265250px;}
.yad{bottom:629.785050px;}
.y160{bottom:637.940850px;}
.y139{bottom:638.072850px;}
.ye3{bottom:638.078850px;}
.y6b{bottom:642.576600px;}
.yac{bottom:643.288050px;}
.y15{bottom:648.069750px;}
.y15f{bottom:658.946850px;}
.ye2{bottom:659.078850px;}
.y6a{bottom:659.376600px;}
.yab{bottom:660.088050px;}
.y14{bottom:667.874250px;}
.yaa{bottom:673.591050px;}
.y69{bottom:676.176600px;}
.y15e{bottom:679.952850px;}
.ye1{bottom:680.078850px;}
.y138{bottom:685.529400px;}
.y13{bottom:687.678750px;}
.ya9{bottom:690.391050px;}
.y68{bottom:692.976600px;}
.y15d{bottom:700.958850px;}
.ye0{bottom:701.078850px;}
.ya8{bottom:707.191050px;}
.y12{bottom:707.483250px;}
.y67{bottom:709.776600px;}
.y15c{bottom:721.964850px;}
.ydf{bottom:722.078850px;}
.ya7{bottom:723.991050px;}
.y66{bottom:726.576600px;}
.y11{bottom:727.287750px;}
.ya6{bottom:737.494050px;}
.y15b{bottom:742.970850px;}
.yde{bottom:743.078850px;}
.y65{bottom:743.376600px;}
.y137{bottom:748.529400px;}
.ya5{bottom:754.294050px;}
.y10{bottom:758.385150px;}
.y64{bottom:760.176600px;}
.y15a{bottom:763.976850px;}
.ydd{bottom:764.078850px;}
.ya4{bottom:771.094050px;}
.y63{bottom:773.679600px;}
.y159{bottom:784.982850px;}
.ydc{bottom:785.078850px;}
.ya3{bottom:787.894050px;}
.y62{bottom:790.479600px;}
.ya2{bottom:801.397050px;}
.y158{bottom:805.988850px;}
.ydb{bottom:806.078850px;}
.y61{bottom:807.279600px;}
.y136{bottom:811.529250px;}
.ya1{bottom:818.197050px;}
.y60{bottom:820.782600px;}
.y157{bottom:826.994850px;}
.yda{bottom:827.078850px;}
.ya0{bottom:834.997050px;}
.y5f{bottom:837.582600px;}
.ya{bottom:837.666900px;}
.y156{bottom:848.000850px;}
.yd9{bottom:848.078850px;}
.y9f{bottom:848.500050px;}
.y5e{bottom:854.382600px;}
.y9{bottom:855.666900px;}
.y9e{bottom:865.300050px;}
.y155{bottom:869.006850px;}
.yd8{bottom:869.078850px;}
.y5d{bottom:871.182600px;}
.y8{bottom:873.666900px;}
.y135{bottom:874.937100px;}
.y9d{bottom:882.100050px;}
.y5c{bottom:884.685600px;}
.y154{bottom:890.012850px;}
.yfc{bottom:890.078850px;}
.y7{bottom:891.666900px;}
.y9c{bottom:898.900050px;}
.y5b{bottom:901.485600px;}
.yd7{bottom:904.441050px;}
.y153{bottom:911.018850px;}
.yf9{bottom:911.078850px;}
.y5a{bottom:914.988600px;}
.y9b{bottom:915.700050px;}
.y6{bottom:926.674800px;}
.y59{bottom:931.788600px;}
.y152{bottom:932.024850px;}
.yf8{bottom:932.078850px;}
.y9a{bottom:932.500050px;}
.y5{bottom:946.474800px;}
.y57{bottom:948.599100px;}
.y99{bottom:949.300050px;}
.y151{bottom:953.030850px;}
.y49{bottom:953.078700px;}
.yd6{bottom:953.078850px;}
.y56{bottom:962.102100px;}
.y98{bottom:966.100050px;}
.y150{bottom:974.036850px;}
.y48{bottom:974.078700px;}
.yd5{bottom:974.078850px;}
.y58{bottom:975.594600px;}
.y55{bottom:975.605100px;}
.y97{bottom:979.603050px;}
.y4{bottom:983.288550px;}
.y53{bottom:992.415600px;}
.y14f{bottom:995.042850px;}
.y47{bottom:995.078700px;}
.yd4{bottom:995.078850px;}
.y96{bottom:996.403050px;}
.y52{bottom:1005.918600px;}
.y95{bottom:1013.203050px;}
.y14e{bottom:1016.048850px;}
.y46{bottom:1016.078700px;}
.yd3{bottom:1016.078850px;}
.y3{bottom:1016.285550px;}
.y54{bottom:1019.411100px;}
.y51{bottom:1019.421600px;}
.y94{bottom:1030.003050px;}
.y50{bottom:1036.221600px;}
.y14d{bottom:1037.054850px;}
.y45{bottom:1037.078700px;}
.yd2{bottom:1037.078850px;}
.y93{bottom:1043.506050px;}
.y2{bottom:1049.282550px;}
.y4f{bottom:1053.021600px;}
.y14c{bottom:1058.060850px;}
.y44{bottom:1058.078700px;}
.yd1{bottom:1058.078850px;}
.y92{bottom:1060.306050px;}
.y4e{bottom:1070.126100px;}
.y91{bottom:1077.106050px;}
.y14b{bottom:1079.066850px;}
.y43{bottom:1079.078700px;}
.yd0{bottom:1079.078850px;}
.y90{bottom:1093.906050px;}
.y4d{bottom:1099.478400px;}
.y14a{bottom:1100.072850px;}
.y42{bottom:1100.078700px;}
.ycf{bottom:1100.078850px;}
.yf{bottom:1109.815500px;}
.y8f{bottom:1110.706050px;}
.y4c{bottom:1119.282900px;}
.y41{bottom:1121.078700px;}
.yce{bottom:1121.078850px;}
.y8e{bottom:1127.810550px;}
.y3d{bottom:1159.189500px;}
.y3c{bottom:1178.689500px;}
.y40{bottom:1178.692050px;}
.h11{height:33.448242px;}
.h7{height:34.446094px;}
.h6{height:34.657031px;}
.h12{height:37.898438px;}
.h10{height:38.273438px;}
.h2{height:38.507812px;}
.h5{height:38.531250px;}
.h8{height:43.004883px;}
.hf{height:43.057617px;}
.he{height:43.321289px;}
.h15{height:43.875000px;}
.h9{height:45.615234px;}
.ha{height:48.726562px;}
.hd{height:48.750000px;}
.h16{height:48.750563px;}
.h13{height:50.176758px;}
.hc{height:54.140625px;}
.hb{height:54.738281px;}
.h4{height:59.554688px;}
.h14{height:71.290242px;}
.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;}
.xa{left:107.071650px;}
.xc{left:108.285450px;}
.xe{left:112.240200px;}
.xd{left:113.909700px;}
.x5{left:119.878950px;}
.x6{left:122.032500px;}
.x7{left:124.102950px;}
.x28{left:133.791000px;}
.x23{left:142.049700px;}
.x34{left:222.064500px;}
.x29{left:236.271000px;}
.x2a{left:248.745000px;}
.x35{left:253.953000px;}
.x2f{left:256.809000px;}
.x2e{left:265.167000px;}
.x4{left:300.189000px;}
.xb{left:317.199000px;}
.x30{left:360.706500px;}
.x36{left:362.995500px;}
.x3{left:396.050700px;}
.x1f{left:404.455200px;}
.x12{left:405.473700px;}
.x25{left:410.230200px;}
.xf{left:413.999700px;}
.x37{left:416.293500px;}
.x31{left:419.412000px;}
.x24{left:423.544200px;}
.x27{left:464.935200px;}
.x21{left:478.543200px;}
.x13{left:505.423200px;}
.x1b{left:508.951200px;}
.x15{left:511.261200px;}
.x17{left:517.844700px;}
.x32{left:522.658500px;}
.x19{left:525.782700px;}
.x20{left:527.924700px;}
.x1d{left:541.238700px;}
.x22{left:551.150700px;}
.x26{left:552.725700px;}
.x1c{left:555.739200px;}
.x10{left:565.178700px;}
.x1e{left:566.596200px;}
.x2b{left:569.782500px;}
.x9{left:648.911400px;}
.x2c{left:674.530500px;}
.x8{left:681.563400px;}
.x39{left:688.201500px;}
.x3a{left:694.564500px;}
.x33{left:720.268500px;}
.x2d{left:722.851500px;}
.x38{left:728.805000px;}
.x14{left:765.287700px;}
.x16{left:767.639700px;}
.x11{left:770.579700px;}
.x18{left:775.861200px;}
.x1a{left:784.093200px;}
.x1{left:807.081450px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:17.760000pt;}
.v1{vertical-align:19.536000pt;}
.v3{vertical-align:33.637333pt;}
.lsb{letter-spacing:-2.880000pt;}
.ls1b{letter-spacing:-2.496000pt;}
.ls7{letter-spacing:-1.013333pt;}
.ls5{letter-spacing:-0.816000pt;}
.ls8{letter-spacing:-0.800000pt;}
.ls4{letter-spacing:-0.614400pt;}
.lsc{letter-spacing:-0.533333pt;}
.ls1d{letter-spacing:-0.528000pt;}
.ls18{letter-spacing:-0.480000pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls3{letter-spacing:-0.362667pt;}
.lsd{letter-spacing:-0.310933pt;}
.ls17{letter-spacing:-0.266667pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.096000pt;}
.ls2{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.800000pt;}
.ls12{letter-spacing:1.066667pt;}
.ls15{letter-spacing:2.160000pt;}
.ls10{letter-spacing:3.893333pt;}
.ls16{letter-spacing:5.706667pt;}
.ls14{letter-spacing:6.720000pt;}
.ls11{letter-spacing:6.789333pt;}
.ls9{letter-spacing:7.360000pt;}
.lsa{letter-spacing:7.910400pt;}
.lsf{letter-spacing:12.853333pt;}
.ls13{letter-spacing:15.168000pt;}
.ls1{letter-spacing:38.383435pt;}
.ls0{letter-spacing:38.383968pt;}
.ls6{letter-spacing:84.858667pt;}
.ws0{word-spacing:-22.032000pt;}
.ws6{word-spacing:-15.936000pt;}
.ws4d{word-spacing:-14.608000pt;}
.wsa2{word-spacing:-14.080000pt;}
.wsa3{word-spacing:-13.866667pt;}
.ws4{word-spacing:-13.280000pt;}
.ws70{word-spacing:-13.226667pt;}
.ws4e{word-spacing:-13.173333pt;}
.ws7{word-spacing:-13.066667pt;}
.wse9{word-spacing:-12.800000pt;}
.wsea{word-spacing:-12.533333pt;}
.ws4f{word-spacing:-12.480000pt;}
.ws4c{word-spacing:-12.266667pt;}
.ws7f{word-spacing:-11.952000pt;}
.ws5{word-spacing:-11.904000pt;}
.ws145{word-spacing:-11.808000pt;}
.ws3a{word-spacing:-11.760000pt;}
.ws12b{word-spacing:-11.712000pt;}
.ws12c{word-spacing:-11.568000pt;}
.ws10f{word-spacing:-11.520000pt;}
.ws163{word-spacing:-11.232000pt;}
.ws8{word-spacing:-10.992000pt;}
.wsc{word-spacing:-10.800000pt;}
.ws9{word-spacing:-10.176000pt;}
.wsa{word-spacing:-9.984000pt;}
.wsd{word-spacing:-9.770667pt;}
.ws2{word-spacing:-9.685333pt;}
.ws38{word-spacing:-9.600000pt;}
.ws43{word-spacing:-9.258667pt;}
.ws80{word-spacing:-9.072000pt;}
.ws3{word-spacing:-8.793600pt;}
.ws1{word-spacing:-8.549333pt;}
.ws8e{word-spacing:-7.400213pt;}
.ws136{word-spacing:-6.624000pt;}
.ws168{word-spacing:-6.192000pt;}
.ws66{word-spacing:-5.760000pt;}
.wse6{word-spacing:-5.706667pt;}
.ws7b{word-spacing:-5.226667pt;}
.ws15c{word-spacing:-5.040000pt;}
.ws16b{word-spacing:-4.608000pt;}
.ws12f{word-spacing:-4.512000pt;}
.wse2{word-spacing:-4.480000pt;}
.ws108{word-spacing:-4.224000pt;}
.ws23{word-spacing:-3.936000pt;}
.ws121{word-spacing:-3.840000pt;}
.ws117{word-spacing:-3.744000pt;}
.ws161{word-spacing:-3.696000pt;}
.ws19{word-spacing:-3.456000pt;}
.ws15d{word-spacing:-3.408000pt;}
.wsf8{word-spacing:-3.360000pt;}
.ws142{word-spacing:-3.312000pt;}
.ws109{word-spacing:-3.264000pt;}
.ws102{word-spacing:-3.253333pt;}
.ws103{word-spacing:-3.200000pt;}
.ws6d{word-spacing:-3.146667pt;}
.ws24{word-spacing:-3.024000pt;}
.ws22{word-spacing:-2.976000pt;}
.ws12d{word-spacing:-2.832000pt;}
.ws20{word-spacing:-2.736000pt;}
.ws88{word-spacing:-2.720000pt;}
.ws1a{word-spacing:-2.544000pt;}
.wsd2{word-spacing:-2.506667pt;}
.ws18{word-spacing:-2.496000pt;}
.wse3{word-spacing:-2.453333pt;}
.ws95{word-spacing:-2.400000pt;}
.ws61{word-spacing:-2.346667pt;}
.ws65{word-spacing:-2.293333pt;}
.ws128{word-spacing:-2.208000pt;}
.ws73{word-spacing:-2.186667pt;}
.ws155{word-spacing:-2.160000pt;}
.ws114{word-spacing:-2.112000pt;}
.ws133{word-spacing:-2.064000pt;}
.ws5e{word-spacing:-1.973333pt;}
.ws143{word-spacing:-1.968000pt;}
.ws71{word-spacing:-1.866667pt;}
.ws21{word-spacing:-1.824000pt;}
.ws75{word-spacing:-1.813333pt;}
.ws99{word-spacing:-1.760000pt;}
.ws13d{word-spacing:-1.728000pt;}
.ws54{word-spacing:-1.706667pt;}
.ws76{word-spacing:-1.653333pt;}
.ws13e{word-spacing:-1.632000pt;}
.wsda{word-spacing:-1.488000pt;}
.wsb2{word-spacing:-1.440000pt;}
.wsa7{word-spacing:-1.386667pt;}
.ws49{word-spacing:-1.381333pt;}
.ws4a{word-spacing:-1.344000pt;}
.ws15a{word-spacing:-1.296000pt;}
.ws105{word-spacing:-1.280000pt;}
.wsdc{word-spacing:-1.248000pt;}
.wsf2{word-spacing:-1.226667pt;}
.ws83{word-spacing:-1.173333pt;}
.ws139{word-spacing:-1.152000pt;}
.ws11{word-spacing:-1.114667pt;}
.wsc0{word-spacing:-1.066667pt;}
.wsb3{word-spacing:-1.013333pt;}
.ws123{word-spacing:-1.008000pt;}
.ws5c{word-spacing:-0.960000pt;}
.ws36{word-spacing:-0.912000pt;}
.wsd7{word-spacing:-0.906667pt;}
.ws98{word-spacing:-0.853333pt;}
.wsaf{word-spacing:-0.800000pt;}
.ws10e{word-spacing:-0.768000pt;}
.ws8b{word-spacing:-0.746667pt;}
.ws46{word-spacing:-0.709333pt;}
.ws67{word-spacing:-0.693333pt;}
.ws144{word-spacing:-0.624000pt;}
.ws79{word-spacing:-0.533333pt;}
.ws149{word-spacing:-0.480000pt;}
.ws16d{word-spacing:-0.384000pt;}
.ws5b{word-spacing:-0.373333pt;}
.ws35{word-spacing:-0.320000pt;}
.ws112{word-spacing:-0.288000pt;}
.ws47{word-spacing:-0.261333pt;}
.ws64{word-spacing:-0.213333pt;}
.ws12{word-spacing:-0.192000pt;}
.wsb5{word-spacing:-0.160000pt;}
.ws124{word-spacing:-0.144000pt;}
.ws3e{word-spacing:-0.053333pt;}
.wsb{word-spacing:-0.048000pt;}
.ws39{word-spacing:-0.042667pt;}
.wsa1{word-spacing:-0.037333pt;}
.wse{word-spacing:0.000000pt;}
.ws1f{word-spacing:0.048000pt;}
.wsf7{word-spacing:0.053333pt;}
.ws6e{word-spacing:0.106667pt;}
.ws4b{word-spacing:0.112000pt;}
.ws60{word-spacing:0.160000pt;}
.wsf3{word-spacing:0.266667pt;}
.wscb{word-spacing:0.320000pt;}
.wsd1{word-spacing:0.373333pt;}
.ws118{word-spacing:0.384000pt;}
.wsdf{word-spacing:0.426667pt;}
.ws3c{word-spacing:0.480000pt;}
.ws16a{word-spacing:0.528000pt;}
.ws9c{word-spacing:0.533333pt;}
.wse5{word-spacing:0.586667pt;}
.ws13{word-spacing:0.614400pt;}
.ws48{word-spacing:0.634667pt;}
.ws85{word-spacing:0.640000pt;}
.ws166{word-spacing:0.672000pt;}
.wscc{word-spacing:0.693333pt;}
.wsfb{word-spacing:0.746667pt;}
.ws74{word-spacing:0.800000pt;}
.ws37{word-spacing:0.816000pt;}
.wsb6{word-spacing:0.853333pt;}
.ws160{word-spacing:0.864000pt;}
.wsa0{word-spacing:0.912000pt;}
.ws9f{word-spacing:0.960000pt;}
.ws1e{word-spacing:1.008000pt;}
.ws92{word-spacing:1.013333pt;}
.ws170{word-spacing:1.056000pt;}
.ws91{word-spacing:1.066667pt;}
.ws82{word-spacing:1.120000pt;}
.ws5f{word-spacing:1.280000pt;}
.wsf1{word-spacing:1.333333pt;}
.wsb1{word-spacing:1.440000pt;}
.ws28{word-spacing:1.488000pt;}
.ws84{word-spacing:1.493333pt;}
.ws27{word-spacing:1.536000pt;}
.ws97{word-spacing:1.546667pt;}
.ws164{word-spacing:1.584000pt;}
.ws148{word-spacing:1.632000pt;}
.ws5a{word-spacing:1.653333pt;}
.wsee{word-spacing:1.706667pt;}
.ws16f{word-spacing:1.728000pt;}
.wsa6{word-spacing:1.760000pt;}
.ws131{word-spacing:1.776000pt;}
.ws94{word-spacing:1.813333pt;}
.ws72{word-spacing:1.866667pt;}
.wsc8{word-spacing:1.872000pt;}
.ws3f{word-spacing:1.920000pt;}
.ws3d{word-spacing:1.973333pt;}
.ws2c{word-spacing:2.026667pt;}
.wse8{word-spacing:2.080000pt;}
.wse7{word-spacing:2.133333pt;}
.wsd9{word-spacing:2.160000pt;}
.wsca{word-spacing:2.186667pt;}
.wsd8{word-spacing:2.208000pt;}
.ws32{word-spacing:2.240000pt;}
.wsd4{word-spacing:2.346667pt;}
.ws11a{word-spacing:2.352000pt;}
.ws9b{word-spacing:2.400000pt;}
.ws141{word-spacing:2.448000pt;}
.wsed{word-spacing:2.453333pt;}
.wsb4{word-spacing:2.506667pt;}
.ws107{word-spacing:2.544000pt;}
.ws56{word-spacing:2.613333pt;}
.ws13a{word-spacing:2.640000pt;}
.ws115{word-spacing:2.688000pt;}
.ws89{word-spacing:2.720000pt;}
.ws68{word-spacing:2.773333pt;}
.ws167{word-spacing:2.784000pt;}
.ws127{word-spacing:2.832000pt;}
.ws81{word-spacing:2.880000pt;}
.ws30{word-spacing:3.200000pt;}
.ws93{word-spacing:3.253333pt;}
.ws150{word-spacing:3.264000pt;}
.wsf6{word-spacing:3.306667pt;}
.ws8d{word-spacing:3.408000pt;}
.ws8c{word-spacing:3.456000pt;}
.ws10d{word-spacing:3.504000pt;}
.ws33{word-spacing:3.520000pt;}
.ws14e{word-spacing:3.552000pt;}
.ws62{word-spacing:3.573333pt;}
.ws154{word-spacing:3.600000pt;}
.wsd5{word-spacing:3.680000pt;}
.ws58{word-spacing:3.733333pt;}
.ws57{word-spacing:3.786667pt;}
.ws16e{word-spacing:3.792000pt;}
.ws14b{word-spacing:3.888000pt;}
.ws14a{word-spacing:3.936000pt;}
.ws3b{word-spacing:4.000000pt;}
.wsd6{word-spacing:4.106667pt;}
.wsef{word-spacing:4.160000pt;}
.ws6c{word-spacing:4.213333pt;}
.ws2f{word-spacing:4.266667pt;}
.wsff{word-spacing:4.320000pt;}
.ws34{word-spacing:4.373333pt;}
.wsd3{word-spacing:4.426667pt;}
.ws96{word-spacing:4.480000pt;}
.ws13b{word-spacing:4.512000pt;}
.wsae{word-spacing:4.586667pt;}
.ws87{word-spacing:4.640000pt;}
.ws146{word-spacing:4.656000pt;}
.ws104{word-spacing:4.693333pt;}
.wsbf{word-spacing:4.746667pt;}
.wsc9{word-spacing:4.752000pt;}
.ws69{word-spacing:4.853333pt;}
.wsb8{word-spacing:4.906667pt;}
.wsb7{word-spacing:4.960000pt;}
.ws26{word-spacing:4.992000pt;}
.ws25{word-spacing:5.040000pt;}
.ws162{word-spacing:5.088000pt;}
.ws59{word-spacing:5.120000pt;}
.wsb0{word-spacing:5.173333pt;}
.ws9e{word-spacing:5.226667pt;}
.ws119{word-spacing:5.232000pt;}
.ws50{word-spacing:5.280000pt;}
.ws129{word-spacing:5.328000pt;}
.ws11d{word-spacing:5.376000pt;}
.ws55{word-spacing:5.386667pt;}
.wsf5{word-spacing:5.440000pt;}
.wsf0{word-spacing:5.493333pt;}
.ws9d{word-spacing:5.546667pt;}
.wse0{word-spacing:5.653333pt;}
.ws147{word-spacing:5.664000pt;}
.wse1{word-spacing:5.706667pt;}
.ws9a{word-spacing:5.760000pt;}
.ws158{word-spacing:5.808000pt;}
.wsbe{word-spacing:5.813333pt;}
.wsbd{word-spacing:5.866667pt;}
.ws6b{word-spacing:5.973333pt;}
.ws151{word-spacing:6.000000pt;}
.ws6a{word-spacing:6.026667pt;}
.ws11e{word-spacing:6.048000pt;}
.wsfa{word-spacing:6.080000pt;}
.ws106{word-spacing:6.133333pt;}
.ws2d{word-spacing:6.240000pt;}
.ws159{word-spacing:6.288000pt;}
.ws31{word-spacing:6.293333pt;}
.ws8a{word-spacing:6.346667pt;}
.ws130{word-spacing:6.480000pt;}
.wsde{word-spacing:6.560000pt;}
.wsc3{word-spacing:6.613333pt;}
.wsd0{word-spacing:6.672000pt;}
.ws40{word-spacing:6.720000pt;}
.ws15e{word-spacing:6.912000pt;}
.ws113{word-spacing:6.960000pt;}
.ws12e{word-spacing:7.056000pt;}
.ws1d{word-spacing:7.104000pt;}
.ws1c{word-spacing:7.152000pt;}
.ws10b{word-spacing:7.296000pt;}
.wse4{word-spacing:7.306667pt;}
.ws15f{word-spacing:7.344000pt;}
.wsbb{word-spacing:7.360000pt;}
.ws2e{word-spacing:7.413333pt;}
.wsa5{word-spacing:7.466667pt;}
.ws120{word-spacing:7.488000pt;}
.wsa4{word-spacing:7.520000pt;}
.ws14c{word-spacing:7.536000pt;}
.ws5d{word-spacing:7.573333pt;}
.ws45{word-spacing:7.584000pt;}
.ws44{word-spacing:7.632000pt;}
.ws63{word-spacing:7.680000pt;}
.wsa9{word-spacing:7.786667pt;}
.wsba{word-spacing:7.840000pt;}
.ws7e{word-spacing:7.920000pt;}
.ws7d{word-spacing:7.968000pt;}
.wsf4{word-spacing:8.000000pt;}
.ws7c{word-spacing:8.016000pt;}
.wsbc{word-spacing:8.106667pt;}
.ws125{word-spacing:8.112000pt;}
.ws14d{word-spacing:8.160000pt;}
.ws157{word-spacing:8.208000pt;}
.wsec{word-spacing:8.213333pt;}
.ws6f{word-spacing:8.266667pt;}
.wseb{word-spacing:8.320000pt;}
.ws78{word-spacing:8.426667pt;}
.ws77{word-spacing:8.480000pt;}
.ws53{word-spacing:8.586667pt;}
.ws138{word-spacing:8.688000pt;}
.ws51{word-spacing:8.693333pt;}
.ws52{word-spacing:8.746667pt;}
.ws41{word-spacing:8.800000pt;}
.ws16c{word-spacing:8.880000pt;}
.wsc7{word-spacing:9.024000pt;}
.wsc6{word-spacing:9.120000pt;}
.wsc5{word-spacing:9.216000pt;}
.wsfc{word-spacing:9.333333pt;}
.ws15b{word-spacing:9.360000pt;}
.wsfd{word-spacing:9.386667pt;}
.ws100{word-spacing:9.600000pt;}
.ws101{word-spacing:9.706667pt;}
.wsc2{word-spacing:10.080000pt;}
.ws10c{word-spacing:10.128000pt;}
.ws2a{word-spacing:10.346667pt;}
.ws86{word-spacing:10.400000pt;}
.wsdb{word-spacing:11.136000pt;}
.ws1b{word-spacing:11.280000pt;}
.ws29{word-spacing:11.466667pt;}
.ws16{word-spacing:11.472000pt;}
.ws17{word-spacing:11.520000pt;}
.ws11c{word-spacing:11.616000pt;}
.ws11f{word-spacing:11.904000pt;}
.ws2b{word-spacing:12.000000pt;}
.ws165{word-spacing:12.048000pt;}
.wsfe{word-spacing:12.053333pt;}
.wsa8{word-spacing:12.106667pt;}
.wsac{word-spacing:12.213333pt;}
.wsad{word-spacing:12.373333pt;}
.wsb9{word-spacing:12.426667pt;}
.ws13c{word-spacing:12.720000pt;}
.wsc4{word-spacing:12.906667pt;}
.ws137{word-spacing:14.112000pt;}
.ws135{word-spacing:14.400000pt;}
.ws122{word-spacing:14.544000pt;}
.ws14f{word-spacing:14.592000pt;}
.ws12a{word-spacing:14.736000pt;}
.wscf{word-spacing:15.024000pt;}
.wsce{word-spacing:15.216000pt;}
.wscd{word-spacing:15.264000pt;}
.ws134{word-spacing:15.360000pt;}
.ws10a{word-spacing:15.552000pt;}
.ws132{word-spacing:17.040000pt;}
.ws153{word-spacing:17.088000pt;}
.wsab{word-spacing:17.333333pt;}
.ws11b{word-spacing:17.424000pt;}
.ws169{word-spacing:17.472000pt;}
.wsaa{word-spacing:17.493333pt;}
.ws172{word-spacing:17.760000pt;}
.wsc1{word-spacing:18.186667pt;}
.ws140{word-spacing:18.480000pt;}
.wsdd{word-spacing:18.773333pt;}
.ws13f{word-spacing:19.248000pt;}
.ws126{word-spacing:19.776000pt;}
.wsf9{word-spacing:21.066667pt;}
.ws110{word-spacing:22.224000pt;}
.ws15{word-spacing:22.848000pt;}
.ws14{word-spacing:23.040000pt;}
.ws116{word-spacing:25.536000pt;}
.ws152{word-spacing:26.016000pt;}
.ws171{word-spacing:27.264000pt;}
.ws111{word-spacing:27.360000pt;}
.wsf{word-spacing:28.746667pt;}
.ws156{word-spacing:28.992000pt;}
.ws10{word-spacing:29.920000pt;}
.ws7a{word-spacing:35.946667pt;}
.ws42{word-spacing:54.618667pt;}
.ws90{word-spacing:284.592000pt;}
.ws8f{word-spacing:1097.342400pt;}
._9{margin-left:-9.637333pt;}
._0{margin-left:-7.915200pt;}
._87{margin-left:-6.422400pt;}
._4{margin-left:-5.421867pt;}
._39{margin-left:-4.263467pt;}
._3{margin-left:-3.236800pt;}
._1{margin-left:-1.541333pt;}
._2{width:0.952000pt;}
._a{width:2.090667pt;}
._5{width:3.182400pt;}
._95{width:4.320000pt;}
._8{width:5.813333pt;}
._88{width:6.812800pt;}
._86{width:7.727467pt;}
._85{width:8.746667pt;}
._7{width:10.432000pt;}
._9b{width:15.797333pt;}
._97{width:17.591467pt;}
._96{width:19.360000pt;}
._9a{width:22.346133pt;}
._6{width:32.328533pt;}
._99{width:38.332800pt;}
._98{width:39.750933pt;}
._70{width:80.026667pt;}
._76{width:84.618667pt;}
._94{width:98.261333pt;}
._21{width:100.288000pt;}
._3b{width:117.837333pt;}
._3d{width:131.482667pt;}
._2c{width:136.421333pt;}
._58{width:139.658667pt;}
._71{width:150.053333pt;}
._74{width:153.386667pt;}
._1b{width:155.610667pt;}
._89{width:156.770133pt;}
._5c{width:160.965333pt;}
._6f{width:166.368000pt;}
._7c{width:170.046933pt;}
._6a{width:174.442667pt;}
._65{width:193.840000pt;}
._3e{width:196.082133pt;}
._78{width:197.104000pt;}
._3c{width:206.200533pt;}
._77{width:207.221333pt;}
._91{width:211.904000pt;}
._20{width:214.117333pt;}
._37{width:218.458667pt;}
._15{width:219.381333pt;}
._6b{width:220.474667pt;}
._8b{width:221.760000pt;}
._48{width:223.600000pt;}
._52{width:224.656000pt;}
._8d{width:233.968000pt;}
._4a{width:235.930667pt;}
._82{width:236.880000pt;}
._2a{width:247.120000pt;}
._4d{width:250.021333pt;}
._42{width:252.272000pt;}
._47{width:257.600000pt;}
._61{width:259.850667pt;}
._5b{width:265.925333pt;}
._3a{width:270.860800pt;}
._55{width:273.354667pt;}
._54{width:277.322667pt;}
._28{width:281.354667pt;}
._5a{width:283.845333pt;}
._5f{width:288.597333pt;}
._66{width:292.464000pt;}
._8a{width:295.218667pt;}
._4f{width:296.245333pt;}
._34{width:302.773333pt;}
._5e{width:305.013333pt;}
._2f{width:306.730667pt;}
._31{width:309.396267pt;}
._59{width:311.920000pt;}
._2e{width:313.285333pt;}
._84{width:319.909333pt;}
._63{width:324.197333pt;}
._13{width:327.114667pt;}
._2b{width:329.242667pt;}
._69{width:331.269333pt;}
._67{width:334.341333pt;}
._6e{width:337.618667pt;}
._45{width:340.229333pt;}
._38{width:346.837333pt;}
._92{width:348.533333pt;}
._40{width:355.088000pt;}
._80{width:356.944000pt;}
._27{width:358.549333pt;}
._b{width:366.202667pt;}
._62{width:369.461333pt;}
._57{width:374.986667pt;}
._64{width:376.192000pt;}
._36{width:379.456000pt;}
._72{width:382.991467pt;}
._1e{width:387.829333pt;}
._49{width:391.637333pt;}
._93{width:395.322667pt;}
._8c{width:397.413333pt;}
._79{width:401.858667pt;}
._29{width:403.312000pt;}
._4e{width:406.197333pt;}
._75{width:409.194667pt;}
._f{width:411.648000pt;}
._50{width:412.981333pt;}
._6d{width:421.840000pt;}
._19{width:427.791467pt;}
._46{width:429.818667pt;}
._6c{width:432.080000pt;}
._11{width:433.029333pt;}
._17{width:433.962667pt;}
._26{width:436.800000pt;}
._60{width:439.376000pt;}
._51{width:443.232000pt;}
._53{width:455.488000pt;}
._2d{width:462.037333pt;}
._90{width:466.704000pt;}
._1a{width:467.712000pt;}
._8e{width:469.261333pt;}
._33{width:473.957333pt;}
._73{width:478.970667pt;}
._5d{width:485.221333pt;}
._30{width:487.872000pt;}
._3f{width:491.164800pt;}
._4c{width:492.277333pt;}
._16{width:494.032000pt;}
._23{width:496.618667pt;}
._4b{width:504.709333pt;}
._1c{width:522.864000pt;}
._7d{width:526.458667pt;}
._7b{width:534.464000pt;}
._8f{width:535.472000pt;}
._7a{width:546.058667pt;}
._12{width:551.562667pt;}
._68{width:557.669333pt;}
._7e{width:563.248000pt;}
._7f{width:565.700800pt;}
._d{width:573.328000pt;}
._35{width:578.704000pt;}
._14{width:604.016000pt;}
._25{width:607.712000pt;}
._1f{width:618.994133pt;}
._56{width:632.277333pt;}
._32{width:642.096000pt;}
._24{width:650.122667pt;}
._e{width:669.748800pt;}
._18{width:673.941333pt;}
._1d{width:680.160000pt;}
._22{width:689.061333pt;}
._44{width:699.440000pt;}
._43{width:710.640000pt;}
._10{width:713.571200pt;}
._41{width:731.808000pt;}
._83{width:763.104000pt;}
._81{width:804.741333pt;}
._c{width:899.434667pt;}
.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;}
.y179{bottom:100.258533pt;}
.y149{bottom:100.503867pt;}
.yf7{bottom:100.514533pt;}
.ye{bottom:104.182267pt;}
.y2a{bottom:104.188933pt;}
.y8d{bottom:104.745867pt;}
.y111{bottom:104.812667pt;}
.y4b{bottom:106.774533pt;}
.y119{bottom:107.103867pt;}
.yfb{bottom:107.107867pt;}
.ycd{bottom:107.263600pt;}
.y110{bottom:116.815333pt;}
.yd{bottom:116.979067pt;}
.y178{bottom:118.930533pt;}
.y148{bottom:119.175867pt;}
.y12b{bottom:119.181067pt;}
.yf6{bottom:119.181200pt;}
.ycc{bottom:119.266267pt;}
.y8c{bottom:119.679200pt;}
.y29{bottom:122.855600pt;}
.y4a{bottom:124.378533pt;}
.y118{bottom:124.707867pt;}
.yfa{bottom:124.711867pt;}
.yc{bottom:129.775867pt;}
.ycb{bottom:131.268933pt;}
.y8b{bottom:134.612533pt;}
.y10f{bottom:135.155333pt;}
.y177{bottom:137.602533pt;}
.y12a{bottom:137.847733pt;}
.yf5{bottom:137.847867pt;}
.y28{bottom:141.522267pt;}
.y117{bottom:142.311867pt;}
.yb{bottom:142.575867pt;}
.yca{bottom:143.271600pt;}
.y8a{bottom:146.615200pt;}
.y10e{bottom:147.158000pt;}
.yc9{bottom:155.274267pt;}
.y176{bottom:156.274533pt;}
.y129{bottom:156.514400pt;}
.yf4{bottom:156.514533pt;}
.y27{bottom:160.188933pt;}
.y89{bottom:161.548533pt;}
.y10d{bottom:165.498000pt;}
.yc8{bottom:167.276933pt;}
.y147{bottom:169.280933pt;}
.y175{bottom:174.946533pt;}
.y128{bottom:175.181067pt;}
.yf3{bottom:175.181200pt;}
.y88{bottom:176.481867pt;}
.y10c{bottom:177.500667pt;}
.y26{bottom:178.855600pt;}
.y3b{bottom:180.860267pt;}
.yc7{bottom:186.195600pt;}
.y87{bottom:188.484533pt;}
.y174{bottom:193.618533pt;}
.y127{bottom:193.847733pt;}
.yf2{bottom:193.847867pt;}
.y10b{bottom:195.840667pt;}
.y3a{bottom:196.856267pt;}
.y25{bottom:197.522267pt;}
.yc6{bottom:201.128933pt;}
.y86{bottom:203.417867pt;}
.y133{bottom:206.614267pt;}
.y10a{bottom:207.843333pt;}
.y173{bottom:212.290533pt;}
.y126{bottom:212.514400pt;}
.yf1{bottom:212.514533pt;}
.y39{bottom:212.852267pt;}
.y85{bottom:215.420533pt;}
.yc5{bottom:216.062267pt;}
.y24{bottom:216.188933pt;}
.y109{bottom:226.183333pt;}
.y38{bottom:228.848267pt;}
.y83{bottom:230.363200pt;}
.y172{bottom:230.962533pt;}
.yc4{bottom:230.995600pt;}
.y125{bottom:231.181067pt;}
.yf0{bottom:231.181200pt;}
.y23{bottom:234.855600pt;}
.y146{bottom:236.026133pt;}
.y82{bottom:242.365867pt;}
.y108{bottom:244.523333pt;}
.y37{bottom:244.844267pt;}
.yc3{bottom:245.928933pt;}
.y171{bottom:249.634533pt;}
.y124{bottom:249.847733pt;}
.y116{bottom:249.847867pt;}
.y22{bottom:253.522267pt;}
.y84{bottom:254.359200pt;}
.y81{bottom:254.368533pt;}
.y36{bottom:260.840267pt;}
.yc2{bottom:260.862267pt;}
.y107{bottom:262.863333pt;}
.y170{bottom:268.306533pt;}
.y145{bottom:268.509200pt;}
.y123{bottom:268.514400pt;}
.yef{bottom:268.514533pt;}
.y80{bottom:269.301867pt;}
.y21{bottom:272.188933pt;}
.yc1{bottom:275.795600pt;}
.y35{bottom:276.836267pt;}
.y106{bottom:281.203333pt;}
.y7f{bottom:284.235200pt;}
.y16f{bottom:286.978533pt;}
.y144{bottom:287.175867pt;}
.y122{bottom:287.181067pt;}
.y115{bottom:287.181200pt;}
.yc0{bottom:290.728933pt;}
.y20{bottom:290.855600pt;}
.y34{bottom:292.832267pt;}
.y105{bottom:293.206000pt;}
.y7e{bottom:299.168533pt;}
.ybf{bottom:302.731600pt;}
.y16e{bottom:305.650533pt;}
.y143{bottom:305.842533pt;}
.y121{bottom:305.847733pt;}
.yee{bottom:305.847867pt;}
.y33{bottom:308.828267pt;}
.y1f{bottom:309.522267pt;}
.y104{bottom:311.546000pt;}
.y7d{bottom:314.101867pt;}
.ybe{bottom:317.664933pt;}
.y16d{bottom:324.322533pt;}
.y142{bottom:324.509200pt;}
.y120{bottom:324.514400pt;}
.y132{bottom:324.514533pt;}
.y32{bottom:324.824267pt;}
.y1e{bottom:328.188933pt;}
.y7c{bottom:329.035200pt;}
.ybd{bottom:329.667600pt;}
.y103{bottom:329.886000pt;}
.yed{bottom:336.456533pt;}
.y7b{bottom:341.037867pt;}
.y16c{bottom:342.994533pt;}
.y11f{bottom:343.181067pt;}
.y114{bottom:343.181200pt;}
.ybc{bottom:344.600933pt;}
.y102{bottom:348.226000pt;}
.y31{bottom:355.940267pt;}
.y7a{bottom:355.971200pt;}
.y1d{bottom:358.620800pt;}
.ybb{bottom:359.534267pt;}
.y16b{bottom:361.666533pt;}
.y11e{bottom:361.847733pt;}
.y113{bottom:361.847867pt;}
.yec{bottom:365.165467pt;}
.y101{bottom:366.566000pt;}
.y141{bottom:366.692800pt;}
.y79{bottom:370.904533pt;}
.y30{bottom:371.936267pt;}
.yba{bottom:374.467600pt;}
.y16a{bottom:380.338533pt;}
.y11d{bottom:380.514400pt;}
.y112{bottom:380.514533pt;}
.y100{bottom:384.906000pt;}
.y78{bottom:385.837867pt;}
.y2f{bottom:387.932267pt;}
.yb9{bottom:389.400933pt;}
.yff{bottom:393.324667pt;}
.y77{bottom:397.840533pt;}
.y169{bottom:399.010533pt;}
.y140{bottom:399.149200pt;}
.y11c{bottom:399.181067pt;}
.y131{bottom:399.181200pt;}
.yb8{bottom:401.403600pt;}
.y76{bottom:412.773867pt;}
.yb7{bottom:416.336933pt;}
.y168{bottom:417.682533pt;}
.y13f{bottom:417.821200pt;}
.y11b{bottom:417.847733pt;}
.yeb{bottom:417.847867pt;}
.y2e{bottom:419.048267pt;}
.y75{bottom:427.707200pt;}
.yfe{bottom:427.829067pt;}
.yb6{bottom:431.270267pt;}
.y1c{bottom:433.976400pt;}
.y2d{bottom:435.048267pt;}
.y167{bottom:436.354533pt;}
.y13e{bottom:436.493200pt;}
.y11a{bottom:436.514400pt;}
.yea{bottom:436.514533pt;}
.y74{bottom:442.640533pt;}
.yb5{bottom:443.272933pt;}
.yfd{bottom:445.433067pt;}
.y2c{bottom:451.048267pt;}
.y1b{bottom:451.580400pt;}
.y73{bottom:454.643200pt;}
.y166{bottom:455.026533pt;}
.y13d{bottom:455.165200pt;}
.ye9{bottom:455.181200pt;}
.yb4{bottom:458.206267pt;}
.y2b{bottom:467.048267pt;}
.y72{bottom:469.576533pt;}
.yb3{bottom:473.139600pt;}
.y165{bottom:473.698533pt;}
.y13c{bottom:473.837200pt;}
.ye8{bottom:473.847867pt;}
.y130{bottom:484.111600pt;}
.y71{bottom:484.509867pt;}
.y1a{bottom:488.042000pt;}
.yb2{bottom:488.072933pt;}
.y164{bottom:492.370533pt;}
.y13b{bottom:492.509200pt;}
.ye7{bottom:492.514533pt;}
.y70{bottom:499.443200pt;}
.y12f{bottom:501.715600pt;}
.yb1{bottom:503.006267pt;}
.y19{bottom:505.646000pt;}
.y163{bottom:511.042533pt;}
.ye6{bottom:511.181200pt;}
.y6f{bottom:514.376533pt;}
.yb0{bottom:517.939600pt;}
.y12e{bottom:519.319600pt;}
.y18{bottom:523.250000pt;}
.y6e{bottom:526.379200pt;}
.y162{bottom:529.714533pt;}
.ye5{bottom:529.847867pt;}
.yaf{bottom:529.942267pt;}
.y13a{bottom:534.692800pt;}
.y134{bottom:536.722800pt;}
.y12d{bottom:536.923600pt;}
.y17{bottom:540.854000pt;}
.y6d{bottom:541.312533pt;}
.yae{bottom:544.875600pt;}
.y161{bottom:548.386533pt;}
.ye4{bottom:548.514533pt;}
.y12c{bottom:554.527600pt;}
.y6c{bottom:556.245867pt;}
.y16{bottom:558.458000pt;}
.yad{bottom:559.808933pt;}
.y160{bottom:567.058533pt;}
.y139{bottom:567.175867pt;}
.ye3{bottom:567.181200pt;}
.y6b{bottom:571.179200pt;}
.yac{bottom:571.811600pt;}
.y15{bottom:576.062000pt;}
.y15f{bottom:585.730533pt;}
.ye2{bottom:585.847867pt;}
.y6a{bottom:586.112533pt;}
.yab{bottom:586.744933pt;}
.y14{bottom:593.666000pt;}
.yaa{bottom:598.747600pt;}
.y69{bottom:601.045867pt;}
.y15e{bottom:604.402533pt;}
.ye1{bottom:604.514533pt;}
.y138{bottom:609.359467pt;}
.y13{bottom:611.270000pt;}
.ya9{bottom:613.680933pt;}
.y68{bottom:615.979200pt;}
.y15d{bottom:623.074533pt;}
.ye0{bottom:623.181200pt;}
.ya8{bottom:628.614267pt;}
.y12{bottom:628.874000pt;}
.y67{bottom:630.912533pt;}
.y15c{bottom:641.746533pt;}
.ydf{bottom:641.847867pt;}
.ya7{bottom:643.547600pt;}
.y66{bottom:645.845867pt;}
.y11{bottom:646.478000pt;}
.ya6{bottom:655.550267pt;}
.y15b{bottom:660.418533pt;}
.yde{bottom:660.514533pt;}
.y65{bottom:660.779200pt;}
.y137{bottom:665.359467pt;}
.ya5{bottom:670.483600pt;}
.y10{bottom:674.120133pt;}
.y64{bottom:675.712533pt;}
.y15a{bottom:679.090533pt;}
.ydd{bottom:679.181200pt;}
.ya4{bottom:685.416933pt;}
.y63{bottom:687.715200pt;}
.y159{bottom:697.762533pt;}
.ydc{bottom:697.847867pt;}
.ya3{bottom:700.350267pt;}
.y62{bottom:702.648533pt;}
.ya2{bottom:712.352933pt;}
.y158{bottom:716.434533pt;}
.ydb{bottom:716.514533pt;}
.y61{bottom:717.581867pt;}
.y136{bottom:721.359333pt;}
.ya1{bottom:727.286267pt;}
.y60{bottom:729.584533pt;}
.y157{bottom:735.106533pt;}
.yda{bottom:735.181200pt;}
.ya0{bottom:742.219600pt;}
.y5f{bottom:744.517867pt;}
.ya{bottom:744.592800pt;}
.y156{bottom:753.778533pt;}
.yd9{bottom:753.847867pt;}
.y9f{bottom:754.222267pt;}
.y5e{bottom:759.451200pt;}
.y9{bottom:760.592800pt;}
.y9e{bottom:769.155600pt;}
.y155{bottom:772.450533pt;}
.yd8{bottom:772.514533pt;}
.y5d{bottom:774.384533pt;}
.y8{bottom:776.592800pt;}
.y135{bottom:777.721867pt;}
.y9d{bottom:784.088933pt;}
.y5c{bottom:786.387200pt;}
.y154{bottom:791.122533pt;}
.yfc{bottom:791.181200pt;}
.y7{bottom:792.592800pt;}
.y9c{bottom:799.022267pt;}
.y5b{bottom:801.320533pt;}
.yd7{bottom:803.947600pt;}
.y153{bottom:809.794533pt;}
.yf9{bottom:809.847867pt;}
.y5a{bottom:813.323200pt;}
.y9b{bottom:813.955600pt;}
.y6{bottom:823.710933pt;}
.y59{bottom:828.256533pt;}
.y152{bottom:828.466533pt;}
.yf8{bottom:828.514533pt;}
.y9a{bottom:828.888933pt;}
.y5{bottom:841.310933pt;}
.y57{bottom:843.199200pt;}
.y99{bottom:843.822267pt;}
.y151{bottom:847.138533pt;}
.y49{bottom:847.181067pt;}
.yd6{bottom:847.181200pt;}
.y56{bottom:855.201867pt;}
.y98{bottom:858.755600pt;}
.y150{bottom:865.810533pt;}
.y48{bottom:865.847733pt;}
.yd5{bottom:865.847867pt;}
.y58{bottom:867.195200pt;}
.y55{bottom:867.204533pt;}
.y97{bottom:870.758267pt;}
.y4{bottom:874.034267pt;}
.y53{bottom:882.147200pt;}
.y14f{bottom:884.482533pt;}
.y47{bottom:884.514400pt;}
.yd4{bottom:884.514533pt;}
.y96{bottom:885.691600pt;}
.y52{bottom:894.149867pt;}
.y95{bottom:900.624933pt;}
.y14e{bottom:903.154533pt;}
.y46{bottom:903.181067pt;}
.yd3{bottom:903.181200pt;}
.y3{bottom:903.364933pt;}
.y54{bottom:906.143200pt;}
.y51{bottom:906.152533pt;}
.y94{bottom:915.558267pt;}
.y50{bottom:921.085867pt;}
.y14d{bottom:921.826533pt;}
.y45{bottom:921.847733pt;}
.yd2{bottom:921.847867pt;}
.y93{bottom:927.560933pt;}
.y2{bottom:932.695600pt;}
.y4f{bottom:936.019200pt;}
.y14c{bottom:940.498533pt;}
.y44{bottom:940.514400pt;}
.yd1{bottom:940.514533pt;}
.y92{bottom:942.494267pt;}
.y4e{bottom:951.223200pt;}
.y91{bottom:957.427600pt;}
.y14b{bottom:959.170533pt;}
.y43{bottom:959.181067pt;}
.yd0{bottom:959.181200pt;}
.y90{bottom:972.360933pt;}
.y4d{bottom:977.314133pt;}
.y14a{bottom:977.842533pt;}
.y42{bottom:977.847733pt;}
.ycf{bottom:977.847867pt;}
.yf{bottom:986.502667pt;}
.y8f{bottom:987.294267pt;}
.y4c{bottom:994.918133pt;}
.y41{bottom:996.514400pt;}
.yce{bottom:996.514533pt;}
.y8e{bottom:1002.498267pt;}
.y3d{bottom:1030.390667pt;}
.y3c{bottom:1047.724000pt;}
.y40{bottom:1047.726267pt;}
.h11{height:29.731771pt;}
.h7{height:30.618750pt;}
.h6{height:30.806250pt;}
.h12{height:33.687500pt;}
.h10{height:34.020833pt;}
.h2{height:34.229167pt;}
.h5{height:34.250000pt;}
.h8{height:38.226562pt;}
.hf{height:38.273438pt;}
.he{height:38.507812pt;}
.h15{height:39.000000pt;}
.h9{height:40.546875pt;}
.ha{height:43.312500pt;}
.hd{height:43.333333pt;}
.h16{height:43.333833pt;}
.h13{height:44.601562pt;}
.hc{height:48.125000pt;}
.hb{height:48.656250pt;}
.h4{height:52.937500pt;}
.h14{height:63.369104pt;}
.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;}
.xa{left:95.174800pt;}
.xc{left:96.253733pt;}
.xe{left:99.769067pt;}
.xd{left:101.253067pt;}
.x5{left:106.559067pt;}
.x6{left:108.473333pt;}
.x7{left:110.313733pt;}
.x28{left:118.925333pt;}
.x23{left:126.266400pt;}
.x34{left:197.390667pt;}
.x29{left:210.018667pt;}
.x2a{left:221.106667pt;}
.x35{left:225.736000pt;}
.x2f{left:228.274667pt;}
.x2e{left:235.704000pt;}
.x4{left:266.834667pt;}
.xb{left:281.954667pt;}
.x30{left:320.628000pt;}
.x36{left:322.662667pt;}
.x3{left:352.045067pt;}
.x1f{left:359.515733pt;}
.x12{left:360.421067pt;}
.x25{left:364.649067pt;}
.xf{left:367.999733pt;}
.x37{left:370.038667pt;}
.x31{left:372.810667pt;}
.x24{left:376.483733pt;}
.x27{left:413.275733pt;}
.x21{left:425.371733pt;}
.x13{left:449.265067pt;}
.x1b{left:452.401067pt;}
.x15{left:454.454400pt;}
.x17{left:460.306400pt;}
.x32{left:464.585333pt;}
.x19{left:467.362400pt;}
.x20{left:469.266400pt;}
.x1d{left:481.101067pt;}
.x22{left:489.911733pt;}
.x26{left:491.311733pt;}
.x1c{left:493.990400pt;}
.x10{left:502.381067pt;}
.x1e{left:503.641067pt;}
.x2b{left:506.473333pt;}
.x9{left:576.810133pt;}
.x2c{left:599.582667pt;}
.x8{left:605.834133pt;}
.x39{left:611.734667pt;}
.x3a{left:617.390667pt;}
.x33{left:640.238667pt;}
.x2d{left:642.534667pt;}
.x38{left:647.826667pt;}
.x14{left:680.255733pt;}
.x16{left:682.346400pt;}
.x11{left:684.959733pt;}
.x18{left:689.654400pt;}
.x1a{left:696.971733pt;}
.x1{left:717.405733pt;}
}




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