
    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_5222bb6db63fadf4904b5eca.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_d8c95e5c64277bccd9c6fc21.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.917480;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_b61ae6f3f206c89844263286.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893066;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_436d8dedd044ba9a078dc347.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_4e83d076be28aed86ba9722f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_0125a7dce02f981d71cc5ae8.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.249840px;}
.ls2{letter-spacing:24.644520px;}
.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;}
}
.ws8{word-spacing:-39.450384px;}
.ws6{word-spacing:-36.574704px;}
.ws7{word-spacing:-36.420336px;}
.ws30{word-spacing:-29.850000px;}
.wsb{word-spacing:-27.000000px;}
.ws5{word-spacing:-26.851392px;}
.ws3{word-spacing:-25.987752px;}
.ws31{word-spacing:-24.150000px;}
.ws85{word-spacing:-19.791147px;}
.ws7e{word-spacing:-19.630196px;}
.ws7f{word-spacing:-19.378142px;}
.ws80{word-spacing:-19.361725px;}
.ws86{word-spacing:-19.220117px;}
.ws76{word-spacing:-18.903647px;}
.ws7a{word-spacing:-18.896662px;}
.ws84{word-spacing:-18.896602px;}
.wscf{word-spacing:-18.769202px;}
.ws73{word-spacing:-18.665623px;}
.ws88{word-spacing:-18.649205px;}
.ws7b{word-spacing:-18.637504px;}
.ws82{word-spacing:-18.512373px;}
.wscb{word-spacing:-18.495896px;}
.wse1{word-spacing:-18.356795px;}
.ws9e{word-spacing:-18.352078px;}
.ws61{word-spacing:-17.939074px;}
.ws74{word-spacing:-17.929701px;}
.wscd{word-spacing:-17.927373px;}
.ws3d{word-spacing:-17.917940px;}
.ws0{word-spacing:-17.879280px;}
.ws45{word-spacing:-17.790540px;}
.wsa2{word-spacing:-17.785824px;}
.ws71{word-spacing:-17.646604px;}
.ws8a{word-spacing:-17.625530px;}
.wsc{word-spacing:-17.517438px;}
.ws60{word-spacing:-17.476339px;}
.ws6c{word-spacing:-17.471802px;}
.wsb2{word-spacing:-17.469295px;}
.ws54{word-spacing:-17.459922px;}
.wsc8{word-spacing:-17.330134px;}
.wsb0{word-spacing:-17.252942px;}
.ws1{word-spacing:-17.219237px;}
.wsaf{word-spacing:-17.191391px;}
.ws10{word-spacing:-17.120484px;}
.wsa{word-spacing:-17.115840px;}
.ws5e{word-spacing:-17.068648px;}
.ws3a{word-spacing:-16.922323px;}
.ws56{word-spacing:-16.920114px;}
.ws75{word-spacing:-16.917607px;}
.wsa4{word-spacing:-16.915458px;}
.wsb9{word-spacing:-16.896652px;}
.ws11{word-spacing:-16.809606px;}
.ws14{word-spacing:-16.795620px;}
.wsd7{word-spacing:-16.756775px;}
.ws8d{word-spacing:-16.752118px;}
.ws70{word-spacing:-16.699224px;}
.ws46{word-spacing:-16.694508px;}
.ws49{word-spacing:-16.689851px;}
.ws77{word-spacing:-16.687523px;}
.ws33{word-spacing:-16.685135px;}
.ws5d{word-spacing:-16.474215px;}
.wsbe{word-spacing:-16.351472px;}
.wsab{word-spacing:-16.346755px;}
.wse5{word-spacing:-16.339771px;}
.ws72{word-spacing:-16.229147px;}
.wsf1{word-spacing:-16.205267px;}
.ws8b{word-spacing:-16.193506px;}
.ws4c{word-spacing:-16.191237px;}
.wsc7{word-spacing:-16.191118px;}
.wsc9{word-spacing:-16.030226px;}
.wsd6{word-spacing:-16.027898px;}
.ws1d{word-spacing:-16.005492px;}
.ws38{word-spacing:-15.967959px;}
.ws2a{word-spacing:-15.813306px;}
.ws35{word-spacing:-15.629520px;}
.ws97{word-spacing:-15.622535px;}
.wsba{word-spacing:-15.483374px;}
.ws79{word-spacing:-15.480986px;}
.ws6d{word-spacing:-15.469165px;}
.ws5c{word-spacing:-15.464628px;}
.wsa7{word-spacing:-15.317707px;}
.ws4b{word-spacing:-15.313050px;}
.wsf0{word-spacing:-15.310722px;}
.ws37{word-spacing:-15.308334px;}
.wsd8{word-spacing:-15.248455px;}
.ws99{word-spacing:-15.246067px;}
.wsa3{word-spacing:-15.241410px;}
.ws83{word-spacing:-15.169173px;}
.wsc2{word-spacing:-15.166845px;}
.ws40{word-spacing:-15.056221px;}
.ws67{word-spacing:-15.051564px;}
.ws6a{word-spacing:-15.046848px;}
.ws43{word-spacing:-15.037475px;}
.wsca{word-spacing:-14.907687px;}
.ws81{word-spacing:-14.907627px;}
.wsd0{word-spacing:-14.905299px;}
.ws102{word-spacing:-14.839451px;}
.ws2{word-spacing:-14.799451px;}
.wsdc{word-spacing:-14.759094px;}
.wsb8{word-spacing:-14.759034px;}
.wse8{word-spacing:-14.756825px;}
.wseb{word-spacing:-14.756706px;}
.ws7c{word-spacing:-14.752109px;}
.ws7d{word-spacing:-14.749661px;}
.wsd1{word-spacing:-14.742616px;}
.wsff{word-spacing:-14.634667px;}
.wsc4{word-spacing:-14.624998px;}
.ws42{word-spacing:-14.600531px;}
.wsb1{word-spacing:-14.591158px;}
.wsce{word-spacing:-14.581785px;}
.ws5f{word-spacing:-14.574740px;}
.wsf6{word-spacing:-14.535933px;}
.wsc3{word-spacing:-14.449669px;}
.ws101{word-spacing:-14.435179px;}
.wsf{word-spacing:-14.381226px;}
.wscc{word-spacing:-14.372297px;}
.ws87{word-spacing:-14.336716px;}
.wsd3{word-spacing:-14.334388px;}
.wsee{word-spacing:-14.195227px;}
.ws39{word-spacing:-14.183407px;}
.wsac{word-spacing:-14.178810px;}
.wsd5{word-spacing:-14.169377px;}
.ws9{word-spacing:-13.933890px;}
.ws2f{word-spacing:-13.917528px;}
.wsf7{word-spacing:-13.910158px;}
.ws16{word-spacing:-13.856238px;}
.ws13{word-spacing:-13.853916px;}
.wse{word-spacing:-13.851540px;}
.ws15{word-spacing:-13.849218px;}
.ws12{word-spacing:-13.832802px;}
.wsd{word-spacing:-13.830480px;}
.ws108{word-spacing:-13.797620px;}
.ws55{word-spacing:-13.723120px;}
.ws2d{word-spacing:-13.650012px;}
.wsa1{word-spacing:-13.617212px;}
.ws66{word-spacing:-13.603123px;}
.wsda{word-spacing:-13.596078px;}
.ws53{word-spacing:-13.315309px;}
.ws9f{word-spacing:-13.313040px;}
.ws109{word-spacing:-13.176530px;}
.wsfd{word-spacing:-13.169478px;}
.ws10f{word-spacing:-13.167208px;}
.wsfa{word-spacing:-13.089831px;}
.ws4a{word-spacing:-13.089822px;}
.ws104{word-spacing:-13.078143px;}
.ws105{word-spacing:-13.024240px;}
.ws100{word-spacing:-13.010136px;}
.ws8c{word-spacing:-13.003555px;}
.ws1a{word-spacing:-12.953898px;}
.wsfb{word-spacing:-12.466423px;}
.wsfe{word-spacing:-12.464057px;}
.ws111{word-spacing:-12.463912px;}
.ws10c{word-spacing:-12.459371px;}
.wsf9{word-spacing:-12.449856px;}
.wsed{word-spacing:-12.423331px;}
.ws110{word-spacing:-12.374991px;}
.ws107{word-spacing:-12.278923px;}
.ws44{word-spacing:-12.222772px;}
.ws5a{word-spacing:-12.180472px;}
.ws93{word-spacing:-12.175755px;}
.ws8f{word-spacing:-12.150025px;}
.ws106{word-spacing:-11.744531px;}
.ws95{word-spacing:-11.569203px;}
.ws62{word-spacing:-11.564487px;}
.ws69{word-spacing:-11.293628px;}
.ws6f{word-spacing:-11.166573px;}
.wsa8{word-spacing:-11.161512px;}
.ws21{word-spacing:-10.800000px;}
.wsc5{word-spacing:-10.781439px;}
.wsdd{word-spacing:-10.771818px;}
.wsec{word-spacing:-10.734359px;}
.wse2{word-spacing:-10.724986px;}
.wsde{word-spacing:-10.447221px;}
.wsbb{word-spacing:-10.203475px;}
.wsaa{word-spacing:-10.012526px;}
.wse7{word-spacing:-9.863992px;}
.wsb3{word-spacing:-9.715280px;}
.ws103{word-spacing:-9.419514px;}
.ws52{word-spacing:-9.276544px;}
.ws94{word-spacing:-9.269559px;}
.ws24{word-spacing:-9.215046px;}
.ws78{word-spacing:-9.142100px;}
.wsa9{word-spacing:-8.834884px;}
.ws19{word-spacing:-8.800758px;}
.ws26{word-spacing:-8.610948px;}
.ws65{word-spacing:-8.276390px;}
.wsdf{word-spacing:-8.122424px;}
.ws34{word-spacing:-8.036695px;}
.ws2b{word-spacing:-7.919532px;}
.ws89{word-spacing:-7.893702px;}
.ws48{word-spacing:-7.891982px;}
.wse4{word-spacing:-7.714673px;}
.ws64{word-spacing:-7.249490px;}
.ws1c{word-spacing:-7.035390px;}
.wsdb{word-spacing:-6.978751px;}
.ws23{word-spacing:-6.943482px;}
.wsd2{word-spacing:-6.709623px;}
.ws2c{word-spacing:-6.480486px;}
.ws68{word-spacing:-6.417213px;}
.ws9b{word-spacing:-6.412496px;}
.ws4f{word-spacing:-6.400795px;}
.wsb7{word-spacing:-5.544458px;}
.wsf5{word-spacing:-5.165602px;}
.ws57{word-spacing:-4.957010px;}
.wsfc{word-spacing:-4.544547px;}
.ws10b{word-spacing:-4.364050px;}
.ws36{word-spacing:-4.249207px;}
.ws6b{word-spacing:-3.385826px;}
.ws20{word-spacing:-3.032802px;}
.ws96{word-spacing:-3.011746px;}
.wsb6{word-spacing:-2.817183px;}
.wsc6{word-spacing:-2.812527px;}
.ws3c{word-spacing:-2.791393px;}
.ws50{word-spacing:-1.371070px;}
.ws1b{word-spacing:-1.279098px;}
.ws90{word-spacing:-1.222537px;}
.wsa5{word-spacing:-1.217880px;}
.ws22{word-spacing:-1.188000px;}
.wsc1{word-spacing:-0.953349px;}
.ws5b{word-spacing:-0.846068px;}
.wsa0{word-spacing:-0.656222px;}
.ws10e{word-spacing:-0.451170px;}
.ws2e{word-spacing:-0.154710px;}
.ws10d{word-spacing:-0.128913px;}
.wsf8{word-spacing:-0.049218px;}
.ws6e{word-spacing:0.000000px;}
.wse6{word-spacing:0.535390px;}
.ws4e{word-spacing:0.782786px;}
.ws9a{word-spacing:0.789831px;}
.wsbc{word-spacing:1.664914px;}
.wsb4{word-spacing:2.226571px;}
.ws27{word-spacing:3.132270px;}
.wsb5{word-spacing:3.480450px;}
.ws29{word-spacing:3.600018px;}
.ws4d{word-spacing:4.192970px;}
.ws18{word-spacing:4.714902px;}
.ws41{word-spacing:4.907818px;}
.ws9d{word-spacing:5.641411px;}
.ws9c{word-spacing:5.646068px;}
.wse3{word-spacing:5.704275px;}
.ws58{word-spacing:6.430944px;}
.ws3b{word-spacing:6.442525px;}
.ws3f{word-spacing:7.004123px;}
.ws3e{word-spacing:7.089853px;}
.ws51{word-spacing:7.260953px;}
.ws91{word-spacing:7.985174px;}
.ws10a{word-spacing:8.418738px;}
.wsf2{word-spacing:9.273320px;}
.ws32{word-spacing:9.894021px;}
.ws1f{word-spacing:10.567638px;}
.ws28{word-spacing:11.051802px;}
.ws59{word-spacing:11.332911px;}
.wsef{word-spacing:11.594516px;}
.wse0{word-spacing:11.743109px;}
.ws1e{word-spacing:12.810960px;}
.wsf4{word-spacing:12.911438px;}
.wsae{word-spacing:13.028928px;}
.ws17{word-spacing:14.258808px;}
.wsd4{word-spacing:14.321732px;}
.ws47{word-spacing:15.916438px;}
.wsea{word-spacing:16.376785px;}
.wsa6{word-spacing:16.791521px;}
.wsf3{word-spacing:16.923756px;}
.wsbd{word-spacing:18.742397px;}
.ws63{word-spacing:19.962605px;}
.ws25{word-spacing:21.602322px;}
.ws8e{word-spacing:28.877368px;}
.wsbf{word-spacing:29.465174px;}
.wsad{word-spacing:30.194469px;}
.wsd9{word-spacing:32.038602px;}
.ws98{word-spacing:43.277127px;}
.wsc0{word-spacing:51.731244px;}
.wse9{word-spacing:54.824898px;}
.ws92{word-spacing:63.428862px;}
.ws4{word-spacing:661.743072px;}
._1b{margin-left:-2.614897px;}
._1{margin-left:-1.141253px;}
._4{width:1.359008px;}
._23{width:8.326516px;}
._24{width:9.804592px;}
._8{width:11.073971px;}
._d{width:12.400096px;}
._16{width:13.413910px;}
._9{width:14.525509px;}
._3{width:16.378382px;}
._0{width:18.230086px;}
._c{width:19.398628px;}
._10{width:21.157963px;}
._13{width:22.187230px;}
._14{width:23.303075px;}
._17{width:24.846674px;}
._1a{width:25.978961px;}
._f{width:27.155993px;}
._15{width:28.221269px;}
._18{width:30.078584px;}
._12{width:31.289085px;}
._b{width:32.846697px;}
._2{width:34.549042px;}
._7{width:37.005553px;}
._19{width:38.655587px;}
._e{width:40.958846px;}
._a{width:42.379894px;}
._20{width:44.104949px;}
._22{width:45.201555px;}
._1e{width:47.813828px;}
._11{width:50.041491px;}
._1f{width:61.348035px;}
._1d{width:74.634517px;}
._21{width:82.830920px;}
._1c{width:94.334170px;}
._5{width:238.527986px;}
._6{width:714.002405px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(30,115,190);}
.fc0{color:rgb(255,0,0);}
.fs6{font-size:48.300000px;}
.fs5{font-size:54.000000px;}
.fs2{font-size:59.700000px;}
.fs1{font-size:66.300000px;}
.fs0{font-size:69.000000px;}
.fs3{font-size:72.000000px;}
.fs4{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y16{bottom:4.170300px;}
.ye{bottom:4.245300px;}
.y1d{bottom:4.245450px;}
.yda{bottom:4.650000px;}
.ye2{bottom:4.665300px;}
.ye7{bottom:5.790000px;}
.y80{bottom:7.665450px;}
.y84{bottom:7.679700px;}
.y76{bottom:7.740000px;}
.y88{bottom:7.845300px;}
.y7a{bottom:7.861350px;}
.y8e{bottom:8.474850px;}
.y15{bottom:19.650150px;}
.yd{bottom:19.725150px;}
.y1c{bottom:19.725300px;}
.ye1{bottom:20.505000px;}
.ye6{bottom:21.811350px;}
.y7f{bottom:24.945300px;}
.y83{bottom:24.961350px;}
.y87{bottom:25.125150px;}
.y79{bottom:25.140000px;}
.y3{bottom:25.604850px;}
.y8d{bottom:25.754700px;}
.y14{bottom:35.130000px;}
.yc{bottom:35.205000px;}
.y1b{bottom:35.205150px;}
.ye0{bottom:37.786650px;}
.ye5{bottom:39.090000px;}
.y7e{bottom:42.225150px;}
.y78{bottom:42.240000px;}
.y86{bottom:42.405000px;}
.y8c{bottom:43.036350px;}
.yd1{bottom:45.796500px;}
.y1e{bottom:49.650000px;}
.y8f{bottom:49.725000px;}
.y13{bottom:50.790300px;}
.yb{bottom:50.865300px;}
.y1a{bottom:50.865450px;}
.yac{bottom:51.121650px;}
.ydf{bottom:55.065300px;}
.ye4{bottom:56.190000px;}
.y82{bottom:59.340000px;}
.y7d{bottom:59.505000px;}
.y8b{bottom:60.315000px;}
.y72{bottom:62.716950px;}
.y49{bottom:63.615750px;}
.y12{bottom:66.270150px;}
.ya{bottom:66.345150px;}
.y19{bottom:66.345300px;}
.yab{bottom:67.500300px;}
.yde{bottom:72.345150px;}
.y7c{bottom:76.605000px;}
.y8a{bottom:77.415000px;}
.y71{bottom:79.098000px;}
.y48{bottom:79.996800px;}
.y11{bottom:81.750000px;}
.y9{bottom:81.825000px;}
.y18{bottom:81.825150px;}
.yaa{bottom:83.880150px;}
.ydd{bottom:89.625000px;}
.y70{bottom:95.476650px;}
.y47{bottom:96.375450px;}
.y17{bottom:97.305000px;}
.y10{bottom:97.411500px;}
.y8{bottom:97.486500px;}
.ya9{bottom:100.261800px;}
.ydc{bottom:106.725000px;}
.y6f{bottom:111.856500px;}
.y46{bottom:112.755300px;}
.ya8{bottom:116.640450px;}
.y6e{bottom:128.416800px;}
.y45{bottom:129.136950px;}
.ya7{bottom:142.021500px;}
.y6d{bottom:144.616800px;}
.y44{bottom:145.515600px;}
.ya6{bottom:158.400150px;}
.y6c{bottom:161.176500px;}
.y43{bottom:161.896650px;}
.ya5{bottom:174.780000px;}
.y42{bottom:178.275300px;}
.y6b{bottom:186.556350px;}
.ya4{bottom:191.161650px;}
.y41{bottom:194.655150px;}
.y6a{bottom:202.938000px;}
.ya3{bottom:207.540300px;}
.y40{bottom:211.036800px;}
.y69{bottom:219.316650px;}
.ya2{bottom:223.921350px;}
.y3f{bottom:227.415450px;}
.y68{bottom:235.697700px;}
.y3e{bottom:243.795300px;}
.ya1{bottom:244.980000px;}
.y67{bottom:252.076350px;}
.y3d{bottom:260.175150px;}
.y126{bottom:267.915690px;}
.y66{bottom:268.456200px;}
.y3c{bottom:276.555000px;}
.ya0{bottom:280.080600px;}
.y125{bottom:281.415690px;}
.y65{bottom:284.837850px;}
.y3b{bottom:292.936650px;}
.y9f{bottom:296.462250px;}
.y124{bottom:298.515690px;}
.y3a{bottom:309.315300px;}
.y64{bottom:310.216500px;}
.y123{bottom:312.196740px;}
.y9e{bottom:312.840900px;}
.y39{bottom:325.696350px;}
.y63{bottom:326.597550px;}
.y122{bottom:329.115690px;}
.y9d{bottom:329.220750px;}
.y121{bottom:342.615690px;}
.y62{bottom:342.976200px;}
.y9c{bottom:345.600600px;}
.y38{bottom:348.375000px;}
.y120{bottom:356.115690px;}
.y61{bottom:359.356050px;}
.yfa{bottom:361.800450px;}
.y9b{bottom:361.980450px;}
.y11f{bottom:373.396740px;}
.y60{bottom:375.737100px;}
.y9a{bottom:378.362100px;}
.yf9{bottom:378.900450px;}
.y37{bottom:386.175750px;}
.y11e{bottom:386.896740px;}
.y5f{bottom:392.115750px;}
.y99{bottom:394.740750px;}
.yf8{bottom:396.180300px;}
.y11d{bottom:400.396740px;}
.y36{bottom:401.837250px;}
.y5e{bottom:408.496800px;}
.y98{bottom:411.121800px;}
.yf7{bottom:413.461350px;}
.y11c{bottom:417.675390px;}
.y5d{bottom:424.875450px;}
.y97{bottom:427.500450px;}
.yf6{bottom:430.740000px;}
.y11b{bottom:431.175390px;}
.y35{bottom:432.437250px;}
.yd0{bottom:432.975000px;}
.y5c{bottom:441.255300px;}
.y96{bottom:443.880300px;}
.y34{bottom:447.915900px;}
.yf5{bottom:448.021050px;}
.y11a{bottom:448.636890px;}
.ycf{bottom:449.354850px;}
.y5b{bottom:457.815600px;}
.y95{bottom:460.261350px;}
.y119{bottom:462.315600px;}
.y33{bottom:463.396950px;}
.yf4{bottom:465.299700px;}
.yce{bottom:465.736500px;}
.y94{bottom:476.640000px;}
.y32{bottom:478.875600px;}
.y118{bottom:479.415600px;}
.ycd{bottom:482.115150px;}
.y5a{bottom:483.015600px;}
.yf3{bottom:488.340000px;}
.y93{bottom:493.021050px;}
.y117{bottom:493.096650px;}
.y31{bottom:494.537100px;}
.ycc{bottom:498.496200px;}
.y59{bottom:499.575300px;}
.y92{bottom:509.399700px;}
.y116{bottom:510.015600px;}
.y30{bottom:510.015750px;}
.ycb{bottom:514.874850px;}
.y58{bottom:515.775300px;}
.y115{bottom:523.515600px;}
.y2f{bottom:525.496800px;}
.y91{bottom:530.640000px;}
.yca{bottom:531.254700px;}
.y57{bottom:532.336800px;}
.yf2{bottom:534.961800px;}
.y114{bottom:540.615600px;}
.y2e{bottom:540.975450px;}
.yc9{bottom:547.815000px;}
.y56{bottom:548.715450px;}
.yf1{bottom:552.240450px;}
.y113{bottom:554.115600px;}
.y2d{bottom:556.636950px;}
.y90{bottom:562.861500px;}
.y55{bottom:565.096500px;}
.y112{bottom:567.615600px;}
.yf0{bottom:569.521500px;}
.yc8{bottom:570.315000px;}
.y2c{bottom:572.115600px;}
.y54{bottom:581.475150px;}
.y111{bottom:585.075300px;}
.yef{bottom:586.800150px;}
.y2b{bottom:587.596650px;}
.y53{bottom:597.855000px;}
.y110{bottom:598.575300px;}
.y2a{bottom:603.075300px;}
.yc7{bottom:608.295450px;}
.y52{bottom:614.236650px;}
.y29{bottom:618.736800px;}
.yee{bottom:621.180000px;}
.yc6{bottom:624.675300px;}
.y51{bottom:630.615300px;}
.y28{bottom:634.215450px;}
.y10f{bottom:635.655150px;}
.yed{bottom:638.461650px;}
.yc5{bottom:641.055150px;}
.y27{bottom:649.695300px;}
.yec{bottom:655.740300px;}
.y50{bottom:655.815300px;}
.y89{bottom:655.950000px;}
.yc4{bottom:657.436800px;}
.y26{bottom:665.175150px;}
.y4f{bottom:672.375000px;}
.y10e{bottom:673.815450px;}
.y25{bottom:680.836650px;}
.yc3{bottom:682.815450px;}
.y4e{bottom:688.575000px;}
.y10d{bottom:690.015450px;}
.yeb{bottom:690.120150px;}
.y24{bottom:696.315300px;}
.yc2{bottom:699.195300px;}
.y4d{bottom:705.136500px;}
.y10c{bottom:706.575150px;}
.yea{bottom:707.400000px;}
.y23{bottom:711.795150px;}
.yc1{bottom:715.575150px;}
.y4c{bottom:721.515150px;}
.y10b{bottom:722.775150px;}
.ye9{bottom:724.679850px;}
.y22{bottom:727.275000px;}
.yc0{bottom:731.955000px;}
.y4b{bottom:737.895000px;}
.y10a{bottom:739.336650px;}
.ye8{bottom:741.961500px;}
.y21{bottom:742.936500px;}
.ybf{bottom:748.515300px;}
.y109{bottom:755.715300px;}
.y85{bottom:757.200000px;}
.y20{bottom:758.415150px;}
.y4a{bottom:760.395000px;}
.ybe{bottom:764.715300px;}
.y108{bottom:772.096350px;}
.y1f{bottom:773.895000px;}
.ybd{bottom:785.775000px;}
.y107{bottom:794.596350px;}
.ybc{bottom:820.875150px;}
.ye3{bottom:822.975000px;}
.y106{bottom:824.115300px;}
.ybb{bottom:837.255000px;}
.y81{bottom:840.525000px;}
.y105{bottom:841.215300px;}
.yba{bottom:853.815300px;}
.y104{bottom:858.495150px;}
.yb9{bottom:870.015300px;}
.y7{bottom:870.600000px;}
.yf{bottom:870.675000px;}
.yb8{bottom:886.575000px;}
.y103{bottom:892.875000px;}
.ydb{bottom:894.300000px;}
.y102{bottom:910.154850px;}
.yb7{bottom:911.775000px;}
.y7b{bottom:923.700000px;}
.y101{bottom:927.436500px;}
.yb6{bottom:928.336500px;}
.yb5{bottom:944.715150px;}
.yb4{bottom:961.095000px;}
.y100{bottom:961.995150px;}
.yb3{bottom:977.474850px;}
.yff{bottom:979.275000px;}
.yd8{bottom:988.274850px;}
.yb2{bottom:993.854700px;}
.yfe{bottom:996.375000px;}
.yb1{bottom:1014.915000px;}
.yd9{bottom:1016.175000px;}
.yd7{bottom:1023.195000px;}
.y77{bottom:1024.125000px;}
.yfd{bottom:1031.115300px;}
.yd6{bottom:1041.375000px;}
.yd5{bottom:1041.555000px;}
.y6{bottom:1047.105000px;}
.yfc{bottom:1048.215300px;}
.yb0{bottom:1050.015300px;}
.yd4{bottom:1059.375000px;}
.yfb{bottom:1065.495150px;}
.yaf{bottom:1066.395150px;}
.y74{bottom:1075.215150px;}
.yd3{bottom:1076.654850px;}
.yae{bottom:1082.775000px;}
.y5{bottom:1088.505000px;}
.y75{bottom:1090.125000px;}
.y73{bottom:1098.436500px;}
.yad{bottom:1098.975000px;}
.yd2{bottom:1099.875000px;}
.y4{bottom:1129.905000px;}
.y2{bottom:1180.486500px;}
.y1{bottom:1207.125000px;}
.h19{height:18.525000px;}
.he{height:31.500000px;}
.h17{height:33.560010px;}
.hb{height:36.571289px;}
.ha{height:36.597656px;}
.h7{height:37.494141px;}
.h6{height:37.520508px;}
.h18{height:39.790283px;}
.hf{height:40.431592px;}
.h2{height:40.460742px;}
.h16{height:41.451855px;}
.hc{height:41.481006px;}
.h1{height:46.763672px;}
.h3{height:50.308594px;}
.h10{height:66.000000px;}
.h1b{height:71.325000px;}
.h12{height:83.175000px;}
.h13{height:83.325000px;}
.h4{height:97.523438px;}
.h11{height:100.425000px;}
.h14{height:101.250000px;}
.h8{height:117.900000px;}
.h5{height:118.050000px;}
.h1a{height:121.875000px;}
.h9{height:794.700000px;}
.h15{height:1119.675000px;}
.hd{height:1119.750000px;}
.h0{height:1263.000000px;}
.wa{width:53.700000px;}
.w9{width:91.725000px;}
.w7{width:112.650000px;}
.w8{width:123.750000px;}
.w6{width:128.100000px;}
.wb{width:213.975000px;}
.w2{width:271.425000px;}
.w1{width:308.100000px;}
.w3{width:318.600000px;}
.wc{width:445.575000px;}
.w4{width:445.650000px;}
.w5{width:450.000000px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:8.220000px;}
.x34{left:11.309700px;}
.x36{left:14.880000px;}
.x22{left:16.650075px;}
.x3c{left:19.350195px;}
.x31{left:24.629850px;}
.x24{left:30.045150px;}
.x35{left:32.909700px;}
.x21{left:38.249775px;}
.x12{left:42.134700px;}
.x3b{left:43.288620px;}
.x16{left:45.629400px;}
.x10{left:57.795150px;}
.x15{left:59.669700px;}
.x33{left:61.513500px;}
.x3{left:63.720150px;}
.x1a{left:68.038500px;}
.x39{left:70.830000px;}
.xa{left:76.500000px;}
.x13{left:77.954850px;}
.x17{left:81.629400px;}
.x19{left:88.379850px;}
.x2a{left:89.459700px;}
.x8{left:92.338500px;}
.x1d{left:93.420030px;}
.x2f{left:95.038650px;}
.xf{left:100.813500px;}
.x11{left:106.575000px;}
.x6{left:108.359850px;}
.xd{left:109.979850px;}
.xb{left:112.500000px;}
.x18{left:114.029400px;}
.x4{left:116.638500px;}
.x1f{left:118.170000px;}
.x30{left:122.038500px;}
.x7{left:127.620150px;}
.x37{left:129.059700px;}
.x2b{left:132.930000px;}
.x2c{left:135.270150px;}
.x5{left:137.159850px;}
.x1{left:138.420150px;}
.x20{left:139.588500px;}
.x9{left:141.120150px;}
.xc{left:144.720150px;}
.x2d{left:149.759700px;}
.x38{left:156.600000px;}
.x3a{left:161.550120px;}
.x2{left:166.320000px;}
.x23{left:169.380000px;}
.x2e{left:174.060000px;}
.x28{left:180.900000px;}
.x1b{left:192.238500px;}
.x25{left:196.800000px;}
.x29{left:205.200000px;}
.x1c{left:210.420000px;}
.x32{left:222.525000px;}
.xe{left:305.625000px;}
.x27{left:309.375000px;}
.x1e{left:443.250000px;}
.x14{left:574.650000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.222080pt;}
.ls2{letter-spacing:21.906240pt;}
.ws8{word-spacing:-35.067008pt;}
.ws6{word-spacing:-32.510848pt;}
.ws7{word-spacing:-32.373632pt;}
.ws30{word-spacing:-26.533333pt;}
.wsb{word-spacing:-24.000000pt;}
.ws5{word-spacing:-23.867904pt;}
.ws3{word-spacing:-23.100224pt;}
.ws31{word-spacing:-21.466667pt;}
.ws85{word-spacing:-17.592131pt;}
.ws7e{word-spacing:-17.449063pt;}
.ws7f{word-spacing:-17.225015pt;}
.ws80{word-spacing:-17.210422pt;}
.ws86{word-spacing:-17.084548pt;}
.ws76{word-spacing:-16.803242pt;}
.ws7a{word-spacing:-16.797033pt;}
.ws84{word-spacing:-16.796980pt;}
.wscf{word-spacing:-16.683735pt;}
.ws73{word-spacing:-16.591665pt;}
.ws88{word-spacing:-16.577071pt;}
.ws7b{word-spacing:-16.566670pt;}
.ws82{word-spacing:-16.455443pt;}
.wscb{word-spacing:-16.440796pt;}
.wse1{word-spacing:-16.317151pt;}
.ws9e{word-spacing:-16.312959pt;}
.ws61{word-spacing:-15.945843pt;}
.ws74{word-spacing:-15.937512pt;}
.wscd{word-spacing:-15.935442pt;}
.ws3d{word-spacing:-15.927058pt;}
.ws0{word-spacing:-15.892693pt;}
.ws45{word-spacing:-15.813814pt;}
.wsa2{word-spacing:-15.809621pt;}
.ws71{word-spacing:-15.685870pt;}
.ws8a{word-spacing:-15.667137pt;}
.wsc{word-spacing:-15.571056pt;}
.ws60{word-spacing:-15.534524pt;}
.ws6c{word-spacing:-15.530491pt;}
.wsb2{word-spacing:-15.528262pt;}
.ws54{word-spacing:-15.519930pt;}
.wsc8{word-spacing:-15.404563pt;}
.wsb0{word-spacing:-15.335948pt;}
.ws1{word-spacing:-15.305989pt;}
.wsaf{word-spacing:-15.281237pt;}
.ws10{word-spacing:-15.218208pt;}
.wsa{word-spacing:-15.214080pt;}
.ws5e{word-spacing:-15.172131pt;}
.ws3a{word-spacing:-15.042065pt;}
.ws56{word-spacing:-15.040102pt;}
.ws75{word-spacing:-15.037873pt;}
.wsa4{word-spacing:-15.035962pt;}
.wsb9{word-spacing:-15.019246pt;}
.ws11{word-spacing:-14.941872pt;}
.ws14{word-spacing:-14.929440pt;}
.wsd7{word-spacing:-14.894911pt;}
.ws8d{word-spacing:-14.890772pt;}
.ws70{word-spacing:-14.843755pt;}
.ws46{word-spacing:-14.839563pt;}
.ws49{word-spacing:-14.835423pt;}
.ws77{word-spacing:-14.833354pt;}
.ws33{word-spacing:-14.831231pt;}
.ws5d{word-spacing:-14.643747pt;}
.wsbe{word-spacing:-14.534642pt;}
.wsab{word-spacing:-14.530449pt;}
.wse5{word-spacing:-14.524241pt;}
.ws72{word-spacing:-14.425908pt;}
.wsf1{word-spacing:-14.404681pt;}
.ws8b{word-spacing:-14.394227pt;}
.ws4c{word-spacing:-14.392211pt;}
.wsc7{word-spacing:-14.392105pt;}
.wsc9{word-spacing:-14.249090pt;}
.wsd6{word-spacing:-14.247020pt;}
.ws1d{word-spacing:-14.227104pt;}
.ws38{word-spacing:-14.193741pt;}
.ws2a{word-spacing:-14.056272pt;}
.ws35{word-spacing:-13.892906pt;}
.ws97{word-spacing:-13.886698pt;}
.wsba{word-spacing:-13.762999pt;}
.ws79{word-spacing:-13.760877pt;}
.ws6d{word-spacing:-13.750369pt;}
.ws5c{word-spacing:-13.746336pt;}
.wsa7{word-spacing:-13.615739pt;}
.ws4b{word-spacing:-13.611600pt;}
.wsf0{word-spacing:-13.609530pt;}
.ws37{word-spacing:-13.607408pt;}
.wsd8{word-spacing:-13.554182pt;}
.ws99{word-spacing:-13.552059pt;}
.wsa3{word-spacing:-13.547920pt;}
.ws83{word-spacing:-13.483709pt;}
.wsc2{word-spacing:-13.481640pt;}
.ws40{word-spacing:-13.383307pt;}
.ws67{word-spacing:-13.379168pt;}
.ws6a{word-spacing:-13.374976pt;}
.ws43{word-spacing:-13.366644pt;}
.wsca{word-spacing:-13.251277pt;}
.ws81{word-spacing:-13.251224pt;}
.wsd0{word-spacing:-13.249155pt;}
.ws102{word-spacing:-13.190623pt;}
.ws2{word-spacing:-13.155067pt;}
.wsdc{word-spacing:-13.119194pt;}
.wsb8{word-spacing:-13.119141pt;}
.wse8{word-spacing:-13.117178pt;}
.wseb{word-spacing:-13.117072pt;}
.ws7c{word-spacing:-13.112986pt;}
.ws7d{word-spacing:-13.110810pt;}
.wsd1{word-spacing:-13.104548pt;}
.wsff{word-spacing:-13.008593pt;}
.wsc4{word-spacing:-12.999999pt;}
.ws42{word-spacing:-12.978249pt;}
.wsb1{word-spacing:-12.969918pt;}
.wsce{word-spacing:-12.961586pt;}
.ws5f{word-spacing:-12.955325pt;}
.wsf6{word-spacing:-12.920830pt;}
.wsc3{word-spacing:-12.844150pt;}
.ws101{word-spacing:-12.831271pt;}
.wsf{word-spacing:-12.783312pt;}
.wscc{word-spacing:-12.775375pt;}
.ws87{word-spacing:-12.743748pt;}
.wsd3{word-spacing:-12.741678pt;}
.wsee{word-spacing:-12.617980pt;}
.ws39{word-spacing:-12.607473pt;}
.wsac{word-spacing:-12.603386pt;}
.wsd5{word-spacing:-12.595002pt;}
.ws9{word-spacing:-12.385680pt;}
.ws2f{word-spacing:-12.371136pt;}
.wsf7{word-spacing:-12.364585pt;}
.ws16{word-spacing:-12.316656pt;}
.ws13{word-spacing:-12.314592pt;}
.wse{word-spacing:-12.312480pt;}
.ws15{word-spacing:-12.310416pt;}
.ws12{word-spacing:-12.295824pt;}
.wsd{word-spacing:-12.293760pt;}
.ws108{word-spacing:-12.264551pt;}
.ws55{word-spacing:-12.198329pt;}
.ws2d{word-spacing:-12.133344pt;}
.wsa1{word-spacing:-12.104188pt;}
.ws66{word-spacing:-12.091665pt;}
.wsda{word-spacing:-12.085403pt;}
.ws53{word-spacing:-11.835830pt;}
.ws9f{word-spacing:-11.833814pt;}
.ws109{word-spacing:-11.712471pt;}
.wsfd{word-spacing:-11.706203pt;}
.ws10f{word-spacing:-11.704185pt;}
.wsfa{word-spacing:-11.635406pt;}
.ws4a{word-spacing:-11.635397pt;}
.ws104{word-spacing:-11.625016pt;}
.ws105{word-spacing:-11.577102pt;}
.ws100{word-spacing:-11.564566pt;}
.ws8c{word-spacing:-11.558716pt;}
.ws1a{word-spacing:-11.514576pt;}
.wsfb{word-spacing:-11.081265pt;}
.wsfe{word-spacing:-11.079161pt;}
.ws111{word-spacing:-11.079033pt;}
.ws10c{word-spacing:-11.074997pt;}
.wsf9{word-spacing:-11.066539pt;}
.wsed{word-spacing:-11.042961pt;}
.ws110{word-spacing:-10.999992pt;}
.ws107{word-spacing:-10.914598pt;}
.ws44{word-spacing:-10.864686pt;}
.ws5a{word-spacing:-10.827086pt;}
.ws93{word-spacing:-10.822894pt;}
.ws8f{word-spacing:-10.800022pt;}
.ws106{word-spacing:-10.439583pt;}
.ws95{word-spacing:-10.283736pt;}
.ws62{word-spacing:-10.279544pt;}
.ws69{word-spacing:-10.038781pt;}
.ws6f{word-spacing:-9.925843pt;}
.wsa8{word-spacing:-9.921344pt;}
.ws21{word-spacing:-9.600000pt;}
.wsc5{word-spacing:-9.583502pt;}
.wsdd{word-spacing:-9.574949pt;}
.wsec{word-spacing:-9.541652pt;}
.wse2{word-spacing:-9.533321pt;}
.wsde{word-spacing:-9.286419pt;}
.wsbb{word-spacing:-9.069756pt;}
.wsaa{word-spacing:-8.900023pt;}
.wse7{word-spacing:-8.767993pt;}
.wsb3{word-spacing:-8.635804pt;}
.ws103{word-spacing:-8.372902pt;}
.ws52{word-spacing:-8.245817pt;}
.ws94{word-spacing:-8.239608pt;}
.ws24{word-spacing:-8.191152pt;}
.ws78{word-spacing:-8.126311pt;}
.wsa9{word-spacing:-7.853230pt;}
.ws19{word-spacing:-7.822896pt;}
.ws26{word-spacing:-7.654176pt;}
.ws65{word-spacing:-7.356791pt;}
.wsdf{word-spacing:-7.219932pt;}
.ws34{word-spacing:-7.143729pt;}
.ws2b{word-spacing:-7.039584pt;}
.ws89{word-spacing:-7.016624pt;}
.ws48{word-spacing:-7.015095pt;}
.wse4{word-spacing:-6.857487pt;}
.ws64{word-spacing:-6.443991pt;}
.ws1c{word-spacing:-6.253680pt;}
.wsdb{word-spacing:-6.203334pt;}
.ws23{word-spacing:-6.171984pt;}
.wsd2{word-spacing:-5.964110pt;}
.ws2c{word-spacing:-5.760432pt;}
.ws68{word-spacing:-5.704189pt;}
.ws9b{word-spacing:-5.699997pt;}
.ws4f{word-spacing:-5.689596pt;}
.wsb7{word-spacing:-4.928407pt;}
.wsf5{word-spacing:-4.591646pt;}
.ws57{word-spacing:-4.406231pt;}
.wsfc{word-spacing:-4.039597pt;}
.ws10b{word-spacing:-3.879155pt;}
.ws36{word-spacing:-3.777073pt;}
.ws6b{word-spacing:-3.009623pt;}
.ws20{word-spacing:-2.695824pt;}
.ws96{word-spacing:-2.677107pt;}
.wsb6{word-spacing:-2.504163pt;}
.wsc6{word-spacing:-2.500024pt;}
.ws3c{word-spacing:-2.481238pt;}
.ws50{word-spacing:-1.218729pt;}
.ws1b{word-spacing:-1.136976pt;}
.ws90{word-spacing:-1.086699pt;}
.wsa5{word-spacing:-1.082560pt;}
.ws22{word-spacing:-1.056000pt;}
.wsc1{word-spacing:-0.847422pt;}
.ws5b{word-spacing:-0.752061pt;}
.wsa0{word-spacing:-0.583309pt;}
.ws10e{word-spacing:-0.401040pt;}
.ws2e{word-spacing:-0.137520pt;}
.ws10d{word-spacing:-0.114589pt;}
.wsf8{word-spacing:-0.043749pt;}
.ws6e{word-spacing:0.000000pt;}
.wse6{word-spacing:0.475902pt;}
.ws4e{word-spacing:0.695810pt;}
.ws9a{word-spacing:0.702072pt;}
.wsbc{word-spacing:1.479923pt;}
.wsb4{word-spacing:1.979174pt;}
.ws27{word-spacing:2.784240pt;}
.wsb5{word-spacing:3.093734pt;}
.ws29{word-spacing:3.200016pt;}
.ws4d{word-spacing:3.727084pt;}
.ws18{word-spacing:4.191024pt;}
.ws41{word-spacing:4.362505pt;}
.ws9d{word-spacing:5.014588pt;}
.ws9c{word-spacing:5.018727pt;}
.wse3{word-spacing:5.070467pt;}
.ws58{word-spacing:5.716394pt;}
.ws3b{word-spacing:5.726689pt;}
.ws3f{word-spacing:6.225887pt;}
.ws3e{word-spacing:6.302091pt;}
.ws51{word-spacing:6.454180pt;}
.ws91{word-spacing:7.097932pt;}
.ws10a{word-spacing:7.483323pt;}
.wsf2{word-spacing:8.242951pt;}
.ws32{word-spacing:8.794686pt;}
.ws1f{word-spacing:9.393456pt;}
.ws28{word-spacing:9.823824pt;}
.ws59{word-spacing:10.073698pt;}
.wsef{word-spacing:10.306237pt;}
.wse0{word-spacing:10.438319pt;}
.ws1e{word-spacing:11.387520pt;}
.wsf4{word-spacing:11.476834pt;}
.wsae{word-spacing:11.581269pt;}
.ws17{word-spacing:12.674496pt;}
.wsd4{word-spacing:12.730428pt;}
.ws47{word-spacing:14.147945pt;}
.wsea{word-spacing:14.557142pt;}
.wsa6{word-spacing:14.925796pt;}
.wsf3{word-spacing:15.043339pt;}
.wsbd{word-spacing:16.659909pt;}
.ws63{word-spacing:17.744538pt;}
.ws25{word-spacing:19.202064pt;}
.ws8e{word-spacing:25.668771pt;}
.wsbf{word-spacing:26.191266pt;}
.wsad{word-spacing:26.839528pt;}
.wsd9{word-spacing:28.478757pt;}
.ws98{word-spacing:38.468557pt;}
.wsc0{word-spacing:45.983328pt;}
.wse9{word-spacing:48.733243pt;}
.ws92{word-spacing:56.381211pt;}
.ws4{word-spacing:588.216064pt;}
._1b{margin-left:-2.324353pt;}
._1{margin-left:-1.014447pt;}
._4{width:1.208007pt;}
._23{width:7.401347pt;}
._24{width:8.715193pt;}
._8{width:9.843530pt;}
._d{width:11.022307pt;}
._16{width:11.923476pt;}
._9{width:12.911564pt;}
._3{width:14.558562pt;}
._0{width:16.204521pt;}
._c{width:17.243225pt;}
._10{width:18.807078pt;}
._13{width:19.721982pt;}
._14{width:20.713844pt;}
._17{width:22.085933pt;}
._1a{width:23.092410pt;}
._f{width:24.138661pt;}
._15{width:25.085573pt;}
._18{width:26.736519pt;}
._12{width:27.812520pt;}
._b{width:29.197064pt;}
._2{width:30.710259pt;}
._7{width:32.893825pt;}
._19{width:34.360522pt;}
._e{width:36.407863pt;}
._a{width:37.671017pt;}
._20{width:39.204400pt;}
._22{width:40.179160pt;}
._1e{width:42.501180pt;}
._11{width:44.481325pt;}
._1f{width:54.531587pt;}
._1d{width:66.341793pt;}
._21{width:73.627484pt;}
._1c{width:83.852596pt;}
._5{width:212.024876pt;}
._6{width:634.668805pt;}
.fs6{font-size:42.933333pt;}
.fs5{font-size:48.000000pt;}
.fs2{font-size:53.066667pt;}
.fs1{font-size:58.933333pt;}
.fs0{font-size:61.333333pt;}
.fs3{font-size:64.000000pt;}
.fs4{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y16{bottom:3.706933pt;}
.ye{bottom:3.773600pt;}
.y1d{bottom:3.773733pt;}
.yda{bottom:4.133333pt;}
.ye2{bottom:4.146933pt;}
.ye7{bottom:5.146667pt;}
.y80{bottom:6.813733pt;}
.y84{bottom:6.826400pt;}
.y76{bottom:6.880000pt;}
.y88{bottom:6.973600pt;}
.y7a{bottom:6.987867pt;}
.y8e{bottom:7.533200pt;}
.y15{bottom:17.466800pt;}
.yd{bottom:17.533467pt;}
.y1c{bottom:17.533600pt;}
.ye1{bottom:18.226667pt;}
.ye6{bottom:19.387867pt;}
.y7f{bottom:22.173600pt;}
.y83{bottom:22.187867pt;}
.y87{bottom:22.333467pt;}
.y79{bottom:22.346667pt;}
.y3{bottom:22.759867pt;}
.y8d{bottom:22.893067pt;}
.y14{bottom:31.226667pt;}
.yc{bottom:31.293333pt;}
.y1b{bottom:31.293467pt;}
.ye0{bottom:33.588133pt;}
.ye5{bottom:34.746667pt;}
.y7e{bottom:37.533467pt;}
.y78{bottom:37.546667pt;}
.y86{bottom:37.693333pt;}
.y8c{bottom:38.254533pt;}
.yd1{bottom:40.708000pt;}
.y1e{bottom:44.133333pt;}
.y8f{bottom:44.200000pt;}
.y13{bottom:45.146933pt;}
.yb{bottom:45.213600pt;}
.y1a{bottom:45.213733pt;}
.yac{bottom:45.441467pt;}
.ydf{bottom:48.946933pt;}
.ye4{bottom:49.946667pt;}
.y82{bottom:52.746667pt;}
.y7d{bottom:52.893333pt;}
.y8b{bottom:53.613333pt;}
.y72{bottom:55.748400pt;}
.y49{bottom:56.547333pt;}
.y12{bottom:58.906800pt;}
.ya{bottom:58.973467pt;}
.y19{bottom:58.973600pt;}
.yab{bottom:60.000267pt;}
.yde{bottom:64.306800pt;}
.y7c{bottom:68.093333pt;}
.y8a{bottom:68.813333pt;}
.y71{bottom:70.309333pt;}
.y48{bottom:71.108267pt;}
.y11{bottom:72.666667pt;}
.y9{bottom:72.733333pt;}
.y18{bottom:72.733467pt;}
.yaa{bottom:74.560133pt;}
.ydd{bottom:79.666667pt;}
.y70{bottom:84.868133pt;}
.y47{bottom:85.667067pt;}
.y17{bottom:86.493333pt;}
.y10{bottom:86.588000pt;}
.y8{bottom:86.654667pt;}
.ya9{bottom:89.121600pt;}
.ydc{bottom:94.866667pt;}
.y6f{bottom:99.428000pt;}
.y46{bottom:100.226933pt;}
.ya8{bottom:103.680400pt;}
.y6e{bottom:114.148267pt;}
.y45{bottom:114.788400pt;}
.ya7{bottom:126.241333pt;}
.y6d{bottom:128.548267pt;}
.y44{bottom:129.347200pt;}
.ya6{bottom:140.800133pt;}
.y6c{bottom:143.268000pt;}
.y43{bottom:143.908133pt;}
.ya5{bottom:155.360000pt;}
.y42{bottom:158.466933pt;}
.y6b{bottom:165.827867pt;}
.ya4{bottom:169.921467pt;}
.y41{bottom:173.026800pt;}
.y6a{bottom:180.389333pt;}
.ya3{bottom:184.480267pt;}
.y40{bottom:187.588267pt;}
.y69{bottom:194.948133pt;}
.ya2{bottom:199.041200pt;}
.y3f{bottom:202.147067pt;}
.y68{bottom:209.509067pt;}
.y3e{bottom:216.706933pt;}
.ya1{bottom:217.760000pt;}
.y67{bottom:224.067867pt;}
.y3d{bottom:231.266800pt;}
.y126{bottom:238.147280pt;}
.y66{bottom:238.627733pt;}
.y3c{bottom:245.826667pt;}
.ya0{bottom:248.960533pt;}
.y125{bottom:250.147280pt;}
.y65{bottom:253.189200pt;}
.y3b{bottom:260.388133pt;}
.y9f{bottom:263.522000pt;}
.y124{bottom:265.347280pt;}
.y3a{bottom:274.946933pt;}
.y64{bottom:275.748000pt;}
.y123{bottom:277.508213pt;}
.y9e{bottom:278.080800pt;}
.y39{bottom:289.507867pt;}
.y63{bottom:290.308933pt;}
.y122{bottom:292.547280pt;}
.y9d{bottom:292.640667pt;}
.y121{bottom:304.547280pt;}
.y62{bottom:304.867733pt;}
.y9c{bottom:307.200533pt;}
.y38{bottom:309.666667pt;}
.y120{bottom:316.547280pt;}
.y61{bottom:319.427600pt;}
.yfa{bottom:321.600400pt;}
.y9b{bottom:321.760400pt;}
.y11f{bottom:331.908213pt;}
.y60{bottom:333.988533pt;}
.y9a{bottom:336.321867pt;}
.yf9{bottom:336.800400pt;}
.y37{bottom:343.267333pt;}
.y11e{bottom:343.908213pt;}
.y5f{bottom:348.547333pt;}
.y99{bottom:350.880667pt;}
.yf8{bottom:352.160267pt;}
.y11d{bottom:355.908213pt;}
.y36{bottom:357.188667pt;}
.y5e{bottom:363.108267pt;}
.y98{bottom:365.441600pt;}
.yf7{bottom:367.521200pt;}
.y11c{bottom:371.267013pt;}
.y5d{bottom:377.667067pt;}
.y97{bottom:380.000400pt;}
.yf6{bottom:382.880000pt;}
.y11b{bottom:383.267013pt;}
.y35{bottom:384.388667pt;}
.yd0{bottom:384.866667pt;}
.y5c{bottom:392.226933pt;}
.y96{bottom:394.560267pt;}
.y34{bottom:398.147467pt;}
.yf5{bottom:398.240933pt;}
.y11a{bottom:398.788347pt;}
.ycf{bottom:399.426533pt;}
.y5b{bottom:406.947200pt;}
.y95{bottom:409.121200pt;}
.y119{bottom:410.947200pt;}
.y33{bottom:411.908400pt;}
.yf4{bottom:413.599733pt;}
.yce{bottom:413.988000pt;}
.y94{bottom:423.680000pt;}
.y32{bottom:425.667200pt;}
.y118{bottom:426.147200pt;}
.ycd{bottom:428.546800pt;}
.y5a{bottom:429.347200pt;}
.yf3{bottom:434.080000pt;}
.y93{bottom:438.240933pt;}
.y117{bottom:438.308133pt;}
.y31{bottom:439.588533pt;}
.ycc{bottom:443.107733pt;}
.y59{bottom:444.066933pt;}
.y92{bottom:452.799733pt;}
.y116{bottom:453.347200pt;}
.y30{bottom:453.347333pt;}
.ycb{bottom:457.666533pt;}
.y58{bottom:458.466933pt;}
.y115{bottom:465.347200pt;}
.y2f{bottom:467.108267pt;}
.y91{bottom:471.680000pt;}
.yca{bottom:472.226400pt;}
.y57{bottom:473.188267pt;}
.yf2{bottom:475.521600pt;}
.y114{bottom:480.547200pt;}
.y2e{bottom:480.867067pt;}
.yc9{bottom:486.946667pt;}
.y56{bottom:487.747067pt;}
.yf1{bottom:490.880400pt;}
.y113{bottom:492.547200pt;}
.y2d{bottom:494.788400pt;}
.y90{bottom:500.321333pt;}
.y55{bottom:502.308000pt;}
.y112{bottom:504.547200pt;}
.yf0{bottom:506.241333pt;}
.yc8{bottom:506.946667pt;}
.y2c{bottom:508.547200pt;}
.y54{bottom:516.866800pt;}
.y111{bottom:520.066933pt;}
.yef{bottom:521.600133pt;}
.y2b{bottom:522.308133pt;}
.y53{bottom:531.426667pt;}
.y110{bottom:532.066933pt;}
.y2a{bottom:536.066933pt;}
.yc7{bottom:540.707067pt;}
.y52{bottom:545.988133pt;}
.y29{bottom:549.988267pt;}
.yee{bottom:552.160000pt;}
.yc6{bottom:555.266933pt;}
.y51{bottom:560.546933pt;}
.y28{bottom:563.747067pt;}
.y10f{bottom:565.026800pt;}
.yed{bottom:567.521467pt;}
.yc5{bottom:569.826800pt;}
.y27{bottom:577.506933pt;}
.yec{bottom:582.880267pt;}
.y50{bottom:582.946933pt;}
.y89{bottom:583.066667pt;}
.yc4{bottom:584.388267pt;}
.y26{bottom:591.266800pt;}
.y4f{bottom:597.666667pt;}
.y10e{bottom:598.947067pt;}
.y25{bottom:605.188133pt;}
.yc3{bottom:606.947067pt;}
.y4e{bottom:612.066667pt;}
.y10d{bottom:613.347067pt;}
.yeb{bottom:613.440133pt;}
.y24{bottom:618.946933pt;}
.yc2{bottom:621.506933pt;}
.y4d{bottom:626.788000pt;}
.y10c{bottom:628.066800pt;}
.yea{bottom:628.800000pt;}
.y23{bottom:632.706800pt;}
.yc1{bottom:636.066800pt;}
.y4c{bottom:641.346800pt;}
.y10b{bottom:642.466800pt;}
.ye9{bottom:644.159867pt;}
.y22{bottom:646.466667pt;}
.yc0{bottom:650.626667pt;}
.y4b{bottom:655.906667pt;}
.y10a{bottom:657.188133pt;}
.ye8{bottom:659.521333pt;}
.y21{bottom:660.388000pt;}
.ybf{bottom:665.346933pt;}
.y109{bottom:671.746933pt;}
.y85{bottom:673.066667pt;}
.y20{bottom:674.146800pt;}
.y4a{bottom:675.906667pt;}
.ybe{bottom:679.746933pt;}
.y108{bottom:686.307867pt;}
.y1f{bottom:687.906667pt;}
.ybd{bottom:698.466667pt;}
.y107{bottom:706.307867pt;}
.ybc{bottom:729.666800pt;}
.ye3{bottom:731.533333pt;}
.y106{bottom:732.546933pt;}
.ybb{bottom:744.226667pt;}
.y81{bottom:747.133333pt;}
.y105{bottom:747.746933pt;}
.yba{bottom:758.946933pt;}
.y104{bottom:763.106800pt;}
.yb9{bottom:773.346933pt;}
.y7{bottom:773.866667pt;}
.yf{bottom:773.933333pt;}
.yb8{bottom:788.066667pt;}
.y103{bottom:793.666667pt;}
.ydb{bottom:794.933333pt;}
.y102{bottom:809.026533pt;}
.yb7{bottom:810.466667pt;}
.y7b{bottom:821.066667pt;}
.y101{bottom:824.388000pt;}
.yb6{bottom:825.188000pt;}
.yb5{bottom:839.746800pt;}
.yb4{bottom:854.306667pt;}
.y100{bottom:855.106800pt;}
.yb3{bottom:868.866533pt;}
.yff{bottom:870.466667pt;}
.yd8{bottom:878.466533pt;}
.yb2{bottom:883.426400pt;}
.yfe{bottom:885.666667pt;}
.yb1{bottom:902.146667pt;}
.yd9{bottom:903.266667pt;}
.yd7{bottom:909.506667pt;}
.y77{bottom:910.333333pt;}
.yfd{bottom:916.546933pt;}
.yd6{bottom:925.666667pt;}
.yd5{bottom:925.826667pt;}
.y6{bottom:930.760000pt;}
.yfc{bottom:931.746933pt;}
.yb0{bottom:933.346933pt;}
.yd4{bottom:941.666667pt;}
.yfb{bottom:947.106800pt;}
.yaf{bottom:947.906800pt;}
.y74{bottom:955.746800pt;}
.yd3{bottom:957.026533pt;}
.yae{bottom:962.466667pt;}
.y5{bottom:967.560000pt;}
.y75{bottom:969.000000pt;}
.y73{bottom:976.388000pt;}
.yad{bottom:976.866667pt;}
.yd2{bottom:977.666667pt;}
.y4{bottom:1004.360000pt;}
.y2{bottom:1049.321333pt;}
.y1{bottom:1073.000000pt;}
.h19{height:16.466667pt;}
.he{height:28.000000pt;}
.h17{height:29.831120pt;}
.hb{height:32.507813pt;}
.ha{height:32.531250pt;}
.h7{height:33.328125pt;}
.h6{height:33.351563pt;}
.h18{height:35.369141pt;}
.hf{height:35.939193pt;}
.h2{height:35.965104pt;}
.h16{height:36.846094pt;}
.hc{height:36.872005pt;}
.h1{height:41.567708pt;}
.h3{height:44.718750pt;}
.h10{height:58.666667pt;}
.h1b{height:63.400000pt;}
.h12{height:73.933333pt;}
.h13{height:74.066667pt;}
.h4{height:86.687500pt;}
.h11{height:89.266667pt;}
.h14{height:90.000000pt;}
.h8{height:104.800000pt;}
.h5{height:104.933333pt;}
.h1a{height:108.333333pt;}
.h9{height:706.400000pt;}
.h15{height:995.266667pt;}
.hd{height:995.333333pt;}
.h0{height:1122.666667pt;}
.wa{width:47.733333pt;}
.w9{width:81.533333pt;}
.w7{width:100.133333pt;}
.w8{width:110.000000pt;}
.w6{width:113.866667pt;}
.wb{width:190.200000pt;}
.w2{width:241.266667pt;}
.w1{width:273.866667pt;}
.w3{width:283.200000pt;}
.wc{width:396.066667pt;}
.w4{width:396.133333pt;}
.w5{width:400.000000pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:7.306667pt;}
.x34{left:10.053067pt;}
.x36{left:13.226667pt;}
.x22{left:14.800067pt;}
.x3c{left:17.200173pt;}
.x31{left:21.893200pt;}
.x24{left:26.706800pt;}
.x35{left:29.253067pt;}
.x21{left:33.999800pt;}
.x12{left:37.453067pt;}
.x3b{left:38.478773pt;}
.x16{left:40.559467pt;}
.x10{left:51.373467pt;}
.x15{left:53.039733pt;}
.x33{left:54.678667pt;}
.x3{left:56.640133pt;}
.x1a{left:60.478667pt;}
.x39{left:62.960000pt;}
.xa{left:68.000000pt;}
.x13{left:69.293200pt;}
.x17{left:72.559467pt;}
.x19{left:78.559867pt;}
.x2a{left:79.519733pt;}
.x8{left:82.078667pt;}
.x1d{left:83.040027pt;}
.x2f{left:84.478800pt;}
.xf{left:89.612000pt;}
.x11{left:94.733333pt;}
.x6{left:96.319867pt;}
.xd{left:97.759867pt;}
.xb{left:100.000000pt;}
.x18{left:101.359467pt;}
.x4{left:103.678667pt;}
.x1f{left:105.040000pt;}
.x30{left:108.478667pt;}
.x7{left:113.440133pt;}
.x37{left:114.719733pt;}
.x2b{left:118.160000pt;}
.x2c{left:120.240133pt;}
.x5{left:121.919867pt;}
.x1{left:123.040133pt;}
.x20{left:124.078667pt;}
.x9{left:125.440133pt;}
.xc{left:128.640133pt;}
.x2d{left:133.119733pt;}
.x38{left:139.200000pt;}
.x3a{left:143.600107pt;}
.x2{left:147.840000pt;}
.x23{left:150.560000pt;}
.x2e{left:154.720000pt;}
.x28{left:160.800000pt;}
.x1b{left:170.878667pt;}
.x25{left:174.933333pt;}
.x29{left:182.400000pt;}
.x1c{left:187.040000pt;}
.x32{left:197.800000pt;}
.xe{left:271.666667pt;}
.x27{left:275.000000pt;}
.x1e{left:394.000000pt;}
.x14{left:510.800000pt;}
}




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