
    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_0111a82e163a29c4c5230584.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_99a028ad7b8fff492fb1084a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e40d08b5e61c4910dc1d557c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7156fd069c469dc433074964.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.197000;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_7dfe0462acd59e4511374a34.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_07371ed350581320ea54159b.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_7eb6d29280ae9f520430505a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_9f863e4c258f1341e00b3612.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.213000;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_e9523a3cd3e96a0fe68b2daf.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_451fce770689b048b07c34b2.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.256000;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_451fce770689b048b07c34b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.256000;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_594faf313129e1c9a325797b.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.230000;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_bab895e2631417c00733486c.woff2')format("woff");}.ffe{font-family:ffe;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);}
.v2{vertical-align:-19.200073px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.lsb{letter-spacing:-1.776000px;}
.ls7{letter-spacing:-1.632000px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.576000px;}
.lsc{letter-spacing:0.960000px;}
.ls5{letter-spacing:1.199890px;}
.ls9{letter-spacing:1.199982px;}
.ls2{letter-spacing:1.200000px;}
.ls6{letter-spacing:1.200073px;}
.ls4{letter-spacing:1.200531px;}
.ls8{letter-spacing:1.200588px;}
.ls1{letter-spacing:3.360000px;}
.lse{letter-spacing:30.703191px;}
.ls3{letter-spacing:53.015435px;}
.lsa{letter-spacing:179.027412px;}
.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;}
}
.ws1c{word-spacing:-16.200000px;}
.wsc7{word-spacing:-15.000000px;}
.wsee{word-spacing:-13.332000px;}
.ws10a{word-spacing:-12.576000px;}
.ws3{word-spacing:-12.420000px;}
.ws2{word-spacing:-12.120000px;}
.ws83{word-spacing:-12.000000px;}
.wsf8{word-spacing:-11.340000px;}
.ws1{word-spacing:-9.408000px;}
.wsf5{word-spacing:-9.216000px;}
.ws4{word-spacing:-8.694000px;}
.ws139{word-spacing:-8.400000px;}
.wsb2{word-spacing:-6.180000px;}
.wsc3{word-spacing:-5.340000px;}
.ws11c{word-spacing:-5.040000px;}
.wsdc{word-spacing:-4.620000px;}
.ws7e{word-spacing:-4.500000px;}
.ws94{word-spacing:-4.260000px;}
.ws99{word-spacing:-3.660000px;}
.ws1f{word-spacing:-3.300000px;}
.wsb7{word-spacing:-3.180000px;}
.wsb6{word-spacing:-3.060000px;}
.ws7a{word-spacing:-3.000000px;}
.ws95{word-spacing:-2.940000px;}
.wsb1{word-spacing:-2.880000px;}
.wsd2{word-spacing:-2.820000px;}
.wsb8{word-spacing:-2.760000px;}
.ws72{word-spacing:-2.700000px;}
.wscd{word-spacing:-2.640000px;}
.ws5e{word-spacing:-2.580000px;}
.ws7b{word-spacing:-2.520000px;}
.wsbf{word-spacing:-2.460000px;}
.wsa7{word-spacing:-2.400000px;}
.ws37{word-spacing:-2.340000px;}
.wsbb{word-spacing:-2.280000px;}
.ws9f{word-spacing:-2.220000px;}
.wse8{word-spacing:-2.160000px;}
.ws108{word-spacing:-2.064000px;}
.wsa8{word-spacing:-2.040000px;}
.ws128{word-spacing:-2.016000px;}
.ws44{word-spacing:-1.980000px;}
.ws111{word-spacing:-1.968000px;}
.wse0{word-spacing:-1.920000px;}
.ws135{word-spacing:-1.872000px;}
.ws7d{word-spacing:-1.860000px;}
.wse3{word-spacing:-1.800000px;}
.ws64{word-spacing:-1.740000px;}
.ws3c{word-spacing:-1.680000px;}
.wsaf{word-spacing:-1.620000px;}
.wsbd{word-spacing:-1.560000px;}
.ws42{word-spacing:-1.500000px;}
.ws51{word-spacing:-1.440000px;}
.ws100{word-spacing:-1.392000px;}
.wsa1{word-spacing:-1.380000px;}
.ws132{word-spacing:-1.344000px;}
.ws34{word-spacing:-1.320000px;}
.ws102{word-spacing:-1.296000px;}
.ws22{word-spacing:-1.260000px;}
.wse{word-spacing:-1.200000px;}
.ws109{word-spacing:-1.152000px;}
.ws78{word-spacing:-1.140000px;}
.ws11f{word-spacing:-1.104000px;}
.ws4c{word-spacing:-1.080000px;}
.ws6a{word-spacing:-1.020000px;}
.wscf{word-spacing:-0.960000px;}
.ws9a{word-spacing:-0.900000px;}
.wsf3{word-spacing:-0.864000px;}
.ws3d{word-spacing:-0.840000px;}
.ws107{word-spacing:-0.816000px;}
.ws47{word-spacing:-0.720000px;}
.ws2c{word-spacing:-0.660000px;}
.ws129{word-spacing:-0.624000px;}
.wsd9{word-spacing:-0.600000px;}
.wsb9{word-spacing:-0.540000px;}
.ws5{word-spacing:-0.480000px;}
.ws115{word-spacing:-0.432000px;}
.ws2d{word-spacing:-0.420000px;}
.ws3b{word-spacing:-0.360000px;}
.ws90{word-spacing:-0.300000px;}
.ws113{word-spacing:-0.288000px;}
.wsfa{word-spacing:-0.240000px;}
.wsf9{word-spacing:-0.192000px;}
.ws4e{word-spacing:-0.180000px;}
.wsf6{word-spacing:-0.144000px;}
.ws88{word-spacing:-0.120000px;}
.wsed{word-spacing:-0.048000px;}
.ws0{word-spacing:0.000000px;}
.wsf7{word-spacing:0.048000px;}
.ws24{word-spacing:0.060000px;}
.ws131{word-spacing:0.096000px;}
.ws60{word-spacing:0.120000px;}
.ws119{word-spacing:0.144000px;}
.wsda{word-spacing:0.180000px;}
.ws123{word-spacing:0.192000px;}
.ws38{word-spacing:0.240000px;}
.ws137{word-spacing:0.288000px;}
.ws2a{word-spacing:0.300000px;}
.ws125{word-spacing:0.336000px;}
.wsc1{word-spacing:0.360000px;}
.ws126{word-spacing:0.384000px;}
.ws96{word-spacing:0.420000px;}
.wsab{word-spacing:0.480000px;}
.wsac{word-spacing:0.540000px;}
.wsc6{word-spacing:0.600000px;}
.wscb{word-spacing:0.660000px;}
.wsd7{word-spacing:0.720000px;}
.ws71{word-spacing:0.780000px;}
.ws117{word-spacing:0.816000px;}
.ws61{word-spacing:0.840000px;}
.ws8d{word-spacing:0.900000px;}
.ws43{word-spacing:0.960000px;}
.ws40{word-spacing:1.020000px;}
.wsd4{word-spacing:1.080000px;}
.ws7f{word-spacing:1.140000px;}
.ws2e{word-spacing:1.200000px;}
.wsc8{word-spacing:1.260000px;}
.ws17{word-spacing:1.320000px;}
.ws59{word-spacing:1.380000px;}
.ws133{word-spacing:1.392000px;}
.wsb5{word-spacing:1.440000px;}
.wsff{word-spacing:1.488000px;}
.ws5f{word-spacing:1.500000px;}
.ws118{word-spacing:1.536000px;}
.wsba{word-spacing:1.560000px;}
.ws116{word-spacing:1.584000px;}
.ws2b{word-spacing:1.620000px;}
.ws9c{word-spacing:1.632000px;}
.ws33{word-spacing:1.680000px;}
.wsae{word-spacing:1.740000px;}
.wsfb{word-spacing:1.776000px;}
.wsa0{word-spacing:1.800000px;}
.ws10f{word-spacing:1.824000px;}
.ws35{word-spacing:1.860000px;}
.ws5a{word-spacing:1.920000px;}
.wsc9{word-spacing:1.980000px;}
.ws12e{word-spacing:2.016000px;}
.ws5b{word-spacing:2.040000px;}
.ws10c{word-spacing:2.064000px;}
.ws76{word-spacing:2.100000px;}
.wsa{word-spacing:2.160000px;}
.wsc2{word-spacing:2.220000px;}
.ws23{word-spacing:2.280000px;}
.ws6e{word-spacing:2.340000px;}
.ws138{word-spacing:2.352000px;}
.ws4f{word-spacing:2.400000px;}
.wsd8{word-spacing:2.460000px;}
.ws112{word-spacing:2.496000px;}
.ws27{word-spacing:2.520000px;}
.ws121{word-spacing:2.544000px;}
.ws79{word-spacing:2.580000px;}
.ws114{word-spacing:2.592000px;}
.ws9{word-spacing:2.640000px;}
.ws30{word-spacing:2.700000px;}
.ws124{word-spacing:2.736000px;}
.ws86{word-spacing:2.760000px;}
.ws3f{word-spacing:2.820000px;}
.ws1d{word-spacing:2.832000px;}
.wsc4{word-spacing:2.880000px;}
.ws127{word-spacing:2.928000px;}
.wsb3{word-spacing:2.940000px;}
.ws19{word-spacing:3.000000px;}
.wsa4{word-spacing:3.060000px;}
.wsa6{word-spacing:3.120000px;}
.ws7{word-spacing:3.180000px;}
.ws10b{word-spacing:3.216000px;}
.ws50{word-spacing:3.240000px;}
.ws32{word-spacing:3.300000px;}
.ws46{word-spacing:3.420000px;}
.wsfc{word-spacing:3.456000px;}
.ws1b{word-spacing:3.480000px;}
.ws39{word-spacing:3.540000px;}
.ws122{word-spacing:3.552000px;}
.ws18{word-spacing:3.600000px;}
.ws12b{word-spacing:3.648000px;}
.ws70{word-spacing:3.660000px;}
.wsa3{word-spacing:3.720000px;}
.ws97{word-spacing:3.780000px;}
.ws4d{word-spacing:3.900000px;}
.ws80{word-spacing:3.960000px;}
.ws12c{word-spacing:3.984000px;}
.ws2f{word-spacing:4.020000px;}
.wsb{word-spacing:4.080000px;}
.ws66{word-spacing:4.140000px;}
.wse6{word-spacing:4.200000px;}
.ws134{word-spacing:4.224000px;}
.ws82{word-spacing:4.260000px;}
.ws55{word-spacing:4.320000px;}
.ws6f{word-spacing:4.380000px;}
.wsfe{word-spacing:4.416000px;}
.ws63{word-spacing:4.440000px;}
.ws110{word-spacing:4.464000px;}
.ws1a{word-spacing:4.500000px;}
.wse1{word-spacing:4.560000px;}
.ws48{word-spacing:4.620000px;}
.ws8c{word-spacing:4.680000px;}
.ws130{word-spacing:4.704000px;}
.ws49{word-spacing:4.740000px;}
.ws77{word-spacing:4.800000px;}
.ws11d{word-spacing:4.848000px;}
.ws92{word-spacing:4.860000px;}
.ws105{word-spacing:4.896000px;}
.wsbe{word-spacing:4.920000px;}
.ws12d{word-spacing:4.944000px;}
.ws74{word-spacing:4.980000px;}
.ws9d{word-spacing:5.040000px;}
.wsc5{word-spacing:5.100000px;}
.ws12{word-spacing:5.160000px;}
.ws11e{word-spacing:5.184000px;}
.ws8e{word-spacing:5.220000px;}
.ws14{word-spacing:5.280000px;}
.ws45{word-spacing:5.340000px;}
.ws3e{word-spacing:5.400000px;}
.ws29{word-spacing:5.460000px;}
.ws67{word-spacing:5.520000px;}
.ws10e{word-spacing:5.568000px;}
.ws6{word-spacing:5.580000px;}
.ws7c{word-spacing:5.640000px;}
.ws136{word-spacing:5.664000px;}
.ws20{word-spacing:5.760000px;}
.ws16{word-spacing:5.820000px;}
.ws73{word-spacing:5.880000px;}
.ws11a{word-spacing:5.904000px;}
.ws84{word-spacing:5.940000px;}
.ws89{word-spacing:6.000000px;}
.ws106{word-spacing:6.048000px;}
.ws8b{word-spacing:6.060000px;}
.ws65{word-spacing:6.120000px;}
.ws13{word-spacing:6.180000px;}
.ws36{word-spacing:6.240000px;}
.ws91{word-spacing:6.300000px;}
.ws68{word-spacing:6.360000px;}
.wsd3{word-spacing:6.420000px;}
.ws31{word-spacing:6.480000px;}
.ws5c{word-spacing:6.540000px;}
.ws62{word-spacing:6.600000px;}
.wsfd{word-spacing:6.624000px;}
.ws69{word-spacing:6.660000px;}
.ws12a{word-spacing:6.672000px;}
.wsd5{word-spacing:6.720000px;}
.wsb0{word-spacing:6.780000px;}
.ws75{word-spacing:6.840000px;}
.wsad{word-spacing:6.900000px;}
.wsf{word-spacing:6.960000px;}
.ws8{word-spacing:7.020000px;}
.ws5d{word-spacing:7.080000px;}
.wsd{word-spacing:7.200000px;}
.wsdb{word-spacing:7.260000px;}
.ws58{word-spacing:7.320000px;}
.wse2{word-spacing:7.380000px;}
.ws57{word-spacing:7.440000px;}
.ws6c{word-spacing:7.500000px;}
.ws52{word-spacing:7.620000px;}
.ws12f{word-spacing:7.728000px;}
.ws3a{word-spacing:7.740000px;}
.wsec{word-spacing:7.860000px;}
.ws4b{word-spacing:7.920000px;}
.wseb{word-spacing:7.980000px;}
.wsc0{word-spacing:8.040000px;}
.wscc{word-spacing:8.100000px;}
.wsa5{word-spacing:8.220000px;}
.ws21{word-spacing:8.280000px;}
.wsd6{word-spacing:8.340000px;}
.ws41{word-spacing:8.520000px;}
.ws6b{word-spacing:8.580000px;}
.ws6d{word-spacing:8.640000px;}
.wsbc{word-spacing:8.700000px;}
.ws8a{word-spacing:8.760000px;}
.ws9e{word-spacing:8.820000px;}
.ws101{word-spacing:8.832000px;}
.ws8f{word-spacing:8.880000px;}
.wsd0{word-spacing:8.940000px;}
.wsca{word-spacing:9.060000px;}
.wsdd{word-spacing:9.120000px;}
.ws10d{word-spacing:9.168000px;}
.ws56{word-spacing:9.300000px;}
.ws11b{word-spacing:9.360000px;}
.ws4a{word-spacing:9.420000px;}
.ws98{word-spacing:9.480000px;}
.wsb4{word-spacing:9.540000px;}
.wsa2{word-spacing:9.660000px;}
.wsce{word-spacing:9.780000px;}
.ws53{word-spacing:9.840000px;}
.wsa9{word-spacing:9.900000px;}
.ws104{word-spacing:10.080000px;}
.wsaa{word-spacing:10.200000px;}
.ws28{word-spacing:10.260000px;}
.ws11{word-spacing:10.500000px;}
.wse7{word-spacing:10.620000px;}
.ws120{word-spacing:10.800000px;}
.wse5{word-spacing:10.920000px;}
.wsde{word-spacing:10.980000px;}
.ws10{word-spacing:11.160000px;}
.ws103{word-spacing:11.424000px;}
.wsd1{word-spacing:11.460000px;}
.wse9{word-spacing:11.580000px;}
.ws25{word-spacing:11.640000px;}
.ws85{word-spacing:11.700000px;}
.ws26{word-spacing:12.000000px;}
.wsdf{word-spacing:12.060000px;}
.ws81{word-spacing:12.180000px;}
.wsc{word-spacing:12.420000px;}
.wse4{word-spacing:13.140000px;}
.ws15{word-spacing:13.500000px;}
.ws54{word-spacing:13.560000px;}
.ws93{word-spacing:16.380000px;}
.wsea{word-spacing:16.800000px;}
.ws1e{word-spacing:19.668000px;}
.ws87{word-spacing:29.460000px;}
.wsef{word-spacing:76.458656px;}
.wsf2{word-spacing:81.786656px;}
.wsf0{word-spacing:113.828985px;}
.wsf1{word-spacing:148.355412px;}
.wsf4{word-spacing:192.078644px;}
.ws9b{word-spacing:209.949603px;}
._32{margin-left:-66.351585px;}
._1a{margin-left:-7.776000px;}
._5{margin-left:-6.672000px;}
._1b{margin-left:-5.349571px;}
._0{margin-left:-3.892800px;}
._2{margin-left:-2.413200px;}
._1{margin-left:-1.020000px;}
._4{width:1.207200px;}
._9{width:2.252400px;}
._c{width:3.815999px;}
._7{width:5.004000px;}
._a{width:6.138000px;}
._3{width:7.374000px;}
._d{width:8.453999px;}
._b{width:9.456000px;}
._10{width:10.476000px;}
._6{width:11.910000px;}
._f{width:13.704000px;}
._2f{width:14.784001px;}
._1c{width:16.302000px;}
._8{width:17.518203px;}
._e{width:18.660000px;}
._11{width:19.668000px;}
._31{width:21.043200px;}
._30{width:22.584000px;}
._29{width:45.279522px;}
._33{width:56.255991px;}
._1f{width:75.059412px;}
._24{width:77.876985px;}
._25{width:93.786656px;}
._28{width:125.828985px;}
._26{width:134.559522px;}
._27{width:155.027412px;}
._22{width:179.027412px;}
._23{width:204.078644px;}
._2d{width:222.181746px;}
._1d{width:226.913424px;}
._2b{width:248.965746px;}
._18{width:253.324830px;}
._2e{width:259.477746px;}
._17{width:267.310198px;}
._2c{width:275.605746px;}
._14{width:283.294198px;}
._21{width:288.639522px;}
._16{width:292.090348px;}
._2a{width:418.213746px;}
._15{width:437.032830px;}
._20{width:526.225708px;}
._12{width:873.384625px;}
._1e{width:1075.965486px;}
._19{width:1338.586348px;}
._13{width:1641.226348px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:33.600000px;}
.fs4{font-size:42.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:66.000000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:78.000000px;}
.fs7{font-size:90.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y47{bottom:46.736100px;}
.y75{bottom:46.771650px;}
.y5{bottom:66.525004px;}
.y77{bottom:90.001350px;}
.y46{bottom:90.001499px;}
.y74{bottom:90.425102px;}
.y4{bottom:97.125005px;}
.y14e{bottom:97.854904px;}
.y73{bottom:108.425102px;}
.y14d{bottom:112.104904px;}
.yb6{bottom:112.713902px;}
.y114{bottom:117.425102px;}
.y14c{bottom:126.354904px;}
.y72{bottom:126.425102px;}
.yb5{bottom:126.963902px;}
.y113{bottom:131.675102px;}
.y21{bottom:139.264499px;}
.y14b{bottom:140.604904px;}
.yb4{bottom:143.788055px;}
.y71{bottom:144.425102px;}
.y112{bottom:145.925102px;}
.y40{bottom:153.578705px;}
.y14a{bottom:154.854904px;}
.yb3{bottom:158.038055px;}
.ye5{bottom:159.476246px;}
.y111{bottom:160.175102px;}
.y70{bottom:162.425102px;}
.y7f{bottom:164.820900px;}
.y7e{bottom:164.821049px;}
.y149{bottom:169.104904px;}
.y150{bottom:169.479904px;}
.y3f{bottom:171.578705px;}
.ye4{bottom:173.726246px;}
.y110{bottom:174.425102px;}
.yb2{bottom:174.862347px;}
.y6f{bottom:180.425102px;}
.y148{bottom:183.354904px;}
.y14f{bottom:183.729904px;}
.y10f{bottom:188.675102px;}
.yb1{bottom:189.112347px;}
.y3e{bottom:189.578705px;}
.y18{bottom:196.933500px;}
.y147{bottom:197.604904px;}
.y6e{bottom:198.425102px;}
.y10e{bottom:202.925102px;}
.yb0{bottom:203.362358px;}
.ye3{bottom:205.976257px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y146{bottom:211.854904px;}
.y6d{bottom:216.425102px;}
.y10d{bottom:217.175102px;}
.yaf{bottom:217.612358px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y3d{bottom:225.578705px;}
.y81{bottom:225.701706px;}
.y145{bottom:226.104904px;}
.y10c{bottom:231.425102px;}
.yae{bottom:231.862358px;}
.y6c{bottom:234.425102px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.ye2{bottom:238.226257px;}
.y144{bottom:240.354904px;}
.y10b{bottom:245.675102px;}
.yad{bottom:246.112358px;}
.y6b{bottom:252.425102px;}
.ye1{bottom:252.476257px;}
.y143{bottom:254.604904px;}
.y1d{bottom:259.918497px;}
.y10a{bottom:259.925102px;}
.y14{bottom:259.933500px;}
.yac{bottom:260.362358px;}
.y3c{bottom:261.578705px;}
.ye0{bottom:266.726257px;}
.y78{bottom:267.601204px;}
.y142{bottom:268.854904px;}
.y6a{bottom:270.425102px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y109{bottom:274.175102px;}
.yab{bottom:277.186661px;}
.y3b{bottom:279.578705px;}
.ydf{bottom:280.976257px;}
.y141{bottom:283.104904px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y69{bottom:288.425102px;}
.yaa{bottom:291.436661px;}
.y140{bottom:297.354904px;}
.y3a{bottom:297.578705px;}
.y108{bottom:302.675102px;}
.y68{bottom:306.425102px;}
.ya9{bottom:308.260803px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y13f{bottom:311.604904px;}
.yde{bottom:311.903389px;}
.y39{bottom:315.578705px;}
.y107{bottom:316.925102px;}
.ya8{bottom:322.510803px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y67{bottom:324.425102px;}
.y13e{bottom:325.854904px;}
.ydd{bottom:326.153389px;}
.y106{bottom:331.175102px;}
.y38{bottom:333.578705px;}
.ya7{bottom:336.760803px;}
.y13d{bottom:340.104904px;}
.y66{bottom:342.425102px;}
.ydc{bottom:342.977692px;}
.y105{bottom:345.425102px;}
.yf{bottom:348.133500px;}
.ya6{bottom:351.010803px;}
.y37{bottom:351.578705px;}
.y13c{bottom:354.354904px;}
.ydb{bottom:357.227692px;}
.y104{bottom:359.675102px;}
.y65{bottom:360.425102px;}
.ya5{bottom:365.260803px;}
.y13b{bottom:368.604904px;}
.y36{bottom:369.578705px;}
.yda{bottom:371.477692px;}
.y103{bottom:373.925102px;}
.y64{bottom:378.425102px;}
.ya4{bottom:379.510803px;}
.y13a{bottom:382.854904px;}
.yd9{bottom:385.727692px;}
.ye{bottom:386.785499px;}
.y35{bottom:387.578705px;}
.y102{bottom:388.175079px;}
.ya3{bottom:393.760803px;}
.y63{bottom:396.425079px;}
.y139{bottom:397.104904px;}
.y101{bottom:402.425079px;}
.yd8{bottom:402.552017px;}
.y34{bottom:405.578705px;}
.y7d{bottom:406.495056px;}
.ya2{bottom:408.010803px;}
.yd{bottom:408.044999px;}
.y138{bottom:411.354904px;}
.y62{bottom:414.425079px;}
.y100{bottom:416.675079px;}
.yd7{bottom:416.802017px;}
.ya1{bottom:422.260803px;}
.y33{bottom:423.578705px;}
.y137{bottom:425.604904px;}
.yff{bottom:430.925079px;}
.y61{bottom:432.425079px;}
.yd6{bottom:433.626160px;}
.ya0{bottom:436.510803px;}
.y136{bottom:439.854904px;}
.y32{bottom:441.578705px;}
.yfe{bottom:445.175079px;}
.yd5{bottom:447.876160px;}
.y60{bottom:450.425079px;}
.y9f{bottom:450.760803px;}
.y135{bottom:454.104904px;}
.yfd{bottom:459.425079px;}
.y31{bottom:459.578705px;}
.yd4{bottom:462.126160px;}
.y9e{bottom:465.010803px;}
.y134{bottom:468.354904px;}
.y5f{bottom:468.425079px;}
.yfc{bottom:473.675079px;}
.yd3{bottom:476.376160px;}
.y30{bottom:477.578705px;}
.y9d{bottom:481.835083px;}
.y133{bottom:482.604904px;}
.y5e{bottom:486.425079px;}
.yfb{bottom:487.925079px;}
.yd2{bottom:490.626160px;}
.y2f{bottom:495.578705px;}
.y9c{bottom:496.085083px;}
.y132{bottom:496.854904px;}
.yfa{bottom:502.175079px;}
.yc{bottom:502.864502px;}
.y5d{bottom:504.425079px;}
.yd1{bottom:504.876160px;}
.y131{bottom:511.104904px;}
.y9b{bottom:512.909409px;}
.y2e{bottom:513.578705px;}
.yf9{bottom:516.425079px;}
.yb{bottom:520.864502px;}
.yd0{bottom:521.700439px;}
.y5c{bottom:522.425079px;}
.y130{bottom:525.354904px;}
.y9a{bottom:527.159409px;}
.yf8{bottom:530.675079px;}
.y2d{bottom:531.578705px;}
.ycf{bottom:535.950439px;}
.ya{bottom:538.864499px;}
.y12f{bottom:539.604904px;}
.y5b{bottom:540.425079px;}
.y99{bottom:541.409409px;}
.yf7{bottom:544.925079px;}
.y2c{bottom:549.578705px;}
.yce{bottom:552.774765px;}
.y12e{bottom:553.854904px;}
.y9{bottom:556.864499px;}
.y98{bottom:558.233688px;}
.y5a{bottom:558.425079px;}
.yf6{bottom:559.175079px;}
.ycd{bottom:567.024765px;}
.y2b{bottom:567.578705px;}
.y12d{bottom:568.104904px;}
.y97{bottom:572.483688px;}
.yf5{bottom:573.425079px;}
.y59{bottom:576.425079px;}
.y12c{bottom:582.354904px;}
.ycc{bottom:583.848907px;}
.y2a{bottom:585.578705px;}
.yf4{bottom:587.675079px;}
.y96{bottom:589.307831px;}
.y58{bottom:594.425079px;}
.y82{bottom:596.345078px;}
.y12b{bottom:596.604904px;}
.ycb{bottom:598.098907px;}
.yf3{bottom:601.925079px;}
.y95{bottom:603.557831px;}
.y29{bottom:603.578705px;}
.y80{bottom:607.744629px;}
.y12a{bottom:610.854904px;}
.yca{bottom:612.348907px;}
.y57{bottom:612.425079px;}
.yf2{bottom:616.175079px;}
.y94{bottom:617.807831px;}
.y28{bottom:621.578705px;}
.y129{bottom:625.104904px;}
.yc9{bottom:629.173187px;}
.y56{bottom:630.425079px;}
.y93{bottom:634.632156px;}
.y128{bottom:639.354904px;}
.y27{bottom:639.578705px;}
.y8{bottom:645.510000px;}
.y55{bottom:648.425079px;}
.y92{bottom:648.882156px;}
.y127{bottom:653.604904px;}
.y26{bottom:657.578705px;}
.y91{bottom:663.132156px;}
.y54{bottom:666.425079px;}
.y7{bottom:666.771000px;}
.y126{bottom:667.854904px;}
.yc8{bottom:675.233688px;}
.y25{bottom:675.578705px;}
.y90{bottom:679.956436px;}
.y125{bottom:682.104904px;}
.y53{bottom:684.425079px;}
.yc7{bottom:689.483688px;}
.y8f{bottom:694.206436px;}
.y124{bottom:696.354904px;}
.y79{bottom:699.184799px;}
.y158{bottom:701.793320px;}
.y52{bottom:702.425079px;}
.yc6{bottom:703.733688px;}
.y8e{bottom:708.456436px;}
.y123{bottom:710.604904px;}
.yf1{bottom:714.427963px;}
.y51{bottom:720.425079px;}
.yc5{bottom:720.557831px;}
.y157{bottom:720.843292px;}
.y8d{bottom:722.706436px;}
.y122{bottom:724.854904px;}
.y42{bottom:725.096420px;}
.y6{bottom:726.298500px;}
.yf0{bottom:728.677963px;}
.yc4{bottom:734.807831px;}
.y8c{bottom:736.956436px;}
.y156{bottom:737.793320px;}
.y50{bottom:738.425079px;}
.y121{bottom:739.104904px;}
.y41{bottom:739.346420px;}
.yef{bottom:742.927963px;}
.y8b{bottom:751.206436px;}
.yc3{bottom:751.632156px;}
.y3{bottom:752.599495px;}
.y120{bottom:753.354904px;}
.y4f{bottom:756.425079px;}
.y155{bottom:756.843292px;}
.yee{bottom:757.177963px;}
.y7b{bottom:763.984955px;}
.y8a{bottom:765.456436px;}
.yc2{bottom:765.882156px;}
.y11f{bottom:767.604904px;}
.yed{bottom:771.427917px;}
.y154{bottom:773.793274px;}
.y4e{bottom:774.425079px;}
.y89{bottom:779.706482px;}
.yc1{bottom:780.132111px;}
.y45{bottom:781.237244px;}
.y11e{bottom:781.854858px;}
.yec{bottom:785.677917px;}
.y4d{bottom:792.425079px;}
.y153{bottom:792.843292px;}
.yc0{bottom:794.382111px;}
.y11d{bottom:796.104858px;}
.y88{bottom:797.274719px;}
.y86{bottom:799.849091px;}
.yeb{bottom:799.927917px;}
.ybf{bottom:808.632111px;}
.y11c{bottom:810.354858px;}
.y4c{bottom:810.425079px;}
.y87{bottom:811.524719px;}
.y85{bottom:814.099091px;}
.yea{bottom:814.177917px;}
.y152{bottom:817.175079px;}
.y44{bottom:823.686035px;}
.y11b{bottom:824.604858px;}
.ybe{bottom:825.456482px;}
.y84{bottom:828.349091px;}
.y4b{bottom:828.425079px;}
.ye9{bottom:828.427917px;}
.y151{bottom:831.425079px;}
.y11a{bottom:838.854858px;}
.ybd{bottom:839.706482px;}
.y83{bottom:845.173187px;}
.y43{bottom:846.186035px;}
.y4a{bottom:846.425079px;}
.y119{bottom:853.104858px;}
.ybc{bottom:857.274719px;}
.yba{bottom:859.849091px;}
.ye8{bottom:860.676636px;}
.y49{bottom:864.425079px;}
.y7c{bottom:866.121643px;}
.y118{bottom:867.354858px;}
.ybb{bottom:871.524719px;}
.yb9{bottom:874.099091px;}
.ye7{bottom:874.926636px;}
.y2{bottom:879.369000px;}
.y117{bottom:881.604858px;}
.y76{bottom:882.425079px;}
.yb8{bottom:888.349091px;}
.y116{bottom:895.854858px;}
.y22{bottom:899.681122px;}
.y48{bottom:900.425079px;}
.yb7{bottom:905.173187px;}
.y7a{bottom:905.944611px;}
.ye6{bottom:907.175079px;}
.y115{bottom:910.104858px;}
.y24{bottom:924.938965px;}
.y23{bottom:939.188965px;}
.y1{bottom:966.726000px;}
.h18{height:29.482031px;}
.h7{height:32.130000px;}
.h11{height:42.117188px;}
.hb{height:45.456000px;}
.h6{height:45.900000px;}
.h15{height:46.224000px;}
.ha{height:46.656000px;}
.h17{height:47.472000px;}
.h3{height:48.195000px;}
.hd{height:52.646484px;}
.h2{height:55.080000px;}
.he{height:57.780000px;}
.h14{height:58.800000px;}
.hc{height:59.340000px;}
.h16{height:63.175781px;}
.h10{height:64.824000px;}
.h13{height:65.274000px;}
.h12{height:72.000000px;}
.hf{height:75.114000px;}
.h5{height:78.030000px;}
.h4{height:119.055004px;}
.h9{height:999.000000px;}
.h8{height:999.213000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w3{width:659.055000px;}
.w4{width:659.250000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:76.535402px;}
.x5{left:80.907303px;}
.x33{left:90.123299px;}
.x9{left:93.543303px;}
.x34{left:97.795200px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x2b{left:127.292255px;}
.x2c{left:190.306046px;}
.x31{left:196.306046px;}
.x4{left:203.484001px;}
.x19{left:205.882210px;}
.x1a{left:222.706490px;}
.x32{left:227.084839px;}
.xb{left:233.095207px;}
.x1b{left:240.274796px;}
.xc{left:249.919350px;}
.x2d{left:253.325706px;}
.x1c{left:254.524796px;}
.xd{left:267.487793px;}
.x1d{left:268.774796px;}
.xe{left:281.737793px;}
.x1e{left:283.024796px;}
.xf{left:295.987793px;}
.x1f{left:297.274796px;}
.x10{left:312.811958px;}
.x20{left:314.099098px;}
.x21{left:328.349098px;}
.x11{left:329.636261px;}
.x22{left:342.599098px;}
.x12{left:346.460541px;}
.x23{left:356.849098px;}
.x13{left:360.710541px;}
.x24{left:373.673241px;}
.x14{left:374.960541px;}
.x25{left:387.923264px;}
.x15{left:389.210541px;}
.x26{left:402.173264px;}
.x16{left:403.460541px;}
.x2e{left:406.473587px;}
.x27{left:418.997543px;}
.x17{left:420.284683px;}
.x28{left:433.247543px;}
.x18{left:434.534683px;}
.x29{left:447.497543px;}
.x3{left:454.959000px;}
.x2a{left:461.747543px;}
.x2f{left:470.594833px;}
.x7{left:521.162704px;}
.x8{left:522.936310px;}
.x30{left:540.025497px;}
.xa{left:565.923019px;}
@media print{
.v2{vertical-align:-17.066732pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.lsb{letter-spacing:-1.578667pt;}
.ls7{letter-spacing:-1.450667pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.512000pt;}
.lsc{letter-spacing:0.853333pt;}
.ls5{letter-spacing:1.066569pt;}
.ls9{letter-spacing:1.066650pt;}
.ls2{letter-spacing:1.066667pt;}
.ls6{letter-spacing:1.066732pt;}
.ls4{letter-spacing:1.067139pt;}
.ls8{letter-spacing:1.067189pt;}
.ls1{letter-spacing:2.986667pt;}
.lse{letter-spacing:27.291725pt;}
.ls3{letter-spacing:47.124831pt;}
.lsa{letter-spacing:159.135478pt;}
.ws1c{word-spacing:-14.400000pt;}
.wsc7{word-spacing:-13.333333pt;}
.wsee{word-spacing:-11.850667pt;}
.ws10a{word-spacing:-11.178667pt;}
.ws3{word-spacing:-11.040000pt;}
.ws2{word-spacing:-10.773333pt;}
.ws83{word-spacing:-10.666667pt;}
.wsf8{word-spacing:-10.080000pt;}
.ws1{word-spacing:-8.362667pt;}
.wsf5{word-spacing:-8.192000pt;}
.ws4{word-spacing:-7.728000pt;}
.ws139{word-spacing:-7.466667pt;}
.wsb2{word-spacing:-5.493333pt;}
.wsc3{word-spacing:-4.746667pt;}
.ws11c{word-spacing:-4.480000pt;}
.wsdc{word-spacing:-4.106667pt;}
.ws7e{word-spacing:-4.000000pt;}
.ws94{word-spacing:-3.786667pt;}
.ws99{word-spacing:-3.253333pt;}
.ws1f{word-spacing:-2.933333pt;}
.wsb7{word-spacing:-2.826667pt;}
.wsb6{word-spacing:-2.720000pt;}
.ws7a{word-spacing:-2.666667pt;}
.ws95{word-spacing:-2.613333pt;}
.wsb1{word-spacing:-2.560000pt;}
.wsd2{word-spacing:-2.506667pt;}
.wsb8{word-spacing:-2.453333pt;}
.ws72{word-spacing:-2.400000pt;}
.wscd{word-spacing:-2.346667pt;}
.ws5e{word-spacing:-2.293333pt;}
.ws7b{word-spacing:-2.240000pt;}
.wsbf{word-spacing:-2.186667pt;}
.wsa7{word-spacing:-2.133333pt;}
.ws37{word-spacing:-2.080000pt;}
.wsbb{word-spacing:-2.026667pt;}
.ws9f{word-spacing:-1.973333pt;}
.wse8{word-spacing:-1.920000pt;}
.ws108{word-spacing:-1.834667pt;}
.wsa8{word-spacing:-1.813333pt;}
.ws128{word-spacing:-1.792000pt;}
.ws44{word-spacing:-1.760000pt;}
.ws111{word-spacing:-1.749333pt;}
.wse0{word-spacing:-1.706667pt;}
.ws135{word-spacing:-1.664000pt;}
.ws7d{word-spacing:-1.653333pt;}
.wse3{word-spacing:-1.600000pt;}
.ws64{word-spacing:-1.546667pt;}
.ws3c{word-spacing:-1.493333pt;}
.wsaf{word-spacing:-1.440000pt;}
.wsbd{word-spacing:-1.386667pt;}
.ws42{word-spacing:-1.333333pt;}
.ws51{word-spacing:-1.280000pt;}
.ws100{word-spacing:-1.237333pt;}
.wsa1{word-spacing:-1.226667pt;}
.ws132{word-spacing:-1.194667pt;}
.ws34{word-spacing:-1.173333pt;}
.ws102{word-spacing:-1.152000pt;}
.ws22{word-spacing:-1.120000pt;}
.wse{word-spacing:-1.066667pt;}
.ws109{word-spacing:-1.024000pt;}
.ws78{word-spacing:-1.013333pt;}
.ws11f{word-spacing:-0.981333pt;}
.ws4c{word-spacing:-0.960000pt;}
.ws6a{word-spacing:-0.906667pt;}
.wscf{word-spacing:-0.853333pt;}
.ws9a{word-spacing:-0.800000pt;}
.wsf3{word-spacing:-0.768000pt;}
.ws3d{word-spacing:-0.746667pt;}
.ws107{word-spacing:-0.725333pt;}
.ws47{word-spacing:-0.640000pt;}
.ws2c{word-spacing:-0.586667pt;}
.ws129{word-spacing:-0.554667pt;}
.wsd9{word-spacing:-0.533333pt;}
.wsb9{word-spacing:-0.480000pt;}
.ws5{word-spacing:-0.426667pt;}
.ws115{word-spacing:-0.384000pt;}
.ws2d{word-spacing:-0.373333pt;}
.ws3b{word-spacing:-0.320000pt;}
.ws90{word-spacing:-0.266667pt;}
.ws113{word-spacing:-0.256000pt;}
.wsfa{word-spacing:-0.213333pt;}
.wsf9{word-spacing:-0.170667pt;}
.ws4e{word-spacing:-0.160000pt;}
.wsf6{word-spacing:-0.128000pt;}
.ws88{word-spacing:-0.106667pt;}
.wsed{word-spacing:-0.042667pt;}
.ws0{word-spacing:0.000000pt;}
.wsf7{word-spacing:0.042667pt;}
.ws24{word-spacing:0.053333pt;}
.ws131{word-spacing:0.085333pt;}
.ws60{word-spacing:0.106667pt;}
.ws119{word-spacing:0.128000pt;}
.wsda{word-spacing:0.160000pt;}
.ws123{word-spacing:0.170667pt;}
.ws38{word-spacing:0.213333pt;}
.ws137{word-spacing:0.256000pt;}
.ws2a{word-spacing:0.266667pt;}
.ws125{word-spacing:0.298667pt;}
.wsc1{word-spacing:0.320000pt;}
.ws126{word-spacing:0.341333pt;}
.ws96{word-spacing:0.373333pt;}
.wsab{word-spacing:0.426667pt;}
.wsac{word-spacing:0.480000pt;}
.wsc6{word-spacing:0.533333pt;}
.wscb{word-spacing:0.586667pt;}
.wsd7{word-spacing:0.640000pt;}
.ws71{word-spacing:0.693333pt;}
.ws117{word-spacing:0.725333pt;}
.ws61{word-spacing:0.746667pt;}
.ws8d{word-spacing:0.800000pt;}
.ws43{word-spacing:0.853333pt;}
.ws40{word-spacing:0.906667pt;}
.wsd4{word-spacing:0.960000pt;}
.ws7f{word-spacing:1.013333pt;}
.ws2e{word-spacing:1.066667pt;}
.wsc8{word-spacing:1.120000pt;}
.ws17{word-spacing:1.173333pt;}
.ws59{word-spacing:1.226667pt;}
.ws133{word-spacing:1.237333pt;}
.wsb5{word-spacing:1.280000pt;}
.wsff{word-spacing:1.322667pt;}
.ws5f{word-spacing:1.333333pt;}
.ws118{word-spacing:1.365333pt;}
.wsba{word-spacing:1.386667pt;}
.ws116{word-spacing:1.408000pt;}
.ws2b{word-spacing:1.440000pt;}
.ws9c{word-spacing:1.450667pt;}
.ws33{word-spacing:1.493333pt;}
.wsae{word-spacing:1.546667pt;}
.wsfb{word-spacing:1.578667pt;}
.wsa0{word-spacing:1.600000pt;}
.ws10f{word-spacing:1.621333pt;}
.ws35{word-spacing:1.653333pt;}
.ws5a{word-spacing:1.706667pt;}
.wsc9{word-spacing:1.760000pt;}
.ws12e{word-spacing:1.792000pt;}
.ws5b{word-spacing:1.813333pt;}
.ws10c{word-spacing:1.834667pt;}
.ws76{word-spacing:1.866667pt;}
.wsa{word-spacing:1.920000pt;}
.wsc2{word-spacing:1.973333pt;}
.ws23{word-spacing:2.026667pt;}
.ws6e{word-spacing:2.080000pt;}
.ws138{word-spacing:2.090667pt;}
.ws4f{word-spacing:2.133333pt;}
.wsd8{word-spacing:2.186667pt;}
.ws112{word-spacing:2.218667pt;}
.ws27{word-spacing:2.240000pt;}
.ws121{word-spacing:2.261333pt;}
.ws79{word-spacing:2.293333pt;}
.ws114{word-spacing:2.304000pt;}
.ws9{word-spacing:2.346667pt;}
.ws30{word-spacing:2.400000pt;}
.ws124{word-spacing:2.432000pt;}
.ws86{word-spacing:2.453333pt;}
.ws3f{word-spacing:2.506667pt;}
.ws1d{word-spacing:2.517333pt;}
.wsc4{word-spacing:2.560000pt;}
.ws127{word-spacing:2.602667pt;}
.wsb3{word-spacing:2.613333pt;}
.ws19{word-spacing:2.666667pt;}
.wsa4{word-spacing:2.720000pt;}
.wsa6{word-spacing:2.773333pt;}
.ws7{word-spacing:2.826667pt;}
.ws10b{word-spacing:2.858667pt;}
.ws50{word-spacing:2.880000pt;}
.ws32{word-spacing:2.933333pt;}
.ws46{word-spacing:3.040000pt;}
.wsfc{word-spacing:3.072000pt;}
.ws1b{word-spacing:3.093333pt;}
.ws39{word-spacing:3.146667pt;}
.ws122{word-spacing:3.157333pt;}
.ws18{word-spacing:3.200000pt;}
.ws12b{word-spacing:3.242667pt;}
.ws70{word-spacing:3.253333pt;}
.wsa3{word-spacing:3.306667pt;}
.ws97{word-spacing:3.360000pt;}
.ws4d{word-spacing:3.466667pt;}
.ws80{word-spacing:3.520000pt;}
.ws12c{word-spacing:3.541333pt;}
.ws2f{word-spacing:3.573333pt;}
.wsb{word-spacing:3.626667pt;}
.ws66{word-spacing:3.680000pt;}
.wse6{word-spacing:3.733333pt;}
.ws134{word-spacing:3.754667pt;}
.ws82{word-spacing:3.786667pt;}
.ws55{word-spacing:3.840000pt;}
.ws6f{word-spacing:3.893333pt;}
.wsfe{word-spacing:3.925333pt;}
.ws63{word-spacing:3.946667pt;}
.ws110{word-spacing:3.968000pt;}
.ws1a{word-spacing:4.000000pt;}
.wse1{word-spacing:4.053333pt;}
.ws48{word-spacing:4.106667pt;}
.ws8c{word-spacing:4.160000pt;}
.ws130{word-spacing:4.181333pt;}
.ws49{word-spacing:4.213333pt;}
.ws77{word-spacing:4.266667pt;}
.ws11d{word-spacing:4.309333pt;}
.ws92{word-spacing:4.320000pt;}
.ws105{word-spacing:4.352000pt;}
.wsbe{word-spacing:4.373333pt;}
.ws12d{word-spacing:4.394667pt;}
.ws74{word-spacing:4.426667pt;}
.ws9d{word-spacing:4.480000pt;}
.wsc5{word-spacing:4.533333pt;}
.ws12{word-spacing:4.586667pt;}
.ws11e{word-spacing:4.608000pt;}
.ws8e{word-spacing:4.640000pt;}
.ws14{word-spacing:4.693333pt;}
.ws45{word-spacing:4.746667pt;}
.ws3e{word-spacing:4.800000pt;}
.ws29{word-spacing:4.853333pt;}
.ws67{word-spacing:4.906667pt;}
.ws10e{word-spacing:4.949333pt;}
.ws6{word-spacing:4.960000pt;}
.ws7c{word-spacing:5.013333pt;}
.ws136{word-spacing:5.034667pt;}
.ws20{word-spacing:5.120000pt;}
.ws16{word-spacing:5.173333pt;}
.ws73{word-spacing:5.226667pt;}
.ws11a{word-spacing:5.248000pt;}
.ws84{word-spacing:5.280000pt;}
.ws89{word-spacing:5.333333pt;}
.ws106{word-spacing:5.376000pt;}
.ws8b{word-spacing:5.386667pt;}
.ws65{word-spacing:5.440000pt;}
.ws13{word-spacing:5.493333pt;}
.ws36{word-spacing:5.546667pt;}
.ws91{word-spacing:5.600000pt;}
.ws68{word-spacing:5.653333pt;}
.wsd3{word-spacing:5.706667pt;}
.ws31{word-spacing:5.760000pt;}
.ws5c{word-spacing:5.813333pt;}
.ws62{word-spacing:5.866667pt;}
.wsfd{word-spacing:5.888000pt;}
.ws69{word-spacing:5.920000pt;}
.ws12a{word-spacing:5.930667pt;}
.wsd5{word-spacing:5.973333pt;}
.wsb0{word-spacing:6.026667pt;}
.ws75{word-spacing:6.080000pt;}
.wsad{word-spacing:6.133333pt;}
.wsf{word-spacing:6.186667pt;}
.ws8{word-spacing:6.240000pt;}
.ws5d{word-spacing:6.293333pt;}
.wsd{word-spacing:6.400000pt;}
.wsdb{word-spacing:6.453333pt;}
.ws58{word-spacing:6.506667pt;}
.wse2{word-spacing:6.560000pt;}
.ws57{word-spacing:6.613333pt;}
.ws6c{word-spacing:6.666667pt;}
.ws52{word-spacing:6.773333pt;}
.ws12f{word-spacing:6.869333pt;}
.ws3a{word-spacing:6.880000pt;}
.wsec{word-spacing:6.986667pt;}
.ws4b{word-spacing:7.040000pt;}
.wseb{word-spacing:7.093333pt;}
.wsc0{word-spacing:7.146667pt;}
.wscc{word-spacing:7.200000pt;}
.wsa5{word-spacing:7.306667pt;}
.ws21{word-spacing:7.360000pt;}
.wsd6{word-spacing:7.413333pt;}
.ws41{word-spacing:7.573333pt;}
.ws6b{word-spacing:7.626667pt;}
.ws6d{word-spacing:7.680000pt;}
.wsbc{word-spacing:7.733333pt;}
.ws8a{word-spacing:7.786667pt;}
.ws9e{word-spacing:7.840000pt;}
.ws101{word-spacing:7.850667pt;}
.ws8f{word-spacing:7.893333pt;}
.wsd0{word-spacing:7.946667pt;}
.wsca{word-spacing:8.053333pt;}
.wsdd{word-spacing:8.106667pt;}
.ws10d{word-spacing:8.149333pt;}
.ws56{word-spacing:8.266667pt;}
.ws11b{word-spacing:8.320000pt;}
.ws4a{word-spacing:8.373333pt;}
.ws98{word-spacing:8.426667pt;}
.wsb4{word-spacing:8.480000pt;}
.wsa2{word-spacing:8.586667pt;}
.wsce{word-spacing:8.693333pt;}
.ws53{word-spacing:8.746667pt;}
.wsa9{word-spacing:8.800000pt;}
.ws104{word-spacing:8.960000pt;}
.wsaa{word-spacing:9.066667pt;}
.ws28{word-spacing:9.120000pt;}
.ws11{word-spacing:9.333333pt;}
.wse7{word-spacing:9.440000pt;}
.ws120{word-spacing:9.600000pt;}
.wse5{word-spacing:9.706667pt;}
.wsde{word-spacing:9.760000pt;}
.ws10{word-spacing:9.920000pt;}
.ws103{word-spacing:10.154667pt;}
.wsd1{word-spacing:10.186667pt;}
.wse9{word-spacing:10.293333pt;}
.ws25{word-spacing:10.346667pt;}
.ws85{word-spacing:10.400000pt;}
.ws26{word-spacing:10.666667pt;}
.wsdf{word-spacing:10.720000pt;}
.ws81{word-spacing:10.826667pt;}
.wsc{word-spacing:11.040000pt;}
.wse4{word-spacing:11.680000pt;}
.ws15{word-spacing:12.000000pt;}
.ws54{word-spacing:12.053333pt;}
.ws93{word-spacing:14.560000pt;}
.wsea{word-spacing:14.933333pt;}
.ws1e{word-spacing:17.482667pt;}
.ws87{word-spacing:26.186667pt;}
.wsef{word-spacing:67.963250pt;}
.wsf2{word-spacing:72.699250pt;}
.wsf0{word-spacing:101.181320pt;}
.wsf1{word-spacing:131.871478pt;}
.wsf4{word-spacing:170.736572pt;}
.ws9b{word-spacing:186.621870pt;}
._32{margin-left:-58.979187pt;}
._1a{margin-left:-6.912000pt;}
._5{margin-left:-5.930667pt;}
._1b{margin-left:-4.755175pt;}
._0{margin-left:-3.460267pt;}
._2{margin-left:-2.145067pt;}
._1{margin-left:-0.906667pt;}
._4{width:1.073067pt;}
._9{width:2.002133pt;}
._c{width:3.391999pt;}
._7{width:4.448000pt;}
._a{width:5.456000pt;}
._3{width:6.554667pt;}
._d{width:7.514666pt;}
._b{width:8.405334pt;}
._10{width:9.312000pt;}
._6{width:10.586667pt;}
._f{width:12.181333pt;}
._2f{width:13.141334pt;}
._1c{width:14.490667pt;}
._8{width:15.571736pt;}
._e{width:16.586667pt;}
._11{width:17.482667pt;}
._31{width:18.705066pt;}
._30{width:20.074667pt;}
._29{width:40.248464pt;}
._33{width:50.005325pt;}
._1f{width:66.719478pt;}
._24{width:69.223987pt;}
._25{width:83.365917pt;}
._28{width:111.847987pt;}
._26{width:119.608464pt;}
._27{width:137.802144pt;}
._22{width:159.135478pt;}
._23{width:181.403239pt;}
._2d{width:197.494886pt;}
._1d{width:201.700821pt;}
._2b{width:221.302886pt;}
._18{width:225.177626pt;}
._2e{width:230.646886pt;}
._17{width:237.609065pt;}
._2c{width:244.982886pt;}
._14{width:251.817065pt;}
._21{width:256.568464pt;}
._16{width:259.635865pt;}
._2a{width:371.745552pt;}
._15{width:388.473626pt;}
._20{width:467.756184pt;}
._12{width:776.341889pt;}
._1e{width:956.413766pt;}
._19{width:1189.854531pt;}
._13{width:1458.867865pt;}
.fs9{font-size:29.866667pt;}
.fs4{font-size:37.333333pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:58.666667pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:69.333333pt;}
.fs7{font-size:80.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y47{bottom:41.543200pt;}
.y75{bottom:41.574800pt;}
.y5{bottom:59.133337pt;}
.y77{bottom:80.001200pt;}
.y46{bottom:80.001333pt;}
.y74{bottom:80.377869pt;}
.y4{bottom:86.333337pt;}
.y14e{bottom:86.982137pt;}
.y73{bottom:96.377869pt;}
.y14d{bottom:99.648804pt;}
.yb6{bottom:100.190135pt;}
.y114{bottom:104.377869pt;}
.y14c{bottom:112.315470pt;}
.y72{bottom:112.377869pt;}
.yb5{bottom:112.856801pt;}
.y113{bottom:117.044535pt;}
.y21{bottom:123.790666pt;}
.y14b{bottom:124.982137pt;}
.yb4{bottom:127.811605pt;}
.y71{bottom:128.377869pt;}
.y112{bottom:129.711202pt;}
.y40{bottom:136.514404pt;}
.y14a{bottom:137.648804pt;}
.yb3{bottom:140.478271pt;}
.ye5{bottom:141.756663pt;}
.y111{bottom:142.377869pt;}
.y70{bottom:144.377869pt;}
.y7f{bottom:146.507467pt;}
.y7e{bottom:146.507599pt;}
.y149{bottom:150.315470pt;}
.y150{bottom:150.648804pt;}
.y3f{bottom:152.514404pt;}
.ye4{bottom:154.423330pt;}
.y110{bottom:155.044535pt;}
.yb2{bottom:155.433197pt;}
.y6f{bottom:160.377869pt;}
.y148{bottom:162.982137pt;}
.y14f{bottom:163.315470pt;}
.y10f{bottom:167.711202pt;}
.yb1{bottom:168.099864pt;}
.y3e{bottom:168.514404pt;}
.y18{bottom:175.052000pt;}
.y147{bottom:175.648804pt;}
.y6e{bottom:176.377869pt;}
.y10e{bottom:180.377869pt;}
.yb0{bottom:180.766541pt;}
.ye3{bottom:183.090007pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y146{bottom:188.315470pt;}
.y6d{bottom:192.377869pt;}
.y10d{bottom:193.044535pt;}
.yaf{bottom:193.433207pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y3d{bottom:200.514404pt;}
.y81{bottom:200.623739pt;}
.y145{bottom:200.982137pt;}
.y10c{bottom:205.711202pt;}
.yae{bottom:206.099874pt;}
.y6c{bottom:208.377869pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.ye2{bottom:211.756673pt;}
.y144{bottom:213.648804pt;}
.y10b{bottom:218.377869pt;}
.yad{bottom:218.766541pt;}
.y6b{bottom:224.377869pt;}
.ye1{bottom:224.423340pt;}
.y143{bottom:226.315470pt;}
.y1d{bottom:231.038664pt;}
.y10a{bottom:231.044535pt;}
.y14{bottom:231.052000pt;}
.yac{bottom:231.433207pt;}
.y3c{bottom:232.514404pt;}
.ye0{bottom:237.090007pt;}
.y78{bottom:237.867737pt;}
.y142{bottom:238.982137pt;}
.y6a{bottom:240.377869pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y109{bottom:243.711202pt;}
.yab{bottom:246.388143pt;}
.y3b{bottom:248.514404pt;}
.ydf{bottom:249.756673pt;}
.y141{bottom:251.648804pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y69{bottom:256.377869pt;}
.yaa{bottom:259.054810pt;}
.y140{bottom:264.315470pt;}
.y3a{bottom:264.514404pt;}
.y108{bottom:269.044535pt;}
.y68{bottom:272.377869pt;}
.ya9{bottom:274.009603pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y13f{bottom:276.982137pt;}
.yde{bottom:277.247457pt;}
.y39{bottom:280.514404pt;}
.y107{bottom:281.711202pt;}
.ya8{bottom:286.676270pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y67{bottom:288.377869pt;}
.y13e{bottom:289.648804pt;}
.ydd{bottom:289.914124pt;}
.y106{bottom:294.377869pt;}
.y38{bottom:296.514404pt;}
.ya7{bottom:299.342936pt;}
.y13d{bottom:302.315470pt;}
.y66{bottom:304.377869pt;}
.ydc{bottom:304.869059pt;}
.y105{bottom:307.044535pt;}
.yf{bottom:309.452000pt;}
.ya6{bottom:312.009603pt;}
.y37{bottom:312.514404pt;}
.y13c{bottom:314.982137pt;}
.ydb{bottom:317.535726pt;}
.y104{bottom:319.711202pt;}
.y65{bottom:320.377869pt;}
.ya5{bottom:324.676270pt;}
.y13b{bottom:327.648804pt;}
.y36{bottom:328.514404pt;}
.yda{bottom:330.202393pt;}
.y103{bottom:332.377869pt;}
.y64{bottom:336.377869pt;}
.ya4{bottom:337.342936pt;}
.y13a{bottom:340.315470pt;}
.yd9{bottom:342.869059pt;}
.ye{bottom:343.809333pt;}
.y35{bottom:344.514404pt;}
.y102{bottom:345.044515pt;}
.ya3{bottom:350.009603pt;}
.y63{bottom:352.377848pt;}
.y139{bottom:352.982137pt;}
.y101{bottom:357.711182pt;}
.yd8{bottom:357.824015pt;}
.y34{bottom:360.514404pt;}
.y7d{bottom:361.328939pt;}
.ya2{bottom:362.676270pt;}
.yd{bottom:362.706666pt;}
.y138{bottom:365.648804pt;}
.y62{bottom:368.377848pt;}
.y100{bottom:370.377848pt;}
.yd7{bottom:370.490682pt;}
.ya1{bottom:375.342936pt;}
.y33{bottom:376.514404pt;}
.y137{bottom:378.315470pt;}
.yff{bottom:383.044515pt;}
.y61{bottom:384.377848pt;}
.yd6{bottom:385.445475pt;}
.ya0{bottom:388.009603pt;}
.y136{bottom:390.982137pt;}
.y32{bottom:392.514404pt;}
.yfe{bottom:395.711182pt;}
.yd5{bottom:398.112142pt;}
.y60{bottom:400.377848pt;}
.y9f{bottom:400.676270pt;}
.y135{bottom:403.648804pt;}
.yfd{bottom:408.377848pt;}
.y31{bottom:408.514404pt;}
.yd4{bottom:410.778809pt;}
.y9e{bottom:413.342936pt;}
.y134{bottom:416.315470pt;}
.y5f{bottom:416.377848pt;}
.yfc{bottom:421.044515pt;}
.yd3{bottom:423.445475pt;}
.y30{bottom:424.514404pt;}
.y9d{bottom:428.297852pt;}
.y133{bottom:428.982137pt;}
.y5e{bottom:432.377848pt;}
.yfb{bottom:433.711182pt;}
.yd2{bottom:436.112142pt;}
.y2f{bottom:440.514404pt;}
.y9c{bottom:440.964518pt;}
.y132{bottom:441.648804pt;}
.yfa{bottom:446.377848pt;}
.yc{bottom:446.990669pt;}
.y5d{bottom:448.377848pt;}
.yd1{bottom:448.778809pt;}
.y131{bottom:454.315470pt;}
.y9b{bottom:455.919474pt;}
.y2e{bottom:456.514404pt;}
.yf9{bottom:459.044515pt;}
.yb{bottom:462.990669pt;}
.yd0{bottom:463.733724pt;}
.y5c{bottom:464.377848pt;}
.y130{bottom:466.982137pt;}
.y9a{bottom:468.586141pt;}
.yf8{bottom:471.711182pt;}
.y2d{bottom:472.514404pt;}
.ycf{bottom:476.400391pt;}
.ya{bottom:478.990666pt;}
.y12f{bottom:479.648804pt;}
.y5b{bottom:480.377848pt;}
.y99{bottom:481.252808pt;}
.yf7{bottom:484.377848pt;}
.y2c{bottom:488.514404pt;}
.yce{bottom:491.355347pt;}
.y12e{bottom:492.315470pt;}
.y9{bottom:494.990666pt;}
.y98{bottom:496.207723pt;}
.y5a{bottom:496.377848pt;}
.yf6{bottom:497.044515pt;}
.ycd{bottom:504.022013pt;}
.y2b{bottom:504.514404pt;}
.y12d{bottom:504.982137pt;}
.y97{bottom:508.874390pt;}
.yf5{bottom:509.711182pt;}
.y59{bottom:512.377848pt;}
.y12c{bottom:517.648804pt;}
.ycc{bottom:518.976807pt;}
.y2a{bottom:520.514404pt;}
.yf4{bottom:522.377848pt;}
.y96{bottom:523.829183pt;}
.y58{bottom:528.377848pt;}
.y82{bottom:530.084513pt;}
.y12b{bottom:530.315470pt;}
.ycb{bottom:531.643473pt;}
.yf3{bottom:535.044515pt;}
.y95{bottom:536.495850pt;}
.y29{bottom:536.514404pt;}
.y80{bottom:540.217448pt;}
.y12a{bottom:542.982137pt;}
.yca{bottom:544.310140pt;}
.y57{bottom:544.377848pt;}
.yf2{bottom:547.711182pt;}
.y94{bottom:549.162516pt;}
.y28{bottom:552.514404pt;}
.y129{bottom:555.648804pt;}
.yc9{bottom:559.265055pt;}
.y56{bottom:560.377848pt;}
.y93{bottom:564.117472pt;}
.y128{bottom:568.315470pt;}
.y27{bottom:568.514404pt;}
.y8{bottom:573.786667pt;}
.y55{bottom:576.377848pt;}
.y92{bottom:576.784139pt;}
.y127{bottom:580.982137pt;}
.y26{bottom:584.514404pt;}
.y91{bottom:589.450806pt;}
.y54{bottom:592.377848pt;}
.y7{bottom:592.685334pt;}
.y126{bottom:593.648804pt;}
.yc8{bottom:600.207723pt;}
.y25{bottom:600.514404pt;}
.y90{bottom:604.405721pt;}
.y125{bottom:606.315470pt;}
.y53{bottom:608.377848pt;}
.yc7{bottom:612.874390pt;}
.y8f{bottom:617.072388pt;}
.y124{bottom:618.982137pt;}
.y79{bottom:621.497599pt;}
.y158{bottom:623.816284pt;}
.y52{bottom:624.377848pt;}
.yc6{bottom:625.541056pt;}
.y8e{bottom:629.739054pt;}
.y123{bottom:631.648804pt;}
.yf1{bottom:635.047078pt;}
.y51{bottom:640.377848pt;}
.yc5{bottom:640.495850pt;}
.y157{bottom:640.749593pt;}
.y8d{bottom:642.405721pt;}
.y122{bottom:644.315470pt;}
.y42{bottom:644.530151pt;}
.y6{bottom:645.598667pt;}
.yf0{bottom:647.713745pt;}
.yc4{bottom:653.162516pt;}
.y8c{bottom:655.072388pt;}
.y156{bottom:655.816284pt;}
.y50{bottom:656.377848pt;}
.y121{bottom:656.982137pt;}
.y41{bottom:657.196818pt;}
.yef{bottom:660.380412pt;}
.y8b{bottom:667.739054pt;}
.yc3{bottom:668.117472pt;}
.y3{bottom:668.977329pt;}
.y120{bottom:669.648804pt;}
.y4f{bottom:672.377848pt;}
.y155{bottom:672.749593pt;}
.yee{bottom:673.047078pt;}
.y7b{bottom:679.097738pt;}
.y8a{bottom:680.405721pt;}
.yc2{bottom:680.784139pt;}
.y11f{bottom:682.315470pt;}
.yed{bottom:685.713704pt;}
.y154{bottom:687.816243pt;}
.y4e{bottom:688.377848pt;}
.y89{bottom:693.072428pt;}
.yc1{bottom:693.450765pt;}
.y45{bottom:694.433105pt;}
.y11e{bottom:694.982096pt;}
.yec{bottom:698.380371pt;}
.y4d{bottom:704.377848pt;}
.y153{bottom:704.749593pt;}
.yc0{bottom:706.117432pt;}
.y11d{bottom:707.648763pt;}
.y88{bottom:708.688639pt;}
.y86{bottom:710.976969pt;}
.yeb{bottom:711.047038pt;}
.ybf{bottom:718.784098pt;}
.y11c{bottom:720.315430pt;}
.y4c{bottom:720.377848pt;}
.y87{bottom:721.355306pt;}
.y85{bottom:723.643636pt;}
.yea{bottom:723.713704pt;}
.y152{bottom:726.377848pt;}
.y44{bottom:732.165365pt;}
.y11b{bottom:732.982096pt;}
.ybe{bottom:733.739095pt;}
.y84{bottom:736.310303pt;}
.y4b{bottom:736.377848pt;}
.ye9{bottom:736.380371pt;}
.y151{bottom:739.044515pt;}
.y11a{bottom:745.648763pt;}
.ybd{bottom:746.405762pt;}
.y83{bottom:751.265055pt;}
.y43{bottom:752.165365pt;}
.y4a{bottom:752.377848pt;}
.y119{bottom:758.315430pt;}
.ybc{bottom:762.021973pt;}
.yba{bottom:764.310303pt;}
.ye8{bottom:765.045898pt;}
.y49{bottom:768.377848pt;}
.y7c{bottom:769.885905pt;}
.y118{bottom:770.982096pt;}
.ybb{bottom:774.688639pt;}
.yb9{bottom:776.976969pt;}
.ye7{bottom:777.712565pt;}
.y2{bottom:781.661334pt;}
.y117{bottom:783.648763pt;}
.y76{bottom:784.377848pt;}
.yb8{bottom:789.643636pt;}
.y116{bottom:796.315430pt;}
.y22{bottom:799.716553pt;}
.y48{bottom:800.377848pt;}
.yb7{bottom:804.598389pt;}
.y7a{bottom:805.284098pt;}
.ye6{bottom:806.377848pt;}
.y115{bottom:808.982096pt;}
.y24{bottom:822.167969pt;}
.y23{bottom:834.834635pt;}
.y1{bottom:859.312000pt;}
.h18{height:26.206250pt;}
.h7{height:28.560000pt;}
.h11{height:37.437500pt;}
.hb{height:40.405333pt;}
.h6{height:40.800000pt;}
.h15{height:41.088000pt;}
.ha{height:41.472000pt;}
.h17{height:42.197333pt;}
.h3{height:42.840000pt;}
.hd{height:46.796875pt;}
.h2{height:48.960000pt;}
.he{height:51.360000pt;}
.h14{height:52.266667pt;}
.hc{height:52.746667pt;}
.h16{height:56.156250pt;}
.h10{height:57.621333pt;}
.h13{height:58.021333pt;}
.h12{height:64.000000pt;}
.hf{height:66.768000pt;}
.h5{height:69.360000pt;}
.h4{height:105.826671pt;}
.h9{height:888.000000pt;}
.h8{height:888.189333pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w3{width:585.826667pt;}
.w4{width:586.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:68.031469pt;}
.x5{left:71.917603pt;}
.x33{left:80.109599pt;}
.x9{left:83.149602pt;}
.x34{left:86.929067pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x2b{left:113.148671pt;}
.x2c{left:169.160929pt;}
.x31{left:174.494263pt;}
.x4{left:180.874667pt;}
.x19{left:183.006409pt;}
.x1a{left:197.961324pt;}
.x32{left:201.853190pt;}
.xb{left:207.195740pt;}
.x1b{left:213.577596pt;}
.xc{left:222.150533pt;}
.x2d{left:225.178406pt;}
.x1c{left:226.244263pt;}
.xd{left:237.766927pt;}
.x1d{left:238.910929pt;}
.xe{left:250.433594pt;}
.x1e{left:251.577596pt;}
.xf{left:263.100260pt;}
.x1f{left:264.244263pt;}
.x10{left:278.055074pt;}
.x20{left:279.199198pt;}
.x21{left:291.865865pt;}
.x11{left:293.010010pt;}
.x22{left:304.532532pt;}
.x12{left:307.964925pt;}
.x23{left:317.199198pt;}
.x13{left:320.631592pt;}
.x24{left:332.153992pt;}
.x14{left:333.298258pt;}
.x25{left:344.820679pt;}
.x15{left:345.964925pt;}
.x26{left:357.487345pt;}
.x16{left:358.631592pt;}
.x2e{left:361.309855pt;}
.x27{left:372.442261pt;}
.x17{left:373.586385pt;}
.x28{left:385.108927pt;}
.x18{left:386.253052pt;}
.x29{left:397.775594pt;}
.x3{left:404.408000pt;}
.x2a{left:410.442261pt;}
.x2f{left:418.306519pt;}
.x7{left:463.255737pt;}
.x8{left:464.832275pt;}
.x30{left:480.022664pt;}
.xa{left:503.042684pt;}
}




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