
    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_fbc2cbbe2cb37d6d4dddf6a3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.976562;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_ce2d929f8ef5245d14f6f6d9.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b7d7c218c218afe89c4228af.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914551;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_60a6d080d3a424cfdc14bd0f.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e76d57a595c926b209d7f56a.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_065d6403767df437789a04a0.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914551;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.035156;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_9fe601910328473c0d17249c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.975586;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_dfa5af9d04977a3dc8869c5d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_f387659402ec911638a6fc0a.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ffc{font-family:ffc;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;}
.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);}
.v2{vertical-align:-18.000000px;}
.v7{vertical-align:-12.240000px;}
.v4{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:12.240000px;}
.v1{vertical-align:18.000000px;}
.v3{vertical-align:20.880000px;}
.v6{vertical-align:30.240000px;}
.v5{vertical-align:35.280000px;}
.va{vertical-align:40.320000px;}
.v9{vertical-align:46.080000px;}
.lsc{letter-spacing:-1.260000px;}
.ls16{letter-spacing:-0.732000px;}
.ls8{letter-spacing:-0.540000px;}
.ls17{letter-spacing:-0.432000px;}
.lsa{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.269400px;}
.ls1b{letter-spacing:-0.223800px;}
.ls9{letter-spacing:-0.206400px;}
.ls1c{letter-spacing:-0.181200px;}
.ls1a{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.100800px;}
.lse{letter-spacing:-0.053400px;}
.ls1e{letter-spacing:-0.053280px;}
.ls18{letter-spacing:-0.044640px;}
.ls6{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.010080px;}
.ls13{letter-spacing:0.012960px;}
.ls11{letter-spacing:0.053280px;}
.ls3{letter-spacing:0.117360px;}
.ls4{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.223800px;}
.ls20{letter-spacing:0.235920px;}
.lsd{letter-spacing:0.259800px;}
.lsf{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.324000px;}
.ls1{letter-spacing:0.360000px;}
.ls10{letter-spacing:0.480000px;}
.ls12{letter-spacing:8.105760px;}
.ls14{letter-spacing:10.725120px;}
.ls22{letter-spacing:11.933280px;}
.ls5{letter-spacing:19.620000px;}
.ls21{letter-spacing:35.693280px;}
.ls1d{letter-spacing:41.706720px;}
.ls1f{letter-spacing:41.850720px;}
.ls2{letter-spacing:44.820000px;}
.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;}
}
.ws20{word-spacing:-59.760000px;}
.ws1{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.ws10{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.ws1f{word-spacing:-14.886720px;}
.wsd{word-spacing:-14.886600px;}
.ws1a{word-spacing:-14.796000px;}
.wsf{word-spacing:-14.733600px;}
.ws19{word-spacing:-14.580000px;}
.ws3{word-spacing:-13.824000px;}
.ws4{word-spacing:-13.500000px;}
.ws18{word-spacing:-13.160160px;}
.ws14{word-spacing:-13.147200px;}
.ws7{word-spacing:-13.140000px;}
.ws1e{word-spacing:-12.420000px;}
.ws8{word-spacing:-12.283800px;}
.ws0{word-spacing:-12.060000px;}
.ws1d{word-spacing:-11.878800px;}
.ws1b{word-spacing:-11.836200px;}
.ws9{word-spacing:-11.790600px;}
.wsa{word-spacing:-11.700000px;}
.wsb{word-spacing:-9.720000px;}
.ws11{word-spacing:-9.288000px;}
.ws15{word-spacing:-9.142560px;}
.ws2{word-spacing:-9.000000px;}
.ws1c{word-spacing:-7.560000px;}
.wse{word-spacing:0.000000px;}
.ws5{word-spacing:0.772560px;}
.ws13{word-spacing:5.047920px;}
.ws17{word-spacing:5.676480px;}
.ws16{word-spacing:5.762160px;}
.ws12{word-spacing:12.752640px;}
._0{margin-left:-1.257120px;}
._3{width:1.263576px;}
._21{width:2.295355px;}
._2{width:3.427438px;}
._1{width:4.534849px;}
._9{width:5.616000px;}
._a{width:6.783574px;}
._b{width:8.243671px;}
._d{width:9.720000px;}
._4{width:11.669544px;}
._1c{width:13.497024px;}
._6{width:15.228000px;}
._19{width:16.519920px;}
._10{width:17.582880px;}
._e{width:18.771120px;}
._8{width:20.340000px;}
._7{width:21.762000px;}
._1f{width:22.784447px;}
._5{width:23.814000px;}
._1d{width:25.090823px;}
._1e{width:26.148510px;}
._20{width:27.670104px;}
._11{width:29.322000px;}
._12{width:31.350000px;}
._22{width:32.729544px;}
._16{width:34.182000px;}
._15{width:35.910000px;}
._1a{width:37.416523px;}
._18{width:39.068066px;}
._17{width:40.328447px;}
._14{width:42.066000px;}
._13{width:43.146000px;}
._f{width:45.198000px;}
._23{width:47.500584px;}
._c{width:50.274000px;}
._27{width:60.716160px;}
._32{width:70.448424px;}
._26{width:72.548640px;}
._25{width:84.679920px;}
._2b{width:99.341280px;}
._2a{width:101.044080px;}
._1b{width:106.227840px;}
._28{width:124.889784px;}
._29{width:125.974080px;}
._2d{width:139.206720px;}
._2f{width:140.799600px;}
._2e{width:142.052400px;}
._24{width:157.826160px;}
._2c{width:278.200080px;}
._30{width:333.290160px;}
._31{width:334.534080px;}
.fc4{color:transparent;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(0,0,204);}
.fc1{color:rgb(51,51,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs5{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs0{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs6{font-size:120.240000px;}
.fs2{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y5{bottom:2.520000px;}
.yf4{bottom:3.960000px;}
.y9{bottom:5.760000px;}
.yf5{bottom:8.460000px;}
.y6{bottom:10.260000px;}
.y1{bottom:14.040000px;}
.y4{bottom:16.200000px;}
.yf3{bottom:17.820000px;}
.yc{bottom:19.260000px;}
.y8{bottom:19.440000px;}
.y3{bottom:30.060000px;}
.y7{bottom:33.300000px;}
.y2{bottom:43.920000px;}
.y18f{bottom:84.960000px;}
.y14c{bottom:86.040000px;}
.ya9{bottom:88.020000px;}
.y115{bottom:93.420000px;}
.y46{bottom:94.500000px;}
.y141{bottom:96.300000px;}
.y18e{bottom:98.640000px;}
.ya4{bottom:99.360000px;}
.y14b{bottom:104.220000px;}
.ya8{bottom:106.200000px;}
.y45{bottom:108.360000px;}
.y114{bottom:111.600000px;}
.y18d{bottom:112.500000px;}
.y140{bottom:114.480000px;}
.y1d5{bottom:115.020000px;}
.ya3{bottom:119.160000px;}
.y44{bottom:122.220000px;}
.ya7{bottom:124.380000px;}
.y18c{bottom:126.360000px;}
.y113{bottom:129.600000px;}
.y1d4{bottom:132.300000px;}
.y13f{bottom:132.480000px;}
.ya2{bottom:138.996000px;}
.y18b{bottom:140.076000px;}
.y14a{bottom:140.436000px;}
.y10f{bottom:141.876000px;}
.ya6{bottom:142.416000px;}
.y43{bottom:142.956000px;}
.y106{bottom:144.936000px;}
.y10b{bottom:145.296000px;}
.y112{bottom:147.816000px;}
.y1d3{bottom:149.436000px;}
.y13e{bottom:150.690000px;}
.y18a{bottom:153.930000px;}
.y42{bottom:156.630000px;}
.y149{bottom:158.610000px;}
.ya1{bottom:158.790000px;}
.y68{bottom:159.330000px;}
.y105{bottom:159.690000px;}
.ya5{bottom:160.590000px;}
.y10e{bottom:165.090000px;}
.y1d2{bottom:166.710000px;}
.y189{bottom:167.790000px;}
.y10a{bottom:168.510000px;}
.y13d{bottom:168.870000px;}
.y41{bottom:170.490000px;}
.y111{bottom:171.030000px;}
.y148{bottom:176.610000px;}
.y67{bottom:176.790000px;}
.y104{bottom:177.330000px;}
.ya0{bottom:178.590000px;}
.y188{bottom:181.470000px;}
.y1d1{bottom:183.990000px;}
.y40{bottom:184.350000px;}
.y13c{bottom:186.870000px;}
.y110{bottom:191.010000px;}
.y103{bottom:194.790000px;}
.y187{bottom:195.330000px;}
.y10d{bottom:196.590000px;}
.y9f{bottom:196.770000px;}
.y3f{bottom:198.030000px;}
.y109{bottom:200.010000px;}
.y1d0{bottom:201.270000px;}
.y13b{bottom:205.050000px;}
.y186{bottom:209.190000px;}
.y3e{bottom:211.890000px;}
.y102{bottom:212.430000px;}
.y147{bottom:212.790000px;}
.y9e{bottom:214.950000px;}
.y1cf{bottom:218.550000px;}
.y185{bottom:222.870000px;}
.y13a{bottom:223.050000px;}
.y3d{bottom:225.750000px;}
.y101{bottom:229.890000px;}
.y9d{bottom:232.950000px;}
.y1ce{bottom:235.830000px;}
.y184{bottom:236.730000px;}
.y3c{bottom:239.430000px;}
.y139{bottom:241.230000px;}
.y146{bottom:241.770000px;}
.y100{bottom:247.530000px;}
.y183{bottom:250.590000px;}
.y9c{bottom:251.130000px;}
.y1cd{bottom:252.930000px;}
.y3b{bottom:253.290000px;}
.y138{bottom:259.410000px;}
.y182{bottom:264.270000px;}
.yff{bottom:264.990000px;}
.y3a{bottom:267.150000px;}
.y9b{bottom:269.130000px;}
.y1cc{bottom:270.210000px;}
.y137{bottom:277.410000px;}
.y145{bottom:277.770000px;}
.y181{bottom:278.130000px;}
.y39{bottom:280.830000px;}
.yfe{bottom:282.630000px;}
.y9a{bottom:287.310000px;}
.y1cb{bottom:287.490000px;}
.y180{bottom:291.990000px;}
.y38{bottom:295.050000px;}
.y136{bottom:295.590000px;}
.y144{bottom:295.950000px;}
.yfd{bottom:300.090000px;}
.y1ca{bottom:301.530000px;}
.y99{bottom:305.490000px;}
.y17f{bottom:305.670000px;}
.y37{bottom:310.530000px;}
.y135{bottom:313.770000px;}
.y143{bottom:313.950000px;}
.yfc{bottom:317.730000px;}
.y17e{bottom:319.530000px;}
.y1c9{bottom:321.330000px;}
.y98{bottom:323.490000px;}
.y36{bottom:326.190000px;}
.y134{bottom:332.130000px;}
.y17d{bottom:333.390000px;}
.y1c8{bottom:335.010000px;}
.yfb{bottom:335.190000px;}
.y35{bottom:341.670000px;}
.y17c{bottom:347.070000px;}
.y1c7{bottom:348.870000px;}
.y133{bottom:350.310000px;}
.yfa{bottom:352.830000px;}
.y97{bottom:359.850000px;}
.y17b{bottom:360.930000px;}
.y1c6{bottom:362.730000px;}
.y132{bottom:368.310000px;}
.yf9{bottom:370.290000px;}
.y34{bottom:373.890000px;}
.y17a{bottom:374.790000px;}
.y1c5{bottom:376.410000px;}
.y96{bottom:377.850000px;}
.y131{bottom:386.490000px;}
.yf8{bottom:387.975000px;}
.y179{bottom:389.235000px;}
.y1c4{bottom:390.315000px;}
.y33{bottom:391.935000px;}
.y95{bottom:396.075000px;}
.y1c3{bottom:404.175000px;}
.y130{bottom:404.715000px;}
.yf7{bottom:405.435000px;}
.y178{bottom:406.515000px;}
.y32{bottom:410.115000px;}
.y94{bottom:414.075000px;}
.y1c2{bottom:417.855000px;}
.y12f{bottom:422.715000px;}
.yf6{bottom:423.075000px;}
.y31{bottom:428.295000px;}
.y1c1{bottom:431.715000px;}
.y93{bottom:432.255000px;}
.y66{bottom:432.795000px;}
.y177{bottom:436.935000px;}
.yf2{bottom:440.535000px;}
.y12e{bottom:440.895000px;}
.y1c0{bottom:445.575000px;}
.y30{bottom:446.295000px;}
.y92{bottom:450.435000px;}
.y176{bottom:450.615000px;}
.y65{bottom:450.795000px;}
.y12d{bottom:458.895000px;}
.y1bf{bottom:459.255000px;}
.y2f{bottom:464.475000px;}
.y91{bottom:468.435000px;}
.y64{bottom:468.975000px;}
.y1be{bottom:473.115000px;}
.y12c{bottom:477.075000px;}
.y175{bottom:478.335000px;}
.yf1{bottom:481.035000px;}
.y2e{bottom:482.475000px;}
.y90{bottom:486.615000px;}
.y63{bottom:486.975000px;}
.y174{bottom:492.015000px;}
.y12b{bottom:495.255000px;}
.y1bd{bottom:500.655000px;}
.yf0{bottom:502.995000px;}
.y8f{bottom:504.615000px;}
.y2d{bottom:504.795000px;}
.y62{bottom:505.155000px;}
.y173{bottom:505.875000px;}
.y12a{bottom:513.255000px;}
.y1bc{bottom:514.515000px;}
.yef{bottom:515.595000px;}
.y172{bottom:519.735000px;}
.y8e{bottom:522.795000px;}
.y61{bottom:523.335000px;}
.y1bb{bottom:528.375000px;}
.y129{bottom:531.435000px;}
.y171{bottom:533.415000px;}
.yee{bottom:533.595000px;}
.ycc{bottom:536.835000px;}
.y8d{bottom:540.975000px;}
.y60{bottom:541.335000px;}
.y1ba{bottom:542.055000px;}
.y2c{bottom:544.935000px;}
.y170{bottom:547.275000px;}
.y128{bottom:549.435000px;}
.yed{bottom:551.775000px;}
.y1b9{bottom:555.915000px;}
.ycb{bottom:556.635000px;}
.y8c{bottom:558.975000px;}
.y5f{bottom:559.515000px;}
.y16f{bottom:560.955000px;}
.y127{bottom:567.615000px;}
.y1b8{bottom:569.775000px;}
.yec{bottom:569.955000px;}
.y16e{bottom:574.815000px;}
.yca{bottom:576.435000px;}
.y8b{bottom:577.155000px;}
.y5e{bottom:577.515000px;}
.y2b{bottom:579.855000px;}
.y1b7{bottom:584.355000px;}
.y126{bottom:585.795000px;}
.yeb{bottom:587.955000px;}
.y16d{bottom:588.675000px;}
.y8a{bottom:595.335000px;}
.y5d{bottom:595.695000px;}
.yc9{bottom:596.415000px;}
.y1b6{bottom:598.215000px;}
.y2a{bottom:601.455000px;}
.y16c{bottom:602.355000px;}
.y125{bottom:603.795000px;}
.yea{bottom:606.135000px;}
.y1b5{bottom:611.895000px;}
.y89{bottom:613.335000px;}
.y5c{bottom:613.875000px;}
.yc8{bottom:616.215000px;}
.y29{bottom:616.935000px;}
.y124{bottom:621.975000px;}
.ye9{bottom:624.135000px;}
.y1b4{bottom:625.755000px;}
.y16b{bottom:630.075000px;}
.y88{bottom:631.515000px;}
.y5b{bottom:631.875000px;}
.yc7{bottom:636.015000px;}
.y28{bottom:638.535000px;}
.y1b3{bottom:639.615000px;}
.y123{bottom:640.185000px;}
.ye8{bottom:642.345000px;}
.y16a{bottom:643.785000px;}
.y87{bottom:649.545000px;}
.y5a{bottom:650.085000px;}
.y1b2{bottom:653.325000px;}
.y27{bottom:654.045000px;}
.yc6{bottom:655.845000px;}
.y169{bottom:657.645000px;}
.y122{bottom:658.185000px;}
.ye7{bottom:660.525000px;}
.y1b1{bottom:667.185000px;}
.y86{bottom:667.725000px;}
.y59{bottom:668.265000px;}
.y26{bottom:669.705000px;}
.y168{bottom:671.505000px;}
.yc5{bottom:675.645000px;}
.y121{bottom:676.365000px;}
.ye6{bottom:678.525000px;}
.y1b0{bottom:681.045000px;}
.y25{bottom:685.185000px;}
.y85{bottom:685.905000px;}
.y58{bottom:686.265000px;}
.y120{bottom:694.365000px;}
.y1af{bottom:694.725000px;}
.yc4{bottom:695.625000px;}
.ye5{bottom:696.705000px;}
.y167{bottom:699.045000px;}
.y24{bottom:700.665000px;}
.y84{bottom:703.905000px;}
.y57{bottom:704.445000px;}
.y1ae{bottom:708.585000px;}
.y11f{bottom:712.545000px;}
.y166{bottom:712.905000px;}
.ye4{bottom:714.885000px;}
.yc3{bottom:715.425000px;}
.y108{bottom:715.605000px;}
.y23{bottom:716.145000px;}
.y83{bottom:722.085000px;}
.y56{bottom:722.445000px;}
.y165{bottom:726.585000px;}
.y11e{bottom:730.725000px;}
.y22{bottom:731.805000px;}
.ye3{bottom:732.885000px;}
.yc2{bottom:735.225000px;}
.y107{bottom:735.585000px;}
.y1ad{bottom:736.125000px;}
.y10c{bottom:737.385000px;}
.y82{bottom:740.085000px;}
.y164{bottom:740.445000px;}
.y55{bottom:740.625000px;}
.y21{bottom:747.285000px;}
.y11d{bottom:748.725000px;}
.y1ac{bottom:749.985000px;}
.ye2{bottom:751.065000px;}
.y163{bottom:754.305000px;}
.yc1{bottom:755.025000px;}
.y142{bottom:756.825000px;}
.y81{bottom:758.265000px;}
.y54{bottom:758.805000px;}
.y20{bottom:762.765000px;}
.y1ab{bottom:763.845000px;}
.y11c{bottom:766.905000px;}
.y162{bottom:767.985000px;}
.yc0{bottom:774.825000px;}
.y80{bottom:776.445000px;}
.y53{bottom:776.805000px;}
.ye1{bottom:777.345000px;}
.y1aa{bottom:777.525000px;}
.y1f{bottom:778.245000px;}
.y161{bottom:781.845000px;}
.y11b{bottom:784.905000px;}
.y1a9{bottom:791.385000px;}
.ybf{bottom:793.005000px;}
.y1e{bottom:793.725000px;}
.y7f{bottom:794.445000px;}
.y52{bottom:794.985000px;}
.y160{bottom:795.705000px;}
.y11a{bottom:803.085000px;}
.y1a8{bottom:805.065000px;}
.y1d{bottom:809.385000px;}
.ybe{bottom:811.185000px;}
.y7e{bottom:812.625000px;}
.y51{bottom:812.985000px;}
.ye0{bottom:813.345000px;}
.y1a7{bottom:818.925000px;}
.y119{bottom:821.265000px;}
.y15f{bottom:823.245000px;}
.y1c{bottom:824.865000px;}
.ybd{bottom:829.185000px;}
.y7d{bottom:830.805000px;}
.y50{bottom:831.165000px;}
.ydf{bottom:831.525000px;}
.y1a6{bottom:832.785000px;}
.y15e{bottom:837.105000px;}
.y118{bottom:839.265000px;}
.y1b{bottom:840.345000px;}
.y1a5{bottom:846.465000px;}
.ybc{bottom:847.365000px;}
.y7c{bottom:848.805000px;}
.y4f{bottom:849.345000px;}
.yde{bottom:849.525000px;}
.y15d{bottom:850.785000px;}
.y1a{bottom:855.825000px;}
.y117{bottom:857.445000px;}
.y1a4{bottom:861.225000px;}
.y15c{bottom:864.645000px;}
.ybb{bottom:865.545000px;}
.y7b{bottom:866.985000px;}
.y4e{bottom:867.345000px;}
.ydd{bottom:867.705000px;}
.y19{bottom:871.485000px;}
.y1a3{bottom:875.085000px;}
.y116{bottom:875.625000px;}
.y15b{bottom:878.505000px;}
.yba{bottom:883.545000px;}
.y7a{bottom:884.985000px;}
.y4d{bottom:885.525000px;}
.ydc{bottom:885.885000px;}
.y18{bottom:886.965000px;}
.y1a2{bottom:888.765000px;}
.y15a{bottom:892.185000px;}
.yb9{bottom:901.770000px;}
.y17{bottom:902.490000px;}
.y1a1{bottom:902.670000px;}
.y79{bottom:903.210000px;}
.y4c{bottom:903.750000px;}
.ydb{bottom:903.930000px;}
.y159{bottom:906.090000px;}
.y1a0{bottom:916.350000px;}
.y16{bottom:917.970000px;}
.yb8{bottom:919.770000px;}
.y78{bottom:921.390000px;}
.y4b{bottom:921.750000px;}
.yda{bottom:922.110000px;}
.y158{bottom:929.490000px;}
.y19f{bottom:930.210000px;}
.y15{bottom:933.630000px;}
.yb7{bottom:937.950000px;}
.y77{bottom:939.390000px;}
.y4a{bottom:939.930000px;}
.yd9{bottom:940.290000px;}
.y19e{bottom:944.070000px;}
.y14{bottom:949.110000px;}
.yb6{bottom:956.130000px;}
.y76{bottom:957.570000px;}
.y19d{bottom:957.750000px;}
.y49{bottom:957.930000px;}
.y13{bottom:964.590000px;}
.y157{bottom:965.670000px;}
.y19c{bottom:971.610000px;}
.yd8{bottom:972.510000px;}
.yb5{bottom:974.130000px;}
.y75{bottom:975.750000px;}
.y48{bottom:976.110000px;}
.y12{bottom:980.070000px;}
.yd7{bottom:982.590000px;}
.y156{bottom:983.850000px;}
.y19b{bottom:985.470000px;}
.yb4{bottom:992.310000px;}
.y74{bottom:993.750000px;}
.y47{bottom:994.290000px;}
.y11{bottom:995.730000px;}
.y19a{bottom:999.150000px;}
.y155{bottom:1001.850000px;}
.yb3{bottom:1010.310000px;}
.y73{bottom:1011.930000px;}
.y199{bottom:1013.010000px;}
.y154{bottom:1020.030000px;}
.y198{bottom:1026.870000px;}
.yd5{bottom:1027.230000px;}
.yb2{bottom:1028.490000px;}
.y10{bottom:1029.750000px;}
.y72{bottom:1029.930000px;}
.y153{bottom:1038.210000px;}
.y197{bottom:1040.550000px;}
.yb1{bottom:1046.670000px;}
.y71{bottom:1048.110000px;}
.yd6{bottom:1048.290000px;}
.yd4{bottom:1054.050000px;}
.y196{bottom:1054.410000px;}
.y152{bottom:1056.210000px;}
.yd3{bottom:1063.050000px;}
.yb0{bottom:1064.670000px;}
.y70{bottom:1066.290000px;}
.y195{bottom:1068.270000px;}
.yf{bottom:1070.970000px;}
.y151{bottom:1074.390000px;}
.yd2{bottom:1076.550000px;}
.y194{bottom:1081.950000px;}
.yaf{bottom:1082.850000px;}
.yd1{bottom:1084.110000px;}
.y6f{bottom:1084.290000px;}
.y150{bottom:1092.390000px;}
.yae{bottom:1101.030000px;}
.y6e{bottom:1102.470000px;}
.y193{bottom:1105.530000px;}
.yd0{bottom:1106.970000px;}
.y14f{bottom:1110.570000px;}
.ye{bottom:1112.370000px;}
.yad{bottom:1119.030000px;}
.y6d{bottom:1120.470000px;}
.ycf{bottom:1122.270000px;}
.y14e{bottom:1128.750000px;}
.yce{bottom:1129.830000px;}
.yac{bottom:1137.210000px;}
.y6c{bottom:1138.650000px;}
.y192{bottom:1140.090000px;}
.y14d{bottom:1146.780000px;}
.ycd{bottom:1153.620000px;}
.yd{bottom:1153.800000px;}
.y191{bottom:1153.980000px;}
.yab{bottom:1155.240000px;}
.y6b{bottom:1164.960000px;}
.y190{bottom:1167.660000px;}
.yaa{bottom:1173.420000px;}
.y6a{bottom:1182.960000px;}
.y69{bottom:1200.600000px;}
.yb{bottom:1217.700000px;}
.ya{bottom:1234.980000px;}
.h1d{height:16.740000px;}
.h1c{height:21.336328px;}
.h19{height:25.400391px;}
.h1a{height:30.600000px;}
.he{height:33.706758px;}
.hd{height:34.036523px;}
.h22{height:35.120039px;}
.h3{height:36.698203px;}
.hc{height:38.100586px;}
.h1b{height:39.336328px;}
.h6{height:41.756133px;}
.h5{height:42.164648px;}
.h9{height:43.822266px;}
.h21{height:44.265586px;}
.h4{height:44.460000px;}
.h18{height:45.461953px;}
.h8{height:46.736719px;}
.ha{height:47.214844px;}
.h24{height:47.980898px;}
.h20{height:48.022641px;}
.hf{height:48.046641px;}
.h1e{height:48.312422px;}
.h1f{height:48.496641px;}
.h2{height:55.080000px;}
.h10{height:61.189805px;}
.h23{height:65.884219px;}
.h12{height:71.996133px;}
.h13{height:76.100625px;}
.hb{height:84.015352px;}
.h11{height:88.458750px;}
.h7{height:100.617188px;}
.h14{height:106.340625px;}
.h17{height:116.420625px;}
.h15{height:122.180625px;}
.h16{height:162.500625px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:65.520000px;}
.w9{width:107.316000px;}
.wa{width:113.940000px;}
.w8{width:120.816000px;}
.w7{width:127.620000px;}
.w6{width:163.830000px;}
.w2{width:194.610000px;}
.w3{width:243.075000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2a{left:9.720000px;}
.x2{left:10.800000px;}
.x28{left:12.600000px;}
.x1f{left:18.180000px;}
.x27{left:22.860000px;}
.x35{left:26.820000px;}
.x2c{left:29.880000px;}
.x23{left:31.680000px;}
.x2e{left:40.140000px;}
.x2f{left:43.380000px;}
.x2d{left:46.830000px;}
.x32{left:49.890000px;}
.x34{left:50.940000px;}
.x25{left:52.050000px;}
.x2b{left:53.100000px;}
.x31{left:56.160000px;}
.x36{left:60.660000px;}
.x33{left:68.400000px;}
.x3{left:70.380000px;}
.x21{left:73.440000px;}
.x30{left:75.780000px;}
.x11{left:77.399987px;}
.xa{left:80.820000px;}
.x7{left:87.480000px;}
.x45{left:91.475987px;}
.x1e{left:95.256000px;}
.x44{left:102.275987px;}
.x1d{left:126.755987px;}
.x13{left:152.849987px;}
.x40{left:156.809987px;}
.x20{left:161.490000px;}
.xb{left:181.470000px;}
.x8{left:182.550000px;}
.x3d{left:185.789987px;}
.x38{left:189.389987px;}
.x41{left:190.649987px;}
.x3a{left:193.709987px;}
.x9{left:221.430000px;}
.x22{left:326.055000px;}
.x3e{left:354.134987px;}
.x12{left:378.434987px;}
.x4{left:382.215000px;}
.x5{left:427.935000px;}
.x6{left:439.095000px;}
.x10{left:446.474987px;}
.x24{left:454.395000px;}
.xc{left:457.455000px;}
.xe{left:462.855000px;}
.xd{left:468.105000px;}
.x1{left:473.325000px;}
.x46{left:478.724987px;}
.x43{left:489.524987px;}
.x14{left:513.284987px;}
.x1c{left:517.964987px;}
.x19{left:535.784987px;}
.x18{left:539.924987px;}
.x48{left:541.184987px;}
.x49{left:545.684987px;}
.x16{left:553.604987px;}
.x47{left:565.304987px;}
.x42{left:567.104987px;}
.x1a{left:574.484987px;}
.x26{left:575.925000px;}
.xf{left:597.345000px;}
.x15{left:639.284987px;}
.x1b{left:670.469987px;}
.x29{left:683.970000px;}
.x3b{left:733.469987px;}
.x37{left:737.969987px;}
.x39{left:755.969987px;}
.x3c{left:780.809987px;}
.x3f{left:800.969987px;}
.x4a{left:819.689987px;}
.x17{left:857.519987px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v7{vertical-align:-10.880000pt;}
.v4{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:10.880000pt;}
.v1{vertical-align:16.000000pt;}
.v3{vertical-align:18.560000pt;}
.v6{vertical-align:26.880000pt;}
.v5{vertical-align:31.360000pt;}
.va{vertical-align:35.840000pt;}
.v9{vertical-align:40.960000pt;}
.lsc{letter-spacing:-1.120000pt;}
.ls16{letter-spacing:-0.650667pt;}
.ls8{letter-spacing:-0.480000pt;}
.ls17{letter-spacing:-0.384000pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.239467pt;}
.ls1b{letter-spacing:-0.198933pt;}
.ls9{letter-spacing:-0.183467pt;}
.ls1c{letter-spacing:-0.161067pt;}
.ls1a{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.089600pt;}
.lse{letter-spacing:-0.047467pt;}
.ls1e{letter-spacing:-0.047360pt;}
.ls18{letter-spacing:-0.039680pt;}
.ls6{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.008960pt;}
.ls13{letter-spacing:0.011520pt;}
.ls11{letter-spacing:0.047360pt;}
.ls3{letter-spacing:0.104320pt;}
.ls4{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.198933pt;}
.ls20{letter-spacing:0.209707pt;}
.lsd{letter-spacing:0.230933pt;}
.lsf{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.288000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls10{letter-spacing:0.426667pt;}
.ls12{letter-spacing:7.205120pt;}
.ls14{letter-spacing:9.533440pt;}
.ls22{letter-spacing:10.607360pt;}
.ls5{letter-spacing:17.440000pt;}
.ls21{letter-spacing:31.727360pt;}
.ls1d{letter-spacing:37.072640pt;}
.ls1f{letter-spacing:37.200640pt;}
.ls2{letter-spacing:39.840000pt;}
.ws20{word-spacing:-53.120000pt;}
.ws1{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.ws10{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.ws1f{word-spacing:-13.232640pt;}
.wsd{word-spacing:-13.232533pt;}
.ws1a{word-spacing:-13.152000pt;}
.wsf{word-spacing:-13.096533pt;}
.ws19{word-spacing:-12.960000pt;}
.ws3{word-spacing:-12.288000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws18{word-spacing:-11.697920pt;}
.ws14{word-spacing:-11.686400pt;}
.ws7{word-spacing:-11.680000pt;}
.ws1e{word-spacing:-11.040000pt;}
.ws8{word-spacing:-10.918933pt;}
.ws0{word-spacing:-10.720000pt;}
.ws1d{word-spacing:-10.558933pt;}
.ws1b{word-spacing:-10.521067pt;}
.ws9{word-spacing:-10.480533pt;}
.wsa{word-spacing:-10.400000pt;}
.wsb{word-spacing:-8.640000pt;}
.ws11{word-spacing:-8.256000pt;}
.ws15{word-spacing:-8.126720pt;}
.ws2{word-spacing:-8.000000pt;}
.ws1c{word-spacing:-6.720000pt;}
.wse{word-spacing:0.000000pt;}
.ws5{word-spacing:0.686720pt;}
.ws13{word-spacing:4.487040pt;}
.ws17{word-spacing:5.045760pt;}
.ws16{word-spacing:5.121920pt;}
.ws12{word-spacing:11.335680pt;}
._0{margin-left:-1.117440pt;}
._3{width:1.123179pt;}
._21{width:2.040316pt;}
._2{width:3.046611pt;}
._1{width:4.030977pt;}
._9{width:4.992000pt;}
._a{width:6.029844pt;}
._b{width:7.327707pt;}
._d{width:8.640000pt;}
._4{width:10.372928pt;}
._1c{width:11.997355pt;}
._6{width:13.536000pt;}
._19{width:14.684373pt;}
._10{width:15.629227pt;}
._e{width:16.685440pt;}
._8{width:18.080000pt;}
._7{width:19.344000pt;}
._1f{width:20.252842pt;}
._5{width:21.168000pt;}
._1d{width:22.302953pt;}
._1e{width:23.243120pt;}
._20{width:24.595648pt;}
._11{width:26.064000pt;}
._12{width:27.866667pt;}
._22{width:29.092928pt;}
._16{width:30.384000pt;}
._15{width:31.920000pt;}
._1a{width:33.259132pt;}
._18{width:34.727170pt;}
._17{width:35.847508pt;}
._14{width:37.392000pt;}
._13{width:38.352000pt;}
._f{width:40.176000pt;}
._23{width:42.222741pt;}
._c{width:44.688000pt;}
._27{width:53.969920pt;}
._32{width:62.620821pt;}
._26{width:64.487680pt;}
._25{width:75.271040pt;}
._2b{width:88.303360pt;}
._2a{width:89.816960pt;}
._1b{width:94.424747pt;}
._28{width:111.013141pt;}
._29{width:111.976960pt;}
._2d{width:123.739307pt;}
._2f{width:125.155200pt;}
._2e{width:126.268800pt;}
._24{width:140.289920pt;}
._2c{width:247.288960pt;}
._30{width:296.257920pt;}
._31{width:297.363627pt;}
.fs9{font-size:26.880000pt;}
.fs5{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs0{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs6{font-size:106.880000pt;}
.fs2{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:2.240000pt;}
.yf4{bottom:3.520000pt;}
.y9{bottom:5.120000pt;}
.yf5{bottom:7.520000pt;}
.y6{bottom:9.120000pt;}
.y1{bottom:12.480000pt;}
.y4{bottom:14.400000pt;}
.yf3{bottom:15.840000pt;}
.yc{bottom:17.120000pt;}
.y8{bottom:17.280000pt;}
.y3{bottom:26.720000pt;}
.y7{bottom:29.600000pt;}
.y2{bottom:39.040000pt;}
.y18f{bottom:75.520000pt;}
.y14c{bottom:76.480000pt;}
.ya9{bottom:78.240000pt;}
.y115{bottom:83.040000pt;}
.y46{bottom:84.000000pt;}
.y141{bottom:85.600000pt;}
.y18e{bottom:87.680000pt;}
.ya4{bottom:88.320000pt;}
.y14b{bottom:92.640000pt;}
.ya8{bottom:94.400000pt;}
.y45{bottom:96.320000pt;}
.y114{bottom:99.200000pt;}
.y18d{bottom:100.000000pt;}
.y140{bottom:101.760000pt;}
.y1d5{bottom:102.240000pt;}
.ya3{bottom:105.920000pt;}
.y44{bottom:108.640000pt;}
.ya7{bottom:110.560000pt;}
.y18c{bottom:112.320000pt;}
.y113{bottom:115.200000pt;}
.y1d4{bottom:117.600000pt;}
.y13f{bottom:117.760000pt;}
.ya2{bottom:123.552000pt;}
.y18b{bottom:124.512000pt;}
.y14a{bottom:124.832000pt;}
.y10f{bottom:126.112000pt;}
.ya6{bottom:126.592000pt;}
.y43{bottom:127.072000pt;}
.y106{bottom:128.832000pt;}
.y10b{bottom:129.152000pt;}
.y112{bottom:131.392000pt;}
.y1d3{bottom:132.832000pt;}
.y13e{bottom:133.946667pt;}
.y18a{bottom:136.826667pt;}
.y42{bottom:139.226667pt;}
.y149{bottom:140.986667pt;}
.ya1{bottom:141.146667pt;}
.y68{bottom:141.626667pt;}
.y105{bottom:141.946667pt;}
.ya5{bottom:142.746667pt;}
.y10e{bottom:146.746667pt;}
.y1d2{bottom:148.186667pt;}
.y189{bottom:149.146667pt;}
.y10a{bottom:149.786667pt;}
.y13d{bottom:150.106667pt;}
.y41{bottom:151.546667pt;}
.y111{bottom:152.026667pt;}
.y148{bottom:156.986667pt;}
.y67{bottom:157.146667pt;}
.y104{bottom:157.626667pt;}
.ya0{bottom:158.746667pt;}
.y188{bottom:161.306667pt;}
.y1d1{bottom:163.546667pt;}
.y40{bottom:163.866667pt;}
.y13c{bottom:166.106667pt;}
.y110{bottom:169.786667pt;}
.y103{bottom:173.146667pt;}
.y187{bottom:173.626667pt;}
.y10d{bottom:174.746667pt;}
.y9f{bottom:174.906667pt;}
.y3f{bottom:176.026667pt;}
.y109{bottom:177.786667pt;}
.y1d0{bottom:178.906667pt;}
.y13b{bottom:182.266667pt;}
.y186{bottom:185.946667pt;}
.y3e{bottom:188.346667pt;}
.y102{bottom:188.826667pt;}
.y147{bottom:189.146667pt;}
.y9e{bottom:191.066667pt;}
.y1cf{bottom:194.266667pt;}
.y185{bottom:198.106667pt;}
.y13a{bottom:198.266667pt;}
.y3d{bottom:200.666667pt;}
.y101{bottom:204.346667pt;}
.y9d{bottom:207.066667pt;}
.y1ce{bottom:209.626667pt;}
.y184{bottom:210.426667pt;}
.y3c{bottom:212.826667pt;}
.y139{bottom:214.426667pt;}
.y146{bottom:214.906667pt;}
.y100{bottom:220.026667pt;}
.y183{bottom:222.746667pt;}
.y9c{bottom:223.226667pt;}
.y1cd{bottom:224.826667pt;}
.y3b{bottom:225.146667pt;}
.y138{bottom:230.586667pt;}
.y182{bottom:234.906667pt;}
.yff{bottom:235.546667pt;}
.y3a{bottom:237.466667pt;}
.y9b{bottom:239.226667pt;}
.y1cc{bottom:240.186667pt;}
.y137{bottom:246.586667pt;}
.y145{bottom:246.906667pt;}
.y181{bottom:247.226667pt;}
.y39{bottom:249.626667pt;}
.yfe{bottom:251.226667pt;}
.y9a{bottom:255.386667pt;}
.y1cb{bottom:255.546667pt;}
.y180{bottom:259.546667pt;}
.y38{bottom:262.266667pt;}
.y136{bottom:262.746667pt;}
.y144{bottom:263.066667pt;}
.yfd{bottom:266.746667pt;}
.y1ca{bottom:268.026667pt;}
.y99{bottom:271.546667pt;}
.y17f{bottom:271.706667pt;}
.y37{bottom:276.026667pt;}
.y135{bottom:278.906667pt;}
.y143{bottom:279.066667pt;}
.yfc{bottom:282.426667pt;}
.y17e{bottom:284.026667pt;}
.y1c9{bottom:285.626667pt;}
.y98{bottom:287.546667pt;}
.y36{bottom:289.946667pt;}
.y134{bottom:295.226667pt;}
.y17d{bottom:296.346667pt;}
.y1c8{bottom:297.786667pt;}
.yfb{bottom:297.946667pt;}
.y35{bottom:303.706667pt;}
.y17c{bottom:308.506667pt;}
.y1c7{bottom:310.106667pt;}
.y133{bottom:311.386667pt;}
.yfa{bottom:313.626667pt;}
.y97{bottom:319.866667pt;}
.y17b{bottom:320.826667pt;}
.y1c6{bottom:322.426667pt;}
.y132{bottom:327.386667pt;}
.yf9{bottom:329.146667pt;}
.y34{bottom:332.346667pt;}
.y17a{bottom:333.146667pt;}
.y1c5{bottom:334.586667pt;}
.y96{bottom:335.866667pt;}
.y131{bottom:343.546667pt;}
.yf8{bottom:344.866667pt;}
.y179{bottom:345.986667pt;}
.y1c4{bottom:346.946667pt;}
.y33{bottom:348.386667pt;}
.y95{bottom:352.066667pt;}
.y1c3{bottom:359.266667pt;}
.y130{bottom:359.746667pt;}
.yf7{bottom:360.386667pt;}
.y178{bottom:361.346667pt;}
.y32{bottom:364.546667pt;}
.y94{bottom:368.066667pt;}
.y1c2{bottom:371.426667pt;}
.y12f{bottom:375.746667pt;}
.yf6{bottom:376.066667pt;}
.y31{bottom:380.706667pt;}
.y1c1{bottom:383.746667pt;}
.y93{bottom:384.226667pt;}
.y66{bottom:384.706667pt;}
.y177{bottom:388.386667pt;}
.yf2{bottom:391.586667pt;}
.y12e{bottom:391.906667pt;}
.y1c0{bottom:396.066667pt;}
.y30{bottom:396.706667pt;}
.y92{bottom:400.386667pt;}
.y176{bottom:400.546667pt;}
.y65{bottom:400.706667pt;}
.y12d{bottom:407.906667pt;}
.y1bf{bottom:408.226667pt;}
.y2f{bottom:412.866667pt;}
.y91{bottom:416.386667pt;}
.y64{bottom:416.866667pt;}
.y1be{bottom:420.546667pt;}
.y12c{bottom:424.066667pt;}
.y175{bottom:425.186667pt;}
.yf1{bottom:427.586667pt;}
.y2e{bottom:428.866667pt;}
.y90{bottom:432.546667pt;}
.y63{bottom:432.866667pt;}
.y174{bottom:437.346667pt;}
.y12b{bottom:440.226667pt;}
.y1bd{bottom:445.026667pt;}
.yf0{bottom:447.106667pt;}
.y8f{bottom:448.546667pt;}
.y2d{bottom:448.706667pt;}
.y62{bottom:449.026667pt;}
.y173{bottom:449.666667pt;}
.y12a{bottom:456.226667pt;}
.y1bc{bottom:457.346667pt;}
.yef{bottom:458.306667pt;}
.y172{bottom:461.986667pt;}
.y8e{bottom:464.706667pt;}
.y61{bottom:465.186667pt;}
.y1bb{bottom:469.666667pt;}
.y129{bottom:472.386667pt;}
.y171{bottom:474.146667pt;}
.yee{bottom:474.306667pt;}
.ycc{bottom:477.186667pt;}
.y8d{bottom:480.866667pt;}
.y60{bottom:481.186667pt;}
.y1ba{bottom:481.826667pt;}
.y2c{bottom:484.386667pt;}
.y170{bottom:486.466667pt;}
.y128{bottom:488.386667pt;}
.yed{bottom:490.466667pt;}
.y1b9{bottom:494.146667pt;}
.ycb{bottom:494.786667pt;}
.y8c{bottom:496.866667pt;}
.y5f{bottom:497.346667pt;}
.y16f{bottom:498.626667pt;}
.y127{bottom:504.546667pt;}
.y1b8{bottom:506.466667pt;}
.yec{bottom:506.626667pt;}
.y16e{bottom:510.946667pt;}
.yca{bottom:512.386667pt;}
.y8b{bottom:513.026667pt;}
.y5e{bottom:513.346667pt;}
.y2b{bottom:515.426667pt;}
.y1b7{bottom:519.426667pt;}
.y126{bottom:520.706667pt;}
.yeb{bottom:522.626667pt;}
.y16d{bottom:523.266667pt;}
.y8a{bottom:529.186667pt;}
.y5d{bottom:529.506667pt;}
.yc9{bottom:530.146667pt;}
.y1b6{bottom:531.746667pt;}
.y2a{bottom:534.626667pt;}
.y16c{bottom:535.426667pt;}
.y125{bottom:536.706667pt;}
.yea{bottom:538.786667pt;}
.y1b5{bottom:543.906667pt;}
.y89{bottom:545.186667pt;}
.y5c{bottom:545.666667pt;}
.yc8{bottom:547.746667pt;}
.y29{bottom:548.386667pt;}
.y124{bottom:552.866667pt;}
.ye9{bottom:554.786667pt;}
.y1b4{bottom:556.226667pt;}
.y16b{bottom:560.066667pt;}
.y88{bottom:561.346667pt;}
.y5b{bottom:561.666667pt;}
.yc7{bottom:565.346667pt;}
.y28{bottom:567.586667pt;}
.y1b3{bottom:568.546667pt;}
.y123{bottom:569.053333pt;}
.ye8{bottom:570.973333pt;}
.y16a{bottom:572.253333pt;}
.y87{bottom:577.373333pt;}
.y5a{bottom:577.853333pt;}
.y1b2{bottom:580.733333pt;}
.y27{bottom:581.373333pt;}
.yc6{bottom:582.973333pt;}
.y169{bottom:584.573333pt;}
.y122{bottom:585.053333pt;}
.ye7{bottom:587.133333pt;}
.y1b1{bottom:593.053333pt;}
.y86{bottom:593.533333pt;}
.y59{bottom:594.013333pt;}
.y26{bottom:595.293333pt;}
.y168{bottom:596.893333pt;}
.yc5{bottom:600.573333pt;}
.y121{bottom:601.213333pt;}
.ye6{bottom:603.133333pt;}
.y1b0{bottom:605.373333pt;}
.y25{bottom:609.053333pt;}
.y85{bottom:609.693333pt;}
.y58{bottom:610.013333pt;}
.y120{bottom:617.213333pt;}
.y1af{bottom:617.533333pt;}
.yc4{bottom:618.333333pt;}
.ye5{bottom:619.293333pt;}
.y167{bottom:621.373333pt;}
.y24{bottom:622.813333pt;}
.y84{bottom:625.693333pt;}
.y57{bottom:626.173333pt;}
.y1ae{bottom:629.853333pt;}
.y11f{bottom:633.373333pt;}
.y166{bottom:633.693333pt;}
.ye4{bottom:635.453333pt;}
.yc3{bottom:635.933333pt;}
.y108{bottom:636.093333pt;}
.y23{bottom:636.573333pt;}
.y83{bottom:641.853333pt;}
.y56{bottom:642.173333pt;}
.y165{bottom:645.853333pt;}
.y11e{bottom:649.533333pt;}
.y22{bottom:650.493333pt;}
.ye3{bottom:651.453333pt;}
.yc2{bottom:653.533333pt;}
.y107{bottom:653.853333pt;}
.y1ad{bottom:654.333333pt;}
.y10c{bottom:655.453333pt;}
.y82{bottom:657.853333pt;}
.y164{bottom:658.173333pt;}
.y55{bottom:658.333333pt;}
.y21{bottom:664.253333pt;}
.y11d{bottom:665.533333pt;}
.y1ac{bottom:666.653333pt;}
.ye2{bottom:667.613333pt;}
.y163{bottom:670.493333pt;}
.yc1{bottom:671.133333pt;}
.y142{bottom:672.733333pt;}
.y81{bottom:674.013333pt;}
.y54{bottom:674.493333pt;}
.y20{bottom:678.013333pt;}
.y1ab{bottom:678.973333pt;}
.y11c{bottom:681.693333pt;}
.y162{bottom:682.653333pt;}
.yc0{bottom:688.733333pt;}
.y80{bottom:690.173333pt;}
.y53{bottom:690.493333pt;}
.ye1{bottom:690.973333pt;}
.y1aa{bottom:691.133333pt;}
.y1f{bottom:691.773333pt;}
.y161{bottom:694.973333pt;}
.y11b{bottom:697.693333pt;}
.y1a9{bottom:703.453333pt;}
.ybf{bottom:704.893333pt;}
.y1e{bottom:705.533333pt;}
.y7f{bottom:706.173333pt;}
.y52{bottom:706.653333pt;}
.y160{bottom:707.293333pt;}
.y11a{bottom:713.853333pt;}
.y1a8{bottom:715.613333pt;}
.y1d{bottom:719.453333pt;}
.ybe{bottom:721.053333pt;}
.y7e{bottom:722.333333pt;}
.y51{bottom:722.653333pt;}
.ye0{bottom:722.973333pt;}
.y1a7{bottom:727.933333pt;}
.y119{bottom:730.013333pt;}
.y15f{bottom:731.773333pt;}
.y1c{bottom:733.213333pt;}
.ybd{bottom:737.053333pt;}
.y7d{bottom:738.493333pt;}
.y50{bottom:738.813333pt;}
.ydf{bottom:739.133333pt;}
.y1a6{bottom:740.253333pt;}
.y15e{bottom:744.093333pt;}
.y118{bottom:746.013333pt;}
.y1b{bottom:746.973333pt;}
.y1a5{bottom:752.413333pt;}
.ybc{bottom:753.213333pt;}
.y7c{bottom:754.493333pt;}
.y4f{bottom:754.973333pt;}
.yde{bottom:755.133333pt;}
.y15d{bottom:756.253333pt;}
.y1a{bottom:760.733333pt;}
.y117{bottom:762.173333pt;}
.y1a4{bottom:765.533333pt;}
.y15c{bottom:768.573333pt;}
.ybb{bottom:769.373333pt;}
.y7b{bottom:770.653333pt;}
.y4e{bottom:770.973333pt;}
.ydd{bottom:771.293333pt;}
.y19{bottom:774.653333pt;}
.y1a3{bottom:777.853333pt;}
.y116{bottom:778.333333pt;}
.y15b{bottom:780.893333pt;}
.yba{bottom:785.373333pt;}
.y7a{bottom:786.653333pt;}
.y4d{bottom:787.133333pt;}
.ydc{bottom:787.453333pt;}
.y18{bottom:788.413333pt;}
.y1a2{bottom:790.013333pt;}
.y15a{bottom:793.053333pt;}
.yb9{bottom:801.573333pt;}
.y17{bottom:802.213333pt;}
.y1a1{bottom:802.373333pt;}
.y79{bottom:802.853333pt;}
.y4c{bottom:803.333333pt;}
.ydb{bottom:803.493333pt;}
.y159{bottom:805.413333pt;}
.y1a0{bottom:814.533333pt;}
.y16{bottom:815.973333pt;}
.yb8{bottom:817.573333pt;}
.y78{bottom:819.013333pt;}
.y4b{bottom:819.333333pt;}
.yda{bottom:819.653333pt;}
.y158{bottom:826.213333pt;}
.y19f{bottom:826.853333pt;}
.y15{bottom:829.893333pt;}
.yb7{bottom:833.733333pt;}
.y77{bottom:835.013333pt;}
.y4a{bottom:835.493333pt;}
.yd9{bottom:835.813333pt;}
.y19e{bottom:839.173333pt;}
.y14{bottom:843.653333pt;}
.yb6{bottom:849.893333pt;}
.y76{bottom:851.173333pt;}
.y19d{bottom:851.333333pt;}
.y49{bottom:851.493333pt;}
.y13{bottom:857.413333pt;}
.y157{bottom:858.373333pt;}
.y19c{bottom:863.653333pt;}
.yd8{bottom:864.453333pt;}
.yb5{bottom:865.893333pt;}
.y75{bottom:867.333333pt;}
.y48{bottom:867.653333pt;}
.y12{bottom:871.173333pt;}
.yd7{bottom:873.413333pt;}
.y156{bottom:874.533333pt;}
.y19b{bottom:875.973333pt;}
.yb4{bottom:882.053333pt;}
.y74{bottom:883.333333pt;}
.y47{bottom:883.813333pt;}
.y11{bottom:885.093333pt;}
.y19a{bottom:888.133333pt;}
.y155{bottom:890.533333pt;}
.yb3{bottom:898.053333pt;}
.y73{bottom:899.493333pt;}
.y199{bottom:900.453333pt;}
.y154{bottom:906.693333pt;}
.y198{bottom:912.773333pt;}
.yd5{bottom:913.093333pt;}
.yb2{bottom:914.213333pt;}
.y10{bottom:915.333333pt;}
.y72{bottom:915.493333pt;}
.y153{bottom:922.853333pt;}
.y197{bottom:924.933333pt;}
.yb1{bottom:930.373333pt;}
.y71{bottom:931.653333pt;}
.yd6{bottom:931.813333pt;}
.yd4{bottom:936.933333pt;}
.y196{bottom:937.253333pt;}
.y152{bottom:938.853333pt;}
.yd3{bottom:944.933333pt;}
.yb0{bottom:946.373333pt;}
.y70{bottom:947.813333pt;}
.y195{bottom:949.573333pt;}
.yf{bottom:951.973333pt;}
.y151{bottom:955.013333pt;}
.yd2{bottom:956.933333pt;}
.y194{bottom:961.733333pt;}
.yaf{bottom:962.533333pt;}
.yd1{bottom:963.653333pt;}
.y6f{bottom:963.813333pt;}
.y150{bottom:971.013333pt;}
.yae{bottom:978.693333pt;}
.y6e{bottom:979.973333pt;}
.y193{bottom:982.693333pt;}
.yd0{bottom:983.973333pt;}
.y14f{bottom:987.173333pt;}
.ye{bottom:988.773333pt;}
.yad{bottom:994.693333pt;}
.y6d{bottom:995.973333pt;}
.ycf{bottom:997.573333pt;}
.y14e{bottom:1003.333333pt;}
.yce{bottom:1004.293333pt;}
.yac{bottom:1010.853333pt;}
.y6c{bottom:1012.133333pt;}
.y192{bottom:1013.413333pt;}
.y14d{bottom:1019.360000pt;}
.ycd{bottom:1025.440000pt;}
.yd{bottom:1025.600000pt;}
.y191{bottom:1025.760000pt;}
.yab{bottom:1026.880000pt;}
.y6b{bottom:1035.520000pt;}
.y190{bottom:1037.920000pt;}
.yaa{bottom:1043.040000pt;}
.y6a{bottom:1051.520000pt;}
.y69{bottom:1067.200000pt;}
.yb{bottom:1082.400000pt;}
.ya{bottom:1097.760000pt;}
.h1d{height:14.880000pt;}
.h1c{height:18.965625pt;}
.h19{height:22.578125pt;}
.h1a{height:27.200000pt;}
.he{height:29.961562pt;}
.hd{height:30.254687pt;}
.h22{height:31.217812pt;}
.h3{height:32.620625pt;}
.hc{height:33.867188pt;}
.h1b{height:34.965625pt;}
.h6{height:37.116563pt;}
.h5{height:37.479688pt;}
.h9{height:38.953125pt;}
.h21{height:39.347188pt;}
.h4{height:39.520000pt;}
.h18{height:40.410625pt;}
.h8{height:41.543750pt;}
.ha{height:41.968750pt;}
.h24{height:42.649687pt;}
.h20{height:42.686792pt;}
.hf{height:42.708125pt;}
.h1e{height:42.944375pt;}
.h1f{height:43.108125pt;}
.h2{height:48.960000pt;}
.h10{height:54.390938pt;}
.h23{height:58.563750pt;}
.h12{height:63.996562pt;}
.h13{height:67.645000pt;}
.hb{height:74.680312pt;}
.h11{height:78.630000pt;}
.h7{height:89.437500pt;}
.h14{height:94.525000pt;}
.h17{height:103.485000pt;}
.h15{height:108.605000pt;}
.h16{height:144.445000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:58.240000pt;}
.w9{width:95.392000pt;}
.wa{width:101.280000pt;}
.w8{width:107.392000pt;}
.w7{width:113.440000pt;}
.w6{width:145.626667pt;}
.w2{width:172.986667pt;}
.w3{width:216.066667pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2a{left:8.640000pt;}
.x2{left:9.600000pt;}
.x28{left:11.200000pt;}
.x1f{left:16.160000pt;}
.x27{left:20.320000pt;}
.x35{left:23.840000pt;}
.x2c{left:26.560000pt;}
.x23{left:28.160000pt;}
.x2e{left:35.680000pt;}
.x2f{left:38.560000pt;}
.x2d{left:41.626667pt;}
.x32{left:44.346667pt;}
.x34{left:45.280000pt;}
.x25{left:46.266667pt;}
.x2b{left:47.200000pt;}
.x31{left:49.920000pt;}
.x36{left:53.920000pt;}
.x33{left:60.800000pt;}
.x3{left:62.560000pt;}
.x21{left:65.280000pt;}
.x30{left:67.360000pt;}
.x11{left:68.799988pt;}
.xa{left:71.840000pt;}
.x7{left:77.760000pt;}
.x45{left:81.311988pt;}
.x1e{left:84.672000pt;}
.x44{left:90.911988pt;}
.x1d{left:112.671988pt;}
.x13{left:135.866655pt;}
.x40{left:139.386655pt;}
.x20{left:143.546667pt;}
.xb{left:161.306667pt;}
.x8{left:162.266667pt;}
.x3d{left:165.146655pt;}
.x38{left:168.346655pt;}
.x41{left:169.466655pt;}
.x3a{left:172.186655pt;}
.x9{left:196.826667pt;}
.x22{left:289.826667pt;}
.x3e{left:314.786655pt;}
.x12{left:336.386655pt;}
.x4{left:339.746667pt;}
.x5{left:380.386667pt;}
.x6{left:390.306667pt;}
.x10{left:396.866655pt;}
.x24{left:403.906667pt;}
.xc{left:406.626667pt;}
.xe{left:411.426667pt;}
.xd{left:416.093333pt;}
.x1{left:420.733333pt;}
.x46{left:425.533322pt;}
.x43{left:435.133322pt;}
.x14{left:456.253322pt;}
.x1c{left:460.413322pt;}
.x19{left:476.253322pt;}
.x18{left:479.933322pt;}
.x48{left:481.053322pt;}
.x49{left:485.053322pt;}
.x16{left:492.093322pt;}
.x47{left:502.493322pt;}
.x42{left:504.093322pt;}
.x1a{left:510.653322pt;}
.x26{left:511.933333pt;}
.xf{left:530.973333pt;}
.x15{left:568.253322pt;}
.x1b{left:595.973322pt;}
.x29{left:607.973333pt;}
.x3b{left:651.973322pt;}
.x37{left:655.973322pt;}
.x39{left:671.973322pt;}
.x3c{left:694.053322pt;}
.x3f{left:711.973322pt;}
.x4a{left:728.613322pt;}
.x17{left:762.239988pt;}
}




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