
    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_e35731fd2c3f246bf9925a65.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_fbaa56ad8b04c3b6ad3e135a.woff')format("woff");}.ff2{font-family:ff2;line-height:0.923340;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_99cd41b59527372cb405c4e5.woff')format("woff");}.ff3{font-family:ff3;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b01fc62c031a6befaef9618e.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_e868dca4771a0ad9371ab670.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;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_defca4745d71b77212ec84c0.woff')format("woff");}.ff6{font-family:ff6;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_5f47deb207993537f9262cb6.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_e486ffbe18df4b9d28b5f711.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_2490330120c0c7f6afba54aa.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_2e86468c61a885eb160f2d12.woff')format("woff");}.ffc{font-family:ffc;line-height:0.934082;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_860ae330353d7cabd4e9f557.woff')format("woff");}.ffd{font-family:ffd;line-height:1.112305;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_4b0eb9478324d51a4bf95237.woff')format("woff");}.ff10{font-family:ff10;line-height:0.960449;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);}
.v4{vertical-align:-20.880000px;}
.v3{vertical-align:-15.120000px;}
.v2{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:20.880000px;}
.lsd{letter-spacing:-7.860000px;}
.ls6{letter-spacing:-1.812000px;}
.lsc{letter-spacing:-0.924000px;}
.ls8{letter-spacing:-0.396000px;}
.lsa{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.106800px;}
.ls17{letter-spacing:-0.008640px;}
.ls5{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.012960px;}
.ls4{letter-spacing:0.053280px;}
.ls16{letter-spacing:0.106800px;}
.ls13{letter-spacing:0.119520px;}
.ls0{letter-spacing:0.132600px;}
.lsb{letter-spacing:0.180000px;}
.ls19{letter-spacing:0.206400px;}
.ls7{letter-spacing:0.213000px;}
.ls9{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.lse{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls14{letter-spacing:0.439920px;}
.ls10{letter-spacing:1.620000px;}
.ls11{letter-spacing:2.340000px;}
.ls18{letter-spacing:16.506720px;}
.ls15{letter-spacing:46.026720px;}
.ls12{letter-spacing:64.026720px;}
.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;}
}
.ws0{word-spacing:-59.760000px;}
.ws1{word-spacing:-16.626360px;}
.ws2{word-spacing:-16.493760px;}
.ws7{word-spacing:-15.300000px;}
.wse{word-spacing:-15.199800px;}
.ws11{word-spacing:-15.146400px;}
.ws10{word-spacing:-15.046800px;}
.wsa{word-spacing:-14.993280px;}
.ws6{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.833200px;}
.ws8{word-spacing:-14.580000px;}
.ws5{word-spacing:-11.808000px;}
.ws9{word-spacing:-9.732960px;}
.wsf{word-spacing:-9.720000px;}
.ws3{word-spacing:-9.437760px;}
.ws4{word-spacing:-8.136000px;}
.wsc{word-spacing:-7.080000px;}
.wsb{word-spacing:0.000000px;}
._15{margin-left:-7.921200px;}
._16{margin-left:-6.814080px;}
._11{margin-left:-5.704080px;}
._3{margin-left:-4.362480px;}
._1{margin-left:-2.868480px;}
._0{margin-left:-1.254960px;}
._2{width:1.135440px;}
._e{width:2.136000px;}
._4{width:3.300480px;}
._8{width:4.439520px;}
._5{width:5.486400px;}
._12{width:6.842400px;}
._6{width:7.949520px;}
._7{width:9.057360px;}
._13{width:10.218960px;}
._14{width:11.506080px;}
._b{width:12.728880px;}
._10{width:17.270640px;}
._f{width:18.884160px;}
._a{width:20.975760px;}
._9{width:21.991680px;}
._20{width:23.246640px;}
._d{width:24.382080px;}
._c{width:25.517520px;}
._1f{width:29.162880px;}
._1e{width:30.597120px;}
._1d{width:32.297760px;}
._19{width:58.437360px;}
._1b{width:130.934160px;}
._1a{width:132.428160px;}
._17{width:165.168000px;}
._18{width:199.704000px;}
._1c{width:201.036000px;}
.fca{color:rgb(22,46,81);}
.fc5{color:rgb(227,108,10);}
.fc9{color:rgb(0,94,162);}
.fc4{color:rgb(47,84,150);}
.fc3{color:rgb(50,62,79);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(31,56,100);}
.fc8{color:rgb(51,51,51);}
.fc7{color:rgb(27,27,27);}
.fc6{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs7{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fsa{font-size:56.880000px;}
.fs0{font-size:59.760000px;}
.fs8{font-size:63.360000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y58{bottom:3.240000px;}
.yf0{bottom:3.270000px;}
.y5b{bottom:3.780000px;}
.ye5{bottom:3.960000px;}
.ycc{bottom:4.140000px;}
.yc4{bottom:4.320000px;}
.ye{bottom:4.500000px;}
.y3b{bottom:4.860000px;}
.y9d{bottom:5.400000px;}
.ya9{bottom:5.574000px;}
.y9e{bottom:5.580000px;}
.ya3{bottom:5.760000px;}
.yd3{bottom:5.940000px;}
.y5a{bottom:6.120000px;}
.y19{bottom:6.165000px;}
.ye3{bottom:8.100000px;}
.y9b{bottom:8.460000px;}
.yd8{bottom:8.640000px;}
.ya8{bottom:8.814000px;}
.ya1{bottom:8.820000px;}
.yf9{bottom:10.260000px;}
.y10a{bottom:10.620000px;}
.y110{bottom:10.800000px;}
.y128{bottom:10.845000px;}
.y134{bottom:10.974000px;}
.yf7{bottom:10.980000px;}
.y117{bottom:11.010000px;}
.y10f{bottom:11.160000px;}
.y169{bottom:11.520000px;}
.y149{bottom:11.700000px;}
.y166{bottom:11.745000px;}
.y148{bottom:12.240000px;}
.y14d{bottom:12.285000px;}
.yb4{bottom:12.420000px;}
.yc{bottom:13.860000px;}
.y1b{bottom:14.580000px;}
.y100{bottom:15.120000px;}
.yfe{bottom:15.300000px;}
.y137{bottom:15.660000px;}
.y114{bottom:16.050000px;}
.y12c{bottom:16.200000px;}
.y15d{bottom:16.740000px;}
.y143{bottom:17.640000px;}
.y15a{bottom:17.670000px;}
.y154{bottom:17.820000px;}
.yb5{bottom:18.720000px;}
.y3{bottom:19.080000px;}
.y108{bottom:19.260000px;}
.y126{bottom:19.305000px;}
.y132{bottom:19.434000px;}
.y10d{bottom:19.440000px;}
.y3a{bottom:19.620000px;}
.y57{bottom:20.340000px;}
.y116{bottom:20.520000px;}
.y120{bottom:20.700000px;}
.ye0{bottom:21.240000px;}
.yee{bottom:21.270000px;}
.y146{bottom:21.420000px;}
.yc5{bottom:22.140000px;}
.yd2{bottom:23.220000px;}
.yca{bottom:23.250000px;}
.yc7{bottom:23.400000px;}
.yc2{bottom:23.940000px;}
.yb7{bottom:25.425000px;}
.y9a{bottom:25.740000px;}
.ya7{bottom:26.094000px;}
.ya0{bottom:26.100000px;}
.y5{bottom:26.280000px;}
.y14f{bottom:27.540000px;}
.yf6{bottom:28.260000px;}
.y18{bottom:28.845000px;}
.y15e{bottom:30.060000px;}
.yb{bottom:30.240000px;}
.yfc{bottom:32.580000px;}
.y12b{bottom:33.300000px;}
.y113{bottom:33.330000px;}
.y11e{bottom:33.660000px;}
.y39{bottom:34.200000px;}
.y107{bottom:36.360000px;}
.y119{bottom:36.540000px;}
.y125{bottom:36.585000px;}
.y131{bottom:36.714000px;}
.y10c{bottom:36.720000px;}
.y56{bottom:37.620000px;}
.y4{bottom:37.656000px;}
.y145{bottom:38.700000px;}
.y2{bottom:39.276000px;}
.y14b{bottom:39.285000px;}
.yc1{bottom:41.220000px;}
.yaf{bottom:41.940000px;}
.y14e{bottom:44.640000px;}
.y17{bottom:45.225000px;}
.yb2{bottom:45.900000px;}
.ya{bottom:46.620000px;}
.y1{bottom:48.780000px;}
.y38{bottom:48.960000px;}
.y158{bottom:50.250000px;}
.y11d{bottom:50.940000px;}
.y55{bottom:54.900000px;}
.y16{bottom:61.785000px;}
.y37{bottom:63.540000px;}
.yac{bottom:68.430000px;}
.y54{bottom:72.180000px;}
.y9{bottom:73.470000px;}
.y15{bottom:74.565000px;}
.y36{bottom:78.120000px;}
.yab{bottom:85.710000px;}
.y53{bottom:89.460000px;}
.y14{bottom:91.485000px;}
.y35{bottom:92.880000px;}
.y8{bottom:93.090000px;}
.y52{bottom:106.740000px;}
.y34{bottom:107.460000px;}
.y13{bottom:110.745000px;}
.y7{bottom:111.450000px;}
.y172{bottom:118.656000px;}
.y33{bottom:122.040000px;}
.ye9{bottom:123.156000px;}
.y51{bottom:123.840000px;}
.y135{bottom:127.656000px;}
.y12{bottom:130.545000px;}
.y171{bottom:130.716000px;}
.y98{bottom:131.256000px;}
.y66{bottom:134.496000px;}
.y32{bottom:136.800000px;}
.y50{bottom:141.120000px;}
.yea{bottom:141.156000px;}
.y190{bottom:144.396000px;}
.y130{bottom:145.476000px;}
.y170{bottom:147.996000px;}
.ya6{bottom:148.716000px;}
.y31{bottom:151.380000px;}
.y65{bottom:151.770000px;}
.y11{bottom:156.285000px;}
.y4f{bottom:158.400000px;}
.ye7{bottom:159.150000px;}
.y18f{bottom:161.490000px;}
.y16f{bottom:165.090000px;}
.y30{bottom:166.140000px;}
.y64{bottom:169.050000px;}
.y133{bottom:171.210000px;}
.y4e{bottom:175.680000px;}
.ye8{bottom:177.150000px;}
.y10{bottom:177.705000px;}
.y18e{bottom:178.770000px;}
.y2f{bottom:180.720000px;}
.y16e{bottom:182.370000px;}
.y63{bottom:186.150000px;}
.ya4{bottom:189.390000px;}
.y4d{bottom:192.960000px;}
.ye4{bottom:195.150000px;}
.y2e{bottom:195.300000px;}
.y18d{bottom:196.050000px;}
.y12e{bottom:196.950000px;}
.y16d{bottom:199.650000px;}
.y62{bottom:203.430000px;}
.ya5{bottom:209.910000px;}
.y2d{bottom:210.060000px;}
.y4c{bottom:210.240000px;}
.ye6{bottom:213.150000px;}
.y18c{bottom:213.330000px;}
.y16c{bottom:216.930000px;}
.y61{bottom:220.710000px;}
.y12f{bottom:222.510000px;}
.y2c{bottom:224.640000px;}
.y4b{bottom:227.340000px;}
.y9f{bottom:230.250000px;}
.y18b{bottom:230.610000px;}
.ye2{bottom:231.150000px;}
.y16b{bottom:235.830000px;}
.y60{bottom:237.990000px;}
.y2b{bottom:239.220000px;}
.y4a{bottom:244.620000px;}
.y18a{bottom:247.890000px;}
.y12a{bottom:248.250000px;}
.ya2{bottom:250.590000px;}
.y16a{bottom:253.650000px;}
.y2a{bottom:253.980000px;}
.ydf{bottom:254.010000px;}
.y5f{bottom:255.270000px;}
.y1a4{bottom:258.870000px;}
.y49{bottom:261.900000px;}
.y189{bottom:264.990000px;}
.y29{bottom:268.590000px;}
.y99{bottom:271.110000px;}
.ye1{bottom:272.010000px;}
.y5e{bottom:272.550000px;}
.y12d{bottom:273.990000px;}
.y168{bottom:274.530000px;}
.y1a3{bottom:277.230000px;}
.y48{bottom:279.210000px;}
.y188{bottom:282.270000px;}
.y28{bottom:285.870000px;}
.y5d{bottom:289.650000px;}
.y9c{bottom:291.450000px;}
.yde{bottom:293.250000px;}
.y1a2{bottom:294.870000px;}
.y47{bottom:296.490000px;}
.y187{bottom:300.630000px;}
.y167{bottom:300.810000px;}
.y27{bottom:303.150000px;}
.y5c{bottom:306.930000px;}
.y129{bottom:308.550000px;}
.ydd{bottom:310.530000px;}
.y1a1{bottom:311.970000px;}
.y46{bottom:313.770000px;}
.y186{bottom:318.990000px;}
.y26{bottom:320.790000px;}
.y59{bottom:320.970000px;}
.y124{bottom:326.550000px;}
.y97{bottom:327.630000px;}
.ydc{bottom:327.810000px;}
.y1a0{bottom:329.250000px;}
.y45{bottom:330.870000px;}
.y185{bottom:337.395000px;}
.y25{bottom:338.250000px;}
.y1c{bottom:338.475000px;}
.y96{bottom:344.955000px;}
.y19f{bottom:346.575000px;}
.y44{bottom:348.150000px;}
.y127{bottom:352.155000px;}
.y184{bottom:355.575000px;}
.y24{bottom:355.710000px;}
.y165{bottom:357.555000px;}
.ydb{bottom:362.235000px;}
.y95{bottom:363.855000px;}
.y43{bottom:365.430000px;}
.y183{bottom:372.855000px;}
.y23{bottom:372.990000px;}
.y164{bottom:374.655000px;}
.y122{bottom:377.895000px;}
.yda{bottom:379.515000px;}
.y19e{bottom:381.135000px;}
.y42{bottom:382.710000px;}
.y94{bottom:384.195000px;}
.y182{bottom:390.135000px;}
.y22{bottom:390.450000px;}
.y163{bottom:391.935000px;}
.yd9{bottom:398.415000px;}
.y41{bottom:399.990000px;}
.y93{bottom:401.475000px;}
.y123{bottom:403.635000px;}
.y181{bottom:407.415000px;}
.y21{bottom:407.910000px;}
.y162{bottom:409.215000px;}
.y19d{bottom:415.515000px;}
.yd7{bottom:416.235000px;}
.y40{bottom:417.090000px;}
.y92{bottom:418.575000px;}
.y180{bottom:424.695000px;}
.y20{bottom:425.370000px;}
.y161{bottom:426.495000px;}
.y11c{bottom:429.375000px;}
.y19c{bottom:432.795000px;}
.y3f{bottom:434.370000px;}
.y91{bottom:435.855000px;}
.yd6{bottom:439.635000px;}
.y160{bottom:441.255000px;}
.y17f{bottom:441.975000px;}
.y1f{bottom:443.730000px;}
.y19b{bottom:450.075000px;}
.y3e{bottom:451.650000px;}
.y90{bottom:453.135000px;}
.y121{bottom:454.935000px;}
.y17e{bottom:459.075000px;}
.yd5{bottom:462.495000px;}
.y19a{bottom:467.355000px;}
.y3d{bottom:468.930000px;}
.y8f{bottom:470.415000px;}
.y1e{bottom:471.090000px;}
.y15f{bottom:473.655000px;}
.y17d{bottom:477.075000px;}
.yd1{bottom:480.315000px;}
.y199{bottom:484.635000px;}
.y3c{bottom:486.210000px;}
.y8e{bottom:487.695000px;}
.y1d{bottom:488.910000px;}
.y11f{bottom:490.215000px;}
.y17c{bottom:497.055000px;}
.yd4{bottom:499.215000px;}
.y198{bottom:501.735000px;}
.y8d{bottom:504.975000px;}
.y15c{bottom:506.235000px;}
.y17b{bottom:514.335000px;}
.ycf{bottom:518.295000px;}
.y197{bottom:519.015000px;}
.y8c{bottom:523.695000px;}
.y11b{bottom:524.955000px;}
.y17a{bottom:531.615000px;}
.y196{bottom:536.295000px;}
.yd0{bottom:537.375000px;}
.y118{bottom:542.955000px;}
.y8b{bottom:544.035000px;}
.y179{bottom:548.895000px;}
.y15b{bottom:550.335000px;}
.y195{bottom:553.575000px;}
.ycd{bottom:556.275000px;}
.y8a{bottom:561.315000px;}
.y178{bottom:566.175000px;}
.y11a{bottom:568.515000px;}
.y157{bottom:569.955000px;}
.y194{bottom:570.855000px;}
.yce{bottom:575.355000px;}
.y89{bottom:578.595000px;}
.y177{bottom:583.275000px;}
.y193{bottom:588.135000px;}
.y112{bottom:594.255000px;}
.yc9{bottom:594.435000px;}
.y88{bottom:595.875000px;}
.y176{bottom:600.555000px;}
.y159{bottom:602.535000px;}
.y192{bottom:605.265000px;}
.ycb{bottom:613.545000px;}
.y87{bottom:614.805000px;}
.y175{bottom:619.485000px;}
.y115{bottom:620.025000px;}
.y191{bottom:622.545000px;}
.yc6{bottom:632.445000px;}
.y86{bottom:635.145000px;}
.y156{bottom:639.825000px;}
.yc8{bottom:651.525000px;}
.y85{bottom:652.425000px;}
.y111{bottom:654.585000px;}
.y174{bottom:657.105000px;}
.y155{bottom:657.645000px;}
.yc0{bottom:670.605000px;}
.y84{bottom:671.325000px;}
.y10b{bottom:672.585000px;}
.y173{bottom:674.385000px;}
.y153{bottom:690.225000px;}
.y83{bottom:691.665000px;}
.y10e{bottom:698.145000px;}
.yc3{bottom:707.505000px;}
.y82{bottom:708.765000px;}
.y152{bottom:722.805000px;}
.y106{bottom:724.065000px;}
.y81{bottom:726.045000px;}
.ybf{bottom:729.645000px;}
.y80{bottom:743.325000px;}
.ybe{bottom:746.925000px;}
.y109{bottom:749.805000px;}
.y151{bottom:760.065000px;}
.y7f{bottom:760.605000px;}
.ybd{bottom:764.205000px;}
.y7e{bottom:777.885000px;}
.y105{bottom:778.425000px;}
.ybc{bottom:781.485000px;}
.y7d{bottom:795.165000px;}
.y104{bottom:797.325000px;}
.ybb{bottom:798.765000px;}
.y150{bottom:810.285000px;}
.y7c{bottom:812.265000px;}
.yba{bottom:816.045000px;}
.y103{bottom:817.665000px;}
.y7b{bottom:829.545000px;}
.yb9{bottom:833.145000px;}
.y102{bottom:834.945000px;}
.y14a{bottom:837.285000px;}
.y1a{bottom:838.725000px;}
.y7a{bottom:846.825000px;}
.yb8{bottom:851.145000px;}
.y101{bottom:853.845000px;}
.y79{bottom:864.105000px;}
.y14c{bottom:864.285000px;}
.yf{bottom:867.705000px;}
.yb6{bottom:868.605000px;}
.yff{bottom:871.710000px;}
.y78{bottom:881.430000px;}
.y144{bottom:891.330000px;}
.y77{bottom:898.530000px;}
.yfd{bottom:901.590000px;}
.yb1{bottom:908.790000px;}
.y76{bottom:915.810000px;}
.y147{bottom:917.790000px;}
.yfb{bottom:931.650000px;}
.y75{bottom:933.090000px;}
.yb3{bottom:942.270000px;}
.y141{bottom:944.790000px;}
.y74{bottom:950.370000px;}
.y142{bottom:963.690000px;}
.y73{bottom:967.650000px;}
.yb0{bottom:973.410000px;}
.yfa{bottom:983.850000px;}
.y72{bottom:984.930000px;}
.yae{bottom:991.050000px;}
.y140{bottom:999.330000px;}
.yf5{bottom:1001.670000px;}
.y71{bottom:1002.030000px;}
.y13f{bottom:1016.430000px;}
.y70{bottom:1019.310000px;}
.yf8{bottom:1026.690000px;}
.y13e{bottom:1033.710000px;}
.y6f{bottom:1036.590000px;}
.yf3{bottom:1044.690000px;}
.yd{bottom:1046.850000px;}
.yad{bottom:1047.750000px;}
.y13d{bottom:1050.990000px;}
.y6e{bottom:1053.870000px;}
.yf4{bottom:1062.690000px;}
.y6{bottom:1067.010000px;}
.y13c{bottom:1068.270000px;}
.y6d{bottom:1071.150000px;}
.yf1{bottom:1080.690000px;}
.y13b{bottom:1085.550000px;}
.yaa{bottom:1088.250000px;}
.y6c{bottom:1088.430000px;}
.yf2{bottom:1098.690000px;}
.y13a{bottom:1104.450000px;}
.y6b{bottom:1105.530000px;}
.yed{bottom:1116.690000px;}
.y139{bottom:1122.270000px;}
.y6a{bottom:1122.810000px;}
.yef{bottom:1134.690000px;}
.y69{bottom:1140.120000px;}
.y138{bottom:1140.300000px;}
.yeb{bottom:1152.720000px;}
.y68{bottom:1157.400000px;}
.y136{bottom:1158.300000px;}
.yec{bottom:1170.720000px;}
.y67{bottom:1174.680000px;}
.hc{height:4.241250px;}
.h36{height:17.100000px;}
.h38{height:17.136000px;}
.h31{height:17.280000px;}
.h4e{height:17.316000px;}
.h1b{height:17.496000px;}
.h50{height:18.000000px;}
.h2b{height:18.180000px;}
.h2f{height:18.216000px;}
.h2d{height:18.360000px;}
.h5b{height:18.900000px;}
.h20{height:19.440000px;}
.h21{height:19.620000px;}
.ha{height:19.800000px;}
.h5e{height:20.160000px;}
.h34{height:22.140000px;}
.h32{height:22.680000px;}
.h3a{height:24.120000px;}
.h3f{height:24.660000px;}
.h43{height:24.840000px;}
.h4a{height:24.876000px;}
.h40{height:25.020000px;}
.h46{height:25.056000px;}
.h42{height:25.200000px;}
.h53{height:25.560000px;}
.h5d{height:25.596000px;}
.h52{height:26.100000px;}
.h55{height:26.280000px;}
.h54{height:26.316000px;}
.h27{height:26.460000px;}
.h10{height:27.492188px;}
.h12{height:28.980000px;}
.h3d{height:29.160000px;}
.h3c{height:29.340000px;}
.h4d{height:29.520000px;}
.h4f{height:31.500000px;}
.h57{height:31.680000px;}
.h5a{height:31.716000px;}
.h58{height:31.860000px;}
.h28{height:32.760000px;}
.h45{height:34.560000px;}
.h48{height:34.740000px;}
.h5f{height:34.855313px;}
.h35{height:35.100000px;}
.h37{height:35.136000px;}
.h33{height:35.280000px;}
.h7{height:36.180000px;}
.h19{height:36.462656px;}
.h1a{height:36.839531px;}
.h30{height:37.260000px;}
.h2e{height:37.296000px;}
.h2c{height:37.440000px;}
.h29{height:39.456000px;}
.h1f{height:39.780000px;}
.h23{height:39.960000px;}
.h22{height:40.140000px;}
.h11{height:41.238281px;}
.h39{height:42.120000px;}
.h1c{height:42.164648px;}
.h18{height:42.281367px;}
.h17{height:43.437656px;}
.h5c{height:44.100000px;}
.h9{height:44.820000px;}
.h3b{height:46.620000px;}
.h15{height:47.980898px;}
.h3e{height:50.400000px;}
.h4c{height:50.580000px;}
.h49{height:50.616000px;}
.h41{height:50.760000px;}
.h60{height:50.800781px;}
.h51{height:52.560000px;}
.h2{height:53.316000px;}
.h3{height:53.573906px;}
.h8{height:54.000000px;}
.h2a{height:55.080000px;}
.hf{height:55.291992px;}
.h1d{height:55.735313px;}
.h25{height:55.980000px;}
.h62{height:56.900391px;}
.h56{height:58.680000px;}
.h61{height:59.439023px;}
.h26{height:59.940000px;}
.h4b{height:60.300000px;}
.h44{height:60.336000px;}
.h16{height:61.189805px;}
.hd{height:63.180000px;}
.h59{height:64.296000px;}
.h1e{height:64.546875px;}
.he{height:64.875938px;}
.h4{height:67.824844px;}
.h5{height:71.613281px;}
.h13{height:73.722656px;}
.h47{height:95.580000px;}
.h24{height:99.576000px;}
.h6{height:121.536000px;}
.hb{height:179.130000px;}
.h14{height:500.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w34{width:57.276000px;}
.w3e{width:59.220000px;}
.w2c{width:66.096000px;}
.w2b{width:66.240000px;}
.w4a{width:66.420000px;}
.w2a{width:67.356000px;}
.w2d{width:67.680000px;}
.wd{width:70.380000px;}
.w3{width:74.880000px;}
.w30{width:77.220000px;}
.w38{width:80.100000px;}
.w3a{width:80.280000px;}
.w42{width:81.936000px;}
.w49{width:82.296000px;}
.w50{width:83.160000px;}
.w17{width:86.796000px;}
.w37{width:87.660000px;}
.w29{width:88.020000px;}
.w1c{width:88.200000px;}
.w45{width:88.560000px;}
.w39{width:92.196000px;}
.w3d{width:95.616000px;}
.w24{width:97.776000px;}
.w10{width:99.216000px;}
.w2f{width:102.456000px;}
.w4b{width:105.156000px;}
.w3f{width:107.856000px;}
.w46{width:112.860000px;}
.w43{width:113.220000px;}
.w20{width:114.876000px;}
.w31{width:115.056000px;}
.w1d{width:115.236000px;}
.w23{width:115.380000px;}
.w4e{width:120.996000px;}
.w53{width:122.400000px;}
.w19{width:122.436000px;}
.w11{width:123.156000px;}
.w25{width:123.516000px;}
.w21{width:127.836000px;}
.w47{width:128.016000px;}
.w1e{width:128.196000px;}
.w44{width:128.376000px;}
.w3b{width:138.276000px;}
.w36{width:138.636000px;}
.w13{width:139.716000px;}
.w14{width:139.896000px;}
.w32{width:141.300000px;}
.wf{width:142.740000px;}
.w5{width:143.856000px;}
.w1f{width:147.240000px;}
.w1a{width:152.460000px;}
.w40{width:154.620000px;}
.w26{width:156.060000px;}
.w4c{width:159.480000px;}
.w15{width:162.180000px;}
.w12{width:162.210000px;}
.w51{width:165.990000px;}
.w33{width:195.510000px;}
.w9{width:203.970000px;}
.w54{width:219.990000px;}
.we{width:223.095000px;}
.w22{width:242.355000px;}
.w4f{width:249.870000px;}
.w35{width:254.370000px;}
.w1b{width:260.535000px;}
.w28{width:270.075000px;}
.w18{width:275.610000px;}
.w27{width:298.155000px;}
.wc{width:305.175000px;}
.w2e{width:308.055000px;}
.w3c{width:324.075000px;}
.w41{width:329.655000px;}
.w48{width:331.095000px;}
.w4d{width:368.895000px;}
.w16{width:377.715000px;}
.w52{width:402.405000px;}
.wa{width:486.465000px;}
.wb{width:548.385000px;}
.w6{width:595.905000px;}
.w2{width:673.530000px;}
.w8{width:690.450000px;}
.w7{width:739.770000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x18{left:7.560000px;}
.x2{left:8.640000px;}
.x4f{left:10.980000px;}
.x4a{left:12.960000px;}
.x4c{left:16.020000px;}
.x4b{left:26.460000px;}
.xd{left:28.476000px;}
.x50{left:45.000000px;}
.x1{left:72.360000px;}
.x40{left:74.340000px;}
.x21{left:75.780000px;}
.x10{left:77.076000px;}
.x39{left:78.480000px;}
.x4{left:80.999987px;}
.x2a{left:89.675987px;}
.x51{left:93.990000px;}
.x54{left:96.695987px;}
.x5{left:98.130000px;}
.x11{left:99.390000px;}
.x4e{left:100.830000px;}
.x25{left:104.075987px;}
.x12{left:107.130000px;}
.x49{left:110.010000px;}
.xf{left:120.630000px;}
.x44{left:128.915987px;}
.x59{left:135.035987px;}
.xe{left:136.470000px;}
.x16{left:142.595987px;}
.x55{left:145.835987px;}
.x38{left:156.809987px;}
.x58{left:162.029987px;}
.x14{left:191.550000px;}
.x6{left:216.750000px;}
.x1d{left:236.190000px;}
.x3a{left:274.890000px;}
.x15{left:276.870000px;}
.x9{left:288.975000px;}
.x2b{left:320.655000px;}
.x3b{left:333.075000px;}
.x27{left:337.035000px;}
.xc{left:345.135000px;}
.x7{left:348.735000px;}
.x8{left:367.995000px;}
.x13{left:372.135000px;}
.x1e{left:376.635000px;}
.x19{left:378.435000px;}
.x34{left:381.855000px;}
.x26{left:384.194987px;}
.x41{left:399.135000px;}
.x45{left:404.895000px;}
.x3e{left:413.895000px;}
.x28{left:425.955000px;}
.xb{left:432.975000px;}
.x2c{left:436.755000px;}
.x17{left:446.114987px;}
.x1a{left:449.535000px;}
.x22{left:454.215000px;}
.xa{left:456.240000px;}
.x2f{left:461.055000px;}
.x56{left:476.565000px;}
.x35{left:485.025000px;}
.x46{left:487.545000px;}
.x42{left:495.645000px;}
.x3f{left:506.805000px;}
.x1f{left:517.065000px;}
.x31{left:529.305000px;}
.x2d{left:535.245000px;}
.x23{left:541.725000px;}
.x1c{left:549.465000px;}
.x43{left:555.585000px;}
.x36{left:562.965000px;}
.x52{left:567.285000px;}
.x3c{left:587.445000px;}
.x32{left:596.445000px;}
.x57{left:599.685000px;}
.x47{left:600.765000px;}
.x53{left:651.165000px;}
.x20{left:657.690000px;}
.x2e{left:659.490000px;}
.x4d{left:660.750000px;}
.x33{left:663.450000px;}
.x24{left:664.890000px;}
.x29{left:670.110000px;}
.x1b{left:673.350000px;}
.x37{left:678.750000px;}
.x3d{left:726.990000px;}
.x48{left:730.050000px;}
.x30{left:731.850000px;}
.x3{left:745.890000px;}
@media print{
.v4{vertical-align:-18.560000pt;}
.v3{vertical-align:-13.440000pt;}
.v2{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:18.560000pt;}
.lsd{letter-spacing:-6.986667pt;}
.ls6{letter-spacing:-1.610667pt;}
.lsc{letter-spacing:-0.821333pt;}
.ls8{letter-spacing:-0.352000pt;}
.lsa{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.094933pt;}
.ls17{letter-spacing:-0.007680pt;}
.ls5{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.011520pt;}
.ls4{letter-spacing:0.047360pt;}
.ls16{letter-spacing:0.094933pt;}
.ls13{letter-spacing:0.106240pt;}
.ls0{letter-spacing:0.117867pt;}
.lsb{letter-spacing:0.160000pt;}
.ls19{letter-spacing:0.183467pt;}
.ls7{letter-spacing:0.189333pt;}
.ls9{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.lse{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls14{letter-spacing:0.391040pt;}
.ls10{letter-spacing:1.440000pt;}
.ls11{letter-spacing:2.080000pt;}
.ls18{letter-spacing:14.672640pt;}
.ls15{letter-spacing:40.912640pt;}
.ls12{letter-spacing:56.912640pt;}
.ws0{word-spacing:-53.120000pt;}
.ws1{word-spacing:-14.778987pt;}
.ws2{word-spacing:-14.661120pt;}
.ws7{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.510933pt;}
.ws11{word-spacing:-13.463467pt;}
.ws10{word-spacing:-13.374933pt;}
.wsa{word-spacing:-13.327360pt;}
.ws6{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.185067pt;}
.ws8{word-spacing:-12.960000pt;}
.ws5{word-spacing:-10.496000pt;}
.ws9{word-spacing:-8.651520pt;}
.wsf{word-spacing:-8.640000pt;}
.ws3{word-spacing:-8.389120pt;}
.ws4{word-spacing:-7.232000pt;}
.wsc{word-spacing:-6.293333pt;}
.wsb{word-spacing:0.000000pt;}
._15{margin-left:-7.041067pt;}
._16{margin-left:-6.056960pt;}
._11{margin-left:-5.070293pt;}
._3{margin-left:-3.877760pt;}
._1{margin-left:-2.549760pt;}
._0{margin-left:-1.115520pt;}
._2{width:1.009280pt;}
._e{width:1.898667pt;}
._4{width:2.933760pt;}
._8{width:3.946240pt;}
._5{width:4.876800pt;}
._12{width:6.082133pt;}
._6{width:7.066240pt;}
._7{width:8.050987pt;}
._13{width:9.083520pt;}
._14{width:10.227627pt;}
._b{width:11.314560pt;}
._10{width:15.351680pt;}
._f{width:16.785920pt;}
._a{width:18.645120pt;}
._9{width:19.548160pt;}
._20{width:20.663680pt;}
._d{width:21.672960pt;}
._c{width:22.682240pt;}
._1f{width:25.922560pt;}
._1e{width:27.197440pt;}
._1d{width:28.709120pt;}
._19{width:51.944320pt;}
._1b{width:116.385920pt;}
._1a{width:117.713920pt;}
._17{width:146.816000pt;}
._18{width:177.514667pt;}
._1c{width:178.698667pt;}
.fs4{font-size:5.120000pt;}
.fs7{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fsa{font-size:50.560000pt;}
.fs0{font-size:53.120000pt;}
.fs8{font-size:56.320000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:2.880000pt;}
.yf0{bottom:2.906667pt;}
.y5b{bottom:3.360000pt;}
.ye5{bottom:3.520000pt;}
.ycc{bottom:3.680000pt;}
.yc4{bottom:3.840000pt;}
.ye{bottom:4.000000pt;}
.y3b{bottom:4.320000pt;}
.y9d{bottom:4.800000pt;}
.ya9{bottom:4.954667pt;}
.y9e{bottom:4.960000pt;}
.ya3{bottom:5.120000pt;}
.yd3{bottom:5.280000pt;}
.y5a{bottom:5.440000pt;}
.y19{bottom:5.480000pt;}
.ye3{bottom:7.200000pt;}
.y9b{bottom:7.520000pt;}
.yd8{bottom:7.680000pt;}
.ya8{bottom:7.834667pt;}
.ya1{bottom:7.840000pt;}
.yf9{bottom:9.120000pt;}
.y10a{bottom:9.440000pt;}
.y110{bottom:9.600000pt;}
.y128{bottom:9.640000pt;}
.y134{bottom:9.754667pt;}
.yf7{bottom:9.760000pt;}
.y117{bottom:9.786667pt;}
.y10f{bottom:9.920000pt;}
.y169{bottom:10.240000pt;}
.y149{bottom:10.400000pt;}
.y166{bottom:10.440000pt;}
.y148{bottom:10.880000pt;}
.y14d{bottom:10.920000pt;}
.yb4{bottom:11.040000pt;}
.yc{bottom:12.320000pt;}
.y1b{bottom:12.960000pt;}
.y100{bottom:13.440000pt;}
.yfe{bottom:13.600000pt;}
.y137{bottom:13.920000pt;}
.y114{bottom:14.266667pt;}
.y12c{bottom:14.400000pt;}
.y15d{bottom:14.880000pt;}
.y143{bottom:15.680000pt;}
.y15a{bottom:15.706667pt;}
.y154{bottom:15.840000pt;}
.yb5{bottom:16.640000pt;}
.y3{bottom:16.960000pt;}
.y108{bottom:17.120000pt;}
.y126{bottom:17.160000pt;}
.y132{bottom:17.274667pt;}
.y10d{bottom:17.280000pt;}
.y3a{bottom:17.440000pt;}
.y57{bottom:18.080000pt;}
.y116{bottom:18.240000pt;}
.y120{bottom:18.400000pt;}
.ye0{bottom:18.880000pt;}
.yee{bottom:18.906667pt;}
.y146{bottom:19.040000pt;}
.yc5{bottom:19.680000pt;}
.yd2{bottom:20.640000pt;}
.yca{bottom:20.666667pt;}
.yc7{bottom:20.800000pt;}
.yc2{bottom:21.280000pt;}
.yb7{bottom:22.600000pt;}
.y9a{bottom:22.880000pt;}
.ya7{bottom:23.194667pt;}
.ya0{bottom:23.200000pt;}
.y5{bottom:23.360000pt;}
.y14f{bottom:24.480000pt;}
.yf6{bottom:25.120000pt;}
.y18{bottom:25.640000pt;}
.y15e{bottom:26.720000pt;}
.yb{bottom:26.880000pt;}
.yfc{bottom:28.960000pt;}
.y12b{bottom:29.600000pt;}
.y113{bottom:29.626667pt;}
.y11e{bottom:29.920000pt;}
.y39{bottom:30.400000pt;}
.y107{bottom:32.320000pt;}
.y119{bottom:32.480000pt;}
.y125{bottom:32.520000pt;}
.y131{bottom:32.634667pt;}
.y10c{bottom:32.640000pt;}
.y56{bottom:33.440000pt;}
.y4{bottom:33.472000pt;}
.y145{bottom:34.400000pt;}
.y2{bottom:34.912000pt;}
.y14b{bottom:34.920000pt;}
.yc1{bottom:36.640000pt;}
.yaf{bottom:37.280000pt;}
.y14e{bottom:39.680000pt;}
.y17{bottom:40.200000pt;}
.yb2{bottom:40.800000pt;}
.ya{bottom:41.440000pt;}
.y1{bottom:43.360000pt;}
.y38{bottom:43.520000pt;}
.y158{bottom:44.666667pt;}
.y11d{bottom:45.280000pt;}
.y55{bottom:48.800000pt;}
.y16{bottom:54.920000pt;}
.y37{bottom:56.480000pt;}
.yac{bottom:60.826667pt;}
.y54{bottom:64.160000pt;}
.y9{bottom:65.306667pt;}
.y15{bottom:66.280000pt;}
.y36{bottom:69.440000pt;}
.yab{bottom:76.186667pt;}
.y53{bottom:79.520000pt;}
.y14{bottom:81.320000pt;}
.y35{bottom:82.560000pt;}
.y8{bottom:82.746667pt;}
.y52{bottom:94.880000pt;}
.y34{bottom:95.520000pt;}
.y13{bottom:98.440000pt;}
.y7{bottom:99.066667pt;}
.y172{bottom:105.472000pt;}
.y33{bottom:108.480000pt;}
.ye9{bottom:109.472000pt;}
.y51{bottom:110.080000pt;}
.y135{bottom:113.472000pt;}
.y12{bottom:116.040000pt;}
.y171{bottom:116.192000pt;}
.y98{bottom:116.672000pt;}
.y66{bottom:119.552000pt;}
.y32{bottom:121.600000pt;}
.y50{bottom:125.440000pt;}
.yea{bottom:125.472000pt;}
.y190{bottom:128.352000pt;}
.y130{bottom:129.312000pt;}
.y170{bottom:131.552000pt;}
.ya6{bottom:132.192000pt;}
.y31{bottom:134.560000pt;}
.y65{bottom:134.906667pt;}
.y11{bottom:138.920000pt;}
.y4f{bottom:140.800000pt;}
.ye7{bottom:141.466667pt;}
.y18f{bottom:143.546667pt;}
.y16f{bottom:146.746667pt;}
.y30{bottom:147.680000pt;}
.y64{bottom:150.266667pt;}
.y133{bottom:152.186667pt;}
.y4e{bottom:156.160000pt;}
.ye8{bottom:157.466667pt;}
.y10{bottom:157.960000pt;}
.y18e{bottom:158.906667pt;}
.y2f{bottom:160.640000pt;}
.y16e{bottom:162.106667pt;}
.y63{bottom:165.466667pt;}
.ya4{bottom:168.346667pt;}
.y4d{bottom:171.520000pt;}
.ye4{bottom:173.466667pt;}
.y2e{bottom:173.600000pt;}
.y18d{bottom:174.266667pt;}
.y12e{bottom:175.066667pt;}
.y16d{bottom:177.466667pt;}
.y62{bottom:180.826667pt;}
.ya5{bottom:186.586667pt;}
.y2d{bottom:186.720000pt;}
.y4c{bottom:186.880000pt;}
.ye6{bottom:189.466667pt;}
.y18c{bottom:189.626667pt;}
.y16c{bottom:192.826667pt;}
.y61{bottom:196.186667pt;}
.y12f{bottom:197.786667pt;}
.y2c{bottom:199.680000pt;}
.y4b{bottom:202.080000pt;}
.y9f{bottom:204.666667pt;}
.y18b{bottom:204.986667pt;}
.ye2{bottom:205.466667pt;}
.y16b{bottom:209.626667pt;}
.y60{bottom:211.546667pt;}
.y2b{bottom:212.640000pt;}
.y4a{bottom:217.440000pt;}
.y18a{bottom:220.346667pt;}
.y12a{bottom:220.666667pt;}
.ya2{bottom:222.746667pt;}
.y16a{bottom:225.466667pt;}
.y2a{bottom:225.760000pt;}
.ydf{bottom:225.786667pt;}
.y5f{bottom:226.906667pt;}
.y1a4{bottom:230.106667pt;}
.y49{bottom:232.800000pt;}
.y189{bottom:235.546667pt;}
.y29{bottom:238.746667pt;}
.y99{bottom:240.986667pt;}
.ye1{bottom:241.786667pt;}
.y5e{bottom:242.266667pt;}
.y12d{bottom:243.546667pt;}
.y168{bottom:244.026667pt;}
.y1a3{bottom:246.426667pt;}
.y48{bottom:248.186667pt;}
.y188{bottom:250.906667pt;}
.y28{bottom:254.106667pt;}
.y5d{bottom:257.466667pt;}
.y9c{bottom:259.066667pt;}
.yde{bottom:260.666667pt;}
.y1a2{bottom:262.106667pt;}
.y47{bottom:263.546667pt;}
.y187{bottom:267.226667pt;}
.y167{bottom:267.386667pt;}
.y27{bottom:269.466667pt;}
.y5c{bottom:272.826667pt;}
.y129{bottom:274.266667pt;}
.ydd{bottom:276.026667pt;}
.y1a1{bottom:277.306667pt;}
.y46{bottom:278.906667pt;}
.y186{bottom:283.546667pt;}
.y26{bottom:285.146667pt;}
.y59{bottom:285.306667pt;}
.y124{bottom:290.266667pt;}
.y97{bottom:291.226667pt;}
.ydc{bottom:291.386667pt;}
.y1a0{bottom:292.666667pt;}
.y45{bottom:294.106667pt;}
.y185{bottom:299.906667pt;}
.y25{bottom:300.666667pt;}
.y1c{bottom:300.866667pt;}
.y96{bottom:306.626667pt;}
.y19f{bottom:308.066667pt;}
.y44{bottom:309.466667pt;}
.y127{bottom:313.026667pt;}
.y184{bottom:316.066667pt;}
.y24{bottom:316.186667pt;}
.y165{bottom:317.826667pt;}
.ydb{bottom:321.986667pt;}
.y95{bottom:323.426667pt;}
.y43{bottom:324.826667pt;}
.y183{bottom:331.426667pt;}
.y23{bottom:331.546667pt;}
.y164{bottom:333.026667pt;}
.y122{bottom:335.906667pt;}
.yda{bottom:337.346667pt;}
.y19e{bottom:338.786667pt;}
.y42{bottom:340.186667pt;}
.y94{bottom:341.506667pt;}
.y182{bottom:346.786667pt;}
.y22{bottom:347.066667pt;}
.y163{bottom:348.386667pt;}
.yd9{bottom:354.146667pt;}
.y41{bottom:355.546667pt;}
.y93{bottom:356.866667pt;}
.y123{bottom:358.786667pt;}
.y181{bottom:362.146667pt;}
.y21{bottom:362.586667pt;}
.y162{bottom:363.746667pt;}
.y19d{bottom:369.346667pt;}
.yd7{bottom:369.986667pt;}
.y40{bottom:370.746667pt;}
.y92{bottom:372.066667pt;}
.y180{bottom:377.506667pt;}
.y20{bottom:378.106667pt;}
.y161{bottom:379.106667pt;}
.y11c{bottom:381.666667pt;}
.y19c{bottom:384.706667pt;}
.y3f{bottom:386.106667pt;}
.y91{bottom:387.426667pt;}
.yd6{bottom:390.786667pt;}
.y160{bottom:392.226667pt;}
.y17f{bottom:392.866667pt;}
.y1f{bottom:394.426667pt;}
.y19b{bottom:400.066667pt;}
.y3e{bottom:401.466667pt;}
.y90{bottom:402.786667pt;}
.y121{bottom:404.386667pt;}
.y17e{bottom:408.066667pt;}
.yd5{bottom:411.106667pt;}
.y19a{bottom:415.426667pt;}
.y3d{bottom:416.826667pt;}
.y8f{bottom:418.146667pt;}
.y1e{bottom:418.746667pt;}
.y15f{bottom:421.026667pt;}
.y17d{bottom:424.066667pt;}
.yd1{bottom:426.946667pt;}
.y199{bottom:430.786667pt;}
.y3c{bottom:432.186667pt;}
.y8e{bottom:433.506667pt;}
.y1d{bottom:434.586667pt;}
.y11f{bottom:435.746667pt;}
.y17c{bottom:441.826667pt;}
.yd4{bottom:443.746667pt;}
.y198{bottom:445.986667pt;}
.y8d{bottom:448.866667pt;}
.y15c{bottom:449.986667pt;}
.y17b{bottom:457.186667pt;}
.ycf{bottom:460.706667pt;}
.y197{bottom:461.346667pt;}
.y8c{bottom:465.506667pt;}
.y11b{bottom:466.626667pt;}
.y17a{bottom:472.546667pt;}
.y196{bottom:476.706667pt;}
.yd0{bottom:477.666667pt;}
.y118{bottom:482.626667pt;}
.y8b{bottom:483.586667pt;}
.y179{bottom:487.906667pt;}
.y15b{bottom:489.186667pt;}
.y195{bottom:492.066667pt;}
.ycd{bottom:494.466667pt;}
.y8a{bottom:498.946667pt;}
.y178{bottom:503.266667pt;}
.y11a{bottom:505.346667pt;}
.y157{bottom:506.626667pt;}
.y194{bottom:507.426667pt;}
.yce{bottom:511.426667pt;}
.y89{bottom:514.306667pt;}
.y177{bottom:518.466667pt;}
.y193{bottom:522.786667pt;}
.y112{bottom:528.226667pt;}
.yc9{bottom:528.386667pt;}
.y88{bottom:529.666667pt;}
.y176{bottom:533.826667pt;}
.y159{bottom:535.586667pt;}
.y192{bottom:538.013333pt;}
.ycb{bottom:545.373333pt;}
.y87{bottom:546.493333pt;}
.y175{bottom:550.653333pt;}
.y115{bottom:551.133333pt;}
.y191{bottom:553.373333pt;}
.yc6{bottom:562.173333pt;}
.y86{bottom:564.573333pt;}
.y156{bottom:568.733333pt;}
.yc8{bottom:579.133333pt;}
.y85{bottom:579.933333pt;}
.y111{bottom:581.853333pt;}
.y174{bottom:584.093333pt;}
.y155{bottom:584.573333pt;}
.yc0{bottom:596.093333pt;}
.y84{bottom:596.733333pt;}
.y10b{bottom:597.853333pt;}
.y173{bottom:599.453333pt;}
.y153{bottom:613.533333pt;}
.y83{bottom:614.813333pt;}
.y10e{bottom:620.573333pt;}
.yc3{bottom:628.893333pt;}
.y82{bottom:630.013333pt;}
.y152{bottom:642.493333pt;}
.y106{bottom:643.613333pt;}
.y81{bottom:645.373333pt;}
.ybf{bottom:648.573333pt;}
.y80{bottom:660.733333pt;}
.ybe{bottom:663.933333pt;}
.y109{bottom:666.493333pt;}
.y151{bottom:675.613333pt;}
.y7f{bottom:676.093333pt;}
.ybd{bottom:679.293333pt;}
.y7e{bottom:691.453333pt;}
.y105{bottom:691.933333pt;}
.ybc{bottom:694.653333pt;}
.y7d{bottom:706.813333pt;}
.y104{bottom:708.733333pt;}
.ybb{bottom:710.013333pt;}
.y150{bottom:720.253333pt;}
.y7c{bottom:722.013333pt;}
.yba{bottom:725.373333pt;}
.y103{bottom:726.813333pt;}
.y7b{bottom:737.373333pt;}
.yb9{bottom:740.573333pt;}
.y102{bottom:742.173333pt;}
.y14a{bottom:744.253333pt;}
.y1a{bottom:745.533333pt;}
.y7a{bottom:752.733333pt;}
.yb8{bottom:756.573333pt;}
.y101{bottom:758.973333pt;}
.y79{bottom:768.093333pt;}
.y14c{bottom:768.253333pt;}
.yf{bottom:771.293333pt;}
.yb6{bottom:772.093333pt;}
.yff{bottom:774.853333pt;}
.y78{bottom:783.493333pt;}
.y144{bottom:792.293333pt;}
.y77{bottom:798.693333pt;}
.yfd{bottom:801.413333pt;}
.yb1{bottom:807.813333pt;}
.y76{bottom:814.053333pt;}
.y147{bottom:815.813333pt;}
.yfb{bottom:828.133333pt;}
.y75{bottom:829.413333pt;}
.yb3{bottom:837.573333pt;}
.y141{bottom:839.813333pt;}
.y74{bottom:844.773333pt;}
.y142{bottom:856.613333pt;}
.y73{bottom:860.133333pt;}
.yb0{bottom:865.253333pt;}
.yfa{bottom:874.533333pt;}
.y72{bottom:875.493333pt;}
.yae{bottom:880.933333pt;}
.y140{bottom:888.293333pt;}
.yf5{bottom:890.373333pt;}
.y71{bottom:890.693333pt;}
.y13f{bottom:903.493333pt;}
.y70{bottom:906.053333pt;}
.yf8{bottom:912.613333pt;}
.y13e{bottom:918.853333pt;}
.y6f{bottom:921.413333pt;}
.yf3{bottom:928.613333pt;}
.yd{bottom:930.533333pt;}
.yad{bottom:931.333333pt;}
.y13d{bottom:934.213333pt;}
.y6e{bottom:936.773333pt;}
.yf4{bottom:944.613333pt;}
.y6{bottom:948.453333pt;}
.y13c{bottom:949.573333pt;}
.y6d{bottom:952.133333pt;}
.yf1{bottom:960.613333pt;}
.y13b{bottom:964.933333pt;}
.yaa{bottom:967.333333pt;}
.y6c{bottom:967.493333pt;}
.yf2{bottom:976.613333pt;}
.y13a{bottom:981.733333pt;}
.y6b{bottom:982.693333pt;}
.yed{bottom:992.613333pt;}
.y139{bottom:997.573333pt;}
.y6a{bottom:998.053333pt;}
.yef{bottom:1008.613333pt;}
.y69{bottom:1013.440000pt;}
.y138{bottom:1013.600000pt;}
.yeb{bottom:1024.640000pt;}
.y68{bottom:1028.800000pt;}
.y136{bottom:1029.600000pt;}
.yec{bottom:1040.640000pt;}
.y67{bottom:1044.160000pt;}
.hc{height:3.770000pt;}
.h36{height:15.200000pt;}
.h38{height:15.232000pt;}
.h31{height:15.360000pt;}
.h4e{height:15.392000pt;}
.h1b{height:15.552000pt;}
.h50{height:16.000000pt;}
.h2b{height:16.160000pt;}
.h2f{height:16.192000pt;}
.h2d{height:16.320000pt;}
.h5b{height:16.800000pt;}
.h20{height:17.280000pt;}
.h21{height:17.440000pt;}
.ha{height:17.600000pt;}
.h5e{height:17.920000pt;}
.h34{height:19.680000pt;}
.h32{height:20.160000pt;}
.h3a{height:21.440000pt;}
.h3f{height:21.920000pt;}
.h43{height:22.080000pt;}
.h4a{height:22.112000pt;}
.h40{height:22.240000pt;}
.h46{height:22.272000pt;}
.h42{height:22.400000pt;}
.h53{height:22.720000pt;}
.h5d{height:22.752000pt;}
.h52{height:23.200000pt;}
.h55{height:23.360000pt;}
.h54{height:23.392000pt;}
.h27{height:23.520000pt;}
.h10{height:24.437500pt;}
.h12{height:25.760000pt;}
.h3d{height:25.920000pt;}
.h3c{height:26.080000pt;}
.h4d{height:26.240000pt;}
.h4f{height:28.000000pt;}
.h57{height:28.160000pt;}
.h5a{height:28.192000pt;}
.h58{height:28.320000pt;}
.h28{height:29.120000pt;}
.h45{height:30.720000pt;}
.h48{height:30.880000pt;}
.h5f{height:30.982500pt;}
.h35{height:31.200000pt;}
.h37{height:31.232000pt;}
.h33{height:31.360000pt;}
.h7{height:32.160000pt;}
.h19{height:32.411250pt;}
.h1a{height:32.746250pt;}
.h30{height:33.120000pt;}
.h2e{height:33.152000pt;}
.h2c{height:33.280000pt;}
.h29{height:35.072000pt;}
.h1f{height:35.360000pt;}
.h23{height:35.520000pt;}
.h22{height:35.680000pt;}
.h11{height:36.656250pt;}
.h39{height:37.440000pt;}
.h1c{height:37.479688pt;}
.h18{height:37.583438pt;}
.h17{height:38.611250pt;}
.h5c{height:39.200000pt;}
.h9{height:39.840000pt;}
.h3b{height:41.440000pt;}
.h15{height:42.649687pt;}
.h3e{height:44.800000pt;}
.h4c{height:44.960000pt;}
.h49{height:44.992000pt;}
.h41{height:45.120000pt;}
.h60{height:45.156250pt;}
.h51{height:46.720000pt;}
.h2{height:47.392000pt;}
.h3{height:47.621250pt;}
.h8{height:48.000000pt;}
.h2a{height:48.960000pt;}
.hf{height:49.148438pt;}
.h1d{height:49.542500pt;}
.h25{height:49.760000pt;}
.h62{height:50.578125pt;}
.h56{height:52.160000pt;}
.h61{height:52.834688pt;}
.h26{height:53.280000pt;}
.h4b{height:53.600000pt;}
.h44{height:53.632000pt;}
.h16{height:54.390938pt;}
.hd{height:56.160000pt;}
.h59{height:57.152000pt;}
.h1e{height:57.375000pt;}
.he{height:57.667500pt;}
.h4{height:60.288750pt;}
.h5{height:63.656250pt;}
.h13{height:65.531250pt;}
.h47{height:84.960000pt;}
.h24{height:88.512000pt;}
.h6{height:108.032000pt;}
.hb{height:159.226667pt;}
.h14{height:444.666667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w34{width:50.912000pt;}
.w3e{width:52.640000pt;}
.w2c{width:58.752000pt;}
.w2b{width:58.880000pt;}
.w4a{width:59.040000pt;}
.w2a{width:59.872000pt;}
.w2d{width:60.160000pt;}
.wd{width:62.560000pt;}
.w3{width:66.560000pt;}
.w30{width:68.640000pt;}
.w38{width:71.200000pt;}
.w3a{width:71.360000pt;}
.w42{width:72.832000pt;}
.w49{width:73.152000pt;}
.w50{width:73.920000pt;}
.w17{width:77.152000pt;}
.w37{width:77.920000pt;}
.w29{width:78.240000pt;}
.w1c{width:78.400000pt;}
.w45{width:78.720000pt;}
.w39{width:81.952000pt;}
.w3d{width:84.992000pt;}
.w24{width:86.912000pt;}
.w10{width:88.192000pt;}
.w2f{width:91.072000pt;}
.w4b{width:93.472000pt;}
.w3f{width:95.872000pt;}
.w46{width:100.320000pt;}
.w43{width:100.640000pt;}
.w20{width:102.112000pt;}
.w31{width:102.272000pt;}
.w1d{width:102.432000pt;}
.w23{width:102.560000pt;}
.w4e{width:107.552000pt;}
.w53{width:108.800000pt;}
.w19{width:108.832000pt;}
.w11{width:109.472000pt;}
.w25{width:109.792000pt;}
.w21{width:113.632000pt;}
.w47{width:113.792000pt;}
.w1e{width:113.952000pt;}
.w44{width:114.112000pt;}
.w3b{width:122.912000pt;}
.w36{width:123.232000pt;}
.w13{width:124.192000pt;}
.w14{width:124.352000pt;}
.w32{width:125.600000pt;}
.wf{width:126.880000pt;}
.w5{width:127.872000pt;}
.w1f{width:130.880000pt;}
.w1a{width:135.520000pt;}
.w40{width:137.440000pt;}
.w26{width:138.720000pt;}
.w4c{width:141.760000pt;}
.w15{width:144.160000pt;}
.w12{width:144.186667pt;}
.w51{width:147.546667pt;}
.w33{width:173.786667pt;}
.w9{width:181.306667pt;}
.w54{width:195.546667pt;}
.we{width:198.306667pt;}
.w22{width:215.426667pt;}
.w4f{width:222.106667pt;}
.w35{width:226.106667pt;}
.w1b{width:231.586667pt;}
.w28{width:240.066667pt;}
.w18{width:244.986667pt;}
.w27{width:265.026667pt;}
.wc{width:271.266667pt;}
.w2e{width:273.826667pt;}
.w3c{width:288.066667pt;}
.w41{width:293.026667pt;}
.w48{width:294.306667pt;}
.w4d{width:327.906667pt;}
.w16{width:335.746667pt;}
.w52{width:357.693333pt;}
.wa{width:432.413333pt;}
.wb{width:487.453333pt;}
.w6{width:529.693333pt;}
.w2{width:598.693333pt;}
.w8{width:613.733333pt;}
.w7{width:657.573333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x18{left:6.720000pt;}
.x2{left:7.680000pt;}
.x4f{left:9.760000pt;}
.x4a{left:11.520000pt;}
.x4c{left:14.240000pt;}
.x4b{left:23.520000pt;}
.xd{left:25.312000pt;}
.x50{left:40.000000pt;}
.x1{left:64.320000pt;}
.x40{left:66.080000pt;}
.x21{left:67.360000pt;}
.x10{left:68.512000pt;}
.x39{left:69.760000pt;}
.x4{left:71.999988pt;}
.x2a{left:79.711988pt;}
.x51{left:83.546667pt;}
.x54{left:85.951988pt;}
.x5{left:87.226667pt;}
.x11{left:88.346667pt;}
.x4e{left:89.626667pt;}
.x25{left:92.511988pt;}
.x12{left:95.226667pt;}
.x49{left:97.786667pt;}
.xf{left:107.226667pt;}
.x44{left:114.591988pt;}
.x59{left:120.031988pt;}
.xe{left:121.306667pt;}
.x16{left:126.751988pt;}
.x55{left:129.631988pt;}
.x38{left:139.386655pt;}
.x58{left:144.026655pt;}
.x14{left:170.266667pt;}
.x6{left:192.666667pt;}
.x1d{left:209.946667pt;}
.x3a{left:244.346667pt;}
.x15{left:246.106667pt;}
.x9{left:256.866667pt;}
.x2b{left:285.026667pt;}
.x3b{left:296.066667pt;}
.x27{left:299.586667pt;}
.xc{left:306.786667pt;}
.x7{left:309.986667pt;}
.x8{left:327.106667pt;}
.x13{left:330.786667pt;}
.x1e{left:334.786667pt;}
.x19{left:336.386667pt;}
.x34{left:339.426667pt;}
.x26{left:341.506655pt;}
.x41{left:354.786667pt;}
.x45{left:359.906667pt;}
.x3e{left:367.906667pt;}
.x28{left:378.626667pt;}
.xb{left:384.866667pt;}
.x2c{left:388.226667pt;}
.x17{left:396.546655pt;}
.x1a{left:399.586667pt;}
.x22{left:403.746667pt;}
.xa{left:405.546667pt;}
.x2f{left:409.826667pt;}
.x56{left:423.613333pt;}
.x35{left:431.133333pt;}
.x46{left:433.373333pt;}
.x42{left:440.573333pt;}
.x3f{left:450.493333pt;}
.x1f{left:459.613333pt;}
.x31{left:470.493333pt;}
.x2d{left:475.773333pt;}
.x23{left:481.533333pt;}
.x1c{left:488.413333pt;}
.x43{left:493.853333pt;}
.x36{left:500.413333pt;}
.x52{left:504.253333pt;}
.x3c{left:522.173333pt;}
.x32{left:530.173333pt;}
.x57{left:533.053333pt;}
.x47{left:534.013333pt;}
.x53{left:578.813333pt;}
.x20{left:584.613333pt;}
.x2e{left:586.213333pt;}
.x4d{left:587.333333pt;}
.x33{left:589.733333pt;}
.x24{left:591.013333pt;}
.x29{left:595.653333pt;}
.x1b{left:598.533333pt;}
.x37{left:603.333333pt;}
.x3d{left:646.213333pt;}
.x48{left:648.933333pt;}
.x30{left:650.533333pt;}
.x3{left:663.013333pt;}
}




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