
    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_7adba9a6e6ab0cf068e3eea3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_928eb1173131d2384483e01d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.959961;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_113223e8a7e085a9e291f36b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_f7612906d2aa6cbe299e166f.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_64841334929375c55c6babbf.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952000;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_0aa9f284fff3ef6491490620.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.952000;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_871ab3de487f2db5ac7742ea.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.959000;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_b637f9e0a951375174ba3a2e.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.710000;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_a201648c59ef2278245d23e9.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.888000;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_af4f4d1c1da5dd6b7c43024b.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.952000;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_c0aaff6e73a4dae6d569ba96.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.856934;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_b13127537e62f2559e857f96.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.191000;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_2ac79903174a2c535b29ece1.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.188000;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);}
.v2{vertical-align:-20.922000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.010000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.000144px;}
.ls4{letter-spacing:0.000288px;}
.ls6{letter-spacing:0.000600px;}
.ls2{letter-spacing:1.799964px;}
.ls1{letter-spacing:3.119961px;}
.ls3{letter-spacing:3.899961px;}
.lsc{letter-spacing:11.034294px;}
.lsb{letter-spacing:11.040294px;}
.ls7{letter-spacing:13.200600px;}
.lsa{letter-spacing:13.794600px;}
.ls9{letter-spacing:13.800600px;}
.ls8{letter-spacing:26.688288px;}
.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;}
}
.ws13{word-spacing:-55.007542px;}
.ws10a{word-spacing:-45.839542px;}
.ws13b{word-spacing:-40.679661px;}
.ws12{word-spacing:-40.607662px;}
.ws10{word-spacing:-36.671542px;}
.ws9{word-spacing:-33.899661px;}
.wsaa{word-spacing:-33.839662px;}
.ws19{word-spacing:-28.799712px;}
.wsc2{word-spacing:-27.119661px;}
.ws11{word-spacing:-27.116941px;}
.wsf{word-spacing:-27.069733px;}
.wsa{word-spacing:-26.999700px;}
.ws146{word-spacing:-25.636954px;}
.ws2{word-spacing:-25.630954px;}
.ws147{word-spacing:-25.630660px;}
.ws4{word-spacing:-23.039712px;}
.ws5c{word-spacing:-19.559804px;}
.wsdd{word-spacing:-19.439806px;}
.ws12c{word-spacing:-19.379806px;}
.ws110{word-spacing:-19.319807px;}
.ws8a{word-spacing:-19.199808px;}
.ws43{word-spacing:-19.139809px;}
.ws10b{word-spacing:-18.899811px;}
.wsc5{word-spacing:-18.779812px;}
.ws89{word-spacing:-18.719813px;}
.ws12e{word-spacing:-18.659813px;}
.wsac{word-spacing:-18.539815px;}
.wsab{word-spacing:-18.479815px;}
.wsb3{word-spacing:-18.419816px;}
.wsb6{word-spacing:-18.299817px;}
.wsd8{word-spacing:-18.239818px;}
.wsbf{word-spacing:-18.119819px;}
.ws83{word-spacing:-17.939821px;}
.wsf3{word-spacing:-17.759822px;}
.wsa7{word-spacing:-17.601241px;}
.wsa8{word-spacing:-17.579824px;}
.ws93{word-spacing:-17.519825px;}
.ws1b{word-spacing:-17.399826px;}
.ws111{word-spacing:-17.350162px;}
.ws8b{word-spacing:-17.339827px;}
.ws10c{word-spacing:-17.279827px;}
.ws56{word-spacing:-17.219828px;}
.ws8d{word-spacing:-17.159828px;}
.ws97{word-spacing:-17.099829px;}
.ws26{word-spacing:-16.979830px;}
.ws23{word-spacing:-16.859831px;}
.ws102{word-spacing:-16.799832px;}
.ws6{word-spacing:-16.799664px;}
.ws67{word-spacing:-16.739833px;}
.wsd{word-spacing:-16.703712px;}
.ws22{word-spacing:-16.679833px;}
.ws8f{word-spacing:-16.619834px;}
.ws139{word-spacing:-16.559834px;}
.ws11d{word-spacing:-16.379836px;}
.ws33{word-spacing:-16.319837px;}
.ws35{word-spacing:-16.259837px;}
.wsbc{word-spacing:-16.139839px;}
.wsca{word-spacing:-15.959840px;}
.ws125{word-spacing:-15.719843px;}
.ws20{word-spacing:-15.659843px;}
.ws38{word-spacing:-15.479845px;}
.ws14{word-spacing:-15.419846px;}
.wsc0{word-spacing:-15.359846px;}
.ws52{word-spacing:-15.299847px;}
.ws13e{word-spacing:-15.062614px;}
.ws13c{word-spacing:-15.061784px;}
.wsb{word-spacing:-15.059849px;}
.ws12d{word-spacing:-15.057361px;}
.ws109{word-spacing:-15.056975px;}
.ws13d{word-spacing:-15.056936px;}
.wsc{word-spacing:-14.999850px;}
.wsf4{word-spacing:-14.939851px;}
.ws5{word-spacing:-14.879814px;}
.ws81{word-spacing:-14.759852px;}
.wsec{word-spacing:-14.639854px;}
.ws3c{word-spacing:-14.579854px;}
.ws11f{word-spacing:-14.459855px;}
.ws77{word-spacing:-14.399856px;}
.ws10d{word-spacing:-14.296312px;}
.wsd4{word-spacing:-14.279857px;}
.ws55{word-spacing:-14.039860px;}
.wsd0{word-spacing:-13.979860px;}
.ws60{word-spacing:-13.967825px;}
.wsb5{word-spacing:-13.919861px;}
.ws11c{word-spacing:-13.859861px;}
.ws95{word-spacing:-13.799862px;}
.wsd1{word-spacing:-13.739863px;}
.ws84{word-spacing:-13.619864px;}
.wsfc{word-spacing:-13.559864px;}
.wse4{word-spacing:-13.499865px;}
.ws100{word-spacing:-13.439866px;}
.ws25{word-spacing:-13.379866px;}
.ws101{word-spacing:-13.319867px;}
.ws76{word-spacing:-13.259867px;}
.wsdf{word-spacing:-13.199868px;}
.ws99{word-spacing:-13.139869px;}
.wse8{word-spacing:-13.019870px;}
.ws71{word-spacing:-12.959870px;}
.ws70{word-spacing:-12.946162px;}
.ws128{word-spacing:-12.659873px;}
.ws14d{word-spacing:-12.623842px;}
.ws68{word-spacing:-12.539875px;}
.ws13f{word-spacing:-12.527843px;}
.ws88{word-spacing:-12.419876px;}
.wsc6{word-spacing:-12.359876px;}
.ws27{word-spacing:-12.304321px;}
.ws29{word-spacing:-12.299877px;}
.ws148{word-spacing:-12.239847px;}
.ws94{word-spacing:-12.179878px;}
.ws131{word-spacing:-12.119879px;}
.wsc3{word-spacing:-12.095849px;}
.ws3{word-spacing:-12.047849px;}
.ws151{word-spacing:-12.002813px;}
.ws14f{word-spacing:-12.002233px;}
.ws140{word-spacing:-12.001782px;}
.ws14c{word-spacing:-12.000615px;}
.wsc1{word-spacing:-11.999880px;}
.wse{word-spacing:-11.999850px;}
.wsb1{word-spacing:-11.879881px;}
.ws1f{word-spacing:-11.819882px;}
.ws137{word-spacing:-11.639884px;}
.ws91{word-spacing:-11.519885px;}
.ws143{word-spacing:-11.519856px;}
.wse7{word-spacing:-11.459885px;}
.wsf5{word-spacing:-11.399886px;}
.ws4a{word-spacing:-11.159888px;}
.wse3{word-spacing:-11.099889px;}
.ws108{word-spacing:-10.859891px;}
.wsa9{word-spacing:-10.739893px;}
.ws9d{word-spacing:-10.619894px;}
.ws21{word-spacing:-10.559894px;}
.ws53{word-spacing:-10.499895px;}
.wsfa{word-spacing:-10.379896px;}
.ws127{word-spacing:-10.319897px;}
.wse5{word-spacing:-10.259897px;}
.ws8{word-spacing:-10.240649px;}
.ws41{word-spacing:-10.199898px;}
.ws7{word-spacing:-10.199850px;}
.wsad{word-spacing:-10.079899px;}
.ws69{word-spacing:-9.839902px;}
.ws32{word-spacing:-9.719903px;}
.wsff{word-spacing:-9.659903px;}
.ws130{word-spacing:-9.599904px;}
.wse9{word-spacing:-9.539905px;}
.ws80{word-spacing:-9.479905px;}
.ws7f{word-spacing:-9.419906px;}
.ws9f{word-spacing:-9.359906px;}
.ws47{word-spacing:-9.299907px;}
.ws49{word-spacing:-9.239908px;}
.ws8c{word-spacing:-9.179908px;}
.ws54{word-spacing:-9.119909px;}
.wse0{word-spacing:-8.999910px;}
.ws36{word-spacing:-8.819912px;}
.ws4f{word-spacing:-8.759912px;}
.ws12b{word-spacing:-8.699913px;}
.ws9a{word-spacing:-8.639914px;}
.ws87{word-spacing:-8.519915px;}
.ws2f{word-spacing:-8.459915px;}
.ws31{word-spacing:-8.399916px;}
.wsb4{word-spacing:-8.159918px;}
.wsea{word-spacing:-8.099919px;}
.wsa6{word-spacing:-7.979920px;}
.ws9c{word-spacing:-7.919921px;}
.ws117{word-spacing:-7.877036px;}
.ws96{word-spacing:-7.859921px;}
.ws134{word-spacing:-7.799922px;}
.ws2d{word-spacing:-7.619924px;}
.wsc4{word-spacing:-7.379926px;}
.ws6a{word-spacing:-7.319927px;}
.ws3d{word-spacing:-7.199928px;}
.ws138{word-spacing:-7.079929px;}
.ws123{word-spacing:-7.019930px;}
.ws121{word-spacing:-6.987932px;}
.wsc9{word-spacing:-6.899931px;}
.ws12a{word-spacing:-6.839932px;}
.wsf1{word-spacing:-6.719933px;}
.ws9e{word-spacing:-6.659933px;}
.wsf8{word-spacing:-6.599934px;}
.ws62{word-spacing:-6.539935px;}
.wsd5{word-spacing:-6.479935px;}
.ws66{word-spacing:-6.359936px;}
.wsed{word-spacing:-6.179938px;}
.wsdb{word-spacing:-6.119939px;}
.ws82{word-spacing:-6.059939px;}
.ws5b{word-spacing:-5.999940px;}
.ws24{word-spacing:-5.939941px;}
.wsbb{word-spacing:-5.879941px;}
.wsc8{word-spacing:-5.819942px;}
.ws4e{word-spacing:-5.759942px;}
.wscc{word-spacing:-5.639944px;}
.ws92{word-spacing:-5.459945px;}
.ws85{word-spacing:-5.353971px;}
.ws50{word-spacing:-5.339947px;}
.ws6e{word-spacing:-5.279947px;}
.wsdc{word-spacing:-5.219948px;}
.ws129{word-spacing:-5.159948px;}
.wsde{word-spacing:-5.039950px;}
.ws11e{word-spacing:-4.979950px;}
.wscf{word-spacing:-4.859951px;}
.wsd9{word-spacing:-4.679953px;}
.ws2e{word-spacing:-4.439956px;}
.wsd7{word-spacing:-4.199958px;}
.ws136{word-spacing:-4.139959px;}
.ws5a{word-spacing:-4.079959px;}
.ws15{word-spacing:-4.019960px;}
.wsa0{word-spacing:-3.959960px;}
.ws98{word-spacing:-3.779962px;}
.wsb0{word-spacing:-3.599964px;}
.ws9b{word-spacing:-3.539965px;}
.ws10e{word-spacing:-3.419966px;}
.ws64{word-spacing:-3.359966px;}
.wsfb{word-spacing:-3.299967px;}
.wsf2{word-spacing:-3.179968px;}
.wsaf{word-spacing:-3.119969px;}
.ws112{word-spacing:-3.059969px;}
.ws6f{word-spacing:-2.999970px;}
.ws3e{word-spacing:-2.879971px;}
.ws3f{word-spacing:-2.819972px;}
.ws107{word-spacing:-2.759972px;}
.ws57{word-spacing:-2.699973px;}
.wsa5{word-spacing:-2.579974px;}
.wsa3{word-spacing:-2.554543px;}
.ws42{word-spacing:-2.519975px;}
.ws46{word-spacing:-2.399976px;}
.ws7a{word-spacing:-2.339977px;}
.wscb{word-spacing:-2.219978px;}
.ws103{word-spacing:-2.159978px;}
.wsb2{word-spacing:-2.099979px;}
.wsc7{word-spacing:-1.979980px;}
.ws116{word-spacing:-1.919981px;}
.ws34{word-spacing:-1.799982px;}
.ws51{word-spacing:-1.679983px;}
.wsa1{word-spacing:-1.559984px;}
.ws17{word-spacing:-1.499985px;}
.ws1a{word-spacing:-1.439986px;}
.ws104{word-spacing:-1.379986px;}
.ws115{word-spacing:-1.199988px;}
.ws105{word-spacing:-1.079989px;}
.ws39{word-spacing:-1.019990px;}
.ws7e{word-spacing:-0.899991px;}
.wsd3{word-spacing:-0.779992px;}
.ws149{word-spacing:-0.767990px;}
.ws120{word-spacing:-0.719993px;}
.ws1d{word-spacing:-0.659993px;}
.ws14a{word-spacing:-0.623992px;}
.ws13a{word-spacing:-0.539995px;}
.ws141{word-spacing:-0.527993px;}
.ws144{word-spacing:-0.524188px;}
.ws14b{word-spacing:-0.483744px;}
.ws150{word-spacing:-0.483503px;}
.ws61{word-spacing:-0.479994px;}
.ws1{word-spacing:-0.463532px;}
.wsda{word-spacing:-0.419996px;}
.ws2b{word-spacing:-0.359996px;}
.ws142{word-spacing:-0.286093px;}
.ws14e{word-spacing:-0.285498px;}
.ws63{word-spacing:-0.239998px;}
.ws145{word-spacing:-0.237499px;}
.ws7c{word-spacing:-0.195645px;}
.ws133{word-spacing:-0.119999px;}
.ws72{word-spacing:-0.059999px;}
.ws0{word-spacing:0.000000px;}
.ws1c{word-spacing:0.179998px;}
.ws4b{word-spacing:0.239998px;}
.ws12f{word-spacing:0.359996px;}
.ws3b{word-spacing:0.539995px;}
.wsf0{word-spacing:0.839992px;}
.ws119{word-spacing:0.959990px;}
.ws6b{word-spacing:1.079989px;}
.ws118{word-spacing:1.139989px;}
.wsa2{word-spacing:1.199988px;}
.ws6d{word-spacing:1.259987px;}
.wsef{word-spacing:1.379986px;}
.wsf6{word-spacing:1.619984px;}
.wsba{word-spacing:1.799982px;}
.ws90{word-spacing:1.859981px;}
.wsbe{word-spacing:1.919981px;}
.ws74{word-spacing:1.979980px;}
.ws114{word-spacing:2.039980px;}
.ws28{word-spacing:2.099979px;}
.ws7b{word-spacing:2.159978px;}
.wsce{word-spacing:2.279977px;}
.ws37{word-spacing:2.339977px;}
.wsfe{word-spacing:2.399976px;}
.ws3a{word-spacing:2.519975px;}
.ws126{word-spacing:2.579974px;}
.ws10f{word-spacing:2.639974px;}
.ws79{word-spacing:2.819972px;}
.ws78{word-spacing:2.858549px;}
.wsee{word-spacing:2.939971px;}
.ws2a{word-spacing:2.999970px;}
.ws1e{word-spacing:3.179968px;}
.wse2{word-spacing:3.325721px;}
.ws4c{word-spacing:3.479965px;}
.ws58{word-spacing:3.539965px;}
.ws59{word-spacing:3.659963px;}
.ws4d{word-spacing:3.719963px;}
.wse6{word-spacing:3.839962px;}
.wsbd{word-spacing:4.079959px;}
.ws73{word-spacing:4.199958px;}
.wsae{word-spacing:4.319957px;}
.wsb9{word-spacing:4.379956px;}
.ws16{word-spacing:4.559954px;}
.ws45{word-spacing:4.859951px;}
.wseb{word-spacing:4.919951px;}
.ws48{word-spacing:5.159948px;}
.wsf9{word-spacing:5.219948px;}
.wsfd{word-spacing:5.279947px;}
.wse1{word-spacing:5.519945px;}
.ws124{word-spacing:5.879941px;}
.ws30{word-spacing:6.059939px;}
.wscd{word-spacing:6.359936px;}
.ws8e{word-spacing:6.599934px;}
.ws5d{word-spacing:6.839932px;}
.ws5f{word-spacing:7.019930px;}
.ws11a{word-spacing:7.139929px;}
.ws122{word-spacing:7.439926px;}
.ws106{word-spacing:7.559924px;}
.wsf7{word-spacing:7.859921px;}
.ws2c{word-spacing:7.979920px;}
.wsb7{word-spacing:8.279917px;}
.wsd2{word-spacing:8.629720px;}
.ws113{word-spacing:8.639914px;}
.ws86{word-spacing:9.059909px;}
.ws135{word-spacing:9.959900px;}
.wsb8{word-spacing:10.139899px;}
.ws65{word-spacing:11.159888px;}
.wsd6{word-spacing:11.399886px;}
.ws40{word-spacing:11.639884px;}
.wsa4{word-spacing:11.879881px;}
.ws18{word-spacing:13.019870px;}
.ws44{word-spacing:13.439866px;}
.ws7d{word-spacing:14.219858px;}
.ws6c{word-spacing:15.599844px;}
.ws75{word-spacing:16.439836px;}
.ws5e{word-spacing:21.299787px;}
.ws11b{word-spacing:21.599784px;}
.ws132{word-spacing:36.179638px;}
._12{margin-left:-7.019930px;}
._8{margin-left:-5.567930px;}
._5{margin-left:-3.899961px;}
._4{margin-left:-2.591968px;}
._0{margin-left:-1.535981px;}
._1{width:1.055987px;}
._6{width:2.591968px;}
._7{width:10.031875px;}
._9{width:11.999850px;}
._2{width:14.303821px;}
._14{width:16.108644px;}
._a{width:18.109003px;}
._d{width:19.715799px;}
._b{width:21.800648px;}
._11{width:24.507090px;}
._15{width:25.619744px;}
._10{width:27.172295px;}
._e{width:29.101120px;}
._c{width:30.131691px;}
._16{width:33.671657px;}
._13{width:35.315643px;}
._17{width:37.004251px;}
._18{width:39.791596px;}
._3{width:1099.179466px;}
._f{width:1567.077466px;}
.fc5{color:rgb(210,32,39);}
.fc4{color:rgb(167,208,57);}
.fc3{color:rgb(47,122,181);}
.fc2{color:rgb(0,110,178);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.999400px;}
.fs8{font-size:34.799400px;}
.fs9{font-size:37.799400px;}
.fs5{font-size:40.799400px;}
.fs3{font-size:47.999400px;}
.fs2{font-size:48.000000px;}
.fs0{font-size:54.000000px;}
.fs6{font-size:59.999400px;}
.fsa{font-size:71.999400px;}
.fs1{font-size:96.000000px;}
.fs7{font-size:107.998800px;}
.y0{bottom:0.000000px;}
.yc8{bottom:39.391500px;}
.y10e{bottom:39.481500px;}
.y169{bottom:39.571500px;}
.y68{bottom:40.411500px;}
.y7{bottom:64.920000px;}
.ya2{bottom:71.053500px;}
.y67{bottom:88.768500px;}
.y47{bottom:88.837500px;}
.ya1{bottom:89.803500px;}
.y66{bottom:107.518500px;}
.y46{bottom:107.587500px;}
.ya0{bottom:108.553500px;}
.y65{bottom:126.268500px;}
.y45{bottom:126.337500px;}
.y9f{bottom:127.303500px;}
.y12d{bottom:137.791500px;}
.y168{bottom:139.123500px;}
.y64{bottom:145.018500px;}
.y44{bottom:145.087500px;}
.y9e{bottom:146.053500px;}
.y12c{bottom:152.791500px;}
.y167{bottom:154.123500px;}
.y63{bottom:163.768500px;}
.y43{bottom:163.837500px;}
.y9d{bottom:164.803500px;}
.y12b{bottom:167.791500px;}
.y166{bottom:169.123500px;}
.y62{bottom:182.518500px;}
.y42{bottom:182.587500px;}
.y12a{bottom:182.791500px;}
.y9c{bottom:183.553500px;}
.y165{bottom:184.123500px;}
.y129{bottom:197.791500px;}
.y164{bottom:199.123500px;}
.y61{bottom:201.268500px;}
.y41{bottom:201.337500px;}
.y9b{bottom:202.303500px;}
.y128{bottom:212.791500px;}
.y163{bottom:214.123500px;}
.y60{bottom:220.018500px;}
.y40{bottom:220.087500px;}
.y9a{bottom:221.053500px;}
.y127{bottom:227.791500px;}
.y162{bottom:229.123500px;}
.y5f{bottom:238.768500px;}
.y3f{bottom:238.837500px;}
.y99{bottom:239.803500px;}
.y126{bottom:242.791500px;}
.y161{bottom:244.123500px;}
.y5e{bottom:257.518500px;}
.y3e{bottom:257.587500px;}
.y125{bottom:257.791500px;}
.y98{bottom:258.553500px;}
.y103{bottom:258.702000px;}
.y160{bottom:259.123500px;}
.y15f{bottom:274.123500px;}
.y5d{bottom:276.268500px;}
.y3d{bottom:276.337500px;}
.y97{bottom:277.303500px;}
.y102{bottom:277.452000px;}
.y15e{bottom:289.123500px;}
.y124{bottom:291.471000px;}
.y5c{bottom:295.018500px;}
.y3c{bottom:295.087500px;}
.y96{bottom:296.053500px;}
.y15d{bottom:304.123500px;}
.y5b{bottom:313.768500px;}
.y3b{bottom:313.837500px;}
.y95{bottom:314.803500px;}
.y101{bottom:315.088500px;}
.y15c{bottom:319.123500px;}
.y123{bottom:328.221000px;}
.y5a{bottom:332.518500px;}
.y3a{bottom:332.587500px;}
.y94{bottom:333.553500px;}
.y100{bottom:333.838500px;}
.y15b{bottom:334.123500px;}
.y122{bottom:346.971000px;}
.y15a{bottom:349.123500px;}
.y59{bottom:351.268500px;}
.y39{bottom:351.337500px;}
.y93{bottom:352.303500px;}
.yc7{bottom:352.452000px;}
.yff{bottom:352.588500px;}
.y159{bottom:364.123500px;}
.y121{bottom:365.721000px;}
.y58{bottom:370.018500px;}
.y38{bottom:370.087500px;}
.ye2{bottom:371.053500px;}
.yfe{bottom:371.338500px;}
.y158{bottom:379.123500px;}
.y120{bottom:384.471000px;}
.y57{bottom:388.768500px;}
.y37{bottom:388.837500px;}
.y92{bottom:389.733000px;}
.ye1{bottom:389.803500px;}
.ye9{bottom:389.952000px;}
.yc6{bottom:389.992500px;}
.yfd{bottom:390.088500px;}
.y157{bottom:394.123500px;}
.y11f{bottom:403.221000px;}
.y56{bottom:407.518500px;}
.y36{bottom:407.587500px;}
.y91{bottom:408.483000px;}
.ye0{bottom:408.553500px;}
.yc5{bottom:408.742500px;}
.yfc{bottom:408.838500px;}
.y156{bottom:409.123500px;}
.y11e{bottom:421.971000px;}
.y155{bottom:424.123500px;}
.y55{bottom:426.268500px;}
.y35{bottom:426.337500px;}
.ydf{bottom:427.303500px;}
.yc4{bottom:427.492500px;}
.yfb{bottom:427.588500px;}
.ye8{bottom:429.748500px;}
.y154{bottom:439.123500px;}
.y11d{bottom:440.721000px;}
.y54{bottom:445.018500px;}
.y34{bottom:445.087500px;}
.yde{bottom:446.053500px;}
.yc3{bottom:446.242500px;}
.yfa{bottom:446.338500px;}
.y90{bottom:446.623500px;}
.ye7{bottom:448.498500px;}
.y153{bottom:454.123500px;}
.y11c{bottom:459.471000px;}
.y53{bottom:463.768500px;}
.y33{bottom:463.837500px;}
.ydd{bottom:464.803500px;}
.yc2{bottom:464.992500px;}
.yf9{bottom:465.088500px;}
.y8f{bottom:465.373500px;}
.ye6{bottom:467.248500px;}
.y152{bottom:469.123500px;}
.y11b{bottom:478.221000px;}
.y52{bottom:482.518500px;}
.y32{bottom:482.587500px;}
.y10d{bottom:483.553500px;}
.ydc{bottom:483.702000px;}
.yc1{bottom:483.742500px;}
.yf8{bottom:483.838500px;}
.y8e{bottom:484.123500px;}
.ye5{bottom:485.998500px;}
.y11a{bottom:496.971000px;}
.y151{bottom:499.123500px;}
.y51{bottom:501.268500px;}
.y31{bottom:501.337500px;}
.y10c{bottom:502.303500px;}
.ydb{bottom:502.452000px;}
.yc0{bottom:502.492500px;}
.yf7{bottom:502.588500px;}
.y8d{bottom:502.873500px;}
.ye4{bottom:504.748500px;}
.y150{bottom:514.123500px;}
.y119{bottom:515.721000px;}
.y50{bottom:520.018500px;}
.y30{bottom:520.087500px;}
.y10b{bottom:521.053500px;}
.ybf{bottom:521.242500px;}
.yf6{bottom:521.338500px;}
.y8c{bottom:521.623500px;}
.ye3{bottom:523.498500px;}
.y14f{bottom:529.123500px;}
.y118{bottom:534.471000px;}
.y4f{bottom:538.768500px;}
.y2f{bottom:538.837500px;}
.y10a{bottom:539.803500px;}
.ybe{bottom:539.992500px;}
.yf5{bottom:540.088500px;}
.y8b{bottom:540.373500px;}
.yda{bottom:542.248500px;}
.y14e{bottom:544.123500px;}
.y4e{bottom:557.518500px;}
.y2e{bottom:557.587500px;}
.y109{bottom:558.553500px;}
.ybd{bottom:558.742500px;}
.yf4{bottom:558.838500px;}
.y8a{bottom:559.123500px;}
.yd9{bottom:560.998500px;}
.y117{bottom:571.900500px;}
.y14d{bottom:574.123500px;}
.y4d{bottom:576.268500px;}
.y2d{bottom:576.337500px;}
.y108{bottom:577.303500px;}
.ybc{bottom:577.492500px;}
.yf3{bottom:577.588500px;}
.y89{bottom:577.873500px;}
.yd8{bottom:579.748500px;}
.y14c{bottom:589.123500px;}
.y4c{bottom:595.018500px;}
.y2c{bottom:595.087500px;}
.y107{bottom:596.053500px;}
.ybb{bottom:596.242500px;}
.yf2{bottom:596.338500px;}
.y88{bottom:596.623500px;}
.yd7{bottom:598.498500px;}
.y14b{bottom:604.123500px;}
.y116{bottom:609.400500px;}
.y4b{bottom:613.768500px;}
.y2b{bottom:613.837500px;}
.y106{bottom:614.803500px;}
.yba{bottom:614.992500px;}
.yf1{bottom:615.088500px;}
.y87{bottom:615.373500px;}
.yd6{bottom:617.248500px;}
.y14a{bottom:619.123500px;}
.y115{bottom:628.150500px;}
.y4a{bottom:632.518500px;}
.y2a{bottom:632.587500px;}
.y105{bottom:633.702000px;}
.yb9{bottom:633.742500px;}
.yf0{bottom:633.838500px;}
.y86{bottom:634.123500px;}
.yd5{bottom:635.998500px;}
.y114{bottom:646.900500px;}
.y149{bottom:649.123500px;}
.y49{bottom:651.268500px;}
.y29{bottom:651.337500px;}
.y104{bottom:652.452000px;}
.yb8{bottom:652.492500px;}
.yef{bottom:652.588500px;}
.y85{bottom:652.873500px;}
.yd4{bottom:654.748500px;}
.y148{bottom:664.123500px;}
.y113{bottom:665.650500px;}
.y48{bottom:670.018500px;}
.yb7{bottom:671.242500px;}
.yee{bottom:671.338500px;}
.y84{bottom:671.623500px;}
.yd3{bottom:673.498500px;}
.y147{bottom:679.123500px;}
.y112{bottom:684.400500px;}
.y28{bottom:688.768500px;}
.yb6{bottom:689.992500px;}
.yed{bottom:690.088500px;}
.y83{bottom:690.373500px;}
.yd2{bottom:692.248500px;}
.y146{bottom:694.123500px;}
.y27{bottom:707.518500px;}
.yec{bottom:708.838500px;}
.yb5{bottom:708.892500px;}
.y82{bottom:709.123500px;}
.yd1{bottom:710.998500px;}
.y111{bottom:721.831500px;}
.y145{bottom:724.123500px;}
.yeb{bottom:727.588500px;}
.y81{bottom:727.873500px;}
.yd0{bottom:729.748500px;}
.y144{bottom:739.123500px;}
.yb4{bottom:746.433000px;}
.yea{bottom:746.487000px;}
.y80{bottom:746.623500px;}
.ycf{bottom:748.498500px;}
.y143{bottom:754.123500px;}
.yb3{bottom:765.183000px;}
.y7f{bottom:765.373500px;}
.y110{bottom:766.192500px;}
.y142{bottom:769.123500px;}
.y26{bottom:778.926000px;}
.yb2{bottom:783.933000px;}
.y7e{bottom:784.123500px;}
.y141{bottom:799.123500px;}
.yb1{bottom:802.683000px;}
.y7d{bottom:802.873500px;}
.y10f{bottom:803.623500px;}
.y25{bottom:804.546000px;}
.yce{bottom:811.044000px;}
.y16{bottom:813.907500px;}
.y140{bottom:814.123500px;}
.yb0{bottom:821.433000px;}
.y7c{bottom:821.623500px;}
.ycd{bottom:824.544000px;}
.y15{bottom:825.907500px;}
.y13f{bottom:829.123500px;}
.y24{bottom:830.914500px;}
.y14{bottom:837.907500px;}
.ycc{bottom:838.044000px;}
.yaf{bottom:840.183000px;}
.y7b{bottom:840.373500px;}
.y23{bottom:840.684000px;}
.y13e{bottom:844.123500px;}
.y22{bottom:845.914500px;}
.y13{bottom:849.907500px;}
.ycb{bottom:851.544000px;}
.yae{bottom:858.933000px;}
.y7a{bottom:859.123500px;}
.y21{bottom:860.914500px;}
.y12{bottom:861.907500px;}
.yca{bottom:865.044000px;}
.y11{bottom:873.907500px;}
.y13d{bottom:874.123500px;}
.y20{bottom:875.914500px;}
.yad{bottom:877.683000px;}
.y79{bottom:877.873500px;}
.yc9{bottom:878.544000px;}
.y13c{bottom:889.123500px;}
.y1f{bottom:890.914500px;}
.y10{bottom:891.885000px;}
.yac{bottom:896.433000px;}
.y78{bottom:896.623500px;}
.y1e{bottom:900.684000px;}
.y6{bottom:903.300000px;}
.yf{bottom:903.885000px;}
.y13b{bottom:904.123500px;}
.yab{bottom:915.183000px;}
.y77{bottom:915.373500px;}
.ye{bottom:915.885000px;}
.y13a{bottom:919.123500px;}
.y1d{bottom:920.914500px;}
.yd{bottom:927.885000px;}
.y5{bottom:932.400000px;}
.yaa{bottom:933.933000px;}
.y76{bottom:934.123500px;}
.y1c{bottom:935.914500px;}
.yc{bottom:939.885000px;}
.y139{bottom:949.123500px;}
.ya9{bottom:952.683000px;}
.y75{bottom:952.873500px;}
.y1b{bottom:953.773500px;}
.y138{bottom:964.123500px;}
.ya8{bottom:971.433000px;}
.y74{bottom:971.623500px;}
.y1a{bottom:971.773500px;}
.y4{bottom:972.750000px;}
.yb{bottom:975.448500px;}
.y137{bottom:979.123500px;}
.ya{bottom:987.771000px;}
.ya7{bottom:990.183000px;}
.y73{bottom:990.373500px;}
.y136{bottom:994.123500px;}
.y19{bottom:1008.808500px;}
.ya6{bottom:1008.933000px;}
.y72{bottom:1009.123500px;}
.y3{bottom:1011.165000px;}
.y9{bottom:1023.604500px;}
.y135{bottom:1024.123500px;}
.ya5{bottom:1027.683000px;}
.y71{bottom:1027.873500px;}
.y134{bottom:1039.123500px;}
.y2{bottom:1039.965000px;}
.y18{bottom:1040.308500px;}
.ya4{bottom:1046.433000px;}
.y70{bottom:1046.623500px;}
.y133{bottom:1054.123500px;}
.ya3{bottom:1065.333000px;}
.y6f{bottom:1065.373500px;}
.y132{bottom:1069.123500px;}
.y17{bottom:1080.882000px;}
.y1{bottom:1081.485000px;}
.y6e{bottom:1084.123500px;}
.y131{bottom:1099.123500px;}
.y6d{bottom:1102.873500px;}
.y130{bottom:1114.123500px;}
.y6c{bottom:1121.623500px;}
.y12f{bottom:1129.123500px;}
.y6b{bottom:1140.373500px;}
.y12e{bottom:1144.123500px;}
.y6a{bottom:1159.123500px;}
.y8{bottom:1199.496000px;}
.y69{bottom:1211.496000px;}
.h7{height:20.999580px;}
.hc{height:27.102170px;}
.h8{height:29.253170px;}
.h6{height:33.599580px;}
.hd{height:34.079574px;}
.h5{height:34.415570px;}
.h9{height:41.999580px;}
.h10{height:42.599574px;}
.hf{height:43.019570px;}
.hb{height:47.961170px;}
.h3{height:50.062500px;}
.he{height:51.119574px;}
.h1{height:56.320312px;}
.h2{height:72.000000px;}
.ha{height:75.599160px;}
.h4{height:1262.835000px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.w1{width:892.920000px;}
.w2{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:58.500000px;}
.x4{left:63.780000px;}
.x3{left:178.582500px;}
.x5{left:189.790500px;}
.xb{left:193.975500px;}
.x7{left:200.998500px;}
.xd{left:205.582500px;}
.x2{left:216.450000px;}
.xc{left:282.045000px;}
.x6{left:404.179500px;}
.xa{left:442.857000px;}
.x9{left:512.824500px;}
.x8{left:535.240500px;}
.xe{left:539.824500px;}
@media print{
.v2{vertical-align:-18.597333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.453333pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.000128pt;}
.ls4{letter-spacing:0.000256pt;}
.ls6{letter-spacing:0.000533pt;}
.ls2{letter-spacing:1.599968pt;}
.ls1{letter-spacing:2.773299pt;}
.ls3{letter-spacing:3.466632pt;}
.lsc{letter-spacing:9.808261pt;}
.lsb{letter-spacing:9.813595pt;}
.ls7{letter-spacing:11.733867pt;}
.lsa{letter-spacing:12.261867pt;}
.ls9{letter-spacing:12.267200pt;}
.ls8{letter-spacing:23.722923pt;}
.ws13{word-spacing:-48.895593pt;}
.ws10a{word-spacing:-40.746259pt;}
.ws13b{word-spacing:-36.159699pt;}
.ws12{word-spacing:-36.095699pt;}
.ws10{word-spacing:-32.596926pt;}
.ws9{word-spacing:-30.133032pt;}
.wsaa{word-spacing:-30.079699pt;}
.ws19{word-spacing:-25.599744pt;}
.wsc2{word-spacing:-24.106365pt;}
.ws11{word-spacing:-24.103947pt;}
.wsf{word-spacing:-24.061985pt;}
.wsa{word-spacing:-23.999733pt;}
.ws146{word-spacing:-22.788403pt;}
.ws2{word-spacing:-22.783070pt;}
.ws147{word-spacing:-22.782809pt;}
.ws4{word-spacing:-20.479744pt;}
.ws5c{word-spacing:-17.386493pt;}
.wsdd{word-spacing:-17.279827pt;}
.ws12c{word-spacing:-17.226494pt;}
.ws110{word-spacing:-17.173162pt;}
.ws8a{word-spacing:-17.066496pt;}
.ws43{word-spacing:-17.013163pt;}
.ws10b{word-spacing:-16.799832pt;}
.wsc5{word-spacing:-16.693166pt;}
.ws89{word-spacing:-16.639834pt;}
.ws12e{word-spacing:-16.586501pt;}
.wsac{word-spacing:-16.479835pt;}
.wsab{word-spacing:-16.426502pt;}
.wsb3{word-spacing:-16.373170pt;}
.wsb6{word-spacing:-16.266504pt;}
.wsd8{word-spacing:-16.213171pt;}
.wsbf{word-spacing:-16.106506pt;}
.ws83{word-spacing:-15.946507pt;}
.wsf3{word-spacing:-15.786509pt;}
.wsa7{word-spacing:-15.645547pt;}
.wsa8{word-spacing:-15.626510pt;}
.ws93{word-spacing:-15.573178pt;}
.ws1b{word-spacing:-15.466512pt;}
.ws111{word-spacing:-15.422366pt;}
.ws8b{word-spacing:-15.413179pt;}
.ws10c{word-spacing:-15.359846pt;}
.ws56{word-spacing:-15.306514pt;}
.ws8d{word-spacing:-15.253181pt;}
.ws97{word-spacing:-15.199848pt;}
.ws26{word-spacing:-15.093182pt;}
.ws23{word-spacing:-14.986517pt;}
.ws102{word-spacing:-14.933184pt;}
.ws6{word-spacing:-14.933035pt;}
.ws67{word-spacing:-14.879851pt;}
.wsd{word-spacing:-14.847744pt;}
.ws22{word-spacing:-14.826518pt;}
.ws8f{word-spacing:-14.773186pt;}
.ws139{word-spacing:-14.719853pt;}
.ws11d{word-spacing:-14.559854pt;}
.ws33{word-spacing:-14.506522pt;}
.ws35{word-spacing:-14.453189pt;}
.wsbc{word-spacing:-14.346523pt;}
.wsca{word-spacing:-14.186525pt;}
.ws125{word-spacing:-13.973194pt;}
.ws20{word-spacing:-13.919861pt;}
.ws38{word-spacing:-13.759862pt;}
.ws14{word-spacing:-13.706530pt;}
.wsc0{word-spacing:-13.653197pt;}
.ws52{word-spacing:-13.599864pt;}
.ws13e{word-spacing:-13.388990pt;}
.ws13c{word-spacing:-13.388252pt;}
.wsb{word-spacing:-13.386533pt;}
.ws12d{word-spacing:-13.384321pt;}
.ws109{word-spacing:-13.383978pt;}
.ws13d{word-spacing:-13.383943pt;}
.wsc{word-spacing:-13.333200pt;}
.wsf4{word-spacing:-13.279867pt;}
.ws5{word-spacing:-13.226501pt;}
.ws81{word-spacing:-13.119869pt;}
.wsec{word-spacing:-13.013203pt;}
.ws3c{word-spacing:-12.959870pt;}
.ws11f{word-spacing:-12.853205pt;}
.ws77{word-spacing:-12.799872pt;}
.ws10d{word-spacing:-12.707833pt;}
.wsd4{word-spacing:-12.693206pt;}
.ws55{word-spacing:-12.479875pt;}
.wsd0{word-spacing:-12.426542pt;}
.ws60{word-spacing:-12.415845pt;}
.wsb5{word-spacing:-12.373210pt;}
.ws11c{word-spacing:-12.319877pt;}
.ws95{word-spacing:-12.266544pt;}
.wsd1{word-spacing:-12.213211pt;}
.ws84{word-spacing:-12.106546pt;}
.wsfc{word-spacing:-12.053213pt;}
.wse4{word-spacing:-11.999880pt;}
.ws100{word-spacing:-11.946547pt;}
.ws25{word-spacing:-11.893214pt;}
.ws101{word-spacing:-11.839882pt;}
.ws76{word-spacing:-11.786549pt;}
.wsdf{word-spacing:-11.733216pt;}
.ws99{word-spacing:-11.679883pt;}
.wse8{word-spacing:-11.573218pt;}
.ws71{word-spacing:-11.519885pt;}
.ws70{word-spacing:-11.507699pt;}
.ws128{word-spacing:-11.253221pt;}
.ws14d{word-spacing:-11.221193pt;}
.ws68{word-spacing:-11.146555pt;}
.ws13f{word-spacing:-11.135861pt;}
.ws88{word-spacing:-11.039890pt;}
.wsc6{word-spacing:-10.986557pt;}
.ws27{word-spacing:-10.937174pt;}
.ws29{word-spacing:-10.933224pt;}
.ws148{word-spacing:-10.879864pt;}
.ws94{word-spacing:-10.826558pt;}
.ws131{word-spacing:-10.773226pt;}
.wsc3{word-spacing:-10.751866pt;}
.ws3{word-spacing:-10.709199pt;}
.ws151{word-spacing:-10.669167pt;}
.ws14f{word-spacing:-10.668652pt;}
.ws140{word-spacing:-10.668251pt;}
.ws14c{word-spacing:-10.667213pt;}
.wsc1{word-spacing:-10.666560pt;}
.wse{word-spacing:-10.666533pt;}
.wsb1{word-spacing:-10.559894pt;}
.ws1f{word-spacing:-10.506562pt;}
.ws137{word-spacing:-10.346563pt;}
.ws91{word-spacing:-10.239898pt;}
.ws143{word-spacing:-10.239872pt;}
.wse7{word-spacing:-10.186565pt;}
.wsf5{word-spacing:-10.133232pt;}
.ws4a{word-spacing:-9.919901pt;}
.wse3{word-spacing:-9.866568pt;}
.ws108{word-spacing:-9.653237pt;}
.wsa9{word-spacing:-9.546571pt;}
.ws9d{word-spacing:-9.439906pt;}
.ws21{word-spacing:-9.386573pt;}
.ws53{word-spacing:-9.333240pt;}
.wsfa{word-spacing:-9.226574pt;}
.ws127{word-spacing:-9.173242pt;}
.wse5{word-spacing:-9.119909pt;}
.ws8{word-spacing:-9.102799pt;}
.ws41{word-spacing:-9.066576pt;}
.ws7{word-spacing:-9.066533pt;}
.wsad{word-spacing:-8.959910pt;}
.ws69{word-spacing:-8.746579pt;}
.ws32{word-spacing:-8.639914pt;}
.wsff{word-spacing:-8.586581pt;}
.ws130{word-spacing:-8.533248pt;}
.wse9{word-spacing:-8.479915pt;}
.ws80{word-spacing:-8.426582pt;}
.ws7f{word-spacing:-8.373250pt;}
.ws9f{word-spacing:-8.319917pt;}
.ws47{word-spacing:-8.266584pt;}
.ws49{word-spacing:-8.213251pt;}
.ws8c{word-spacing:-8.159918pt;}
.ws54{word-spacing:-8.106586pt;}
.wse0{word-spacing:-7.999920pt;}
.ws36{word-spacing:-7.839922pt;}
.ws4f{word-spacing:-7.786589pt;}
.ws12b{word-spacing:-7.733256pt;}
.ws9a{word-spacing:-7.679923pt;}
.ws87{word-spacing:-7.573258pt;}
.ws2f{word-spacing:-7.519925pt;}
.ws31{word-spacing:-7.466592pt;}
.wsb4{word-spacing:-7.253261pt;}
.wsea{word-spacing:-7.199928pt;}
.wsa6{word-spacing:-7.093262pt;}
.ws9c{word-spacing:-7.039930pt;}
.ws117{word-spacing:-7.001810pt;}
.ws96{word-spacing:-6.986597pt;}
.ws134{word-spacing:-6.933264pt;}
.ws2d{word-spacing:-6.773266pt;}
.wsc4{word-spacing:-6.559934pt;}
.ws6a{word-spacing:-6.506602pt;}
.ws3d{word-spacing:-6.399936pt;}
.ws138{word-spacing:-6.293270pt;}
.ws123{word-spacing:-6.239938pt;}
.ws121{word-spacing:-6.211495pt;}
.wsc9{word-spacing:-6.133272pt;}
.ws12a{word-spacing:-6.079939pt;}
.wsf1{word-spacing:-5.973274pt;}
.ws9e{word-spacing:-5.919941pt;}
.wsf8{word-spacing:-5.866608pt;}
.ws62{word-spacing:-5.813275pt;}
.wsd5{word-spacing:-5.759942pt;}
.ws66{word-spacing:-5.653277pt;}
.wsed{word-spacing:-5.493278pt;}
.wsdb{word-spacing:-5.439946pt;}
.ws82{word-spacing:-5.386613pt;}
.ws5b{word-spacing:-5.333280pt;}
.ws24{word-spacing:-5.279947pt;}
.wsbb{word-spacing:-5.226614pt;}
.wsc8{word-spacing:-5.173282pt;}
.ws4e{word-spacing:-5.119949pt;}
.wscc{word-spacing:-5.013283pt;}
.ws92{word-spacing:-4.853285pt;}
.ws85{word-spacing:-4.759085pt;}
.ws50{word-spacing:-4.746619pt;}
.ws6e{word-spacing:-4.693286pt;}
.wsdc{word-spacing:-4.639954pt;}
.ws129{word-spacing:-4.586621pt;}
.wsde{word-spacing:-4.479955pt;}
.ws11e{word-spacing:-4.426622pt;}
.wscf{word-spacing:-4.319957pt;}
.wsd9{word-spacing:-4.159958pt;}
.ws2e{word-spacing:-3.946627pt;}
.wsd7{word-spacing:-3.733296pt;}
.ws136{word-spacing:-3.679963pt;}
.ws5a{word-spacing:-3.626630pt;}
.ws15{word-spacing:-3.573298pt;}
.wsa0{word-spacing:-3.519965pt;}
.ws98{word-spacing:-3.359966pt;}
.wsb0{word-spacing:-3.199968pt;}
.ws9b{word-spacing:-3.146635pt;}
.ws10e{word-spacing:-3.039970pt;}
.ws64{word-spacing:-2.986637pt;}
.wsfb{word-spacing:-2.933304pt;}
.wsf2{word-spacing:-2.826638pt;}
.wsaf{word-spacing:-2.773306pt;}
.ws112{word-spacing:-2.719973pt;}
.ws6f{word-spacing:-2.666640pt;}
.ws3e{word-spacing:-2.559974pt;}
.ws3f{word-spacing:-2.506642pt;}
.ws107{word-spacing:-2.453309pt;}
.ws57{word-spacing:-2.399976pt;}
.wsa5{word-spacing:-2.293310pt;}
.wsa3{word-spacing:-2.270705pt;}
.ws42{word-spacing:-2.239978pt;}
.ws46{word-spacing:-2.133312pt;}
.ws7a{word-spacing:-2.079979pt;}
.wscb{word-spacing:-1.973314pt;}
.ws103{word-spacing:-1.919981pt;}
.wsb2{word-spacing:-1.866648pt;}
.wsc7{word-spacing:-1.759982pt;}
.ws116{word-spacing:-1.706650pt;}
.ws34{word-spacing:-1.599984pt;}
.ws51{word-spacing:-1.493318pt;}
.wsa1{word-spacing:-1.386653pt;}
.ws17{word-spacing:-1.333320pt;}
.ws1a{word-spacing:-1.279987pt;}
.ws104{word-spacing:-1.226654pt;}
.ws115{word-spacing:-1.066656pt;}
.ws105{word-spacing:-0.959990pt;}
.ws39{word-spacing:-0.906658pt;}
.ws7e{word-spacing:-0.799992pt;}
.wsd3{word-spacing:-0.693326pt;}
.ws149{word-spacing:-0.682658pt;}
.ws120{word-spacing:-0.639994pt;}
.ws1d{word-spacing:-0.586661pt;}
.ws14a{word-spacing:-0.554660pt;}
.ws13a{word-spacing:-0.479995pt;}
.ws141{word-spacing:-0.469327pt;}
.ws144{word-spacing:-0.465945pt;}
.ws14b{word-spacing:-0.429995pt;}
.ws150{word-spacing:-0.429780pt;}
.ws61{word-spacing:-0.426661pt;}
.ws1{word-spacing:-0.412029pt;}
.wsda{word-spacing:-0.373330pt;}
.ws2b{word-spacing:-0.319997pt;}
.ws142{word-spacing:-0.254305pt;}
.ws14e{word-spacing:-0.253776pt;}
.ws63{word-spacing:-0.213331pt;}
.ws145{word-spacing:-0.211110pt;}
.ws7c{word-spacing:-0.173907pt;}
.ws133{word-spacing:-0.106666pt;}
.ws72{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.ws1c{word-spacing:0.159998pt;}
.ws4b{word-spacing:0.213331pt;}
.ws12f{word-spacing:0.319997pt;}
.ws3b{word-spacing:0.479995pt;}
.wsf0{word-spacing:0.746659pt;}
.ws119{word-spacing:0.853325pt;}
.ws6b{word-spacing:0.959990pt;}
.ws118{word-spacing:1.013323pt;}
.wsa2{word-spacing:1.066656pt;}
.ws6d{word-spacing:1.119989pt;}
.wsef{word-spacing:1.226654pt;}
.wsf6{word-spacing:1.439986pt;}
.wsba{word-spacing:1.599984pt;}
.ws90{word-spacing:1.653317pt;}
.wsbe{word-spacing:1.706650pt;}
.ws74{word-spacing:1.759982pt;}
.ws114{word-spacing:1.813315pt;}
.ws28{word-spacing:1.866648pt;}
.ws7b{word-spacing:1.919981pt;}
.wsce{word-spacing:2.026646pt;}
.ws37{word-spacing:2.079979pt;}
.wsfe{word-spacing:2.133312pt;}
.ws3a{word-spacing:2.239978pt;}
.ws126{word-spacing:2.293310pt;}
.ws10f{word-spacing:2.346643pt;}
.ws79{word-spacing:2.506642pt;}
.ws78{word-spacing:2.540933pt;}
.wsee{word-spacing:2.613307pt;}
.ws2a{word-spacing:2.666640pt;}
.ws1e{word-spacing:2.826638pt;}
.wse2{word-spacing:2.956196pt;}
.ws4c{word-spacing:3.093302pt;}
.ws58{word-spacing:3.146635pt;}
.ws59{word-spacing:3.253301pt;}
.ws4d{word-spacing:3.306634pt;}
.wse6{word-spacing:3.413299pt;}
.wsbd{word-spacing:3.626630pt;}
.ws73{word-spacing:3.733296pt;}
.wsae{word-spacing:3.839962pt;}
.wsb9{word-spacing:3.893294pt;}
.ws16{word-spacing:4.053293pt;}
.ws45{word-spacing:4.319957pt;}
.wseb{word-spacing:4.373290pt;}
.ws48{word-spacing:4.586621pt;}
.wsf9{word-spacing:4.639954pt;}
.wsfd{word-spacing:4.693286pt;}
.wse1{word-spacing:4.906618pt;}
.ws124{word-spacing:5.226614pt;}
.ws30{word-spacing:5.386613pt;}
.wscd{word-spacing:5.653277pt;}
.ws8e{word-spacing:5.866608pt;}
.ws5d{word-spacing:6.079939pt;}
.ws5f{word-spacing:6.239938pt;}
.ws11a{word-spacing:6.346603pt;}
.ws122{word-spacing:6.613267pt;}
.ws106{word-spacing:6.719933pt;}
.wsf7{word-spacing:6.986597pt;}
.ws2c{word-spacing:7.093262pt;}
.wsb7{word-spacing:7.359926pt;}
.wsd2{word-spacing:7.670862pt;}
.ws113{word-spacing:7.679923pt;}
.ws86{word-spacing:8.053253pt;}
.ws135{word-spacing:8.853245pt;}
.wsb8{word-spacing:9.013243pt;}
.ws65{word-spacing:9.919901pt;}
.wsd6{word-spacing:10.133232pt;}
.ws40{word-spacing:10.346563pt;}
.wsa4{word-spacing:10.559894pt;}
.ws18{word-spacing:11.573218pt;}
.ws44{word-spacing:11.946547pt;}
.ws7d{word-spacing:12.639874pt;}
.ws6c{word-spacing:13.866528pt;}
.ws75{word-spacing:14.613187pt;}
.ws5e{word-spacing:18.933144pt;}
.ws11b{word-spacing:19.199808pt;}
.ws132{word-spacing:32.159678pt;}
._12{margin-left:-6.239938pt;}
._8{margin-left:-4.949271pt;}
._5{margin-left:-3.466632pt;}
._4{margin-left:-2.303971pt;}
._0{margin-left:-1.365316pt;}
._1{width:0.938655pt;}
._6{width:2.303971pt;}
._7{width:8.917222pt;}
._9{width:10.666533pt;}
._2{width:12.714508pt;}
._14{width:14.318795pt;}
._a{width:16.096892pt;}
._d{width:17.525155pt;}
._b{width:19.378354pt;}
._11{width:21.784080pt;}
._15{width:22.773106pt;}
._10{width:24.153151pt;}
._e{width:25.867662pt;}
._c{width:26.783725pt;}
._16{width:29.930362pt;}
._13{width:31.391683pt;}
._17{width:32.892667pt;}
._18{width:35.370307pt;}
._3{width:977.048414pt;}
._f{width:1392.957748pt;}
.fs4{font-size:26.666133pt;}
.fs8{font-size:30.932800pt;}
.fs9{font-size:33.599467pt;}
.fs5{font-size:36.266133pt;}
.fs3{font-size:42.666133pt;}
.fs2{font-size:42.666667pt;}
.fs0{font-size:48.000000pt;}
.fs6{font-size:53.332800pt;}
.fsa{font-size:63.999467pt;}
.fs1{font-size:85.333333pt;}
.fs7{font-size:95.998933pt;}
.y0{bottom:0.000000pt;}
.yc8{bottom:35.014667pt;}
.y10e{bottom:35.094667pt;}
.y169{bottom:35.174667pt;}
.y68{bottom:35.921333pt;}
.y7{bottom:57.706667pt;}
.ya2{bottom:63.158667pt;}
.y67{bottom:78.905333pt;}
.y47{bottom:78.966667pt;}
.ya1{bottom:79.825333pt;}
.y66{bottom:95.572000pt;}
.y46{bottom:95.633333pt;}
.ya0{bottom:96.492000pt;}
.y65{bottom:112.238667pt;}
.y45{bottom:112.300000pt;}
.y9f{bottom:113.158667pt;}
.y12d{bottom:122.481333pt;}
.y168{bottom:123.665333pt;}
.y64{bottom:128.905333pt;}
.y44{bottom:128.966667pt;}
.y9e{bottom:129.825333pt;}
.y12c{bottom:135.814667pt;}
.y167{bottom:136.998667pt;}
.y63{bottom:145.572000pt;}
.y43{bottom:145.633333pt;}
.y9d{bottom:146.492000pt;}
.y12b{bottom:149.148000pt;}
.y166{bottom:150.332000pt;}
.y62{bottom:162.238667pt;}
.y42{bottom:162.300000pt;}
.y12a{bottom:162.481333pt;}
.y9c{bottom:163.158667pt;}
.y165{bottom:163.665333pt;}
.y129{bottom:175.814667pt;}
.y164{bottom:176.998667pt;}
.y61{bottom:178.905333pt;}
.y41{bottom:178.966667pt;}
.y9b{bottom:179.825333pt;}
.y128{bottom:189.148000pt;}
.y163{bottom:190.332000pt;}
.y60{bottom:195.572000pt;}
.y40{bottom:195.633333pt;}
.y9a{bottom:196.492000pt;}
.y127{bottom:202.481333pt;}
.y162{bottom:203.665333pt;}
.y5f{bottom:212.238667pt;}
.y3f{bottom:212.300000pt;}
.y99{bottom:213.158667pt;}
.y126{bottom:215.814667pt;}
.y161{bottom:216.998667pt;}
.y5e{bottom:228.905333pt;}
.y3e{bottom:228.966667pt;}
.y125{bottom:229.148000pt;}
.y98{bottom:229.825333pt;}
.y103{bottom:229.957333pt;}
.y160{bottom:230.332000pt;}
.y15f{bottom:243.665333pt;}
.y5d{bottom:245.572000pt;}
.y3d{bottom:245.633333pt;}
.y97{bottom:246.492000pt;}
.y102{bottom:246.624000pt;}
.y15e{bottom:256.998667pt;}
.y124{bottom:259.085333pt;}
.y5c{bottom:262.238667pt;}
.y3c{bottom:262.300000pt;}
.y96{bottom:263.158667pt;}
.y15d{bottom:270.332000pt;}
.y5b{bottom:278.905333pt;}
.y3b{bottom:278.966667pt;}
.y95{bottom:279.825333pt;}
.y101{bottom:280.078667pt;}
.y15c{bottom:283.665333pt;}
.y123{bottom:291.752000pt;}
.y5a{bottom:295.572000pt;}
.y3a{bottom:295.633333pt;}
.y94{bottom:296.492000pt;}
.y100{bottom:296.745333pt;}
.y15b{bottom:296.998667pt;}
.y122{bottom:308.418667pt;}
.y15a{bottom:310.332000pt;}
.y59{bottom:312.238667pt;}
.y39{bottom:312.300000pt;}
.y93{bottom:313.158667pt;}
.yc7{bottom:313.290667pt;}
.yff{bottom:313.412000pt;}
.y159{bottom:323.665333pt;}
.y121{bottom:325.085333pt;}
.y58{bottom:328.905333pt;}
.y38{bottom:328.966667pt;}
.ye2{bottom:329.825333pt;}
.yfe{bottom:330.078667pt;}
.y158{bottom:336.998667pt;}
.y120{bottom:341.752000pt;}
.y57{bottom:345.572000pt;}
.y37{bottom:345.633333pt;}
.y92{bottom:346.429333pt;}
.ye1{bottom:346.492000pt;}
.ye9{bottom:346.624000pt;}
.yc6{bottom:346.660000pt;}
.yfd{bottom:346.745333pt;}
.y157{bottom:350.332000pt;}
.y11f{bottom:358.418667pt;}
.y56{bottom:362.238667pt;}
.y36{bottom:362.300000pt;}
.y91{bottom:363.096000pt;}
.ye0{bottom:363.158667pt;}
.yc5{bottom:363.326667pt;}
.yfc{bottom:363.412000pt;}
.y156{bottom:363.665333pt;}
.y11e{bottom:375.085333pt;}
.y155{bottom:376.998667pt;}
.y55{bottom:378.905333pt;}
.y35{bottom:378.966667pt;}
.ydf{bottom:379.825333pt;}
.yc4{bottom:379.993333pt;}
.yfb{bottom:380.078667pt;}
.ye8{bottom:381.998667pt;}
.y154{bottom:390.332000pt;}
.y11d{bottom:391.752000pt;}
.y54{bottom:395.572000pt;}
.y34{bottom:395.633333pt;}
.yde{bottom:396.492000pt;}
.yc3{bottom:396.660000pt;}
.yfa{bottom:396.745333pt;}
.y90{bottom:396.998667pt;}
.ye7{bottom:398.665333pt;}
.y153{bottom:403.665333pt;}
.y11c{bottom:408.418667pt;}
.y53{bottom:412.238667pt;}
.y33{bottom:412.300000pt;}
.ydd{bottom:413.158667pt;}
.yc2{bottom:413.326667pt;}
.yf9{bottom:413.412000pt;}
.y8f{bottom:413.665333pt;}
.ye6{bottom:415.332000pt;}
.y152{bottom:416.998667pt;}
.y11b{bottom:425.085333pt;}
.y52{bottom:428.905333pt;}
.y32{bottom:428.966667pt;}
.y10d{bottom:429.825333pt;}
.ydc{bottom:429.957333pt;}
.yc1{bottom:429.993333pt;}
.yf8{bottom:430.078667pt;}
.y8e{bottom:430.332000pt;}
.ye5{bottom:431.998667pt;}
.y11a{bottom:441.752000pt;}
.y151{bottom:443.665333pt;}
.y51{bottom:445.572000pt;}
.y31{bottom:445.633333pt;}
.y10c{bottom:446.492000pt;}
.ydb{bottom:446.624000pt;}
.yc0{bottom:446.660000pt;}
.yf7{bottom:446.745333pt;}
.y8d{bottom:446.998667pt;}
.ye4{bottom:448.665333pt;}
.y150{bottom:456.998667pt;}
.y119{bottom:458.418667pt;}
.y50{bottom:462.238667pt;}
.y30{bottom:462.300000pt;}
.y10b{bottom:463.158667pt;}
.ybf{bottom:463.326667pt;}
.yf6{bottom:463.412000pt;}
.y8c{bottom:463.665333pt;}
.ye3{bottom:465.332000pt;}
.y14f{bottom:470.332000pt;}
.y118{bottom:475.085333pt;}
.y4f{bottom:478.905333pt;}
.y2f{bottom:478.966667pt;}
.y10a{bottom:479.825333pt;}
.ybe{bottom:479.993333pt;}
.yf5{bottom:480.078667pt;}
.y8b{bottom:480.332000pt;}
.yda{bottom:481.998667pt;}
.y14e{bottom:483.665333pt;}
.y4e{bottom:495.572000pt;}
.y2e{bottom:495.633333pt;}
.y109{bottom:496.492000pt;}
.ybd{bottom:496.660000pt;}
.yf4{bottom:496.745333pt;}
.y8a{bottom:496.998667pt;}
.yd9{bottom:498.665333pt;}
.y117{bottom:508.356000pt;}
.y14d{bottom:510.332000pt;}
.y4d{bottom:512.238667pt;}
.y2d{bottom:512.300000pt;}
.y108{bottom:513.158667pt;}
.ybc{bottom:513.326667pt;}
.yf3{bottom:513.412000pt;}
.y89{bottom:513.665333pt;}
.yd8{bottom:515.332000pt;}
.y14c{bottom:523.665333pt;}
.y4c{bottom:528.905333pt;}
.y2c{bottom:528.966667pt;}
.y107{bottom:529.825333pt;}
.ybb{bottom:529.993333pt;}
.yf2{bottom:530.078667pt;}
.y88{bottom:530.332000pt;}
.yd7{bottom:531.998667pt;}
.y14b{bottom:536.998667pt;}
.y116{bottom:541.689333pt;}
.y4b{bottom:545.572000pt;}
.y2b{bottom:545.633333pt;}
.y106{bottom:546.492000pt;}
.yba{bottom:546.660000pt;}
.yf1{bottom:546.745333pt;}
.y87{bottom:546.998667pt;}
.yd6{bottom:548.665333pt;}
.y14a{bottom:550.332000pt;}
.y115{bottom:558.356000pt;}
.y4a{bottom:562.238667pt;}
.y2a{bottom:562.300000pt;}
.y105{bottom:563.290667pt;}
.yb9{bottom:563.326667pt;}
.yf0{bottom:563.412000pt;}
.y86{bottom:563.665333pt;}
.yd5{bottom:565.332000pt;}
.y114{bottom:575.022667pt;}
.y149{bottom:576.998667pt;}
.y49{bottom:578.905333pt;}
.y29{bottom:578.966667pt;}
.y104{bottom:579.957333pt;}
.yb8{bottom:579.993333pt;}
.yef{bottom:580.078667pt;}
.y85{bottom:580.332000pt;}
.yd4{bottom:581.998667pt;}
.y148{bottom:590.332000pt;}
.y113{bottom:591.689333pt;}
.y48{bottom:595.572000pt;}
.yb7{bottom:596.660000pt;}
.yee{bottom:596.745333pt;}
.y84{bottom:596.998667pt;}
.yd3{bottom:598.665333pt;}
.y147{bottom:603.665333pt;}
.y112{bottom:608.356000pt;}
.y28{bottom:612.238667pt;}
.yb6{bottom:613.326667pt;}
.yed{bottom:613.412000pt;}
.y83{bottom:613.665333pt;}
.yd2{bottom:615.332000pt;}
.y146{bottom:616.998667pt;}
.y27{bottom:628.905333pt;}
.yec{bottom:630.078667pt;}
.yb5{bottom:630.126667pt;}
.y82{bottom:630.332000pt;}
.yd1{bottom:631.998667pt;}
.y111{bottom:641.628000pt;}
.y145{bottom:643.665333pt;}
.yeb{bottom:646.745333pt;}
.y81{bottom:646.998667pt;}
.yd0{bottom:648.665333pt;}
.y144{bottom:656.998667pt;}
.yb4{bottom:663.496000pt;}
.yea{bottom:663.544000pt;}
.y80{bottom:663.665333pt;}
.ycf{bottom:665.332000pt;}
.y143{bottom:670.332000pt;}
.yb3{bottom:680.162667pt;}
.y7f{bottom:680.332000pt;}
.y110{bottom:681.060000pt;}
.y142{bottom:683.665333pt;}
.y26{bottom:692.378667pt;}
.yb2{bottom:696.829333pt;}
.y7e{bottom:696.998667pt;}
.y141{bottom:710.332000pt;}
.yb1{bottom:713.496000pt;}
.y7d{bottom:713.665333pt;}
.y10f{bottom:714.332000pt;}
.y25{bottom:715.152000pt;}
.yce{bottom:720.928000pt;}
.y16{bottom:723.473333pt;}
.y140{bottom:723.665333pt;}
.yb0{bottom:730.162667pt;}
.y7c{bottom:730.332000pt;}
.ycd{bottom:732.928000pt;}
.y15{bottom:734.140000pt;}
.y13f{bottom:736.998667pt;}
.y24{bottom:738.590667pt;}
.y14{bottom:744.806667pt;}
.ycc{bottom:744.928000pt;}
.yaf{bottom:746.829333pt;}
.y7b{bottom:746.998667pt;}
.y23{bottom:747.274667pt;}
.y13e{bottom:750.332000pt;}
.y22{bottom:751.924000pt;}
.y13{bottom:755.473333pt;}
.ycb{bottom:756.928000pt;}
.yae{bottom:763.496000pt;}
.y7a{bottom:763.665333pt;}
.y21{bottom:765.257333pt;}
.y12{bottom:766.140000pt;}
.yca{bottom:768.928000pt;}
.y11{bottom:776.806667pt;}
.y13d{bottom:776.998667pt;}
.y20{bottom:778.590667pt;}
.yad{bottom:780.162667pt;}
.y79{bottom:780.332000pt;}
.yc9{bottom:780.928000pt;}
.y13c{bottom:790.332000pt;}
.y1f{bottom:791.924000pt;}
.y10{bottom:792.786667pt;}
.yac{bottom:796.829333pt;}
.y78{bottom:796.998667pt;}
.y1e{bottom:800.608000pt;}
.y6{bottom:802.933333pt;}
.yf{bottom:803.453333pt;}
.y13b{bottom:803.665333pt;}
.yab{bottom:813.496000pt;}
.y77{bottom:813.665333pt;}
.ye{bottom:814.120000pt;}
.y13a{bottom:816.998667pt;}
.y1d{bottom:818.590667pt;}
.yd{bottom:824.786667pt;}
.y5{bottom:828.800000pt;}
.yaa{bottom:830.162667pt;}
.y76{bottom:830.332000pt;}
.y1c{bottom:831.924000pt;}
.yc{bottom:835.453333pt;}
.y139{bottom:843.665333pt;}
.ya9{bottom:846.829333pt;}
.y75{bottom:846.998667pt;}
.y1b{bottom:847.798667pt;}
.y138{bottom:856.998667pt;}
.ya8{bottom:863.496000pt;}
.y74{bottom:863.665333pt;}
.y1a{bottom:863.798667pt;}
.y4{bottom:864.666667pt;}
.yb{bottom:867.065333pt;}
.y137{bottom:870.332000pt;}
.ya{bottom:878.018667pt;}
.ya7{bottom:880.162667pt;}
.y73{bottom:880.332000pt;}
.y136{bottom:883.665333pt;}
.y19{bottom:896.718667pt;}
.ya6{bottom:896.829333pt;}
.y72{bottom:896.998667pt;}
.y3{bottom:898.813333pt;}
.y9{bottom:909.870667pt;}
.y135{bottom:910.332000pt;}
.ya5{bottom:913.496000pt;}
.y71{bottom:913.665333pt;}
.y134{bottom:923.665333pt;}
.y2{bottom:924.413333pt;}
.y18{bottom:924.718667pt;}
.ya4{bottom:930.162667pt;}
.y70{bottom:930.332000pt;}
.y133{bottom:936.998667pt;}
.ya3{bottom:946.962667pt;}
.y6f{bottom:946.998667pt;}
.y132{bottom:950.332000pt;}
.y17{bottom:960.784000pt;}
.y1{bottom:961.320000pt;}
.y6e{bottom:963.665333pt;}
.y131{bottom:976.998667pt;}
.y6d{bottom:980.332000pt;}
.y130{bottom:990.332000pt;}
.y6c{bottom:996.998667pt;}
.y12f{bottom:1003.665333pt;}
.y6b{bottom:1013.665333pt;}
.y12e{bottom:1016.998667pt;}
.y6a{bottom:1030.332000pt;}
.y8{bottom:1066.218667pt;}
.y69{bottom:1076.885333pt;}
.h7{height:18.666293pt;}
.hc{height:24.090818pt;}
.h8{height:26.002818pt;}
.h6{height:29.866293pt;}
.hd{height:30.292955pt;}
.h5{height:30.591618pt;}
.h9{height:37.332960pt;}
.h10{height:37.866288pt;}
.hf{height:38.239618pt;}
.hb{height:42.632151pt;}
.h3{height:44.500000pt;}
.he{height:45.439621pt;}
.h1{height:50.062500pt;}
.h2{height:64.000000pt;}
.ha{height:67.199253pt;}
.h4{height:1122.520000pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.w1{width:793.706667pt;}
.w2{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:52.000000pt;}
.x4{left:56.693333pt;}
.x3{left:158.740000pt;}
.x5{left:168.702667pt;}
.xb{left:172.422667pt;}
.x7{left:178.665333pt;}
.xd{left:182.740000pt;}
.x2{left:192.400000pt;}
.xc{left:250.706667pt;}
.x6{left:359.270667pt;}
.xa{left:393.650667pt;}
.x9{left:455.844000pt;}
.x8{left:475.769333pt;}
.xe{left:479.844000pt;}
}




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