
    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_ace7cdd7c92f28ac78ad0656.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939941;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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.035156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_28c43f64069598f7a96b78d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.435059;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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_3558399ad1e746f6efb9c71f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.929199;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_e6dc5d0cc771ec2ffbac1f51.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.959961;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_fb1b9acbd0aff2f1cb379a3d.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.923828;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_2765a0926945e7a3063cd851.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.959961;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_5e567f115388124444285306.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.929199;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_43967b2f92c10dfdcaf5f9f8.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.052734;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_aa35cede7de70e4ad75de488.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.959961;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_bfbddf5264f9c206858df4a0.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.923828;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_4833d179b364273fe66e92d5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.752441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_402b837e4565781b6698c394.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.435059;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v2{vertical-align:-27.360000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls16{letter-spacing:-0.828000px;}
.ls10{letter-spacing:-0.792000px;}
.ls1b{letter-spacing:-0.524400px;}
.ls12{letter-spacing:-0.515400px;}
.ls15{letter-spacing:-0.262200px;}
.lse{letter-spacing:-0.232800px;}
.ls7{letter-spacing:-0.222600px;}
.ls1a{letter-spacing:-0.132600px;}
.lsa{letter-spacing:-0.109200px;}
.ls6{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.010080px;}
.ls14{letter-spacing:0.018000px;}
.ls5{letter-spacing:0.023040px;}
.lsd{letter-spacing:0.031680px;}
.ls11{letter-spacing:0.057600px;}
.ls1{letter-spacing:0.061200px;}
.ls18{letter-spacing:0.086400px;}
.lsb{letter-spacing:0.106800px;}
.ls19{letter-spacing:0.195600px;}
.lsc{letter-spacing:0.237600px;}
.ls13{letter-spacing:0.262080px;}
.ls0{letter-spacing:0.288000px;}
.ls2{letter-spacing:0.302400px;}
.lsf{letter-spacing:0.305400px;}
.ls4{letter-spacing:0.339840px;}
.ls3{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.600000px;}
.ls17{letter-spacing:843.096000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws13{word-spacing:-63.360000px;}
.wsa{word-spacing:-59.760000px;}
.ws10{word-spacing:-54.000000px;}
.ws4{word-spacing:-24.418800px;}
.wsc{word-spacing:-17.925240px;}
.wsd{word-spacing:-17.619840px;}
.ws3{word-spacing:-17.510640px;}
.ws5{word-spacing:-16.891200px;}
.ws15{word-spacing:-16.243200px;}
.ws6{word-spacing:-16.228800px;}
.ws12{word-spacing:-16.156800px;}
.ws2{word-spacing:-15.248880px;}
.ws0{word-spacing:-15.238800px;}
.ws1{word-spacing:-15.016200px;}
.ws14{word-spacing:-14.826240px;}
.ws11{word-spacing:-14.693640px;}
.ws8{word-spacing:-14.595840px;}
.ws9{word-spacing:-14.572800px;}
.ws7{word-spacing:-13.983840px;}
.wsf{word-spacing:-13.788000px;}
.wse{word-spacing:-13.770000px;}
.wsb{word-spacing:0.000000px;}
._15{margin-left:-5.315760px;}
._9{margin-left:-4.123440px;}
._5{margin-left:-2.450160px;}
._1{margin-left:-1.012608px;}
._0{width:1.127520px;}
._a{width:2.332560px;}
._6{width:3.585600px;}
._7{width:4.601520px;}
._f{width:6.573600px;}
._d{width:8.187120px;}
._e{width:9.406080px;}
._b{width:10.577520px;}
._14{width:11.892960px;}
._c{width:13.450608px;}
._13{width:15.454224px;}
._8{width:16.621200px;}
._4{width:17.916000px;}
._3{width:19.176480px;}
._16{width:20.865600px;}
._10{width:22.716720px;}
._1c{width:23.783760px;}
._12{width:25.190208px;}
._11{width:26.429760px;}
._19{width:28.085760px;}
._17{width:29.410560px;}
._18{width:30.800880px;}
._1a{width:33.782400px;}
._1b{width:34.879536px;}
._1e{width:36.320688px;}
._1d{width:37.629120px;}
._21{width:44.922240px;}
._1f{width:47.899008px;}
._20{width:49.385376px;}
._2{width:89.862096px;}
.fc4{color:transparent;}
.fc2{color:rgb(255,255,0);}
.fc1{color:rgb(5,99,193);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:5.760000px;}
.fs3{font-size:18.000000px;}
.fs4{font-size:23.760000px;}
.fs8{font-size:36.000000px;}
.fsf{font-size:41.760000px;}
.fsc{font-size:48.240000px;}
.fse{font-size:51.120000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs13{font-size:63.360000px;}
.fs5{font-size:66.240000px;}
.fs12{font-size:69.822393px;}
.fs0{font-size:72.000000px;}
.fsb{font-size:77.760000px;}
.fs7{font-size:84.240000px;}
.fs9{font-size:84.384000px;}
.fsa{font-size:95.760000px;}
.fsd{font-size:108.000000px;}
.fs11{font-size:257.760000px;}
.fs10{font-size:282.240000px;}
.y0{bottom:0.000000px;}
.ya{bottom:0.720000px;}
.y11{bottom:1.080000px;}
.y1e{bottom:1.980000px;}
.yc5{bottom:3.060000px;}
.y7{bottom:3.420000px;}
.y8b{bottom:3.600000px;}
.y35{bottom:3.780000px;}
.y54{bottom:3.960000px;}
.y119{bottom:5.040000px;}
.y11b{bottom:5.220000px;}
.y11d{bottom:5.400000px;}
.yf{bottom:5.580000px;}
.y5{bottom:5.760000px;}
.y51{bottom:6.480000px;}
.y8d{bottom:7.380000px;}
.y53{bottom:8.100000px;}
.y120{bottom:8.640000px;}
.y11f{bottom:10.260000px;}
.y121{bottom:10.620000px;}
.yc3{bottom:10.980000px;}
.y1d{bottom:14.400000px;}
.yfb{bottom:18.360000px;}
.yfc{bottom:18.720000px;}
.yc4{bottom:19.080000px;}
.y6{bottom:19.980000px;}
.y4{bottom:21.240000px;}
.y34{bottom:23.580000px;}
.ye{bottom:33.840000px;}
.y50{bottom:34.200000px;}
.y33{bottom:41.580000px;}
.y4f{bottom:45.000000px;}
.y8{bottom:53.460000px;}
.y3{bottom:54.720000px;}
.y4d{bottom:61.740000px;}
.y32{bottom:70.740000px;}
.y4c{bottom:79.200000px;}
.y2{bottom:80.280000px;}
.y31{bottom:88.200000px;}
.y4b{bottom:96.480000px;}
.y30{bottom:105.525000px;}
.y184{bottom:108.540000px;}
.yf1{bottom:110.700000px;}
.yd{bottom:111.060000px;}
.y4a{bottom:113.805000px;}
.y1a2{bottom:115.200000px;}
.y2f{bottom:122.985000px;}
.y16d{bottom:124.200000px;}
.y140{bottom:126.000000px;}
.ybe{bottom:126.900000px;}
.y183{bottom:127.260000px;}
.yf0{bottom:129.240000px;}
.y1be{bottom:131.040000px;}
.y49{bottom:131.085000px;}
.yc{bottom:133.200000px;}
.y1a1{bottom:133.920000px;}
.y114{bottom:136.260000px;}
.y2e{bottom:140.265000px;}
.y16c{bottom:142.920000px;}
.y89{bottom:144.180000px;}
.y13f{bottom:144.720000px;}
.ybd{bottom:145.620000px;}
.y182{bottom:145.980000px;}
.yef{bottom:147.960000px;}
.y48{bottom:148.365000px;}
.y1d8{bottom:148.860000px;}
.y1a0{bottom:152.670000px;}
.y113{bottom:155.010000px;}
.y2d{bottom:157.545000px;}
.y1bd{bottom:159.690000px;}
.y16b{bottom:161.670000px;}
.y88{bottom:162.930000px;}
.y13e{bottom:163.470000px;}
.ybc{bottom:164.370000px;}
.y181{bottom:164.730000px;}
.y47{bottom:165.645000px;}
.y19f{bottom:171.210000px;}
.y2c{bottom:175.005000px;}
.yee{bottom:175.710000px;}
.y8c{bottom:178.230000px;}
.y16a{bottom:180.210000px;}
.y87{bottom:181.650000px;}
.y13d{bottom:182.190000px;}
.y112{bottom:182.550000px;}
.y46{bottom:183.105000px;}
.y180{bottom:183.270000px;}
.y1bc{bottom:185.250000px;}
.y19e{bottom:189.930000px;}
.ybb{bottom:191.910000px;}
.y2b{bottom:192.285000px;}
.yed{bottom:194.430000px;}
.y169{bottom:198.930000px;}
.y86{bottom:200.370000px;}
.y45{bottom:200.385000px;}
.y13c{bottom:200.910000px;}
.y111{bottom:201.270000px;}
.y19d{bottom:208.650000px;}
.yba{bottom:210.630000px;}
.y17f{bottom:210.990000px;}
.yec{bottom:212.970000px;}
.y168{bottom:217.650000px;}
.y44{bottom:217.665000px;}
.y85{bottom:218.910000px;}
.y13b{bottom:219.450000px;}
.y1d7{bottom:219.630000px;}
.y110{bottom:219.990000px;}
.y19c{bottom:227.370000px;}
.y17e{bottom:229.710000px;}
.yeb{bottom:231.690000px;}
.y43{bottom:234.945000px;}
.y167{bottom:236.370000px;}
.y13a{bottom:238.170000px;}
.yb9{bottom:238.350000px;}
.y4e{bottom:238.710000px;}
.y19b{bottom:245.910000px;}
.y1d6{bottom:247.350000px;}
.y84{bottom:249.870000px;}
.yea{bottom:250.410000px;}
.y42{bottom:252.225000px;}
.y166{bottom:254.910000px;}
.y139{bottom:256.890000px;}
.yb8{bottom:257.070000px;}
.y2a{bottom:257.085000px;}
.y17d{bottom:257.250000px;}
.y10f{bottom:257.430000px;}
.y19a{bottom:264.630000px;}
.y1d5{bottom:266.070000px;}
.ye9{bottom:269.130000px;}
.y41{bottom:269.685000px;}
.y165{bottom:273.630000px;}
.yb7{bottom:275.610000px;}
.y10e{bottom:275.970000px;}
.y29{bottom:276.525000px;}
.y83{bottom:283.350000px;}
.y1d4{bottom:284.610000px;}
.y40{bottom:286.965000px;}
.ye8{bottom:287.670000px;}
.y164{bottom:292.350000px;}
.y138{bottom:294.150000px;}
.yb6{bottom:294.330000px;}
.y10d{bottom:294.690000px;}
.y28{bottom:295.425000px;}
.y1f{bottom:297.570000px;}
.y82{bottom:302.070000px;}
.y1d3{bottom:303.330000px;}
.y3f{bottom:304.245000px;}
.ye7{bottom:306.390000px;}
.y163{bottom:311.070000px;}
.y137{bottom:312.870000px;}
.yb5{bottom:313.050000px;}
.y10c{bottom:313.410000px;}
.y27{bottom:314.865000px;}
.y81{bottom:320.610000px;}
.y3e{bottom:321.525000px;}
.ye6{bottom:325.110000px;}
.y1b6{bottom:329.610000px;}
.y1d2{bottom:331.050000px;}
.y136{bottom:331.590000px;}
.y10b{bottom:332.130000px;}
.y26{bottom:333.945000px;}
.y162{bottom:338.610000px;}
.y3d{bottom:338.805000px;}
.y80{bottom:339.330000px;}
.yb4{bottom:340.770000px;}
.ye5{bottom:343.830000px;}
.y1b5{bottom:348.330000px;}
.y1d1{bottom:349.770000px;}
.y135{bottom:350.310000px;}
.y10a{bottom:350.670000px;}
.y25{bottom:353.415000px;}
.y3c{bottom:356.295000px;}
.y161{bottom:357.330000px;}
.y7f{bottom:358.050000px;}
.yb3{bottom:359.490000px;}
.ye4{bottom:362.370000px;}
.y1b4{bottom:367.050000px;}
.y1d0{bottom:368.310000px;}
.y134{bottom:368.850000px;}
.y109{bottom:369.390000px;}
.y24{bottom:372.315000px;}
.y3b{bottom:373.575000px;}
.y160{bottom:376.050000px;}
.y7e{bottom:376.770000px;}
.yb2{bottom:378.030000px;}
.ye3{bottom:381.090000px;}
.y199{bottom:385.050000px;}
.y1b3{bottom:385.770000px;}
.y1cf{bottom:387.030000px;}
.y133{bottom:387.570000px;}
.y108{bottom:388.110000px;}
.y3a{bottom:390.855000px;}
.y23{bottom:391.755000px;}
.y15f{bottom:394.770000px;}
.y7d{bottom:395.310000px;}
.ye2{bottom:399.810000px;}
.y198{bottom:403.815000px;}
.yb1{bottom:405.795000px;}
.y132{bottom:406.335000px;}
.y107{bottom:406.875000px;}
.y39{bottom:408.135000px;}
.y22{bottom:410.835000px;}
.y15e{bottom:413.355000px;}
.y7c{bottom:414.075000px;}
.y1ce{bottom:414.795000px;}
.ye1{bottom:418.575000px;}
.y197{bottom:422.355000px;}
.yb0{bottom:424.515000px;}
.y131{bottom:425.055000px;}
.y38{bottom:425.415000px;}
.y21{bottom:430.275000px;}
.y15d{bottom:432.075000px;}
.y7b{bottom:432.795000px;}
.y1cd{bottom:433.515000px;}
.ye0{bottom:437.115000px;}
.y196{bottom:441.075000px;}
.y37{bottom:442.875000px;}
.yaf{bottom:443.235000px;}
.y130{bottom:443.595000px;}
.y106{bottom:444.135000px;}
.y15c{bottom:450.795000px;}
.y7a{bottom:451.515000px;}
.y1cc{bottom:452.055000px;}
.y20{bottom:453.855000px;}
.ydf{bottom:455.835000px;}
.y195{bottom:459.795000px;}
.y36{bottom:460.155000px;}
.yae{bottom:461.775000px;}
.y105{bottom:462.855000px;}
.y15b{bottom:469.515000px;}
.y79{bottom:470.055000px;}
.y1cb{bottom:470.775000px;}
.y12f{bottom:471.315000px;}
.yde{bottom:474.555000px;}
.y194{bottom:478.515000px;}
.yad{bottom:480.495000px;}
.y104{bottom:481.575000px;}
.y15a{bottom:488.055000px;}
.y12e{bottom:490.035000px;}
.y193{bottom:497.055000px;}
.y78{bottom:497.775000px;}
.y1ca{bottom:498.495000px;}
.y17c{bottom:500.115000px;}
.ydd{bottom:502.095000px;}
.y1b2{bottom:506.055000px;}
.y159{bottom:506.775000px;}
.yac{bottom:508.215000px;}
.y12d{bottom:508.755000px;}
.y103{bottom:509.115000px;}
.y192{bottom:515.775000px;}
.y77{bottom:516.495000px;}
.y1c9{bottom:517.215000px;}
.y17b{bottom:518.835000px;}
.ydc{bottom:520.815000px;}
.y1b1{bottom:524.775000px;}
.y158{bottom:525.495000px;}
.y1bb{bottom:526.035000px;}
.yab{bottom:526.935000px;}
.y12c{bottom:527.295000px;}
.y102{bottom:527.835000px;}
.y191{bottom:534.495000px;}
.y76{bottom:535.215000px;}
.y1c8{bottom:535.755000px;}
.y17a{bottom:537.555000px;}
.ydb{bottom:539.535000px;}
.y1b0{bottom:543.495000px;}
.y157{bottom:544.215000px;}
.y1ba{bottom:544.755000px;}
.yaa{bottom:545.475000px;}
.y101{bottom:546.555000px;}
.y190{bottom:553.215000px;}
.y75{bottom:553.755000px;}
.y1c7{bottom:554.475000px;}
.y12b{bottom:555.015000px;}
.y179{bottom:556.275000px;}
.yc0{bottom:560.775000px;}
.y1af{bottom:562.215000px;}
.y156{bottom:562.755000px;}
.ya9{bottom:564.195000px;}
.yda{bottom:567.255000px;}
.y18f{bottom:571.755000px;}
.y74{bottom:572.475000px;}
.y1c6{bottom:573.195000px;}
.y12a{bottom:573.735000px;}
.y100{bottom:574.815000px;}
.y1ae{bottom:580.755000px;}
.y155{bottom:581.475000px;}
.ya8{bottom:582.915000px;}
.yd9{bottom:585.975000px;}
.y1d9{bottom:588.495000px;}
.y18e{bottom:590.475000px;}
.y73{bottom:591.195000px;}
.y1c5{bottom:591.915000px;}
.y129{bottom:592.455000px;}
.y178{bottom:593.535000px;}
.yff{bottom:596.595000px;}
.y1f2{bottom:596.955000px;}
.y1ad{bottom:599.475000px;}
.y154{bottom:600.195000px;}
.ya7{bottom:601.635000px;}
.yd8{bottom:604.515000px;}
.y18d{bottom:609.195000px;}
.y72{bottom:609.915000px;}
.y1c4{bottom:610.455000px;}
.y128{bottom:610.995000px;}
.y1f1{bottom:615.135000px;}
.y1ac{bottom:618.195000px;}
.y153{bottom:618.915000px;}
.y177{bottom:621.255000px;}
.yd7{bottom:623.235000px;}
.yfe{bottom:625.215000px;}
.y18c{bottom:627.915000px;}
.y71{bottom:628.455000px;}
.y1c3{bottom:629.175000px;}
.ya6{bottom:632.415000px;}
.y1f0{bottom:633.315000px;}
.y1ab{bottom:636.915000px;}
.y152{bottom:637.455000px;}
.y127{bottom:639.435000px;}
.y176{bottom:639.975000px;}
.y18b{bottom:646.455000px;}
.y70{bottom:647.175000px;}
.yd6{bottom:650.985000px;}
.y1aa{bottom:655.485000px;}
.y151{bottom:656.205000px;}
.y1ef{bottom:656.385000px;}
.y175{bottom:658.545000px;}
.y1c2{bottom:660.165000px;}
.y126{bottom:661.065000px;}
.y18a{bottom:665.205000px;}
.y6f{bottom:665.925000px;}
.yfd{bottom:669.165000px;}
.yd5{bottom:669.705000px;}
.y1a9{bottom:674.205000px;}
.y1b9{bottom:674.925000px;}
.y150{bottom:683.925000px;}
.ya5{bottom:684.645000px;}
.y174{bottom:686.985000px;}
.yd4{bottom:688.245000px;}
.y125{bottom:691.845000px;}
.y1a8{bottom:692.925000px;}
.y1ee{bottom:693.105000px;}
.y6e{bottom:693.465000px;}
.y1b8{bottom:693.645000px;}
.y14f{bottom:702.645000px;}
.ya4{bottom:703.185000px;}
.yd3{bottom:706.965000px;}
.y1a7{bottom:711.645000px;}
.y6d{bottom:712.185000px;}
.yfa{bottom:713.085000px;}
.y173{bottom:715.425000px;}
.y1ed{bottom:716.145000px;}
.y14e{bottom:721.185000px;}
.ya3{bottom:721.905000px;}
.y124{bottom:722.445000px;}
.yd2{bottom:725.685000px;}
.y1a6{bottom:730.185000px;}
.y6c{bottom:730.905000px;}
.y172{bottom:731.985000px;}
.y1ec{bottom:734.325000px;}
.ybf{bottom:737.205000px;}
.y14d{bottom:739.905000px;}
.ya2{bottom:740.625000px;}
.y1a5{bottom:748.905000px;}
.y6b{bottom:749.625000px;}
.yd1{bottom:753.225000px;}
.yf9{bottom:757.005000px;}
.y1eb{bottom:757.365000px;}
.y14c{bottom:758.625000px;}
.ya1{bottom:759.345000px;}
.y1a4{bottom:767.625000px;}
.y6a{bottom:768.345000px;}
.y1c{bottom:771.585000px;}
.yd0{bottom:771.945000px;}
.y1ea{bottom:775.905000px;}
.y14b{bottom:777.345000px;}
.ya0{bottom:777.885000px;}
.y123{bottom:784.005000px;}
.yf8{bottom:785.625000px;}
.y1a3{bottom:786.345000px;}
.y69{bottom:786.885000px;}
.ycf{bottom:790.665000px;}
.y14a{bottom:795.885000px;}
.y1e9{bottom:798.405000px;}
.y1b{bottom:802.005000px;}
.y189{bottom:804.885000px;}
.y68{bottom:805.605000px;}
.y9f{bottom:808.845000px;}
.yce{bottom:809.385000px;}
.yf7{bottom:814.425000px;}
.y122{bottom:814.605000px;}
.y1a{bottom:816.585000px;}
.y1e8{bottom:816.945000px;}
.y188{bottom:823.605000px;}
.y67{bottom:824.325000px;}
.ycd{bottom:828.105000px;}
.y149{bottom:833.325000px;}
.y1e7{bottom:835.125000px;}
.y9e{bottom:842.325000px;}
.y66{bottom:843.045000px;}
.y11e{bottom:845.385000px;}
.y19{bottom:845.925000px;}
.yf6{bottom:850.605000px;}
.y187{bottom:851.325000px;}
.y148{bottom:852.045000px;}
.ycc{bottom:856.365000px;}
.y1e6{bottom:857.805000px;}
.y9d{bottom:861.045000px;}
.y65{bottom:861.585000px;}
.y186{bottom:870.045000px;}
.y147{bottom:870.585000px;}
.y18{bottom:873.465000px;}
.y1e5{bottom:876.345000px;}
.ycb{bottom:878.145000px;}
.y9c{bottom:879.585000px;}
.y64{bottom:880.305000px;}
.y11c{bottom:881.385000px;}
.y17{bottom:886.425000px;}
.y185{bottom:888.585000px;}
.y146{bottom:889.305000px;}
.y1e4{bottom:894.525000px;}
.y9b{bottom:898.350000px;}
.y63{bottom:899.070000px;}
.y16{bottom:902.310000px;}
.yca{bottom:906.810000px;}
.yf5{bottom:907.350000px;}
.y145{bottom:908.070000px;}
.y11a{bottom:912.030000px;}
.y9a{bottom:917.070000px;}
.y1e3{bottom:917.250000px;}
.yf4{bottom:926.070000px;}
.y62{bottom:926.610000px;}
.y144{bottom:926.790000px;}
.y15{bottom:928.410000px;}
.yc9{bottom:935.430000px;}
.y171{bottom:935.610000px;}
.y99{bottom:935.790000px;}
.y118{bottom:942.810000px;}
.yf3{bottom:944.790000px;}
.y61{bottom:945.330000px;}
.y14{bottom:951.090000px;}
.y1e2{bottom:953.970000px;}
.y98{bottom:954.330000px;}
.yf2{bottom:963.330000px;}
.y60{bottom:964.050000px;}
.yc8{bottom:964.230000px;}
.y170{bottom:973.050000px;}
.y117{bottom:973.590000px;}
.y1e1{bottom:976.650000px;}
.y97{bottom:982.050000px;}
.y5f{bottom:982.770000px;}
.y13{bottom:986.370000px;}
.y16f{bottom:991.770000px;}
.yc7{bottom:992.850000px;}
.y1e0{bottom:995.190000px;}
.y96{bottom:1000.770000px;}
.y5e{bottom:1001.490000px;}
.y116{bottom:1009.770000px;}
.y1c1{bottom:1010.490000px;}
.y1df{bottom:1013.370000px;}
.y12{bottom:1015.890000px;}
.y16e{bottom:1019.310000px;}
.y95{bottom:1019.490000px;}
.y5d{bottom:1020.030000px;}
.yc6{bottom:1021.650000px;}
.y1c0{bottom:1029.030000px;}
.y10{bottom:1030.830000px;}
.y9{bottom:1036.050000px;}
.yb{bottom:1036.080000px;}
.y1de{bottom:1036.230000px;}
.y94{bottom:1038.030000px;}
.y5c{bottom:1038.750000px;}
.y143{bottom:1047.750000px;}
.yc2{bottom:1050.270000px;}
.y1dd{bottom:1054.770000px;}
.y93{bottom:1056.750000px;}
.y5b{bottom:1057.470000px;}
.y142{bottom:1066.470000px;}
.y8a{bottom:1072.770000px;}
.y1dc{bottom:1072.950000px;}
.y92{bottom:1075.470000px;}
.y5a{bottom:1076.190000px;}
.y1b7{bottom:1085.010000px;}
.y141{bottom:1085.190000px;}
.y1bf{bottom:1094.010000px;}
.y91{bottom:1094.190000px;}
.y59{bottom:1094.730000px;}
.y1db{bottom:1095.990000px;}
.yc1{bottom:1102.470000px;}
.y115{bottom:1103.730000px;}
.y90{bottom:1112.730000px;}
.y58{bottom:1113.450000px;}
.y1da{bottom:1114.170000px;}
.y8f{bottom:1131.450000px;}
.y57{bottom:1144.410000px;}
.y8e{bottom:1150.200000px;}
.y56{bottom:1166.400000px;}
.y55{bottom:1170.540000px;}
.y52{bottom:1187.820000px;}
.y1{bottom:1192.680000px;}
.h1a{height:4.106250px;}
.h9{height:4.320000px;}
.h10{height:5.220000px;}
.h11{height:12.832031px;}
.h2d{height:15.840000px;}
.h2e{height:16.020000px;}
.h7{height:17.820000px;}
.h5{height:17.903320px;}
.h31{height:18.000000px;}
.h33{height:18.036000px;}
.h26{height:18.738281px;}
.h24{height:21.960000px;}
.h34{height:23.220000px;}
.h4{height:25.380000px;}
.hd{height:25.664062px;}
.h20{height:27.000000px;}
.h17{height:29.770312px;}
.h1b{height:30.060000px;}
.h2f{height:31.140000px;}
.h30{height:31.176000px;}
.h2a{height:31.860000px;}
.h12{height:34.389844px;}
.h16{height:34.413398px;}
.h2c{height:38.496094px;}
.h2b{height:38.522461px;}
.h32{height:39.972656px;}
.h14{height:42.602344px;}
.h1f{height:42.631523px;}
.h25{height:43.472812px;}
.h23{height:44.820000px;}
.h37{height:45.199688px;}
.h1c{height:47.221875px;}
.h1e{height:47.254219px;}
.h19{height:49.680000px;}
.h18{height:51.328125px;}
.h6{height:51.363281px;}
.h35{height:52.366794px;}
.h3{height:53.709961px;}
.h8{height:54.000000px;}
.h21{height:55.825312px;}
.h27{height:55.980000px;}
.h22{height:58.860000px;}
.hb{height:60.053906px;}
.he{height:60.156562px;}
.hf{height:68.266406px;}
.h15{height:69.562969px;}
.h2{height:73.722656px;}
.h13{height:76.992188px;}
.h36{height:87.695156px;}
.hc{height:141.840000px;}
.ha{height:141.876000px;}
.h29{height:193.320000px;}
.h28{height:211.680000px;}
.h1d{height:474.015000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:43.200000px;}
.wd{width:47.160000px;}
.we{width:50.220000px;}
.w10{width:98.676000px;}
.w1d{width:104.436000px;}
.w15{width:109.656000px;}
.w1b{width:110.556000px;}
.w11{width:115.416000px;}
.w5{width:117.000000px;}
.w14{width:119.016000px;}
.w12{width:141.480000px;}
.w13{width:144.756000px;}
.w9{width:149.040000px;}
.w1a{width:157.860000px;}
.w1c{width:163.650000px;}
.w16{width:178.200000px;}
.w19{width:186.510000px;}
.w8{width:204.915000px;}
.w4{width:240.690000px;}
.w3{width:240.870000px;}
.w18{width:271.515000px;}
.w17{width:273.315000px;}
.wb{width:361.110000px;}
.wc{width:361.155000px;}
.wa{width:578.310000px;}
.w6{width:606.060000px;}
.w7{width:606.210000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:6.660000px;}
.x16{left:8.100000px;}
.x38{left:10.656000px;}
.x23{left:12.420000px;}
.x26{left:14.580000px;}
.x2b{left:21.240000px;}
.x32{left:23.976000px;}
.x25{left:25.740000px;}
.x36{left:28.296000px;}
.x35{left:30.240000px;}
.x37{left:33.120000px;}
.x21{left:35.316000px;}
.x3d{left:36.540000px;}
.x2d{left:38.016000px;}
.x31{left:40.500000px;}
.x2e{left:43.380000px;}
.x2a{left:44.865000px;}
.x2f{left:46.080000px;}
.x30{left:47.730000px;}
.x3c{left:51.120000px;}
.x4b{left:53.310000px;}
.x33{left:56.340000px;}
.x34{left:57.990000px;}
.xe{left:61.740000px;}
.x3b{left:62.820000px;}
.x42{left:66.780000px;}
.x48{left:73.980000px;}
.x49{left:76.680000px;}
.x4a{left:79.740000px;}
.x20{left:82.080000px;}
.x3{left:84.996000px;}
.x40{left:89.325000px;}
.x15{left:95.615987px;}
.x41{left:96.885000px;}
.x3e{left:100.485000px;}
.x10{left:102.285000px;}
.x6{left:111.060000px;}
.x3f{left:115.965000px;}
.x5{left:120.240000px;}
.x54{left:127.475987px;}
.x9{left:128.694000px;}
.x1a{left:132.155987px;}
.x1c{left:135.215987px;}
.xd{left:159.345000px;}
.x51{left:167.789987px;}
.x11{left:174.089987px;}
.x22{left:180.750000px;}
.x1f{left:194.969987px;}
.x4c{left:200.909987px;}
.xa{left:201.960000px;}
.x4d{left:205.769987px;}
.x12{left:206.849987px;}
.xc{left:229.755000px;}
.x17{left:234.030000px;}
.x8{left:250.815000px;}
.x4f{left:259.769987px;}
.x39{left:263.190000px;}
.x44{left:271.515000px;}
.x43{left:275.114987px;}
.x24{left:296.175000px;}
.xb{left:303.045000px;}
.x4{left:325.875000px;}
.x18{left:328.755000px;}
.x14{left:330.554987px;}
.x1e{left:340.454987px;}
.x1d{left:358.634987px;}
.x1b{left:362.234987px;}
.x19{left:388.334987px;}
.x52{left:389.594987px;}
.x53{left:396.614987px;}
.x45{left:429.375000px;}
.x27{left:437.655000px;}
.x13{left:446.504987px;}
.x3a{left:536.505000px;}
.x46{left:539.925000px;}
.x1{left:561.164987px;}
.x7{left:566.565000px;}
.x29{left:582.405000px;}
.xf{left:603.285000px;}
.x50{left:634.289987px;}
.x2c{left:701.430000px;}
.x47{left:703.590000px;}
.x4e{left:804.569987px;}
.x2{left:808.019987px;}
@media print{
.v2{vertical-align:-24.320000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls16{letter-spacing:-0.736000pt;}
.ls10{letter-spacing:-0.704000pt;}
.ls1b{letter-spacing:-0.466133pt;}
.ls12{letter-spacing:-0.458133pt;}
.ls15{letter-spacing:-0.233067pt;}
.lse{letter-spacing:-0.206933pt;}
.ls7{letter-spacing:-0.197867pt;}
.ls1a{letter-spacing:-0.117867pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls6{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.008960pt;}
.ls14{letter-spacing:0.016000pt;}
.ls5{letter-spacing:0.020480pt;}
.lsd{letter-spacing:0.028160pt;}
.ls11{letter-spacing:0.051200pt;}
.ls1{letter-spacing:0.054400pt;}
.ls18{letter-spacing:0.076800pt;}
.lsb{letter-spacing:0.094933pt;}
.ls19{letter-spacing:0.173867pt;}
.lsc{letter-spacing:0.211200pt;}
.ls13{letter-spacing:0.232960pt;}
.ls0{letter-spacing:0.256000pt;}
.ls2{letter-spacing:0.268800pt;}
.lsf{letter-spacing:0.271467pt;}
.ls4{letter-spacing:0.302080pt;}
.ls3{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.533333pt;}
.ls17{letter-spacing:749.418667pt;}
.ws13{word-spacing:-56.320000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws10{word-spacing:-48.000000pt;}
.ws4{word-spacing:-21.705600pt;}
.wsc{word-spacing:-15.933547pt;}
.wsd{word-spacing:-15.662080pt;}
.ws3{word-spacing:-15.565013pt;}
.ws5{word-spacing:-15.014400pt;}
.ws15{word-spacing:-14.438400pt;}
.ws6{word-spacing:-14.425600pt;}
.ws12{word-spacing:-14.361600pt;}
.ws2{word-spacing:-13.554560pt;}
.ws0{word-spacing:-13.545600pt;}
.ws1{word-spacing:-13.347733pt;}
.ws14{word-spacing:-13.178880pt;}
.ws11{word-spacing:-13.061013pt;}
.ws8{word-spacing:-12.974080pt;}
.ws9{word-spacing:-12.953600pt;}
.ws7{word-spacing:-12.430080pt;}
.wsf{word-spacing:-12.256000pt;}
.wse{word-spacing:-12.240000pt;}
.wsb{word-spacing:0.000000pt;}
._15{margin-left:-4.725120pt;}
._9{margin-left:-3.665280pt;}
._5{margin-left:-2.177920pt;}
._1{margin-left:-0.900096pt;}
._0{width:1.002240pt;}
._a{width:2.073387pt;}
._6{width:3.187200pt;}
._7{width:4.090240pt;}
._f{width:5.843200pt;}
._d{width:7.277440pt;}
._e{width:8.360960pt;}
._b{width:9.402240pt;}
._14{width:10.571520pt;}
._c{width:11.956096pt;}
._13{width:13.737088pt;}
._8{width:14.774400pt;}
._4{width:15.925333pt;}
._3{width:17.045760pt;}
._16{width:18.547200pt;}
._10{width:20.192640pt;}
._1c{width:21.141120pt;}
._12{width:22.391296pt;}
._11{width:23.493120pt;}
._19{width:24.965120pt;}
._17{width:26.142720pt;}
._18{width:27.378560pt;}
._1a{width:30.028800pt;}
._1b{width:31.004032pt;}
._1e{width:32.285056pt;}
._1d{width:33.448107pt;}
._21{width:39.930880pt;}
._1f{width:42.576896pt;}
._20{width:43.898112pt;}
._2{width:79.877419pt;}
.fs6{font-size:5.120000pt;}
.fs3{font-size:16.000000pt;}
.fs4{font-size:21.120000pt;}
.fs8{font-size:32.000000pt;}
.fsf{font-size:37.120000pt;}
.fsc{font-size:42.880000pt;}
.fse{font-size:45.440000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs13{font-size:56.320000pt;}
.fs5{font-size:58.880000pt;}
.fs12{font-size:62.064349pt;}
.fs0{font-size:64.000000pt;}
.fsb{font-size:69.120000pt;}
.fs7{font-size:74.880000pt;}
.fs9{font-size:75.008000pt;}
.fsa{font-size:85.120000pt;}
.fsd{font-size:96.000000pt;}
.fs11{font-size:229.120000pt;}
.fs10{font-size:250.880000pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:0.640000pt;}
.y11{bottom:0.960000pt;}
.y1e{bottom:1.760000pt;}
.yc5{bottom:2.720000pt;}
.y7{bottom:3.040000pt;}
.y8b{bottom:3.200000pt;}
.y35{bottom:3.360000pt;}
.y54{bottom:3.520000pt;}
.y119{bottom:4.480000pt;}
.y11b{bottom:4.640000pt;}
.y11d{bottom:4.800000pt;}
.yf{bottom:4.960000pt;}
.y5{bottom:5.120000pt;}
.y51{bottom:5.760000pt;}
.y8d{bottom:6.560000pt;}
.y53{bottom:7.200000pt;}
.y120{bottom:7.680000pt;}
.y11f{bottom:9.120000pt;}
.y121{bottom:9.440000pt;}
.yc3{bottom:9.760000pt;}
.y1d{bottom:12.800000pt;}
.yfb{bottom:16.320000pt;}
.yfc{bottom:16.640000pt;}
.yc4{bottom:16.960000pt;}
.y6{bottom:17.760000pt;}
.y4{bottom:18.880000pt;}
.y34{bottom:20.960000pt;}
.ye{bottom:30.080000pt;}
.y50{bottom:30.400000pt;}
.y33{bottom:36.960000pt;}
.y4f{bottom:40.000000pt;}
.y8{bottom:47.520000pt;}
.y3{bottom:48.640000pt;}
.y4d{bottom:54.880000pt;}
.y32{bottom:62.880000pt;}
.y4c{bottom:70.400000pt;}
.y2{bottom:71.360000pt;}
.y31{bottom:78.400000pt;}
.y4b{bottom:85.760000pt;}
.y30{bottom:93.800000pt;}
.y184{bottom:96.480000pt;}
.yf1{bottom:98.400000pt;}
.yd{bottom:98.720000pt;}
.y4a{bottom:101.160000pt;}
.y1a2{bottom:102.400000pt;}
.y2f{bottom:109.320000pt;}
.y16d{bottom:110.400000pt;}
.y140{bottom:112.000000pt;}
.ybe{bottom:112.800000pt;}
.y183{bottom:113.120000pt;}
.yf0{bottom:114.880000pt;}
.y1be{bottom:116.480000pt;}
.y49{bottom:116.520000pt;}
.yc{bottom:118.400000pt;}
.y1a1{bottom:119.040000pt;}
.y114{bottom:121.120000pt;}
.y2e{bottom:124.680000pt;}
.y16c{bottom:127.040000pt;}
.y89{bottom:128.160000pt;}
.y13f{bottom:128.640000pt;}
.ybd{bottom:129.440000pt;}
.y182{bottom:129.760000pt;}
.yef{bottom:131.520000pt;}
.y48{bottom:131.880000pt;}
.y1d8{bottom:132.320000pt;}
.y1a0{bottom:135.706667pt;}
.y113{bottom:137.786667pt;}
.y2d{bottom:140.040000pt;}
.y1bd{bottom:141.946667pt;}
.y16b{bottom:143.706667pt;}
.y88{bottom:144.826667pt;}
.y13e{bottom:145.306667pt;}
.ybc{bottom:146.106667pt;}
.y181{bottom:146.426667pt;}
.y47{bottom:147.240000pt;}
.y19f{bottom:152.186667pt;}
.y2c{bottom:155.560000pt;}
.yee{bottom:156.186667pt;}
.y8c{bottom:158.426667pt;}
.y16a{bottom:160.186667pt;}
.y87{bottom:161.466667pt;}
.y13d{bottom:161.946667pt;}
.y112{bottom:162.266667pt;}
.y46{bottom:162.760000pt;}
.y180{bottom:162.906667pt;}
.y1bc{bottom:164.666667pt;}
.y19e{bottom:168.826667pt;}
.ybb{bottom:170.586667pt;}
.y2b{bottom:170.920000pt;}
.yed{bottom:172.826667pt;}
.y169{bottom:176.826667pt;}
.y86{bottom:178.106667pt;}
.y45{bottom:178.120000pt;}
.y13c{bottom:178.586667pt;}
.y111{bottom:178.906667pt;}
.y19d{bottom:185.466667pt;}
.yba{bottom:187.226667pt;}
.y17f{bottom:187.546667pt;}
.yec{bottom:189.306667pt;}
.y168{bottom:193.466667pt;}
.y44{bottom:193.480000pt;}
.y85{bottom:194.586667pt;}
.y13b{bottom:195.066667pt;}
.y1d7{bottom:195.226667pt;}
.y110{bottom:195.546667pt;}
.y19c{bottom:202.106667pt;}
.y17e{bottom:204.186667pt;}
.yeb{bottom:205.946667pt;}
.y43{bottom:208.840000pt;}
.y167{bottom:210.106667pt;}
.y13a{bottom:211.706667pt;}
.yb9{bottom:211.866667pt;}
.y4e{bottom:212.186667pt;}
.y19b{bottom:218.586667pt;}
.y1d6{bottom:219.866667pt;}
.y84{bottom:222.106667pt;}
.yea{bottom:222.586667pt;}
.y42{bottom:224.200000pt;}
.y166{bottom:226.586667pt;}
.y139{bottom:228.346667pt;}
.yb8{bottom:228.506667pt;}
.y2a{bottom:228.520000pt;}
.y17d{bottom:228.666667pt;}
.y10f{bottom:228.826667pt;}
.y19a{bottom:235.226667pt;}
.y1d5{bottom:236.506667pt;}
.ye9{bottom:239.226667pt;}
.y41{bottom:239.720000pt;}
.y165{bottom:243.226667pt;}
.yb7{bottom:244.986667pt;}
.y10e{bottom:245.306667pt;}
.y29{bottom:245.800000pt;}
.y83{bottom:251.866667pt;}
.y1d4{bottom:252.986667pt;}
.y40{bottom:255.080000pt;}
.ye8{bottom:255.706667pt;}
.y164{bottom:259.866667pt;}
.y138{bottom:261.466667pt;}
.yb6{bottom:261.626667pt;}
.y10d{bottom:261.946667pt;}
.y28{bottom:262.600000pt;}
.y1f{bottom:264.506667pt;}
.y82{bottom:268.506667pt;}
.y1d3{bottom:269.626667pt;}
.y3f{bottom:270.440000pt;}
.ye7{bottom:272.346667pt;}
.y163{bottom:276.506667pt;}
.y137{bottom:278.106667pt;}
.yb5{bottom:278.266667pt;}
.y10c{bottom:278.586667pt;}
.y27{bottom:279.880000pt;}
.y81{bottom:284.986667pt;}
.y3e{bottom:285.800000pt;}
.ye6{bottom:288.986667pt;}
.y1b6{bottom:292.986667pt;}
.y1d2{bottom:294.266667pt;}
.y136{bottom:294.746667pt;}
.y10b{bottom:295.226667pt;}
.y26{bottom:296.840000pt;}
.y162{bottom:300.986667pt;}
.y3d{bottom:301.160000pt;}
.y80{bottom:301.626667pt;}
.yb4{bottom:302.906667pt;}
.ye5{bottom:305.626667pt;}
.y1b5{bottom:309.626667pt;}
.y1d1{bottom:310.906667pt;}
.y135{bottom:311.386667pt;}
.y10a{bottom:311.706667pt;}
.y25{bottom:314.146667pt;}
.y3c{bottom:316.706667pt;}
.y161{bottom:317.626667pt;}
.y7f{bottom:318.266667pt;}
.yb3{bottom:319.546667pt;}
.ye4{bottom:322.106667pt;}
.y1b4{bottom:326.266667pt;}
.y1d0{bottom:327.386667pt;}
.y134{bottom:327.866667pt;}
.y109{bottom:328.346667pt;}
.y24{bottom:330.946667pt;}
.y3b{bottom:332.066667pt;}
.y160{bottom:334.266667pt;}
.y7e{bottom:334.906667pt;}
.yb2{bottom:336.026667pt;}
.ye3{bottom:338.746667pt;}
.y199{bottom:342.266667pt;}
.y1b3{bottom:342.906667pt;}
.y1cf{bottom:344.026667pt;}
.y133{bottom:344.506667pt;}
.y108{bottom:344.986667pt;}
.y3a{bottom:347.426667pt;}
.y23{bottom:348.226667pt;}
.y15f{bottom:350.906667pt;}
.y7d{bottom:351.386667pt;}
.ye2{bottom:355.386667pt;}
.y198{bottom:358.946667pt;}
.yb1{bottom:360.706667pt;}
.y132{bottom:361.186667pt;}
.y107{bottom:361.666667pt;}
.y39{bottom:362.786667pt;}
.y22{bottom:365.186667pt;}
.y15e{bottom:367.426667pt;}
.y7c{bottom:368.066667pt;}
.y1ce{bottom:368.706667pt;}
.ye1{bottom:372.066667pt;}
.y197{bottom:375.426667pt;}
.yb0{bottom:377.346667pt;}
.y131{bottom:377.826667pt;}
.y38{bottom:378.146667pt;}
.y21{bottom:382.466667pt;}
.y15d{bottom:384.066667pt;}
.y7b{bottom:384.706667pt;}
.y1cd{bottom:385.346667pt;}
.ye0{bottom:388.546667pt;}
.y196{bottom:392.066667pt;}
.y37{bottom:393.666667pt;}
.yaf{bottom:393.986667pt;}
.y130{bottom:394.306667pt;}
.y106{bottom:394.786667pt;}
.y15c{bottom:400.706667pt;}
.y7a{bottom:401.346667pt;}
.y1cc{bottom:401.826667pt;}
.y20{bottom:403.426667pt;}
.ydf{bottom:405.186667pt;}
.y195{bottom:408.706667pt;}
.y36{bottom:409.026667pt;}
.yae{bottom:410.466667pt;}
.y105{bottom:411.426667pt;}
.y15b{bottom:417.346667pt;}
.y79{bottom:417.826667pt;}
.y1cb{bottom:418.466667pt;}
.y12f{bottom:418.946667pt;}
.yde{bottom:421.826667pt;}
.y194{bottom:425.346667pt;}
.yad{bottom:427.106667pt;}
.y104{bottom:428.066667pt;}
.y15a{bottom:433.826667pt;}
.y12e{bottom:435.586667pt;}
.y193{bottom:441.826667pt;}
.y78{bottom:442.466667pt;}
.y1ca{bottom:443.106667pt;}
.y17c{bottom:444.546667pt;}
.ydd{bottom:446.306667pt;}
.y1b2{bottom:449.826667pt;}
.y159{bottom:450.466667pt;}
.yac{bottom:451.746667pt;}
.y12d{bottom:452.226667pt;}
.y103{bottom:452.546667pt;}
.y192{bottom:458.466667pt;}
.y77{bottom:459.106667pt;}
.y1c9{bottom:459.746667pt;}
.y17b{bottom:461.186667pt;}
.ydc{bottom:462.946667pt;}
.y1b1{bottom:466.466667pt;}
.y158{bottom:467.106667pt;}
.y1bb{bottom:467.586667pt;}
.yab{bottom:468.386667pt;}
.y12c{bottom:468.706667pt;}
.y102{bottom:469.186667pt;}
.y191{bottom:475.106667pt;}
.y76{bottom:475.746667pt;}
.y1c8{bottom:476.226667pt;}
.y17a{bottom:477.826667pt;}
.ydb{bottom:479.586667pt;}
.y1b0{bottom:483.106667pt;}
.y157{bottom:483.746667pt;}
.y1ba{bottom:484.226667pt;}
.yaa{bottom:484.866667pt;}
.y101{bottom:485.826667pt;}
.y190{bottom:491.746667pt;}
.y75{bottom:492.226667pt;}
.y1c7{bottom:492.866667pt;}
.y12b{bottom:493.346667pt;}
.y179{bottom:494.466667pt;}
.yc0{bottom:498.466667pt;}
.y1af{bottom:499.746667pt;}
.y156{bottom:500.226667pt;}
.ya9{bottom:501.506667pt;}
.yda{bottom:504.226667pt;}
.y18f{bottom:508.226667pt;}
.y74{bottom:508.866667pt;}
.y1c6{bottom:509.506667pt;}
.y12a{bottom:509.986667pt;}
.y100{bottom:510.946667pt;}
.y1ae{bottom:516.226667pt;}
.y155{bottom:516.866667pt;}
.ya8{bottom:518.146667pt;}
.yd9{bottom:520.866667pt;}
.y1d9{bottom:523.106667pt;}
.y18e{bottom:524.866667pt;}
.y73{bottom:525.506667pt;}
.y1c5{bottom:526.146667pt;}
.y129{bottom:526.626667pt;}
.y178{bottom:527.586667pt;}
.yff{bottom:530.306667pt;}
.y1f2{bottom:530.626667pt;}
.y1ad{bottom:532.866667pt;}
.y154{bottom:533.506667pt;}
.ya7{bottom:534.786667pt;}
.yd8{bottom:537.346667pt;}
.y18d{bottom:541.506667pt;}
.y72{bottom:542.146667pt;}
.y1c4{bottom:542.626667pt;}
.y128{bottom:543.106667pt;}
.y1f1{bottom:546.786667pt;}
.y1ac{bottom:549.506667pt;}
.y153{bottom:550.146667pt;}
.y177{bottom:552.226667pt;}
.yd7{bottom:553.986667pt;}
.yfe{bottom:555.746667pt;}
.y18c{bottom:558.146667pt;}
.y71{bottom:558.626667pt;}
.y1c3{bottom:559.266667pt;}
.ya6{bottom:562.146667pt;}
.y1f0{bottom:562.946667pt;}
.y1ab{bottom:566.146667pt;}
.y152{bottom:566.626667pt;}
.y127{bottom:568.386667pt;}
.y176{bottom:568.866667pt;}
.y18b{bottom:574.626667pt;}
.y70{bottom:575.266667pt;}
.yd6{bottom:578.653333pt;}
.y1aa{bottom:582.653333pt;}
.y151{bottom:583.293333pt;}
.y1ef{bottom:583.453333pt;}
.y175{bottom:585.373333pt;}
.y1c2{bottom:586.813333pt;}
.y126{bottom:587.613333pt;}
.y18a{bottom:591.293333pt;}
.y6f{bottom:591.933333pt;}
.yfd{bottom:594.813333pt;}
.yd5{bottom:595.293333pt;}
.y1a9{bottom:599.293333pt;}
.y1b9{bottom:599.933333pt;}
.y150{bottom:607.933333pt;}
.ya5{bottom:608.573333pt;}
.y174{bottom:610.653333pt;}
.yd4{bottom:611.773333pt;}
.y125{bottom:614.973333pt;}
.y1a8{bottom:615.933333pt;}
.y1ee{bottom:616.093333pt;}
.y6e{bottom:616.413333pt;}
.y1b8{bottom:616.573333pt;}
.y14f{bottom:624.573333pt;}
.ya4{bottom:625.053333pt;}
.yd3{bottom:628.413333pt;}
.y1a7{bottom:632.573333pt;}
.y6d{bottom:633.053333pt;}
.yfa{bottom:633.853333pt;}
.y173{bottom:635.933333pt;}
.y1ed{bottom:636.573333pt;}
.y14e{bottom:641.053333pt;}
.ya3{bottom:641.693333pt;}
.y124{bottom:642.173333pt;}
.yd2{bottom:645.053333pt;}
.y1a6{bottom:649.053333pt;}
.y6c{bottom:649.693333pt;}
.y172{bottom:650.653333pt;}
.y1ec{bottom:652.733333pt;}
.ybf{bottom:655.293333pt;}
.y14d{bottom:657.693333pt;}
.ya2{bottom:658.333333pt;}
.y1a5{bottom:665.693333pt;}
.y6b{bottom:666.333333pt;}
.yd1{bottom:669.533333pt;}
.yf9{bottom:672.893333pt;}
.y1eb{bottom:673.213333pt;}
.y14c{bottom:674.333333pt;}
.ya1{bottom:674.973333pt;}
.y1a4{bottom:682.333333pt;}
.y6a{bottom:682.973333pt;}
.y1c{bottom:685.853333pt;}
.yd0{bottom:686.173333pt;}
.y1ea{bottom:689.693333pt;}
.y14b{bottom:690.973333pt;}
.ya0{bottom:691.453333pt;}
.y123{bottom:696.893333pt;}
.yf8{bottom:698.333333pt;}
.y1a3{bottom:698.973333pt;}
.y69{bottom:699.453333pt;}
.ycf{bottom:702.813333pt;}
.y14a{bottom:707.453333pt;}
.y1e9{bottom:709.693333pt;}
.y1b{bottom:712.893333pt;}
.y189{bottom:715.453333pt;}
.y68{bottom:716.093333pt;}
.y9f{bottom:718.973333pt;}
.yce{bottom:719.453333pt;}
.yf7{bottom:723.933333pt;}
.y122{bottom:724.093333pt;}
.y1a{bottom:725.853333pt;}
.y1e8{bottom:726.173333pt;}
.y188{bottom:732.093333pt;}
.y67{bottom:732.733333pt;}
.ycd{bottom:736.093333pt;}
.y149{bottom:740.733333pt;}
.y1e7{bottom:742.333333pt;}
.y9e{bottom:748.733333pt;}
.y66{bottom:749.373333pt;}
.y11e{bottom:751.453333pt;}
.y19{bottom:751.933333pt;}
.yf6{bottom:756.093333pt;}
.y187{bottom:756.733333pt;}
.y148{bottom:757.373333pt;}
.ycc{bottom:761.213333pt;}
.y1e6{bottom:762.493333pt;}
.y9d{bottom:765.373333pt;}
.y65{bottom:765.853333pt;}
.y186{bottom:773.373333pt;}
.y147{bottom:773.853333pt;}
.y18{bottom:776.413333pt;}
.y1e5{bottom:778.973333pt;}
.ycb{bottom:780.573333pt;}
.y9c{bottom:781.853333pt;}
.y64{bottom:782.493333pt;}
.y11c{bottom:783.453333pt;}
.y17{bottom:787.933333pt;}
.y185{bottom:789.853333pt;}
.y146{bottom:790.493333pt;}
.y1e4{bottom:795.133333pt;}
.y9b{bottom:798.533333pt;}
.y63{bottom:799.173333pt;}
.y16{bottom:802.053333pt;}
.yca{bottom:806.053333pt;}
.yf5{bottom:806.533333pt;}
.y145{bottom:807.173333pt;}
.y11a{bottom:810.693333pt;}
.y9a{bottom:815.173333pt;}
.y1e3{bottom:815.333333pt;}
.yf4{bottom:823.173333pt;}
.y62{bottom:823.653333pt;}
.y144{bottom:823.813333pt;}
.y15{bottom:825.253333pt;}
.yc9{bottom:831.493333pt;}
.y171{bottom:831.653333pt;}
.y99{bottom:831.813333pt;}
.y118{bottom:838.053333pt;}
.yf3{bottom:839.813333pt;}
.y61{bottom:840.293333pt;}
.y14{bottom:845.413333pt;}
.y1e2{bottom:847.973333pt;}
.y98{bottom:848.293333pt;}
.yf2{bottom:856.293333pt;}
.y60{bottom:856.933333pt;}
.yc8{bottom:857.093333pt;}
.y170{bottom:864.933333pt;}
.y117{bottom:865.413333pt;}
.y1e1{bottom:868.133333pt;}
.y97{bottom:872.933333pt;}
.y5f{bottom:873.573333pt;}
.y13{bottom:876.773333pt;}
.y16f{bottom:881.573333pt;}
.yc7{bottom:882.533333pt;}
.y1e0{bottom:884.613333pt;}
.y96{bottom:889.573333pt;}
.y5e{bottom:890.213333pt;}
.y116{bottom:897.573333pt;}
.y1c1{bottom:898.213333pt;}
.y1df{bottom:900.773333pt;}
.y12{bottom:903.013333pt;}
.y16e{bottom:906.053333pt;}
.y95{bottom:906.213333pt;}
.y5d{bottom:906.693333pt;}
.yc6{bottom:908.133333pt;}
.y1c0{bottom:914.693333pt;}
.y10{bottom:916.293333pt;}
.y9{bottom:920.933333pt;}
.yb{bottom:920.960000pt;}
.y1de{bottom:921.093333pt;}
.y94{bottom:922.693333pt;}
.y5c{bottom:923.333333pt;}
.y143{bottom:931.333333pt;}
.yc2{bottom:933.573333pt;}
.y1dd{bottom:937.573333pt;}
.y93{bottom:939.333333pt;}
.y5b{bottom:939.973333pt;}
.y142{bottom:947.973333pt;}
.y8a{bottom:953.573333pt;}
.y1dc{bottom:953.733333pt;}
.y92{bottom:955.973333pt;}
.y5a{bottom:956.613333pt;}
.y1b7{bottom:964.453333pt;}
.y141{bottom:964.613333pt;}
.y1bf{bottom:972.453333pt;}
.y91{bottom:972.613333pt;}
.y59{bottom:973.093333pt;}
.y1db{bottom:974.213333pt;}
.yc1{bottom:979.973333pt;}
.y115{bottom:981.093333pt;}
.y90{bottom:989.093333pt;}
.y58{bottom:989.733333pt;}
.y1da{bottom:990.373333pt;}
.y8f{bottom:1005.733333pt;}
.y57{bottom:1017.253333pt;}
.y8e{bottom:1022.400000pt;}
.y56{bottom:1036.800000pt;}
.y55{bottom:1040.480000pt;}
.y52{bottom:1055.840000pt;}
.y1{bottom:1060.160000pt;}
.h1a{height:3.650000pt;}
.h9{height:3.840000pt;}
.h10{height:4.640000pt;}
.h11{height:11.406250pt;}
.h2d{height:14.080000pt;}
.h2e{height:14.240000pt;}
.h7{height:15.840000pt;}
.h5{height:15.914062pt;}
.h31{height:16.000000pt;}
.h33{height:16.032000pt;}
.h26{height:16.656250pt;}
.h24{height:19.520000pt;}
.h34{height:20.640000pt;}
.h4{height:22.560000pt;}
.hd{height:22.812500pt;}
.h20{height:24.000000pt;}
.h17{height:26.462500pt;}
.h1b{height:26.720000pt;}
.h2f{height:27.680000pt;}
.h30{height:27.712000pt;}
.h2a{height:28.320000pt;}
.h12{height:30.568750pt;}
.h16{height:30.589687pt;}
.h2c{height:34.218750pt;}
.h2b{height:34.242188pt;}
.h32{height:35.531250pt;}
.h14{height:37.868750pt;}
.h1f{height:37.894687pt;}
.h25{height:38.642500pt;}
.h23{height:39.840000pt;}
.h37{height:40.177500pt;}
.h1c{height:41.975000pt;}
.h1e{height:42.003750pt;}
.h19{height:44.160000pt;}
.h18{height:45.625000pt;}
.h6{height:45.656250pt;}
.h35{height:46.548262pt;}
.h3{height:47.742188pt;}
.h8{height:48.000000pt;}
.h21{height:49.622500pt;}
.h27{height:49.760000pt;}
.h22{height:52.320000pt;}
.hb{height:53.381250pt;}
.he{height:53.472500pt;}
.hf{height:60.681250pt;}
.h15{height:61.833750pt;}
.h2{height:65.531250pt;}
.h13{height:68.437500pt;}
.h36{height:77.951250pt;}
.hc{height:126.080000pt;}
.ha{height:126.112000pt;}
.h29{height:171.840000pt;}
.h28{height:188.160000pt;}
.h1d{height:421.346667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:38.400000pt;}
.wd{width:41.920000pt;}
.we{width:44.640000pt;}
.w10{width:87.712000pt;}
.w1d{width:92.832000pt;}
.w15{width:97.472000pt;}
.w1b{width:98.272000pt;}
.w11{width:102.592000pt;}
.w5{width:104.000000pt;}
.w14{width:105.792000pt;}
.w12{width:125.760000pt;}
.w13{width:128.672000pt;}
.w9{width:132.480000pt;}
.w1a{width:140.320000pt;}
.w1c{width:145.466667pt;}
.w16{width:158.400000pt;}
.w19{width:165.786667pt;}
.w8{width:182.146667pt;}
.w4{width:213.946667pt;}
.w3{width:214.106667pt;}
.w18{width:241.346667pt;}
.w17{width:242.946667pt;}
.wb{width:320.986667pt;}
.wc{width:321.026667pt;}
.wa{width:514.053333pt;}
.w6{width:538.720000pt;}
.w7{width:538.853333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:5.920000pt;}
.x16{left:7.200000pt;}
.x38{left:9.472000pt;}
.x23{left:11.040000pt;}
.x26{left:12.960000pt;}
.x2b{left:18.880000pt;}
.x32{left:21.312000pt;}
.x25{left:22.880000pt;}
.x36{left:25.152000pt;}
.x35{left:26.880000pt;}
.x37{left:29.440000pt;}
.x21{left:31.392000pt;}
.x3d{left:32.480000pt;}
.x2d{left:33.792000pt;}
.x31{left:36.000000pt;}
.x2e{left:38.560000pt;}
.x2a{left:39.880000pt;}
.x2f{left:40.960000pt;}
.x30{left:42.426667pt;}
.x3c{left:45.440000pt;}
.x4b{left:47.386667pt;}
.x33{left:50.080000pt;}
.x34{left:51.546667pt;}
.xe{left:54.880000pt;}
.x3b{left:55.840000pt;}
.x42{left:59.360000pt;}
.x48{left:65.760000pt;}
.x49{left:68.160000pt;}
.x4a{left:70.880000pt;}
.x20{left:72.960000pt;}
.x3{left:75.552000pt;}
.x40{left:79.400000pt;}
.x15{left:84.991988pt;}
.x41{left:86.120000pt;}
.x3e{left:89.320000pt;}
.x10{left:90.920000pt;}
.x6{left:98.720000pt;}
.x3f{left:103.080000pt;}
.x5{left:106.880000pt;}
.x54{left:113.311988pt;}
.x9{left:114.394667pt;}
.x1a{left:117.471988pt;}
.x1c{left:120.191988pt;}
.xd{left:141.640000pt;}
.x51{left:149.146655pt;}
.x11{left:154.746655pt;}
.x22{left:160.666667pt;}
.x1f{left:173.306655pt;}
.x4c{left:178.586655pt;}
.xa{left:179.520000pt;}
.x4d{left:182.906655pt;}
.x12{left:183.866655pt;}
.xc{left:204.226667pt;}
.x17{left:208.026667pt;}
.x8{left:222.946667pt;}
.x4f{left:230.906655pt;}
.x39{left:233.946667pt;}
.x44{left:241.346667pt;}
.x43{left:244.546655pt;}
.x24{left:263.266667pt;}
.xb{left:269.373333pt;}
.x4{left:289.666667pt;}
.x18{left:292.226667pt;}
.x14{left:293.826655pt;}
.x1e{left:302.626655pt;}
.x1d{left:318.786655pt;}
.x1b{left:321.986655pt;}
.x19{left:345.186655pt;}
.x52{left:346.306655pt;}
.x53{left:352.546655pt;}
.x45{left:381.666667pt;}
.x27{left:389.026667pt;}
.x13{left:396.893322pt;}
.x3a{left:476.893333pt;}
.x46{left:479.933333pt;}
.x1{left:498.813322pt;}
.x7{left:503.613333pt;}
.x29{left:517.693333pt;}
.xf{left:536.253333pt;}
.x50{left:563.813322pt;}
.x2c{left:623.493333pt;}
.x47{left:625.413333pt;}
.x4e{left:715.173322pt;}
.x2{left:718.239988pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  