
    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_29c5709de218f2ead58954fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.107910;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_9efe69b19117e2d3cf5e435e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.922000;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_ab83a9a3f859a72781913239.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.438000;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_163c2a42f95180412f52c05b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.107910;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_6d7e8b58b003555a89e55668.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.109863;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_39d462c9c25a98ee4897f450.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.107910;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_a9e4a9618f1ae1467bd88421.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107910;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);}
.m3{transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281272,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281277,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281283,0.000000,0.000000,0.250000,0,0);}
.m4{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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:2.391030px;}
.ls1{letter-spacing:16.736462px;}
.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;}
}
.wse{word-spacing:-26.883195px;}
.ws45{word-spacing:-24.919002px;}
.ws1{word-spacing:-20.561405px;}
.ws8{word-spacing:-20.130234px;}
.ws6{word-spacing:-20.073208px;}
.ws4{word-spacing:-20.045135px;}
.ws3{word-spacing:-19.980577px;}
.ws7{word-spacing:-19.978165px;}
.ws9{word-spacing:-19.889457px;}
.ws5{word-spacing:-19.838767px;}
.ws76{word-spacing:-18.406149px;}
.ws6e{word-spacing:-18.401367px;}
.ws2f{word-spacing:-18.367892px;}
.ws85{word-spacing:-18.363110px;}
.ws74{word-spacing:-18.267469px;}
.wsad{word-spacing:-18.248341px;}
.ws7f{word-spacing:-18.214867px;}
.ws7e{word-spacing:-18.100097px;}
.ws86{word-spacing:-18.047494px;}
.wsd0{word-spacing:-18.023584px;}
.ws102{word-spacing:-16.593748px;}
.wse1{word-spacing:-16.556719px;}
.wsbd{word-spacing:-16.522017px;}
.ws60{word-spacing:-16.311607px;}
.ws88{word-spacing:-16.297260px;}
.wsb3{word-spacing:-16.182491px;}
.wsb7{word-spacing:-16.115542px;}
.ws56{word-spacing:-15.929042px;}
.ws73{word-spacing:-15.842965px;}
.ws37{word-spacing:-15.819054px;}
.ws33{word-spacing:-15.680375px;}
.wsa8{word-spacing:-15.570387px;}
.ws6b{word-spacing:-15.498656px;}
.wsac{word-spacing:-15.460400px;}
.wsb4{word-spacing:-15.235643px;}
.ws65{word-spacing:-15.206951px;}
.ws30{word-spacing:-14.915245px;}
.wsf1{word-spacing:-14.831619px;}
.ws9d{word-spacing:-14.823967px;}
.wscd{word-spacing:-14.819604px;}
.wsf0{word-spacing:-14.709201px;}
.ws5c{word-spacing:-14.690488px;}
.wse6{word-spacing:-14.686248px;}
.wsda{word-spacing:-14.666578px;}
.ws16{word-spacing:-14.654439px;}
.wsf3{word-spacing:-14.582958px;}
.ws36{word-spacing:-14.556591px;}
.wsb6{word-spacing:-14.527898px;}
.ws70{word-spacing:-14.389219px;}
.wsaf{word-spacing:-14.255321px;}
.wsde{word-spacing:-14.178808px;}
.ws26{word-spacing:-14.011436px;}
.ws28{word-spacing:-13.982743px;}
.wsd6{word-spacing:-13.954051px;}
.ws25{word-spacing:-13.934923px;}
.wsb8{word-spacing:-13.834500px;}
.ws15{word-spacing:-13.793679px;}
.wsfd{word-spacing:-13.791461px;}
.ws39{word-spacing:-13.719730px;}
.wsbf{word-spacing:-13.700602px;}
.ws67{word-spacing:-13.681474px;}
.wsfc{word-spacing:-13.652781px;}
.ws3a{word-spacing:-13.557140px;}
.ws5d{word-spacing:-13.542794px;}
.ws80{word-spacing:-13.504537px;}
.wsd5{word-spacing:-13.370640px;}
.ws107{word-spacing:-13.312879px;}
.ws6a{word-spacing:-13.251088px;}
.ws64{word-spacing:-13.188921px;}
.ws8b{word-spacing:-13.165011px;}
.ws81{word-spacing:-13.155447px;}
.wsd4{word-spacing:-13.050242px;}
.ws8e{word-spacing:-12.892434px;}
.ws55{word-spacing:-12.825485px;}
.ws104{word-spacing:-12.781129px;}
.wsf5{word-spacing:-12.584311px;}
.wscc{word-spacing:-12.485959px;}
.ws6c{word-spacing:-12.471612px;}
.ws4e{word-spacing:-12.170343px;}
.wsc5{word-spacing:-12.146432px;}
.ws94{word-spacing:-12.132086px;}
.ws4d{word-spacing:-12.074702px;}
.ws0{word-spacing:-12.060355px;}
.ws58{word-spacing:-12.036445px;}
.wsd7{word-spacing:-12.022099px;}
.ws41{word-spacing:-12.017317px;}
.ws101{word-spacing:-11.983842px;}
.ws7c{word-spacing:-11.950368px;}
.ws95{word-spacing:-11.945586px;}
.wsb0{word-spacing:-11.912111px;}
.ws10c{word-spacing:-11.870651px;}
.ws52{word-spacing:-11.854727px;}
.ws8a{word-spacing:-11.849945px;}
.ws91{word-spacing:-11.840381px;}
.ws3c{word-spacing:-11.830816px;}
.ws2c{word-spacing:-11.797342px;}
.wsc4{word-spacing:-11.792560px;}
.ws57{word-spacing:-11.763868px;}
.wsd2{word-spacing:-11.759086px;}
.ws61{word-spacing:-11.749521px;}
.wscb{word-spacing:-11.682573px;}
.ws18{word-spacing:-11.671906px;}
.ws27{word-spacing:-11.668226px;}
.ws50{word-spacing:-11.548675px;}
.ws66{word-spacing:-11.534329px;}
.ws92{word-spacing:-11.505636px;}
.wsca{word-spacing:-11.467380px;}
.ws1b{word-spacing:-11.362032px;}
.wsaa{word-spacing:-11.328700px;}
.wsa9{word-spacing:-11.285662px;}
.ws90{word-spacing:-11.276097px;}
.wsc7{word-spacing:-11.089597px;}
.wsc8{word-spacing:-10.989174px;}
.ws89{word-spacing:-10.864840px;}
.ws49{word-spacing:-10.845576px;}
.ws21{word-spacing:-10.802538px;}
.wsab{word-spacing:-10.783545px;}
.wsae{word-spacing:-10.778763px;}
.ws97{word-spacing:-10.768108px;}
.ws46{word-spacing:-10.733677px;}
.wsf{word-spacing:-10.711512px;}
.ws98{word-spacing:-10.694943px;}
.ws1d{word-spacing:-10.690639px;}
.ws20{word-spacing:-10.660513px;}
.ws17{word-spacing:-10.656209px;}
.wsc0{word-spacing:-10.640084px;}
.ws47{word-spacing:-10.552918px;}
.ws4a{word-spacing:-10.535702px;}
.ws93{word-spacing:-10.520532px;}
.ws62{word-spacing:-10.467929px;}
.ws2{word-spacing:-10.362724px;}
.wsc1{word-spacing:-10.271865px;}
.wsa5{word-spacing:-10.185788px;}
.ws14{word-spacing:-10.122538px;}
.ws108{word-spacing:-10.118553px;}
.ws54{word-spacing:-9.889300px;}
.ws63{word-spacing:-9.860608px;}
.wsb2{word-spacing:-9.779313px;}
.wsbc{word-spacing:-9.760184px;}
.ws105{word-spacing:-9.720697px;}
.ws10d{word-spacing:-9.716872px;}
.wsf8{word-spacing:-9.705395px;}
.ws99{word-spacing:-9.674791px;}
.ws10e{word-spacing:-9.667140px;}
.ws10a{word-spacing:-9.651837px;}
.ws9b{word-spacing:-9.644186px;}
.ws110{word-spacing:-9.636535px;}
.ws10f{word-spacing:-9.617408px;}
.ws109{word-spacing:-9.609756px;}
.wsfa{word-spacing:-9.605931px;}
.wseb{word-spacing:-9.602105px;}
.wse9{word-spacing:-9.586803px;}
.ws112{word-spacing:-9.575327px;}
.ws79{word-spacing:-9.573684px;}
.ws10b{word-spacing:-9.563850px;}
.ws9c{word-spacing:-9.548548px;}
.wsf6{word-spacing:-9.545828px;}
.ws59{word-spacing:-9.544992px;}
.wsf9{word-spacing:-9.540897px;}
.ws106{word-spacing:-9.537071px;}
.ws9e{word-spacing:-9.514118px;}
.wsf7{word-spacing:-9.510292px;}
.ws77{word-spacing:-9.506735px;}
.ws9a{word-spacing:-9.475863px;}
.ws78{word-spacing:-9.468479px;}
.ws7b{word-spacing:-9.425440px;}
.ws71{word-spacing:-9.420658px;}
.wsa0{word-spacing:-9.410828px;}
.ws9f{word-spacing:-9.407003px;}
.wse4{word-spacing:-9.403177px;}
.wse5{word-spacing:-9.399352px;}
.ws111{word-spacing:-9.395526px;}
.ws10{word-spacing:-9.391701px;}
.ws8d{word-spacing:-9.377620px;}
.wse2{word-spacing:-9.334318px;}
.wsed{word-spacing:-9.307539px;}
.ws113{word-spacing:-9.303713px;}
.wsef{word-spacing:-9.296062px;}
.wsbe{word-spacing:-9.258068px;}
.wsec{word-spacing:-9.215726px;}
.ws12{word-spacing:-9.200424px;}
.wse8{word-spacing:-9.173645px;}
.ws11{word-spacing:-9.158343px;}
.ws7a{word-spacing:-9.085914px;}
.wse3{word-spacing:-9.066530px;}
.wsd8{word-spacing:-8.889850px;}
.ws87{word-spacing:-8.741606px;}
.wsb9{word-spacing:-8.698567px;}
.ws13{word-spacing:-8.616208px;}
.ws19{word-spacing:-8.607600px;}
.wsdb{word-spacing:-8.469028px;}
.ws43{word-spacing:-8.430772px;}
.ws72{word-spacing:-8.402079px;}
.wsce{word-spacing:-8.134284px;}
.wsc9{word-spacing:-8.067335px;}
.ws8c{word-spacing:-8.062553px;}
.wsea{word-spacing:-7.992157px;}
.ws2e{word-spacing:-7.914309px;}
.wscf{word-spacing:-7.909527px;}
.ws8f{word-spacing:-7.751719px;}
.ws31{word-spacing:-7.723027px;}
.ws3d{word-spacing:-7.512616px;}
.ws1e{word-spacing:-7.492916px;}
.ws3f{word-spacing:-7.469578px;}
.ws1c{word-spacing:-7.406840px;}
.wsd9{word-spacing:-7.335680px;}
.ws6d{word-spacing:-7.326116px;}
.ws44{word-spacing:-7.240039px;}
.wsa7{word-spacing:-7.134834px;}
.ws40{word-spacing:-7.043974px;}
.ws23{word-spacing:-6.919641px;}
.wsbb{word-spacing:-6.847910px;}
.ws5b{word-spacing:-6.804871px;}
.ws51{word-spacing:-6.589679px;}
.ws1a{word-spacing:-6.576206px;}
.wsc6{word-spacing:-6.364922px;}
.ws38{word-spacing:-6.293191px;}
.wsba{word-spacing:-6.049306px;}
.wsc3{word-spacing:-6.025396px;}
.ws3b{word-spacing:-5.858023px;}
.ws4f{word-spacing:-5.767164px;}
.ws1f{word-spacing:-5.556206px;}
.wsdd{word-spacing:-5.528061px;}
.wsd3{word-spacing:-5.202881px;}
.ws35{word-spacing:-5.112022px;}
.ws34{word-spacing:-5.088112px;}
.wsb5{word-spacing:-5.016381px;}
.wsc2{word-spacing:-5.002035px;}
.ws84{word-spacing:-4.877701px;}
.ws5e{word-spacing:-4.743804px;}
.ws29{word-spacing:-3.983456px;}
.ws3e{word-spacing:-3.863904px;}
.wsa6{word-spacing:-3.773045px;}
.ws5f{word-spacing:-3.725225px;}
.ws2a{word-spacing:-3.643930px;}
.wsfe{word-spacing:-3.639148px;}
.ws75{word-spacing:-3.299621px;}
.ws6f{word-spacing:-3.132249px;}
.wsa3{word-spacing:-2.960095px;}
.ws2d{word-spacing:-2.926621px;}
.ws5a{word-spacing:-2.869236px;}
.ws53{word-spacing:-2.075414px;}
.wsdf{word-spacing:-2.051504px;}
.wsfb{word-spacing:-1.941516px;}
.wsb1{word-spacing:-1.625900px;}
.ws32{word-spacing:-1.444182px;}
.wsa4{word-spacing:-0.922938px;}
.ws69{word-spacing:-0.803386px;}
.ws42{word-spacing:-0.760348px;}
.wsff{word-spacing:-0.588193px;}
.ws68{word-spacing:-0.569065px;}
.ws96{word-spacing:-0.563798px;}
.ws4b{word-spacing:0.000000px;}
.ws82{word-spacing:0.459078px;}
.wsdc{word-spacing:0.779476px;}
.ws83{word-spacing:1.023361px;}
.ws100{word-spacing:1.401144px;}
.ws4c{word-spacing:1.587644px;}
.ws2b{word-spacing:1.716760px;}
.wsb{word-spacing:1.729144px;}
.wsa{word-spacing:1.790353px;}
.ws24{word-spacing:1.836311px;}
.ws103{word-spacing:1.840085px;}
.wsd{word-spacing:1.989281px;}
.wsa1{word-spacing:2.027536px;}
.ws48{word-spacing:2.151900px;}
.wsc{word-spacing:2.161430px;}
.wse0{word-spacing:2.300171px;}
.ws7d{word-spacing:5.561536px;}
.ws22{word-spacing:7.479142px;}
.wsd1{word-spacing:8.669875px;}
.wsa2{word-spacing:13.542794px;}
.wse7{word-spacing:113.695049px;}
.wsf2{word-spacing:150.917553px;}
.wsee{word-spacing:153.790534px;}
.wsf4{word-spacing:153.943555px;}
._d{width:1.106077px;}
._5{width:8.667853px;}
._e{width:10.281429px;}
._3{width:11.817093px;}
._2{width:13.741340px;}
._8{width:14.747873px;}
._4{width:15.962794px;}
._0{width:17.076736px;}
._a{width:18.482662px;}
._c{width:20.452871px;}
._6{width:21.834886px;}
._b{width:23.695107px;}
._9{width:25.077123px;}
._f{width:26.258291px;}
._1{width:27.913092px;}
._10{width:29.266207px;}
._7{width:30.614748px;}
._1a{width:36.668836px;}
._19{width:42.412090px;}
._11{width:53.653198px;}
._27{width:58.194935px;}
._1f{width:62.601957px;}
._2a{width:116.380578px;}
._1e{width:135.844925px;}
._16{width:140.102751px;}
._29{width:154.402620px;}
._28{width:164.417884px;}
._25{width:173.220451px;}
._26{width:176.093432px;}
._23{width:183.243366px;}
._22{width:185.802652px;}
._2b{width:194.758241px;}
._14{width:205.236395px;}
._13{width:241.127612px;}
._17{width:249.631787px;}
._1d{width:267.676859px;}
._20{width:281.498535px;}
._1c{width:303.036326px;}
._1b{width:321.739391px;}
._21{width:375.449972px;}
._2d{width:377.358917px;}
._2c{width:397.783475px;}
._15{width:418.028232px;}
._24{width:434.784098px;}
._12{width:471.750291px;}
._31{width:513.154110px;}
._30{width:516.551190px;}
._32{width:529.160169px;}
._2e{width:531.072939px;}
._33{width:616.600537px;}
._2f{width:637.679263px;}
._18{width:2269.523211px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,127,171);}
.fc1{color:rgb(50,126,177);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:25.499400px;}
.fs9{font-size:28.688400px;}
.fs6{font-size:38.255400px;}
.fsc{font-size:38.400000px;}
.fs7{font-size:41.842200px;}
.fs4{font-size:42.237000px;}
.fs8{font-size:43.038000px;}
.fsa{font-size:43.200000px;}
.fs0{font-size:47.820600px;}
.fsb{font-size:60.000000px;}
.fs3{font-size:63.362400px;}
.fs2{font-size:80.697000px;}
.fs1{font-size:83.685000px;}
.y0{bottom:0.000000px;}
.yae{bottom:41.558400px;}
.yf0{bottom:72.964790px;}
.y7c{bottom:72.973955px;}
.y3d{bottom:72.991725px;}
.yb0{bottom:74.410168px;}
.y3c{bottom:87.403215px;}
.y7b{bottom:88.620855px;}
.yac{bottom:98.053182px;}
.y37{bottom:101.622186px;}
.yef{bottom:104.343472px;}
.y7a{bottom:104.353833px;}
.yaf{bottom:105.788850px;}
.yab{bottom:110.894563px;}
.y36{bottom:115.993650px;}
.y79{bottom:120.000733px;}
.yaa{bottom:123.820107px;}
.yee{bottom:135.722155px;}
.y78{bottom:135.732515px;}
.ya9{bottom:136.660532px;}
.y3a{bottom:140.825536px;}
.y12d{bottom:149.415532px;}
.ya8{bottom:149.501913px;}
.y77{bottom:151.379415px;}
.yed{bottom:151.453936px;}
.y39{bottom:155.112000px;}
.y38{bottom:159.958500px;}
.y12c{bottom:162.255957px;}
.yec{bottom:167.100837px;}
.y76{bottom:167.112392px;}
.y12b{bottom:175.182457px;}
.ya7{bottom:175.183720px;}
.yeb{bottom:182.832619px;}
.y75{bottom:182.844174px;}
.y12a{bottom:188.022882px;}
.ya6{bottom:188.024145px;}
.yea{bottom:198.480714px;}
.y74{bottom:198.491075px;}
.y129{bottom:200.864263px;}
.ya5{bottom:200.864570px;}
.y34{bottom:209.880956px;}
.y128{bottom:213.704688px;}
.ya4{bottom:213.705951px;}
.ye9{bottom:214.212496px;}
.y73{bottom:214.222857px;}
.y33{bottom:225.527856px;}
.y127{bottom:226.545113px;}
.ya3{bottom:226.631494px;}
.ye8{bottom:229.859397px;}
.y72{bottom:229.870952px;}
.y126{bottom:239.386495px;}
.ya2{bottom:239.471919px;}
.y32{bottom:241.259638px;}
.ye7{bottom:245.591179px;}
.y71{bottom:245.602734px;}
.ya1{bottom:252.313301px;}
.y31{bottom:256.906538px;}
.ye6{bottom:261.239274px;}
.y70{bottom:261.249635px;}
.y125{bottom:264.132000px;}
.ya0{bottom:265.153726px;}
.y30{bottom:272.639516px;}
.ye5{bottom:276.971056px;}
.y6f{bottom:276.981416px;}
.y9f{bottom:277.995107px;}
.y124{bottom:285.562072px;}
.y2f{bottom:288.286416px;}
.y9e{bottom:290.835532px;}
.ye4{bottom:292.617957px;}
.y6e{bottom:292.629512px;}
.y123{bottom:299.848536px;}
.y9d{bottom:303.675957px;}
.y2e{bottom:304.018198px;}
.ye3{bottom:308.349739px;}
.y6d{bottom:308.361294px;}
.y122{bottom:314.220000px;}
.y9c{bottom:316.602457px;}
.y2d{bottom:319.665098px;}
.ye2{bottom:323.997834px;}
.y6c{bottom:324.008195px;}
.y9b{bottom:329.442882px;}
.y2c{bottom:335.398076px;}
.ye1{bottom:339.729616px;}
.y6b{bottom:339.739976px;}
.y9a{bottom:342.284263px;}
.y121{bottom:345.600036px;}
.y2b{bottom:351.044976px;}
.y99{bottom:355.124688px;}
.ye0{bottom:355.376517px;}
.y6a{bottom:355.386877px;}
.y120{bottom:359.971500px;}
.y2a{bottom:366.776758px;}
.y98{bottom:367.965113px;}
.ydf{bottom:371.108298px;}
.y69{bottom:371.119854px;}
.y29{bottom:382.423658px;}
.yde{bottom:386.755199px;}
.y11f{bottom:386.760274px;}
.y68{bottom:386.766754px;}
.y97{bottom:392.711575px;}
.y28{bottom:398.156636px;}
.y11e{bottom:399.601655px;}
.ydd{bottom:402.488176px;}
.y67{bottom:402.498536px;}
.y96{bottom:405.552000px;}
.y11d{bottom:412.527199px;}
.y27{bottom:413.803536px;}
.ydc{bottom:418.135076px;}
.y66{bottom:418.145437px;}
.y11c{bottom:425.367624px;}
.y95{bottom:426.898536px;}
.y26{bottom:429.535318px;}
.ydb{bottom:433.866858px;}
.y65{bottom:433.878414px;}
.y11b{bottom:438.209005px;}
.y94{bottom:441.270000px;}
.y35{bottom:445.182218px;}
.yda{bottom:449.513759px;}
.y64{bottom:449.525314px;}
.y11a{bottom:451.049430px;}
.y25{bottom:460.914000px;}
.y119{bottom:463.890811px;}
.yd9{bottom:465.246736px;}
.y63{bottom:465.257096px;}
.y118{bottom:476.731236px;}
.yd8{bottom:480.893636px;}
.y92{bottom:482.605214px;}
.y117{bottom:489.571662px;}
.yd7{bottom:496.625418px;}
.y62{bottom:496.636974px;}
.y91{bottom:498.336996px;}
.yd6{bottom:512.272319px;}
.y90{bottom:513.983897px;}
.y116{bottom:514.318123px;}
.y24{bottom:526.821002px;}
.yd5{bottom:528.005296px;}
.y61{bottom:528.015656px;}
.y8f{bottom:529.716874px;}
.y115{bottom:539.744575px;}
.y23{bottom:541.107466px;}
.yd4{bottom:543.652196px;}
.y60{bottom:543.662557px;}
.y8e{bottom:545.363774px;}
.y114{bottom:552.585000px;}
.y22{bottom:555.478930px;}
.yd3{bottom:559.383978px;}
.y5f{bottom:559.395534px;}
.y8d{bottom:561.095556px;}
.y21{bottom:569.850394px;}
.y113{bottom:573.931572px;}
.yd2{bottom:575.030879px;}
.y8c{bottom:576.742457px;}
.y20{bottom:584.221859px;}
.y112{bottom:588.303036px;}
.yd1{bottom:590.763856px;}
.y5e{bottom:590.774216px;}
.y8b{bottom:592.475434px;}
.y1f{bottom:598.508323px;}
.y111{bottom:602.674500px;}
.yd0{bottom:606.495638px;}
.y8a{bottom:608.122334px;}
.y1e{bottom:612.879787px;}
.ycf{bottom:622.142538px;}
.y5d{bottom:622.154094px;}
.y89{bottom:623.854116px;}
.y1d{bottom:627.251251px;}
.yce{bottom:637.874320px;}
.y5c{bottom:637.885876px;}
.y88{bottom:639.501016px;}
.y1c{bottom:641.537715px;}
.y110{bottom:646.899913px;}
.ycd{bottom:653.521220px;}
.y5b{bottom:653.532776px;}
.y87{bottom:655.233994px;}
.y1b{bottom:655.909179px;}
.y10f{bottom:659.740338px;}
.ycc{bottom:669.254198px;}
.y5a{bottom:669.264558px;}
.y1a{bottom:670.280643px;}
.y86{bottom:670.880894px;}
.y10e{bottom:672.581719px;}
.y15{bottom:676.234844px;}
.y19{bottom:684.567108px;}
.ycb{bottom:684.901098px;}
.y59{bottom:684.911458px;}
.y10d{bottom:685.422144px;}
.y85{bottom:686.612676px;}
.y14{bottom:689.075269px;}
.y10c{bottom:698.263526px;}
.y18{bottom:698.938572px;}
.yca{bottom:700.632880px;}
.y58{bottom:700.644436px;}
.y13{bottom:701.916650px;}
.y84{bottom:702.259576px;}
.y10b{bottom:711.103951px;}
.y17{bottom:713.310036px;}
.y12{bottom:714.757075px;}
.yc9{bottom:716.279780px;}
.y57{bottom:716.291336px;}
.y83{bottom:717.992554px;}
.y10a{bottom:723.944376px;}
.y11{bottom:727.597500px;}
.y16{bottom:727.681500px;}
.yc8{bottom:732.012758px;}
.y56{bottom:732.023118px;}
.y82{bottom:733.724336px;}
.y109{bottom:736.785757px;}
.yc7{bottom:747.659658px;}
.y55{bottom:747.670018px;}
.y81{bottom:749.371236px;}
.y108{bottom:749.711300px;}
.y10{bottom:757.785000px;}
.y107{bottom:762.552682px;}
.yc6{bottom:763.391440px;}
.y54{bottom:763.402996px;}
.y80{bottom:765.103018px;}
.y106{bottom:775.393107px;}
.yc5{bottom:779.038340px;}
.y53{bottom:779.049896px;}
.y7f{bottom:780.749918px;}
.y105{bottom:788.233532px;}
.yc4{bottom:794.771318px;}
.y52{bottom:794.781678px;}
.y7e{bottom:796.482896px;}
.y104{bottom:801.074913px;}
.yf{bottom:807.108000px;}
.yc3{bottom:810.418218px;}
.y51{bottom:810.428578px;}
.ye{bottom:811.360500px;}
.y7d{bottom:812.129796px;}
.y103{bottom:813.915338px;}
.yd{bottom:819.949500px;}
.yc{bottom:824.202000px;}
.yc2{bottom:826.150000px;}
.y12f{bottom:826.158000px;}
.y50{bottom:826.161555px;}
.y102{bottom:826.756720px;}
.yb{bottom:832.791000px;}
.ya{bottom:837.042000px;}
.y101{bottom:839.682263px;}
.yc1{bottom:841.796900px;}
.y145{bottom:841.804459px;}
.y4f{bottom:841.808456px;}
.y9{bottom:845.716500px;}
.y8{bottom:849.969000px;}
.y100{bottom:852.522688px;}
.y144{bottom:853.794657px;}
.yc0{bottom:857.529878px;}
.y4e{bottom:857.540238px;}
.yff{bottom:865.364069px;}
.y143{bottom:865.700694px;}
.y6{bottom:868.081500px;}
.ybf{bottom:873.176778px;}
.y4d{bottom:873.187138px;}
.y7{bottom:875.140500px;}
.y142{bottom:877.690893px;}
.yfe{bottom:878.204494px;}
.ybe{bottom:888.908560px;}
.y4c{bottom:888.920115px;}
.y141{bottom:889.681092px;}
.yfd{bottom:891.044919px;}
.y5{bottom:900.992716px;}
.y140{bottom:901.586172px;}
.yfc{bottom:903.886301px;}
.ybd{bottom:904.555460px;}
.y4b{bottom:904.567016px;}
.y13f{bottom:913.577327px;}
.yfb{bottom:916.726726px;}
.y3e{bottom:916.934970px;}
.ybc{bottom:920.288437px;}
.y4a{bottom:920.298798px;}
.y13e{bottom:925.482408px;}
.y4{bottom:926.844000px;}
.yfa{bottom:929.568107px;}
.ybb{bottom:935.935338px;}
.y49{bottom:935.945698px;}
.y13d{bottom:937.472607px;}
.yf9{bottom:942.493650px;}
.y13c{bottom:949.378643px;}
.yba{bottom:951.667120px;}
.y48{bottom:951.677480px;}
.yf8{bottom:955.334075px;}
.y13b{bottom:961.368842px;}
.yb9{bottom:967.314020px;}
.y47{bottom:967.325576px;}
.yf7{bottom:968.175457px;}
.y13a{bottom:973.359041px;}
.yf6{bottom:981.015882px;}
.yb8{bottom:983.045802px;}
.y46{bottom:983.057358px;}
.y139{bottom:985.264121px;}
.yf5{bottom:993.857263px;}
.y138{bottom:997.255277px;}
.yb7{bottom:998.693898px;}
.y45{bottom:998.704258px;}
.y3{bottom:1004.995500px;}
.yf4{bottom:1006.697688px;}
.y137{bottom:1009.160357px;}
.yb6{bottom:1014.425680px;}
.y44{bottom:1014.436040px;}
.y136{bottom:1021.150556px;}
.yb5{bottom:1030.072580px;}
.y43{bottom:1030.084136px;}
.yf3{bottom:1031.444150px;}
.y135{bottom:1033.140754px;}
.y2{bottom:1043.857500px;}
.yf2{bottom:1044.284575px;}
.y134{bottom:1045.046791px;}
.yb4{bottom:1045.804362px;}
.y42{bottom:1045.815917px;}
.y133{bottom:1057.036990px;}
.yf1{bottom:1057.125000px;}
.yb3{bottom:1061.452458px;}
.y41{bottom:1061.462818px;}
.y132{bottom:1068.942071px;}
.yb2{bottom:1077.184239px;}
.y40{bottom:1077.194600px;}
.y93{bottom:1078.555036px;}
.y131{bottom:1080.932269px;}
.y1{bottom:1088.758500px;}
.yb1{bottom:1092.831140px;}
.y130{bottom:1092.838306px;}
.y3f{bottom:1092.841500px;}
.yad{bottom:1127.611198px;}
.y12e{bottom:1127.615674px;}
.y146{bottom:1127.619159px;}
.y3b{bottom:1127.623170px;}
.hd{height:13.512236px;}
.h9{height:22.411582px;}
.ha{height:33.622910px;}
.h13{height:33.686962px;}
.h12{height:33.700905px;}
.h10{height:33.718806px;}
.h11{height:33.750000px;}
.h5{height:34.478653px;}
.hb{height:36.775371px;}
.h8{height:37.122363px;}
.hc{height:37.826367px;}
.he{height:37.968750px;}
.h3{height:42.029824px;}
.hf{height:52.734375px;}
.h7{height:55.689609px;}
.h6{height:70.925098px;}
.h4{height:73.551270px;}
.h1{height:1190.250000px;}
.h2{height:1190.551485px;}
.h0{height:1190.551500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x4{left:56.381100px;}
.xe{left:61.993650px;}
.x14{left:65.990550px;}
.x15{left:72.453450px;}
.x16{left:73.473451px;}
.x11{left:75.088519px;}
.x22{left:83.339158px;}
.x1e{left:153.325500px;}
.x5{left:175.096500px;}
.x6{left:190.659000px;}
.x23{left:213.446467px;}
.x1f{left:247.207121px;}
.x3{left:287.433000px;}
.x7{left:300.444000px;}
.xf{left:304.696500px;}
.x8{left:306.991500px;}
.x10{left:318.726888px;}
.x24{left:326.547601px;}
.x20{left:336.412975px;}
.x1{left:342.369000px;}
.x17{left:360.926415px;}
.x2{left:363.714000px;}
.x21{left:381.143102px;}
.x1d{left:441.052185px;}
.x9{left:448.668000px;}
.xa{left:454.195500px;}
.x12{left:459.888932px;}
.x1c{left:468.907704px;}
.x13{left:478.597546px;}
.x19{left:482.343000px;}
.xb{left:584.475000px;}
.xc{left:591.193500px;}
.x1a{left:613.727346px;}
.x1b{left:722.491274px;}
.xd{left:726.747000px;}
.x18{left:759.757500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:2.125360pt;}
.ls1{letter-spacing:14.876855pt;}
.wse{word-spacing:-23.896173pt;}
.ws45{word-spacing:-22.150224pt;}
.ws1{word-spacing:-18.276804pt;}
.ws8{word-spacing:-17.893542pt;}
.ws6{word-spacing:-17.842852pt;}
.ws4{word-spacing:-17.817898pt;}
.ws3{word-spacing:-17.760513pt;}
.ws7{word-spacing:-17.758369pt;}
.ws9{word-spacing:-17.679518pt;}
.ws5{word-spacing:-17.634460pt;}
.ws76{word-spacing:-16.361021pt;}
.ws6e{word-spacing:-16.356771pt;}
.ws2f{word-spacing:-16.327016pt;}
.ws85{word-spacing:-16.322765pt;}
.ws74{word-spacing:-16.237750pt;}
.wsad{word-spacing:-16.220748pt;}
.ws7f{word-spacing:-16.190992pt;}
.ws7e{word-spacing:-16.088975pt;}
.ws86{word-spacing:-16.042217pt;}
.wsd0{word-spacing:-16.020964pt;}
.ws102{word-spacing:-14.749998pt;}
.wse1{word-spacing:-14.717083pt;}
.wsbd{word-spacing:-14.686238pt;}
.ws60{word-spacing:-14.499206pt;}
.ws88{word-spacing:-14.486454pt;}
.wsb3{word-spacing:-14.384436pt;}
.wsb7{word-spacing:-14.324926pt;}
.ws56{word-spacing:-14.159148pt;}
.ws73{word-spacing:-14.082635pt;}
.ws37{word-spacing:-14.061382pt;}
.ws33{word-spacing:-13.938111pt;}
.wsa8{word-spacing:-13.840344pt;}
.ws6b{word-spacing:-13.776584pt;}
.wsac{word-spacing:-13.742578pt;}
.wsb4{word-spacing:-13.542794pt;}
.ws65{word-spacing:-13.517290pt;}
.ws30{word-spacing:-13.257996pt;}
.wsf1{word-spacing:-13.183661pt;}
.ws9d{word-spacing:-13.176860pt;}
.wscd{word-spacing:-13.172981pt;}
.wsf0{word-spacing:-13.074846pt;}
.ws5c{word-spacing:-13.058212pt;}
.wse6{word-spacing:-13.054443pt;}
.wsda{word-spacing:-13.036958pt;}
.ws16{word-spacing:-13.026168pt;}
.wsf3{word-spacing:-12.962630pt;}
.ws36{word-spacing:-12.939192pt;}
.wsb6{word-spacing:-12.913687pt;}
.ws70{word-spacing:-12.790416pt;}
.wsaf{word-spacing:-12.671396pt;}
.wsde{word-spacing:-12.603385pt;}
.ws26{word-spacing:-12.454610pt;}
.ws28{word-spacing:-12.429105pt;}
.wsd6{word-spacing:-12.403601pt;}
.ws25{word-spacing:-12.386598pt;}
.wsb8{word-spacing:-12.297333pt;}
.ws15{word-spacing:-12.261048pt;}
.wsfd{word-spacing:-12.259076pt;}
.ws39{word-spacing:-12.195316pt;}
.wsbf{word-spacing:-12.178313pt;}
.ws67{word-spacing:-12.161310pt;}
.wsfc{word-spacing:-12.135806pt;}
.ws3a{word-spacing:-12.050791pt;}
.ws5d{word-spacing:-12.038039pt;}
.ws80{word-spacing:-12.004033pt;}
.wsd5{word-spacing:-11.885013pt;}
.ws107{word-spacing:-11.833670pt;}
.ws6a{word-spacing:-11.778745pt;}
.ws64{word-spacing:-11.723486pt;}
.ws8b{word-spacing:-11.702232pt;}
.ws81{word-spacing:-11.693731pt;}
.wsd4{word-spacing:-11.600215pt;}
.ws8e{word-spacing:-11.459941pt;}
.ws55{word-spacing:-11.400431pt;}
.ws104{word-spacing:-11.361004pt;}
.wsf5{word-spacing:-11.186054pt;}
.wscc{word-spacing:-11.098630pt;}
.ws6c{word-spacing:-11.085878pt;}
.ws4e{word-spacing:-10.818082pt;}
.wsc5{word-spacing:-10.796829pt;}
.ws94{word-spacing:-10.784077pt;}
.ws4d{word-spacing:-10.733068pt;}
.ws0{word-spacing:-10.720316pt;}
.ws58{word-spacing:-10.699062pt;}
.wsd7{word-spacing:-10.686310pt;}
.ws41{word-spacing:-10.682059pt;}
.ws101{word-spacing:-10.652304pt;}
.ws7c{word-spacing:-10.622549pt;}
.ws95{word-spacing:-10.618299pt;}
.wsb0{word-spacing:-10.588544pt;}
.ws10c{word-spacing:-10.551689pt;}
.ws52{word-spacing:-10.537535pt;}
.ws8a{word-spacing:-10.533284pt;}
.ws91{word-spacing:-10.524783pt;}
.ws3c{word-spacing:-10.516281pt;}
.ws2c{word-spacing:-10.486526pt;}
.wsc4{word-spacing:-10.482276pt;}
.ws57{word-spacing:-10.456771pt;}
.wsd2{word-spacing:-10.452520pt;}
.ws61{word-spacing:-10.444019pt;}
.wscb{word-spacing:-10.384509pt;}
.ws18{word-spacing:-10.375027pt;}
.ws27{word-spacing:-10.371757pt;}
.ws50{word-spacing:-10.265489pt;}
.ws66{word-spacing:-10.252737pt;}
.ws92{word-spacing:-10.227232pt;}
.wsca{word-spacing:-10.193227pt;}
.ws1b{word-spacing:-10.099584pt;}
.wsaa{word-spacing:-10.069956pt;}
.wsa9{word-spacing:-10.031699pt;}
.ws90{word-spacing:-10.023198pt;}
.wsc7{word-spacing:-9.857420pt;}
.wsc8{word-spacing:-9.768155pt;}
.ws89{word-spacing:-9.657636pt;}
.ws49{word-spacing:-9.640512pt;}
.ws21{word-spacing:-9.602256pt;}
.wsab{word-spacing:-9.585374pt;}
.wsae{word-spacing:-9.581123pt;}
.ws97{word-spacing:-9.571651pt;}
.ws46{word-spacing:-9.541046pt;}
.wsf{word-spacing:-9.521344pt;}
.ws98{word-spacing:-9.506616pt;}
.ws1d{word-spacing:-9.502790pt;}
.ws20{word-spacing:-9.476011pt;}
.ws17{word-spacing:-9.472186pt;}
.wsc0{word-spacing:-9.457852pt;}
.ws47{word-spacing:-9.380371pt;}
.ws4a{word-spacing:-9.365069pt;}
.ws93{word-spacing:-9.351584pt;}
.ws62{word-spacing:-9.304826pt;}
.ws2{word-spacing:-9.211310pt;}
.wsc1{word-spacing:-9.130547pt;}
.wsa5{word-spacing:-9.054034pt;}
.ws14{word-spacing:-8.997811pt;}
.ws108{word-spacing:-8.994270pt;}
.ws54{word-spacing:-8.790489pt;}
.ws63{word-spacing:-8.764985pt;}
.wsb2{word-spacing:-8.692722pt;}
.wsbc{word-spacing:-8.675720pt;}
.ws105{word-spacing:-8.640620pt;}
.ws10d{word-spacing:-8.637219pt;}
.wsf8{word-spacing:-8.627018pt;}
.ws99{word-spacing:-8.599814pt;}
.ws10e{word-spacing:-8.593013pt;}
.ws10a{word-spacing:-8.579411pt;}
.ws9b{word-spacing:-8.572610pt;}
.ws110{word-spacing:-8.565809pt;}
.ws10f{word-spacing:-8.548807pt;}
.ws109{word-spacing:-8.542006pt;}
.wsfa{word-spacing:-8.538605pt;}
.wseb{word-spacing:-8.535205pt;}
.wse9{word-spacing:-8.521603pt;}
.ws112{word-spacing:-8.511401pt;}
.ws79{word-spacing:-8.509941pt;}
.ws10b{word-spacing:-8.501200pt;}
.ws9c{word-spacing:-8.487598pt;}
.wsf6{word-spacing:-8.485181pt;}
.ws59{word-spacing:-8.484437pt;}
.wsf9{word-spacing:-8.480797pt;}
.ws106{word-spacing:-8.477397pt;}
.ws9e{word-spacing:-8.456994pt;}
.wsf7{word-spacing:-8.453593pt;}
.ws77{word-spacing:-8.450431pt;}
.ws9a{word-spacing:-8.422989pt;}
.ws78{word-spacing:-8.416426pt;}
.ws7b{word-spacing:-8.378169pt;}
.ws71{word-spacing:-8.373918pt;}
.wsa0{word-spacing:-8.365181pt;}
.ws9f{word-spacing:-8.361780pt;}
.wse4{word-spacing:-8.358380pt;}
.wse5{word-spacing:-8.354979pt;}
.ws111{word-spacing:-8.351579pt;}
.ws10{word-spacing:-8.348178pt;}
.ws8d{word-spacing:-8.335662pt;}
.wse2{word-spacing:-8.297171pt;}
.wsed{word-spacing:-8.273368pt;}
.ws113{word-spacing:-8.269967pt;}
.wsef{word-spacing:-8.263166pt;}
.wsbe{word-spacing:-8.229394pt;}
.wsec{word-spacing:-8.191756pt;}
.ws12{word-spacing:-8.178154pt;}
.wse8{word-spacing:-8.154351pt;}
.ws11{word-spacing:-8.140749pt;}
.ws7a{word-spacing:-8.076368pt;}
.wse3{word-spacing:-8.059138pt;}
.wsd8{word-spacing:-7.902088pt;}
.ws87{word-spacing:-7.770316pt;}
.wsb9{word-spacing:-7.732060pt;}
.ws13{word-spacing:-7.658851pt;}
.ws19{word-spacing:-7.651200pt;}
.wsdb{word-spacing:-7.528025pt;}
.ws43{word-spacing:-7.494019pt;}
.ws72{word-spacing:-7.468515pt;}
.wsce{word-spacing:-7.230475pt;}
.wsc9{word-spacing:-7.170965pt;}
.ws8c{word-spacing:-7.166714pt;}
.wsea{word-spacing:-7.104139pt;}
.ws2e{word-spacing:-7.034942pt;}
.wscf{word-spacing:-7.030691pt;}
.ws8f{word-spacing:-6.890417pt;}
.ws31{word-spacing:-6.864913pt;}
.ws3d{word-spacing:-6.677881pt;}
.ws1e{word-spacing:-6.660370pt;}
.ws3f{word-spacing:-6.639625pt;}
.ws1c{word-spacing:-6.583858pt;}
.wsd9{word-spacing:-6.520604pt;}
.ws6d{word-spacing:-6.512103pt;}
.ws44{word-spacing:-6.435590pt;}
.wsa7{word-spacing:-6.342074pt;}
.ws40{word-spacing:-6.261311pt;}
.ws23{word-spacing:-6.150792pt;}
.wsbb{word-spacing:-6.087031pt;}
.ws5b{word-spacing:-6.048775pt;}
.ws51{word-spacing:-5.857492pt;}
.ws1a{word-spacing:-5.845517pt;}
.wsc6{word-spacing:-5.657708pt;}
.ws38{word-spacing:-5.593948pt;}
.wsba{word-spacing:-5.377161pt;}
.wsc3{word-spacing:-5.355907pt;}
.ws3b{word-spacing:-5.207132pt;}
.ws4f{word-spacing:-5.126368pt;}
.ws1f{word-spacing:-4.938850pt;}
.wsdd{word-spacing:-4.913832pt;}
.wsd3{word-spacing:-4.624783pt;}
.ws35{word-spacing:-4.544020pt;}
.ws34{word-spacing:-4.522766pt;}
.wsb5{word-spacing:-4.459005pt;}
.wsc2{word-spacing:-4.446253pt;}
.ws84{word-spacing:-4.335734pt;}
.ws5e{word-spacing:-4.216714pt;}
.ws29{word-spacing:-3.540850pt;}
.ws3e{word-spacing:-3.434582pt;}
.wsa6{word-spacing:-3.353818pt;}
.ws5f{word-spacing:-3.311311pt;}
.ws2a{word-spacing:-3.239049pt;}
.wsfe{word-spacing:-3.234798pt;}
.ws75{word-spacing:-2.932997pt;}
.ws6f{word-spacing:-2.784222pt;}
.wsa3{word-spacing:-2.631196pt;}
.ws2d{word-spacing:-2.601441pt;}
.ws5a{word-spacing:-2.550432pt;}
.ws53{word-spacing:-1.844812pt;}
.wsdf{word-spacing:-1.823559pt;}
.wsfb{word-spacing:-1.725792pt;}
.wsb1{word-spacing:-1.445245pt;}
.ws32{word-spacing:-1.283717pt;}
.wsa4{word-spacing:-0.820389pt;}
.ws69{word-spacing:-0.714121pt;}
.ws42{word-spacing:-0.675864pt;}
.wsff{word-spacing:-0.522839pt;}
.ws68{word-spacing:-0.505836pt;}
.ws96{word-spacing:-0.501154pt;}
.ws4b{word-spacing:0.000000pt;}
.ws82{word-spacing:0.408069pt;}
.wsdc{word-spacing:0.692867pt;}
.ws83{word-spacing:0.909654pt;}
.ws100{word-spacing:1.245461pt;}
.ws4c{word-spacing:1.411239pt;}
.ws2b{word-spacing:1.526008pt;}
.wsb{word-spacing:1.537017pt;}
.wsa{word-spacing:1.591425pt;}
.ws24{word-spacing:1.632276pt;}
.ws103{word-spacing:1.635631pt;}
.wsd{word-spacing:1.768250pt;}
.wsa1{word-spacing:1.802254pt;}
.ws48{word-spacing:1.912800pt;}
.wsc{word-spacing:1.921271pt;}
.wse0{word-spacing:2.044596pt;}
.ws7d{word-spacing:4.943587pt;}
.ws22{word-spacing:6.648126pt;}
.wsd1{word-spacing:7.706555pt;}
.wsa2{word-spacing:12.038039pt;}
.wse7{word-spacing:101.062266pt;}
.wsf2{word-spacing:134.148936pt;}
.wsee{word-spacing:136.702696pt;}
.wsf4{word-spacing:136.838716pt;}
._d{width:0.983179pt;}
._5{width:7.704758pt;}
._e{width:9.139048pt;}
._3{width:10.504083pt;}
._2{width:12.214524pt;}
._8{width:13.109220pt;}
._4{width:14.189150pt;}
._0{width:15.179321pt;}
._a{width:16.429033pt;}
._c{width:18.180329pt;}
._6{width:19.408788pt;}
._b{width:21.062318pt;}
._9{width:22.290776pt;}
._f{width:23.340704pt;}
._1{width:24.811638pt;}
._10{width:26.014406pt;}
._7{width:27.213109pt;}
._1a{width:32.594521pt;}
._19{width:37.699636pt;}
._11{width:47.691732pt;}
._27{width:51.728831pt;}
._1f{width:55.646184pt;}
._2a{width:103.449403pt;}
._1e{width:120.751045pt;}
._16{width:124.535779pt;}
._29{width:137.246773pt;}
._28{width:146.149230pt;}
._25{width:153.973734pt;}
._26{width:156.527495pt;}
._23{width:162.882992pt;}
._22{width:165.157913pt;}
._2b{width:173.118437pt;}
._14{width:182.432352pt;}
._13{width:214.335655pt;}
._17{width:221.894922pt;}
._1d{width:237.934986pt;}
._20{width:250.220920pt;}
._1c{width:269.365623pt;}
._1b{width:285.990569pt;}
._21{width:333.733309pt;}
._2d{width:335.430148pt;}
._2c{width:353.585311pt;}
._15{width:371.580651pt;}
._24{width:386.474753pt;}
._12{width:419.333592pt;}
._31{width:456.136987pt;}
._30{width:459.156613pt;}
._32{width:470.364595pt;}
._2e{width:472.064835pt;}
._33{width:548.089366pt;}
._2f{width:566.826011pt;}
._18{width:2017.353966pt;}
.fs5{font-size:22.666133pt;}
.fs9{font-size:25.500800pt;}
.fs6{font-size:34.004800pt;}
.fsc{font-size:34.133333pt;}
.fs7{font-size:37.193067pt;}
.fs4{font-size:37.544000pt;}
.fs8{font-size:38.256000pt;}
.fsa{font-size:38.400000pt;}
.fs0{font-size:42.507200pt;}
.fsb{font-size:53.333333pt;}
.fs3{font-size:56.322133pt;}
.fs2{font-size:71.730667pt;}
.fs1{font-size:74.386667pt;}
.y0{bottom:0.000000pt;}
.yae{bottom:36.940800pt;}
.yf0{bottom:64.857591pt;}
.y7c{bottom:64.865738pt;}
.y3d{bottom:64.881533pt;}
.yb0{bottom:66.142371pt;}
.y3c{bottom:77.691747pt;}
.y7b{bottom:78.774093pt;}
.yac{bottom:87.158384pt;}
.y37{bottom:90.330832pt;}
.yef{bottom:92.749753pt;}
.y7a{bottom:92.758962pt;}
.yaf{bottom:94.034533pt;}
.yab{bottom:98.572945pt;}
.y36{bottom:103.105467pt;}
.y79{bottom:106.667318pt;}
.yaa{bottom:110.062317pt;}
.yee{bottom:120.641915pt;}
.y78{bottom:120.651124pt;}
.ya9{bottom:121.476028pt;}
.y3a{bottom:125.178254pt;}
.y12d{bottom:132.813806pt;}
.ya8{bottom:132.890589pt;}
.y77{bottom:134.559480pt;}
.yed{bottom:134.625721pt;}
.y39{bottom:137.877333pt;}
.y38{bottom:142.185333pt;}
.y12c{bottom:144.227517pt;}
.yec{bottom:148.534077pt;}
.y76{bottom:148.544349pt;}
.y12b{bottom:155.717739pt;}
.ya7{bottom:155.718862pt;}
.yeb{bottom:162.517883pt;}
.y75{bottom:162.528155pt;}
.y12a{bottom:167.131450pt;}
.ya6{bottom:167.132573pt;}
.yea{bottom:176.427302pt;}
.y74{bottom:176.436511pt;}
.y129{bottom:178.546012pt;}
.ya5{bottom:178.546284pt;}
.y34{bottom:186.560850pt;}
.y128{bottom:189.959723pt;}
.ya4{bottom:189.960845pt;}
.ye9{bottom:190.411108pt;}
.y73{bottom:190.420317pt;}
.y33{bottom:200.469205pt;}
.y127{bottom:201.373434pt;}
.ya3{bottom:201.450217pt;}
.ye8{bottom:204.319464pt;}
.y72{bottom:204.329735pt;}
.y126{bottom:212.787995pt;}
.ya2{bottom:212.863928pt;}
.y32{bottom:214.453012pt;}
.ye7{bottom:218.303270pt;}
.y71{bottom:218.313542pt;}
.ya1{bottom:224.278489pt;}
.y31{bottom:228.361367pt;}
.ye6{bottom:232.212688pt;}
.y70{bottom:232.221897pt;}
.y125{bottom:234.784000pt;}
.ya0{bottom:235.692201pt;}
.y30{bottom:242.346236pt;}
.ye5{bottom:246.196494pt;}
.y6f{bottom:246.205704pt;}
.y9f{bottom:247.106762pt;}
.y124{bottom:253.832953pt;}
.y2f{bottom:256.254592pt;}
.y9e{bottom:258.520473pt;}
.ye4{bottom:260.104850pt;}
.y6e{bottom:260.115122pt;}
.y123{bottom:266.532032pt;}
.y9d{bottom:269.934184pt;}
.y2e{bottom:270.238398pt;}
.ye3{bottom:274.088656pt;}
.y6d{bottom:274.098928pt;}
.y122{bottom:279.306667pt;}
.y9c{bottom:281.424406pt;}
.y2d{bottom:284.146754pt;}
.ye2{bottom:287.998075pt;}
.y6c{bottom:288.007284pt;}
.y9b{bottom:292.838117pt;}
.y2c{bottom:298.131623pt;}
.ye1{bottom:301.981881pt;}
.y6b{bottom:301.991090pt;}
.y9a{bottom:304.252678pt;}
.y121{bottom:307.200032pt;}
.y2b{bottom:312.039979pt;}
.y99{bottom:315.666389pt;}
.ye0{bottom:315.890237pt;}
.y6a{bottom:315.899446pt;}
.y120{bottom:319.974667pt;}
.y2a{bottom:326.023785pt;}
.y98{bottom:327.080101pt;}
.ydf{bottom:329.874043pt;}
.y69{bottom:329.884315pt;}
.y29{bottom:339.932141pt;}
.yde{bottom:343.782399pt;}
.y11f{bottom:343.786910pt;}
.y68{bottom:343.792671pt;}
.y97{bottom:349.076956pt;}
.y28{bottom:353.917009pt;}
.y11e{bottom:355.201471pt;}
.ydd{bottom:357.767268pt;}
.y67{bottom:357.776477pt;}
.y96{bottom:360.490667pt;}
.y11d{bottom:366.690843pt;}
.y27{bottom:367.825365pt;}
.ydc{bottom:371.675624pt;}
.y66{bottom:371.684833pt;}
.y11c{bottom:378.104554pt;}
.y95{bottom:379.465365pt;}
.y26{bottom:381.809171pt;}
.ydb{bottom:385.659430pt;}
.y65{bottom:385.669701pt;}
.y11b{bottom:389.519116pt;}
.y94{bottom:392.240000pt;}
.y35{bottom:395.717527pt;}
.yda{bottom:399.567785pt;}
.y64{bottom:399.578057pt;}
.y11a{bottom:400.932827pt;}
.y25{bottom:409.701333pt;}
.y119{bottom:412.347388pt;}
.yd9{bottom:413.552654pt;}
.y63{bottom:413.561863pt;}
.y118{bottom:423.761099pt;}
.yd8{bottom:427.461010pt;}
.y92{bottom:428.982413pt;}
.y117{bottom:435.174810pt;}
.yd7{bottom:441.444816pt;}
.y62{bottom:441.455088pt;}
.y91{bottom:442.966219pt;}
.yd6{bottom:455.353172pt;}
.y90{bottom:456.874575pt;}
.y116{bottom:457.171665pt;}
.y24{bottom:468.285335pt;}
.yd5{bottom:469.338041pt;}
.y61{bottom:469.347250pt;}
.y8f{bottom:470.859444pt;}
.y115{bottom:479.772956pt;}
.y23{bottom:480.984414pt;}
.yd4{bottom:483.246397pt;}
.y60{bottom:483.255606pt;}
.y8e{bottom:484.767799pt;}
.y114{bottom:491.186667pt;}
.y22{bottom:493.759049pt;}
.yd3{bottom:497.230203pt;}
.y5f{bottom:497.240475pt;}
.y8d{bottom:498.751606pt;}
.y21{bottom:506.533684pt;}
.y113{bottom:510.161397pt;}
.yd2{bottom:511.138559pt;}
.y8c{bottom:512.659961pt;}
.y20{bottom:519.308319pt;}
.y112{bottom:522.936032pt;}
.yd1{bottom:525.123427pt;}
.y5e{bottom:525.132637pt;}
.y8b{bottom:526.644830pt;}
.y1f{bottom:532.007398pt;}
.y111{bottom:535.710667pt;}
.yd0{bottom:539.107234pt;}
.y8a{bottom:540.553186pt;}
.y1e{bottom:544.782033pt;}
.ycf{bottom:553.015589pt;}
.y5d{bottom:553.025861pt;}
.y89{bottom:554.536992pt;}
.y1d{bottom:557.556668pt;}
.yce{bottom:566.999396pt;}
.y5c{bottom:567.009667pt;}
.y88{bottom:568.445348pt;}
.y1c{bottom:570.255747pt;}
.y110{bottom:575.022145pt;}
.ycd{bottom:580.907751pt;}
.y5b{bottom:580.918023pt;}
.y87{bottom:582.430217pt;}
.y1b{bottom:583.030382pt;}
.y10f{bottom:586.435856pt;}
.ycc{bottom:594.892620pt;}
.y5a{bottom:594.901829pt;}
.y1a{bottom:595.805016pt;}
.y86{bottom:596.338573pt;}
.y10e{bottom:597.850417pt;}
.y15{bottom:601.097639pt;}
.y19{bottom:608.504096pt;}
.ycb{bottom:608.800976pt;}
.y59{bottom:608.810185pt;}
.y10d{bottom:609.264128pt;}
.y85{bottom:610.322379pt;}
.y14{bottom:612.511350pt;}
.y10c{bottom:620.678689pt;}
.y18{bottom:621.278730pt;}
.yca{bottom:622.784782pt;}
.y58{bottom:622.795054pt;}
.y13{bottom:623.925911pt;}
.y84{bottom:624.230735pt;}
.y10b{bottom:632.092401pt;}
.y17{bottom:634.053365pt;}
.y12{bottom:635.339622pt;}
.yc9{bottom:636.693138pt;}
.y57{bottom:636.703410pt;}
.y83{bottom:638.215603pt;}
.y10a{bottom:643.506112pt;}
.y11{bottom:646.753333pt;}
.y16{bottom:646.828000pt;}
.yc8{bottom:650.678007pt;}
.y56{bottom:650.687216pt;}
.y82{bottom:652.199410pt;}
.y109{bottom:654.920673pt;}
.yc7{bottom:664.586363pt;}
.y55{bottom:664.595572pt;}
.y81{bottom:666.107765pt;}
.y108{bottom:666.410045pt;}
.y10{bottom:673.586667pt;}
.y107{bottom:677.824606pt;}
.yc6{bottom:678.570169pt;}
.y54{bottom:678.580441pt;}
.y80{bottom:680.091571pt;}
.y106{bottom:689.238317pt;}
.yc5{bottom:692.478525pt;}
.y53{bottom:692.488796pt;}
.y7f{bottom:693.999927pt;}
.y105{bottom:700.652028pt;}
.yc4{bottom:706.463393pt;}
.y52{bottom:706.472602pt;}
.y7e{bottom:707.984796pt;}
.y104{bottom:712.066589pt;}
.yf{bottom:717.429333pt;}
.yc3{bottom:720.371749pt;}
.y51{bottom:720.380958pt;}
.ye{bottom:721.209333pt;}
.y7d{bottom:721.893152pt;}
.y103{bottom:723.480301pt;}
.yd{bottom:728.844000pt;}
.yc{bottom:732.624000pt;}
.yc2{bottom:734.355555pt;}
.y12f{bottom:734.362667pt;}
.y50{bottom:734.365827pt;}
.y102{bottom:734.894862pt;}
.yb{bottom:740.258667pt;}
.ya{bottom:744.037333pt;}
.y101{bottom:746.384234pt;}
.yc1{bottom:748.263911pt;}
.y145{bottom:748.270630pt;}
.y4f{bottom:748.274183pt;}
.y9{bottom:751.748000pt;}
.y8{bottom:755.528000pt;}
.y100{bottom:757.797945pt;}
.y144{bottom:758.928584pt;}
.yc0{bottom:762.248780pt;}
.y4e{bottom:762.257989pt;}
.yff{bottom:769.212506pt;}
.y143{bottom:769.511728pt;}
.y6{bottom:771.628000pt;}
.ybf{bottom:776.157136pt;}
.y4d{bottom:776.166345pt;}
.y7{bottom:777.902667pt;}
.y142{bottom:780.169683pt;}
.yfe{bottom:780.626217pt;}
.ybe{bottom:790.140942pt;}
.y4c{bottom:790.151214pt;}
.y141{bottom:790.827637pt;}
.yfd{bottom:792.039928pt;}
.y5{bottom:800.882414pt;}
.y140{bottom:801.409931pt;}
.yfc{bottom:803.454489pt;}
.ybd{bottom:804.049298pt;}
.y4b{bottom:804.059570pt;}
.y13f{bottom:812.068735pt;}
.yfb{bottom:814.868201pt;}
.y3e{bottom:815.053307pt;}
.ybc{bottom:818.034167pt;}
.y4a{bottom:818.043376pt;}
.y13e{bottom:822.651029pt;}
.y4{bottom:823.861333pt;}
.yfa{bottom:826.282762pt;}
.ybb{bottom:831.942522pt;}
.y49{bottom:831.951732pt;}
.y13d{bottom:833.308984pt;}
.yf9{bottom:837.772134pt;}
.y13c{bottom:843.892127pt;}
.yba{bottom:845.926329pt;}
.y48{bottom:845.935538pt;}
.yf8{bottom:849.185845pt;}
.y13b{bottom:854.550082pt;}
.yb9{bottom:859.834684pt;}
.y47{bottom:859.844956pt;}
.yf7{bottom:860.600406pt;}
.y13a{bottom:865.208036pt;}
.yf6{bottom:872.014117pt;}
.yb8{bottom:873.818491pt;}
.y46{bottom:873.828762pt;}
.y139{bottom:875.790330pt;}
.yf5{bottom:883.428678pt;}
.y138{bottom:886.449135pt;}
.yb7{bottom:887.727909pt;}
.y45{bottom:887.737118pt;}
.y3{bottom:893.329333pt;}
.yf4{bottom:894.842389pt;}
.y137{bottom:897.031428pt;}
.yb6{bottom:901.711715pt;}
.y44{bottom:901.720924pt;}
.y136{bottom:907.689383pt;}
.yb5{bottom:915.620071pt;}
.y43{bottom:915.630343pt;}
.yf3{bottom:916.839244pt;}
.y135{bottom:918.347337pt;}
.y2{bottom:927.873333pt;}
.yf2{bottom:928.252956pt;}
.y134{bottom:928.930481pt;}
.yb4{bottom:929.603877pt;}
.y42{bottom:929.614149pt;}
.y133{bottom:939.588436pt;}
.yf1{bottom:939.666667pt;}
.yb3{bottom:943.513296pt;}
.y41{bottom:943.522505pt;}
.y132{bottom:950.170729pt;}
.yb2{bottom:957.497102pt;}
.y40{bottom:957.506311pt;}
.y93{bottom:958.715587pt;}
.y131{bottom:960.828684pt;}
.y1{bottom:967.785333pt;}
.yb1{bottom:971.405458pt;}
.y130{bottom:971.411828pt;}
.y3f{bottom:971.414667pt;}
.yad{bottom:1002.321065pt;}
.y12e{bottom:1002.325043pt;}
.y146{bottom:1002.328142pt;}
.y3b{bottom:1002.331707pt;}
.hd{height:12.010877pt;}
.h9{height:19.921406pt;}
.ha{height:29.887031pt;}
.h13{height:29.943966pt;}
.h12{height:29.956360pt;}
.h10{height:29.972272pt;}
.h11{height:30.000000pt;}
.h5{height:30.647691pt;}
.hb{height:32.689219pt;}
.h8{height:32.997656pt;}
.hc{height:33.623437pt;}
.he{height:33.750000pt;}
.h3{height:37.359844pt;}
.hf{height:46.875000pt;}
.h7{height:49.501875pt;}
.h6{height:63.044531pt;}
.h4{height:65.378906pt;}
.h1{height:1058.000000pt;}
.h2{height:1058.267987pt;}
.h0{height:1058.268000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x4{left:50.116533pt;}
.xe{left:55.105467pt;}
.x14{left:58.658267pt;}
.x15{left:64.403067pt;}
.x16{left:65.309734pt;}
.x11{left:66.745350pt;}
.x22{left:74.079252pt;}
.x1e{left:136.289333pt;}
.x5{left:155.641333pt;}
.x6{left:169.474667pt;}
.x23{left:189.730193pt;}
.x1f{left:219.739663pt;}
.x3{left:255.496000pt;}
.x7{left:267.061333pt;}
.xf{left:270.841333pt;}
.x8{left:272.881333pt;}
.x10{left:283.312789pt;}
.x24{left:290.264534pt;}
.x20{left:299.033756pt;}
.x1{left:304.328000pt;}
.x17{left:320.823480pt;}
.x2{left:323.301333pt;}
.x21{left:338.793868pt;}
.x1d{left:392.046387pt;}
.x9{left:398.816000pt;}
.xa{left:403.729333pt;}
.x12{left:408.790162pt;}
.x1c{left:416.806848pt;}
.x13{left:425.420041pt;}
.x19{left:428.749333pt;}
.xb{left:519.533333pt;}
.xc{left:525.505333pt;}
.x1a{left:545.535418pt;}
.x1b{left:642.214465pt;}
.xd{left:645.997333pt;}
.x18{left:675.340000pt;}
}




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