
    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_5469b2806bfe8f47d9d3589e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.863770;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_2d5704729a8d45b585146389.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_355223273d99b74ee7d61567.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.115234;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_2992e1be53a15a9c48c247cb.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.103027;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_0d08772c4fe64ad100353b99.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4926a4d48bf6ad835d0dab4b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.000000;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_cf3e35893edc6ae4aebfbd84.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.746094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-8.974800px;}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.000147px;}
.ls6{letter-spacing:0.000148px;}
.ls5{letter-spacing:0.000247px;}
.ls7{letter-spacing:13.230081px;}
.ls9{letter-spacing:18.310726px;}
.ls8{letter-spacing:18.310861px;}
.ls2{letter-spacing:22.797850px;}
.ls1{letter-spacing:22.800494px;}
.ls3{letter-spacing:29.973353px;}
.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;}
}
.ws0{word-spacing:-45.667968px;}
.ws9{word-spacing:-38.542970px;}
.ws1{word-spacing:-25.992425px;}
.ws2{word-spacing:-25.992364px;}
.ws5{word-spacing:-21.252021px;}
.ws4{word-spacing:-21.251983px;}
.ws3{word-spacing:-21.251964px;}
.wsf1{word-spacing:-20.250345px;}
.wsb3{word-spacing:-20.246476px;}
.wsca{word-spacing:-20.246458px;}
.ws7d{word-spacing:-20.245380px;}
.ws8b{word-spacing:-20.245335px;}
.ws95{word-spacing:-20.245316px;}
.ws3b{word-spacing:-20.245309px;}
.ws2b{word-spacing:-20.245307px;}
.ws24{word-spacing:-20.245290px;}
.ws6e{word-spacing:-20.245283px;}
.ws36{word-spacing:-20.245280px;}
.wsda{word-spacing:-20.245265px;}
.ws39{word-spacing:-20.245252px;}
.wsdd{word-spacing:-20.245248px;}
.wsc{word-spacing:-20.245245px;}
.wsd1{word-spacing:-20.245241px;}
.ws21{word-spacing:-20.245236px;}
.ws3a{word-spacing:-20.245232px;}
.ws5f{word-spacing:-20.245226px;}
.ws88{word-spacing:-20.245225px;}
.wsf5{word-spacing:-20.245219px;}
.ws94{word-spacing:-20.245213px;}
.ws8a{word-spacing:-20.245210px;}
.ws70{word-spacing:-20.245207px;}
.ws33{word-spacing:-20.245206px;}
.ws1b{word-spacing:-20.245200px;}
.ws26{word-spacing:-20.245194px;}
.ws7e{word-spacing:-20.245178px;}
.wse0{word-spacing:-20.245172px;}
.ws64{word-spacing:-20.245165px;}
.ws87{word-spacing:-20.245163px;}
.ws8e{word-spacing:-20.245154px;}
.wse3{word-spacing:-20.245153px;}
.ws2c{word-spacing:-20.245151px;}
.ws10{word-spacing:-20.245150px;}
.ws73{word-spacing:-20.245149px;}
.ws67{word-spacing:-20.245147px;}
.ws42{word-spacing:-20.245145px;}
.ws83{word-spacing:-20.245120px;}
.ws9c{word-spacing:-20.245110px;}
.ws66{word-spacing:-20.245072px;}
.ws75{word-spacing:-20.245065px;}
.ws9a{word-spacing:-20.242566px;}
.wsb{word-spacing:-20.242523px;}
.wsfc{word-spacing:-20.242520px;}
.wsa{word-spacing:-20.242518px;}
.ws4d{word-spacing:-20.242517px;}
.ws7b{word-spacing:-20.242515px;}
.ws50{word-spacing:-20.242462px;}
.wsdf{word-spacing:-20.232152px;}
.ws1d{word-spacing:-20.232106px;}
.wsed{word-spacing:-20.232104px;}
.wsf9{word-spacing:-20.232102px;}
.wse6{word-spacing:-20.232097px;}
.wse2{word-spacing:-20.232062px;}
.ws84{word-spacing:-20.229493px;}
.wsb1{word-spacing:-20.229416px;}
.ws6{word-spacing:-16.565087px;}
.ws27{word-spacing:-15.745413px;}
.wsd3{word-spacing:-15.745387px;}
.wsa9{word-spacing:-15.745300px;}
.ws6b{word-spacing:-15.745280px;}
.ws7a{word-spacing:-15.745277px;}
.ws9b{word-spacing:-15.745274px;}
.ws18{word-spacing:-15.745251px;}
.ws15{word-spacing:-15.745245px;}
.ws56{word-spacing:-15.745239px;}
.wsf{word-spacing:-15.745235px;}
.ws7c{word-spacing:-15.745232px;}
.ws46{word-spacing:-15.745223px;}
.ws47{word-spacing:-15.745212px;}
.wscf{word-spacing:-15.745207px;}
.ws5a{word-spacing:-15.745200px;}
.ws35{word-spacing:-15.745185px;}
.ws2d{word-spacing:-15.745172px;}
.ws3c{word-spacing:-15.745168px;}
.ws1e{word-spacing:-15.745165px;}
.ws78{word-spacing:-15.745155px;}
.ws58{word-spacing:-15.745151px;}
.ws20{word-spacing:-15.745149px;}
.ws34{word-spacing:-15.745148px;}
.ws3e{word-spacing:-15.745146px;}
.ws81{word-spacing:-15.745143px;}
.ws22{word-spacing:-15.745136px;}
.ws16{word-spacing:-15.745117px;}
.wsd0{word-spacing:-15.745110px;}
.wsd4{word-spacing:-15.745077px;}
.ws74{word-spacing:-15.745072px;}
.wsa7{word-spacing:-15.745065px;}
.ws4e{word-spacing:-15.742553px;}
.ws4c{word-spacing:-15.742517px;}
.ws43{word-spacing:-15.734689px;}
.wsee{word-spacing:-15.732105px;}
.ws59{word-spacing:-15.732104px;}
.ws5c{word-spacing:-15.732102px;}
.wsfe{word-spacing:-15.732093px;}
.ws1a{word-spacing:-15.729493px;}
.wsea{word-spacing:-11.245345px;}
.wsd5{word-spacing:-11.245325px;}
.wsfb{word-spacing:-11.245280px;}
.ws17{word-spacing:-11.245277px;}
.ws6d{word-spacing:-11.245248px;}
.ws5b{word-spacing:-11.245245px;}
.ws90{word-spacing:-11.245242px;}
.ws55{word-spacing:-11.245230px;}
.ws86{word-spacing:-11.245226px;}
.wscd{word-spacing:-11.245210px;}
.ws31{word-spacing:-11.245207px;}
.wsc5{word-spacing:-11.245172px;}
.ws12{word-spacing:-11.245166px;}
.ws19{word-spacing:-11.245152px;}
.ws25{word-spacing:-11.245149px;}
.ws30{word-spacing:-11.245148px;}
.wsa8{word-spacing:-11.245142px;}
.ws14{word-spacing:-11.245117px;}
.wsaa{word-spacing:-11.245110px;}
.wsbb{word-spacing:-11.245065px;}
.ws91{word-spacing:-11.242549px;}
.ws5d{word-spacing:-11.242517px;}
.ws51{word-spacing:-11.242418px;}
.ws1f{word-spacing:-11.232105px;}
.ws57{word-spacing:-11.232103px;}
.ws3d{word-spacing:-11.231991px;}
.wsa1{word-spacing:-6.745342px;}
.wsc6{word-spacing:-6.745335px;}
.ws3f{word-spacing:-6.745255px;}
.ws62{word-spacing:-6.745245px;}
.wsc8{word-spacing:-6.745231px;}
.ws63{word-spacing:-6.745200px;}
.wsd9{word-spacing:-6.745171px;}
.wsc7{word-spacing:-6.745153px;}
.ws13{word-spacing:-6.745150px;}
.wse{word-spacing:-6.745149px;}
.ws69{word-spacing:-6.745126px;}
.wsac{word-spacing:-6.745065px;}
.ws32{word-spacing:-6.742553px;}
.ws93{word-spacing:-6.742517px;}
.ws61{word-spacing:-6.742417px;}
.wsde{word-spacing:-6.732121px;}
.wsf0{word-spacing:-6.732105px;}
.wseb{word-spacing:-6.732104px;}
.ws79{word-spacing:-2.250300px;}
.ws8d{word-spacing:-2.245352px;}
.wsd8{word-spacing:-2.245325px;}
.wsd2{word-spacing:-2.245287px;}
.ws6c{word-spacing:-2.245245px;}
.ws4b{word-spacing:-2.245232px;}
.ws54{word-spacing:-2.245172px;}
.ws49{word-spacing:-2.245158px;}
.ws37{word-spacing:-2.245155px;}
.ws2e{word-spacing:-2.245151px;}
.ws6a{word-spacing:-2.245149px;}
.ws2f{word-spacing:-2.245072px;}
.wsd{word-spacing:-2.245065px;}
.ws65{word-spacing:-2.242598px;}
.ws48{word-spacing:-2.242516px;}
.ws5e{word-spacing:-2.232105px;}
.ws8{word-spacing:-0.066000px;}
.wsc0{word-spacing:-0.060000px;}
.wsa4{word-spacing:-0.054000px;}
.wsbf{word-spacing:-0.048000px;}
.wsb7{word-spacing:-0.032400px;}
.ws7{word-spacing:0.000000px;}
.ws38{word-spacing:2.254642px;}
.wsc3{word-spacing:2.254697px;}
.ws53{word-spacing:2.254719px;}
.ws29{word-spacing:2.254737px;}
.ws40{word-spacing:2.254755px;}
.ws9e{word-spacing:2.254793px;}
.wse7{word-spacing:2.254810px;}
.ws60{word-spacing:2.254812px;}
.ws45{word-spacing:2.254828px;}
.wsce{word-spacing:2.254849px;}
.ws28{word-spacing:2.254850px;}
.wsdc{word-spacing:2.254853px;}
.wsa0{word-spacing:2.254923px;}
.wsfa{word-spacing:2.267896px;}
.wsf7{word-spacing:2.267897px;}
.ws77{word-spacing:5.906250px;}
.ws2a{word-spacing:6.754755px;}
.ws11{word-spacing:6.754775px;}
.ws41{word-spacing:6.754806px;}
.wsc1{word-spacing:6.754853px;}
.ws52{word-spacing:6.754873px;}
.ws92{word-spacing:6.754890px;}
.wsf3{word-spacing:6.767896px;}
.wsbe{word-spacing:10.230426px;}
.wsb2{word-spacing:11.254752px;}
.wsb0{word-spacing:11.254800px;}
.wsaf{word-spacing:11.254838px;}
.wsc9{word-spacing:11.254848px;}
.ws23{word-spacing:11.257374px;}
.wsb6{word-spacing:13.176211px;}
.wsa6{word-spacing:13.176250px;}
.wsa5{word-spacing:13.176253px;}
.wsb5{word-spacing:13.176257px;}
.wsb8{word-spacing:13.176261px;}
.ws7f{word-spacing:14.440131px;}
.wsad{word-spacing:15.767896px;}
.ws76{word-spacing:18.224039px;}
.wsf8{word-spacing:18.226669px;}
.ws100{word-spacing:18.229254px;}
.ws96{word-spacing:18.229257px;}
.ws101{word-spacing:18.229258px;}
.wsa2{word-spacing:18.229283px;}
.wsbc{word-spacing:18.231581px;}
.wsba{word-spacing:18.231725px;}
.wsf6{word-spacing:18.231739px;}
.wse1{word-spacing:18.231751px;}
.wsf2{word-spacing:18.231782px;}
.wscb{word-spacing:18.231798px;}
.ws99{word-spacing:18.231802px;}
.wsef{word-spacing:18.231811px;}
.ws72{word-spacing:18.231814px;}
.ws68{word-spacing:18.231818px;}
.ws71{word-spacing:18.231820px;}
.ws1c{word-spacing:18.231821px;}
.wscc{word-spacing:18.231824px;}
.wsa3{word-spacing:18.231828px;}
.wse4{word-spacing:18.231831px;}
.wsb4{word-spacing:18.231843px;}
.wse5{word-spacing:18.231892px;}
.wsd7{word-spacing:18.234376px;}
.wsbd{word-spacing:18.234451px;}
.ws89{word-spacing:18.244869px;}
.wsdb{word-spacing:20.254935px;}
.ws44{word-spacing:22.729234px;}
.ws6f{word-spacing:22.731716px;}
.wsfd{word-spacing:22.731725px;}
.wse8{word-spacing:22.731738px;}
.ws97{word-spacing:22.731744px;}
.ws9d{word-spacing:22.731761px;}
.wsb9{word-spacing:22.731817px;}
.ws80{word-spacing:22.731820px;}
.ws4f{word-spacing:22.731888px;}
.ws82{word-spacing:22.744869px;}
.wsae{word-spacing:23.122126px;}
.ws98{word-spacing:27.231798px;}
.wsec{word-spacing:27.231815px;}
.wsc4{word-spacing:27.231851px;}
.wsd6{word-spacing:29.254790px;}
.ws85{word-spacing:31.729255px;}
.ws8f{word-spacing:31.729258px;}
.wse9{word-spacing:31.731819px;}
.ws4a{word-spacing:36.229359px;}
.wsab{word-spacing:36.231761px;}
.wsc2{word-spacing:40.731761px;}
.ws8c{word-spacing:40.731821px;}
.wsf4{word-spacing:40.734299px;}
.ws9f{word-spacing:40.734593px;}
.wsff{word-spacing:78.754742px;}
._12{margin-left:-8.539079px;}
._14{margin-left:-7.344087px;}
._2{margin-left:-5.537109px;}
._1{margin-left:-3.785948px;}
._3{margin-left:-2.373047px;}
._0{margin-left:-1.348100px;}
._a{width:17.711589px;}
._b{width:18.722556px;}
._4{width:22.730090px;}
._6{width:26.547445px;}
._7{width:27.912709px;}
._9{width:30.871339px;}
._5{width:32.058797px;}
._d{width:35.698610px;}
._e{width:36.748450px;}
._10{width:40.568521px;}
._13{width:41.748344px;}
._f{width:45.026818px;}
._11{width:46.241197px;}
._8{width:49.771749px;}
._15{width:52.957030px;}
._c{width:54.243118px;}
._17{width:63.198848px;}
._16{width:72.146665px;}
._18{width:121.565910px;}
.fc5{color:rgb(5,99,193);}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(32,33,36);}
.fc2{color:rgb(51,51,51);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(112,48,160);}
.fs7{font-size:32.399999px;}
.fs6{font-size:41.999999px;}
.fs8{font-size:48.000002px;}
.fs5{font-size:54.000000px;}
.fs9{font-size:59.999999px;}
.fs3{font-size:66.000002px;}
.fs4{font-size:72.000000px;}
.fs2{font-size:83.999997px;}
.fs0{font-size:108.000000px;}
.fs1{font-size:132.000003px;}
.y0{bottom:0.000000px;}
.yaa{bottom:5.368922px;}
.y99{bottom:5.370387px;}
.ya5{bottom:5.370389px;}
.y86{bottom:5.759514px;}
.y82{bottom:5.759520px;}
.ya7{bottom:5.759529px;}
.ya1{bottom:5.760974px;}
.y88{bottom:5.760985px;}
.y9d{bottom:5.760989px;}
.y96{bottom:7.229789px;}
.y66{bottom:8.002196px;}
.y64{bottom:8.003660px;}
.yc0{bottom:8.008055px;}
.y80{bottom:8.009519px;}
.y7d{bottom:8.009520px;}
.y92{bottom:8.010983px;}
.y94{bottom:8.010985px;}
.y5f{bottom:10.253660px;}
.y62{bottom:10.255130px;}
.y4a{bottom:11.371583px;}
.y4d{bottom:11.371584px;}
.yb2{bottom:12.509514px;}
.y8a{bottom:12.509520px;}
.yaf{bottom:12.510984px;}
.yad{bottom:12.900117px;}
.y6d{bottom:14.752196px;}
.y5d{bottom:17.482182px;}
.y7b{bottom:17.483648px;}
.y90{bottom:17.485109px;}
.ya4{bottom:18.665309px;}
.y9c{bottom:20.717039px;}
.y85{bottom:20.718504px;}
.y7f{bottom:22.967039px;}
.y61{bottom:27.456785px;}
.yb1{bottom:27.468504px;}
.y5c{bottom:45.942627px;}
.y7a{bottom:45.944093px;}
.y4c{bottom:49.318359px;}
.y47{bottom:59.967044px;}
.y7{bottom:59.967584px;}
.y1c{bottom:59.967779px;}
.yd3{bottom:59.968499px;}
.y23{bottom:114.960209px;}
.y59{bottom:116.247076px;}
.y6{bottom:116.943970px;}
.ye1{bottom:125.394284px;}
.y78{bottom:125.997809px;}
.y32{bottom:149.457269px;}
.yd2{bottom:149.458739px;}
.y22{bottom:152.906984px;}
.y58{bottom:155.600834px;}
.ye0{bottom:163.342529px;}
.y77{bottom:163.943114px;}
.y31{bottom:187.404059px;}
.y21{bottom:190.853759px;}
.y57{bottom:195.590326px;}
.ydf{bottom:201.287849px;}
.y76{bottom:201.891359px;}
.y46{bottom:221.901119px;}
.yd1{bottom:225.349364px;}
.y30{bottom:225.350834px;}
.y20{bottom:228.800534px;}
.y56{bottom:234.944099px;}
.ybc{bottom:252.245369px;}
.y45{bottom:259.847894px;}
.y2f{bottom:263.297609px;}
.ye3{bottom:266.745854px;}
.y1f{bottom:266.747309px;}
.y55{bottom:272.890874px;}
.yde{bottom:277.181399px;}
.y75{bottom:281.233154px;}
.ybb{bottom:290.192144px;}
.y44{bottom:297.794684px;}
.y2d{bottom:301.244384px;}
.yd0{bottom:301.245854px;}
.y1e{bottom:304.694099px;}
.y54{bottom:310.837649px;}
.ydd{bottom:315.129644px;}
.y74{bottom:319.181399px;}
.yba{bottom:328.138919px;}
.y5{bottom:331.276056px;}
.y43{bottom:335.741459px;}
.y2c{bottom:339.191159px;}
.yc9{bottom:342.640874px;}
.ye2{bottom:342.642329px;}
.y53{bottom:348.784424px;}
.ydc{bottom:353.074949px;}
.y73{bottom:357.126704px;}
.yb9{bottom:366.085694px;}
.y42{bottom:373.688234px;}
.y2b{bottom:377.137934px;}
.y1b{bottom:380.587649px;}
.y52{bottom:386.731199px;}
.y72{bottom:395.074949px;}
.yb8{bottom:404.032469px;}
.y41{bottom:411.635009px;}
.y2a{bottom:415.084724px;}
.ycf{bottom:418.532954px;}
.y1a{bottom:418.534424px;}
.ydb{bottom:428.968499px;}
.y71{bottom:433.020269px;}
.yb7{bottom:441.979244px;}
.y40{bottom:449.581784px;}
.y29{bottom:453.031499px;}
.y1d{bottom:456.481199px;}
.yda{bottom:466.916744px;}
.y70{bottom:470.968499px;}
.y51{bottom:479.226561px;}
.yb6{bottom:479.926019px;}
.y3f{bottom:487.528559px;}
.y28{bottom:490.978274px;}
.y19{bottom:494.427974px;}
.yce{bottom:494.429444px;}
.yd9{bottom:504.862064px;}
.y6f{bottom:508.913819px;}
.y50{bottom:515.074956px;}
.y3e{bottom:525.475349px;}
.y6e{bottom:527.901615px;}
.y27{bottom:528.925049px;}
.y18{bottom:532.374749px;}
.yd8{bottom:542.810309px;}
.yb5{bottom:555.819584px;}
.y3d{bottom:563.422124px;}
.y4f{bottom:563.906984px;}
.y2e{bottom:566.871824px;}
.ycd{bottom:570.320069px;}
.y17{bottom:570.321539px;}
.y6c{bottom:570.436520px;}
.y8e{bottom:584.590574px;}
.yeb{bottom:588.598394px;}
.y4e{bottom:592.366694px;}
.yb4{bottom:593.766359px;}
.y6b{bottom:598.886726px;}
.y3c{bottom:601.368899px;}
.y26{bottom:604.818599px;}
.y16{bottom:608.268314px;}
.y8d{bottom:613.049564px;}
.yed{bottom:614.171624px;}
.ye9{bottom:619.796624px;}
.yef{bottom:623.171624px;}
.yea{bottom:626.546624px;}
.y6a{bottom:627.338380px;}
.ye5{bottom:629.921624px;}
.yb3{bottom:631.713134px;}
.y5a{bottom:639.315674px;}
.y25{bottom:642.765374px;}
.y15{bottom:646.215089px;}
.ycc{bottom:646.216559px;}
.y4b{bottom:646.915280px;}
.y69{bottom:649.041505px;}
.y8c{bottom:650.996339px;}
.yec{bottom:652.116944px;}
.ye8{bottom:657.741944px;}
.yee{bottom:661.116944px;}
.ye4{bottom:667.866944px;}
.y68{bottom:677.493170px;}
.y24{bottom:680.712164px;}
.y14{bottom:684.161864px;}
.y8b{bottom:688.944584px;}
.y67{bottom:699.194830px;}
.y4{bottom:708.525966px;}
.y3b{bottom:718.658939px;}
.y49{bottom:720.710451px;}
.ycb{bottom:722.107184px;}
.y13{bottom:722.108639px;}
.y65{bottom:727.646480px;}
.yb0{bottom:732.647466px;}
.yac{bottom:739.294923px;}
.yae{bottom:740.125491px;}
.y63{bottom:749.346686px;}
.yc8{bottom:751.333739px;}
.y3{bottom:755.682261px;}
.y3a{bottom:756.605714px;}
.y11{bottom:760.055414px;}
.y48{bottom:769.541744px;}
.yab{bottom:775.167486px;}
.y60{bottom:778.923340px;}
.yc7{bottom:779.795654px;}
.ya8{bottom:782.645511px;}
.y89{bottom:783.086430px;}
.ya9{bottom:783.477538px;}
.y5e{bottom:787.524895px;}
.y39{bottom:794.552489px;}
.y10{bottom:798.002204px;}
.yd7{bottom:798.003659px;}
.y2{bottom:804.826771px;}
.y84{bottom:809.295411px;}
.ya6{bottom:810.938961px;}
.ya3{bottom:812.600102px;}
.y87{bottom:816.773436px;}
.yc6{bottom:817.742429px;}
.ya2{bottom:818.416986px;}
.y5b{bottom:823.453127px;}
.y38{bottom:832.499264px;}
.yf{bottom:835.948979px;}
.y83{bottom:843.711915px;}
.ya0{bottom:846.708992px;}
.y1{bottom:847.795531px;}
.y9f{bottom:854.188476px;}
.yc5{bottom:855.689204px;}
.y81{bottom:869.919435px;}
.y37{bottom:870.446039px;}
.yca{bottom:873.894284px;}
.ye{bottom:873.895754px;}
.y9e{bottom:882.477546px;}
.y7e{bottom:897.251957px;}
.y9b{bottom:901.936517px;}
.y7c{bottom:904.729980px;}
.y36{bottom:908.392829px;}
.y9a{bottom:909.416016px;}
.y98{bottom:910.246578px;}
.yd{bottom:911.842529px;}
.y79{bottom:937.291986px;}
.y35{bottom:946.339604px;}
.yc{bottom:949.789304px;}
.yd6{bottom:949.790774px;}
.yc4{bottom:949.831056px;}
.y93{bottom:953.622066px;}
.y97{bottom:954.184566px;}
.y95{bottom:955.848631px;}
.yc3{bottom:976.040046px;}
.y34{bottom:984.286379px;}
.yb{bottom:987.736079px;}
.y91{bottom:988.101562px;}
.yc2{bottom:995.496095px;}
.y8f{bottom:1013.185546px;}
.yc1{bottom:1021.705079px;}
.y33{bottom:1022.233155px;}
.yd5{bottom:1025.681397px;}
.ya{bottom:1025.682861px;}
.ybf{bottom:1049.039062px;}
.ybe{bottom:1056.515625px;}
.ye7{bottom:1060.181397px;}
.y9{bottom:1063.629639px;}
.ybd{bottom:1089.079101px;}
.ye6{bottom:1098.126710px;}
.y12{bottom:1101.576416px;}
.yd4{bottom:1101.577881px;}
.y8{bottom:1139.523194px;}
.h25{height:17.794922px;}
.h1a{height:19.458984px;}
.h1c{height:20.633789px;}
.h11{height:21.700195px;}
.h12{height:21.701660px;}
.h15{height:23.957520px;}
.h1b{height:23.958984px;}
.h1e{height:24.546387px;}
.hc{height:26.201660px;}
.h18{height:26.207520px;}
.h20{height:26.208984px;}
.h26{height:27.870117px;}
.h13{height:28.450195px;}
.hf{height:28.451660px;}
.h23{height:31.091308px;}
.h1d{height:31.289999px;}
.h22{height:34.415038px;}
.h19{height:34.416504px;}
.h8{height:34.723389px;}
.h24{height:35.520001px;}
.h1f{height:35.760001px;}
.h16{height:38.915039px;}
.h10{height:39.960000px;}
.hd{height:40.230000px;}
.h21{height:41.165038px;}
.h28{height:41.166504px;}
.he{height:43.404785px;}
.h27{height:44.399999px;}
.h17{height:48.858398px;}
.h3{height:57.585935px;}
.h7{height:58.910158px;}
.h5{height:59.167970px;}
.h6{height:59.715822px;}
.ha{height:64.546875px;}
.hb{height:65.919433px;}
.h14{height:65.920899px;}
.h9{height:72.670166px;}
.h2{height:74.039063px;}
.h1{height:90.492190px;}
.h4{height:107.625000px;}
.h0{height:1263.000000px;}
.w22{width:11.250000px;}
.w1c{width:23.625000px;}
.w30{width:31.500000px;}
.w24{width:36.000000px;}
.w26{width:42.750000px;}
.w25{width:46.125000px;}
.w18{width:47.250000px;}
.w2a{width:48.375000px;}
.w1f{width:50.625000px;}
.wb{width:54.000000px;}
.w17{width:55.125000px;}
.w23{width:58.500000px;}
.w20{width:60.750000px;}
.w12{width:63.000000px;}
.w13{width:64.125000px;}
.w21{width:65.250000px;}
.w7{width:70.875000px;}
.w2d{width:72.000000px;}
.w15{width:74.250000px;}
.w1d{width:76.500000px;}
.w1b{width:78.750000px;}
.w2c{width:79.875000px;}
.w16{width:84.375000px;}
.w14{width:91.125000px;}
.wc{width:92.250000px;}
.w1e{width:99.000000px;}
.w2f{width:100.125000px;}
.wa{width:108.000000px;}
.w11{width:110.250000px;}
.w10{width:113.625000px;}
.w2b{width:115.875000px;}
.w8{width:118.125000px;}
.wf{width:119.250000px;}
.w6{width:124.875000px;}
.w29{width:127.125000px;}
.we{width:135.000000px;}
.w2e{width:144.000000px;}
.w28{width:160.875000px;}
.w9{width:167.625000px;}
.w5{width:184.500000px;}
.w2{width:225.000000px;}
.w3{width:226.125000px;}
.w1a{width:369.000000px;}
.w4{width:498.375000px;}
.w27{width:675.000000px;}
.wd{width:676.125000px;}
.w19{width:709.875000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x42{left:4.500000px;}
.xc{left:7.875000px;}
.x1a{left:9.000000px;}
.x30{left:11.461229px;}
.x2d{left:13.512171px;}
.x46{left:15.115351px;}
.x44{left:16.195290px;}
.x16{left:17.225867px;}
.x33{left:19.912273px;}
.x1d{left:21.275780px;}
.x29{left:23.642776px;}
.x1b{left:25.217777px;}
.x18{left:27.026779px;}
.x24{left:28.183280px;}
.x1f{left:29.470328px;}
.x3c{left:31.362619px;}
.x26{left:32.478581px;}
.x45{left:33.988438px;}
.x21{left:35.369848px;}
.x28{left:36.913367px;}
.x43{left:38.902450px;}
.x19{left:41.539367px;}
.x14{left:44.300119px;}
.x4f{left:47.317172px;}
.x4e{left:50.854220px;}
.x2f{left:52.784758px;}
.x1c{left:56.272247px;}
.x36{left:57.347792px;}
.x20{left:59.080267px;}
.x34{left:60.169269px;}
.x1e{left:61.550766px;}
.x35{left:63.112421px;}
.x32{left:64.489335px;}
.x22{left:65.846240px;}
.x2e{left:69.970465px;}
.x31{left:71.239335px;}
.x47{left:78.783740px;}
.x12{left:90.596240px;}
.xf{left:100.125000px;}
.xb{left:101.250000px;}
.x8{left:108.000000px;}
.x10{left:135.000000px;}
.x37{left:145.491471px;}
.x1{left:154.301254px;}
.xa{left:160.875000px;}
.x9{left:162.000000px;}
.x38{left:186.750000px;}
.x23{left:243.000000px;}
.x3{left:252.558981px;}
.x48{left:268.875000px;}
.x39{left:277.875000px;}
.x13{left:292.500000px;}
.x4{left:294.377340px;}
.x3a{left:301.500000px;}
.x2{left:302.694300px;}
.x5{left:317.278136px;}
.x6{left:323.452980px;}
.xd{left:326.250000px;}
.x25{left:362.250000px;}
.x3b{left:378.000000px;}
.x49{left:396.000000px;}
.x15{left:417.375000px;}
.x11{left:437.286690px;}
.x7{left:441.871695px;}
.x4a{left:444.375000px;}
.x27{left:475.875000px;}
.x3d{left:477.000000px;}
.x17{left:488.250000px;}
.xe{left:552.375000px;}
.x4b{left:560.250000px;}
.x2a{left:586.125000px;}
.x3e{left:590.625000px;}
.x4c{left:640.125000px;}
.x3f{left:641.250000px;}
.x2b{left:657.000000px;}
.x40{left:691.875000px;}
.x4d{left:711.000000px;}
.x2c{left:720.000000px;}
.x41{left:752.625000px;}
@media print{
.v1{vertical-align:-7.977600pt;}
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.000130pt;}
.ls6{letter-spacing:0.000132pt;}
.ls5{letter-spacing:0.000220pt;}
.ls7{letter-spacing:11.760072pt;}
.ls9{letter-spacing:16.276201pt;}
.ls8{letter-spacing:16.276321pt;}
.ls2{letter-spacing:20.264755pt;}
.ls1{letter-spacing:20.267106pt;}
.ls3{letter-spacing:26.642980pt;}
.ws0{word-spacing:-40.593750pt;}
.ws9{word-spacing:-34.260418pt;}
.ws1{word-spacing:-23.104378pt;}
.ws2{word-spacing:-23.104324pt;}
.ws5{word-spacing:-18.890686pt;}
.ws4{word-spacing:-18.890652pt;}
.ws3{word-spacing:-18.890634pt;}
.wsf1{word-spacing:-18.000307pt;}
.wsb3{word-spacing:-17.996867pt;}
.wsca{word-spacing:-17.996851pt;}
.ws7d{word-spacing:-17.995894pt;}
.ws8b{word-spacing:-17.995854pt;}
.ws95{word-spacing:-17.995836pt;}
.ws3b{word-spacing:-17.995830pt;}
.ws2b{word-spacing:-17.995828pt;}
.ws24{word-spacing:-17.995813pt;}
.ws6e{word-spacing:-17.995807pt;}
.ws36{word-spacing:-17.995805pt;}
.wsda{word-spacing:-17.995791pt;}
.ws39{word-spacing:-17.995780pt;}
.wsdd{word-spacing:-17.995776pt;}
.wsc{word-spacing:-17.995774pt;}
.wsd1{word-spacing:-17.995770pt;}
.ws21{word-spacing:-17.995765pt;}
.ws3a{word-spacing:-17.995762pt;}
.ws5f{word-spacing:-17.995757pt;}
.ws88{word-spacing:-17.995756pt;}
.wsf5{word-spacing:-17.995750pt;}
.ws94{word-spacing:-17.995745pt;}
.ws8a{word-spacing:-17.995742pt;}
.ws70{word-spacing:-17.995740pt;}
.ws33{word-spacing:-17.995738pt;}
.ws1b{word-spacing:-17.995734pt;}
.ws26{word-spacing:-17.995728pt;}
.ws7e{word-spacing:-17.995714pt;}
.wse0{word-spacing:-17.995708pt;}
.ws64{word-spacing:-17.995702pt;}
.ws87{word-spacing:-17.995700pt;}
.ws8e{word-spacing:-17.995693pt;}
.wse3{word-spacing:-17.995691pt;}
.ws2c{word-spacing:-17.995690pt;}
.ws10{word-spacing:-17.995689pt;}
.ws73{word-spacing:-17.995688pt;}
.ws67{word-spacing:-17.995686pt;}
.ws42{word-spacing:-17.995685pt;}
.ws83{word-spacing:-17.995662pt;}
.ws9c{word-spacing:-17.995654pt;}
.ws66{word-spacing:-17.995620pt;}
.ws75{word-spacing:-17.995614pt;}
.ws9a{word-spacing:-17.993392pt;}
.wsb{word-spacing:-17.993354pt;}
.wsfc{word-spacing:-17.993351pt;}
.wsa{word-spacing:-17.993350pt;}
.ws4d{word-spacing:-17.993348pt;}
.ws7b{word-spacing:-17.993347pt;}
.ws50{word-spacing:-17.993300pt;}
.wsdf{word-spacing:-17.984135pt;}
.ws1d{word-spacing:-17.984094pt;}
.wsed{word-spacing:-17.984092pt;}
.wsf9{word-spacing:-17.984091pt;}
.wse6{word-spacing:-17.984086pt;}
.wse2{word-spacing:-17.984055pt;}
.ws84{word-spacing:-17.981771pt;}
.wsb1{word-spacing:-17.981703pt;}
.ws6{word-spacing:-14.724522pt;}
.ws27{word-spacing:-13.995922pt;}
.wsd3{word-spacing:-13.995900pt;}
.wsa9{word-spacing:-13.995822pt;}
.ws6b{word-spacing:-13.995805pt;}
.ws7a{word-spacing:-13.995802pt;}
.ws9b{word-spacing:-13.995799pt;}
.ws18{word-spacing:-13.995778pt;}
.ws15{word-spacing:-13.995774pt;}
.ws56{word-spacing:-13.995768pt;}
.wsf{word-spacing:-13.995764pt;}
.ws7c{word-spacing:-13.995762pt;}
.ws46{word-spacing:-13.995754pt;}
.ws47{word-spacing:-13.995744pt;}
.wscf{word-spacing:-13.995739pt;}
.ws5a{word-spacing:-13.995734pt;}
.ws35{word-spacing:-13.995720pt;}
.ws2d{word-spacing:-13.995708pt;}
.ws3c{word-spacing:-13.995705pt;}
.ws1e{word-spacing:-13.995702pt;}
.ws78{word-spacing:-13.995694pt;}
.ws58{word-spacing:-13.995690pt;}
.ws20{word-spacing:-13.995688pt;}
.ws34{word-spacing:-13.995687pt;}
.ws3e{word-spacing:-13.995686pt;}
.ws81{word-spacing:-13.995682pt;}
.ws22{word-spacing:-13.995676pt;}
.ws16{word-spacing:-13.995660pt;}
.wsd0{word-spacing:-13.995654pt;}
.wsd4{word-spacing:-13.995624pt;}
.ws74{word-spacing:-13.995620pt;}
.wsa7{word-spacing:-13.995614pt;}
.ws4e{word-spacing:-13.993380pt;}
.ws4c{word-spacing:-13.993348pt;}
.ws43{word-spacing:-13.986390pt;}
.wsee{word-spacing:-13.984094pt;}
.ws59{word-spacing:-13.984092pt;}
.ws5c{word-spacing:-13.984091pt;}
.wsfe{word-spacing:-13.984083pt;}
.ws1a{word-spacing:-13.981771pt;}
.wsea{word-spacing:-9.995862pt;}
.wsd5{word-spacing:-9.995845pt;}
.wsfb{word-spacing:-9.995805pt;}
.ws17{word-spacing:-9.995802pt;}
.ws6d{word-spacing:-9.995776pt;}
.ws5b{word-spacing:-9.995774pt;}
.ws90{word-spacing:-9.995771pt;}
.ws55{word-spacing:-9.995760pt;}
.ws86{word-spacing:-9.995757pt;}
.wscd{word-spacing:-9.995742pt;}
.ws31{word-spacing:-9.995740pt;}
.wsc5{word-spacing:-9.995708pt;}
.ws12{word-spacing:-9.995703pt;}
.ws19{word-spacing:-9.995690pt;}
.ws25{word-spacing:-9.995688pt;}
.ws30{word-spacing:-9.995687pt;}
.wsa8{word-spacing:-9.995682pt;}
.ws14{word-spacing:-9.995659pt;}
.wsaa{word-spacing:-9.995654pt;}
.wsbb{word-spacing:-9.995614pt;}
.ws91{word-spacing:-9.993377pt;}
.ws5d{word-spacing:-9.993348pt;}
.ws51{word-spacing:-9.993260pt;}
.ws1f{word-spacing:-9.984093pt;}
.ws57{word-spacing:-9.984092pt;}
.ws3d{word-spacing:-9.983992pt;}
.wsa1{word-spacing:-5.995860pt;}
.wsc6{word-spacing:-5.995854pt;}
.ws3f{word-spacing:-5.995782pt;}
.ws62{word-spacing:-5.995774pt;}
.wsc8{word-spacing:-5.995761pt;}
.ws63{word-spacing:-5.995734pt;}
.wsd9{word-spacing:-5.995707pt;}
.wsc7{word-spacing:-5.995692pt;}
.ws13{word-spacing:-5.995689pt;}
.wse{word-spacing:-5.995688pt;}
.ws69{word-spacing:-5.995667pt;}
.wsac{word-spacing:-5.995614pt;}
.ws32{word-spacing:-5.993380pt;}
.ws93{word-spacing:-5.993348pt;}
.ws61{word-spacing:-5.993260pt;}
.wsde{word-spacing:-5.984108pt;}
.wsf0{word-spacing:-5.984093pt;}
.wseb{word-spacing:-5.984092pt;}
.ws79{word-spacing:-2.000267pt;}
.ws8d{word-spacing:-1.995868pt;}
.wsd8{word-spacing:-1.995845pt;}
.wsd2{word-spacing:-1.995810pt;}
.ws6c{word-spacing:-1.995774pt;}
.ws4b{word-spacing:-1.995762pt;}
.ws54{word-spacing:-1.995708pt;}
.ws49{word-spacing:-1.995696pt;}
.ws37{word-spacing:-1.995693pt;}
.ws2e{word-spacing:-1.995690pt;}
.ws6a{word-spacing:-1.995688pt;}
.ws2f{word-spacing:-1.995620pt;}
.wsd{word-spacing:-1.995614pt;}
.ws65{word-spacing:-1.993420pt;}
.ws48{word-spacing:-1.993348pt;}
.ws5e{word-spacing:-1.984093pt;}
.ws8{word-spacing:-0.058667pt;}
.wsc0{word-spacing:-0.053333pt;}
.wsa4{word-spacing:-0.048000pt;}
.wsbf{word-spacing:-0.042667pt;}
.wsb7{word-spacing:-0.028800pt;}
.ws7{word-spacing:0.000000pt;}
.ws38{word-spacing:2.004126pt;}
.wsc3{word-spacing:2.004175pt;}
.ws53{word-spacing:2.004195pt;}
.ws29{word-spacing:2.004210pt;}
.ws40{word-spacing:2.004226pt;}
.ws9e{word-spacing:2.004260pt;}
.wse7{word-spacing:2.004275pt;}
.ws60{word-spacing:2.004278pt;}
.ws45{word-spacing:2.004292pt;}
.wsce{word-spacing:2.004310pt;}
.ws28{word-spacing:2.004311pt;}
.wsdc{word-spacing:2.004314pt;}
.wsa0{word-spacing:2.004376pt;}
.wsfa{word-spacing:2.015907pt;}
.wsf7{word-spacing:2.015908pt;}
.ws77{word-spacing:5.250000pt;}
.ws2a{word-spacing:6.004226pt;}
.ws11{word-spacing:6.004244pt;}
.ws41{word-spacing:6.004272pt;}
.wsc1{word-spacing:6.004314pt;}
.ws52{word-spacing:6.004332pt;}
.ws92{word-spacing:6.004346pt;}
.wsf3{word-spacing:6.015908pt;}
.wsbe{word-spacing:9.093712pt;}
.wsb2{word-spacing:10.004224pt;}
.wsb0{word-spacing:10.004266pt;}
.wsaf{word-spacing:10.004300pt;}
.wsc9{word-spacing:10.004309pt;}
.ws23{word-spacing:10.006555pt;}
.wsb6{word-spacing:11.712188pt;}
.wsa6{word-spacing:11.712222pt;}
.wsa5{word-spacing:11.712225pt;}
.wsb5{word-spacing:11.712229pt;}
.wsb8{word-spacing:11.712232pt;}
.ws7f{word-spacing:12.835672pt;}
.wsad{word-spacing:14.015907pt;}
.ws76{word-spacing:16.199146pt;}
.wsf8{word-spacing:16.201484pt;}
.ws100{word-spacing:16.203782pt;}
.ws96{word-spacing:16.203784pt;}
.ws101{word-spacing:16.203785pt;}
.wsa2{word-spacing:16.203807pt;}
.wsbc{word-spacing:16.205850pt;}
.wsba{word-spacing:16.205977pt;}
.wsf6{word-spacing:16.205990pt;}
.wse1{word-spacing:16.206001pt;}
.wsf2{word-spacing:16.206028pt;}
.wscb{word-spacing:16.206043pt;}
.ws99{word-spacing:16.206047pt;}
.wsef{word-spacing:16.206055pt;}
.ws72{word-spacing:16.206057pt;}
.ws68{word-spacing:16.206061pt;}
.ws71{word-spacing:16.206062pt;}
.ws1c{word-spacing:16.206063pt;}
.wscc{word-spacing:16.206065pt;}
.wsa3{word-spacing:16.206069pt;}
.wse4{word-spacing:16.206072pt;}
.wsb4{word-spacing:16.206083pt;}
.wse5{word-spacing:16.206126pt;}
.wsd7{word-spacing:16.208335pt;}
.wsbd{word-spacing:16.208401pt;}
.ws89{word-spacing:16.217661pt;}
.wsdb{word-spacing:18.004386pt;}
.ws44{word-spacing:20.203764pt;}
.ws6f{word-spacing:20.205970pt;}
.wsfd{word-spacing:20.205977pt;}
.wse8{word-spacing:20.205989pt;}
.ws97{word-spacing:20.205995pt;}
.ws9d{word-spacing:20.206010pt;}
.wsb9{word-spacing:20.206059pt;}
.ws80{word-spacing:20.206063pt;}
.ws4f{word-spacing:20.206122pt;}
.ws82{word-spacing:20.217661pt;}
.wsae{word-spacing:20.553001pt;}
.ws98{word-spacing:24.206043pt;}
.wsec{word-spacing:24.206057pt;}
.wsc4{word-spacing:24.206090pt;}
.wsd6{word-spacing:26.004258pt;}
.ws85{word-spacing:28.203782pt;}
.ws8f{word-spacing:28.203785pt;}
.wse9{word-spacing:28.206061pt;}
.ws4a{word-spacing:32.203875pt;}
.wsab{word-spacing:32.206010pt;}
.wsc2{word-spacing:36.206010pt;}
.ws8c{word-spacing:36.206063pt;}
.wsf4{word-spacing:36.208266pt;}
.ws9f{word-spacing:36.208527pt;}
.wsff{word-spacing:70.004215pt;}
._12{margin-left:-7.590293pt;}
._14{margin-left:-6.528077pt;}
._2{margin-left:-4.921875pt;}
._1{margin-left:-3.365287pt;}
._3{margin-left:-2.109375pt;}
._0{margin-left:-1.198311pt;}
._a{width:15.743635pt;}
._b{width:16.642272pt;}
._4{width:20.204524pt;}
._6{width:23.597729pt;}
._7{width:24.811297pt;}
._9{width:27.441190pt;}
._5{width:28.496708pt;}
._d{width:31.732098pt;}
._e{width:32.665289pt;}
._10{width:36.060908pt;}
._13{width:37.109639pt;}
._f{width:40.023838pt;}
._11{width:41.103287pt;}
._8{width:44.241555pt;}
._15{width:47.072916pt;}
._c{width:48.216105pt;}
._17{width:56.176753pt;}
._16{width:64.130369pt;}
._18{width:108.058587pt;}
.fs7{font-size:28.799999pt;}
.fs6{font-size:37.333332pt;}
.fs8{font-size:42.666668pt;}
.fs5{font-size:48.000000pt;}
.fs9{font-size:53.333332pt;}
.fs3{font-size:58.666668pt;}
.fs4{font-size:64.000000pt;}
.fs2{font-size:74.666664pt;}
.fs0{font-size:96.000000pt;}
.fs1{font-size:117.333336pt;}
.y0{bottom:0.000000pt;}
.yaa{bottom:4.772375pt;}
.y99{bottom:4.773677pt;}
.ya5{bottom:4.773679pt;}
.y86{bottom:5.119568pt;}
.y82{bottom:5.119574pt;}
.ya7{bottom:5.119582pt;}
.ya1{bottom:5.120866pt;}
.y88{bottom:5.120875pt;}
.y9d{bottom:5.120879pt;}
.y96{bottom:6.426479pt;}
.y66{bottom:7.113063pt;}
.y64{bottom:7.114364pt;}
.yc0{bottom:7.118271pt;}
.y80{bottom:7.119572pt;}
.y7d{bottom:7.119573pt;}
.y92{bottom:7.120874pt;}
.y94{bottom:7.120875pt;}
.y5f{bottom:9.114364pt;}
.y62{bottom:9.115671pt;}
.y4a{bottom:10.108073pt;}
.y4d{bottom:10.108075pt;}
.yb2{bottom:11.119568pt;}
.y8a{bottom:11.119574pt;}
.yaf{bottom:11.120875pt;}
.yad{bottom:11.466771pt;}
.y6d{bottom:13.113063pt;}
.y5d{bottom:15.539717pt;}
.y7b{bottom:15.541020pt;}
.y90{bottom:15.542319pt;}
.ya4{bottom:16.591386pt;}
.y9c{bottom:18.415146pt;}
.y85{bottom:18.416448pt;}
.y7f{bottom:20.415146pt;}
.y61{bottom:24.406031pt;}
.yb1{bottom:24.416448pt;}
.y5c{bottom:40.837891pt;}
.y7a{bottom:40.839193pt;}
.y4c{bottom:43.838541pt;}
.y47{bottom:53.304039pt;}
.y7{bottom:53.304519pt;}
.y1c{bottom:53.304692pt;}
.yd3{bottom:53.305332pt;}
.y23{bottom:102.186852pt;}
.y59{bottom:103.330734pt;}
.y6{bottom:103.950196pt;}
.ye1{bottom:111.461585pt;}
.y78{bottom:111.998052pt;}
.y32{bottom:132.850905pt;}
.yd2{bottom:132.852212pt;}
.y22{bottom:135.917319pt;}
.y58{bottom:138.311852pt;}
.ye0{bottom:145.193359pt;}
.y77{bottom:145.727212pt;}
.y31{bottom:166.581385pt;}
.y21{bottom:169.647785pt;}
.y57{bottom:173.858068pt;}
.ydf{bottom:178.922532pt;}
.y76{bottom:179.458985pt;}
.y46{bottom:197.245439pt;}
.yd1{bottom:200.310545pt;}
.y30{bottom:200.311852pt;}
.y20{bottom:203.378252pt;}
.y56{bottom:208.839199pt;}
.ybc{bottom:224.218105pt;}
.y45{bottom:230.975905pt;}
.y2f{bottom:234.042319pt;}
.ye3{bottom:237.107425pt;}
.y1f{bottom:237.108719pt;}
.y55{bottom:242.569665pt;}
.yde{bottom:246.383465pt;}
.y75{bottom:249.985025pt;}
.ybb{bottom:257.948572pt;}
.y44{bottom:264.706385pt;}
.y2d{bottom:267.772785pt;}
.yd0{bottom:267.774092pt;}
.y1e{bottom:270.839199pt;}
.y54{bottom:276.300132pt;}
.ydd{bottom:280.115239pt;}
.y74{bottom:283.716799pt;}
.yba{bottom:291.679039pt;}
.y5{bottom:294.467605pt;}
.y43{bottom:298.436852pt;}
.y2c{bottom:301.503252pt;}
.yc9{bottom:304.569665pt;}
.ye2{bottom:304.570959pt;}
.y53{bottom:310.030599pt;}
.ydc{bottom:313.844399pt;}
.y73{bottom:317.445959pt;}
.yb9{bottom:325.409505pt;}
.y42{bottom:332.167319pt;}
.y2b{bottom:335.233719pt;}
.y1b{bottom:338.300132pt;}
.y52{bottom:343.761065pt;}
.y72{bottom:351.177732pt;}
.yb8{bottom:359.139972pt;}
.y41{bottom:365.897785pt;}
.y2a{bottom:368.964199pt;}
.ycf{bottom:372.029292pt;}
.y1a{bottom:372.030599pt;}
.ydb{bottom:381.305332pt;}
.y71{bottom:384.906905pt;}
.yb7{bottom:392.870439pt;}
.y40{bottom:399.628252pt;}
.y29{bottom:402.694665pt;}
.y1d{bottom:405.761065pt;}
.yda{bottom:415.037105pt;}
.y70{bottom:418.638665pt;}
.y51{bottom:425.979165pt;}
.yb6{bottom:426.600905pt;}
.y3f{bottom:433.358719pt;}
.y28{bottom:436.425132pt;}
.y19{bottom:439.491532pt;}
.yce{bottom:439.492839pt;}
.yd9{bottom:448.766279pt;}
.y6f{bottom:452.367839pt;}
.y50{bottom:457.844405pt;}
.y3e{bottom:467.089199pt;}
.y6e{bottom:469.245880pt;}
.y27{bottom:470.155599pt;}
.y18{bottom:473.221999pt;}
.yd8{bottom:482.498052pt;}
.yb5{bottom:494.061852pt;}
.y3d{bottom:500.819665pt;}
.y4f{bottom:501.250652pt;}
.y2e{bottom:503.886065pt;}
.ycd{bottom:506.951172pt;}
.y17{bottom:506.952479pt;}
.y6c{bottom:507.054684pt;}
.y8e{bottom:519.636065pt;}
.yeb{bottom:523.198572pt;}
.y4e{bottom:526.548172pt;}
.yb4{bottom:527.792319pt;}
.y6b{bottom:532.343756pt;}
.y3c{bottom:534.550132pt;}
.y26{bottom:537.616532pt;}
.y16{bottom:540.682945pt;}
.y8d{bottom:544.932945pt;}
.yed{bottom:545.930332pt;}
.ye9{bottom:550.930332pt;}
.yef{bottom:553.930332pt;}
.yea{bottom:556.930332pt;}
.y6a{bottom:557.634115pt;}
.ye5{bottom:559.930332pt;}
.yb3{bottom:561.522785pt;}
.y5a{bottom:568.280599pt;}
.y25{bottom:571.346999pt;}
.y15{bottom:574.413412pt;}
.ycc{bottom:574.414719pt;}
.y4b{bottom:575.035804pt;}
.y69{bottom:576.925783pt;}
.y8c{bottom:578.663412pt;}
.yec{bottom:579.659505pt;}
.ye8{bottom:584.659505pt;}
.yee{bottom:587.659505pt;}
.ye4{bottom:593.659505pt;}
.y68{bottom:602.216151pt;}
.y24{bottom:605.077479pt;}
.y14{bottom:608.143879pt;}
.y8b{bottom:612.395185pt;}
.y67{bottom:621.506516pt;}
.y4{bottom:629.800858pt;}
.y3b{bottom:638.807945pt;}
.y49{bottom:640.631512pt;}
.ycb{bottom:641.873052pt;}
.y13{bottom:641.874345pt;}
.y65{bottom:646.796871pt;}
.yb0{bottom:651.242192pt;}
.yac{bottom:657.151043pt;}
.yae{bottom:657.889325pt;}
.y63{bottom:666.085943pt;}
.yc8{bottom:667.852212pt;}
.y3{bottom:671.717565pt;}
.y3a{bottom:672.538412pt;}
.y11{bottom:675.604812pt;}
.y48{bottom:684.037105pt;}
.yab{bottom:689.037765pt;}
.y60{bottom:692.376303pt;}
.yc7{bottom:693.151692pt;}
.ya8{bottom:695.684898pt;}
.y89{bottom:696.076827pt;}
.ya9{bottom:696.424478pt;}
.y5e{bottom:700.022129pt;}
.y39{bottom:706.268879pt;}
.y10{bottom:709.335292pt;}
.yd7{bottom:709.336585pt;}
.y2{bottom:715.401574pt;}
.y84{bottom:719.373699pt;}
.ya6{bottom:720.834632pt;}
.ya3{bottom:722.311201pt;}
.y87{bottom:726.020832pt;}
.yc6{bottom:726.882159pt;}
.ya2{bottom:727.481765pt;}
.y5b{bottom:731.958335pt;}
.y38{bottom:739.999345pt;}
.yf{bottom:743.065759pt;}
.y83{bottom:749.966147pt;}
.ya0{bottom:752.630215pt;}
.y1{bottom:753.596028pt;}
.y9f{bottom:759.278645pt;}
.yc5{bottom:760.612625pt;}
.y81{bottom:773.261720pt;}
.y37{bottom:773.729812pt;}
.yca{bottom:776.794919pt;}
.ye{bottom:776.796225pt;}
.y9e{bottom:784.424485pt;}
.y7e{bottom:797.557295pt;}
.y9b{bottom:801.721348pt;}
.y7c{bottom:804.204427pt;}
.y36{bottom:807.460292pt;}
.y9a{bottom:808.369792pt;}
.y98{bottom:809.108070pt;}
.yd{bottom:810.526692pt;}
.y79{bottom:833.148432pt;}
.y35{bottom:841.190759pt;}
.yc{bottom:844.257159pt;}
.yd6{bottom:844.258465pt;}
.yc4{bottom:844.294272pt;}
.y93{bottom:847.664058pt;}
.y97{bottom:848.164058pt;}
.y95{bottom:849.643227pt;}
.yc3{bottom:867.591152pt;}
.y34{bottom:874.921225pt;}
.yb{bottom:877.987625pt;}
.y91{bottom:878.312500pt;}
.yc2{bottom:884.885417pt;}
.y8f{bottom:900.609375pt;}
.yc1{bottom:908.182292pt;}
.y33{bottom:908.651693pt;}
.yd5{bottom:911.716797pt;}
.ya{bottom:911.718099pt;}
.ybf{bottom:932.479167pt;}
.ybe{bottom:939.125000pt;}
.ye7{bottom:942.383464pt;}
.y9{bottom:945.448568pt;}
.ybd{bottom:968.070312pt;}
.ye6{bottom:976.112631pt;}
.y12{bottom:979.179036pt;}
.yd4{bottom:979.180339pt;}
.y8{bottom:1012.909505pt;}
.h25{height:15.817708pt;}
.h1a{height:17.296875pt;}
.h1c{height:18.341146pt;}
.h11{height:19.289063pt;}
.h12{height:19.290365pt;}
.h15{height:21.295573pt;}
.h1b{height:21.296875pt;}
.h1e{height:21.819010pt;}
.hc{height:23.290364pt;}
.h18{height:23.295573pt;}
.h20{height:23.296875pt;}
.h26{height:24.773437pt;}
.h13{height:25.289063pt;}
.hf{height:25.290364pt;}
.h23{height:27.636719pt;}
.h1d{height:27.813332pt;}
.h22{height:30.591145pt;}
.h19{height:30.592448pt;}
.h8{height:30.865235pt;}
.h24{height:31.573334pt;}
.h1f{height:31.786668pt;}
.h16{height:34.591145pt;}
.h10{height:35.520000pt;}
.hd{height:35.760000pt;}
.h21{height:36.591145pt;}
.h28{height:36.592448pt;}
.he{height:38.582031pt;}
.h27{height:39.466666pt;}
.h17{height:43.429688pt;}
.h3{height:51.187498pt;}
.h7{height:52.364585pt;}
.h5{height:52.593751pt;}
.h6{height:53.080730pt;}
.ha{height:57.375000pt;}
.hb{height:58.595052pt;}
.h14{height:58.596355pt;}
.h9{height:64.595703pt;}
.h2{height:65.812500pt;}
.h1{height:80.437502pt;}
.h4{height:95.666667pt;}
.h0{height:1122.666667pt;}
.w22{width:10.000000pt;}
.w1c{width:21.000000pt;}
.w30{width:28.000000pt;}
.w24{width:32.000000pt;}
.w26{width:38.000000pt;}
.w25{width:41.000000pt;}
.w18{width:42.000000pt;}
.w2a{width:43.000000pt;}
.w1f{width:45.000000pt;}
.wb{width:48.000000pt;}
.w17{width:49.000000pt;}
.w23{width:52.000000pt;}
.w20{width:54.000000pt;}
.w12{width:56.000000pt;}
.w13{width:57.000000pt;}
.w21{width:58.000000pt;}
.w7{width:63.000000pt;}
.w2d{width:64.000000pt;}
.w15{width:66.000000pt;}
.w1d{width:68.000000pt;}
.w1b{width:70.000000pt;}
.w2c{width:71.000000pt;}
.w16{width:75.000000pt;}
.w14{width:81.000000pt;}
.wc{width:82.000000pt;}
.w1e{width:88.000000pt;}
.w2f{width:89.000000pt;}
.wa{width:96.000000pt;}
.w11{width:98.000000pt;}
.w10{width:101.000000pt;}
.w2b{width:103.000000pt;}
.w8{width:105.000000pt;}
.wf{width:106.000000pt;}
.w6{width:111.000000pt;}
.w29{width:113.000000pt;}
.we{width:120.000000pt;}
.w2e{width:128.000000pt;}
.w28{width:143.000000pt;}
.w9{width:149.000000pt;}
.w5{width:164.000000pt;}
.w2{width:200.000000pt;}
.w3{width:201.000000pt;}
.w1a{width:328.000000pt;}
.w4{width:443.000000pt;}
.w27{width:600.000000pt;}
.wd{width:601.000000pt;}
.w19{width:631.000000pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x42{left:4.000000pt;}
.xc{left:7.000000pt;}
.x1a{left:8.000000pt;}
.x30{left:10.187759pt;}
.x2d{left:12.010819pt;}
.x46{left:13.435867pt;}
.x44{left:14.395813pt;}
.x16{left:15.311882pt;}
.x33{left:17.699799pt;}
.x1d{left:18.911804pt;}
.x29{left:21.015800pt;}
.x1b{left:22.415802pt;}
.x18{left:24.023804pt;}
.x24{left:25.051804pt;}
.x1f{left:26.195847pt;}
.x3c{left:27.877884pt;}
.x26{left:28.869850pt;}
.x45{left:30.211945pt;}
.x21{left:31.439865pt;}
.x28{left:32.811882pt;}
.x43{left:34.579956pt;}
.x19{left:36.923882pt;}
.x14{left:39.377884pt;}
.x4f{left:42.059708pt;}
.x4e{left:45.203751pt;}
.x2f{left:46.919785pt;}
.x1c{left:50.019775pt;}
.x36{left:50.975815pt;}
.x20{left:52.515793pt;}
.x34{left:53.483795pt;}
.x1e{left:54.711792pt;}
.x35{left:56.099930pt;}
.x32{left:57.323853pt;}
.x22{left:58.529991pt;}
.x2e{left:62.195969pt;}
.x31{left:63.323853pt;}
.x47{left:70.029991pt;}
.x12{left:80.529991pt;}
.xf{left:89.000000pt;}
.xb{left:90.000000pt;}
.x8{left:96.000000pt;}
.x10{left:120.000000pt;}
.x37{left:129.325752pt;}
.x1{left:137.156670pt;}
.xa{left:143.000000pt;}
.x9{left:144.000000pt;}
.x38{left:166.000000pt;}
.x23{left:216.000000pt;}
.x3{left:224.496872pt;}
.x48{left:239.000000pt;}
.x39{left:247.000000pt;}
.x13{left:260.000000pt;}
.x4{left:261.668747pt;}
.x3a{left:268.000000pt;}
.x2{left:269.061600pt;}
.x5{left:282.025010pt;}
.x6{left:287.513760pt;}
.xd{left:290.000000pt;}
.x25{left:322.000000pt;}
.x3b{left:336.000000pt;}
.x49{left:352.000000pt;}
.x15{left:371.000000pt;}
.x11{left:388.699280pt;}
.x7{left:392.774840pt;}
.x4a{left:395.000000pt;}
.x27{left:423.000000pt;}
.x3d{left:424.000000pt;}
.x17{left:434.000000pt;}
.xe{left:491.000000pt;}
.x4b{left:498.000000pt;}
.x2a{left:521.000000pt;}
.x3e{left:525.000000pt;}
.x4c{left:569.000000pt;}
.x3f{left:570.000000pt;}
.x2b{left:584.000000pt;}
.x40{left:615.000000pt;}
.x4d{left:632.000000pt;}
.x2c{left:640.000000pt;}
.x41{left:669.000000pt;}
}




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