
    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_ab3443f6ad50220aa0879a3b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.084961;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_9b954037e98579c9544d79b6.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.084961;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_dd506f4e4ea926041d76171b.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_57857ab29ee4e2ffc9abc7cd.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_8e89b60fe4eee9ac7204913c.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_0f236b7768ccb847a1f07d00.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.690918;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_46bee9213fc9329d7ba9a06b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.751953;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_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.758789;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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;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_e4d10a9e88e0aff3e49e8eab.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.914062;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_ad9759e522f7184fbdee9d38.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.752441;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_a9030c9ba2630eeaf78f9d05.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.751953;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_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.v4{vertical-align:20.880000px;}
.v2{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.720000px;}
.ls9{letter-spacing:-0.702000px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.106800px;}
.ls7{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.259800px;}
.ls10{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.360000px;}
.ls11{letter-spacing:16.506720px;}
.ls4{letter-spacing:18.881760px;}
.ls3{letter-spacing:37.566720px;}
.ls1{letter-spacing:42.048000px;}
.lse{letter-spacing:46.026720px;}
.lsb{letter-spacing:64.026720px;}
.ls12{letter-spacing:64.170720px;}
.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;}
}
.ws4{word-spacing:-59.760000px;}
.ws5{word-spacing:-54.000000px;}
.ws0{word-spacing:-15.300000px;}
.ws13{word-spacing:-15.199920px;}
.ws12{word-spacing:-15.199800px;}
.ws3{word-spacing:-14.940000px;}
.ws14{word-spacing:-14.580000px;}
.ws8{word-spacing:-13.716000px;}
.ws7{word-spacing:-13.500000px;}
.ws6{word-spacing:-13.140000px;}
.ws9{word-spacing:-12.798000px;}
.wse{word-spacing:-12.420000px;}
.wsf{word-spacing:-12.240000px;}
.ws1{word-spacing:-12.060000px;}
.wsd{word-spacing:-11.700000px;}
.ws2{word-spacing:-10.440000px;}
.wsb{word-spacing:-9.732960px;}
.wsc{word-spacing:-9.720000px;}
.ws11{word-spacing:-7.560000px;}
.ws10{word-spacing:-6.840000px;}
.wsa{word-spacing:0.000000px;}
._4{margin-left:-1.315680px;}
._1{width:1.135440px;}
._5{width:3.065520px;}
._a{width:4.526880px;}
._f{width:5.543520px;}
._e{width:6.633360px;}
._9{width:8.246880px;}
._8{width:9.442080px;}
._11{width:10.576560px;}
._c{width:11.952000px;}
._7{width:13.266720px;}
._18{width:16.508160px;}
._12{width:18.414000px;}
._d{width:20.139120px;}
._19{width:21.872160px;}
._15{width:23.501280px;}
._14{width:24.554880px;}
._b{width:26.055360px;}
._10{width:27.489600px;}
._26{width:28.565280px;}
._17{width:29.706960px;}
._1f{width:30.716640px;}
._16{width:31.732560px;}
._20{width:32.778480px;}
._23{width:34.363440px;}
._21{width:35.495760px;}
._1b{width:36.573120px;}
._1d{width:37.708560px;}
._1e{width:38.724480px;}
._2b{width:40.487760px;}
._13{width:42.228000px;}
._1a{width:46.732320px;}
._1c{width:48.106800px;}
._24{width:51.572880px;}
._34{width:57.848640px;}
._33{width:59.102640px;}
._25{width:70.158240px;}
._2c{width:73.504800px;}
._2d{width:74.819520px;}
._30{width:79.660080px;}
._31{width:82.110240px;}
._2a{width:85.934880px;}
._3{width:131.442960px;}
._22{width:200.799120px;}
._2f{width:211.251600px;}
._27{width:304.817040px;}
._28{width:306.210240px;}
._2{width:342.981120px;}
._29{width:413.598960px;}
._2e{width:472.761360px;}
._35{width:482.681520px;}
._6{width:1011.913440px;}
._32{width:1054.465200px;}
._0{width:2857.020000px;}
.fc7{color:transparent;}
.fc4{color:rgb(0,112,192);}
.fc6{color:rgb(0,176,80);}
.fc3{color:rgb(0,0,0);}
.fc2{color:rgb(255,0,0);}
.fc5{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc0{color:rgb(238,0,0);}
.fs4{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y157{bottom:2.514000px;}
.y9{bottom:2.520000px;}
.y4d{bottom:2.556000px;}
.y42{bottom:3.060000px;}
.y1a{bottom:3.240000px;}
.y3b{bottom:6.120000px;}
.y7{bottom:8.316000px;}
.y4b{bottom:8.496000px;}
.y44{bottom:9.360000px;}
.yc{bottom:14.040000px;}
.y14f{bottom:16.200000px;}
.y8{bottom:16.236000px;}
.y1a4{bottom:16.380000px;}
.y4c{bottom:16.416000px;}
.ya3{bottom:16.920000px;}
.ye4{bottom:17.100000px;}
.y41{bottom:18.540000px;}
.y39{bottom:19.260000px;}
.y30{bottom:20.340000px;}
.y1a0{bottom:20.520000px;}
.ya7{bottom:24.300000px;}
.y18f{bottom:30.060000px;}
.y1a3{bottom:30.240000px;}
.ydf{bottom:31.494000px;}
.y9d{bottom:31.680000px;}
.y40{bottom:34.020000px;}
.ya{bottom:35.460000px;}
.y38{bottom:35.640000px;}
.y2f{bottom:37.620000px;}
.y19f{bottom:37.845000px;}
.y4e{bottom:41.400000px;}
.y18e{bottom:43.920000px;}
.y3f{bottom:49.500000px;}
.y37{bottom:51.300000px;}
.y2e{bottom:54.900000px;}
.y19e{bottom:54.945000px;}
.y18d{bottom:57.600000px;}
.y1a2{bottom:57.780000px;}
.y6{bottom:58.140000px;}
.y4a{bottom:64.080000px;}
.y3e{bottom:65.160000px;}
.y36{bottom:66.780000px;}
.y10c{bottom:68.040000px;}
.y2d{bottom:72.180000px;}
.y19d{bottom:72.225000px;}
.y3d{bottom:80.640000px;}
.y35{bottom:82.260000px;}
.y2c{bottom:89.460000px;}
.y19c{bottom:89.505000px;}
.ycb{bottom:97.065000px;}
.y34{bottom:97.740000px;}
.y2b{bottom:106.740000px;}
.y19b{bottom:106.785000px;}
.y11b{bottom:110.736000px;}
.y49{bottom:111.816000px;}
.y43{bottom:112.500000px;}
.y33{bottom:113.400000px;}
.y159{bottom:120.276000px;}
.yde{bottom:121.176000px;}
.y18a{bottom:122.616000px;}
.y2a{bottom:123.885000px;}
.y11e{bottom:125.316000px;}
.y48{bottom:128.376000px;}
.y32{bottom:128.880000px;}
.y158{bottom:134.856000px;}
.ye2{bottom:135.756000px;}
.y11d{bottom:139.896000px;}
.y29{bottom:141.165000px;}
.y47{bottom:142.956000px;}
.y156{bottom:149.436000px;}
.ye1{bottom:150.150000px;}
.y11c{bottom:154.290000px;}
.y189{bottom:156.990000px;}
.y28{bottom:158.445000px;}
.y46{bottom:160.590000px;}
.y98{bottom:162.030000px;}
.y155{bottom:164.010000px;}
.ye0{bottom:164.730000px;}
.y116{bottom:168.870000px;}
.y188{bottom:174.270000px;}
.y27{bottom:175.725000px;}
.y154{bottom:178.590000px;}
.y80{bottom:179.310000px;}
.y45{bottom:179.670000px;}
.y11a{bottom:183.450000px;}
.y187{bottom:191.550000px;}
.y153{bottom:192.990000px;}
.y26{bottom:193.005000px;}
.y1b{bottom:193.170000px;}
.yd9{bottom:193.890000px;}
.y7f{bottom:196.590000px;}
.y119{bottom:198.030000px;}
.y97{bottom:198.750000px;}
.y1a5{bottom:201.990000px;}
.y152{bottom:207.570000px;}
.ydd{bottom:208.470000px;}
.y186{bottom:208.830000px;}
.y25{bottom:210.105000px;}
.y118{bottom:212.610000px;}
.y1a1{bottom:213.150000px;}
.y7e{bottom:213.870000px;}
.y96{bottom:216.030000px;}
.y151{bottom:222.150000px;}
.ydc{bottom:223.050000px;}
.y185{bottom:226.110000px;}
.y117{bottom:227.190000px;}
.y24{bottom:227.385000px;}
.y7d{bottom:231.150000px;}
.y95{bottom:233.310000px;}
.y150{bottom:236.730000px;}
.ydb{bottom:237.450000px;}
.y10b{bottom:241.590000px;}
.y184{bottom:243.390000px;}
.y23{bottom:244.665000px;}
.y7c{bottom:248.430000px;}
.y94{bottom:250.590000px;}
.y14e{bottom:251.310000px;}
.yda{bottom:252.030000px;}
.y115{bottom:256.170000px;}
.y183{bottom:260.490000px;}
.y22{bottom:261.945000px;}
.y7b{bottom:265.530000px;}
.yca{bottom:266.610000px;}
.y93{bottom:267.690000px;}
.y114{bottom:270.750000px;}
.y182{bottom:277.770000px;}
.y21{bottom:279.225000px;}
.y14d{bottom:279.570000px;}
.yd8{bottom:281.190000px;}
.y7a{bottom:282.810000px;}
.y19a{bottom:282.990000px;}
.y92{bottom:284.970000px;}
.y113{bottom:285.330000px;}
.y181{bottom:295.050000px;}
.yd7{bottom:295.770000px;}
.y20{bottom:296.505000px;}
.y112{bottom:299.910000px;}
.y79{bottom:300.090000px;}
.y91{bottom:302.250000px;}
.y14c{bottom:305.310000px;}
.yd6{bottom:310.350000px;}
.y180{bottom:312.330000px;}
.y1f{bottom:313.605000px;}
.y111{bottom:314.310000px;}
.y78{bottom:317.415000px;}
.y3c{bottom:319.035000px;}
.y90{bottom:319.575000px;}
.y14b{bottom:319.935000px;}
.yd5{bottom:324.795000px;}
.y110{bottom:328.935000px;}
.y17f{bottom:329.655000px;}
.y1e{bottom:330.885000px;}
.y77{bottom:334.695000px;}
.y8f{bottom:336.855000px;}
.y14a{bottom:337.035000px;}
.yd4{bottom:339.375000px;}
.y10f{bottom:343.515000px;}
.y17e{bottom:346.935000px;}
.y1d{bottom:348.165000px;}
.y76{bottom:351.975000px;}
.yd3{bottom:353.955000px;}
.y8e{bottom:354.135000px;}
.y149{bottom:354.315000px;}
.y10e{bottom:358.095000px;}
.y17d{bottom:364.035000px;}
.y1c{bottom:365.985000px;}
.yd2{bottom:368.535000px;}
.y75{bottom:369.075000px;}
.y8d{bottom:371.235000px;}
.y148{bottom:371.595000px;}
.y10d{bottom:372.675000px;}
.y17c{bottom:381.315000px;}
.yd1{bottom:383.115000px;}
.y74{bottom:386.355000px;}
.y107{bottom:387.255000px;}
.y8c{bottom:388.515000px;}
.y147{bottom:388.875000px;}
.yd0{bottom:397.695000px;}
.y17b{bottom:398.595000px;}
.y10a{bottom:401.655000px;}
.y73{bottom:403.635000px;}
.y8b{bottom:405.795000px;}
.y146{bottom:406.155000px;}
.y199{bottom:407.055000px;}
.ycf{bottom:412.095000px;}
.y3a{bottom:412.995000px;}
.y17a{bottom:415.875000px;}
.y109{bottom:416.235000px;}
.y72{bottom:420.915000px;}
.y8a{bottom:423.075000px;}
.y145{bottom:423.255000px;}
.y198{bottom:424.335000px;}
.yce{bottom:426.675000px;}
.y108{bottom:430.815000px;}
.y179{bottom:433.155000px;}
.y31{bottom:433.875000px;}
.y71{bottom:438.195000px;}
.y89{bottom:440.355000px;}
.y144{bottom:440.535000px;}
.ycd{bottom:441.255000px;}
.y197{bottom:441.435000px;}
.y106{bottom:445.395000px;}
.y178{bottom:450.255000px;}
.y70{bottom:455.475000px;}
.ycc{bottom:455.835000px;}
.y88{bottom:457.455000px;}
.y143{bottom:457.815000px;}
.y196{bottom:458.715000px;}
.y105{bottom:461.595000px;}
.y177{bottom:467.535000px;}
.yc9{bottom:470.415000px;}
.y104{bottom:471.135000px;}
.y6f{bottom:472.575000px;}
.y87{bottom:474.735000px;}
.y142{bottom:475.095000px;}
.y195{bottom:475.995000px;}
.y176{bottom:484.815000px;}
.y103{bottom:485.535000px;}
.yc8{bottom:486.435000px;}
.y6e{bottom:489.855000px;}
.y86{bottom:492.015000px;}
.y141{bottom:492.375000px;}
.y194{bottom:493.275000px;}
.yc7{bottom:495.975000px;}
.y175{bottom:502.095000px;}
.y102{bottom:502.815000px;}
.y6d{bottom:507.135000px;}
.y85{bottom:509.295000px;}
.y140{bottom:509.655000px;}
.yc6{bottom:510.555000px;}
.y174{bottom:519.375000px;}
.y101{bottom:520.095000px;}
.y6c{bottom:524.415000px;}
.y84{bottom:526.575000px;}
.y13f{bottom:526.755000px;}
.y193{bottom:527.655000px;}
.ybd{bottom:527.835000px;}
.y173{bottom:536.655000px;}
.y100{bottom:537.375000px;}
.y6b{bottom:542.775000px;}
.y83{bottom:543.855000px;}
.y13e{bottom:544.035000px;}
.y192{bottom:544.935000px;}
.ybc{bottom:545.115000px;}
.y172{bottom:553.755000px;}
.yff{bottom:554.655000px;}
.yc5{bottom:555.375000px;}
.y6a{bottom:559.875000px;}
.y82{bottom:560.955000px;}
.y13d{bottom:561.315000px;}
.y191{bottom:562.215000px;}
.ybb{bottom:562.395000px;}
.y171{bottom:571.065000px;}
.yfe{bottom:571.785000px;}
.yc4{bottom:572.685000px;}
.y19{bottom:576.105000px;}
.y69{bottom:577.185000px;}
.y81{bottom:578.265000px;}
.y13c{bottom:578.625000px;}
.yba{bottom:579.525000px;}
.y170{bottom:588.345000px;}
.yfd{bottom:589.065000px;}
.yc3{bottom:589.965000px;}
.y68{bottom:595.545000px;}
.y13b{bottom:595.905000px;}
.yb9{bottom:596.625000px;}
.y190{bottom:596.805000px;}
.y16f{bottom:605.625000px;}
.yfc{bottom:606.345000px;}
.yc2{bottom:607.245000px;}
.y18{bottom:610.665000px;}
.y18c{bottom:611.565000px;}
.y67{bottom:612.825000px;}
.yb8{bottom:613.005000px;}
.y13a{bottom:613.185000px;}
.y16e{bottom:622.905000px;}
.yfb{bottom:623.625000px;}
.yc1{bottom:624.345000px;}
.yb7{bottom:629.385000px;}
.y66{bottom:630.105000px;}
.y139{bottom:630.285000px;}
.y17{bottom:630.465000px;}
.y16d{bottom:640.185000px;}
.yfa{bottom:640.905000px;}
.yc0{bottom:641.625000px;}
.yb6{bottom:645.765000px;}
.y65{bottom:647.385000px;}
.y138{bottom:647.565000px;}
.y16c{bottom:657.285000px;}
.yf9{bottom:658.185000px;}
.y16{bottom:658.905000px;}
.yb5{bottom:662.145000px;}
.y64{bottom:664.485000px;}
.y137{bottom:664.845000px;}
.y16b{bottom:674.565000px;}
.yf8{bottom:675.285000px;}
.ybf{bottom:676.185000px;}
.yb4{bottom:678.525000px;}
.y18b{bottom:681.225000px;}
.y15{bottom:681.405000px;}
.y63{bottom:681.765000px;}
.y136{bottom:682.125000px;}
.y16a{bottom:691.845000px;}
.yf7{bottom:692.565000px;}
.y14{bottom:693.465000px;}
.yb3{bottom:694.905000px;}
.y62{bottom:699.045000px;}
.y135{bottom:699.405000px;}
.y169{bottom:709.125000px;}
.yf6{bottom:709.845000px;}
.ybe{bottom:710.745000px;}
.yb2{bottom:711.285000px;}
.y13{bottom:715.965000px;}
.y61{bottom:716.325000px;}
.y134{bottom:716.685000px;}
.y168{bottom:726.405000px;}
.yf5{bottom:727.125000px;}
.yb1{bottom:727.845000px;}
.y12{bottom:728.385000px;}
.y60{bottom:733.605000px;}
.y133{bottom:733.785000px;}
.y167{bottom:743.685000px;}
.yb0{bottom:744.405000px;}
.y11{bottom:749.625000px;}
.y5f{bottom:750.885000px;}
.y132{bottom:751.065000px;}
.yab{bottom:756.465000px;}
.y166{bottom:760.785000px;}
.yf4{bottom:761.685000px;}
.y131{bottom:767.625000px;}
.y5e{bottom:767.985000px;}
.yaf{bottom:771.045000px;}
.y165{bottom:778.065000px;}
.yf3{bottom:778.785000px;}
.y12d{bottom:779.685000px;}
.y10{bottom:780.585000px;}
.y5d{bottom:785.265000px;}
.yae{bottom:785.625000px;}
.y130{bottom:794.265000px;}
.y164{bottom:795.345000px;}
.yf2{bottom:796.065000px;}
.yad{bottom:800.205000px;}
.y5c{bottom:802.545000px;}
.y12f{bottom:808.665000px;}
.yf{bottom:811.725000px;}
.y163{bottom:812.625000px;}
.yf1{bottom:813.345000px;}
.yac{bottom:814.605000px;}
.y5b{bottom:819.870000px;}
.y12e{bottom:823.290000px;}
.ya6{bottom:829.230000px;}
.y162{bottom:829.950000px;}
.yf0{bottom:830.670000px;}
.y5a{bottom:837.150000px;}
.y128{bottom:837.870000px;}
.ye{bottom:842.730000px;}
.yaa{bottom:843.810000px;}
.y161{bottom:847.050000px;}
.yef{bottom:847.950000px;}
.y12c{bottom:852.450000px;}
.y59{bottom:854.250000px;}
.ya9{bottom:858.390000px;}
.y160{bottom:864.330000px;}
.yee{bottom:865.050000px;}
.y12b{bottom:867.030000px;}
.y58{bottom:871.530000px;}
.yd{bottom:871.710000px;}
.ya8{bottom:872.970000px;}
.y12a{bottom:881.610000px;}
.yed{bottom:882.330000px;}
.yb{bottom:887.010000px;}
.ya2{bottom:887.550000px;}
.y57{bottom:888.810000px;}
.y129{bottom:896.010000px;}
.y15f{bottom:898.890000px;}
.yec{bottom:899.610000px;}
.ya5{bottom:901.950000px;}
.y56{bottom:906.090000px;}
.y123{bottom:910.590000px;}
.y15e{bottom:916.170000px;}
.ya4{bottom:916.530000px;}
.yeb{bottom:916.890000px;}
.y55{bottom:923.370000px;}
.y127{bottom:925.170000px;}
.y9c{bottom:931.110000px;}
.y15d{bottom:933.450000px;}
.yea{bottom:934.170000px;}
.y126{bottom:939.750000px;}
.y54{bottom:940.650000px;}
.ya1{bottom:945.690000px;}
.y15c{bottom:950.550000px;}
.ye9{bottom:951.450000px;}
.y125{bottom:954.330000px;}
.y53{bottom:957.750000px;}
.ya0{bottom:960.270000px;}
.y15b{bottom:967.830000px;}
.ye8{bottom:968.550000px;}
.y124{bottom:968.910000px;}
.y9f{bottom:974.670000px;}
.y52{bottom:975.030000px;}
.y15a{bottom:982.590000px;}
.y120{bottom:983.310000px;}
.ye7{bottom:985.110000px;}
.y9e{bottom:989.250000px;}
.y51{bottom:992.310000px;}
.ye3{bottom:997.170000px;}
.y122{bottom:997.890000px;}
.y9b{bottom:1003.830000px;}
.y50{bottom:1009.590000px;}
.ye6{bottom:1011.750000px;}
.y121{bottom:1012.470000px;}
.y9a{bottom:1020.030000px;}
.ye5{bottom:1026.330000px;}
.y4f{bottom:1026.870000px;}
.y11f{bottom:1027.050000px;}
.y99{bottom:1029.570000px;}
.y5{bottom:1044.150000px;}
.y4{bottom:1061.250000px;}
.y3{bottom:1078.560000px;}
.y2{bottom:1096.560000px;}
.y1{bottom:1117.260000px;}
.h21{height:13.680000px;}
.h28{height:13.680150px;}
.h27{height:13.716000px;}
.h1f{height:13.860000px;}
.h2b{height:13.860150px;}
.h25{height:13.896000px;}
.h10{height:17.280000px;}
.h16{height:19.980000px;}
.h1e{height:21.114844px;}
.h29{height:21.336328px;}
.hd{height:27.147656px;}
.h2e{height:27.540000px;}
.h4{height:27.576000px;}
.h6{height:33.683203px;}
.h1d{height:34.036523px;}
.h18{height:37.705078px;}
.h19{height:38.100586px;}
.h2f{height:39.114844px;}
.h7{height:39.336328px;}
.h14{height:39.999023px;}
.h5{height:41.726953px;}
.hf{height:42.164648px;}
.h22{height:42.840000px;}
.h2c{height:43.020000px;}
.h1c{height:43.506914px;}
.h12{height:44.236406px;}
.h15{height:44.265586px;}
.h9{height:46.251562px;}
.h1b{height:48.027656px;}
.h2{height:48.496641px;}
.h3{height:50.800781px;}
.hc{height:53.224453px;}
.ha{height:53.755312px;}
.h23{height:57.420000px;}
.h2d{height:57.456000px;}
.h1{height:58.429688px;}
.h30{height:68.940000px;}
.h32{height:69.120000px;}
.h20{height:72.000000px;}
.h24{height:72.036000px;}
.he{height:75.410156px;}
.hb{height:76.201172px;}
.h17{height:93.240000px;}
.h31{height:120.816000px;}
.h1a{height:125.136000px;}
.h13{height:141.516000px;}
.h2a{height:144.756000px;}
.h8{height:153.900000px;}
.h26{height:202.890000px;}
.h11{height:382.215000px;}
.h0{height:1188.000000px;}
.w19{width:39.960000px;}
.w21{width:41.760000px;}
.w2{width:45.036000px;}
.w23{width:46.980000px;}
.wc{width:47.196000px;}
.w1a{width:51.840000px;}
.w20{width:52.020000px;}
.w22{width:52.236000px;}
.w1d{width:52.380000px;}
.w1e{width:52.416000px;}
.w1f{width:52.740000px;}
.w11{width:53.496000px;}
.w7{width:61.560000px;}
.w1c{width:63.000000px;}
.w1b{width:65.376000px;}
.wf{width:78.696000px;}
.w14{width:89.136000px;}
.wa{width:102.420000px;}
.w18{width:110.376000px;}
.w10{width:114.480000px;}
.w8{width:126.936000px;}
.w15{width:129.780000px;}
.wb{width:149.076000px;}
.w9{width:151.410000px;}
.w6{width:211.710000px;}
.w12{width:260.850000px;}
.w16{width:261.030000px;}
.w13{width:261.210000px;}
.wd{width:273.090000px;}
.we{width:278.130000px;}
.w24{width:329.250000px;}
.w5{width:596.805000px;}
.w3{width:783.510000px;}
.w17{width:796.110000px;}
.w25{width:800.790000px;}
.w4{width:821.850000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x60{left:1.800000px;}
.x65{left:3.240000px;}
.x63{left:4.680000px;}
.x16{left:6.480000px;}
.x18{left:7.560000px;}
.x5{left:8.640000px;}
.x4b{left:10.440000px;}
.x3a{left:11.925000px;}
.x6c{left:13.320000px;}
.x21{left:14.400000px;}
.x6a{left:16.380000px;}
.x3c{left:17.460000px;}
.x6d{left:18.900000px;}
.x15{left:19.980000px;}
.x6b{left:21.420000px;}
.x1a{left:23.265000px;}
.x4f{left:25.020000px;}
.x28{left:27.720000px;}
.x17{left:29.745000px;}
.x19{left:31.725000px;}
.x3f{left:33.345000px;}
.x25{left:35.280000px;}
.x40{left:36.405000px;}
.x23{left:38.700000px;}
.x2c{left:42.120000px;}
.x8{left:45.540000px;}
.x3e{left:46.620000px;}
.x2e{left:48.240000px;}
.x30{left:49.680000px;}
.x32{left:52.020000px;}
.x4{left:53.999986px;}
.x2d{left:57.060000px;}
.x31{left:58.140000px;}
.x33{left:59.579986px;}
.x3{left:60.659986px;}
.x2b{left:61.740000px;}
.x29{left:63.000000px;}
.x1b{left:65.519986px;}
.x2a{left:67.005000px;}
.x58{left:68.940000px;}
.x2f{left:70.065000px;}
.x46{left:73.074000px;}
.x50{left:75.054000px;}
.x57{left:78.480000px;}
.x70{left:80.100000px;}
.x56{left:81.354000px;}
.x53{left:82.794000px;}
.x1c{left:86.759986px;}
.xb{left:89.279986px;}
.x59{left:91.080000px;}
.x4a{left:92.520000px;}
.x48{left:96.474000px;}
.x38{left:98.490000px;}
.x51{left:99.540000px;}
.x6{left:100.836000px;}
.x54{left:102.060000px;}
.x52{left:104.070000px;}
.x49{left:105.150000px;}
.x42{left:106.230000px;}
.x7{left:108.035986px;}
.x35{left:109.656000px;}
.x36{left:111.774000px;}
.x55{left:112.890000px;}
.x3d{left:114.330000px;}
.x44{left:115.410000px;}
.x47{left:117.030000px;}
.x45{left:120.990000px;}
.x43{left:122.970000px;}
.x41{left:125.670000px;}
.xc{left:143.855986px;}
.x1{left:150.509986px;}
.x20{left:161.850000px;}
.xf{left:167.429986px;}
.x5c{left:172.290000px;}
.x5b{left:174.810000px;}
.x11{left:179.129986px;}
.x10{left:196.409986px;}
.x5d{left:212.970000px;}
.x2{left:220.709986px;}
.x22{left:224.130000px;}
.x12{left:246.089986px;}
.x34{left:250.769986px;}
.x5e{left:265.530000px;}
.x1f{left:269.669986px;}
.x71{left:295.635000px;}
.xe{left:323.354986px;}
.x5f{left:331.815000px;}
.x5a{left:341.354986px;}
.x24{left:351.795000px;}
.x4c{left:375.735000px;}
.x37{left:383.475000px;}
.x61{left:395.535000px;}
.x62{left:448.635000px;}
.xa{left:459.074986px;}
.x1e{left:461.954986px;}
.xd{left:464.294986px;}
.x13{left:465.374986px;}
.x1d{left:478.334986px;}
.x64{left:501.945000px;}
.x26{left:504.105000px;}
.x6e{left:505.364986px;}
.x6f{left:526.604986px;}
.x66{left:555.405000px;}
.x27{left:607.245000px;}
.x4d{left:637.845000px;}
.x14{left:650.805000px;}
.x39{left:662.325000px;}
.x67{left:703.950000px;}
.x4e{left:727.890000px;}
.x3b{left:741.750000px;}
.x68{left:746.430000px;}
.x69{left:810.150000px;}
.x9{left:812.490000px;}
@media print{
.v3{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.v4{vertical-align:18.560000pt;}
.v2{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.640000pt;}
.ls9{letter-spacing:-0.624000pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.094933pt;}
.ls7{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.230933pt;}
.ls10{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.320000pt;}
.ls11{letter-spacing:14.672640pt;}
.ls4{letter-spacing:16.783787pt;}
.ls3{letter-spacing:33.392640pt;}
.ls1{letter-spacing:37.376000pt;}
.lse{letter-spacing:40.912640pt;}
.lsb{letter-spacing:56.912640pt;}
.ls12{letter-spacing:57.040640pt;}
.ws4{word-spacing:-53.120000pt;}
.ws5{word-spacing:-48.000000pt;}
.ws0{word-spacing:-13.600000pt;}
.ws13{word-spacing:-13.511040pt;}
.ws12{word-spacing:-13.510933pt;}
.ws3{word-spacing:-13.280000pt;}
.ws14{word-spacing:-12.960000pt;}
.ws8{word-spacing:-12.192000pt;}
.ws7{word-spacing:-12.000000pt;}
.ws6{word-spacing:-11.680000pt;}
.ws9{word-spacing:-11.376000pt;}
.wse{word-spacing:-11.040000pt;}
.wsf{word-spacing:-10.880000pt;}
.ws1{word-spacing:-10.720000pt;}
.wsd{word-spacing:-10.400000pt;}
.ws2{word-spacing:-9.280000pt;}
.wsb{word-spacing:-8.651520pt;}
.wsc{word-spacing:-8.640000pt;}
.ws11{word-spacing:-6.720000pt;}
.ws10{word-spacing:-6.080000pt;}
.wsa{word-spacing:0.000000pt;}
._4{margin-left:-1.169493pt;}
._1{width:1.009280pt;}
._5{width:2.724907pt;}
._a{width:4.023893pt;}
._f{width:4.927573pt;}
._e{width:5.896320pt;}
._9{width:7.330560pt;}
._8{width:8.392960pt;}
._11{width:9.401387pt;}
._c{width:10.624000pt;}
._7{width:11.792640pt;}
._18{width:14.673920pt;}
._12{width:16.368000pt;}
._d{width:17.901440pt;}
._19{width:19.441920pt;}
._15{width:20.890027pt;}
._14{width:21.826560pt;}
._b{width:23.160320pt;}
._10{width:24.435200pt;}
._26{width:25.391360pt;}
._17{width:26.406187pt;}
._1f{width:27.303680pt;}
._16{width:28.206720pt;}
._20{width:29.136427pt;}
._23{width:30.545280pt;}
._21{width:31.551787pt;}
._1b{width:32.509440pt;}
._1d{width:33.518720pt;}
._1e{width:34.421760pt;}
._2b{width:35.989120pt;}
._13{width:37.536000pt;}
._1a{width:41.539840pt;}
._1c{width:42.761600pt;}
._24{width:45.842560pt;}
._34{width:51.421013pt;}
._33{width:52.535680pt;}
._25{width:62.362880pt;}
._2c{width:65.337600pt;}
._2d{width:66.506240pt;}
._30{width:70.808960pt;}
._31{width:72.986880pt;}
._2a{width:76.386560pt;}
._3{width:116.838187pt;}
._22{width:178.488107pt;}
._2f{width:187.779200pt;}
._27{width:270.948480pt;}
._28{width:272.186880pt;}
._2{width:304.872107pt;}
._29{width:367.643520pt;}
._2e{width:420.232320pt;}
._35{width:429.050240pt;}
._6{width:899.478613pt;}
._32{width:937.302400pt;}
._0{width:2539.573333pt;}
.fs4{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y157{bottom:2.234667pt;}
.y9{bottom:2.240000pt;}
.y4d{bottom:2.272000pt;}
.y42{bottom:2.720000pt;}
.y1a{bottom:2.880000pt;}
.y3b{bottom:5.440000pt;}
.y7{bottom:7.392000pt;}
.y4b{bottom:7.552000pt;}
.y44{bottom:8.320000pt;}
.yc{bottom:12.480000pt;}
.y14f{bottom:14.400000pt;}
.y8{bottom:14.432000pt;}
.y1a4{bottom:14.560000pt;}
.y4c{bottom:14.592000pt;}
.ya3{bottom:15.040000pt;}
.ye4{bottom:15.200000pt;}
.y41{bottom:16.480000pt;}
.y39{bottom:17.120000pt;}
.y30{bottom:18.080000pt;}
.y1a0{bottom:18.240000pt;}
.ya7{bottom:21.600000pt;}
.y18f{bottom:26.720000pt;}
.y1a3{bottom:26.880000pt;}
.ydf{bottom:27.994667pt;}
.y9d{bottom:28.160000pt;}
.y40{bottom:30.240000pt;}
.ya{bottom:31.520000pt;}
.y38{bottom:31.680000pt;}
.y2f{bottom:33.440000pt;}
.y19f{bottom:33.640000pt;}
.y4e{bottom:36.800000pt;}
.y18e{bottom:39.040000pt;}
.y3f{bottom:44.000000pt;}
.y37{bottom:45.600000pt;}
.y2e{bottom:48.800000pt;}
.y19e{bottom:48.840000pt;}
.y18d{bottom:51.200000pt;}
.y1a2{bottom:51.360000pt;}
.y6{bottom:51.680000pt;}
.y4a{bottom:56.960000pt;}
.y3e{bottom:57.920000pt;}
.y36{bottom:59.360000pt;}
.y10c{bottom:60.480000pt;}
.y2d{bottom:64.160000pt;}
.y19d{bottom:64.200000pt;}
.y3d{bottom:71.680000pt;}
.y35{bottom:73.120000pt;}
.y2c{bottom:79.520000pt;}
.y19c{bottom:79.560000pt;}
.ycb{bottom:86.280000pt;}
.y34{bottom:86.880000pt;}
.y2b{bottom:94.880000pt;}
.y19b{bottom:94.920000pt;}
.y11b{bottom:98.432000pt;}
.y49{bottom:99.392000pt;}
.y43{bottom:100.000000pt;}
.y33{bottom:100.800000pt;}
.y159{bottom:106.912000pt;}
.yde{bottom:107.712000pt;}
.y18a{bottom:108.992000pt;}
.y2a{bottom:110.120000pt;}
.y11e{bottom:111.392000pt;}
.y48{bottom:114.112000pt;}
.y32{bottom:114.560000pt;}
.y158{bottom:119.872000pt;}
.ye2{bottom:120.672000pt;}
.y11d{bottom:124.352000pt;}
.y29{bottom:125.480000pt;}
.y47{bottom:127.072000pt;}
.y156{bottom:132.832000pt;}
.ye1{bottom:133.466667pt;}
.y11c{bottom:137.146667pt;}
.y189{bottom:139.546667pt;}
.y28{bottom:140.840000pt;}
.y46{bottom:142.746667pt;}
.y98{bottom:144.026667pt;}
.y155{bottom:145.786667pt;}
.ye0{bottom:146.426667pt;}
.y116{bottom:150.106667pt;}
.y188{bottom:154.906667pt;}
.y27{bottom:156.200000pt;}
.y154{bottom:158.746667pt;}
.y80{bottom:159.386667pt;}
.y45{bottom:159.706667pt;}
.y11a{bottom:163.066667pt;}
.y187{bottom:170.266667pt;}
.y153{bottom:171.546667pt;}
.y26{bottom:171.560000pt;}
.y1b{bottom:171.706667pt;}
.yd9{bottom:172.346667pt;}
.y7f{bottom:174.746667pt;}
.y119{bottom:176.026667pt;}
.y97{bottom:176.666667pt;}
.y1a5{bottom:179.546667pt;}
.y152{bottom:184.506667pt;}
.ydd{bottom:185.306667pt;}
.y186{bottom:185.626667pt;}
.y25{bottom:186.760000pt;}
.y118{bottom:188.986667pt;}
.y1a1{bottom:189.466667pt;}
.y7e{bottom:190.106667pt;}
.y96{bottom:192.026667pt;}
.y151{bottom:197.466667pt;}
.ydc{bottom:198.266667pt;}
.y185{bottom:200.986667pt;}
.y117{bottom:201.946667pt;}
.y24{bottom:202.120000pt;}
.y7d{bottom:205.466667pt;}
.y95{bottom:207.386667pt;}
.y150{bottom:210.426667pt;}
.ydb{bottom:211.066667pt;}
.y10b{bottom:214.746667pt;}
.y184{bottom:216.346667pt;}
.y23{bottom:217.480000pt;}
.y7c{bottom:220.826667pt;}
.y94{bottom:222.746667pt;}
.y14e{bottom:223.386667pt;}
.yda{bottom:224.026667pt;}
.y115{bottom:227.706667pt;}
.y183{bottom:231.546667pt;}
.y22{bottom:232.840000pt;}
.y7b{bottom:236.026667pt;}
.yca{bottom:236.986667pt;}
.y93{bottom:237.946667pt;}
.y114{bottom:240.666667pt;}
.y182{bottom:246.906667pt;}
.y21{bottom:248.200000pt;}
.y14d{bottom:248.506667pt;}
.yd8{bottom:249.946667pt;}
.y7a{bottom:251.386667pt;}
.y19a{bottom:251.546667pt;}
.y92{bottom:253.306667pt;}
.y113{bottom:253.626667pt;}
.y181{bottom:262.266667pt;}
.yd7{bottom:262.906667pt;}
.y20{bottom:263.560000pt;}
.y112{bottom:266.586667pt;}
.y79{bottom:266.746667pt;}
.y91{bottom:268.666667pt;}
.y14c{bottom:271.386667pt;}
.yd6{bottom:275.866667pt;}
.y180{bottom:277.626667pt;}
.y1f{bottom:278.760000pt;}
.y111{bottom:279.386667pt;}
.y78{bottom:282.146667pt;}
.y3c{bottom:283.586667pt;}
.y90{bottom:284.066667pt;}
.y14b{bottom:284.386667pt;}
.yd5{bottom:288.706667pt;}
.y110{bottom:292.386667pt;}
.y17f{bottom:293.026667pt;}
.y1e{bottom:294.120000pt;}
.y77{bottom:297.506667pt;}
.y8f{bottom:299.426667pt;}
.y14a{bottom:299.586667pt;}
.yd4{bottom:301.666667pt;}
.y10f{bottom:305.346667pt;}
.y17e{bottom:308.386667pt;}
.y1d{bottom:309.480000pt;}
.y76{bottom:312.866667pt;}
.yd3{bottom:314.626667pt;}
.y8e{bottom:314.786667pt;}
.y149{bottom:314.946667pt;}
.y10e{bottom:318.306667pt;}
.y17d{bottom:323.586667pt;}
.y1c{bottom:325.320000pt;}
.yd2{bottom:327.586667pt;}
.y75{bottom:328.066667pt;}
.y8d{bottom:329.986667pt;}
.y148{bottom:330.306667pt;}
.y10d{bottom:331.266667pt;}
.y17c{bottom:338.946667pt;}
.yd1{bottom:340.546667pt;}
.y74{bottom:343.426667pt;}
.y107{bottom:344.226667pt;}
.y8c{bottom:345.346667pt;}
.y147{bottom:345.666667pt;}
.yd0{bottom:353.506667pt;}
.y17b{bottom:354.306667pt;}
.y10a{bottom:357.026667pt;}
.y73{bottom:358.786667pt;}
.y8b{bottom:360.706667pt;}
.y146{bottom:361.026667pt;}
.y199{bottom:361.826667pt;}
.ycf{bottom:366.306667pt;}
.y3a{bottom:367.106667pt;}
.y17a{bottom:369.666667pt;}
.y109{bottom:369.986667pt;}
.y72{bottom:374.146667pt;}
.y8a{bottom:376.066667pt;}
.y145{bottom:376.226667pt;}
.y198{bottom:377.186667pt;}
.yce{bottom:379.266667pt;}
.y108{bottom:382.946667pt;}
.y179{bottom:385.026667pt;}
.y31{bottom:385.666667pt;}
.y71{bottom:389.506667pt;}
.y89{bottom:391.426667pt;}
.y144{bottom:391.586667pt;}
.ycd{bottom:392.226667pt;}
.y197{bottom:392.386667pt;}
.y106{bottom:395.906667pt;}
.y178{bottom:400.226667pt;}
.y70{bottom:404.866667pt;}
.ycc{bottom:405.186667pt;}
.y88{bottom:406.626667pt;}
.y143{bottom:406.946667pt;}
.y196{bottom:407.746667pt;}
.y105{bottom:410.306667pt;}
.y177{bottom:415.586667pt;}
.yc9{bottom:418.146667pt;}
.y104{bottom:418.786667pt;}
.y6f{bottom:420.066667pt;}
.y87{bottom:421.986667pt;}
.y142{bottom:422.306667pt;}
.y195{bottom:423.106667pt;}
.y176{bottom:430.946667pt;}
.y103{bottom:431.586667pt;}
.yc8{bottom:432.386667pt;}
.y6e{bottom:435.426667pt;}
.y86{bottom:437.346667pt;}
.y141{bottom:437.666667pt;}
.y194{bottom:438.466667pt;}
.yc7{bottom:440.866667pt;}
.y175{bottom:446.306667pt;}
.y102{bottom:446.946667pt;}
.y6d{bottom:450.786667pt;}
.y85{bottom:452.706667pt;}
.y140{bottom:453.026667pt;}
.yc6{bottom:453.826667pt;}
.y174{bottom:461.666667pt;}
.y101{bottom:462.306667pt;}
.y6c{bottom:466.146667pt;}
.y84{bottom:468.066667pt;}
.y13f{bottom:468.226667pt;}
.y193{bottom:469.026667pt;}
.ybd{bottom:469.186667pt;}
.y173{bottom:477.026667pt;}
.y100{bottom:477.666667pt;}
.y6b{bottom:482.466667pt;}
.y83{bottom:483.426667pt;}
.y13e{bottom:483.586667pt;}
.y192{bottom:484.386667pt;}
.ybc{bottom:484.546667pt;}
.y172{bottom:492.226667pt;}
.yff{bottom:493.026667pt;}
.yc5{bottom:493.666667pt;}
.y6a{bottom:497.666667pt;}
.y82{bottom:498.626667pt;}
.y13d{bottom:498.946667pt;}
.y191{bottom:499.746667pt;}
.ybb{bottom:499.906667pt;}
.y171{bottom:507.613333pt;}
.yfe{bottom:508.253333pt;}
.yc4{bottom:509.053333pt;}
.y19{bottom:512.093333pt;}
.y69{bottom:513.053333pt;}
.y81{bottom:514.013333pt;}
.y13c{bottom:514.333333pt;}
.yba{bottom:515.133333pt;}
.y170{bottom:522.973333pt;}
.yfd{bottom:523.613333pt;}
.yc3{bottom:524.413333pt;}
.y68{bottom:529.373333pt;}
.y13b{bottom:529.693333pt;}
.yb9{bottom:530.333333pt;}
.y190{bottom:530.493333pt;}
.y16f{bottom:538.333333pt;}
.yfc{bottom:538.973333pt;}
.yc2{bottom:539.773333pt;}
.y18{bottom:542.813333pt;}
.y18c{bottom:543.613333pt;}
.y67{bottom:544.733333pt;}
.yb8{bottom:544.893333pt;}
.y13a{bottom:545.053333pt;}
.y16e{bottom:553.693333pt;}
.yfb{bottom:554.333333pt;}
.yc1{bottom:554.973333pt;}
.yb7{bottom:559.453333pt;}
.y66{bottom:560.093333pt;}
.y139{bottom:560.253333pt;}
.y17{bottom:560.413333pt;}
.y16d{bottom:569.053333pt;}
.yfa{bottom:569.693333pt;}
.yc0{bottom:570.333333pt;}
.yb6{bottom:574.013333pt;}
.y65{bottom:575.453333pt;}
.y138{bottom:575.613333pt;}
.y16c{bottom:584.253333pt;}
.yf9{bottom:585.053333pt;}
.y16{bottom:585.693333pt;}
.yb5{bottom:588.573333pt;}
.y64{bottom:590.653333pt;}
.y137{bottom:590.973333pt;}
.y16b{bottom:599.613333pt;}
.yf8{bottom:600.253333pt;}
.ybf{bottom:601.053333pt;}
.yb4{bottom:603.133333pt;}
.y18b{bottom:605.533333pt;}
.y15{bottom:605.693333pt;}
.y63{bottom:606.013333pt;}
.y136{bottom:606.333333pt;}
.y16a{bottom:614.973333pt;}
.yf7{bottom:615.613333pt;}
.y14{bottom:616.413333pt;}
.yb3{bottom:617.693333pt;}
.y62{bottom:621.373333pt;}
.y135{bottom:621.693333pt;}
.y169{bottom:630.333333pt;}
.yf6{bottom:630.973333pt;}
.ybe{bottom:631.773333pt;}
.yb2{bottom:632.253333pt;}
.y13{bottom:636.413333pt;}
.y61{bottom:636.733333pt;}
.y134{bottom:637.053333pt;}
.y168{bottom:645.693333pt;}
.yf5{bottom:646.333333pt;}
.yb1{bottom:646.973333pt;}
.y12{bottom:647.453333pt;}
.y60{bottom:652.093333pt;}
.y133{bottom:652.253333pt;}
.y167{bottom:661.053333pt;}
.yb0{bottom:661.693333pt;}
.y11{bottom:666.333333pt;}
.y5f{bottom:667.453333pt;}
.y132{bottom:667.613333pt;}
.yab{bottom:672.413333pt;}
.y166{bottom:676.253333pt;}
.yf4{bottom:677.053333pt;}
.y131{bottom:682.333333pt;}
.y5e{bottom:682.653333pt;}
.yaf{bottom:685.373333pt;}
.y165{bottom:691.613333pt;}
.yf3{bottom:692.253333pt;}
.y12d{bottom:693.053333pt;}
.y10{bottom:693.853333pt;}
.y5d{bottom:698.013333pt;}
.yae{bottom:698.333333pt;}
.y130{bottom:706.013333pt;}
.y164{bottom:706.973333pt;}
.yf2{bottom:707.613333pt;}
.yad{bottom:711.293333pt;}
.y5c{bottom:713.373333pt;}
.y12f{bottom:718.813333pt;}
.yf{bottom:721.533333pt;}
.y163{bottom:722.333333pt;}
.yf1{bottom:722.973333pt;}
.yac{bottom:724.093333pt;}
.y5b{bottom:728.773333pt;}
.y12e{bottom:731.813333pt;}
.ya6{bottom:737.093333pt;}
.y162{bottom:737.733333pt;}
.yf0{bottom:738.373333pt;}
.y5a{bottom:744.133333pt;}
.y128{bottom:744.773333pt;}
.ye{bottom:749.093333pt;}
.yaa{bottom:750.053333pt;}
.y161{bottom:752.933333pt;}
.yef{bottom:753.733333pt;}
.y12c{bottom:757.733333pt;}
.y59{bottom:759.333333pt;}
.ya9{bottom:763.013333pt;}
.y160{bottom:768.293333pt;}
.yee{bottom:768.933333pt;}
.y12b{bottom:770.693333pt;}
.y58{bottom:774.693333pt;}
.yd{bottom:774.853333pt;}
.ya8{bottom:775.973333pt;}
.y12a{bottom:783.653333pt;}
.yed{bottom:784.293333pt;}
.yb{bottom:788.453333pt;}
.ya2{bottom:788.933333pt;}
.y57{bottom:790.053333pt;}
.y129{bottom:796.453333pt;}
.y15f{bottom:799.013333pt;}
.yec{bottom:799.653333pt;}
.ya5{bottom:801.733333pt;}
.y56{bottom:805.413333pt;}
.y123{bottom:809.413333pt;}
.y15e{bottom:814.373333pt;}
.ya4{bottom:814.693333pt;}
.yeb{bottom:815.013333pt;}
.y55{bottom:820.773333pt;}
.y127{bottom:822.373333pt;}
.y9c{bottom:827.653333pt;}
.y15d{bottom:829.733333pt;}
.yea{bottom:830.373333pt;}
.y126{bottom:835.333333pt;}
.y54{bottom:836.133333pt;}
.ya1{bottom:840.613333pt;}
.y15c{bottom:844.933333pt;}
.ye9{bottom:845.733333pt;}
.y125{bottom:848.293333pt;}
.y53{bottom:851.333333pt;}
.ya0{bottom:853.573333pt;}
.y15b{bottom:860.293333pt;}
.ye8{bottom:860.933333pt;}
.y124{bottom:861.253333pt;}
.y9f{bottom:866.373333pt;}
.y52{bottom:866.693333pt;}
.y15a{bottom:873.413333pt;}
.y120{bottom:874.053333pt;}
.ye7{bottom:875.653333pt;}
.y9e{bottom:879.333333pt;}
.y51{bottom:882.053333pt;}
.ye3{bottom:886.373333pt;}
.y122{bottom:887.013333pt;}
.y9b{bottom:892.293333pt;}
.y50{bottom:897.413333pt;}
.ye6{bottom:899.333333pt;}
.y121{bottom:899.973333pt;}
.y9a{bottom:906.693333pt;}
.ye5{bottom:912.293333pt;}
.y4f{bottom:912.773333pt;}
.y11f{bottom:912.933333pt;}
.y99{bottom:915.173333pt;}
.y5{bottom:928.133333pt;}
.y4{bottom:943.333333pt;}
.y3{bottom:958.720000pt;}
.y2{bottom:974.720000pt;}
.y1{bottom:993.120000pt;}
.h21{height:12.160000pt;}
.h28{height:12.160133pt;}
.h27{height:12.192000pt;}
.h1f{height:12.320000pt;}
.h2b{height:12.320133pt;}
.h25{height:12.352000pt;}
.h10{height:15.360000pt;}
.h16{height:17.760000pt;}
.h1e{height:18.768750pt;}
.h29{height:18.965625pt;}
.hd{height:24.131250pt;}
.h2e{height:24.480000pt;}
.h4{height:24.512000pt;}
.h6{height:29.940625pt;}
.h1d{height:30.254687pt;}
.h18{height:33.515625pt;}
.h19{height:33.867188pt;}
.h2f{height:34.768750pt;}
.h7{height:34.965625pt;}
.h14{height:35.554688pt;}
.h5{height:37.090625pt;}
.hf{height:37.479688pt;}
.h22{height:38.080000pt;}
.h2c{height:38.240000pt;}
.h1c{height:38.672812pt;}
.h12{height:39.321250pt;}
.h15{height:39.347188pt;}
.h9{height:41.112500pt;}
.h1b{height:42.691250pt;}
.h2{height:43.108125pt;}
.h3{height:45.156250pt;}
.hc{height:47.310625pt;}
.ha{height:47.782500pt;}
.h23{height:51.040000pt;}
.h2d{height:51.072000pt;}
.h1{height:51.937500pt;}
.h30{height:61.280000pt;}
.h32{height:61.440000pt;}
.h20{height:64.000000pt;}
.h24{height:64.032000pt;}
.he{height:67.031250pt;}
.hb{height:67.734375pt;}
.h17{height:82.880000pt;}
.h31{height:107.392000pt;}
.h1a{height:111.232000pt;}
.h13{height:125.792000pt;}
.h2a{height:128.672000pt;}
.h8{height:136.800000pt;}
.h26{height:180.346667pt;}
.h11{height:339.746667pt;}
.h0{height:1056.000000pt;}
.w19{width:35.520000pt;}
.w21{width:37.120000pt;}
.w2{width:40.032000pt;}
.w23{width:41.760000pt;}
.wc{width:41.952000pt;}
.w1a{width:46.080000pt;}
.w20{width:46.240000pt;}
.w22{width:46.432000pt;}
.w1d{width:46.560000pt;}
.w1e{width:46.592000pt;}
.w1f{width:46.880000pt;}
.w11{width:47.552000pt;}
.w7{width:54.720000pt;}
.w1c{width:56.000000pt;}
.w1b{width:58.112000pt;}
.wf{width:69.952000pt;}
.w14{width:79.232000pt;}
.wa{width:91.040000pt;}
.w18{width:98.112000pt;}
.w10{width:101.760000pt;}
.w8{width:112.832000pt;}
.w15{width:115.360000pt;}
.wb{width:132.512000pt;}
.w9{width:134.586667pt;}
.w6{width:188.186667pt;}
.w12{width:231.866667pt;}
.w16{width:232.026667pt;}
.w13{width:232.186667pt;}
.wd{width:242.746667pt;}
.we{width:247.226667pt;}
.w24{width:292.666667pt;}
.w5{width:530.493333pt;}
.w3{width:696.453333pt;}
.w17{width:707.653333pt;}
.w25{width:711.813333pt;}
.w4{width:730.533333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x60{left:1.600000pt;}
.x65{left:2.880000pt;}
.x63{left:4.160000pt;}
.x16{left:5.760000pt;}
.x18{left:6.720000pt;}
.x5{left:7.680000pt;}
.x4b{left:9.280000pt;}
.x3a{left:10.600000pt;}
.x6c{left:11.840000pt;}
.x21{left:12.800000pt;}
.x6a{left:14.560000pt;}
.x3c{left:15.520000pt;}
.x6d{left:16.800000pt;}
.x15{left:17.760000pt;}
.x6b{left:19.040000pt;}
.x1a{left:20.680000pt;}
.x4f{left:22.240000pt;}
.x28{left:24.640000pt;}
.x17{left:26.440000pt;}
.x19{left:28.200000pt;}
.x3f{left:29.640000pt;}
.x25{left:31.360000pt;}
.x40{left:32.360000pt;}
.x23{left:34.400000pt;}
.x2c{left:37.440000pt;}
.x8{left:40.480000pt;}
.x3e{left:41.440000pt;}
.x2e{left:42.880000pt;}
.x30{left:44.160000pt;}
.x32{left:46.240000pt;}
.x4{left:47.999988pt;}
.x2d{left:50.720000pt;}
.x31{left:51.680000pt;}
.x33{left:52.959988pt;}
.x3{left:53.919988pt;}
.x2b{left:54.880000pt;}
.x29{left:56.000000pt;}
.x1b{left:58.239988pt;}
.x2a{left:59.560000pt;}
.x58{left:61.280000pt;}
.x2f{left:62.280000pt;}
.x46{left:64.954667pt;}
.x50{left:66.714667pt;}
.x57{left:69.760000pt;}
.x70{left:71.200000pt;}
.x56{left:72.314667pt;}
.x53{left:73.594667pt;}
.x1c{left:77.119988pt;}
.xb{left:79.359988pt;}
.x59{left:80.960000pt;}
.x4a{left:82.240000pt;}
.x48{left:85.754667pt;}
.x38{left:87.546667pt;}
.x51{left:88.480000pt;}
.x6{left:89.632000pt;}
.x54{left:90.720000pt;}
.x52{left:92.506667pt;}
.x49{left:93.466667pt;}
.x42{left:94.426667pt;}
.x7{left:96.031988pt;}
.x35{left:97.472000pt;}
.x36{left:99.354667pt;}
.x55{left:100.346667pt;}
.x3d{left:101.626667pt;}
.x44{left:102.586667pt;}
.x47{left:104.026667pt;}
.x45{left:107.546667pt;}
.x43{left:109.306667pt;}
.x41{left:111.706667pt;}
.xc{left:127.871988pt;}
.x1{left:133.786655pt;}
.x20{left:143.866667pt;}
.xf{left:148.826655pt;}
.x5c{left:153.146667pt;}
.x5b{left:155.386667pt;}
.x11{left:159.226655pt;}
.x10{left:174.586655pt;}
.x5d{left:189.306667pt;}
.x2{left:196.186655pt;}
.x22{left:199.226667pt;}
.x12{left:218.746655pt;}
.x34{left:222.906655pt;}
.x5e{left:236.026667pt;}
.x1f{left:239.706655pt;}
.x71{left:262.786667pt;}
.xe{left:287.426655pt;}
.x5f{left:294.946667pt;}
.x5a{left:303.426655pt;}
.x24{left:312.706667pt;}
.x4c{left:333.986667pt;}
.x37{left:340.866667pt;}
.x61{left:351.586667pt;}
.x62{left:398.786667pt;}
.xa{left:408.066655pt;}
.x1e{left:410.626655pt;}
.xd{left:412.706655pt;}
.x13{left:413.666655pt;}
.x1d{left:425.186655pt;}
.x64{left:446.173333pt;}
.x26{left:448.093333pt;}
.x6e{left:449.213321pt;}
.x6f{left:468.093321pt;}
.x66{left:493.693333pt;}
.x27{left:539.773333pt;}
.x4d{left:566.973333pt;}
.x14{left:578.493333pt;}
.x39{left:588.733333pt;}
.x67{left:625.733333pt;}
.x4e{left:647.013333pt;}
.x3b{left:659.333333pt;}
.x68{left:663.493333pt;}
.x69{left:720.133333pt;}
.x9{left:722.213333pt;}
}




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