
    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_d2284e176b4b5f0058ab05f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_62b7bf30ae0de7213675ec0b.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_a75e79d2811307207eee01ab.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_57b682bb79176b446ae3893d.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0c2b6a49144d00e43e1cf644.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_a480403690f4eb1c33a02f58.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.942383;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_4886d30aa75ea6723c1c281a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_e60b81de09a902a78a612fcc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.900391;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_707ce9dc4ea08897fbe5e2a8.woff2')format("woff");}.ff9{font-family:ff9;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: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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.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);}
.ve{vertical-align:-6.000000px;}
.v0{vertical-align:0.000000px;}
.v10{vertical-align:5.280000px;}
.v2{vertical-align:15.600000px;}
.v11{vertical-align:20.160000px;}
.v3{vertical-align:24.000000px;}
.v8{vertical-align:26.400000px;}
.v1{vertical-align:27.660000px;}
.v4{vertical-align:28.680000px;}
.v6{vertical-align:29.700000px;}
.vb{vertical-align:31.380000px;}
.v7{vertical-align:33.000000px;}
.va{vertical-align:34.380000px;}
.vd{vertical-align:37.500000px;}
.v9{vertical-align:44.580000px;}
.vf{vertical-align:56.100000px;}
.v5{vertical-align:59.580000px;}
.vc{vertical-align:107.700000px;}
.ls7{letter-spacing:-1.080000px;}
.lsa{letter-spacing:-0.600000px;}
.ls14{letter-spacing:-0.496200px;}
.lsb{letter-spacing:-0.480000px;}
.ls13{letter-spacing:-0.420000px;}
.lsd{letter-spacing:-0.378000px;}
.lsc{letter-spacing:-0.240000px;}
.ls11{letter-spacing:-0.120000px;}
.ls1{letter-spacing:-0.048000px;}
.ls2{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.018000px;}
.ls0{letter-spacing:0.060000px;}
.ls8{letter-spacing:0.078000px;}
.ls6{letter-spacing:0.120000px;}
.ls10{letter-spacing:0.162000px;}
.ls17{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.240000px;}
.ls3{letter-spacing:0.288000px;}
.lsf{letter-spacing:0.324000px;}
.ls4{letter-spacing:0.384000px;}
.ls12{letter-spacing:0.420000px;}
.lse{letter-spacing:0.600000px;}
.ls18{letter-spacing:15.720000px;}
.ls15{letter-spacing:31.320000px;}
.ls16{letter-spacing:45.720000px;}
.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;}
}
.ws1f{word-spacing:-60.000000px;}
.ws1{word-spacing:-18.384000px;}
.ws20{word-spacing:-18.000000px;}
.ws6{word-spacing:-16.500000px;}
.ws15{word-spacing:-15.420000px;}
.ws0{word-spacing:-15.204000px;}
.ws2{word-spacing:-15.000000px;}
.ws9{word-spacing:-14.880000px;}
.ws4{word-spacing:-12.900000px;}
.ws10{word-spacing:-12.366000px;}
.ws1d{word-spacing:-12.237900px;}
.ws12{word-spacing:-12.204000px;}
.ws5{word-spacing:-12.000000px;}
.ws8{word-spacing:-11.100000px;}
.ws7{word-spacing:-10.500000px;}
.ws14{word-spacing:-9.900000px;}
.ws11{word-spacing:-0.063600px;}
.ws1c{word-spacing:-0.060000px;}
.ws3{word-spacing:0.000000px;}
.ws1b{word-spacing:12.708000px;}
.ws19{word-spacing:13.338000px;}
.ws16{word-spacing:13.398000px;}
.ws1a{word-spacing:13.458000px;}
.ws18{word-spacing:13.518000px;}
.ws17{word-spacing:13.578000px;}
.wsa{word-spacing:20.208000px;}
.wse{word-spacing:20.268000px;}
.wsc{word-spacing:20.898000px;}
.wsd{word-spacing:21.018000px;}
.wsb{word-spacing:21.078000px;}
.wsf{word-spacing:21.236700px;}
.ws1e{word-spacing:28.032000px;}
.ws13{word-spacing:35.712000px;}
._13{margin-left:-2.172000px;}
._0{margin-left:-1.152000px;}
._1{width:1.296000px;}
._6{width:2.304000px;}
._7{width:3.552000px;}
._8{width:4.944000px;}
._d{width:6.000000px;}
._9{width:7.020000px;}
._a{width:8.484000px;}
._e{width:9.540000px;}
._b{width:10.560000px;}
._c{width:11.952000px;}
._12{width:13.944000px;}
._f{width:16.860000px;}
._10{width:18.300000px;}
._11{width:19.470000px;}
._14{width:20.940000px;}
._18{width:22.440000px;}
._19{width:23.880000px;}
._17{width:39.180000px;}
._16{width:41.292000px;}
._15{width:46.890000px;}
._4{width:336.180000px;}
._2{width:559.950000px;}
._3{width:642.780000px;}
._5{width:1180.080000px;}
.fc6{color:transparent;}
.fc9{color:rgb(89,89,89);}
.fc8{color:rgb(64,64,64);}
.fc7{color:rgb(127,127,127);}
.fc3{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(238,0,0);}
.fc5{color:rgb(31,73,125);}
.fc4{color:rgb(0,176,240);}
.fc0{color:rgb(192,0,0);}
.fs6{font-size:12.000000px;}
.fs3{font-size:18.000000px;}
.fsa{font-size:27.600000px;}
.fs7{font-size:30.000000px;}
.fs8{font-size:39.600000px;}
.fs9{font-size:42.000000px;}
.fsc{font-size:45.600000px;}
.fs0{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fsd{font-size:54.150000px;}
.fs2{font-size:60.000000px;}
.fsf{font-size:60.150000px;}
.fse{font-size:63.600000px;}
.fs1{font-size:66.000000px;}
.fsb{font-size:69.600000px;}
.fs4{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.yb6{bottom:2.085000px;}
.ya6{bottom:2.100000px;}
.yc9{bottom:2.115000px;}
.yc6{bottom:2.400000px;}
.ybc{bottom:2.415000px;}
.y48{bottom:2.715000px;}
.y53{bottom:2.745000px;}
.y114{bottom:3.000000px;}
.yac{bottom:3.900000px;}
.yf{bottom:3.915000px;}
.y10c{bottom:4.800000px;}
.y10f{bottom:5.100000px;}
.ye{bottom:5.115000px;}
.y2{bottom:5.400000px;}
.y66{bottom:5.685000px;}
.y58{bottom:5.700000px;}
.y64{bottom:5.715000px;}
.yd0{bottom:6.000000px;}
.yd5{bottom:6.015000px;}
.yd8{bottom:6.300000px;}
.y4f{bottom:6.315000px;}
.y4b{bottom:6.615000px;}
.y5c{bottom:7.500000px;}
.y62{bottom:7.515000px;}
.y60{bottom:7.800000px;}
.yc2{bottom:8.100000px;}
.ybe{bottom:8.145000px;}
.yc5{bottom:8.400000px;}
.y112{bottom:9.000000px;}
.y56{bottom:9.645000px;}
.yaa{bottom:9.900000px;}
.yd1{bottom:11.100000px;}
.yd6{bottom:11.115000px;}
.yce{bottom:11.400000px;}
.yd3{bottom:11.415000px;}
.y5{bottom:12.337500px;}
.yb5{bottom:14.085000px;}
.ya4{bottom:14.100000px;}
.ybf{bottom:14.145000px;}
.y108{bottom:14.385000px;}
.ya8{bottom:14.400000px;}
.y15b{bottom:15.000000px;}
.y105{bottom:15.120000px;}
.y113{bottom:15.300000px;}
.yab{bottom:16.200000px;}
.y52{bottom:16.530000px;}
.y10e{bottom:17.100000px;}
.y117{bottom:20.100000px;}
.yb2{bottom:20.385000px;}
.y4a{bottom:20.415000px;}
.y3f{bottom:20.445000px;}
.y55{bottom:23.445000px;}
.yc8{bottom:26.145000px;}
.yb4{bottom:26.385000px;}
.ya5{bottom:26.400000px;}
.yb9{bottom:26.415000px;}
.yb0{bottom:26.445000px;}
.y4d{bottom:27.330000px;}
.y51{bottom:30.330000px;}
.y4e{bottom:34.245000px;}
.y54{bottom:37.245000px;}
.yb3{bottom:38.385000px;}
.y116{bottom:38.400000px;}
.ybb{bottom:38.415000px;}
.yaf{bottom:38.445000px;}
.y15a{bottom:40.320000px;}
.y104{bottom:40.425000px;}
.y3e{bottom:40.545000px;}
.y4c{bottom:41.145000px;}
.y46{bottom:41.445000px;}
.y50{bottom:44.145000px;}
.y4{bottom:46.800000px;}
.y10a{bottom:50.385000px;}
.yba{bottom:50.700000px;}
.y1{bottom:57.037500px;}
.y3d{bottom:57.945000px;}
.y103{bottom:65.745000px;}
.y159{bottom:70.245000px;}
.y41{bottom:74.137500px;}
.y3c{bottom:75.045000px;}
.y3{bottom:81.337500px;}
.y150{bottom:87.780000px;}
.y3b{bottom:92.445000px;}
.y102{bottom:95.625000px;}
.ye7{bottom:107.955000px;}
.yed{bottom:107.970000px;}
.yef{bottom:108.045000px;}
.ye9{bottom:108.180000px;}
.yeb{bottom:108.195000px;}
.y3a{bottom:109.530000px;}
.y86{bottom:111.337500px;}
.y32{bottom:113.137500px;}
.yf1{bottom:113.205000px;}
.y151{bottom:114.780000px;}
.y85{bottom:116.737500px;}
.y14e{bottom:116.775000px;}
.y147{bottom:116.805000px;}
.y13d{bottom:116.880000px;}
.y141{bottom:116.895000px;}
.y13a{bottom:116.925000px;}
.y149{bottom:116.955000px;}
.y14b{bottom:117.000000px;}
.y144{bottom:117.030000px;}
.y13f{bottom:117.075000px;}
.y39{bottom:126.945000px;}
.ya2{bottom:128.437500px;}
.y84{bottom:129.637500px;}
.y31{bottom:130.537500px;}
.ya1{bottom:133.837500px;}
.yfa{bottom:141.675000px;}
.y152{bottom:141.750000px;}
.y38{bottom:144.030000px;}
.y18b{bottom:144.037500px;}
.yf2{bottom:145.245000px;}
.ya0{bottom:146.737500px;}
.y30{bottom:147.637500px;}
.ye2{bottom:154.830000px;}
.ye3{bottom:160.245000px;}
.y18a{bottom:161.130000px;}
.y37{bottom:161.430000px;}
.y2f{bottom:165.030000px;}
.y153{bottom:168.720000px;}
.yfb{bottom:170.145000px;}
.ye1{bottom:172.230000px;}
.y1b4{bottom:173.430000px;}
.yc7{bottom:174.030000px;}
.yf3{bottom:177.270000px;}
.y36{bottom:178.530000px;}
.y189{bottom:179.475000px;}
.y136{bottom:181.575000px;}
.y2e{bottom:182.175000px;}
.y83{bottom:186.675000px;}
.y137{bottom:186.975000px;}
.ye0{bottom:189.375000px;}
.y154{bottom:195.720000px;}
.y35{bottom:195.975000px;}
.y188{bottom:196.875000px;}
.yfc{bottom:198.600000px;}
.y135{bottom:198.975000px;}
.y2d{bottom:199.575000px;}
.y1b3{bottom:203.475000px;}
.y82{bottom:204.075000px;}
.ydf{bottom:206.775000px;}
.yf4{bottom:209.280000px;}
.yc4{bottom:211.575000px;}
.y34{bottom:213.675000px;}
.y187{bottom:215.175000px;}
.y134{bottom:216.375000px;}
.y2c{bottom:216.675000px;}
.yde{bottom:220.575000px;}
.y81{bottom:221.475000px;}
.y155{bottom:222.675000px;}
.ye4{bottom:226.800000px;}
.yfd{bottom:227.070000px;}
.y186{bottom:232.275000px;}
.y133{bottom:233.475000px;}
.y2b{bottom:234.075000px;}
.y1b2{bottom:236.175000px;}
.yc3{bottom:237.375000px;}
.y80{bottom:238.575000px;}
.yf5{bottom:241.320000px;}
.y156{bottom:249.675000px;}
.y185{bottom:250.875000px;}
.y2a{bottom:251.775000px;}
.ye5{bottom:252.195000px;}
.y132{bottom:254.775000px;}
.yfe{bottom:255.525000px;}
.y1b1{bottom:256.275000px;}
.y138{bottom:261.600000px;}
.y7f{bottom:266.175000px;}
.y184{bottom:267.975000px;}
.y29{bottom:271.275000px;}
.yf6{bottom:273.330000px;}
.y1b0{bottom:273.675000px;}
.yc1{bottom:275.175000px;}
.y157{bottom:276.645000px;}
.y7e{bottom:283.575000px;}
.yff{bottom:284.025000px;}
.y28{bottom:285.675000px;}
.y183{bottom:286.275000px;}
.y14f{bottom:289.800000px;}
.y1af{bottom:290.775000px;}
.yf0{bottom:291.000000px;}
.yc0{bottom:300.675000px;}
.y27{bottom:303.075000px;}
.y158{bottom:303.600000px;}
.y182{bottom:303.675000px;}
.yf7{bottom:305.355000px;}
.y1ae{bottom:308.175000px;}
.y100{bottom:312.480000px;}
.y7d{bottom:312.675000px;}
.y26{bottom:320.175000px;}
.y181{bottom:320.775000px;}
.y14d{bottom:323.100000px;}
.y1ad{bottom:325.275000px;}
.y7c{bottom:330.075000px;}
.y143{bottom:332.100000px;}
.yee{bottom:332.700000px;}
.yf8{bottom:337.395000px;}
.y14c{bottom:337.500000px;}
.y25{bottom:337.575000px;}
.y180{bottom:337.875000px;}
.y145{bottom:338.400000px;}
.ybd{bottom:338.475000px;}
.y101{bottom:340.950000px;}
.y142{bottom:341.100000px;}
.y1ac{bottom:342.675000px;}
.y7b{bottom:347.505000px;}
.yec{bottom:354.600000px;}
.y24{bottom:354.705000px;}
.y14a{bottom:356.400000px;}
.y17f{bottom:356.505000px;}
.y1ab{bottom:359.820000px;}
.y148{bottom:362.700000px;}
.yb8{bottom:364.005000px;}
.y7a{bottom:364.605000px;}
.yf9{bottom:369.420000px;}
.y146{bottom:371.400000px;}
.y23{bottom:372.105000px;}
.y17e{bottom:373.620000px;}
.yea{bottom:375.000000px;}
.y1aa{bottom:377.205000px;}
.y79{bottom:382.020000px;}
.y13e{bottom:388.500000px;}
.y139{bottom:388.800000px;}
.y22{bottom:389.220000px;}
.y140{bottom:389.400000px;}
.y17d{bottom:391.905000px;}
.y1a9{bottom:394.320000px;}
.y13c{bottom:397.500000px;}
.y78{bottom:399.120000px;}
.y21{bottom:406.620000px;}
.y17c{bottom:409.005000px;}
.y13b{bottom:410.400000px;}
.y1a8{bottom:411.705000px;}
.y77{bottom:416.505000px;}
.y20{bottom:423.705000px;}
.yb7{bottom:426.120000px;}
.y17b{bottom:427.620000px;}
.y1a7{bottom:428.820000px;}
.yb1{bottom:439.620000px;}
.y1f{bottom:441.120000px;}
.y76{bottom:443.820000px;}
.y17a{bottom:444.720000px;}
.y1a6{bottom:446.205000px;}
.ye8{bottom:456.600000px;}
.y1e{bottom:458.220000px;}
.y75{bottom:461.505000px;}
.ye6{bottom:462.000000px;}
.y179{bottom:463.005000px;}
.y1a5{bottom:463.320000px;}
.y1d{bottom:475.620000px;}
.y74{bottom:478.620000px;}
.y1a4{bottom:480.705000px;}
.y178{bottom:481.620000px;}
.yae{bottom:489.405000px;}
.y1c{bottom:492.705000px;}
.y73{bottom:496.005000px;}
.y1a3{bottom:497.820000px;}
.y177{bottom:498.720000px;}
.y1b{bottom:510.120000px;}
.y72{bottom:513.120000px;}
.y1a2{bottom:515.250000px;}
.y176{bottom:517.050000px;}
.y1a{bottom:527.250000px;}
.y71{bottom:529.650000px;}
.y1a1{bottom:532.350000px;}
.y175{bottom:534.450000px;}
.yad{bottom:539.250000px;}
.y70{bottom:541.650000px;}
.y19{bottom:544.650000px;}
.y1a0{bottom:549.750000px;}
.y174{bottom:551.550000px;}
.ya9{bottom:559.050000px;}
.y18{bottom:561.750000px;}
.y6f{bottom:562.050000px;}
.y19f{bottom:566.850000px;}
.y173{bottom:568.950000px;}
.y17{bottom:579.150000px;}
.y19e{bottom:584.250000px;}
.y6e{bottom:586.650000px;}
.ya7{bottom:588.150000px;}
.y16{bottom:596.850000px;}
.y172{bottom:597.750000px;}
.y19d{bottom:601.350000px;}
.y131{bottom:603.150000px;}
.y6d{bottom:610.950000px;}
.y171{bottom:615.450000px;}
.y19c{bottom:618.750000px;}
.y130{bottom:620.550000px;}
.ydd{bottom:624.150000px;}
.ya3{bottom:625.950000px;}
.ydc{bottom:630.150000px;}
.y170{bottom:632.550000px;}
.y6c{bottom:635.250000px;}
.y19b{bottom:635.850000px;}
.y12f{bottom:637.950000px;}
.ydb{bottom:647.550000px;}
.y16f{bottom:649.950000px;}
.y19a{bottom:653.250000px;}
.y12e{bottom:655.050000px;}
.y6b{bottom:659.550000px;}
.yda{bottom:664.650000px;}
.y16e{bottom:667.050000px;}
.y33{bottom:668.550000px;}
.y199{bottom:670.350000px;}
.y9e{bottom:673.650000px;}
.y9f{bottom:679.650000px;}
.y6a{bottom:684.195000px;}
.y16d{bottom:684.480000px;}
.yd9{bottom:686.880000px;}
.y198{bottom:687.780000px;}
.y9d{bottom:692.595000px;}
.y12d{bottom:701.580000px;}
.y197{bottom:704.880000px;}
.y69{bottom:708.480000px;}
.yd7{bottom:709.980000px;}
.y16c{bottom:713.280000px;}
.y12c{bottom:718.995000px;}
.y196{bottom:722.295000px;}
.y9c{bottom:723.195000px;}
.y16b{bottom:730.995000px;}
.y68{bottom:732.780000px;}
.yd4{bottom:733.380000px;}
.y12b{bottom:736.095000px;}
.y195{bottom:739.395000px;}
.y9b{bottom:740.580000px;}
.yd2{bottom:756.480000px;}
.y194{bottom:756.780000px;}
.y67{bottom:757.095000px;}
.y9a{bottom:757.995000px;}
.y16a{bottom:759.780000px;}
.y12a{bottom:765.195000px;}
.y193{bottom:773.880000px;}
.y99{bottom:775.080000px;}
.y169{bottom:777.480000px;}
.ycf{bottom:779.880000px;}
.y65{bottom:781.695000px;}
.y129{bottom:782.580000px;}
.y192{bottom:791.295000px;}
.y98{bottom:792.480000px;}
.y168{bottom:794.580000px;}
.y128{bottom:799.995000px;}
.ycd{bottom:802.980000px;}
.y63{bottom:805.980000px;}
.y191{bottom:808.395000px;}
.y97{bottom:809.580000px;}
.y127{bottom:817.080000px;}
.y167{bottom:823.695000px;}
.y190{bottom:825.795000px;}
.ycb{bottom:829.980000px;}
.y61{bottom:830.280000px;}
.ycc{bottom:835.980000px;}
.y96{bottom:837.195000px;}
.y166{bottom:841.080000px;}
.y18f{bottom:843.480000px;}
.y126{bottom:846.195000px;}
.yca{bottom:847.695000px;}
.y5f{bottom:854.625000px;}
.y115{bottom:856.425000px;}
.y165{bottom:858.525000px;}
.y125{bottom:863.625000px;}
.y95{bottom:872.025000px;}
.y18e{bottom:875.325000px;}
.y164{bottom:875.625000px;}
.y5e{bottom:879.225000px;}
.y124{bottom:881.025000px;}
.y94{bottom:889.125000px;}
.y163{bottom:893.025000px;}
.y123{bottom:898.125000px;}
.y5d{bottom:903.525000px;}
.y111{bottom:906.225000px;}
.y93{bottom:906.525000px;}
.y162{bottom:910.125000px;}
.y122{bottom:915.525000px;}
.y92{bottom:923.625000px;}
.y161{bottom:927.525000px;}
.y5b{bottom:927.825000px;}
.y121{bottom:932.625000px;}
.y110{bottom:933.825000px;}
.y91{bottom:941.025000px;}
.y15{bottom:943.125000px;}
.y160{bottom:944.625000px;}
.y5a{bottom:952.125000px;}
.y90{bottom:958.125000px;}
.y120{bottom:961.725000px;}
.y15f{bottom:962.025000px;}
.y14{bottom:964.725000px;}
.y10d{bottom:971.625000px;}
.y59{bottom:972.825000px;}
.y8f{bottom:975.525000px;}
.y11f{bottom:979.125000px;}
.y13{bottom:981.825000px;}
.y57{bottom:993.225000px;}
.y11e{bottom:996.525000px;}
.y12{bottom:997.725000px;}
.y8e{bottom:1002.825000px;}
.y10b{bottom:1003.125000px;}
.y15e{bottom:1008.225000px;}
.y18d{bottom:1013.625000px;}
.y45{bottom:1013.925000px;}
.y11{bottom:1015.425000px;}
.y8d{bottom:1020.570000px;}
.y109{bottom:1022.070000px;}
.y11d{bottom:1025.370000px;}
.y15d{bottom:1025.670000px;}
.y10{bottom:1033.755000px;}
.y8c{bottom:1037.670000px;}
.yd{bottom:1040.955000px;}
.y18c{bottom:1042.755000px;}
.y11c{bottom:1043.070000px;}
.y8b{bottom:1055.070000px;}
.y11b{bottom:1060.170000px;}
.yc{bottom:1062.570000px;}
.yb{bottom:1068.255000px;}
.y49{bottom:1069.755000px;}
.y8a{bottom:1072.170000px;}
.y11a{bottom:1077.570000px;}
.ya{bottom:1083.570000px;}
.y107{bottom:1083.870000px;}
.y15c{bottom:1089.255000px;}
.y89{bottom:1089.570000px;}
.y47{bottom:1091.655000px;}
.y119{bottom:1094.670000px;}
.y9{bottom:1097.955000px;}
.y88{bottom:1106.670000px;}
.y8{bottom:1115.670000px;}
.y43{bottom:1117.455000px;}
.y118{bottom:1123.755000px;}
.y87{bottom:1124.070000px;}
.y44{bottom:1124.370000px;}
.y106{bottom:1133.655000px;}
.y7{bottom:1133.670000px;}
.y42{bottom:1138.170000px;}
.y6{bottom:1141.170000px;}
.y40{bottom:1196.400000px;}
.h9{height:8.378906px;}
.h33{height:8.466797px;}
.h28{height:12.000000px;}
.h5{height:12.700195px;}
.h16{height:13.800000px;}
.h3f{height:17.437500px;}
.h25{height:18.300000px;}
.h1a{height:19.800000px;}
.hb{height:20.947266px;}
.ha{height:21.000000px;}
.h2e{height:21.166992px;}
.h3d{height:21.300000px;}
.h32{height:22.500000px;}
.h1c{height:23.400000px;}
.h1b{height:23.700000px;}
.h1d{height:23.737500px;}
.h2b{height:24.000000px;}
.h2a{height:24.037500px;}
.h2c{height:24.300000px;}
.h41{height:26.100000px;}
.h24{height:27.600000px;}
.h1e{height:27.650391px;}
.h34{height:27.940430px;}
.h23{height:29.326172px;}
.h20{height:29.633789px;}
.h40{height:30.000000px;}
.h30{height:32.173828px;}
.hf{height:33.515625px;}
.h7{height:33.867188px;}
.h22{height:35.073633px;}
.h17{height:35.700000px;}
.h3{height:36.000000px;}
.h2d{height:36.037500px;}
.h21{height:36.300000px;}
.h8{height:37.705078px;}
.hd{height:38.100586px;}
.hc{height:41.894531px;}
.h4{height:42.333984px;}
.h12{height:43.330078px;}
.h55{height:43.681641px;}
.h13{height:44.507812px;}
.h45{height:46.494141px;}
.h1f{height:46.567383px;}
.h47{height:46.610376px;}
.h27{height:48.300000px;}
.h26{height:48.337500px;}
.h31{height:49.107422px;}
.h38{height:49.283789px;}
.he{height:49.453125px;}
.h6{height:50.800781px;}
.h11{height:51.996094px;}
.h3c{height:53.709961px;}
.h54{height:53.859155px;}
.h19{height:55.237500px;}
.h2f{height:56.173828px;}
.h3e{height:60.300000px;}
.h29{height:60.600000px;}
.h14{height:61.527188px;}
.h1{height:65.645508px;}
.h18{height:76.837500px;}
.h15{height:91.537500px;}
.h2{height:97.200000px;}
.h37{height:154.800000px;}
.h39{height:160.200000px;}
.h46{height:175.500000px;}
.h48{height:188.400000px;}
.h4a{height:196.500000px;}
.h44{height:197.100000px;}
.h49{height:197.400000px;}
.h4e{height:214.500000px;}
.h4f{height:223.200000px;}
.h50{height:229.500000px;}
.h10{height:230.475000px;}
.h3a{height:241.800000px;}
.h4b{height:244.800000px;}
.h4d{height:247.500000px;}
.h51{height:248.400000px;}
.h3b{height:253.200000px;}
.h4c{height:253.800000px;}
.h52{height:262.800000px;}
.h53{height:265.200000px;}
.h42{height:324.300000px;}
.h35{height:390.000000px;}
.h43{height:413.109961px;}
.h36{height:445.929961px;}
.h0{height:1263.000000px;}
.w1c{width:30.000000px;}
.w22{width:39.000000px;}
.w23{width:39.037500px;}
.w28{width:39.300000px;}
.w1f{width:39.600000px;}
.w27{width:40.800000px;}
.w21{width:41.700000px;}
.w20{width:41.737500px;}
.w26{width:43.237500px;}
.w25{width:46.800000px;}
.w24{width:47.400000px;}
.w29{width:48.900000px;}
.w2c{width:49.200000px;}
.w2b{width:49.237500px;}
.w1e{width:50.100000px;}
.w9{width:51.000000px;}
.w15{width:61.500000px;}
.w12{width:61.837500px;}
.w1b{width:62.137500px;}
.w16{width:67.237500px;}
.w10{width:69.000000px;}
.w19{width:69.300000px;}
.w4{width:72.300000px;}
.w2d{width:73.237500px;}
.w2e{width:78.000000px;}
.we{width:80.737500px;}
.w14{width:81.000000px;}
.w17{width:81.037500px;}
.w2a{width:85.500000px;}
.w1d{width:85.537500px;}
.wf{width:88.837500px;}
.w18{width:89.137500px;}
.w32{width:93.600000px;}
.w36{width:103.500000px;}
.w3{width:108.000000px;}
.w11{width:111.637500px;}
.w1a{width:111.937500px;}
.wd{width:128.737500px;}
.w35{width:133.800000px;}
.w34{width:134.100000px;}
.w31{width:138.900000px;}
.w30{width:139.200000px;}
.w13{width:143.137500px;}
.wa{width:170.475000px;}
.wb{width:181.545000px;}
.wc{width:205.575000px;}
.w6{width:253.275000px;}
.w5{width:483.450000px;}
.w33{width:668.100000px;}
.w2f{width:693.300000px;}
.w7{width:730.125000px;}
.w8{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x5b{left:-3.600000px;}
.x5a{left:-1.815000px;}
.x0{left:0.000000px;}
.x59{left:1.200000px;}
.x58{left:3.300000px;}
.x1e{left:7.800000px;}
.x21{left:9.000000px;}
.x2{left:10.799998px;}
.x17{left:12.900000px;}
.x24{left:14.100000px;}
.x13{left:16.200000px;}
.x22{left:17.985000px;}
.x1b{left:19.200000px;}
.x42{left:20.700000px;}
.x3{left:22.200000px;}
.x43{left:23.385000px;}
.x1f{left:24.892500px;}
.x45{left:26.400000px;}
.x4{left:27.600000px;}
.x44{left:29.400000px;}
.x26{left:30.900000px;}
.x19{left:33.292500px;}
.x4d{left:35.100000px;}
.x29{left:37.492500px;}
.x2e{left:38.685000px;}
.x2c{left:40.207500px;}
.x2a{left:41.700000px;}
.x2d{left:45.630000px;}
.x2b{left:53.130000px;}
.x51{left:57.000000px;}
.x57{left:58.987500px;}
.x33{left:65.137500px;}
.xb{left:78.337500px;}
.x1{left:81.037487px;}
.x12{left:83.137500px;}
.x30{left:86.137487px;}
.x34{left:96.037500px;}
.x31{left:108.637473px;}
.x32{left:114.037487px;}
.xe{left:116.745000px;}
.x18{left:132.637500px;}
.x9{left:153.629987px;}
.xf{left:160.829987px;}
.x48{left:167.745000px;}
.x52{left:180.600000px;}
.x35{left:182.175000px;}
.x5e{left:193.200000px;}
.x6b{left:203.595000px;}
.x20{left:214.275000px;}
.x49{left:217.575000px;}
.x11{left:225.074987px;}
.x5f{left:230.700000px;}
.x36{left:232.875000px;}
.xc{left:241.567500px;}
.x4f{left:252.674973px;}
.x50{left:257.774987px;}
.x53{left:261.300000px;}
.x4a{left:267.675000px;}
.x37{left:273.375000px;}
.x2f{left:297.119987px;}
.x1a{left:303.420000px;}
.x60{left:305.100000px;}
.x5c{left:314.519973px;}
.x38{left:315.720000px;}
.x5d{left:319.619987px;}
.x61{left:342.300000px;}
.x4b{left:353.820000px;}
.x39{left:358.320000px;}
.x23{left:373.320000px;}
.x10{left:394.004987px;}
.x3a{left:398.220000px;}
.x6{left:405.119987px;}
.x62{left:415.500000px;}
.x4c{left:427.650000px;}
.x3b{left:437.850000px;}
.x63{left:454.200000px;}
.x1c{left:485.250000px;}
.x64{left:491.400000px;}
.x65{left:528.900000px;}
.x3c{left:533.850000px;}
.x25{left:547.695000px;}
.xd{left:561.780000px;}
.x66{left:566.100000px;}
.x3d{left:577.695000px;}
.x14{left:588.494987px;}
.x54{left:602.100000px;}
.x67{left:603.300000px;}
.x8{left:614.879987px;}
.x3e{left:617.595000px;}
.x15{left:624.194973px;}
.x27{left:628.995000px;}
.x16{left:630.194987px;}
.x68{left:640.500000px;}
.x7{left:648.194987px;}
.x56{left:653.175000px;}
.x3f{left:657.525000px;}
.x69{left:678.000000px;}
.x55{left:685.200000px;}
.x1d{left:691.425000px;}
.x5{left:698.624987px;}
.x6a{left:712.200000px;}
.x40{left:739.425000px;}
.x28{left:752.925000px;}
.x41{left:779.370000px;}
.x4e{left:785.369987px;}
.x46{left:787.454973px;}
.x47{left:793.169987px;}
.xa{left:812.369987px;}
@media print{
.ve{vertical-align:-5.333333pt;}
.v0{vertical-align:0.000000pt;}
.v10{vertical-align:4.693333pt;}
.v2{vertical-align:13.866667pt;}
.v11{vertical-align:17.920000pt;}
.v3{vertical-align:21.333333pt;}
.v8{vertical-align:23.466667pt;}
.v1{vertical-align:24.586667pt;}
.v4{vertical-align:25.493333pt;}
.v6{vertical-align:26.400000pt;}
.vb{vertical-align:27.893333pt;}
.v7{vertical-align:29.333333pt;}
.va{vertical-align:30.560000pt;}
.vd{vertical-align:33.333333pt;}
.v9{vertical-align:39.626667pt;}
.vf{vertical-align:49.866667pt;}
.v5{vertical-align:52.960000pt;}
.vc{vertical-align:95.733333pt;}
.ls7{letter-spacing:-0.960000pt;}
.lsa{letter-spacing:-0.533333pt;}
.ls14{letter-spacing:-0.441067pt;}
.lsb{letter-spacing:-0.426667pt;}
.ls13{letter-spacing:-0.373333pt;}
.lsd{letter-spacing:-0.336000pt;}
.lsc{letter-spacing:-0.213333pt;}
.ls11{letter-spacing:-0.106667pt;}
.ls1{letter-spacing:-0.042667pt;}
.ls2{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.016000pt;}
.ls0{letter-spacing:0.053333pt;}
.ls8{letter-spacing:0.069333pt;}
.ls6{letter-spacing:0.106667pt;}
.ls10{letter-spacing:0.144000pt;}
.ls17{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.213333pt;}
.ls3{letter-spacing:0.256000pt;}
.lsf{letter-spacing:0.288000pt;}
.ls4{letter-spacing:0.341333pt;}
.ls12{letter-spacing:0.373333pt;}
.lse{letter-spacing:0.533333pt;}
.ls18{letter-spacing:13.973333pt;}
.ls15{letter-spacing:27.840000pt;}
.ls16{letter-spacing:40.640000pt;}
.ws1f{word-spacing:-53.333333pt;}
.ws1{word-spacing:-16.341333pt;}
.ws20{word-spacing:-16.000000pt;}
.ws6{word-spacing:-14.666667pt;}
.ws15{word-spacing:-13.706667pt;}
.ws0{word-spacing:-13.514667pt;}
.ws2{word-spacing:-13.333333pt;}
.ws9{word-spacing:-13.226667pt;}
.ws4{word-spacing:-11.466667pt;}
.ws10{word-spacing:-10.992000pt;}
.ws1d{word-spacing:-10.878133pt;}
.ws12{word-spacing:-10.848000pt;}
.ws5{word-spacing:-10.666667pt;}
.ws8{word-spacing:-9.866667pt;}
.ws7{word-spacing:-9.333333pt;}
.ws14{word-spacing:-8.800000pt;}
.ws11{word-spacing:-0.056533pt;}
.ws1c{word-spacing:-0.053333pt;}
.ws3{word-spacing:0.000000pt;}
.ws1b{word-spacing:11.296000pt;}
.ws19{word-spacing:11.856000pt;}
.ws16{word-spacing:11.909333pt;}
.ws1a{word-spacing:11.962667pt;}
.ws18{word-spacing:12.016000pt;}
.ws17{word-spacing:12.069333pt;}
.wsa{word-spacing:17.962667pt;}
.wse{word-spacing:18.016000pt;}
.wsc{word-spacing:18.576000pt;}
.wsd{word-spacing:18.682667pt;}
.wsb{word-spacing:18.736000pt;}
.wsf{word-spacing:18.877067pt;}
.ws1e{word-spacing:24.917333pt;}
.ws13{word-spacing:31.744000pt;}
._13{margin-left:-1.930667pt;}
._0{margin-left:-1.024000pt;}
._1{width:1.152000pt;}
._6{width:2.048000pt;}
._7{width:3.157333pt;}
._8{width:4.394667pt;}
._d{width:5.333333pt;}
._9{width:6.240000pt;}
._a{width:7.541333pt;}
._e{width:8.480000pt;}
._b{width:9.386667pt;}
._c{width:10.624000pt;}
._12{width:12.394667pt;}
._f{width:14.986667pt;}
._10{width:16.266667pt;}
._11{width:17.306667pt;}
._14{width:18.613333pt;}
._18{width:19.946667pt;}
._19{width:21.226667pt;}
._17{width:34.826667pt;}
._16{width:36.704000pt;}
._15{width:41.680000pt;}
._4{width:298.826667pt;}
._2{width:497.733333pt;}
._3{width:571.360000pt;}
._5{width:1048.960000pt;}
.fs6{font-size:10.666667pt;}
.fs3{font-size:16.000000pt;}
.fsa{font-size:24.533333pt;}
.fs7{font-size:26.666667pt;}
.fs8{font-size:35.200000pt;}
.fs9{font-size:37.333333pt;}
.fsc{font-size:40.533333pt;}
.fs0{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fsd{font-size:48.133333pt;}
.fs2{font-size:53.333333pt;}
.fsf{font-size:53.466667pt;}
.fse{font-size:56.533333pt;}
.fs1{font-size:58.666667pt;}
.fsb{font-size:61.866667pt;}
.fs4{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.yb6{bottom:1.853333pt;}
.ya6{bottom:1.866667pt;}
.yc9{bottom:1.880000pt;}
.yc6{bottom:2.133333pt;}
.ybc{bottom:2.146667pt;}
.y48{bottom:2.413333pt;}
.y53{bottom:2.440000pt;}
.y114{bottom:2.666667pt;}
.yac{bottom:3.466667pt;}
.yf{bottom:3.480000pt;}
.y10c{bottom:4.266667pt;}
.y10f{bottom:4.533333pt;}
.ye{bottom:4.546667pt;}
.y2{bottom:4.800000pt;}
.y66{bottom:5.053333pt;}
.y58{bottom:5.066667pt;}
.y64{bottom:5.080000pt;}
.yd0{bottom:5.333333pt;}
.yd5{bottom:5.346667pt;}
.yd8{bottom:5.600000pt;}
.y4f{bottom:5.613333pt;}
.y4b{bottom:5.880000pt;}
.y5c{bottom:6.666667pt;}
.y62{bottom:6.680000pt;}
.y60{bottom:6.933333pt;}
.yc2{bottom:7.200000pt;}
.ybe{bottom:7.240000pt;}
.yc5{bottom:7.466667pt;}
.y112{bottom:8.000000pt;}
.y56{bottom:8.573333pt;}
.yaa{bottom:8.800000pt;}
.yd1{bottom:9.866667pt;}
.yd6{bottom:9.880000pt;}
.yce{bottom:10.133333pt;}
.yd3{bottom:10.146667pt;}
.y5{bottom:10.966667pt;}
.yb5{bottom:12.520000pt;}
.ya4{bottom:12.533333pt;}
.ybf{bottom:12.573333pt;}
.y108{bottom:12.786667pt;}
.ya8{bottom:12.800000pt;}
.y15b{bottom:13.333333pt;}
.y105{bottom:13.440000pt;}
.y113{bottom:13.600000pt;}
.yab{bottom:14.400000pt;}
.y52{bottom:14.693333pt;}
.y10e{bottom:15.200000pt;}
.y117{bottom:17.866667pt;}
.yb2{bottom:18.120000pt;}
.y4a{bottom:18.146667pt;}
.y3f{bottom:18.173333pt;}
.y55{bottom:20.840000pt;}
.yc8{bottom:23.240000pt;}
.yb4{bottom:23.453333pt;}
.ya5{bottom:23.466667pt;}
.yb9{bottom:23.480000pt;}
.yb0{bottom:23.506667pt;}
.y4d{bottom:24.293333pt;}
.y51{bottom:26.960000pt;}
.y4e{bottom:30.440000pt;}
.y54{bottom:33.106667pt;}
.yb3{bottom:34.120000pt;}
.y116{bottom:34.133333pt;}
.ybb{bottom:34.146667pt;}
.yaf{bottom:34.173333pt;}
.y15a{bottom:35.840000pt;}
.y104{bottom:35.933333pt;}
.y3e{bottom:36.040000pt;}
.y4c{bottom:36.573333pt;}
.y46{bottom:36.840000pt;}
.y50{bottom:39.240000pt;}
.y4{bottom:41.600000pt;}
.y10a{bottom:44.786667pt;}
.yba{bottom:45.066667pt;}
.y1{bottom:50.700000pt;}
.y3d{bottom:51.506667pt;}
.y103{bottom:58.440000pt;}
.y159{bottom:62.440000pt;}
.y41{bottom:65.900000pt;}
.y3c{bottom:66.706667pt;}
.y3{bottom:72.300000pt;}
.y150{bottom:78.026667pt;}
.y3b{bottom:82.173333pt;}
.y102{bottom:85.000000pt;}
.ye7{bottom:95.960000pt;}
.yed{bottom:95.973333pt;}
.yef{bottom:96.040000pt;}
.ye9{bottom:96.160000pt;}
.yeb{bottom:96.173333pt;}
.y3a{bottom:97.360000pt;}
.y86{bottom:98.966667pt;}
.y32{bottom:100.566667pt;}
.yf1{bottom:100.626667pt;}
.y151{bottom:102.026667pt;}
.y85{bottom:103.766667pt;}
.y14e{bottom:103.800000pt;}
.y147{bottom:103.826667pt;}
.y13d{bottom:103.893333pt;}
.y141{bottom:103.906667pt;}
.y13a{bottom:103.933333pt;}
.y149{bottom:103.960000pt;}
.y14b{bottom:104.000000pt;}
.y144{bottom:104.026667pt;}
.y13f{bottom:104.066667pt;}
.y39{bottom:112.840000pt;}
.ya2{bottom:114.166667pt;}
.y84{bottom:115.233333pt;}
.y31{bottom:116.033333pt;}
.ya1{bottom:118.966667pt;}
.yfa{bottom:125.933333pt;}
.y152{bottom:126.000000pt;}
.y38{bottom:128.026667pt;}
.y18b{bottom:128.033333pt;}
.yf2{bottom:129.106667pt;}
.ya0{bottom:130.433333pt;}
.y30{bottom:131.233333pt;}
.ye2{bottom:137.626667pt;}
.ye3{bottom:142.440000pt;}
.y18a{bottom:143.226667pt;}
.y37{bottom:143.493333pt;}
.y2f{bottom:146.693333pt;}
.y153{bottom:149.973333pt;}
.yfb{bottom:151.240000pt;}
.ye1{bottom:153.093333pt;}
.y1b4{bottom:154.160000pt;}
.yc7{bottom:154.693333pt;}
.yf3{bottom:157.573333pt;}
.y36{bottom:158.693333pt;}
.y189{bottom:159.533333pt;}
.y136{bottom:161.400000pt;}
.y2e{bottom:161.933333pt;}
.y83{bottom:165.933333pt;}
.y137{bottom:166.200000pt;}
.ye0{bottom:168.333333pt;}
.y154{bottom:173.973333pt;}
.y35{bottom:174.200000pt;}
.y188{bottom:175.000000pt;}
.yfc{bottom:176.533333pt;}
.y135{bottom:176.866667pt;}
.y2d{bottom:177.400000pt;}
.y1b3{bottom:180.866667pt;}
.y82{bottom:181.400000pt;}
.ydf{bottom:183.800000pt;}
.yf4{bottom:186.026667pt;}
.yc4{bottom:188.066667pt;}
.y34{bottom:189.933333pt;}
.y187{bottom:191.266667pt;}
.y134{bottom:192.333333pt;}
.y2c{bottom:192.600000pt;}
.yde{bottom:196.066667pt;}
.y81{bottom:196.866667pt;}
.y155{bottom:197.933333pt;}
.ye4{bottom:201.600000pt;}
.yfd{bottom:201.840000pt;}
.y186{bottom:206.466667pt;}
.y133{bottom:207.533333pt;}
.y2b{bottom:208.066667pt;}
.y1b2{bottom:209.933333pt;}
.yc3{bottom:211.000000pt;}
.y80{bottom:212.066667pt;}
.yf5{bottom:214.506667pt;}
.y156{bottom:221.933333pt;}
.y185{bottom:223.000000pt;}
.y2a{bottom:223.800000pt;}
.ye5{bottom:224.173333pt;}
.y132{bottom:226.466667pt;}
.yfe{bottom:227.133333pt;}
.y1b1{bottom:227.800000pt;}
.y138{bottom:232.533333pt;}
.y7f{bottom:236.600000pt;}
.y184{bottom:238.200000pt;}
.y29{bottom:241.133333pt;}
.yf6{bottom:242.960000pt;}
.y1b0{bottom:243.266667pt;}
.yc1{bottom:244.600000pt;}
.y157{bottom:245.906667pt;}
.y7e{bottom:252.066667pt;}
.yff{bottom:252.466667pt;}
.y28{bottom:253.933333pt;}
.y183{bottom:254.466667pt;}
.y14f{bottom:257.600000pt;}
.y1af{bottom:258.466667pt;}
.yf0{bottom:258.666667pt;}
.yc0{bottom:267.266667pt;}
.y27{bottom:269.400000pt;}
.y158{bottom:269.866667pt;}
.y182{bottom:269.933333pt;}
.yf7{bottom:271.426667pt;}
.y1ae{bottom:273.933333pt;}
.y100{bottom:277.760000pt;}
.y7d{bottom:277.933333pt;}
.y26{bottom:284.600000pt;}
.y181{bottom:285.133333pt;}
.y14d{bottom:287.200000pt;}
.y1ad{bottom:289.133333pt;}
.y7c{bottom:293.400000pt;}
.y143{bottom:295.200000pt;}
.yee{bottom:295.733333pt;}
.yf8{bottom:299.906667pt;}
.y14c{bottom:300.000000pt;}
.y25{bottom:300.066667pt;}
.y180{bottom:300.333333pt;}
.y145{bottom:300.800000pt;}
.ybd{bottom:300.866667pt;}
.y101{bottom:303.066667pt;}
.y142{bottom:303.200000pt;}
.y1ac{bottom:304.600000pt;}
.y7b{bottom:308.893333pt;}
.yec{bottom:315.200000pt;}
.y24{bottom:315.293333pt;}
.y14a{bottom:316.800000pt;}
.y17f{bottom:316.893333pt;}
.y1ab{bottom:319.840000pt;}
.y148{bottom:322.400000pt;}
.yb8{bottom:323.560000pt;}
.y7a{bottom:324.093333pt;}
.yf9{bottom:328.373333pt;}
.y146{bottom:330.133333pt;}
.y23{bottom:330.760000pt;}
.y17e{bottom:332.106667pt;}
.yea{bottom:333.333333pt;}
.y1aa{bottom:335.293333pt;}
.y79{bottom:339.573333pt;}
.y13e{bottom:345.333333pt;}
.y139{bottom:345.600000pt;}
.y22{bottom:345.973333pt;}
.y140{bottom:346.133333pt;}
.y17d{bottom:348.360000pt;}
.y1a9{bottom:350.506667pt;}
.y13c{bottom:353.333333pt;}
.y78{bottom:354.773333pt;}
.y21{bottom:361.440000pt;}
.y17c{bottom:363.560000pt;}
.y13b{bottom:364.800000pt;}
.y1a8{bottom:365.960000pt;}
.y77{bottom:370.226667pt;}
.y20{bottom:376.626667pt;}
.yb7{bottom:378.773333pt;}
.y17b{bottom:380.106667pt;}
.y1a7{bottom:381.173333pt;}
.yb1{bottom:390.773333pt;}
.y1f{bottom:392.106667pt;}
.y76{bottom:394.506667pt;}
.y17a{bottom:395.306667pt;}
.y1a6{bottom:396.626667pt;}
.ye8{bottom:405.866667pt;}
.y1e{bottom:407.306667pt;}
.y75{bottom:410.226667pt;}
.ye6{bottom:410.666667pt;}
.y179{bottom:411.560000pt;}
.y1a5{bottom:411.840000pt;}
.y1d{bottom:422.773333pt;}
.y74{bottom:425.440000pt;}
.y1a4{bottom:427.293333pt;}
.y178{bottom:428.106667pt;}
.yae{bottom:435.026667pt;}
.y1c{bottom:437.960000pt;}
.y73{bottom:440.893333pt;}
.y1a3{bottom:442.506667pt;}
.y177{bottom:443.306667pt;}
.y1b{bottom:453.440000pt;}
.y72{bottom:456.106667pt;}
.y1a2{bottom:458.000000pt;}
.y176{bottom:459.600000pt;}
.y1a{bottom:468.666667pt;}
.y71{bottom:470.800000pt;}
.y1a1{bottom:473.200000pt;}
.y175{bottom:475.066667pt;}
.yad{bottom:479.333333pt;}
.y70{bottom:481.466667pt;}
.y19{bottom:484.133333pt;}
.y1a0{bottom:488.666667pt;}
.y174{bottom:490.266667pt;}
.ya9{bottom:496.933333pt;}
.y18{bottom:499.333333pt;}
.y6f{bottom:499.600000pt;}
.y19f{bottom:503.866667pt;}
.y173{bottom:505.733333pt;}
.y17{bottom:514.800000pt;}
.y19e{bottom:519.333333pt;}
.y6e{bottom:521.466667pt;}
.ya7{bottom:522.800000pt;}
.y16{bottom:530.533333pt;}
.y172{bottom:531.333333pt;}
.y19d{bottom:534.533333pt;}
.y131{bottom:536.133333pt;}
.y6d{bottom:543.066667pt;}
.y171{bottom:547.066667pt;}
.y19c{bottom:550.000000pt;}
.y130{bottom:551.600000pt;}
.ydd{bottom:554.800000pt;}
.ya3{bottom:556.400000pt;}
.ydc{bottom:560.133333pt;}
.y170{bottom:562.266667pt;}
.y6c{bottom:564.666667pt;}
.y19b{bottom:565.200000pt;}
.y12f{bottom:567.066667pt;}
.ydb{bottom:575.600000pt;}
.y16f{bottom:577.733333pt;}
.y19a{bottom:580.666667pt;}
.y12e{bottom:582.266667pt;}
.y6b{bottom:586.266667pt;}
.yda{bottom:590.800000pt;}
.y16e{bottom:592.933333pt;}
.y33{bottom:594.266667pt;}
.y199{bottom:595.866667pt;}
.y9e{bottom:598.800000pt;}
.y9f{bottom:604.133333pt;}
.y6a{bottom:608.173333pt;}
.y16d{bottom:608.426667pt;}
.yd9{bottom:610.560000pt;}
.y198{bottom:611.360000pt;}
.y9d{bottom:615.640000pt;}
.y12d{bottom:623.626667pt;}
.y197{bottom:626.560000pt;}
.y69{bottom:629.760000pt;}
.yd7{bottom:631.093333pt;}
.y16c{bottom:634.026667pt;}
.y12c{bottom:639.106667pt;}
.y196{bottom:642.040000pt;}
.y9c{bottom:642.840000pt;}
.y16b{bottom:649.773333pt;}
.y68{bottom:651.360000pt;}
.yd4{bottom:651.893333pt;}
.y12b{bottom:654.306667pt;}
.y195{bottom:657.240000pt;}
.y9b{bottom:658.293333pt;}
.yd2{bottom:672.426667pt;}
.y194{bottom:672.693333pt;}
.y67{bottom:672.973333pt;}
.y9a{bottom:673.773333pt;}
.y16a{bottom:675.360000pt;}
.y12a{bottom:680.173333pt;}
.y193{bottom:687.893333pt;}
.y99{bottom:688.960000pt;}
.y169{bottom:691.093333pt;}
.ycf{bottom:693.226667pt;}
.y65{bottom:694.840000pt;}
.y129{bottom:695.626667pt;}
.y192{bottom:703.373333pt;}
.y98{bottom:704.426667pt;}
.y168{bottom:706.293333pt;}
.y128{bottom:711.106667pt;}
.ycd{bottom:713.760000pt;}
.y63{bottom:716.426667pt;}
.y191{bottom:718.573333pt;}
.y97{bottom:719.626667pt;}
.y127{bottom:726.293333pt;}
.y167{bottom:732.173333pt;}
.y190{bottom:734.040000pt;}
.ycb{bottom:737.760000pt;}
.y61{bottom:738.026667pt;}
.ycc{bottom:743.093333pt;}
.y96{bottom:744.173333pt;}
.y166{bottom:747.626667pt;}
.y18f{bottom:749.760000pt;}
.y126{bottom:752.173333pt;}
.yca{bottom:753.506667pt;}
.y5f{bottom:759.666667pt;}
.y115{bottom:761.266667pt;}
.y165{bottom:763.133333pt;}
.y125{bottom:767.666667pt;}
.y95{bottom:775.133333pt;}
.y18e{bottom:778.066667pt;}
.y164{bottom:778.333333pt;}
.y5e{bottom:781.533333pt;}
.y124{bottom:783.133333pt;}
.y94{bottom:790.333333pt;}
.y163{bottom:793.800000pt;}
.y123{bottom:798.333333pt;}
.y5d{bottom:803.133333pt;}
.y111{bottom:805.533333pt;}
.y93{bottom:805.800000pt;}
.y162{bottom:809.000000pt;}
.y122{bottom:813.800000pt;}
.y92{bottom:821.000000pt;}
.y161{bottom:824.466667pt;}
.y5b{bottom:824.733333pt;}
.y121{bottom:829.000000pt;}
.y110{bottom:830.066667pt;}
.y91{bottom:836.466667pt;}
.y15{bottom:838.333333pt;}
.y160{bottom:839.666667pt;}
.y5a{bottom:846.333333pt;}
.y90{bottom:851.666667pt;}
.y120{bottom:854.866667pt;}
.y15f{bottom:855.133333pt;}
.y14{bottom:857.533333pt;}
.y10d{bottom:863.666667pt;}
.y59{bottom:864.733333pt;}
.y8f{bottom:867.133333pt;}
.y11f{bottom:870.333333pt;}
.y13{bottom:872.733333pt;}
.y57{bottom:882.866667pt;}
.y11e{bottom:885.800000pt;}
.y12{bottom:886.866667pt;}
.y8e{bottom:891.400000pt;}
.y10b{bottom:891.666667pt;}
.y15e{bottom:896.200000pt;}
.y18d{bottom:901.000000pt;}
.y45{bottom:901.266667pt;}
.y11{bottom:902.600000pt;}
.y8d{bottom:907.173333pt;}
.y109{bottom:908.506667pt;}
.y11d{bottom:911.440000pt;}
.y15d{bottom:911.706667pt;}
.y10{bottom:918.893333pt;}
.y8c{bottom:922.373333pt;}
.yd{bottom:925.293333pt;}
.y18c{bottom:926.893333pt;}
.y11c{bottom:927.173333pt;}
.y8b{bottom:937.840000pt;}
.y11b{bottom:942.373333pt;}
.yc{bottom:944.506667pt;}
.yb{bottom:949.560000pt;}
.y49{bottom:950.893333pt;}
.y8a{bottom:953.040000pt;}
.y11a{bottom:957.840000pt;}
.ya{bottom:963.173333pt;}
.y107{bottom:963.440000pt;}
.y15c{bottom:968.226667pt;}
.y89{bottom:968.506667pt;}
.y47{bottom:970.360000pt;}
.y119{bottom:973.040000pt;}
.y9{bottom:975.960000pt;}
.y88{bottom:983.706667pt;}
.y8{bottom:991.706667pt;}
.y43{bottom:993.293333pt;}
.y118{bottom:998.893333pt;}
.y87{bottom:999.173333pt;}
.y44{bottom:999.440000pt;}
.y106{bottom:1007.693333pt;}
.y7{bottom:1007.706667pt;}
.y42{bottom:1011.706667pt;}
.y6{bottom:1014.373333pt;}
.y40{bottom:1063.466667pt;}
.h9{height:7.447917pt;}
.h33{height:7.526042pt;}
.h28{height:10.666667pt;}
.h5{height:11.289062pt;}
.h16{height:12.266667pt;}
.h3f{height:15.500000pt;}
.h25{height:16.266667pt;}
.h1a{height:17.600000pt;}
.hb{height:18.619792pt;}
.ha{height:18.666667pt;}
.h2e{height:18.815104pt;}
.h3d{height:18.933333pt;}
.h32{height:20.000000pt;}
.h1c{height:20.800000pt;}
.h1b{height:21.066667pt;}
.h1d{height:21.100000pt;}
.h2b{height:21.333333pt;}
.h2a{height:21.366667pt;}
.h2c{height:21.600000pt;}
.h41{height:23.200000pt;}
.h24{height:24.533333pt;}
.h1e{height:24.578125pt;}
.h34{height:24.835937pt;}
.h23{height:26.067708pt;}
.h20{height:26.341146pt;}
.h40{height:26.666667pt;}
.h30{height:28.598958pt;}
.hf{height:29.791667pt;}
.h7{height:30.104167pt;}
.h22{height:31.176563pt;}
.h17{height:31.733333pt;}
.h3{height:32.000000pt;}
.h2d{height:32.033333pt;}
.h21{height:32.266667pt;}
.h8{height:33.515625pt;}
.hd{height:33.867188pt;}
.hc{height:37.239583pt;}
.h4{height:37.630208pt;}
.h12{height:38.515625pt;}
.h55{height:38.828125pt;}
.h13{height:39.562500pt;}
.h45{height:41.328125pt;}
.h1f{height:41.393229pt;}
.h47{height:41.431445pt;}
.h27{height:42.933333pt;}
.h26{height:42.966667pt;}
.h31{height:43.651042pt;}
.h38{height:43.807813pt;}
.he{height:43.958333pt;}
.h6{height:45.156250pt;}
.h11{height:46.218750pt;}
.h3c{height:47.742188pt;}
.h54{height:47.874805pt;}
.h19{height:49.100000pt;}
.h2f{height:49.932292pt;}
.h3e{height:53.600000pt;}
.h29{height:53.866667pt;}
.h14{height:54.690833pt;}
.h1{height:58.351562pt;}
.h18{height:68.300000pt;}
.h15{height:81.366667pt;}
.h2{height:86.400000pt;}
.h37{height:137.600000pt;}
.h39{height:142.400000pt;}
.h46{height:156.000000pt;}
.h48{height:167.466667pt;}
.h4a{height:174.666667pt;}
.h44{height:175.200000pt;}
.h49{height:175.466667pt;}
.h4e{height:190.666667pt;}
.h4f{height:198.400000pt;}
.h50{height:204.000000pt;}
.h10{height:204.866667pt;}
.h3a{height:214.933333pt;}
.h4b{height:217.600000pt;}
.h4d{height:220.000000pt;}
.h51{height:220.800000pt;}
.h3b{height:225.066667pt;}
.h4c{height:225.600000pt;}
.h52{height:233.600000pt;}
.h53{height:235.733333pt;}
.h42{height:288.266667pt;}
.h35{height:346.666667pt;}
.h43{height:367.208854pt;}
.h36{height:396.382187pt;}
.h0{height:1122.666667pt;}
.w1c{width:26.666667pt;}
.w22{width:34.666667pt;}
.w23{width:34.700000pt;}
.w28{width:34.933333pt;}
.w1f{width:35.200000pt;}
.w27{width:36.266667pt;}
.w21{width:37.066667pt;}
.w20{width:37.100000pt;}
.w26{width:38.433333pt;}
.w25{width:41.600000pt;}
.w24{width:42.133333pt;}
.w29{width:43.466667pt;}
.w2c{width:43.733333pt;}
.w2b{width:43.766667pt;}
.w1e{width:44.533333pt;}
.w9{width:45.333333pt;}
.w15{width:54.666667pt;}
.w12{width:54.966667pt;}
.w1b{width:55.233333pt;}
.w16{width:59.766667pt;}
.w10{width:61.333333pt;}
.w19{width:61.600000pt;}
.w4{width:64.266667pt;}
.w2d{width:65.100000pt;}
.w2e{width:69.333333pt;}
.we{width:71.766667pt;}
.w14{width:72.000000pt;}
.w17{width:72.033333pt;}
.w2a{width:76.000000pt;}
.w1d{width:76.033333pt;}
.wf{width:78.966667pt;}
.w18{width:79.233333pt;}
.w32{width:83.200000pt;}
.w36{width:92.000000pt;}
.w3{width:96.000000pt;}
.w11{width:99.233333pt;}
.w1a{width:99.500000pt;}
.wd{width:114.433333pt;}
.w35{width:118.933333pt;}
.w34{width:119.200000pt;}
.w31{width:123.466667pt;}
.w30{width:123.733333pt;}
.w13{width:127.233333pt;}
.wa{width:151.533333pt;}
.wb{width:161.373333pt;}
.wc{width:182.733333pt;}
.w6{width:225.133333pt;}
.w5{width:429.733333pt;}
.w33{width:593.866667pt;}
.w2f{width:616.266667pt;}
.w7{width:649.000000pt;}
.w8{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x5b{left:-3.200000pt;}
.x5a{left:-1.613333pt;}
.x0{left:0.000000pt;}
.x59{left:1.066667pt;}
.x58{left:2.933333pt;}
.x1e{left:6.933333pt;}
.x21{left:8.000000pt;}
.x2{left:9.599999pt;}
.x17{left:11.466667pt;}
.x24{left:12.533333pt;}
.x13{left:14.400000pt;}
.x22{left:15.986667pt;}
.x1b{left:17.066667pt;}
.x42{left:18.400000pt;}
.x3{left:19.733333pt;}
.x43{left:20.786667pt;}
.x1f{left:22.126667pt;}
.x45{left:23.466667pt;}
.x4{left:24.533333pt;}
.x44{left:26.133333pt;}
.x26{left:27.466667pt;}
.x19{left:29.593333pt;}
.x4d{left:31.200000pt;}
.x29{left:33.326667pt;}
.x2e{left:34.386667pt;}
.x2c{left:35.740000pt;}
.x2a{left:37.066667pt;}
.x2d{left:40.560000pt;}
.x2b{left:47.226667pt;}
.x51{left:50.666667pt;}
.x57{left:52.433333pt;}
.x33{left:57.900000pt;}
.xb{left:69.633333pt;}
.x1{left:72.033322pt;}
.x12{left:73.900000pt;}
.x30{left:76.566655pt;}
.x34{left:85.366667pt;}
.x31{left:96.566643pt;}
.x32{left:101.366655pt;}
.xe{left:103.773333pt;}
.x18{left:117.900000pt;}
.x9{left:136.559988pt;}
.xf{left:142.959988pt;}
.x48{left:149.106667pt;}
.x52{left:160.533333pt;}
.x35{left:161.933333pt;}
.x5e{left:171.733333pt;}
.x6b{left:180.973333pt;}
.x20{left:190.466667pt;}
.x49{left:193.400000pt;}
.x11{left:200.066655pt;}
.x5f{left:205.066667pt;}
.x36{left:207.000000pt;}
.xc{left:214.726667pt;}
.x4f{left:224.599976pt;}
.x50{left:229.133322pt;}
.x53{left:232.266667pt;}
.x4a{left:237.933333pt;}
.x37{left:243.000000pt;}
.x2f{left:264.106655pt;}
.x1a{left:269.706667pt;}
.x60{left:271.200000pt;}
.x5c{left:279.573310pt;}
.x38{left:280.640000pt;}
.x5d{left:284.106655pt;}
.x61{left:304.266667pt;}
.x4b{left:314.506667pt;}
.x39{left:318.506667pt;}
.x23{left:331.840000pt;}
.x10{left:350.226655pt;}
.x3a{left:353.973333pt;}
.x6{left:360.106655pt;}
.x62{left:369.333333pt;}
.x4c{left:380.133333pt;}
.x3b{left:389.200000pt;}
.x63{left:403.733333pt;}
.x1c{left:431.333333pt;}
.x64{left:436.800000pt;}
.x65{left:470.133333pt;}
.x3c{left:474.533333pt;}
.x25{left:486.840000pt;}
.xd{left:499.360000pt;}
.x66{left:503.200000pt;}
.x3d{left:513.506667pt;}
.x14{left:523.106655pt;}
.x54{left:535.200000pt;}
.x67{left:536.266667pt;}
.x8{left:546.559988pt;}
.x3e{left:548.973333pt;}
.x15{left:554.839976pt;}
.x27{left:559.106667pt;}
.x16{left:560.173322pt;}
.x68{left:569.333333pt;}
.x7{left:576.173322pt;}
.x56{left:580.600000pt;}
.x3f{left:584.466667pt;}
.x69{left:602.666667pt;}
.x55{left:609.066667pt;}
.x1d{left:614.600000pt;}
.x5{left:620.999988pt;}
.x6a{left:633.066667pt;}
.x40{left:657.266667pt;}
.x28{left:669.266667pt;}
.x41{left:692.773333pt;}
.x4e{left:698.106655pt;}
.x46{left:699.959976pt;}
.x47{left:705.039988pt;}
.xa{left:722.106655pt;}
}




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