
    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_ad7799d59b941d26777a50fd.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.001000;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_d1608eed302d5985080ee60a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.951000;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_8724d88b422f0ebd47c7caab.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.905000;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_eca8d3893a5fac0627e79928.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_8bb28f80a622ef91c4820182.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.665000;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_efd458170c31d4f655ca842c.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.664000;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_9c6045f888399cffcbd245ad.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.001000;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);}
.v3{vertical-align:-21.696000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.132000px;}
.v2{vertical-align:26.034000px;}
.ls1{letter-spacing:0.000000px;}
.ls4{letter-spacing:2.984525px;}
.ls3{letter-spacing:2.984915px;}
.ls0{letter-spacing:8.764767px;}
.ls2{letter-spacing:35.865600px;}
.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;}
}
.wsc2{word-spacing:-46.475813px;}
.ws29{word-spacing:-43.612570px;}
.ws2b{word-spacing:-42.608333px;}
.ws28{word-spacing:-42.464870px;}
.ws26{word-spacing:-38.950042px;}
.ws2d{word-spacing:-32.207309px;}
.ws2c{word-spacing:-30.414029px;}
.ws2a{word-spacing:-27.401318px;}
.ws7d{word-spacing:-22.416000px;}
.wsb{word-spacing:-20.906199px;}
.ws3{word-spacing:-19.510886px;}
.wsd1{word-spacing:-18.183288px;}
.ws75{word-spacing:-16.605662px;}
.wsc8{word-spacing:-3.945216px;}
.wsca{word-spacing:-3.873485px;}
.ws7f{word-spacing:-3.801754px;}
.wsb9{word-spacing:-2.869248px;}
.ws4a{word-spacing:-2.725786px;}
.ws3a{word-spacing:-2.654054px;}
.ws6{word-spacing:-2.539638px;}
.ws73{word-spacing:-2.438861px;}
.ws7b{word-spacing:-2.223667px;}
.wsba{word-spacing:-2.080205px;}
.ws32{word-spacing:-2.008474px;}
.ws22{word-spacing:-1.921632px;}
.ws89{word-spacing:-1.793280px;}
.ws5e{word-spacing:-1.506355px;}
.ws1d{word-spacing:-1.361456px;}
.wsc4{word-spacing:-1.291162px;}
.wsa0{word-spacing:-1.219430px;}
.wsa7{word-spacing:-1.075968px;}
.ws5f{word-spacing:-0.932506px;}
.ws6c{word-spacing:-0.860774px;}
.ws8c{word-spacing:-0.789043px;}
.wsce{word-spacing:-0.772364px;}
.wsa6{word-spacing:-0.573850px;}
.ws86{word-spacing:-0.358656px;}
.ws12{word-spacing:-0.183273px;}
.ws37{word-spacing:-0.143462px;}
.ws4{word-spacing:0.000000px;}
.wsb3{word-spacing:0.071731px;}
.wsaa{word-spacing:0.143462px;}
.ws91{word-spacing:0.286925px;}
.ws1f{word-spacing:0.340364px;}
.ws6d{word-spacing:0.358656px;}
.wscb{word-spacing:0.405819px;}
.wsbf{word-spacing:0.430387px;}
.ws35{word-spacing:0.502118px;}
.ws5d{word-spacing:0.573850px;}
.ws16{word-spacing:0.667637px;}
.ws99{word-spacing:0.717312px;}
.ws66{word-spacing:0.789043px;}
.ws1e{word-spacing:0.798546px;}
.ws7c{word-spacing:0.860774px;}
.ws23{word-spacing:0.932506px;}
.ws7{word-spacing:0.994910px;}
.ws87{word-spacing:1.075968px;}
.ws6e{word-spacing:1.147699px;}
.ws3b{word-spacing:1.219430px;}
.ws54{word-spacing:1.291162px;}
.ws6a{word-spacing:1.362893px;}
.ws4c{word-spacing:1.434624px;}
.ws9c{word-spacing:1.506355px;}
.wsd5{word-spacing:1.518547px;}
.ws65{word-spacing:1.649818px;}
.wsc5{word-spacing:1.721549px;}
.wsd2{word-spacing:1.780365px;}
.ws42{word-spacing:1.793280px;}
.ws14{word-spacing:1.893037px;}
.ws74{word-spacing:1.936742px;}
.wsbb{word-spacing:2.008474px;}
.ws13{word-spacing:2.042184px;}
.wsb8{word-spacing:2.080205px;}
.wsd{word-spacing:2.173093px;}
.ws70{word-spacing:2.223667px;}
.ws94{word-spacing:2.295398px;}
.wsc{word-spacing:2.369457px;}
.ws4f{word-spacing:2.438861px;}
.ws4b{word-spacing:2.582323px;}
.wscf{word-spacing:2.696730px;}
.ws43{word-spacing:2.725786px;}
.wsbc{word-spacing:2.797517px;}
.ws6b{word-spacing:2.869248px;}
.ws50{word-spacing:2.940979px;}
.wse{word-spacing:3.024003px;}
.ws85{word-spacing:3.084442px;}
.ws5{word-spacing:3.089457px;}
.wsb5{word-spacing:3.156173px;}
.ws68{word-spacing:3.227904px;}
.ws9{word-spacing:3.285821px;}
.ws95{word-spacing:3.299635px;}
.ws44{word-spacing:3.443098px;}
.wsae{word-spacing:3.514829px;}
.ws36{word-spacing:3.586560px;}
.ws8{word-spacing:3.613094px;}
.ws6f{word-spacing:3.658291px;}
.wsa5{word-spacing:3.730022px;}
.wsa{word-spacing:3.770185px;}
.ws0{word-spacing:3.873485px;}
.ws2{word-spacing:3.945216px;}
.ws77{word-spacing:4.016947px;}
.ws9f{word-spacing:4.088678px;}
.ws10{word-spacing:4.202185px;}
.ws41{word-spacing:4.232141px;}
.ws7a{word-spacing:4.303872px;}
.ws69{word-spacing:4.375603px;}
.ws9b{word-spacing:4.447334px;}
.ws1{word-spacing:4.483200px;}
.wsa4{word-spacing:4.519066px;}
.ws83{word-spacing:4.590797px;}
.wsb6{word-spacing:4.662528px;}
.ws49{word-spacing:4.734259px;}
.ws15{word-spacing:4.805990px;}
.wsc0{word-spacing:4.877722px;}
.wsb7{word-spacing:4.949453px;}
.ws38{word-spacing:5.021184px;}
.ws9d{word-spacing:5.092915px;}
.ws71{word-spacing:5.164646px;}
.ws17{word-spacing:5.184004px;}
.wsbd{word-spacing:5.236378px;}
.wsb1{word-spacing:5.308109px;}
.ws76{word-spacing:5.379825px;}
.wsd3{word-spacing:5.380368px;}
.ws84{word-spacing:5.451571px;}
.ws2f{word-spacing:5.523302px;}
.ws31{word-spacing:5.595034px;}
.ws18{word-spacing:5.642187px;}
.ws82{word-spacing:5.738496px;}
.wsc9{word-spacing:5.766781px;}
.ws51{word-spacing:5.810227px;}
.ws90{word-spacing:5.881958px;}
.wsa1{word-spacing:6.025421px;}
.ws64{word-spacing:6.097152px;}
.wscc{word-spacing:6.100369px;}
.ws47{word-spacing:6.168883px;}
.wsd4{word-spacing:6.231278px;}
.wsaf{word-spacing:6.312346px;}
.ws62{word-spacing:6.384077px;}
.ws11{word-spacing:6.427642px;}
.ws45{word-spacing:6.455775px;}
.ws58{word-spacing:6.455808px;}
.ws21{word-spacing:6.493096px;}
.ws72{word-spacing:6.527539px;}
.ws4e{word-spacing:6.599270px;}
.ws1c{word-spacing:6.624006px;}
.ws78{word-spacing:6.671002px;}
.wsb4{word-spacing:6.742733px;}
.ws20{word-spacing:6.754915px;}
.ws97{word-spacing:6.814464px;}
.wsab{word-spacing:6.957926px;}
.ws92{word-spacing:7.029658px;}
.ws96{word-spacing:7.101389px;}
.ws61{word-spacing:7.173120px;}
.wsa2{word-spacing:7.244851px;}
.ws79{word-spacing:7.460045px;}
.ws34{word-spacing:7.603507px;}
.wsc6{word-spacing:7.675238px;}
.ws9a{word-spacing:7.746970px;}
.wsc3{word-spacing:7.818701px;}
.ws8f{word-spacing:7.890432px;}
.ws33{word-spacing:7.962163px;}
.wscd{word-spacing:7.998552px;}
.wsb0{word-spacing:8.033894px;}
.wsa9{word-spacing:8.177357px;}
.wsc1{word-spacing:8.249088px;}
.wsf{word-spacing:8.325825px;}
.ws98{word-spacing:8.392550px;}
.wsd6{word-spacing:8.522189px;}
.wsc7{word-spacing:8.534108px;}
.wsa8{word-spacing:8.536013px;}
.ws3c{word-spacing:8.607744px;}
.wsb2{word-spacing:8.679475px;}
.ws3f{word-spacing:8.751206px;}
.ws30{word-spacing:8.822938px;}
.ws63{word-spacing:8.966400px;}
.ws19{word-spacing:8.980371px;}
.ws67{word-spacing:9.038131px;}
.ws57{word-spacing:9.109862px;}
.ws81{word-spacing:9.253325px;}
.ws24{word-spacing:9.295163px;}
.ws46{word-spacing:9.396787px;}
.ws40{word-spacing:9.468518px;}
.ws53{word-spacing:9.540250px;}
.wsd0{word-spacing:9.569463px;}
.wsac{word-spacing:9.827174px;}
.ws4d{word-spacing:9.898906px;}
.wsa3{word-spacing:10.114099px;}
.ws2e{word-spacing:10.185830px;}
.ws8a{word-spacing:10.257562px;}
.ws1a{word-spacing:10.315645px;}
.ws9e{word-spacing:10.616218px;}
.ws5c{word-spacing:10.903142px;}
.ws56{word-spacing:10.974874px;}
.ws80{word-spacing:11.046605px;}
.wsad{word-spacing:11.118336px;}
.wsbe{word-spacing:11.190067px;}
.ws52{word-spacing:11.476992px;}
.ws48{word-spacing:11.763917px;}
.ws7e{word-spacing:11.835648px;}
.ws5b{word-spacing:11.907379px;}
.ws1b{word-spacing:12.056737px;}
.ws93{word-spacing:12.122573px;}
.ws8d{word-spacing:12.337766px;}
.ws55{word-spacing:12.409498px;}
.ws3d{word-spacing:12.696422px;}
.ws88{word-spacing:12.983347px;}
.ws59{word-spacing:13.198541px;}
.ws3e{word-spacing:14.274509px;}
.ws8b{word-spacing:14.561434px;}
.ws8e{word-spacing:15.493939px;}
.ws5a{word-spacing:15.637402px;}
.ws27{word-spacing:16.354714px;}
.ws25{word-spacing:42.572467px;}
.ws60{word-spacing:69.937725px;}
.ws39{word-spacing:83.925075px;}
._3a{margin-left:-87.891233px;}
._31{margin-left:-83.087779px;}
._3d{margin-left:-79.993762px;}
._24{margin-left:-73.162284px;}
._13{margin-left:-70.219405px;}
._3e{margin-left:-64.725379px;}
._33{margin-left:-58.675792px;}
._3c{margin-left:-57.510577px;}
._39{margin-left:-47.643736px;}
._27{margin-left:-42.823526px;}
._5{margin-left:-40.312934px;}
._2e{margin-left:-38.950042px;}
._10{margin-left:-37.730611px;}
._c{margin-left:-36.329806px;}
._d{margin-left:-35.224449px;}
._b{margin-left:-33.717204px;}
._a{margin-left:-32.284350px;}
._16{margin-left:-31.240648px;}
._41{margin-left:-29.916331px;}
._32{margin-left:-27.401318px;}
._37{margin-left:-26.397082px;}
._9{margin-left:-24.745408px;}
._21{margin-left:-19.005445px;}
._14{margin-left:-14.742808px;}
._1d{margin-left:-12.370912px;}
._30{margin-left:-8.966400px;}
._4{margin-left:-7.746970px;}
._8{margin-left:-5.881958px;}
._1{margin-left:-4.803454px;}
._11{margin-left:-3.588340px;}
._2{margin-left:-1.936742px;}
._7{width:1.936742px;}
._6{width:4.160410px;}
._0{width:6.354046px;}
._20{width:7.430439px;}
._3{width:8.786596px;}
._40{width:15.618482px;}
._1c{width:16.713706px;}
._34{width:17.894888px;}
._29{width:19.683401px;}
._1e{width:22.275931px;}
._19{width:23.460532px;}
._e{width:25.469924px;}
._f{width:27.616512px;}
._17{width:29.304915px;}
._36{width:30.421999px;}
._3b{width:32.025934px;}
._1f{width:34.899949px;}
._25{width:43.397376px;}
._18{width:52.292045px;}
._2c{width:58.671692px;}
._15{width:65.562317px;}
._2b{width:66.653711px;}
._23{width:69.503103px;}
._22{width:70.655232px;}
._3f{width:76.256880px;}
._38{width:96.836850px;}
._1a{width:100.630014px;}
._26{width:102.208100px;}
._35{width:116.203950px;}
._2f{width:1139.593574px;}
._2d{width:1480.890624px;}
._28{width:1765.950413px;}
._2a{width:1829.002138px;}
._1b{width:2106.314957px;}
._12{width:2126.973542px;}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:41.842800px;}
.fs5{font-size:47.820600px;}
.fs7{font-size:59.775600px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs3{font-size:103.292400px;}
.fs2{font-size:148.722600px;}
.y0{bottom:0.000000px;}
.y6e{bottom:106.299000px;}
.y6d{bottom:151.131000px;}
.yb3{bottom:156.553500px;}
.y13a{bottom:162.408000px;}
.y11f{bottom:165.453000px;}
.y6c{bottom:172.800000px;}
.yb2{bottom:174.487500px;}
.y50{bottom:178.269000px;}
.y139{bottom:184.077000px;}
.y117{bottom:193.093500px;}
.y93{bottom:194.469000px;}
.y6b{bottom:195.312000px;}
.y13c{bottom:197.439000px;}
.ye8{bottom:198.478500px;}
.y138{bottom:205.746000px;}
.yb1{bottom:212.502000px;}
.y116{bottom:214.761000px;}
.y92{bottom:216.138000px;}
.y6a{bottom:216.981000px;}
.y4f{bottom:217.497000px;}
.ye7{bottom:224.157000px;}
.y137{bottom:227.413500px;}
.yb0{bottom:234.171000px;}
.y106{bottom:235.038000px;}
.y115{bottom:236.430000px;}
.y91{bottom:237.805500px;}
.y69{bottom:239.493000px;}
.y136{bottom:249.082500px;}
.yaf{bottom:255.840000px;}
.y4e{bottom:256.725000px;}
.y114{bottom:258.099000px;}
.y90{bottom:259.474500px;}
.ye6{bottom:269.499000px;}
.y135{bottom:270.751500px;}
.y32{bottom:272.935500px;}
.y68{bottom:279.357000px;}
.y113{bottom:279.768000px;}
.y8f{bottom:281.143500px;}
.ye5{bottom:291.168000px;}
.ye{bottom:291.282000px;}
.y134{bottom:292.420500px;}
.y157{bottom:292.963500px;}
.y31{bottom:294.604500px;}
.y4d{bottom:295.953000px;}
.yae{bottom:298.612500px;}
.y112{bottom:301.437000px;}
.y105{bottom:301.756500px;}
.y8e{bottom:302.812500px;}
.ye4{bottom:312.837000px;}
.yd{bottom:312.951000px;}
.y133{bottom:314.089500px;}
.y156{bottom:314.632500px;}
.y4c{bottom:317.622000px;}
.y111{bottom:323.106000px;}
.y104{bottom:323.425500px;}
.y8d{bottom:324.481500px;}
.ye3{bottom:334.506000px;}
.y132{bottom:335.758500px;}
.y155{bottom:336.300000px;}
.y30{bottom:336.597000px;}
.yce{bottom:338.667000px;}
.y4b{bottom:339.289500px;}
.y67{bottom:341.857500px;}
.y110{bottom:344.773500px;}
.y103{bottom:345.094500px;}
.y8c{bottom:346.149000px;}
.yf5{bottom:346.150500px;}
.y2f{bottom:356.920500px;}
.y131{bottom:357.426000px;}
.y154{bottom:357.969000px;}
.ye2{bottom:360.184500px;}
.ycd{bottom:360.336000px;}
.y66{bottom:363.526500px;}
.y102{bottom:366.762000px;}
.yf4{bottom:367.818000px;}
.y2e{bottom:377.244000px;}
.yad{bottom:378.481500px;}
.y4a{bottom:378.517500px;}
.y130{bottom:379.095000px;}
.y153{bottom:379.638000px;}
.ye1{bottom:381.853500px;}
.ycc{bottom:382.003500px;}
.y10f{bottom:384.201000px;}
.y65{bottom:385.195500px;}
.y8b{bottom:386.125500px;}
.y101{bottom:388.431000px;}
.yf3{bottom:389.487000px;}
.y2d{bottom:397.569000px;}
.yac{bottom:400.150500px;}
.y49{bottom:400.186500px;}
.y152{bottom:401.307000px;}
.ye0{bottom:403.522500px;}
.ycb{bottom:403.672500px;}
.y64{bottom:406.864500px;}
.y100{bottom:410.100000px;}
.yf2{bottom:411.156000px;}
.y2c{bottom:417.892500px;}
.y12f{bottom:418.522500px;}
.yab{bottom:421.818000px;}
.y48{bottom:421.855500px;}
.y151{bottom:422.976000px;}
.yc{bottom:423.681000px;}
.yca{bottom:425.341500px;}
.y63{bottom:428.533500px;}
.ydf{bottom:429.201000px;}
.y128{bottom:432.825000px;}
.y2b{bottom:438.216000px;}
.yaa{bottom:443.487000px;}
.y47{bottom:443.524500px;}
.y10e{bottom:444.102000px;}
.y150{bottom:444.645000px;}
.yc9{bottom:447.010500px;}
.y8a{bottom:449.302500px;}
.yb{bottom:449.601000px;}
.y62{bottom:450.201000px;}
.yde{bottom:450.868500px;}
.yf1{bottom:451.623000px;}
.y127{bottom:454.494000px;}
.yff{bottom:454.543500px;}
.y2a{bottom:458.539500px;}
.ya9{bottom:465.156000px;}
.y46{bottom:465.193500px;}
.y10d{bottom:465.771000px;}
.y14f{bottom:466.312500px;}
.yc8{bottom:468.679500px;}
.y89{bottom:470.971500px;}
.y61{bottom:471.870000px;}
.y126{bottom:476.161500px;}
.yfe{bottom:476.212500px;}
.ydd{bottom:476.547000px;}
.y12e{bottom:478.423500px;}
.y29{bottom:478.863000px;}
.ya8{bottom:486.825000px;}
.y45{bottom:486.861000px;}
.y10c{bottom:487.438500px;}
.y14e{bottom:487.981500px;}
.y88{bottom:492.640500px;}
.y60{bottom:493.539000px;}
.y125{bottom:497.830500px;}
.yfd{bottom:497.880000px;}
.y28{bottom:499.186500px;}
.y12d{bottom:500.091000px;}
.yc7{bottom:501.930000px;}
.ydc{bottom:502.227000px;}
.ya7{bottom:508.494000px;}
.y10b{bottom:509.107500px;}
.y14d{bottom:509.650500px;}
.y87{bottom:514.309500px;}
.y5f{bottom:515.208000px;}
.yf0{bottom:517.732500px;}
.y124{bottom:519.499500px;}
.y27{bottom:519.511500px;}
.yfc{bottom:519.549000px;}
.y12c{bottom:521.760000px;}
.ydb{bottom:523.894500px;}
.y44{bottom:526.089000px;}
.y166{bottom:529.825500px;}
.ya6{bottom:530.163000px;}
.y14c{bottom:531.319500px;}
.y86{bottom:535.978500px;}
.y5e{bottom:536.877000px;}
.yef{bottom:539.401500px;}
.y26{bottom:539.835000px;}
.y123{bottom:541.168500px;}
.yfb{bottom:541.218000px;}
.y12b{bottom:543.429000px;}
.yda{bottom:545.563500px;}
.y43{bottom:547.758000px;}
.y10a{bottom:548.535000px;}
.y165{bottom:551.493000px;}
.y14b{bottom:552.988500px;}
.yc6{bottom:553.921500px;}
.ya{bottom:556.309500px;}
.y85{bottom:557.647500px;}
.y25{bottom:560.158500px;}
.yee{bottom:561.070500px;}
.y122{bottom:562.837500px;}
.yfa{bottom:562.887000px;}
.y12a{bottom:565.098000px;}
.ya5{bottom:566.758500px;}
.yd9{bottom:567.232500px;}
.y42{bottom:569.427000px;}
.y164{bottom:573.162000px;}
.y14a{bottom:574.657500px;}
.yc5{bottom:575.590500px;}
.y5d{bottom:576.739500px;}
.y84{bottom:579.315000px;}
.y24{bottom:580.482000px;}
.y9{bottom:582.231000px;}
.yed{bottom:582.739500px;}
.yf9{bottom:584.556000px;}
.y129{bottom:586.767000px;}
.yd8{bottom:588.901500px;}
.y41{bottom:591.096000px;}
.y163{bottom:594.831000px;}
.y149{bottom:596.325000px;}
.y23{bottom:600.805500px;}
.y83{bottom:600.984000px;}
.yf8{bottom:606.223500px;}
.yec{bottom:606.421500px;}
.y121{bottom:607.930500px;}
.y8{bottom:608.151000px;}
.y109{bottom:608.436000px;}
.yc4{bottom:608.841000px;}
.yd7{bottom:610.570500px;}
.y40{bottom:612.765000px;}
.y162{bottom:616.500000px;}
.y148{bottom:617.994000px;}
.y22{bottom:621.130500px;}
.y82{bottom:622.653000px;}
.yf7{bottom:627.892500px;}
.yeb{bottom:628.090500px;}
.y108{bottom:630.103500px;}
.yd6{bottom:632.239500px;}
.y7{bottom:634.072500px;}
.y3f{bottom:634.432500px;}
.y161{bottom:638.169000px;}
.ya4{bottom:638.719500px;}
.y5c{bottom:639.241500px;}
.y147{bottom:639.663000px;}
.y120{bottom:640.807500px;}
.y81{bottom:644.322000px;}
.y21{bottom:647.121000px;}
.yf6{bottom:649.561500px;}
.yea{bottom:649.759500px;}
.y107{bottom:651.772500px;}
.yd5{bottom:653.907000px;}
.yc3{bottom:655.603500px;}
.y3e{bottom:656.101500px;}
.y160{bottom:659.838000px;}
.y6{bottom:659.994000px;}
.ya3{bottom:660.388500px;}
.y5b{bottom:660.910500px;}
.y146{bottom:661.332000px;}
.y80{bottom:665.991000px;}
.yd4{bottom:675.576000px;}
.yc2{bottom:677.272500px;}
.y3d{bottom:677.770500px;}
.y11e{bottom:680.919000px;}
.y15f{bottom:681.505500px;}
.y20{bottom:681.891000px;}
.y13b{bottom:681.928500px;}
.ya2{bottom:682.056000px;}
.y5a{bottom:682.578000px;}
.y145{bottom:683.001000px;}
.y5{bottom:685.914000px;}
.y7f{bottom:687.660000px;}
.yd3{bottom:697.245000px;}
.yc1{bottom:698.940000px;}
.y3c{bottom:699.439500px;}
.y11d{bottom:702.588000px;}
.y15e{bottom:703.174500px;}
.y1f{bottom:703.560000px;}
.y59{bottom:704.247000px;}
.y167{bottom:704.668500px;}
.y144{bottom:704.670000px;}
.y169{bottom:704.905500px;}
.y7e{bottom:709.327500px;}
.ye9{bottom:713.914500px;}
.ya1{bottom:718.653000px;}
.y3b{bottom:721.108500px;}
.y11c{bottom:724.255500px;}
.y15d{bottom:724.843500px;}
.y168{bottom:725.229000px;}
.y58{bottom:725.916000px;}
.y143{bottom:726.337500px;}
.y7d{bottom:730.996500px;}
.yc0{bottom:732.190500px;}
.yd2{bottom:738.744000px;}
.y3a{bottom:742.776000px;}
.y1e{bottom:745.552500px;}
.y11b{bottom:745.924500px;}
.y15c{bottom:746.512500px;}
.y57{bottom:747.585000px;}
.y142{bottom:748.006500px;}
.y39{bottom:764.445000px;}
.y1d{bottom:765.876000px;}
.y11a{bottom:767.593500px;}
.y15b{bottom:768.181500px;}
.y56{bottom:769.254000px;}
.y141{bottom:769.675500px;}
.y7c{bottom:770.973000px;}
.ybf{bottom:778.953000px;}
.y1c{bottom:786.199500px;}
.y119{bottom:789.262500px;}
.y15a{bottom:789.850500px;}
.ya0{bottom:790.614000px;}
.y55{bottom:790.923000px;}
.y140{bottom:791.344500px;}
.y4{bottom:792.622500px;}
.y79{bottom:792.888000px;}
.ybe{bottom:800.622000px;}
.y38{bottom:803.673000px;}
.y1b{bottom:806.524500px;}
.y118{bottom:810.931500px;}
.yd1{bottom:811.008000px;}
.y159{bottom:811.518000px;}
.y9f{bottom:812.283000px;}
.y54{bottom:812.590500px;}
.y13f{bottom:813.013500px;}
.y78{bottom:814.557000px;}
.ybd{bottom:822.291000px;}
.y37{bottom:825.342000px;}
.y1a{bottom:826.848000px;}
.y3{bottom:831.298500px;}
.yd0{bottom:832.677000px;}
.y9e{bottom:833.950500px;}
.y7b{bottom:834.150000px;}
.y53{bottom:834.259500px;}
.y13e{bottom:834.681000px;}
.y77{bottom:836.226000px;}
.y36{bottom:847.011000px;}
.y19{bottom:847.171500px;}
.ycf{bottom:854.346000px;}
.ybc{bottom:855.541500px;}
.y9d{bottom:855.619500px;}
.y7a{bottom:855.819000px;}
.y52{bottom:855.928500px;}
.y13d{bottom:856.350000px;}
.y76{bottom:857.895000px;}
.y18{bottom:867.495000px;}
.y35{bottom:868.680000px;}
.y9c{bottom:877.288500px;}
.y75{bottom:879.564000px;}
.y17{bottom:887.818500px;}
.y158{bottom:892.963500px;}
.y9b{bottom:898.957500px;}
.y74{bottom:901.231500px;}
.ybb{bottom:902.302500px;}
.y16{bottom:908.143500px;}
.y9a{bottom:920.626500px;}
.y73{bottom:922.900500px;}
.yba{bottom:923.971500px;}
.y15{bottom:928.467000px;}
.y51{bottom:937.795500px;}
.y99{bottom:942.294000px;}
.y72{bottom:944.569500px;}
.yb9{bottom:945.640500px;}
.y14{bottom:948.790500px;}
.y98{bottom:963.963000px;}
.y71{bottom:966.238500px;}
.yb8{bottom:967.309500px;}
.y34{bottom:967.683000px;}
.y13{bottom:969.114000px;}
.y33{bottom:976.668000px;}
.y97{bottom:985.632000px;}
.yb7{bottom:988.978500px;}
.y12{bottom:989.437500px;}
.y70{bottom:1005.666000px;}
.y96{bottom:1007.301000px;}
.y11{bottom:1009.762500px;}
.yb6{bottom:1010.647500px;}
.y2{bottom:1023.046500px;}
.y95{bottom:1028.970000px;}
.y10{bottom:1030.086000px;}
.yb5{bottom:1032.315000px;}
.yf{bottom:1050.409500px;}
.y94{bottom:1050.639000px;}
.yb4{bottom:1053.984000px;}
.y6f{bottom:1065.565500px;}
.y1{bottom:1087.234500px;}
.hb{height:27.783619px;}
.h4{height:46.080038px;}
.h5{height:49.090950px;}
.h3{height:53.798400px;}
.ha{height:57.828699px;}
.h9{height:57.834699px;}
.h8{height:64.557900px;}
.h2{height:71.930400px;}
.h7{height:77.469300px;}
.h6{height:111.541950px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x17{left:103.630500px;}
.x13{left:106.299000px;}
.x24{left:111.676500px;}
.x1e{left:113.284500px;}
.x1c{left:131.202000px;}
.x18{left:132.637500px;}
.x15{left:150.196500px;}
.x1d{left:155.839500px;}
.x7{left:165.094500px;}
.x1{left:169.560000px;}
.x19{left:173.023500px;}
.x22{left:180.540000px;}
.x8{left:186.228000px;}
.x26{left:201.316500px;}
.x1a{left:229.212000px;}
.xe{left:238.737000px;}
.x5{left:265.186500px;}
.x2{left:271.720500px;}
.x23{left:293.014500px;}
.x21{left:308.062500px;}
.x25{left:311.353500px;}
.xf{left:324.867000px;}
.xc{left:330.427500px;}
.x11{left:339.718500px;}
.xa{left:349.465500px;}
.x20{left:354.154500px;}
.x12{left:355.807500px;}
.x27{left:378.046500px;}
.xb{left:388.902000px;}
.xd{left:391.708500px;}
.x9{left:393.415500px;}
.x14{left:408.768000px;}
.x16{left:410.455500px;}
.x1f{left:437.677500px;}
.x1b{left:442.066500px;}
.x6{left:458.520000px;}
.x10{left:504.297000px;}
.x3{left:566.842500px;}
.x4{left:665.331000px;}
@media print{
.v3{vertical-align:-19.285333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.117333pt;}
.v2{vertical-align:23.141333pt;}
.ls1{letter-spacing:0.000000pt;}
.ls4{letter-spacing:2.652911pt;}
.ls3{letter-spacing:2.653258pt;}
.ls0{letter-spacing:7.790904pt;}
.ls2{letter-spacing:31.880533pt;}
.wsc2{word-spacing:-41.311833pt;}
.ws29{word-spacing:-38.766729pt;}
.ws2b{word-spacing:-37.874074pt;}
.ws28{word-spacing:-37.746551pt;}
.ws26{word-spacing:-34.622259pt;}
.ws2d{word-spacing:-28.628719pt;}
.ws2c{word-spacing:-27.034692pt;}
.ws2a{word-spacing:-24.356727pt;}
.ws7d{word-spacing:-19.925333pt;}
.wsb{word-spacing:-18.583288pt;}
.ws3{word-spacing:-17.343010pt;}
.wsd1{word-spacing:-16.162923pt;}
.ws75{word-spacing:-14.760588pt;}
.wsc8{word-spacing:-3.506859pt;}
.wsca{word-spacing:-3.443098pt;}
.ws7f{word-spacing:-3.379337pt;}
.wsb9{word-spacing:-2.550443pt;}
.ws4a{word-spacing:-2.422921pt;}
.ws3a{word-spacing:-2.359159pt;}
.ws6{word-spacing:-2.257456pt;}
.ws73{word-spacing:-2.167876pt;}
.ws7b{word-spacing:-1.976593pt;}
.wsba{word-spacing:-1.849071pt;}
.ws32{word-spacing:-1.785310pt;}
.ws22{word-spacing:-1.708117pt;}
.ws89{word-spacing:-1.594027pt;}
.ws5e{word-spacing:-1.338982pt;}
.ws1d{word-spacing:-1.210183pt;}
.wsc4{word-spacing:-1.147699pt;}
.wsa0{word-spacing:-1.083938pt;}
.wsa7{word-spacing:-0.956416pt;}
.ws5f{word-spacing:-0.828894pt;}
.ws6c{word-spacing:-0.765133pt;}
.ws8c{word-spacing:-0.701372pt;}
.wsce{word-spacing:-0.686546pt;}
.wsa6{word-spacing:-0.510089pt;}
.ws86{word-spacing:-0.318805pt;}
.ws12{word-spacing:-0.162909pt;}
.ws37{word-spacing:-0.127522pt;}
.ws4{word-spacing:0.000000pt;}
.wsb3{word-spacing:0.063761pt;}
.wsaa{word-spacing:0.127522pt;}
.ws91{word-spacing:0.255044pt;}
.ws1f{word-spacing:0.302546pt;}
.ws6d{word-spacing:0.318805pt;}
.wscb{word-spacing:0.360728pt;}
.wsbf{word-spacing:0.382566pt;}
.ws35{word-spacing:0.446327pt;}
.ws5d{word-spacing:0.510089pt;}
.ws16{word-spacing:0.593455pt;}
.ws99{word-spacing:0.637611pt;}
.ws66{word-spacing:0.701372pt;}
.ws1e{word-spacing:0.709819pt;}
.ws7c{word-spacing:0.765133pt;}
.ws23{word-spacing:0.828894pt;}
.ws7{word-spacing:0.884364pt;}
.ws87{word-spacing:0.956416pt;}
.ws6e{word-spacing:1.020177pt;}
.ws3b{word-spacing:1.083938pt;}
.ws54{word-spacing:1.147699pt;}
.ws6a{word-spacing:1.211460pt;}
.ws4c{word-spacing:1.275221pt;}
.ws9c{word-spacing:1.338982pt;}
.wsd5{word-spacing:1.349819pt;}
.ws65{word-spacing:1.466505pt;}
.wsc5{word-spacing:1.530266pt;}
.wsd2{word-spacing:1.582547pt;}
.ws42{word-spacing:1.594027pt;}
.ws14{word-spacing:1.682700pt;}
.ws74{word-spacing:1.721549pt;}
.wsbb{word-spacing:1.785310pt;}
.ws13{word-spacing:1.815274pt;}
.wsb8{word-spacing:1.849071pt;}
.wsd{word-spacing:1.931638pt;}
.ws70{word-spacing:1.976593pt;}
.ws94{word-spacing:2.040354pt;}
.wsc{word-spacing:2.106184pt;}
.ws4f{word-spacing:2.167876pt;}
.ws4b{word-spacing:2.295398pt;}
.wscf{word-spacing:2.397093pt;}
.ws43{word-spacing:2.422921pt;}
.wsbc{word-spacing:2.486682pt;}
.ws6b{word-spacing:2.550443pt;}
.ws50{word-spacing:2.614204pt;}
.wse{word-spacing:2.688002pt;}
.ws85{word-spacing:2.741726pt;}
.ws5{word-spacing:2.746184pt;}
.wsb5{word-spacing:2.805487pt;}
.ws68{word-spacing:2.869248pt;}
.ws9{word-spacing:2.920730pt;}
.ws95{word-spacing:2.933009pt;}
.ws44{word-spacing:3.060531pt;}
.wsae{word-spacing:3.124292pt;}
.ws36{word-spacing:3.188053pt;}
.ws8{word-spacing:3.211639pt;}
.ws6f{word-spacing:3.251814pt;}
.wsa5{word-spacing:3.315575pt;}
.wsa{word-spacing:3.351276pt;}
.ws0{word-spacing:3.443098pt;}
.ws2{word-spacing:3.506859pt;}
.ws77{word-spacing:3.570620pt;}
.ws9f{word-spacing:3.634381pt;}
.ws10{word-spacing:3.735276pt;}
.ws41{word-spacing:3.761903pt;}
.ws7a{word-spacing:3.825664pt;}
.ws69{word-spacing:3.889425pt;}
.ws9b{word-spacing:3.953186pt;}
.ws1{word-spacing:3.985067pt;}
.wsa4{word-spacing:4.016947pt;}
.ws83{word-spacing:4.080708pt;}
.wsb6{word-spacing:4.144469pt;}
.ws49{word-spacing:4.208230pt;}
.ws15{word-spacing:4.271991pt;}
.wsc0{word-spacing:4.335753pt;}
.wsb7{word-spacing:4.399514pt;}
.ws38{word-spacing:4.463275pt;}
.ws9d{word-spacing:4.527036pt;}
.ws71{word-spacing:4.590797pt;}
.ws17{word-spacing:4.608004pt;}
.wsbd{word-spacing:4.654558pt;}
.wsb1{word-spacing:4.718319pt;}
.ws76{word-spacing:4.782067pt;}
.wsd3{word-spacing:4.782549pt;}
.ws84{word-spacing:4.845841pt;}
.ws2f{word-spacing:4.909602pt;}
.ws31{word-spacing:4.973363pt;}
.ws18{word-spacing:5.015277pt;}
.ws82{word-spacing:5.100885pt;}
.wsc9{word-spacing:5.126028pt;}
.ws51{word-spacing:5.164646pt;}
.ws90{word-spacing:5.228407pt;}
.wsa1{word-spacing:5.355930pt;}
.ws64{word-spacing:5.419691pt;}
.wscc{word-spacing:5.422550pt;}
.ws47{word-spacing:5.483452pt;}
.wsd4{word-spacing:5.538914pt;}
.wsaf{word-spacing:5.610974pt;}
.ws62{word-spacing:5.674735pt;}
.ws11{word-spacing:5.713459pt;}
.ws45{word-spacing:5.738467pt;}
.ws58{word-spacing:5.738496pt;}
.ws21{word-spacing:5.771641pt;}
.ws72{word-spacing:5.802257pt;}
.ws4e{word-spacing:5.866018pt;}
.ws1c{word-spacing:5.888005pt;}
.ws78{word-spacing:5.929779pt;}
.wsb4{word-spacing:5.993540pt;}
.ws20{word-spacing:6.004369pt;}
.ws97{word-spacing:6.057301pt;}
.wsab{word-spacing:6.184823pt;}
.ws92{word-spacing:6.248585pt;}
.ws96{word-spacing:6.312346pt;}
.ws61{word-spacing:6.376107pt;}
.wsa2{word-spacing:6.439868pt;}
.ws79{word-spacing:6.631151pt;}
.ws34{word-spacing:6.758673pt;}
.wsc6{word-spacing:6.822434pt;}
.ws9a{word-spacing:6.886195pt;}
.wsc3{word-spacing:6.949956pt;}
.ws8f{word-spacing:7.013717pt;}
.ws33{word-spacing:7.077478pt;}
.wscd{word-spacing:7.109824pt;}
.wsb0{word-spacing:7.141239pt;}
.wsa9{word-spacing:7.268762pt;}
.wsc1{word-spacing:7.332523pt;}
.wsf{word-spacing:7.400733pt;}
.ws98{word-spacing:7.460045pt;}
.wsd6{word-spacing:7.575279pt;}
.wsc7{word-spacing:7.585874pt;}
.wsa8{word-spacing:7.587567pt;}
.ws3c{word-spacing:7.651328pt;}
.wsb2{word-spacing:7.715089pt;}
.ws3f{word-spacing:7.778850pt;}
.ws30{word-spacing:7.842611pt;}
.ws63{word-spacing:7.970133pt;}
.ws19{word-spacing:7.982552pt;}
.ws67{word-spacing:8.033894pt;}
.ws57{word-spacing:8.097655pt;}
.ws81{word-spacing:8.225178pt;}
.ws24{word-spacing:8.262367pt;}
.ws46{word-spacing:8.352700pt;}
.ws40{word-spacing:8.416461pt;}
.ws53{word-spacing:8.480222pt;}
.wsd0{word-spacing:8.506189pt;}
.wsac{word-spacing:8.735266pt;}
.ws4d{word-spacing:8.799027pt;}
.wsa3{word-spacing:8.990310pt;}
.ws2e{word-spacing:9.054071pt;}
.ws8a{word-spacing:9.117833pt;}
.ws1a{word-spacing:9.169462pt;}
.ws9e{word-spacing:9.436638pt;}
.ws5c{word-spacing:9.691682pt;}
.ws56{word-spacing:9.755443pt;}
.ws80{word-spacing:9.819204pt;}
.wsad{word-spacing:9.882965pt;}
.wsbe{word-spacing:9.946726pt;}
.ws52{word-spacing:10.201771pt;}
.ws48{word-spacing:10.456815pt;}
.ws7e{word-spacing:10.520576pt;}
.ws5b{word-spacing:10.584337pt;}
.ws1b{word-spacing:10.717100pt;}
.ws93{word-spacing:10.775620pt;}
.ws8d{word-spacing:10.966903pt;}
.ws55{word-spacing:11.030665pt;}
.ws3d{word-spacing:11.285709pt;}
.ws88{word-spacing:11.540753pt;}
.ws59{word-spacing:11.732036pt;}
.ws3e{word-spacing:12.688452pt;}
.ws8b{word-spacing:12.943497pt;}
.ws8e{word-spacing:13.772390pt;}
.ws5a{word-spacing:13.899913pt;}
.ws27{word-spacing:14.537523pt;}
.ws25{word-spacing:37.842193pt;}
.ws60{word-spacing:62.166867pt;}
.ws39{word-spacing:74.600067pt;}
._3a{margin-left:-78.125541pt;}
._31{margin-left:-73.855804pt;}
._3d{margin-left:-71.105566pt;}
._24{margin-left:-65.033141pt;}
._13{margin-left:-62.417249pt;}
._3e{margin-left:-57.533670pt;}
._33{margin-left:-52.156259pt;}
._3c{margin-left:-51.120513pt;}
._39{margin-left:-42.349987pt;}
._27{margin-left:-38.065357pt;}
._5{margin-left:-35.833719pt;}
._2e{margin-left:-34.622259pt;}
._10{margin-left:-33.538321pt;}
._c{margin-left:-32.293161pt;}
._d{margin-left:-31.310621pt;}
._b{margin-left:-29.970848pt;}
._a{margin-left:-28.697200pt;}
._16{margin-left:-27.769465pt;}
._41{margin-left:-26.592294pt;}
._32{margin-left:-24.356727pt;}
._37{margin-left:-23.464073pt;}
._9{margin-left:-21.995918pt;}
._21{margin-left:-16.893729pt;}
._14{margin-left:-13.104718pt;}
._1d{margin-left:-10.996366pt;}
._30{margin-left:-7.970133pt;}
._4{margin-left:-6.886195pt;}
._8{margin-left:-5.228407pt;}
._1{margin-left:-4.269737pt;}
._11{margin-left:-3.189635pt;}
._2{margin-left:-1.721549pt;}
._7{width:1.721549pt;}
._6{width:3.698142pt;}
._0{width:5.648041pt;}
._20{width:6.604835pt;}
._3{width:7.810307pt;}
._40{width:13.883095pt;}
._1c{width:14.856628pt;}
._34{width:15.906567pt;}
._29{width:17.496357pt;}
._1e{width:19.800827pt;}
._19{width:20.853806pt;}
._e{width:22.639933pt;}
._f{width:24.548011pt;}
._17{width:26.048813pt;}
._36{width:27.041777pt;}
._3b{width:28.467497pt;}
._1f{width:31.022177pt;}
._25{width:38.575445pt;}
._18{width:46.481818pt;}
._2c{width:52.152615pt;}
._15{width:58.277615pt;}
._2b{width:59.247743pt;}
._23{width:61.780536pt;}
._22{width:62.804651pt;}
._3f{width:67.783893pt;}
._38{width:86.077200pt;}
._1a{width:89.448901pt;}
._26{width:90.851645pt;}
._35{width:103.292400pt;}
._2f{width:1012.972066pt;}
._2d{width:1316.347221pt;}
._28{width:1569.733700pt;}
._2a{width:1625.779678pt;}
._1b{width:1872.279962pt;}
._12{width:1890.643149pt;}
.fs6{font-size:37.193600pt;}
.fs5{font-size:42.507200pt;}
.fs7{font-size:53.133867pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs3{font-size:91.815467pt;}
.fs2{font-size:132.197867pt;}
.y0{bottom:0.000000pt;}
.y6e{bottom:94.488000pt;}
.y6d{bottom:134.338667pt;}
.yb3{bottom:139.158667pt;}
.y13a{bottom:144.362667pt;}
.y11f{bottom:147.069333pt;}
.y6c{bottom:153.600000pt;}
.yb2{bottom:155.100000pt;}
.y50{bottom:158.461333pt;}
.y139{bottom:163.624000pt;}
.y117{bottom:171.638667pt;}
.y93{bottom:172.861333pt;}
.y6b{bottom:173.610667pt;}
.y13c{bottom:175.501333pt;}
.ye8{bottom:176.425333pt;}
.y138{bottom:182.885333pt;}
.yb1{bottom:188.890667pt;}
.y116{bottom:190.898667pt;}
.y92{bottom:192.122667pt;}
.y6a{bottom:192.872000pt;}
.y4f{bottom:193.330667pt;}
.ye7{bottom:199.250667pt;}
.y137{bottom:202.145333pt;}
.yb0{bottom:208.152000pt;}
.y106{bottom:208.922667pt;}
.y115{bottom:210.160000pt;}
.y91{bottom:211.382667pt;}
.y69{bottom:212.882667pt;}
.y136{bottom:221.406667pt;}
.yaf{bottom:227.413333pt;}
.y4e{bottom:228.200000pt;}
.y114{bottom:229.421333pt;}
.y90{bottom:230.644000pt;}
.ye6{bottom:239.554667pt;}
.y135{bottom:240.668000pt;}
.y32{bottom:242.609333pt;}
.y68{bottom:248.317333pt;}
.y113{bottom:248.682667pt;}
.y8f{bottom:249.905333pt;}
.ye5{bottom:258.816000pt;}
.ye{bottom:258.917333pt;}
.y134{bottom:259.929333pt;}
.y157{bottom:260.412000pt;}
.y31{bottom:261.870667pt;}
.y4d{bottom:263.069333pt;}
.yae{bottom:265.433333pt;}
.y112{bottom:267.944000pt;}
.y105{bottom:268.228000pt;}
.y8e{bottom:269.166667pt;}
.ye4{bottom:278.077333pt;}
.yd{bottom:278.178667pt;}
.y133{bottom:279.190667pt;}
.y156{bottom:279.673333pt;}
.y4c{bottom:282.330667pt;}
.y111{bottom:287.205333pt;}
.y104{bottom:287.489333pt;}
.y8d{bottom:288.428000pt;}
.ye3{bottom:297.338667pt;}
.y132{bottom:298.452000pt;}
.y155{bottom:298.933333pt;}
.y30{bottom:299.197333pt;}
.yce{bottom:301.037333pt;}
.y4b{bottom:301.590667pt;}
.y67{bottom:303.873333pt;}
.y110{bottom:306.465333pt;}
.y103{bottom:306.750667pt;}
.y8c{bottom:307.688000pt;}
.yf5{bottom:307.689333pt;}
.y2f{bottom:317.262667pt;}
.y131{bottom:317.712000pt;}
.y154{bottom:318.194667pt;}
.ye2{bottom:320.164000pt;}
.ycd{bottom:320.298667pt;}
.y66{bottom:323.134667pt;}
.y102{bottom:326.010667pt;}
.yf4{bottom:326.949333pt;}
.y2e{bottom:335.328000pt;}
.yad{bottom:336.428000pt;}
.y4a{bottom:336.460000pt;}
.y130{bottom:336.973333pt;}
.y153{bottom:337.456000pt;}
.ye1{bottom:339.425333pt;}
.ycc{bottom:339.558667pt;}
.y10f{bottom:341.512000pt;}
.y65{bottom:342.396000pt;}
.y8b{bottom:343.222667pt;}
.y101{bottom:345.272000pt;}
.yf3{bottom:346.210667pt;}
.y2d{bottom:353.394667pt;}
.yac{bottom:355.689333pt;}
.y49{bottom:355.721333pt;}
.y152{bottom:356.717333pt;}
.ye0{bottom:358.686667pt;}
.ycb{bottom:358.820000pt;}
.y64{bottom:361.657333pt;}
.y100{bottom:364.533333pt;}
.yf2{bottom:365.472000pt;}
.y2c{bottom:371.460000pt;}
.y12f{bottom:372.020000pt;}
.yab{bottom:374.949333pt;}
.y48{bottom:374.982667pt;}
.y151{bottom:375.978667pt;}
.yc{bottom:376.605333pt;}
.yca{bottom:378.081333pt;}
.y63{bottom:380.918667pt;}
.ydf{bottom:381.512000pt;}
.y128{bottom:384.733333pt;}
.y2b{bottom:389.525333pt;}
.yaa{bottom:394.210667pt;}
.y47{bottom:394.244000pt;}
.y10e{bottom:394.757333pt;}
.y150{bottom:395.240000pt;}
.yc9{bottom:397.342667pt;}
.y8a{bottom:399.380000pt;}
.yb{bottom:399.645333pt;}
.y62{bottom:400.178667pt;}
.yde{bottom:400.772000pt;}
.yf1{bottom:401.442667pt;}
.y127{bottom:403.994667pt;}
.yff{bottom:404.038667pt;}
.y2a{bottom:407.590667pt;}
.ya9{bottom:413.472000pt;}
.y46{bottom:413.505333pt;}
.y10d{bottom:414.018667pt;}
.y14f{bottom:414.500000pt;}
.yc8{bottom:416.604000pt;}
.y89{bottom:418.641333pt;}
.y61{bottom:419.440000pt;}
.y126{bottom:423.254667pt;}
.yfe{bottom:423.300000pt;}
.ydd{bottom:423.597333pt;}
.y12e{bottom:425.265333pt;}
.y29{bottom:425.656000pt;}
.ya8{bottom:432.733333pt;}
.y45{bottom:432.765333pt;}
.y10c{bottom:433.278667pt;}
.y14e{bottom:433.761333pt;}
.y88{bottom:437.902667pt;}
.y60{bottom:438.701333pt;}
.y125{bottom:442.516000pt;}
.yfd{bottom:442.560000pt;}
.y28{bottom:443.721333pt;}
.y12d{bottom:444.525333pt;}
.yc7{bottom:446.160000pt;}
.ydc{bottom:446.424000pt;}
.ya7{bottom:451.994667pt;}
.y10b{bottom:452.540000pt;}
.y14d{bottom:453.022667pt;}
.y87{bottom:457.164000pt;}
.y5f{bottom:457.962667pt;}
.yf0{bottom:460.206667pt;}
.y124{bottom:461.777333pt;}
.y27{bottom:461.788000pt;}
.yfc{bottom:461.821333pt;}
.y12c{bottom:463.786667pt;}
.ydb{bottom:465.684000pt;}
.y44{bottom:467.634667pt;}
.y166{bottom:470.956000pt;}
.ya6{bottom:471.256000pt;}
.y14c{bottom:472.284000pt;}
.y86{bottom:476.425333pt;}
.y5e{bottom:477.224000pt;}
.yef{bottom:479.468000pt;}
.y26{bottom:479.853333pt;}
.y123{bottom:481.038667pt;}
.yfb{bottom:481.082667pt;}
.y12b{bottom:483.048000pt;}
.yda{bottom:484.945333pt;}
.y43{bottom:486.896000pt;}
.y10a{bottom:487.586667pt;}
.y165{bottom:490.216000pt;}
.y14b{bottom:491.545333pt;}
.yc6{bottom:492.374667pt;}
.ya{bottom:494.497333pt;}
.y85{bottom:495.686667pt;}
.y25{bottom:497.918667pt;}
.yee{bottom:498.729333pt;}
.y122{bottom:500.300000pt;}
.yfa{bottom:500.344000pt;}
.y12a{bottom:502.309333pt;}
.ya5{bottom:503.785333pt;}
.yd9{bottom:504.206667pt;}
.y42{bottom:506.157333pt;}
.y164{bottom:509.477333pt;}
.y14a{bottom:510.806667pt;}
.yc5{bottom:511.636000pt;}
.y5d{bottom:512.657333pt;}
.y84{bottom:514.946667pt;}
.y24{bottom:515.984000pt;}
.y9{bottom:517.538667pt;}
.yed{bottom:517.990667pt;}
.yf9{bottom:519.605333pt;}
.y129{bottom:521.570667pt;}
.yd8{bottom:523.468000pt;}
.y41{bottom:525.418667pt;}
.y163{bottom:528.738667pt;}
.y149{bottom:530.066667pt;}
.y23{bottom:534.049333pt;}
.y83{bottom:534.208000pt;}
.yf8{bottom:538.865333pt;}
.yec{bottom:539.041333pt;}
.y121{bottom:540.382667pt;}
.y8{bottom:540.578667pt;}
.y109{bottom:540.832000pt;}
.yc4{bottom:541.192000pt;}
.yd7{bottom:542.729333pt;}
.y40{bottom:544.680000pt;}
.y162{bottom:548.000000pt;}
.y148{bottom:549.328000pt;}
.y22{bottom:552.116000pt;}
.y82{bottom:553.469333pt;}
.yf7{bottom:558.126667pt;}
.yeb{bottom:558.302667pt;}
.y108{bottom:560.092000pt;}
.yd6{bottom:561.990667pt;}
.y7{bottom:563.620000pt;}
.y3f{bottom:563.940000pt;}
.y161{bottom:567.261333pt;}
.ya4{bottom:567.750667pt;}
.y5c{bottom:568.214667pt;}
.y147{bottom:568.589333pt;}
.y120{bottom:569.606667pt;}
.y81{bottom:572.730667pt;}
.y21{bottom:575.218667pt;}
.yf6{bottom:577.388000pt;}
.yea{bottom:577.564000pt;}
.y107{bottom:579.353333pt;}
.yd5{bottom:581.250667pt;}
.yc3{bottom:582.758667pt;}
.y3e{bottom:583.201333pt;}
.y160{bottom:586.522667pt;}
.y6{bottom:586.661333pt;}
.ya3{bottom:587.012000pt;}
.y5b{bottom:587.476000pt;}
.y146{bottom:587.850667pt;}
.y80{bottom:591.992000pt;}
.yd4{bottom:600.512000pt;}
.yc2{bottom:602.020000pt;}
.y3d{bottom:602.462667pt;}
.y11e{bottom:605.261333pt;}
.y15f{bottom:605.782667pt;}
.y20{bottom:606.125333pt;}
.y13b{bottom:606.158667pt;}
.ya2{bottom:606.272000pt;}
.y5a{bottom:606.736000pt;}
.y145{bottom:607.112000pt;}
.y5{bottom:609.701333pt;}
.y7f{bottom:611.253333pt;}
.yd3{bottom:619.773333pt;}
.yc1{bottom:621.280000pt;}
.y3c{bottom:621.724000pt;}
.y11d{bottom:624.522667pt;}
.y15e{bottom:625.044000pt;}
.y1f{bottom:625.386667pt;}
.y59{bottom:625.997333pt;}
.y167{bottom:626.372000pt;}
.y144{bottom:626.373333pt;}
.y169{bottom:626.582667pt;}
.y7e{bottom:630.513333pt;}
.ye9{bottom:634.590667pt;}
.ya1{bottom:638.802667pt;}
.y3b{bottom:640.985333pt;}
.y11c{bottom:643.782667pt;}
.y15d{bottom:644.305333pt;}
.y168{bottom:644.648000pt;}
.y58{bottom:645.258667pt;}
.y143{bottom:645.633333pt;}
.y7d{bottom:649.774667pt;}
.yc0{bottom:650.836000pt;}
.yd2{bottom:656.661333pt;}
.y3a{bottom:660.245333pt;}
.y1e{bottom:662.713333pt;}
.y11b{bottom:663.044000pt;}
.y15c{bottom:663.566667pt;}
.y57{bottom:664.520000pt;}
.y142{bottom:664.894667pt;}
.y39{bottom:679.506667pt;}
.y1d{bottom:680.778667pt;}
.y11a{bottom:682.305333pt;}
.y15b{bottom:682.828000pt;}
.y56{bottom:683.781333pt;}
.y141{bottom:684.156000pt;}
.y7c{bottom:685.309333pt;}
.ybf{bottom:692.402667pt;}
.y1c{bottom:698.844000pt;}
.y119{bottom:701.566667pt;}
.y15a{bottom:702.089333pt;}
.ya0{bottom:702.768000pt;}
.y55{bottom:703.042667pt;}
.y140{bottom:703.417333pt;}
.y4{bottom:704.553333pt;}
.y79{bottom:704.789333pt;}
.ybe{bottom:711.664000pt;}
.y38{bottom:714.376000pt;}
.y1b{bottom:716.910667pt;}
.y118{bottom:720.828000pt;}
.yd1{bottom:720.896000pt;}
.y159{bottom:721.349333pt;}
.y9f{bottom:722.029333pt;}
.y54{bottom:722.302667pt;}
.y13f{bottom:722.678667pt;}
.y78{bottom:724.050667pt;}
.ybd{bottom:730.925333pt;}
.y37{bottom:733.637333pt;}
.y1a{bottom:734.976000pt;}
.y3{bottom:738.932000pt;}
.yd0{bottom:740.157333pt;}
.y9e{bottom:741.289333pt;}
.y7b{bottom:741.466667pt;}
.y53{bottom:741.564000pt;}
.y13e{bottom:741.938667pt;}
.y77{bottom:743.312000pt;}
.y36{bottom:752.898667pt;}
.y19{bottom:753.041333pt;}
.ycf{bottom:759.418667pt;}
.ybc{bottom:760.481333pt;}
.y9d{bottom:760.550667pt;}
.y7a{bottom:760.728000pt;}
.y52{bottom:760.825333pt;}
.y13d{bottom:761.200000pt;}
.y76{bottom:762.573333pt;}
.y18{bottom:771.106667pt;}
.y35{bottom:772.160000pt;}
.y9c{bottom:779.812000pt;}
.y75{bottom:781.834667pt;}
.y17{bottom:789.172000pt;}
.y158{bottom:793.745333pt;}
.y9b{bottom:799.073333pt;}
.y74{bottom:801.094667pt;}
.ybb{bottom:802.046667pt;}
.y16{bottom:807.238667pt;}
.y9a{bottom:818.334667pt;}
.y73{bottom:820.356000pt;}
.yba{bottom:821.308000pt;}
.y15{bottom:825.304000pt;}
.y51{bottom:833.596000pt;}
.y99{bottom:837.594667pt;}
.y72{bottom:839.617333pt;}
.yb9{bottom:840.569333pt;}
.y14{bottom:843.369333pt;}
.y98{bottom:856.856000pt;}
.y71{bottom:858.878667pt;}
.yb8{bottom:859.830667pt;}
.y34{bottom:860.162667pt;}
.y13{bottom:861.434667pt;}
.y33{bottom:868.149333pt;}
.y97{bottom:876.117333pt;}
.yb7{bottom:879.092000pt;}
.y12{bottom:879.500000pt;}
.y70{bottom:893.925333pt;}
.y96{bottom:895.378667pt;}
.y11{bottom:897.566667pt;}
.yb6{bottom:898.353333pt;}
.y2{bottom:909.374667pt;}
.y95{bottom:914.640000pt;}
.y10{bottom:915.632000pt;}
.yb5{bottom:917.613333pt;}
.yf{bottom:933.697333pt;}
.y94{bottom:933.901333pt;}
.yb4{bottom:936.874667pt;}
.y6f{bottom:947.169333pt;}
.y1{bottom:966.430667pt;}
.hb{height:24.696550pt;}
.h4{height:40.960034pt;}
.h5{height:43.636400pt;}
.h3{height:47.820800pt;}
.ha{height:51.403288pt;}
.h9{height:51.408621pt;}
.h8{height:57.384800pt;}
.h2{height:63.938133pt;}
.h7{height:68.861600pt;}
.h6{height:99.148400pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x17{left:92.116000pt;}
.x13{left:94.488000pt;}
.x24{left:99.268000pt;}
.x1e{left:100.697333pt;}
.x1c{left:116.624000pt;}
.x18{left:117.900000pt;}
.x15{left:133.508000pt;}
.x1d{left:138.524000pt;}
.x7{left:146.750667pt;}
.x1{left:150.720000pt;}
.x19{left:153.798667pt;}
.x22{left:160.480000pt;}
.x8{left:165.536000pt;}
.x26{left:178.948000pt;}
.x1a{left:203.744000pt;}
.xe{left:212.210667pt;}
.x5{left:235.721333pt;}
.x2{left:241.529333pt;}
.x23{left:260.457333pt;}
.x21{left:273.833333pt;}
.x25{left:276.758667pt;}
.xf{left:288.770667pt;}
.xc{left:293.713333pt;}
.x11{left:301.972000pt;}
.xa{left:310.636000pt;}
.x20{left:314.804000pt;}
.x12{left:316.273333pt;}
.x27{left:336.041333pt;}
.xb{left:345.690667pt;}
.xd{left:348.185333pt;}
.x9{left:349.702667pt;}
.x14{left:363.349333pt;}
.x16{left:364.849333pt;}
.x1f{left:389.046667pt;}
.x1b{left:392.948000pt;}
.x6{left:407.573333pt;}
.x10{left:448.264000pt;}
.x3{left:503.860000pt;}
.x4{left:591.405333pt;}
}




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