
    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_744d06a02264025f0dd7dde9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.003906;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_a7d037445610e5218e3b4b94.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_7815aa440abc59f9bad4480b.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.767578;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_94b2aa68282f7b387cf4f402.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_48a0876af31971efca321fe9.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_eb45eb4a7b5f03b829ba3d03.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.372070;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_4b8d04ba48c3ada0f0bec89c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;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_d4d6e9a7749989fc71572860.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;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_7ca460e398870ca26848eb5e.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.311035;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_b0c1bd6458e72e0a84d5ef53.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.112305;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:ffb;src:url('chunks/assets/font_f4169611f622b64383d13711.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.284180;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:ffc;src:url('chunks/assets/font_497ae67c559587f634d1156f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.921387;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:ffd;src:url('chunks/assets/font_f488a25d31cdab4e189a9cfe.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.936000px;}
.lsc{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.288000px;}
.ls6{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.193800px;}
.ls3{letter-spacing:-0.144000px;}
.ls1{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.053280px;}
.ls9{letter-spacing:0.072000px;}
.ls14{letter-spacing:0.136200px;}
.ls2{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.150000px;}
.ls13{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.181200px;}
.lsb{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.288000px;}
.ls12{letter-spacing:0.298800px;}
.lsa{letter-spacing:0.360000px;}
.lse{letter-spacing:0.361440px;}
.ls15{letter-spacing:0.513600px;}
.ls5{letter-spacing:0.720000px;}
.lsd{letter-spacing:0.864000px;}
.ls16{letter-spacing:3.780000px;}
.ls7{letter-spacing:194.376000px;}
.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;}
}
.ws2{word-spacing:-66.240000px;}
.ws0{word-spacing:-20.016000px;}
.wsb{word-spacing:-18.864000px;}
.ws9{word-spacing:-18.720000px;}
.wsf{word-spacing:-18.288000px;}
.ws5{word-spacing:-18.144000px;}
.ws4{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.712000px;}
.ws8{word-spacing:-17.064000px;}
.ws14{word-spacing:-15.453600px;}
.ws12{word-spacing:-15.300000px;}
.ws11{word-spacing:-14.993280px;}
.ws1{word-spacing:-14.970240px;}
.ws15{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.220000px;}
.wse{word-spacing:-14.026200px;}
.ws10{word-spacing:-13.860000px;}
.ws13{word-spacing:-12.420000px;}
.wsa{word-spacing:-12.329400px;}
.ws3{word-spacing:0.000000px;}
._1f{margin-left:-5.419680px;}
._13{margin-left:-4.300320px;}
._4{margin-left:-2.827680px;}
._0{margin-left:-1.126080px;}
._2{width:1.187040px;}
._3{width:2.484960px;}
._7{width:3.585120px;}
._9{width:4.614720px;}
._5{width:6.480000px;}
._6{width:7.752000px;}
._f{width:8.904000px;}
._8{width:10.152000px;}
._10{width:11.808000px;}
._11{width:13.032000px;}
._18{width:14.113920px;}
._12{width:15.168000px;}
._e{width:16.488000px;}
._29{width:17.928000px;}
._d{width:19.159200px;}
._a{width:20.304000px;}
._17{width:21.399840px;}
._19{width:22.640160px;}
._14{width:23.688000px;}
._b{width:25.056000px;}
._c{width:26.076000px;}
._23{width:27.156960px;}
._1d{width:28.451040px;}
._1e{width:29.966880px;}
._20{width:31.054080px;}
._21{width:32.233920px;}
._24{width:33.721440px;}
._1b{width:35.115840px;}
._1a{width:36.406080px;}
._27{width:37.409760px;}
._22{width:38.998080px;}
._1c{width:40.104000px;}
._2c{width:60.396480px;}
._28{width:61.911360px;}
._2b{width:155.011680px;}
._2d{width:158.184720px;}
._2a{width:159.320160px;}
._16{width:194.376000px;}
._25{width:334.512000px;}
._26{width:335.880000px;}
._15{width:846.156000px;}
._1{width:990.627360px;}
.fc4{color:rgb(255,0,0);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(5,99,193);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:38.880000px;}
.fs3{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:56.880000px;}
.fs6{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y116{bottom:2.880000px;}
.y10e{bottom:3.060000px;}
.yb4{bottom:3.240000px;}
.yb8{bottom:3.420000px;}
.ye4{bottom:3.600000px;}
.yd4{bottom:3.780000px;}
.y111{bottom:9.900000px;}
.yb5{bottom:11.160000px;}
.y120{bottom:12.420000px;}
.y113{bottom:16.740000px;}
.y118{bottom:16.920000px;}
.yb6{bottom:18.900000px;}
.yed{bottom:20.880000px;}
.y101{bottom:21.060000px;}
.yd5{bottom:21.090000px;}
.y110{bottom:23.760000px;}
.y104{bottom:29.700000px;}
.y112{bottom:30.600000px;}
.y10c{bottom:31.320000px;}
.y100{bottom:38.160000px;}
.y105{bottom:38.340000px;}
.y103{bottom:46.980000px;}
.yff{bottom:55.440000px;}
.yf{bottom:57.636000px;}
.yf4{bottom:64.080000px;}
.yfe{bottom:72.720000px;}
.ye{bottom:77.076000px;}
.yf3{bottom:81.360000px;}
.yfd{bottom:90.000000px;}
.yf2{bottom:98.640000px;}
.y128{bottom:107.136000px;}
.yfc{bottom:107.280000px;}
.y3e{bottom:112.536000px;}
.yae{bottom:115.596000px;}
.yf1{bottom:115.920000px;}
.y7b{bottom:116.676000px;}
.yeb{bottom:118.836000px;}
.y192{bottom:122.436000px;}
.yfb{bottom:124.560000px;}
.y127{bottom:125.136000px;}
.y8d{bottom:125.856000px;}
.y191{bottom:127.656000px;}
.yb1{bottom:130.176000px;}
.yf0{bottom:133.020000px;}
.yfa{bottom:141.660000px;}
.y126{bottom:143.136000px;}
.yad{bottom:146.556000px;}
.y6c{bottom:146.736000px;}
.y190{bottom:148.356000px;}
.yef{bottom:150.300000px;}
.y3d{bottom:151.230000px;}
.y18f{bottom:153.570000px;}
.yea{bottom:155.730000px;}
.y158{bottom:156.090000px;}
.y8c{bottom:156.990000px;}
.y7a{bottom:158.070000px;}
.yf9{bottom:158.940000px;}
.y125{bottom:161.130000px;}
.yee{bottom:167.580000px;}
.yb0{bottom:171.570000px;}
.y18e{bottom:174.090000px;}
.y3c{bottom:174.990000px;}
.yf8{bottom:176.220000px;}
.yac{bottom:177.690000px;}
.y124{bottom:179.130000px;}
.y18d{bottom:179.310000px;}
.y8b{bottom:187.950000px;}
.y6b{bottom:188.130000px;}
.ye9{bottom:192.450000px;}
.yf7{bottom:193.500000px;}
.y7d{bottom:194.970000px;}
.y3b{bottom:195.510000px;}
.y123{bottom:197.130000px;}
.y157{bottom:197.490000px;}
.y79{bottom:199.110000px;}
.y18c{bottom:200.010000px;}
.y18b{bottom:205.230000px;}
.yab{bottom:208.650000px;}
.yaf{bottom:210.090000px;}
.yf6{bottom:210.780000px;}
.y122{bottom:215.130000px;}
.y3a{bottom:216.570000px;}
.y8a{bottom:219.090000px;}
.y18a{bottom:225.930000px;}
.yf5{bottom:227.880000px;}
.ye8{bottom:229.350000px;}
.y6a{bottom:229.530000px;}
.y189{bottom:231.150000px;}
.y121{bottom:233.130000px;}
.y81{bottom:236.370000px;}
.y39{bottom:237.270000px;}
.y156{bottom:238.890000px;}
.yaa{bottom:239.790000px;}
.y78{bottom:240.510000px;}
.ye7{bottom:248.070000px;}
.y89{bottom:250.050000px;}
.y11f{bottom:251.130000px;}
.y188{bottom:251.850000px;}
.y187{bottom:257.070000px;}
.y38{bottom:257.970000px;}
.ye6{bottom:265.350000px;}
.y6e{bottom:270.570000px;}
.ya9{bottom:270.750000px;}
.y69{bottom:270.930000px;}
.y155{bottom:277.410000px;}
.y186{bottom:277.590000px;}
.y7c{bottom:277.770000px;}
.y37{bottom:278.670000px;}
.y88{bottom:281.010000px;}
.ye5{bottom:282.495000px;}
.y185{bottom:282.855000px;}
.y11e{bottom:290.235000px;}
.ye3{bottom:296.895000px;}
.y77{bottom:297.255000px;}
.y36{bottom:299.415000px;}
.ya8{bottom:301.755000px;}
.y184{bottom:303.555000px;}
.y154{bottom:306.975000px;}
.y11d{bottom:307.515000px;}
.y183{bottom:308.775000px;}
.y87{bottom:311.835000px;}
.y6d{bottom:312.015000px;}
.y68{bottom:312.375000px;}
.ye2{bottom:314.715000px;}
.y80{bottom:319.215000px;}
.y35{bottom:320.115000px;}
.y182{bottom:329.475000px;}
.ye1{bottom:332.715000px;}
.ya7{bottom:332.895000px;}
.y181{bottom:334.695000px;}
.y34{bottom:340.815000px;}
.y153{bottom:342.075000px;}
.y11c{bottom:342.795000px;}
.ye0{bottom:350.715000px;}
.y86{bottom:353.415000px;}
.y76{bottom:353.595000px;}
.y67{bottom:353.775000px;}
.y180{bottom:355.215000px;}
.y152{bottom:359.355000px;}
.y17f{bottom:360.435000px;}
.y7f{bottom:360.615000px;}
.y33{bottom:361.515000px;}
.ya6{bottom:363.855000px;}
.ydf{bottom:368.715000px;}
.y11b{bottom:370.155000px;}
.y151{bottom:376.635000px;}
.y17e{bottom:381.135000px;}
.y32{bottom:381.855000px;}
.y11a{bottom:384.375000px;}
.y17d{bottom:386.355000px;}
.yde{bottom:386.715000px;}
.y150{bottom:393.915000px;}
.ya5{bottom:394.995000px;}
.y66{bottom:395.175000px;}
.y7e{bottom:402.015000px;}
.y31{bottom:402.915000px;}
.ydd{bottom:404.715000px;}
.y17c{bottom:407.055000px;}
.y14f{bottom:411.195000px;}
.y17b{bottom:412.275000px;}
.ydc{bottom:422.715000px;}
.y14e{bottom:425.415000px;}
.ya4{bottom:425.955000px;}
.y119{bottom:426.495000px;}
.y17a{bottom:432.975000px;}
.y65{bottom:436.575000px;}
.y179{bottom:438.195000px;}
.y30{bottom:438.375000px;}
.ydb{bottom:440.715000px;}
.y117{bottom:441.075000px;}
.y72{bottom:443.415000px;}
.ya3{bottom:457.095000px;}
.yda{bottom:458.715000px;}
.y2f{bottom:459.255000px;}
.y14d{bottom:461.415000px;}
.y178{bottom:463.935000px;}
.y115{bottom:469.515000px;}
.yd9{bottom:476.715000px;}
.y64{bottom:477.975000px;}
.y14c{bottom:479.415000px;}
.y2e{bottom:479.955000px;}
.y177{bottom:484.635000px;}
.y75{bottom:484.815000px;}
.ya2{bottom:488.055000px;}
.yd8{bottom:494.715000px;}
.y14b{bottom:497.415000px;}
.y114{bottom:497.775000px;}
.y176{bottom:510.555000px;}
.y10b{bottom:512.355000px;}
.yd7{bottom:512.715000px;}
.y14a{bottom:515.415000px;}
.y2d{bottom:515.595000px;}
.ya1{bottom:519.195000px;}
.y63{bottom:519.375000px;}
.y84{bottom:526.215000px;}
.yd6{bottom:530.715000px;}
.y149{bottom:533.415000px;}
.y2c{bottom:536.475000px;}
.y175{bottom:541.695000px;}
.yd3{bottom:548.715000px;}
.ya0{bottom:550.155000px;}
.y148{bottom:551.415000px;}
.y10f{bottom:554.475000px;}
.y2b{bottom:557.175000px;}
.y62{bottom:560.775000px;}
.y174{bottom:562.215000px;}
.y173{bottom:567.465000px;}
.y71{bottom:567.645000px;}
.y10d{bottom:569.085000px;}
.y147{bottom:569.445000px;}
.y2a{bottom:577.905000px;}
.y54{bottom:579.705000px;}
.y9f{bottom:581.325000px;}
.y146{bottom:587.445000px;}
.y172{bottom:588.165000px;}
.y10a{bottom:597.165000px;}
.yd2{bottom:597.525000px;}
.y29{bottom:598.605000px;}
.y61{bottom:602.205000px;}
.y145{bottom:605.445000px;}
.y85{bottom:609.045000px;}
.y9e{bottom:612.285000px;}
.y171{bottom:614.085000px;}
.y28{bottom:619.305000px;}
.y53{bottom:621.285000px;}
.yd{bottom:622.695000px;}
.y144{bottom:623.445000px;}
.yd1{bottom:627.225000px;}
.y109{bottom:630.645000px;}
.y27{bottom:640.005000px;}
.y143{bottom:641.445000px;}
.y9d{bottom:643.425000px;}
.y60{bottom:643.605000px;}
.y170{bottom:645.225000px;}
.yd0{bottom:649.725000px;}
.y6f{bottom:650.445000px;}
.y52{bottom:657.645000px;}
.y142{bottom:659.445000px;}
.yc{bottom:660.165000px;}
.y26{bottom:660.705000px;}
.y108{bottom:662.865000px;}
.ycf{bottom:664.125000px;}
.y16f{bottom:665.745000px;}
.y16e{bottom:670.965000px;}
.y9c{bottom:674.385000px;}
.y141{bottom:677.445000px;}
.y51{bottom:679.245000px;}
.y107{bottom:680.325000px;}
.y25{bottom:681.405000px;}
.yce{bottom:681.945000px;}
.y5f{bottom:685.005000px;}
.y16d{bottom:691.665000px;}
.y73{bottom:691.845000px;}
.yb{bottom:694.545000px;}
.y140{bottom:695.445000px;}
.y16c{bottom:696.885000px;}
.y106{bottom:697.605000px;}
.ycd{bottom:699.765000px;}
.y24{bottom:702.105000px;}
.y9b{bottom:705.525000px;}
.y102{bottom:711.825000px;}
.ya{bottom:716.865000px;}
.ycc{bottom:717.405000px;}
.y16b{bottom:717.585000px;}
.y50{bottom:717.945000px;}
.y23{bottom:722.805000px;}
.y5e{bottom:726.405000px;}
.ycb{bottom:735.225000px;}
.y9a{bottom:736.485000px;}
.y4f{bottom:741.705000px;}
.y22{bottom:743.505000px;}
.y13f{bottom:751.065000px;}
.y9{bottom:752.325000px;}
.yca{bottom:753.045000px;}
.y21{bottom:764.205000px;}
.y4e{bottom:765.465000px;}
.y99{bottom:767.625000px;}
.y5d{bottom:767.805000px;}
.y13e{bottom:768.345000px;}
.y16a{bottom:769.245000px;}
.yc9{bottom:770.865000px;}
.y13d{bottom:782.565000px;}
.y20{bottom:784.905000px;}
.yc8{bottom:788.505000px;}
.y8{bottom:789.225000px;}
.y169{bottom:795.165000px;}
.y98{bottom:798.585000px;}
.y13c{bottom:798.945000px;}
.y168{bottom:800.385000px;}
.y1f{bottom:805.605000px;}
.yc7{bottom:806.325000px;}
.y5c{bottom:809.205000px;}
.y4d{bottom:813.165000px;}
.y13b{bottom:815.145000px;}
.y83{bottom:816.045000px;}
.y167{bottom:821.085000px;}
.y7{bottom:823.605000px;}
.yc6{bottom:824.145000px;}
.y1e{bottom:826.305000px;}
.y97{bottom:829.725000px;}
.y13a{bottom:831.525000px;}
.y4c{bottom:836.925000px;}
.yc5{bottom:841.965000px;}
.y166{bottom:846.825000px;}
.y1d{bottom:847.005000px;}
.y139{bottom:847.770000px;}
.y5b{bottom:850.650000px;}
.y165{bottom:852.090000px;}
.y6{bottom:857.985000px;}
.yc4{bottom:859.650000px;}
.y4b{bottom:860.730000px;}
.y138{bottom:864.150000px;}
.y1c{bottom:867.750000px;}
.y164{bottom:872.790000px;}
.yc3{bottom:877.470000px;}
.y137{bottom:880.350000px;}
.y4a{bottom:884.490000px;}
.y1b{bottom:888.450000px;}
.y96{bottom:891.870000px;}
.y5a{bottom:892.050000px;}
.y5{bottom:892.185000px;}
.yc2{bottom:895.290000px;}
.y136{bottom:896.550000px;}
.y163{bottom:898.710000px;}
.y70{bottom:898.890000px;}
.y162{bottom:903.930000px;}
.y49{bottom:908.430000px;}
.y1a{bottom:909.150000px;}
.y135{bottom:912.930000px;}
.yc1{bottom:913.110000px;}
.y95{bottom:922.830000px;}
.y161{bottom:924.630000px;}
.y4{bottom:927.330000px;}
.y134{bottom:929.130000px;}
.y19{bottom:929.850000px;}
.yc0{bottom:930.750000px;}
.y48{bottom:932.190000px;}
.y59{bottom:933.450000px;}
.y82{bottom:940.290000px;}
.y133{bottom:945.510000px;}
.ybf{bottom:948.570000px;}
.y160{bottom:950.370000px;}
.y18{bottom:950.550000px;}
.y94{bottom:953.970000px;}
.y15f{bottom:955.590000px;}
.y47{bottom:955.950000px;}
.y3{bottom:956.490000px;}
.y132{bottom:961.710000px;}
.ybe{bottom:966.390000px;}
.y17{bottom:971.250000px;}
.y58{bottom:974.850000px;}
.y131{bottom:977.910000px;}
.y46{bottom:979.710000px;}
.ybd{bottom:984.210000px;}
.y93{bottom:984.930000px;}
.y130{bottom:994.290000px;}
.ybc{bottom:1001.850000px;}
.y45{bottom:1003.650000px;}
.y16{bottom:1009.770000px;}
.y12f{bottom:1010.490000px;}
.y92{bottom:1016.070000px;}
.y57{bottom:1016.250000px;}
.y15e{bottom:1019.490000px;}
.ybb{bottom:1019.670000px;}
.y74{bottom:1023.090000px;}
.y44{bottom:1027.410000px;}
.y15{bottom:1030.650000px;}
.yba{bottom:1037.490000px;}
.y12e{bottom:1045.770000px;}
.y91{bottom:1047.030000px;}
.y43{bottom:1051.170000px;}
.y14{bottom:1051.350000px;}
.y15d{bottom:1053.870000px;}
.yb9{bottom:1055.310000px;}
.y56{bottom:1057.650000px;}
.y15c{bottom:1059.090000px;}
.y12d{bottom:1068.270000px;}
.y13{bottom:1072.050000px;}
.yb7{bottom:1072.950000px;}
.y42{bottom:1074.930000px;}
.y90{bottom:1078.170000px;}
.y12c{bottom:1088.250000px;}
.y15b{bottom:1088.430000px;}
.yb3{bottom:1090.770000px;}
.yec{bottom:1092.930000px;}
.y12{bottom:1095.270000px;}
.y194{bottom:1097.070000px;}
.y41{bottom:1098.870000px;}
.y55{bottom:1099.050000px;}
.y12b{bottom:1102.650000px;}
.y2{bottom:1107.330000px;}
.y8f{bottom:1109.130000px;}
.y11{bottom:1119.210000px;}
.y40{bottom:1119.390000px;}
.y12a{bottom:1120.650000px;}
.y15a{bottom:1122.990000px;}
.y159{bottom:1128.210000px;}
.y129{bottom:1138.680000px;}
.y10{bottom:1140.120000px;}
.y8e{bottom:1140.300000px;}
.y3f{bottom:1140.480000px;}
.y1{bottom:1141.170000px;}
.y193{bottom:1141.200000px;}
.yb2{bottom:1141.740000px;}
.h1c{height:13.860000px;}
.h1d{height:13.896000px;}
.h22{height:15.480000px;}
.h23{height:15.660000px;}
.h13{height:16.920000px;}
.h14{height:16.956000px;}
.h12{height:17.100000px;}
.h21{height:17.136000px;}
.h17{height:17.280000px;}
.h24{height:17.316000px;}
.h1f{height:27.540000px;}
.h20{height:27.720000px;}
.h10{height:31.140000px;}
.h18{height:34.380000px;}
.h16{height:34.596000px;}
.h25{height:38.158594px;}
.h1e{height:41.400000px;}
.hc{height:47.344922px;}
.hb{height:50.800781px;}
.h11{height:52.998047px;}
.h15{height:58.651172px;}
.h9{height:64.546875px;}
.h6{height:65.010937px;}
.h2{height:65.884219px;}
.h1b{height:70.596000px;}
.he{height:70.628906px;}
.h8{height:70.664062px;}
.ha{height:71.613281px;}
.h7{height:72.562500px;}
.hf{height:74.681367px;}
.hd{height:74.704922px;}
.h4{height:75.093750px;}
.h5{height:84.034336px;}
.h3{height:87.859687px;}
.h1a{height:138.096000px;}
.h19{height:241.380000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:39.420000px;}
.w20{width:46.080000px;}
.w29{width:48.456000px;}
.w25{width:50.040000px;}
.w1f{width:52.416000px;}
.w19{width:53.136000px;}
.w1d{width:57.600000px;}
.w1b{width:60.480000px;}
.wb{width:62.136000px;}
.wa{width:66.600000px;}
.w9{width:66.960000px;}
.w8{width:67.176000px;}
.w5{width:70.380000px;}
.w1e{width:73.620000px;}
.w1a{width:76.140000px;}
.wd{width:77.796000px;}
.w1c{width:79.236000px;}
.w28{width:81.180000px;}
.w6{width:81.936000px;}
.w27{width:82.836000px;}
.w2e{width:84.240000px;}
.w30{width:84.420000px;}
.wc{width:88.200000px;}
.w7{width:90.360000px;}
.w12{width:91.800000px;}
.w26{width:92.160000px;}
.w2a{width:92.196000px;}
.w21{width:107.316000px;}
.w23{width:107.460000px;}
.w24{width:109.116000px;}
.w22{width:109.260000px;}
.w18{width:126.936000px;}
.w15{width:129.996000px;}
.w17{width:131.940000px;}
.w10{width:135.360000px;}
.w16{width:140.436000px;}
.we{width:165.630000px;}
.wf{width:191.010000px;}
.w2f{width:211.935000px;}
.w2d{width:252.030000px;}
.w14{width:259.590000px;}
.w13{width:271.335000px;}
.w2c{width:297.075000px;}
.w2b{width:336.990000px;}
.w11{width:492.045000px;}
.w3{width:892.979973px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3f{left:6.480000px;}
.x41{left:8.100000px;}
.x4a{left:9.180000px;}
.x7d{left:10.440000px;}
.x59{left:11.520000px;}
.x70{left:12.600000px;}
.x43{left:13.860000px;}
.x4c{left:15.300000px;}
.x8d{left:16.560000px;}
.x6d{left:17.640000px;}
.x48{left:19.440000px;}
.x4f{left:21.600000px;}
.x60{left:23.760000px;}
.x44{left:25.020000px;}
.x5d{left:26.280000px;}
.x46{left:27.720000px;}
.x4e{left:30.060000px;}
.x73{left:31.680000px;}
.x6f{left:33.120000px;}
.x75{left:34.560000px;}
.x54{left:36.900000px;}
.x80{left:38.160000px;}
.x55{left:39.420000px;}
.x77{left:40.500000px;}
.x56{left:41.760000px;}
.x76{left:44.460000px;}
.x57{left:46.665000px;}
.x52{left:48.600000px;}
.x79{left:49.860000px;}
.x6c{left:51.525000px;}
.x78{left:52.560000px;}
.x53{left:53.820000px;}
.x58{left:54.900000px;}
.x6a{left:58.140000px;}
.x51{left:65.160000px;}
.x50{left:69.165000px;}
.x5f{left:71.460000px;}
.x8e{left:76.500000px;}
.x68{left:78.300000px;}
.x66{left:80.685000px;}
.x87{left:84.420000px;}
.x8a{left:90.750000px;}
.x81{left:99.570000px;}
.x88{left:108.894000px;}
.x1{left:127.655987px;}
.x64{left:130.175987px;}
.x8f{left:132.515987px;}
.x65{left:134.496000px;}
.x62{left:136.476000px;}
.x7c{left:151.410000px;}
.x6{left:157.709987px;}
.xd{left:159.689987px;}
.xc{left:161.669987px;}
.x40{left:168.150000px;}
.x14{left:169.229973px;}
.x15{left:175.349987px;}
.x83{left:179.130000px;}
.xb{left:180.749987px;}
.x5a{left:182.369987px;}
.x7{left:183.809987px;}
.x1a{left:185.069973px;}
.x5b{left:186.869987px;}
.x1b{left:191.189987px;}
.x7a{left:194.609987px;}
.x1f{left:199.109973px;}
.x32{left:203.429987px;}
.x20{left:205.229987px;}
.x2c{left:210.809987px;}
.x82{left:212.069987px;}
.x61{left:226.289987px;}
.x3e{left:227.729987px;}
.x5c{left:228.990000px;}
.x42{left:239.070000px;}
.x63{left:272.730000px;}
.x6e{left:280.875000px;}
.x9{left:285.014987px;}
.x24{left:294.014973px;}
.xa{left:301.034987px;}
.x25{left:306.254987px;}
.x45{left:321.375000px;}
.x90{left:343.694987px;}
.x2a{left:353.234973px;}
.x84{left:355.575000px;}
.x69{left:357.915000px;}
.x2b{left:365.474987px;}
.x39{left:371.774973px;}
.x8b{left:381.135000px;}
.x3a{left:384.014987px;}
.x36{left:385.454973px;}
.x1e{left:387.794987px;}
.x7b{left:389.054987px;}
.x37{left:397.694987px;}
.x5{left:399.314987px;}
.x8{left:408.494987px;}
.x47{left:412.095000px;}
.xf{left:413.714987px;}
.x7e{left:416.235000px;}
.x71{left:419.115000px;}
.x3{left:428.474987px;}
.x23{left:436.754973px;}
.xe{left:438.194987px;}
.x21{left:439.814987px;}
.x2{left:442.334987px;}
.x4{left:446.474987px;}
.x1c{left:449.534973px;}
.x1d{left:455.654987px;}
.x89{left:466.095000px;}
.x5e{left:473.145000px;}
.x2d{left:474.764973px;}
.x49{left:479.625000px;}
.x2e{left:487.004987px;}
.x67{left:499.065000px;}
.x16{left:505.544973px;}
.x17{left:511.664987px;}
.x7f{left:524.265000px;}
.x38{left:543.704973px;}
.x4b{left:546.945000px;}
.x18{left:550.184973px;}
.x19{left:556.304987px;}
.x72{left:557.385000px;}
.x85{left:579.705000px;}
.x28{left:583.664973px;}
.x29{left:595.904987px;}
.x12{left:607.784973px;}
.x13{left:613.904987px;}
.x2f{left:619.484987px;}
.x30{left:628.124973px;}
.x6b{left:631.725000px;}
.x31{left:640.364987px;}
.x35{left:651.884987px;}
.x86{left:672.630000px;}
.x4d{left:676.590000px;}
.x8c{left:678.750000px;}
.x74{left:685.050000px;}
.x26{left:697.289973px;}
.x27{left:709.529987px;}
.x33{left:715.109973px;}
.x3b{left:716.729973px;}
.x34{left:727.349987px;}
.x3c{left:728.969987px;}
.x3d{left:741.569973px;}
.x22{left:753.269973px;}
.x10{left:759.389973px;}
.x11{left:765.509987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.832000pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.256000pt;}
.ls6{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.172267pt;}
.ls3{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.047360pt;}
.ls9{letter-spacing:0.064000pt;}
.ls14{letter-spacing:0.121067pt;}
.ls2{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.133333pt;}
.ls13{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.161067pt;}
.lsb{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.256000pt;}
.ls12{letter-spacing:0.265600pt;}
.lsa{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.321280pt;}
.ls15{letter-spacing:0.456533pt;}
.ls5{letter-spacing:0.640000pt;}
.lsd{letter-spacing:0.768000pt;}
.ls16{letter-spacing:3.360000pt;}
.ls7{letter-spacing:172.778667pt;}
.ws2{word-spacing:-58.880000pt;}
.ws0{word-spacing:-17.792000pt;}
.wsb{word-spacing:-16.768000pt;}
.ws9{word-spacing:-16.640000pt;}
.wsf{word-spacing:-16.256000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws4{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.744000pt;}
.ws8{word-spacing:-15.168000pt;}
.ws14{word-spacing:-13.736533pt;}
.ws12{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.327360pt;}
.ws1{word-spacing:-13.306880pt;}
.ws15{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.640000pt;}
.wse{word-spacing:-12.467733pt;}
.ws10{word-spacing:-12.320000pt;}
.ws13{word-spacing:-11.040000pt;}
.wsa{word-spacing:-10.959467pt;}
.ws3{word-spacing:0.000000pt;}
._1f{margin-left:-4.817493pt;}
._13{margin-left:-3.822507pt;}
._4{margin-left:-2.513493pt;}
._0{margin-left:-1.000960pt;}
._2{width:1.055147pt;}
._3{width:2.208853pt;}
._7{width:3.186773pt;}
._9{width:4.101973pt;}
._5{width:5.760000pt;}
._6{width:6.890667pt;}
._f{width:7.914667pt;}
._8{width:9.024000pt;}
._10{width:10.496000pt;}
._11{width:11.584000pt;}
._18{width:12.545707pt;}
._12{width:13.482667pt;}
._e{width:14.656000pt;}
._29{width:15.936000pt;}
._d{width:17.030400pt;}
._a{width:18.048000pt;}
._17{width:19.022080pt;}
._19{width:20.124587pt;}
._14{width:21.056000pt;}
._b{width:22.272000pt;}
._c{width:23.178667pt;}
._23{width:24.139520pt;}
._1d{width:25.289813pt;}
._1e{width:26.637227pt;}
._20{width:27.603627pt;}
._21{width:28.652373pt;}
._24{width:29.974613pt;}
._1b{width:31.214080pt;}
._1a{width:32.360960pt;}
._27{width:33.253120pt;}
._22{width:34.664960pt;}
._1c{width:35.648000pt;}
._2c{width:53.685760pt;}
._28{width:55.032320pt;}
._2b{width:137.788160pt;}
._2d{width:140.608640pt;}
._2a{width:141.617920pt;}
._16{width:172.778667pt;}
._25{width:297.344000pt;}
._26{width:298.560000pt;}
._15{width:752.138667pt;}
._1{width:880.557653pt;}
.fs7{font-size:34.560000pt;}
.fs3{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:50.560000pt;}
.fs6{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y116{bottom:2.560000pt;}
.y10e{bottom:2.720000pt;}
.yb4{bottom:2.880000pt;}
.yb8{bottom:3.040000pt;}
.ye4{bottom:3.200000pt;}
.yd4{bottom:3.360000pt;}
.y111{bottom:8.800000pt;}
.yb5{bottom:9.920000pt;}
.y120{bottom:11.040000pt;}
.y113{bottom:14.880000pt;}
.y118{bottom:15.040000pt;}
.yb6{bottom:16.800000pt;}
.yed{bottom:18.560000pt;}
.y101{bottom:18.720000pt;}
.yd5{bottom:18.746667pt;}
.y110{bottom:21.120000pt;}
.y104{bottom:26.400000pt;}
.y112{bottom:27.200000pt;}
.y10c{bottom:27.840000pt;}
.y100{bottom:33.920000pt;}
.y105{bottom:34.080000pt;}
.y103{bottom:41.760000pt;}
.yff{bottom:49.280000pt;}
.yf{bottom:51.232000pt;}
.yf4{bottom:56.960000pt;}
.yfe{bottom:64.640000pt;}
.ye{bottom:68.512000pt;}
.yf3{bottom:72.320000pt;}
.yfd{bottom:80.000000pt;}
.yf2{bottom:87.680000pt;}
.y128{bottom:95.232000pt;}
.yfc{bottom:95.360000pt;}
.y3e{bottom:100.032000pt;}
.yae{bottom:102.752000pt;}
.yf1{bottom:103.040000pt;}
.y7b{bottom:103.712000pt;}
.yeb{bottom:105.632000pt;}
.y192{bottom:108.832000pt;}
.yfb{bottom:110.720000pt;}
.y127{bottom:111.232000pt;}
.y8d{bottom:111.872000pt;}
.y191{bottom:113.472000pt;}
.yb1{bottom:115.712000pt;}
.yf0{bottom:118.240000pt;}
.yfa{bottom:125.920000pt;}
.y126{bottom:127.232000pt;}
.yad{bottom:130.272000pt;}
.y6c{bottom:130.432000pt;}
.y190{bottom:131.872000pt;}
.yef{bottom:133.600000pt;}
.y3d{bottom:134.426667pt;}
.y18f{bottom:136.506667pt;}
.yea{bottom:138.426667pt;}
.y158{bottom:138.746667pt;}
.y8c{bottom:139.546667pt;}
.y7a{bottom:140.506667pt;}
.yf9{bottom:141.280000pt;}
.y125{bottom:143.226667pt;}
.yee{bottom:148.960000pt;}
.yb0{bottom:152.506667pt;}
.y18e{bottom:154.746667pt;}
.y3c{bottom:155.546667pt;}
.yf8{bottom:156.640000pt;}
.yac{bottom:157.946667pt;}
.y124{bottom:159.226667pt;}
.y18d{bottom:159.386667pt;}
.y8b{bottom:167.066667pt;}
.y6b{bottom:167.226667pt;}
.ye9{bottom:171.066667pt;}
.yf7{bottom:172.000000pt;}
.y7d{bottom:173.306667pt;}
.y3b{bottom:173.786667pt;}
.y123{bottom:175.226667pt;}
.y157{bottom:175.546667pt;}
.y79{bottom:176.986667pt;}
.y18c{bottom:177.786667pt;}
.y18b{bottom:182.426667pt;}
.yab{bottom:185.466667pt;}
.yaf{bottom:186.746667pt;}
.yf6{bottom:187.360000pt;}
.y122{bottom:191.226667pt;}
.y3a{bottom:192.506667pt;}
.y8a{bottom:194.746667pt;}
.y18a{bottom:200.826667pt;}
.yf5{bottom:202.560000pt;}
.ye8{bottom:203.866667pt;}
.y6a{bottom:204.026667pt;}
.y189{bottom:205.466667pt;}
.y121{bottom:207.226667pt;}
.y81{bottom:210.106667pt;}
.y39{bottom:210.906667pt;}
.y156{bottom:212.346667pt;}
.yaa{bottom:213.146667pt;}
.y78{bottom:213.786667pt;}
.ye7{bottom:220.506667pt;}
.y89{bottom:222.266667pt;}
.y11f{bottom:223.226667pt;}
.y188{bottom:223.866667pt;}
.y187{bottom:228.506667pt;}
.y38{bottom:229.306667pt;}
.ye6{bottom:235.866667pt;}
.y6e{bottom:240.506667pt;}
.ya9{bottom:240.666667pt;}
.y69{bottom:240.826667pt;}
.y155{bottom:246.586667pt;}
.y186{bottom:246.746667pt;}
.y7c{bottom:246.906667pt;}
.y37{bottom:247.706667pt;}
.y88{bottom:249.786667pt;}
.ye5{bottom:251.106667pt;}
.y185{bottom:251.426667pt;}
.y11e{bottom:257.986667pt;}
.ye3{bottom:263.906667pt;}
.y77{bottom:264.226667pt;}
.y36{bottom:266.146667pt;}
.ya8{bottom:268.226667pt;}
.y184{bottom:269.826667pt;}
.y154{bottom:272.866667pt;}
.y11d{bottom:273.346667pt;}
.y183{bottom:274.466667pt;}
.y87{bottom:277.186667pt;}
.y6d{bottom:277.346667pt;}
.y68{bottom:277.666667pt;}
.ye2{bottom:279.746667pt;}
.y80{bottom:283.746667pt;}
.y35{bottom:284.546667pt;}
.y182{bottom:292.866667pt;}
.ye1{bottom:295.746667pt;}
.ya7{bottom:295.906667pt;}
.y181{bottom:297.506667pt;}
.y34{bottom:302.946667pt;}
.y153{bottom:304.066667pt;}
.y11c{bottom:304.706667pt;}
.ye0{bottom:311.746667pt;}
.y86{bottom:314.146667pt;}
.y76{bottom:314.306667pt;}
.y67{bottom:314.466667pt;}
.y180{bottom:315.746667pt;}
.y152{bottom:319.426667pt;}
.y17f{bottom:320.386667pt;}
.y7f{bottom:320.546667pt;}
.y33{bottom:321.346667pt;}
.ya6{bottom:323.426667pt;}
.ydf{bottom:327.746667pt;}
.y11b{bottom:329.026667pt;}
.y151{bottom:334.786667pt;}
.y17e{bottom:338.786667pt;}
.y32{bottom:339.426667pt;}
.y11a{bottom:341.666667pt;}
.y17d{bottom:343.426667pt;}
.yde{bottom:343.746667pt;}
.y150{bottom:350.146667pt;}
.ya5{bottom:351.106667pt;}
.y66{bottom:351.266667pt;}
.y7e{bottom:357.346667pt;}
.y31{bottom:358.146667pt;}
.ydd{bottom:359.746667pt;}
.y17c{bottom:361.826667pt;}
.y14f{bottom:365.506667pt;}
.y17b{bottom:366.466667pt;}
.ydc{bottom:375.746667pt;}
.y14e{bottom:378.146667pt;}
.ya4{bottom:378.626667pt;}
.y119{bottom:379.106667pt;}
.y17a{bottom:384.866667pt;}
.y65{bottom:388.066667pt;}
.y179{bottom:389.506667pt;}
.y30{bottom:389.666667pt;}
.ydb{bottom:391.746667pt;}
.y117{bottom:392.066667pt;}
.y72{bottom:394.146667pt;}
.ya3{bottom:406.306667pt;}
.yda{bottom:407.746667pt;}
.y2f{bottom:408.226667pt;}
.y14d{bottom:410.146667pt;}
.y178{bottom:412.386667pt;}
.y115{bottom:417.346667pt;}
.yd9{bottom:423.746667pt;}
.y64{bottom:424.866667pt;}
.y14c{bottom:426.146667pt;}
.y2e{bottom:426.626667pt;}
.y177{bottom:430.786667pt;}
.y75{bottom:430.946667pt;}
.ya2{bottom:433.826667pt;}
.yd8{bottom:439.746667pt;}
.y14b{bottom:442.146667pt;}
.y114{bottom:442.466667pt;}
.y176{bottom:453.826667pt;}
.y10b{bottom:455.426667pt;}
.yd7{bottom:455.746667pt;}
.y14a{bottom:458.146667pt;}
.y2d{bottom:458.306667pt;}
.ya1{bottom:461.506667pt;}
.y63{bottom:461.666667pt;}
.y84{bottom:467.746667pt;}
.yd6{bottom:471.746667pt;}
.y149{bottom:474.146667pt;}
.y2c{bottom:476.866667pt;}
.y175{bottom:481.506667pt;}
.yd3{bottom:487.746667pt;}
.ya0{bottom:489.026667pt;}
.y148{bottom:490.146667pt;}
.y10f{bottom:492.866667pt;}
.y2b{bottom:495.266667pt;}
.y62{bottom:498.466667pt;}
.y174{bottom:499.746667pt;}
.y173{bottom:504.413333pt;}
.y71{bottom:504.573333pt;}
.y10d{bottom:505.853333pt;}
.y147{bottom:506.173333pt;}
.y2a{bottom:513.693333pt;}
.y54{bottom:515.293333pt;}
.y9f{bottom:516.733333pt;}
.y146{bottom:522.173333pt;}
.y172{bottom:522.813333pt;}
.y10a{bottom:530.813333pt;}
.yd2{bottom:531.133333pt;}
.y29{bottom:532.093333pt;}
.y61{bottom:535.293333pt;}
.y145{bottom:538.173333pt;}
.y85{bottom:541.373333pt;}
.y9e{bottom:544.253333pt;}
.y171{bottom:545.853333pt;}
.y28{bottom:550.493333pt;}
.y53{bottom:552.253333pt;}
.yd{bottom:553.506667pt;}
.y144{bottom:554.173333pt;}
.yd1{bottom:557.533333pt;}
.y109{bottom:560.573333pt;}
.y27{bottom:568.893333pt;}
.y143{bottom:570.173333pt;}
.y9d{bottom:571.933333pt;}
.y60{bottom:572.093333pt;}
.y170{bottom:573.533333pt;}
.yd0{bottom:577.533333pt;}
.y6f{bottom:578.173333pt;}
.y52{bottom:584.573333pt;}
.y142{bottom:586.173333pt;}
.yc{bottom:586.813333pt;}
.y26{bottom:587.293333pt;}
.y108{bottom:589.213333pt;}
.ycf{bottom:590.333333pt;}
.y16f{bottom:591.773333pt;}
.y16e{bottom:596.413333pt;}
.y9c{bottom:599.453333pt;}
.y141{bottom:602.173333pt;}
.y51{bottom:603.773333pt;}
.y107{bottom:604.733333pt;}
.y25{bottom:605.693333pt;}
.yce{bottom:606.173333pt;}
.y5f{bottom:608.893333pt;}
.y16d{bottom:614.813333pt;}
.y73{bottom:614.973333pt;}
.yb{bottom:617.373333pt;}
.y140{bottom:618.173333pt;}
.y16c{bottom:619.453333pt;}
.y106{bottom:620.093333pt;}
.ycd{bottom:622.013333pt;}
.y24{bottom:624.093333pt;}
.y9b{bottom:627.133333pt;}
.y102{bottom:632.733333pt;}
.ya{bottom:637.213333pt;}
.ycc{bottom:637.693333pt;}
.y16b{bottom:637.853333pt;}
.y50{bottom:638.173333pt;}
.y23{bottom:642.493333pt;}
.y5e{bottom:645.693333pt;}
.ycb{bottom:653.533333pt;}
.y9a{bottom:654.653333pt;}
.y4f{bottom:659.293333pt;}
.y22{bottom:660.893333pt;}
.y13f{bottom:667.613333pt;}
.y9{bottom:668.733333pt;}
.yca{bottom:669.373333pt;}
.y21{bottom:679.293333pt;}
.y4e{bottom:680.413333pt;}
.y99{bottom:682.333333pt;}
.y5d{bottom:682.493333pt;}
.y13e{bottom:682.973333pt;}
.y16a{bottom:683.773333pt;}
.yc9{bottom:685.213333pt;}
.y13d{bottom:695.613333pt;}
.y20{bottom:697.693333pt;}
.yc8{bottom:700.893333pt;}
.y8{bottom:701.533333pt;}
.y169{bottom:706.813333pt;}
.y98{bottom:709.853333pt;}
.y13c{bottom:710.173333pt;}
.y168{bottom:711.453333pt;}
.y1f{bottom:716.093333pt;}
.yc7{bottom:716.733333pt;}
.y5c{bottom:719.293333pt;}
.y4d{bottom:722.813333pt;}
.y13b{bottom:724.573333pt;}
.y83{bottom:725.373333pt;}
.y167{bottom:729.853333pt;}
.y7{bottom:732.093333pt;}
.yc6{bottom:732.573333pt;}
.y1e{bottom:734.493333pt;}
.y97{bottom:737.533333pt;}
.y13a{bottom:739.133333pt;}
.y4c{bottom:743.933333pt;}
.yc5{bottom:748.413333pt;}
.y166{bottom:752.733333pt;}
.y1d{bottom:752.893333pt;}
.y139{bottom:753.573333pt;}
.y5b{bottom:756.133333pt;}
.y165{bottom:757.413333pt;}
.y6{bottom:762.653333pt;}
.yc4{bottom:764.133333pt;}
.y4b{bottom:765.093333pt;}
.y138{bottom:768.133333pt;}
.y1c{bottom:771.333333pt;}
.y164{bottom:775.813333pt;}
.yc3{bottom:779.973333pt;}
.y137{bottom:782.533333pt;}
.y4a{bottom:786.213333pt;}
.y1b{bottom:789.733333pt;}
.y96{bottom:792.773333pt;}
.y5a{bottom:792.933333pt;}
.y5{bottom:793.053333pt;}
.yc2{bottom:795.813333pt;}
.y136{bottom:796.933333pt;}
.y163{bottom:798.853333pt;}
.y70{bottom:799.013333pt;}
.y162{bottom:803.493333pt;}
.y49{bottom:807.493333pt;}
.y1a{bottom:808.133333pt;}
.y135{bottom:811.493333pt;}
.yc1{bottom:811.653333pt;}
.y95{bottom:820.293333pt;}
.y161{bottom:821.893333pt;}
.y4{bottom:824.293333pt;}
.y134{bottom:825.893333pt;}
.y19{bottom:826.533333pt;}
.yc0{bottom:827.333333pt;}
.y48{bottom:828.613333pt;}
.y59{bottom:829.733333pt;}
.y82{bottom:835.813333pt;}
.y133{bottom:840.453333pt;}
.ybf{bottom:843.173333pt;}
.y160{bottom:844.773333pt;}
.y18{bottom:844.933333pt;}
.y94{bottom:847.973333pt;}
.y15f{bottom:849.413333pt;}
.y47{bottom:849.733333pt;}
.y3{bottom:850.213333pt;}
.y132{bottom:854.853333pt;}
.ybe{bottom:859.013333pt;}
.y17{bottom:863.333333pt;}
.y58{bottom:866.533333pt;}
.y131{bottom:869.253333pt;}
.y46{bottom:870.853333pt;}
.ybd{bottom:874.853333pt;}
.y93{bottom:875.493333pt;}
.y130{bottom:883.813333pt;}
.ybc{bottom:890.533333pt;}
.y45{bottom:892.133333pt;}
.y16{bottom:897.573333pt;}
.y12f{bottom:898.213333pt;}
.y92{bottom:903.173333pt;}
.y57{bottom:903.333333pt;}
.y15e{bottom:906.213333pt;}
.ybb{bottom:906.373333pt;}
.y74{bottom:909.413333pt;}
.y44{bottom:913.253333pt;}
.y15{bottom:916.133333pt;}
.yba{bottom:922.213333pt;}
.y12e{bottom:929.573333pt;}
.y91{bottom:930.693333pt;}
.y43{bottom:934.373333pt;}
.y14{bottom:934.533333pt;}
.y15d{bottom:936.773333pt;}
.yb9{bottom:938.053333pt;}
.y56{bottom:940.133333pt;}
.y15c{bottom:941.413333pt;}
.y12d{bottom:949.573333pt;}
.y13{bottom:952.933333pt;}
.yb7{bottom:953.733333pt;}
.y42{bottom:955.493333pt;}
.y90{bottom:958.373333pt;}
.y12c{bottom:967.333333pt;}
.y15b{bottom:967.493333pt;}
.yb3{bottom:969.573333pt;}
.yec{bottom:971.493333pt;}
.y12{bottom:973.573333pt;}
.y194{bottom:975.173333pt;}
.y41{bottom:976.773333pt;}
.y55{bottom:976.933333pt;}
.y12b{bottom:980.133333pt;}
.y2{bottom:984.293333pt;}
.y8f{bottom:985.893333pt;}
.y11{bottom:994.853333pt;}
.y40{bottom:995.013333pt;}
.y12a{bottom:996.133333pt;}
.y15a{bottom:998.213333pt;}
.y159{bottom:1002.853333pt;}
.y129{bottom:1012.160000pt;}
.y10{bottom:1013.440000pt;}
.y8e{bottom:1013.600000pt;}
.y3f{bottom:1013.760000pt;}
.y1{bottom:1014.373333pt;}
.y193{bottom:1014.400000pt;}
.yb2{bottom:1014.880000pt;}
.h1c{height:12.320000pt;}
.h1d{height:12.352000pt;}
.h22{height:13.760000pt;}
.h23{height:13.920000pt;}
.h13{height:15.040000pt;}
.h14{height:15.072000pt;}
.h12{height:15.200000pt;}
.h21{height:15.232000pt;}
.h17{height:15.360000pt;}
.h24{height:15.392000pt;}
.h1f{height:24.480000pt;}
.h20{height:24.640000pt;}
.h10{height:27.680000pt;}
.h18{height:30.560000pt;}
.h16{height:30.752000pt;}
.h25{height:33.918750pt;}
.h1e{height:36.800000pt;}
.hc{height:42.084375pt;}
.hb{height:45.156250pt;}
.h11{height:47.109375pt;}
.h15{height:52.134375pt;}
.h9{height:57.375000pt;}
.h6{height:57.787500pt;}
.h2{height:58.563750pt;}
.h1b{height:62.752000pt;}
.he{height:62.781250pt;}
.h8{height:62.812500pt;}
.ha{height:63.656250pt;}
.h7{height:64.500000pt;}
.hf{height:66.383437pt;}
.hd{height:66.404375pt;}
.h4{height:66.750000pt;}
.h5{height:74.697187pt;}
.h3{height:78.097500pt;}
.h1a{height:122.752000pt;}
.h19{height:214.560000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:35.040000pt;}
.w20{width:40.960000pt;}
.w29{width:43.072000pt;}
.w25{width:44.480000pt;}
.w1f{width:46.592000pt;}
.w19{width:47.232000pt;}
.w1d{width:51.200000pt;}
.w1b{width:53.760000pt;}
.wb{width:55.232000pt;}
.wa{width:59.200000pt;}
.w9{width:59.520000pt;}
.w8{width:59.712000pt;}
.w5{width:62.560000pt;}
.w1e{width:65.440000pt;}
.w1a{width:67.680000pt;}
.wd{width:69.152000pt;}
.w1c{width:70.432000pt;}
.w28{width:72.160000pt;}
.w6{width:72.832000pt;}
.w27{width:73.632000pt;}
.w2e{width:74.880000pt;}
.w30{width:75.040000pt;}
.wc{width:78.400000pt;}
.w7{width:80.320000pt;}
.w12{width:81.600000pt;}
.w26{width:81.920000pt;}
.w2a{width:81.952000pt;}
.w21{width:95.392000pt;}
.w23{width:95.520000pt;}
.w24{width:96.992000pt;}
.w22{width:97.120000pt;}
.w18{width:112.832000pt;}
.w15{width:115.552000pt;}
.w17{width:117.280000pt;}
.w10{width:120.320000pt;}
.w16{width:124.832000pt;}
.we{width:147.226667pt;}
.wf{width:169.786667pt;}
.w2f{width:188.386667pt;}
.w2d{width:224.026667pt;}
.w14{width:230.746667pt;}
.w13{width:241.186667pt;}
.w2c{width:264.066667pt;}
.w2b{width:299.546667pt;}
.w11{width:437.373333pt;}
.w3{width:793.759976pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3f{left:5.760000pt;}
.x41{left:7.200000pt;}
.x4a{left:8.160000pt;}
.x7d{left:9.280000pt;}
.x59{left:10.240000pt;}
.x70{left:11.200000pt;}
.x43{left:12.320000pt;}
.x4c{left:13.600000pt;}
.x8d{left:14.720000pt;}
.x6d{left:15.680000pt;}
.x48{left:17.280000pt;}
.x4f{left:19.200000pt;}
.x60{left:21.120000pt;}
.x44{left:22.240000pt;}
.x5d{left:23.360000pt;}
.x46{left:24.640000pt;}
.x4e{left:26.720000pt;}
.x73{left:28.160000pt;}
.x6f{left:29.440000pt;}
.x75{left:30.720000pt;}
.x54{left:32.800000pt;}
.x80{left:33.920000pt;}
.x55{left:35.040000pt;}
.x77{left:36.000000pt;}
.x56{left:37.120000pt;}
.x76{left:39.520000pt;}
.x57{left:41.480000pt;}
.x52{left:43.200000pt;}
.x79{left:44.320000pt;}
.x6c{left:45.800000pt;}
.x78{left:46.720000pt;}
.x53{left:47.840000pt;}
.x58{left:48.800000pt;}
.x6a{left:51.680000pt;}
.x51{left:57.920000pt;}
.x50{left:61.480000pt;}
.x5f{left:63.520000pt;}
.x8e{left:68.000000pt;}
.x68{left:69.600000pt;}
.x66{left:71.720000pt;}
.x87{left:75.040000pt;}
.x8a{left:80.666667pt;}
.x81{left:88.506667pt;}
.x88{left:96.794667pt;}
.x1{left:113.471988pt;}
.x64{left:115.711988pt;}
.x8f{left:117.791988pt;}
.x65{left:119.552000pt;}
.x62{left:121.312000pt;}
.x7c{left:134.586667pt;}
.x6{left:140.186655pt;}
.xd{left:141.946655pt;}
.xc{left:143.706655pt;}
.x40{left:149.466667pt;}
.x14{left:150.426643pt;}
.x15{left:155.866655pt;}
.x83{left:159.226667pt;}
.xb{left:160.666655pt;}
.x5a{left:162.106655pt;}
.x7{left:163.386655pt;}
.x1a{left:164.506643pt;}
.x5b{left:166.106655pt;}
.x1b{left:169.946655pt;}
.x7a{left:172.986655pt;}
.x1f{left:176.986643pt;}
.x32{left:180.826655pt;}
.x20{left:182.426655pt;}
.x2c{left:187.386655pt;}
.x82{left:188.506655pt;}
.x61{left:201.146655pt;}
.x3e{left:202.426655pt;}
.x5c{left:203.546667pt;}
.x42{left:212.506667pt;}
.x63{left:242.426667pt;}
.x6e{left:249.666667pt;}
.x9{left:253.346655pt;}
.x24{left:261.346643pt;}
.xa{left:267.586655pt;}
.x25{left:272.226655pt;}
.x45{left:285.666667pt;}
.x90{left:305.506655pt;}
.x2a{left:313.986643pt;}
.x84{left:316.066667pt;}
.x69{left:318.146667pt;}
.x2b{left:324.866655pt;}
.x39{left:330.466643pt;}
.x8b{left:338.786667pt;}
.x3a{left:341.346655pt;}
.x36{left:342.626643pt;}
.x1e{left:344.706655pt;}
.x7b{left:345.826655pt;}
.x37{left:353.506655pt;}
.x5{left:354.946655pt;}
.x8{left:363.106655pt;}
.x47{left:366.306667pt;}
.xf{left:367.746655pt;}
.x7e{left:369.986667pt;}
.x71{left:372.546667pt;}
.x3{left:380.866655pt;}
.x23{left:388.226643pt;}
.xe{left:389.506655pt;}
.x21{left:390.946655pt;}
.x2{left:393.186655pt;}
.x4{left:396.866655pt;}
.x1c{left:399.586643pt;}
.x1d{left:405.026655pt;}
.x89{left:414.306667pt;}
.x5e{left:420.573333pt;}
.x2d{left:422.013310pt;}
.x49{left:426.333333pt;}
.x2e{left:432.893322pt;}
.x67{left:443.613333pt;}
.x16{left:449.373310pt;}
.x17{left:454.813322pt;}
.x7f{left:466.013333pt;}
.x38{left:483.293310pt;}
.x4b{left:486.173333pt;}
.x18{left:489.053310pt;}
.x19{left:494.493322pt;}
.x72{left:495.453333pt;}
.x85{left:515.293333pt;}
.x28{left:518.813310pt;}
.x29{left:529.693322pt;}
.x12{left:540.253310pt;}
.x13{left:545.693322pt;}
.x2f{left:550.653322pt;}
.x30{left:558.333310pt;}
.x6b{left:561.533333pt;}
.x31{left:569.213322pt;}
.x35{left:579.453322pt;}
.x86{left:597.893333pt;}
.x4d{left:601.413333pt;}
.x8c{left:603.333333pt;}
.x74{left:608.933333pt;}
.x26{left:619.813310pt;}
.x27{left:630.693322pt;}
.x33{left:635.653310pt;}
.x3b{left:637.093310pt;}
.x34{left:646.533322pt;}
.x3c{left:647.973322pt;}
.x3d{left:659.173310pt;}
.x22{left:669.573310pt;}
.x10{left:675.013310pt;}
.x11{left:680.453322pt;}
}




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