
    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_65ce352707cd29e989a4a334.woff')format("woff");}.ff1{font-family:ff1;line-height:0.999512;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_7e5df03541ebd8c7e109f7d2.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_bc9a07528febf76dd97cbe85.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_9f9899c786534414f1bc10ef.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_db25cb6cb0525a2f300f389c.woff')format("woff");}.ff5{font-family:ff5;line-height:0.708008;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_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c3b38a31f5aba266fc23e271.woff')format("woff");}.ff7{font-family:ff7;line-height:0.999512;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_0734b6ba59fbc2d81b679dc5.woff')format("woff");}.ff8{font-family:ff8;line-height:0.999512;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_de1214ee421729c3e0dca963.woff')format("woff");}.ff9{font-family:ff9;line-height:0.999512;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_bd11787356208090a9eafc3f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_80ed540cc46f1b323cfb2481.woff')format("woff");}.ffb{font-family:ffb;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_b4feb020e884746ba36338c3.woff')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_c0a4f030dc8e457b3d81b1f4.woff')format("woff");}.ffd{font-family:ffd;line-height:1.020020;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:-1.584000px;}
.ls16{letter-spacing:-1.008000px;}
.ls18{letter-spacing:-0.475200px;}
.ls3{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.288000px;}
.ls24{letter-spacing:-0.262200px;}
.ls26{letter-spacing:-0.207600px;}
.ls15{letter-spacing:-0.155400px;}
.lsc{letter-spacing:-0.144000px;}
.lsa{letter-spacing:-0.072000px;}
.ls19{letter-spacing:-0.057600px;}
.ls2d{letter-spacing:-0.008640px;}
.ls25{letter-spacing:-0.000006px;}
.ls6{letter-spacing:-0.000003px;}
.ls0{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.054720px;}
.lsd{letter-spacing:0.072000px;}
.ls2{letter-spacing:0.074880px;}
.ls12{letter-spacing:0.090000px;}
.ls2a{letter-spacing:0.132600px;}
.ls8{letter-spacing:0.144000px;}
.lsb{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.222000px;}
.ls1e{letter-spacing:0.265200px;}
.ls28{letter-spacing:0.288000px;}
.ls1d{letter-spacing:0.357000px;}
.ls4{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls10{letter-spacing:8.856000px;}
.ls29{letter-spacing:19.061280px;}
.ls27{letter-spacing:23.058720px;}
.ls23{letter-spacing:24.101280px;}
.ls17{letter-spacing:24.821280px;}
.ls22{letter-spacing:28.818720px;}
.ls20{letter-spacing:29.141280px;}
.ls13{letter-spacing:29.538720px;}
.ls14{letter-spacing:29.861280px;}
.ls21{letter-spacing:32.021280px;}
.ls1f{letter-spacing:34.181280px;}
.ls1b{letter-spacing:34.901280px;}
.ls11{letter-spacing:35.298720px;}
.ls2c{letter-spacing:53.585280px;}
.ls2b{letter-spacing:57.185280px;}
.ls1c{letter-spacing:59.321280px;}
.lsf{letter-spacing:60.768000px;}
.ls1{letter-spacing:845.741280px;}
.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;}
}
.ws19{word-spacing:-66.240000px;}
.wsf{word-spacing:-30.240000px;}
.ws10{word-spacing:-22.248000px;}
.ws11{word-spacing:-19.152000px;}
.ws13{word-spacing:-16.848000px;}
.wse{word-spacing:-16.488000px;}
.ws3{word-spacing:-14.832000px;}
.ws4{word-spacing:-14.760000px;}
.wsa{word-spacing:-14.616000px;}
.wsb{word-spacing:-14.544000px;}
.wsd{word-spacing:-14.472000px;}
.ws1{word-spacing:-14.400000px;}
.ws6{word-spacing:-14.399997px;}
.ws9{word-spacing:-14.328000px;}
.wsc{word-spacing:-14.256000px;}
.ws5{word-spacing:-14.112000px;}
.ws2{word-spacing:-14.040000px;}
.ws14{word-spacing:-13.645440px;}
.ws18{word-spacing:-13.605000px;}
.ws1a{word-spacing:-13.513200px;}
.ws7{word-spacing:-13.470000px;}
.ws1c{word-spacing:-13.380600px;}
.ws16{word-spacing:-13.302720px;}
.ws17{word-spacing:-13.248000px;}
.ws1d{word-spacing:-13.239360px;}
.ws15{word-spacing:-13.190400px;}
.ws12{word-spacing:-13.092600px;}
.ws1b{word-spacing:-12.985800px;}
.ws8{word-spacing:-12.816000px;}
.ws0{word-spacing:0.000000px;}
._11{margin-left:-9.122880px;}
._14{margin-left:-6.648240px;}
._5{margin-left:-5.544000px;}
._7{margin-left:-4.104000px;}
._6{margin-left:-2.952000px;}
._4{margin-left:-1.293120px;}
._0{width:1.053360px;}
._1{width:2.088960px;}
._d{width:3.214080px;}
._e{width:4.337280px;}
._f{width:5.740080px;}
._2c{width:6.798240px;}
._2f{width:8.130240px;}
._30{width:9.869760px;}
._2b{width:11.692800px;}
._10{width:14.564640px;}
._32{width:15.850080px;}
._37{width:16.980720px;}
._2e{width:18.050880px;}
._2d{width:19.209600px;}
._31{width:20.998080px;}
._35{width:22.695120px;}
._36{width:23.713920px;}
._33{width:26.098560px;}
._34{width:27.533280px;}
._8{width:28.980000px;}
._9{width:30.036000px;}
._a{width:33.840000px;}
._b{width:35.411760px;}
._c{width:36.766560px;}
._12{width:90.552000px;}
._16{width:101.424000px;}
._28{width:113.760000px;}
._3{width:235.272000px;}
._2{width:505.152000px;}
._26{width:623.951760px;}
._19{width:657.836160px;}
._13{width:860.330640px;}
._2a{width:935.544000px;}
._17{width:1046.568000px;}
._27{width:1109.738640px;}
._1e{width:1264.152000px;}
._18{width:1287.120000px;}
._24{width:1389.648000px;}
._23{width:1411.343760px;}
._15{width:1477.704000px;}
._29{width:1490.304000px;}
._1b{width:1526.592000px;}
._22{width:1604.424000px;}
._1f{width:1736.616000px;}
._25{width:1753.824000px;}
._20{width:1767.072000px;}
._1a{width:1829.640000px;}
._1c{width:1872.120000px;}
._21{width:1913.448000px;}
._1d{width:1982.640000px;}
._38{width:2777.928000px;}
.fc4{color:rgb(5,99,193);}
.fc1{color:transparent;}
.fc3{color:rgb(68,84,106);}
.fc2{color:rgb(66,66,66);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.240000px;}
.fs6{font-size:54.000000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs5{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1c{bottom:4.500000px;}
.y25{bottom:4.860000px;}
.y3a{bottom:5.040000px;}
.y2e{bottom:5.400000px;}
.y37{bottom:9.720000px;}
.y43{bottom:18.000000px;}
.y41{bottom:18.180000px;}
.y4d{bottom:18.720000px;}
.y35{bottom:26.820000px;}
.y70{bottom:26.865000px;}
.y32{bottom:27.000000px;}
.y1b{bottom:42.516000px;}
.y6b{bottom:48.780000px;}
.y6f{bottom:48.825000px;}
.y62{bottom:48.960000px;}
.y61{bottom:70.965000px;}
.y1a{bottom:71.856000px;}
.y18c{bottom:112.356000px;}
.y16c{bottom:113.076000px;}
.y19b{bottom:115.236000px;}
.y18{bottom:117.216000px;}
.y67{bottom:121.356000px;}
.y1d9{bottom:125.316000px;}
.y102{bottom:125.676000px;}
.y11f{bottom:128.016000px;}
.y17b{bottom:130.896000px;}
.y81{bottom:131.256000px;}
.y146{bottom:132.696000px;}
.y18b{bottom:134.136000px;}
.yaf{bottom:136.476000px;}
.y1bc{bottom:143.496000px;}
.y66{bottom:144.036000px;}
.ye2{bottom:146.196000px;}
.y13a{bottom:146.556000px;}
.y16b{bottom:146.916000px;}
.y1d8{bottom:147.096000px;}
.y101{bottom:147.456000px;}
.y11e{bottom:149.796000px;}
.y19a{bottom:149.976000px;}
.yd2{bottom:151.230000px;}
.y17a{bottom:152.670000px;}
.y145{bottom:155.370000px;}
.y18a{bottom:155.910000px;}
.y17{bottom:156.990000px;}
.y1bb{bottom:165.270000px;}
.y65{bottom:166.890000px;}
.ye1{bottom:167.970000px;}
.y16a{bottom:168.510000px;}
.y1d7{bottom:168.870000px;}
.yae{bottom:169.230000px;}
.y80{bottom:171.030000px;}
.y11d{bottom:171.570000px;}
.y1fb{bottom:172.830000px;}
.yd1{bottom:173.010000px;}
.y189{bottom:177.510000px;}
.y144{bottom:177.870000px;}
.y49{bottom:178.050000px;}
.y139{bottom:180.210000px;}
.y199{bottom:185.250000px;}
.y179{bottom:186.330000px;}
.y1ba{bottom:186.870000px;}
.y64{bottom:189.570000px;}
.ye0{bottom:189.750000px;}
.y169{bottom:190.290000px;}
.y1d6{bottom:190.470000px;}
.y100{bottom:190.830000px;}
.y11c{bottom:193.350000px;}
.yd0{bottom:194.790000px;}
.y16{bottom:196.050000px;}
.y188{bottom:199.290000px;}
.y143{bottom:200.550000px;}
.yad{bottom:201.810000px;}
.y1fa{bottom:206.490000px;}
.y178{bottom:208.110000px;}
.y1b9{bottom:208.650000px;}
.y7f{bottom:210.810000px;}
.ydf{bottom:211.530000px;}
.y48{bottom:211.710000px;}
.y168{bottom:212.070000px;}
.y63{bottom:212.250000px;}
.yff{bottom:212.610000px;}
.y138{bottom:213.870000px;}
.y11b{bottom:215.130000px;}
.ycf{bottom:216.570000px;}
.y187{bottom:221.070000px;}
.y142{bottom:223.230000px;}
.y198{bottom:223.770000px;}
.y1d5{bottom:225.210000px;}
.y15{bottom:229.890000px;}
.yde{bottom:233.130000px;}
.y167{bottom:233.850000px;}
.yac{bottom:234.570000px;}
.y60{bottom:234.930000px;}
.y11a{bottom:236.730000px;}
.y1f9{bottom:240.330000px;}
.y1b8{bottom:245.010000px;}
.y47{bottom:245.550000px;}
.y141{bottom:245.730000px;}
.yfe{bottom:246.270000px;}
.y137{bottom:247.710000px;}
.yce{bottom:250.230000px;}
.y197{bottom:250.410000px;}
.y7e{bottom:250.590000px;}
.y177{bottom:251.490000px;}
.y186{bottom:254.730000px;}
.y166{bottom:255.450000px;}
.y119{bottom:258.510000px;}
.y1d4{bottom:258.870000px;}
.y46{bottom:261.930000px;}
.y1f8{bottom:262.110000px;}
.y14{bottom:263.550000px;}
.ydd{bottom:266.970000px;}
.yab{bottom:267.330000px;}
.yfd{bottom:268.050000px;}
.y140{bottom:268.410000px;}
.ycd{bottom:272.010000px;}
.y176{bottom:273.270000px;}
.y185{bottom:276.510000px;}
.y165{bottom:277.230000px;}
.y118{bottom:280.290000px;}
.y1d3{bottom:280.650000px;}
.y136{bottom:281.370000px;}
.y1f7{bottom:283.710000px;}
.y1b7{bottom:288.615000px;}
.ydc{bottom:288.795000px;}
.yfc{bottom:289.875000px;}
.y7d{bottom:290.595000px;}
.ycc{bottom:293.835000px;}
.y175{bottom:295.095000px;}
.y45{bottom:296.355000px;}
.y13{bottom:297.435000px;}
.y184{bottom:298.335000px;}
.y164{bottom:299.055000px;}
.yaa{bottom:300.135000px;}
.y117{bottom:302.115000px;}
.y13f{bottom:303.015000px;}
.y1d2{bottom:303.195000px;}
.y1f6{bottom:305.535000px;}
.ydb{bottom:310.395000px;}
.y135{bottom:315.255000px;}
.y183{bottom:319.935000px;}
.y5f{bottom:323.715000px;}
.y13e{bottom:324.795000px;}
.y1d1{bottom:324.975000px;}
.yfb{bottom:325.155000px;}
.y1f5{bottom:327.315000px;}
.y174{bottom:328.755000px;}
.ycb{bottom:330.195000px;}
.y7c{bottom:330.375000px;}
.y44{bottom:330.915000px;}
.y12{bottom:331.095000px;}
.yda{bottom:332.175000px;}
.ya9{bottom:332.715000px;}
.y1b6{bottom:333.795000px;}
.y116{bottom:335.775000px;}
.y134{bottom:336.855000px;}
.y182{bottom:341.715000px;}
.y1d0{bottom:346.755000px;}
.y1f4{bottom:349.095000px;}
.y173{bottom:350.535000px;}
.yd9{bottom:353.955000px;}
.y163{bottom:354.495000px;}
.y115{bottom:357.555000px;}
.y133{bottom:358.635000px;}
.y13d{bottom:360.255000px;}
.yfa{bottom:363.315000px;}
.y181{bottom:363.495000px;}
.y11{bottom:364.935000px;}
.y42{bottom:365.475000px;}
.y1b5{bottom:367.455000px;}
.y5e{bottom:368.355000px;}
.y1cf{bottom:368.535000px;}
.y7b{bottom:370.155000px;}
.y1f3{bottom:370.695000px;}
.yca{bottom:371.055000px;}
.y172{bottom:372.315000px;}
.ya8{bottom:374.475000px;}
.yd8{bottom:375.735000px;}
.y162{bottom:377.175000px;}
.y114{bottom:379.155000px;}
.yf9{bottom:385.095000px;}
.y5d{bottom:391.035000px;}
.y132{bottom:392.295000px;}
.y1f2{bottom:392.475000px;}
.yc9{bottom:392.835000px;}
.y171{bottom:393.915000px;}
.yd7{bottom:397.335000px;}
.y10{bottom:398.595000px;}
.y180{bottom:398.775000px;}
.y40{bottom:399.855000px;}
.y1b4{bottom:401.295000px;}
.y1ce{bottom:403.095000px;}
.yf8{bottom:406.695000px;}
.ya7{bottom:407.235000px;}
.y7a{bottom:409.935000px;}
.y161{bottom:411.735000px;}
.y5c{bottom:413.895000px;}
.y1f1{bottom:414.255000px;}
.yc8{bottom:414.615000px;}
.y131{bottom:414.975000px;}
.y170{bottom:415.695000px;}
.y1cd{bottom:424.875000px;}
.y13c{bottom:425.235000px;}
.yd6{bottom:431.175000px;}
.yf{bottom:432.255000px;}
.y160{bottom:433.515000px;}
.y1b3{bottom:434.955000px;}
.y1f0{bottom:436.035000px;}
.yc7{bottom:436.395000px;}
.y5b{bottom:436.575000px;}
.y16f{bottom:437.475000px;}
.y130{bottom:437.655000px;}
.y17f{bottom:439.635000px;}
.ya6{bottom:439.815000px;}
.yf7{bottom:443.235000px;}
.y79{bottom:449.715000px;}
.y3f{bottom:452.415000px;}
.y113{bottom:452.595000px;}
.yd5{bottom:452.775000px;}
.y15f{bottom:455.115000px;}
.y1b2{bottom:456.735000px;}
.y1ef{bottom:457.635000px;}
.y1cc{bottom:458.535000px;}
.ye{bottom:466.095000px;}
.yc6{bottom:470.055000px;}
.y16e{bottom:471.135000px;}
.y12f{bottom:472.215000px;}
.ya5{bottom:472.575000px;}
.y112{bottom:474.375000px;}
.y5a{bottom:477.975000px;}
.y1b1{bottom:478.515000px;}
.y1ee{bottom:479.415000px;}
.y1cb{bottom:480.315000px;}
.y17e{bottom:480.495000px;}
.yf6{bottom:484.095000px;}
.y3e{bottom:486.795000px;}
.yd4{bottom:486.975000px;}
.y78{bottom:489.495000px;}
.y15e{bottom:490.575000px;}
.yc5{bottom:491.835000px;}
.y12e{bottom:493.995000px;}
.y111{bottom:496.155000px;}
.yd{bottom:499.755000px;}
.y1ca{bottom:502.095000px;}
.ya4{bottom:505.335000px;}
.y59{bottom:505.695000px;}
.yf5{bottom:505.875000px;}
.y1ed{bottom:513.075000px;}
.yc4{bottom:513.615000px;}
.y1b0{bottom:513.795000px;}
.y17d{bottom:514.695000px;}
.y12d{bottom:515.775000px;}
.y1c9{bottom:523.695000px;}
.y3d{bottom:526.035000px;}
.y15d{bottom:528.555000px;}
.y77{bottom:529.275000px;}
.y110{bottom:529.815000px;}
.y16d{bottom:531.975000px;}
.y58{bottom:532.875000px;}
.yc{bottom:533.595000px;}
.y1ec{bottom:534.855000px;}
.yc3{bottom:535.215000px;}
.y12c{bottom:537.375000px;}
.ya3{bottom:538.095000px;}
.yf4{bottom:539.535000px;}
.y17c{bottom:541.155000px;}
.y1c8{bottom:545.475000px;}
.y15c{bottom:550.365000px;}
.y1af{bottom:551.985000px;}
.yc2{bottom:557.025000px;}
.y12b{bottom:559.185000px;}
.y3c{bottom:559.725000px;}
.yf3{bottom:561.345000px;}
.y10f{bottom:563.685000px;}
.y57{bottom:566.745000px;}
.yb{bottom:567.285000px;}
.y1eb{bottom:568.725000px;}
.y76{bottom:569.085000px;}
.ya2{bottom:570.705000px;}
.y15b{bottom:572.145000px;}
.y1ae{bottom:573.585000px;}
.y3b{bottom:576.105000px;}
.yc1{bottom:578.805000px;}
.y56{bottom:583.125000px;}
.y10e{bottom:585.285000px;}
.y1c7{bottom:589.065000px;}
.y15a{bottom:593.925000px;}
.y12a{bottom:594.645000px;}
.y93{bottom:595.005000px;}
.y1ad{bottom:595.365000px;}
.y39{bottom:598.785000px;}
.ya{bottom:601.125000px;}
.y1ea{bottom:602.385000px;}
.ya1{bottom:603.465000px;}
.y10d{bottom:607.065000px;}
.y75{bottom:608.865000px;}
.yc0{bottom:612.465000px;}
.y159{bottom:615.525000px;}
.yf2{bottom:619.305000px;}
.y38{bottom:621.645000px;}
.y1c6{bottom:622.725000px;}
.y1e9{bottom:624.165000px;}
.y55{bottom:627.765000px;}
.y92{bottom:628.665000px;}
.y10c{bottom:628.845000px;}
.y1ac{bottom:629.025000px;}
.ybf{bottom:634.245000px;}
.y9{bottom:634.785000px;}
.y129{bottom:635.325000px;}
.ya0{bottom:636.225000px;}
.y158{bottom:637.305000px;}
.y36{bottom:644.325000px;}
.y1c5{bottom:644.505000px;}
.y1e8{bottom:645.945000px;}
.y74{bottom:648.645000px;}
.y91{bottom:650.445000px;}
.y10b{bottom:650.625000px;}
.y1ab{bottom:650.805000px;}
.ybe{bottom:656.025000px;}
.y157{bottom:659.085000px;}
.yf1{bottom:665.025000px;}
.y1c4{bottom:666.285000px;}
.y1e7{bottom:667.545000px;}
.y8{bottom:668.445000px;}
.y9f{bottom:668.985000px;}
.y34{bottom:671.865000px;}
.y90{bottom:672.225000px;}
.y54{bottom:672.405000px;}
.y1aa{bottom:672.585000px;}
.ybd{bottom:677.805000px;}
.y128{bottom:678.705000px;}
.y73{bottom:688.425000px;}
.y1e6{bottom:689.325000px;}
.y156{bottom:692.745000px;}
.y8f{bottom:693.825000px;}
.y1a9{bottom:694.365000px;}
.y53{bottom:695.265000px;}
.ybc{bottom:699.405000px;}
.yf0{bottom:700.305000px;}
.y9e{bottom:701.565000px;}
.y7{bottom:702.285000px;}
.y10a{bottom:706.065000px;}
.y155{bottom:714.525000px;}
.y1a8{bottom:716.145000px;}
.y33{bottom:716.505000px;}
.y52{bottom:717.945000px;}
.ybb{bottom:721.185000px;}
.yef{bottom:722.445000px;}
.y1e5{bottom:723.165000px;}
.y127{bottom:723.885000px;}
.y8e{bottom:727.665000px;}
.y109{bottom:727.845000px;}
.y72{bottom:728.205000px;}
.y196{bottom:730.005000px;}
.y9d{bottom:734.325000px;}
.y154{bottom:736.305000px;}
.y6{bottom:737.565000px;}
.y1a7{bottom:737.745000px;}
.y31{bottom:739.185000px;}
.y1c3{bottom:739.545000px;}
.y1e4{bottom:744.765000px;}
.yee{bottom:745.665000px;}
.y8d{bottom:749.445000px;}
.y195{bottom:751.785000px;}
.yba{bottom:754.845000px;}
.y126{bottom:757.725000px;}
.y153{bottom:757.905000px;}
.y1a6{bottom:759.525000px;}
.y1c2{bottom:761.325000px;}
.y51{bottom:762.585000px;}
.y108{bottom:763.125000px;}
.yed{bottom:767.445000px;}
.y71{bottom:767.985000px;}
.y8c{bottom:771.045000px;}
.y194{bottom:773.565000px;}
.y9c{bottom:776.085000px;}
.yb9{bottom:776.625000px;}
.y1e3{bottom:778.605000px;}
.y125{bottom:779.505000px;}
.y152{bottom:779.685000px;}
.y5{bottom:781.305000px;}
.y1c1{bottom:783.105000px;}
.y30{bottom:784.005000px;}
.yec{bottom:789.225000px;}
.y6e{bottom:789.765000px;}
.y8b{bottom:792.825000px;}
.y1a5{bottom:793.185000px;}
.y193{bottom:795.165000px;}
.yb8{bottom:798.405000px;}
.y1e2{bottom:800.205000px;}
.y107{bottom:801.105000px;}
.y151{bottom:801.465000px;}
.y1c0{bottom:804.885000px;}
.y50{bottom:807.450000px;}
.y9b{bottom:808.890000px;}
.yeb{bottom:810.870000px;}
.y192{bottom:816.990000px;}
.yb7{bottom:820.230000px;}
.y1e1{bottom:822.030000px;}
.y106{bottom:822.930000px;}
.y4{bottom:824.190000px;}
.y2f{bottom:824.730000px;}
.y1bf{bottom:826.530000px;}
.y8a{bottom:826.710000px;}
.y1a4{bottom:827.070000px;}
.y23{bottom:831.570000px;}
.yea{bottom:832.650000px;}
.y150{bottom:835.170000px;}
.y191{bottom:838.770000px;}
.y2d{bottom:841.290000px;}
.y9a{bottom:841.470000px;}
.yb6{bottom:842.010000px;}
.y1e0{bottom:843.810000px;}
.y105{bottom:844.710000px;}
.y89{bottom:848.310000px;}
.y4f{bottom:852.090000px;}
.y6d{bottom:856.410000px;}
.y124{bottom:856.770000px;}
.y14f{bottom:856.950000px;}
.y3{bottom:858.930000px;}
.y190{bottom:860.550000px;}
.y1a3{bottom:860.730000px;}
.y1be{bottom:861.990000px;}
.yb5{bottom:863.610000px;}
.y2c{bottom:864.510000px;}
.y22{bottom:865.410000px;}
.y1df{bottom:865.590000px;}
.ye9{bottom:866.490000px;}
.y88{bottom:870.090000px;}
.y99{bottom:874.230000px;}
.y123{bottom:878.370000px;}
.y14e{bottom:878.730000px;}
.y6c{bottom:879.270000px;}
.y18f{bottom:882.150000px;}
.y1a2{bottom:883.410000px;}
.y2b{bottom:887.190000px;}
.ye8{bottom:888.090000px;}
.y87{bottom:891.870000px;}
.y4e{bottom:896.730000px;}
.yb4{bottom:897.450000px;}
.y21{bottom:899.790000px;}
.y122{bottom:900.150000px;}
.y14d{bottom:900.510000px;}
.y1bd{bottom:902.670000px;}
.y18e{bottom:903.930000px;}
.y1a1{bottom:905.910000px;}
.y98{bottom:906.990000px;}
.y1de{bottom:908.970000px;}
.y2a{bottom:909.870000px;}
.yb3{bottom:919.050000px;}
.y4c{bottom:919.410000px;}
.ye7{bottom:921.930000px;}
.y14c{bottom:922.110000px;}
.y6a{bottom:923.910000px;}
.y86{bottom:925.530000px;}
.y1a0{bottom:928.590000px;}
.y1dd{bottom:930.750000px;}
.y29{bottom:932.550000px;}
.y18d{bottom:939.390000px;}
.y20{bottom:939.570000px;}
.yb2{bottom:940.830000px;}
.ye6{bottom:943.710000px;}
.y85{bottom:947.310000px;}
.y97{bottom:948.570000px;}
.y19f{bottom:951.270000px;}
.y28{bottom:955.410000px;}
.y121{bottom:955.590000px;}
.y4b{bottom:955.950000px;}
.y14b{bottom:957.570000px;}
.y1dc{bottom:964.410000px;}
.ye5{bottom:965.310000px;}
.y84{bottom:969.090000px;}
.y19e{bottom:973.770000px;}
.y120{bottom:977.370000px;}
.y27{bottom:978.090000px;}
.yb1{bottom:978.450000px;}
.y1f{bottom:979.350000px;}
.y96{bottom:981.510000px;}
.ye4{bottom:987.090000px;}
.y69{bottom:990.510000px;}
.y83{bottom:990.870000px;}
.y14a{bottom:995.550000px;}
.y19d{bottom:996.450000px;}
.y4a{bottom:997.350000px;}
.y1db{bottom:998.250000px;}
.y104{bottom:999.150000px;}
.y26{bottom:1000.770000px;}
.ye3{bottom:1008.870000px;}
.y149{bottom:1018.230000px;}
.y1e{bottom:1019.130000px;}
.y1da{bottom:1020.030000px;}
.y103{bottom:1020.750000px;}
.yb0{bottom:1021.110000px;}
.y95{bottom:1023.270000px;}
.y24{bottom:1023.450000px;}
.y82{bottom:1024.530000px;}
.y2{bottom:1025.250000px;}
.y148{bottom:1040.730000px;}
.y19c{bottom:1041.630000px;}
.yd3{bottom:1042.530000px;}
.y68{bottom:1057.290000px;}
.y1d{bottom:1058.910000px;}
.y13b{bottom:1059.990000px;}
.y94{bottom:1062.870000px;}
.y147{bottom:1063.410000px;}
.y1{bottom:1064.310000px;}
.y19{bottom:1117.440000px;}
.h4{height:20.160000px;}
.h5{height:21.960000px;}
.h11{height:21.996000px;}
.hb{height:22.140000px;}
.h7{height:22.500000px;}
.ha{height:26.820000px;}
.hd{height:33.660000px;}
.he{height:33.696000px;}
.hc{height:33.840000px;}
.hf{height:35.820000px;}
.h19{height:42.161133px;}
.h9{height:43.920000px;}
.h8{height:44.100000px;}
.h1{height:50.359219px;}
.h6{height:54.738281px;}
.h2{height:63.180000px;}
.h1b{height:64.043789px;}
.h13{height:65.880000px;}
.h14{height:65.916000px;}
.h12{height:66.060000px;}
.h17{height:71.613281px;}
.h3{height:71.820000px;}
.h18{height:72.801914px;}
.h15{height:73.722656px;}
.h1a{height:81.000000px;}
.h16{height:82.107422px;}
.h10{height:88.056000px;}
.h0{height:1188.000000px;}
.w12{width:7.200000px;}
.w3{width:7.560000px;}
.w11{width:7.920000px;}
.w2{width:8.460000px;}
.wa{width:8.640000px;}
.w18{width:14.616000px;}
.w14{width:14.976000px;}
.w16{width:15.336000px;}
.w15{width:15.876000px;}
.w13{width:16.056000px;}
.w17{width:16.236000px;}
.w19{width:16.956000px;}
.w8{width:29.520000px;}
.wb{width:92.160000px;}
.wc{width:106.236000px;}
.wf{width:153.900000px;}
.wd{width:163.260000px;}
.w4{width:231.150000px;}
.w6{width:232.770000px;}
.we{width:336.855000px;}
.w7{width:487.335000px;}
.w5{width:502.095000px;}
.w10{width:546.045000px;}
.w9{width:671.145000px;}
.w1{width:917.999986px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:7.740000px;}
.x1{left:108.035986px;}
.xd{left:124.595986px;}
.x10{left:135.755986px;}
.x8{left:138.996000px;}
.xe{left:141.155986px;}
.xf{left:157.349986px;}
.x12{left:161.129986px;}
.x9{left:201.630000px;}
.xc{left:263.370000px;}
.xa{left:308.595000px;}
.x3{left:316.874986px;}
.x6{left:340.635000px;}
.x7{left:342.435000px;}
.xb{left:472.575000px;}
.x15{left:792.149986px;}
.x14{left:796.649986px;}
.x11{left:798.809986px;}
.x13{left:805.649986px;}
.x2{left:810.149986px;}
.x4{left:877.470000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-1.408000pt;}
.ls16{letter-spacing:-0.896000pt;}
.ls18{letter-spacing:-0.422400pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.256000pt;}
.ls24{letter-spacing:-0.233067pt;}
.ls26{letter-spacing:-0.184533pt;}
.ls15{letter-spacing:-0.138133pt;}
.lsc{letter-spacing:-0.128000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls19{letter-spacing:-0.051200pt;}
.ls2d{letter-spacing:-0.007680pt;}
.ls25{letter-spacing:-0.000005pt;}
.ls6{letter-spacing:-0.000003pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.048640pt;}
.lsd{letter-spacing:0.064000pt;}
.ls2{letter-spacing:0.066560pt;}
.ls12{letter-spacing:0.080000pt;}
.ls2a{letter-spacing:0.117867pt;}
.ls8{letter-spacing:0.128000pt;}
.lsb{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.197333pt;}
.ls1e{letter-spacing:0.235733pt;}
.ls28{letter-spacing:0.256000pt;}
.ls1d{letter-spacing:0.317333pt;}
.ls4{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls10{letter-spacing:7.872000pt;}
.ls29{letter-spacing:16.943360pt;}
.ls27{letter-spacing:20.496640pt;}
.ls23{letter-spacing:21.423360pt;}
.ls17{letter-spacing:22.063360pt;}
.ls22{letter-spacing:25.616640pt;}
.ls20{letter-spacing:25.903360pt;}
.ls13{letter-spacing:26.256640pt;}
.ls14{letter-spacing:26.543360pt;}
.ls21{letter-spacing:28.463360pt;}
.ls1f{letter-spacing:30.383360pt;}
.ls1b{letter-spacing:31.023360pt;}
.ls11{letter-spacing:31.376640pt;}
.ls2c{letter-spacing:47.631360pt;}
.ls2b{letter-spacing:50.831360pt;}
.ls1c{letter-spacing:52.730027pt;}
.lsf{letter-spacing:54.016000pt;}
.ls1{letter-spacing:751.770027pt;}
.ws19{word-spacing:-58.880000pt;}
.wsf{word-spacing:-26.880000pt;}
.ws10{word-spacing:-19.776000pt;}
.ws11{word-spacing:-17.024000pt;}
.ws13{word-spacing:-14.976000pt;}
.wse{word-spacing:-14.656000pt;}
.ws3{word-spacing:-13.184000pt;}
.ws4{word-spacing:-13.120000pt;}
.wsa{word-spacing:-12.992000pt;}
.wsb{word-spacing:-12.928000pt;}
.wsd{word-spacing:-12.864000pt;}
.ws1{word-spacing:-12.800000pt;}
.ws6{word-spacing:-12.799997pt;}
.ws9{word-spacing:-12.736000pt;}
.wsc{word-spacing:-12.672000pt;}
.ws5{word-spacing:-12.544000pt;}
.ws2{word-spacing:-12.480000pt;}
.ws14{word-spacing:-12.129280pt;}
.ws18{word-spacing:-12.093333pt;}
.ws1a{word-spacing:-12.011733pt;}
.ws7{word-spacing:-11.973333pt;}
.ws1c{word-spacing:-11.893867pt;}
.ws16{word-spacing:-11.824640pt;}
.ws17{word-spacing:-11.776000pt;}
.ws1d{word-spacing:-11.768320pt;}
.ws15{word-spacing:-11.724800pt;}
.ws12{word-spacing:-11.637867pt;}
.ws1b{word-spacing:-11.542933pt;}
.ws8{word-spacing:-11.392000pt;}
.ws0{word-spacing:0.000000pt;}
._11{margin-left:-8.109227pt;}
._14{margin-left:-5.909547pt;}
._5{margin-left:-4.928000pt;}
._7{margin-left:-3.648000pt;}
._6{margin-left:-2.624000pt;}
._4{margin-left:-1.149440pt;}
._0{width:0.936320pt;}
._1{width:1.856853pt;}
._d{width:2.856960pt;}
._e{width:3.855360pt;}
._f{width:5.102293pt;}
._2c{width:6.042880pt;}
._2f{width:7.226880pt;}
._30{width:8.773120pt;}
._2b{width:10.393600pt;}
._10{width:12.946347pt;}
._32{width:14.088960pt;}
._37{width:15.093973pt;}
._2e{width:16.045227pt;}
._2d{width:17.075200pt;}
._31{width:18.664960pt;}
._35{width:20.173440pt;}
._36{width:21.079040pt;}
._33{width:23.198720pt;}
._34{width:24.474027pt;}
._8{width:25.760000pt;}
._9{width:26.698667pt;}
._a{width:30.080000pt;}
._b{width:31.477120pt;}
._c{width:32.681387pt;}
._12{width:80.490667pt;}
._16{width:90.154667pt;}
._28{width:101.120000pt;}
._3{width:209.130667pt;}
._2{width:449.024000pt;}
._26{width:554.623787pt;}
._19{width:584.743253pt;}
._13{width:764.738347pt;}
._2a{width:831.594667pt;}
._17{width:930.282667pt;}
._27{width:986.434347pt;}
._1e{width:1123.690667pt;}
._18{width:1144.106667pt;}
._24{width:1235.242667pt;}
._23{width:1254.527787pt;}
._15{width:1313.514667pt;}
._29{width:1324.714667pt;}
._1b{width:1356.970667pt;}
._22{width:1426.154667pt;}
._1f{width:1543.658667pt;}
._25{width:1558.954667pt;}
._20{width:1570.730667pt;}
._1a{width:1626.346667pt;}
._1c{width:1664.106667pt;}
._21{width:1700.842667pt;}
._1d{width:1762.346667pt;}
._38{width:2469.269333pt;}
.fs3{font-size:42.880000pt;}
.fs6{font-size:48.000000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs5{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1c{bottom:4.000000pt;}
.y25{bottom:4.320000pt;}
.y3a{bottom:4.480000pt;}
.y2e{bottom:4.800000pt;}
.y37{bottom:8.640000pt;}
.y43{bottom:16.000000pt;}
.y41{bottom:16.160000pt;}
.y4d{bottom:16.640000pt;}
.y35{bottom:23.840000pt;}
.y70{bottom:23.880000pt;}
.y32{bottom:24.000000pt;}
.y1b{bottom:37.792000pt;}
.y6b{bottom:43.360000pt;}
.y6f{bottom:43.400000pt;}
.y62{bottom:43.520000pt;}
.y61{bottom:63.080000pt;}
.y1a{bottom:63.872000pt;}
.y18c{bottom:99.872000pt;}
.y16c{bottom:100.512000pt;}
.y19b{bottom:102.432000pt;}
.y18{bottom:104.192000pt;}
.y67{bottom:107.872000pt;}
.y1d9{bottom:111.392000pt;}
.y102{bottom:111.712000pt;}
.y11f{bottom:113.792000pt;}
.y17b{bottom:116.352000pt;}
.y81{bottom:116.672000pt;}
.y146{bottom:117.952000pt;}
.y18b{bottom:119.232000pt;}
.yaf{bottom:121.312000pt;}
.y1bc{bottom:127.552000pt;}
.y66{bottom:128.032000pt;}
.ye2{bottom:129.952000pt;}
.y13a{bottom:130.272000pt;}
.y16b{bottom:130.592000pt;}
.y1d8{bottom:130.752000pt;}
.y101{bottom:131.072000pt;}
.y11e{bottom:133.152000pt;}
.y19a{bottom:133.312000pt;}
.yd2{bottom:134.426667pt;}
.y17a{bottom:135.706667pt;}
.y145{bottom:138.106667pt;}
.y18a{bottom:138.586667pt;}
.y17{bottom:139.546667pt;}
.y1bb{bottom:146.906667pt;}
.y65{bottom:148.346667pt;}
.ye1{bottom:149.306667pt;}
.y16a{bottom:149.786667pt;}
.y1d7{bottom:150.106667pt;}
.yae{bottom:150.426667pt;}
.y80{bottom:152.026667pt;}
.y11d{bottom:152.506667pt;}
.y1fb{bottom:153.626667pt;}
.yd1{bottom:153.786667pt;}
.y189{bottom:157.786667pt;}
.y144{bottom:158.106667pt;}
.y49{bottom:158.266667pt;}
.y139{bottom:160.186667pt;}
.y199{bottom:164.666667pt;}
.y179{bottom:165.626667pt;}
.y1ba{bottom:166.106667pt;}
.y64{bottom:168.506667pt;}
.ye0{bottom:168.666667pt;}
.y169{bottom:169.146667pt;}
.y1d6{bottom:169.306667pt;}
.y100{bottom:169.626667pt;}
.y11c{bottom:171.866667pt;}
.yd0{bottom:173.146667pt;}
.y16{bottom:174.266667pt;}
.y188{bottom:177.146667pt;}
.y143{bottom:178.266667pt;}
.yad{bottom:179.386667pt;}
.y1fa{bottom:183.546667pt;}
.y178{bottom:184.986667pt;}
.y1b9{bottom:185.466667pt;}
.y7f{bottom:187.386667pt;}
.ydf{bottom:188.026667pt;}
.y48{bottom:188.186667pt;}
.y168{bottom:188.506667pt;}
.y63{bottom:188.666667pt;}
.yff{bottom:188.986667pt;}
.y138{bottom:190.106667pt;}
.y11b{bottom:191.226667pt;}
.ycf{bottom:192.506667pt;}
.y187{bottom:196.506667pt;}
.y142{bottom:198.426667pt;}
.y198{bottom:198.906667pt;}
.y1d5{bottom:200.186667pt;}
.y15{bottom:204.346667pt;}
.yde{bottom:207.226667pt;}
.y167{bottom:207.866667pt;}
.yac{bottom:208.506667pt;}
.y60{bottom:208.826667pt;}
.y11a{bottom:210.426667pt;}
.y1f9{bottom:213.626667pt;}
.y1b8{bottom:217.786667pt;}
.y47{bottom:218.266667pt;}
.y141{bottom:218.426667pt;}
.yfe{bottom:218.906667pt;}
.y137{bottom:220.186667pt;}
.yce{bottom:222.426667pt;}
.y197{bottom:222.586667pt;}
.y7e{bottom:222.746667pt;}
.y177{bottom:223.546667pt;}
.y186{bottom:226.426667pt;}
.y166{bottom:227.066667pt;}
.y119{bottom:229.786667pt;}
.y1d4{bottom:230.106667pt;}
.y46{bottom:232.826667pt;}
.y1f8{bottom:232.986667pt;}
.y14{bottom:234.266667pt;}
.ydd{bottom:237.306667pt;}
.yab{bottom:237.626667pt;}
.yfd{bottom:238.266667pt;}
.y140{bottom:238.586667pt;}
.ycd{bottom:241.786667pt;}
.y176{bottom:242.906667pt;}
.y185{bottom:245.786667pt;}
.y165{bottom:246.426667pt;}
.y118{bottom:249.146667pt;}
.y1d3{bottom:249.466667pt;}
.y136{bottom:250.106667pt;}
.y1f7{bottom:252.186667pt;}
.y1b7{bottom:256.546667pt;}
.ydc{bottom:256.706667pt;}
.yfc{bottom:257.666667pt;}
.y7d{bottom:258.306667pt;}
.ycc{bottom:261.186667pt;}
.y175{bottom:262.306667pt;}
.y45{bottom:263.426667pt;}
.y13{bottom:264.386667pt;}
.y184{bottom:265.186667pt;}
.y164{bottom:265.826667pt;}
.yaa{bottom:266.786667pt;}
.y117{bottom:268.546667pt;}
.y13f{bottom:269.346667pt;}
.y1d2{bottom:269.506667pt;}
.y1f6{bottom:271.586667pt;}
.ydb{bottom:275.906667pt;}
.y135{bottom:280.226667pt;}
.y183{bottom:284.386667pt;}
.y5f{bottom:287.746667pt;}
.y13e{bottom:288.706667pt;}
.y1d1{bottom:288.866667pt;}
.yfb{bottom:289.026667pt;}
.y1f5{bottom:290.946667pt;}
.y174{bottom:292.226667pt;}
.ycb{bottom:293.506667pt;}
.y7c{bottom:293.666667pt;}
.y44{bottom:294.146667pt;}
.y12{bottom:294.306667pt;}
.yda{bottom:295.266667pt;}
.ya9{bottom:295.746667pt;}
.y1b6{bottom:296.706667pt;}
.y116{bottom:298.466667pt;}
.y134{bottom:299.426667pt;}
.y182{bottom:303.746667pt;}
.y1d0{bottom:308.226667pt;}
.y1f4{bottom:310.306667pt;}
.y173{bottom:311.586667pt;}
.yd9{bottom:314.626667pt;}
.y163{bottom:315.106667pt;}
.y115{bottom:317.826667pt;}
.y133{bottom:318.786667pt;}
.y13d{bottom:320.226667pt;}
.yfa{bottom:322.946667pt;}
.y181{bottom:323.106667pt;}
.y11{bottom:324.386667pt;}
.y42{bottom:324.866667pt;}
.y1b5{bottom:326.626667pt;}
.y5e{bottom:327.426667pt;}
.y1cf{bottom:327.586667pt;}
.y7b{bottom:329.026667pt;}
.y1f3{bottom:329.506667pt;}
.yca{bottom:329.826667pt;}
.y172{bottom:330.946667pt;}
.ya8{bottom:332.866667pt;}
.yd8{bottom:333.986667pt;}
.y162{bottom:335.266667pt;}
.y114{bottom:337.026667pt;}
.yf9{bottom:342.306667pt;}
.y5d{bottom:347.586667pt;}
.y132{bottom:348.706667pt;}
.y1f2{bottom:348.866667pt;}
.yc9{bottom:349.186667pt;}
.y171{bottom:350.146667pt;}
.yd7{bottom:353.186667pt;}
.y10{bottom:354.306667pt;}
.y180{bottom:354.466667pt;}
.y40{bottom:355.426667pt;}
.y1b4{bottom:356.706667pt;}
.y1ce{bottom:358.306667pt;}
.yf8{bottom:361.506667pt;}
.ya7{bottom:361.986667pt;}
.y7a{bottom:364.386667pt;}
.y161{bottom:365.986667pt;}
.y5c{bottom:367.906667pt;}
.y1f1{bottom:368.226667pt;}
.yc8{bottom:368.546667pt;}
.y131{bottom:368.866667pt;}
.y170{bottom:369.506667pt;}
.y1cd{bottom:377.666667pt;}
.y13c{bottom:377.986667pt;}
.yd6{bottom:383.266667pt;}
.yf{bottom:384.226667pt;}
.y160{bottom:385.346667pt;}
.y1b3{bottom:386.626667pt;}
.y1f0{bottom:387.586667pt;}
.yc7{bottom:387.906667pt;}
.y5b{bottom:388.066667pt;}
.y16f{bottom:388.866667pt;}
.y130{bottom:389.026667pt;}
.y17f{bottom:390.786667pt;}
.ya6{bottom:390.946667pt;}
.yf7{bottom:393.986667pt;}
.y79{bottom:399.746667pt;}
.y3f{bottom:402.146667pt;}
.y113{bottom:402.306667pt;}
.yd5{bottom:402.466667pt;}
.y15f{bottom:404.546667pt;}
.y1b2{bottom:405.986667pt;}
.y1ef{bottom:406.786667pt;}
.y1cc{bottom:407.586667pt;}
.ye{bottom:414.306667pt;}
.yc6{bottom:417.826667pt;}
.y16e{bottom:418.786667pt;}
.y12f{bottom:419.746667pt;}
.ya5{bottom:420.066667pt;}
.y112{bottom:421.666667pt;}
.y5a{bottom:424.866667pt;}
.y1b1{bottom:425.346667pt;}
.y1ee{bottom:426.146667pt;}
.y1cb{bottom:426.946667pt;}
.y17e{bottom:427.106667pt;}
.yf6{bottom:430.306667pt;}
.y3e{bottom:432.706667pt;}
.yd4{bottom:432.866667pt;}
.y78{bottom:435.106667pt;}
.y15e{bottom:436.066667pt;}
.yc5{bottom:437.186667pt;}
.y12e{bottom:439.106667pt;}
.y111{bottom:441.026667pt;}
.yd{bottom:444.226667pt;}
.y1ca{bottom:446.306667pt;}
.ya4{bottom:449.186667pt;}
.y59{bottom:449.506667pt;}
.yf5{bottom:449.666667pt;}
.y1ed{bottom:456.066667pt;}
.yc4{bottom:456.546667pt;}
.y1b0{bottom:456.706667pt;}
.y17d{bottom:457.506667pt;}
.y12d{bottom:458.466667pt;}
.y1c9{bottom:465.506667pt;}
.y3d{bottom:467.586667pt;}
.y15d{bottom:469.826667pt;}
.y77{bottom:470.466667pt;}
.y110{bottom:470.946667pt;}
.y16d{bottom:472.866667pt;}
.y58{bottom:473.666667pt;}
.yc{bottom:474.306667pt;}
.y1ec{bottom:475.426667pt;}
.yc3{bottom:475.746667pt;}
.y12c{bottom:477.666667pt;}
.ya3{bottom:478.306667pt;}
.yf4{bottom:479.586667pt;}
.y17c{bottom:481.026667pt;}
.y1c8{bottom:484.866667pt;}
.y15c{bottom:489.213333pt;}
.y1af{bottom:490.653333pt;}
.yc2{bottom:495.133333pt;}
.y12b{bottom:497.053333pt;}
.y3c{bottom:497.533333pt;}
.yf3{bottom:498.973333pt;}
.y10f{bottom:501.053333pt;}
.y57{bottom:503.773333pt;}
.yb{bottom:504.253333pt;}
.y1eb{bottom:505.533333pt;}
.y76{bottom:505.853333pt;}
.ya2{bottom:507.293333pt;}
.y15b{bottom:508.573333pt;}
.y1ae{bottom:509.853333pt;}
.y3b{bottom:512.093333pt;}
.yc1{bottom:514.493333pt;}
.y56{bottom:518.333333pt;}
.y10e{bottom:520.253333pt;}
.y1c7{bottom:523.613333pt;}
.y15a{bottom:527.933333pt;}
.y12a{bottom:528.573333pt;}
.y93{bottom:528.893333pt;}
.y1ad{bottom:529.213333pt;}
.y39{bottom:532.253333pt;}
.ya{bottom:534.333333pt;}
.y1ea{bottom:535.453333pt;}
.ya1{bottom:536.413333pt;}
.y10d{bottom:539.613333pt;}
.y75{bottom:541.213333pt;}
.yc0{bottom:544.413333pt;}
.y159{bottom:547.133333pt;}
.yf2{bottom:550.493333pt;}
.y38{bottom:552.573333pt;}
.y1c6{bottom:553.533333pt;}
.y1e9{bottom:554.813333pt;}
.y55{bottom:558.013333pt;}
.y92{bottom:558.813333pt;}
.y10c{bottom:558.973333pt;}
.y1ac{bottom:559.133333pt;}
.ybf{bottom:563.773333pt;}
.y9{bottom:564.253333pt;}
.y129{bottom:564.733333pt;}
.ya0{bottom:565.533333pt;}
.y158{bottom:566.493333pt;}
.y36{bottom:572.733333pt;}
.y1c5{bottom:572.893333pt;}
.y1e8{bottom:574.173333pt;}
.y74{bottom:576.573333pt;}
.y91{bottom:578.173333pt;}
.y10b{bottom:578.333333pt;}
.y1ab{bottom:578.493333pt;}
.ybe{bottom:583.133333pt;}
.y157{bottom:585.853333pt;}
.yf1{bottom:591.133333pt;}
.y1c4{bottom:592.253333pt;}
.y1e7{bottom:593.373333pt;}
.y8{bottom:594.173333pt;}
.y9f{bottom:594.653333pt;}
.y34{bottom:597.213333pt;}
.y90{bottom:597.533333pt;}
.y54{bottom:597.693333pt;}
.y1aa{bottom:597.853333pt;}
.ybd{bottom:602.493333pt;}
.y128{bottom:603.293333pt;}
.y73{bottom:611.933333pt;}
.y1e6{bottom:612.733333pt;}
.y156{bottom:615.773333pt;}
.y8f{bottom:616.733333pt;}
.y1a9{bottom:617.213333pt;}
.y53{bottom:618.013333pt;}
.ybc{bottom:621.693333pt;}
.yf0{bottom:622.493333pt;}
.y9e{bottom:623.613333pt;}
.y7{bottom:624.253333pt;}
.y10a{bottom:627.613333pt;}
.y155{bottom:635.133333pt;}
.y1a8{bottom:636.573333pt;}
.y33{bottom:636.893333pt;}
.y52{bottom:638.173333pt;}
.ybb{bottom:641.053333pt;}
.yef{bottom:642.173333pt;}
.y1e5{bottom:642.813333pt;}
.y127{bottom:643.453333pt;}
.y8e{bottom:646.813333pt;}
.y109{bottom:646.973333pt;}
.y72{bottom:647.293333pt;}
.y196{bottom:648.893333pt;}
.y9d{bottom:652.733333pt;}
.y154{bottom:654.493333pt;}
.y6{bottom:655.613333pt;}
.y1a7{bottom:655.773333pt;}
.y31{bottom:657.053333pt;}
.y1c3{bottom:657.373333pt;}
.y1e4{bottom:662.013333pt;}
.yee{bottom:662.813333pt;}
.y8d{bottom:666.173333pt;}
.y195{bottom:668.253333pt;}
.yba{bottom:670.973333pt;}
.y126{bottom:673.533333pt;}
.y153{bottom:673.693333pt;}
.y1a6{bottom:675.133333pt;}
.y1c2{bottom:676.733333pt;}
.y51{bottom:677.853333pt;}
.y108{bottom:678.333333pt;}
.yed{bottom:682.173333pt;}
.y71{bottom:682.653333pt;}
.y8c{bottom:685.373333pt;}
.y194{bottom:687.613333pt;}
.y9c{bottom:689.853333pt;}
.yb9{bottom:690.333333pt;}
.y1e3{bottom:692.093333pt;}
.y125{bottom:692.893333pt;}
.y152{bottom:693.053333pt;}
.y5{bottom:694.493333pt;}
.y1c1{bottom:696.093333pt;}
.y30{bottom:696.893333pt;}
.yec{bottom:701.533333pt;}
.y6e{bottom:702.013333pt;}
.y8b{bottom:704.733333pt;}
.y1a5{bottom:705.053333pt;}
.y193{bottom:706.813333pt;}
.yb8{bottom:709.693333pt;}
.y1e2{bottom:711.293333pt;}
.y107{bottom:712.093333pt;}
.y151{bottom:712.413333pt;}
.y1c0{bottom:715.453333pt;}
.y50{bottom:717.733333pt;}
.y9b{bottom:719.013333pt;}
.yeb{bottom:720.773333pt;}
.y192{bottom:726.213333pt;}
.yb7{bottom:729.093333pt;}
.y1e1{bottom:730.693333pt;}
.y106{bottom:731.493333pt;}
.y4{bottom:732.613333pt;}
.y2f{bottom:733.093333pt;}
.y1bf{bottom:734.693333pt;}
.y8a{bottom:734.853333pt;}
.y1a4{bottom:735.173333pt;}
.y23{bottom:739.173333pt;}
.yea{bottom:740.133333pt;}
.y150{bottom:742.373333pt;}
.y191{bottom:745.573333pt;}
.y2d{bottom:747.813333pt;}
.y9a{bottom:747.973333pt;}
.yb6{bottom:748.453333pt;}
.y1e0{bottom:750.053333pt;}
.y105{bottom:750.853333pt;}
.y89{bottom:754.053333pt;}
.y4f{bottom:757.413333pt;}
.y6d{bottom:761.253333pt;}
.y124{bottom:761.573333pt;}
.y14f{bottom:761.733333pt;}
.y3{bottom:763.493333pt;}
.y190{bottom:764.933333pt;}
.y1a3{bottom:765.093333pt;}
.y1be{bottom:766.213333pt;}
.yb5{bottom:767.653333pt;}
.y2c{bottom:768.453333pt;}
.y22{bottom:769.253333pt;}
.y1df{bottom:769.413333pt;}
.ye9{bottom:770.213333pt;}
.y88{bottom:773.413333pt;}
.y99{bottom:777.093333pt;}
.y123{bottom:780.773333pt;}
.y14e{bottom:781.093333pt;}
.y6c{bottom:781.573333pt;}
.y18f{bottom:784.133333pt;}
.y1a2{bottom:785.253333pt;}
.y2b{bottom:788.613333pt;}
.ye8{bottom:789.413333pt;}
.y87{bottom:792.773333pt;}
.y4e{bottom:797.093333pt;}
.yb4{bottom:797.733333pt;}
.y21{bottom:799.813333pt;}
.y122{bottom:800.133333pt;}
.y14d{bottom:800.453333pt;}
.y1bd{bottom:802.373333pt;}
.y18e{bottom:803.493333pt;}
.y1a1{bottom:805.253333pt;}
.y98{bottom:806.213333pt;}
.y1de{bottom:807.973333pt;}
.y2a{bottom:808.773333pt;}
.yb3{bottom:816.933333pt;}
.y4c{bottom:817.253333pt;}
.ye7{bottom:819.493333pt;}
.y14c{bottom:819.653333pt;}
.y6a{bottom:821.253333pt;}
.y86{bottom:822.693333pt;}
.y1a0{bottom:825.413333pt;}
.y1dd{bottom:827.333333pt;}
.y29{bottom:828.933333pt;}
.y18d{bottom:835.013333pt;}
.y20{bottom:835.173333pt;}
.yb2{bottom:836.293333pt;}
.ye6{bottom:838.853333pt;}
.y85{bottom:842.053333pt;}
.y97{bottom:843.173333pt;}
.y19f{bottom:845.573333pt;}
.y28{bottom:849.253333pt;}
.y121{bottom:849.413333pt;}
.y4b{bottom:849.733333pt;}
.y14b{bottom:851.173333pt;}
.y1dc{bottom:857.253333pt;}
.ye5{bottom:858.053333pt;}
.y84{bottom:861.413333pt;}
.y19e{bottom:865.573333pt;}
.y120{bottom:868.773333pt;}
.y27{bottom:869.413333pt;}
.yb1{bottom:869.733333pt;}
.y1f{bottom:870.533333pt;}
.y96{bottom:872.453333pt;}
.ye4{bottom:877.413333pt;}
.y69{bottom:880.453333pt;}
.y83{bottom:880.773333pt;}
.y14a{bottom:884.933333pt;}
.y19d{bottom:885.733333pt;}
.y4a{bottom:886.533333pt;}
.y1db{bottom:887.333333pt;}
.y104{bottom:888.133333pt;}
.y26{bottom:889.573333pt;}
.ye3{bottom:896.773333pt;}
.y149{bottom:905.093333pt;}
.y1e{bottom:905.893333pt;}
.y1da{bottom:906.693333pt;}
.y103{bottom:907.333333pt;}
.yb0{bottom:907.653333pt;}
.y95{bottom:909.573333pt;}
.y24{bottom:909.733333pt;}
.y82{bottom:910.693333pt;}
.y2{bottom:911.333333pt;}
.y148{bottom:925.093333pt;}
.y19c{bottom:925.893333pt;}
.yd3{bottom:926.693333pt;}
.y68{bottom:939.813333pt;}
.y1d{bottom:941.253333pt;}
.y13b{bottom:942.213333pt;}
.y94{bottom:944.773333pt;}
.y147{bottom:945.253333pt;}
.y1{bottom:946.053333pt;}
.y19{bottom:993.280000pt;}
.h4{height:17.920000pt;}
.h5{height:19.520000pt;}
.h11{height:19.552000pt;}
.hb{height:19.680000pt;}
.h7{height:20.000000pt;}
.ha{height:23.840000pt;}
.hd{height:29.920000pt;}
.he{height:29.952000pt;}
.hc{height:30.080000pt;}
.hf{height:31.840000pt;}
.h19{height:37.476562pt;}
.h9{height:39.040000pt;}
.h8{height:39.200000pt;}
.h1{height:44.763750pt;}
.h6{height:48.656250pt;}
.h2{height:56.160000pt;}
.h1b{height:56.927812pt;}
.h13{height:58.560000pt;}
.h14{height:58.592000pt;}
.h12{height:58.720000pt;}
.h17{height:63.656250pt;}
.h3{height:63.840000pt;}
.h18{height:64.712812pt;}
.h15{height:65.531250pt;}
.h1a{height:72.000000pt;}
.h16{height:72.984375pt;}
.h10{height:78.272000pt;}
.h0{height:1056.000000pt;}
.w12{width:6.400000pt;}
.w3{width:6.720000pt;}
.w11{width:7.040000pt;}
.w2{width:7.520000pt;}
.wa{width:7.680000pt;}
.w18{width:12.992000pt;}
.w14{width:13.312000pt;}
.w16{width:13.632000pt;}
.w15{width:14.112000pt;}
.w13{width:14.272000pt;}
.w17{width:14.432000pt;}
.w19{width:15.072000pt;}
.w8{width:26.240000pt;}
.wb{width:81.920000pt;}
.wc{width:94.432000pt;}
.wf{width:136.800000pt;}
.wd{width:145.120000pt;}
.w4{width:205.466667pt;}
.w6{width:206.906667pt;}
.we{width:299.426667pt;}
.w7{width:433.186667pt;}
.w5{width:446.306667pt;}
.w10{width:485.373333pt;}
.w9{width:596.573333pt;}
.w1{width:815.999988pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:6.880000pt;}
.x1{left:96.031988pt;}
.xd{left:110.751988pt;}
.x10{left:120.671988pt;}
.x8{left:123.552000pt;}
.xe{left:125.471988pt;}
.xf{left:139.866655pt;}
.x12{left:143.226655pt;}
.x9{left:179.226667pt;}
.xc{left:234.106667pt;}
.xa{left:274.306667pt;}
.x3{left:281.666655pt;}
.x6{left:302.786667pt;}
.x7{left:304.386667pt;}
.xb{left:420.066667pt;}
.x15{left:704.133321pt;}
.x14{left:708.133321pt;}
.x11{left:710.053321pt;}
.x13{left:716.133321pt;}
.x2{left:720.133321pt;}
.x4{left:779.973333pt;}
}




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