
    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_7a3c0859484c3e3f2ba28cc6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.050000;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_cafbc9d174645b7adc9da0d3.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_84f56244732c63a7991d9afb.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.095703;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_9f1b4a9e6f0ad59c89ea8da4.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;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_c8d4bb255fededc03a0c6a28.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.668945;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_f0de621d38459a9e80e4822e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_8968fe3e84873f12dc0ea5ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_3fc3ac39a1a6b7f1a25c29ed.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.924000;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_c8f0a1b26821eac3e1d54c9d.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.980000px;}
.v2{vertical-align:20.991600px;}
.ls11{letter-spacing:-2.520000px;}
.ls6{letter-spacing:-2.331000px;}
.ls1{letter-spacing:-1.440000px;}
.ls2{letter-spacing:-1.260000px;}
.ls13{letter-spacing:-1.197000px;}
.ls10{letter-spacing:-1.134000px;}
.ls3{letter-spacing:-0.630000px;}
.ls9{letter-spacing:-0.570000px;}
.ls12{letter-spacing:-0.063000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000300px;}
.lse{letter-spacing:0.063000px;}
.lsf{letter-spacing:0.088200px;}
.lsd{letter-spacing:0.252000px;}
.ls8{letter-spacing:0.366900px;}
.lsc{letter-spacing:0.367290px;}
.lsa{letter-spacing:0.570000px;}
.ls7{letter-spacing:0.630000px;}
.lsb{letter-spacing:1.140000px;}
.ls5{letter-spacing:1.260000px;}
.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;}
}
.wsc1{word-spacing:-16.380000px;}
.ws107{word-spacing:-15.750000px;}
.ws109{word-spacing:-15.687000px;}
.ws108{word-spacing:-14.616000px;}
.ws10a{word-spacing:-14.553000px;}
.ws1{word-spacing:-12.750000px;}
.wse7{word-spacing:-9.549540px;}
.ws14{word-spacing:-9.182250px;}
.ws65{word-spacing:-8.064000px;}
.ws4{word-spacing:-6.000000px;}
.wsf9{word-spacing:-5.670000px;}
.ws6{word-spacing:-5.592000px;}
.wsd9{word-spacing:-5.355000px;}
.ws4c{word-spacing:-4.851000px;}
.ws8a{word-spacing:-4.725000px;}
.ws71{word-spacing:-4.662000px;}
.ws6e{word-spacing:-4.599000px;}
.wsfc{word-spacing:-4.473000px;}
.wsdc{word-spacing:-4.221000px;}
.ws105{word-spacing:-4.158000px;}
.ws61{word-spacing:-4.032000px;}
.ws10d{word-spacing:-3.969000px;}
.ws3b{word-spacing:-3.780000px;}
.ws89{word-spacing:-3.717000px;}
.ws45{word-spacing:-3.465000px;}
.ws9a{word-spacing:-3.402000px;}
.wscb{word-spacing:-3.213000px;}
.wsf2{word-spacing:-3.192000px;}
.wsfa{word-spacing:-3.087000px;}
.ws5{word-spacing:-3.024000px;}
.wsf4{word-spacing:-2.736000px;}
.wsb4{word-spacing:-2.709000px;}
.wsed{word-spacing:-2.457000px;}
.ws1d{word-spacing:-2.331000px;}
.wsd6{word-spacing:-2.205000px;}
.ws8{word-spacing:-2.184000px;}
.ws3c{word-spacing:-2.142000px;}
.ws12{word-spacing:-2.016000px;}
.ws46{word-spacing:-1.953000px;}
.ws2d{word-spacing:-1.890000px;}
.ws7{word-spacing:-1.800000px;}
.wsa7{word-spacing:-1.638000px;}
.ws77{word-spacing:-1.596000px;}
.wsab{word-spacing:-1.575000px;}
.ws106{word-spacing:-1.449000px;}
.ws73{word-spacing:-1.386000px;}
.wsf8{word-spacing:-1.140000px;}
.ws69{word-spacing:-1.134000px;}
.wsb5{word-spacing:-1.008000px;}
.ws38{word-spacing:-0.945000px;}
.ws3{word-spacing:-0.918000px;}
.wsdd{word-spacing:-0.693000px;}
.ws72{word-spacing:-0.630000px;}
.wsf1{word-spacing:-0.570000px;}
.ws1a{word-spacing:-0.378000px;}
.ws7c{word-spacing:-0.342000px;}
.wsb6{word-spacing:-0.315000px;}
.ws5c{word-spacing:-0.252000px;}
.wsa6{word-spacing:-0.189000px;}
.ws2{word-spacing:-0.045000px;}
.ws0{word-spacing:0.000000px;}
.ws10f{word-spacing:0.063000px;}
.ws40{word-spacing:0.126000px;}
.ws9f{word-spacing:0.315000px;}
.wsf5{word-spacing:0.342000px;}
.ws6d{word-spacing:0.504000px;}
.wsd5{word-spacing:0.567000px;}
.ws41{word-spacing:0.630000px;}
.ws99{word-spacing:0.693000px;}
.ws81{word-spacing:0.741000px;}
.ws56{word-spacing:0.756000px;}
.ws52{word-spacing:0.819000px;}
.wsb2{word-spacing:0.945000px;}
.wse4{word-spacing:1.026000px;}
.ws31{word-spacing:1.071000px;}
.wsec{word-spacing:1.134000px;}
.ws68{word-spacing:1.197000px;}
.ws9{word-spacing:1.260000px;}
.ws91{word-spacing:1.323000px;}
.ws44{word-spacing:1.386000px;}
.ws63{word-spacing:1.449000px;}
.wsf0{word-spacing:1.482000px;}
.wse2{word-spacing:1.575000px;}
.ws78{word-spacing:1.596000px;}
.ws2e{word-spacing:1.638000px;}
.ws7f{word-spacing:1.653000px;}
.ws57{word-spacing:1.701000px;}
.wsc9{word-spacing:1.764000px;}
.ws7b{word-spacing:1.767000px;}
.ws10{word-spacing:1.827000px;}
.wsad{word-spacing:1.890000px;}
.wsc5{word-spacing:1.953000px;}
.ws4d{word-spacing:2.016000px;}
.ws6b{word-spacing:2.109000px;}
.ws104{word-spacing:2.142000px;}
.ws2a{word-spacing:2.166000px;}
.wsa8{word-spacing:2.205000px;}
.wsf7{word-spacing:2.280000px;}
.ws5a{word-spacing:2.331000px;}
.ws6c{word-spacing:2.394000px;}
.ws70{word-spacing:2.520000px;}
.ws80{word-spacing:2.565000px;}
.ws20{word-spacing:2.583000px;}
.ws53{word-spacing:2.646000px;}
.ws29{word-spacing:2.679000px;}
.ws60{word-spacing:2.709000px;}
.ws1b{word-spacing:2.772000px;}
.wse3{word-spacing:2.850000px;}
.wsff{word-spacing:2.898000px;}
.ws7e{word-spacing:2.964000px;}
.wsc7{word-spacing:3.087000px;}
.ws16{word-spacing:3.150000px;}
.ws6a{word-spacing:3.192000px;}
.ws9c{word-spacing:3.213000px;}
.wsc0{word-spacing:3.276000px;}
.ws9b{word-spacing:3.465000px;}
.ws9e{word-spacing:3.654000px;}
.ws8f{word-spacing:3.717000px;}
.ws19{word-spacing:3.780000px;}
.wsb0{word-spacing:3.906000px;}
.wsc8{word-spacing:3.969000px;}
.wsb9{word-spacing:4.032000px;}
.ws22{word-spacing:4.095000px;}
.wsee{word-spacing:4.158000px;}
.ws76{word-spacing:4.218000px;}
.ws27{word-spacing:4.275000px;}
.ws25{word-spacing:4.284000px;}
.ws37{word-spacing:4.536000px;}
.ws86{word-spacing:4.599000px;}
.wsf3{word-spacing:4.617000px;}
.wsd0{word-spacing:4.662000px;}
.ws9d{word-spacing:4.725000px;}
.ws79{word-spacing:4.845000px;}
.ws1c{word-spacing:4.851000px;}
.ws98{word-spacing:4.977000px;}
.ws5b{word-spacing:5.040000px;}
.ws2b{word-spacing:5.073000px;}
.wsd{word-spacing:5.103000px;}
.ws3f{word-spacing:5.229000px;}
.wsa3{word-spacing:5.292000px;}
.ws18{word-spacing:5.355000px;}
.wsc4{word-spacing:5.418000px;}
.ws26{word-spacing:5.481000px;}
.wsb1{word-spacing:5.544000px;}
.ws21{word-spacing:5.670000px;}
.ws1f{word-spacing:5.733000px;}
.ws7d{word-spacing:5.757000px;}
.ws58{word-spacing:5.796000px;}
.ws59{word-spacing:5.859000px;}
.ws3a{word-spacing:5.922000px;}
.wsbe{word-spacing:5.985000px;}
.ws10b{word-spacing:6.111000px;}
.ws17{word-spacing:6.174000px;}
.ws42{word-spacing:6.237000px;}
.ws43{word-spacing:6.300000px;}
.ws94{word-spacing:6.615000px;}
.wsea{word-spacing:6.741000px;}
.ws33{word-spacing:6.804000px;}
.ws100{word-spacing:6.867000px;}
.ws34{word-spacing:7.119000px;}
.ws2c{word-spacing:7.125000px;}
.ws23{word-spacing:7.308000px;}
.wsfd{word-spacing:7.371000px;}
.wse6{word-spacing:7.410000px;}
.ws2f{word-spacing:7.434000px;}
.ws28{word-spacing:7.467000px;}
.wsd4{word-spacing:7.560000px;}
.ws64{word-spacing:7.623000px;}
.ws30{word-spacing:7.686000px;}
.ws32{word-spacing:7.749000px;}
.ws36{word-spacing:7.812000px;}
.ws67{word-spacing:7.875000px;}
.wsd3{word-spacing:7.938000px;}
.ws6f{word-spacing:8.001000px;}
.wscd{word-spacing:8.190000px;}
.wsc2{word-spacing:8.253000px;}
.ws97{word-spacing:8.316000px;}
.ws4f{word-spacing:8.379000px;}
.ws95{word-spacing:8.442000px;}
.wsce{word-spacing:8.505000px;}
.ws55{word-spacing:8.568000px;}
.ws103{word-spacing:8.631000px;}
.ws13{word-spacing:8.664000px;}
.ws11{word-spacing:8.694000px;}
.wsb7{word-spacing:8.820000px;}
.wsb{word-spacing:8.883000px;}
.wsc3{word-spacing:8.946000px;}
.wsa1{word-spacing:9.009000px;}
.ws75{word-spacing:9.177000px;}
.wsa5{word-spacing:9.198000px;}
.ws47{word-spacing:9.261000px;}
.wsb3{word-spacing:9.324000px;}
.ws4e{word-spacing:9.387000px;}
.wsda{word-spacing:9.450000px;}
.ws7a{word-spacing:9.519000px;}
.wsa4{word-spacing:9.690000px;}
.ws93{word-spacing:9.702000px;}
.wse8{word-spacing:9.765000px;}
.ws90{word-spacing:9.891000px;}
.wsac{word-spacing:9.954000px;}
.wsdb{word-spacing:10.017000px;}
.ws54{word-spacing:10.080000px;}
.ws15{word-spacing:10.269000px;}
.ws5f{word-spacing:10.458000px;}
.wscc{word-spacing:10.584000px;}
.ws10e{word-spacing:10.647000px;}
.ws5e{word-spacing:10.773000px;}
.wsa9{word-spacing:11.088000px;}
.wsc{word-spacing:11.151000px;}
.wsd7{word-spacing:11.340000px;}
.ws101{word-spacing:11.655000px;}
.ws84{word-spacing:11.907000px;}
.wsbc{word-spacing:12.033000px;}
.ws74{word-spacing:12.159000px;}
.wsf{word-spacing:12.222000px;}
.wsa2{word-spacing:12.285000px;}
.wsaa{word-spacing:12.474000px;}
.ws92{word-spacing:12.537000px;}
.wse{word-spacing:12.600000px;}
.ws62{word-spacing:12.726000px;}
.ws35{word-spacing:12.789000px;}
.ws24{word-spacing:13.356000px;}
.ws102{word-spacing:13.608000px;}
.wsbb{word-spacing:13.671000px;}
.wsfe{word-spacing:13.986000px;}
.wsd1{word-spacing:14.049000px;}
.ws1e{word-spacing:14.175000px;}
.wsca{word-spacing:14.364000px;}
.ws51{word-spacing:14.427000px;}
.ws4a{word-spacing:14.490000px;}
.wsd2{word-spacing:14.553000px;}
.ws3e{word-spacing:14.616000px;}
.wsae{word-spacing:14.742000px;}
.ws8b{word-spacing:14.868000px;}
.wsc6{word-spacing:15.120000px;}
.ws50{word-spacing:15.246000px;}
.wse5{word-spacing:15.276000px;}
.wsef{word-spacing:15.309000px;}
.ws3d{word-spacing:15.435000px;}
.wscf{word-spacing:16.065000px;}
.ws5d{word-spacing:16.191000px;}
.ws85{word-spacing:16.380000px;}
.wsdf{word-spacing:16.569000px;}
.wsa{word-spacing:17.073000px;}
.ws88{word-spacing:17.388000px;}
.wsa0{word-spacing:17.640000px;}
.wsfb{word-spacing:17.766000px;}
.wsaf{word-spacing:17.892000px;}
.wsd8{word-spacing:17.955000px;}
.ws4b{word-spacing:18.018000px;}
.wse1{word-spacing:18.270000px;}
.ws39{word-spacing:18.333000px;}
.wsde{word-spacing:18.522000px;}
.ws83{word-spacing:18.837000px;}
.ws87{word-spacing:19.089000px;}
.wseb{word-spacing:19.530000px;}
.wsbd{word-spacing:19.593000px;}
.ws66{word-spacing:19.656000px;}
.ws8d{word-spacing:20.034000px;}
.wsf6{word-spacing:20.292000px;}
.wse0{word-spacing:20.538000px;}
.wsbf{word-spacing:20.790000px;}
.ws96{word-spacing:21.168000px;}
.ws48{word-spacing:21.420000px;}
.ws8e{word-spacing:21.987000px;}
.ws8c{word-spacing:22.428000px;}
.wsb8{word-spacing:22.491000px;}
.ws82{word-spacing:22.554000px;}
.wsba{word-spacing:22.680000px;}
.ws10c{word-spacing:22.743000px;}
.wse9{word-spacing:22.995000px;}
.ws49{word-spacing:34.650000px;}
._1f{margin-left:-38.435700px;}
._21{margin-left:-35.277000px;}
._14{margin-left:-33.138000px;}
._15{margin-left:-31.241700px;}
._24{margin-left:-28.207800px;}
._22{margin-left:-27.199800px;}
._18{margin-left:-23.934300px;}
._b{margin-left:-22.908300px;}
._25{margin-left:-21.142200px;}
._1a{margin-left:-19.500000px;}
._13{margin-left:-17.388000px;}
._1c{margin-left:-15.253200px;}
._e{margin-left:-14.244300px;}
._1d{margin-left:-12.112200px;}
._19{margin-left:-10.323000px;}
._5{margin-left:-8.880000px;}
._2{margin-left:-6.664500px;}
._6{margin-left:-4.855200px;}
._1{margin-left:-3.284400px;}
._0{margin-left:-1.836000px;}
._12{width:1.011600px;}
._4{width:2.015400px;}
._3{width:3.315000px;}
._7{width:4.699800px;}
._9{width:6.312600px;}
._8{width:7.408800px;}
._f{width:9.122400px;}
._1b{width:10.552500px;}
._23{width:11.623500px;}
._10{width:12.681900px;}
._c{width:14.319900px;}
._11{width:18.572400px;}
._16{width:20.437200px;}
._17{width:32.598300px;}
._a{width:33.624300px;}
._1e{width:39.438300px;}
._d{width:42.288300px;}
._20{width:45.480300px;}
.fc4{color:rgb(44,66,149);}
.fc3{color:rgb(87,87,86);}
.fc2{color:rgb(157,157,156);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:24.000000px;}
.fs9{font-size:34.980000px;}
.fsb{font-size:36.729000px;}
.fs4{font-size:45.000000px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:51.000000px;}
.fsa{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs7{font-size:78.000000px;}
.fs0{font-size:102.000000px;}
.fs6{font-size:120.000000px;}
.y0{bottom:0.000000px;}
.y22{bottom:57.111000px;}
.y60{bottom:93.435300px;}
.y101{bottom:93.819600px;}
.yb1{bottom:93.832200px;}
.yd4{bottom:93.884550px;}
.y3c{bottom:94.200750px;}
.y98{bottom:94.816500px;}
.y15d{bottom:95.410950px;}
.y13d{bottom:95.958150px;}
.y12a{bottom:101.898450px;}
.y11e{bottom:104.502150px;}
.y7b{bottom:106.866150px;}
.y5f{bottom:110.535300px;}
.y100{bottom:110.919600px;}
.yb0{bottom:110.932200px;}
.yd3{bottom:110.984550px;}
.y3b{bottom:111.300750px;}
.y178{bottom:111.354000px;}
.y15c{bottom:112.510950px;}
.y13c{bottom:113.058150px;}
.y97{bottom:113.716500px;}
.y21{bottom:119.400150px;}
.y129{bottom:120.798450px;}
.y11d{bottom:123.402150px;}
.y7a{bottom:125.766150px;}
.y5e{bottom:127.635300px;}
.yff{bottom:128.019600px;}
.yaf{bottom:128.032200px;}
.yd2{bottom:128.084550px;}
.y15b{bottom:129.610950px;}
.y13b{bottom:130.158150px;}
.y177{bottom:130.254000px;}
.y96{bottom:132.616500px;}
.y20{bottom:132.900150px;}
.y11c{bottom:142.302150px;}
.y79{bottom:144.666150px;}
.y5d{bottom:144.735300px;}
.yae{bottom:145.132200px;}
.y1f{bottom:146.400150px;}
.y13a{bottom:147.258150px;}
.yd1{bottom:147.307800px;}
.y3a{bottom:148.724400px;}
.y15a{bottom:148.834200px;}
.y176{bottom:149.154000px;}
.y95{bottom:151.516500px;}
.y128{bottom:156.706350px;}
.y1e{bottom:159.900150px;}
.y11b{bottom:161.202150px;}
.y5c{bottom:161.835300px;}
.yad{bottom:162.232200px;}
.y78{bottom:163.566150px;}
.yfe{bottom:163.801500px;}
.y139{bottom:164.358150px;}
.yd0{bottom:164.407800px;}
.y159{bottom:165.934200px;}
.y175{bottom:168.054000px;}
.y94{bottom:170.416500px;}
.y1d{bottom:173.400150px;}
.y5b{bottom:178.935300px;}
.yac{bottom:179.332200px;}
.y11a{bottom:180.102150px;}
.y127{bottom:180.106350px;}
.y138{bottom:181.458150px;}
.ycf{bottom:181.507800px;}
.y77{bottom:182.466150px;}
.yfd{bottom:182.701500px;}
.y158{bottom:183.034200px;}
.y174{bottom:186.954000px;}
.y93{bottom:189.316500px;}
.y5a{bottom:196.035300px;}
.yce{bottom:198.607800px;}
.y119{bottom:199.002150px;}
.y157{bottom:200.134200px;}
.yfc{bottom:201.601500px;}
.y173{bottom:205.854000px;}
.ye4{bottom:208.216500px;}
.y18a{bottom:211.996500px;}
.y59{bottom:213.135300px;}
.y76{bottom:214.122150px;}
.ycd{bottom:215.707800px;}
.y156{bottom:217.234200px;}
.y118{bottom:217.902150px;}
.yfb{bottom:220.501500px;}
.y1c{bottom:224.277450px;}
.y172{bottom:224.754000px;}
.y92{bottom:225.226500px;}
.yab{bottom:225.229650px;}
.ye3{bottom:227.116500px;}
.y137{bottom:229.016550px;}
.y189{bottom:230.896500px;}
.ycc{bottom:232.807800px;}
.y155{bottom:236.457450px;}
.y117{bottom:236.802150px;}
.yfa{bottom:239.401500px;}
.y1b{bottom:239.577450px;}
.y171{bottom:243.654000px;}
.y91{bottom:244.126500px;}
.yaa{bottom:244.129650px;}
.ye2{bottom:246.016500px;}
.y136{bottom:247.916550px;}
.y188{bottom:249.796500px;}
.ycb{bottom:249.907800px;}
.y154{bottom:253.557450px;}
.y1a{bottom:254.877450px;}
.y116{bottom:255.702150px;}
.yf9{bottom:258.301500px;}
.y58{bottom:261.139650px;}
.y170{bottom:262.554000px;}
.y90{bottom:263.026500px;}
.ya9{bottom:263.029650px;}
.ye1{bottom:264.916500px;}
.yca{bottom:267.007800px;}
.y187{bottom:268.696500px;}
.y153{bottom:270.657450px;}
.yf8{bottom:277.201500px;}
.y19{bottom:278.681700px;}
.y135{bottom:279.574050px;}
.y75{bottom:280.036500px;}
.y57{bottom:280.039650px;}
.y16f{bottom:281.454000px;}
.y8f{bottom:281.926500px;}
.ya8{bottom:281.929650px;}
.ye0{bottom:283.816500px;}
.yc9{bottom:284.107800px;}
.y186{bottom:287.596500px;}
.y152{bottom:287.757450px;}
.y115{bottom:291.612150px;}
.y18{bottom:293.981700px;}
.yf7{bottom:296.101500px;}
.y134{bottom:298.474050px;}
.y74{bottom:298.936500px;}
.y56{bottom:298.939650px;}
.y16e{bottom:300.354000px;}
.y8e{bottom:300.826500px;}
.ya7{bottom:300.829650px;}
.yc8{bottom:301.207800px;}
.ydf{bottom:302.716500px;}
.y185{bottom:306.496500px;}
.y17{bottom:309.281700px;}
.y114{bottom:310.512150px;}
.y133{bottom:317.364000px;}
.y73{bottom:317.836500px;}
.y55{bottom:317.839650px;}
.yc7{bottom:318.307800px;}
.y16d{bottom:319.254000px;}
.y8d{bottom:319.726500px;}
.ya6{bottom:319.729650px;}
.yde{bottom:321.616500px;}
.y19a{bottom:325.365750px;}
.y184{bottom:325.396500px;}
.y113{bottom:329.412150px;}
.yf6{bottom:332.011500px;}
.y16{bottom:333.085950px;}
.yc6{bottom:335.407800px;}
.y132{bottom:336.264000px;}
.y72{bottom:336.736500px;}
.y54{bottom:336.739650px;}
.y151{bottom:336.741750px;}
.y16c{bottom:338.154000px;}
.y8c{bottom:338.626500px;}
.ya5{bottom:338.629650px;}
.ydd{bottom:340.516500px;}
.y199{bottom:344.265750px;}
.y183{bottom:344.296500px;}
.y112{bottom:348.312150px;}
.y15{bottom:348.385950px;}
.yf5{bottom:350.911500px;}
.yc5{bottom:352.507800px;}
.y131{bottom:355.164000px;}
.y71{bottom:355.636500px;}
.y53{bottom:355.639650px;}
.y150{bottom:355.641750px;}
.y8b{bottom:357.526500px;}
.ydc{bottom:359.416500px;}
.y198{bottom:363.165750px;}
.y182{bottom:363.196500px;}
.y14{bottom:363.685950px;}
.y111{bottom:367.212150px;}
.yc4{bottom:369.607800px;}
.yf4{bottom:369.811500px;}
.y28{bottom:372.073050px;}
.y130{bottom:374.064000px;}
.y70{bottom:374.536500px;}
.y52{bottom:374.539650px;}
.y14f{bottom:374.541750px;}
.y8a{bottom:376.426500px;}
.y126{bottom:378.316500px;}
.y110{bottom:386.112150px;}
.y13{bottom:387.490200px;}
.yf3{bottom:388.711500px;}
.y12f{bottom:392.964000px;}
.y6f{bottom:393.436500px;}
.y51{bottom:393.439650px;}
.y14e{bottom:393.441750px;}
.y197{bottom:394.823250px;}
.y89{bottom:395.326500px;}
.y125{bottom:397.216500px;}
.y181{bottom:399.106500px;}
.y12{bottom:402.790200px;}
.y10f{bottom:405.012150px;}
.yf2{bottom:407.611500px;}
.y12e{bottom:411.864000px;}
.y27{bottom:412.232850px;}
.y6e{bottom:412.336500px;}
.y50{bottom:412.339650px;}
.y14d{bottom:412.341750px;}
.y196{bottom:413.723250px;}
.y88{bottom:414.226500px;}
.yc3{bottom:416.087850px;}
.y124{bottom:416.116500px;}
.y180{bottom:418.006500px;}
.y11{bottom:418.090200px;}
.y10e{bottom:423.912150px;}
.yf1{bottom:426.511500px;}
.y12d{bottom:430.764000px;}
.y6d{bottom:431.236500px;}
.y4f{bottom:431.239650px;}
.y14c{bottom:431.241750px;}
.y195{bottom:432.623250px;}
.y87{bottom:433.126500px;}
.yc2{bottom:434.987850px;}
.y123{bottom:435.016500px;}
.y10d{bottom:442.812150px;}
.y10{bottom:446.140200px;}
.y16b{bottom:449.664000px;}
.y4e{bottom:450.139650px;}
.y14b{bottom:450.141750px;}
.y194{bottom:451.523250px;}
.y86{bottom:452.026500px;}
.y26{bottom:452.392650px;}
.yc1{bottom:453.887850px;}
.y17f{bottom:453.916500px;}
.yf{bottom:461.440200px;}
.yf0{bottom:462.421500px;}
.y6c{bottom:467.146500px;}
.ya4{bottom:469.039650px;}
.y14a{bottom:469.041750px;}
.ydb{bottom:470.926500px;}
.yc0{bottom:472.787850px;}
.y17e{bottom:472.816500px;}
.y10c{bottom:478.722150px;}
.yef{bottom:481.321500px;}
.y39{bottom:482.232450px;}
.y193{bottom:483.180750px;}
.y16a{bottom:485.574000px;}
.y6b{bottom:486.046500px;}
.y4d{bottom:486.049650px;}
.y85{bottom:487.936500px;}
.ya3{bottom:487.939650px;}
.y149{bottom:487.941750px;}
.yda{bottom:489.826500px;}
.ybf{bottom:491.687850px;}
.y17d{bottom:491.716500px;}
.y25{bottom:492.552600px;}
.y10b{bottom:497.622150px;}
.yee{bottom:500.221500px;}
.y192{bottom:502.080750px;}
.y169{bottom:504.474000px;}
.y6a{bottom:504.946500px;}
.y4c{bottom:504.949650px;}
.y84{bottom:506.836500px;}
.ya2{bottom:506.839650px;}
.y148{bottom:506.841750px;}
.yd9{bottom:508.726500px;}
.ybe{bottom:510.587850px;}
.y17c{bottom:510.616500px;}
.y10a{bottom:516.522150px;}
.yed{bottom:519.121500px;}
.y191{bottom:520.980750px;}
.y38{bottom:523.343700px;}
.y168{bottom:523.374000px;}
.y69{bottom:523.846500px;}
.y4b{bottom:523.849650px;}
.y83{bottom:525.736500px;}
.ya1{bottom:525.739650px;}
.y147{bottom:525.741750px;}
.yd8{bottom:527.626500px;}
.ybd{bottom:529.485750px;}
.y17b{bottom:529.516500px;}
.y24{bottom:532.712400px;}
.y109{bottom:535.422150px;}
.yec{bottom:538.021500px;}
.y190{bottom:539.880750px;}
.y37{bottom:542.243700px;}
.y167{bottom:542.274000px;}
.y68{bottom:542.746500px;}
.y4a{bottom:542.749650px;}
.y82{bottom:544.636500px;}
.ya0{bottom:544.639650px;}
.y146{bottom:544.641750px;}
.ye{bottom:546.246300px;}
.y122{bottom:546.526500px;}
.ybc{bottom:548.385750px;}
.y108{bottom:554.322150px;}
.yeb{bottom:556.921500px;}
.y18f{bottom:558.780750px;}
.y36{bottom:561.143700px;}
.y166{bottom:561.174000px;}
.y67{bottom:561.646500px;}
.y49{bottom:561.649650px;}
.y81{bottom:563.536500px;}
.y9f{bottom:563.539650px;}
.y145{bottom:563.541750px;}
.y121{bottom:565.426500px;}
.ybb{bottom:567.285750px;}
.y12c{bottom:569.679000px;}
.yd{bottom:570.050550px;}
.y23{bottom:572.874900px;}
.y107{bottom:573.222150px;}
.yea{bottom:575.821500px;}
.y35{bottom:580.043700px;}
.y66{bottom:580.546500px;}
.y48{bottom:580.549650px;}
.y80{bottom:582.436500px;}
.y9e{bottom:582.439650px;}
.y144{bottom:582.441750px;}
.y120{bottom:584.326500px;}
.yba{bottom:586.185750px;}
.y12b{bottom:588.579000px;}
.y18e{bottom:590.438250px;}
.y106{bottom:592.122150px;}
.yc{bottom:593.854800px;}
.y165{bottom:597.084000px;}
.y34{bottom:598.943700px;}
.y65{bottom:599.446500px;}
.y47{bottom:599.449650px;}
.y7f{bottom:601.336500px;}
.y9d{bottom:601.339650px;}
.y143{bottom:601.341750px;}
.y17a{bottom:603.226500px;}
.yb9{bottom:605.085750px;}
.y18d{bottom:609.338250px;}
.y105{bottom:611.022150px;}
.ye9{bottom:611.731500px;}
.y164{bottom:615.984000px;}
.y33{bottom:617.843700px;}
.y64{bottom:618.346500px;}
.y46{bottom:618.349650px;}
.y7e{bottom:620.236500px;}
.y9c{bottom:620.239650px;}
.yb{bottom:621.904800px;}
.y179{bottom:622.126500px;}
.y18c{bottom:628.238250px;}
.y104{bottom:629.922150px;}
.ye8{bottom:630.631500px;}
.y163{bottom:634.884000px;}
.y32{bottom:636.743700px;}
.ya{bottom:637.204800px;}
.y63{bottom:637.246500px;}
.y45{bottom:637.249650px;}
.y7d{bottom:639.136500px;}
.y9b{bottom:639.139650px;}
.yb8{bottom:640.995750px;}
.y18b{bottom:647.138250px;}
.y103{bottom:648.822150px;}
.y162{bottom:653.784000px;}
.y31{bottom:655.643700px;}
.y62{bottom:656.146500px;}
.y44{bottom:656.149650px;}
.y7c{bottom:658.036500px;}
.y9a{bottom:658.039650px;}
.y29{bottom:659.824950px;}
.yb7{bottom:659.895750px;}
.ye7{bottom:662.289000px;}
.y161{bottom:672.684000px;}
.y30{bottom:674.543700px;}
.y61{bottom:675.046500px;}
.y43{bottom:675.049650px;}
.yd7{bottom:676.936500px;}
.y142{bottom:676.939650px;}
.yb6{bottom:678.795750px;}
.ye6{bottom:681.189000px;}
.y5{bottom:684.124050px;}
.y102{bottom:684.730050px;}
.y160{bottom:691.584000px;}
.y2f{bottom:693.443700px;}
.y42{bottom:693.946500px;}
.y99{bottom:693.949650px;}
.yd6{bottom:695.836500px;}
.yb5{bottom:697.695750px;}
.ye5{bottom:700.089000px;}
.y15f{bottom:710.484000px;}
.y2e{bottom:712.343700px;}
.y41{bottom:712.846500px;}
.y141{bottom:712.849650px;}
.yd5{bottom:714.736500px;}
.yb4{bottom:716.595750px;}
.y4{bottom:722.173800px;}
.y15e{bottom:729.384000px;}
.y2d{bottom:731.243700px;}
.y40{bottom:731.746500px;}
.y140{bottom:731.749650px;}
.y11f{bottom:733.636500px;}
.y9{bottom:734.182050px;}
.yb3{bottom:735.495750px;}
.y8{bottom:749.482050px;}
.y2c{bottom:750.143700px;}
.y3f{bottom:750.646500px;}
.y13f{bottom:750.649650px;}
.y3{bottom:752.161800px;}
.yb2{bottom:754.395750px;}
.y7{bottom:763.882050px;}
.y3e{bottom:769.546500px;}
.y13e{bottom:769.549650px;}
.y6{bottom:778.282050px;}
.y2{bottom:782.149800px;}
.y2b{bottom:786.051600px;}
.y3d{bottom:788.446500px;}
.y1{bottom:812.137800px;}
.y2a{bottom:837.821400px;}
.h5{height:33.328125px;}
.h8{height:39.484863px;}
.h6{height:42.117188px;}
.h4{height:42.234375px;}
.h16{height:43.743164px;}
.he{height:44.745840px;}
.h7{height:44.749512px;}
.h3{height:48.384000px;}
.h10{height:50.014160px;}
.hf{height:52.646484px;}
.hd{height:55.224000px;}
.h9{height:55.278809px;}
.h13{height:55.287209px;}
.hb{height:55.289009px;}
.ha{height:55.289609px;}
.h11{height:55.291409px;}
.h15{height:55.319009px;}
.h14{height:55.329809px;}
.h12{height:55.432617px;}
.h2{height:78.336000px;}
.hc{height:84.960000px;}
.h0{height:892.914000px;}
.h1{height:893.250000px;}
.w0{width:631.417500px;}
.w1{width:631.500000px;}
.x0{left:0.000000px;}
.x6{left:76.535400px;}
.xb{left:89.040750px;}
.x11{left:96.035400px;}
.xe{left:97.796400px;}
.x4{left:103.359750px;}
.x10{left:107.241600px;}
.x2{left:109.046250px;}
.x9{left:125.433150px;}
.x1{left:132.684750px;}
.x3{left:144.236250px;}
.x5{left:148.130400px;}
.x7{left:150.008850px;}
.xc{left:159.931650px;}
.xd{left:228.433800px;}
.xa{left:231.732300px;}
.xf{left:307.833750px;}
.x8{left:311.771100px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.760000pt;}
.v2{vertical-align:18.659200pt;}
.ls11{letter-spacing:-2.240000pt;}
.ls6{letter-spacing:-2.072000pt;}
.ls1{letter-spacing:-1.280000pt;}
.ls2{letter-spacing:-1.120000pt;}
.ls13{letter-spacing:-1.064000pt;}
.ls10{letter-spacing:-1.008000pt;}
.ls3{letter-spacing:-0.560000pt;}
.ls9{letter-spacing:-0.506667pt;}
.ls12{letter-spacing:-0.056000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000267pt;}
.lse{letter-spacing:0.056000pt;}
.lsf{letter-spacing:0.078400pt;}
.lsd{letter-spacing:0.224000pt;}
.ls8{letter-spacing:0.326133pt;}
.lsc{letter-spacing:0.326480pt;}
.lsa{letter-spacing:0.506667pt;}
.ls7{letter-spacing:0.560000pt;}
.lsb{letter-spacing:1.013333pt;}
.ls5{letter-spacing:1.120000pt;}
.wsc1{word-spacing:-14.560000pt;}
.ws107{word-spacing:-14.000000pt;}
.ws109{word-spacing:-13.944000pt;}
.ws108{word-spacing:-12.992000pt;}
.ws10a{word-spacing:-12.936000pt;}
.ws1{word-spacing:-11.333333pt;}
.wse7{word-spacing:-8.488480pt;}
.ws14{word-spacing:-8.162000pt;}
.ws65{word-spacing:-7.168000pt;}
.ws4{word-spacing:-5.333333pt;}
.wsf9{word-spacing:-5.040000pt;}
.ws6{word-spacing:-4.970667pt;}
.wsd9{word-spacing:-4.760000pt;}
.ws4c{word-spacing:-4.312000pt;}
.ws8a{word-spacing:-4.200000pt;}
.ws71{word-spacing:-4.144000pt;}
.ws6e{word-spacing:-4.088000pt;}
.wsfc{word-spacing:-3.976000pt;}
.wsdc{word-spacing:-3.752000pt;}
.ws105{word-spacing:-3.696000pt;}
.ws61{word-spacing:-3.584000pt;}
.ws10d{word-spacing:-3.528000pt;}
.ws3b{word-spacing:-3.360000pt;}
.ws89{word-spacing:-3.304000pt;}
.ws45{word-spacing:-3.080000pt;}
.ws9a{word-spacing:-3.024000pt;}
.wscb{word-spacing:-2.856000pt;}
.wsf2{word-spacing:-2.837333pt;}
.wsfa{word-spacing:-2.744000pt;}
.ws5{word-spacing:-2.688000pt;}
.wsf4{word-spacing:-2.432000pt;}
.wsb4{word-spacing:-2.408000pt;}
.wsed{word-spacing:-2.184000pt;}
.ws1d{word-spacing:-2.072000pt;}
.wsd6{word-spacing:-1.960000pt;}
.ws8{word-spacing:-1.941333pt;}
.ws3c{word-spacing:-1.904000pt;}
.ws12{word-spacing:-1.792000pt;}
.ws46{word-spacing:-1.736000pt;}
.ws2d{word-spacing:-1.680000pt;}
.ws7{word-spacing:-1.600000pt;}
.wsa7{word-spacing:-1.456000pt;}
.ws77{word-spacing:-1.418667pt;}
.wsab{word-spacing:-1.400000pt;}
.ws106{word-spacing:-1.288000pt;}
.ws73{word-spacing:-1.232000pt;}
.wsf8{word-spacing:-1.013333pt;}
.ws69{word-spacing:-1.008000pt;}
.wsb5{word-spacing:-0.896000pt;}
.ws38{word-spacing:-0.840000pt;}
.ws3{word-spacing:-0.816000pt;}
.wsdd{word-spacing:-0.616000pt;}
.ws72{word-spacing:-0.560000pt;}
.wsf1{word-spacing:-0.506667pt;}
.ws1a{word-spacing:-0.336000pt;}
.ws7c{word-spacing:-0.304000pt;}
.wsb6{word-spacing:-0.280000pt;}
.ws5c{word-spacing:-0.224000pt;}
.wsa6{word-spacing:-0.168000pt;}
.ws2{word-spacing:-0.040000pt;}
.ws0{word-spacing:0.000000pt;}
.ws10f{word-spacing:0.056000pt;}
.ws40{word-spacing:0.112000pt;}
.ws9f{word-spacing:0.280000pt;}
.wsf5{word-spacing:0.304000pt;}
.ws6d{word-spacing:0.448000pt;}
.wsd5{word-spacing:0.504000pt;}
.ws41{word-spacing:0.560000pt;}
.ws99{word-spacing:0.616000pt;}
.ws81{word-spacing:0.658667pt;}
.ws56{word-spacing:0.672000pt;}
.ws52{word-spacing:0.728000pt;}
.wsb2{word-spacing:0.840000pt;}
.wse4{word-spacing:0.912000pt;}
.ws31{word-spacing:0.952000pt;}
.wsec{word-spacing:1.008000pt;}
.ws68{word-spacing:1.064000pt;}
.ws9{word-spacing:1.120000pt;}
.ws91{word-spacing:1.176000pt;}
.ws44{word-spacing:1.232000pt;}
.ws63{word-spacing:1.288000pt;}
.wsf0{word-spacing:1.317333pt;}
.wse2{word-spacing:1.400000pt;}
.ws78{word-spacing:1.418667pt;}
.ws2e{word-spacing:1.456000pt;}
.ws7f{word-spacing:1.469333pt;}
.ws57{word-spacing:1.512000pt;}
.wsc9{word-spacing:1.568000pt;}
.ws7b{word-spacing:1.570667pt;}
.ws10{word-spacing:1.624000pt;}
.wsad{word-spacing:1.680000pt;}
.wsc5{word-spacing:1.736000pt;}
.ws4d{word-spacing:1.792000pt;}
.ws6b{word-spacing:1.874667pt;}
.ws104{word-spacing:1.904000pt;}
.ws2a{word-spacing:1.925333pt;}
.wsa8{word-spacing:1.960000pt;}
.wsf7{word-spacing:2.026667pt;}
.ws5a{word-spacing:2.072000pt;}
.ws6c{word-spacing:2.128000pt;}
.ws70{word-spacing:2.240000pt;}
.ws80{word-spacing:2.280000pt;}
.ws20{word-spacing:2.296000pt;}
.ws53{word-spacing:2.352000pt;}
.ws29{word-spacing:2.381333pt;}
.ws60{word-spacing:2.408000pt;}
.ws1b{word-spacing:2.464000pt;}
.wse3{word-spacing:2.533333pt;}
.wsff{word-spacing:2.576000pt;}
.ws7e{word-spacing:2.634667pt;}
.wsc7{word-spacing:2.744000pt;}
.ws16{word-spacing:2.800000pt;}
.ws6a{word-spacing:2.837333pt;}
.ws9c{word-spacing:2.856000pt;}
.wsc0{word-spacing:2.912000pt;}
.ws9b{word-spacing:3.080000pt;}
.ws9e{word-spacing:3.248000pt;}
.ws8f{word-spacing:3.304000pt;}
.ws19{word-spacing:3.360000pt;}
.wsb0{word-spacing:3.472000pt;}
.wsc8{word-spacing:3.528000pt;}
.wsb9{word-spacing:3.584000pt;}
.ws22{word-spacing:3.640000pt;}
.wsee{word-spacing:3.696000pt;}
.ws76{word-spacing:3.749333pt;}
.ws27{word-spacing:3.800000pt;}
.ws25{word-spacing:3.808000pt;}
.ws37{word-spacing:4.032000pt;}
.ws86{word-spacing:4.088000pt;}
.wsf3{word-spacing:4.104000pt;}
.wsd0{word-spacing:4.144000pt;}
.ws9d{word-spacing:4.200000pt;}
.ws79{word-spacing:4.306667pt;}
.ws1c{word-spacing:4.312000pt;}
.ws98{word-spacing:4.424000pt;}
.ws5b{word-spacing:4.480000pt;}
.ws2b{word-spacing:4.509333pt;}
.wsd{word-spacing:4.536000pt;}
.ws3f{word-spacing:4.648000pt;}
.wsa3{word-spacing:4.704000pt;}
.ws18{word-spacing:4.760000pt;}
.wsc4{word-spacing:4.816000pt;}
.ws26{word-spacing:4.872000pt;}
.wsb1{word-spacing:4.928000pt;}
.ws21{word-spacing:5.040000pt;}
.ws1f{word-spacing:5.096000pt;}
.ws7d{word-spacing:5.117333pt;}
.ws58{word-spacing:5.152000pt;}
.ws59{word-spacing:5.208000pt;}
.ws3a{word-spacing:5.264000pt;}
.wsbe{word-spacing:5.320000pt;}
.ws10b{word-spacing:5.432000pt;}
.ws17{word-spacing:5.488000pt;}
.ws42{word-spacing:5.544000pt;}
.ws43{word-spacing:5.600000pt;}
.ws94{word-spacing:5.880000pt;}
.wsea{word-spacing:5.992000pt;}
.ws33{word-spacing:6.048000pt;}
.ws100{word-spacing:6.104000pt;}
.ws34{word-spacing:6.328000pt;}
.ws2c{word-spacing:6.333333pt;}
.ws23{word-spacing:6.496000pt;}
.wsfd{word-spacing:6.552000pt;}
.wse6{word-spacing:6.586667pt;}
.ws2f{word-spacing:6.608000pt;}
.ws28{word-spacing:6.637333pt;}
.wsd4{word-spacing:6.720000pt;}
.ws64{word-spacing:6.776000pt;}
.ws30{word-spacing:6.832000pt;}
.ws32{word-spacing:6.888000pt;}
.ws36{word-spacing:6.944000pt;}
.ws67{word-spacing:7.000000pt;}
.wsd3{word-spacing:7.056000pt;}
.ws6f{word-spacing:7.112000pt;}
.wscd{word-spacing:7.280000pt;}
.wsc2{word-spacing:7.336000pt;}
.ws97{word-spacing:7.392000pt;}
.ws4f{word-spacing:7.448000pt;}
.ws95{word-spacing:7.504000pt;}
.wsce{word-spacing:7.560000pt;}
.ws55{word-spacing:7.616000pt;}
.ws103{word-spacing:7.672000pt;}
.ws13{word-spacing:7.701333pt;}
.ws11{word-spacing:7.728000pt;}
.wsb7{word-spacing:7.840000pt;}
.wsb{word-spacing:7.896000pt;}
.wsc3{word-spacing:7.952000pt;}
.wsa1{word-spacing:8.008000pt;}
.ws75{word-spacing:8.157333pt;}
.wsa5{word-spacing:8.176000pt;}
.ws47{word-spacing:8.232000pt;}
.wsb3{word-spacing:8.288000pt;}
.ws4e{word-spacing:8.344000pt;}
.wsda{word-spacing:8.400000pt;}
.ws7a{word-spacing:8.461333pt;}
.wsa4{word-spacing:8.613333pt;}
.ws93{word-spacing:8.624000pt;}
.wse8{word-spacing:8.680000pt;}
.ws90{word-spacing:8.792000pt;}
.wsac{word-spacing:8.848000pt;}
.wsdb{word-spacing:8.904000pt;}
.ws54{word-spacing:8.960000pt;}
.ws15{word-spacing:9.128000pt;}
.ws5f{word-spacing:9.296000pt;}
.wscc{word-spacing:9.408000pt;}
.ws10e{word-spacing:9.464000pt;}
.ws5e{word-spacing:9.576000pt;}
.wsa9{word-spacing:9.856000pt;}
.wsc{word-spacing:9.912000pt;}
.wsd7{word-spacing:10.080000pt;}
.ws101{word-spacing:10.360000pt;}
.ws84{word-spacing:10.584000pt;}
.wsbc{word-spacing:10.696000pt;}
.ws74{word-spacing:10.808000pt;}
.wsf{word-spacing:10.864000pt;}
.wsa2{word-spacing:10.920000pt;}
.wsaa{word-spacing:11.088000pt;}
.ws92{word-spacing:11.144000pt;}
.wse{word-spacing:11.200000pt;}
.ws62{word-spacing:11.312000pt;}
.ws35{word-spacing:11.368000pt;}
.ws24{word-spacing:11.872000pt;}
.ws102{word-spacing:12.096000pt;}
.wsbb{word-spacing:12.152000pt;}
.wsfe{word-spacing:12.432000pt;}
.wsd1{word-spacing:12.488000pt;}
.ws1e{word-spacing:12.600000pt;}
.wsca{word-spacing:12.768000pt;}
.ws51{word-spacing:12.824000pt;}
.ws4a{word-spacing:12.880000pt;}
.wsd2{word-spacing:12.936000pt;}
.ws3e{word-spacing:12.992000pt;}
.wsae{word-spacing:13.104000pt;}
.ws8b{word-spacing:13.216000pt;}
.wsc6{word-spacing:13.440000pt;}
.ws50{word-spacing:13.552000pt;}
.wse5{word-spacing:13.578667pt;}
.wsef{word-spacing:13.608000pt;}
.ws3d{word-spacing:13.720000pt;}
.wscf{word-spacing:14.280000pt;}
.ws5d{word-spacing:14.392000pt;}
.ws85{word-spacing:14.560000pt;}
.wsdf{word-spacing:14.728000pt;}
.wsa{word-spacing:15.176000pt;}
.ws88{word-spacing:15.456000pt;}
.wsa0{word-spacing:15.680000pt;}
.wsfb{word-spacing:15.792000pt;}
.wsaf{word-spacing:15.904000pt;}
.wsd8{word-spacing:15.960000pt;}
.ws4b{word-spacing:16.016000pt;}
.wse1{word-spacing:16.240000pt;}
.ws39{word-spacing:16.296000pt;}
.wsde{word-spacing:16.464000pt;}
.ws83{word-spacing:16.744000pt;}
.ws87{word-spacing:16.968000pt;}
.wseb{word-spacing:17.360000pt;}
.wsbd{word-spacing:17.416000pt;}
.ws66{word-spacing:17.472000pt;}
.ws8d{word-spacing:17.808000pt;}
.wsf6{word-spacing:18.037333pt;}
.wse0{word-spacing:18.256000pt;}
.wsbf{word-spacing:18.480000pt;}
.ws96{word-spacing:18.816000pt;}
.ws48{word-spacing:19.040000pt;}
.ws8e{word-spacing:19.544000pt;}
.ws8c{word-spacing:19.936000pt;}
.wsb8{word-spacing:19.992000pt;}
.ws82{word-spacing:20.048000pt;}
.wsba{word-spacing:20.160000pt;}
.ws10c{word-spacing:20.216000pt;}
.wse9{word-spacing:20.440000pt;}
.ws49{word-spacing:30.800000pt;}
._1f{margin-left:-34.165067pt;}
._21{margin-left:-31.357333pt;}
._14{margin-left:-29.456000pt;}
._15{margin-left:-27.770400pt;}
._24{margin-left:-25.073600pt;}
._22{margin-left:-24.177600pt;}
._18{margin-left:-21.274933pt;}
._b{margin-left:-20.362933pt;}
._25{margin-left:-18.793067pt;}
._1a{margin-left:-17.333333pt;}
._13{margin-left:-15.456000pt;}
._1c{margin-left:-13.558400pt;}
._e{margin-left:-12.661600pt;}
._1d{margin-left:-10.766400pt;}
._19{margin-left:-9.176000pt;}
._5{margin-left:-7.893333pt;}
._2{margin-left:-5.924000pt;}
._6{margin-left:-4.315733pt;}
._1{margin-left:-2.919467pt;}
._0{margin-left:-1.632000pt;}
._12{width:0.899200pt;}
._4{width:1.791467pt;}
._3{width:2.946667pt;}
._7{width:4.177600pt;}
._9{width:5.611200pt;}
._8{width:6.585600pt;}
._f{width:8.108800pt;}
._1b{width:9.380000pt;}
._23{width:10.332000pt;}
._10{width:11.272800pt;}
._c{width:12.728800pt;}
._11{width:16.508800pt;}
._16{width:18.166400pt;}
._17{width:28.976267pt;}
._a{width:29.888267pt;}
._1e{width:35.056267pt;}
._d{width:37.589600pt;}
._20{width:40.426933pt;}
.fs5{font-size:21.333333pt;}
.fs9{font-size:31.093333pt;}
.fsb{font-size:32.648000pt;}
.fs4{font-size:40.000000pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:45.333333pt;}
.fsa{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs7{font-size:69.333333pt;}
.fs0{font-size:90.666667pt;}
.fs6{font-size:106.666667pt;}
.y0{bottom:0.000000pt;}
.y22{bottom:50.765333pt;}
.y60{bottom:83.053600pt;}
.y101{bottom:83.395200pt;}
.yb1{bottom:83.406400pt;}
.yd4{bottom:83.452933pt;}
.y3c{bottom:83.734000pt;}
.y98{bottom:84.281333pt;}
.y15d{bottom:84.809733pt;}
.y13d{bottom:85.296133pt;}
.y12a{bottom:90.576400pt;}
.y11e{bottom:92.890800pt;}
.y7b{bottom:94.992133pt;}
.y5f{bottom:98.253600pt;}
.y100{bottom:98.595200pt;}
.yb0{bottom:98.606400pt;}
.yd3{bottom:98.652933pt;}
.y3b{bottom:98.934000pt;}
.y178{bottom:98.981333pt;}
.y15c{bottom:100.009733pt;}
.y13c{bottom:100.496133pt;}
.y97{bottom:101.081333pt;}
.y21{bottom:106.133467pt;}
.y129{bottom:107.376400pt;}
.y11d{bottom:109.690800pt;}
.y7a{bottom:111.792133pt;}
.y5e{bottom:113.453600pt;}
.yff{bottom:113.795200pt;}
.yaf{bottom:113.806400pt;}
.yd2{bottom:113.852933pt;}
.y15b{bottom:115.209733pt;}
.y13b{bottom:115.696133pt;}
.y177{bottom:115.781333pt;}
.y96{bottom:117.881333pt;}
.y20{bottom:118.133467pt;}
.y11c{bottom:126.490800pt;}
.y79{bottom:128.592133pt;}
.y5d{bottom:128.653600pt;}
.yae{bottom:129.006400pt;}
.y1f{bottom:130.133467pt;}
.y13a{bottom:130.896133pt;}
.yd1{bottom:130.940267pt;}
.y3a{bottom:132.199467pt;}
.y15a{bottom:132.297067pt;}
.y176{bottom:132.581333pt;}
.y95{bottom:134.681333pt;}
.y128{bottom:139.294533pt;}
.y1e{bottom:142.133467pt;}
.y11b{bottom:143.290800pt;}
.y5c{bottom:143.853600pt;}
.yad{bottom:144.206400pt;}
.y78{bottom:145.392133pt;}
.yfe{bottom:145.601333pt;}
.y139{bottom:146.096133pt;}
.yd0{bottom:146.140267pt;}
.y159{bottom:147.497067pt;}
.y175{bottom:149.381333pt;}
.y94{bottom:151.481333pt;}
.y1d{bottom:154.133467pt;}
.y5b{bottom:159.053600pt;}
.yac{bottom:159.406400pt;}
.y11a{bottom:160.090800pt;}
.y127{bottom:160.094533pt;}
.y138{bottom:161.296133pt;}
.ycf{bottom:161.340267pt;}
.y77{bottom:162.192133pt;}
.yfd{bottom:162.401333pt;}
.y158{bottom:162.697067pt;}
.y174{bottom:166.181333pt;}
.y93{bottom:168.281333pt;}
.y5a{bottom:174.253600pt;}
.yce{bottom:176.540267pt;}
.y119{bottom:176.890800pt;}
.y157{bottom:177.897067pt;}
.yfc{bottom:179.201333pt;}
.y173{bottom:182.981333pt;}
.ye4{bottom:185.081333pt;}
.y18a{bottom:188.441333pt;}
.y59{bottom:189.453600pt;}
.y76{bottom:190.330800pt;}
.ycd{bottom:191.740267pt;}
.y156{bottom:193.097067pt;}
.y118{bottom:193.690800pt;}
.yfb{bottom:196.001333pt;}
.y1c{bottom:199.357733pt;}
.y172{bottom:199.781333pt;}
.y92{bottom:200.201333pt;}
.yab{bottom:200.204133pt;}
.ye3{bottom:201.881333pt;}
.y137{bottom:203.570267pt;}
.y189{bottom:205.241333pt;}
.ycc{bottom:206.940267pt;}
.y155{bottom:210.184400pt;}
.y117{bottom:210.490800pt;}
.yfa{bottom:212.801333pt;}
.y1b{bottom:212.957733pt;}
.y171{bottom:216.581333pt;}
.y91{bottom:217.001333pt;}
.yaa{bottom:217.004133pt;}
.ye2{bottom:218.681333pt;}
.y136{bottom:220.370267pt;}
.y188{bottom:222.041333pt;}
.ycb{bottom:222.140267pt;}
.y154{bottom:225.384400pt;}
.y1a{bottom:226.557733pt;}
.y116{bottom:227.290800pt;}
.yf9{bottom:229.601333pt;}
.y58{bottom:232.124133pt;}
.y170{bottom:233.381333pt;}
.y90{bottom:233.801333pt;}
.ya9{bottom:233.804133pt;}
.ye1{bottom:235.481333pt;}
.yca{bottom:237.340267pt;}
.y187{bottom:238.841333pt;}
.y153{bottom:240.584400pt;}
.yf8{bottom:246.401333pt;}
.y19{bottom:247.717067pt;}
.y135{bottom:248.510267pt;}
.y75{bottom:248.921333pt;}
.y57{bottom:248.924133pt;}
.y16f{bottom:250.181333pt;}
.y8f{bottom:250.601333pt;}
.ya8{bottom:250.604133pt;}
.ye0{bottom:252.281333pt;}
.yc9{bottom:252.540267pt;}
.y186{bottom:255.641333pt;}
.y152{bottom:255.784400pt;}
.y115{bottom:259.210800pt;}
.y18{bottom:261.317067pt;}
.yf7{bottom:263.201333pt;}
.y134{bottom:265.310267pt;}
.y74{bottom:265.721333pt;}
.y56{bottom:265.724133pt;}
.y16e{bottom:266.981333pt;}
.y8e{bottom:267.401333pt;}
.ya7{bottom:267.404133pt;}
.yc8{bottom:267.740267pt;}
.ydf{bottom:269.081333pt;}
.y185{bottom:272.441333pt;}
.y17{bottom:274.917067pt;}
.y114{bottom:276.010800pt;}
.y133{bottom:282.101333pt;}
.y73{bottom:282.521333pt;}
.y55{bottom:282.524133pt;}
.yc7{bottom:282.940267pt;}
.y16d{bottom:283.781333pt;}
.y8d{bottom:284.201333pt;}
.ya6{bottom:284.204133pt;}
.yde{bottom:285.881333pt;}
.y19a{bottom:289.214000pt;}
.y184{bottom:289.241333pt;}
.y113{bottom:292.810800pt;}
.yf6{bottom:295.121333pt;}
.y16{bottom:296.076400pt;}
.yc6{bottom:298.140267pt;}
.y132{bottom:298.901333pt;}
.y72{bottom:299.321333pt;}
.y54{bottom:299.324133pt;}
.y151{bottom:299.326000pt;}
.y16c{bottom:300.581333pt;}
.y8c{bottom:301.001333pt;}
.ya5{bottom:301.004133pt;}
.ydd{bottom:302.681333pt;}
.y199{bottom:306.014000pt;}
.y183{bottom:306.041333pt;}
.y112{bottom:309.610800pt;}
.y15{bottom:309.676400pt;}
.yf5{bottom:311.921333pt;}
.yc5{bottom:313.340267pt;}
.y131{bottom:315.701333pt;}
.y71{bottom:316.121333pt;}
.y53{bottom:316.124133pt;}
.y150{bottom:316.126000pt;}
.y8b{bottom:317.801333pt;}
.ydc{bottom:319.481333pt;}
.y198{bottom:322.814000pt;}
.y182{bottom:322.841333pt;}
.y14{bottom:323.276400pt;}
.y111{bottom:326.410800pt;}
.yc4{bottom:328.540267pt;}
.yf4{bottom:328.721333pt;}
.y28{bottom:330.731600pt;}
.y130{bottom:332.501333pt;}
.y70{bottom:332.921333pt;}
.y52{bottom:332.924133pt;}
.y14f{bottom:332.926000pt;}
.y8a{bottom:334.601333pt;}
.y126{bottom:336.281333pt;}
.y110{bottom:343.210800pt;}
.y13{bottom:344.435733pt;}
.yf3{bottom:345.521333pt;}
.y12f{bottom:349.301333pt;}
.y6f{bottom:349.721333pt;}
.y51{bottom:349.724133pt;}
.y14e{bottom:349.726000pt;}
.y197{bottom:350.954000pt;}
.y89{bottom:351.401333pt;}
.y125{bottom:353.081333pt;}
.y181{bottom:354.761333pt;}
.y12{bottom:358.035733pt;}
.y10f{bottom:360.010800pt;}
.yf2{bottom:362.321333pt;}
.y12e{bottom:366.101333pt;}
.y27{bottom:366.429200pt;}
.y6e{bottom:366.521333pt;}
.y50{bottom:366.524133pt;}
.y14d{bottom:366.526000pt;}
.y196{bottom:367.754000pt;}
.y88{bottom:368.201333pt;}
.yc3{bottom:369.855867pt;}
.y124{bottom:369.881333pt;}
.y180{bottom:371.561333pt;}
.y11{bottom:371.635733pt;}
.y10e{bottom:376.810800pt;}
.yf1{bottom:379.121333pt;}
.y12d{bottom:382.901333pt;}
.y6d{bottom:383.321333pt;}
.y4f{bottom:383.324133pt;}
.y14c{bottom:383.326000pt;}
.y195{bottom:384.554000pt;}
.y87{bottom:385.001333pt;}
.yc2{bottom:386.655867pt;}
.y123{bottom:386.681333pt;}
.y10d{bottom:393.610800pt;}
.y10{bottom:396.569067pt;}
.y16b{bottom:399.701333pt;}
.y4e{bottom:400.124133pt;}
.y14b{bottom:400.126000pt;}
.y194{bottom:401.354000pt;}
.y86{bottom:401.801333pt;}
.y26{bottom:402.126800pt;}
.yc1{bottom:403.455867pt;}
.y17f{bottom:403.481333pt;}
.yf{bottom:410.169067pt;}
.yf0{bottom:411.041333pt;}
.y6c{bottom:415.241333pt;}
.ya4{bottom:416.924133pt;}
.y14a{bottom:416.926000pt;}
.ydb{bottom:418.601333pt;}
.yc0{bottom:420.255867pt;}
.y17e{bottom:420.281333pt;}
.y10c{bottom:425.530800pt;}
.yef{bottom:427.841333pt;}
.y39{bottom:428.651067pt;}
.y193{bottom:429.494000pt;}
.y16a{bottom:431.621333pt;}
.y6b{bottom:432.041333pt;}
.y4d{bottom:432.044133pt;}
.y85{bottom:433.721333pt;}
.ya3{bottom:433.724133pt;}
.y149{bottom:433.726000pt;}
.yda{bottom:435.401333pt;}
.ybf{bottom:437.055867pt;}
.y17d{bottom:437.081333pt;}
.y25{bottom:437.824533pt;}
.y10b{bottom:442.330800pt;}
.yee{bottom:444.641333pt;}
.y192{bottom:446.294000pt;}
.y169{bottom:448.421333pt;}
.y6a{bottom:448.841333pt;}
.y4c{bottom:448.844133pt;}
.y84{bottom:450.521333pt;}
.ya2{bottom:450.524133pt;}
.y148{bottom:450.526000pt;}
.yd9{bottom:452.201333pt;}
.ybe{bottom:453.855867pt;}
.y17c{bottom:453.881333pt;}
.y10a{bottom:459.130800pt;}
.yed{bottom:461.441333pt;}
.y191{bottom:463.094000pt;}
.y38{bottom:465.194400pt;}
.y168{bottom:465.221333pt;}
.y69{bottom:465.641333pt;}
.y4b{bottom:465.644133pt;}
.y83{bottom:467.321333pt;}
.ya1{bottom:467.324133pt;}
.y147{bottom:467.326000pt;}
.yd8{bottom:469.001333pt;}
.ybd{bottom:470.654000pt;}
.y17b{bottom:470.681333pt;}
.y24{bottom:473.522133pt;}
.y109{bottom:475.930800pt;}
.yec{bottom:478.241333pt;}
.y190{bottom:479.894000pt;}
.y37{bottom:481.994400pt;}
.y167{bottom:482.021333pt;}
.y68{bottom:482.441333pt;}
.y4a{bottom:482.444133pt;}
.y82{bottom:484.121333pt;}
.ya0{bottom:484.124133pt;}
.y146{bottom:484.126000pt;}
.ye{bottom:485.552267pt;}
.y122{bottom:485.801333pt;}
.ybc{bottom:487.454000pt;}
.y108{bottom:492.730800pt;}
.yeb{bottom:495.041333pt;}
.y18f{bottom:496.694000pt;}
.y36{bottom:498.794400pt;}
.y166{bottom:498.821333pt;}
.y67{bottom:499.241333pt;}
.y49{bottom:499.244133pt;}
.y81{bottom:500.921333pt;}
.y9f{bottom:500.924133pt;}
.y145{bottom:500.926000pt;}
.y121{bottom:502.601333pt;}
.ybb{bottom:504.254000pt;}
.y12c{bottom:506.381333pt;}
.yd{bottom:506.711600pt;}
.y23{bottom:509.222133pt;}
.y107{bottom:509.530800pt;}
.yea{bottom:511.841333pt;}
.y35{bottom:515.594400pt;}
.y66{bottom:516.041333pt;}
.y48{bottom:516.044133pt;}
.y80{bottom:517.721333pt;}
.y9e{bottom:517.724133pt;}
.y144{bottom:517.726000pt;}
.y120{bottom:519.401333pt;}
.yba{bottom:521.054000pt;}
.y12b{bottom:523.181333pt;}
.y18e{bottom:524.834000pt;}
.y106{bottom:526.330800pt;}
.yc{bottom:527.870933pt;}
.y165{bottom:530.741333pt;}
.y34{bottom:532.394400pt;}
.y65{bottom:532.841333pt;}
.y47{bottom:532.844133pt;}
.y7f{bottom:534.521333pt;}
.y9d{bottom:534.524133pt;}
.y143{bottom:534.526000pt;}
.y17a{bottom:536.201333pt;}
.yb9{bottom:537.854000pt;}
.y18d{bottom:541.634000pt;}
.y105{bottom:543.130800pt;}
.ye9{bottom:543.761333pt;}
.y164{bottom:547.541333pt;}
.y33{bottom:549.194400pt;}
.y64{bottom:549.641333pt;}
.y46{bottom:549.644133pt;}
.y7e{bottom:551.321333pt;}
.y9c{bottom:551.324133pt;}
.yb{bottom:552.804267pt;}
.y179{bottom:553.001333pt;}
.y18c{bottom:558.434000pt;}
.y104{bottom:559.930800pt;}
.ye8{bottom:560.561333pt;}
.y163{bottom:564.341333pt;}
.y32{bottom:565.994400pt;}
.ya{bottom:566.404267pt;}
.y63{bottom:566.441333pt;}
.y45{bottom:566.444133pt;}
.y7d{bottom:568.121333pt;}
.y9b{bottom:568.124133pt;}
.yb8{bottom:569.774000pt;}
.y18b{bottom:575.234000pt;}
.y103{bottom:576.730800pt;}
.y162{bottom:581.141333pt;}
.y31{bottom:582.794400pt;}
.y62{bottom:583.241333pt;}
.y44{bottom:583.244133pt;}
.y7c{bottom:584.921333pt;}
.y9a{bottom:584.924133pt;}
.y29{bottom:586.511067pt;}
.yb7{bottom:586.574000pt;}
.ye7{bottom:588.701333pt;}
.y161{bottom:597.941333pt;}
.y30{bottom:599.594400pt;}
.y61{bottom:600.041333pt;}
.y43{bottom:600.044133pt;}
.yd7{bottom:601.721333pt;}
.y142{bottom:601.724133pt;}
.yb6{bottom:603.374000pt;}
.ye6{bottom:605.501333pt;}
.y5{bottom:608.110267pt;}
.y102{bottom:608.648933pt;}
.y160{bottom:614.741333pt;}
.y2f{bottom:616.394400pt;}
.y42{bottom:616.841333pt;}
.y99{bottom:616.844133pt;}
.yd6{bottom:618.521333pt;}
.yb5{bottom:620.174000pt;}
.ye5{bottom:622.301333pt;}
.y15f{bottom:631.541333pt;}
.y2e{bottom:633.194400pt;}
.y41{bottom:633.641333pt;}
.y141{bottom:633.644133pt;}
.yd5{bottom:635.321333pt;}
.yb4{bottom:636.974000pt;}
.y4{bottom:641.932267pt;}
.y15e{bottom:648.341333pt;}
.y2d{bottom:649.994400pt;}
.y40{bottom:650.441333pt;}
.y140{bottom:650.444133pt;}
.y11f{bottom:652.121333pt;}
.y9{bottom:652.606267pt;}
.yb3{bottom:653.774000pt;}
.y8{bottom:666.206267pt;}
.y2c{bottom:666.794400pt;}
.y3f{bottom:667.241333pt;}
.y13f{bottom:667.244133pt;}
.y3{bottom:668.588267pt;}
.yb2{bottom:670.574000pt;}
.y7{bottom:679.006267pt;}
.y3e{bottom:684.041333pt;}
.y13e{bottom:684.044133pt;}
.y6{bottom:691.806267pt;}
.y2{bottom:695.244267pt;}
.y2b{bottom:698.712533pt;}
.y3d{bottom:700.841333pt;}
.y1{bottom:721.900267pt;}
.y2a{bottom:744.730133pt;}
.h5{height:29.625000pt;}
.h8{height:35.097656pt;}
.h6{height:37.437500pt;}
.h4{height:37.541667pt;}
.h16{height:38.882812pt;}
.he{height:39.774080pt;}
.h7{height:39.777344pt;}
.h3{height:43.008000pt;}
.h10{height:44.457031pt;}
.hf{height:46.796875pt;}
.hd{height:49.088000pt;}
.h9{height:49.136719pt;}
.h13{height:49.144185pt;}
.hb{height:49.145785pt;}
.ha{height:49.146319pt;}
.h11{height:49.147919pt;}
.h15{height:49.172452pt;}
.h14{height:49.182052pt;}
.h12{height:49.273438pt;}
.h2{height:69.632000pt;}
.hc{height:75.520000pt;}
.h0{height:793.701333pt;}
.h1{height:794.000000pt;}
.w0{width:561.260000pt;}
.w1{width:561.333333pt;}
.x0{left:0.000000pt;}
.x6{left:68.031467pt;}
.xb{left:79.147333pt;}
.x11{left:85.364800pt;}
.xe{left:86.930133pt;}
.x4{left:91.875333pt;}
.x10{left:95.325867pt;}
.x2{left:96.930000pt;}
.x9{left:111.496133pt;}
.x1{left:117.942000pt;}
.x3{left:128.210000pt;}
.x5{left:131.671467pt;}
.x7{left:133.341200pt;}
.xc{left:142.161467pt;}
.xd{left:203.052267pt;}
.xa{left:205.984267pt;}
.xf{left:273.630000pt;}
.x8{left:277.129867pt;}
}




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