
    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_b81c52aaa6c8370a680dd63d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_bc74efec3c2f5aac0e8b50a6.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_94cda837bb04afb2f2367a64.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.682617;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_58662a008e3c1e1886e44cd7.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-24.492444px;}
.v10{vertical-align:-20.163748px;}
.v6{vertical-align:-17.948271px;}
.v3{vertical-align:-15.843424px;}
.v7{vertical-align:-13.658989px;}
.va{vertical-align:-11.485294px;}
.v9{vertical-align:-10.061369px;}
.vf{vertical-align:-7.927781px;}
.vd{vertical-align:-1.469464px;}
.v0{vertical-align:0.000000px;}
.ve{vertical-align:2.165487px;}
.v11{vertical-align:3.582055px;}
.v8{vertical-align:9.295061px;}
.v2{vertical-align:15.121526px;}
.vb{vertical-align:17.279365px;}
.v5{vertical-align:18.694122px;}
.v4{vertical-align:33.103166px;}
.vc{vertical-align:38.146165px;}
.ls1{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.000174px;}
.ls12{letter-spacing:0.003619px;}
.ls13{letter-spacing:0.011401px;}
.ls14{letter-spacing:0.365856px;}
.lsb{letter-spacing:0.370324px;}
.ls19{letter-spacing:0.381755px;}
.ls1b{letter-spacing:0.392172px;}
.ls3{letter-spacing:0.495485px;}
.ls10{letter-spacing:0.716644px;}
.lsf{letter-spacing:0.720122px;}
.ls11{letter-spacing:8.644639px;}
.ls16{letter-spacing:9.014935px;}
.lsd{letter-spacing:9.361175px;}
.ls15{letter-spacing:13.319897px;}
.lsa{letter-spacing:14.002209px;}
.ls17{letter-spacing:14.405185px;}
.lse{letter-spacing:14.406006px;}
.ls18{letter-spacing:14.410038px;}
.ls5{letter-spacing:15.468991px;}
.ls4{letter-spacing:15.471288px;}
.ls1d{letter-spacing:20.854500px;}
.ls6{letter-spacing:21.043419px;}
.ls9{letter-spacing:21.243065px;}
.ls2{letter-spacing:21.404690px;}
.ls1a{letter-spacing:24.144967px;}
.ls1c{letter-spacing:24.152963px;}
.ls7{letter-spacing:24.822679px;}
.ls8{letter-spacing:37.110607px;}
.ls0{letter-spacing:41.184236px;}
.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;}
}
.ws31{word-spacing:-49.679400px;}
.ws2e{word-spacing:-29.310846px;}
.ws2f{word-spacing:-28.317258px;}
.ws1e{word-spacing:-21.060034px;}
.ws91{word-spacing:-17.640161px;}
.ws3{word-spacing:-15.840092px;}
.ws4c{word-spacing:-14.040023px;}
.ws74{word-spacing:-13.140173px;}
.ws6e{word-spacing:-12.959908px;}
.ws45{word-spacing:-12.419850px;}
.ws1{word-spacing:-10.620150px;}
.ws4b{word-spacing:-9.360000px;}
.ws77{word-spacing:-8.820000px;}
.ws5b{word-spacing:-8.280023px;}
.ws7c{word-spacing:-3.836930px;}
.ws7d{word-spacing:-3.481926px;}
.ws6d{word-spacing:-2.414884px;}
.ws35{word-spacing:-2.090892px;}
.wsd{word-spacing:-1.837451px;}
.ws9d{word-spacing:-1.622895px;}
.ws5a{word-spacing:-1.524218px;}
.ws25{word-spacing:-1.457288px;}
.ws67{word-spacing:-1.291682px;}
.ws3e{word-spacing:-1.267207px;}
.ws6f{word-spacing:-1.208896px;}
.wsf{word-spacing:-1.077126px;}
.ws53{word-spacing:-1.013766px;}
.ws32{word-spacing:-0.993588px;}
.ws88{word-spacing:-0.898561px;}
.ws7b{word-spacing:-0.893532px;}
.ws1c{word-spacing:-0.867483px;}
.ws76{word-spacing:-0.840971px;}
.ws5{word-spacing:-0.826876px;}
.ws1d{word-spacing:-0.823685px;}
.ws93{word-spacing:-0.705606px;}
.ws72{word-spacing:-0.683289px;}
.ws5d{word-spacing:-0.673921px;}
.ws2{word-spacing:-0.633604px;}
.ws21{word-spacing:-0.570243px;}
.ws84{word-spacing:-0.561601px;}
.ws70{word-spacing:-0.525607px;}
.wsc{word-spacing:-0.380162px;}
.ws5f{word-spacing:-0.336961px;}
.ws9{word-spacing:-0.216065px;}
.ws6{word-spacing:-0.190081px;}
.ws66{word-spacing:-0.168480px;}
.ws29{word-spacing:-0.126721px;}
.ws65{word-spacing:-0.112320px;}
.ws78{word-spacing:-0.105121px;}
.ws8b{word-spacing:-0.039421px;}
.wse{word-spacing:0.000000px;}
.ws7{word-spacing:0.052685px;}
.ws20{word-spacing:0.063360px;}
.ws10{word-spacing:0.063380px;}
.ws8{word-spacing:0.063392px;}
.ws71{word-spacing:0.157682px;}
.wsb{word-spacing:0.212831px;}
.ws83{word-spacing:0.224640px;}
.ws40{word-spacing:0.253441px;}
.wsa{word-spacing:0.354155px;}
.ws62{word-spacing:0.393121px;}
.ws4{word-spacing:0.443523px;}
.ws6b{word-spacing:0.449281px;}
.ws47{word-spacing:0.506883px;}
.ws6a{word-spacing:0.561601px;}
.ws87{word-spacing:0.721301px;}
.ws5c{word-spacing:0.730081px;}
.ws28{word-spacing:0.823685px;}
.ws27{word-spacing:0.864265px;}
.ws75{word-spacing:0.893532px;}
.ws7a{word-spacing:1.051214px;}
.ws16{word-spacing:1.077126px;}
.ws6c{word-spacing:1.142283px;}
.ws26{word-spacing:1.215217px;}
.ws1f{word-spacing:1.267207px;}
.ws63{word-spacing:1.291682px;}
.ws51{word-spacing:1.334556px;}
.ws89{word-spacing:1.516322px;}
.ws52{word-spacing:1.774090px;}
.ws64{word-spacing:2.077923px;}
.ws55{word-spacing:2.344334px;}
.ws0{word-spacing:2.896525px;}
.ws46{word-spacing:3.527237px;}
.ws9e{word-spacing:3.624644px;}
.ws15{word-spacing:3.801622px;}
.ws22{word-spacing:3.991703px;}
.ws24{word-spacing:4.245145px;}
.ws4f{word-spacing:5.132190px;}
.ws99{word-spacing:5.644851px;}
.ws23{word-spacing:5.702450px;}
.ws38{word-spacing:5.765793px;}
.ws9b{word-spacing:5.927094px;}
.ws9a{word-spacing:6.098244px;}
.ws18{word-spacing:6.336037px;}
.ws9c{word-spacing:6.365444px;}
.ws95{word-spacing:6.421019px;}
.ws37{word-spacing:6.776357px;}
.ws3b{word-spacing:6.816954px;}
.ws94{word-spacing:6.844382px;}
.ws39{word-spacing:6.969640px;}
.ws3a{word-spacing:7.010298px;}
.ws54{word-spacing:7.086087px;}
.ws3c{word-spacing:7.223082px;}
.ws17{word-spacing:7.603229px;}
.ws3d{word-spacing:7.603244px;}
.ws2d{word-spacing:8.445498px;}
.ws98{word-spacing:10.372415px;}
.ws1b{word-spacing:10.581181px;}
.ws1a{word-spacing:11.024704px;}
.ws19{word-spacing:11.240775px;}
.ws11{word-spacing:11.404866px;}
.ws97{word-spacing:11.571946px;}
.ws96{word-spacing:11.995309px;}
.ws48{word-spacing:12.481992px;}
.ws49{word-spacing:12.672073px;}
.ws86{word-spacing:12.748341px;}
.ws57{word-spacing:13.369037px;}
.ws8e{word-spacing:14.112129px;}
.ws92{word-spacing:14.752103px;}
.ws8d{word-spacing:14.817735px;}
.ws8c{word-spacing:15.022262px;}
.ws56{word-spacing:15.650011px;}
.ws44{word-spacing:15.840092px;}
.ws43{word-spacing:16.473695px;}
.ws12{word-spacing:17.804263px;}
.ws13{word-spacing:18.035419px;}
.ws50{word-spacing:18.184425px;}
.ws14{word-spacing:18.818029px;}
.ws2c{word-spacing:19.374966px;}
.ws4d{word-spacing:19.641714px;}
.ws4e{word-spacing:20.338678px;}
.ws85{word-spacing:21.340835px;}
.ws8a{word-spacing:22.464036px;}
.ws2b{word-spacing:22.852524px;}
.ws34{word-spacing:23.443336px;}
.ws33{word-spacing:24.520462px;}
.ws36{word-spacing:24.710543px;}
.ws2a{word-spacing:26.596670px;}
.ws73{word-spacing:27.017036px;}
.ws68{word-spacing:29.443022px;}
.ws5e{word-spacing:30.155977px;}
.ws41{word-spacing:30.256695px;}
.ws42{word-spacing:30.603057px;}
.ws90{word-spacing:32.034532px;}
.ws8f{word-spacing:32.246214px;}
.ws60{word-spacing:36.300465px;}
.ws61{word-spacing:36.897180px;}
.ws30{word-spacing:44.363704px;}
.ws58{word-spacing:52.399024px;}
.ws7f{word-spacing:74.638513px;}
.ws7e{word-spacing:75.652279px;}
.ws81{word-spacing:76.919486px;}
.ws59{word-spacing:98.007415px;}
.ws80{word-spacing:128.178023px;}
.ws82{word-spacing:134.830862px;}
.ws79{word-spacing:209.901497px;}
.ws69{word-spacing:224.549967px;}
.ws3f{word-spacing:480.905188px;}
.ws4a{word-spacing:768.304202px;}
._5{margin-left:-7.658683px;}
._3{margin-left:-5.297031px;}
._8{margin-left:-3.801622px;}
._2{margin-left:-2.268736px;}
._1{margin-left:-1.085048px;}
._0{width:1.085048px;}
._15{width:12.474071px;}
._6{width:14.472958px;}
._19{width:15.650011px;}
._7{width:16.663777px;}
._f{width:18.876938px;}
._a{width:21.162363px;}
._c{width:23.184782px;}
._b{width:24.191423px;}
._e{width:25.407507px;}
._d{width:28.211826px;}
._16{width:29.737586px;}
._13{width:31.947939px;}
._38{width:33.949403px;}
._9{width:35.038283px;}
._3a{width:36.185755px;}
._4{width:37.295020px;}
._10{width:40.575180px;}
._11{width:41.718481px;}
._14{width:47.583636px;}
._1c{width:52.115667px;}
._1d{width:53.824569px;}
._1b{width:56.188406px;}
._1a{width:57.685849px;}
._2a{width:67.035269px;}
._1e{width:68.302476px;}
._2b{width:82.469225px;}
._1f{width:85.461776px;}
._2c{width:90.478604px;}
._18{width:115.155986px;}
._31{width:130.522357px;}
._20{width:131.789564px;}
._34{width:140.749452px;}
._23{width:150.670953px;}
._36{width:174.252708px;}
._27{width:192.678877px;}
._24{width:208.265527px;}
._21{width:251.540658px;}
._28{width:267.380750px;}
._2d{width:269.015882px;}
._25{width:272.449579px;}
._2f{width:283.474283px;}
._39{width:288.328712px;}
._32{width:303.655960px;}
._22{width:323.771477px;}
._26{width:333.909136px;}
._29{width:339.611569px;}
._2e{width:344.680398px;}
._30{width:354.818057px;}
._12{width:983.588174px;}
._33{width:1058.875300px;}
._35{width:1092.713482px;}
._17{width:1296.153329px;}
._37{width:2270.895092px;}
.fc6{color:rgb(153,151,201);}
.fc3{color:transparent;}
.fc5{color:rgb(5,99,193);}
.fc2{color:rgb(44,42,82);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsd{font-size:28.080000px;}
.fse{font-size:33.120091px;}
.fs4{font-size:34.560000px;}
.fsf{font-size:35.280000px;}
.fsc{font-size:37.440000px;}
.fs6{font-size:42.480598px;}
.fs10{font-size:46.799584px;}
.fs8{font-size:49.679400px;}
.fs3{font-size:51.120045px;}
.fs0{font-size:51.839630px;}
.fs9{font-size:52.560690px;}
.fsb{font-size:56.160091px;}
.fs5{font-size:63.360367px;}
.fs2{font-size:65.520598px;}
.fsa{font-size:70.560644px;}
.fs7{font-size:84.240136px;}
.fs1{font-size:98.640689px;}
.y0{bottom:0.000000px;}
.yf{bottom:89.820220px;}
.y8{bottom:90.009988px;}
.y11e{bottom:90.358471px;}
.y115{bottom:91.805597px;}
.ye7{bottom:114.300126px;}
.yd1{bottom:116.815197px;}
.y10a{bottom:118.619028px;}
.y2f{bottom:120.612415px;}
.y3c{bottom:122.950962px;}
.y6c{bottom:123.674883px;}
.y124{bottom:125.083761px;}
.y69{bottom:127.070859px;}
.y2e{bottom:135.371615px;}
.y109{bottom:135.539227px;}
.yf7{bottom:137.149775px;}
.y123{bottom:137.684843px;}
.yf4{bottom:137.691146px;}
.y29{bottom:143.994718px;}
.ye6{bottom:146.696949px;}
.y3a{bottom:147.617857px;}
.ye4{bottom:147.953793px;}
.y45{bottom:148.132613px;}
.y6a{bottom:148.330378px;}
.yd0{bottom:148.673985px;}
.yfa{bottom:150.295664px;}
.y2d{bottom:150.316477px;}
.y122{bottom:150.467346px;}
.ycd{bottom:150.655930px;}
.y8c{bottom:150.659862px;}
.y2c{bottom:165.075676px;}
.y67{bottom:165.414208px;}
.y44{bottom:167.038417px;}
.yf9{bottom:167.215862px;}
.y8b{bottom:167.395785px;}
.y121{bottom:167.759983px;}
.y108{bottom:169.375272px;}
.y3b{bottom:173.171609px;}
.y6b{bottom:173.709867px;}
.y68{bottom:173.891754px;}
.y28{bottom:176.218226px;}
.y2b{bottom:179.831101px;}
.yf8{bottom:184.135977px;}
.yad{bottom:194.753435px;}
.y2a{bottom:195.476951px;}
.y3d{bottom:200.711460px;}
.y8a{bottom:201.240450px;}
.y6d{bottom:201.431605px;}
.y66{bottom:201.613566px;}
.y107{bottom:203.219936px;}
.y11d{bottom:204.130299px;}
.y27{bottom:208.432104px;}
.yac{bottom:211.682169px;}
.y11c{bottom:218.889498px;}
.y106{bottom:219.955860px;}
.y43{bottom:227.154178px;}
.yab{bottom:228.602368px;}
.y89{bottom:235.080763px;}
.y26{bottom:240.650798px;}
.yaa{bottom:245.518298px;}
.y42{bottom:246.238897px;}
.y11b{bottom:248.411599px;}
.y88{bottom:251.996693px;}
.y25{bottom:259.194051px;}
.y4b{bottom:265.873267px;}
.y61{bottom:266.754465px;}
.y87{bottom:268.916892px;}
.y48{bottom:274.677430px;}
.y11a{bottom:277.933773px;}
.y24{bottom:278.273860px;}
.ya9{bottom:279.178688px;}
.yf5{bottom:279.535613px;}
.yf2{bottom:279.898164px;}
.ye5{bottom:284.930352px;}
.yc9{bottom:285.118897px;}
.y60{bottom:285.297718px;}
.y86{bottom:285.837090px;}
.yc8{bottom:285.839090px;}
.ye2{bottom:287.095933px;}
.ye1{bottom:287.816220px;}
.yce{bottom:288.536506px;}
.y47{bottom:293.215868px;}
.y49{bottom:295.014830px;}
.ya8{bottom:296.098886px;}
.y119{bottom:307.630284px;}
.yf6{bottom:309.409810px;}
.y4a{bottom:310.328978px;}
.ycf{bottom:311.212840px;}
.ycb{bottom:311.754306px;}
.y46{bottom:312.295678px;}
.ya7{bottom:313.019001px;}
.ye3{bottom:313.736251px;}
.y85{bottom:319.497480px;}
.y84{bottom:336.417678px;}
.y62{bottom:340.734211px;}
.y23{bottom:343.073798px;}
.ya6{bottom:346.859398px;}
.y41{bottom:347.936890px;}
.y83{bottom:353.337793px;}
.y22{bottom:361.612236px;}
.yd{bottom:361.974787px;}
.ya5{bottom:363.775328px;}
.y40{bottom:372.237433px;}
.y4c{bottom:373.856827px;}
.ya4{bottom:380.695443px;}
.y82{bottom:387.182457px;}
.yc{bottom:389.693033px;}
.y120{bottom:395.085992px;}
.y64{bottom:395.092682px;}
.y3f{bottom:396.533161px;}
.ya3{bottom:397.435718px;}
.y81{bottom:403.914113px;}
.y11f{bottom:408.951758px;}
.y63{bottom:410.754882px;}
.y21{bottom:412.915648px;}
.ya2{bottom:414.355916px;}
.yb{bottom:417.416095px;}
.y3e{bottom:420.833798px;}
.y80{bottom:420.842848px;}
.y10{bottom:422.470705px;}
.ya1{bottom:431.276031px;}
.y20{bottom:431.816637px;}
.y7f{bottom:437.763046px;}
.ya{bottom:445.313162px;}
.ya0{bottom:448.196229px;}
.y39{bottom:448.377945px;}
.yf3{bottom:449.093417px;}
.y1f{bottom:450.896447px;}
.y118{bottom:452.337385px;}
.ycc{bottom:453.057307px;}
.y7e{bottom:454.678976px;}
.yca{bottom:455.213257px;}
.y65{bottom:458.993418px;}
.y38{bottom:467.457849px;}
.y8d{bottom:468.719507px;}
.y9{bottom:473.572828px;}
.y117{bottom:477.177788px;}
.y7d{bottom:481.858344px;}
.y105{bottom:484.734581px;}
.yc7{bottom:485.454821px;}
.y37{bottom:486.537658px;}
.y116{bottom:502.558085px;}
.ye{bottom:520.740066px;}
.y1e{bottom:701.102460px;}
.y11{bottom:701.464658px;}
.y1{bottom:704.521943px;}
.y5{bottom:706.679674px;}
.yc2{bottom:724.680469px;}
.ye0{bottom:725.581821px;}
.yc5{bottom:725.937441px;}
.y1b{bottom:729.891525px;}
.y36{bottom:732.414889px;}
.y59{bottom:734.407251px;}
.y9e{bottom:734.931293px;}
.y5f{bottom:738.539545px;}
.yc4{bottom:742.857639px;}
.y35{bottom:743.218907px;}
.yc1{bottom:744.296882px;}
.yff{bottom:748.618461px;}
.yfc{bottom:749.159880px;}
.y9d{bottom:750.771040px;}
.y101{bottom:751.315878px;}
.y114{bottom:752.753820px;}
.y57{bottom:759.062746px;}
.y5c{bottom:759.417664px;}
.yc3{bottom:759.777795px;}
.y104{bottom:761.757324px;}
.yc0{bottom:764.096979px;}
.yeb{bottom:764.280662px;}
.ydc{bottom:765.895241px;}
.yed{bottom:766.262607px;}
.yf1{bottom:766.615528px;}
.yef{bottom:767.698318px;}
.ydb{bottom:767.877186px;}
.yda{bottom:768.597473px;}
.yea{bottom:768.776293px;}
.ydf{bottom:768.960024px;}
.yd8{bottom:770.033137px;}
.y7{bottom:773.451540px;}
.y113{bottom:773.813496px;}
.yc6{bottom:774.538446px;}
.y5d{bottom:776.878127px;}
.y5b{bottom:778.497521px;}
.y1d{bottom:778.671443px;}
.y103{bottom:778.677522px;}
.y9c{bottom:782.454528px;}
.y7c{bottom:782.816501px;}
.ybf{bottom:783.717263px;}
.y58{bottom:784.442162px;}
.y5e{bottom:785.166119px;}
.y102{bottom:795.597678px;}
.y7b{bottom:799.561003px;}
.y6{bottom:800.098759px;}
.ybe{bottom:803.339483px;}
.y56{bottom:806.394588px;}
.y5a{bottom:811.985825px;}
.ybd{bottom:812.876036px;}
.y9b{bottom:814.130028px;}
.y112{bottom:816.475440px;}
.y7a{bottom:816.476933px;}
.y55{bottom:824.036798px;}
.y9a{bottom:829.973769px;}
.y111{bottom:837.173370px;}
.y54{bottom:841.679008px;}
.y99{bottom:845.813516px;}
.ybc{bottom:849.057675px;}
.y79{bottom:850.317288px;}
.y110{bottom:858.413919px;}
.y53{bottom:859.321219px;}
.y98{bottom:861.657257px;}
.y78{bottom:867.236608px;}
.ybb{bottom:868.679871px;}
.y1c{bottom:871.738788px;}
.y77{bottom:884.162789px;}
.yba{bottom:888.479991px;}
.yfd{bottom:889.021410px;}
.yfb{bottom:891.179320px;}
.y97{bottom:893.338356px;}
.y76{bottom:901.082109px;}
.y52{bottom:902.881478px;}
.ye9{bottom:903.059378px;}
.ye8{bottom:903.778673px;}
.yd4{bottom:904.497992px;}
.yd3{bottom:905.039387px;}
.yb9{bottom:908.094493px;}
.y96{bottom:909.173286px;}
.y4{bottom:910.437054px;}
.yfe{bottom:920.701588px;}
.y10f{bottom:921.773793px;}
.y51{bottom:921.954560px;}
.yd9{bottom:922.681598px;}
.yd6{bottom:923.215274px;}
.y95{bottom:925.014639px;}
.yee{bottom:925.017408px;}
.y100{bottom:925.195284px;}
.y19{bottom:926.455998px;}
.yf0{bottom:926.641617px;}
.ydd{bottom:926.819517px;}
.yb7{bottom:927.716713px;}
.yec{bottom:927.894613px;}
.yde{bottom:929.874622px;}
.y75{bottom:934.742520px;}
.yb6{bottom:937.260984px;}
.y34{bottom:939.596770px;}
.y3{bottom:939.600600px;}
.y50{bottom:940.857485px;}
.y10e{bottom:942.833442px;}
.y18{bottom:944.995404px;}
.yb8{bottom:946.797513px;}
.y74{bottom:951.661840px;}
.y94{bottom:956.697363px;}
.y33{bottom:958.136176px;}
.y4f{bottom:959.938309px;}
.y17{bottom:964.076229px;}
.y2{bottom:969.113348px;}
.y93{bottom:972.538716px;}
.yb5{bottom:977.039100px;}
.y73{bottom:985.500500px;}
.y92{bottom:988.373646px;}
.y32{bottom:990.357773px;}
.y16{bottom:996.297801px;}
.yb4{bottom:996.661320px;}
.y72{bottom:1002.419819px;}
.y91{bottom:1004.214998px;}
.y10d{bottom:1006.201938px;}
.y31{bottom:1009.438597px;}
.y15{bottom:1015.200726px;}
.yb3{bottom:1016.461440px;}
.y71{bottom:1019.339139px;}
.y90{bottom:1020.056351px;}
.y10c{bottom:1027.261614px;}
.y30{bottom:1028.341521px;}
.y4e{bottom:1028.519398px;}
.yb2{bottom:1036.075941px;}
.y70{bottom:1036.080230px;}
.y14{bottom:1047.422322px;}
.y4d{bottom:1047.600223px;}
.y10b{bottom:1048.321263px;}
.y6f{bottom:1052.999550px;}
.yb0{bottom:1055.698161px;}
.yd7{bottom:1064.515395px;}
.yaf{bottom:1065.242433px;}
.y13{bottom:1066.495405px;}
.yd5{bottom:1066.681035px;}
.y8f{bottom:1069.736209px;}
.yb1{bottom:1074.778974px;}
.y9f{bottom:1079.999707px;}
.y12{bottom:1085.398329px;}
.y6e{bottom:1093.140480px;}
.y8e{bottom:1093.318380px;}
.yd2{bottom:1096.195585px;}
.yae{bottom:1098.361213px;}
.y1a{bottom:1132.015806px;}
.h6{height:29.516548px;}
.h45{height:33.669437px;}
.hc{height:34.494193px;}
.h9{height:34.518450px;}
.h27{height:35.622186px;}
.h2{height:36.019431px;}
.h33{height:36.520440px;}
.h13{height:38.061624px;}
.h10{height:39.021391px;}
.h8{height:39.132578px;}
.h4{height:39.134651px;}
.h46{height:39.139484px;}
.hb{height:39.843567px;}
.h2c{height:40.358808px;}
.h2f{height:40.360278px;}
.h2d{height:40.364141px;}
.h29{height:40.368227px;}
.h2a{height:40.373696px;}
.h31{height:40.378592px;}
.h2b{height:40.379097px;}
.h30{height:40.379546px;}
.h2e{height:40.380494px;}
.h34{height:40.388445px;}
.h32{height:40.393620px;}
.h18{height:42.563366px;}
.h20{height:42.564784px;}
.h3d{height:42.565043px;}
.h3e{height:42.565936px;}
.h25{height:42.571508px;}
.h17{height:42.572461px;}
.h26{height:42.574937px;}
.h16{height:42.575223px;}
.h28{height:42.576260px;}
.h3a{height:42.576901px;}
.h15{height:42.577913px;}
.h1a{height:42.585290px;}
.h23{height:42.586795px;}
.h24{height:42.587687px;}
.h19{height:42.588052px;}
.h1c{height:42.588437px;}
.h38{height:42.592802px;}
.h39{height:42.593080px;}
.h3f{height:42.600697px;}
.h47{height:42.603447px;}
.he{height:42.941499px;}
.h1d{height:43.282408px;}
.h1e{height:43.283025px;}
.h1b{height:43.290472px;}
.h14{height:43.293584px;}
.h3b{height:43.298847px;}
.h3c{height:43.299739px;}
.h21{height:43.303801px;}
.h22{height:43.304693px;}
.h35{height:43.310426px;}
.h36{height:43.310709px;}
.h37{height:43.311601px;}
.h1f{height:43.318061px;}
.h5{height:44.024318px;}
.h44{height:45.447425px;}
.h43{height:46.189804px;}
.h12{height:47.491640px;}
.hf{height:48.210671px;}
.h11{height:48.316452px;}
.ha{height:49.027244px;}
.h7{height:57.092436px;}
.h3{height:66.852186px;}
.hd{height:76.044665px;}
.h41{height:82.170436px;}
.h40{height:82.170483px;}
.h42{height:82.201498px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x26{left:47.342384px;}
.x18{left:48.780987px;}
.x8{left:51.116779px;}
.x32{left:52.199599px;}
.x22{left:54.898916px;}
.xa{left:57.061590px;}
.x31{left:62.818960px;}
.x19{left:64.257563px;}
.x34{left:65.518271px;}
.x9{left:66.956874px;}
.x2c{left:70.378202px;}
.x2b{left:71.461522px;}
.x29{left:72.537832px;}
.x2d{left:73.618330px;}
.xc{left:74.699030px;}
.x27{left:75.958720px;}
.x3e{left:81.543990px;}
.x61{left:92.518180px;}
.x10{left:106.379208px;}
.x12{left:112.497137px;}
.x17{left:122.221510px;}
.x3{left:160.026212px;}
.x15{left:161.100251px;}
.x2e{left:163.080250px;}
.x16{left:164.338628px;}
.x1b{left:174.235700px;}
.x2{left:178.918700px;}
.x14{left:183.235238px;}
.x4c{left:186.121082px;}
.x4b{left:187.203897px;}
.x3d{left:188.464611px;}
.x44{left:190.444620px;}
.x35{left:191.883223px;}
.x52{left:193.499714px;}
.x38{left:202.858367px;}
.x37{left:205.023995px;}
.x1e{left:233.278514px;}
.x2f{left:240.664216px;}
.x62{left:250.558110px;}
.x60{left:254.705079px;}
.x3c{left:256.860093px;}
.x5{left:260.642340px;}
.x33{left:261.902926px;}
.x1f{left:263.705059px;}
.x21{left:266.218746px;}
.xf{left:274.318299px;}
.xe{left:275.946210px;}
.x3a{left:279.181618px;}
.x49{left:282.778118px;}
.x36{left:302.941757px;}
.x20{left:319.853590px;}
.x4{left:325.446849px;}
.x5c{left:332.100530px;}
.x5d{left:334.080539px;}
.x25{left:340.017653px;}
.x30{left:347.043435px;}
.x5f{left:351.720393px;}
.x57{left:361.259279px;}
.x6{left:377.640798px;}
.x24{left:379.076828px;}
.x4d{left:390.425794px;}
.x23{left:391.857479px;}
.x3f{left:393.480876px;}
.x45{left:395.824404px;}
.x46{left:396.899476px;}
.x40{left:398.879486px;}
.x1a{left:407.880473px;}
.x7{left:422.644235px;}
.x39{left:442.439808px;}
.x56{left:466.919203px;}
.x5b{left:468.899213px;}
.x5e{left:471.420641px;}
.x3b{left:473.764146px;}
.x4a{left:485.644251px;}
.x2a{left:541.085512px;}
.x1d{left:554.224348px;}
.x13{left:565.202419px;}
.x55{left:582.662882px;}
.x11{left:586.259359px;}
.x5a{left:588.062436px;}
.x54{left:590.223249px;}
.x53{left:594.544875px;}
.x41{left:596.879693px;}
.x47{left:597.962531px;}
.x42{left:599.045322px;}
.x4f{left:600.123297px;}
.x4e{left:601.559008px;}
.x63{left:605.706369px;}
.xd{left:608.403998px;}
.x64{left:626.588175px;}
.x65{left:638.288230px;}
.x59{left:709.739393px;}
.x58{left:711.542470px;}
.x1c{left:713.703283px;}
.xb{left:788.388351px;}
.x43{left:797.404162px;}
.x48{left:800.101579px;}
.x51{left:805.501133px;}
.x50{left:809.648754px;}
.x28{left:839.874643px;}
.x1{left:846.356985px;}
@media print{
.v1{vertical-align:-21.771062pt;}
.v10{vertical-align:-17.923331pt;}
.v6{vertical-align:-15.954019pt;}
.v3{vertical-align:-14.083043pt;}
.v7{vertical-align:-12.141324pt;}
.va{vertical-align:-10.209151pt;}
.v9{vertical-align:-8.943439pt;}
.vf{vertical-align:-7.046916pt;}
.vd{vertical-align:-1.306191pt;}
.v0{vertical-align:0.000000pt;}
.ve{vertical-align:1.924877pt;}
.v11{vertical-align:3.184049pt;}
.v8{vertical-align:8.262277pt;}
.v2{vertical-align:13.441356pt;}
.vb{vertical-align:15.359436pt;}
.v5{vertical-align:16.616998pt;}
.v4{vertical-align:29.425037pt;}
.vc{vertical-align:33.907702pt;}
.ls1{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.000155pt;}
.ls12{letter-spacing:0.003217pt;}
.ls13{letter-spacing:0.010135pt;}
.ls14{letter-spacing:0.325205pt;}
.lsb{letter-spacing:0.329177pt;}
.ls19{letter-spacing:0.339338pt;}
.ls1b{letter-spacing:0.348598pt;}
.ls3{letter-spacing:0.440431pt;}
.ls10{letter-spacing:0.637017pt;}
.lsf{letter-spacing:0.640109pt;}
.ls11{letter-spacing:7.684124pt;}
.ls16{letter-spacing:8.013276pt;}
.lsd{letter-spacing:8.321044pt;}
.ls15{letter-spacing:11.839909pt;}
.lsa{letter-spacing:12.446408pt;}
.ls17{letter-spacing:12.804609pt;}
.lse{letter-spacing:12.805339pt;}
.ls18{letter-spacing:12.808923pt;}
.ls5{letter-spacing:13.750215pt;}
.ls4{letter-spacing:13.752256pt;}
.ls1d{letter-spacing:18.537333pt;}
.ls6{letter-spacing:18.705262pt;}
.ls9{letter-spacing:18.882724pt;}
.ls2{letter-spacing:19.026391pt;}
.ls1a{letter-spacing:21.462193pt;}
.ls1c{letter-spacing:21.469300pt;}
.ls7{letter-spacing:22.064604pt;}
.ls8{letter-spacing:32.987206pt;}
.ls0{letter-spacing:36.608210pt;}
.ws31{word-spacing:-44.159467pt;}
.ws2e{word-spacing:-26.054085pt;}
.ws2f{word-spacing:-25.170896pt;}
.ws1e{word-spacing:-18.720030pt;}
.ws91{word-spacing:-15.680143pt;}
.ws3{word-spacing:-14.080082pt;}
.ws4c{word-spacing:-12.480020pt;}
.ws74{word-spacing:-11.680153pt;}
.ws6e{word-spacing:-11.519918pt;}
.ws45{word-spacing:-11.039867pt;}
.ws1{word-spacing:-9.440133pt;}
.ws4b{word-spacing:-8.320000pt;}
.ws77{word-spacing:-7.840000pt;}
.ws5b{word-spacing:-7.360020pt;}
.ws7c{word-spacing:-3.410605pt;}
.ws7d{word-spacing:-3.095045pt;}
.ws6d{word-spacing:-2.146563pt;}
.ws35{word-spacing:-1.858571pt;}
.wsd{word-spacing:-1.633289pt;}
.ws9d{word-spacing:-1.442573pt;}
.ws5a{word-spacing:-1.354860pt;}
.ws25{word-spacing:-1.295368pt;}
.ws67{word-spacing:-1.148162pt;}
.ws3e{word-spacing:-1.126407pt;}
.ws6f{word-spacing:-1.074574pt;}
.wsf{word-spacing:-0.957446pt;}
.ws53{word-spacing:-0.901125pt;}
.ws32{word-spacing:-0.883189pt;}
.ws88{word-spacing:-0.798721pt;}
.ws7b{word-spacing:-0.794250pt;}
.ws1c{word-spacing:-0.771096pt;}
.ws76{word-spacing:-0.747530pt;}
.ws5{word-spacing:-0.735001pt;}
.ws1d{word-spacing:-0.732164pt;}
.ws93{word-spacing:-0.627206pt;}
.ws72{word-spacing:-0.607368pt;}
.ws5d{word-spacing:-0.599041pt;}
.ws2{word-spacing:-0.563203pt;}
.ws21{word-spacing:-0.506883pt;}
.ws84{word-spacing:-0.499201pt;}
.ws70{word-spacing:-0.467206pt;}
.wsc{word-spacing:-0.337922pt;}
.ws5f{word-spacing:-0.299520pt;}
.ws9{word-spacing:-0.192058pt;}
.ws6{word-spacing:-0.168961pt;}
.ws66{word-spacing:-0.149760pt;}
.ws29{word-spacing:-0.112641pt;}
.ws65{word-spacing:-0.099840pt;}
.ws78{word-spacing:-0.093441pt;}
.ws8b{word-spacing:-0.035041pt;}
.wse{word-spacing:0.000000pt;}
.ws7{word-spacing:0.046831pt;}
.ws20{word-spacing:0.056320pt;}
.ws10{word-spacing:0.056338pt;}
.ws8{word-spacing:0.056349pt;}
.ws71{word-spacing:0.140162pt;}
.wsb{word-spacing:0.189183pt;}
.ws83{word-spacing:0.199680pt;}
.ws40{word-spacing:0.225281pt;}
.wsa{word-spacing:0.314805pt;}
.ws62{word-spacing:0.349441pt;}
.ws4{word-spacing:0.394242pt;}
.ws6b{word-spacing:0.399361pt;}
.ws47{word-spacing:0.450563pt;}
.ws6a{word-spacing:0.499201pt;}
.ws87{word-spacing:0.641157pt;}
.ws5c{word-spacing:0.648961pt;}
.ws28{word-spacing:0.732164pt;}
.ws27{word-spacing:0.768236pt;}
.ws75{word-spacing:0.794250pt;}
.ws7a{word-spacing:0.934412pt;}
.ws16{word-spacing:0.957446pt;}
.ws6c{word-spacing:1.015362pt;}
.ws26{word-spacing:1.080193pt;}
.ws1f{word-spacing:1.126407pt;}
.ws63{word-spacing:1.148162pt;}
.ws51{word-spacing:1.186272pt;}
.ws89{word-spacing:1.347842pt;}
.ws52{word-spacing:1.576969pt;}
.ws64{word-spacing:1.847043pt;}
.ws55{word-spacing:2.083852pt;}
.ws0{word-spacing:2.574689pt;}
.ws46{word-spacing:3.135322pt;}
.ws9e{word-spacing:3.221905pt;}
.ws15{word-spacing:3.379220pt;}
.ws22{word-spacing:3.548181pt;}
.ws24{word-spacing:3.773462pt;}
.ws4f{word-spacing:4.561946pt;}
.ws99{word-spacing:5.017646pt;}
.ws23{word-spacing:5.068845pt;}
.ws38{word-spacing:5.125150pt;}
.ws9b{word-spacing:5.268528pt;}
.ws9a{word-spacing:5.420661pt;}
.ws18{word-spacing:5.632033pt;}
.ws9c{word-spacing:5.658172pt;}
.ws95{word-spacing:5.707572pt;}
.ws37{word-spacing:6.023429pt;}
.ws3b{word-spacing:6.059515pt;}
.ws94{word-spacing:6.083895pt;}
.ws39{word-spacing:6.195236pt;}
.ws3a{word-spacing:6.231376pt;}
.ws54{word-spacing:6.298744pt;}
.ws3c{word-spacing:6.420517pt;}
.ws17{word-spacing:6.758426pt;}
.ws3d{word-spacing:6.758439pt;}
.ws2d{word-spacing:7.507109pt;}
.ws98{word-spacing:9.219924pt;}
.ws1b{word-spacing:9.405495pt;}
.ws1a{word-spacing:9.799737pt;}
.ws19{word-spacing:9.991800pt;}
.ws11{word-spacing:10.137659pt;}
.ws97{word-spacing:10.286174pt;}
.ws96{word-spacing:10.662497pt;}
.ws48{word-spacing:11.095104pt;}
.ws49{word-spacing:11.264065pt;}
.ws86{word-spacing:11.331858pt;}
.ws57{word-spacing:11.883589pt;}
.ws8e{word-spacing:12.544114pt;}
.ws92{word-spacing:13.112980pt;}
.ws8d{word-spacing:13.171320pt;}
.ws8c{word-spacing:13.353122pt;}
.ws56{word-spacing:13.911121pt;}
.ws44{word-spacing:14.080082pt;}
.ws43{word-spacing:14.643285pt;}
.ws12{word-spacing:15.826012pt;}
.ws13{word-spacing:16.031483pt;}
.ws50{word-spacing:16.163934pt;}
.ws14{word-spacing:16.727137pt;}
.ws2c{word-spacing:17.222192pt;}
.ws4d{word-spacing:17.459301pt;}
.ws4e{word-spacing:18.078825pt;}
.ws85{word-spacing:18.969631pt;}
.ws8a{word-spacing:19.968032pt;}
.ws2b{word-spacing:20.313355pt;}
.ws34{word-spacing:20.838521pt;}
.ws33{word-spacing:21.795966pt;}
.ws36{word-spacing:21.964927pt;}
.ws2a{word-spacing:23.641485pt;}
.ws73{word-spacing:24.015143pt;}
.ws68{word-spacing:26.171575pt;}
.ws5e{word-spacing:26.805313pt;}
.ws41{word-spacing:26.894840pt;}
.ws42{word-spacing:27.202718pt;}
.ws90{word-spacing:28.475140pt;}
.ws8f{word-spacing:28.663301pt;}
.ws60{word-spacing:32.267080pt;}
.ws61{word-spacing:32.797493pt;}
.ws30{word-spacing:39.434404pt;}
.ws58{word-spacing:46.576910pt;}
.ws7f{word-spacing:66.345345pt;}
.ws7e{word-spacing:67.246470pt;}
.ws81{word-spacing:68.372876pt;}
.ws59{word-spacing:87.117703pt;}
.ws80{word-spacing:113.936020pt;}
.ws82{word-spacing:119.849655pt;}
.ws79{word-spacing:186.579108pt;}
.ws69{word-spacing:199.599970pt;}
.ws3f{word-spacing:427.471278pt;}
.ws4a{word-spacing:682.937068pt;}
._5{margin-left:-6.807718pt;}
._3{margin-left:-4.708472pt;}
._8{margin-left:-3.379220pt;}
._2{margin-left:-2.016654pt;}
._1{margin-left:-0.964487pt;}
._0{width:0.964487pt;}
._15{width:11.088063pt;}
._6{width:12.864851pt;}
._19{width:13.911121pt;}
._7{width:14.812246pt;}
._f{width:16.779501pt;}
._a{width:18.810989pt;}
._c{width:20.608695pt;}
._b{width:21.503487pt;}
._e{width:22.584451pt;}
._d{width:25.077179pt;}
._16{width:26.433410pt;}
._13{width:28.398168pt;}
._38{width:30.177247pt;}
._9{width:31.145141pt;}
._3a{width:32.165115pt;}
._4{width:33.151129pt;}
._10{width:36.066827pt;}
._11{width:37.083094pt;}
._14{width:42.296565pt;}
._1c{width:46.325037pt;}
._1d{width:47.844061pt;}
._1b{width:49.945250pt;}
._1a{width:51.276310pt;}
._2a{width:59.586905pt;}
._1e{width:60.713312pt;}
._2b{width:73.305978pt;}
._1f{width:75.966023pt;}
._2c{width:80.425426pt;}
._18{width:102.360877pt;}
._31{width:116.019873pt;}
._20{width:117.146279pt;}
._34{width:125.110624pt;}
._23{width:133.929736pt;}
._36{width:154.891296pt;}
._27{width:171.270113pt;}
._24{width:185.124913pt;}
._21{width:223.591696pt;}
._28{width:237.671778pt;}
._2d{width:239.125229pt;}
._25{width:242.177404pt;}
._2f{width:251.977141pt;}
._39{width:256.292189pt;}
._32{width:269.916409pt;}
._22{width:287.796868pt;}
._26{width:296.808121pt;}
._29{width:301.876950pt;}
._2e{width:306.382576pt;}
._30{width:315.393828pt;}
._12{width:874.300599pt;}
._33{width:941.222489pt;}
._35{width:971.300873pt;}
._17{width:1152.136292pt;}
._37{width:2018.573415pt;}
.fsd{font-size:24.960000pt;}
.fse{font-size:29.440081pt;}
.fs4{font-size:30.720000pt;}
.fsf{font-size:31.360000pt;}
.fsc{font-size:33.280000pt;}
.fs6{font-size:37.760532pt;}
.fs10{font-size:41.599630pt;}
.fs8{font-size:44.159467pt;}
.fs3{font-size:45.440040pt;}
.fs0{font-size:46.079671pt;}
.fs9{font-size:46.720613pt;}
.fsb{font-size:49.920081pt;}
.fs5{font-size:56.320326pt;}
.fs2{font-size:58.240531pt;}
.fsa{font-size:62.720572pt;}
.fs7{font-size:74.880121pt;}
.fs1{font-size:87.680613pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:79.840195pt;}
.y8{bottom:80.008879pt;}
.y11e{bottom:80.318641pt;}
.y115{bottom:81.604975pt;}
.ye7{bottom:101.600112pt;}
.yd1{bottom:103.835731pt;}
.y10a{bottom:105.439136pt;}
.y2f{bottom:107.211036pt;}
.y3c{bottom:109.289744pt;}
.y6c{bottom:109.933229pt;}
.y124{bottom:111.185565pt;}
.y69{bottom:112.951874pt;}
.y2e{bottom:120.330324pt;}
.y109{bottom:120.479313pt;}
.yf7{bottom:121.910911pt;}
.y123{bottom:122.386527pt;}
.yf4{bottom:122.392130pt;}
.y29{bottom:127.995305pt;}
.ye6{bottom:130.397288pt;}
.y3a{bottom:131.215873pt;}
.ye4{bottom:131.514482pt;}
.y45{bottom:131.673434pt;}
.y6a{bottom:131.849225pt;}
.yd0{bottom:132.154653pt;}
.yfa{bottom:133.596146pt;}
.y2d{bottom:133.614646pt;}
.y122{bottom:133.748752pt;}
.ycd{bottom:133.916382pt;}
.y8c{bottom:133.919877pt;}
.y2c{bottom:146.733935pt;}
.y67{bottom:147.034852pt;}
.y44{bottom:148.478593pt;}
.yf9{bottom:148.636322pt;}
.y8b{bottom:148.796254pt;}
.y121{bottom:149.119985pt;}
.y108{bottom:150.555797pt;}
.y3b{bottom:153.930319pt;}
.y6b{bottom:154.408771pt;}
.y68{bottom:154.570448pt;}
.y28{bottom:156.638423pt;}
.y2b{bottom:159.849867pt;}
.yf8{bottom:163.676424pt;}
.yad{bottom:173.114165pt;}
.y2a{bottom:173.757290pt;}
.y3d{bottom:178.410187pt;}
.y8a{bottom:178.880400pt;}
.y6d{bottom:179.050316pt;}
.y66{bottom:179.212059pt;}
.y107{bottom:180.639943pt;}
.y11d{bottom:181.449154pt;}
.y27{bottom:185.272982pt;}
.yac{bottom:188.161928pt;}
.y11c{bottom:194.568443pt;}
.y106{bottom:195.516320pt;}
.y43{bottom:201.914825pt;}
.yab{bottom:203.202105pt;}
.y89{bottom:208.960678pt;}
.y26{bottom:213.911820pt;}
.yaa{bottom:218.238487pt;}
.y42{bottom:218.879020pt;}
.y11b{bottom:220.810310pt;}
.y88{bottom:223.997061pt;}
.y25{bottom:230.394712pt;}
.y4b{bottom:236.331793pt;}
.y61{bottom:237.115080pt;}
.y87{bottom:239.037237pt;}
.y48{bottom:244.157716pt;}
.y11a{bottom:247.052243pt;}
.y24{bottom:247.354542pt;}
.ya9{bottom:248.158834pt;}
.yf5{bottom:248.476100pt;}
.yf2{bottom:248.798368pt;}
.ye5{bottom:253.271424pt;}
.yc9{bottom:253.439020pt;}
.y60{bottom:253.597972pt;}
.y86{bottom:254.077413pt;}
.yc8{bottom:254.079191pt;}
.ye2{bottom:255.196385pt;}
.ye1{bottom:255.836640pt;}
.yce{bottom:256.476895pt;}
.y47{bottom:260.636327pt;}
.y49{bottom:262.235405pt;}
.ya8{bottom:263.199010pt;}
.y119{bottom:273.449142pt;}
.yf6{bottom:275.030942pt;}
.y4a{bottom:275.847980pt;}
.ycf{bottom:276.633636pt;}
.ycb{bottom:277.114939pt;}
.y46{bottom:277.596158pt;}
.ya7{bottom:278.239112pt;}
.ye3{bottom:278.876668pt;}
.y85{bottom:283.997760pt;}
.y84{bottom:299.037936pt;}
.y62{bottom:302.874854pt;}
.y23{bottom:304.954487pt;}
.ya6{bottom:308.319465pt;}
.y41{bottom:309.277235pt;}
.y83{bottom:314.078038pt;}
.y22{bottom:321.433098pt;}
.yd{bottom:321.755366pt;}
.ya5{bottom:323.355847pt;}
.y40{bottom:330.877718pt;}
.y4c{bottom:332.317180pt;}
.ya4{bottom:338.395949pt;}
.y82{bottom:344.162184pt;}
.yc{bottom:346.393807pt;}
.y120{bottom:351.187549pt;}
.y64{bottom:351.193495pt;}
.y3f{bottom:352.473921pt;}
.ya3{bottom:353.276194pt;}
.y81{bottom:359.034767pt;}
.y11f{bottom:363.512674pt;}
.y63{bottom:365.115451pt;}
.y21{bottom:367.036132pt;}
.ya2{bottom:368.316370pt;}
.yb{bottom:371.036529pt;}
.y3e{bottom:374.074487pt;}
.y80{bottom:374.082531pt;}
.y10{bottom:375.529516pt;}
.ya1{bottom:383.356472pt;}
.y20{bottom:383.837011pt;}
.y7f{bottom:389.122707pt;}
.ya{bottom:395.833922pt;}
.ya0{bottom:398.396648pt;}
.y39{bottom:398.558173pt;}
.yf3{bottom:399.194148pt;}
.y1f{bottom:400.796841pt;}
.y118{bottom:402.077675pt;}
.ycc{bottom:402.717606pt;}
.y7e{bottom:404.159090pt;}
.yca{bottom:404.634007pt;}
.y65{bottom:407.994149pt;}
.y38{bottom:415.518088pt;}
.y8d{bottom:416.639562pt;}
.y9{bottom:420.953624pt;}
.y117{bottom:424.158034pt;}
.y7d{bottom:428.318528pt;}
.y105{bottom:430.875183pt;}
.yc7{bottom:431.515396pt;}
.y37{bottom:432.477919pt;}
.y116{bottom:446.718298pt;}
.ye{bottom:462.880059pt;}
.y1e{bottom:623.202187pt;}
.y11{bottom:623.524141pt;}
.y1{bottom:626.241727pt;}
.y5{bottom:628.159711pt;}
.yc2{bottom:644.160417pt;}
.ye0{bottom:644.961619pt;}
.yc5{bottom:645.277725pt;}
.y1b{bottom:648.792467pt;}
.y36{bottom:651.035457pt;}
.y59{bottom:652.806446pt;}
.y9e{bottom:653.272261pt;}
.y5f{bottom:656.479596pt;}
.yc4{bottom:660.317901pt;}
.y35{bottom:660.639029pt;}
.yc1{bottom:661.597229pt;}
.yff{bottom:665.438632pt;}
.yfc{bottom:665.919893pt;}
.y9d{bottom:667.352036pt;}
.y101{bottom:667.836336pt;}
.y114{bottom:669.114507pt;}
.y57{bottom:674.722441pt;}
.y5c{bottom:675.037924pt;}
.yc3{bottom:675.358040pt;}
.y104{bottom:677.117621pt;}
.yc0{bottom:679.197314pt;}
.yeb{bottom:679.360588pt;}
.ydc{bottom:680.795770pt;}
.yed{bottom:681.122317pt;}
.yf1{bottom:681.436025pt;}
.yef{bottom:682.398505pt;}
.ydb{bottom:682.557499pt;}
.yda{bottom:683.197754pt;}
.yea{bottom:683.356705pt;}
.ydf{bottom:683.520021pt;}
.yd8{bottom:684.473899pt;}
.y7{bottom:687.512480pt;}
.y113{bottom:687.834218pt;}
.yc6{bottom:688.478618pt;}
.y5d{bottom:690.558335pt;}
.y5b{bottom:691.997796pt;}
.y1d{bottom:692.152394pt;}
.y103{bottom:692.157797pt;}
.y9c{bottom:695.515136pt;}
.y7c{bottom:695.836890pt;}
.ybf{bottom:696.637567pt;}
.y58{bottom:697.281922pt;}
.y5e{bottom:697.925439pt;}
.y102{bottom:707.197936pt;}
.y7b{bottom:710.720891pt;}
.y6{bottom:711.198897pt;}
.ybe{bottom:714.079540pt;}
.y56{bottom:716.795189pt;}
.y5a{bottom:721.765178pt;}
.ybd{bottom:722.556476pt;}
.y9b{bottom:723.671136pt;}
.y112{bottom:725.755947pt;}
.y7a{bottom:725.757274pt;}
.y55{bottom:732.477154pt;}
.y9a{bottom:737.754461pt;}
.y111{bottom:744.154106pt;}
.y54{bottom:748.159119pt;}
.y99{bottom:751.834236pt;}
.ybc{bottom:754.717934pt;}
.y79{bottom:755.837589pt;}
.y110{bottom:763.034594pt;}
.y53{bottom:763.841083pt;}
.y98{bottom:765.917562pt;}
.y78{bottom:770.876985pt;}
.ybb{bottom:772.159886pt;}
.y1c{bottom:774.878922pt;}
.y77{bottom:785.922479pt;}
.yba{bottom:789.759992pt;}
.yfd{bottom:790.241254pt;}
.yfb{bottom:792.159396pt;}
.y97{bottom:794.078539pt;}
.y76{bottom:800.961875pt;}
.y52{bottom:802.561313pt;}
.ye9{bottom:802.719447pt;}
.ye8{bottom:803.358821pt;}
.yd4{bottom:803.998215pt;}
.yd3{bottom:804.479455pt;}
.yb9{bottom:807.195105pt;}
.y96{bottom:808.154032pt;}
.y4{bottom:809.277382pt;}
.yfe{bottom:818.401411pt;}
.y10f{bottom:819.354482pt;}
.y51{bottom:819.515165pt;}
.yd9{bottom:820.161420pt;}
.yd6{bottom:820.635799pt;}
.y95{bottom:822.235235pt;}
.yee{bottom:822.237696pt;}
.y100{bottom:822.395808pt;}
.y19{bottom:823.516443pt;}
.yf0{bottom:823.681437pt;}
.ydd{bottom:823.839571pt;}
.yb7{bottom:824.637078pt;}
.yec{bottom:824.795211pt;}
.yde{bottom:826.555220pt;}
.y75{bottom:830.882240pt;}
.yb6{bottom:833.120875pt;}
.y34{bottom:835.197129pt;}
.y3{bottom:835.200533pt;}
.y50{bottom:836.317764pt;}
.y10e{bottom:838.074171pt;}
.y18{bottom:839.995915pt;}
.yb8{bottom:841.597790pt;}
.y74{bottom:845.921635pt;}
.y94{bottom:850.397656pt;}
.y33{bottom:851.676601pt;}
.y4f{bottom:853.278497pt;}
.y17{bottom:856.956648pt;}
.y2{bottom:861.434087pt;}
.y93{bottom:864.478859pt;}
.yb5{bottom:868.479200pt;}
.y73{bottom:876.000444pt;}
.y92{bottom:878.554352pt;}
.y32{bottom:880.318020pt;}
.y16{bottom:885.598046pt;}
.yb4{bottom:885.921173pt;}
.y72{bottom:891.039839pt;}
.y91{bottom:892.635554pt;}
.y10d{bottom:894.401723pt;}
.y31{bottom:897.278753pt;}
.y15{bottom:902.400645pt;}
.yb3{bottom:903.521280pt;}
.y71{bottom:906.079235pt;}
.y90{bottom:906.716756pt;}
.y10c{bottom:913.121434pt;}
.y30{bottom:914.081352pt;}
.y4e{bottom:914.239465pt;}
.yb2{bottom:920.956392pt;}
.y70{bottom:920.960205pt;}
.y14{bottom:931.042064pt;}
.y4d{bottom:931.200198pt;}
.y10b{bottom:931.841123pt;}
.y6f{bottom:935.999600pt;}
.yb0{bottom:938.398366pt;}
.yd7{bottom:946.235907pt;}
.yaf{bottom:946.882162pt;}
.y13{bottom:947.995915pt;}
.yd5{bottom:948.160920pt;}
.y8f{bottom:950.876630pt;}
.yb1{bottom:955.359088pt;}
.y9f{bottom:959.999740pt;}
.y12{bottom:964.798515pt;}
.y6e{bottom:971.680426pt;}
.y8e{bottom:971.838560pt;}
.yd2{bottom:974.396075pt;}
.yae{bottom:976.321078pt;}
.y1a{bottom:1006.236272pt;}
.h6{height:26.236932pt;}
.h45{height:29.928388pt;}
.hc{height:30.661505pt;}
.h9{height:30.683067pt;}
.h27{height:31.664166pt;}
.h2{height:32.017272pt;}
.h33{height:32.462614pt;}
.h13{height:33.832555pt;}
.h10{height:34.685681pt;}
.h8{height:34.784514pt;}
.h4{height:34.786356pt;}
.h46{height:34.790652pt;}
.hb{height:35.416504pt;}
.h2c{height:35.874496pt;}
.h2f{height:35.875802pt;}
.h2d{height:35.879237pt;}
.h29{height:35.882869pt;}
.h2a{height:35.887730pt;}
.h31{height:35.892082pt;}
.h2b{height:35.892530pt;}
.h30{height:35.892930pt;}
.h2e{height:35.893773pt;}
.h34{height:35.900840pt;}
.h32{height:35.905440pt;}
.h18{height:37.834103pt;}
.h20{height:37.835363pt;}
.h3d{height:37.835594pt;}
.h3e{height:37.836387pt;}
.h25{height:37.841340pt;}
.h17{height:37.842188pt;}
.h26{height:37.844389pt;}
.h16{height:37.844643pt;}
.h28{height:37.845565pt;}
.h3a{height:37.846134pt;}
.h15{height:37.847034pt;}
.h1a{height:37.853591pt;}
.h23{height:37.854929pt;}
.h24{height:37.855722pt;}
.h19{height:37.856047pt;}
.h1c{height:37.856389pt;}
.h38{height:37.860268pt;}
.h39{height:37.860516pt;}
.h3f{height:37.867286pt;}
.h47{height:37.869730pt;}
.he{height:38.170221pt;}
.h1d{height:38.473251pt;}
.h1e{height:38.473800pt;}
.h1b{height:38.480419pt;}
.h14{height:38.483186pt;}
.h3b{height:38.487864pt;}
.h3c{height:38.488657pt;}
.h21{height:38.492268pt;}
.h22{height:38.493061pt;}
.h35{height:38.498156pt;}
.h36{height:38.498408pt;}
.h37{height:38.499201pt;}
.h1f{height:38.504943pt;}
.h5{height:39.132727pt;}
.h44{height:40.397711pt;}
.h43{height:41.057604pt;}
.h12{height:42.214791pt;}
.hf{height:42.853930pt;}
.h11{height:42.947958pt;}
.ha{height:43.579773pt;}
.h7{height:50.748832pt;}
.h3{height:59.424165pt;}
.hd{height:67.595258pt;}
.h41{height:73.040387pt;}
.h40{height:73.040429pt;}
.h42{height:73.067998pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x26{left:42.082119pt;}
.x18{left:43.360877pt;}
.x8{left:45.437137pt;}
.x32{left:46.399643pt;}
.x22{left:48.799036pt;}
.xa{left:50.721413pt;}
.x31{left:55.839076pt;}
.x19{left:57.117834pt;}
.x34{left:58.238463pt;}
.x9{left:59.517221pt;}
.x2c{left:62.558402pt;}
.x2b{left:63.521353pt;}
.x29{left:64.478073pt;}
.x2d{left:65.438516pt;}
.xc{left:66.399138pt;}
.x27{left:67.518863pt;}
.x3e{left:72.483547pt;}
.x61{left:82.238382pt;}
.x10{left:94.559296pt;}
.x12{left:99.997455pt;}
.x17{left:108.641343pt;}
.x3{left:142.245521pt;}
.x15{left:143.200223pt;}
.x2e{left:144.960223pt;}
.x16{left:146.078780pt;}
.x1b{left:154.876178pt;}
.x2{left:159.038845pt;}
.x14{left:162.875767pt;}
.x4c{left:165.440962pt;}
.x4b{left:166.403464pt;}
.x3d{left:167.524098pt;}
.x44{left:169.284107pt;}
.x35{left:170.562865pt;}
.x52{left:171.999746pt;}
.x38{left:180.318548pt;}
.x37{left:182.243551pt;}
.x1e{left:207.358679pt;}
.x2f{left:213.923747pt;}
.x62{left:222.718320pt;}
.x60{left:226.404514pt;}
.x3c{left:228.320083pt;}
.x5{left:231.682080pt;}
.x33{left:232.802601pt;}
.x1f{left:234.404497pt;}
.x21{left:236.638885pt;}
.xf{left:243.838488pt;}
.xe{left:245.285520pt;}
.x3a{left:248.161438pt;}
.x49{left:251.358327pt;}
.x36{left:269.281562pt;}
.x20{left:284.314302pt;}
.x4{left:289.286088pt;}
.x5c{left:295.200471pt;}
.x5d{left:296.960479pt;}
.x25{left:302.237914pt;}
.x30{left:308.483053pt;}
.x5f{left:312.640349pt;}
.x57{left:321.119359pt;}
.x6{left:335.680710pt;}
.x24{left:336.957181pt;}
.x4d{left:347.045150pt;}
.x23{left:348.317759pt;}
.x3f{left:349.760778pt;}
.x45{left:351.843915pt;}
.x46{left:352.799534pt;}
.x40{left:354.559543pt;}
.x1a{left:362.560421pt;}
.x7{left:375.683765pt;}
.x39{left:393.279830pt;}
.x56{left:415.039291pt;}
.x5b{left:416.799300pt;}
.x5e{left:419.040570pt;}
.x3b{left:421.123685pt;}
.x4a{left:431.683778pt;}
.x2a{left:480.964899pt;}
.x1d{left:492.643865pt;}
.x13{left:502.402150pt;}
.x55{left:517.922561pt;}
.x11{left:521.119430pt;}
.x5a{left:522.722165pt;}
.x54{left:524.642888pt;}
.x53{left:528.484333pt;}
.x41{left:530.559728pt;}
.x47{left:531.522250pt;}
.x42{left:532.484730pt;}
.x4f{left:533.442931pt;}
.x4e{left:534.719118pt;}
.x63{left:538.405662pt;}
.xd{left:540.803554pt;}
.x64{left:556.967267pt;}
.x65{left:567.367316pt;}
.x59{left:630.879460pt;}
.x58{left:632.482196pt;}
.x1c{left:634.402918pt;}
.xb{left:700.789646pt;}
.x43{left:708.803700pt;}
.x48{left:711.201404pt;}
.x51{left:716.001007pt;}
.x50{left:719.687781pt;}
.x28{left:746.555238pt;}
.x1{left:752.317320pt;}
}




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