
    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_83a0339eee6ab77302a184bb.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.691406;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_6928c48f59204842c873f3a9.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_6cd3b7e69072d38f6019b7ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.432129;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_3d3a3340b42c0f0933b5e646.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.432129;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_d2b636b14ce75f353e8eeab0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.106934;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_98f77335ab115d4d40ecbd35.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.115234;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_4eb7ca04a99bc872cda6b052.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.893555;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_a6b624543917621c06e033d4.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_9139c0bfbd023414cb0050bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.432129;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_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ffa{font-family:ffa;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);}
.v3{vertical-align:-94.320000px;}
.v5{vertical-align:-23.760000px;}
.v2{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:23.760000px;}
.v6{vertical-align:27.360000px;}
.v1{vertical-align:30.240000px;}
.ls6{letter-spacing:-0.984000px;}
.ls5{letter-spacing:-0.828000px;}
.ls14{letter-spacing:-0.720000px;}
.lsa{letter-spacing:-0.457800px;}
.ls4{letter-spacing:-0.414600px;}
.ls15{letter-spacing:-0.360000px;}
.ls2{letter-spacing:-0.305400px;}
.ls9{letter-spacing:-0.262200px;}
.ls1{letter-spacing:-0.109200px;}
.ls20{letter-spacing:-0.089400px;}
.lse{letter-spacing:-0.053280px;}
.lsf{letter-spacing:-0.018000px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.018000px;}
.ls1a{letter-spacing:0.108000px;}
.ls1d{letter-spacing:0.126000px;}
.ls1c{letter-spacing:0.144000px;}
.ls7{letter-spacing:0.152400px;}
.lsb{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.252000px;}
.ls16{letter-spacing:0.256200px;}
.ls1f{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.262200px;}
.ls3{letter-spacing:0.305400px;}
.lsd{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.610560px;}
.lsc{letter-spacing:0.612000px;}
.ls17{letter-spacing:0.613440px;}
.ls13{letter-spacing:1.026000px;}
.ls8{letter-spacing:13.265280px;}
.ls18{letter-spacing:13.985280px;}
.ls1e{letter-spacing:59.345280px;}
.ls11{letter-spacing:188.957280px;}
.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;}
.wsa{word-spacing:-59.760000px;}
.ws18{word-spacing:-54.000000px;}
.ws10{word-spacing:-19.440720px;}
.ws9{word-spacing:-19.026720px;}
.ws6{word-spacing:-18.720120px;}
.wsf{word-spacing:-18.676920px;}
.ws2{word-spacing:-18.414720px;}
.ws3{word-spacing:-18.305520px;}
.ws7{word-spacing:-18.152520px;}
.ws4{word-spacing:-18.109320px;}
.ws8{word-spacing:-17.956920px;}
.ws11{word-spacing:-17.694720px;}
.ws5{word-spacing:-17.586720px;}
.ws0{word-spacing:-16.613280px;}
.wsd{word-spacing:-16.560000px;}
.ws12{word-spacing:-15.228000px;}
.ws14{word-spacing:-15.226440px;}
.ws16{word-spacing:-15.120000px;}
.ws17{word-spacing:-15.030000px;}
.wsb{word-spacing:-15.012000px;}
.wsc{word-spacing:-14.994000px;}
.ws13{word-spacing:-14.652000px;}
.wse{word-spacing:-11.609280px;}
.ws1a{word-spacing:-11.519880px;}
.ws15{word-spacing:-9.000000px;}
.ws1{word-spacing:0.000000px;}
._1{margin-left:-2.779920px;}
._0{margin-left:-1.010880px;}
._2{width:1.684800px;}
._9{width:3.444480px;}
._14{width:4.733520px;}
._11{width:5.842560px;}
._10{width:7.145280px;}
._8{width:8.178240px;}
._3{width:10.162560px;}
._d{width:11.592000px;}
._5{width:12.803520px;}
._6{width:13.865760px;}
._1c{width:14.904000px;}
._a{width:15.908160px;}
._7{width:17.089920px;}
._1e{width:18.248400px;}
._17{width:19.614720px;}
._b{width:21.334080px;}
._c{width:22.475280px;}
._e{width:23.958960px;}
._f{width:25.568640px;}
._4{width:27.290880px;}
._13{width:29.105760px;}
._12{width:30.149760px;}
._1b{width:31.724160px;}
._1d{width:33.534720px;}
._18{width:34.594560px;}
._16{width:37.380000px;}
._15{width:38.533440px;}
._1a{width:40.273920px;}
._1f{width:59.114880px;}
._20{width:175.546560px;}
._19{width:193.961280px;}
.fc3{color:rgb(31,73,125);}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:36.000000px;}
.fs5{font-size:41.760000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yda{bottom:2.865000px;}
.ye6{bottom:2.866500px;}
.ye8{bottom:2.872500px;}
.yc5{bottom:2.880000px;}
.y112{bottom:3.045000px;}
.yea{bottom:3.052500px;}
.ycb{bottom:3.060000px;}
.ydd{bottom:3.225000px;}
.y11a{bottom:3.232500px;}
.yc6{bottom:3.240000px;}
.ye2{bottom:3.405000px;}
.yca{bottom:3.420000px;}
.yde{bottom:5.205000px;}
.y11b{bottom:5.212500px;}
.yce{bottom:5.220000px;}
.y11f{bottom:5.250000px;}
.ye3{bottom:5.385000px;}
.y13d{bottom:5.580000px;}
.y141{bottom:5.760000px;}
.y152{bottom:8.820000px;}
.y88{bottom:10.605000px;}
.y8c{bottom:10.612500px;}
.y72{bottom:10.620000px;}
.y76{bottom:10.800000px;}
.y84{bottom:10.965000px;}
.y73{bottom:10.980000px;}
.y77{bottom:11.160000px;}
.y170{bottom:13.140000px;}
.y13e{bottom:16.920000px;}
.y17f{bottom:18.180000px;}
.yed{bottom:18.360000px;}
.y125{bottom:18.540000px;}
.y10d{bottom:18.720000px;}
.y156{bottom:18.900000px;}
.y167{bottom:19.080000px;}
.y163{bottom:19.620000px;}
.y16e{bottom:21.780000px;}
.y7d{bottom:22.320000px;}
.y138{bottom:22.500000px;}
.y7b{bottom:22.680000px;}
.y139{bottom:22.860000px;}
.y75{bottom:23.040000px;}
.y13c{bottom:23.400000px;}
.y140{bottom:23.580000px;}
.y151{bottom:24.300000px;}
.y14e{bottom:26.460000px;}
.y127{bottom:27.000000px;}
.y8b{bottom:33.826500px;}
.yec{bottom:33.870000px;}
.y87{bottom:34.005000px;}
.y7c{bottom:34.020000px;}
.y184{bottom:34.065000px;}
.y157{bottom:34.200000px;}
.y13a{bottom:34.380000px;}
.y183{bottom:34.425000px;}
.y165{bottom:34.740000px;}
.y162{bottom:35.100000px;}
.y15a{bottom:35.820000px;}
.y150{bottom:39.780000px;}
.y15c{bottom:43.200000px;}
.y92{bottom:45.720000px;}
.y79{bottom:46.440000px;}
.y14f{bottom:49.500000px;}
.y153{bottom:49.860000px;}
.y161{bottom:50.580000px;}
.y159{bottom:51.300000px;}
.y91{bottom:57.240000px;}
.y86{bottom:57.585000px;}
.y8a{bottom:57.586500px;}
.y8e{bottom:57.630000px;}
.y1d{bottom:57.636000px;}
.y155{bottom:65.340000px;}
.y14c{bottom:73.440000px;}
.y1c{bottom:77.796000px;}
.y154{bottom:80.820000px;}
.y90{bottom:81.000000px;}
.y11d{bottom:103.723500px;}
.y1bc{bottom:104.076000px;}
.y17d{bottom:104.616000px;}
.yb0{bottom:106.776000px;}
.y50{bottom:108.216000px;}
.y14a{bottom:108.396000px;}
.y47{bottom:110.736000px;}
.y198{bottom:111.096000px;}
.y89{bottom:117.223500px;}
.ye9{bottom:118.303500px;}
.y3f{bottom:118.656000px;}
.y11c{bottom:119.203500px;}
.y1b2{bottom:123.696000px;}
.y1b{bottom:124.596000px;}
.y17c{bottom:133.056000px;}
.ye7{bottom:133.963500px;}
.yaf{bottom:134.676000px;}
.y119{bottom:134.683500px;}
.y4f{bottom:136.656000px;}
.y149{bottom:136.836000px;}
.y46{bottom:142.956000px;}
.y197{bottom:147.276000px;}
.ye5{bottom:149.443500px;}
.y3e{bottom:150.690000px;}
.y1b1{bottom:152.130000px;}
.y118{bottom:154.125000px;}
.y1bb{bottom:155.370000px;}
.y1a{bottom:159.330000px;}
.y1d9{bottom:159.510000px;}
.y17b{bottom:161.490000px;}
.yae{bottom:162.390000px;}
.ye4{bottom:164.925000px;}
.y4e{bottom:165.090000px;}
.y148{bottom:165.270000px;}
.y117{bottom:169.605000px;}
.y45{bottom:179.130000px;}
.ye1{bottom:180.405000px;}
.y1b0{bottom:180.750000px;}
.y196{bottom:183.450000px;}
.y116{bottom:185.085000px;}
.y3d{bottom:186.870000px;}
.y85{bottom:187.785000px;}
.y17a{bottom:189.930000px;}
.yad{bottom:190.110000px;}
.y4d{bottom:193.530000px;}
.y147{bottom:193.710000px;}
.y19{bottom:194.250000px;}
.ye0{bottom:199.125000px;}
.y115{bottom:200.565000px;}
.y1ba{bottom:202.890000px;}
.y1af{bottom:209.190000px;}
.y1d8{bottom:210.810000px;}
.ydf{bottom:214.605000px;}
.y44{bottom:215.310000px;}
.yac{bottom:218.010000px;}
.y179{bottom:218.370000px;}
.y195{bottom:219.630000px;}
.y114{bottom:220.005000px;}
.y4c{bottom:222.150000px;}
.y3c{bottom:223.050000px;}
.y18{bottom:228.990000px;}
.ydc{bottom:230.085000px;}
.y113{bottom:235.485000px;}
.y1ae{bottom:237.630000px;}
.y1d7{bottom:243.390000px;}
.yab{bottom:245.730000px;}
.y1b9{bottom:246.450000px;}
.y178{bottom:246.810000px;}
.ydb{bottom:248.805000px;}
.y4b{bottom:250.590000px;}
.y111{bottom:250.965000px;}
.y43{bottom:251.490000px;}
.y194{bottom:255.990000px;}
.y83{bottom:258.345000px;}
.y3b{bottom:259.410000px;}
.y17{bottom:263.910000px;}
.yd9{bottom:264.285000px;}
.y1ad{bottom:266.070000px;}
.y110{bottom:266.625000px;}
.y1d6{bottom:271.830000px;}
.yaa{bottom:273.495000px;}
.y177{bottom:275.475000px;}
.y146{bottom:278.175000px;}
.y4a{bottom:279.075000px;}
.yd8{bottom:279.795000px;}
.y10f{bottom:282.135000px;}
.y42{bottom:287.895000px;}
.y1b8{bottom:289.875000px;}
.y193{bottom:292.215000px;}
.y1ac{bottom:294.555000px;}
.y3a{bottom:295.635000px;}
.y82{bottom:296.715000px;}
.y10e{bottom:297.615000px;}
.yd7{bottom:298.335000px;}
.y16{bottom:301.215000px;}
.y176{bottom:302.835000px;}
.y145{bottom:304.095000px;}
.y49{bottom:307.515000px;}
.yd6{bottom:313.995000px;}
.y1d5{bottom:315.435000px;}
.y10c{bottom:317.055000px;}
.y1ab{bottom:322.995000px;}
.y41{bottom:324.075000px;}
.y81{bottom:325.695000px;}
.y192{bottom:328.395000px;}
.y175{bottom:328.755000px;}
.ya9{bottom:329.115000px;}
.yd5{bottom:329.475000px;}
.y144{bottom:329.835000px;}
.y39{bottom:331.815000px;}
.y1b7{bottom:333.435000px;}
.y48{bottom:335.955000px;}
.y15{bottom:343.875000px;}
.yd4{bottom:344.955000px;}
.y10b{bottom:348.015000px;}
.y1aa{bottom:351.435000px;}
.y80{bottom:351.615000px;}
.y174{bottom:354.675000px;}
.y143{bottom:355.755000px;}
.ya8{bottom:356.835000px;}
.y40{bottom:360.255000px;}
.yd3{bottom:363.495000px;}
.y38{bottom:364.395000px;}
.y191{bottom:364.575000px;}
.y142{bottom:370.155000px;}
.y1d4{bottom:373.395000px;}
.y1b6{bottom:376.815000px;}
.y10a{bottom:378.255000px;}
.y7f{bottom:378.435000px;}
.yd2{bottom:379.155000px;}
.y1a9{bottom:379.875000px;}
.y173{bottom:380.415000px;}
.ya7{bottom:384.555000px;}
.y14{bottom:386.715000px;}
.y37{bottom:392.835000px;}
.y7e{bottom:394.455000px;}
.yd1{bottom:394.635000px;}
.y171{bottom:395.715000px;}
.y190{bottom:400.755000px;}
.y1d3{bottom:401.835000px;}
.y109{bottom:406.695000px;}
.y1a8{bottom:408.315000px;}
.yd0{bottom:410.115000px;}
.ya6{bottom:412.275000px;}
.y78{bottom:418.395000px;}
.y1b5{bottom:420.375000px;}
.y36{bottom:421.275000px;}
.ycf{bottom:425.595000px;}
.y172{bottom:428.295000px;}
.y13{bottom:429.375000px;}
.y1d2{bottom:430.275000px;}
.y108{bottom:435.135000px;}
.y1a7{bottom:436.935000px;}
.y18f{bottom:437.115000px;}
.ycd{bottom:441.255000px;}
.y13f{bottom:443.055000px;}
.ya5{bottom:445.035000px;}
.y35{bottom:449.715000px;}
.ycc{bottom:459.795000px;}
.y1d1{bottom:459.975000px;}
.y16d{bottom:460.875000px;}
.y107{bottom:463.575000px;}
.y1b4{bottom:463.755000px;}
.y1a6{bottom:465.375000px;}
.y7a{bottom:465.735000px;}
.y12{bottom:472.215000px;}
.y18e{bottom:473.295000px;}
.ya4{bottom:473.475000px;}
.yc9{bottom:475.275000px;}
.y16f{bottom:477.975000px;}
.y34{bottom:478.335000px;}
.y13b{bottom:479.595000px;}
.y1d0{bottom:488.415000px;}
.yc8{bottom:490.935000px;}
.y106{bottom:492.015000px;}
.y1a5{bottom:493.815000px;}
.ya3{bottom:501.915000px;}
.y64{bottom:505.155000px;}
.y33{bottom:506.775000px;}
.yc7{bottom:507.135000px;}
.y1b3{bottom:507.315000px;}
.y18d{bottom:509.475000px;}
.y74{bottom:513.075000px;}
.y11{bottom:515.055000px;}
.y137{bottom:515.955000px;}
.y1cf{bottom:516.855000px;}
.y105{bottom:520.455000px;}
.y1a4{bottom:522.255000px;}
.yc4{bottom:522.615000px;}
.y16c{bottom:528.015000px;}
.ya2{bottom:530.355000px;}
.y32{bottom:535.215000px;}
.y71{bottom:537.195000px;}
.y63{bottom:541.335000px;}
.y18c{bottom:545.655000px;}
.y1ce{bottom:546.375000px;}
.y104{bottom:548.895000px;}
.y1a3{bottom:550.695000px;}
.yc3{bottom:552.135000px;}
.y16b{bottom:555.555000px;}
.y10{bottom:557.745000px;}
.ya1{bottom:558.825000px;}
.y31{bottom:563.685000px;}
.y70{bottom:574.305000px;}
.y1cd{bottom:574.845000px;}
.y136{bottom:576.465000px;}
.y103{bottom:577.545000px;}
.y62{bottom:577.725000px;}
.y1a2{bottom:579.165000px;}
.yc2{bottom:580.605000px;}
.y16a{bottom:581.325000px;}
.y18b{bottom:582.045000px;}
.ya0{bottom:587.265000px;}
.y30{bottom:592.125000px;}
.yf{bottom:600.585000px;}
.y6f{bottom:602.745000px;}
.y1cc{bottom:603.285000px;}
.y135{bottom:605.085000px;}
.y102{bottom:605.985000px;}
.y1a1{bottom:607.605000px;}
.y169{bottom:608.325000px;}
.yc1{bottom:609.045000px;}
.y61{bottom:613.905000px;}
.y9f{bottom:615.705000px;}
.y18a{bottom:618.225000px;}
.y2f{bottom:620.565000px;}
.y166{bottom:624.345000px;}
.y6e{bottom:631.365000px;}
.y1cb{bottom:632.985000px;}
.y134{bottom:633.525000px;}
.y101{bottom:634.425000px;}
.y1a0{bottom:636.045000px;}
.yc0{bottom:637.485000px;}
.ye{bottom:643.245000px;}
.y9e{bottom:644.145000px;}
.y2e{bottom:649.005000px;}
.y60{bottom:650.085000px;}
.y189{bottom:654.405000px;}
.y168{bottom:656.025000px;}
.y6d{bottom:659.805000px;}
.y1ca{bottom:661.425000px;}
.y133{bottom:661.965000px;}
.y100{bottom:662.865000px;}
.y19f{bottom:664.485000px;}
.ybf{bottom:665.925000px;}
.y9d{bottom:672.585000px;}
.y2d{bottom:677.445000px;}
.yd{bottom:686.085000px;}
.y5f{bottom:686.265000px;}
.y160{bottom:687.885000px;}
.y6c{bottom:688.245000px;}
.y132{bottom:690.405000px;}
.y188{bottom:690.585000px;}
.y1c9{bottom:690.945000px;}
.yff{bottom:691.305000px;}
.y19e{bottom:693.105000px;}
.ybe{bottom:694.365000px;}
.y9c{bottom:701.205000px;}
.y2c{bottom:705.885000px;}
.yc{bottom:713.805000px;}
.y6b{bottom:716.685000px;}
.y131{bottom:718.845000px;}
.y1c8{bottom:719.385000px;}
.yfe{bottom:719.745000px;}
.y19d{bottom:721.545000px;}
.y187{bottom:722.265000px;}
.y5e{bottom:722.445000px;}
.ybd{bottom:722.805000px;}
.y9b{bottom:729.645000px;}
.y2b{bottom:734.505000px;}
.y164{bottom:735.945000px;}
.yb{bottom:741.705000px;}
.y6a{bottom:745.125000px;}
.y130{bottom:747.285000px;}
.yfd{bottom:748.185000px;}
.y1c7{bottom:748.905000px;}
.y186{bottom:749.085000px;}
.y19c{bottom:749.985000px;}
.ybc{bottom:751.245000px;}
.y9a{bottom:758.085000px;}
.y5d{bottom:758.805000px;}
.y2a{bottom:762.945000px;}
.y185{bottom:765.105000px;}
.y158{bottom:767.805000px;}
.y69{bottom:773.565000px;}
.y12f{bottom:775.725000px;}
.yfc{bottom:776.625000px;}
.y1c6{bottom:777.525000px;}
.y19b{bottom:778.425000px;}
.ybb{bottom:779.865000px;}
.ya{bottom:783.645000px;}
.y99{bottom:786.525000px;}
.y29{bottom:791.385000px;}
.y5c{bottom:794.985000px;}
.y15f{bottom:799.485000px;}
.y68{bottom:803.265000px;}
.y12e{bottom:804.165000px;}
.yfb{bottom:805.065000px;}
.y19a{bottom:806.865000px;}
.y1c5{bottom:807.045000px;}
.yba{bottom:808.305000px;}
.y182{bottom:812.445000px;}
.y1e3{bottom:812.625000px;}
.y98{bottom:814.965000px;}
.y15e{bottom:815.865000px;}
.y28{bottom:819.825000px;}
.y9{bottom:821.805000px;}
.y5b{bottom:831.165000px;}
.y12d{bottom:831.705000px;}
.y15d{bottom:832.065000px;}
.yfa{bottom:833.685000px;}
.y67{bottom:834.225000px;}
.y199{bottom:835.305000px;}
.y1c4{bottom:835.485000px;}
.yb9{bottom:836.745000px;}
.y1e2{bottom:841.110000px;}
.y97{bottom:843.450000px;}
.y27{bottom:848.310000px;}
.y15b{bottom:848.490000px;}
.y12c{bottom:858.570000px;}
.y181{bottom:859.830000px;}
.y8{bottom:860.010000px;}
.yf9{bottom:862.170000px;}
.y66{bottom:863.250000px;}
.y5a{bottom:863.790000px;}
.y14b{bottom:864.690000px;}
.y1c3{bottom:865.050000px;}
.yb8{bottom:865.230000px;}
.y1e1{bottom:869.550000px;}
.y96{bottom:871.890000px;}
.y12b{bottom:875.490000px;}
.y26{bottom:876.750000px;}
.yf8{bottom:889.530000px;}
.y12a{bottom:890.970000px;}
.y65{bottom:891.150000px;}
.y59{bottom:892.230000px;}
.y1c2{bottom:893.490000px;}
.yb7{bottom:893.670000px;}
.y1e0{bottom:897.990000px;}
.y7{bottom:898.170000px;}
.y95{bottom:900.510000px;}
.y25{bottom:905.190000px;}
.y129{bottom:906.450000px;}
.y180{bottom:907.170000px;}
.yf7{bottom:915.450000px;}
.y58{bottom:920.670000px;}
.y128{bottom:921.930000px;}
.yb6{bottom:922.110000px;}
.y1c1{bottom:923.190000px;}
.y1df{bottom:926.430000px;}
.y94{bottom:927.870000px;}
.y24{bottom:933.630000px;}
.y6{bottom:936.330000px;}
.y126{bottom:941.370000px;}
.yf6{bottom:942.270000px;}
.y57{bottom:949.290000px;}
.yb5{bottom:950.550000px;}
.y1c0{bottom:951.630000px;}
.y17e{bottom:954.510000px;}
.y93{bottom:954.690000px;}
.y1de{bottom:954.870000px;}
.yf5{bottom:958.290000px;}
.y14d{bottom:958.650000px;}
.y23{bottom:962.070000px;}
.y8f{bottom:970.710000px;}
.yf4{bottom:973.950000px;}
.y5{bottom:974.490000px;}
.y56{bottom:977.730000px;}
.yb4{bottom:978.990000px;}
.y1bf{bottom:981.150000px;}
.y1dd{bottom:983.310000px;}
.yf3{bottom:989.430000px;}
.y22{bottom:990.690000px;}
.yf2{bottom:1004.910000px;}
.y55{bottom:1006.170000px;}
.yb3{bottom:1007.430000px;}
.y1be{bottom:1010.670000px;}
.y1dc{bottom:1011.750000px;}
.y4{bottom:1013.370000px;}
.y21{bottom:1019.130000px;}
.y124{bottom:1020.390000px;}
.yf1{bottom:1023.450000px;}
.y54{bottom:1034.610000px;}
.yb2{bottom:1036.050000px;}
.yf0{bottom:1039.110000px;}
.y1db{bottom:1040.370000px;}
.y20{bottom:1047.570000px;}
.y123{bottom:1051.530000px;}
.yef{bottom:1054.590000px;}
.y3{bottom:1056.210000px;}
.y53{bottom:1063.050000px;}
.y8d{bottom:1064.670000px;}
.y122{bottom:1067.010000px;}
.y1bd{bottom:1067.730000px;}
.y1da{bottom:1068.810000px;}
.yee{bottom:1070.070000px;}
.y1f{bottom:1079.610000px;}
.y121{bottom:1086.450000px;}
.yb1{bottom:1088.070000px;}
.yeb{bottom:1088.790000px;}
.y52{bottom:1091.490000px;}
.y2{bottom:1099.050000px;}
.y120{bottom:1101.930000px;}
.y1e{bottom:1115.790000px;}
.y11e{bottom:1117.410000px;}
.y51{bottom:1119.930000px;}
.y1{bottom:1141.020000px;}
.h14{height:15.465000px;}
.h19{height:15.472500px;}
.h2a{height:15.480000px;}
.h17{height:15.501000px;}
.h29{height:15.502500px;}
.h15{height:15.645000px;}
.h1a{height:15.652500px;}
.h2b{height:15.660000px;}
.h16{height:17.805000px;}
.h1d{height:17.812500px;}
.h1e{height:17.850000px;}
.h18{height:17.985000px;}
.hd{height:23.205000px;}
.he{height:23.241000px;}
.h7{height:23.250000px;}
.ha{height:23.385000px;}
.h1c{height:30.945000px;}
.h2c{height:30.960000px;}
.h34{height:31.125000px;}
.h2e{height:31.140000px;}
.h31{height:35.445000px;}
.h21{height:35.625000px;}
.h22{height:35.805000px;}
.h26{height:36.281250px;}
.h35{height:37.785000px;}
.h2{height:45.184219px;}
.h1b{height:46.470000px;}
.hc{height:46.605000px;}
.h37{height:46.620000px;}
.h36{height:46.642500px;}
.h20{height:46.650000px;}
.h9{height:47.370000px;}
.h30{height:52.545000px;}
.h8{height:56.320312px;}
.h25{height:60.041250px;}
.h24{height:62.085000px;}
.h4{height:62.327813px;}
.h2f{height:62.820000px;}
.h1f{height:63.525000px;}
.h33{height:63.705000px;}
.h32{height:64.906875px;}
.h5{height:69.086250px;}
.hf{height:69.825000px;}
.h10{height:69.832500px;}
.h11{height:69.870000px;}
.h13{height:73.794375px;}
.h6{height:75.093750px;}
.h2d{height:79.200000px;}
.h3{height:87.859687px;}
.h27{height:93.045000px;}
.h12{height:93.225000px;}
.hb{height:93.945000px;}
.h28{height:96.142500px;}
.h23{height:156.045000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w28{width:49.305000px;}
.w27{width:50.616000px;}
.w1f{width:53.625000px;}
.w1e{width:53.676000px;}
.w1d{width:53.820000px;}
.w1c{width:54.021000px;}
.w22{width:71.121000px;}
.w1a{width:71.481000px;}
.w26{width:75.045000px;}
.w29{width:78.861000px;}
.w23{width:80.481000px;}
.w21{width:86.025000px;}
.w19{width:86.745000px;}
.w11{width:96.105000px;}
.w10{width:96.156000px;}
.w25{width:101.376000px;}
.w20{width:103.845000px;}
.w14{width:109.296000px;}
.w2a{width:111.780000px;}
.w24{width:112.680000px;}
.w15{width:114.825000px;}
.w16{width:115.041000px;}
.w17{width:124.369500px;}
.w7{width:141.645000px;}
.w8{width:141.649500px;}
.w9{width:141.681000px;}
.w6{width:141.696000px;}
.w5{width:141.861000px;}
.wa{width:142.009500px;}
.w3{width:142.041000px;}
.wb{width:142.221000px;}
.w2{width:142.369500px;}
.w18{width:158.955000px;}
.w12{width:169.215000px;}
.wf{width:192.270000px;}
.w2b{width:198.739500px;}
.we{width:208.275000px;}
.w2d{width:236.715000px;}
.w2c{width:274.530000px;}
.w4{width:284.070000px;}
.w1b{width:322.050000px;}
.w13{width:339.195000px;}
.wc{width:355.339500px;}
.wd{width:355.380000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2e{left:5.205000px;}
.x56{left:6.285000px;}
.x49{left:7.770000px;}
.x4a{left:8.850000px;}
.x21{left:10.609500px;}
.x50{left:11.865000px;}
.x25{left:13.129500px;}
.x1c{left:14.940000px;}
.x4b{left:16.050000px;}
.x1a{left:17.445000px;}
.x22{left:19.249500px;}
.x29{left:20.329500px;}
.x16{left:22.309500px;}
.x27{left:23.749500px;}
.x26{left:24.829500px;}
.x1d{left:26.445000px;}
.x18{left:27.900000px;}
.x37{left:29.880000px;}
.x2a{left:31.483500px;}
.x32{left:32.610000px;}
.x3b{left:34.725000px;}
.x17{left:36.210000px;}
.x28{left:37.603500px;}
.x3a{left:39.240000px;}
.x57{left:40.500000px;}
.x15{left:42.285000px;}
.x44{left:43.365000px;}
.x13{left:44.460000px;}
.x42{left:45.703500px;}
.x19{left:47.160000px;}
.x59{left:48.600000px;}
.x3e{left:51.660000px;}
.x5f{left:53.083500px;}
.x12{left:54.750000px;}
.x3f{left:57.240000px;}
.x1b{left:59.430000px;}
.x41{left:61.005000px;}
.x3c{left:62.083500px;}
.x5b{left:67.843500px;}
.x40{left:69.690000px;}
.xe{left:71.083500px;}
.x30{left:72.390000px;}
.x36{left:84.060000px;}
.x2b{left:94.663500px;}
.x23{left:99.163500px;}
.x5d{left:101.325000px;}
.x47{left:114.840000px;}
.x5c{left:116.640000px;}
.x5e{left:118.080000px;}
.xd{left:119.566500px;}
.x6{left:127.656000px;}
.x1e{left:145.243500px;}
.x20{left:151.050000px;}
.x60{left:154.650000px;}
.x24{left:156.450000px;}
.x2c{left:158.250000px;}
.x7{left:170.670000px;}
.x8{left:174.630000px;}
.xc{left:180.750000px;}
.x43{left:210.285000px;}
.x34{left:224.145000px;}
.x3d{left:245.025000px;}
.xf{left:261.945000px;}
.x51{left:265.725000px;}
.x2d{left:278.145000px;}
.x4{left:292.890000px;}
.x45{left:297.045000px;}
.x3{left:306.435000px;}
.xa{left:311.655000px;}
.x58{left:319.395000px;}
.x52{left:346.035000px;}
.x9{left:363.675000px;}
.x46{left:369.255000px;}
.x2{left:390.495000px;}
.x35{left:393.375000px;}
.x10{left:404.715000px;}
.x4c{left:423.795000px;}
.x5{left:446.475000px;}
.x53{left:460.155000px;}
.x33{left:470.055000px;}
.xb{left:474.195000px;}
.x1f{left:475.995000px;}
.x4d{left:478.335000px;}
.x2f{left:486.435000px;}
.x1{left:495.075000px;}
.x38{left:502.680000px;}
.x55{left:512.220000px;}
.x4e{left:532.920000px;}
.x14{left:547.140000px;}
.x54{left:563.160000px;}
.x31{left:582.600000px;}
.x4f{left:587.460000px;}
.x5a{left:594.660000px;}
.x39{left:617.520000px;}
.x11{left:689.520000px;}
.x48{left:692.220000px;}
@media print{
.v3{vertical-align:-83.840000pt;}
.v5{vertical-align:-21.120000pt;}
.v2{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:21.120000pt;}
.v6{vertical-align:24.320000pt;}
.v1{vertical-align:26.880000pt;}
.ls6{letter-spacing:-0.874667pt;}
.ls5{letter-spacing:-0.736000pt;}
.ls14{letter-spacing:-0.640000pt;}
.lsa{letter-spacing:-0.406933pt;}
.ls4{letter-spacing:-0.368533pt;}
.ls15{letter-spacing:-0.320000pt;}
.ls2{letter-spacing:-0.271467pt;}
.ls9{letter-spacing:-0.233067pt;}
.ls1{letter-spacing:-0.097067pt;}
.ls20{letter-spacing:-0.079467pt;}
.lse{letter-spacing:-0.047360pt;}
.lsf{letter-spacing:-0.016000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.016000pt;}
.ls1a{letter-spacing:0.096000pt;}
.ls1d{letter-spacing:0.112000pt;}
.ls1c{letter-spacing:0.128000pt;}
.ls7{letter-spacing:0.135467pt;}
.lsb{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.224000pt;}
.ls16{letter-spacing:0.227733pt;}
.ls1f{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.233067pt;}
.ls3{letter-spacing:0.271467pt;}
.lsd{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.542720pt;}
.lsc{letter-spacing:0.544000pt;}
.ls17{letter-spacing:0.545280pt;}
.ls13{letter-spacing:0.912000pt;}
.ls8{letter-spacing:11.791360pt;}
.ls18{letter-spacing:12.431360pt;}
.ls1e{letter-spacing:52.751360pt;}
.ls11{letter-spacing:167.962027pt;}
.ws19{word-spacing:-58.880000pt;}
.wsa{word-spacing:-53.120000pt;}
.ws18{word-spacing:-48.000000pt;}
.ws10{word-spacing:-17.280640pt;}
.ws9{word-spacing:-16.912640pt;}
.ws6{word-spacing:-16.640107pt;}
.wsf{word-spacing:-16.601707pt;}
.ws2{word-spacing:-16.368640pt;}
.ws3{word-spacing:-16.271573pt;}
.ws7{word-spacing:-16.135573pt;}
.ws4{word-spacing:-16.097173pt;}
.ws8{word-spacing:-15.961707pt;}
.ws11{word-spacing:-15.728640pt;}
.ws5{word-spacing:-15.632640pt;}
.ws0{word-spacing:-14.767360pt;}
.wsd{word-spacing:-14.720000pt;}
.ws12{word-spacing:-13.536000pt;}
.ws14{word-spacing:-13.534613pt;}
.ws16{word-spacing:-13.440000pt;}
.ws17{word-spacing:-13.360000pt;}
.wsb{word-spacing:-13.344000pt;}
.wsc{word-spacing:-13.328000pt;}
.ws13{word-spacing:-13.024000pt;}
.wse{word-spacing:-10.319360pt;}
.ws1a{word-spacing:-10.239893pt;}
.ws15{word-spacing:-8.000000pt;}
.ws1{word-spacing:0.000000pt;}
._1{margin-left:-2.471040pt;}
._0{margin-left:-0.898560pt;}
._2{width:1.497600pt;}
._9{width:3.061760pt;}
._14{width:4.207573pt;}
._11{width:5.193387pt;}
._10{width:6.351360pt;}
._8{width:7.269547pt;}
._3{width:9.033387pt;}
._d{width:10.304000pt;}
._5{width:11.380907pt;}
._6{width:12.325120pt;}
._1c{width:13.248000pt;}
._a{width:14.140587pt;}
._7{width:15.191040pt;}
._1e{width:16.220800pt;}
._17{width:17.435307pt;}
._b{width:18.963627pt;}
._c{width:19.978027pt;}
._e{width:21.296853pt;}
._f{width:22.727680pt;}
._4{width:24.258560pt;}
._13{width:25.871787pt;}
._12{width:26.799787pt;}
._1b{width:28.199253pt;}
._1d{width:29.808640pt;}
._18{width:30.750720pt;}
._16{width:33.226667pt;}
._15{width:34.251947pt;}
._1a{width:35.799040pt;}
._1f{width:52.546560pt;}
._20{width:156.041387pt;}
._19{width:172.410027pt;}
.fs6{font-size:32.000000pt;}
.fs5{font-size:37.120000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yda{bottom:2.546667pt;}
.ye6{bottom:2.548000pt;}
.ye8{bottom:2.553333pt;}
.yc5{bottom:2.560000pt;}
.y112{bottom:2.706667pt;}
.yea{bottom:2.713333pt;}
.ycb{bottom:2.720000pt;}
.ydd{bottom:2.866667pt;}
.y11a{bottom:2.873333pt;}
.yc6{bottom:2.880000pt;}
.ye2{bottom:3.026667pt;}
.yca{bottom:3.040000pt;}
.yde{bottom:4.626667pt;}
.y11b{bottom:4.633333pt;}
.yce{bottom:4.640000pt;}
.y11f{bottom:4.666667pt;}
.ye3{bottom:4.786667pt;}
.y13d{bottom:4.960000pt;}
.y141{bottom:5.120000pt;}
.y152{bottom:7.840000pt;}
.y88{bottom:9.426667pt;}
.y8c{bottom:9.433333pt;}
.y72{bottom:9.440000pt;}
.y76{bottom:9.600000pt;}
.y84{bottom:9.746667pt;}
.y73{bottom:9.760000pt;}
.y77{bottom:9.920000pt;}
.y170{bottom:11.680000pt;}
.y13e{bottom:15.040000pt;}
.y17f{bottom:16.160000pt;}
.yed{bottom:16.320000pt;}
.y125{bottom:16.480000pt;}
.y10d{bottom:16.640000pt;}
.y156{bottom:16.800000pt;}
.y167{bottom:16.960000pt;}
.y163{bottom:17.440000pt;}
.y16e{bottom:19.360000pt;}
.y7d{bottom:19.840000pt;}
.y138{bottom:20.000000pt;}
.y7b{bottom:20.160000pt;}
.y139{bottom:20.320000pt;}
.y75{bottom:20.480000pt;}
.y13c{bottom:20.800000pt;}
.y140{bottom:20.960000pt;}
.y151{bottom:21.600000pt;}
.y14e{bottom:23.520000pt;}
.y127{bottom:24.000000pt;}
.y8b{bottom:30.068000pt;}
.yec{bottom:30.106667pt;}
.y87{bottom:30.226667pt;}
.y7c{bottom:30.240000pt;}
.y184{bottom:30.280000pt;}
.y157{bottom:30.400000pt;}
.y13a{bottom:30.560000pt;}
.y183{bottom:30.600000pt;}
.y165{bottom:30.880000pt;}
.y162{bottom:31.200000pt;}
.y15a{bottom:31.840000pt;}
.y150{bottom:35.360000pt;}
.y15c{bottom:38.400000pt;}
.y92{bottom:40.640000pt;}
.y79{bottom:41.280000pt;}
.y14f{bottom:44.000000pt;}
.y153{bottom:44.320000pt;}
.y161{bottom:44.960000pt;}
.y159{bottom:45.600000pt;}
.y91{bottom:50.880000pt;}
.y86{bottom:51.186667pt;}
.y8a{bottom:51.188000pt;}
.y8e{bottom:51.226667pt;}
.y1d{bottom:51.232000pt;}
.y155{bottom:58.080000pt;}
.y14c{bottom:65.280000pt;}
.y1c{bottom:69.152000pt;}
.y154{bottom:71.840000pt;}
.y90{bottom:72.000000pt;}
.y11d{bottom:92.198667pt;}
.y1bc{bottom:92.512000pt;}
.y17d{bottom:92.992000pt;}
.yb0{bottom:94.912000pt;}
.y50{bottom:96.192000pt;}
.y14a{bottom:96.352000pt;}
.y47{bottom:98.432000pt;}
.y198{bottom:98.752000pt;}
.y89{bottom:104.198667pt;}
.ye9{bottom:105.158667pt;}
.y3f{bottom:105.472000pt;}
.y11c{bottom:105.958667pt;}
.y1b2{bottom:109.952000pt;}
.y1b{bottom:110.752000pt;}
.y17c{bottom:118.272000pt;}
.ye7{bottom:119.078667pt;}
.yaf{bottom:119.712000pt;}
.y119{bottom:119.718667pt;}
.y4f{bottom:121.472000pt;}
.y149{bottom:121.632000pt;}
.y46{bottom:127.072000pt;}
.y197{bottom:130.912000pt;}
.ye5{bottom:132.838667pt;}
.y3e{bottom:133.946667pt;}
.y1b1{bottom:135.226667pt;}
.y118{bottom:137.000000pt;}
.y1bb{bottom:138.106667pt;}
.y1a{bottom:141.626667pt;}
.y1d9{bottom:141.786667pt;}
.y17b{bottom:143.546667pt;}
.yae{bottom:144.346667pt;}
.ye4{bottom:146.600000pt;}
.y4e{bottom:146.746667pt;}
.y148{bottom:146.906667pt;}
.y117{bottom:150.760000pt;}
.y45{bottom:159.226667pt;}
.ye1{bottom:160.360000pt;}
.y1b0{bottom:160.666667pt;}
.y196{bottom:163.066667pt;}
.y116{bottom:164.520000pt;}
.y3d{bottom:166.106667pt;}
.y85{bottom:166.920000pt;}
.y17a{bottom:168.826667pt;}
.yad{bottom:168.986667pt;}
.y4d{bottom:172.026667pt;}
.y147{bottom:172.186667pt;}
.y19{bottom:172.666667pt;}
.ye0{bottom:177.000000pt;}
.y115{bottom:178.280000pt;}
.y1ba{bottom:180.346667pt;}
.y1af{bottom:185.946667pt;}
.y1d8{bottom:187.386667pt;}
.ydf{bottom:190.760000pt;}
.y44{bottom:191.386667pt;}
.yac{bottom:193.786667pt;}
.y179{bottom:194.106667pt;}
.y195{bottom:195.226667pt;}
.y114{bottom:195.560000pt;}
.y4c{bottom:197.466667pt;}
.y3c{bottom:198.266667pt;}
.y18{bottom:203.546667pt;}
.ydc{bottom:204.520000pt;}
.y113{bottom:209.320000pt;}
.y1ae{bottom:211.226667pt;}
.y1d7{bottom:216.346667pt;}
.yab{bottom:218.426667pt;}
.y1b9{bottom:219.066667pt;}
.y178{bottom:219.386667pt;}
.ydb{bottom:221.160000pt;}
.y4b{bottom:222.746667pt;}
.y111{bottom:223.080000pt;}
.y43{bottom:223.546667pt;}
.y194{bottom:227.546667pt;}
.y83{bottom:229.640000pt;}
.y3b{bottom:230.586667pt;}
.y17{bottom:234.586667pt;}
.yd9{bottom:234.920000pt;}
.y1ad{bottom:236.506667pt;}
.y110{bottom:237.000000pt;}
.y1d6{bottom:241.626667pt;}
.yaa{bottom:243.106667pt;}
.y177{bottom:244.866667pt;}
.y146{bottom:247.266667pt;}
.y4a{bottom:248.066667pt;}
.yd8{bottom:248.706667pt;}
.y10f{bottom:250.786667pt;}
.y42{bottom:255.906667pt;}
.y1b8{bottom:257.666667pt;}
.y193{bottom:259.746667pt;}
.y1ac{bottom:261.826667pt;}
.y3a{bottom:262.786667pt;}
.y82{bottom:263.746667pt;}
.y10e{bottom:264.546667pt;}
.yd7{bottom:265.186667pt;}
.y16{bottom:267.746667pt;}
.y176{bottom:269.186667pt;}
.y145{bottom:270.306667pt;}
.y49{bottom:273.346667pt;}
.yd6{bottom:279.106667pt;}
.y1d5{bottom:280.386667pt;}
.y10c{bottom:281.826667pt;}
.y1ab{bottom:287.106667pt;}
.y41{bottom:288.066667pt;}
.y81{bottom:289.506667pt;}
.y192{bottom:291.906667pt;}
.y175{bottom:292.226667pt;}
.ya9{bottom:292.546667pt;}
.yd5{bottom:292.866667pt;}
.y144{bottom:293.186667pt;}
.y39{bottom:294.946667pt;}
.y1b7{bottom:296.386667pt;}
.y48{bottom:298.626667pt;}
.y15{bottom:305.666667pt;}
.yd4{bottom:306.626667pt;}
.y10b{bottom:309.346667pt;}
.y1aa{bottom:312.386667pt;}
.y80{bottom:312.546667pt;}
.y174{bottom:315.266667pt;}
.y143{bottom:316.226667pt;}
.ya8{bottom:317.186667pt;}
.y40{bottom:320.226667pt;}
.yd3{bottom:323.106667pt;}
.y38{bottom:323.906667pt;}
.y191{bottom:324.066667pt;}
.y142{bottom:329.026667pt;}
.y1d4{bottom:331.906667pt;}
.y1b6{bottom:334.946667pt;}
.y10a{bottom:336.226667pt;}
.y7f{bottom:336.386667pt;}
.yd2{bottom:337.026667pt;}
.y1a9{bottom:337.666667pt;}
.y173{bottom:338.146667pt;}
.ya7{bottom:341.826667pt;}
.y14{bottom:343.746667pt;}
.y37{bottom:349.186667pt;}
.y7e{bottom:350.626667pt;}
.yd1{bottom:350.786667pt;}
.y171{bottom:351.746667pt;}
.y190{bottom:356.226667pt;}
.y1d3{bottom:357.186667pt;}
.y109{bottom:361.506667pt;}
.y1a8{bottom:362.946667pt;}
.yd0{bottom:364.546667pt;}
.ya6{bottom:366.466667pt;}
.y78{bottom:371.906667pt;}
.y1b5{bottom:373.666667pt;}
.y36{bottom:374.466667pt;}
.ycf{bottom:378.306667pt;}
.y172{bottom:380.706667pt;}
.y13{bottom:381.666667pt;}
.y1d2{bottom:382.466667pt;}
.y108{bottom:386.786667pt;}
.y1a7{bottom:388.386667pt;}
.y18f{bottom:388.546667pt;}
.ycd{bottom:392.226667pt;}
.y13f{bottom:393.826667pt;}
.ya5{bottom:395.586667pt;}
.y35{bottom:399.746667pt;}
.ycc{bottom:408.706667pt;}
.y1d1{bottom:408.866667pt;}
.y16d{bottom:409.666667pt;}
.y107{bottom:412.066667pt;}
.y1b4{bottom:412.226667pt;}
.y1a6{bottom:413.666667pt;}
.y7a{bottom:413.986667pt;}
.y12{bottom:419.746667pt;}
.y18e{bottom:420.706667pt;}
.ya4{bottom:420.866667pt;}
.yc9{bottom:422.466667pt;}
.y16f{bottom:424.866667pt;}
.y34{bottom:425.186667pt;}
.y13b{bottom:426.306667pt;}
.y1d0{bottom:434.146667pt;}
.yc8{bottom:436.386667pt;}
.y106{bottom:437.346667pt;}
.y1a5{bottom:438.946667pt;}
.ya3{bottom:446.146667pt;}
.y64{bottom:449.026667pt;}
.y33{bottom:450.466667pt;}
.yc7{bottom:450.786667pt;}
.y1b3{bottom:450.946667pt;}
.y18d{bottom:452.866667pt;}
.y74{bottom:456.066667pt;}
.y11{bottom:457.826667pt;}
.y137{bottom:458.626667pt;}
.y1cf{bottom:459.426667pt;}
.y105{bottom:462.626667pt;}
.y1a4{bottom:464.226667pt;}
.yc4{bottom:464.546667pt;}
.y16c{bottom:469.346667pt;}
.ya2{bottom:471.426667pt;}
.y32{bottom:475.746667pt;}
.y71{bottom:477.506667pt;}
.y63{bottom:481.186667pt;}
.y18c{bottom:485.026667pt;}
.y1ce{bottom:485.666667pt;}
.y104{bottom:487.906667pt;}
.y1a3{bottom:489.506667pt;}
.yc3{bottom:490.786667pt;}
.y16b{bottom:493.826667pt;}
.y10{bottom:495.773333pt;}
.ya1{bottom:496.733333pt;}
.y31{bottom:501.053333pt;}
.y70{bottom:510.493333pt;}
.y1cd{bottom:510.973333pt;}
.y136{bottom:512.413333pt;}
.y103{bottom:513.373333pt;}
.y62{bottom:513.533333pt;}
.y1a2{bottom:514.813333pt;}
.yc2{bottom:516.093333pt;}
.y16a{bottom:516.733333pt;}
.y18b{bottom:517.373333pt;}
.ya0{bottom:522.013333pt;}
.y30{bottom:526.333333pt;}
.yf{bottom:533.853333pt;}
.y6f{bottom:535.773333pt;}
.y1cc{bottom:536.253333pt;}
.y135{bottom:537.853333pt;}
.y102{bottom:538.653333pt;}
.y1a1{bottom:540.093333pt;}
.y169{bottom:540.733333pt;}
.yc1{bottom:541.373333pt;}
.y61{bottom:545.693333pt;}
.y9f{bottom:547.293333pt;}
.y18a{bottom:549.533333pt;}
.y2f{bottom:551.613333pt;}
.y166{bottom:554.973333pt;}
.y6e{bottom:561.213333pt;}
.y1cb{bottom:562.653333pt;}
.y134{bottom:563.133333pt;}
.y101{bottom:563.933333pt;}
.y1a0{bottom:565.373333pt;}
.yc0{bottom:566.653333pt;}
.ye{bottom:571.773333pt;}
.y9e{bottom:572.573333pt;}
.y2e{bottom:576.893333pt;}
.y60{bottom:577.853333pt;}
.y189{bottom:581.693333pt;}
.y168{bottom:583.133333pt;}
.y6d{bottom:586.493333pt;}
.y1ca{bottom:587.933333pt;}
.y133{bottom:588.413333pt;}
.y100{bottom:589.213333pt;}
.y19f{bottom:590.653333pt;}
.ybf{bottom:591.933333pt;}
.y9d{bottom:597.853333pt;}
.y2d{bottom:602.173333pt;}
.yd{bottom:609.853333pt;}
.y5f{bottom:610.013333pt;}
.y160{bottom:611.453333pt;}
.y6c{bottom:611.773333pt;}
.y132{bottom:613.693333pt;}
.y188{bottom:613.853333pt;}
.y1c9{bottom:614.173333pt;}
.yff{bottom:614.493333pt;}
.y19e{bottom:616.093333pt;}
.ybe{bottom:617.213333pt;}
.y9c{bottom:623.293333pt;}
.y2c{bottom:627.453333pt;}
.yc{bottom:634.493333pt;}
.y6b{bottom:637.053333pt;}
.y131{bottom:638.973333pt;}
.y1c8{bottom:639.453333pt;}
.yfe{bottom:639.773333pt;}
.y19d{bottom:641.373333pt;}
.y187{bottom:642.013333pt;}
.y5e{bottom:642.173333pt;}
.ybd{bottom:642.493333pt;}
.y9b{bottom:648.573333pt;}
.y2b{bottom:652.893333pt;}
.y164{bottom:654.173333pt;}
.yb{bottom:659.293333pt;}
.y6a{bottom:662.333333pt;}
.y130{bottom:664.253333pt;}
.yfd{bottom:665.053333pt;}
.y1c7{bottom:665.693333pt;}
.y186{bottom:665.853333pt;}
.y19c{bottom:666.653333pt;}
.ybc{bottom:667.773333pt;}
.y9a{bottom:673.853333pt;}
.y5d{bottom:674.493333pt;}
.y2a{bottom:678.173333pt;}
.y185{bottom:680.093333pt;}
.y158{bottom:682.493333pt;}
.y69{bottom:687.613333pt;}
.y12f{bottom:689.533333pt;}
.yfc{bottom:690.333333pt;}
.y1c6{bottom:691.133333pt;}
.y19b{bottom:691.933333pt;}
.ybb{bottom:693.213333pt;}
.ya{bottom:696.573333pt;}
.y99{bottom:699.133333pt;}
.y29{bottom:703.453333pt;}
.y5c{bottom:706.653333pt;}
.y15f{bottom:710.653333pt;}
.y68{bottom:714.013333pt;}
.y12e{bottom:714.813333pt;}
.yfb{bottom:715.613333pt;}
.y19a{bottom:717.213333pt;}
.y1c5{bottom:717.373333pt;}
.yba{bottom:718.493333pt;}
.y182{bottom:722.173333pt;}
.y1e3{bottom:722.333333pt;}
.y98{bottom:724.413333pt;}
.y15e{bottom:725.213333pt;}
.y28{bottom:728.733333pt;}
.y9{bottom:730.493333pt;}
.y5b{bottom:738.813333pt;}
.y12d{bottom:739.293333pt;}
.y15d{bottom:739.613333pt;}
.yfa{bottom:741.053333pt;}
.y67{bottom:741.533333pt;}
.y199{bottom:742.493333pt;}
.y1c4{bottom:742.653333pt;}
.yb9{bottom:743.773333pt;}
.y1e2{bottom:747.653333pt;}
.y97{bottom:749.733333pt;}
.y27{bottom:754.053333pt;}
.y15b{bottom:754.213333pt;}
.y12c{bottom:763.173333pt;}
.y181{bottom:764.293333pt;}
.y8{bottom:764.453333pt;}
.yf9{bottom:766.373333pt;}
.y66{bottom:767.333333pt;}
.y5a{bottom:767.813333pt;}
.y14b{bottom:768.613333pt;}
.y1c3{bottom:768.933333pt;}
.yb8{bottom:769.093333pt;}
.y1e1{bottom:772.933333pt;}
.y96{bottom:775.013333pt;}
.y12b{bottom:778.213333pt;}
.y26{bottom:779.333333pt;}
.yf8{bottom:790.693333pt;}
.y12a{bottom:791.973333pt;}
.y65{bottom:792.133333pt;}
.y59{bottom:793.093333pt;}
.y1c2{bottom:794.213333pt;}
.yb7{bottom:794.373333pt;}
.y1e0{bottom:798.213333pt;}
.y7{bottom:798.373333pt;}
.y95{bottom:800.453333pt;}
.y25{bottom:804.613333pt;}
.y129{bottom:805.733333pt;}
.y180{bottom:806.373333pt;}
.yf7{bottom:813.733333pt;}
.y58{bottom:818.373333pt;}
.y128{bottom:819.493333pt;}
.yb6{bottom:819.653333pt;}
.y1c1{bottom:820.613333pt;}
.y1df{bottom:823.493333pt;}
.y94{bottom:824.773333pt;}
.y24{bottom:829.893333pt;}
.y6{bottom:832.293333pt;}
.y126{bottom:836.773333pt;}
.yf6{bottom:837.573333pt;}
.y57{bottom:843.813333pt;}
.yb5{bottom:844.933333pt;}
.y1c0{bottom:845.893333pt;}
.y17e{bottom:848.453333pt;}
.y93{bottom:848.613333pt;}
.y1de{bottom:848.773333pt;}
.yf5{bottom:851.813333pt;}
.y14d{bottom:852.133333pt;}
.y23{bottom:855.173333pt;}
.y8f{bottom:862.853333pt;}
.yf4{bottom:865.733333pt;}
.y5{bottom:866.213333pt;}
.y56{bottom:869.093333pt;}
.yb4{bottom:870.213333pt;}
.y1bf{bottom:872.133333pt;}
.y1dd{bottom:874.053333pt;}
.yf3{bottom:879.493333pt;}
.y22{bottom:880.613333pt;}
.yf2{bottom:893.253333pt;}
.y55{bottom:894.373333pt;}
.yb3{bottom:895.493333pt;}
.y1be{bottom:898.373333pt;}
.y1dc{bottom:899.333333pt;}
.y4{bottom:900.773333pt;}
.y21{bottom:905.893333pt;}
.y124{bottom:907.013333pt;}
.yf1{bottom:909.733333pt;}
.y54{bottom:919.653333pt;}
.yb2{bottom:920.933333pt;}
.yf0{bottom:923.653333pt;}
.y1db{bottom:924.773333pt;}
.y20{bottom:931.173333pt;}
.y123{bottom:934.693333pt;}
.yef{bottom:937.413333pt;}
.y3{bottom:938.853333pt;}
.y53{bottom:944.933333pt;}
.y8d{bottom:946.373333pt;}
.y122{bottom:948.453333pt;}
.y1bd{bottom:949.093333pt;}
.y1da{bottom:950.053333pt;}
.yee{bottom:951.173333pt;}
.y1f{bottom:959.653333pt;}
.y121{bottom:965.733333pt;}
.yb1{bottom:967.173333pt;}
.yeb{bottom:967.813333pt;}
.y52{bottom:970.213333pt;}
.y2{bottom:976.933333pt;}
.y120{bottom:979.493333pt;}
.y1e{bottom:991.813333pt;}
.y11e{bottom:993.253333pt;}
.y51{bottom:995.493333pt;}
.y1{bottom:1014.240000pt;}
.h14{height:13.746667pt;}
.h19{height:13.753333pt;}
.h2a{height:13.760000pt;}
.h17{height:13.778667pt;}
.h29{height:13.780000pt;}
.h15{height:13.906667pt;}
.h1a{height:13.913333pt;}
.h2b{height:13.920000pt;}
.h16{height:15.826667pt;}
.h1d{height:15.833333pt;}
.h1e{height:15.866667pt;}
.h18{height:15.986667pt;}
.hd{height:20.626667pt;}
.he{height:20.658667pt;}
.h7{height:20.666667pt;}
.ha{height:20.786667pt;}
.h1c{height:27.506667pt;}
.h2c{height:27.520000pt;}
.h34{height:27.666667pt;}
.h2e{height:27.680000pt;}
.h31{height:31.506667pt;}
.h21{height:31.666667pt;}
.h22{height:31.826667pt;}
.h26{height:32.250000pt;}
.h35{height:33.586667pt;}
.h2{height:40.163750pt;}
.h1b{height:41.306667pt;}
.hc{height:41.426667pt;}
.h37{height:41.440000pt;}
.h36{height:41.460000pt;}
.h20{height:41.466667pt;}
.h9{height:42.106667pt;}
.h30{height:46.706667pt;}
.h8{height:50.062500pt;}
.h25{height:53.370000pt;}
.h24{height:55.186667pt;}
.h4{height:55.402500pt;}
.h2f{height:55.840000pt;}
.h1f{height:56.466667pt;}
.h33{height:56.626667pt;}
.h32{height:57.695000pt;}
.h5{height:61.410000pt;}
.hf{height:62.066667pt;}
.h10{height:62.073333pt;}
.h11{height:62.106667pt;}
.h13{height:65.595000pt;}
.h6{height:66.750000pt;}
.h2d{height:70.400000pt;}
.h3{height:78.097500pt;}
.h27{height:82.706667pt;}
.h12{height:82.866667pt;}
.hb{height:83.506667pt;}
.h28{height:85.460000pt;}
.h23{height:138.706667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w28{width:43.826667pt;}
.w27{width:44.992000pt;}
.w1f{width:47.666667pt;}
.w1e{width:47.712000pt;}
.w1d{width:47.840000pt;}
.w1c{width:48.018667pt;}
.w22{width:63.218667pt;}
.w1a{width:63.538667pt;}
.w26{width:66.706667pt;}
.w29{width:70.098667pt;}
.w23{width:71.538667pt;}
.w21{width:76.466667pt;}
.w19{width:77.106667pt;}
.w11{width:85.426667pt;}
.w10{width:85.472000pt;}
.w25{width:90.112000pt;}
.w20{width:92.306667pt;}
.w14{width:97.152000pt;}
.w2a{width:99.360000pt;}
.w24{width:100.160000pt;}
.w15{width:102.066667pt;}
.w16{width:102.258667pt;}
.w17{width:110.550667pt;}
.w7{width:125.906667pt;}
.w8{width:125.910667pt;}
.w9{width:125.938667pt;}
.w6{width:125.952000pt;}
.w5{width:126.098667pt;}
.wa{width:126.230667pt;}
.w3{width:126.258667pt;}
.wb{width:126.418667pt;}
.w2{width:126.550667pt;}
.w18{width:141.293333pt;}
.w12{width:150.413333pt;}
.wf{width:170.906667pt;}
.w2b{width:176.657333pt;}
.we{width:185.133333pt;}
.w2d{width:210.413333pt;}
.w2c{width:244.026667pt;}
.w4{width:252.506667pt;}
.w1b{width:286.266667pt;}
.w13{width:301.506667pt;}
.wc{width:315.857333pt;}
.wd{width:315.893333pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2e{left:4.626667pt;}
.x56{left:5.586667pt;}
.x49{left:6.906667pt;}
.x4a{left:7.866667pt;}
.x21{left:9.430667pt;}
.x50{left:10.546667pt;}
.x25{left:11.670667pt;}
.x1c{left:13.280000pt;}
.x4b{left:14.266667pt;}
.x1a{left:15.506667pt;}
.x22{left:17.110667pt;}
.x29{left:18.070667pt;}
.x16{left:19.830667pt;}
.x27{left:21.110667pt;}
.x26{left:22.070667pt;}
.x1d{left:23.506667pt;}
.x18{left:24.800000pt;}
.x37{left:26.560000pt;}
.x2a{left:27.985333pt;}
.x32{left:28.986667pt;}
.x3b{left:30.866667pt;}
.x17{left:32.186667pt;}
.x28{left:33.425333pt;}
.x3a{left:34.880000pt;}
.x57{left:36.000000pt;}
.x15{left:37.586667pt;}
.x44{left:38.546667pt;}
.x13{left:39.520000pt;}
.x42{left:40.625333pt;}
.x19{left:41.920000pt;}
.x59{left:43.200000pt;}
.x3e{left:45.920000pt;}
.x5f{left:47.185333pt;}
.x12{left:48.666667pt;}
.x3f{left:50.880000pt;}
.x1b{left:52.826667pt;}
.x41{left:54.226667pt;}
.x3c{left:55.185333pt;}
.x5b{left:60.305333pt;}
.x40{left:61.946667pt;}
.xe{left:63.185333pt;}
.x30{left:64.346667pt;}
.x36{left:74.720000pt;}
.x2b{left:84.145333pt;}
.x23{left:88.145333pt;}
.x5d{left:90.066667pt;}
.x47{left:102.080000pt;}
.x5c{left:103.680000pt;}
.x5e{left:104.960000pt;}
.xd{left:106.281333pt;}
.x6{left:113.472000pt;}
.x1e{left:129.105333pt;}
.x20{left:134.266667pt;}
.x60{left:137.466667pt;}
.x24{left:139.066667pt;}
.x2c{left:140.666667pt;}
.x7{left:151.706667pt;}
.x8{left:155.226667pt;}
.xc{left:160.666667pt;}
.x43{left:186.920000pt;}
.x34{left:199.240000pt;}
.x3d{left:217.800000pt;}
.xf{left:232.840000pt;}
.x51{left:236.200000pt;}
.x2d{left:247.240000pt;}
.x4{left:260.346667pt;}
.x45{left:264.040000pt;}
.x3{left:272.386667pt;}
.xa{left:277.026667pt;}
.x58{left:283.906667pt;}
.x52{left:307.586667pt;}
.x9{left:323.266667pt;}
.x46{left:328.226667pt;}
.x2{left:347.106667pt;}
.x35{left:349.666667pt;}
.x10{left:359.746667pt;}
.x4c{left:376.706667pt;}
.x5{left:396.866667pt;}
.x53{left:409.026667pt;}
.x33{left:417.826667pt;}
.xb{left:421.506667pt;}
.x1f{left:423.106667pt;}
.x4d{left:425.186667pt;}
.x2f{left:432.386667pt;}
.x1{left:440.066667pt;}
.x38{left:446.826667pt;}
.x55{left:455.306667pt;}
.x4e{left:473.706667pt;}
.x14{left:486.346667pt;}
.x54{left:500.586667pt;}
.x31{left:517.866667pt;}
.x4f{left:522.186667pt;}
.x5a{left:528.586667pt;}
.x39{left:548.906667pt;}
.x11{left:612.906667pt;}
.x48{left:615.306667pt;}
}




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