
    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_28adc19c8f8a6444c2f90827.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_a33098edbc4c40f8203f6837.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_0c51b295985b782caa696987.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;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_c622ae879193155b46a43af9.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3b1110496e215d0b510536c7.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.107422;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_728b95cdc18b5a10b41f4563.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c9682f9603ab38ebefe2c2f3.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.068848;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_d7d9a381d330d4c0d0fabee7.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.875000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.121623,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121623,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121623,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.121950,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls24{letter-spacing:-0.984000px;}
.ls1e{letter-spacing:-0.828000px;}
.ls14{letter-spacing:-0.720000px;}
.ls1c{letter-spacing:-0.457800px;}
.ls1a{letter-spacing:-0.414600px;}
.ls1d{letter-spacing:-0.305400px;}
.lsd{letter-spacing:-0.269400px;}
.ls15{letter-spacing:-0.262200px;}
.ls8{letter-spacing:-0.259800px;}
.ls21{letter-spacing:-0.152400px;}
.lse{letter-spacing:-0.109200px;}
.ls3{letter-spacing:-0.106800px;}
.ls4{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls1b{letter-spacing:0.053280px;}
.ls22{letter-spacing:0.070560px;}
.ls9{letter-spacing:0.188640px;}
.lsb{letter-spacing:0.228960px;}
.ls7{letter-spacing:0.235920px;}
.lsa{letter-spacing:0.257040px;}
.ls18{letter-spacing:0.259800px;}
.ls6{letter-spacing:0.259920px;}
.ls11{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.262200px;}
.ls19{letter-spacing:0.305280px;}
.lsc{letter-spacing:0.305400px;}
.ls2{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.612000px;}
.ls16{letter-spacing:0.666000px;}
.ls13{letter-spacing:0.696000px;}
.ls12{letter-spacing:1.133280px;}
.ls20{letter-spacing:2.142000px;}
.ls1f{letter-spacing:12.545280px;}
.ls17{letter-spacing:16.145280px;}
.lsf{letter-spacing:45.468000px;}
.ls23{letter-spacing:66.521280px;}
.ls1{letter-spacing:846.156000px;}
.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;}
}
.ws16{word-spacing:-66.240000px;}
.wse{word-spacing:-54.000000px;}
.wsf{word-spacing:-34.122720px;}
.ws18{word-spacing:-28.763280px;}
.wsa{word-spacing:-18.720120px;}
.wsd{word-spacing:-18.676920px;}
.wsc{word-spacing:-18.414720px;}
.wsb{word-spacing:-18.305520px;}
.ws19{word-spacing:-18.262320px;}
.ws10{word-spacing:-18.152520px;}
.ws14{word-spacing:-18.109320px;}
.ws15{word-spacing:-18.000120px;}
.ws13{word-spacing:-17.956920px;}
.ws17{word-spacing:-17.586720px;}
.ws1a{word-spacing:-17.430720px;}
.ws4{word-spacing:-17.225280px;}
.ws1{word-spacing:-16.973280px;}
.ws11{word-spacing:-16.873080px;}
.ws12{word-spacing:-16.666560px;}
.ws3{word-spacing:-16.613280px;}
.ws5{word-spacing:-16.560000px;}
.ws2{word-spacing:-16.506480px;}
.ws6{word-spacing:-16.353480px;}
.ws9{word-spacing:-14.211360px;}
.ws7{word-spacing:-13.410720px;}
.ws8{word-spacing:-13.141320px;}
.ws0{word-spacing:0.000000px;}
._e{margin-left:-18.528000px;}
._d{margin-left:-13.462560px;}
._a{margin-left:-11.755680px;}
._9{margin-left:-10.380960px;}
._c{margin-left:-9.180960px;}
._b{margin-left:-7.399680px;}
._14{margin-left:-5.423520px;}
._13{margin-left:-4.164480px;}
._8{margin-left:-3.088800px;}
._3{margin-left:-1.912320px;}
._0{width:1.709760px;}
._7{width:3.195840px;}
._12{width:4.611840px;}
._5{width:5.917920px;}
._4{width:7.051680px;}
._6{width:8.281440px;}
._11{width:9.923520px;}
._1{width:11.294640px;}
._2{width:12.379920px;}
._f{width:13.961280px;}
._10{width:15.205920px;}
._16{width:16.758720px;}
._18{width:18.286560px;}
._1e{width:19.722240px;}
._19{width:21.329280px;}
._1a{width:22.769760px;}
._1d{width:24.522240px;}
._1b{width:25.684800px;}
._1c{width:26.884320px;}
._17{width:27.887040px;}
._15{width:29.079360px;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(227,5,19);}
.fc3{color:rgb(68,68,68);}
.fc0{color:rgb(0,0,0);}
.fs8{font-size:5.760000px;}
.fsb{font-size:33.120000px;}
.fs4{font-size:42.000000px;}
.fs9{font-size:48.240000px;}
.fsa{font-size:51.120000px;}
.fsc{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:84.000000px;}
.fs6{font-size:84.240000px;}
.fse{font-size:95.760000px;}
.fsd{font-size:120.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:25.395007px;}
.y6{bottom:50.595005px;}
.y5{bottom:75.795004px;}
.y4{bottom:100.995005px;}
.y23{bottom:139.264499px;}
.y215{bottom:152.820000px;}
.y66{bottom:153.540000px;}
.y1cf{bottom:159.120000px;}
.yaa{bottom:160.200000px;}
.y15e{bottom:170.820000px;}
.y1ef{bottom:171.000000px;}
.y177{bottom:172.260000px;}
.y65{bottom:173.160000px;}
.y214{bottom:175.710000px;}
.y10a{bottom:178.770000px;}
.y18f{bottom:181.290000px;}
.y1ce{bottom:181.650000px;}
.ya9{bottom:182.730000px;}
.y12a{bottom:185.790000px;}
.y64{bottom:192.630000px;}
.y15d{bottom:193.350000px;}
.y1ee{bottom:193.530000px;}
.y176{bottom:194.790000px;}
.y1a{bottom:196.933500px;}
.y109{bottom:201.270000px;}
.y18e{bottom:203.790000px;}
.y1cd{bottom:204.150000px;}
.ya8{bottom:205.230000px;}
.y1a8{bottom:205.950000px;}
.y212{bottom:207.030000px;}
.y129{bottom:208.290000px;}
.y22{bottom:209.518500px;}
.y19{bottom:209.533503px;}
.y63{bottom:212.070000px;}
.y15c{bottom:215.850000px;}
.y1ed{bottom:216.030000px;}
.y175{bottom:217.290000px;}
.y21{bottom:222.118502px;}
.y18{bottom:222.133505px;}
.y108{bottom:223.770000px;}
.y18d{bottom:226.290000px;}
.y1cc{bottom:226.650000px;}
.ye1{bottom:227.550000px;}
.ya7{bottom:227.730000px;}
.y1a7{bottom:228.450000px;}
.y211{bottom:229.530000px;}
.y128{bottom:230.790000px;}
.y62{bottom:231.690000px;}
.y20{bottom:234.718504px;}
.y17{bottom:234.733496px;}
.y15b{bottom:238.350000px;}
.y1ec{bottom:238.530000px;}
.y174{bottom:239.790000px;}
.ye0{bottom:244.110000px;}
.y107{bottom:246.270000px;}
.y18c{bottom:248.790000px;}
.y1cb{bottom:249.150000px;}
.ya6{bottom:250.230000px;}
.y1a6{bottom:250.950000px;}
.y61{bottom:251.130000px;}
.y210{bottom:252.030000px;}
.y127{bottom:253.290000px;}
.y1f{bottom:259.918497px;}
.y16{bottom:259.933500px;}
.ydf{bottom:260.670000px;}
.y15a{bottom:260.850000px;}
.y1eb{bottom:261.030000px;}
.y173{bottom:262.290000px;}
.y106{bottom:268.770000px;}
.y60{bottom:270.570000px;}
.y18b{bottom:271.290000px;}
.y1ca{bottom:271.650000px;}
.y1e{bottom:272.518500px;}
.y15{bottom:272.533503px;}
.ya5{bottom:272.730000px;}
.y1a5{bottom:273.450000px;}
.y20f{bottom:274.530000px;}
.y126{bottom:275.790000px;}
.y32{bottom:276.150000px;}
.yde{bottom:277.050000px;}
.y84{bottom:281.730000px;}
.y159{bottom:283.350000px;}
.y1ea{bottom:283.530000px;}
.y172{bottom:284.790000px;}
.y1d{bottom:285.118502px;}
.y14{bottom:285.133499px;}
.y5f{bottom:290.190000px;}
.y105{bottom:291.270000px;}
.ydd{bottom:293.610000px;}
.y18a{bottom:293.790000px;}
.y1c9{bottom:294.150000px;}
.ya4{bottom:295.230000px;}
.y1a4{bottom:295.950000px;}
.y31{bottom:296.310000px;}
.y20e{bottom:297.030000px;}
.y125{bottom:298.290000px;}
.y158{bottom:305.850000px;}
.y1e9{bottom:306.030000px;}
.y171{bottom:307.290000px;}
.y5e{bottom:309.630000px;}
.ydc{bottom:310.170000px;}
.y1c{bottom:310.318501px;}
.y13{bottom:310.333501px;}
.y104{bottom:313.770000px;}
.y83{bottom:313.950000px;}
.y189{bottom:316.290000px;}
.y1c8{bottom:316.650000px;}
.ya3{bottom:317.730000px;}
.y1a3{bottom:318.450000px;}
.y30{bottom:318.810000px;}
.y20d{bottom:319.530000px;}
.y124{bottom:320.790000px;}
.y1b{bottom:322.918500px;}
.y12{bottom:322.933500px;}
.ydb{bottom:326.550000px;}
.y157{bottom:328.350000px;}
.y1e8{bottom:328.530000px;}
.y5d{bottom:329.070000px;}
.y170{bottom:329.790000px;}
.y103{bottom:336.270000px;}
.y82{bottom:336.450000px;}
.y188{bottom:338.790000px;}
.y1c7{bottom:339.150000px;}
.ya2{bottom:340.230000px;}
.y1a2{bottom:340.950000px;}
.y2f{bottom:341.310000px;}
.y20c{bottom:342.030000px;}
.yda{bottom:343.110000px;}
.y123{bottom:343.290000px;}
.y11{bottom:348.133500px;}
.y5c{bottom:348.690000px;}
.y156{bottom:350.850000px;}
.y1e7{bottom:351.030000px;}
.y16f{bottom:352.290000px;}
.y102{bottom:358.770000px;}
.yd9{bottom:359.670000px;}
.y187{bottom:361.290000px;}
.y1c6{bottom:361.650000px;}
.ya1{bottom:362.730000px;}
.y1a1{bottom:363.450000px;}
.y2e{bottom:363.810000px;}
.y20b{bottom:364.530000px;}
.y122{bottom:365.790000px;}
.y5b{bottom:368.130000px;}
.y81{bottom:368.850000px;}
.y155{bottom:373.350000px;}
.y1e6{bottom:373.530000px;}
.y16e{bottom:374.790000px;}
.yd8{bottom:376.050000px;}
.y101{bottom:381.270000px;}
.y186{bottom:383.790000px;}
.y1c5{bottom:384.150000px;}
.ya0{bottom:385.230000px;}
.y1a0{bottom:385.950000px;}
.y2d{bottom:386.310000px;}
.y10{bottom:386.785499px;}
.y20a{bottom:387.030000px;}
.y5a{bottom:387.570000px;}
.y121{bottom:388.290000px;}
.y80{bottom:391.350000px;}
.yd7{bottom:392.610000px;}
.y154{bottom:395.850000px;}
.y1e5{bottom:396.030000px;}
.y16d{bottom:397.290000px;}
.y100{bottom:403.770000px;}
.y185{bottom:406.290000px;}
.y1c4{bottom:406.650000px;}
.y59{bottom:407.190000px;}
.y9f{bottom:407.730000px;}
.yf{bottom:408.044999px;}
.y19f{bottom:408.450000px;}
.y2c{bottom:408.810000px;}
.yd6{bottom:409.170000px;}
.y209{bottom:409.530000px;}
.y120{bottom:410.790000px;}
.y7f{bottom:413.850000px;}
.y153{bottom:418.395000px;}
.y1e4{bottom:418.575000px;}
.y16c{bottom:419.835000px;}
.yff{bottom:422.895000px;}
.yd5{bottom:425.595000px;}
.y58{bottom:426.675000px;}
.y184{bottom:428.835000px;}
.y1c3{bottom:429.195000px;}
.y9e{bottom:430.275000px;}
.y19e{bottom:430.995000px;}
.y2b{bottom:431.355000px;}
.y208{bottom:432.075000px;}
.y11f{bottom:433.335000px;}
.y7e{bottom:439.275000px;}
.y152{bottom:440.895000px;}
.y1e3{bottom:441.075000px;}
.yd4{bottom:442.155000px;}
.y16b{bottom:442.335000px;}
.y57{bottom:446.115000px;}
.y183{bottom:451.335000px;}
.y1c2{bottom:451.695000px;}
.y9d{bottom:452.775000px;}
.y19d{bottom:453.495000px;}
.y2a{bottom:453.855000px;}
.y207{bottom:454.575000px;}
.y11e{bottom:455.835000px;}
.yd3{bottom:458.895000px;}
.y151{bottom:463.395000px;}
.y1e2{bottom:463.575000px;}
.y16a{bottom:464.835000px;}
.y56{bottom:465.735000px;}
.y7d{bottom:470.775000px;}
.y182{bottom:473.835000px;}
.y1c1{bottom:474.195000px;}
.y9c{bottom:475.275000px;}
.y19c{bottom:475.995000px;}
.y29{bottom:476.355000px;}
.y206{bottom:477.075000px;}
.y11d{bottom:478.335000px;}
.yd2{bottom:481.395000px;}
.y55{bottom:485.175000px;}
.y150{bottom:485.895000px;}
.y1e1{bottom:486.075000px;}
.y169{bottom:487.335000px;}
.y7c{bottom:493.275000px;}
.y181{bottom:496.335000px;}
.y1c0{bottom:496.695000px;}
.y9b{bottom:497.775000px;}
.y19b{bottom:498.495000px;}
.y205{bottom:499.575000px;}
.y11c{bottom:500.835000px;}
.ye{bottom:502.864502px;}
.yd1{bottom:503.895000px;}
.y54{bottom:504.615000px;}
.y28{bottom:507.315000px;}
.y14f{bottom:508.395000px;}
.y1e0{bottom:508.575000px;}
.y168{bottom:509.835000px;}
.y7b{bottom:515.775000px;}
.y180{bottom:518.835000px;}
.y1bf{bottom:519.195000px;}
.y9a{bottom:520.275000px;}
.yd{bottom:520.864502px;}
.y19a{bottom:520.995000px;}
.y204{bottom:522.075000px;}
.y11b{bottom:523.335000px;}
.yd0{bottom:526.395000px;}
.y27{bottom:527.295000px;}
.y14e{bottom:530.895000px;}
.y1df{bottom:531.075000px;}
.y167{bottom:532.335000px;}
.yc{bottom:538.864499px;}
.y17f{bottom:541.335000px;}
.y1be{bottom:541.695000px;}
.y99{bottom:542.775000px;}
.y199{bottom:543.495000px;}
.y203{bottom:544.575000px;}
.y11a{bottom:545.835000px;}
.y7a{bottom:547.995000px;}
.ycf{bottom:548.895000px;}
.y14d{bottom:553.395000px;}
.y1de{bottom:553.575000px;}
.y166{bottom:554.835000px;}
.yb{bottom:556.864499px;}
.y26{bottom:560.235000px;}
.y17e{bottom:563.835000px;}
.y1bd{bottom:564.195000px;}
.y98{bottom:565.275000px;}
.y198{bottom:565.995000px;}
.y202{bottom:567.075000px;}
.y119{bottom:568.335000px;}
.yce{bottom:571.395000px;}
.y14c{bottom:575.895000px;}
.y1dd{bottom:576.075000px;}
.y165{bottom:577.335000px;}
.y53{bottom:580.395000px;}
.y17d{bottom:586.335000px;}
.y1bc{bottom:586.695000px;}
.y97{bottom:587.775000px;}
.y197{bottom:588.495000px;}
.y201{bottom:589.575000px;}
.y118{bottom:590.835000px;}
.ycd{bottom:593.895000px;}
.y14b{bottom:598.395000px;}
.y1dc{bottom:598.575000px;}
.y52{bottom:599.835000px;}
.y79{bottom:602.895000px;}
.y17c{bottom:608.835000px;}
.y1bb{bottom:609.195000px;}
.y96{bottom:610.275000px;}
.y196{bottom:610.995000px;}
.y200{bottom:612.075000px;}
.y117{bottom:613.335000px;}
.ycc{bottom:616.395000px;}
.yf7{bottom:617.835000px;}
.y51{bottom:619.275000px;}
.y14a{bottom:620.895000px;}
.y1db{bottom:621.075000px;}
.y164{bottom:622.335000px;}
.y17b{bottom:631.335000px;}
.y1ba{bottom:631.695000px;}
.y95{bottom:632.775000px;}
.y195{bottom:633.495000px;}
.y1ff{bottom:634.575000px;}
.y78{bottom:635.115000px;}
.y116{bottom:635.835000px;}
.y50{bottom:638.895000px;}
.yf6{bottom:640.335000px;}
.y149{bottom:643.395000px;}
.y1da{bottom:643.575000px;}
.y163{bottom:644.835000px;}
.ya{bottom:645.510000px;}
.y17a{bottom:653.835000px;}
.y1b9{bottom:654.195000px;}
.y94{bottom:655.275000px;}
.y194{bottom:655.995000px;}
.y1fe{bottom:657.075000px;}
.y4f{bottom:658.335000px;}
.ycb{bottom:661.425000px;}
.yf5{bottom:662.865000px;}
.y148{bottom:665.925000px;}
.y1d9{bottom:666.105000px;}
.y9{bottom:666.771000px;}
.y77{bottom:667.365000px;}
.y4e{bottom:674.925000px;}
.y179{bottom:676.365000px;}
.y4d{bottom:676.725000px;}
.y93{bottom:677.805000px;}
.y4c{bottom:678.345000px;}
.y193{bottom:678.525000px;}
.y1fd{bottom:679.605000px;}
.y4b{bottom:680.145000px;}
.y115{bottom:680.865000px;}
.y4a{bottom:681.765000px;}
.y49{bottom:683.565000px;}
.yca{bottom:683.925000px;}
.yf4{bottom:685.365000px;}
.y48{bottom:688.245000px;}
.y147{bottom:688.425000px;}
.y1d8{bottom:688.605000px;}
.y76{bottom:689.865000px;}
.y178{bottom:698.865000px;}
.y1b8{bottom:699.225000px;}
.y92{bottom:700.305000px;}
.y192{bottom:701.025000px;}
.y1fc{bottom:702.105000px;}
.y114{bottom:703.365000px;}
.yc9{bottom:706.425000px;}
.y47{bottom:707.685000px;}
.yf3{bottom:707.865000px;}
.y146{bottom:710.925000px;}
.y1d7{bottom:711.105000px;}
.y162{bottom:712.365000px;}
.yfe{bottom:721.365000px;}
.y1b7{bottom:721.725000px;}
.y75{bottom:722.085000px;}
.y91{bottom:722.805000px;}
.y191{bottom:723.525000px;}
.y1fb{bottom:724.605000px;}
.y113{bottom:725.865000px;}
.y8{bottom:726.298500px;}
.y46{bottom:727.305000px;}
.yc8{bottom:728.925000px;}
.yf2{bottom:730.365000px;}
.y137{bottom:731.805000px;}
.y145{bottom:733.425000px;}
.y1d6{bottom:733.605000px;}
.y161{bottom:734.865000px;}
.y190{bottom:742.605000px;}
.yfd{bottom:743.865000px;}
.y1b6{bottom:744.225000px;}
.y90{bottom:745.305000px;}
.y45{bottom:746.745000px;}
.y1fa{bottom:747.105000px;}
.y112{bottom:748.365000px;}
.yc7{bottom:751.425000px;}
.y3{bottom:752.599495px;}
.yf1{bottom:752.685000px;}
.y74{bottom:754.305000px;}
.y144{bottom:755.925000px;}
.y1d5{bottom:756.645000px;}
.y160{bottom:757.365000px;}
.y44{bottom:766.185000px;}
.yfc{bottom:766.365000px;}
.y1b5{bottom:766.725000px;}
.y8f{bottom:767.805000px;}
.yf0{bottom:769.245000px;}
.y1f9{bottom:769.605000px;}
.y111{bottom:770.865000px;}
.yc6{bottom:773.925000px;}
.y1d4{bottom:776.085000px;}
.y136{bottom:776.805000px;}
.y143{bottom:778.425000px;}
.y15f{bottom:779.865000px;}
.yef{bottom:785.625000px;}
.y43{bottom:785.805000px;}
.y73{bottom:786.525000px;}
.yfb{bottom:788.865000px;}
.y1b4{bottom:789.225000px;}
.y25{bottom:790.125000px;}
.y8e{bottom:790.305000px;}
.y1f8{bottom:792.105000px;}
.y110{bottom:793.185000px;}
.y1d3{bottom:795.525000px;}
.yc5{bottom:796.245000px;}
.y135{bottom:799.305000px;}
.y142{bottom:800.925000px;}
.yee{bottom:802.185000px;}
.yb8{bottom:802.365000px;}
.y42{bottom:805.245000px;}
.y10f{bottom:809.745000px;}
.yfa{bottom:811.365000px;}
.y1b3{bottom:811.725000px;}
.yc4{bottom:812.625000px;}
.y8d{bottom:812.805000px;}
.y1d2{bottom:814.605000px;}
.yed{bottom:818.745000px;}
.y72{bottom:818.925000px;}
.y134{bottom:821.805000px;}
.y141{bottom:823.425000px;}
.y41{bottom:824.685000px;}
.yb7{bottom:824.865000px;}
.y10e{bottom:826.125000px;}
.yc3{bottom:829.185000px;}
.yf9{bottom:833.865000px;}
.y1b2{bottom:834.225000px;}
.yec{bottom:835.125000px;}
.y8c{bottom:835.305000px;}
.y1f7{bottom:837.105000px;}
.y1d1{bottom:838.905000px;}
.y71{bottom:841.425000px;}
.y10d{bottom:842.685000px;}
.y40{bottom:844.305000px;}
.y24{bottom:845.025000px;}
.yc2{bottom:845.745000px;}
.y140{bottom:845.925000px;}
.yb6{bottom:847.365000px;}
.yeb{bottom:851.685000px;}
.yf8{bottom:856.365000px;}
.y1b1{bottom:856.725000px;}
.y8b{bottom:857.805000px;}
.y10c{bottom:859.245000px;}
.y1f6{bottom:859.605000px;}
.yc1{bottom:862.125000px;}
.y3f{bottom:863.745000px;}
.y1d0{bottom:866.445000px;}
.y133{bottom:866.805000px;}
.yea{bottom:868.245000px;}
.y13f{bottom:868.425000px;}
.yb5{bottom:869.865000px;}
.y70{bottom:873.645000px;}
.y10b{bottom:875.625000px;}
.yc0{bottom:878.865000px;}
.y1b0{bottom:879.225000px;}
.y2{bottom:879.369000px;}
.y8a{bottom:880.305000px;}
.y1f5{bottom:882.105000px;}
.y3e{bottom:883.185000px;}
.ye9{bottom:884.625000px;}
.y132{bottom:889.305000px;}
.y13e{bottom:890.925000px;}
.yb4{bottom:892.365000px;}
.y6f{bottom:896.145000px;}
.ye8{bottom:901.230000px;}
.ybf{bottom:901.410000px;}
.y1af{bottom:901.770000px;}
.y3d{bottom:902.850000px;}
.y1f4{bottom:904.650000px;}
.y131{bottom:911.670000px;}
.y13d{bottom:913.470000px;}
.yb3{bottom:914.910000px;}
.ye7{bottom:917.790000px;}
.y3c{bottom:922.290000px;}
.ybe{bottom:923.910000px;}
.y1ae{bottom:924.630000px;}
.y89{bottom:925.350000px;}
.y1f3{bottom:927.150000px;}
.y130{bottom:928.230000px;}
.y6e{bottom:928.410000px;}
.ye6{bottom:934.170000px;}
.y13c{bottom:935.970000px;}
.yb2{bottom:937.410000px;}
.y3b{bottom:941.730000px;}
.y1ad{bottom:944.070000px;}
.y12f{bottom:944.790000px;}
.ybd{bottom:946.410000px;}
.y88{bottom:947.850000px;}
.y1f2{bottom:949.650000px;}
.ye5{bottom:950.730000px;}
.y6d{bottom:950.910000px;}
.y13b{bottom:958.470000px;}
.yb1{bottom:959.910000px;}
.y12e{bottom:961.170000px;}
.y3a{bottom:961.350000px;}
.y1ac{bottom:963.690000px;}
.y1{bottom:966.726000px;}
.ye4{bottom:967.290000px;}
.ybc{bottom:968.910000px;}
.y87{bottom:970.350000px;}
.y1f1{bottom:973.950000px;}
.y12d{bottom:977.730000px;}
.y39{bottom:980.790000px;}
.y13a{bottom:980.970000px;}
.yb0{bottom:982.410000px;}
.y1ab{bottom:982.770000px;}
.y6c{bottom:983.130000px;}
.ye3{bottom:983.670000px;}
.ybb{bottom:991.410000px;}
.y86{bottom:992.850000px;}
.y12c{bottom:994.290000px;}
.y38{bottom:1000.230000px;}
.y1f0{bottom:1001.490000px;}
.y139{bottom:1003.470000px;}
.yaf{bottom:1004.910000px;}
.y6b{bottom:1005.630000px;}
.y1aa{bottom:1006.890000px;}
.y12b{bottom:1010.670000px;}
.y85{bottom:1015.350000px;}
.yba{bottom:1016.790000px;}
.y37{bottom:1019.850000px;}
.y138{bottom:1025.970000px;}
.yae{bottom:1027.410000px;}
.ye2{bottom:1033.170000px;}
.y1a9{bottom:1034.430000px;}
.y6a{bottom:1037.850000px;}
.y36{bottom:1039.290000px;}
.yad{bottom:1049.910000px;}
.yb9{bottom:1051.350000px;}
.y35{bottom:1058.730000px;}
.y69{bottom:1060.350000px;}
.yac{bottom:1072.410000px;}
.y34{bottom:1078.350000px;}
.y68{bottom:1085.730000px;}
.yab{bottom:1094.910000px;}
.y33{bottom:1097.790000px;}
.y67{bottom:1173.240000px;}
.y213{bottom:1179.180000px;}
.hd{height:6.007500px;}
.h7{height:32.130000px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.hf{height:53.603086px;}
.h2{height:55.080000px;}
.h10{height:59.415469px;}
.hb{height:62.327813px;}
.h5{height:64.260000px;}
.h9{height:69.086250px;}
.hc{height:74.004654px;}
.ha{height:86.585445px;}
.h11{height:99.874688px;}
.h4{height:119.055004px;}
.he{height:125.406562px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w4{width:892.979987px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x6{left:148.895987px;}
.x5{left:170.129987px;}
.x20{left:191.369987px;}
.x4{left:203.484001px;}
.xa{left:227.009987px;}
.xb{left:228.989987px;}
.x13{left:264.449987px;}
.x9{left:273.629987px;}
.x18{left:296.714987px;}
.x19{left:299.054987px;}
.x7{left:322.274987px;}
.x8{left:324.434987px;}
.xe{left:332.714987px;}
.xf{left:334.694987px;}
.x1c{left:347.294987px;}
.x1d{left:349.454987px;}
.x1a{left:391.754987px;}
.x1b{left:394.094987px;}
.xc{left:397.874987px;}
.xd{left:399.854987px;}
.x3{left:454.959000px;}
.x10{left:470.054987px;}
.x11{left:472.394987px;}
.x14{left:553.784987px;}
.x15{left:556.124987px;}
.x16{left:596.624987px;}
.x17{left:598.964987px;}
.x1e{left:640.184987px;}
.x1f{left:642.524987px;}
.x12{left:680.369987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls24{letter-spacing:-0.874667pt;}
.ls1e{letter-spacing:-0.736000pt;}
.ls14{letter-spacing:-0.640000pt;}
.ls1c{letter-spacing:-0.406933pt;}
.ls1a{letter-spacing:-0.368533pt;}
.ls1d{letter-spacing:-0.271467pt;}
.lsd{letter-spacing:-0.239467pt;}
.ls15{letter-spacing:-0.233067pt;}
.ls8{letter-spacing:-0.230933pt;}
.ls21{letter-spacing:-0.135467pt;}
.lse{letter-spacing:-0.097067pt;}
.ls3{letter-spacing:-0.094933pt;}
.ls4{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls22{letter-spacing:0.062720pt;}
.ls9{letter-spacing:0.167680pt;}
.lsb{letter-spacing:0.203520pt;}
.ls7{letter-spacing:0.209707pt;}
.lsa{letter-spacing:0.228480pt;}
.ls18{letter-spacing:0.230933pt;}
.ls6{letter-spacing:0.231040pt;}
.ls11{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.233067pt;}
.ls19{letter-spacing:0.271360pt;}
.lsc{letter-spacing:0.271467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.544000pt;}
.ls16{letter-spacing:0.592000pt;}
.ls13{letter-spacing:0.618667pt;}
.ls12{letter-spacing:1.007360pt;}
.ls20{letter-spacing:1.904000pt;}
.ls1f{letter-spacing:11.151360pt;}
.ls17{letter-spacing:14.351360pt;}
.lsf{letter-spacing:40.416000pt;}
.ls23{letter-spacing:59.130027pt;}
.ls1{letter-spacing:752.138667pt;}
.ws16{word-spacing:-58.880000pt;}
.wse{word-spacing:-48.000000pt;}
.wsf{word-spacing:-30.331307pt;}
.ws18{word-spacing:-25.567360pt;}
.wsa{word-spacing:-16.640107pt;}
.wsd{word-spacing:-16.601707pt;}
.wsc{word-spacing:-16.368640pt;}
.wsb{word-spacing:-16.271573pt;}
.ws19{word-spacing:-16.233173pt;}
.ws10{word-spacing:-16.135573pt;}
.ws14{word-spacing:-16.097173pt;}
.ws15{word-spacing:-16.000107pt;}
.ws13{word-spacing:-15.961707pt;}
.ws17{word-spacing:-15.632640pt;}
.ws1a{word-spacing:-15.493973pt;}
.ws4{word-spacing:-15.311360pt;}
.ws1{word-spacing:-15.087360pt;}
.ws11{word-spacing:-14.998293pt;}
.ws12{word-spacing:-14.814720pt;}
.ws3{word-spacing:-14.767360pt;}
.ws5{word-spacing:-14.720000pt;}
.ws2{word-spacing:-14.672427pt;}
.ws6{word-spacing:-14.536427pt;}
.ws9{word-spacing:-12.632320pt;}
.ws7{word-spacing:-11.920640pt;}
.ws8{word-spacing:-11.681173pt;}
.ws0{word-spacing:0.000000pt;}
._e{margin-left:-16.469333pt;}
._d{margin-left:-11.966720pt;}
._a{margin-left:-10.449493pt;}
._9{margin-left:-9.227520pt;}
._c{margin-left:-8.160853pt;}
._b{margin-left:-6.577493pt;}
._14{margin-left:-4.820907pt;}
._13{margin-left:-3.701760pt;}
._8{margin-left:-2.745600pt;}
._3{margin-left:-1.699840pt;}
._0{width:1.519787pt;}
._7{width:2.840747pt;}
._12{width:4.099413pt;}
._5{width:5.260373pt;}
._4{width:6.268160pt;}
._6{width:7.361280pt;}
._11{width:8.820907pt;}
._1{width:10.039680pt;}
._2{width:11.004373pt;}
._f{width:12.410027pt;}
._10{width:13.516373pt;}
._16{width:14.896640pt;}
._18{width:16.254720pt;}
._1e{width:17.530880pt;}
._19{width:18.959360pt;}
._1a{width:20.239787pt;}
._1d{width:21.797547pt;}
._1b{width:22.830933pt;}
._1c{width:23.897173pt;}
._17{width:24.788480pt;}
._15{width:25.848320pt;}
.fs8{font-size:5.120000pt;}
.fsb{font-size:29.440000pt;}
.fs4{font-size:37.333333pt;}
.fs9{font-size:42.880000pt;}
.fsa{font-size:45.440000pt;}
.fsc{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:74.666667pt;}
.fs6{font-size:74.880000pt;}
.fse{font-size:85.120000pt;}
.fsd{font-size:106.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:22.573339pt;}
.y6{bottom:44.973338pt;}
.y5{bottom:67.373337pt;}
.y4{bottom:89.773337pt;}
.y23{bottom:123.790666pt;}
.y215{bottom:135.840000pt;}
.y66{bottom:136.480000pt;}
.y1cf{bottom:141.440000pt;}
.yaa{bottom:142.400000pt;}
.y15e{bottom:151.840000pt;}
.y1ef{bottom:152.000000pt;}
.y177{bottom:153.120000pt;}
.y65{bottom:153.920000pt;}
.y214{bottom:156.186667pt;}
.y10a{bottom:158.906667pt;}
.y18f{bottom:161.146667pt;}
.y1ce{bottom:161.466667pt;}
.ya9{bottom:162.426667pt;}
.y12a{bottom:165.146667pt;}
.y64{bottom:171.226667pt;}
.y15d{bottom:171.866667pt;}
.y1ee{bottom:172.026667pt;}
.y176{bottom:173.146667pt;}
.y1a{bottom:175.052000pt;}
.y109{bottom:178.906667pt;}
.y18e{bottom:181.146667pt;}
.y1cd{bottom:181.466667pt;}
.ya8{bottom:182.426667pt;}
.y1a8{bottom:183.066667pt;}
.y212{bottom:184.026667pt;}
.y129{bottom:185.146667pt;}
.y22{bottom:186.238666pt;}
.y19{bottom:186.252002pt;}
.y63{bottom:188.506667pt;}
.y15c{bottom:191.866667pt;}
.y1ed{bottom:192.026667pt;}
.y175{bottom:193.146667pt;}
.y21{bottom:197.438668pt;}
.y18{bottom:197.452004pt;}
.y108{bottom:198.906667pt;}
.y18d{bottom:201.146667pt;}
.y1cc{bottom:201.466667pt;}
.ye1{bottom:202.266667pt;}
.ya7{bottom:202.426667pt;}
.y1a7{bottom:203.066667pt;}
.y211{bottom:204.026667pt;}
.y128{bottom:205.146667pt;}
.y62{bottom:205.946667pt;}
.y20{bottom:208.638670pt;}
.y17{bottom:208.651996pt;}
.y15b{bottom:211.866667pt;}
.y1ec{bottom:212.026667pt;}
.y174{bottom:213.146667pt;}
.ye0{bottom:216.986667pt;}
.y107{bottom:218.906667pt;}
.y18c{bottom:221.146667pt;}
.y1cb{bottom:221.466667pt;}
.ya6{bottom:222.426667pt;}
.y1a6{bottom:223.066667pt;}
.y61{bottom:223.226667pt;}
.y210{bottom:224.026667pt;}
.y127{bottom:225.146667pt;}
.y1f{bottom:231.038664pt;}
.y16{bottom:231.052000pt;}
.ydf{bottom:231.706667pt;}
.y15a{bottom:231.866667pt;}
.y1eb{bottom:232.026667pt;}
.y173{bottom:233.146667pt;}
.y106{bottom:238.906667pt;}
.y60{bottom:240.506667pt;}
.y18b{bottom:241.146667pt;}
.y1ca{bottom:241.466667pt;}
.y1e{bottom:242.238666pt;}
.y15{bottom:242.252002pt;}
.ya5{bottom:242.426667pt;}
.y1a5{bottom:243.066667pt;}
.y20f{bottom:244.026667pt;}
.y126{bottom:245.146667pt;}
.y32{bottom:245.466667pt;}
.yde{bottom:246.266667pt;}
.y84{bottom:250.426667pt;}
.y159{bottom:251.866667pt;}
.y1ea{bottom:252.026667pt;}
.y172{bottom:253.146667pt;}
.y1d{bottom:253.438668pt;}
.y14{bottom:253.451999pt;}
.y5f{bottom:257.946667pt;}
.y105{bottom:258.906667pt;}
.ydd{bottom:260.986667pt;}
.y18a{bottom:261.146667pt;}
.y1c9{bottom:261.466667pt;}
.ya4{bottom:262.426667pt;}
.y1a4{bottom:263.066667pt;}
.y31{bottom:263.386667pt;}
.y20e{bottom:264.026667pt;}
.y125{bottom:265.146667pt;}
.y158{bottom:271.866667pt;}
.y1e9{bottom:272.026667pt;}
.y171{bottom:273.146667pt;}
.y5e{bottom:275.226667pt;}
.ydc{bottom:275.706667pt;}
.y1c{bottom:275.838667pt;}
.y13{bottom:275.852001pt;}
.y104{bottom:278.906667pt;}
.y83{bottom:279.066667pt;}
.y189{bottom:281.146667pt;}
.y1c8{bottom:281.466667pt;}
.ya3{bottom:282.426667pt;}
.y1a3{bottom:283.066667pt;}
.y30{bottom:283.386667pt;}
.y20d{bottom:284.026667pt;}
.y124{bottom:285.146667pt;}
.y1b{bottom:287.038667pt;}
.y12{bottom:287.052000pt;}
.ydb{bottom:290.266667pt;}
.y157{bottom:291.866667pt;}
.y1e8{bottom:292.026667pt;}
.y5d{bottom:292.506667pt;}
.y170{bottom:293.146667pt;}
.y103{bottom:298.906667pt;}
.y82{bottom:299.066667pt;}
.y188{bottom:301.146667pt;}
.y1c7{bottom:301.466667pt;}
.ya2{bottom:302.426667pt;}
.y1a2{bottom:303.066667pt;}
.y2f{bottom:303.386667pt;}
.y20c{bottom:304.026667pt;}
.yda{bottom:304.986667pt;}
.y123{bottom:305.146667pt;}
.y11{bottom:309.452000pt;}
.y5c{bottom:309.946667pt;}
.y156{bottom:311.866667pt;}
.y1e7{bottom:312.026667pt;}
.y16f{bottom:313.146667pt;}
.y102{bottom:318.906667pt;}
.yd9{bottom:319.706667pt;}
.y187{bottom:321.146667pt;}
.y1c6{bottom:321.466667pt;}
.ya1{bottom:322.426667pt;}
.y1a1{bottom:323.066667pt;}
.y2e{bottom:323.386667pt;}
.y20b{bottom:324.026667pt;}
.y122{bottom:325.146667pt;}
.y5b{bottom:327.226667pt;}
.y81{bottom:327.866667pt;}
.y155{bottom:331.866667pt;}
.y1e6{bottom:332.026667pt;}
.y16e{bottom:333.146667pt;}
.yd8{bottom:334.266667pt;}
.y101{bottom:338.906667pt;}
.y186{bottom:341.146667pt;}
.y1c5{bottom:341.466667pt;}
.ya0{bottom:342.426667pt;}
.y1a0{bottom:343.066667pt;}
.y2d{bottom:343.386667pt;}
.y10{bottom:343.809333pt;}
.y20a{bottom:344.026667pt;}
.y5a{bottom:344.506667pt;}
.y121{bottom:345.146667pt;}
.y80{bottom:347.866667pt;}
.yd7{bottom:348.986667pt;}
.y154{bottom:351.866667pt;}
.y1e5{bottom:352.026667pt;}
.y16d{bottom:353.146667pt;}
.y100{bottom:358.906667pt;}
.y185{bottom:361.146667pt;}
.y1c4{bottom:361.466667pt;}
.y59{bottom:361.946667pt;}
.y9f{bottom:362.426667pt;}
.yf{bottom:362.706666pt;}
.y19f{bottom:363.066667pt;}
.y2c{bottom:363.386667pt;}
.yd6{bottom:363.706667pt;}
.y209{bottom:364.026667pt;}
.y120{bottom:365.146667pt;}
.y7f{bottom:367.866667pt;}
.y153{bottom:371.906667pt;}
.y1e4{bottom:372.066667pt;}
.y16c{bottom:373.186667pt;}
.yff{bottom:375.906667pt;}
.yd5{bottom:378.306667pt;}
.y58{bottom:379.266667pt;}
.y184{bottom:381.186667pt;}
.y1c3{bottom:381.506667pt;}
.y9e{bottom:382.466667pt;}
.y19e{bottom:383.106667pt;}
.y2b{bottom:383.426667pt;}
.y208{bottom:384.066667pt;}
.y11f{bottom:385.186667pt;}
.y7e{bottom:390.466667pt;}
.y152{bottom:391.906667pt;}
.y1e3{bottom:392.066667pt;}
.yd4{bottom:393.026667pt;}
.y16b{bottom:393.186667pt;}
.y57{bottom:396.546667pt;}
.y183{bottom:401.186667pt;}
.y1c2{bottom:401.506667pt;}
.y9d{bottom:402.466667pt;}
.y19d{bottom:403.106667pt;}
.y2a{bottom:403.426667pt;}
.y207{bottom:404.066667pt;}
.y11e{bottom:405.186667pt;}
.yd3{bottom:407.906667pt;}
.y151{bottom:411.906667pt;}
.y1e2{bottom:412.066667pt;}
.y16a{bottom:413.186667pt;}
.y56{bottom:413.986667pt;}
.y7d{bottom:418.466667pt;}
.y182{bottom:421.186667pt;}
.y1c1{bottom:421.506667pt;}
.y9c{bottom:422.466667pt;}
.y19c{bottom:423.106667pt;}
.y29{bottom:423.426667pt;}
.y206{bottom:424.066667pt;}
.y11d{bottom:425.186667pt;}
.yd2{bottom:427.906667pt;}
.y55{bottom:431.266667pt;}
.y150{bottom:431.906667pt;}
.y1e1{bottom:432.066667pt;}
.y169{bottom:433.186667pt;}
.y7c{bottom:438.466667pt;}
.y181{bottom:441.186667pt;}
.y1c0{bottom:441.506667pt;}
.y9b{bottom:442.466667pt;}
.y19b{bottom:443.106667pt;}
.y205{bottom:444.066667pt;}
.y11c{bottom:445.186667pt;}
.ye{bottom:446.990669pt;}
.yd1{bottom:447.906667pt;}
.y54{bottom:448.546667pt;}
.y28{bottom:450.946667pt;}
.y14f{bottom:451.906667pt;}
.y1e0{bottom:452.066667pt;}
.y168{bottom:453.186667pt;}
.y7b{bottom:458.466667pt;}
.y180{bottom:461.186667pt;}
.y1bf{bottom:461.506667pt;}
.y9a{bottom:462.466667pt;}
.yd{bottom:462.990669pt;}
.y19a{bottom:463.106667pt;}
.y204{bottom:464.066667pt;}
.y11b{bottom:465.186667pt;}
.yd0{bottom:467.906667pt;}
.y27{bottom:468.706667pt;}
.y14e{bottom:471.906667pt;}
.y1df{bottom:472.066667pt;}
.y167{bottom:473.186667pt;}
.yc{bottom:478.990666pt;}
.y17f{bottom:481.186667pt;}
.y1be{bottom:481.506667pt;}
.y99{bottom:482.466667pt;}
.y199{bottom:483.106667pt;}
.y203{bottom:484.066667pt;}
.y11a{bottom:485.186667pt;}
.y7a{bottom:487.106667pt;}
.ycf{bottom:487.906667pt;}
.y14d{bottom:491.906667pt;}
.y1de{bottom:492.066667pt;}
.y166{bottom:493.186667pt;}
.yb{bottom:494.990666pt;}
.y26{bottom:497.986667pt;}
.y17e{bottom:501.186667pt;}
.y1bd{bottom:501.506667pt;}
.y98{bottom:502.466667pt;}
.y198{bottom:503.106667pt;}
.y202{bottom:504.066667pt;}
.y119{bottom:505.186667pt;}
.yce{bottom:507.906667pt;}
.y14c{bottom:511.906667pt;}
.y1dd{bottom:512.066667pt;}
.y165{bottom:513.186667pt;}
.y53{bottom:515.906667pt;}
.y17d{bottom:521.186667pt;}
.y1bc{bottom:521.506667pt;}
.y97{bottom:522.466667pt;}
.y197{bottom:523.106667pt;}
.y201{bottom:524.066667pt;}
.y118{bottom:525.186667pt;}
.ycd{bottom:527.906667pt;}
.y14b{bottom:531.906667pt;}
.y1dc{bottom:532.066667pt;}
.y52{bottom:533.186667pt;}
.y79{bottom:535.906667pt;}
.y17c{bottom:541.186667pt;}
.y1bb{bottom:541.506667pt;}
.y96{bottom:542.466667pt;}
.y196{bottom:543.106667pt;}
.y200{bottom:544.066667pt;}
.y117{bottom:545.186667pt;}
.ycc{bottom:547.906667pt;}
.yf7{bottom:549.186667pt;}
.y51{bottom:550.466667pt;}
.y14a{bottom:551.906667pt;}
.y1db{bottom:552.066667pt;}
.y164{bottom:553.186667pt;}
.y17b{bottom:561.186667pt;}
.y1ba{bottom:561.506667pt;}
.y95{bottom:562.466667pt;}
.y195{bottom:563.106667pt;}
.y1ff{bottom:564.066667pt;}
.y78{bottom:564.546667pt;}
.y116{bottom:565.186667pt;}
.y50{bottom:567.906667pt;}
.yf6{bottom:569.186667pt;}
.y149{bottom:571.906667pt;}
.y1da{bottom:572.066667pt;}
.y163{bottom:573.186667pt;}
.ya{bottom:573.786667pt;}
.y17a{bottom:581.186667pt;}
.y1b9{bottom:581.506667pt;}
.y94{bottom:582.466667pt;}
.y194{bottom:583.106667pt;}
.y1fe{bottom:584.066667pt;}
.y4f{bottom:585.186667pt;}
.ycb{bottom:587.933333pt;}
.yf5{bottom:589.213333pt;}
.y148{bottom:591.933333pt;}
.y1d9{bottom:592.093333pt;}
.y9{bottom:592.685334pt;}
.y77{bottom:593.213333pt;}
.y4e{bottom:599.933333pt;}
.y179{bottom:601.213333pt;}
.y4d{bottom:601.533333pt;}
.y93{bottom:602.493333pt;}
.y4c{bottom:602.973333pt;}
.y193{bottom:603.133333pt;}
.y1fd{bottom:604.093333pt;}
.y4b{bottom:604.573333pt;}
.y115{bottom:605.213333pt;}
.y4a{bottom:606.013333pt;}
.y49{bottom:607.613333pt;}
.yca{bottom:607.933333pt;}
.yf4{bottom:609.213333pt;}
.y48{bottom:611.773333pt;}
.y147{bottom:611.933333pt;}
.y1d8{bottom:612.093333pt;}
.y76{bottom:613.213333pt;}
.y178{bottom:621.213333pt;}
.y1b8{bottom:621.533333pt;}
.y92{bottom:622.493333pt;}
.y192{bottom:623.133333pt;}
.y1fc{bottom:624.093333pt;}
.y114{bottom:625.213333pt;}
.yc9{bottom:627.933333pt;}
.y47{bottom:629.053333pt;}
.yf3{bottom:629.213333pt;}
.y146{bottom:631.933333pt;}
.y1d7{bottom:632.093333pt;}
.y162{bottom:633.213333pt;}
.yfe{bottom:641.213333pt;}
.y1b7{bottom:641.533333pt;}
.y75{bottom:641.853333pt;}
.y91{bottom:642.493333pt;}
.y191{bottom:643.133333pt;}
.y1fb{bottom:644.093333pt;}
.y113{bottom:645.213333pt;}
.y8{bottom:645.598667pt;}
.y46{bottom:646.493333pt;}
.yc8{bottom:647.933333pt;}
.yf2{bottom:649.213333pt;}
.y137{bottom:650.493333pt;}
.y145{bottom:651.933333pt;}
.y1d6{bottom:652.093333pt;}
.y161{bottom:653.213333pt;}
.y190{bottom:660.093333pt;}
.yfd{bottom:661.213333pt;}
.y1b6{bottom:661.533333pt;}
.y90{bottom:662.493333pt;}
.y45{bottom:663.773333pt;}
.y1fa{bottom:664.093333pt;}
.y112{bottom:665.213333pt;}
.yc7{bottom:667.933333pt;}
.y3{bottom:668.977329pt;}
.yf1{bottom:669.053333pt;}
.y74{bottom:670.493333pt;}
.y144{bottom:671.933333pt;}
.y1d5{bottom:672.573333pt;}
.y160{bottom:673.213333pt;}
.y44{bottom:681.053333pt;}
.yfc{bottom:681.213333pt;}
.y1b5{bottom:681.533333pt;}
.y8f{bottom:682.493333pt;}
.yf0{bottom:683.773333pt;}
.y1f9{bottom:684.093333pt;}
.y111{bottom:685.213333pt;}
.yc6{bottom:687.933333pt;}
.y1d4{bottom:689.853333pt;}
.y136{bottom:690.493333pt;}
.y143{bottom:691.933333pt;}
.y15f{bottom:693.213333pt;}
.yef{bottom:698.333333pt;}
.y43{bottom:698.493333pt;}
.y73{bottom:699.133333pt;}
.yfb{bottom:701.213333pt;}
.y1b4{bottom:701.533333pt;}
.y25{bottom:702.333333pt;}
.y8e{bottom:702.493333pt;}
.y1f8{bottom:704.093333pt;}
.y110{bottom:705.053333pt;}
.y1d3{bottom:707.133333pt;}
.yc5{bottom:707.773333pt;}
.y135{bottom:710.493333pt;}
.y142{bottom:711.933333pt;}
.yee{bottom:713.053333pt;}
.yb8{bottom:713.213333pt;}
.y42{bottom:715.773333pt;}
.y10f{bottom:719.773333pt;}
.yfa{bottom:721.213333pt;}
.y1b3{bottom:721.533333pt;}
.yc4{bottom:722.333333pt;}
.y8d{bottom:722.493333pt;}
.y1d2{bottom:724.093333pt;}
.yed{bottom:727.773333pt;}
.y72{bottom:727.933333pt;}
.y134{bottom:730.493333pt;}
.y141{bottom:731.933333pt;}
.y41{bottom:733.053333pt;}
.yb7{bottom:733.213333pt;}
.y10e{bottom:734.333333pt;}
.yc3{bottom:737.053333pt;}
.yf9{bottom:741.213333pt;}
.y1b2{bottom:741.533333pt;}
.yec{bottom:742.333333pt;}
.y8c{bottom:742.493333pt;}
.y1f7{bottom:744.093333pt;}
.y1d1{bottom:745.693333pt;}
.y71{bottom:747.933333pt;}
.y10d{bottom:749.053333pt;}
.y40{bottom:750.493333pt;}
.y24{bottom:751.133333pt;}
.yc2{bottom:751.773333pt;}
.y140{bottom:751.933333pt;}
.yb6{bottom:753.213333pt;}
.yeb{bottom:757.053333pt;}
.yf8{bottom:761.213333pt;}
.y1b1{bottom:761.533333pt;}
.y8b{bottom:762.493333pt;}
.y10c{bottom:763.773333pt;}
.y1f6{bottom:764.093333pt;}
.yc1{bottom:766.333333pt;}
.y3f{bottom:767.773333pt;}
.y1d0{bottom:770.173333pt;}
.y133{bottom:770.493333pt;}
.yea{bottom:771.773333pt;}
.y13f{bottom:771.933333pt;}
.yb5{bottom:773.213333pt;}
.y70{bottom:776.573333pt;}
.y10b{bottom:778.333333pt;}
.yc0{bottom:781.213333pt;}
.y1b0{bottom:781.533333pt;}
.y2{bottom:781.661334pt;}
.y8a{bottom:782.493333pt;}
.y1f5{bottom:784.093333pt;}
.y3e{bottom:785.053333pt;}
.ye9{bottom:786.333333pt;}
.y132{bottom:790.493333pt;}
.y13e{bottom:791.933333pt;}
.yb4{bottom:793.213333pt;}
.y6f{bottom:796.573333pt;}
.ye8{bottom:801.093333pt;}
.ybf{bottom:801.253333pt;}
.y1af{bottom:801.573333pt;}
.y3d{bottom:802.533333pt;}
.y1f4{bottom:804.133333pt;}
.y131{bottom:810.373333pt;}
.y13d{bottom:811.973333pt;}
.yb3{bottom:813.253333pt;}
.ye7{bottom:815.813333pt;}
.y3c{bottom:819.813333pt;}
.ybe{bottom:821.253333pt;}
.y1ae{bottom:821.893333pt;}
.y89{bottom:822.533333pt;}
.y1f3{bottom:824.133333pt;}
.y130{bottom:825.093333pt;}
.y6e{bottom:825.253333pt;}
.ye6{bottom:830.373333pt;}
.y13c{bottom:831.973333pt;}
.yb2{bottom:833.253333pt;}
.y3b{bottom:837.093333pt;}
.y1ad{bottom:839.173333pt;}
.y12f{bottom:839.813333pt;}
.ybd{bottom:841.253333pt;}
.y88{bottom:842.533333pt;}
.y1f2{bottom:844.133333pt;}
.ye5{bottom:845.093333pt;}
.y6d{bottom:845.253333pt;}
.y13b{bottom:851.973333pt;}
.yb1{bottom:853.253333pt;}
.y12e{bottom:854.373333pt;}
.y3a{bottom:854.533333pt;}
.y1ac{bottom:856.613333pt;}
.y1{bottom:859.312000pt;}
.ye4{bottom:859.813333pt;}
.ybc{bottom:861.253333pt;}
.y87{bottom:862.533333pt;}
.y1f1{bottom:865.733333pt;}
.y12d{bottom:869.093333pt;}
.y39{bottom:871.813333pt;}
.y13a{bottom:871.973333pt;}
.yb0{bottom:873.253333pt;}
.y1ab{bottom:873.573333pt;}
.y6c{bottom:873.893333pt;}
.ye3{bottom:874.373333pt;}
.ybb{bottom:881.253333pt;}
.y86{bottom:882.533333pt;}
.y12c{bottom:883.813333pt;}
.y38{bottom:889.093333pt;}
.y1f0{bottom:890.213333pt;}
.y139{bottom:891.973333pt;}
.yaf{bottom:893.253333pt;}
.y6b{bottom:893.893333pt;}
.y1aa{bottom:895.013333pt;}
.y12b{bottom:898.373333pt;}
.y85{bottom:902.533333pt;}
.yba{bottom:903.813333pt;}
.y37{bottom:906.533333pt;}
.y138{bottom:911.973333pt;}
.yae{bottom:913.253333pt;}
.ye2{bottom:918.373333pt;}
.y1a9{bottom:919.493333pt;}
.y6a{bottom:922.533333pt;}
.y36{bottom:923.813333pt;}
.yad{bottom:933.253333pt;}
.yb9{bottom:934.533333pt;}
.y35{bottom:941.093333pt;}
.y69{bottom:942.533333pt;}
.yac{bottom:953.253333pt;}
.y34{bottom:958.533333pt;}
.y68{bottom:965.093333pt;}
.yab{bottom:973.253333pt;}
.y33{bottom:975.813333pt;}
.y67{bottom:1042.880000pt;}
.y213{bottom:1048.160000pt;}
.hd{height:5.340000pt;}
.h7{height:28.560000pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.hf{height:47.647188pt;}
.h2{height:48.960000pt;}
.h10{height:52.813750pt;}
.hb{height:55.402500pt;}
.h5{height:57.120000pt;}
.h9{height:61.410000pt;}
.hc{height:65.781915pt;}
.ha{height:76.964840pt;}
.h11{height:88.777500pt;}
.h4{height:105.826671pt;}
.he{height:111.472500pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w4{width:793.759988pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x6{left:132.351988pt;}
.x5{left:151.226655pt;}
.x20{left:170.106655pt;}
.x4{left:180.874667pt;}
.xa{left:201.786655pt;}
.xb{left:203.546655pt;}
.x13{left:235.066655pt;}
.x9{left:243.226655pt;}
.x18{left:263.746655pt;}
.x19{left:265.826655pt;}
.x7{left:286.466655pt;}
.x8{left:288.386655pt;}
.xe{left:295.746655pt;}
.xf{left:297.506655pt;}
.x1c{left:308.706655pt;}
.x1d{left:310.626655pt;}
.x1a{left:348.226655pt;}
.x1b{left:350.306655pt;}
.xc{left:353.666655pt;}
.xd{left:355.426655pt;}
.x3{left:404.408000pt;}
.x10{left:417.826655pt;}
.x11{left:419.906655pt;}
.x14{left:492.253322pt;}
.x15{left:494.333322pt;}
.x16{left:530.333322pt;}
.x17{left:532.413322pt;}
.x1e{left:569.053322pt;}
.x1f{left:571.133322pt;}
.x12{left:604.773322pt;}
}




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