
    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_35efe2991bf09532d510f094.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_a7d71af46145c36df668c4ae.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.126000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_c60f55dfb7e6fcb7e4ba2882.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_3dc9e372cc7cac55e34c87bd.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.223000;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_9057d5535988c53c33115543.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_3fa7013f4024b56f2761dc47.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.222000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_793da0ae0ac1a4b284f4d546.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.239000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_ec95ec464fa4c72945d5b02a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.146000;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_da45c7c55f741c179a4079c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8457d8b21a53692eb93e5ca5.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_e1f81585f9f6e6cd8db6fce8.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.065581;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1030701f0461262fc10511b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.328000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_a668e17640d4bb82c8e87ad3.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.144000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_92c081c44c27fd9afa9e192e.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.868000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_051bfc18302ffab61db30179.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_480d13876d630f437ccf77c2.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722656;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-19.200073px;}
.v2{vertical-align:-1.776000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls7{letter-spacing:-3.648000px;}
.ls3{letter-spacing:-1.680000px;}
.ls4{letter-spacing:-1.536000px;}
.ls5{letter-spacing:-0.840000px;}
.ls8{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.420000px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.672000px;}
.ls2{letter-spacing:0.840000px;}
.ls0{letter-spacing:3.360000px;}
.ls6{letter-spacing:128.592000px;}
.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;}
}
.wsda{word-spacing:-91.728000px;}
.ws5b{word-spacing:-15.000000px;}
.ws105{word-spacing:-14.400000px;}
.ws1c{word-spacing:-13.332000px;}
.ws5c{word-spacing:-13.320000px;}
.ws2{word-spacing:-13.296000px;}
.ws136{word-spacing:-12.672000px;}
.ws3{word-spacing:-12.420000px;}
.ws5{word-spacing:-12.120000px;}
.ws75{word-spacing:-12.000000px;}
.ws6{word-spacing:-11.520000px;}
.ws41{word-spacing:-10.500000px;}
.wscd{word-spacing:-10.464000px;}
.ws1{word-spacing:-9.408000px;}
.ws10b{word-spacing:-9.216000px;}
.ws4{word-spacing:-8.694000px;}
.ws175{word-spacing:-8.400000px;}
.ws7b{word-spacing:-6.000000px;}
.ws1d{word-spacing:-1.890000px;}
.ws54{word-spacing:-1.320000px;}
.wsbd{word-spacing:-1.260000px;}
.wsff{word-spacing:-1.020000px;}
.wsfb{word-spacing:-0.900000px;}
.ws22{word-spacing:-0.840000px;}
.ws100{word-spacing:-0.780000px;}
.ws128{word-spacing:-0.768000px;}
.wsb5{word-spacing:-0.720000px;}
.ws13e{word-spacing:-0.672000px;}
.ws35{word-spacing:-0.660000px;}
.ws15a{word-spacing:-0.624000px;}
.ws10{word-spacing:-0.600000px;}
.ws13d{word-spacing:-0.576000px;}
.wsae{word-spacing:-0.540000px;}
.ws5d{word-spacing:-0.480000px;}
.wsef{word-spacing:-0.420000px;}
.wsa2{word-spacing:-0.360000px;}
.ws12f{word-spacing:-0.336000px;}
.ws14b{word-spacing:-0.288000px;}
.wsee{word-spacing:-0.240000px;}
.ws12d{word-spacing:-0.192000px;}
.ws97{word-spacing:-0.180000px;}
.ws11e{word-spacing:-0.144000px;}
.wsaf{word-spacing:-0.120000px;}
.ws123{word-spacing:-0.096000px;}
.ws6c{word-spacing:-0.060000px;}
.ws0{word-spacing:-0.048000px;}
.ws7{word-spacing:0.000000px;}
.ws146{word-spacing:0.048000px;}
.ws99{word-spacing:0.060000px;}
.ws147{word-spacing:0.096000px;}
.ws9a{word-spacing:0.120000px;}
.ws142{word-spacing:0.144000px;}
.ws21{word-spacing:0.180000px;}
.ws14e{word-spacing:0.192000px;}
.ws6d{word-spacing:0.240000px;}
.ws153{word-spacing:0.288000px;}
.ws98{word-spacing:0.300000px;}
.wsc9{word-spacing:0.336000px;}
.ws9b{word-spacing:0.360000px;}
.ws117{word-spacing:0.384000px;}
.ws11{word-spacing:0.420000px;}
.ws144{word-spacing:0.432000px;}
.ws40{word-spacing:0.480000px;}
.ws14a{word-spacing:0.528000px;}
.ws95{word-spacing:0.540000px;}
.ws13a{word-spacing:0.576000px;}
.ws18{word-spacing:0.600000px;}
.ws118{word-spacing:0.624000px;}
.ws6b{word-spacing:0.660000px;}
.wse8{word-spacing:0.672000px;}
.wse1{word-spacing:0.720000px;}
.ws132{word-spacing:0.768000px;}
.ws28{word-spacing:0.780000px;}
.ws16e{word-spacing:0.816000px;}
.ws25{word-spacing:0.840000px;}
.ws131{word-spacing:0.864000px;}
.ws1e{word-spacing:0.900000px;}
.wse3{word-spacing:0.912000px;}
.ws68{word-spacing:0.960000px;}
.ws119{word-spacing:1.008000px;}
.wse{word-spacing:1.020000px;}
.ws13f{word-spacing:1.056000px;}
.ws96{word-spacing:1.080000px;}
.ws12b{word-spacing:1.104000px;}
.ws107{word-spacing:1.140000px;}
.ws152{word-spacing:1.152000px;}
.wsf0{word-spacing:1.200000px;}
.wsf4{word-spacing:1.248000px;}
.ws51{word-spacing:1.260000px;}
.ws15b{word-spacing:1.296000px;}
.wsb4{word-spacing:1.320000px;}
.ws93{word-spacing:1.380000px;}
.ws10e{word-spacing:1.392000px;}
.ws13b{word-spacing:1.440000px;}
.wsc8{word-spacing:1.488000px;}
.ws63{word-spacing:1.500000px;}
.wse6{word-spacing:1.536000px;}
.ws2a{word-spacing:1.560000px;}
.ws122{word-spacing:1.584000px;}
.ws55{word-spacing:1.620000px;}
.ws139{word-spacing:1.632000px;}
.ws4b{word-spacing:1.680000px;}
.ws173{word-spacing:1.683000px;}
.ws140{word-spacing:1.728000px;}
.ws10c{word-spacing:1.740000px;}
.wscc{word-spacing:1.776000px;}
.wsb1{word-spacing:1.800000px;}
.wsca{word-spacing:1.824000px;}
.ws56{word-spacing:1.860000px;}
.wse4{word-spacing:1.872000px;}
.ws8{word-spacing:1.920000px;}
.ws160{word-spacing:1.968000px;}
.ws1a{word-spacing:1.980000px;}
.ws101{word-spacing:2.040000px;}
.wsc7{word-spacing:2.064000px;}
.ws37{word-spacing:2.100000px;}
.ws164{word-spacing:2.112000px;}
.ws174{word-spacing:2.142000px;}
.wsbf{word-spacing:2.160000px;}
.ws158{word-spacing:2.208000px;}
.ws9c{word-spacing:2.220000px;}
.wsf1{word-spacing:2.280000px;}
.ws135{word-spacing:2.304000px;}
.ws36{word-spacing:2.340000px;}
.ws5a{word-spacing:2.352000px;}
.wsde{word-spacing:2.400000px;}
.wse7{word-spacing:2.448000px;}
.wsc2{word-spacing:2.460000px;}
.ws32{word-spacing:2.520000px;}
.ws86{word-spacing:2.580000px;}
.ws15f{word-spacing:2.592000px;}
.ws7c{word-spacing:2.640000px;}
.wscb{word-spacing:2.688000px;}
.wsd{word-spacing:2.700000px;}
.ws16b{word-spacing:2.736000px;}
.ws61{word-spacing:2.760000px;}
.ws12a{word-spacing:2.784000px;}
.ws9d{word-spacing:2.820000px;}
.wse0{word-spacing:2.832000px;}
.ws4d{word-spacing:2.880000px;}
.ws14d{word-spacing:2.928000px;}
.ws26{word-spacing:2.940000px;}
.wsad{word-spacing:3.000000px;}
.ws113{word-spacing:3.024000px;}
.ws9f{word-spacing:3.060000px;}
.ws149{word-spacing:3.072000px;}
.ws1b{word-spacing:3.120000px;}
.ws145{word-spacing:3.168000px;}
.ws47{word-spacing:3.180000px;}
.ws161{word-spacing:3.216000px;}
.ws94{word-spacing:3.240000px;}
.ws121{word-spacing:3.264000px;}
.wsf{word-spacing:3.300000px;}
.ws42{word-spacing:3.360000px;}
.ws169{word-spacing:3.408000px;}
.wsa7{word-spacing:3.420000px;}
.ws2b{word-spacing:3.480000px;}
.ws7d{word-spacing:3.540000px;}
.ws78{word-spacing:3.552000px;}
.wsbc{word-spacing:3.600000px;}
.ws4e{word-spacing:3.660000px;}
.ws11d{word-spacing:3.696000px;}
.ws29{word-spacing:3.720000px;}
.ws6e{word-spacing:3.780000px;}
.ws129{word-spacing:3.792000px;}
.ws65{word-spacing:3.840000px;}
.wse5{word-spacing:3.888000px;}
.ws80{word-spacing:3.900000px;}
.ws116{word-spacing:3.936000px;}
.wsa1{word-spacing:3.960000px;}
.ws4f{word-spacing:4.020000px;}
.ws120{word-spacing:4.032000px;}
.wse9{word-spacing:4.080000px;}
.wsc5{word-spacing:4.128000px;}
.ws8e{word-spacing:4.140000px;}
.ws5f{word-spacing:4.200000px;}
.ws115{word-spacing:4.224000px;}
.wsbb{word-spacing:4.260000px;}
.ws127{word-spacing:4.272000px;}
.ws43{word-spacing:4.320000px;}
.ws110{word-spacing:4.368000px;}
.ws64{word-spacing:4.380000px;}
.wse2{word-spacing:4.416000px;}
.ws58{word-spacing:4.440000px;}
.ws8b{word-spacing:4.500000px;}
.ws154{word-spacing:4.512000px;}
.ws33{word-spacing:4.560000px;}
.ws125{word-spacing:4.608000px;}
.wsb8{word-spacing:4.620000px;}
.ws148{word-spacing:4.656000px;}
.ws34{word-spacing:4.680000px;}
.wsc6{word-spacing:4.704000px;}
.wsac{word-spacing:4.740000px;}
.ws14c{word-spacing:4.752000px;}
.wsc3{word-spacing:4.800000px;}
.ws16c{word-spacing:4.848000px;}
.ws81{word-spacing:4.860000px;}
.ws48{word-spacing:4.920000px;}
.ws12c{word-spacing:4.944000px;}
.ws4a{word-spacing:4.980000px;}
.ws44{word-spacing:5.040000px;}
.wsdf{word-spacing:5.088000px;}
.wsa5{word-spacing:5.100000px;}
.ws16a{word-spacing:5.136000px;}
.ws91{word-spacing:5.160000px;}
.ws114{word-spacing:5.184000px;}
.ws50{word-spacing:5.220000px;}
.ws16f{word-spacing:5.232000px;}
.ws84{word-spacing:5.280000px;}
.ws126{word-spacing:5.328000px;}
.ws92{word-spacing:5.340000px;}
.ws90{word-spacing:5.400000px;}
.wsf6{word-spacing:5.460000px;}
.ws9e{word-spacing:5.520000px;}
.ws163{word-spacing:5.568000px;}
.ws31{word-spacing:5.580000px;}
.ws168{word-spacing:5.616000px;}
.ws5e{word-spacing:5.640000px;}
.wsfe{word-spacing:5.700000px;}
.ws15e{word-spacing:5.712000px;}
.ws12{word-spacing:5.760000px;}
.ws138{word-spacing:5.808000px;}
.ws83{word-spacing:5.820000px;}
.ws112{word-spacing:5.856000px;}
.ws57{word-spacing:5.880000px;}
.ws137{word-spacing:5.904000px;}
.ws30{word-spacing:5.940000px;}
.ws53{word-spacing:6.000000px;}
.wsa{word-spacing:6.060000px;}
.wsea{word-spacing:6.120000px;}
.wsab{word-spacing:6.180000px;}
.ws16{word-spacing:6.240000px;}
.ws14f{word-spacing:6.288000px;}
.ws102{word-spacing:6.300000px;}
.ws171{word-spacing:6.336000px;}
.ws19{word-spacing:6.360000px;}
.wsc1{word-spacing:6.420000px;}
.wsbe{word-spacing:6.480000px;}
.ws67{word-spacing:6.540000px;}
.ws12e{word-spacing:6.576000px;}
.ws49{word-spacing:6.600000px;}
.ws14{word-spacing:6.660000px;}
.ws16d{word-spacing:6.672000px;}
.ws3e{word-spacing:6.720000px;}
.ws11a{word-spacing:6.768000px;}
.wsdd{word-spacing:6.780000px;}
.ws15c{word-spacing:6.816000px;}
.ws4c{word-spacing:6.840000px;}
.ws13{word-spacing:6.900000px;}
.ws111{word-spacing:6.912000px;}
.ws141{word-spacing:6.960000px;}
.ws157{word-spacing:7.008000px;}
.ws3f{word-spacing:7.020000px;}
.ws166{word-spacing:7.056000px;}
.ws23{word-spacing:7.080000px;}
.ws167{word-spacing:7.104000px;}
.wsc4{word-spacing:7.140000px;}
.ws159{word-spacing:7.152000px;}
.ws39{word-spacing:7.200000px;}
.ws133{word-spacing:7.248000px;}
.wsba{word-spacing:7.260000px;}
.ws15d{word-spacing:7.296000px;}
.ws162{word-spacing:7.392000px;}
.ws38{word-spacing:7.440000px;}
.wsa8{word-spacing:7.500000px;}
.ws69{word-spacing:7.560000px;}
.ws130{word-spacing:7.584000px;}
.ws1f{word-spacing:7.620000px;}
.ws134{word-spacing:7.632000px;}
.wsa4{word-spacing:7.680000px;}
.ws66{word-spacing:7.740000px;}
.ws10f{word-spacing:7.776000px;}
.wsaa{word-spacing:7.800000px;}
.wsfa{word-spacing:7.860000px;}
.ws11b{word-spacing:7.920000px;}
.ws156{word-spacing:7.968000px;}
.wsa3{word-spacing:7.980000px;}
.ws60{word-spacing:8.040000px;}
.ws11c{word-spacing:8.064000px;}
.ws15{word-spacing:8.100000px;}
.ws104{word-spacing:8.160000px;}
.ws82{word-spacing:8.220000px;}
.ws27{word-spacing:8.280000px;}
.wsb{word-spacing:8.340000px;}
.wsc{word-spacing:8.400000px;}
.ws8c{word-spacing:8.460000px;}
.ws3c{word-spacing:8.520000px;}
.ws11f{word-spacing:8.544000px;}
.ws2e{word-spacing:8.580000px;}
.ws6f{word-spacing:8.640000px;}
.ws17{word-spacing:8.700000px;}
.ws59{word-spacing:8.760000px;}
.wsc0{word-spacing:8.820000px;}
.ws165{word-spacing:8.832000px;}
.wsec{word-spacing:8.880000px;}
.ws155{word-spacing:8.928000px;}
.ws2f{word-spacing:8.940000px;}
.wseb{word-spacing:9.000000px;}
.ws109{word-spacing:9.120000px;}
.ws24{word-spacing:9.240000px;}
.wsdc{word-spacing:9.300000px;}
.wsb9{word-spacing:9.360000px;}
.wsb0{word-spacing:9.420000px;}
.wsb6{word-spacing:9.480000px;}
.ws13c{word-spacing:9.504000px;}
.wsa0{word-spacing:9.540000px;}
.ws8a{word-spacing:9.600000px;}
.ws9{word-spacing:9.660000px;}
.wsa6{word-spacing:9.780000px;}
.ws8d{word-spacing:9.840000px;}
.wsfd{word-spacing:9.960000px;}
.wsa9{word-spacing:10.020000px;}
.ws45{word-spacing:10.260000px;}
.ws20{word-spacing:10.380000px;}
.wsed{word-spacing:10.620000px;}
.ws150{word-spacing:10.656000px;}
.ws8f{word-spacing:10.680000px;}
.wsf8{word-spacing:10.800000px;}
.ws7e{word-spacing:10.920000px;}
.wsf9{word-spacing:11.040000px;}
.wsf5{word-spacing:11.220000px;}
.ws62{word-spacing:11.280000px;}
.ws3b{word-spacing:11.340000px;}
.ws2d{word-spacing:11.400000px;}
.ws88{word-spacing:11.520000px;}
.ws170{word-spacing:11.712000px;}
.ws3d{word-spacing:11.880000px;}
.ws143{word-spacing:11.952000px;}
.ws124{word-spacing:12.096000px;}
.ws108{word-spacing:12.300000px;}
.ws3a{word-spacing:12.540000px;}
.ws87{word-spacing:12.960000px;}
.ws10a{word-spacing:13.020000px;}
.wsdb{word-spacing:13.200000px;}
.wsf2{word-spacing:13.500000px;}
.ws89{word-spacing:13.920000px;}
.ws85{word-spacing:13.980000px;}
.ws7f{word-spacing:14.100000px;}
.ws6a{word-spacing:14.280000px;}
.ws52{word-spacing:14.700000px;}
.ws151{word-spacing:14.784000px;}
.ws103{word-spacing:15.240000px;}
.ws10d{word-spacing:15.540000px;}
.wsf7{word-spacing:15.780000px;}
.ws172{word-spacing:17.184000px;}
.ws46{word-spacing:18.420000px;}
.ws106{word-spacing:20.400000px;}
.wsfc{word-spacing:22.860000px;}
.ws2c{word-spacing:26.220000px;}
.wsf3{word-spacing:66.000000px;}
.ws176{word-spacing:73.056000px;}
.wsce{word-spacing:116.592000px;}
.ws76{word-spacing:124.185600px;}
.wsd7{word-spacing:128.544000px;}
.ws72{word-spacing:137.567991px;}
.ws74{word-spacing:148.223991px;}
.wsd1{word-spacing:153.504000px;}
.ws71{word-spacing:159.407991px;}
.ws73{word-spacing:172.223991px;}
.ws70{word-spacing:196.367991px;}
.wsb7{word-spacing:204.480000px;}
.wsb2{word-spacing:214.704000px;}
.wsd0{word-spacing:269.183990px;}
.wsb3{word-spacing:274.704000px;}
.ws79{word-spacing:368.400000px;}
.ws77{word-spacing:392.400000px;}
.wsd4{word-spacing:458.687988px;}
.wsd6{word-spacing:548.543985px;}
.wsd9{word-spacing:557.327985px;}
.wsd8{word-spacing:586.703985px;}
.ws7a{word-spacing:606.240000px;}
.wsd2{word-spacing:611.279983px;}
.wscf{word-spacing:645.984000px;}
.wsd3{word-spacing:689.183976px;}
.wsd5{word-spacing:756.575976px;}
._8a{margin-left:-128.592000px;}
._11{margin-left:-18.732000px;}
._b0{margin-left:-15.600000px;}
._af{margin-left:-5.226000px;}
._4{margin-left:-3.966000px;}
._3{margin-left:-2.636400px;}
._0{margin-left:-1.632000px;}
._1{width:1.072200px;}
._b{width:2.131800px;}
._c{width:3.180000px;}
._12{width:4.428000px;}
._e{width:5.488800px;}
._7{width:6.516000px;}
._8{width:7.824000px;}
._9{width:8.892000px;}
._ae{width:9.930000px;}
._a{width:11.016000px;}
._d{width:12.840000px;}
._13{width:14.784000px;}
._35{width:17.804400px;}
._b1{width:22.320000px;}
._10{width:38.976000px;}
._2{width:40.554591px;}
._43{width:54.096000px;}
._b3{width:56.255991px;}
._50{width:59.167800px;}
._44{width:67.440000px;}
._b2{width:73.056000px;}
._47{width:76.608000px;}
._4a{width:78.096000px;}
._85{width:79.968000px;}
._82{width:81.503985px;}
._95{width:82.512000px;}
._46{width:90.096000px;}
._49{width:100.608000px;}
._4f{width:102.096000px;}
._6f{width:104.592000px;}
._6{width:105.840000px;}
._6e{width:107.280000px;}
._4c{width:114.096000px;}
._8c{width:120.911990px;}
._8d{width:126.144000px;}
._42{width:127.440000px;}
._6d{width:128.592000px;}
._8e{width:130.656000px;}
._33{width:136.223991px;}
._4e{width:138.096000px;}
._84{width:141.931800px;}
._17{width:149.567991px;}
._89{width:153.019790px;}
._3a{width:158.383800px;}
._18{width:160.219800px;}
._36{width:161.419800px;}
._72{width:165.504000px;}
._97{width:176.863793px;}
._1f{width:184.223991px;}
._32{width:196.511991px;}
._aa{width:200.975990px;}
._56{width:204.723600px;}
._19{width:208.367991px;}
._16{width:209.567991px;}
._26{width:215.088000px;}
._41{width:217.676400px;}
._1b{width:220.223991px;}
._2c{width:221.516400px;}
._58{width:228.528000px;}
._5c{width:239.136000px;}
._1a{width:243.120000px;}
._27{width:244.226391px;}
._3f{width:249.936000px;}
._38{width:252.432000px;}
._21{width:254.352000px;}
._55{width:265.872000px;}
._90{width:267.023987px;}
._a4{width:268.559993px;}
._1d{width:271.056000px;}
._37{width:276.432000px;}
._71{width:281.183990px;}
._29{width:286.080000px;}
._3c{width:287.280000px;}
._9a{width:291.023987px;}
._9b{width:294.511793px;}
._67{width:300.480000px;}
._ab{width:302.448000px;}
._a9{width:307.824000px;}
._a6{width:315.023987px;}
._78{width:318.095993px;}
._28{width:325.920000px;}
._68{width:334.303800px;}
._31{width:336.559800px;}
._ac{width:339.023987px;}
._54{width:351.740400px;}
._59{width:356.496000px;}
._96{width:372.912000px;}
._9f{width:375.167993px;}
._2e{width:381.744000px;}
._86{width:386.687976px;}
._1c{width:392.400000px;}
._4b{width:397.584000px;}
._3e{width:399.072000px;}
._2f{width:403.663800px;}
._3b{width:405.136200px;}
._a2{width:415.199993px;}
._6a{width:420.384000px;}
._a1{width:421.584000px;}
._30{width:428.400000px;}
._1e{width:430.992000px;}
._99{width:432.527993px;}
._7d{width:433.775986px;}
._9e{width:436.399800px;}
._2a{width:437.760000px;}
._34{width:440.352000px;}
._48{width:445.584000px;}
._4d{width:448.704000px;}
._6c{width:450.671985px;}
._2b{width:452.397600px;}
._2d{width:453.744000px;}
._5e{width:455.407800px;}
._3d{width:464.400000px;}
._94{width:466.799984px;}
._76{width:470.687988px;}
._45{width:472.704000px;}
._53{width:486.480000px;}
._a0{width:490.372193px;}
._9d{width:491.424587px;}
._93{width:494.204393px;}
._24{width:496.272000px;}
._92{width:513.216000px;}
._a3{width:514.528190px;}
._a5{width:517.871993px;}
._20{width:528.384000px;}
._22{width:539.040000px;}
._25{width:541.776000px;}
._52{width:546.384000px;}
._63{width:549.744000px;}
._23{width:556.704000px;}
._5f{width:560.448000px;}
._a8{width:565.871993px;}
._5b{width:567.340200px;}
._66{width:571.344000px;}
._7f{width:572.640000px;}
._62{width:584.352000px;}
._51{width:585.504000px;}
._69{width:590.016000px;}
._5d{width:595.056000px;}
._98{width:596.064000px;}
._64{width:601.728000px;}
._15{width:610.992000px;}
._5a{width:615.340200px;}
._39{width:616.416000px;}
._80{width:623.279983px;}
._8f{width:631.103993px;}
._91{width:633.023987px;}
._40{width:644.448000px;}
._65{width:647.040000px;}
._a7{width:657.023987px;}
._f{width:667.247971px;}
._ad{width:681.023987px;}
._7c{width:687.312000px;}
._9c{width:705.023987px;}
._87{width:711.312000px;}
._73{width:721.920000px;}
._6b{width:724.272000px;}
._74{width:738.912000px;}
._61{width:796.608000px;}
._60{width:802.896000px;}
._77{width:837.215976px;}
._79{width:864.384000px;}
._5{width:865.584000px;}
._8b{width:885.960600px;}
._57{width:907.008000px;}
._7b{width:928.415955px;}
._7e{width:1032.031793px;}
._14{width:1036.993818px;}
._70{width:1081.357793px;}
._75{width:1107.695993px;}
._7a{width:1163.663993px;}
._81{width:1272.559800px;}
._83{width:1397.567933px;}
._88{width:1621.439933px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs6{font-size:51.000000px;}
.fs3{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fs2{font-size:78.000000px;}
.fs1{font-size:90.000000px;}
.y0{bottom:0.000000px;}
.y27{bottom:49.625399px;}
.y4{bottom:49.625999px;}
.y1{bottom:50.758198px;}
.y15c{bottom:89.999973px;}
.y80{bottom:90.000000px;}
.yb8{bottom:90.005127px;}
.ya0{bottom:90.005264px;}
.y15f{bottom:90.011958px;}
.y141{bottom:90.012000px;}
.y162{bottom:90.023943px;}
.y146{bottom:90.023985px;}
.yb9{bottom:90.053080px;}
.ya1{bottom:90.053218px;}
.yba{bottom:90.065059px;}
.ya2{bottom:90.065188px;}
.y167{bottom:90.071876px;}
.y14a{bottom:90.071925px;}
.yc7{bottom:90.076827px;}
.ybb{bottom:90.077037px;}
.y16a{bottom:90.083861px;}
.y14b{bottom:90.083896px;}
.yc6{bottom:90.088840px;}
.ybc{bottom:90.089015px;}
.y14c{bottom:90.095868px;}
.yc5{bottom:90.100853px;}
.ybd{bottom:90.100993px;}
.y154{bottom:90.107819px;}
.y14e{bottom:90.107846px;}
.yc4{bottom:90.112866px;}
.ybe{bottom:90.112971px;}
.ya3{bottom:90.113141px;}
.yc3{bottom:90.124880px;}
.ybf{bottom:90.124950px;}
.yc2{bottom:90.136893px;}
.yc0{bottom:90.136928px;}
.yc1{bottom:90.148906px;}
.y159{bottom:90.155752px;}
.ya4{bottom:90.161095px;}
.ya5{bottom:90.209048px;}
.ya6{bottom:90.257002px;}
.ya7{bottom:90.268972px;}
.ya8{bottom:90.316925px;}
.ya9{bottom:90.328896px;}
.yaa{bottom:90.376849px;}
.yab{bottom:90.424803px;}
.yac{bottom:90.472756px;}
.yad{bottom:90.484726px;}
.yaf{bottom:90.496692px;}
.yae{bottom:90.496696px;}
.yb0{bottom:90.508662px;}
.yb1{bottom:90.520632px;}
.yb2{bottom:90.532602px;}
.yb4{bottom:90.544568px;}
.yb3{bottom:90.544573px;}
.yb5{bottom:90.592522px;}
.yb6{bottom:90.640475px;}
.y9e{bottom:90.797516px;}
.ycd{bottom:90.797550px;}
.y7f{bottom:90.797562px;}
.y20b{bottom:91.135084px;}
.y13b{bottom:91.200005px;}
.y198{bottom:94.212005px;}
.y163{bottom:99.023943px;}
.y155{bottom:99.107819px;}
.y107{bottom:99.720917px;}
.ye4{bottom:100.182427px;}
.y20a{bottom:105.379084px;}
.y1d1{bottom:105.380691px;}
.y117{bottom:105.937042px;}
.y54{bottom:107.672516px;}
.y197{bottom:108.456005px;}
.y9d{bottom:108.797516px;}
.ycc{bottom:108.797550px;}
.y7e{bottom:108.797562px;}
.y13a{bottom:109.200005px;}
.y106{bottom:117.948917px;}
.ye3{bottom:118.410427px;}
.y209{bottom:119.623084px;}
.y1d0{bottom:119.624691px;}
.y196{bottom:122.700005px;}
.y116{bottom:123.937042px;}
.y53{bottom:125.672516px;}
.y9c{bottom:126.797516px;}
.y7d{bottom:126.797562px;}
.y139{bottom:127.200005px;}
.y208{bottom:133.867084px;}
.y1cf{bottom:133.868691px;}
.y105{bottom:136.092917px;}
.ye2{bottom:136.554427px;}
.y115{bottom:141.937042px;}
.y52{bottom:143.672516px;}
.y9b{bottom:144.797516px;}
.ycb{bottom:144.797550px;}
.y7c{bottom:144.797562px;}
.y138{bottom:145.200005px;}
.y207{bottom:148.111084px;}
.y1ce{bottom:148.112691px;}
.y104{bottom:154.236917px;}
.ye1{bottom:154.698427px;}
.y195{bottom:155.250000px;}
.y114{bottom:159.937042px;}
.y51{bottom:161.672516px;}
.y206{bottom:162.355084px;}
.y1cd{bottom:162.356691px;}
.y9a{bottom:162.797516px;}
.y7b{bottom:162.797562px;}
.y137{bottom:163.200005px;}
.y103{bottom:172.380917px;}
.ye0{bottom:172.842427px;}
.y26{bottom:175.817093px;}
.y205{bottom:176.599084px;}
.y1cc{bottom:176.600691px;}
.y113{bottom:177.937042px;}
.y50{bottom:179.672516px;}
.y99{bottom:180.797516px;}
.yca{bottom:180.797550px;}
.y7a{bottom:180.797562px;}
.y136{bottom:181.200005px;}
.y102{bottom:190.524917px;}
.y204{bottom:190.843084px;}
.y1cb{bottom:190.844691px;}
.ydf{bottom:190.986427px;}
.y25{bottom:193.817093px;}
.y112{bottom:195.937042px;}
.y4f{bottom:197.672516px;}
.y98{bottom:198.797516px;}
.y79{bottom:198.797562px;}
.y135{bottom:199.200005px;}
.y203{bottom:205.087084px;}
.y1ca{bottom:205.088691px;}
.y101{bottom:208.668917px;}
.yde{bottom:209.130427px;}
.y111{bottom:213.937042px;}
.y194{bottom:213.995516px;}
.y4e{bottom:215.672516px;}
.y97{bottom:216.797516px;}
.y78{bottom:216.797562px;}
.y134{bottom:217.200005px;}
.y202{bottom:219.331084px;}
.y1c9{bottom:219.332691px;}
.y100{bottom:226.812917px;}
.ydd{bottom:227.274427px;}
.y193{bottom:228.239516px;}
.y24{bottom:230.567093px;}
.y110{bottom:231.937042px;}
.y201{bottom:233.575084px;}
.y1c8{bottom:233.576691px;}
.y4d{bottom:233.672516px;}
.y96{bottom:234.797516px;}
.y77{bottom:234.797562px;}
.y133{bottom:235.200005px;}
.y192{bottom:242.483516px;}
.yff{bottom:244.956917px;}
.ydc{bottom:245.418427px;}
.y200{bottom:247.819084px;}
.y1c7{bottom:247.820691px;}
.y23{bottom:248.567093px;}
.y10f{bottom:249.937042px;}
.y4c{bottom:251.672516px;}
.y95{bottom:252.797516px;}
.y76{bottom:252.797562px;}
.y191{bottom:256.727516px;}
.y1ff{bottom:262.063084px;}
.y1c6{bottom:262.064691px;}
.yfe{bottom:263.100917px;}
.ydb{bottom:263.562427px;}
.y22{bottom:266.567093px;}
.y10e{bottom:267.937042px;}
.yb7{bottom:268.768639px;}
.y9f{bottom:268.768799px;}
.y4b{bottom:269.672516px;}
.y94{bottom:270.797516px;}
.y75{bottom:270.797562px;}
.y190{bottom:270.971516px;}
.y132{bottom:271.200005px;}
.y1fe{bottom:276.307084px;}
.y1c5{bottom:276.308691px;}
.yfd{bottom:281.244917px;}
.yda{bottom:281.706427px;}
.y21{bottom:284.567093px;}
.y18f{bottom:285.215516px;}
.y140{bottom:285.936008px;}
.y10d{bottom:285.937042px;}
.y15d{bottom:285.947980px;}
.y15e{bottom:285.947987px;}
.y160{bottom:285.959965px;}
.y161{bottom:285.959972px;}
.y142{bottom:285.960007px;}
.y143{bottom:285.960014px;}
.y164{bottom:285.971943px;}
.y147{bottom:285.971992px;}
.y165{bottom:285.983914px;}
.y148{bottom:285.983962px;}
.y166{bottom:285.995884px;}
.y149{bottom:285.995933px;}
.y168{bottom:286.019883px;}
.y169{bottom:286.019889px;}
.y16b{bottom:286.031868px;}
.y16c{bottom:286.031874px;}
.y14d{bottom:286.043874px;}
.y156{bottom:286.055819px;}
.y157{bottom:286.067790px;}
.y158{bottom:286.079760px;}
.y15a{bottom:286.103759px;}
.y15b{bottom:286.103765px;}
.y4a{bottom:287.672516px;}
.y20d{bottom:288.704553px;}
.y93{bottom:288.797516px;}
.y74{bottom:288.797562px;}
.y1fd{bottom:290.551084px;}
.y1c4{bottom:290.552691px;}
.y144{bottom:294.960014px;}
.yfc{bottom:299.388917px;}
.y18e{bottom:299.459516px;}
.yd9{bottom:299.850427px;}
.y20{bottom:302.567093px;}
.y20c{bottom:302.959053px;}
.y10c{bottom:303.937042px;}
.y1fc{bottom:304.795084px;}
.y1c3{bottom:304.796691px;}
.y49{bottom:305.672516px;}
.y92{bottom:306.797516px;}
.y73{bottom:306.797562px;}
.y18d{bottom:313.703516px;}
.yfb{bottom:317.532917px;}
.yd8{bottom:317.994427px;}
.y1fb{bottom:319.039084px;}
.y1c2{bottom:319.040691px;}
.y223{bottom:319.213806px;}
.y1f{bottom:320.567093px;}
.y10b{bottom:321.937042px;}
.y48{bottom:323.672516px;}
.y91{bottom:324.797516px;}
.y72{bottom:324.797562px;}
.y18c{bottom:327.947516px;}
.y1fa{bottom:333.283084px;}
.y1c1{bottom:333.284691px;}
.yfa{bottom:335.676917px;}
.yd7{bottom:336.138427px;}
.y1e{bottom:338.567093px;}
.y10a{bottom:339.937042px;}
.y222{bottom:341.011047px;}
.y47{bottom:341.672516px;}
.y90{bottom:342.797516px;}
.y71{bottom:342.797562px;}
.y1f9{bottom:347.527084px;}
.y1c0{bottom:347.528691px;}
.yf9{bottom:353.820917px;}
.yd6{bottom:354.282427px;}
.y1d{bottom:356.567093px;}
.y18b{bottom:357.203516px;}
.y109{bottom:357.937042px;}
.y221{bottom:358.014293px;}
.y46{bottom:359.672516px;}
.y8f{bottom:360.797516px;}
.y70{bottom:360.797562px;}
.y1f8{bottom:361.771084px;}
.y1bf{bottom:361.772691px;}
.y18a{bottom:371.447516px;}
.yf8{bottom:371.964917px;}
.yd5{bottom:372.426427px;}
.y1c{bottom:374.567093px;}
.y108{bottom:375.937042px;}
.y1f7{bottom:376.015084px;}
.y1be{bottom:376.016691px;}
.y220{bottom:377.058289px;}
.y45{bottom:377.672516px;}
.y8e{bottom:378.797516px;}
.y6f{bottom:378.797562px;}
.y189{bottom:385.691516px;}
.yf7{bottom:390.108917px;}
.y1f6{bottom:390.259084px;}
.y1bd{bottom:390.260691px;}
.yd4{bottom:390.570427px;}
.y1b{bottom:392.567093px;}
.y44{bottom:395.672516px;}
.y8d{bottom:396.797516px;}
.y6e{bottom:396.797562px;}
.y21f{bottom:398.855530px;}
.yd1{bottom:399.815562px;}
.y188{bottom:399.935516px;}
.y1f5{bottom:404.503084px;}
.y1bc{bottom:404.504691px;}
.yf6{bottom:408.252917px;}
.yd3{bottom:408.714427px;}
.y1a{bottom:410.567093px;}
.y43{bottom:413.672516px;}
.yd0{bottom:414.059562px;}
.y187{bottom:414.179516px;}
.y8c{bottom:414.797516px;}
.y6d{bottom:414.797562px;}
.y1f4{bottom:418.747084px;}
.y1bb{bottom:418.748691px;}
.y21e{bottom:420.652817px;}
.yf5{bottom:426.396917px;}
.ycf{bottom:428.303562px;}
.y186{bottom:428.423516px;}
.y19{bottom:428.567093px;}
.y42{bottom:431.672516px;}
.y8b{bottom:432.797516px;}
.y6c{bottom:432.797562px;}
.y1f3{bottom:432.991084px;}
.y1ba{bottom:432.992691px;}
.yd2{bottom:436.722427px;}
.y131{bottom:439.404734px;}
.y21d{bottom:442.450058px;}
.yce{bottom:442.547562px;}
.y185{bottom:442.667516px;}
.yf4{bottom:444.540917px;}
.y18{bottom:446.567093px;}
.y1f2{bottom:447.235084px;}
.y1b9{bottom:447.236691px;}
.y41{bottom:449.672516px;}
.y8a{bottom:450.797516px;}
.y6b{bottom:450.797562px;}
.y184{bottom:456.911516px;}
.y130{bottom:457.632734px;}
.y21c{bottom:459.453281px;}
.y1f1{bottom:461.479084px;}
.y1b8{bottom:461.480691px;}
.yf3{bottom:462.684917px;}
.y17{bottom:464.567093px;}
.y40{bottom:467.672516px;}
.y89{bottom:468.797516px;}
.y6a{bottom:468.797562px;}
.y183{bottom:471.155516px;}
.y1f0{bottom:475.723084px;}
.y1b7{bottom:475.724691px;}
.y12f{bottom:475.776734px;}
.y21b{bottom:478.497437px;}
.yf2{bottom:480.828917px;}
.y16{bottom:482.567093px;}
.y182{bottom:485.399516px;}
.y3f{bottom:485.672516px;}
.y88{bottom:486.797516px;}
.y69{bottom:486.797562px;}
.y1ef{bottom:489.967084px;}
.y1b6{bottom:489.968691px;}
.y12e{bottom:493.920734px;}
.y145{bottom:494.088012px;}
.y14f{bottom:494.171846px;}
.yf1{bottom:498.972917px;}
.y181{bottom:499.643516px;}
.y21a{bottom:500.294678px;}
.y15{bottom:500.567093px;}
.y3e{bottom:503.672516px;}
.y1ee{bottom:504.211084px;}
.y1b5{bottom:504.212691px;}
.y87{bottom:504.797516px;}
.y68{bottom:504.797562px;}
.y12d{bottom:512.064734px;}
.y180{bottom:513.887516px;}
.yf0{bottom:517.116917px;}
.y1ed{bottom:518.455084px;}
.y1b4{bottom:518.456691px;}
.y14{bottom:518.567093px;}
.y3d{bottom:521.672516px;}
.y219{bottom:522.091782px;}
.y86{bottom:522.797516px;}
.y67{bottom:522.797562px;}
.y17f{bottom:528.131516px;}
.y12c{bottom:530.208734px;}
.y1ec{bottom:532.699084px;}
.y1b3{bottom:532.700691px;}
.yef{bottom:535.260917px;}
.y13{bottom:536.567093px;}
.y3c{bottom:539.672516px;}
.y85{bottom:540.797516px;}
.y66{bottom:540.797562px;}
.y17e{bottom:542.375516px;}
.y218{bottom:543.889069px;}
.y1eb{bottom:546.943084px;}
.y1b2{bottom:546.944691px;}
.y12b{bottom:548.352734px;}
.yee{bottom:553.404917px;}
.y12{bottom:554.567093px;}
.y17d{bottom:556.619516px;}
.y3b{bottom:557.672516px;}
.y84{bottom:558.797516px;}
.yc9{bottom:558.797562px;}
.y1ea{bottom:561.187084px;}
.y1b1{bottom:561.188691px;}
.y217{bottom:565.686447px;}
.y12a{bottom:566.496734px;}
.y17c{bottom:570.863516px;}
.yed{bottom:571.548917px;}
.y11{bottom:572.567093px;}
.y1e9{bottom:575.431084px;}
.y1b0{bottom:575.432691px;}
.y3a{bottom:575.672516px;}
.y83{bottom:576.797516px;}
.y65{bottom:576.797562px;}
.y129{bottom:584.640734px;}
.y17b{bottom:585.107516px;}
.y216{bottom:587.483688px;}
.y1e8{bottom:589.675084px;}
.y1af{bottom:589.676691px;}
.yec{bottom:589.692917px;}
.y10{bottom:590.567093px;}
.y13c{bottom:590.807998px;}
.y39{bottom:593.672516px;}
.y82{bottom:594.797516px;}
.y17a{bottom:599.351516px;}
.y150{bottom:599.915843px;}
.y128{bottom:602.784734px;}
.y1e7{bottom:603.919084px;}
.y1ae{bottom:603.920691px;}
.yeb{bottom:607.836917px;}
.yf{bottom:608.567093px;}
.y215{bottom:609.280930px;}
.y38{bottom:611.672516px;}
.y81{bottom:612.797516px;}
.yc8{bottom:612.797562px;}
.y179{bottom:613.595516px;}
.y1e6{bottom:618.163084px;}
.y1ad{bottom:618.164691px;}
.y127{bottom:620.928734px;}
.yea{bottom:625.980917px;}
.ye{bottom:626.567093px;}
.y178{bottom:627.839516px;}
.y37{bottom:629.672516px;}
.y64{bottom:630.797516px;}
.y214{bottom:631.078033px;}
.y1e5{bottom:632.407084px;}
.y1ac{bottom:632.408691px;}
.y126{bottom:639.072734px;}
.y177{bottom:642.083516px;}
.ye9{bottom:644.124917px;}
.yd{bottom:644.567093px;}
.y1e4{bottom:646.651084px;}
.y1ab{bottom:646.652691px;}
.y36{bottom:647.672516px;}
.y213{bottom:648.081302px;}
.y63{bottom:648.797516px;}
.y176{bottom:656.327516px;}
.y125{bottom:657.216734px;}
.y1e3{bottom:660.895084px;}
.y1aa{bottom:660.896691px;}
.ye8{bottom:662.268917px;}
.y35{bottom:665.672516px;}
.y62{bottom:666.797516px;}
.y212{bottom:667.125320px;}
.y175{bottom:670.571516px;}
.y1e2{bottom:675.139084px;}
.y1a9{bottom:675.140691px;}
.y124{bottom:675.360734px;}
.ye7{bottom:680.412917px;}
.y34{bottom:683.672516px;}
.y61{bottom:684.797516px;}
.y174{bottom:684.815516px;}
.y1e1{bottom:689.383084px;}
.y1a8{bottom:689.384691px;}
.y211{bottom:690.992552px;}
.yc{bottom:693.059696px;}
.y123{bottom:693.504734px;}
.y173{bottom:699.059516px;}
.y33{bottom:701.672516px;}
.y60{bottom:702.797516px;}
.y1e0{bottom:703.627084px;}
.y1a7{bottom:703.628691px;}
.y210{bottom:705.236552px;}
.yb{bottom:707.303696px;}
.ye6{bottom:707.664917px;}
.y122{bottom:711.648734px;}
.y172{bottom:713.303516px;}
.y1df{bottom:717.871084px;}
.y1a6{bottom:717.872691px;}
.y32{bottom:719.672516px;}
.y5f{bottom:720.797516px;}
.y20f{bottom:727.028552px;}
.ye5{bottom:729.047562px;}
.y121{bottom:729.792734px;}
.y13d{bottom:731.435996px;}
.y151{bottom:731.543842px;}
.y1de{bottom:732.115084px;}
.y1a5{bottom:732.116691px;}
.y31{bottom:737.672516px;}
.y5e{bottom:738.797516px;}
.y20e{bottom:741.272552px;}
.y171{bottom:742.559516px;}
.ya{bottom:745.152145px;}
.y1dd{bottom:746.359084px;}
.y1a4{bottom:746.360691px;}
.y120{bottom:747.936734px;}
.y30{bottom:755.672516px;}
.y5d{bottom:756.797516px;}
.y170{bottom:756.803516px;}
.y1dc{bottom:760.603084px;}
.y1a3{bottom:760.604691px;}
.y9{bottom:763.152191px;}
.y11f{bottom:766.080734px;}
.y16f{bottom:771.047516px;}
.y13e{bottom:773.063996px;}
.y2f{bottom:773.672516px;}
.y5c{bottom:774.797516px;}
.y1db{bottom:774.847084px;}
.y1a2{bottom:774.848691px;}
.y8{bottom:781.152191px;}
.y152{bottom:782.171842px;}
.y11e{bottom:784.224734px;}
.y1da{bottom:789.091084px;}
.y1a1{bottom:789.092691px;}
.y2e{bottom:791.672516px;}
.y5b{bottom:792.797516px;}
.y16e{bottom:800.303516px;}
.y11d{bottom:802.368734px;}
.y1d9{bottom:803.335084px;}
.y1a0{bottom:803.336691px;}
.y2d{bottom:809.672516px;}
.y5a{bottom:810.797516px;}
.y16d{bottom:814.547516px;}
.y1d8{bottom:817.579084px;}
.y19f{bottom:817.580691px;}
.y11c{bottom:820.512734px;}
.y7{bottom:823.895529px;}
.y2c{bottom:827.672516px;}
.y59{bottom:828.797516px;}
.y1d7{bottom:831.823084px;}
.y19e{bottom:831.824691px;}
.y11b{bottom:838.656734px;}
.y2b{bottom:845.672516px;}
.y1d6{bottom:846.067084px;}
.y19d{bottom:846.068691px;}
.y6{bottom:846.398529px;}
.y58{bottom:846.797516px;}
.y1d5{bottom:860.311084px;}
.y19c{bottom:860.312691px;}
.y2a{bottom:863.672516px;}
.y57{bottom:864.797516px;}
.y11a{bottom:866.664734px;}
.y1d4{bottom:874.555084px;}
.y19b{bottom:874.556691px;}
.y56{bottom:882.797516px;}
.y1d3{bottom:888.799084px;}
.y19a{bottom:888.800691px;}
.y119{bottom:888.803516px;}
.y13f{bottom:890.291996px;}
.y153{bottom:890.399842px;}
.y29{bottom:899.672516px;}
.y5{bottom:899.785217px;}
.y55{bottom:900.797516px;}
.y1d2{bottom:903.043084px;}
.y199{bottom:903.044691px;}
.y118{bottom:903.047516px;}
.y3{bottom:925.867084px;}
.y2{bottom:940.111084px;}
.y28{bottom:940.520691px;}
.h13{height:31.180800px;}
.h2{height:33.840000px;}
.h3{height:42.048000px;}
.hd{height:44.544000px;}
.h11{height:44.832000px;}
.h5{height:46.704000px;}
.h12{height:47.328000px;}
.hf{height:49.104000px;}
.h10{height:53.640000px;}
.h4{height:54.862258px;}
.ha{height:55.680000px;}
.h8{height:58.380000px;}
.h9{height:59.340000px;}
.he{height:61.380000px;}
.hc{height:62.976000px;}
.h7{height:64.866000px;}
.hb{height:65.274000px;}
.h6{height:69.108000px;}
.h1{height:999.000000px;}
.h0{height:999.213000px;}
.w0{width:659.055000px;}
.w1{width:659.250000px;}
.x0{left:0.000000px;}
.x2{left:76.535402px;}
.x5{left:78.746400px;}
.x4{left:80.907303px;}
.x9{left:85.535402px;}
.x6{left:93.515409px;}
.x5d{left:97.799400px;}
.xa{left:99.779402px;}
.x5c{left:102.047402px;}
.x22{left:106.870650px;}
.xb{left:121.918350px;}
.x23{left:130.714650px;}
.x45{left:136.162200px;}
.xc{left:145.762350px;}
.x55{left:148.222650px;}
.x24{left:157.810649px;}
.x46{left:164.170200px;}
.x56{left:166.366650px;}
.xd{left:173.758350px;}
.x25{left:175.954649px;}
.x47{left:182.314200px;}
.x57{left:184.510650px;}
.xe{left:191.902350px;}
.x26{left:194.098649px;}
.x48{left:200.458200px;}
.x58{left:202.654650px;}
.xf{left:210.046350px;}
.x27{left:212.242649px;}
.x49{left:218.602200px;}
.x59{left:225.898650px;}
.x10{left:228.190350px;}
.x28{left:230.386649px;}
.x4a{left:232.846200px;}
.x11{left:246.334350px;}
.x29{left:248.530649px;}
.x34{left:250.866898px;}
.x35{left:255.306898px;}
.x12{left:264.478350px;}
.x2a{left:266.674649px;}
.x4b{left:269.146200px;}
.x5a{left:281.530650px;}
.x13{left:282.622350px;}
.x2b{left:284.818649px;}
.x4c{left:287.290200px;}
.x14{left:300.766350px;}
.x2c{left:302.962649px;}
.x4d{left:305.434200px;}
.x15{left:318.910350px;}
.x2d{left:321.106649px;}
.x4e{left:323.590200px;}
.x16{left:337.054350px;}
.x2e{left:339.250649px;}
.x4f{left:341.734200px;}
.x17{left:355.198350px;}
.x2f{left:357.394649px;}
.x50{left:359.878200px;}
.x18{left:373.342350px;}
.x30{left:375.538649px;}
.x51{left:378.034200px;}
.x19{left:391.486350px;}
.x31{left:393.766649px;}
.x52{left:396.178200px;}
.x1a{left:409.630350px;}
.x5b{left:412.534650px;}
.x53{left:414.322200px;}
.x32{left:419.158649px;}
.x1b{left:427.774350px;}
.x33{left:433.402649px;}
.x36{left:440.031921px;}
.x1c{left:445.918350px;}
.x37{left:454.275921px;}
.x54{left:460.966200px;}
.x1d{left:464.062350px;}
.x38{left:468.519921px;}
.x40{left:473.031921px;}
.x3d{left:479.031921px;}
.x1e{left:482.218350px;}
.x1{left:485.858414px;}
.x41{left:487.275921px;}
.x3e{left:493.275921px;}
.x39{left:497.007921px;}
.x1f{left:500.362350px;}
.x42{left:501.519921px;}
.x3f{left:507.519921px;}
.x43{left:515.763921px;}
.x7{left:518.781921px;}
.x3{left:521.631592px;}
.x44{left:530.007921px;}
.x8{left:533.025921px;}
.x20{left:536.650350px;}
.x3a{left:551.775921px;}
.x21{left:554.794350px;}
.x3b{left:566.019921px;}
.x3c{left:580.263921px;}
@media print{
.v3{vertical-align:-17.066732pt;}
.v2{vertical-align:-1.578667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls7{letter-spacing:-3.242667pt;}
.ls3{letter-spacing:-1.493333pt;}
.ls4{letter-spacing:-1.365333pt;}
.ls5{letter-spacing:-0.746667pt;}
.ls8{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.373333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.597333pt;}
.ls2{letter-spacing:0.746667pt;}
.ls0{letter-spacing:2.986667pt;}
.ls6{letter-spacing:114.304000pt;}
.wsda{word-spacing:-81.536000pt;}
.ws5b{word-spacing:-13.333333pt;}
.ws105{word-spacing:-12.800000pt;}
.ws1c{word-spacing:-11.850667pt;}
.ws5c{word-spacing:-11.840000pt;}
.ws2{word-spacing:-11.818667pt;}
.ws136{word-spacing:-11.264000pt;}
.ws3{word-spacing:-11.040000pt;}
.ws5{word-spacing:-10.773333pt;}
.ws75{word-spacing:-10.666667pt;}
.ws6{word-spacing:-10.240000pt;}
.ws41{word-spacing:-9.333333pt;}
.wscd{word-spacing:-9.301333pt;}
.ws1{word-spacing:-8.362667pt;}
.ws10b{word-spacing:-8.192000pt;}
.ws4{word-spacing:-7.728000pt;}
.ws175{word-spacing:-7.466667pt;}
.ws7b{word-spacing:-5.333333pt;}
.ws1d{word-spacing:-1.680000pt;}
.ws54{word-spacing:-1.173333pt;}
.wsbd{word-spacing:-1.120000pt;}
.wsff{word-spacing:-0.906667pt;}
.wsfb{word-spacing:-0.800000pt;}
.ws22{word-spacing:-0.746667pt;}
.ws100{word-spacing:-0.693333pt;}
.ws128{word-spacing:-0.682667pt;}
.wsb5{word-spacing:-0.640000pt;}
.ws13e{word-spacing:-0.597333pt;}
.ws35{word-spacing:-0.586667pt;}
.ws15a{word-spacing:-0.554667pt;}
.ws10{word-spacing:-0.533333pt;}
.ws13d{word-spacing:-0.512000pt;}
.wsae{word-spacing:-0.480000pt;}
.ws5d{word-spacing:-0.426667pt;}
.wsef{word-spacing:-0.373333pt;}
.wsa2{word-spacing:-0.320000pt;}
.ws12f{word-spacing:-0.298667pt;}
.ws14b{word-spacing:-0.256000pt;}
.wsee{word-spacing:-0.213333pt;}
.ws12d{word-spacing:-0.170667pt;}
.ws97{word-spacing:-0.160000pt;}
.ws11e{word-spacing:-0.128000pt;}
.wsaf{word-spacing:-0.106667pt;}
.ws123{word-spacing:-0.085333pt;}
.ws6c{word-spacing:-0.053333pt;}
.ws0{word-spacing:-0.042667pt;}
.ws7{word-spacing:0.000000pt;}
.ws146{word-spacing:0.042667pt;}
.ws99{word-spacing:0.053333pt;}
.ws147{word-spacing:0.085333pt;}
.ws9a{word-spacing:0.106667pt;}
.ws142{word-spacing:0.128000pt;}
.ws21{word-spacing:0.160000pt;}
.ws14e{word-spacing:0.170667pt;}
.ws6d{word-spacing:0.213333pt;}
.ws153{word-spacing:0.256000pt;}
.ws98{word-spacing:0.266667pt;}
.wsc9{word-spacing:0.298667pt;}
.ws9b{word-spacing:0.320000pt;}
.ws117{word-spacing:0.341333pt;}
.ws11{word-spacing:0.373333pt;}
.ws144{word-spacing:0.384000pt;}
.ws40{word-spacing:0.426667pt;}
.ws14a{word-spacing:0.469333pt;}
.ws95{word-spacing:0.480000pt;}
.ws13a{word-spacing:0.512000pt;}
.ws18{word-spacing:0.533333pt;}
.ws118{word-spacing:0.554667pt;}
.ws6b{word-spacing:0.586667pt;}
.wse8{word-spacing:0.597333pt;}
.wse1{word-spacing:0.640000pt;}
.ws132{word-spacing:0.682667pt;}
.ws28{word-spacing:0.693333pt;}
.ws16e{word-spacing:0.725333pt;}
.ws25{word-spacing:0.746667pt;}
.ws131{word-spacing:0.768000pt;}
.ws1e{word-spacing:0.800000pt;}
.wse3{word-spacing:0.810667pt;}
.ws68{word-spacing:0.853333pt;}
.ws119{word-spacing:0.896000pt;}
.wse{word-spacing:0.906667pt;}
.ws13f{word-spacing:0.938667pt;}
.ws96{word-spacing:0.960000pt;}
.ws12b{word-spacing:0.981333pt;}
.ws107{word-spacing:1.013333pt;}
.ws152{word-spacing:1.024000pt;}
.wsf0{word-spacing:1.066667pt;}
.wsf4{word-spacing:1.109333pt;}
.ws51{word-spacing:1.120000pt;}
.ws15b{word-spacing:1.152000pt;}
.wsb4{word-spacing:1.173333pt;}
.ws93{word-spacing:1.226667pt;}
.ws10e{word-spacing:1.237333pt;}
.ws13b{word-spacing:1.280000pt;}
.wsc8{word-spacing:1.322667pt;}
.ws63{word-spacing:1.333333pt;}
.wse6{word-spacing:1.365333pt;}
.ws2a{word-spacing:1.386667pt;}
.ws122{word-spacing:1.408000pt;}
.ws55{word-spacing:1.440000pt;}
.ws139{word-spacing:1.450667pt;}
.ws4b{word-spacing:1.493333pt;}
.ws173{word-spacing:1.496000pt;}
.ws140{word-spacing:1.536000pt;}
.ws10c{word-spacing:1.546667pt;}
.wscc{word-spacing:1.578667pt;}
.wsb1{word-spacing:1.600000pt;}
.wsca{word-spacing:1.621333pt;}
.ws56{word-spacing:1.653333pt;}
.wse4{word-spacing:1.664000pt;}
.ws8{word-spacing:1.706667pt;}
.ws160{word-spacing:1.749333pt;}
.ws1a{word-spacing:1.760000pt;}
.ws101{word-spacing:1.813333pt;}
.wsc7{word-spacing:1.834667pt;}
.ws37{word-spacing:1.866667pt;}
.ws164{word-spacing:1.877333pt;}
.ws174{word-spacing:1.904000pt;}
.wsbf{word-spacing:1.920000pt;}
.ws158{word-spacing:1.962667pt;}
.ws9c{word-spacing:1.973333pt;}
.wsf1{word-spacing:2.026667pt;}
.ws135{word-spacing:2.048000pt;}
.ws36{word-spacing:2.080000pt;}
.ws5a{word-spacing:2.090667pt;}
.wsde{word-spacing:2.133333pt;}
.wse7{word-spacing:2.176000pt;}
.wsc2{word-spacing:2.186667pt;}
.ws32{word-spacing:2.240000pt;}
.ws86{word-spacing:2.293333pt;}
.ws15f{word-spacing:2.304000pt;}
.ws7c{word-spacing:2.346667pt;}
.wscb{word-spacing:2.389333pt;}
.wsd{word-spacing:2.400000pt;}
.ws16b{word-spacing:2.432000pt;}
.ws61{word-spacing:2.453333pt;}
.ws12a{word-spacing:2.474667pt;}
.ws9d{word-spacing:2.506667pt;}
.wse0{word-spacing:2.517333pt;}
.ws4d{word-spacing:2.560000pt;}
.ws14d{word-spacing:2.602667pt;}
.ws26{word-spacing:2.613333pt;}
.wsad{word-spacing:2.666667pt;}
.ws113{word-spacing:2.688000pt;}
.ws9f{word-spacing:2.720000pt;}
.ws149{word-spacing:2.730667pt;}
.ws1b{word-spacing:2.773333pt;}
.ws145{word-spacing:2.816000pt;}
.ws47{word-spacing:2.826667pt;}
.ws161{word-spacing:2.858667pt;}
.ws94{word-spacing:2.880000pt;}
.ws121{word-spacing:2.901333pt;}
.wsf{word-spacing:2.933333pt;}
.ws42{word-spacing:2.986667pt;}
.ws169{word-spacing:3.029333pt;}
.wsa7{word-spacing:3.040000pt;}
.ws2b{word-spacing:3.093333pt;}
.ws7d{word-spacing:3.146667pt;}
.ws78{word-spacing:3.157333pt;}
.wsbc{word-spacing:3.200000pt;}
.ws4e{word-spacing:3.253333pt;}
.ws11d{word-spacing:3.285333pt;}
.ws29{word-spacing:3.306667pt;}
.ws6e{word-spacing:3.360000pt;}
.ws129{word-spacing:3.370667pt;}
.ws65{word-spacing:3.413333pt;}
.wse5{word-spacing:3.456000pt;}
.ws80{word-spacing:3.466667pt;}
.ws116{word-spacing:3.498667pt;}
.wsa1{word-spacing:3.520000pt;}
.ws4f{word-spacing:3.573333pt;}
.ws120{word-spacing:3.584000pt;}
.wse9{word-spacing:3.626667pt;}
.wsc5{word-spacing:3.669333pt;}
.ws8e{word-spacing:3.680000pt;}
.ws5f{word-spacing:3.733333pt;}
.ws115{word-spacing:3.754667pt;}
.wsbb{word-spacing:3.786667pt;}
.ws127{word-spacing:3.797333pt;}
.ws43{word-spacing:3.840000pt;}
.ws110{word-spacing:3.882667pt;}
.ws64{word-spacing:3.893333pt;}
.wse2{word-spacing:3.925333pt;}
.ws58{word-spacing:3.946667pt;}
.ws8b{word-spacing:4.000000pt;}
.ws154{word-spacing:4.010667pt;}
.ws33{word-spacing:4.053333pt;}
.ws125{word-spacing:4.096000pt;}
.wsb8{word-spacing:4.106667pt;}
.ws148{word-spacing:4.138667pt;}
.ws34{word-spacing:4.160000pt;}
.wsc6{word-spacing:4.181333pt;}
.wsac{word-spacing:4.213333pt;}
.ws14c{word-spacing:4.224000pt;}
.wsc3{word-spacing:4.266667pt;}
.ws16c{word-spacing:4.309333pt;}
.ws81{word-spacing:4.320000pt;}
.ws48{word-spacing:4.373333pt;}
.ws12c{word-spacing:4.394667pt;}
.ws4a{word-spacing:4.426667pt;}
.ws44{word-spacing:4.480000pt;}
.wsdf{word-spacing:4.522667pt;}
.wsa5{word-spacing:4.533333pt;}
.ws16a{word-spacing:4.565333pt;}
.ws91{word-spacing:4.586667pt;}
.ws114{word-spacing:4.608000pt;}
.ws50{word-spacing:4.640000pt;}
.ws16f{word-spacing:4.650667pt;}
.ws84{word-spacing:4.693333pt;}
.ws126{word-spacing:4.736000pt;}
.ws92{word-spacing:4.746667pt;}
.ws90{word-spacing:4.800000pt;}
.wsf6{word-spacing:4.853333pt;}
.ws9e{word-spacing:4.906667pt;}
.ws163{word-spacing:4.949333pt;}
.ws31{word-spacing:4.960000pt;}
.ws168{word-spacing:4.992000pt;}
.ws5e{word-spacing:5.013333pt;}
.wsfe{word-spacing:5.066667pt;}
.ws15e{word-spacing:5.077333pt;}
.ws12{word-spacing:5.120000pt;}
.ws138{word-spacing:5.162667pt;}
.ws83{word-spacing:5.173333pt;}
.ws112{word-spacing:5.205333pt;}
.ws57{word-spacing:5.226667pt;}
.ws137{word-spacing:5.248000pt;}
.ws30{word-spacing:5.280000pt;}
.ws53{word-spacing:5.333333pt;}
.wsa{word-spacing:5.386667pt;}
.wsea{word-spacing:5.440000pt;}
.wsab{word-spacing:5.493333pt;}
.ws16{word-spacing:5.546667pt;}
.ws14f{word-spacing:5.589333pt;}
.ws102{word-spacing:5.600000pt;}
.ws171{word-spacing:5.632000pt;}
.ws19{word-spacing:5.653333pt;}
.wsc1{word-spacing:5.706667pt;}
.wsbe{word-spacing:5.760000pt;}
.ws67{word-spacing:5.813333pt;}
.ws12e{word-spacing:5.845333pt;}
.ws49{word-spacing:5.866667pt;}
.ws14{word-spacing:5.920000pt;}
.ws16d{word-spacing:5.930667pt;}
.ws3e{word-spacing:5.973333pt;}
.ws11a{word-spacing:6.016000pt;}
.wsdd{word-spacing:6.026667pt;}
.ws15c{word-spacing:6.058667pt;}
.ws4c{word-spacing:6.080000pt;}
.ws13{word-spacing:6.133333pt;}
.ws111{word-spacing:6.144000pt;}
.ws141{word-spacing:6.186667pt;}
.ws157{word-spacing:6.229333pt;}
.ws3f{word-spacing:6.240000pt;}
.ws166{word-spacing:6.272000pt;}
.ws23{word-spacing:6.293333pt;}
.ws167{word-spacing:6.314667pt;}
.wsc4{word-spacing:6.346667pt;}
.ws159{word-spacing:6.357333pt;}
.ws39{word-spacing:6.400000pt;}
.ws133{word-spacing:6.442667pt;}
.wsba{word-spacing:6.453333pt;}
.ws15d{word-spacing:6.485333pt;}
.ws162{word-spacing:6.570667pt;}
.ws38{word-spacing:6.613333pt;}
.wsa8{word-spacing:6.666667pt;}
.ws69{word-spacing:6.720000pt;}
.ws130{word-spacing:6.741333pt;}
.ws1f{word-spacing:6.773333pt;}
.ws134{word-spacing:6.784000pt;}
.wsa4{word-spacing:6.826667pt;}
.ws66{word-spacing:6.880000pt;}
.ws10f{word-spacing:6.912000pt;}
.wsaa{word-spacing:6.933333pt;}
.wsfa{word-spacing:6.986667pt;}
.ws11b{word-spacing:7.040000pt;}
.ws156{word-spacing:7.082667pt;}
.wsa3{word-spacing:7.093333pt;}
.ws60{word-spacing:7.146667pt;}
.ws11c{word-spacing:7.168000pt;}
.ws15{word-spacing:7.200000pt;}
.ws104{word-spacing:7.253333pt;}
.ws82{word-spacing:7.306667pt;}
.ws27{word-spacing:7.360000pt;}
.wsb{word-spacing:7.413333pt;}
.wsc{word-spacing:7.466667pt;}
.ws8c{word-spacing:7.520000pt;}
.ws3c{word-spacing:7.573333pt;}
.ws11f{word-spacing:7.594667pt;}
.ws2e{word-spacing:7.626667pt;}
.ws6f{word-spacing:7.680000pt;}
.ws17{word-spacing:7.733333pt;}
.ws59{word-spacing:7.786667pt;}
.wsc0{word-spacing:7.840000pt;}
.ws165{word-spacing:7.850667pt;}
.wsec{word-spacing:7.893333pt;}
.ws155{word-spacing:7.936000pt;}
.ws2f{word-spacing:7.946667pt;}
.wseb{word-spacing:8.000000pt;}
.ws109{word-spacing:8.106667pt;}
.ws24{word-spacing:8.213333pt;}
.wsdc{word-spacing:8.266667pt;}
.wsb9{word-spacing:8.320000pt;}
.wsb0{word-spacing:8.373333pt;}
.wsb6{word-spacing:8.426667pt;}
.ws13c{word-spacing:8.448000pt;}
.wsa0{word-spacing:8.480000pt;}
.ws8a{word-spacing:8.533333pt;}
.ws9{word-spacing:8.586667pt;}
.wsa6{word-spacing:8.693333pt;}
.ws8d{word-spacing:8.746667pt;}
.wsfd{word-spacing:8.853333pt;}
.wsa9{word-spacing:8.906667pt;}
.ws45{word-spacing:9.120000pt;}
.ws20{word-spacing:9.226667pt;}
.wsed{word-spacing:9.440000pt;}
.ws150{word-spacing:9.472000pt;}
.ws8f{word-spacing:9.493333pt;}
.wsf8{word-spacing:9.600000pt;}
.ws7e{word-spacing:9.706667pt;}
.wsf9{word-spacing:9.813333pt;}
.wsf5{word-spacing:9.973333pt;}
.ws62{word-spacing:10.026667pt;}
.ws3b{word-spacing:10.080000pt;}
.ws2d{word-spacing:10.133333pt;}
.ws88{word-spacing:10.240000pt;}
.ws170{word-spacing:10.410667pt;}
.ws3d{word-spacing:10.560000pt;}
.ws143{word-spacing:10.624000pt;}
.ws124{word-spacing:10.752000pt;}
.ws108{word-spacing:10.933333pt;}
.ws3a{word-spacing:11.146667pt;}
.ws87{word-spacing:11.520000pt;}
.ws10a{word-spacing:11.573333pt;}
.wsdb{word-spacing:11.733333pt;}
.wsf2{word-spacing:12.000000pt;}
.ws89{word-spacing:12.373333pt;}
.ws85{word-spacing:12.426667pt;}
.ws7f{word-spacing:12.533333pt;}
.ws6a{word-spacing:12.693333pt;}
.ws52{word-spacing:13.066667pt;}
.ws151{word-spacing:13.141333pt;}
.ws103{word-spacing:13.546667pt;}
.ws10d{word-spacing:13.813333pt;}
.wsf7{word-spacing:14.026667pt;}
.ws172{word-spacing:15.274667pt;}
.ws46{word-spacing:16.373333pt;}
.ws106{word-spacing:18.133333pt;}
.wsfc{word-spacing:20.320000pt;}
.ws2c{word-spacing:23.306667pt;}
.wsf3{word-spacing:58.666667pt;}
.ws176{word-spacing:64.938667pt;}
.wsce{word-spacing:103.637333pt;}
.ws76{word-spacing:110.387200pt;}
.wsd7{word-spacing:114.261333pt;}
.ws72{word-spacing:122.282659pt;}
.ws74{word-spacing:131.754659pt;}
.wsd1{word-spacing:136.448000pt;}
.ws71{word-spacing:141.695992pt;}
.ws73{word-spacing:153.087992pt;}
.ws70{word-spacing:174.549326pt;}
.wsb7{word-spacing:181.760000pt;}
.wsb2{word-spacing:190.848000pt;}
.wsd0{word-spacing:239.274658pt;}
.wsb3{word-spacing:244.181333pt;}
.ws79{word-spacing:327.466667pt;}
.ws77{word-spacing:348.800000pt;}
.wsd4{word-spacing:407.722656pt;}
.wsd6{word-spacing:487.594654pt;}
.wsd9{word-spacing:495.402654pt;}
.wsd8{word-spacing:521.514654pt;}
.ws7a{word-spacing:538.880000pt;}
.wsd2{word-spacing:543.359985pt;}
.wscf{word-spacing:574.208000pt;}
.wsd3{word-spacing:612.607978pt;}
.wsd5{word-spacing:672.511978pt;}
._8a{margin-left:-114.304000pt;}
._11{margin-left:-16.650667pt;}
._b0{margin-left:-13.866667pt;}
._af{margin-left:-4.645333pt;}
._4{margin-left:-3.525333pt;}
._3{margin-left:-2.343467pt;}
._0{margin-left:-1.450667pt;}
._1{width:0.953067pt;}
._b{width:1.894933pt;}
._c{width:2.826667pt;}
._12{width:3.936000pt;}
._e{width:4.878933pt;}
._7{width:5.792000pt;}
._8{width:6.954667pt;}
._9{width:7.904000pt;}
._ae{width:8.826667pt;}
._a{width:9.792000pt;}
._d{width:11.413333pt;}
._13{width:13.141333pt;}
._35{width:15.826133pt;}
._b1{width:19.840000pt;}
._10{width:34.645333pt;}
._2{width:36.048525pt;}
._43{width:48.085333pt;}
._b3{width:50.005325pt;}
._50{width:52.593600pt;}
._44{width:59.946667pt;}
._b2{width:64.938667pt;}
._47{width:68.096000pt;}
._4a{width:69.418667pt;}
._85{width:71.082667pt;}
._82{width:72.447987pt;}
._95{width:73.344000pt;}
._46{width:80.085333pt;}
._49{width:89.429333pt;}
._4f{width:90.752000pt;}
._6f{width:92.970667pt;}
._6{width:94.080000pt;}
._6e{width:95.360000pt;}
._4c{width:101.418667pt;}
._8c{width:107.477325pt;}
._8d{width:112.128000pt;}
._42{width:113.280000pt;}
._6d{width:114.304000pt;}
._8e{width:116.138667pt;}
._33{width:121.087992pt;}
._4e{width:122.752000pt;}
._84{width:126.161600pt;}
._17{width:132.949326pt;}
._89{width:136.017592pt;}
._3a{width:140.785600pt;}
._18{width:142.417600pt;}
._36{width:143.484267pt;}
._72{width:147.114667pt;}
._97{width:157.212261pt;}
._1f{width:163.754659pt;}
._32{width:174.677326pt;}
._aa{width:178.645325pt;}
._56{width:181.976533pt;}
._19{width:185.215992pt;}
._16{width:186.282659pt;}
._26{width:191.189333pt;}
._41{width:193.490133pt;}
._1b{width:195.754659pt;}
._2c{width:196.903467pt;}
._58{width:203.136000pt;}
._5c{width:212.565333pt;}
._1a{width:216.106667pt;}
._27{width:217.090126pt;}
._3f{width:222.165333pt;}
._38{width:224.384000pt;}
._21{width:226.090667pt;}
._55{width:236.330667pt;}
._90{width:237.354655pt;}
._a4{width:238.719994pt;}
._1d{width:240.938667pt;}
._37{width:245.717333pt;}
._71{width:249.941325pt;}
._29{width:254.293333pt;}
._3c{width:255.360000pt;}
._9a{width:258.687988pt;}
._9b{width:261.788261pt;}
._67{width:267.093333pt;}
._ab{width:268.842667pt;}
._a9{width:273.621333pt;}
._a6{width:280.021322pt;}
._78{width:282.751994pt;}
._28{width:289.706667pt;}
._68{width:297.158933pt;}
._31{width:299.164267pt;}
._ac{width:301.354655pt;}
._54{width:312.658133pt;}
._59{width:316.885333pt;}
._96{width:331.477333pt;}
._9f{width:333.482661pt;}
._2e{width:339.328000pt;}
._86{width:343.722645pt;}
._1c{width:348.800000pt;}
._4b{width:353.408000pt;}
._3e{width:354.730667pt;}
._2f{width:358.812267pt;}
._3b{width:360.121067pt;}
._a2{width:369.066661pt;}
._6a{width:373.674667pt;}
._a1{width:374.741333pt;}
._30{width:380.800000pt;}
._1e{width:383.104000pt;}
._99{width:384.469327pt;}
._7d{width:385.578654pt;}
._9e{width:387.910933pt;}
._2a{width:389.120000pt;}
._34{width:391.424000pt;}
._48{width:396.074667pt;}
._4d{width:398.848000pt;}
._6c{width:400.597320pt;}
._2b{width:402.131200pt;}
._2d{width:403.328000pt;}
._5e{width:404.806933pt;}
._3d{width:412.800000pt;}
._94{width:414.933319pt;}
._76{width:418.389323pt;}
._45{width:420.181333pt;}
._53{width:432.426667pt;}
._a0{width:435.886394pt;}
._9d{width:436.821855pt;}
._93{width:439.292794pt;}
._24{width:441.130667pt;}
._92{width:456.192000pt;}
._a3{width:457.358391pt;}
._a5{width:460.330661pt;}
._20{width:469.674667pt;}
._22{width:479.146667pt;}
._25{width:481.578667pt;}
._52{width:485.674667pt;}
._63{width:488.661333pt;}
._23{width:494.848000pt;}
._5f{width:498.176000pt;}
._a8{width:502.997327pt;}
._5b{width:504.302400pt;}
._66{width:507.861333pt;}
._7f{width:509.013333pt;}
._62{width:519.424000pt;}
._51{width:520.448000pt;}
._69{width:524.458667pt;}
._5d{width:528.938667pt;}
._98{width:529.834667pt;}
._64{width:534.869333pt;}
._15{width:543.104000pt;}
._5a{width:546.969067pt;}
._39{width:547.925333pt;}
._80{width:554.026652pt;}
._8f{width:560.981327pt;}
._91{width:562.687988pt;}
._40{width:572.842667pt;}
._65{width:575.146667pt;}
._a7{width:584.021322pt;}
._f{width:593.109307pt;}
._ad{width:605.354655pt;}
._7c{width:610.944000pt;}
._9c{width:626.687988pt;}
._87{width:632.277333pt;}
._73{width:641.706667pt;}
._6b{width:643.797333pt;}
._74{width:656.810667pt;}
._61{width:708.096000pt;}
._60{width:713.685333pt;}
._77{width:744.191978pt;}
._79{width:768.341333pt;}
._5{width:769.408000pt;}
._8b{width:787.520533pt;}
._57{width:806.229333pt;}
._7b{width:825.258626pt;}
._7e{width:917.361593pt;}
._14{width:921.772283pt;}
._70{width:961.206927pt;}
._75{width:984.618660pt;}
._7a{width:1034.367993pt;}
._81{width:1131.164267pt;}
._83{width:1242.282607pt;}
._88{width:1441.279940pt;}
.fs7{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs6{font-size:45.333333pt;}
.fs3{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fs2{font-size:69.333333pt;}
.fs1{font-size:80.000000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:44.111465pt;}
.y4{bottom:44.112000pt;}
.y1{bottom:45.118398pt;}
.y15c{bottom:79.999976pt;}
.y80{bottom:80.000000pt;}
.yb8{bottom:80.004557pt;}
.ya0{bottom:80.004679pt;}
.y15f{bottom:80.010629pt;}
.y141{bottom:80.010667pt;}
.y162{bottom:80.021283pt;}
.y146{bottom:80.021320pt;}
.yb9{bottom:80.047183pt;}
.ya1{bottom:80.047305pt;}
.yba{bottom:80.057830pt;}
.ya2{bottom:80.057945pt;}
.y167{bottom:80.063890pt;}
.y14a{bottom:80.063933pt;}
.yc7{bottom:80.068291pt;}
.ybb{bottom:80.068477pt;}
.y16a{bottom:80.074543pt;}
.y14b{bottom:80.074574pt;}
.yc6{bottom:80.078969pt;}
.ybc{bottom:80.079124pt;}
.y14c{bottom:80.085216pt;}
.yc5{bottom:80.089647pt;}
.ybd{bottom:80.089772pt;}
.y154{bottom:80.095839pt;}
.y14e{bottom:80.095863pt;}
.yc4{bottom:80.100326pt;}
.ybe{bottom:80.100419pt;}
.ya3{bottom:80.100570pt;}
.yc3{bottom:80.111004pt;}
.ybf{bottom:80.111066pt;}
.yc2{bottom:80.121682pt;}
.yc0{bottom:80.121714pt;}
.yc1{bottom:80.132361pt;}
.y159{bottom:80.138446pt;}
.ya4{bottom:80.143195pt;}
.ya5{bottom:80.185821pt;}
.ya6{bottom:80.228446pt;}
.ya7{bottom:80.239086pt;}
.ya8{bottom:80.281711pt;}
.ya9{bottom:80.292352pt;}
.yaa{bottom:80.334977pt;}
.yab{bottom:80.377602pt;}
.yac{bottom:80.420228pt;}
.yad{bottom:80.430868pt;}
.yaf{bottom:80.441504pt;}
.yae{bottom:80.441508pt;}
.yb0{bottom:80.452144pt;}
.yb1{bottom:80.462784pt;}
.yb2{bottom:80.473424pt;}
.yb4{bottom:80.484061pt;}
.yb3{bottom:80.484065pt;}
.yb5{bottom:80.526686pt;}
.yb6{bottom:80.569311pt;}
.y9e{bottom:80.708903pt;}
.ycd{bottom:80.708933pt;}
.y7f{bottom:80.708944pt;}
.y20b{bottom:81.008964pt;}
.y13b{bottom:81.066671pt;}
.y198{bottom:83.744004pt;}
.y163{bottom:88.021283pt;}
.y155{bottom:88.095839pt;}
.y107{bottom:88.640815pt;}
.ye4{bottom:89.051047pt;}
.y20a{bottom:93.670297pt;}
.y1d1{bottom:93.671725pt;}
.y117{bottom:94.166260pt;}
.y54{bottom:95.708903pt;}
.y197{bottom:96.405337pt;}
.y9d{bottom:96.708903pt;}
.ycc{bottom:96.708933pt;}
.y7e{bottom:96.708944pt;}
.y13a{bottom:97.066671pt;}
.y106{bottom:104.843482pt;}
.ye3{bottom:105.253713pt;}
.y209{bottom:106.331630pt;}
.y1d0{bottom:106.333059pt;}
.y196{bottom:109.066671pt;}
.y116{bottom:110.166260pt;}
.y53{bottom:111.708903pt;}
.y9c{bottom:112.708903pt;}
.y7d{bottom:112.708944pt;}
.y139{bottom:113.066671pt;}
.y208{bottom:118.992964pt;}
.y1cf{bottom:118.994392pt;}
.y105{bottom:120.971482pt;}
.ye2{bottom:121.381713pt;}
.y115{bottom:126.166260pt;}
.y52{bottom:127.708903pt;}
.y9b{bottom:128.708903pt;}
.ycb{bottom:128.708933pt;}
.y7c{bottom:128.708944pt;}
.y138{bottom:129.066671pt;}
.y207{bottom:131.654297pt;}
.y1ce{bottom:131.655725pt;}
.y104{bottom:137.099482pt;}
.ye1{bottom:137.509713pt;}
.y195{bottom:138.000000pt;}
.y114{bottom:142.166260pt;}
.y51{bottom:143.708903pt;}
.y206{bottom:144.315630pt;}
.y1cd{bottom:144.317059pt;}
.y9a{bottom:144.708903pt;}
.y7b{bottom:144.708944pt;}
.y137{bottom:145.066671pt;}
.y103{bottom:153.227482pt;}
.ye0{bottom:153.637713pt;}
.y26{bottom:156.281860pt;}
.y205{bottom:156.976964pt;}
.y1cc{bottom:156.978392pt;}
.y113{bottom:158.166260pt;}
.y50{bottom:159.708903pt;}
.y99{bottom:160.708903pt;}
.yca{bottom:160.708933pt;}
.y7a{bottom:160.708944pt;}
.y136{bottom:161.066671pt;}
.y102{bottom:169.355482pt;}
.y204{bottom:169.638297pt;}
.y1cb{bottom:169.639725pt;}
.ydf{bottom:169.765713pt;}
.y25{bottom:172.281860pt;}
.y112{bottom:174.166260pt;}
.y4f{bottom:175.708903pt;}
.y98{bottom:176.708903pt;}
.y79{bottom:176.708944pt;}
.y135{bottom:177.066671pt;}
.y203{bottom:182.299630pt;}
.y1ca{bottom:182.301059pt;}
.y101{bottom:185.483482pt;}
.yde{bottom:185.893713pt;}
.y111{bottom:190.166260pt;}
.y194{bottom:190.218236pt;}
.y4e{bottom:191.708903pt;}
.y97{bottom:192.708903pt;}
.y78{bottom:192.708944pt;}
.y134{bottom:193.066671pt;}
.y202{bottom:194.960964pt;}
.y1c9{bottom:194.962392pt;}
.y100{bottom:201.611482pt;}
.ydd{bottom:202.021713pt;}
.y193{bottom:202.879570pt;}
.y24{bottom:204.948527pt;}
.y110{bottom:206.166260pt;}
.y201{bottom:207.622297pt;}
.y1c8{bottom:207.623725pt;}
.y4d{bottom:207.708903pt;}
.y96{bottom:208.708903pt;}
.y77{bottom:208.708944pt;}
.y133{bottom:209.066671pt;}
.y192{bottom:215.540903pt;}
.yff{bottom:217.739482pt;}
.ydc{bottom:218.149713pt;}
.y200{bottom:220.283630pt;}
.y1c7{bottom:220.285059pt;}
.y23{bottom:220.948527pt;}
.y10f{bottom:222.166260pt;}
.y4c{bottom:223.708903pt;}
.y95{bottom:224.708903pt;}
.y76{bottom:224.708944pt;}
.y191{bottom:228.202236pt;}
.y1ff{bottom:232.944964pt;}
.y1c6{bottom:232.946392pt;}
.yfe{bottom:233.867482pt;}
.ydb{bottom:234.277713pt;}
.y22{bottom:236.948527pt;}
.y10e{bottom:238.166260pt;}
.yb7{bottom:238.905457pt;}
.y9f{bottom:238.905599pt;}
.y4b{bottom:239.708903pt;}
.y94{bottom:240.708903pt;}
.y75{bottom:240.708944pt;}
.y190{bottom:240.863570pt;}
.y132{bottom:241.066671pt;}
.y1fe{bottom:245.606297pt;}
.y1c5{bottom:245.607725pt;}
.yfd{bottom:249.995482pt;}
.yda{bottom:250.405713pt;}
.y21{bottom:252.948527pt;}
.y18f{bottom:253.524903pt;}
.y140{bottom:254.165341pt;}
.y10d{bottom:254.166260pt;}
.y15d{bottom:254.175982pt;}
.y15e{bottom:254.175988pt;}
.y160{bottom:254.186635pt;}
.y161{bottom:254.186641pt;}
.y142{bottom:254.186673pt;}
.y143{bottom:254.186679pt;}
.y164{bottom:254.197283pt;}
.y147{bottom:254.197326pt;}
.y165{bottom:254.207923pt;}
.y148{bottom:254.207966pt;}
.y166{bottom:254.218564pt;}
.y149{bottom:254.218607pt;}
.y168{bottom:254.239896pt;}
.y169{bottom:254.239902pt;}
.y16b{bottom:254.250549pt;}
.y16c{bottom:254.250555pt;}
.y14d{bottom:254.261222pt;}
.y156{bottom:254.271839pt;}
.y157{bottom:254.282480pt;}
.y158{bottom:254.293120pt;}
.y15a{bottom:254.314452pt;}
.y15b{bottom:254.314458pt;}
.y4a{bottom:255.708903pt;}
.y20d{bottom:256.626269pt;}
.y93{bottom:256.708903pt;}
.y74{bottom:256.708944pt;}
.y1fd{bottom:258.267630pt;}
.y1c4{bottom:258.269059pt;}
.y144{bottom:262.186679pt;}
.yfc{bottom:266.123482pt;}
.y18e{bottom:266.186236pt;}
.yd9{bottom:266.533713pt;}
.y20{bottom:268.948527pt;}
.y20c{bottom:269.296936pt;}
.y10c{bottom:270.166260pt;}
.y1fc{bottom:270.928964pt;}
.y1c3{bottom:270.930392pt;}
.y49{bottom:271.708903pt;}
.y92{bottom:272.708903pt;}
.y73{bottom:272.708944pt;}
.y18d{bottom:278.847570pt;}
.yfb{bottom:282.251482pt;}
.yd8{bottom:282.661713pt;}
.y1fb{bottom:283.590297pt;}
.y1c2{bottom:283.591725pt;}
.y223{bottom:283.745605pt;}
.y1f{bottom:284.948527pt;}
.y10b{bottom:286.166260pt;}
.y48{bottom:287.708903pt;}
.y91{bottom:288.708903pt;}
.y72{bottom:288.708944pt;}
.y18c{bottom:291.508903pt;}
.y1fa{bottom:296.251630pt;}
.y1c1{bottom:296.253059pt;}
.yfa{bottom:298.379482pt;}
.yd7{bottom:298.789713pt;}
.y1e{bottom:300.948527pt;}
.y10a{bottom:302.166260pt;}
.y222{bottom:303.120931pt;}
.y47{bottom:303.708903pt;}
.y90{bottom:304.708903pt;}
.y71{bottom:304.708944pt;}
.y1f9{bottom:308.912964pt;}
.y1c0{bottom:308.914392pt;}
.yf9{bottom:314.507482pt;}
.yd6{bottom:314.917713pt;}
.y1d{bottom:316.948527pt;}
.y18b{bottom:317.514236pt;}
.y109{bottom:318.166260pt;}
.y221{bottom:318.234927pt;}
.y46{bottom:319.708903pt;}
.y8f{bottom:320.708903pt;}
.y70{bottom:320.708944pt;}
.y1f8{bottom:321.574297pt;}
.y1bf{bottom:321.575725pt;}
.y18a{bottom:330.175570pt;}
.yf8{bottom:330.635482pt;}
.yd5{bottom:331.045713pt;}
.y1c{bottom:332.948527pt;}
.y108{bottom:334.166260pt;}
.y1f7{bottom:334.235630pt;}
.y1be{bottom:334.237059pt;}
.y220{bottom:335.162923pt;}
.y45{bottom:335.708903pt;}
.y8e{bottom:336.708903pt;}
.y6f{bottom:336.708944pt;}
.y189{bottom:342.836903pt;}
.yf7{bottom:346.763482pt;}
.y1f6{bottom:346.896964pt;}
.y1bd{bottom:346.898392pt;}
.yd4{bottom:347.173713pt;}
.y1b{bottom:348.948527pt;}
.y44{bottom:351.708903pt;}
.y8d{bottom:352.708903pt;}
.y6e{bottom:352.708944pt;}
.y21f{bottom:354.538249pt;}
.yd1{bottom:355.391610pt;}
.y188{bottom:355.498236pt;}
.y1f5{bottom:359.558297pt;}
.y1bc{bottom:359.559725pt;}
.yf6{bottom:362.891482pt;}
.yd3{bottom:363.301713pt;}
.y1a{bottom:364.948527pt;}
.y43{bottom:367.708903pt;}
.yd0{bottom:368.052944pt;}
.y187{bottom:368.159570pt;}
.y8c{bottom:368.708903pt;}
.y6d{bottom:368.708944pt;}
.y1f4{bottom:372.219630pt;}
.y1bb{bottom:372.221059pt;}
.y21e{bottom:373.913615pt;}
.yf5{bottom:379.019482pt;}
.ycf{bottom:380.714277pt;}
.y186{bottom:380.820903pt;}
.y19{bottom:380.948527pt;}
.y42{bottom:383.708903pt;}
.y8b{bottom:384.708903pt;}
.y6c{bottom:384.708944pt;}
.y1f3{bottom:384.880964pt;}
.y1ba{bottom:384.882392pt;}
.yd2{bottom:388.197713pt;}
.y131{bottom:390.581986pt;}
.y21d{bottom:393.288940pt;}
.yce{bottom:393.375610pt;}
.y185{bottom:393.482236pt;}
.yf4{bottom:395.147482pt;}
.y18{bottom:396.948527pt;}
.y1f2{bottom:397.542297pt;}
.y1b9{bottom:397.543725pt;}
.y41{bottom:399.708903pt;}
.y8a{bottom:400.708903pt;}
.y6b{bottom:400.708944pt;}
.y184{bottom:406.143570pt;}
.y130{bottom:406.784652pt;}
.y21c{bottom:408.402916pt;}
.y1f1{bottom:410.203630pt;}
.y1b8{bottom:410.205059pt;}
.yf3{bottom:411.275482pt;}
.y17{bottom:412.948527pt;}
.y40{bottom:415.708903pt;}
.y89{bottom:416.708903pt;}
.y6a{bottom:416.708944pt;}
.y183{bottom:418.804903pt;}
.y1f0{bottom:422.864964pt;}
.y1b7{bottom:422.866392pt;}
.y12f{bottom:422.912652pt;}
.y21b{bottom:425.331055pt;}
.yf2{bottom:427.403482pt;}
.y16{bottom:428.948527pt;}
.y182{bottom:431.466236pt;}
.y3f{bottom:431.708903pt;}
.y88{bottom:432.708903pt;}
.y69{bottom:432.708944pt;}
.y1ef{bottom:435.526297pt;}
.y1b6{bottom:435.527725pt;}
.y12e{bottom:439.040652pt;}
.y145{bottom:439.189344pt;}
.y14f{bottom:439.263863pt;}
.yf1{bottom:443.531482pt;}
.y181{bottom:444.127570pt;}
.y21a{bottom:444.706380pt;}
.y15{bottom:444.948527pt;}
.y3e{bottom:447.708903pt;}
.y1ee{bottom:448.187630pt;}
.y1b5{bottom:448.189059pt;}
.y87{bottom:448.708903pt;}
.y68{bottom:448.708944pt;}
.y12d{bottom:455.168652pt;}
.y180{bottom:456.788903pt;}
.yf0{bottom:459.659482pt;}
.y1ed{bottom:460.848964pt;}
.y1b4{bottom:460.850392pt;}
.y14{bottom:460.948527pt;}
.y3d{bottom:463.708903pt;}
.y219{bottom:464.081584pt;}
.y86{bottom:464.708903pt;}
.y67{bottom:464.708944pt;}
.y17f{bottom:469.450236pt;}
.y12c{bottom:471.296652pt;}
.y1ec{bottom:473.510297pt;}
.y1b3{bottom:473.511725pt;}
.yef{bottom:475.787482pt;}
.y13{bottom:476.948527pt;}
.y3c{bottom:479.708903pt;}
.y85{bottom:480.708903pt;}
.y66{bottom:480.708944pt;}
.y17e{bottom:482.111570pt;}
.y218{bottom:483.456950pt;}
.y1eb{bottom:486.171630pt;}
.y1b2{bottom:486.173059pt;}
.y12b{bottom:487.424652pt;}
.yee{bottom:491.915482pt;}
.y12{bottom:492.948527pt;}
.y17d{bottom:494.772903pt;}
.y3b{bottom:495.708903pt;}
.y84{bottom:496.708903pt;}
.yc9{bottom:496.708944pt;}
.y1ea{bottom:498.832964pt;}
.y1b1{bottom:498.834392pt;}
.y217{bottom:502.832397pt;}
.y12a{bottom:503.552652pt;}
.y17c{bottom:507.434236pt;}
.yed{bottom:508.043482pt;}
.y11{bottom:508.948527pt;}
.y1e9{bottom:511.494297pt;}
.y1b0{bottom:511.495725pt;}
.y3a{bottom:511.708903pt;}
.y83{bottom:512.708903pt;}
.y65{bottom:512.708944pt;}
.y129{bottom:519.680652pt;}
.y17b{bottom:520.095570pt;}
.y216{bottom:522.207723pt;}
.y1e8{bottom:524.155630pt;}
.y1af{bottom:524.157059pt;}
.yec{bottom:524.171482pt;}
.y10{bottom:524.948527pt;}
.y13c{bottom:525.162665pt;}
.y39{bottom:527.708903pt;}
.y82{bottom:528.708903pt;}
.y17a{bottom:532.756903pt;}
.y150{bottom:533.258528pt;}
.y128{bottom:535.808652pt;}
.y1e7{bottom:536.816964pt;}
.y1ae{bottom:536.818392pt;}
.yeb{bottom:540.299482pt;}
.yf{bottom:540.948527pt;}
.y215{bottom:541.583049pt;}
.y38{bottom:543.708903pt;}
.y81{bottom:544.708903pt;}
.yc8{bottom:544.708944pt;}
.y179{bottom:545.418236pt;}
.y1e6{bottom:549.478297pt;}
.y1ad{bottom:549.479725pt;}
.y127{bottom:551.936652pt;}
.yea{bottom:556.427482pt;}
.ye{bottom:556.948527pt;}
.y178{bottom:558.079570pt;}
.y37{bottom:559.708903pt;}
.y64{bottom:560.708903pt;}
.y214{bottom:560.958252pt;}
.y1e5{bottom:562.139630pt;}
.y1ac{bottom:562.141059pt;}
.y126{bottom:568.064652pt;}
.y177{bottom:570.740903pt;}
.ye9{bottom:572.555482pt;}
.yd{bottom:572.948527pt;}
.y1e4{bottom:574.800964pt;}
.y1ab{bottom:574.802392pt;}
.y36{bottom:575.708903pt;}
.y213{bottom:576.072269pt;}
.y63{bottom:576.708903pt;}
.y176{bottom:583.402236pt;}
.y125{bottom:584.192652pt;}
.y1e3{bottom:587.462297pt;}
.y1aa{bottom:587.463725pt;}
.ye8{bottom:588.683482pt;}
.y35{bottom:591.708903pt;}
.y62{bottom:592.708903pt;}
.y212{bottom:593.000285pt;}
.y175{bottom:596.063570pt;}
.y1e2{bottom:600.123630pt;}
.y1a9{bottom:600.125059pt;}
.y124{bottom:600.320652pt;}
.ye7{bottom:604.811482pt;}
.y34{bottom:607.708903pt;}
.y61{bottom:608.708903pt;}
.y174{bottom:608.724903pt;}
.y1e1{bottom:612.784964pt;}
.y1a8{bottom:612.786392pt;}
.y211{bottom:614.215602pt;}
.yc{bottom:616.053063pt;}
.y123{bottom:616.448652pt;}
.y173{bottom:621.386236pt;}
.y33{bottom:623.708903pt;}
.y60{bottom:624.708903pt;}
.y1e0{bottom:625.446297pt;}
.y1a7{bottom:625.447725pt;}
.y210{bottom:626.876936pt;}
.yb{bottom:628.714396pt;}
.ye6{bottom:629.035482pt;}
.y122{bottom:632.576652pt;}
.y172{bottom:634.047570pt;}
.y1df{bottom:638.107630pt;}
.y1a6{bottom:638.109059pt;}
.y32{bottom:639.708903pt;}
.y5f{bottom:640.708903pt;}
.y20f{bottom:646.247602pt;}
.ye5{bottom:648.042277pt;}
.y121{bottom:648.704652pt;}
.y13d{bottom:650.165330pt;}
.y151{bottom:650.261193pt;}
.y1de{bottom:650.768964pt;}
.y1a5{bottom:650.770392pt;}
.y31{bottom:655.708903pt;}
.y5e{bottom:656.708903pt;}
.y20e{bottom:658.908936pt;}
.y171{bottom:660.052903pt;}
.ya{bottom:662.357463pt;}
.y1dd{bottom:663.430297pt;}
.y1a4{bottom:663.431725pt;}
.y120{bottom:664.832652pt;}
.y30{bottom:671.708903pt;}
.y5d{bottom:672.708903pt;}
.y170{bottom:672.714236pt;}
.y1dc{bottom:676.091630pt;}
.y1a3{bottom:676.093059pt;}
.y9{bottom:678.357503pt;}
.y11f{bottom:680.960652pt;}
.y16f{bottom:685.375570pt;}
.y13e{bottom:687.167996pt;}
.y2f{bottom:687.708903pt;}
.y5c{bottom:688.708903pt;}
.y1db{bottom:688.752964pt;}
.y1a2{bottom:688.754392pt;}
.y8{bottom:694.357503pt;}
.y152{bottom:695.263859pt;}
.y11e{bottom:697.088652pt;}
.y1da{bottom:701.414297pt;}
.y1a1{bottom:701.415725pt;}
.y2e{bottom:703.708903pt;}
.y5b{bottom:704.708903pt;}
.y16e{bottom:711.380903pt;}
.y11d{bottom:713.216652pt;}
.y1d9{bottom:714.075630pt;}
.y1a0{bottom:714.077059pt;}
.y2d{bottom:719.708903pt;}
.y5a{bottom:720.708903pt;}
.y16d{bottom:724.042236pt;}
.y1d8{bottom:726.736964pt;}
.y19f{bottom:726.738392pt;}
.y11c{bottom:729.344652pt;}
.y7{bottom:732.351581pt;}
.y2c{bottom:735.708903pt;}
.y59{bottom:736.708903pt;}
.y1d7{bottom:739.398297pt;}
.y19e{bottom:739.399725pt;}
.y11b{bottom:745.472652pt;}
.y2b{bottom:751.708903pt;}
.y1d6{bottom:752.059630pt;}
.y19d{bottom:752.061059pt;}
.y6{bottom:752.354248pt;}
.y58{bottom:752.708903pt;}
.y1d5{bottom:764.720964pt;}
.y19c{bottom:764.722392pt;}
.y2a{bottom:767.708903pt;}
.y57{bottom:768.708903pt;}
.y11a{bottom:770.368652pt;}
.y1d4{bottom:777.382297pt;}
.y19b{bottom:777.383725pt;}
.y56{bottom:784.708903pt;}
.y1d3{bottom:790.043630pt;}
.y19a{bottom:790.045059pt;}
.y119{bottom:790.047570pt;}
.y13f{bottom:791.370663pt;}
.y153{bottom:791.466526pt;}
.y29{bottom:799.708903pt;}
.y5{bottom:799.809082pt;}
.y55{bottom:800.708903pt;}
.y1d2{bottom:802.704964pt;}
.y199{bottom:802.706392pt;}
.y118{bottom:802.708903pt;}
.y3{bottom:822.992964pt;}
.y2{bottom:835.654297pt;}
.y28{bottom:836.018392pt;}
.h13{height:27.716267pt;}
.h2{height:30.080000pt;}
.h3{height:37.376000pt;}
.hd{height:39.594667pt;}
.h11{height:39.850667pt;}
.h5{height:41.514667pt;}
.h12{height:42.069333pt;}
.hf{height:43.648000pt;}
.h10{height:47.680000pt;}
.h4{height:48.766452pt;}
.ha{height:49.493333pt;}
.h8{height:51.893333pt;}
.h9{height:52.746667pt;}
.he{height:54.560000pt;}
.hc{height:55.978667pt;}
.h7{height:57.658667pt;}
.hb{height:58.021333pt;}
.h6{height:61.429333pt;}
.h1{height:888.000000pt;}
.h0{height:888.189333pt;}
.w0{width:585.826667pt;}
.w1{width:586.000000pt;}
.x0{left:0.000000pt;}
.x2{left:68.031469pt;}
.x5{left:69.996800pt;}
.x4{left:71.917603pt;}
.x9{left:76.031469pt;}
.x6{left:83.124808pt;}
.x5d{left:86.932800pt;}
.xa{left:88.692802pt;}
.x5c{left:90.708802pt;}
.x22{left:94.996133pt;}
.xb{left:108.371867pt;}
.x23{left:116.190800pt;}
.x45{left:121.033067pt;}
.xc{left:129.566533pt;}
.x55{left:131.753467pt;}
.x24{left:140.276132pt;}
.x46{left:145.929067pt;}
.x56{left:147.881467pt;}
.xd{left:154.451867pt;}
.x25{left:156.404132pt;}
.x47{left:162.057067pt;}
.x57{left:164.009467pt;}
.xe{left:170.579867pt;}
.x26{left:172.532132pt;}
.x48{left:178.185067pt;}
.x58{left:180.137467pt;}
.xf{left:186.707867pt;}
.x27{left:188.660132pt;}
.x49{left:194.313067pt;}
.x59{left:200.798800pt;}
.x10{left:202.835867pt;}
.x28{left:204.788132pt;}
.x4a{left:206.974400pt;}
.x11{left:218.963867pt;}
.x29{left:220.916132pt;}
.x34{left:222.992798pt;}
.x35{left:226.939465pt;}
.x12{left:235.091867pt;}
.x2a{left:237.044132pt;}
.x4b{left:239.241067pt;}
.x5a{left:250.249467pt;}
.x13{left:251.219867pt;}
.x2b{left:253.172132pt;}
.x4c{left:255.369067pt;}
.x14{left:267.347867pt;}
.x2c{left:269.300132pt;}
.x4d{left:271.497067pt;}
.x15{left:283.475867pt;}
.x2d{left:285.428132pt;}
.x4e{left:287.635733pt;}
.x16{left:299.603867pt;}
.x2e{left:301.556132pt;}
.x4f{left:303.763733pt;}
.x17{left:315.731867pt;}
.x2f{left:317.684132pt;}
.x50{left:319.891733pt;}
.x18{left:331.859867pt;}
.x30{left:333.812132pt;}
.x51{left:336.030400pt;}
.x19{left:347.987867pt;}
.x31{left:350.014799pt;}
.x52{left:352.158400pt;}
.x1a{left:364.115867pt;}
.x5b{left:366.697467pt;}
.x53{left:368.286400pt;}
.x32{left:372.585466pt;}
.x1b{left:380.243867pt;}
.x33{left:385.246799pt;}
.x36{left:391.139486pt;}
.x1c{left:396.371867pt;}
.x37{left:403.800819pt;}
.x54{left:409.747733pt;}
.x1d{left:412.499867pt;}
.x38{left:416.462152pt;}
.x40{left:420.472819pt;}
.x3d{left:425.806152pt;}
.x1e{left:428.638533pt;}
.x1{left:431.874146pt;}
.x41{left:433.134152pt;}
.x3e{left:438.467486pt;}
.x39{left:441.784819pt;}
.x1f{left:444.766533pt;}
.x42{left:445.795486pt;}
.x3f{left:451.128819pt;}
.x43{left:458.456819pt;}
.x7{left:461.139486pt;}
.x3{left:463.672526pt;}
.x44{left:471.118152pt;}
.x8{left:473.800819pt;}
.x20{left:477.022533pt;}
.x3a{left:490.467486pt;}
.x21{left:493.150533pt;}
.x3b{left:503.128819pt;}
.x3c{left:515.790152pt;}
}




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