
    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_d80583668c029b2319503050.woff')format("woff");}.ff1{font-family:ff1;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_7156ddedede957c34f72136a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_3b39d7a3b16dbb51cbf7b7dc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.708008;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_9fa30a6fd941baa0b3f47c6f.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_01e463b99d18f64408235603.woff')format("woff");}.ff5{font-family:ff5;line-height:1.106934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bc73d4d946a99d7ec19fab92.woff')format("woff");}.ff6{font-family:ff6;line-height:1.975586;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_2e90045b8cce61870caad88c.woff')format("woff");}.ff7{font-family:ff7;line-height:1.975586;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:ff8;src:url('chunks/assets/font_9a173728866e2851ad4220cf.woff')format("woff");}.ff8{font-family:ff8;line-height:0.948242;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:ff9;src:url('chunks/assets/font_039bcdfb61ab1d32b0d5f74f.woff')format("woff");}.ff9{font-family:ff9;line-height:1.172852;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:ffa;src:url('chunks/assets/font_19504a2ec3e14d249866f9d4.woff')format("woff");}.ffa{font-family:ffa;line-height:1.171875;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;}
.m4{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);}
.m1{transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248372,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249669,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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);}
.v7{vertical-align:-27.000000px;}
.v6{vertical-align:-18.180000px;}
.v1{vertical-align:-15.000000px;}
.v5{vertical-align:-12.000000px;}
.v8{vertical-align:-9.120000px;}
.v9{vertical-align:-6.180000px;}
.vb{vertical-align:-3.000000px;}
.v17{vertical-align:-1.500000px;}
.v0{vertical-align:0.000000px;}
.v16{vertical-align:3.000000px;}
.vf{vertical-align:6.000000px;}
.ve{vertical-align:12.060000px;}
.v2{vertical-align:15.000000px;}
.vc{vertical-align:18.060000px;}
.v3{vertical-align:27.000000px;}
.v10{vertical-align:36.000000px;}
.v4{vertical-align:42.000000px;}
.v15{vertical-align:45.000000px;}
.va{vertical-align:51.000000px;}
.vd{vertical-align:57.000000px;}
.v14{vertical-align:63.000000px;}
.v12{vertical-align:72.000000px;}
.v13{vertical-align:75.000000px;}
.v11{vertical-align:84.000000px;}
.ls3c{letter-spacing:-2.016000px;}
.ls8{letter-spacing:-1.344000px;}
.ls49{letter-spacing:-1.272000px;}
.lsb{letter-spacing:-1.032000px;}
.ls3d{letter-spacing:-0.984000px;}
.ls22{letter-spacing:-0.888000px;}
.ls4b{letter-spacing:-0.852000px;}
.ls4c{letter-spacing:-0.786000px;}
.ls24{letter-spacing:-0.750000px;}
.ls48{letter-spacing:-0.744000px;}
.ls9{letter-spacing:-0.036000px;}
.ls21{letter-spacing:-0.024000px;}
.ls7{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.024000px;}
.ls2a{letter-spacing:0.054000px;}
.ls38{letter-spacing:0.060000px;}
.ls42{letter-spacing:0.099000px;}
.ls31{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.240000px;}
.ls35{letter-spacing:0.291000px;}
.ls1{letter-spacing:0.312000px;}
.ls3f{letter-spacing:0.315000px;}
.ls33{letter-spacing:0.420000px;}
.ls29{letter-spacing:0.432000px;}
.ls47{letter-spacing:0.444000px;}
.ls2d{letter-spacing:0.450000px;}
.ls36{letter-spacing:0.471000px;}
.ls1b{letter-spacing:0.504000px;}
.ls3a{letter-spacing:0.636000px;}
.lsc{letter-spacing:0.696000px;}
.ls11{letter-spacing:0.936000px;}
.ls4a{letter-spacing:0.963000px;}
.ls1e{letter-spacing:0.972000px;}
.ls4{letter-spacing:0.984000px;}
.ls20{letter-spacing:1.032000px;}
.ls25{letter-spacing:1.101000px;}
.ls4e{letter-spacing:1.104000px;}
.ls26{letter-spacing:1.107000px;}
.ls2b{letter-spacing:1.152000px;}
.ls45{letter-spacing:1.176000px;}
.ls23{letter-spacing:1.272000px;}
.lsd{letter-spacing:1.296000px;}
.ls2{letter-spacing:1.320000px;}
.ls46{letter-spacing:1.398000px;}
.ls3b{letter-spacing:1.488000px;}
.ls37{letter-spacing:1.770000px;}
.lse{letter-spacing:1.968000px;}
.ls2e{letter-spacing:2.010000px;}
.ls44{letter-spacing:2.040000px;}
.ls4d{letter-spacing:2.088000px;}
.lsf{letter-spacing:2.148000px;}
.ls40{letter-spacing:2.190000px;}
.ls6{letter-spacing:3.000000px;}
.ls34{letter-spacing:3.180000px;}
.ls43{letter-spacing:3.306000px;}
.ls14{letter-spacing:3.471000px;}
.ls10{letter-spacing:3.984000px;}
.ls2c{letter-spacing:5.010000px;}
.ls15{letter-spacing:12.360000px;}
.ls1c{letter-spacing:15.216000px;}
.ls32{letter-spacing:15.396000px;}
.ls27{letter-spacing:15.471000px;}
.ls28{letter-spacing:18.216000px;}
.ls13{letter-spacing:18.471000px;}
.ls18{letter-spacing:21.216000px;}
.ls12{letter-spacing:21.471000px;}
.ls30{letter-spacing:21.591000px;}
.ls17{letter-spacing:22.527000px;}
.ls39{letter-spacing:32.010000px;}
.ls1d{letter-spacing:33.432000px;}
.ls2f{letter-spacing:54.450000px;}
.ls16{letter-spacing:56.160000px;}
.ls1f{letter-spacing:78.552000px;}
.ls1a{letter-spacing:123.000000px;}
.ls3e{letter-spacing:123.336000px;}
.ls0{letter-spacing:166.806000px;}
.ls41{letter-spacing:169.578000px;}
.ls3{letter-spacing:488.016000px;}
.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;}
}
.ws3{word-spacing:-29.988000px;}
.wsa{word-spacing:-24.648000px;}
.wse{word-spacing:-21.984000px;}
.ws5{word-spacing:-21.000000px;}
.ws4{word-spacing:-20.040000px;}
.ws7{word-spacing:-20.016000px;}
.ws21{word-spacing:-19.992000px;}
.ws20{word-spacing:-19.032000px;}
.ws6{word-spacing:-18.984000px;}
.ws1a{word-spacing:-17.328000px;}
.wsd{word-spacing:-17.112000px;}
.ws8{word-spacing:-16.680000px;}
.ws31{word-spacing:-16.272000px;}
.wsb{word-spacing:-15.840000px;}
.ws25{word-spacing:-15.096000px;}
.wsc{word-spacing:-14.952000px;}
.ws26{word-spacing:-14.568000px;}
.ws1{word-spacing:-14.328000px;}
.ws2{word-spacing:-13.656000px;}
.ws0{word-spacing:-13.344000px;}
.ws28{word-spacing:-12.492000px;}
.ws2f{word-spacing:-12.237900px;}
.ws2e{word-spacing:-12.204000px;}
.ws24{word-spacing:-11.664000px;}
.ws10{word-spacing:-11.220000px;}
.ws23{word-spacing:-10.638000px;}
.ws11{word-spacing:-9.240000px;}
.ws9{word-spacing:0.000000px;}
.ws1d{word-spacing:6.123000px;}
.ws13{word-spacing:7.311000px;}
.ws27{word-spacing:8.508000px;}
.ws1b{word-spacing:9.123000px;}
.ws14{word-spacing:9.192000px;}
.wsf{word-spacing:9.372000px;}
.ws18{word-spacing:12.123000px;}
.ws1c{word-spacing:12.183000px;}
.ws22{word-spacing:12.336000px;}
.ws1e{word-spacing:18.183000px;}
.ws1f{word-spacing:21.123000px;}
.ws15{word-spacing:22.566000px;}
.ws16{word-spacing:49.164000px;}
.ws12{word-spacing:53.322000px;}
.ws19{word-spacing:82.974000px;}
.ws2d{word-spacing:164.874000px;}
.ws2c{word-spacing:165.200100px;}
.ws2b{word-spacing:165.360000px;}
.ws29{word-spacing:167.809200px;}
.ws17{word-spacing:182.496000px;}
.ws2a{word-spacing:238.909200px;}
.ws30{word-spacing:258.090000px;}
._23{margin-left:-14.460000px;}
._1b{margin-left:-10.956000px;}
._22{margin-left:-8.892000px;}
._24{margin-left:-6.846000px;}
._1c{margin-left:-4.962000px;}
._5{margin-left:-3.840000px;}
._7{margin-left:-2.646000px;}
._1{margin-left:-1.362000px;}
._0{width:1.584000px;}
._4{width:3.078000px;}
._8{width:5.052000px;}
._b{width:6.354000px;}
._a{width:7.824000px;}
._9{width:9.912000px;}
._10{width:10.920000px;}
._12{width:12.084000px;}
._11{width:13.092000px;}
._18{width:14.334000px;}
._c{width:15.840000px;}
._1a{width:16.878000px;}
._d{width:18.762000px;}
._25{width:20.868000px;}
._13{width:21.888000px;}
._15{width:24.246000px;}
._14{width:25.800000px;}
._16{width:27.276000px;}
._17{width:28.860000px;}
._f{width:30.090000px;}
._e{width:31.872000px;}
._1d{width:33.114000px;}
._1e{width:34.824000px;}
._21{width:36.180000px;}
._1f{width:37.218000px;}
._20{width:39.144000px;}
._26{width:44.772000px;}
._2{width:103.242000px;}
._2a{width:106.512000px;}
._2b{width:134.088000px;}
._28{width:176.815050px;}
._29{width:184.134000px;}
._2d{width:203.532000px;}
._2c{width:232.536000px;}
._27{width:250.295100px;}
._3{width:656.136000px;}
._19{width:848.412000px;}
._2e{width:1119.462000px;}
._6{width:1145.556000px;}
.fc5{color:rgb(255,0,0);}
.fc3{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc4{color:rgb(89,89,89);}
.fc2{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:30.000000px;}
.fs4{font-size:34.059259px;}
.fs9{font-size:42.000000px;}
.fs0{font-size:48.000000px;}
.fs8{font-size:51.000000px;}
.fsb{font-size:54.000000px;}
.fsa{font-size:54.150000px;}
.fs6{font-size:60.000000px;}
.fs3{font-size:66.754693px;}
.fs2{font-size:72.000000px;}
.fs7{font-size:84.000000px;}
.fs5{font-size:108.000000px;}
.yff{bottom:-8.250000px;}
.y0{bottom:0.000000px;}
.y13f{bottom:6.525000px;}
.yfe{bottom:12.750000px;}
.y112{bottom:12.765000px;}
.y106{bottom:12.780000px;}
.y162{bottom:12.945000px;}
.ye1{bottom:13.500000px;}
.y10d{bottom:13.515000px;}
.y103{bottom:13.530000px;}
.y109{bottom:13.545000px;}
.yde{bottom:14.250000px;}
.y114{bottom:14.265000px;}
.ydc{bottom:24.000000px;}
.y13e{bottom:28.095000px;}
.y6{bottom:28.413862px;}
.y4{bottom:28.537500px;}
.y15c{bottom:30.495000px;}
.y7{bottom:36.114559px;}
.ydb{bottom:45.000000px;}
.y3{bottom:49.537500px;}
.y13d{bottom:49.650000px;}
.y16d{bottom:60.675000px;}
.y2{bottom:69.037500px;}
.y13c{bottom:70.470000px;}
.y163{bottom:75.705000px;}
.y140{bottom:80.850000px;}
.y15d{bottom:81.600000px;}
.y16c{bottom:85.995000px;}
.y98{bottom:94.575000px;}
.y15a{bottom:96.075000px;}
.y64{bottom:97.575000px;}
.yfb{bottom:104.325000px;}
.y17c{bottom:105.075000px;}
.y141{bottom:109.200000px;}
.y16b{bottom:111.330000px;}
.y30{bottom:111.825000px;}
.yad{bottom:112.575000px;}
.y97{bottom:114.825000px;}
.y159{bottom:117.075000px;}
.y63{bottom:117.825000px;}
.yd9{bottom:118.575000px;}
.yfa{bottom:124.575000px;}
.y17b{bottom:125.325000px;}
.y2f{bottom:129.075000px;}
.y12b{bottom:131.325000px;}
.y15e{bottom:132.705000px;}
.yac{bottom:132.825000px;}
.y96{bottom:135.825000px;}
.y16a{bottom:136.650000px;}
.y142{bottom:137.550000px;}
.y158{bottom:138.075000px;}
.y62{bottom:138.825000px;}
.yd8{bottom:139.612500px;}
.yf9{bottom:145.612500px;}
.y17a{bottom:146.362500px;}
.y12a{bottom:151.620000px;}
.y95{bottom:156.870000px;}
.ya9{bottom:158.370000px;}
.y61{bottom:159.870000px;}
.y169{bottom:162.000000px;}
.yaa{bottom:162.855000px;}
.y143{bottom:165.945000px;}
.yf8{bottom:166.620000px;}
.ya8{bottom:167.370000px;}
.y129{bottom:172.605000px;}
.y94{bottom:177.120000px;}
.y157{bottom:179.355000px;}
.y60{bottom:180.120000px;}
.yd7{bottom:180.870000px;}
.y15f{bottom:183.795000px;}
.y17e{bottom:185.370000px;}
.yab{bottom:186.870000px;}
.y168{bottom:187.320000px;}
.y179{bottom:187.620000px;}
.y128{bottom:193.620000px;}
.y144{bottom:194.295000px;}
.y93{bottom:198.120000px;}
.y156{bottom:199.605000px;}
.y5f{bottom:201.120000px;}
.ya6{bottom:204.150000px;}
.y17d{bottom:206.400000px;}
.yf7{bottom:207.900000px;}
.y178{bottom:208.650000px;}
.ya7{bottom:210.900000px;}
.y167{bottom:212.625000px;}
.y127{bottom:213.900000px;}
.y92{bottom:218.400000px;}
.y155{bottom:220.650000px;}
.y5e{bottom:221.400000px;}
.yd6{bottom:222.150000px;}
.y145{bottom:222.630000px;}
.yf6{bottom:228.150000px;}
.y177{bottom:228.900000px;}
.ya4{bottom:233.400000px;}
.y126{bottom:234.900000px;}
.ya5{bottom:235.650000px;}
.y166{bottom:237.975000px;}
.y91{bottom:240.150000px;}
.y154{bottom:241.650000px;}
.y5d{bottom:242.400000px;}
.yd5{bottom:243.150000px;}
.yf5{bottom:249.150000px;}
.y176{bottom:249.900000px;}
.y146{bottom:251.025000px;}
.ya3{bottom:255.150000px;}
.y153{bottom:262.650000px;}
.y165{bottom:263.295000px;}
.y5c{bottom:263.400000px;}
.y90{bottom:264.150000px;}
.ya2{bottom:270.195000px;}
.y125{bottom:276.195000px;}
.y13a{bottom:279.195000px;}
.y147{bottom:279.375000px;}
.y5b{bottom:283.695000px;}
.yd4{bottom:284.445000px;}
.y160{bottom:286.005000px;}
.y8f{bottom:288.195000px;}
.y164{bottom:288.630000px;}
.ya1{bottom:290.445000px;}
.y175{bottom:291.195000px;}
.y124{bottom:297.195000px;}
.y139{bottom:300.195000px;}
.y5a{bottom:304.695000px;}
.yd3{bottom:305.445000px;}
.y148{bottom:307.755000px;}
.y2e{bottom:308.445000px;}
.y8e{bottom:311.445000px;}
.y123{bottom:317.445000px;}
.y138{bottom:320.445000px;}
.y59{bottom:324.945000px;}
.yd2{bottom:326.445000px;}
.y2d{bottom:328.695000px;}
.yf4{bottom:331.695000px;}
.y8d{bottom:332.475000px;}
.y149{bottom:336.120000px;}
.y161{bottom:337.125000px;}
.y122{bottom:338.475000px;}
.y137{bottom:341.475000px;}
.y58{bottom:345.975000px;}
.yd1{bottom:346.725000px;}
.y2c{bottom:349.725000px;}
.ya0{bottom:352.725000px;}
.y8c{bottom:353.475000px;}
.y121{bottom:358.725000px;}
.y136{bottom:361.725000px;}
.y152{bottom:366.225000px;}
.y57{bottom:366.975000px;}
.yd0{bottom:367.725000px;}
.y2b{bottom:370.725000px;}
.y8b{bottom:373.725000px;}
.y120{bottom:379.725000px;}
.y135{bottom:382.725000px;}
.y56{bottom:387.225000px;}
.ycf{bottom:387.975000px;}
.y2a{bottom:390.975000px;}
.y9f{bottom:393.975000px;}
.y8a{bottom:394.725000px;}
.y11f{bottom:400.755000px;}
.y134{bottom:403.755000px;}
.y55{bottom:408.255000px;}
.yce{bottom:409.005000px;}
.y29{bottom:412.005000px;}
.y89{bottom:415.005000px;}
.y11e{bottom:421.005000px;}
.y133{bottom:424.005000px;}
.y54{bottom:428.505000px;}
.ycd{bottom:430.005000px;}
.y28{bottom:432.255000px;}
.yf3{bottom:435.255000px;}
.y88{bottom:436.005000px;}
.y11d{bottom:442.005000px;}
.y132{bottom:445.005000px;}
.y53{bottom:449.505000px;}
.ycc{bottom:450.255000px;}
.y27{bottom:453.255000px;}
.y9e{bottom:456.255000px;}
.y87{bottom:457.005000px;}
.y11c{bottom:462.300000px;}
.y131{bottom:465.300000px;}
.y151{bottom:469.800000px;}
.y52{bottom:470.550000px;}
.ycb{bottom:471.300000px;}
.y26{bottom:474.300000px;}
.y86{bottom:477.300000px;}
.y11b{bottom:483.300000px;}
.y130{bottom:486.300000px;}
.y51{bottom:490.800000px;}
.yca{bottom:491.550000px;}
.y25{bottom:494.550000px;}
.y9d{bottom:497.550000px;}
.y85{bottom:498.300000px;}
.y11a{bottom:505.050000px;}
.y12f{bottom:507.300000px;}
.y150{bottom:511.050000px;}
.y50{bottom:511.800000px;}
.yc9{bottom:512.550000px;}
.y24{bottom:515.550000px;}
.y84{bottom:518.550000px;}
.y12e{bottom:527.595000px;}
.y119{bottom:528.345000px;}
.y4f{bottom:532.095000px;}
.yc8{bottom:533.595000px;}
.y23{bottom:535.845000px;}
.yf2{bottom:538.845000px;}
.y83{bottom:539.580000px;}
.y118{bottom:548.595000px;}
.y4e{bottom:553.080000px;}
.yc7{bottom:553.845000px;}
.y22{bottom:556.830000px;}
.y9c{bottom:559.830000px;}
.y82{bottom:560.595000px;}
.y12d{bottom:562.845000px;}
.y4d{bottom:574.095000px;}
.yc6{bottom:574.845000px;}
.y21{bottom:577.845000px;}
.y12c{bottom:580.080000px;}
.y81{bottom:580.845000px;}
.y13b{bottom:581.250000px;}
.y117{bottom:584.595000px;}
.y4c{bottom:594.375000px;}
.yc5{bottom:595.125000px;}
.y20{bottom:598.125000px;}
.y9b{bottom:601.125000px;}
.y80{bottom:601.875000px;}
.y116{bottom:602.625000px;}
.y4b{bottom:615.375000px;}
.yc4{bottom:616.125000px;}
.y1f{bottom:619.125000px;}
.y7f{bottom:622.125000px;}
.yf1{bottom:622.875000px;}
.yf0{bottom:631.125000px;}
.y115{bottom:632.625000px;}
.y4a{bottom:635.625000px;}
.y14f{bottom:636.375000px;}
.yc3{bottom:637.125000px;}
.y1e{bottom:639.375000px;}
.y7e{bottom:643.125000px;}
.y49{bottom:656.670000px;}
.yc2{bottom:657.405000px;}
.y1d{bottom:660.405000px;}
.y113{bottom:662.655000px;}
.y9a{bottom:663.420000px;}
.y7d{bottom:664.155000px;}
.yef{bottom:666.420000px;}
.y48{bottom:677.655000px;}
.yc1{bottom:678.420000px;}
.y1c{bottom:681.405000px;}
.y7c{bottom:684.405000px;}
.yee{bottom:691.155000px;}
.y111{bottom:694.155000px;}
.y47{bottom:697.905000px;}
.yc0{bottom:698.670000px;}
.y14e{bottom:699.405000px;}
.y1b{bottom:701.655000px;}
.y99{bottom:704.655000px;}
.y7b{bottom:705.420000px;}
.yed{bottom:711.405000px;}
.y46{bottom:718.950000px;}
.ybf{bottom:719.700000px;}
.y1a{bottom:722.700000px;}
.y14d{bottom:723.450000px;}
.y110{bottom:724.200000px;}
.y7a{bottom:725.700000px;}
.yec{bottom:732.450000px;}
.y45{bottom:739.200000px;}
.ybe{bottom:740.700000px;}
.y19{bottom:742.950000px;}
.y79{bottom:746.700000px;}
.y10f{bottom:754.200000px;}
.yeb{bottom:756.450000px;}
.y44{bottom:760.200000px;}
.ybd{bottom:763.200000px;}
.y18{bottom:764.700000px;}
.y14c{bottom:766.950000px;}
.y78{bottom:767.700000px;}
.yea{bottom:779.700000px;}
.y43{bottom:781.200000px;}
.y10e{bottom:784.980000px;}
.ybc{bottom:786.495000px;}
.y77{bottom:787.995000px;}
.y17{bottom:788.745000px;}
.y42{bottom:801.495000px;}
.ye9{bottom:802.245000px;}
.y14b{bottom:802.980000px;}
.ybb{bottom:808.245000px;}
.y76{bottom:808.995000px;}
.ye8{bottom:811.230000px;}
.y16{bottom:813.495000px;}
.y10c{bottom:814.980000px;}
.y14a{bottom:820.245000px;}
.y15b{bottom:820.500000px;}
.y41{bottom:822.495000px;}
.y75{bottom:829.245000px;}
.y15{bottom:835.980000px;}
.y40{bottom:842.730000px;}
.y10b{bottom:844.980000px;}
.y74{bottom:850.275000px;}
.yba{bottom:851.775000px;}
.y14{bottom:854.025000px;}
.ye7{bottom:857.025000px;}
.y3f{bottom:863.775000px;}
.y73{bottom:871.275000px;}
.y174{bottom:872.025000px;}
.yb9{bottom:872.775000px;}
.y13{bottom:874.275000px;}
.y10a{bottom:875.775000px;}
.ye6{bottom:878.025000px;}
.y3e{bottom:884.025000px;}
.y72{bottom:891.525000px;}
.yb8{bottom:893.775000px;}
.y12{bottom:895.275000px;}
.y173{bottom:896.025000px;}
.y3d{bottom:905.025000px;}
.y108{bottom:905.775000px;}
.y71{bottom:912.570000px;}
.ye5{bottom:913.320000px;}
.yb7{bottom:914.820000px;}
.y11{bottom:915.570000px;}
.y172{bottom:920.070000px;}
.y3c{bottom:926.070000px;}
.ye4{bottom:931.320000px;}
.y70{bottom:932.820000px;}
.y107{bottom:935.820000px;}
.y10{bottom:936.570000px;}
.yb6{bottom:937.320000px;}
.y171{bottom:944.070000px;}
.y3b{bottom:946.320000px;}
.y6f{bottom:953.820000px;}
.yf{bottom:957.570000px;}
.ye3{bottom:961.320000px;}
.y105{bottom:966.570000px;}
.y3a{bottom:967.320000px;}
.y6e{bottom:974.820000px;}
.yb5{bottom:976.350000px;}
.ye{bottom:977.100000px;}
.y39{bottom:987.600000px;}
.y170{bottom:988.350000px;}
.ye2{bottom:992.100000px;}
.y6d{bottom:995.100000px;}
.y104{bottom:996.600000px;}
.yd{bottom:997.350000px;}
.y38{bottom:1008.600000px;}
.y16f{bottom:1009.350000px;}
.y6c{bottom:1016.100000px;}
.yb4{bottom:1017.600000px;}
.ye0{bottom:1022.850000px;}
.y102{bottom:1026.600000px;}
.yc{bottom:1028.100000px;}
.y37{bottom:1029.600000px;}
.y6b{bottom:1036.350000px;}
.yb3{bottom:1038.600000px;}
.y36{bottom:1049.880000px;}
.y16e{bottom:1050.630000px;}
.ydf{bottom:1053.630000px;}
.y101{bottom:1056.630000px;}
.y6a{bottom:1057.380000px;}
.yb{bottom:1058.880000px;}
.y35{bottom:1070.880000px;}
.y69{bottom:1078.380000px;}
.yb2{bottom:1081.380000px;}
.ydd{bottom:1084.380000px;}
.y100{bottom:1087.380000px;}
.ya{bottom:1090.380000px;}
.y34{bottom:1091.880000px;}
.y68{bottom:1098.630000px;}
.yb1{bottom:1103.130000px;}
.y33{bottom:1112.925000px;}
.yda{bottom:1115.925000px;}
.yfd{bottom:1117.425000px;}
.yb0{bottom:1118.175000px;}
.y67{bottom:1119.675000px;}
.y9{bottom:1121.175000px;}
.y32{bottom:1133.925000px;}
.yaf{bottom:1139.175000px;}
.y66{bottom:1139.925000px;}
.yfc{bottom:1147.425000px;}
.y8{bottom:1152.675000px;}
.y31{bottom:1158.675000px;}
.yae{bottom:1160.175000px;}
.y65{bottom:1160.925000px;}
.y5{bottom:1192.050000px;}
.y1{bottom:1208.955000px;}
.h24{height:29.250000px;}
.h1e{height:30.000000px;}
.h25{height:30.037500px;}
.h1d{height:30.750000px;}
.h1c{height:30.787500px;}
.h26{height:31.500000px;}
.h7{height:33.876323px;}
.h1{height:43.031250px;}
.h4{height:44.070184px;}
.h6{height:44.098032px;}
.h3{height:49.992188px;}
.h2c{height:53.121094px;}
.h15{height:53.484375px;}
.h29{height:53.709961px;}
.ha{height:53.789062px;}
.h28{height:53.859155px;}
.hb{height:54.140625px;}
.h1b{height:62.287500px;}
.hd{height:63.164062px;}
.h2{height:64.546875px;}
.h11{height:64.945312px;}
.h5{height:66.396148px;}
.h2b{height:73.722656px;}
.hc{height:75.304688px;}
.h9{height:81.210938px;}
.h16{height:82.606875px;}
.h13{height:88.945312px;}
.h12{height:91.546875px;}
.he{height:91.687500px;}
.hf{height:91.945312px;}
.h1a{height:94.687500px;}
.h8{height:96.820312px;}
.h23{height:97.546875px;}
.h20{height:100.486875px;}
.h17{height:100.546875px;}
.h21{height:100.606875px;}
.h10{height:106.945312px;}
.h1f{height:107.005312px;}
.h22{height:113.484375px;}
.h19{height:124.687500px;}
.h14{height:137.005313px;}
.h18{height:148.945312px;}
.h27{height:348.000000px;}
.h2a{height:357.750000px;}
.h0{height:1263.000000px;}
.w2{width:53.450377px;}
.w3{width:53.557224px;}
.wb{width:72.825000px;}
.w7{width:116.362500px;}
.w4{width:132.862500px;}
.w6{width:167.400000px;}
.w9{width:174.150000px;}
.wa{width:181.650000px;}
.w5{width:301.725000px;}
.w8{width:348.255000px;}
.wd{width:722.250000px;}
.wc{width:725.250000px;}
.w1{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x1f{left:8.250000px;}
.x36{left:27.862500px;}
.x2e{left:33.975000px;}
.x34{left:45.637500px;}
.x3{left:73.491283px;}
.x1{left:84.824987px;}
.x5{left:112.574987px;}
.x9{left:117.112487px;}
.x35{left:122.445000px;}
.x12{left:138.862487px;}
.x7{left:144.112487px;}
.x30{left:170.445000px;}
.x39{left:174.899987px;}
.x2f{left:180.675000px;}
.x23{left:195.149987px;}
.x32{left:201.899987px;}
.x20{left:217.695000px;}
.xd{left:226.694987px;}
.xb{left:228.194987px;}
.x2d{left:231.150000px;}
.xc{left:244.694987px;}
.x2a{left:281.474987px;}
.x10{left:316.004987px;}
.x16{left:327.269987px;}
.x2b{left:328.769987px;}
.x13{left:332.519987px;}
.xa{left:354.299987px;}
.x6{left:359.549987px;}
.x8{left:373.049987px;}
.x11{left:381.299987px;}
.x33{left:383.549987px;}
.x1d{left:390.344987px;}
.x38{left:395.594987px;}
.x17{left:400.094987px;}
.xe{left:403.844987px;}
.x4{left:407.594987px;}
.x18{left:409.094987px;}
.x24{left:412.844987px;}
.x15{left:415.094987px;}
.x27{left:433.095000px;}
.x1c{left:444.374987px;}
.x2{left:446.624987px;}
.x14{left:448.874987px;}
.x25{left:450.374987px;}
.x26{left:452.624987px;}
.x1a{left:467.624987px;}
.x19{left:492.404987px;}
.x1b{left:509.654987px;}
.x21{left:519.405000px;}
.x1e{left:526.949987px;}
.x37{left:603.375000px;}
.x28{left:607.245000px;}
.x22{left:686.820000px;}
.xf{left:716.849987px;}
.x29{left:788.880000px;}
.x31{left:807.674987px;}
.x2c{left:812.174987px;}
@media print{
.v7{vertical-align:-24.000000pt;}
.v6{vertical-align:-16.160000pt;}
.v1{vertical-align:-13.333333pt;}
.v5{vertical-align:-10.666667pt;}
.v8{vertical-align:-8.106667pt;}
.v9{vertical-align:-5.493333pt;}
.vb{vertical-align:-2.666667pt;}
.v17{vertical-align:-1.333333pt;}
.v0{vertical-align:0.000000pt;}
.v16{vertical-align:2.666667pt;}
.vf{vertical-align:5.333333pt;}
.ve{vertical-align:10.720000pt;}
.v2{vertical-align:13.333333pt;}
.vc{vertical-align:16.053333pt;}
.v3{vertical-align:24.000000pt;}
.v10{vertical-align:32.000000pt;}
.v4{vertical-align:37.333333pt;}
.v15{vertical-align:40.000000pt;}
.va{vertical-align:45.333333pt;}
.vd{vertical-align:50.666667pt;}
.v14{vertical-align:56.000000pt;}
.v12{vertical-align:64.000000pt;}
.v13{vertical-align:66.666667pt;}
.v11{vertical-align:74.666667pt;}
.ls3c{letter-spacing:-1.792000pt;}
.ls8{letter-spacing:-1.194667pt;}
.ls49{letter-spacing:-1.130667pt;}
.lsb{letter-spacing:-0.917333pt;}
.ls3d{letter-spacing:-0.874667pt;}
.ls22{letter-spacing:-0.789333pt;}
.ls4b{letter-spacing:-0.757333pt;}
.ls4c{letter-spacing:-0.698667pt;}
.ls24{letter-spacing:-0.666667pt;}
.ls48{letter-spacing:-0.661333pt;}
.ls9{letter-spacing:-0.032000pt;}
.ls21{letter-spacing:-0.021333pt;}
.ls7{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.021333pt;}
.ls2a{letter-spacing:0.048000pt;}
.ls38{letter-spacing:0.053333pt;}
.ls42{letter-spacing:0.088000pt;}
.ls31{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.213333pt;}
.ls35{letter-spacing:0.258667pt;}
.ls1{letter-spacing:0.277333pt;}
.ls3f{letter-spacing:0.280000pt;}
.ls33{letter-spacing:0.373333pt;}
.ls29{letter-spacing:0.384000pt;}
.ls47{letter-spacing:0.394667pt;}
.ls2d{letter-spacing:0.400000pt;}
.ls36{letter-spacing:0.418667pt;}
.ls1b{letter-spacing:0.448000pt;}
.ls3a{letter-spacing:0.565333pt;}
.lsc{letter-spacing:0.618667pt;}
.ls11{letter-spacing:0.832000pt;}
.ls4a{letter-spacing:0.856000pt;}
.ls1e{letter-spacing:0.864000pt;}
.ls4{letter-spacing:0.874667pt;}
.ls20{letter-spacing:0.917333pt;}
.ls25{letter-spacing:0.978667pt;}
.ls4e{letter-spacing:0.981333pt;}
.ls26{letter-spacing:0.984000pt;}
.ls2b{letter-spacing:1.024000pt;}
.ls45{letter-spacing:1.045333pt;}
.ls23{letter-spacing:1.130667pt;}
.lsd{letter-spacing:1.152000pt;}
.ls2{letter-spacing:1.173333pt;}
.ls46{letter-spacing:1.242667pt;}
.ls3b{letter-spacing:1.322667pt;}
.ls37{letter-spacing:1.573333pt;}
.lse{letter-spacing:1.749333pt;}
.ls2e{letter-spacing:1.786667pt;}
.ls44{letter-spacing:1.813333pt;}
.ls4d{letter-spacing:1.856000pt;}
.lsf{letter-spacing:1.909333pt;}
.ls40{letter-spacing:1.946667pt;}
.ls6{letter-spacing:2.666667pt;}
.ls34{letter-spacing:2.826667pt;}
.ls43{letter-spacing:2.938667pt;}
.ls14{letter-spacing:3.085333pt;}
.ls10{letter-spacing:3.541333pt;}
.ls2c{letter-spacing:4.453333pt;}
.ls15{letter-spacing:10.986667pt;}
.ls1c{letter-spacing:13.525333pt;}
.ls32{letter-spacing:13.685333pt;}
.ls27{letter-spacing:13.752000pt;}
.ls28{letter-spacing:16.192000pt;}
.ls13{letter-spacing:16.418667pt;}
.ls18{letter-spacing:18.858667pt;}
.ls12{letter-spacing:19.085333pt;}
.ls30{letter-spacing:19.192000pt;}
.ls17{letter-spacing:20.024000pt;}
.ls39{letter-spacing:28.453333pt;}
.ls1d{letter-spacing:29.717333pt;}
.ls2f{letter-spacing:48.400000pt;}
.ls16{letter-spacing:49.920000pt;}
.ls1f{letter-spacing:69.824000pt;}
.ls1a{letter-spacing:109.333333pt;}
.ls3e{letter-spacing:109.632000pt;}
.ls0{letter-spacing:148.272000pt;}
.ls41{letter-spacing:150.736000pt;}
.ls3{letter-spacing:433.792000pt;}
.ws3{word-spacing:-26.656000pt;}
.wsa{word-spacing:-21.909333pt;}
.wse{word-spacing:-19.541333pt;}
.ws5{word-spacing:-18.666667pt;}
.ws4{word-spacing:-17.813333pt;}
.ws7{word-spacing:-17.792000pt;}
.ws21{word-spacing:-17.770667pt;}
.ws20{word-spacing:-16.917333pt;}
.ws6{word-spacing:-16.874667pt;}
.ws1a{word-spacing:-15.402667pt;}
.wsd{word-spacing:-15.210667pt;}
.ws8{word-spacing:-14.826667pt;}
.ws31{word-spacing:-14.464000pt;}
.wsb{word-spacing:-14.080000pt;}
.ws25{word-spacing:-13.418667pt;}
.wsc{word-spacing:-13.290667pt;}
.ws26{word-spacing:-12.949333pt;}
.ws1{word-spacing:-12.736000pt;}
.ws2{word-spacing:-12.138667pt;}
.ws0{word-spacing:-11.861333pt;}
.ws28{word-spacing:-11.104000pt;}
.ws2f{word-spacing:-10.878133pt;}
.ws2e{word-spacing:-10.848000pt;}
.ws24{word-spacing:-10.368000pt;}
.ws10{word-spacing:-9.973333pt;}
.ws23{word-spacing:-9.456000pt;}
.ws11{word-spacing:-8.213333pt;}
.ws9{word-spacing:0.000000pt;}
.ws1d{word-spacing:5.442667pt;}
.ws13{word-spacing:6.498667pt;}
.ws27{word-spacing:7.562667pt;}
.ws1b{word-spacing:8.109333pt;}
.ws14{word-spacing:8.170667pt;}
.wsf{word-spacing:8.330667pt;}
.ws18{word-spacing:10.776000pt;}
.ws1c{word-spacing:10.829333pt;}
.ws22{word-spacing:10.965333pt;}
.ws1e{word-spacing:16.162667pt;}
.ws1f{word-spacing:18.776000pt;}
.ws15{word-spacing:20.058667pt;}
.ws16{word-spacing:43.701333pt;}
.ws12{word-spacing:47.397333pt;}
.ws19{word-spacing:73.754667pt;}
.ws2d{word-spacing:146.554667pt;}
.ws2c{word-spacing:146.844533pt;}
.ws2b{word-spacing:146.986667pt;}
.ws29{word-spacing:149.163733pt;}
.ws17{word-spacing:162.218667pt;}
.ws2a{word-spacing:212.363733pt;}
.ws30{word-spacing:229.413333pt;}
._23{margin-left:-12.853333pt;}
._1b{margin-left:-9.738667pt;}
._22{margin-left:-7.904000pt;}
._24{margin-left:-6.085333pt;}
._1c{margin-left:-4.410667pt;}
._5{margin-left:-3.413333pt;}
._7{margin-left:-2.352000pt;}
._1{margin-left:-1.210667pt;}
._0{width:1.408000pt;}
._4{width:2.736000pt;}
._8{width:4.490667pt;}
._b{width:5.648000pt;}
._a{width:6.954667pt;}
._9{width:8.810667pt;}
._10{width:9.706667pt;}
._12{width:10.741333pt;}
._11{width:11.637333pt;}
._18{width:12.741333pt;}
._c{width:14.080000pt;}
._1a{width:15.002667pt;}
._d{width:16.677333pt;}
._25{width:18.549333pt;}
._13{width:19.456000pt;}
._15{width:21.552000pt;}
._14{width:22.933333pt;}
._16{width:24.245333pt;}
._17{width:25.653333pt;}
._f{width:26.746667pt;}
._e{width:28.330667pt;}
._1d{width:29.434667pt;}
._1e{width:30.954667pt;}
._21{width:32.160000pt;}
._1f{width:33.082667pt;}
._20{width:34.794667pt;}
._26{width:39.797333pt;}
._2{width:91.770667pt;}
._2a{width:94.677333pt;}
._2b{width:119.189333pt;}
._28{width:157.168933pt;}
._29{width:163.674667pt;}
._2d{width:180.917333pt;}
._2c{width:206.698667pt;}
._27{width:222.484533pt;}
._3{width:583.232000pt;}
._19{width:754.144000pt;}
._2e{width:995.077333pt;}
._6{width:1018.272000pt;}
.fs1{font-size:26.666667pt;}
.fs4{font-size:30.274897pt;}
.fs9{font-size:37.333333pt;}
.fs0{font-size:42.666667pt;}
.fs8{font-size:45.333333pt;}
.fsb{font-size:48.000000pt;}
.fsa{font-size:48.133333pt;}
.fs6{font-size:53.333333pt;}
.fs3{font-size:59.337505pt;}
.fs2{font-size:64.000000pt;}
.fs7{font-size:74.666667pt;}
.fs5{font-size:96.000000pt;}
.yff{bottom:-7.333333pt;}
.y0{bottom:0.000000pt;}
.y13f{bottom:5.800000pt;}
.yfe{bottom:11.333333pt;}
.y112{bottom:11.346667pt;}
.y106{bottom:11.360000pt;}
.y162{bottom:11.506667pt;}
.ye1{bottom:12.000000pt;}
.y10d{bottom:12.013333pt;}
.y103{bottom:12.026667pt;}
.y109{bottom:12.040000pt;}
.yde{bottom:12.666667pt;}
.y114{bottom:12.680000pt;}
.ydc{bottom:21.333333pt;}
.y13e{bottom:24.973333pt;}
.y6{bottom:25.256766pt;}
.y4{bottom:25.366667pt;}
.y15c{bottom:27.106667pt;}
.y7{bottom:32.101830pt;}
.ydb{bottom:40.000000pt;}
.y3{bottom:44.033333pt;}
.y13d{bottom:44.133333pt;}
.y16d{bottom:53.933333pt;}
.y2{bottom:61.366667pt;}
.y13c{bottom:62.640000pt;}
.y163{bottom:67.293333pt;}
.y140{bottom:71.866667pt;}
.y15d{bottom:72.533333pt;}
.y16c{bottom:76.440000pt;}
.y98{bottom:84.066667pt;}
.y15a{bottom:85.400000pt;}
.y64{bottom:86.733333pt;}
.yfb{bottom:92.733333pt;}
.y17c{bottom:93.400000pt;}
.y141{bottom:97.066667pt;}
.y16b{bottom:98.960000pt;}
.y30{bottom:99.400000pt;}
.yad{bottom:100.066667pt;}
.y97{bottom:102.066667pt;}
.y159{bottom:104.066667pt;}
.y63{bottom:104.733333pt;}
.yd9{bottom:105.400000pt;}
.yfa{bottom:110.733333pt;}
.y17b{bottom:111.400000pt;}
.y2f{bottom:114.733333pt;}
.y12b{bottom:116.733333pt;}
.y15e{bottom:117.960000pt;}
.yac{bottom:118.066667pt;}
.y96{bottom:120.733333pt;}
.y16a{bottom:121.466667pt;}
.y142{bottom:122.266667pt;}
.y158{bottom:122.733333pt;}
.y62{bottom:123.400000pt;}
.yd8{bottom:124.100000pt;}
.yf9{bottom:129.433333pt;}
.y17a{bottom:130.100000pt;}
.y12a{bottom:134.773333pt;}
.y95{bottom:139.440000pt;}
.ya9{bottom:140.773333pt;}
.y61{bottom:142.106667pt;}
.y169{bottom:144.000000pt;}
.yaa{bottom:144.760000pt;}
.y143{bottom:147.506667pt;}
.yf8{bottom:148.106667pt;}
.ya8{bottom:148.773333pt;}
.y129{bottom:153.426667pt;}
.y94{bottom:157.440000pt;}
.y157{bottom:159.426667pt;}
.y60{bottom:160.106667pt;}
.yd7{bottom:160.773333pt;}
.y15f{bottom:163.373333pt;}
.y17e{bottom:164.773333pt;}
.yab{bottom:166.106667pt;}
.y168{bottom:166.506667pt;}
.y179{bottom:166.773333pt;}
.y128{bottom:172.106667pt;}
.y144{bottom:172.706667pt;}
.y93{bottom:176.106667pt;}
.y156{bottom:177.426667pt;}
.y5f{bottom:178.773333pt;}
.ya6{bottom:181.466667pt;}
.y17d{bottom:183.466667pt;}
.yf7{bottom:184.800000pt;}
.y178{bottom:185.466667pt;}
.ya7{bottom:187.466667pt;}
.y167{bottom:189.000000pt;}
.y127{bottom:190.133333pt;}
.y92{bottom:194.133333pt;}
.y155{bottom:196.133333pt;}
.y5e{bottom:196.800000pt;}
.yd6{bottom:197.466667pt;}
.y145{bottom:197.893333pt;}
.yf6{bottom:202.800000pt;}
.y177{bottom:203.466667pt;}
.ya4{bottom:207.466667pt;}
.y126{bottom:208.800000pt;}
.ya5{bottom:209.466667pt;}
.y166{bottom:211.533333pt;}
.y91{bottom:213.466667pt;}
.y154{bottom:214.800000pt;}
.y5d{bottom:215.466667pt;}
.yd5{bottom:216.133333pt;}
.yf5{bottom:221.466667pt;}
.y176{bottom:222.133333pt;}
.y146{bottom:223.133333pt;}
.ya3{bottom:226.800000pt;}
.y153{bottom:233.466667pt;}
.y165{bottom:234.040000pt;}
.y5c{bottom:234.133333pt;}
.y90{bottom:234.800000pt;}
.ya2{bottom:240.173333pt;}
.y125{bottom:245.506667pt;}
.y13a{bottom:248.173333pt;}
.y147{bottom:248.333333pt;}
.y5b{bottom:252.173333pt;}
.yd4{bottom:252.840000pt;}
.y160{bottom:254.226667pt;}
.y8f{bottom:256.173333pt;}
.y164{bottom:256.560000pt;}
.ya1{bottom:258.173333pt;}
.y175{bottom:258.840000pt;}
.y124{bottom:264.173333pt;}
.y139{bottom:266.840000pt;}
.y5a{bottom:270.840000pt;}
.yd3{bottom:271.506667pt;}
.y148{bottom:273.560000pt;}
.y2e{bottom:274.173333pt;}
.y8e{bottom:276.840000pt;}
.y123{bottom:282.173333pt;}
.y138{bottom:284.840000pt;}
.y59{bottom:288.840000pt;}
.yd2{bottom:290.173333pt;}
.y2d{bottom:292.173333pt;}
.yf4{bottom:294.840000pt;}
.y8d{bottom:295.533333pt;}
.y149{bottom:298.773333pt;}
.y161{bottom:299.666667pt;}
.y122{bottom:300.866667pt;}
.y137{bottom:303.533333pt;}
.y58{bottom:307.533333pt;}
.yd1{bottom:308.200000pt;}
.y2c{bottom:310.866667pt;}
.ya0{bottom:313.533333pt;}
.y8c{bottom:314.200000pt;}
.y121{bottom:318.866667pt;}
.y136{bottom:321.533333pt;}
.y152{bottom:325.533333pt;}
.y57{bottom:326.200000pt;}
.yd0{bottom:326.866667pt;}
.y2b{bottom:329.533333pt;}
.y8b{bottom:332.200000pt;}
.y120{bottom:337.533333pt;}
.y135{bottom:340.200000pt;}
.y56{bottom:344.200000pt;}
.ycf{bottom:344.866667pt;}
.y2a{bottom:347.533333pt;}
.y9f{bottom:350.200000pt;}
.y8a{bottom:350.866667pt;}
.y11f{bottom:356.226667pt;}
.y134{bottom:358.893333pt;}
.y55{bottom:362.893333pt;}
.yce{bottom:363.560000pt;}
.y29{bottom:366.226667pt;}
.y89{bottom:368.893333pt;}
.y11e{bottom:374.226667pt;}
.y133{bottom:376.893333pt;}
.y54{bottom:380.893333pt;}
.ycd{bottom:382.226667pt;}
.y28{bottom:384.226667pt;}
.yf3{bottom:386.893333pt;}
.y88{bottom:387.560000pt;}
.y11d{bottom:392.893333pt;}
.y132{bottom:395.560000pt;}
.y53{bottom:399.560000pt;}
.ycc{bottom:400.226667pt;}
.y27{bottom:402.893333pt;}
.y9e{bottom:405.560000pt;}
.y87{bottom:406.226667pt;}
.y11c{bottom:410.933333pt;}
.y131{bottom:413.600000pt;}
.y151{bottom:417.600000pt;}
.y52{bottom:418.266667pt;}
.ycb{bottom:418.933333pt;}
.y26{bottom:421.600000pt;}
.y86{bottom:424.266667pt;}
.y11b{bottom:429.600000pt;}
.y130{bottom:432.266667pt;}
.y51{bottom:436.266667pt;}
.yca{bottom:436.933333pt;}
.y25{bottom:439.600000pt;}
.y9d{bottom:442.266667pt;}
.y85{bottom:442.933333pt;}
.y11a{bottom:448.933333pt;}
.y12f{bottom:450.933333pt;}
.y150{bottom:454.266667pt;}
.y50{bottom:454.933333pt;}
.yc9{bottom:455.600000pt;}
.y24{bottom:458.266667pt;}
.y84{bottom:460.933333pt;}
.y12e{bottom:468.973333pt;}
.y119{bottom:469.640000pt;}
.y4f{bottom:472.973333pt;}
.yc8{bottom:474.306667pt;}
.y23{bottom:476.306667pt;}
.yf2{bottom:478.973333pt;}
.y83{bottom:479.626667pt;}
.y118{bottom:487.640000pt;}
.y4e{bottom:491.626667pt;}
.yc7{bottom:492.306667pt;}
.y22{bottom:494.960000pt;}
.y9c{bottom:497.626667pt;}
.y82{bottom:498.306667pt;}
.y12d{bottom:500.306667pt;}
.y4d{bottom:510.306667pt;}
.yc6{bottom:510.973333pt;}
.y21{bottom:513.640000pt;}
.y12c{bottom:515.626667pt;}
.y81{bottom:516.306667pt;}
.y13b{bottom:516.666667pt;}
.y117{bottom:519.640000pt;}
.y4c{bottom:528.333333pt;}
.yc5{bottom:529.000000pt;}
.y20{bottom:531.666667pt;}
.y9b{bottom:534.333333pt;}
.y80{bottom:535.000000pt;}
.y116{bottom:535.666667pt;}
.y4b{bottom:547.000000pt;}
.yc4{bottom:547.666667pt;}
.y1f{bottom:550.333333pt;}
.y7f{bottom:553.000000pt;}
.yf1{bottom:553.666667pt;}
.yf0{bottom:561.000000pt;}
.y115{bottom:562.333333pt;}
.y4a{bottom:565.000000pt;}
.y14f{bottom:565.666667pt;}
.yc3{bottom:566.333333pt;}
.y1e{bottom:568.333333pt;}
.y7e{bottom:571.666667pt;}
.y49{bottom:583.706667pt;}
.yc2{bottom:584.360000pt;}
.y1d{bottom:587.026667pt;}
.y113{bottom:589.026667pt;}
.y9a{bottom:589.706667pt;}
.y7d{bottom:590.360000pt;}
.yef{bottom:592.373333pt;}
.y48{bottom:602.360000pt;}
.yc1{bottom:603.040000pt;}
.y1c{bottom:605.693333pt;}
.y7c{bottom:608.360000pt;}
.yee{bottom:614.360000pt;}
.y111{bottom:617.026667pt;}
.y47{bottom:620.360000pt;}
.yc0{bottom:621.040000pt;}
.y14e{bottom:621.693333pt;}
.y1b{bottom:623.693333pt;}
.y99{bottom:626.360000pt;}
.y7b{bottom:627.040000pt;}
.yed{bottom:632.360000pt;}
.y46{bottom:639.066667pt;}
.ybf{bottom:639.733333pt;}
.y1a{bottom:642.400000pt;}
.y14d{bottom:643.066667pt;}
.y110{bottom:643.733333pt;}
.y7a{bottom:645.066667pt;}
.yec{bottom:651.066667pt;}
.y45{bottom:657.066667pt;}
.ybe{bottom:658.400000pt;}
.y19{bottom:660.400000pt;}
.y79{bottom:663.733333pt;}
.y10f{bottom:670.400000pt;}
.yeb{bottom:672.400000pt;}
.y44{bottom:675.733333pt;}
.ybd{bottom:678.400000pt;}
.y18{bottom:679.733333pt;}
.y14c{bottom:681.733333pt;}
.y78{bottom:682.400000pt;}
.yea{bottom:693.066667pt;}
.y43{bottom:694.400000pt;}
.y10e{bottom:697.760000pt;}
.ybc{bottom:699.106667pt;}
.y77{bottom:700.440000pt;}
.y17{bottom:701.106667pt;}
.y42{bottom:712.440000pt;}
.ye9{bottom:713.106667pt;}
.y14b{bottom:713.760000pt;}
.ybb{bottom:718.440000pt;}
.y76{bottom:719.106667pt;}
.ye8{bottom:721.093333pt;}
.y16{bottom:723.106667pt;}
.y10c{bottom:724.426667pt;}
.y14a{bottom:729.106667pt;}
.y15b{bottom:729.333333pt;}
.y41{bottom:731.106667pt;}
.y75{bottom:737.106667pt;}
.y15{bottom:743.093333pt;}
.y40{bottom:749.093333pt;}
.y10b{bottom:751.093333pt;}
.y74{bottom:755.800000pt;}
.yba{bottom:757.133333pt;}
.y14{bottom:759.133333pt;}
.ye7{bottom:761.800000pt;}
.y3f{bottom:767.800000pt;}
.y73{bottom:774.466667pt;}
.y174{bottom:775.133333pt;}
.yb9{bottom:775.800000pt;}
.y13{bottom:777.133333pt;}
.y10a{bottom:778.466667pt;}
.ye6{bottom:780.466667pt;}
.y3e{bottom:785.800000pt;}
.y72{bottom:792.466667pt;}
.yb8{bottom:794.466667pt;}
.y12{bottom:795.800000pt;}
.y173{bottom:796.466667pt;}
.y3d{bottom:804.466667pt;}
.y108{bottom:805.133333pt;}
.y71{bottom:811.173333pt;}
.ye5{bottom:811.840000pt;}
.yb7{bottom:813.173333pt;}
.y11{bottom:813.840000pt;}
.y172{bottom:817.840000pt;}
.y3c{bottom:823.173333pt;}
.ye4{bottom:827.840000pt;}
.y70{bottom:829.173333pt;}
.y107{bottom:831.840000pt;}
.y10{bottom:832.506667pt;}
.yb6{bottom:833.173333pt;}
.y171{bottom:839.173333pt;}
.y3b{bottom:841.173333pt;}
.y6f{bottom:847.840000pt;}
.yf{bottom:851.173333pt;}
.ye3{bottom:854.506667pt;}
.y105{bottom:859.173333pt;}
.y3a{bottom:859.840000pt;}
.y6e{bottom:866.506667pt;}
.yb5{bottom:867.866667pt;}
.ye{bottom:868.533333pt;}
.y39{bottom:877.866667pt;}
.y170{bottom:878.533333pt;}
.ye2{bottom:881.866667pt;}
.y6d{bottom:884.533333pt;}
.y104{bottom:885.866667pt;}
.yd{bottom:886.533333pt;}
.y38{bottom:896.533333pt;}
.y16f{bottom:897.200000pt;}
.y6c{bottom:903.200000pt;}
.yb4{bottom:904.533333pt;}
.ye0{bottom:909.200000pt;}
.y102{bottom:912.533333pt;}
.yc{bottom:913.866667pt;}
.y37{bottom:915.200000pt;}
.y6b{bottom:921.200000pt;}
.yb3{bottom:923.200000pt;}
.y36{bottom:933.226667pt;}
.y16e{bottom:933.893333pt;}
.ydf{bottom:936.560000pt;}
.y101{bottom:939.226667pt;}
.y6a{bottom:939.893333pt;}
.yb{bottom:941.226667pt;}
.y35{bottom:951.893333pt;}
.y69{bottom:958.560000pt;}
.yb2{bottom:961.226667pt;}
.ydd{bottom:963.893333pt;}
.y100{bottom:966.560000pt;}
.ya{bottom:969.226667pt;}
.y34{bottom:970.560000pt;}
.y68{bottom:976.560000pt;}
.yb1{bottom:980.560000pt;}
.y33{bottom:989.266667pt;}
.yda{bottom:991.933333pt;}
.yfd{bottom:993.266667pt;}
.yb0{bottom:993.933333pt;}
.y67{bottom:995.266667pt;}
.y9{bottom:996.600000pt;}
.y32{bottom:1007.933333pt;}
.yaf{bottom:1012.600000pt;}
.y66{bottom:1013.266667pt;}
.yfc{bottom:1019.933333pt;}
.y8{bottom:1024.600000pt;}
.y31{bottom:1029.933333pt;}
.yae{bottom:1031.266667pt;}
.y65{bottom:1031.933333pt;}
.y5{bottom:1059.600000pt;}
.y1{bottom:1074.626667pt;}
.h24{height:26.000000pt;}
.h1e{height:26.666667pt;}
.h25{height:26.700000pt;}
.h1d{height:27.333333pt;}
.h1c{height:27.366667pt;}
.h26{height:28.000000pt;}
.h7{height:30.112287pt;}
.h1{height:38.250000pt;}
.h4{height:39.173497pt;}
.h6{height:39.198251pt;}
.h3{height:44.437500pt;}
.h2c{height:47.218750pt;}
.h15{height:47.541667pt;}
.h29{height:47.742188pt;}
.ha{height:47.812500pt;}
.h28{height:47.874805pt;}
.hb{height:48.125000pt;}
.h1b{height:55.366667pt;}
.hd{height:56.145833pt;}
.h2{height:57.375000pt;}
.h11{height:57.729167pt;}
.h5{height:59.018798pt;}
.h2b{height:65.531250pt;}
.hc{height:66.937500pt;}
.h9{height:72.187500pt;}
.h16{height:73.428333pt;}
.h13{height:79.062500pt;}
.h12{height:81.375000pt;}
.he{height:81.500000pt;}
.hf{height:81.729167pt;}
.h1a{height:84.166667pt;}
.h8{height:86.062500pt;}
.h23{height:86.708333pt;}
.h20{height:89.321667pt;}
.h17{height:89.375000pt;}
.h21{height:89.428333pt;}
.h10{height:95.062500pt;}
.h1f{height:95.115833pt;}
.h22{height:100.875000pt;}
.h19{height:110.833333pt;}
.h14{height:121.782500pt;}
.h18{height:132.395833pt;}
.h27{height:309.333333pt;}
.h2a{height:318.000000pt;}
.h0{height:1122.666667pt;}
.w2{width:47.511447pt;}
.w3{width:47.606421pt;}
.wb{width:64.733333pt;}
.w7{width:103.433333pt;}
.w4{width:118.100000pt;}
.w6{width:148.800000pt;}
.w9{width:154.800000pt;}
.wa{width:161.466667pt;}
.w5{width:268.200000pt;}
.w8{width:309.560000pt;}
.wd{width:642.000000pt;}
.wc{width:644.666667pt;}
.w1{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1f{left:7.333333pt;}
.x36{left:24.766667pt;}
.x2e{left:30.200000pt;}
.x34{left:40.566667pt;}
.x3{left:65.325585pt;}
.x1{left:75.399988pt;}
.x5{left:100.066655pt;}
.x9{left:104.099988pt;}
.x35{left:108.840000pt;}
.x12{left:123.433322pt;}
.x7{left:128.099988pt;}
.x30{left:151.506667pt;}
.x39{left:155.466655pt;}
.x2f{left:160.600000pt;}
.x23{left:173.466655pt;}
.x32{left:179.466655pt;}
.x20{left:193.506667pt;}
.xd{left:201.506655pt;}
.xb{left:202.839988pt;}
.x2d{left:205.466667pt;}
.xc{left:217.506655pt;}
.x2a{left:250.199988pt;}
.x10{left:280.893322pt;}
.x16{left:290.906655pt;}
.x2b{left:292.239988pt;}
.x13{left:295.573322pt;}
.xa{left:314.933322pt;}
.x6{left:319.599988pt;}
.x8{left:331.599988pt;}
.x11{left:338.933322pt;}
.x33{left:340.933322pt;}
.x1d{left:346.973322pt;}
.x38{left:351.639988pt;}
.x17{left:355.639988pt;}
.xe{left:358.973322pt;}
.x4{left:362.306655pt;}
.x18{left:363.639988pt;}
.x24{left:366.973322pt;}
.x15{left:368.973322pt;}
.x27{left:384.973333pt;}
.x1c{left:394.999988pt;}
.x2{left:396.999988pt;}
.x14{left:398.999988pt;}
.x25{left:400.333322pt;}
.x26{left:402.333322pt;}
.x1a{left:415.666655pt;}
.x19{left:437.693322pt;}
.x1b{left:453.026655pt;}
.x21{left:461.693333pt;}
.x1e{left:468.399988pt;}
.x37{left:536.333333pt;}
.x28{left:539.773333pt;}
.x22{left:610.506667pt;}
.xf{left:637.199988pt;}
.x29{left:701.226667pt;}
.x31{left:717.933322pt;}
.x2c{left:721.933322pt;}
}




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